From ea2e2cdf86c1b9735de32e79edba563f8cba722a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vinicius=20Louren=C3=A7o?= <12551007+H4ad@users.noreply.github.com> Date: Sat, 22 Apr 2023 07:40:05 -0300 Subject: [PATCH 01/19] perf(object-hash): avoid using array to just concatenate the string (#36) --- src/object-hash.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/object-hash.ts b/src/object-hash.ts index 5c8c223..4f34fd3 100644 --- a/src/object-hash.ts +++ b/src/object-hash.ts @@ -69,15 +69,15 @@ export function objectHash(object: any, options: HashOptions = {}): string { } function createHasher(options: HashOptions) { - const buff: string[] = []; + let buff = ""; let context = []; const write = (str: string) => { - buff.push(str); + buff += str; }; return { toString() { - return buff.join(""); + return buff; }, getContext() { return context; From 7e711dd171a2add3d6559c3c21ba02288a2fec94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vinicius=20Louren=C3=A7o?= <12551007+H4ad@users.noreply.github.com> Date: Sat, 22 Apr 2023 07:40:36 -0300 Subject: [PATCH 02/19] perf(object-hash): avoid toString when we know that the value is already a string (#33) --- src/object-hash.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/object-hash.ts b/src/object-hash.ts index 4f34fd3..2959f29 100644 --- a/src/object-hash.ts +++ b/src/object-hash.ts @@ -208,11 +208,11 @@ function createHasher(options: HashOptions) { return write("error:" + err.toString()); }, _boolean(bool) { - return write("bool:" + bool.toString()); + return write("bool:" + bool); }, _string(string) { write("string:" + string.length + ":"); - write(string.toString()); + write(string); }, _function(fn) { write("fn:"); @@ -234,7 +234,7 @@ function createHasher(options: HashOptions) { } }, _number(number) { - return write("number:" + number.toString()); + return write("number:" + number); }, _xml(xml) { return write("xml:" + xml.toString()); From 939dc096f9a2d9c1220a7994dc323523befd62a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vinicius=20Louren=C3=A7o?= <12551007+H4ad@users.noreply.github.com> Date: Sat, 22 Apr 2023 07:47:00 -0300 Subject: [PATCH 03/19] perf(object-hash): faster `isNativeFunction` check (#30) --- src/object-hash.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/object-hash.ts b/src/object-hash.ts index 2959f29..f19264b 100644 --- a/src/object-hash.ts +++ b/src/object-hash.ts @@ -375,11 +375,15 @@ function createHasher(options: HashOptions) { }; } +const nativeFunc = "[native code] }"; +const nativeFuncLength = nativeFunc.length; + /** Check if the given function is a native function */ function isNativeFunction(f) { if (typeof f !== "function") { return false; } - const exp = /^function\s+\w*\s*\(\s*\)\s*{\s+\[native code]\s+}$/i; - return exp.exec(Function.prototype.toString.call(f)) != null; + return ( + Function.prototype.toString.call(f).slice(-nativeFuncLength) === nativeFunc + ); } From 8b6711b541f91c5d659511c414ddc3e0ce6b52f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vinicius=20Louren=C3=A7o?= <12551007+H4ad@users.noreply.github.com> Date: Sat, 22 Apr 2023 07:47:31 -0300 Subject: [PATCH 04/19] perf(object-hash): faster extract object type from toString (#31) --- src/object-hash.ts | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/src/object-hash.ts b/src/object-hash.ts index f19264b..89792cf 100644 --- a/src/object-hash.ts +++ b/src/object-hash.ts @@ -94,13 +94,20 @@ function createHasher(options: HashOptions) { return this._object(object.toJSON()); } - const pattern = /\[object (.*)]/i; const objString = Object.prototype.toString.call(object); - const _objType = pattern.exec(objString); - const objType = _objType - ? _objType[1].toLowerCase() // take only the class name - : "unknown:[" + objString.toLowerCase() + "]"; // object type did not match [object ...] + let objType = ""; + const 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(); let objectNumber = null; From 2bebe58f64ce91c8efc737587313009235509718 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 22 Apr 2023 12:47:42 +0200 Subject: [PATCH 05/19] chore(deps): update all non-major dependencies (#16) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 6 +- pnpm-lock.yaml | 168 ++++++++++++++++++++++++------------------------- 2 files changed, 87 insertions(+), 87 deletions(-) diff --git a/package.json b/package.json index 0fd1972..427fc21 100644 --- a/package.json +++ b/package.json @@ -29,16 +29,16 @@ "test": "pnpm lint && vitest run" }, "devDependencies": { - "@types/node": "^18.15.11", + "@types/node": "^18.15.13", "@vitest/coverage-c8": "^0.30.1", "c8": "^7.13.0", "changelogen": "^0.5.3", - "eslint": "^8.38.0", + "eslint": "^8.39.0", "eslint-config-unjs": "^0.1.0", "prettier": "^2.8.7", "typescript": "^5.0.4", "unbuild": "^1.2.1", "vitest": "^0.30.1" }, - "packageManager": "pnpm@8.3.0" + "packageManager": "pnpm@8.3.1" } \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 87dd9e7..2bcb00f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2,8 +2,8 @@ lockfileVersion: '6.0' devDependencies: '@types/node': - specifier: ^18.15.11 - version: 18.15.11 + specifier: ^18.15.13 + version: 18.15.13 '@vitest/coverage-c8': specifier: ^0.30.1 version: 0.30.1(vitest@0.30.1) @@ -14,11 +14,11 @@ devDependencies: specifier: ^0.5.3 version: 0.5.3 eslint: - specifier: ^8.38.0 - version: 8.38.0 + specifier: ^8.39.0 + version: 8.39.0 eslint-config-unjs: specifier: ^0.1.0 - version: 0.1.0(eslint@8.38.0)(typescript@5.0.4) + version: 0.1.0(eslint@8.39.0)(typescript@5.0.4) prettier: specifier: ^2.8.7 version: 2.8.7 @@ -444,13 +444,13 @@ packages: dev: true optional: true - /@eslint-community/eslint-utils@4.4.0(eslint@8.38.0): + /@eslint-community/eslint-utils@4.4.0(eslint@8.39.0): resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: - eslint: 8.38.0 + eslint: 8.39.0 eslint-visitor-keys: 3.4.0 dev: true @@ -476,8 +476,8 @@ packages: - supports-color dev: true - /@eslint/js@8.38.0: - resolution: {integrity: sha512-IoD2MfUnOV58ghIHCiil01PcohxjbYR/qCxsoC+xNgUwh1EY8jOOrYmu3d3a71+tJJ23uscEV4X2HJWMsPJu4g==} + /@eslint/js@8.39.0: + resolution: {integrity: sha512-kf9RB0Fg7NZfap83B3QOqOGg9QmD9yBudqQXzzOtn3i4y7ZUXe5ONeW34Gwi+TxhH4mvj72R1Zc300KUMa9Bng==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true @@ -690,8 +690,8 @@ packages: resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} dev: true - /@types/node@18.15.11: - resolution: {integrity: sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==} + /@types/node@18.15.13: + resolution: {integrity: sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==} dev: true /@types/normalize-package-data@2.4.1: @@ -706,7 +706,7 @@ packages: resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==} dev: true - /@typescript-eslint/eslint-plugin@5.59.0(@typescript-eslint/parser@5.59.0)(eslint@8.38.0)(typescript@5.0.4): + /@typescript-eslint/eslint-plugin@5.59.0(@typescript-eslint/parser@5.59.0)(eslint@8.39.0)(typescript@5.0.4): resolution: {integrity: sha512-p0QgrEyrxAWBecR56gyn3wkG15TJdI//eetInP3zYRewDh0XS+DhB3VUAd3QqvziFsfaQIoIuZMxZRB7vXYaYw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -718,12 +718,12 @@ packages: optional: true dependencies: '@eslint-community/regexpp': 4.5.0 - '@typescript-eslint/parser': 5.59.0(eslint@8.38.0)(typescript@5.0.4) + '@typescript-eslint/parser': 5.59.0(eslint@8.39.0)(typescript@5.0.4) '@typescript-eslint/scope-manager': 5.59.0 - '@typescript-eslint/type-utils': 5.59.0(eslint@8.38.0)(typescript@5.0.4) - '@typescript-eslint/utils': 5.59.0(eslint@8.38.0)(typescript@5.0.4) + '@typescript-eslint/type-utils': 5.59.0(eslint@8.39.0)(typescript@5.0.4) + '@typescript-eslint/utils': 5.59.0(eslint@8.39.0)(typescript@5.0.4) debug: 4.3.4 - eslint: 8.38.0 + eslint: 8.39.0 grapheme-splitter: 1.0.4 ignore: 5.2.4 natural-compare-lite: 1.4.0 @@ -734,7 +734,7 @@ packages: - supports-color dev: true - /@typescript-eslint/parser@5.59.0(eslint@8.38.0)(typescript@5.0.4): + /@typescript-eslint/parser@5.59.0(eslint@8.39.0)(typescript@5.0.4): resolution: {integrity: sha512-qK9TZ70eJtjojSUMrrEwA9ZDQ4N0e/AuoOIgXuNBorXYcBDk397D2r5MIe1B3cok/oCtdNC5j+lUUpVB+Dpb+w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -748,7 +748,7 @@ packages: '@typescript-eslint/types': 5.59.0 '@typescript-eslint/typescript-estree': 5.59.0(typescript@5.0.4) debug: 4.3.4 - eslint: 8.38.0 + eslint: 8.39.0 typescript: 5.0.4 transitivePeerDependencies: - supports-color @@ -762,7 +762,7 @@ packages: '@typescript-eslint/visitor-keys': 5.59.0 dev: true - /@typescript-eslint/type-utils@5.59.0(eslint@8.38.0)(typescript@5.0.4): + /@typescript-eslint/type-utils@5.59.0(eslint@8.39.0)(typescript@5.0.4): resolution: {integrity: sha512-d/B6VSWnZwu70kcKQSCqjcXpVH+7ABKH8P1KNn4K7j5PXXuycZTPXF44Nui0TEm6rbWGi8kc78xRgOC4n7xFgA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -773,9 +773,9 @@ packages: optional: true dependencies: '@typescript-eslint/typescript-estree': 5.59.0(typescript@5.0.4) - '@typescript-eslint/utils': 5.59.0(eslint@8.38.0)(typescript@5.0.4) + '@typescript-eslint/utils': 5.59.0(eslint@8.39.0)(typescript@5.0.4) debug: 4.3.4 - eslint: 8.38.0 + eslint: 8.39.0 tsutils: 3.21.0(typescript@5.0.4) typescript: 5.0.4 transitivePeerDependencies: @@ -808,19 +808,19 @@ packages: - supports-color dev: true - /@typescript-eslint/utils@5.59.0(eslint@8.38.0)(typescript@5.0.4): + /@typescript-eslint/utils@5.59.0(eslint@8.39.0)(typescript@5.0.4): resolution: {integrity: sha512-GGLFd+86drlHSvPgN/el6dRQNYYGOvRSDVydsUaQluwIW3HvbXuxyuD5JETvBt/9qGYe+lOrDk6gRrWOHb/FvA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.38.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.39.0) '@types/json-schema': 7.0.11 '@types/semver': 7.3.13 '@typescript-eslint/scope-manager': 5.59.0 '@typescript-eslint/types': 5.59.0 '@typescript-eslint/typescript-estree': 5.59.0(typescript@5.0.4) - eslint: 8.38.0 + eslint: 8.39.0 eslint-scope: 5.1.1 semver: 7.5.0 transitivePeerDependencies: @@ -1528,16 +1528,16 @@ packages: engines: {node: '>=10'} dev: true - /eslint-config-prettier@8.8.0(eslint@8.38.0): + /eslint-config-prettier@8.8.0(eslint@8.39.0): resolution: {integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==} hasBin: true peerDependencies: eslint: '>=7.0.0' dependencies: - eslint: 8.38.0 + eslint: 8.39.0 dev: true - /eslint-config-standard@17.0.0(eslint-plugin-import@2.27.5)(eslint-plugin-n@15.7.0)(eslint-plugin-promise@6.1.1)(eslint@8.38.0): + /eslint-config-standard@17.0.0(eslint-plugin-import@2.27.5)(eslint-plugin-n@15.7.0)(eslint-plugin-promise@6.1.1)(eslint@8.39.0): resolution: {integrity: sha512-/2ks1GKyqSOkH7JFvXJicu0iMpoojkwB+f5Du/1SC0PtBL+s8v30k9njRZ21pm2drKYm2342jFnGWzttxPmZVg==} peerDependencies: eslint: ^8.0.1 @@ -1545,29 +1545,29 @@ packages: eslint-plugin-n: ^15.0.0 eslint-plugin-promise: ^6.0.0 dependencies: - eslint: 8.38.0 - eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.0)(eslint-import-resolver-typescript@3.5.5)(eslint@8.38.0) - eslint-plugin-n: 15.7.0(eslint@8.38.0) - eslint-plugin-promise: 6.1.1(eslint@8.38.0) + eslint: 8.39.0 + eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.0)(eslint-import-resolver-typescript@3.5.5)(eslint@8.39.0) + eslint-plugin-n: 15.7.0(eslint@8.39.0) + eslint-plugin-promise: 6.1.1(eslint@8.39.0) dev: true - /eslint-config-unjs@0.1.0(eslint@8.38.0)(typescript@5.0.4): + /eslint-config-unjs@0.1.0(eslint@8.39.0)(typescript@5.0.4): resolution: {integrity: sha512-P51/jQg3RoLKqDTR6/x5637iOBYIEka/Ec6TwaNKiLhSOeYBKRVPsg/FdbV8MBExC9q4j/wRoTYBKj7sEVNUgQ==} peerDependencies: eslint: '*' typescript: '*' dependencies: - '@typescript-eslint/eslint-plugin': 5.59.0(@typescript-eslint/parser@5.59.0)(eslint@8.38.0)(typescript@5.0.4) - '@typescript-eslint/parser': 5.59.0(eslint@8.38.0)(typescript@5.0.4) - eslint: 8.38.0 - eslint-config-prettier: 8.8.0(eslint@8.38.0) - eslint-config-standard: 17.0.0(eslint-plugin-import@2.27.5)(eslint-plugin-n@15.7.0)(eslint-plugin-promise@6.1.1)(eslint@8.38.0) - eslint-import-resolver-typescript: 3.5.5(@typescript-eslint/parser@5.59.0)(eslint-plugin-import@2.27.5)(eslint@8.38.0) - eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.0)(eslint-import-resolver-typescript@3.5.5)(eslint@8.38.0) - eslint-plugin-n: 15.7.0(eslint@8.38.0) - eslint-plugin-node: 11.1.0(eslint@8.38.0) - eslint-plugin-promise: 6.1.1(eslint@8.38.0) - eslint-plugin-unicorn: 43.0.2(eslint@8.38.0) + '@typescript-eslint/eslint-plugin': 5.59.0(@typescript-eslint/parser@5.59.0)(eslint@8.39.0)(typescript@5.0.4) + '@typescript-eslint/parser': 5.59.0(eslint@8.39.0)(typescript@5.0.4) + eslint: 8.39.0 + eslint-config-prettier: 8.8.0(eslint@8.39.0) + eslint-config-standard: 17.0.0(eslint-plugin-import@2.27.5)(eslint-plugin-n@15.7.0)(eslint-plugin-promise@6.1.1)(eslint@8.39.0) + eslint-import-resolver-typescript: 3.5.5(@typescript-eslint/parser@5.59.0)(eslint-plugin-import@2.27.5)(eslint@8.39.0) + eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.0)(eslint-import-resolver-typescript@3.5.5)(eslint@8.39.0) + eslint-plugin-n: 15.7.0(eslint@8.39.0) + eslint-plugin-node: 11.1.0(eslint@8.39.0) + eslint-plugin-promise: 6.1.1(eslint@8.39.0) + eslint-plugin-unicorn: 43.0.2(eslint@8.39.0) typescript: 5.0.4 transitivePeerDependencies: - eslint-import-resolver-node @@ -1585,7 +1585,7 @@ packages: - supports-color dev: true - /eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@5.59.0)(eslint-plugin-import@2.27.5)(eslint@8.38.0): + /eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@5.59.0)(eslint-plugin-import@2.27.5)(eslint@8.39.0): resolution: {integrity: sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -1594,9 +1594,9 @@ packages: dependencies: debug: 4.3.4 enhanced-resolve: 5.12.0 - eslint: 8.38.0 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.59.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.38.0) - eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.0)(eslint-import-resolver-typescript@3.5.5)(eslint@8.38.0) + eslint: 8.39.0 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.59.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.39.0) + eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.0)(eslint-import-resolver-typescript@3.5.5)(eslint@8.39.0) get-tsconfig: 4.5.0 globby: 13.1.4 is-core-module: 2.12.0 @@ -1609,7 +1609,7 @@ packages: - supports-color dev: true - /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.59.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.38.0): + /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.59.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.39.0): resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} engines: {node: '>=4'} peerDependencies: @@ -1630,38 +1630,38 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.59.0(eslint@8.38.0)(typescript@5.0.4) + '@typescript-eslint/parser': 5.59.0(eslint@8.39.0)(typescript@5.0.4) debug: 3.2.7 - eslint: 8.38.0 + eslint: 8.39.0 eslint-import-resolver-node: 0.3.7 - eslint-import-resolver-typescript: 3.5.5(@typescript-eslint/parser@5.59.0)(eslint-plugin-import@2.27.5)(eslint@8.38.0) + eslint-import-resolver-typescript: 3.5.5(@typescript-eslint/parser@5.59.0)(eslint-plugin-import@2.27.5)(eslint@8.39.0) transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-es@3.0.1(eslint@8.38.0): + /eslint-plugin-es@3.0.1(eslint@8.39.0): resolution: {integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==} engines: {node: '>=8.10.0'} peerDependencies: eslint: '>=4.19.1' dependencies: - eslint: 8.38.0 + eslint: 8.39.0 eslint-utils: 2.1.0 regexpp: 3.2.0 dev: true - /eslint-plugin-es@4.1.0(eslint@8.38.0): + /eslint-plugin-es@4.1.0(eslint@8.39.0): resolution: {integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==} engines: {node: '>=8.10.0'} peerDependencies: eslint: '>=4.19.1' dependencies: - eslint: 8.38.0 + eslint: 8.39.0 eslint-utils: 2.1.0 regexpp: 3.2.0 dev: true - /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.59.0)(eslint-import-resolver-typescript@3.5.5)(eslint@8.38.0): + /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.59.0)(eslint-import-resolver-typescript@3.5.5)(eslint@8.39.0): resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} engines: {node: '>=4'} peerDependencies: @@ -1671,15 +1671,15 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.59.0(eslint@8.38.0)(typescript@5.0.4) + '@typescript-eslint/parser': 5.59.0(eslint@8.39.0)(typescript@5.0.4) array-includes: 3.1.6 array.prototype.flat: 1.3.1 array.prototype.flatmap: 1.3.1 debug: 3.2.7 doctrine: 2.1.0 - eslint: 8.38.0 + eslint: 8.39.0 eslint-import-resolver-node: 0.3.7 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.59.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.38.0) + eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.59.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.39.0) has: 1.0.3 is-core-module: 2.12.0 is-glob: 4.0.3 @@ -1694,16 +1694,16 @@ packages: - supports-color dev: true - /eslint-plugin-n@15.7.0(eslint@8.38.0): + /eslint-plugin-n@15.7.0(eslint@8.39.0): resolution: {integrity: sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==} engines: {node: '>=12.22.0'} peerDependencies: eslint: '>=7.0.0' dependencies: builtins: 5.0.1 - eslint: 8.38.0 - eslint-plugin-es: 4.1.0(eslint@8.38.0) - eslint-utils: 3.0.0(eslint@8.38.0) + eslint: 8.39.0 + eslint-plugin-es: 4.1.0(eslint@8.39.0) + eslint-utils: 3.0.0(eslint@8.39.0) ignore: 5.2.4 is-core-module: 2.12.0 minimatch: 3.1.2 @@ -1711,14 +1711,14 @@ packages: semver: 7.5.0 dev: true - /eslint-plugin-node@11.1.0(eslint@8.38.0): + /eslint-plugin-node@11.1.0(eslint@8.39.0): resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==} engines: {node: '>=8.10.0'} peerDependencies: eslint: '>=5.16.0' dependencies: - eslint: 8.38.0 - eslint-plugin-es: 3.0.1(eslint@8.38.0) + eslint: 8.39.0 + eslint-plugin-es: 3.0.1(eslint@8.39.0) eslint-utils: 2.1.0 ignore: 5.2.4 minimatch: 3.1.2 @@ -1726,16 +1726,16 @@ packages: semver: 6.3.0 dev: true - /eslint-plugin-promise@6.1.1(eslint@8.38.0): + /eslint-plugin-promise@6.1.1(eslint@8.39.0): resolution: {integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 dependencies: - eslint: 8.38.0 + eslint: 8.39.0 dev: true - /eslint-plugin-unicorn@43.0.2(eslint@8.38.0): + /eslint-plugin-unicorn@43.0.2(eslint@8.39.0): resolution: {integrity: sha512-DtqZ5mf/GMlfWoz1abIjq5jZfaFuHzGBZYIeuJfEoKKGWRHr2JiJR+ea+BF7Wx2N1PPRoT/2fwgiK1NnmNE3Hg==} engines: {node: '>=14.18'} peerDependencies: @@ -1744,8 +1744,8 @@ packages: '@babel/helper-validator-identifier': 7.19.1 ci-info: 3.8.0 clean-regexp: 1.0.0 - eslint: 8.38.0 - eslint-utils: 3.0.0(eslint@8.38.0) + eslint: 8.39.0 + eslint-utils: 3.0.0(eslint@8.39.0) esquery: 1.5.0 indent-string: 4.0.0 is-builtin-module: 3.2.1 @@ -1781,13 +1781,13 @@ packages: eslint-visitor-keys: 1.3.0 dev: true - /eslint-utils@3.0.0(eslint@8.38.0): + /eslint-utils@3.0.0(eslint@8.39.0): resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: eslint: '>=5' dependencies: - eslint: 8.38.0 + eslint: 8.39.0 eslint-visitor-keys: 2.1.0 dev: true @@ -1806,15 +1806,15 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint@8.38.0: - resolution: {integrity: sha512-pIdsD2jwlUGf/U38Jv97t8lq6HpaU/G9NKbYmpWpZGw3LdTNhZLbJePqxOXGB5+JEKfOPU/XLxYxFh03nr1KTg==} + /eslint@8.39.0: + resolution: {integrity: sha512-mwiok6cy7KTW7rBpo05k6+p4YVZByLNjAZ/ACB9DRCu4YDRwjXI01tWHp6KAUWelsBetTxKK/2sHB0vdS8Z2Og==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.38.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.39.0) '@eslint-community/regexpp': 4.5.0 '@eslint/eslintrc': 2.0.2 - '@eslint/js': 8.38.0 + '@eslint/js': 8.39.0 '@humanwhocodes/config-array': 0.11.8 '@humanwhocodes/module-importer': 1.0.1 '@nodelib/fs.walk': 1.2.8 @@ -3690,7 +3690,7 @@ packages: spdx-expression-parse: 3.0.1 dev: true - /vite-node@0.30.1(@types/node@18.15.11): + /vite-node@0.30.1(@types/node@18.15.13): resolution: {integrity: sha512-vTikpU/J7e6LU/8iM3dzBo8ZhEiKZEKRznEMm+mJh95XhWaPrJQraT/QsT2NWmuEf+zgAoMe64PKT7hfZ1Njmg==} engines: {node: '>=v14.18.0'} hasBin: true @@ -3700,7 +3700,7 @@ packages: mlly: 1.2.0 pathe: 1.1.0 picocolors: 1.0.0 - vite: 4.2.2(@types/node@18.15.11) + vite: 4.2.2(@types/node@18.15.13) transitivePeerDependencies: - '@types/node' - less @@ -3711,7 +3711,7 @@ packages: - terser dev: true - /vite@4.2.2(@types/node@18.15.11): + /vite@4.2.2(@types/node@18.15.13): resolution: {integrity: sha512-PcNtT5HeDxb3QaSqFYkEum8f5sCVe0R3WK20qxgIvNBZPXU/Obxs/+ubBMeE7nLWeCo2LDzv+8hRYSlcaSehig==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true @@ -3736,7 +3736,7 @@ packages: terser: optional: true dependencies: - '@types/node': 18.15.11 + '@types/node': 18.15.13 esbuild: 0.17.17 postcss: 8.4.22 resolve: 1.22.2 @@ -3778,7 +3778,7 @@ packages: dependencies: '@types/chai': 4.3.4 '@types/chai-subset': 1.3.3 - '@types/node': 18.15.11 + '@types/node': 18.15.13 '@vitest/expect': 0.30.1 '@vitest/runner': 0.30.1 '@vitest/snapshot': 0.30.1 @@ -3799,8 +3799,8 @@ packages: strip-literal: 1.0.1 tinybench: 2.4.0 tinypool: 0.4.0 - vite: 4.2.2(@types/node@18.15.11) - vite-node: 0.30.1(@types/node@18.15.11) + vite: 4.2.2(@types/node@18.15.13) + vite-node: 0.30.1(@types/node@18.15.13) why-is-node-running: 2.2.2 transitivePeerDependencies: - less From 28517d18c24cf8d05551844e4b67db2f2e4dccb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vinicius=20Louren=C3=A7o?= <12551007+H4ad@users.noreply.github.com> Date: Sat, 22 Apr 2023 08:05:31 -0300 Subject: [PATCH 06/19] perf(object-hash): faster object access by avoid string concat (#32) --- src/object-hash.ts | 116 ++++++++++++++++++++++----------------------- 1 file changed, 58 insertions(+), 58 deletions(-) diff --git a/src/object-hash.ts b/src/object-hash.ts index 89792cf..799bf52 100644 --- a/src/object-hash.ts +++ b/src/object-hash.ts @@ -87,11 +87,11 @@ function createHasher(options: HashOptions) { value = options.replacer(value); } const type = value === null ? "null" : typeof value; - return this["_" + type](value); + return this[type](value); }, - _object(object) { + object(object) { if (object && typeof object.toJSON === "function") { - return this._object(object.toJSON()); + return this.object(object.toJSON()); } const objString = Object.prototype.toString.call(object); @@ -131,10 +131,10 @@ function createHasher(options: HashOptions) { objType !== "function" && objType !== "asyncfunction" ) { - if (this["_" + objType]) { - this["_" + objType](object); + if (this[objType]) { + this[objType](object); } else if (!options.ignoreUnknown) { - this._unkown(object, objType); + this.unkown(object, objType); } } else { let keys = Object.keys(object); @@ -165,7 +165,7 @@ function createHasher(options: HashOptions) { } } }, - _array(arr, unordered) { + array(arr, unordered) { unordered = typeof unordered !== "undefined" ? unordered @@ -193,35 +193,35 @@ function createHasher(options: HashOptions) { }); context = [...context, ...contextAdditions]; entries.sort(); - return this._array(entries, false); + return this.array(entries, false); }, - _date(date) { + date(date) { return write("date:" + date.toJSON()); }, - _symbol(sym) { + symbol(sym) { return write("symbol:" + sym.toString()); }, - _unkown(value: any, type: string) { + unkown(value: any, type: string) { write(type); if (!value) { return; } write(":"); if (value && typeof value.entries === "function") { - return this._array(Array.from(value.entries()), true /* ordered */); + return this.array(Array.from(value.entries()), true /* ordered */); } }, - _error(err) { + error(err) { return write("error:" + err.toString()); }, - _boolean(bool) { + boolean(bool) { return write("bool:" + bool); }, - _string(string) { + string(string) { write("string:" + string.length + ":"); write(string); }, - _function(fn) { + function(fn) { write("fn:"); if (isNativeFunction(fn)) { this.dispatch("[native]"); @@ -237,82 +237,82 @@ function createHasher(options: HashOptions) { } if (options.respectFunctionProperties) { - this._object(fn); + this.object(fn); } }, - _number(number) { + number(number) { return write("number:" + number); }, - _xml(xml) { + xml(xml) { return write("xml:" + xml.toString()); }, - _null() { + null() { return write("Null"); }, - _undefined() { + undefined() { return write("Undefined"); }, - _regexp(regex) { + regexp(regex) { return write("regex:" + regex.toString()); }, - _uint8array(arr) { + uint8array(arr) { write("uint8array:"); return this.dispatch(Array.prototype.slice.call(arr)); }, - _uint8clampedarray(arr) { + uint8clampedarray(arr) { write("uint8clampedarray:"); return this.dispatch(Array.prototype.slice.call(arr)); }, - _int8array(arr) { + int8array(arr) { write("int8array:"); return this.dispatch(Array.prototype.slice.call(arr)); }, - _uint16array(arr) { + uint16array(arr) { write("uint16array:"); return this.dispatch(Array.prototype.slice.call(arr)); }, - _int16array(arr) { + int16array(arr) { write("int16array:"); return this.dispatch(Array.prototype.slice.call(arr)); }, - _uint32array(arr) { + uint32array(arr) { write("uint32array:"); return this.dispatch(Array.prototype.slice.call(arr)); }, - _int32array(arr) { + int32array(arr) { write("int32array:"); return this.dispatch(Array.prototype.slice.call(arr)); }, - _float32array(arr) { + float32array(arr) { write("float32array:"); return this.dispatch(Array.prototype.slice.call(arr)); }, - _float64array(arr) { + float64array(arr) { write("float64array:"); return this.dispatch(Array.prototype.slice.call(arr)); }, - _arraybuffer(arr) { + arraybuffer(arr) { write("arraybuffer:"); return this.dispatch(new Uint8Array(arr)); }, - _url(url) { + url(url) { return write("url:" + url.toString()); }, - _map(map) { + map(map) { write("map:"); const arr = [...map]; - return this._array(arr, options.unorderedSets !== false); + return this.array(arr, options.unorderedSets !== false); }, - _set(set) { + set(set) { write("set:"); const arr = [...set]; - return this._array(arr, options.unorderedSets !== false); + return this.array(arr, options.unorderedSets !== false); }, - _file(file) { + file(file) { write("file:"); return this.dispatch([file.name, file.size, file.type, file.lastModfied]); }, - _blob() { + blob() { if (options.ignoreUnknown) { return write("[blob]"); } @@ -321,62 +321,62 @@ function createHasher(options: HashOptions) { 'Use "options.replacer" or "options.ignoreUnknown"\n' ); }, - _domwindow() { + domwindow() { return write("domwindow"); }, - _bigint(number) { + bigint(number) { return write("bigint:" + number.toString()); }, /* Node.js standard native objects */ - _process() { + process() { return write("process"); }, - _timer() { + timer() { return write("timer"); }, - _pipe() { + pipe() { return write("pipe"); }, - _tcp() { + tcp() { return write("tcp"); }, - _udp() { + udp() { return write("udp"); }, - _tty() { + tty() { return write("tty"); }, - _statwatcher() { + statwatcher() { return write("statwatcher"); }, - _securecontext() { + securecontext() { return write("securecontext"); }, - _connection() { + connection() { return write("connection"); }, - _zlib() { + zlib() { return write("zlib"); }, - _context() { + context() { return write("context"); }, - _nodescript() { + nodescript() { return write("nodescript"); }, - _httpparser() { + httpparser() { return write("httpparser"); }, - _dataview() { + dataview() { return write("dataview"); }, - _signal() { + signal() { return write("signal"); }, - _fsevent() { + fsevent() { return write("fsevent"); }, - _tlswrap() { + tlswrap() { return write("tlswrap"); }, }; From 0128513696f45960b95ecc8b0b9d0ea64405cd82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vinicius=20Louren=C3=A7o?= <12551007+H4ad@users.noreply.github.com> Date: Sat, 22 Apr 2023 08:05:52 -0300 Subject: [PATCH 07/19] perf(object-hash): faster circular checking by using map (#34) --- src/object-hash.ts | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/object-hash.ts b/src/object-hash.ts index 799bf52..d849f96 100644 --- a/src/object-hash.ts +++ b/src/object-hash.ts @@ -70,7 +70,7 @@ export function objectHash(object: any, options: HashOptions = {}): string { function createHasher(options: HashOptions) { let buff = ""; - let context = []; + let context = new Map(); const write = (str: string) => { buff += str; }; @@ -111,10 +111,10 @@ function createHasher(options: HashOptions) { let objectNumber = null; - if ((objectNumber = context.indexOf(object)) >= 0) { + if ((objectNumber = context.get(object)) !== undefined) { return this.dispatch("[CIRCULAR:" + objectNumber + "]"); } else { - context.push(object); + context.set(object, context.size); } if ( @@ -182,16 +182,18 @@ function createHasher(options: HashOptions) { // 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 array for all entries since the order of hashing should *not* matter. instead, - // we keep track of the additions to a copy of the context array and add all of them to the global context array when we’re done - const contextAdditions = []; + // 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 + const contextAdditions = new Map(); const entries = arr.map((entry) => { const hasher = createHasher(options); hasher.dispatch(entry); - contextAdditions.push(hasher.getContext()); + for (const [key, value] of hasher.getContext()) { + contextAdditions.set(key, value); + } return hasher.toString(); }); - context = [...context, ...contextAdditions]; + context = contextAdditions; entries.sort(); return this.array(entries, false); }, From 9f2fd38563cf1f59607ecd41fd8b9744d0de65a4 Mon Sep 17 00:00:00 2001 From: pooya parsa Date: Sat, 22 Apr 2023 13:16:59 +0200 Subject: [PATCH 08/19] chore: add benchmark scripts (#40) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Vinícius Lourenço --- .eslintignore | 1 + benchmark/fixture/large.mjs | 3728 +++++++++++++++++++++++++++++++++++ benchmark/object-hash.mjs | 66 + package.json | 4 +- pnpm-lock.yaml | 14 + 5 files changed, 3812 insertions(+), 1 deletion(-) create mode 100644 benchmark/fixture/large.mjs create mode 100644 benchmark/object-hash.mjs diff --git a/.eslintignore b/.eslintignore index de4d1f0..25c8e8c 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,2 +1,3 @@ dist node_modules +benchmark diff --git a/benchmark/fixture/large.mjs b/benchmark/fixture/large.mjs new file mode 100644 index 0000000..078c741 --- /dev/null +++ b/benchmark/fixture/large.mjs @@ -0,0 +1,3728 @@ +export default [{"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 ","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 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 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 : pinMode(Pin, INPUT);\n* pmo : pinMode(Pin, OUTPUT);\n* dwh : digitalWrite(Pin, HIGH);\n* dwl : 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 ","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\" 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> .\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 ","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 έγραψε:\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 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":"","url":"https://api.github.com/users/jeffutter","html_url":"https://github.com/jeffutter","followers_url":"https://api.github.com/users/jeffutter/followers","following_url":"https://api.github.com/users/jeffutter/following{/other_user}","gists_url":"https://api.github.com/users/jeffutter/gists{/gist_id}","starred_url":"https://api.github.com/users/jeffutter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeffutter/subscriptions","organizations_url":"https://api.github.com/users/jeffutter/orgs","repos_url":"https://api.github.com/users/jeffutter/repos","events_url":"https://api.github.com/users/jeffutter/events{/privacy}","received_events_url":"https://api.github.com/users/jeffutter/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/jeffutter/jquery.maskedinput","description":"jQuery Masked Input Plugin","fork":true,"url":"https://api.github.com/repos/jeffutter/jquery.maskedinput","forks_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/forks","keys_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/teams","hooks_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/hooks","issue_events_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/issues/events{/number}","events_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/events","assignees_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/assignees{/user}","branches_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/branches{/branch}","tags_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/tags","blobs_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/git/refs{/sha}","trees_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/statuses/{sha}","languages_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/languages","stargazers_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/stargazers","contributors_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/contributors","subscribers_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/subscribers","subscription_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/subscription","commits_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/commits{/sha}","git_commits_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/git/commits{/sha}","comments_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/comments{/number}","issue_comment_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/issues/comments/{number}","contents_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/contents/{+path}","compare_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/merges","archive_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/downloads","issues_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/issues{/number}","pulls_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/pulls{/number}","milestones_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/milestones{/number}","notifications_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/labels{/name}","releases_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/releases{/id}","created_at":"2015-01-01T15:02:16Z","updated_at":"2014-12-31T17:50:45Z","pushed_at":"2014-12-30T14:52:27Z","git_url":"git://github.com/jeffutter/jquery.maskedinput.git","ssh_url":"git@github.com:jeffutter/jquery.maskedinput.git","clone_url":"https://github.com/jeffutter/jquery.maskedinput.git","svn_url":"https://github.com/jeffutter/jquery.maskedinput","homepage":"http://digitalbush.com/projects/masked-input-plugin/","size":1954,"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:16Z"} +,{"id":"2489652102","type":"ReleaseEvent","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":{"action":"published","release":{"url":"https://api.github.com/repos/vpg/titon.cache/releases/818679","assets_url":"https://api.github.com/repos/vpg/titon.cache/releases/818679/assets","upload_url":"https://uploads.github.com/repos/vpg/titon.cache/releases/818679/assets{?name}","html_url":"https://github.com/vpg/titon.cache/releases/tag/v1.0","id":818679,"tag_name":"v1.0","target_commitish":"master","name":"","draft":false,"author":{"login":"ogarbe","id":1395245,"avatar_url":"https://avatars.githubusercontent.com/u/1395245?v=3","gravatar_id":"","url":"https://api.github.com/users/ogarbe","html_url":"https://github.com/ogarbe","followers_url":"https://api.github.com/users/ogarbe/followers","following_url":"https://api.github.com/users/ogarbe/following{/other_user}","gists_url":"https://api.github.com/users/ogarbe/gists{/gist_id}","starred_url":"https://api.github.com/users/ogarbe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ogarbe/subscriptions","organizations_url":"https://api.github.com/users/ogarbe/orgs","repos_url":"https://api.github.com/users/ogarbe/repos","events_url":"https://api.github.com/users/ogarbe/events{/privacy}","received_events_url":"https://api.github.com/users/ogarbe/received_events","type":"User","site_admin":false},"prerelease":false,"created_at":"2015-01-01T15:02:02Z","published_at":"2015-01-01T15:02:17Z","assets":[],"tarball_url":"https://api.github.com/repos/vpg/titon.cache/tarball/v1.0","zipball_url":"https://api.github.com/repos/vpg/titon.cache/zipball/v1.0","body":""}},"public":true,"created_at":"2015-01-01T15:02:17Z","org":{"id":1394283,"login":"vpg","gravatar_id":"","url":"https://api.github.com/orgs/vpg","avatar_url":"https://avatars.githubusercontent.com/u/1394283?"}} +,{"id":"2489652104","type":"CreateEvent","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":{"ref":"v1.0","ref_type":"tag","master_branch":"master","description":"duplicate old titon cache","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:17Z","org":{"id":1394283,"login":"vpg","gravatar_id":"","url":"https://api.github.com/orgs/vpg","avatar_url":"https://avatars.githubusercontent.com/u/1394283?"}} +,{"id":"2489652106","type":"PushEvent","actor":{"id":3520055,"login":"casfire","gravatar_id":"","url":"https://api.github.com/users/casfire","avatar_url":"https://avatars.githubusercontent.com/u/3520055?"},"repo":{"id":26129782,"name":"casfire/RG","url":"https://api.github.com/repos/casfire/RG"},"payload":{"push_id":536864453,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a2a780a2cfdad5f3131ed9a023037befa86b733c","before":"c6f980143b5a6b9cf3f9e4d4ee1bb64a726a5940","commits":[{"sha":"a2a780a2cfdad5f3131ed9a023037befa86b733c","author":{"email":"d033e22ae348aeb5660fc2140aec35850c4da997@casfire.com","name":"Casfire"},"message":"Add Asset::NotFoundException","distinct":true,"url":"https://api.github.com/repos/casfire/RG/commits/a2a780a2cfdad5f3131ed9a023037befa86b733c"}]},"public":true,"created_at":"2015-01-01T15:02:17Z"} +,{"id":"2489652108","type":"PushEvent","actor":{"id":8471261,"login":"Corrax","gravatar_id":"","url":"https://api.github.com/users/Corrax","avatar_url":"https://avatars.githubusercontent.com/u/8471261?"},"repo":{"id":28341311,"name":"Corrax/sushiplate","url":"https://api.github.com/repos/Corrax/sushiplate"},"payload":{"push_id":536864455,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b5c4a39b32df870b004d4e1ca53b41f903841026","before":"1e579dc08daddc3178d73b39ee47ee5b79335df7","commits":[{"sha":"b5c4a39b32df870b004d4e1ca53b41f903841026","author":{"email":"2c8e98728097c5a5dbda905592f0938c3150ec60@outlook.com","name":"Jian Xiang"},"message":"Reinit","distinct":true,"url":"https://api.github.com/repos/Corrax/sushiplate/commits/b5c4a39b32df870b004d4e1ca53b41f903841026"}]},"public":true,"created_at":"2015-01-01T15:02:17Z"} +,{"id":"2489652118","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":536864458,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"12d8972d9f48393e00a962eef7904c5330dc8ea1","before":"bc76863b2eb9f2562a8c0cfcdaea2065c6adf294","commits":[{"sha":"12d8972d9f48393e00a962eef7904c5330dc8ea1","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"grunt","distinct":true,"url":"https://api.github.com/repos/hex7c0/logger-request-cli/commits/12d8972d9f48393e00a962eef7904c5330dc8ea1"}]},"public":true,"created_at":"2015-01-01T15:02:18Z"} +,{"id":"2489652120","type":"PullRequestReviewCommentEvent","actor":{"id":7882662,"login":"codeschool-kiddo","gravatar_id":"","url":"https://api.github.com/users/codeschool-kiddo","avatar_url":"https://avatars.githubusercontent.com/u/7882662?"},"repo":{"id":28667947,"name":"deeperx/dojo_rules","url":"https://api.github.com/repos/deeperx/dojo_rules"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/deeperx/dojo_rules/pulls/comments/22400094","id":22400094,"diff_hunk":"@@ -5,3 +5,4 @@ Kill List\n * Unformatted code","path":"kill_list.md","position":1,"original_position":1,"commit_id":"c81ce0de1788f8a5fafdecc155654733be41587f","original_commit_id":"c81ce0de1788f8a5fafdecc155654733be41587f","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":"Awesome job! Go ahead and merge this back into master.","created_at":"2015-01-01T15:02:18Z","updated_at":"2015-01-01T15:02:18Z","html_url":"https://github.com/deeperx/dojo_rules/pull/4#discussion_r22400094","pull_request_url":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4","_links":{"self":{"href":"https://api.github.com/repos/deeperx/dojo_rules/pulls/comments/22400094"},"html":{"href":"https://github.com/deeperx/dojo_rules/pull/4#discussion_r22400094"},"pull_request":{"href":"https://api.github.com/repos/deeperx/dojo_rules/pulls/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:02:18Z","closed_at":null,"merged_at":null,"merge_commit_sha":"885f6ba4f21b24105c93424a47612729548d1fe9","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"}}}},"public":true,"created_at":"2015-01-01T15:02:18Z"} +,{"id":"2489652124","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":536864461,"size":2,"distinct_size":2,"ref":"refs/heads/lp5.0","head":"cd6c2546f67d72fc3de61c583d657eb475eb61d6","before":"8875e3b8a0ff16614016cbbc0a1be7c9ef0b0958","commits":[{"sha":"440385bfe87fbce427fff68b4a568a5280d4a948","author":{"email":"9c2685e721eb5199b8725c1d8fa5d3daff1f3ae6@gmx.co.uk","name":"XXMrHyde"},"message":"Settings: Material Black\n\nLiquid Edit: Remove DarkKat Branding\n\nChange-Id: I8fd49b6ad89036edbb5b7a0679b0ecddf5cd66dc","distinct":true,"url":"https://api.github.com/repos/apascual89/packages_apps_Settings/commits/440385bfe87fbce427fff68b4a568a5280d4a948"},{"sha":"cd6c2546f67d72fc3de61c583d657eb475eb61d6","author":{"email":"3abb84728bc5f2f8a63de3259ee09ad86fb2f26f@gmail.com","name":"lichti1901"},"message":"theme missing settings to material dark\n\nChange-Id: I916c4dfb7253d3390f8f07f71630fa06c1509ce1","distinct":true,"url":"https://api.github.com/repos/apascual89/packages_apps_Settings/commits/cd6c2546f67d72fc3de61c583d657eb475eb61d6"}]},"public":true,"created_at":"2015-01-01T15:02:19Z"} +,{"id":"2489652125","type":"PushEvent","actor":{"id":1311964,"login":"Jeija","gravatar_id":"","url":"https://api.github.com/users/Jeija","avatar_url":"https://avatars.githubusercontent.com/u/1311964?"},"repo":{"id":28002060,"name":"Jeija/schulealsstaat","url":"https://api.github.com/repos/Jeija/schulealsstaat"},"payload":{"push_id":536864463,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ec026986c8addbae90fb311622c2269f608ff32c","before":"ba0609f232b17ef8e8efefee7031dca4f56f0a73","commits":[{"sha":"ec026986c8addbae90fb311622c2269f608ff32c","author":{"email":"e55e1b75c63841272ebb9aa31ab5c64aeb882e65@gmail.com","name":"Jeija"},"message":"Add script that auto-generates random certificates and hashes","distinct":true,"url":"https://api.github.com/repos/Jeija/schulealsstaat/commits/ec026986c8addbae90fb311622c2269f608ff32c"}]},"public":true,"created_at":"2015-01-01T15:02:19Z"} +,{"id":"2489652127","type":"PushEvent","actor":{"id":1742761,"login":"heavenboya","gravatar_id":"","url":"https://api.github.com/users/heavenboya","avatar_url":"https://avatars.githubusercontent.com/u/1742761?"},"repo":{"id":28686976,"name":"heavenboya/TextEditor","url":"https://api.github.com/repos/heavenboya/TextEditor"},"payload":{"push_id":536864464,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0453dbf394a24fdd3f05a9975372141bef1286a7","before":"56f504519fc59b93535d1e44ba4fdd3c186dd1e7","commits":[{"sha":"0453dbf394a24fdd3f05a9975372141bef1286a7","author":{"email":"232846b5f85e118cea8517cdd466f11113fbcbe7@163.com","name":"zhaoxiang"},"message":"Add Accelerator","distinct":true,"url":"https://api.github.com/repos/heavenboya/TextEditor/commits/0453dbf394a24fdd3f05a9975372141bef1286a7"}]},"public":true,"created_at":"2015-01-01T15:02:19Z"} +,{"id":"2489652131","type":"IssuesEvent","actor":{"id":4000059,"login":"jerauf","gravatar_id":"","url":"https://api.github.com/users/jerauf","avatar_url":"https://avatars.githubusercontent.com/u/4000059?"},"repo":{"id":16423255,"name":"rydurham/Sentinel","url":"https://api.github.com/repos/rydurham/Sentinel"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/rydurham/Sentinel/issues/121","labels_url":"https://api.github.com/repos/rydurham/Sentinel/issues/121/labels{/name}","comments_url":"https://api.github.com/repos/rydurham/Sentinel/issues/121/comments","events_url":"https://api.github.com/repos/rydurham/Sentinel/issues/121/events","html_url":"https://github.com/rydurham/Sentinel/issues/121","id":53221375,"number":121,"title":"Giving a group access to part of a page","user":{"login":"jerauf","id":4000059,"avatar_url":"https://avatars.githubusercontent.com/u/4000059?v=3","gravatar_id":"","url":"https://api.github.com/users/jerauf","html_url":"https://github.com/jerauf","followers_url":"https://api.github.com/users/jerauf/followers","following_url":"https://api.github.com/users/jerauf/following{/other_user}","gists_url":"https://api.github.com/users/jerauf/gists{/gist_id}","starred_url":"https://api.github.com/users/jerauf/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jerauf/subscriptions","organizations_url":"https://api.github.com/users/jerauf/orgs","repos_url":"https://api.github.com/users/jerauf/repos","events_url":"https://api.github.com/users/jerauf/events{/privacy}","received_events_url":"https://api.github.com/users/jerauf/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:02:20Z","updated_at":"2015-01-01T15:02:20Z","closed_at":null,"body":"I know that I can use this to give access to part of a page by permission level:\r\n\r\nSentry::getUser()->hasAccess('admin')\r\n\r\nBut what if I have a group called 'editor' that has permission \"users\" but I need to restrict part of a page so that only the 'editor' group can see it?"}},"public":true,"created_at":"2015-01-01T15:02:21Z"} +,{"id":"2489652133","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":536864465,"size":1,"distinct_size":1,"ref":"refs/heads/source_code","head":"29ca4fabb4de147dfff04529bd777dddac209e05","before":"ae167088de2a0e49599121cd5b1cd1e74dffb864","commits":[{"sha":"29ca4fabb4de147dfff04529bd777dddac209e05","author":{"email":"becca14b8729f2c8609f074c547c436bd940ceed@activenetwork.com","name":"LucasZheng"},"message":"add favicon","distinct":true,"url":"https://api.github.com/repos/LucasZheng/LucasZheng.github.io/commits/29ca4fabb4de147dfff04529bd777dddac209e05"}]},"public":true,"created_at":"2015-01-01T15:02:21Z"} +,{"id":"2489652134","type":"CreateEvent","actor":{"id":6939141,"login":"zjjzyl","gravatar_id":"","url":"https://api.github.com/users/zjjzyl","avatar_url":"https://avatars.githubusercontent.com/u/6939141?"},"repo":{"id":27857251,"name":"zjjzyl/zjjtest","url":"https://api.github.com/repos/zjjzyl/zjjtest"},"payload":{"ref":"feature-five","ref_type":"branch","master_branch":"master","description":"test git","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:21Z"} +,{"id":"2489652135","type":"PushEvent","actor":{"id":1436383,"login":"vandres","gravatar_id":"","url":"https://api.github.com/users/vandres","avatar_url":"https://avatars.githubusercontent.com/u/1436383?"},"repo":{"id":28674120,"name":"vandres/angularjs-google-maps","url":"https://api.github.com/repos/vandres/angularjs-google-maps"},"payload":{"push_id":536864468,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ddb9115a8e226e613bee108db68cb6717a82b22a","before":"248199be4d2e5b42e2595748776223e32ec49071","commits":[{"sha":"ddb9115a8e226e613bee108db68cb6717a82b22a","author":{"email":"cd9a58b39b52b0d92d3d28beed878dd31ed4cb0f@dachcom.ch","name":"Volker Andres"},"message":"automatic center works now with dynamic markers","distinct":true,"url":"https://api.github.com/repos/vandres/angularjs-google-maps/commits/ddb9115a8e226e613bee108db68cb6717a82b22a"}]},"public":true,"created_at":"2015-01-01T15:02:21Z"} +,{"id":"2489652136","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":18327658,"name":"cloudify-cosmo/cloudify-plugin-template","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-plugin-template"},"payload":{"push_id":536864466,"size":1,"distinct_size":1,"ref":"refs/heads/3.2m1-build","head":"ca0c0aca5bb8c6e8458f1aa9522f44deb7dbb9eb","before":"3a5afb082786c36d8bde1d9f85b79ebdf5e43f44","commits":[{"sha":"ca0c0aca5bb8c6e8458f1aa9522f44deb7dbb9eb","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 3.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-plugin-template/commits/ca0c0aca5bb8c6e8458f1aa9522f44deb7dbb9eb"}]},"public":true,"created_at":"2015-01-01T15:02:21Z","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":"2489652138","type":"PushEvent","actor":{"id":8717689,"login":"freealong","gravatar_id":"","url":"https://api.github.com/users/freealong","avatar_url":"https://avatars.githubusercontent.com/u/8717689?"},"repo":{"id":28686909,"name":"freealong/freealong.github.io","url":"https://api.github.com/repos/freealong/freealong.github.io"},"payload":{"push_id":536864470,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4267131aa53d00d912b472c8adfe7a06e4b474ae","before":"26f7c7528c2f5a7a19a2e16fdb9da16fabbf3175","commits":[{"sha":"4267131aa53d00d912b472c8adfe7a06e4b474ae","author":{"email":"d8a3ee52423c55db971631327d765cad3953aa8d@yahoo.com","name":"yongqi"},"message":"Site updated: 2015-01-01 23:02:17","distinct":true,"url":"https://api.github.com/repos/freealong/freealong.github.io/commits/4267131aa53d00d912b472c8adfe7a06e4b474ae"}]},"public":true,"created_at":"2015-01-01T15:02:21Z"} +,{"id":"2489652139","type":"PushEvent","actor":{"id":3260579,"login":"hwmay","gravatar_id":"","url":"https://api.github.com/users/hwmay","avatar_url":"https://avatars.githubusercontent.com/u/3260579?"},"repo":{"id":18949241,"name":"hwmay/pordb3","url":"https://api.github.com/repos/hwmay/pordb3"},"payload":{"push_id":536864471,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0efb5d564ebc423729848af133a451e730ac03d3","before":"2bd42bcddc612c45514d97055af43a8b97693214","commits":[{"sha":"0efb5d564ebc423729848af133a451e730ac03d3","author":{"email":"ad1d2262814b717be45f77ed8bc451df8712557d@netcologne.de","name":"Hans Werner May"},"message":"Refactoring","distinct":true,"url":"https://api.github.com/repos/hwmay/pordb3/commits/0efb5d564ebc423729848af133a451e730ac03d3"}]},"public":true,"created_at":"2015-01-01T15:02:22Z"} +,{"id":"2489652141","type":"PushEvent","actor":{"id":6685542,"login":"lummax","gravatar_id":"","url":"https://api.github.com/users/lummax","avatar_url":"https://avatars.githubusercontent.com/u/6685542?"},"repo":{"id":28688540,"name":"lummax/librcimimxcons","url":"https://api.github.com/repos/lummax/librcimimxcons"},"payload":{"push_id":536864472,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e2eb98dfc7e3ff64cb1731686768eab549799627","before":"512b1b95173bdff2ec9e9decf92864f0f1871170","commits":[{"sha":"e2eb98dfc7e3ff64cb1731686768eab549799627","author":{"email":"d11d775f9afa9d792151336d360f7bb8e3aa3b6b@googlemail.com","name":"lummax"},"message":"Add .travis.yml","distinct":true,"url":"https://api.github.com/repos/lummax/librcimimxcons/commits/e2eb98dfc7e3ff64cb1731686768eab549799627"}]},"public":true,"created_at":"2015-01-01T15:02:22Z"} +,{"id":"2489652142","type":"PullRequestEvent","actor":{"id":1450716,"login":"luigino","gravatar_id":"","url":"https://api.github.com/users/luigino","avatar_url":"https://avatars.githubusercontent.com/u/1450716?"},"repo":{"id":21553713,"name":"u8sand/Baka-MPlayer","url":"https://api.github.com/repos/u8sand/Baka-MPlayer"},"payload":{"action":"opened","number":62,"pull_request":{"url":"https://api.github.com/repos/u8sand/Baka-MPlayer/pulls/62","id":26743785,"html_url":"https://github.com/u8sand/Baka-MPlayer/pull/62","diff_url":"https://github.com/u8sand/Baka-MPlayer/pull/62.diff","patch_url":"https://github.com/u8sand/Baka-MPlayer/pull/62.patch","issue_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/issues/62","number":62,"state":"open","locked":false,"title":"Added Italian translation","user":{"login":"luigino","id":1450716,"avatar_url":"https://avatars.githubusercontent.com/u/1450716?v=3","gravatar_id":"","url":"https://api.github.com/users/luigino","html_url":"https://github.com/luigino","followers_url":"https://api.github.com/users/luigino/followers","following_url":"https://api.github.com/users/luigino/following{/other_user}","gists_url":"https://api.github.com/users/luigino/gists{/gist_id}","starred_url":"https://api.github.com/users/luigino/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/luigino/subscriptions","organizations_url":"https://api.github.com/users/luigino/orgs","repos_url":"https://api.github.com/users/luigino/repos","events_url":"https://api.github.com/users/luigino/events{/privacy}","received_events_url":"https://api.github.com/users/luigino/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:02:22Z","updated_at":"2015-01-01T15:02:22Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/pulls/62/commits","review_comments_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/pulls/62/comments","review_comment_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/pulls/comments/{number}","comments_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/issues/62/comments","statuses_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/statuses/a489b190099429657d97209261eafb8713e11f8b","head":{"label":"luigino:master","ref":"master","sha":"a489b190099429657d97209261eafb8713e11f8b","user":{"login":"luigino","id":1450716,"avatar_url":"https://avatars.githubusercontent.com/u/1450716?v=3","gravatar_id":"","url":"https://api.github.com/users/luigino","html_url":"https://github.com/luigino","followers_url":"https://api.github.com/users/luigino/followers","following_url":"https://api.github.com/users/luigino/following{/other_user}","gists_url":"https://api.github.com/users/luigino/gists{/gist_id}","starred_url":"https://api.github.com/users/luigino/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/luigino/subscriptions","organizations_url":"https://api.github.com/users/luigino/orgs","repos_url":"https://api.github.com/users/luigino/repos","events_url":"https://api.github.com/users/luigino/events{/privacy}","received_events_url":"https://api.github.com/users/luigino/received_events","type":"User","site_admin":false},"repo":{"id":28688404,"name":"Baka-MPlayer","full_name":"luigino/Baka-MPlayer","owner":{"login":"luigino","id":1450716,"avatar_url":"https://avatars.githubusercontent.com/u/1450716?v=3","gravatar_id":"","url":"https://api.github.com/users/luigino","html_url":"https://github.com/luigino","followers_url":"https://api.github.com/users/luigino/followers","following_url":"https://api.github.com/users/luigino/following{/other_user}","gists_url":"https://api.github.com/users/luigino/gists{/gist_id}","starred_url":"https://api.github.com/users/luigino/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/luigino/subscriptions","organizations_url":"https://api.github.com/users/luigino/orgs","repos_url":"https://api.github.com/users/luigino/repos","events_url":"https://api.github.com/users/luigino/events{/privacy}","received_events_url":"https://api.github.com/users/luigino/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/luigino/Baka-MPlayer","description":"The libmpv based media player","fork":true,"url":"https://api.github.com/repos/luigino/Baka-MPlayer","forks_url":"https://api.github.com/repos/luigino/Baka-MPlayer/forks","keys_url":"https://api.github.com/repos/luigino/Baka-MPlayer/keys{/key_id}","collaborators_url":"https://api.github.com/repos/luigino/Baka-MPlayer/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/luigino/Baka-MPlayer/teams","hooks_url":"https://api.github.com/repos/luigino/Baka-MPlayer/hooks","issue_events_url":"https://api.github.com/repos/luigino/Baka-MPlayer/issues/events{/number}","events_url":"https://api.github.com/repos/luigino/Baka-MPlayer/events","assignees_url":"https://api.github.com/repos/luigino/Baka-MPlayer/assignees{/user}","branches_url":"https://api.github.com/repos/luigino/Baka-MPlayer/branches{/branch}","tags_url":"https://api.github.com/repos/luigino/Baka-MPlayer/tags","blobs_url":"https://api.github.com/repos/luigino/Baka-MPlayer/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/luigino/Baka-MPlayer/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/luigino/Baka-MPlayer/git/refs{/sha}","trees_url":"https://api.github.com/repos/luigino/Baka-MPlayer/git/trees{/sha}","statuses_url":"https://api.github.com/repos/luigino/Baka-MPlayer/statuses/{sha}","languages_url":"https://api.github.com/repos/luigino/Baka-MPlayer/languages","stargazers_url":"https://api.github.com/repos/luigino/Baka-MPlayer/stargazers","contributors_url":"https://api.github.com/repos/luigino/Baka-MPlayer/contributors","subscribers_url":"https://api.github.com/repos/luigino/Baka-MPlayer/subscribers","subscription_url":"https://api.github.com/repos/luigino/Baka-MPlayer/subscription","commits_url":"https://api.github.com/repos/luigino/Baka-MPlayer/commits{/sha}","git_commits_url":"https://api.github.com/repos/luigino/Baka-MPlayer/git/commits{/sha}","comments_url":"https://api.github.com/repos/luigino/Baka-MPlayer/comments{/number}","issue_comment_url":"https://api.github.com/repos/luigino/Baka-MPlayer/issues/comments/{number}","contents_url":"https://api.github.com/repos/luigino/Baka-MPlayer/contents/{+path}","compare_url":"https://api.github.com/repos/luigino/Baka-MPlayer/compare/{base}...{head}","merges_url":"https://api.github.com/repos/luigino/Baka-MPlayer/merges","archive_url":"https://api.github.com/repos/luigino/Baka-MPlayer/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/luigino/Baka-MPlayer/downloads","issues_url":"https://api.github.com/repos/luigino/Baka-MPlayer/issues{/number}","pulls_url":"https://api.github.com/repos/luigino/Baka-MPlayer/pulls{/number}","milestones_url":"https://api.github.com/repos/luigino/Baka-MPlayer/milestones{/number}","notifications_url":"https://api.github.com/repos/luigino/Baka-MPlayer/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/luigino/Baka-MPlayer/labels{/name}","releases_url":"https://api.github.com/repos/luigino/Baka-MPlayer/releases{/id}","created_at":"2015-01-01T14:48:23Z","updated_at":"2015-01-01T15:00:10Z","pushed_at":"2015-01-01T15:00:10Z","git_url":"git://github.com/luigino/Baka-MPlayer.git","ssh_url":"git@github.com:luigino/Baka-MPlayer.git","clone_url":"https://github.com/luigino/Baka-MPlayer.git","svn_url":"https://github.com/luigino/Baka-MPlayer","homepage":"http://bakamplayer.u8sand.net/","size":49742,"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":"u8sand:master","ref":"master","sha":"abe4f865d05d63b194227b41210fa53fbe6f56f9","user":{"login":"u8sand","id":1341861,"avatar_url":"https://avatars.githubusercontent.com/u/1341861?v=3","gravatar_id":"","url":"https://api.github.com/users/u8sand","html_url":"https://github.com/u8sand","followers_url":"https://api.github.com/users/u8sand/followers","following_url":"https://api.github.com/users/u8sand/following{/other_user}","gists_url":"https://api.github.com/users/u8sand/gists{/gist_id}","starred_url":"https://api.github.com/users/u8sand/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/u8sand/subscriptions","organizations_url":"https://api.github.com/users/u8sand/orgs","repos_url":"https://api.github.com/users/u8sand/repos","events_url":"https://api.github.com/users/u8sand/events{/privacy}","received_events_url":"https://api.github.com/users/u8sand/received_events","type":"User","site_admin":false},"repo":{"id":21553713,"name":"Baka-MPlayer","full_name":"u8sand/Baka-MPlayer","owner":{"login":"u8sand","id":1341861,"avatar_url":"https://avatars.githubusercontent.com/u/1341861?v=3","gravatar_id":"","url":"https://api.github.com/users/u8sand","html_url":"https://github.com/u8sand","followers_url":"https://api.github.com/users/u8sand/followers","following_url":"https://api.github.com/users/u8sand/following{/other_user}","gists_url":"https://api.github.com/users/u8sand/gists{/gist_id}","starred_url":"https://api.github.com/users/u8sand/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/u8sand/subscriptions","organizations_url":"https://api.github.com/users/u8sand/orgs","repos_url":"https://api.github.com/users/u8sand/repos","events_url":"https://api.github.com/users/u8sand/events{/privacy}","received_events_url":"https://api.github.com/users/u8sand/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/u8sand/Baka-MPlayer","description":"The libmpv based media player","fork":false,"url":"https://api.github.com/repos/u8sand/Baka-MPlayer","forks_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/forks","keys_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/keys{/key_id}","collaborators_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/teams","hooks_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/hooks","issue_events_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/issues/events{/number}","events_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/events","assignees_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/assignees{/user}","branches_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/branches{/branch}","tags_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/tags","blobs_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/git/refs{/sha}","trees_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/git/trees{/sha}","statuses_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/statuses/{sha}","languages_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/languages","stargazers_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/stargazers","contributors_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/contributors","subscribers_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/subscribers","subscription_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/subscription","commits_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/commits{/sha}","git_commits_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/git/commits{/sha}","comments_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/comments{/number}","issue_comment_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/issues/comments/{number}","contents_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/contents/{+path}","compare_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/compare/{base}...{head}","merges_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/merges","archive_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/downloads","issues_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/issues{/number}","pulls_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/pulls{/number}","milestones_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/milestones{/number}","notifications_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/labels{/name}","releases_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/releases{/id}","created_at":"2014-07-07T02:33:55Z","updated_at":"2015-01-01T14:31:05Z","pushed_at":"2015-01-01T14:31:05Z","git_url":"git://github.com/u8sand/Baka-MPlayer.git","ssh_url":"git@github.com:u8sand/Baka-MPlayer.git","clone_url":"https://github.com/u8sand/Baka-MPlayer.git","svn_url":"https://github.com/u8sand/Baka-MPlayer","homepage":"http://bakamplayer.u8sand.net/","size":49742,"stargazers_count":13,"watchers_count":13,"language":"C++","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":8,"mirror_url":null,"open_issues_count":9,"forks":8,"open_issues":9,"watchers":13,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/u8sand/Baka-MPlayer/pulls/62"},"html":{"href":"https://github.com/u8sand/Baka-MPlayer/pull/62"},"issue":{"href":"https://api.github.com/repos/u8sand/Baka-MPlayer/issues/62"},"comments":{"href":"https://api.github.com/repos/u8sand/Baka-MPlayer/issues/62/comments"},"review_comments":{"href":"https://api.github.com/repos/u8sand/Baka-MPlayer/pulls/62/comments"},"review_comment":{"href":"https://api.github.com/repos/u8sand/Baka-MPlayer/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/u8sand/Baka-MPlayer/pulls/62/commits"},"statuses":{"href":"https://api.github.com/repos/u8sand/Baka-MPlayer/statuses/a489b190099429657d97209261eafb8713e11f8b"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":1349,"deletions":2,"changed_files":3}},"public":true,"created_at":"2015-01-01T15:02:22Z"} +,{"id":"2489652143","type":"CreateEvent","actor":{"id":292693,"login":"mikemoraned","gravatar_id":"","url":"https://api.github.com/users/mikemoraned","avatar_url":"https://avatars.githubusercontent.com/u/292693?"},"repo":{"id":28688640,"name":"mikemoraned/spark-play-sbt","url":"https://api.github.com/repos/mikemoraned/spark-play-sbt"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Playing around with Spark, using SBT","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:22Z"} +,{"id":"2489652144","type":"CreateEvent","actor":{"id":8283768,"login":"evelynting610","gravatar_id":"","url":"https://api.github.com/users/evelynting610","avatar_url":"https://avatars.githubusercontent.com/u/8283768?"},"repo":{"id":28688641,"name":"evelynting610/yolunchme","url":"https://api.github.com/repos/evelynting610/yolunchme"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"The Front-End design of the App","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:22Z"} +,{"id":"2489652146","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":18326574,"name":"cloudify-cosmo/cloudify-manager","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager"},"payload":{"push_id":536864473,"size":1,"distinct_size":1,"ref":"refs/heads/3.2m1-build","head":"b02a6730fb7a3d5ae9efbc9f5040c39812b42734","before":"e6df778b06bd22bad5218e288784085fab3e5d2f","commits":[{"sha":"b02a6730fb7a3d5ae9efbc9f5040c39812b42734","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 3.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/commits/b02a6730fb7a3d5ae9efbc9f5040c39812b42734"}]},"public":true,"created_at":"2015-01-01T15:02:22Z","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":"2489652148","type":"CreateEvent","actor":{"id":3493763,"login":"shubhamd","gravatar_id":"","url":"https://api.github.com/users/shubhamd","avatar_url":"https://avatars.githubusercontent.com/u/3493763?"},"repo":{"id":28688297,"name":"shubhamd/shubhamd.github.io","url":"https://api.github.com/repos/shubhamd/shubhamd.github.io"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:22Z"} +,{"id":"2489652150","type":"WatchEvent","actor":{"id":2328496,"login":"mrdaios","gravatar_id":"","url":"https://api.github.com/users/mrdaios","avatar_url":"https://avatars.githubusercontent.com/u/2328496?"},"repo":{"id":2331509,"name":"pooriaazimi/BetterDictionary","url":"https://api.github.com/repos/pooriaazimi/BetterDictionary"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:22Z"} +,{"id":"2489652151","type":"PushEvent","actor":{"id":90007,"login":"lukasmueller","gravatar_id":"","url":"https://api.github.com/users/lukasmueller","avatar_url":"https://avatars.githubusercontent.com/u/90007?"},"repo":{"id":11846582,"name":"solgenomics/gbs","url":"https://api.github.com/repos/solgenomics/gbs"},"payload":{"push_id":536864477,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"33de0cef45644c944ddc8e47c7b53f8f063eb325","before":"f9eb037cb87eadf6c81aa822c6487095c9528418","commits":[{"sha":"33de0cef45644c944ddc8e47c7b53f8f063eb325","author":{"email":"d9224b331176d2e198ac5218b7415e2f1956ab1a@cornell.edu","name":"Lukas Mueller"},"message":"improve output format.","distinct":true,"url":"https://api.github.com/repos/solgenomics/gbs/commits/33de0cef45644c944ddc8e47c7b53f8f063eb325"}]},"public":true,"created_at":"2015-01-01T15:02:23Z","org":{"id":260757,"login":"solgenomics","gravatar_id":"","url":"https://api.github.com/orgs/solgenomics","avatar_url":"https://avatars.githubusercontent.com/u/260757?"}} +,{"id":"2489652152","type":"PushEvent","actor":{"id":79195,"login":"kgish","gravatar_id":"","url":"https://api.github.com/users/kgish","avatar_url":"https://avatars.githubusercontent.com/u/79195?"},"repo":{"id":28479041,"name":"kgish/ember-hal-template","url":"https://api.github.com/repos/kgish/ember-hal-template"},"payload":{"push_id":536864478,"size":1,"distinct_size":1,"ref":"refs/heads/authentication","head":"82a5f54f0efe9b5970b2c0dc61b6920d30ba4dda","before":"ee4148eab08eed1a84fda2f8ceb28ccc4cfbe720","commits":[{"sha":"82a5f54f0efe9b5970b2c0dc61b6920d30ba4dda","author":{"email":"e1b8df71c768d938d37e6d0ef0591fc3f494458b@planet.nl","name":"Kiffin Gish"},"message":"Initial version for the login page.","distinct":true,"url":"https://api.github.com/repos/kgish/ember-hal-template/commits/82a5f54f0efe9b5970b2c0dc61b6920d30ba4dda"}]},"public":true,"created_at":"2015-01-01T15:02:23Z"} +,{"id":"2489652153","type":"PushEvent","actor":{"id":4610612,"login":"Wall-Dough","gravatar_id":"","url":"https://api.github.com/users/Wall-Dough","avatar_url":"https://avatars.githubusercontent.com/u/4610612?"},"repo":{"id":27177551,"name":"Wall-Dough/infinite-monkeys","url":"https://api.github.com/repos/Wall-Dough/infinite-monkeys"},"payload":{"push_id":536864479,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"49c1cfcb35ce0359fabfed5f1466e0c57c47617c","before":"d5b71f6a5eed9f3d3136f7a9a37e31f48f231a15","commits":[{"sha":"49c1cfcb35ce0359fabfed5f1466e0c57c47617c","author":{"email":"623372bcd722ceb16f7e85d758f89088b76f922e@gmail.com","name":"Wall-Dough"},"message":"Update code.js","distinct":true,"url":"https://api.github.com/repos/Wall-Dough/infinite-monkeys/commits/49c1cfcb35ce0359fabfed5f1466e0c57c47617c"}]},"public":true,"created_at":"2015-01-01T15:02:23Z"} +,{"id":"2489652155","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":536864481,"size":1,"distinct_size":1,"ref":"refs/heads/0.1","head":"b64bacaca806cb8f3ef0284966cf0a2b7fe20057","before":"590d14bfd9c3b06e3d9e49355d66ed13199e800d","commits":[{"sha":"b64bacaca806cb8f3ef0284966cf0a2b7fe20057","author":{"email":"254d51cb477bb0448649802c443c6e6c2f475324@gmail.com","name":"Bruno Carvalho de Araujo"},"message":"Update Connection.php","distinct":true,"url":"https://api.github.com/repos/brunocarvalhodearaujo/datastore/commits/b64bacaca806cb8f3ef0284966cf0a2b7fe20057"}]},"public":true,"created_at":"2015-01-01T15:02:23Z"} +,{"id":"2489652158","type":"WatchEvent","actor":{"id":1730702,"login":"mquandalle","gravatar_id":"","url":"https://api.github.com/users/mquandalle","avatar_url":"https://avatars.githubusercontent.com/u/1730702?"},"repo":{"id":24194652,"name":"ManuelDeLeon/viewmodel","url":"https://api.github.com/repos/ManuelDeLeon/viewmodel"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:24Z"} +,{"id":"2489652160","type":"CreateEvent","actor":{"id":10364748,"login":"floggingdolly","gravatar_id":"","url":"https://api.github.com/users/floggingdolly","avatar_url":"https://avatars.githubusercontent.com/u/10364748?"},"repo":{"id":28688569,"name":"floggingdolly/floggingdolly.github.io","url":"https://api.github.com/repos/floggingdolly/floggingdolly.github.io"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:24Z"} +,{"id":"2489652167","type":"PushEvent","actor":{"id":8610838,"login":"Teveillan","gravatar_id":"","url":"https://api.github.com/users/Teveillan","avatar_url":"https://avatars.githubusercontent.com/u/8610838?"},"repo":{"id":28685888,"name":"Teveillan/Teveillan.github.io","url":"https://api.github.com/repos/Teveillan/Teveillan.github.io"},"payload":{"push_id":536864485,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bcb8eb6c62ade0e1a1235cef6d48396d0baa160b","before":"dff95fe867b635be553dd3e7384c3640ac3eeb18","commits":[{"sha":"bcb8eb6c62ade0e1a1235cef6d48396d0baa160b","author":{"email":"61552775e06499f2cbdb1456b68360e582c10402@gmail.com","name":"Teveillan"},"message":"Site updated: 2015-01-01 23:02:06","distinct":true,"url":"https://api.github.com/repos/Teveillan/Teveillan.github.io/commits/bcb8eb6c62ade0e1a1235cef6d48396d0baa160b"}]},"public":true,"created_at":"2015-01-01T15:02:25Z"} +,{"id":"2489652169","type":"PushEvent","actor":{"id":10085190,"login":"ctgboy2010","gravatar_id":"","url":"https://api.github.com/users/ctgboy2010","avatar_url":"https://avatars.githubusercontent.com/u/10085190?"},"repo":{"id":28670425,"name":"ctgboy2010/php_file","url":"https://api.github.com/repos/ctgboy2010/php_file"},"payload":{"push_id":536864486,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a35cbe8e69d363ab057e8a95488a3552aafd7fe3","before":"3e39d7dc8956cac1adf8dfd466f0cf7ffbeb8ac6","commits":[{"sha":"a35cbe8e69d363ab057e8a95488a3552aafd7fe3","author":{"email":"50027342132eb7b639d7cb650c25d5be470ebd1f@gmail.com","name":"shajed"},"message":"PHP File functions","distinct":true,"url":"https://api.github.com/repos/ctgboy2010/php_file/commits/a35cbe8e69d363ab057e8a95488a3552aafd7fe3"}]},"public":true,"created_at":"2015-01-01T15:02:25Z"} +,{"id":"2489652173","type":"WatchEvent","actor":{"id":1811118,"login":"rodolfobandeira","gravatar_id":"","url":"https://api.github.com/users/rodolfobandeira","avatar_url":"https://avatars.githubusercontent.com/u/1811118?"},"repo":{"id":23622727,"name":"digitalocean/godo","url":"https://api.github.com/repos/digitalocean/godo"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:25Z","org":{"id":4650108,"login":"digitalocean","gravatar_id":"","url":"https://api.github.com/orgs/digitalocean","avatar_url":"https://avatars.githubusercontent.com/u/4650108?"}} +,{"id":"2489652175","type":"PushEvent","actor":{"id":8175575,"login":"jackfirth","gravatar_id":"","url":"https://api.github.com/users/jackfirth","avatar_url":"https://avatars.githubusercontent.com/u/8175575?"},"repo":{"id":28682642,"name":"jackfirth/point-free","url":"https://api.github.com/repos/jackfirth/point-free"},"payload":{"push_id":536864489,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0c96ceb8021ca362aa7466aef69a0a8e5269fd4f","before":"af8fea91fde1a5c9b710f082bd8a708645583642","commits":[{"sha":"0c96ceb8021ca362aa7466aef69a0a8e5269fd4f","author":{"email":"1631de321268a0a34106df6e1a8ab338f1fbfbf2@gmail.com","name":"JackFirth"},"message":"Thrush\n\nRename","distinct":true,"url":"https://api.github.com/repos/jackfirth/point-free/commits/0c96ceb8021ca362aa7466aef69a0a8e5269fd4f"}]},"public":true,"created_at":"2015-01-01T15:02:26Z"} +,{"id":"2489652177","type":"PushEvent","actor":{"id":3824954,"login":"jshawl","gravatar_id":"","url":"https://api.github.com/users/jshawl","avatar_url":"https://avatars.githubusercontent.com/u/3824954?"},"repo":{"id":28678748,"name":"jshawl/sassbit.es","url":"https://api.github.com/repos/jshawl/sassbit.es"},"payload":{"push_id":536864490,"size":2,"distinct_size":2,"ref":"refs/heads/gh-pages","head":"f37cf7324cff16354764f366eb6c0d604f74f881","before":"eafa5b4eca61d09a971ff3de1c5cfc37785c84b0","commits":[{"sha":"75b720b36945423e25586c52b6d23f732f26dd12","author":{"email":"a5c95b3d7cb4d0ae05a15c79c79ab458dc2c8f9e@jshawl.com","name":"Jesse Shawl"},"message":"remove posts","distinct":true,"url":"https://api.github.com/repos/jshawl/sassbit.es/commits/75b720b36945423e25586c52b6d23f732f26dd12"},{"sha":"f37cf7324cff16354764f366eb6c0d604f74f881","author":{"email":"a5c95b3d7cb4d0ae05a15c79c79ab458dc2c8f9e@jshawl.com","name":"Jesse Shawl"},"message":"add posts","distinct":true,"url":"https://api.github.com/repos/jshawl/sassbit.es/commits/f37cf7324cff16354764f366eb6c0d604f74f881"}]},"public":true,"created_at":"2015-01-01T15:02:26Z"} +,{"id":"2489652179","type":"PushEvent","actor":{"id":8022656,"login":"tarma","gravatar_id":"","url":"https://api.github.com/users/tarma","avatar_url":"https://avatars.githubusercontent.com/u/8022656?"},"repo":{"id":28661052,"name":"tarma/WSN","url":"https://api.github.com/repos/tarma/WSN"},"payload":{"push_id":536864491,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a8c8242e56e01feb1703a0b16fd4b0c24970c5ad","before":"82ba5a857f434f38952644df522b7afd625b1da9","commits":[{"sha":"a8c8242e56e01feb1703a0b16fd4b0c24970c5ad","author":{"email":"ae6eeee9dfdfc6dbefe1e230be52e56c07824876@hotmail.com","name":"tarma"},"message":"Delete README.md","distinct":true,"url":"https://api.github.com/repos/tarma/WSN/commits/a8c8242e56e01feb1703a0b16fd4b0c24970c5ad"}]},"public":true,"created_at":"2015-01-01T15:02:27Z"} +,{"id":"2489652182","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":3451238,"name":"yiisoft/yii","url":"https://api.github.com/repos/yiisoft/yii"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/yiisoft/yii/issues/3686","labels_url":"https://api.github.com/repos/yiisoft/yii/issues/3686/labels{/name}","comments_url":"https://api.github.com/repos/yiisoft/yii/issues/3686/comments","events_url":"https://api.github.com/repos/yiisoft/yii/issues/3686/events","html_url":"https://github.com/yiisoft/yii/issues/3686","id":53185746,"number":3686,"title":"Remove inline style in CForm.php","user":{"login":"alaabadran","id":1215589,"avatar_url":"https://avatars.githubusercontent.com/u/1215589?v=3","gravatar_id":"","url":"https://api.github.com/users/alaabadran","html_url":"https://github.com/alaabadran","followers_url":"https://api.github.com/users/alaabadran/followers","following_url":"https://api.github.com/users/alaabadran/following{/other_user}","gists_url":"https://api.github.com/users/alaabadran/gists{/gist_id}","starred_url":"https://api.github.com/users/alaabadran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alaabadran/subscriptions","organizations_url":"https://api.github.com/users/alaabadran/orgs","repos_url":"https://api.github.com/users/alaabadran/repos","events_url":"https://api.github.com/users/alaabadran/events{/privacy}","received_events_url":"https://api.github.com/users/alaabadran/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/yiisoft/yii/labels/severity%3Aminor","name":"severity:minor","color":"444444"},{"url":"https://api.github.com/repos/yiisoft/yii/labels/type%3Aenhancement","name":"type:enhancement","color":"d7e102"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-12-31T14:19:15Z","updated_at":"2015-01-01T15:02:26Z","closed_at":null,"body":"Using \r\n` style=\"visibility:hidden\" ` in both\r\nrenderElement() and renderBegin() is wrong. \r\nThey should be replaced at least with ` style=\"display:none\"` \r\nor removed completely (recommended)"},"comment":{"url":"https://api.github.com/repos/yiisoft/yii/issues/comments/68488536","html_url":"https://github.com/yiisoft/yii/issues/3686#issuecomment-68488536","issue_url":"https://api.github.com/repos/yiisoft/yii/issues/3686","id":68488536,"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:02:26Z","updated_at":"2015-01-01T15:02:26Z","body":"so chaning to `display:none` would solve your issue, right? I think this is the best way to keep BC."}},"public":true,"created_at":"2015-01-01T15:02:27Z","org":{"id":993323,"login":"yiisoft","gravatar_id":"","url":"https://api.github.com/orgs/yiisoft","avatar_url":"https://avatars.githubusercontent.com/u/993323?"}} +,{"id":"2489652187","type":"WatchEvent","actor":{"id":2641587,"login":"ScottDuke","gravatar_id":"","url":"https://api.github.com/users/ScottDuke","avatar_url":"https://avatars.githubusercontent.com/u/2641587?"},"repo":{"id":2139017,"name":"sstephenson/rbenv","url":"https://api.github.com/repos/sstephenson/rbenv"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:28Z"} +,{"id":"2489652189","type":"PushEvent","actor":{"id":5276943,"login":"orbingol","gravatar_id":"","url":"https://api.github.com/users/orbingol","avatar_url":"https://avatars.githubusercontent.com/u/5276943?"},"repo":{"id":12971781,"name":"orbingol/orbingol.github.io","url":"https://api.github.com/repos/orbingol/orbingol.github.io"},"payload":{"push_id":536864496,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0d706dc0666f321b455777c4f9963cd4fba682b7","before":"d7599522b884bf8bc770043288ca241e2f7f7958","commits":[{"sha":"0d706dc0666f321b455777c4f9963cd4fba682b7","author":{"email":"08590e5270f49f521b62cba13259209c122fe9bc@gmail.com","name":"Onur Rauf Bingol"},"message":"Updated \"AB15 Drupal Kurs Icerigi\" post.","distinct":true,"url":"https://api.github.com/repos/orbingol/orbingol.github.io/commits/0d706dc0666f321b455777c4f9963cd4fba682b7"}]},"public":true,"created_at":"2015-01-01T15:02:28Z"} +,{"id":"2489652190","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":18327646,"name":"cloudify-cosmo/cloudify-plugins-common","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-plugins-common"},"payload":{"push_id":536864497,"size":1,"distinct_size":1,"ref":"refs/heads/3.2m1-build","head":"726da73ef006278bdb3cc3be8c6cbbd222e50017","before":"9c57b963f121441a4de92ffaf8d6a98268995d30","commits":[{"sha":"726da73ef006278bdb3cc3be8c6cbbd222e50017","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 3.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-plugins-common/commits/726da73ef006278bdb3cc3be8c6cbbd222e50017"}]},"public":true,"created_at":"2015-01-01T15:02:28Z","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":"2489652203","type":"PushEvent","actor":{"id":6825362,"login":"Aymenworks","gravatar_id":"","url":"https://api.github.com/users/Aymenworks","avatar_url":"https://avatars.githubusercontent.com/u/6825362?"},"repo":{"id":28316236,"name":"Aymenworks/EmptyApp","url":"https://api.github.com/repos/Aymenworks/EmptyApp"},"payload":{"push_id":536864503,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"33657cde32af67209e185969bd3c89f0b34d6ccd","before":"1fe15e6ff77511a3162a280581e1cc30c2e117ed","commits":[{"sha":"33657cde32af67209e185969bd3c89f0b34d6ccd","author":{"email":"c4ef171a48d78f662bcce391783b9132c95d617d@gmail.com","name":"Rebouh Aymen"},"message":"fix circle yml","distinct":true,"url":"https://api.github.com/repos/Aymenworks/EmptyApp/commits/33657cde32af67209e185969bd3c89f0b34d6ccd"}]},"public":true,"created_at":"2015-01-01T15:02:31Z"} +,{"id":"2489652205","type":"PushEvent","actor":{"id":10351099,"login":"yangnuri","gravatar_id":"","url":"https://api.github.com/users/yangnuri","avatar_url":"https://avatars.githubusercontent.com/u/10351099?"},"repo":{"id":28683302,"name":"yangnuri/yangnuri.github.io","url":"https://api.github.com/repos/yangnuri/yangnuri.github.io"},"payload":{"push_id":536864504,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"db41abc23aa7826020051ac085006f24683b7a8c","before":"5853ef98dcd99d17630f6a212b42559308b2c88d","commits":[{"sha":"db41abc23aa7826020051ac085006f24683b7a8c","author":{"email":"d19294121d393899624648c460bc0b6750613ec3@hanmail.net","name":"seung hwan Shin"},"message":"Update index.html","distinct":true,"url":"https://api.github.com/repos/yangnuri/yangnuri.github.io/commits/db41abc23aa7826020051ac085006f24683b7a8c"}]},"public":true,"created_at":"2015-01-01T15:02:31Z"} +,{"id":"2489652206","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":18327753,"name":"cloudify-cosmo/cloudify-chef-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-chef-plugin"},"payload":{"push_id":536864505,"size":1,"distinct_size":1,"ref":"refs/heads/1.2m1-build","head":"dc4ab71e78f549500fb0157936f7c5cbc475067a","before":"3efd71559f6ef71dfdf8ed6465cacd900affbcb0","commits":[{"sha":"dc4ab71e78f549500fb0157936f7c5cbc475067a","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 1.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-chef-plugin/commits/dc4ab71e78f549500fb0157936f7c5cbc475067a"}]},"public":true,"created_at":"2015-01-01T15:02:31Z","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":"2489652208","type":"PushEvent","actor":{"id":9965,"login":"sbooth","gravatar_id":"","url":"https://api.github.com/users/sbooth","avatar_url":"https://avatars.githubusercontent.com/u/9965?"},"repo":{"id":1679183,"name":"sbooth/SFBPopovers","url":"https://api.github.com/repos/sbooth/SFBPopovers"},"payload":{"push_id":536864506,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2f5d31e4d91bca94c96549f0661a30af8115e00e","before":"344cd621c4dc2e666b5df1fd1a2e8ff8a4c1e49c","commits":[{"sha":"2f5d31e4d91bca94c96549f0661a30af8115e00e","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@sbooth.org","name":"Stephen F. Booth"},"message":"Use NS_ENUM","distinct":true,"url":"https://api.github.com/repos/sbooth/SFBPopovers/commits/2f5d31e4d91bca94c96549f0661a30af8115e00e"}]},"public":true,"created_at":"2015-01-01T15:02:31Z"} +,{"id":"2489652209","type":"PushEvent","actor":{"id":1197137,"login":"jsm174","gravatar_id":"","url":"https://api.github.com/users/jsm174","avatar_url":"https://avatars.githubusercontent.com/u/1197137?"},"repo":{"id":20755007,"name":"jsm174/vpinball","url":"https://api.github.com/repos/jsm174/vpinball"},"payload":{"push_id":536864507,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c1d651ee7b8944db70b2ea4fb8f1d85b83ecf1a8","before":"b226ea9fcb0940a1fc86b0b6c5419a2ae1a8579a","commits":[{"sha":"c1d651ee7b8944db70b2ea4fb8f1d85b83ecf1a8","author":{"email":"4251d243cfe617bfec44b514962296c6f38ba57b@14438d79-0ffd-4333-8ae7-ea2bdd901387","name":"fuzzelhjb"},"message":"ramp normals smoothed and wire physics updated","distinct":true,"url":"https://api.github.com/repos/jsm174/vpinball/commits/c1d651ee7b8944db70b2ea4fb8f1d85b83ecf1a8"}]},"public":true,"created_at":"2015-01-01T15:02:32Z"} +,{"id":"2489652210","type":"WatchEvent","actor":{"id":466238,"login":"Paulf-999","gravatar_id":"","url":"https://api.github.com/users/Paulf-999","avatar_url":"https://avatars.githubusercontent.com/u/466238?"},"repo":{"id":23622031,"name":"luisperezphd/ngModule","url":"https://api.github.com/repos/luisperezphd/ngModule"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:32Z"} +,{"id":"2489652211","type":"PushEvent","actor":{"id":659036,"login":"torgtaitai","gravatar_id":"","url":"https://api.github.com/users/torgtaitai","avatar_url":"https://avatars.githubusercontent.com/u/659036?"},"repo":{"id":2233930,"name":"torgtaitai/BCDice","url":"https://api.github.com/repos/torgtaitai/BCDice"},"payload":{"push_id":536864508,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"32d72cace50ccce09652892459b6359666c676da","before":"13791edc0ec4699f9a0f82abac38caf1633c7af3","commits":[{"sha":"32d72cace50ccce09652892459b6359666c676da","author":{"email":"4f26aeafdb2367620a393c973eddbe8f8b846ebd@torgtaitai.com","name":"torgtaitai"},"message":"Ver2.02.28 2015/01/02\n・ダイスボットに同人ゲームのガラコと破界の塔を追加。anony403さん、ブラフマンさんありがとうっ!!","distinct":true,"url":"https://api.github.com/repos/torgtaitai/BCDice/commits/32d72cace50ccce09652892459b6359666c676da"}]},"public":true,"created_at":"2015-01-01T15:02:32Z"} +,{"id":"2489652216","type":"PushEvent","actor":{"id":6641648,"login":"Stormatree","gravatar_id":"","url":"https://api.github.com/users/Stormatree","avatar_url":"https://avatars.githubusercontent.com/u/6641648?"},"repo":{"id":28686748,"name":"Stormatree/Garry-s-Mall-2","url":"https://api.github.com/repos/Stormatree/Garry-s-Mall-2"},"payload":{"push_id":536864510,"size":1,"distinct_size":1,"ref":"refs/heads/dev","head":"73b822ead0129b30a863fda73dc65f50347774b5","before":"442b12ad1550c4de4a4326f4f0362bf972adb291","commits":[{"sha":"73b822ead0129b30a863fda73dc65f50347774b5","author":{"email":"87160d1871361ac766e97654b8a80a197c8436ed@googlemail.com","name":"Elliott Slingsby"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/Stormatree/Garry-s-Mall-2/commits/73b822ead0129b30a863fda73dc65f50347774b5"}]},"public":true,"created_at":"2015-01-01T15:02:32Z"} +,{"id":"2489652217","type":"PushEvent","actor":{"id":8464489,"login":"markusorngren","gravatar_id":"","url":"https://api.github.com/users/markusorngren","avatar_url":"https://avatars.githubusercontent.com/u/8464489?"},"repo":{"id":25523874,"name":"MyRobotLab/pyrobotlab","url":"https://api.github.com/repos/MyRobotLab/pyrobotlab"},"payload":{"push_id":536864511,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9c11065ac1480fa054b70d65cd2feb26a67acd6e","before":"2011fa54d1368fd2f2eeae2e4bef3362233c15a1","commits":[{"sha":"9c11065ac1480fa054b70d65cd2feb26a67acd6e","author":{"email":"5c84e5f571b1e9ab19ab493ee8d9a3dcdab7fb5a@gmail.com","name":"markusorngren"},"message":"Create Robynmiconoff.py","distinct":true,"url":"https://api.github.com/repos/MyRobotLab/pyrobotlab/commits/9c11065ac1480fa054b70d65cd2feb26a67acd6e"}]},"public":true,"created_at":"2015-01-01T15:02:32Z","org":{"id":6167429,"login":"MyRobotLab","gravatar_id":"","url":"https://api.github.com/orgs/MyRobotLab","avatar_url":"https://avatars.githubusercontent.com/u/6167429?"}} +,{"id":"2489652224","type":"CreateEvent","actor":{"id":292693,"login":"mikemoraned","gravatar_id":"","url":"https://api.github.com/users/mikemoraned","avatar_url":"https://avatars.githubusercontent.com/u/292693?"},"repo":{"id":28688640,"name":"mikemoraned/spark-play-sbt","url":"https://api.github.com/repos/mikemoraned/spark-play-sbt"},"payload":{"ref":"feature/twitter-play-geohash-geohash","ref_type":"branch","master_branch":"feature/twitter-play-geohash-geohash","description":"Playing around with Spark, using SBT","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:33Z"} +,{"id":"2489652225","type":"IssuesEvent","actor":{"id":1665772,"login":"ondrejsika","gravatar_id":"","url":"https://api.github.com/users/ondrejsika","avatar_url":"https://avatars.githubusercontent.com/u/1665772?"},"repo":{"id":13438321,"name":"phphost/phphost","url":"https://api.github.com/repos/phphost/phphost"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/phphost/phphost/issues/3","labels_url":"https://api.github.com/repos/phphost/phphost/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/phphost/phphost/issues/3/comments","events_url":"https://api.github.com/repos/phphost/phphost/issues/3/events","html_url":"https://github.com/phphost/phphost/issues/3","id":53221382,"number":3,"title":"check validity of domain","user":{"login":"ondrejsika","id":1665772,"avatar_url":"https://avatars.githubusercontent.com/u/1665772?v=3","gravatar_id":"","url":"https://api.github.com/users/ondrejsika","html_url":"https://github.com/ondrejsika","followers_url":"https://api.github.com/users/ondrejsika/followers","following_url":"https://api.github.com/users/ondrejsika/following{/other_user}","gists_url":"https://api.github.com/users/ondrejsika/gists{/gist_id}","starred_url":"https://api.github.com/users/ondrejsika/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ondrejsika/subscriptions","organizations_url":"https://api.github.com/users/ondrejsika/orgs","repos_url":"https://api.github.com/users/ondrejsika/repos","events_url":"https://api.github.com/users/ondrejsika/events{/privacy}","received_events_url":"https://api.github.com/users/ondrejsika/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:02:33Z","updated_at":"2015-01-01T15:02:33Z","closed_at":null,"body":""}},"public":true,"created_at":"2015-01-01T15:02:33Z","org":{"id":5645680,"login":"phphost","gravatar_id":"","url":"https://api.github.com/orgs/phphost","avatar_url":"https://avatars.githubusercontent.com/u/5645680?"}} +,{"id":"2489652228","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":18327738,"name":"cloudify-cosmo/cloudify-openstack-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-openstack-plugin"},"payload":{"push_id":536864515,"size":1,"distinct_size":1,"ref":"refs/heads/1.2m1-build","head":"0f769a2b6e0ed0b96caf86933eb6ed0bedaefd36","before":"72e105461cb96415847abbd5255260f41c6b70d3","commits":[{"sha":"0f769a2b6e0ed0b96caf86933eb6ed0bedaefd36","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 1.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-openstack-plugin/commits/0f769a2b6e0ed0b96caf86933eb6ed0bedaefd36"}]},"public":true,"created_at":"2015-01-01T15:02:33Z","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":"2489652230","type":"CreateEvent","actor":{"id":3028941,"login":"alexwzk","gravatar_id":"","url":"https://api.github.com/users/alexwzk","avatar_url":"https://avatars.githubusercontent.com/u/3028941?"},"repo":{"id":22000093,"name":"alexwzk/bitcoin","url":"https://api.github.com/repos/alexwzk/bitcoin"},"payload":{"ref":"dev-prm","ref_type":"branch","master_branch":"permacoin","description":"Bitcoin Core integration/staging tree","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:34Z"} +,{"id":"2489652234","type":"IssueCommentEvent","actor":{"id":48054,"login":"mpapis","gravatar_id":"","url":"https://api.github.com/users/mpapis","avatar_url":"https://avatars.githubusercontent.com/u/48054?"},"repo":{"id":1420493,"name":"travis-ci/travis-ci","url":"https://api.github.com/repos/travis-ci/travis-ci"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/travis-ci/travis-ci/issues/2987","labels_url":"https://api.github.com/repos/travis-ci/travis-ci/issues/2987/labels{/name}","comments_url":"https://api.github.com/repos/travis-ci/travis-ci/issues/2987/comments","events_url":"https://api.github.com/repos/travis-ci/travis-ci/issues/2987/events","html_url":"https://github.com/travis-ci/travis-ci/issues/2987","id":50073037,"number":2987,"title":"Ruby 2.2.0-preview1 in OSX machines","user":{"login":"deivid-rodriguez","id":2887858,"avatar_url":"https://avatars.githubusercontent.com/u/2887858?v=3","gravatar_id":"","url":"https://api.github.com/users/deivid-rodriguez","html_url":"https://github.com/deivid-rodriguez","followers_url":"https://api.github.com/users/deivid-rodriguez/followers","following_url":"https://api.github.com/users/deivid-rodriguez/following{/other_user}","gists_url":"https://api.github.com/users/deivid-rodriguez/gists{/gist_id}","starred_url":"https://api.github.com/users/deivid-rodriguez/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deivid-rodriguez/subscriptions","organizations_url":"https://api.github.com/users/deivid-rodriguez/orgs","repos_url":"https://api.github.com/users/deivid-rodriguez/repos","events_url":"https://api.github.com/users/deivid-rodriguez/events{/privacy}","received_events_url":"https://api.github.com/users/deivid-rodriguez/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":8,"created_at":"2014-11-25T19:33:04Z","updated_at":"2015-01-01T15:02:34Z","closed_at":"2015-01-01T14:48:31Z","body":"I'm specifiying\r\n\r\n rvm:\r\n - 2.0.0\r\n - 2.1\r\n - 2.2\r\n - ruby-head\r\n\r\nAnd it's failing for `2.2` in OSX because it can't find the Ruby installation. In #2816 it is mentioned that `2.2.0-preview1` is installed in the OSX VMs so maybe it's just the link from `2.2` to `2.2.0-preview`1 that's not properly configured?\r\n\r\nThanks!"},"comment":{"url":"https://api.github.com/repos/travis-ci/travis-ci/issues/comments/68488537","html_url":"https://github.com/travis-ci/travis-ci/issues/2987#issuecomment-68488537","issue_url":"https://api.github.com/repos/travis-ci/travis-ci/issues/2987","id":68488537,"user":{"login":"mpapis","id":48054,"avatar_url":"https://avatars.githubusercontent.com/u/48054?v=3","gravatar_id":"","url":"https://api.github.com/users/mpapis","html_url":"https://github.com/mpapis","followers_url":"https://api.github.com/users/mpapis/followers","following_url":"https://api.github.com/users/mpapis/following{/other_user}","gists_url":"https://api.github.com/users/mpapis/gists{/gist_id}","starred_url":"https://api.github.com/users/mpapis/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mpapis/subscriptions","organizations_url":"https://api.github.com/users/mpapis/orgs","repos_url":"https://api.github.com/users/mpapis/repos","events_url":"https://api.github.com/users/mpapis/events{/privacy}","received_events_url":"https://api.github.com/users/mpapis/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:02:34Z","updated_at":"2015-01-01T15:02:34Z","body":"you can make it permanent with:\r\n```bash\r\necho rvm_fuzzy_flag=1 >> ~/.rvmrc\r\n```\r\nI had it for some time although ended up removing it, using `--fuzzy` when I do not have time to install exact ruby version and there is similar one (patchlevel difference for `1.8`-`2.0`, teeny version difference for `2.1`+)"}},"public":true,"created_at":"2015-01-01T15:02:34Z","org":{"id":639823,"login":"travis-ci","gravatar_id":"","url":"https://api.github.com/orgs/travis-ci","avatar_url":"https://avatars.githubusercontent.com/u/639823?"}} +,{"id":"2489652235","type":"PushEvent","actor":{"id":4711416,"login":"Rannie","gravatar_id":"","url":"https://api.github.com/users/Rannie","avatar_url":"https://avatars.githubusercontent.com/u/4711416?"},"repo":{"id":26004980,"name":"Rannie/Rannie.github.io","url":"https://api.github.com/repos/Rannie/Rannie.github.io"},"payload":{"push_id":536864518,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3d55634ccb213fc63f5e967713c35f4cb7c865ef","before":"0248f821604af5064b27793b164548ad78bcd814","commits":[{"sha":"3d55634ccb213fc63f5e967713c35f4cb7c865ef","author":{"email":"f56ae11060471a41add17fc0ece7d0bdb0f0084a@163.com","name":"Hanran Liu"},"message":"image","distinct":true,"url":"https://api.github.com/repos/Rannie/Rannie.github.io/commits/3d55634ccb213fc63f5e967713c35f4cb7c865ef"}]},"public":true,"created_at":"2015-01-01T15:02:34Z"} +,{"id":"2489652238","type":"PushEvent","actor":{"id":1712548,"login":"Narazaka","gravatar_id":"","url":"https://api.github.com/users/Narazaka","avatar_url":"https://avatars.githubusercontent.com/u/1712548?"},"repo":{"id":27251593,"name":"Ikagaka/Ikagaka.demo","url":"https://api.github.com/repos/Ikagaka/Ikagaka.demo"},"payload":{"push_id":536864519,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"5faf504772280a3f1c8c15434ed3dd35eb3bcf34","before":"003e07a348d9774e1385c4fafd9ee7b14f166889","commits":[{"sha":"5faf504772280a3f1c8c15434ed3dd35eb3bcf34","author":{"email":"59bd0a3ff43b32849b319e645d4798d8a5d1e889@narazaka.net","name":"Narazaka"},"message":"nar","distinct":true,"url":"https://api.github.com/repos/Ikagaka/Ikagaka.demo/commits/5faf504772280a3f1c8c15434ed3dd35eb3bcf34"}]},"public":true,"created_at":"2015-01-01T15:02:34Z","org":{"id":9678499,"login":"Ikagaka","gravatar_id":"","url":"https://api.github.com/orgs/Ikagaka","avatar_url":"https://avatars.githubusercontent.com/u/9678499?"}} +,{"id":"2489652242","type":"PushEvent","actor":{"id":10364203,"login":"gladwinbobby","gravatar_id":"","url":"https://api.github.com/users/gladwinbobby","avatar_url":"https://avatars.githubusercontent.com/u/10364203?"},"repo":{"id":28687073,"name":"gladwinbobby/Confession-App","url":"https://api.github.com/repos/gladwinbobby/Confession-App"},"payload":{"push_id":536864522,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8b9d76a1eb4fdf6c13c26476b60903e754d22341","before":"2a3b71b79ea031462d982364f14eef4854950283","commits":[{"sha":"8b9d76a1eb4fdf6c13c26476b60903e754d22341","author":{"email":"e292b451491da8bc716210e75644dde391673c71@gmail.com","name":"Gladwin Henald"},"message":"Update db_functions.php","distinct":true,"url":"https://api.github.com/repos/gladwinbobby/Confession-App/commits/8b9d76a1eb4fdf6c13c26476b60903e754d22341"}]},"public":true,"created_at":"2015-01-01T15:02:36Z"} +,{"id":"2489652244","type":"PushEvent","actor":{"id":236569,"login":"mink365","gravatar_id":"","url":"https://api.github.com/users/mink365","avatar_url":"https://avatars.githubusercontent.com/u/236569?"},"repo":{"id":17405087,"name":"mink365/RacingEngine","url":"https://api.github.com/repos/mink365/RacingEngine"},"payload":{"push_id":536864524,"size":10,"distinct_size":10,"ref":"refs/heads/master","head":"6251ee12cdb9e901439a56e66768437b3b94d8c4","before":"5f19314b905177eb586f77b934fc087690b8a7c9","commits":[{"sha":"0b915e7a1348817ea7dfd87db79bf304d44af97e","author":{"email":"ab8e82689f76e6b89ccc6ff4f6ce230c868ef530@gmail.com","name":"mink365"},"message":"fix FileSystem for android asset","distinct":true,"url":"https://api.github.com/repos/mink365/RacingEngine/commits/0b915e7a1348817ea7dfd87db79bf304d44af97e"},{"sha":"287783dc56d3d09ec6362beaa04b3d808d3e935f","author":{"email":"ab8e82689f76e6b89ccc6ff4f6ce230c868ef530@gmail.com","name":"mink365"},"message":"use asset resource in android","distinct":true,"url":"https://api.github.com/repos/mink365/RacingEngine/commits/287783dc56d3d09ec6362beaa04b3d808d3e935f"},{"sha":"989ab75d726ecee4351fa3982d671916c2783b27","author":{"email":"ab8e82689f76e6b89ccc6ff4f6ce230c868ef530@gmail.com","name":"mink365"},"message":"add code of audio system","distinct":true,"url":"https://api.github.com/repos/mink365/RacingEngine/commits/989ab75d726ecee4351fa3982d671916c2783b27"},{"sha":"f0bfac1f690d4a5d549840cc06d445b80ec1a90f","author":{"email":"ab8e82689f76e6b89ccc6ff4f6ce230c868ef530@gmail.com","name":"mink365"},"message":"improve audio system","distinct":true,"url":"https://api.github.com/repos/mink365/RacingEngine/commits/f0bfac1f690d4a5d549840cc06d445b80ec1a90f"},{"sha":"cf2b4c571a8f6f08a1e92c48f593ce819e45d091","author":{"email":"ab8e82689f76e6b89ccc6ff4f6ce230c868ef530@gmail.com","name":"mink365"},"message":"add add Audio Test","distinct":true,"url":"https://api.github.com/repos/mink365/RacingEngine/commits/cf2b4c571a8f6f08a1e92c48f593ce819e45d091"},{"sha":"cab566accdd3df289ef054e3f60a7a068b41858e","author":{"email":"ab8e82689f76e6b89ccc6ff4f6ce230c868ef530@gmail.com","name":"mink365"},"message":"fix android file","distinct":true,"url":"https://api.github.com/repos/mink365/RacingEngine/commits/cab566accdd3df289ef054e3f60a7a068b41858e"},{"sha":"e2d510ec4462fc5a5a0b361cc47ebca6ec53e990","author":{"email":"ab8e82689f76e6b89ccc6ff4f6ce230c868ef530@gmail.com","name":"mink365"},"message":"fix OpenAL error","distinct":true,"url":"https://api.github.com/repos/mink365/RacingEngine/commits/e2d510ec4462fc5a5a0b361cc47ebca6ec53e990"},{"sha":"f9e97976cc9dcd54d24c2ed6eeaec236025d048f","author":{"email":"ab8e82689f76e6b89ccc6ff4f6ce230c868ef530@gmail.com","name":"mink365"},"message":"fix error of calc vertex count, use vertex buffer data directly","distinct":true,"url":"https://api.github.com/repos/mink365/RacingEngine/commits/f9e97976cc9dcd54d24c2ed6eeaec236025d048f"},{"sha":"aebb9258385d366725d5138d7dd507a06351c424","author":{"email":"ab8e82689f76e6b89ccc6ff4f6ce230c868ef530@gmail.com","name":"mink365"},"message":"simple transform index buffer from uint to short","distinct":true,"url":"https://api.github.com/repos/mink365/RacingEngine/commits/aebb9258385d366725d5138d7dd507a06351c424"},{"sha":"6251ee12cdb9e901439a56e66768437b3b94d8c4","author":{"email":"ab8e82689f76e6b89ccc6ff4f6ce230c868ef530@gmail.com","name":"mink365"},"message":"add audio system to Android.mk","distinct":true,"url":"https://api.github.com/repos/mink365/RacingEngine/commits/6251ee12cdb9e901439a56e66768437b3b94d8c4"}]},"public":true,"created_at":"2015-01-01T15:02:37Z"} +,{"id":"2489652246","type":"CreateEvent","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","master_branch":"m","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:37Z","org":{"id":10051895,"login":"lollipoop","gravatar_id":"","url":"https://api.github.com/orgs/lollipoop","avatar_url":"https://avatars.githubusercontent.com/u/10051895?"}} +,{"id":"2489652249","type":"PushEvent","actor":{"id":5215572,"login":"DaHofa","gravatar_id":"","url":"https://api.github.com/users/DaHofa","avatar_url":"https://avatars.githubusercontent.com/u/5215572?"},"repo":{"id":28300383,"name":"DaHofa/ProjectX","url":"https://api.github.com/repos/DaHofa/ProjectX"},"payload":{"push_id":536864526,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cfe6f5ee6c7036fbaf029a92db3f5e0f36020527","before":"ae82d4e2f8dfc6344417bc5b367c699dd158489e","commits":[{"sha":"cfe6f5ee6c7036fbaf029a92db3f5e0f36020527","author":{"email":"2dc08cd05178f8a6fae4aab401580c292e15fd9d@liwest.at","name":"DaHofa"},"message":"small improvement of code structure.","distinct":true,"url":"https://api.github.com/repos/DaHofa/ProjectX/commits/cfe6f5ee6c7036fbaf029a92db3f5e0f36020527"}]},"public":true,"created_at":"2015-01-01T15:02:37Z"} +,{"id":"2489652252","type":"PushEvent","actor":{"id":223335,"login":"jettify","gravatar_id":"","url":"https://api.github.com/users/jettify","avatar_url":"https://avatars.githubusercontent.com/u/223335?"},"repo":{"id":22174212,"name":"jettify/aiogibson","url":"https://api.github.com/repos/jettify/aiogibson"},"payload":{"push_id":536864530,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"59a45a8515c0e19cfed3c1a4d5b9398681f8bc6f","before":"d6343b722ea2af476a81a9f17956dceb42403e3a","commits":[{"sha":"59a45a8515c0e19cfed3c1a4d5b9398681f8bc6f","author":{"email":"eb4210615e6f7d8633151b39d3bf3b0924fddbc7@yahoo.com","name":"Nickolai Novik"},"message":"move to nose","distinct":true,"url":"https://api.github.com/repos/jettify/aiogibson/commits/59a45a8515c0e19cfed3c1a4d5b9398681f8bc6f"}]},"public":true,"created_at":"2015-01-01T15:02:37Z"} +,{"id":"2489652253","type":"WatchEvent","actor":{"id":970964,"login":"x1957","gravatar_id":"","url":"https://api.github.com/users/x1957","avatar_url":"https://avatars.githubusercontent.com/u/970964?"},"repo":{"id":16363880,"name":"tomprimozic/type-systems","url":"https://api.github.com/repos/tomprimozic/type-systems"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:37Z"} +,{"id":"2489652255","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":19340336,"name":"cloudify-cosmo/cloudify-puppet-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-puppet-plugin"},"payload":{"push_id":536864529,"size":1,"distinct_size":1,"ref":"refs/heads/1.2m1-build","head":"a71032d3590107d5b6c82ce101034ebfbba54495","before":"f5958528e8d4bb2444a9b7d13511e220c6a71536","commits":[{"sha":"a71032d3590107d5b6c82ce101034ebfbba54495","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 1.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-puppet-plugin/commits/a71032d3590107d5b6c82ce101034ebfbba54495"}]},"public":true,"created_at":"2015-01-01T15:02:37Z","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":"2489652257","type":"PushEvent","actor":{"id":181719,"login":"tuvokki","gravatar_id":"","url":"https://api.github.com/users/tuvokki","avatar_url":"https://avatars.githubusercontent.com/u/181719?"},"repo":{"id":27592694,"name":"tuvokki/locals","url":"https://api.github.com/repos/tuvokki/locals"},"payload":{"push_id":536864531,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"201a73478124ba7fb569a2e21d89a3fb8968966a","before":"c9a9ec7af37f7b23dc7584a4955dffa4436a4315","commits":[{"sha":"201a73478124ba7fb569a2e21d89a3fb8968966a","author":{"email":"551dc3238f358fff847af6267cef3cee20066362@gmail.com","name":"Wouter"},"message":"Use $route for resolving","distinct":true,"url":"https://api.github.com/repos/tuvokki/locals/commits/201a73478124ba7fb569a2e21d89a3fb8968966a"}]},"public":true,"created_at":"2015-01-01T15:02:37Z"} +,{"id":"2489652258","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":536864532,"size":1,"distinct_size":1,"ref":"refs/heads/br_herman","head":"9abf9375103bfcc66167e15a96e939d8232667a8","before":"1b58dd4c4e14ea9cf5212b981774bd448a266c3c","commits":[{"sha":"9abf9375103bfcc66167e15a96e939d8232667a8","author":{"email":"2bb20d8a71fb7adbc1d6239cc9ff4130f26819dc@gmail.com","name":"Herman"},"message":"Push br_herman","distinct":true,"url":"https://api.github.com/repos/hermanwahyudi/selenium/commits/9abf9375103bfcc66167e15a96e939d8232667a8"}]},"public":true,"created_at":"2015-01-01T15:02:37Z"} +,{"id":"2489652259","type":"PushEvent","actor":{"id":914337,"login":"briangaid","gravatar_id":"","url":"https://api.github.com/users/briangaid","avatar_url":"https://avatars.githubusercontent.com/u/914337?"},"repo":{"id":10535450,"name":"briangaid/briangaid.github.io","url":"https://api.github.com/repos/briangaid/briangaid.github.io"},"payload":{"push_id":536864533,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3dd34aa60098d26f8216fbd08eed4561bbcb4d7e","before":"89252f7a761aa5ec847a42b907085fbec1d9a086","commits":[{"sha":"3dd34aa60098d26f8216fbd08eed4561bbcb4d7e","author":{"email":"0d212fa24a03354e8bb9a9c2e4138446e4e601cf@users.noreply.github.com","name":"Brian Gaid"},"message":"add stories category","distinct":true,"url":"https://api.github.com/repos/briangaid/briangaid.github.io/commits/3dd34aa60098d26f8216fbd08eed4561bbcb4d7e"}]},"public":true,"created_at":"2015-01-01T15:02:37Z"} +,{"id":"2489652271","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":536864538,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"34b160373f3f3c724d2e19d86b64fae26fe24224","before":"344140511ffa3bdd4c22f7b6378d80abe16f6b31","commits":[{"sha":"34b160373f3f3c724d2e19d86b64fae26fe24224","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420124557301\n\nDJntyfNVKXzbgTe5EnsKPgxokqISWTbYK+g+HS5Bl8I=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/34b160373f3f3c724d2e19d86b64fae26fe24224"}]},"public":true,"created_at":"2015-01-01T15:02:38Z"} +,{"id":"2489652272","type":"PushEvent","actor":{"id":6837204,"login":"slerpy","gravatar_id":"","url":"https://api.github.com/users/slerpy","avatar_url":"https://avatars.githubusercontent.com/u/6837204?"},"repo":{"id":27869864,"name":"slerpy/ilikepy","url":"https://api.github.com/repos/slerpy/ilikepy"},"payload":{"push_id":536864539,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"affb870083f4caa4739874343eea3d85f6de8d26","before":"0ca4eafc59532384d2e036f4b7aea8159b5c6946","commits":[{"sha":"affb870083f4caa4739874343eea3d85f6de8d26","author":{"email":"b22ee841b1e87311f316c255ce1156a4ddc9a4a5@riseup.net","name":"slerpy"},"message":"omnomnom","distinct":true,"url":"https://api.github.com/repos/slerpy/ilikepy/commits/affb870083f4caa4739874343eea3d85f6de8d26"}]},"public":true,"created_at":"2015-01-01T15:02:39Z"} +,{"id":"2489652273","type":"GollumEvent","actor":{"id":661798,"login":"baldurk","gravatar_id":"","url":"https://api.github.com/users/baldurk","avatar_url":"https://avatars.githubusercontent.com/u/661798?"},"repo":{"id":17253131,"name":"baldurk/renderdoc","url":"https://api.github.com/repos/baldurk/renderdoc"},"payload":{"pages":[{"page_name":"OpenGL","title":"OpenGL","summary":null,"action":"edited","sha":"8d779505d198db9e552c7f630cdb1fe78c477930","html_url":"https://github.com/baldurk/renderdoc/wiki/OpenGL"}]},"public":true,"created_at":"2015-01-01T15:02:39Z"} +,{"id":"2489652274","type":"IssueCommentEvent","actor":{"id":7955276,"login":"EmmanuelCharpentier","gravatar_id":"","url":"https://api.github.com/users/EmmanuelCharpentier","avatar_url":"https://avatars.githubusercontent.com/u/7955276?"},"repo":{"id":2594513,"name":"yihui/knitr","url":"https://api.github.com/repos/yihui/knitr"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/yihui/knitr/issues/225","labels_url":"https://api.github.com/repos/yihui/knitr/issues/225/labels{/name}","comments_url":"https://api.github.com/repos/yihui/knitr/issues/225/comments","events_url":"https://api.github.com/repos/yihui/knitr/issues/225/events","html_url":"https://github.com/yihui/knitr/issues/225","id":4463198,"number":225,"title":"concordance for child documents","user":{"login":"yihui","id":163582,"avatar_url":"https://avatars.githubusercontent.com/u/163582?v=3","gravatar_id":"","url":"https://api.github.com/users/yihui","html_url":"https://github.com/yihui","followers_url":"https://api.github.com/users/yihui/followers","following_url":"https://api.github.com/users/yihui/following{/other_user}","gists_url":"https://api.github.com/users/yihui/gists{/gist_id}","starred_url":"https://api.github.com/users/yihui/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yihui/subscriptions","organizations_url":"https://api.github.com/users/yihui/orgs","repos_url":"https://api.github.com/users/yihui/repos","events_url":"https://api.github.com/users/yihui/events{/privacy}","received_events_url":"https://api.github.com/users/yihui/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/yihui/knitr/labels/Feature","name":"Feature","color":"02e10c"}],"state":"closed","locked":false,"assignee":null,"milestone":{"url":"https://api.github.com/repos/yihui/knitr/milestones/8","labels_url":"https://api.github.com/repos/yihui/knitr/milestones/8/labels","id":113410,"number":8,"title":"v0.6","description":"Google summer of code!","creator":{"login":"yihui","id":163582,"avatar_url":"https://avatars.githubusercontent.com/u/163582?v=3","gravatar_id":"","url":"https://api.github.com/users/yihui","html_url":"https://github.com/yihui","followers_url":"https://api.github.com/users/yihui/followers","following_url":"https://api.github.com/users/yihui/following{/other_user}","gists_url":"https://api.github.com/users/yihui/gists{/gist_id}","starred_url":"https://api.github.com/users/yihui/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yihui/subscriptions","organizations_url":"https://api.github.com/users/yihui/orgs","repos_url":"https://api.github.com/users/yihui/repos","events_url":"https://api.github.com/users/yihui/events{/privacy}","received_events_url":"https://api.github.com/users/yihui/received_events","type":"User","site_admin":false},"open_issues":0,"closed_issues":45,"state":"closed","created_at":"2012-04-29T05:22:49Z","updated_at":"2012-06-11T01:19:04Z","due_on":"2012-06-08T07:00:00Z","closed_at":"2012-06-11T01:19:04Z"},"comments":3,"created_at":"2012-05-07T21:50:28Z","updated_at":"2015-01-01T15:02:39Z","closed_at":"2012-06-07T15:20:13Z","body":"the infrastructure functions are in `concordance.R`; just need time to arrange the line numbers appropriately"},"comment":{"url":"https://api.github.com/repos/yihui/knitr/issues/comments/68488538","html_url":"https://github.com/yihui/knitr/issues/225#issuecomment-68488538","issue_url":"https://api.github.com/repos/yihui/knitr/issues/225","id":68488538,"user":{"login":"EmmanuelCharpentier","id":7955276,"avatar_url":"https://avatars.githubusercontent.com/u/7955276?v=3","gravatar_id":"","url":"https://api.github.com/users/EmmanuelCharpentier","html_url":"https://github.com/EmmanuelCharpentier","followers_url":"https://api.github.com/users/EmmanuelCharpentier/followers","following_url":"https://api.github.com/users/EmmanuelCharpentier/following{/other_user}","gists_url":"https://api.github.com/users/EmmanuelCharpentier/gists{/gist_id}","starred_url":"https://api.github.com/users/EmmanuelCharpentier/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/EmmanuelCharpentier/subscriptions","organizations_url":"https://api.github.com/users/EmmanuelCharpentier/orgs","repos_url":"https://api.github.com/users/EmmanuelCharpentier/repos","events_url":"https://api.github.com/users/EmmanuelCharpentier/events{/privacy}","received_events_url":"https://api.github.com/users/EmmanuelCharpentier/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:02:39Z","updated_at":"2015-01-01T15:02:39Z","body":"I'm afraid I have to support jalvesaq's suggestion.\r\n\r\nJan Gleixner [solved](https://github.com/jan-glx/patchKnitrSynctex) the problem of patching foo.synctex.gz with information out of foo-concordance.tex. After slight corrections, an R package has been [prepared](https://github.com/EmmanuelCharpentier/patchSynctex), to be submitted to CRAN (pending Jan's review), whose use has been tested with emacs and Eclipse+StatET.\r\n\r\nThe abllity to use the same chunks in different documents is especially important in a lot of Knitr use cases. The use of the concordance information to go back and forth between source .Rnw and target PDF is a HUGE help to debugging and refining such reports. To be able to have both wold be a huge boon in many complicated use cases.\r\nWhat would it take to support bth concordance and children documents ?\r\n\r\nSincerely,"}},"public":true,"created_at":"2015-01-01T15:02:39Z"} +,{"id":"2489652275","type":"PushEvent","actor":{"id":7666055,"login":"sivir","gravatar_id":"","url":"https://api.github.com/users/sivir","avatar_url":"https://avatars.githubusercontent.com/u/7666055?"},"repo":{"id":27804731,"name":"sivir/baikal1","url":"https://api.github.com/repos/sivir/baikal1"},"payload":{"push_id":536864540,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5dfb1df3b6b89b7fbae33ed472250584847f4444","before":"20a2e80ddb59f32f2001cce3dbacda9efcfbec07","commits":[{"sha":"5dfb1df3b6b89b7fbae33ed472250584847f4444","author":{"email":"1e2053d8b74af812877a9ba6f0caba8976b70fc7@gmail.com","name":"Egor Potiomkin"},"message":"music","distinct":true,"url":"https://api.github.com/repos/sivir/baikal1/commits/5dfb1df3b6b89b7fbae33ed472250584847f4444"}]},"public":true,"created_at":"2015-01-01T15:02:39Z"} +,{"id":"2489652278","type":"PushEvent","actor":{"id":10223630,"login":"tanvirpathan","gravatar_id":"","url":"https://api.github.com/users/tanvirpathan","avatar_url":"https://avatars.githubusercontent.com/u/10223630?"},"repo":{"id":28428571,"name":"tanvirpathan/tanvirpathan.github.io","url":"https://api.github.com/repos/tanvirpathan/tanvirpathan.github.io"},"payload":{"push_id":536864542,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fbe9d6a32788419b0f8fe72ae4ba46e655f49528","before":"0fbed16e36e689bf07a37bd65809439d14fa27b5","commits":[{"sha":"fbe9d6a32788419b0f8fe72ae4ba46e655f49528","author":{"email":"7093d3eba14a0fb8b43f4d5466a49ee84493fcbd@gmail.com","name":"tanvirpathan"},"message":"parallax background","distinct":true,"url":"https://api.github.com/repos/tanvirpathan/tanvirpathan.github.io/commits/fbe9d6a32788419b0f8fe72ae4ba46e655f49528"}]},"public":true,"created_at":"2015-01-01T15:02:39Z"} +,{"id":"2489652280","type":"PushEvent","actor":{"id":9217349,"login":"yishn","gravatar_id":"","url":"https://api.github.com/users/yishn","avatar_url":"https://avatars.githubusercontent.com/u/9217349?"},"repo":{"id":27235844,"name":"yishn/Trail","url":"https://api.github.com/repos/yishn/Trail"},"payload":{"push_id":536864543,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6011def39f1c017829e28b1ccc969e74521746ad","before":"85b2bd943ca3ada372bc4572b8453866844e8b9f","commits":[{"sha":"6011def39f1c017829e28b1ccc969e74521746ad","author":{"email":"79d43d7d478b1ef1952012a66b8e6f1704e1a0be@gmail.com","name":"yishn"},"message":"Update ItemsIconQueue","distinct":true,"url":"https://api.github.com/repos/yishn/Trail/commits/6011def39f1c017829e28b1ccc969e74521746ad"}]},"public":true,"created_at":"2015-01-01T15:02:39Z"} +,{"id":"2489652281","type":"WatchEvent","actor":{"id":6682527,"login":"niepiekm","gravatar_id":"","url":"https://api.github.com/users/niepiekm","avatar_url":"https://avatars.githubusercontent.com/u/6682527?"},"repo":{"id":14914289,"name":"mranostay/ws28xx-lighting-pru","url":"https://api.github.com/repos/mranostay/ws28xx-lighting-pru"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:41Z"} +,{"id":"2489652284","type":"CommitCommentEvent","actor":{"id":228456,"login":"hannesm","gravatar_id":"","url":"https://api.github.com/users/hannesm","avatar_url":"https://avatars.githubusercontent.com/u/228456?"},"repo":{"id":4755520,"name":"mirage/mirage-www","url":"https://api.github.com/repos/mirage/mirage-www"},"payload":{"comment":{"url":"https://api.github.com/repos/mirage/mirage-www/comments/9132425","html_url":"https://github.com/mirage/mirage-www/commit/0f9737b3528bc985f20f81e502bc6100bf550f76#commitcomment-9132425","id":9132425,"user":{"login":"hannesm","id":228456,"avatar_url":"https://avatars.githubusercontent.com/u/228456?v=3","gravatar_id":"","url":"https://api.github.com/users/hannesm","html_url":"https://github.com/hannesm","followers_url":"https://api.github.com/users/hannesm/followers","following_url":"https://api.github.com/users/hannesm/following{/other_user}","gists_url":"https://api.github.com/users/hannesm/gists{/gist_id}","starred_url":"https://api.github.com/users/hannesm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hannesm/subscriptions","organizations_url":"https://api.github.com/users/hannesm/orgs","repos_url":"https://api.github.com/users/hannesm/repos","events_url":"https://api.github.com/users/hannesm/events{/privacy}","received_events_url":"https://api.github.com/users/hannesm/received_events","type":"User","site_admin":false},"position":null,"line":null,"path":"","commit_id":"0f9737b3528bc985f20f81e502bc6100bf550f76","created_at":"2015-01-01T15:02:40Z","updated_at":"2015-01-01T15:02:40Z","body":":D this will never happen again ;)"}},"public":true,"created_at":"2015-01-01T15:02:40Z","org":{"id":131943,"login":"mirage","gravatar_id":"","url":"https://api.github.com/orgs/mirage","avatar_url":"https://avatars.githubusercontent.com/u/131943?"}} +,{"id":"2489652287","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":23050575,"name":"cloudify-cosmo/cloudify-script-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-script-plugin"},"payload":{"push_id":536864545,"size":1,"distinct_size":1,"ref":"refs/heads/1.2m1-build","head":"412ef190151ce8ba0b17b01ded88ed8d71b8f805","before":"12d44ee876b576de519a9accf1938ee365f02e3d","commits":[{"sha":"412ef190151ce8ba0b17b01ded88ed8d71b8f805","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 1.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-script-plugin/commits/412ef190151ce8ba0b17b01ded88ed8d71b8f805"}]},"public":true,"created_at":"2015-01-01T15:02:41Z","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":"2489652302","type":"IssueCommentEvent","actor":{"id":10336333,"login":"maruinen","gravatar_id":"","url":"https://api.github.com/users/maruinen","avatar_url":"https://avatars.githubusercontent.com/u/10336333?"},"repo":{"id":20966361,"name":"DrScKAWAMOTO/FullereneViewer","url":"https://api.github.com/repos/DrScKAWAMOTO/FullereneViewer"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/DrScKAWAMOTO/FullereneViewer/issues/86","labels_url":"https://api.github.com/repos/DrScKAWAMOTO/FullereneViewer/issues/86/labels{/name}","comments_url":"https://api.github.com/repos/DrScKAWAMOTO/FullereneViewer/issues/86/comments","events_url":"https://api.github.com/repos/DrScKAWAMOTO/FullereneViewer/issues/86/events","html_url":"https://github.com/DrScKAWAMOTO/FullereneViewer/pull/86","id":53084114,"number":86,"title":"Contributorへの追加申請","user":{"login":"maruinen","id":10336333,"avatar_url":"https://avatars.githubusercontent.com/u/10336333?v=3","gravatar_id":"","url":"https://api.github.com/users/maruinen","html_url":"https://github.com/maruinen","followers_url":"https://api.github.com/users/maruinen/followers","following_url":"https://api.github.com/users/maruinen/following{/other_user}","gists_url":"https://api.github.com/users/maruinen/gists{/gist_id}","starred_url":"https://api.github.com/users/maruinen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/maruinen/subscriptions","organizations_url":"https://api.github.com/users/maruinen/orgs","repos_url":"https://api.github.com/users/maruinen/repos","events_url":"https://api.github.com/users/maruinen/events{/privacy}","received_events_url":"https://api.github.com/users/maruinen/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2014-12-30T00:36:52Z","updated_at":"2015-01-01T15:02:42Z","closed_at":"2015-01-01T06:19:41Z","pull_request":{"url":"https://api.github.com/repos/DrScKAWAMOTO/FullereneViewer/pulls/86","html_url":"https://github.com/DrScKAWAMOTO/FullereneViewer/pull/86","diff_url":"https://github.com/DrScKAWAMOTO/FullereneViewer/pull/86.diff","patch_url":"https://github.com/DrScKAWAMOTO/FullereneViewer/pull/86.patch"},"body":"恐縮です。\r\n\r\nところで、もう1つ報告事項があります。\r\n\r\nWindowsXP + VMWare 5.5 + FreeBSD 9.3 の環境で、`pkg install qt5 libGLU povray37`として\r\n(a) `gmake CC=clang CXX=clang++ Qt`\r\n(b) `gmake Qt`\r\nすると、以下2点の問題が起こりました。\r\n\r\n・(a)(b)共に、/usr/local/includeがINCLUDE_PATHに入ってなくて 'GL/gl.h' file not found に、\r\n /usr/local/libがLIBRARY_PATHに入ってなくて-lGLUがリンクエラーになりました。\r\n src/Qt/FullereneViewer.pro の!macx:unix{}の所を\r\n INCLUDEPATH += /usr/local/include\r\n LIBS += -L/usr/local/lib -lGLU\r\n にすると、コンパイルが通りました。\r\n \r\n・(a)でできた実行ファイルは、起動時にBus errorで落ちました。\r\n gdbで止めてみましたが、シンボル付きの実行ファイルなのにシンボルが一切表示されず、何も分かりませんでした。\r\n (b)でできた実行ファイルは、正常に起動しました。\r\n\r\n以上、Mac + VirtualBox + FreeBSD 9.3でも、同じでした。\r\n別件なので、Issue #49には書きませんでした。\r\n\r\nよろしくお願い致します。"},"comment":{"url":"https://api.github.com/repos/DrScKAWAMOTO/FullereneViewer/issues/comments/68488539","html_url":"https://github.com/DrScKAWAMOTO/FullereneViewer/pull/86#issuecomment-68488539","issue_url":"https://api.github.com/repos/DrScKAWAMOTO/FullereneViewer/issues/86","id":68488539,"user":{"login":"maruinen","id":10336333,"avatar_url":"https://avatars.githubusercontent.com/u/10336333?v=3","gravatar_id":"","url":"https://api.github.com/users/maruinen","html_url":"https://github.com/maruinen","followers_url":"https://api.github.com/users/maruinen/followers","following_url":"https://api.github.com/users/maruinen/following{/other_user}","gists_url":"https://api.github.com/users/maruinen/gists{/gist_id}","starred_url":"https://api.github.com/users/maruinen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/maruinen/subscriptions","organizations_url":"https://api.github.com/users/maruinen/orgs","repos_url":"https://api.github.com/users/maruinen/repos","events_url":"https://api.github.com/users/maruinen/events{/privacy}","received_events_url":"https://api.github.com/users/maruinen/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:02:42Z","updated_at":"2015-01-01T15:02:42Z","body":"謹んで新年のお慶びを申し上げます。\r\nすいません、そういうことだとは思わなかったので、書かなかったのですが、\r\n`gmake CC=clang CXX=clang++ LINK=clang Qt`\r\nとして、clangでlinkされるようにしても、やはりBus errorとなります。\r\n今年もよろしくお願い致します。"}},"public":true,"created_at":"2015-01-01T15:02:42Z"} +,{"id":"2489652307","type":"PushEvent","actor":{"id":7315383,"login":"jaromanda","gravatar_id":"","url":"https://api.github.com/users/jaromanda","avatar_url":"https://avatars.githubusercontent.com/u/7315383?"},"repo":{"id":28639232,"name":"jaromanda/RioCast","url":"https://api.github.com/repos/jaromanda/RioCast"},"payload":{"push_id":536864547,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1d5b33dfa0270fcb0ab1b00416bb66f322938182","before":"a22874de522c3a07d58e919a987d4d9b3b8bfa9a","commits":[{"sha":"1d5b33dfa0270fcb0ab1b00416bb66f322938182","author":{"email":"f69c6761b81ce575e03c7dff5aa15a192de25113@gmail.com","name":"jaromanda"},"message":"Update README","distinct":true,"url":"https://api.github.com/repos/jaromanda/RioCast/commits/1d5b33dfa0270fcb0ab1b00416bb66f322938182"}]},"public":true,"created_at":"2015-01-01T15:02:42Z"} +,{"id":"2489652314","type":"PullRequestEvent","actor":{"id":703355,"login":"mschaaf","gravatar_id":"","url":"https://api.github.com/users/mschaaf","avatar_url":"https://avatars.githubusercontent.com/u/703355?"},"repo":{"id":13252497,"name":"Dica-Developer/generator-node-webkit","url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit"},"payload":{"action":"closed","number":58,"pull_request":{"url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/pulls/58","id":26630407,"html_url":"https://github.com/Dica-Developer/generator-node-webkit/pull/58","diff_url":"https://github.com/Dica-Developer/generator-node-webkit/pull/58.diff","patch_url":"https://github.com/Dica-Developer/generator-node-webkit/pull/58.patch","issue_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/58","number":58,"state":"closed","locked":false,"title":"Modified app/_Gruntfile to make the createLinuxApp step copy over the ic...","user":{"login":"arminhammer","id":1311990,"avatar_url":"https://avatars.githubusercontent.com/u/1311990?v=3","gravatar_id":"","url":"https://api.github.com/users/arminhammer","html_url":"https://github.com/arminhammer","followers_url":"https://api.github.com/users/arminhammer/followers","following_url":"https://api.github.com/users/arminhammer/following{/other_user}","gists_url":"https://api.github.com/users/arminhammer/gists{/gist_id}","starred_url":"https://api.github.com/users/arminhammer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arminhammer/subscriptions","organizations_url":"https://api.github.com/users/arminhammer/orgs","repos_url":"https://api.github.com/users/arminhammer/repos","events_url":"https://api.github.com/users/arminhammer/events{/privacy}","received_events_url":"https://api.github.com/users/arminhammer/received_events","type":"User","site_admin":false},"body":"This is a proposed fix for issue 57, 'issue when running dist application on ubuntu 64'\r\n\r\nI receive a similar error after running 'grunt dist-linux' and trying to start the application:\r\n\r\n$ ./node-webkit app.nw/\r\n[7651:1228/204657:FATAL:content_main_runner.cc(751)] Check failed: base::i18n::InitializeICU(). \r\nfish: Job 1, “./node-webkit app.nw/” terminated by signal SIGABRT (Abort)\r\n\r\nThe error signature is a little different than what was reported in the issue, but the main problem is the same: the icudtl.dat file is not being copied over from resources/node-webkit/Linux64/ to the dist/Linux64 folder. If the file is copied over, the application will launch as expected.\r\n\r\nThis pull request makes a simple change in the Gruntfile so that the icudtl.dat is copied over every time that 'grunt dist-linux' is run.","created_at":"2014-12-29T02:17:03Z","updated_at":"2015-01-01T15:02:43Z","closed_at":"2015-01-01T15:02:43Z","merged_at":"2015-01-01T15:02:43Z","merge_commit_sha":"859ebad4c758c397dbbcfee4efc38f0d2456cb03","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/pulls/58/commits","review_comments_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/pulls/58/comments","review_comment_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/pulls/comments/{number}","comments_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/58/comments","statuses_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/statuses/018c435a85e98760d98ff78d22e56ff301cf9f4a","head":{"label":"arminhammer:issue57proposedFix","ref":"issue57proposedFix","sha":"018c435a85e98760d98ff78d22e56ff301cf9f4a","user":{"login":"arminhammer","id":1311990,"avatar_url":"https://avatars.githubusercontent.com/u/1311990?v=3","gravatar_id":"","url":"https://api.github.com/users/arminhammer","html_url":"https://github.com/arminhammer","followers_url":"https://api.github.com/users/arminhammer/followers","following_url":"https://api.github.com/users/arminhammer/following{/other_user}","gists_url":"https://api.github.com/users/arminhammer/gists{/gist_id}","starred_url":"https://api.github.com/users/arminhammer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arminhammer/subscriptions","organizations_url":"https://api.github.com/users/arminhammer/orgs","repos_url":"https://api.github.com/users/arminhammer/repos","events_url":"https://api.github.com/users/arminhammer/events{/privacy}","received_events_url":"https://api.github.com/users/arminhammer/received_events","type":"User","site_admin":false},"repo":{"id":28577003,"name":"generator-node-webkit","full_name":"arminhammer/generator-node-webkit","owner":{"login":"arminhammer","id":1311990,"avatar_url":"https://avatars.githubusercontent.com/u/1311990?v=3","gravatar_id":"","url":"https://api.github.com/users/arminhammer","html_url":"https://github.com/arminhammer","followers_url":"https://api.github.com/users/arminhammer/followers","following_url":"https://api.github.com/users/arminhammer/following{/other_user}","gists_url":"https://api.github.com/users/arminhammer/gists{/gist_id}","starred_url":"https://api.github.com/users/arminhammer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arminhammer/subscriptions","organizations_url":"https://api.github.com/users/arminhammer/orgs","repos_url":"https://api.github.com/users/arminhammer/repos","events_url":"https://api.github.com/users/arminhammer/events{/privacy}","received_events_url":"https://api.github.com/users/arminhammer/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/arminhammer/generator-node-webkit","description":"Yeoman generator for node-webkit applications","fork":true,"url":"https://api.github.com/repos/arminhammer/generator-node-webkit","forks_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/forks","keys_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/keys{/key_id}","collaborators_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/teams","hooks_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/hooks","issue_events_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/issues/events{/number}","events_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/events","assignees_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/assignees{/user}","branches_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/branches{/branch}","tags_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/tags","blobs_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/git/refs{/sha}","trees_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/git/trees{/sha}","statuses_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/statuses/{sha}","languages_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/languages","stargazers_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/stargazers","contributors_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/contributors","subscribers_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/subscribers","subscription_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/subscription","commits_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/commits{/sha}","git_commits_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/git/commits{/sha}","comments_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/comments{/number}","issue_comment_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/issues/comments/{number}","contents_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/contents/{+path}","compare_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/compare/{base}...{head}","merges_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/merges","archive_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/downloads","issues_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/issues{/number}","pulls_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/pulls{/number}","milestones_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/milestones{/number}","notifications_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/labels{/name}","releases_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/releases{/id}","created_at":"2014-12-29T02:07:23Z","updated_at":"2014-12-29T02:07:23Z","pushed_at":"2014-12-29T02:14:30Z","git_url":"git://github.com/arminhammer/generator-node-webkit.git","ssh_url":"git@github.com:arminhammer/generator-node-webkit.git","clone_url":"https://github.com/arminhammer/generator-node-webkit.git","svn_url":"https://github.com/arminhammer/generator-node-webkit","homepage":"","size":668,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","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":"Dica-Developer:master","ref":"master","sha":"a40b0a3335f13dce1d91b29f1674ac217b240350","user":{"login":"Dica-Developer","id":1409907,"avatar_url":"https://avatars.githubusercontent.com/u/1409907?v=3","gravatar_id":"","url":"https://api.github.com/users/Dica-Developer","html_url":"https://github.com/Dica-Developer","followers_url":"https://api.github.com/users/Dica-Developer/followers","following_url":"https://api.github.com/users/Dica-Developer/following{/other_user}","gists_url":"https://api.github.com/users/Dica-Developer/gists{/gist_id}","starred_url":"https://api.github.com/users/Dica-Developer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Dica-Developer/subscriptions","organizations_url":"https://api.github.com/users/Dica-Developer/orgs","repos_url":"https://api.github.com/users/Dica-Developer/repos","events_url":"https://api.github.com/users/Dica-Developer/events{/privacy}","received_events_url":"https://api.github.com/users/Dica-Developer/received_events","type":"Organization","site_admin":false},"repo":{"id":13252497,"name":"generator-node-webkit","full_name":"Dica-Developer/generator-node-webkit","owner":{"login":"Dica-Developer","id":1409907,"avatar_url":"https://avatars.githubusercontent.com/u/1409907?v=3","gravatar_id":"","url":"https://api.github.com/users/Dica-Developer","html_url":"https://github.com/Dica-Developer","followers_url":"https://api.github.com/users/Dica-Developer/followers","following_url":"https://api.github.com/users/Dica-Developer/following{/other_user}","gists_url":"https://api.github.com/users/Dica-Developer/gists{/gist_id}","starred_url":"https://api.github.com/users/Dica-Developer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Dica-Developer/subscriptions","organizations_url":"https://api.github.com/users/Dica-Developer/orgs","repos_url":"https://api.github.com/users/Dica-Developer/repos","events_url":"https://api.github.com/users/Dica-Developer/events{/privacy}","received_events_url":"https://api.github.com/users/Dica-Developer/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/Dica-Developer/generator-node-webkit","description":"Yeoman generator for node-webkit applications","fork":false,"url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit","forks_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/forks","keys_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/teams","hooks_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/hooks","issue_events_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/events{/number}","events_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/events","assignees_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/assignees{/user}","branches_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/branches{/branch}","tags_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/tags","blobs_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/git/refs{/sha}","trees_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/statuses/{sha}","languages_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/languages","stargazers_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/stargazers","contributors_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/contributors","subscribers_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/subscribers","subscription_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/subscription","commits_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/commits{/sha}","git_commits_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/git/commits{/sha}","comments_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/comments{/number}","issue_comment_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/comments/{number}","contents_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/contents/{+path}","compare_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/merges","archive_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/downloads","issues_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues{/number}","pulls_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/pulls{/number}","milestones_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/milestones{/number}","notifications_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/labels{/name}","releases_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/releases{/id}","created_at":"2013-10-01T18:52:00Z","updated_at":"2015-01-01T07:55:03Z","pushed_at":"2015-01-01T15:02:43Z","git_url":"git://github.com/Dica-Developer/generator-node-webkit.git","ssh_url":"git@github.com:Dica-Developer/generator-node-webkit.git","clone_url":"https://github.com/Dica-Developer/generator-node-webkit.git","svn_url":"https://github.com/Dica-Developer/generator-node-webkit","homepage":"","size":2175,"stargazers_count":165,"watchers_count":165,"language":"JavaScript","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":24,"mirror_url":null,"open_issues_count":10,"forks":24,"open_issues":10,"watchers":165,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/pulls/58"},"html":{"href":"https://github.com/Dica-Developer/generator-node-webkit/pull/58"},"issue":{"href":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/58"},"comments":{"href":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/58/comments"},"review_comments":{"href":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/pulls/58/comments"},"review_comment":{"href":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/pulls/58/commits"},"statuses":{"href":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/statuses/018c435a85e98760d98ff78d22e56ff301cf9f4a"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"mschaaf","id":703355,"avatar_url":"https://avatars.githubusercontent.com/u/703355?v=3","gravatar_id":"","url":"https://api.github.com/users/mschaaf","html_url":"https://github.com/mschaaf","followers_url":"https://api.github.com/users/mschaaf/followers","following_url":"https://api.github.com/users/mschaaf/following{/other_user}","gists_url":"https://api.github.com/users/mschaaf/gists{/gist_id}","starred_url":"https://api.github.com/users/mschaaf/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mschaaf/subscriptions","organizations_url":"https://api.github.com/users/mschaaf/orgs","repos_url":"https://api.github.com/users/mschaaf/repos","events_url":"https://api.github.com/users/mschaaf/events{/privacy}","received_events_url":"https://api.github.com/users/mschaaf/received_events","type":"User","site_admin":false},"comments":1,"review_comments":0,"commits":1,"additions":1,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:02:43Z","org":{"id":1409907,"login":"Dica-Developer","gravatar_id":"","url":"https://api.github.com/orgs/Dica-Developer","avatar_url":"https://avatars.githubusercontent.com/u/1409907?"}} +,{"id":"2489652316","type":"PushEvent","actor":{"id":703355,"login":"mschaaf","gravatar_id":"","url":"https://api.github.com/users/mschaaf","avatar_url":"https://avatars.githubusercontent.com/u/703355?"},"repo":{"id":13252497,"name":"Dica-Developer/generator-node-webkit","url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit"},"payload":{"push_id":536864549,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"6ab4d92f06cae2644f79bd9dd023fddce586fb31","before":"a40b0a3335f13dce1d91b29f1674ac217b240350","commits":[{"sha":"018c435a85e98760d98ff78d22e56ff301cf9f4a","author":{"email":"c771b48e570d5ea0f8eba9ccab69e52dfafa6f28@gmail.com","name":"arminhammer"},"message":"Modified app/_Gruntfile to make the createLinuxApp step copy over the icudtl.dat file to the dist/Linux64 folder.","distinct":true,"url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/commits/018c435a85e98760d98ff78d22e56ff301cf9f4a"},{"sha":"6ab4d92f06cae2644f79bd9dd023fddce586fb31","author":{"email":"437ba095d01066942d56fcfdde2df2d133f2e87a@datameer.com","name":"Schaaf, Martin"},"message":"Merge pull request #58 from arminhammer/issue57proposedFix\n\nModified app/_Gruntfile to make the createLinuxApp step copy over the ic...","distinct":true,"url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/commits/6ab4d92f06cae2644f79bd9dd023fddce586fb31"}]},"public":true,"created_at":"2015-01-01T15:02:43Z","org":{"id":1409907,"login":"Dica-Developer","gravatar_id":"","url":"https://api.github.com/orgs/Dica-Developer","avatar_url":"https://avatars.githubusercontent.com/u/1409907?"}} +,{"id":"2489652320","type":"PushEvent","actor":{"id":3313924,"login":"rampage644","gravatar_id":"","url":"https://api.github.com/users/rampage644","avatar_url":"https://avatars.githubusercontent.com/u/3313924?"},"repo":{"id":28094740,"name":"rampage644/collectd-blueflood-tests","url":"https://api.github.com/repos/rampage644/collectd-blueflood-tests"},"payload":{"push_id":536864551,"size":5,"distinct_size":5,"ref":"refs/heads/master","head":"4d7bdf67baeb5e9d27de49a0eb230db0e50ed7d9","before":"5853237987817458655c273a7d5b938f372b625b","commits":[{"sha":"3ff129123aea208276c61f536498c286f853e3ee","author":{"email":"69690a3255d503c73cb50fbd58f702bb58cd7799@gmail.com","name":"Sergei Turukin"},"message":"Replace abundant auth json reply","distinct":true,"url":"https://api.github.com/repos/rampage644/collectd-blueflood-tests/commits/3ff129123aea208276c61f536498c286f853e3ee"},{"sha":"b7d2a0bedb4a600239823b9e876005a17f2e2e34","author":{"email":"69690a3255d503c73cb50fbd58f702bb58cd7799@gmail.com","name":"Sergei Turukin"},"message":"Refactor handler\n\nDefine behaviour in runtime instead of rigid logic","distinct":true,"url":"https://api.github.com/repos/rampage644/collectd-blueflood-tests/commits/b7d2a0bedb4a600239823b9e876005a17f2e2e34"},{"sha":"9ab660c698c8129b235fd75f602c9cc6c6873f4d","author":{"email":"69690a3255d503c73cb50fbd58f702bb58cd7799@gmail.com","name":"Sergei Turukin"},"message":"Don't add AuthURL key if no auth url is present","distinct":true,"url":"https://api.github.com/repos/rampage644/collectd-blueflood-tests/commits/9ab660c698c8129b235fd75f602c9cc6c6873f4d"},{"sha":"3331a19f20435f8d49cfb8541c0dd2bb6dbe5d2d","author":{"email":"69690a3255d503c73cb50fbd58f702bb58cd7799@gmail.com","name":"Sergei Turukin"},"message":"Refactoring, update tests to new write_blueflood version\n\nUse new http mock handlers, skip blueflood test if there is no\nblueflood server","distinct":true,"url":"https://api.github.com/repos/rampage644/collectd-blueflood-tests/commits/3331a19f20435f8d49cfb8541c0dd2bb6dbe5d2d"},{"sha":"4d7bdf67baeb5e9d27de49a0eb230db0e50ed7d9","author":{"email":"69690a3255d503c73cb50fbd58f702bb58cd7799@gmail.com","name":"Sergei Turukin"},"message":"Kill `collectd` process if waiting for terminate more than 5 seconds","distinct":true,"url":"https://api.github.com/repos/rampage644/collectd-blueflood-tests/commits/4d7bdf67baeb5e9d27de49a0eb230db0e50ed7d9"}]},"public":true,"created_at":"2015-01-01T15:02:44Z"} +,{"id":"2489652324","type":"PushEvent","actor":{"id":7600809,"login":"petrovaliev95","gravatar_id":"","url":"https://api.github.com/users/petrovaliev95","avatar_url":"https://avatars.githubusercontent.com/u/7600809?"},"repo":{"id":28605875,"name":"Ads-Project/Ads","url":"https://api.github.com/repos/Ads-Project/Ads"},"payload":{"push_id":536864553,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"ac747a87423be2f104a90a30b59d592cae11b476","before":"109a4275884d658cea0dd35d2b68575a6c81a47b","commits":[{"sha":"5bb7b0e48d36c1a3077449fb5534a5282eb1fb73","author":{"email":"ef1cc7c841e7b926e0b613e7b1a18e7306103183@abv.bg","name":"petrovaliev95"},"message":"added animations for ads and views on app and login view","distinct":true,"url":"https://api.github.com/repos/Ads-Project/Ads/commits/5bb7b0e48d36c1a3077449fb5534a5282eb1fb73"},{"sha":"ac747a87423be2f104a90a30b59d592cae11b476","author":{"email":"ef1cc7c841e7b926e0b613e7b1a18e7306103183@abv.bg","name":"petrovaliev95"},"message":"added pagination. Bug fixes.","distinct":true,"url":"https://api.github.com/repos/Ads-Project/Ads/commits/ac747a87423be2f104a90a30b59d592cae11b476"}]},"public":true,"created_at":"2015-01-01T15:02:44Z","org":{"id":10343050,"login":"Ads-Project","gravatar_id":"","url":"https://api.github.com/orgs/Ads-Project","avatar_url":"https://avatars.githubusercontent.com/u/10343050?"}} +,{"id":"2489652328","type":"CreateEvent","actor":{"id":10364719,"login":"AnastasiaTamazlykar","gravatar_id":"","url":"https://api.github.com/users/AnastasiaTamazlykar","avatar_url":"https://avatars.githubusercontent.com/u/10364719?"},"repo":{"id":28688642,"name":"AnastasiaTamazlykar/PhillipsHardyInspirers","url":"https://api.github.com/repos/AnastasiaTamazlykar/PhillipsHardyInspirers"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:45Z"} +,{"id":"2489652340","type":"WatchEvent","actor":{"id":3171146,"login":"xracz","gravatar_id":"","url":"https://api.github.com/users/xracz","avatar_url":"https://avatars.githubusercontent.com/u/3171146?"},"repo":{"id":2603622,"name":"tomtung/Learning-Machine-Learning","url":"https://api.github.com/repos/tomtung/Learning-Machine-Learning"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:45Z"} +,{"id":"2489652341","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":"closed","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":"closed","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:02:45Z","closed_at":"2015-01-01T15:02:45Z","merged_at":"2015-01-01T15:02:45Z","merge_commit_sha":"885f6ba4f21b24105c93424a47612729548d1fe9","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:02:45Z","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":1,"forks":0,"open_issues":1,"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:02:45Z","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":1,"forks":0,"open_issues":1,"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":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"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},"comments":0,"review_comments":1,"commits":1,"additions":1,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:02:45Z"} +,{"id":"2489652342","type":"PushEvent","actor":{"id":76055,"login":"yllan","gravatar_id":"","url":"https://api.github.com/users/yllan","avatar_url":"https://avatars.githubusercontent.com/u/76055?"},"repo":{"id":23321731,"name":"yllan/PerfumeWorld","url":"https://api.github.com/repos/yllan/PerfumeWorld"},"payload":{"push_id":536864558,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"67617300084691174ebeff7ffae2645c66247681","before":"e6dee45957613e1e310ca588eb0f3e6812a869ad","commits":[{"sha":"67617300084691174ebeff7ffae2645c66247681","author":{"email":"e0f85a3508a4c657b943558546ab9713dfcf8e7e@me.com","name":"yllan"},"message":"Periodically mirror","distinct":true,"url":"https://api.github.com/repos/yllan/PerfumeWorld/commits/67617300084691174ebeff7ffae2645c66247681"}]},"public":true,"created_at":"2015-01-01T15:02:46Z"} +,{"id":"2489652343","type":"PullRequestEvent","actor":{"id":1834049,"login":"isaacseymour","gravatar_id":"","url":"https://api.github.com/users/isaacseymour","avatar_url":"https://avatars.githubusercontent.com/u/1834049?"},"repo":{"id":28648149,"name":"gocardless/activejob-retry","url":"https://api.github.com/repos/gocardless/activejob-retry"},"payload":{"action":"closed","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":"closed","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:02:45Z","closed_at":"2015-01-01T15:02:45Z","merged_at":"2015-01-01T15:02:45Z","merge_commit_sha":"a21d59fc69b736c8c2205bd3ce2cd91838772e73","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:02:45Z","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":0,"forks":0,"open_issues":0,"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:02:45Z","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":0,"forks":0,"open_issues":0,"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":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"isaacseymour","id":1834049,"avatar_url":"https://avatars.githubusercontent.com/u/1834049?v=3","gravatar_id":"","url":"https://api.github.com/users/isaacseymour","html_url":"https://github.com/isaacseymour","followers_url":"https://api.github.com/users/isaacseymour/followers","following_url":"https://api.github.com/users/isaacseymour/following{/other_user}","gists_url":"https://api.github.com/users/isaacseymour/gists{/gist_id}","starred_url":"https://api.github.com/users/isaacseymour/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/isaacseymour/subscriptions","organizations_url":"https://api.github.com/users/isaacseymour/orgs","repos_url":"https://api.github.com/users/isaacseymour/repos","events_url":"https://api.github.com/users/isaacseymour/events{/privacy}","received_events_url":"https://api.github.com/users/isaacseymour/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":15,"deletions":11,"changed_files":5}},"public":true,"created_at":"2015-01-01T15:02:46Z","org":{"id":790629,"login":"gocardless","gravatar_id":"","url":"https://api.github.com/orgs/gocardless","avatar_url":"https://avatars.githubusercontent.com/u/790629?"}} +,{"id":"2489652349","type":"PushEvent","actor":{"id":2266445,"login":"littleguy77","gravatar_id":"","url":"https://api.github.com/users/littleguy77","avatar_url":"https://avatars.githubusercontent.com/u/2266445?"},"repo":{"id":27592919,"name":"littleguy77/mupen64plus-ae","url":"https://api.github.com/repos/littleguy77/mupen64plus-ae"},"payload":{"push_id":536864559,"size":5,"distinct_size":5,"ref":"refs/heads/master","head":"762b18e2b1d77ee2536537c85ba64064e92c0318","before":"80438bcba13e3e1a78999208d01b58a729703949","commits":[{"sha":"42b1e73ea5c312210947479e5661c5a6ced0990e","author":{"email":"3284d2bbee488692d686f402dfa36007d3fba8b4@live.com","name":"littleguy77"},"message":"audio-sdl: Update to commit 863fb3c.\n\nhttps://github.com/mupen64plus-ae/mupen64plus-audio-sdl/commit/863fb3c\n\n* 863fb3c Remove Android Edition customizations.","distinct":true,"url":"https://api.github.com/repos/littleguy77/mupen64plus-ae/commits/42b1e73ea5c312210947479e5661c5a6ced0990e"},{"sha":"5b3d2acde758ba5be899cd20cf35a8137a05bc19","author":{"email":"3284d2bbee488692d686f402dfa36007d3fba8b4@live.com","name":"littleguy77"},"message":"tools: Switch to vanilla upstream for audio-sdl.","distinct":true,"url":"https://api.github.com/repos/littleguy77/mupen64plus-ae/commits/5b3d2acde758ba5be899cd20cf35a8137a05bc19"},{"sha":"577cabb59fd7623639b4d599c17fb42926f7972e","author":{"email":"3284d2bbee488692d686f402dfa36007d3fba8b4@live.com","name":"littleguy77"},"message":"audio-sdl: Update to commit 8cf8f17.\n\nhttps://github.com/mupen64plus/mupen64plus-audio-sdl/commit/8cf8f17","distinct":true,"url":"https://api.github.com/repos/littleguy77/mupen64plus-ae/commits/577cabb59fd7623639b4d599c17fb42926f7972e"},{"sha":"6fc1a2651c32b0dffd69258a74ac30390f9615ce","author":{"email":"3284d2bbee488692d686f402dfa36007d3fba8b4@live.com","name":"littleguy77"},"message":"build: Remove obsolete build flags from audio-sdl.","distinct":true,"url":"https://api.github.com/repos/littleguy77/mupen64plus-ae/commits/6fc1a2651c32b0dffd69258a74ac30390f9615ce"},{"sha":"762b18e2b1d77ee2536537c85ba64064e92c0318","author":{"email":"3284d2bbee488692d686f402dfa36007d3fba8b4@live.com","name":"littleguy77"},"message":"Merge branch 'sync-audio-upstream'","distinct":true,"url":"https://api.github.com/repos/littleguy77/mupen64plus-ae/commits/762b18e2b1d77ee2536537c85ba64064e92c0318"}]},"public":true,"created_at":"2015-01-01T15:02:46Z"} +,{"id":"2489652354","type":"IssuesEvent","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":"closed","issue":{"url":"https://api.github.com/repos/deeperx/dojo_rules/issues/3","labels_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/3/comments","events_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/3/events","html_url":"https://github.com/deeperx/dojo_rules/issues/3","id":53221294,"number":3,"title":"Contribute to the Kill List","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},"labels":[{"url":"https://api.github.com/repos/deeperx/dojo_rules/labels/mastering-github","name":"mastering-github","color":"ededed"}],"state":"closed","locked":false,"assignee":{"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},"milestone":null,"comments":0,"created_at":"2015-01-01T14:58:17Z","updated_at":"2015-01-01T15:02:47Z","closed_at":"2015-01-01T15:02:47Z","body":"To add a bit of a personal touch, add a programmer grievance of your own to the \"kill_list.md\" file."}},"public":true,"created_at":"2015-01-01T15:02:47Z"} +,{"id":"2489652356","type":"DeleteEvent","actor":{"id":1834049,"login":"isaacseymour","gravatar_id":"","url":"https://api.github.com/users/isaacseymour","avatar_url":"https://avatars.githubusercontent.com/u/1834049?"},"repo":{"id":28648149,"name":"gocardless/activejob-retry","url":"https://api.github.com/repos/gocardless/activejob-retry"},"payload":{"ref":"check-adapter-supported","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:47Z","org":{"id":790629,"login":"gocardless","gravatar_id":"","url":"https://api.github.com/orgs/gocardless","avatar_url":"https://avatars.githubusercontent.com/u/790629?"}} +,{"id":"2489652357","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":23067055,"name":"cloudify-cosmo/cloudify-diamond-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-diamond-plugin"},"payload":{"push_id":536864561,"size":1,"distinct_size":1,"ref":"refs/heads/1.2m1-build","head":"bc0301298f32ca7d7592b7b6d25db47075012d01","before":"6c4c5434b1ca104b042f714f5c0164cfdeee5382","commits":[{"sha":"bc0301298f32ca7d7592b7b6d25db47075012d01","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 1.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-diamond-plugin/commits/bc0301298f32ca7d7592b7b6d25db47075012d01"}]},"public":true,"created_at":"2015-01-01T15:02:47Z","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":"2489652358","type":"PushEvent","actor":{"id":1834049,"login":"isaacseymour","gravatar_id":"","url":"https://api.github.com/users/isaacseymour","avatar_url":"https://avatars.githubusercontent.com/u/1834049?"},"repo":{"id":28648149,"name":"gocardless/activejob-retry","url":"https://api.github.com/repos/gocardless/activejob-retry"},"payload":{"push_id":536864562,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"e9b24cedeff29821abafb6bfa6c5833f5c2256da","before":"26f1f1fb98b689a9c72f62ab81fbd86b555e9650","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"},{"sha":"e9b24cedeff29821abafb6bfa6c5833f5c2256da","author":{"email":"6229a3e4f86172a005a6eaab5029d1bd13acce1f@gocardless.com","name":"Isaac Seymour"},"message":"Merge pull request #5 from gocardless/check-adapter-supported\n\nCheck adapter is supported","distinct":true,"url":"https://api.github.com/repos/gocardless/activejob-retry/commits/e9b24cedeff29821abafb6bfa6c5833f5c2256da"}]},"public":true,"created_at":"2015-01-01T15:02:47Z","org":{"id":790629,"login":"gocardless","gravatar_id":"","url":"https://api.github.com/orgs/gocardless","avatar_url":"https://avatars.githubusercontent.com/u/790629?"}} +,{"id":"2489652359","type":"PushEvent","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":{"push_id":536864563,"size":2,"distinct_size":1,"ref":"refs/heads/master","head":"23bdc051de257bd68cd32d03a694ff2340f1ef85","before":"2913bd18d5d8648ee4b1f38eaaa42075a606f853","commits":[{"sha":"c81ce0de1788f8a5fafdecc155654733be41587f","author":{"email":"c31de36f4d86ab747f3cf9fe5f7674a77c651866@pixenka.com","name":"Inanc Gumus"},"message":"add: programmers to kill list fixes #3","distinct":false,"url":"https://api.github.com/repos/deeperx/dojo_rules/commits/c81ce0de1788f8a5fafdecc155654733be41587f"},{"sha":"23bdc051de257bd68cd32d03a694ff2340f1ef85","author":{"email":"ac12fe72600cb004ae32ce344ab74a9d66bc906b@users.noreply.github.com","name":"deeperx"},"message":"Merge pull request #4 from deeperx/kill_list\n\nadd: programmers to kill list fixes #3","distinct":true,"url":"https://api.github.com/repos/deeperx/dojo_rules/commits/23bdc051de257bd68cd32d03a694ff2340f1ef85"}]},"public":true,"created_at":"2015-01-01T15:02:47Z"} +,{"id":"2489652360","type":"PushEvent","actor":{"id":10096301,"login":"oscar124","gravatar_id":"","url":"https://api.github.com/users/oscar124","avatar_url":"https://avatars.githubusercontent.com/u/10096301?"},"repo":{"id":27740061,"name":"PortalsForDevoloping/Zelda-Clone","url":"https://api.github.com/repos/PortalsForDevoloping/Zelda-Clone"},"payload":{"push_id":536864564,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"6c099e675b5dc1ad7b197ab818c27639ad52d2c2","before":"b8eddd08bf1b6bc1874fda79bd071976a1f740d5","commits":[{"sha":"2abfc405b60c73e550d5d00137696f65a6db6bf0","author":{"email":"f18980333e1c6ace079fb87f81c7ed3ceb55b7f8@gmail.com","name":"oscar124"},"message":"-","distinct":true,"url":"https://api.github.com/repos/PortalsForDevoloping/Zelda-Clone/commits/2abfc405b60c73e550d5d00137696f65a6db6bf0"},{"sha":"6c099e675b5dc1ad7b197ab818c27639ad52d2c2","author":{"email":"f18980333e1c6ace079fb87f81c7ed3ceb55b7f8@gmail.com","name":"oscar124"},"message":"Merge branch 'master' of https://github.com/PortalsForDevoloping/Zelda-Clone","distinct":true,"url":"https://api.github.com/repos/PortalsForDevoloping/Zelda-Clone/commits/6c099e675b5dc1ad7b197ab818c27639ad52d2c2"}]},"public":true,"created_at":"2015-01-01T15:02:47Z","org":{"id":10122624,"login":"PortalsForDevoloping","gravatar_id":"","url":"https://api.github.com/orgs/PortalsForDevoloping","avatar_url":"https://avatars.githubusercontent.com/u/10122624?"}} +,{"id":"2489652363","type":"CreateEvent","actor":{"id":343795,"login":"Depicus","gravatar_id":"","url":"https://api.github.com/users/Depicus","avatar_url":"https://avatars.githubusercontent.com/u/343795?"},"repo":{"id":28688644,"name":"Depicus/ghost-gumby-theme","url":"https://api.github.com/repos/Depicus/ghost-gumby-theme"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"A theme for Ghost based on Gumby CSS Framework","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:47Z"} +,{"id":"2489652362","type":"PullRequestReviewCommentEvent","actor":{"id":576796,"login":"chrismccord","gravatar_id":"","url":"https://api.github.com/users/chrismccord","avatar_url":"https://avatars.githubusercontent.com/u/576796?"},"repo":{"id":16072585,"name":"phoenixframework/phoenix","url":"https://api.github.com/repos/phoenixframework/phoenix"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/phoenixframework/phoenix/pulls/comments/22400096","id":22400096,"diff_hunk":"@@ -704,4 +704,16 @@ defmodule Phoenix.Controller do\n defp persist_flash(conn, value) do\n put_private(conn, :phoenix_flash, value)\n end\n+\n+ @doc \"\"\"\n+ Invokes the controller plug and calls its action\n+\n+ ## Examples\n+\n+ iex> Controller.call_action(conn, MyApp.MyController, :index)\n+\n+ \"\"\"\n+ def call_action(conn, controller, action) do","path":"lib/phoenix/controller.ex","position":13,"original_position":13,"commit_id":"a3c9681cff1e99e87149fc4069f050309fdbb433","original_commit_id":"a3c9681cff1e99e87149fc4069f050309fdbb433","user":{"login":"chrismccord","id":576796,"avatar_url":"https://avatars.githubusercontent.com/u/576796?v=3","gravatar_id":"","url":"https://api.github.com/users/chrismccord","html_url":"https://github.com/chrismccord","followers_url":"https://api.github.com/users/chrismccord/followers","following_url":"https://api.github.com/users/chrismccord/following{/other_user}","gists_url":"https://api.github.com/users/chrismccord/gists{/gist_id}","starred_url":"https://api.github.com/users/chrismccord/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrismccord/subscriptions","organizations_url":"https://api.github.com/users/chrismccord/orgs","repos_url":"https://api.github.com/users/chrismccord/repos","events_url":"https://api.github.com/users/chrismccord/events{/privacy}","received_events_url":"https://api.github.com/users/chrismccord/received_events","type":"User","site_admin":false},"body":"I agree. We just had a bit of duplication, but it's hardly any work to invoke ourselves, so I'll remove.","created_at":"2015-01-01T15:02:47Z","updated_at":"2015-01-01T15:02:47Z","html_url":"https://github.com/phoenixframework/phoenix/pull/570#discussion_r22400096","pull_request_url":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570","_links":{"self":{"href":"https://api.github.com/repos/phoenixframework/phoenix/pulls/comments/22400096"},"html":{"href":"https://github.com/phoenixframework/phoenix/pull/570#discussion_r22400096"},"pull_request":{"href":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570"}}},"pull_request":{"url":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570","id":26732191,"html_url":"https://github.com/phoenixframework/phoenix/pull/570","diff_url":"https://github.com/phoenixframework/phoenix/pull/570.diff","patch_url":"https://github.com/phoenixframework/phoenix/pull/570.patch","issue_url":"https://api.github.com/repos/phoenixframework/phoenix/issues/570","number":570,"state":"open","locked":false,"title":"Refactor Channel Layer","user":{"login":"chrismccord","id":576796,"avatar_url":"https://avatars.githubusercontent.com/u/576796?v=3","gravatar_id":"","url":"https://api.github.com/users/chrismccord","html_url":"https://github.com/chrismccord","followers_url":"https://api.github.com/users/chrismccord/followers","following_url":"https://api.github.com/users/chrismccord/following{/other_user}","gists_url":"https://api.github.com/users/chrismccord/gists{/gist_id}","starred_url":"https://api.github.com/users/chrismccord/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrismccord/subscriptions","organizations_url":"https://api.github.com/users/chrismccord/orgs","repos_url":"https://api.github.com/users/chrismccord/repos","events_url":"https://api.github.com/users/chrismccord/events{/privacy}","received_events_url":"https://api.github.com/users/chrismccord/received_events","type":"User","site_admin":false},"body":"I believe I have addressed everything discussed in #478. @josevalim please take a thorough look once you have a chance because it ended up being less rework than I thought. The Publisher (PubSub) API remained exactly the same and is implemented per your description. Notable changes:\r\n\r\n1. `socket` API in the router. Socket endpoints are now configured via the `socket` macro and house the channel definitions. Channels can also now be scoped based on transport, i.e.:\r\n\r\n```elixir\r\n defmodule MyApp.Router do\r\n use Phoenix.Router\r\n\r\n socket \"/ws\", MyApp do\r\n channel \"topic1:*\", MyChannel\r\n channel \"baretopic\", MyChannel\r\n channel \"wsonly:*\", MyChannel, via: [Phoenix.Transports.WebSocket]\r\n channel \"lponly:*\", MyChannel, via: [Phoenix.Transports.LongPoller]\r\n end\r\n ...\r\n\r\n```\r\n\r\n2. The \"topic\" abstraction is now *only a string identifier*. We used to conflate the channel name and topic names. Now `channel \"foo:*\"` refers to the topic \"foo\" and any pattern following \"foo:\". By convention, we use \"topic:subtopic\", but the splat \"*\" does not require a colon.\r\n\r\n3. Likewise, in the channel callbacks, you now match on the topic directly:\r\n\r\n```elixir\r\n# router\r\nchannel \"rooms:*\", RoomChannel\r\n\r\n# channel\r\ndef join(\"rooms:lobby\", message, socket) do ...\r\ndef join(\"rooms:\" <> room_id, message, socket) do ...\r\n```\r\n\r\n4. All channel callbacks now accept `socket` as the last argument to more closely follow a GenServer API where the state is held in the last arg and the message is matched int he first.\r\n\r\n5. Transports now use two flavors of messages, `{:socket_reply, %Message{...}}` and `{:socket_broadcast, %Message{...})` to differentiate replies from broadcasts. This was required to support `outgoing` callbacks.\r\n\r\n6. `event` has been renamed to `incoming` and now channel callbacks can filter/intercept/modify broadcasts with an `outgoing` callback for per-socket customization, i.e.:\r\n\r\n```elixir\r\ndef incoming(\"new:msg\", %{\"from_id\" => from_id, \"body\" => body}, socket) do\r\n # broadcast incoming new message to all subscribers\r\n broadcast socket, \"new:msg\", %{body: body, from_id: from_id}\r\nend\r\n\r\n# each socket's outgoing callback will be triggered for per-socket\r\n# customization of broadcast. Sockets can also not reply to filter broadcasts\r\n# from being relayed.\r\ndef outgoing(\"new:msg\", msg, socket) do\r\n user = socket.assigns[:user]\r\n\r\n reply socket, \"new:msg\", Dict.merge(msg,\r\n is_editable: can_edit?(user, msg.from_id),\r\n is_friend: is_friend?(user, msg.from_id)\r\n )\r\nend\r\n\r\n# by default just forward reply\r\ndef outgoing(event, msg, socket) do\r\n reply socket, event, msg \r\nend\r\n```\r\n\r\n### Points of discussion for the 0.8.0 release:\r\n\r\n- Should incoming/outgoing be renamed to a more GenServer'esque API? i.e. `handle_incoming`, `handle_outgoing`? I prefer the current naming, but `handle_` could be more welcoming to newcomers who would find it more familiar to GenServer style.\r\n- Should we embed the `node()` my default in the message to allow per-node filtering? I opted not to since end-users can attach their `node()` themselves in the broadcasted message if they need per-node handling. Subscribers can pick up the message the compare their node().\r\n- Others?\r\n\r\n\r\n### Points of discussion for 0.9.0+:\r\n\r\nAs discussed on IRC, we need to tackle handling missed messages with a configurable backend. Today, the LongPoller requires a cookie session, and clustered nodes. The PubSub also requires clustering. We would like to move towards a configurable store with `last_seen_id` tracking of messages, for replaying messages between client drops, as well as a solution to non-clustered pubsub servers.\r\n\r\nLet me know how it looks! Thanks","created_at":"2014-12-31T18:50:27Z","updated_at":"2015-01-01T15:02:47Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570/commits","review_comments_url":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570/comments","review_comment_url":"https://api.github.com/repos/phoenixframework/phoenix/pulls/comments/{number}","comments_url":"https://api.github.com/repos/phoenixframework/phoenix/issues/570/comments","statuses_url":"https://api.github.com/repos/phoenixframework/phoenix/statuses/a3c9681cff1e99e87149fc4069f050309fdbb433","head":{"label":"phoenixframework:cm-channels-next","ref":"cm-channels-next","sha":"a3c9681cff1e99e87149fc4069f050309fdbb433","user":{"login":"phoenixframework","id":6510388,"avatar_url":"https://avatars.githubusercontent.com/u/6510388?v=3","gravatar_id":"","url":"https://api.github.com/users/phoenixframework","html_url":"https://github.com/phoenixframework","followers_url":"https://api.github.com/users/phoenixframework/followers","following_url":"https://api.github.com/users/phoenixframework/following{/other_user}","gists_url":"https://api.github.com/users/phoenixframework/gists{/gist_id}","starred_url":"https://api.github.com/users/phoenixframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/phoenixframework/subscriptions","organizations_url":"https://api.github.com/users/phoenixframework/orgs","repos_url":"https://api.github.com/users/phoenixframework/repos","events_url":"https://api.github.com/users/phoenixframework/events{/privacy}","received_events_url":"https://api.github.com/users/phoenixframework/received_events","type":"Organization","site_admin":false},"repo":{"id":16072585,"name":"phoenix","full_name":"phoenixframework/phoenix","owner":{"login":"phoenixframework","id":6510388,"avatar_url":"https://avatars.githubusercontent.com/u/6510388?v=3","gravatar_id":"","url":"https://api.github.com/users/phoenixframework","html_url":"https://github.com/phoenixframework","followers_url":"https://api.github.com/users/phoenixframework/followers","following_url":"https://api.github.com/users/phoenixframework/following{/other_user}","gists_url":"https://api.github.com/users/phoenixframework/gists{/gist_id}","starred_url":"https://api.github.com/users/phoenixframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/phoenixframework/subscriptions","organizations_url":"https://api.github.com/users/phoenixframework/orgs","repos_url":"https://api.github.com/users/phoenixframework/repos","events_url":"https://api.github.com/users/phoenixframework/events{/privacy}","received_events_url":"https://api.github.com/users/phoenixframework/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/phoenixframework/phoenix","description":"Elixir Web Framework","fork":false,"url":"https://api.github.com/repos/phoenixframework/phoenix","forks_url":"https://api.github.com/repos/phoenixframework/phoenix/forks","keys_url":"https://api.github.com/repos/phoenixframework/phoenix/keys{/key_id}","collaborators_url":"https://api.github.com/repos/phoenixframework/phoenix/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/phoenixframework/phoenix/teams","hooks_url":"https://api.github.com/repos/phoenixframework/phoenix/hooks","issue_events_url":"https://api.github.com/repos/phoenixframework/phoenix/issues/events{/number}","events_url":"https://api.github.com/repos/phoenixframework/phoenix/events","assignees_url":"https://api.github.com/repos/phoenixframework/phoenix/assignees{/user}","branches_url":"https://api.github.com/repos/phoenixframework/phoenix/branches{/branch}","tags_url":"https://api.github.com/repos/phoenixframework/phoenix/tags","blobs_url":"https://api.github.com/repos/phoenixframework/phoenix/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/phoenixframework/phoenix/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/phoenixframework/phoenix/git/refs{/sha}","trees_url":"https://api.github.com/repos/phoenixframework/phoenix/git/trees{/sha}","statuses_url":"https://api.github.com/repos/phoenixframework/phoenix/statuses/{sha}","languages_url":"https://api.github.com/repos/phoenixframework/phoenix/languages","stargazers_url":"https://api.github.com/repos/phoenixframework/phoenix/stargazers","contributors_url":"https://api.github.com/repos/phoenixframework/phoenix/contributors","subscribers_url":"https://api.github.com/repos/phoenixframework/phoenix/subscribers","subscription_url":"https://api.github.com/repos/phoenixframework/phoenix/subscription","commits_url":"https://api.github.com/repos/phoenixframework/phoenix/commits{/sha}","git_commits_url":"https://api.github.com/repos/phoenixframework/phoenix/git/commits{/sha}","comments_url":"https://api.github.com/repos/phoenixframework/phoenix/comments{/number}","issue_comment_url":"https://api.github.com/repos/phoenixframework/phoenix/issues/comments/{number}","contents_url":"https://api.github.com/repos/phoenixframework/phoenix/contents/{+path}","compare_url":"https://api.github.com/repos/phoenixframework/phoenix/compare/{base}...{head}","merges_url":"https://api.github.com/repos/phoenixframework/phoenix/merges","archive_url":"https://api.github.com/repos/phoenixframework/phoenix/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/phoenixframework/phoenix/downloads","issues_url":"https://api.github.com/repos/phoenixframework/phoenix/issues{/number}","pulls_url":"https://api.github.com/repos/phoenixframework/phoenix/pulls{/number}","milestones_url":"https://api.github.com/repos/phoenixframework/phoenix/milestones{/number}","notifications_url":"https://api.github.com/repos/phoenixframework/phoenix/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/phoenixframework/phoenix/labels{/name}","releases_url":"https://api.github.com/repos/phoenixframework/phoenix/releases{/id}","created_at":"2014-01-20T14:14:11Z","updated_at":"2015-01-01T04:17:53Z","pushed_at":"2014-12-31T18:59:11Z","git_url":"git://github.com/phoenixframework/phoenix.git","ssh_url":"git@github.com:phoenixframework/phoenix.git","clone_url":"https://github.com/phoenixframework/phoenix.git","svn_url":"https://github.com/phoenixframework/phoenix","homepage":"","size":5577,"stargazers_count":1788,"watchers_count":1788,"language":"Elixir","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":159,"mirror_url":null,"open_issues_count":19,"forks":159,"open_issues":19,"watchers":1788,"default_branch":"master"}},"base":{"label":"phoenixframework:master","ref":"master","sha":"191909d97511ab99f9bbcc776cba9988c8b07596","user":{"login":"phoenixframework","id":6510388,"avatar_url":"https://avatars.githubusercontent.com/u/6510388?v=3","gravatar_id":"","url":"https://api.github.com/users/phoenixframework","html_url":"https://github.com/phoenixframework","followers_url":"https://api.github.com/users/phoenixframework/followers","following_url":"https://api.github.com/users/phoenixframework/following{/other_user}","gists_url":"https://api.github.com/users/phoenixframework/gists{/gist_id}","starred_url":"https://api.github.com/users/phoenixframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/phoenixframework/subscriptions","organizations_url":"https://api.github.com/users/phoenixframework/orgs","repos_url":"https://api.github.com/users/phoenixframework/repos","events_url":"https://api.github.com/users/phoenixframework/events{/privacy}","received_events_url":"https://api.github.com/users/phoenixframework/received_events","type":"Organization","site_admin":false},"repo":{"id":16072585,"name":"phoenix","full_name":"phoenixframework/phoenix","owner":{"login":"phoenixframework","id":6510388,"avatar_url":"https://avatars.githubusercontent.com/u/6510388?v=3","gravatar_id":"","url":"https://api.github.com/users/phoenixframework","html_url":"https://github.com/phoenixframework","followers_url":"https://api.github.com/users/phoenixframework/followers","following_url":"https://api.github.com/users/phoenixframework/following{/other_user}","gists_url":"https://api.github.com/users/phoenixframework/gists{/gist_id}","starred_url":"https://api.github.com/users/phoenixframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/phoenixframework/subscriptions","organizations_url":"https://api.github.com/users/phoenixframework/orgs","repos_url":"https://api.github.com/users/phoenixframework/repos","events_url":"https://api.github.com/users/phoenixframework/events{/privacy}","received_events_url":"https://api.github.com/users/phoenixframework/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/phoenixframework/phoenix","description":"Elixir Web Framework","fork":false,"url":"https://api.github.com/repos/phoenixframework/phoenix","forks_url":"https://api.github.com/repos/phoenixframework/phoenix/forks","keys_url":"https://api.github.com/repos/phoenixframework/phoenix/keys{/key_id}","collaborators_url":"https://api.github.com/repos/phoenixframework/phoenix/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/phoenixframework/phoenix/teams","hooks_url":"https://api.github.com/repos/phoenixframework/phoenix/hooks","issue_events_url":"https://api.github.com/repos/phoenixframework/phoenix/issues/events{/number}","events_url":"https://api.github.com/repos/phoenixframework/phoenix/events","assignees_url":"https://api.github.com/repos/phoenixframework/phoenix/assignees{/user}","branches_url":"https://api.github.com/repos/phoenixframework/phoenix/branches{/branch}","tags_url":"https://api.github.com/repos/phoenixframework/phoenix/tags","blobs_url":"https://api.github.com/repos/phoenixframework/phoenix/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/phoenixframework/phoenix/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/phoenixframework/phoenix/git/refs{/sha}","trees_url":"https://api.github.com/repos/phoenixframework/phoenix/git/trees{/sha}","statuses_url":"https://api.github.com/repos/phoenixframework/phoenix/statuses/{sha}","languages_url":"https://api.github.com/repos/phoenixframework/phoenix/languages","stargazers_url":"https://api.github.com/repos/phoenixframework/phoenix/stargazers","contributors_url":"https://api.github.com/repos/phoenixframework/phoenix/contributors","subscribers_url":"https://api.github.com/repos/phoenixframework/phoenix/subscribers","subscription_url":"https://api.github.com/repos/phoenixframework/phoenix/subscription","commits_url":"https://api.github.com/repos/phoenixframework/phoenix/commits{/sha}","git_commits_url":"https://api.github.com/repos/phoenixframework/phoenix/git/commits{/sha}","comments_url":"https://api.github.com/repos/phoenixframework/phoenix/comments{/number}","issue_comment_url":"https://api.github.com/repos/phoenixframework/phoenix/issues/comments/{number}","contents_url":"https://api.github.com/repos/phoenixframework/phoenix/contents/{+path}","compare_url":"https://api.github.com/repos/phoenixframework/phoenix/compare/{base}...{head}","merges_url":"https://api.github.com/repos/phoenixframework/phoenix/merges","archive_url":"https://api.github.com/repos/phoenixframework/phoenix/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/phoenixframework/phoenix/downloads","issues_url":"https://api.github.com/repos/phoenixframework/phoenix/issues{/number}","pulls_url":"https://api.github.com/repos/phoenixframework/phoenix/pulls{/number}","milestones_url":"https://api.github.com/repos/phoenixframework/phoenix/milestones{/number}","notifications_url":"https://api.github.com/repos/phoenixframework/phoenix/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/phoenixframework/phoenix/labels{/name}","releases_url":"https://api.github.com/repos/phoenixframework/phoenix/releases{/id}","created_at":"2014-01-20T14:14:11Z","updated_at":"2015-01-01T04:17:53Z","pushed_at":"2014-12-31T18:59:11Z","git_url":"git://github.com/phoenixframework/phoenix.git","ssh_url":"git@github.com:phoenixframework/phoenix.git","clone_url":"https://github.com/phoenixframework/phoenix.git","svn_url":"https://github.com/phoenixframework/phoenix","homepage":"","size":5577,"stargazers_count":1788,"watchers_count":1788,"language":"Elixir","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":159,"mirror_url":null,"open_issues_count":19,"forks":159,"open_issues":19,"watchers":1788,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570"},"html":{"href":"https://github.com/phoenixframework/phoenix/pull/570"},"issue":{"href":"https://api.github.com/repos/phoenixframework/phoenix/issues/570"},"comments":{"href":"https://api.github.com/repos/phoenixframework/phoenix/issues/570/comments"},"review_comments":{"href":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570/comments"},"review_comment":{"href":"https://api.github.com/repos/phoenixframework/phoenix/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570/commits"},"statuses":{"href":"https://api.github.com/repos/phoenixframework/phoenix/statuses/a3c9681cff1e99e87149fc4069f050309fdbb433"}}}},"public":true,"created_at":"2015-01-01T15:02:47Z","org":{"id":6510388,"login":"phoenixframework","gravatar_id":"","url":"https://api.github.com/orgs/phoenixframework","avatar_url":"https://avatars.githubusercontent.com/u/6510388?"}} +,{"id":"2489652364","type":"IssueCommentEvent","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":"created","issue":{"url":"https://api.github.com/repos/andreasgal/j2me.js/issues/791","labels_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/791/labels{/name}","comments_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/791/comments","events_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/791/events","html_url":"https://github.com/andreasgal/j2me.js/issues/791","id":53074451,"number":791,"title":"run JSR-075 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},"labels":[{"url":"https://api.github.com/repos/andreasgal/j2me.js/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-29T21:46:56Z","updated_at":"2015-01-01T15:02:47Z","closed_at":"2015-01-01T15:02:47Z","body":"#790 adds tests from IBM's JSR-075 TCK, but it doesn't run them in automation. We should run them in automation, fixing the test failures (or marking them \"todo\") in the process.\r\n"},"comment":{"url":"https://api.github.com/repos/andreasgal/j2me.js/issues/comments/68488540","html_url":"https://github.com/andreasgal/j2me.js/issues/791#issuecomment-68488540","issue_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/791","id":68488540,"user":{"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},"created_at":"2015-01-01T15:02:47Z","updated_at":"2015-01-01T15:02:47Z","body":"Fixed by #807."}},"public":true,"created_at":"2015-01-01T15:02:47Z"} +,{"id":"2489652365","type":"IssuesEvent","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","issue":{"url":"https://api.github.com/repos/andreasgal/j2me.js/issues/791","labels_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/791/labels{/name}","comments_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/791/comments","events_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/791/events","html_url":"https://github.com/andreasgal/j2me.js/issues/791","id":53074451,"number":791,"title":"run JSR-075 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},"labels":[{"url":"https://api.github.com/repos/andreasgal/j2me.js/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-29T21:46:56Z","updated_at":"2015-01-01T15:02:47Z","closed_at":"2015-01-01T15:02:47Z","body":"#790 adds tests from IBM's JSR-075 TCK, but it doesn't run them in automation. We should run them in automation, fixing the test failures (or marking them \"todo\") in the process.\r\n"}},"public":true,"created_at":"2015-01-01T15:02:47Z"} +,{"id":"2489652367","type":"PushEvent","actor":{"id":188068,"login":"alama","gravatar_id":"","url":"https://api.github.com/users/alama","avatar_url":"https://avatars.githubusercontent.com/u/188068?"},"repo":{"id":22131621,"name":"alama/PSO2Proxy","url":"https://api.github.com/repos/alama/PSO2Proxy"},"payload":{"push_id":536864565,"size":15,"distinct_size":1,"ref":"refs/heads/AWS","head":"58ed9bded7f5b156cd85abd0ccf9644444fc4447","before":"5fb2f5dd4099fffb23f1ae531bbe38e13ecbb979","commits":[{"sha":"2f217f18bbac3845fe8ce81f664313ed6f382007","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"Update GlobalChat.py\n\nhttps://github.com/cyberkitsune/PSO2Proxy/issues/126","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/2f217f18bbac3845fe8ce81f664313ed6f382007"},{"sha":"294403ac3ff29cdcb43efc08d3af2827ba054afa","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"oops added too many extra lines","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/294403ac3ff29cdcb43efc08d3af2827ba054afa"},{"sha":"5fd9ab14fcd9ea9b245753f1a2af99f77f5b52d2","author":{"email":"8cc50ce46513b6ddee59a7e3b0e5fa247ab8c11d@users.noreply.github.com","name":"acffordyce973"},"message":"Merge pull request #128 from alama/master\n\nlog is needed here, oops","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/5fd9ab14fcd9ea9b245753f1a2af99f77f5b52d2"},{"sha":"abc2c33d6793e5be1cf1a0e4efa5ae24d6b5f999","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"more graceful way to slice\n\n[0] doesn't slice to well unlike [:1]","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/abc2c33d6793e5be1cf1a0e4efa5ae24d6b5f999"},{"sha":"03309632c32ae148a519c3dc82a28cc4ba0c8fed","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"fix based on rfc standards for irc","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/03309632c32ae148a519c3dc82a28cc4ba0c8fed"},{"sha":"69a4572c581fbaa193561d08d8e7aa3c1de7acb4","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"moved exception to when it actually tries to join \n\ndue to multiple prefixes its simply better for it to not join at all if it doesn't have one of the 4 prefixes specified by rfc 2811","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/69a4572c581fbaa193561d08d8e7aa3c1de7acb4"},{"sha":"890cb21bf7b36447fb85f1144bc44c44603e9deb","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"fixed some indentation","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/890cb21bf7b36447fb85f1144bc44c44603e9deb"},{"sha":"c434167e706a211f233aa7cd6b85e8ce43b84943","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"indentation","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/c434167e706a211f233aa7cd6b85e8ce43b84943"},{"sha":"d446161f3c00841c369c29857e1fe1e176a40012","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"indentation last try","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/d446161f3c00841c369c29857e1fe1e176a40012"},{"sha":"1913cd9de6adb3ddcb52c7fe0a68cfea17020bb7","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"this is not javascript LOL\n\nstupid me used `.index()` instead of `in`","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/1913cd9de6adb3ddcb52c7fe0a68cfea17020bb7"},{"sha":"1d8811add1ba30c80133b0961095e7b07fba93da","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"english grammar issue","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/1d8811add1ba30c80133b0961095e7b07fba93da"},{"sha":"ad81be93b3618c69a8bff241b345be313530b8b8","author":{"email":"49b8d532592346d99aaea34660d99198118fa6db@users.noreply.github.com","name":"AIDA"},"message":"Debian Wheezy has no sudo","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/ad81be93b3618c69a8bff241b345be313530b8b8"},{"sha":"35dd3d56c422ef82b0e7b3be4df338d03a6b2a65","author":{"email":"49b8d532592346d99aaea34660d99198118fa6db@users.noreply.github.com","name":"AIDA"},"message":"Moved all \"commandlines\" idents to the left","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/35dd3d56c422ef82b0e7b3be4df338d03a6b2a65"},{"sha":"0e6c5d4a2b3f61fc20f577a9cfee8aaffc89ec3d","author":{"email":"8e9e6775366d92d16fa005715567f43359273521@gmail.com","name":"Sean McClenaghan"},"message":"Merge pull request #129 from kamijoutouma/patch-1\n\nUpdate GlobalChat.py","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/0e6c5d4a2b3f61fc20f577a9cfee8aaffc89ec3d"},{"sha":"58ed9bded7f5b156cd85abd0ccf9644444fc4447","author":{"email":"ddfd60baa0a2e8344a754280059462322796b4da@gmail.com","name":"Alam Arias"},"message":"Merge branch 'master' into AWS","distinct":true,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/58ed9bded7f5b156cd85abd0ccf9644444fc4447"}]},"public":true,"created_at":"2015-01-01T15:02:48Z"} +,{"id":"2489652369","type":"PushEvent","actor":{"id":188068,"login":"alama","gravatar_id":"","url":"https://api.github.com/users/alama","avatar_url":"https://avatars.githubusercontent.com/u/188068?"},"repo":{"id":22131621,"name":"alama/PSO2Proxy","url":"https://api.github.com/repos/alama/PSO2Proxy"},"payload":{"push_id":536864566,"size":14,"distinct_size":0,"ref":"refs/heads/master","head":"0e6c5d4a2b3f61fc20f577a9cfee8aaffc89ec3d","before":"06d575cbc3f93f801eee3b01a34f6f9eb5ea47df","commits":[{"sha":"2f217f18bbac3845fe8ce81f664313ed6f382007","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"Update GlobalChat.py\n\nhttps://github.com/cyberkitsune/PSO2Proxy/issues/126","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/2f217f18bbac3845fe8ce81f664313ed6f382007"},{"sha":"294403ac3ff29cdcb43efc08d3af2827ba054afa","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"oops added too many extra lines","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/294403ac3ff29cdcb43efc08d3af2827ba054afa"},{"sha":"5fd9ab14fcd9ea9b245753f1a2af99f77f5b52d2","author":{"email":"8cc50ce46513b6ddee59a7e3b0e5fa247ab8c11d@users.noreply.github.com","name":"acffordyce973"},"message":"Merge pull request #128 from alama/master\n\nlog is needed here, oops","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/5fd9ab14fcd9ea9b245753f1a2af99f77f5b52d2"},{"sha":"abc2c33d6793e5be1cf1a0e4efa5ae24d6b5f999","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"more graceful way to slice\n\n[0] doesn't slice to well unlike [:1]","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/abc2c33d6793e5be1cf1a0e4efa5ae24d6b5f999"},{"sha":"03309632c32ae148a519c3dc82a28cc4ba0c8fed","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"fix based on rfc standards for irc","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/03309632c32ae148a519c3dc82a28cc4ba0c8fed"},{"sha":"69a4572c581fbaa193561d08d8e7aa3c1de7acb4","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"moved exception to when it actually tries to join \n\ndue to multiple prefixes its simply better for it to not join at all if it doesn't have one of the 4 prefixes specified by rfc 2811","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/69a4572c581fbaa193561d08d8e7aa3c1de7acb4"},{"sha":"890cb21bf7b36447fb85f1144bc44c44603e9deb","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"fixed some indentation","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/890cb21bf7b36447fb85f1144bc44c44603e9deb"},{"sha":"c434167e706a211f233aa7cd6b85e8ce43b84943","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"indentation","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/c434167e706a211f233aa7cd6b85e8ce43b84943"},{"sha":"d446161f3c00841c369c29857e1fe1e176a40012","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"indentation last try","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/d446161f3c00841c369c29857e1fe1e176a40012"},{"sha":"1913cd9de6adb3ddcb52c7fe0a68cfea17020bb7","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"this is not javascript LOL\n\nstupid me used `.index()` instead of `in`","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/1913cd9de6adb3ddcb52c7fe0a68cfea17020bb7"},{"sha":"1d8811add1ba30c80133b0961095e7b07fba93da","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"english grammar issue","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/1d8811add1ba30c80133b0961095e7b07fba93da"},{"sha":"ad81be93b3618c69a8bff241b345be313530b8b8","author":{"email":"49b8d532592346d99aaea34660d99198118fa6db@users.noreply.github.com","name":"AIDA"},"message":"Debian Wheezy has no sudo","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/ad81be93b3618c69a8bff241b345be313530b8b8"},{"sha":"35dd3d56c422ef82b0e7b3be4df338d03a6b2a65","author":{"email":"49b8d532592346d99aaea34660d99198118fa6db@users.noreply.github.com","name":"AIDA"},"message":"Moved all \"commandlines\" idents to the left","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/35dd3d56c422ef82b0e7b3be4df338d03a6b2a65"},{"sha":"0e6c5d4a2b3f61fc20f577a9cfee8aaffc89ec3d","author":{"email":"8e9e6775366d92d16fa005715567f43359273521@gmail.com","name":"Sean McClenaghan"},"message":"Merge pull request #129 from kamijoutouma/patch-1\n\nUpdate GlobalChat.py","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/0e6c5d4a2b3f61fc20f577a9cfee8aaffc89ec3d"}]},"public":true,"created_at":"2015-01-01T15:02:48Z"} +,{"id":"2489652370","type":"PushEvent","actor":{"id":188068,"login":"alama","gravatar_id":"","url":"https://api.github.com/users/alama","avatar_url":"https://avatars.githubusercontent.com/u/188068?"},"repo":{"id":22131621,"name":"alama/PSO2Proxy","url":"https://api.github.com/repos/alama/PSO2Proxy"},"payload":{"push_id":536864567,"size":14,"distinct_size":0,"ref":"refs/heads/wip-EQ_Notice","head":"0e6c5d4a2b3f61fc20f577a9cfee8aaffc89ec3d","before":"06d575cbc3f93f801eee3b01a34f6f9eb5ea47df","commits":[{"sha":"2f217f18bbac3845fe8ce81f664313ed6f382007","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"Update GlobalChat.py\n\nhttps://github.com/cyberkitsune/PSO2Proxy/issues/126","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/2f217f18bbac3845fe8ce81f664313ed6f382007"},{"sha":"294403ac3ff29cdcb43efc08d3af2827ba054afa","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"oops added too many extra lines","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/294403ac3ff29cdcb43efc08d3af2827ba054afa"},{"sha":"5fd9ab14fcd9ea9b245753f1a2af99f77f5b52d2","author":{"email":"8cc50ce46513b6ddee59a7e3b0e5fa247ab8c11d@users.noreply.github.com","name":"acffordyce973"},"message":"Merge pull request #128 from alama/master\n\nlog is needed here, oops","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/5fd9ab14fcd9ea9b245753f1a2af99f77f5b52d2"},{"sha":"abc2c33d6793e5be1cf1a0e4efa5ae24d6b5f999","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"more graceful way to slice\n\n[0] doesn't slice to well unlike [:1]","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/abc2c33d6793e5be1cf1a0e4efa5ae24d6b5f999"},{"sha":"03309632c32ae148a519c3dc82a28cc4ba0c8fed","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"fix based on rfc standards for irc","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/03309632c32ae148a519c3dc82a28cc4ba0c8fed"},{"sha":"69a4572c581fbaa193561d08d8e7aa3c1de7acb4","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"moved exception to when it actually tries to join \n\ndue to multiple prefixes its simply better for it to not join at all if it doesn't have one of the 4 prefixes specified by rfc 2811","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/69a4572c581fbaa193561d08d8e7aa3c1de7acb4"},{"sha":"890cb21bf7b36447fb85f1144bc44c44603e9deb","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"fixed some indentation","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/890cb21bf7b36447fb85f1144bc44c44603e9deb"},{"sha":"c434167e706a211f233aa7cd6b85e8ce43b84943","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"indentation","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/c434167e706a211f233aa7cd6b85e8ce43b84943"},{"sha":"d446161f3c00841c369c29857e1fe1e176a40012","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"indentation last try","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/d446161f3c00841c369c29857e1fe1e176a40012"},{"sha":"1913cd9de6adb3ddcb52c7fe0a68cfea17020bb7","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"this is not javascript LOL\n\nstupid me used `.index()` instead of `in`","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/1913cd9de6adb3ddcb52c7fe0a68cfea17020bb7"},{"sha":"1d8811add1ba30c80133b0961095e7b07fba93da","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"english grammar issue","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/1d8811add1ba30c80133b0961095e7b07fba93da"},{"sha":"ad81be93b3618c69a8bff241b345be313530b8b8","author":{"email":"49b8d532592346d99aaea34660d99198118fa6db@users.noreply.github.com","name":"AIDA"},"message":"Debian Wheezy has no sudo","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/ad81be93b3618c69a8bff241b345be313530b8b8"},{"sha":"35dd3d56c422ef82b0e7b3be4df338d03a6b2a65","author":{"email":"49b8d532592346d99aaea34660d99198118fa6db@users.noreply.github.com","name":"AIDA"},"message":"Moved all \"commandlines\" idents to the left","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/35dd3d56c422ef82b0e7b3be4df338d03a6b2a65"},{"sha":"0e6c5d4a2b3f61fc20f577a9cfee8aaffc89ec3d","author":{"email":"8e9e6775366d92d16fa005715567f43359273521@gmail.com","name":"Sean McClenaghan"},"message":"Merge pull request #129 from kamijoutouma/patch-1\n\nUpdate GlobalChat.py","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/0e6c5d4a2b3f61fc20f577a9cfee8aaffc89ec3d"}]},"public":true,"created_at":"2015-01-01T15:02:48Z"} +,{"id":"2489652371","type":"CreateEvent","actor":{"id":7215524,"login":"daririos","gravatar_id":"","url":"https://api.github.com/users/daririos","avatar_url":"https://avatars.githubusercontent.com/u/7215524?"},"repo":{"id":28688645,"name":"daririos/UdacitySoftawareDebugging","url":"https://api.github.com/repos/daririos/UdacitySoftawareDebugging"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:48Z"} +,{"id":"2489652373","type":"PushEvent","actor":{"id":9937713,"login":"SergeySalnikov","gravatar_id":"","url":"https://api.github.com/users/SergeySalnikov","avatar_url":"https://avatars.githubusercontent.com/u/9937713?"},"repo":{"id":28114153,"name":"SergeySalnikov/DockDemo","url":"https://api.github.com/repos/SergeySalnikov/DockDemo"},"payload":{"push_id":536864568,"size":4,"distinct_size":4,"ref":"refs/heads/master","head":"3e81762ad65689af859ab7c5c97cce08e76ce8f9","before":"320ebeaac0ddf816e3add086ed9c6bc5015e2127","commits":[{"sha":"c3f5373ced95e8030db8c256bb0390803d58abcc","author":{"email":"6ce061b9418456e75caebf81fc16cf8970cc6901@yandex.ru","name":"salnikov"},"message":"Theme loading from ini. Theme switching from menu.","distinct":true,"url":"https://api.github.com/repos/SergeySalnikov/DockDemo/commits/c3f5373ced95e8030db8c256bb0390803d58abcc"},{"sha":"a1eadb85f788e2d958f066e2822917625df363dc","author":{"email":"6ce061b9418456e75caebf81fc16cf8970cc6901@yandex.ru","name":"salnikov"},"message":"Added substitution in Theme manager.","distinct":true,"url":"https://api.github.com/repos/SergeySalnikov/DockDemo/commits/a1eadb85f788e2d958f066e2822917625df363dc"},{"sha":"c44ee444d12e3d3887994eaf25c95c3af3d32182","author":{"email":"6ce061b9418456e75caebf81fc16cf8970cc6901@yandex.ru","name":"salnikov"},"message":"Added Menu theme.","distinct":true,"url":"https://api.github.com/repos/SergeySalnikov/DockDemo/commits/c44ee444d12e3d3887994eaf25c95c3af3d32182"},{"sha":"3e81762ad65689af859ab7c5c97cce08e76ce8f9","author":{"email":"6ce061b9418456e75caebf81fc16cf8970cc6901@yandex.ru","name":"salnikov"},"message":"Theme refactoring.","distinct":true,"url":"https://api.github.com/repos/SergeySalnikov/DockDemo/commits/3e81762ad65689af859ab7c5c97cce08e76ce8f9"}]},"public":true,"created_at":"2015-01-01T15:02:48Z"} +,{"id":"2489652375","type":"PushEvent","actor":{"id":8281538,"login":"projectAlice","gravatar_id":"","url":"https://api.github.com/users/projectAlice","avatar_url":"https://avatars.githubusercontent.com/u/8281538?"},"repo":{"id":28369560,"name":"projectAlice/SKHUer","url":"https://api.github.com/repos/projectAlice/SKHUer"},"payload":{"push_id":536864570,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"dec3c537f6ee2c156384f30301d533caba93343a","before":"e4b99fa270471cf156703f1f2f57f37bb482eb25","commits":[{"sha":"5b5431f6f2f935c10c2d4969b9b25227d486da2d","author":{"email":"b8e73acd888842c95d76878abf7d30ac1ce269f5@gmail.com","name":"rohmme"},"message":"2014. 12. 31 15:59","distinct":true,"url":"https://api.github.com/repos/projectAlice/SKHUer/commits/5b5431f6f2f935c10c2d4969b9b25227d486da2d"},{"sha":"dec3c537f6ee2c156384f30301d533caba93343a","author":{"email":"b8e73acd888842c95d76878abf7d30ac1ce269f5@gmail.com","name":"rohmme"},"message":"2015. 01. 01 10:59 last in junjoo","distinct":true,"url":"https://api.github.com/repos/projectAlice/SKHUer/commits/dec3c537f6ee2c156384f30301d533caba93343a"}]},"public":true,"created_at":"2015-01-01T15:02:48Z"} +,{"id":"2489652376","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":20876193,"name":"cloudify-cosmo/cloudify-fabric-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-fabric-plugin"},"payload":{"push_id":536864571,"size":1,"distinct_size":1,"ref":"refs/heads/1.2m1-build","head":"b28cafe4b116d40e07497119463ba1c2d5f23ff9","before":"b0d1652761afc487d50aeff9d604406c069a7313","commits":[{"sha":"b28cafe4b116d40e07497119463ba1c2d5f23ff9","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 1.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-fabric-plugin/commits/b28cafe4b116d40e07497119463ba1c2d5f23ff9"}]},"public":true,"created_at":"2015-01-01T15:02:48Z","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":"2489652381","type":"ForkEvent","actor":{"id":10350735,"login":"wditch","gravatar_id":"","url":"https://api.github.com/users/wditch","avatar_url":"https://avatars.githubusercontent.com/u/10350735?"},"repo":{"id":1300192,"name":"octocat/Spoon-Knife","url":"https://api.github.com/repos/octocat/Spoon-Knife"},"payload":{"forkee":{"id":28688646,"name":"Spoon-Knife","full_name":"wditch/Spoon-Knife","owner":{"login":"wditch","id":10350735,"avatar_url":"https://avatars.githubusercontent.com/u/10350735?v=3","gravatar_id":"","url":"https://api.github.com/users/wditch","html_url":"https://github.com/wditch","followers_url":"https://api.github.com/users/wditch/followers","following_url":"https://api.github.com/users/wditch/following{/other_user}","gists_url":"https://api.github.com/users/wditch/gists{/gist_id}","starred_url":"https://api.github.com/users/wditch/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wditch/subscriptions","organizations_url":"https://api.github.com/users/wditch/orgs","repos_url":"https://api.github.com/users/wditch/repos","events_url":"https://api.github.com/users/wditch/events{/privacy}","received_events_url":"https://api.github.com/users/wditch/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/wditch/Spoon-Knife","description":"This repo is for demonstration purposes only.","fork":true,"url":"https://api.github.com/repos/wditch/Spoon-Knife","forks_url":"https://api.github.com/repos/wditch/Spoon-Knife/forks","keys_url":"https://api.github.com/repos/wditch/Spoon-Knife/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wditch/Spoon-Knife/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wditch/Spoon-Knife/teams","hooks_url":"https://api.github.com/repos/wditch/Spoon-Knife/hooks","issue_events_url":"https://api.github.com/repos/wditch/Spoon-Knife/issues/events{/number}","events_url":"https://api.github.com/repos/wditch/Spoon-Knife/events","assignees_url":"https://api.github.com/repos/wditch/Spoon-Knife/assignees{/user}","branches_url":"https://api.github.com/repos/wditch/Spoon-Knife/branches{/branch}","tags_url":"https://api.github.com/repos/wditch/Spoon-Knife/tags","blobs_url":"https://api.github.com/repos/wditch/Spoon-Knife/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wditch/Spoon-Knife/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wditch/Spoon-Knife/git/refs{/sha}","trees_url":"https://api.github.com/repos/wditch/Spoon-Knife/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wditch/Spoon-Knife/statuses/{sha}","languages_url":"https://api.github.com/repos/wditch/Spoon-Knife/languages","stargazers_url":"https://api.github.com/repos/wditch/Spoon-Knife/stargazers","contributors_url":"https://api.github.com/repos/wditch/Spoon-Knife/contributors","subscribers_url":"https://api.github.com/repos/wditch/Spoon-Knife/subscribers","subscription_url":"https://api.github.com/repos/wditch/Spoon-Knife/subscription","commits_url":"https://api.github.com/repos/wditch/Spoon-Knife/commits{/sha}","git_commits_url":"https://api.github.com/repos/wditch/Spoon-Knife/git/commits{/sha}","comments_url":"https://api.github.com/repos/wditch/Spoon-Knife/comments{/number}","issue_comment_url":"https://api.github.com/repos/wditch/Spoon-Knife/issues/comments/{number}","contents_url":"https://api.github.com/repos/wditch/Spoon-Knife/contents/{+path}","compare_url":"https://api.github.com/repos/wditch/Spoon-Knife/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wditch/Spoon-Knife/merges","archive_url":"https://api.github.com/repos/wditch/Spoon-Knife/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wditch/Spoon-Knife/downloads","issues_url":"https://api.github.com/repos/wditch/Spoon-Knife/issues{/number}","pulls_url":"https://api.github.com/repos/wditch/Spoon-Knife/pulls{/number}","milestones_url":"https://api.github.com/repos/wditch/Spoon-Knife/milestones{/number}","notifications_url":"https://api.github.com/repos/wditch/Spoon-Knife/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wditch/Spoon-Knife/labels{/name}","releases_url":"https://api.github.com/repos/wditch/Spoon-Knife/releases{/id}","created_at":"2015-01-01T15:02:48Z","updated_at":"2015-01-01T09:32:08Z","pushed_at":"2014-09-03T21:22:02Z","git_url":"git://github.com/wditch/Spoon-Knife.git","ssh_url":"git@github.com:wditch/Spoon-Knife.git","clone_url":"https://github.com/wditch/Spoon-Knife.git","svn_url":"https://github.com/wditch/Spoon-Knife","homepage":"","size":18839,"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:49Z"} +,{"id":"2489652383","type":"IssuesEvent","actor":{"id":8754908,"login":"sethjohnson1","gravatar_id":"","url":"https://api.github.com/users/sethjohnson1","avatar_url":"https://avatars.githubusercontent.com/u/8754908?"},"repo":{"id":28110389,"name":"sethjohnson1/qr-pub","url":"https://api.github.com/repos/sethjohnson1/qr-pub"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/sethjohnson1/qr-pub/issues/45","labels_url":"https://api.github.com/repos/sethjohnson1/qr-pub/issues/45/labels{/name}","comments_url":"https://api.github.com/repos/sethjohnson1/qr-pub/issues/45/comments","events_url":"https://api.github.com/repos/sethjohnson1/qr-pub/issues/45/events","html_url":"https://github.com/sethjohnson1/qr-pub/issues/45","id":53157218,"number":45,"title":"Fix comment div refresh","user":{"login":"sethjohnson1","id":8754908,"avatar_url":"https://avatars.githubusercontent.com/u/8754908?v=3","gravatar_id":"","url":"https://api.github.com/users/sethjohnson1","html_url":"https://github.com/sethjohnson1","followers_url":"https://api.github.com/users/sethjohnson1/followers","following_url":"https://api.github.com/users/sethjohnson1/following{/other_user}","gists_url":"https://api.github.com/users/sethjohnson1/gists{/gist_id}","starred_url":"https://api.github.com/users/sethjohnson1/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sethjohnson1/subscriptions","organizations_url":"https://api.github.com/users/sethjohnson1/orgs","repos_url":"https://api.github.com/users/sethjohnson1/repos","events_url":"https://api.github.com/users/sethjohnson1/events{/privacy}","received_events_url":"https://api.github.com/users/sethjohnson1/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/sethjohnson1/qr-pub/labels/question","name":"question","color":"cc317c"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2014-12-30T23:48:42Z","updated_at":"2015-01-01T15:02:49Z","closed_at":"2015-01-01T15:02:49Z","body":"I think it might be better if it only refreshes the comment block you're in. Not sure - might be really involved with the Controller/Component setup"}},"public":true,"created_at":"2015-01-01T15:02:49Z"} +,{"id":"2489652387","type":"WatchEvent","actor":{"id":30348,"login":"coolmenu","gravatar_id":"","url":"https://api.github.com/users/coolmenu","avatar_url":"https://avatars.githubusercontent.com/u/30348?"},"repo":{"id":3199586,"name":"tpetricek/FSharp.Formatting","url":"https://api.github.com/repos/tpetricek/FSharp.Formatting"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:49Z"} +,{"id":"2489652390","type":"PushEvent","actor":{"id":1264698,"login":"sorra","gravatar_id":"","url":"https://api.github.com/users/sorra","avatar_url":"https://avatars.githubusercontent.com/u/1264698?"},"repo":{"id":28679728,"name":"sorra/keylity","url":"https://api.github.com/repos/sorra/keylity"},"payload":{"push_id":536864577,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e33b7a6116f6900583ecf82f1b134b90352ea8a0","before":"17c092120629f3be7e4ad92463be60b22df9d156","commits":[{"sha":"e33b7a6116f6900583ecf82f1b134b90352ea8a0","author":{"email":"2a0b702de5ce7c68fd37dd97e6ce0521dc3d2a76@163.com","name":"Dongqing Hu"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/sorra/keylity/commits/e33b7a6116f6900583ecf82f1b134b90352ea8a0"}]},"public":true,"created_at":"2015-01-01T15:02:52Z"} +,{"id":"2489652391","type":"PushEvent","actor":{"id":6851525,"login":"Ardavel","gravatar_id":"","url":"https://api.github.com/users/Ardavel","avatar_url":"https://avatars.githubusercontent.com/u/6851525?"},"repo":{"id":27717733,"name":"Ardavel/zsbd","url":"https://api.github.com/repos/Ardavel/zsbd"},"payload":{"push_id":536864579,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"3e19daac173c2e4013cdcd26b8159f0ec2cdd03d","before":"5dc242ce1cc75763ea4630d45539e325dab829be","commits":[{"sha":"7f682f3b5109c8f0ddf380dbda7917a0fd5e6564","author":{"email":"fc5b9e0f3ab53859717742ff562345f1475e052f@edu.p.lodz.pl","name":"Wojciech Szałapski"},"message":"Dodana procedura do zamawiania książek oraz funkcja do tworzenia podsumowania zamówienia.","distinct":true,"url":"https://api.github.com/repos/Ardavel/zsbd/commits/7f682f3b5109c8f0ddf380dbda7917a0fd5e6564"},{"sha":"3e19daac173c2e4013cdcd26b8159f0ec2cdd03d","author":{"email":"fc5b9e0f3ab53859717742ff562345f1475e052f@edu.p.lodz.pl","name":"Wojciech Szałapski"},"message":"Dodany wyzwalacz zmieniający status zamówienia po jego opłaceniu.","distinct":true,"url":"https://api.github.com/repos/Ardavel/zsbd/commits/3e19daac173c2e4013cdcd26b8159f0ec2cdd03d"}]},"public":true,"created_at":"2015-01-01T15:02:52Z"} +,{"id":"2489652396","type":"CreateEvent","actor":{"id":8603621,"login":"pmbhumkar","gravatar_id":"","url":"https://api.github.com/users/pmbhumkar","avatar_url":"https://avatars.githubusercontent.com/u/8603621?"},"repo":{"id":28688570,"name":"pmbhumkar/mangoopatch","url":"https://api.github.com/repos/pmbhumkar/mangoopatch"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"chmod patch for mangoo","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:52Z"} +,{"id":"2489652401","type":"PushEvent","actor":{"id":2266445,"login":"littleguy77","gravatar_id":"","url":"https://api.github.com/users/littleguy77","avatar_url":"https://avatars.githubusercontent.com/u/2266445?"},"repo":{"id":4237289,"name":"mupen64plus-ae/mupen64plus-ae","url":"https://api.github.com/repos/mupen64plus-ae/mupen64plus-ae"},"payload":{"push_id":536864584,"size":5,"distinct_size":5,"ref":"refs/heads/master","head":"762b18e2b1d77ee2536537c85ba64064e92c0318","before":"80438bcba13e3e1a78999208d01b58a729703949","commits":[{"sha":"42b1e73ea5c312210947479e5661c5a6ced0990e","author":{"email":"3284d2bbee488692d686f402dfa36007d3fba8b4@live.com","name":"littleguy77"},"message":"audio-sdl: Update to commit 863fb3c.\n\nhttps://github.com/mupen64plus-ae/mupen64plus-audio-sdl/commit/863fb3c\n\n* 863fb3c Remove Android Edition customizations.","distinct":true,"url":"https://api.github.com/repos/mupen64plus-ae/mupen64plus-ae/commits/42b1e73ea5c312210947479e5661c5a6ced0990e"},{"sha":"5b3d2acde758ba5be899cd20cf35a8137a05bc19","author":{"email":"3284d2bbee488692d686f402dfa36007d3fba8b4@live.com","name":"littleguy77"},"message":"tools: Switch to vanilla upstream for audio-sdl.","distinct":true,"url":"https://api.github.com/repos/mupen64plus-ae/mupen64plus-ae/commits/5b3d2acde758ba5be899cd20cf35a8137a05bc19"},{"sha":"577cabb59fd7623639b4d599c17fb42926f7972e","author":{"email":"3284d2bbee488692d686f402dfa36007d3fba8b4@live.com","name":"littleguy77"},"message":"audio-sdl: Update to commit 8cf8f17.\n\nhttps://github.com/mupen64plus/mupen64plus-audio-sdl/commit/8cf8f17","distinct":true,"url":"https://api.github.com/repos/mupen64plus-ae/mupen64plus-ae/commits/577cabb59fd7623639b4d599c17fb42926f7972e"},{"sha":"6fc1a2651c32b0dffd69258a74ac30390f9615ce","author":{"email":"3284d2bbee488692d686f402dfa36007d3fba8b4@live.com","name":"littleguy77"},"message":"build: Remove obsolete build flags from audio-sdl.","distinct":true,"url":"https://api.github.com/repos/mupen64plus-ae/mupen64plus-ae/commits/6fc1a2651c32b0dffd69258a74ac30390f9615ce"},{"sha":"762b18e2b1d77ee2536537c85ba64064e92c0318","author":{"email":"3284d2bbee488692d686f402dfa36007d3fba8b4@live.com","name":"littleguy77"},"message":"Merge branch 'sync-audio-upstream'","distinct":true,"url":"https://api.github.com/repos/mupen64plus-ae/mupen64plus-ae/commits/762b18e2b1d77ee2536537c85ba64064e92c0318"}]},"public":true,"created_at":"2015-01-01T15:02:53Z","org":{"id":6227843,"login":"mupen64plus-ae","gravatar_id":"","url":"https://api.github.com/orgs/mupen64plus-ae","avatar_url":"https://avatars.githubusercontent.com/u/6227843?"}} +,{"id":"2489652405","type":"PushEvent","actor":{"id":3934445,"login":"white-cap","gravatar_id":"","url":"https://api.github.com/users/white-cap","avatar_url":"https://avatars.githubusercontent.com/u/3934445?"},"repo":{"id":26266172,"name":"white-cap/helmasbackoff2","url":"https://api.github.com/repos/white-cap/helmasbackoff2"},"payload":{"push_id":536864587,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5e8da7543d75432e8855271047af82e012e7eab7","before":"9356edee5ad57e91b0adf094ec6d35e4d786bb01","commits":[{"sha":"5e8da7543d75432e8855271047af82e012e7eab7","author":{"email":"5a73a16d689066f8e6a908b6c4584e86df912a20@gmail.com","name":"MANKARI Yassir"},"message":"commit","distinct":true,"url":"https://api.github.com/repos/white-cap/helmasbackoff2/commits/5e8da7543d75432e8855271047af82e012e7eab7"}]},"public":true,"created_at":"2015-01-01T15:02:53Z"} +,{"id":"2489652409","type":"WatchEvent","actor":{"id":5396297,"login":"defshine","gravatar_id":"","url":"https://api.github.com/users/defshine","avatar_url":"https://avatars.githubusercontent.com/u/5396297?"},"repo":{"id":6296790,"name":"spring-projects/spring-boot","url":"https://api.github.com/repos/spring-projects/spring-boot"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:54Z","org":{"id":317776,"login":"spring-projects","gravatar_id":"","url":"https://api.github.com/orgs/spring-projects","avatar_url":"https://avatars.githubusercontent.com/u/317776?"}} +,{"id":"2489652415","type":"CreateEvent","actor":{"id":10146966,"login":"gvaibhav21","gravatar_id":"","url":"https://api.github.com/users/gvaibhav21","avatar_url":"https://avatars.githubusercontent.com/u/10146966?"},"repo":{"id":28688649,"name":"gvaibhav21/Music-Collection-Manager","url":"https://api.github.com/repos/gvaibhav21/Music-Collection-Manager"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:57Z"} +,{"id":"2489652418","type":"IssueCommentEvent","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":"created","issue":{"url":"https://api.github.com/repos/Raulfin/PCaPP/issues/1","labels_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/1/comments","events_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/1/events","html_url":"https://github.com/Raulfin/PCaPP/pull/1","id":53221356,"number":1,"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},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:01:06Z","updated_at":"2015-01-01T15:02:55Z","closed_at":"2015-01-01T15:02:55Z","pull_request":{"url":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1","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"},"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."},"comment":{"url":"https://api.github.com/repos/Raulfin/PCaPP/issues/comments/68488542","html_url":"https://github.com/Raulfin/PCaPP/pull/1#issuecomment-68488542","issue_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/1","id":68488542,"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},"created_at":"2015-01-01T15:02:55Z","updated_at":"2015-01-01T15:02:55Z","body":"Added the 3 missing Dragon Priest masks from Dragonborn, reworked the other masks for balance."}},"public":true,"created_at":"2015-01-01T15:02:57Z"} +,{"id":"2489652421","type":"WatchEvent","actor":{"id":112799,"login":"wildtype","gravatar_id":"","url":"https://api.github.com/users/wildtype","avatar_url":"https://avatars.githubusercontent.com/u/112799?"},"repo":{"id":3591964,"name":"snowplow/snowplow","url":"https://api.github.com/repos/snowplow/snowplow"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:57Z","org":{"id":1476001,"login":"snowplow","gravatar_id":"","url":"https://api.github.com/orgs/snowplow","avatar_url":"https://avatars.githubusercontent.com/u/1476001?"}} +,{"id":"2489652422","type":"WatchEvent","actor":{"id":4017086,"login":"MennStudio","gravatar_id":"","url":"https://api.github.com/users/MennStudio","avatar_url":"https://avatars.githubusercontent.com/u/4017086?"},"repo":{"id":11790396,"name":"Themekraft/_tk","url":"https://api.github.com/repos/Themekraft/_tk"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:57Z","org":{"id":663690,"login":"Themekraft","gravatar_id":"","url":"https://api.github.com/orgs/Themekraft","avatar_url":"https://avatars.githubusercontent.com/u/663690?"}} +,{"id":"2489652423","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":"closed","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":"closed","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:02:55Z","closed_at":"2015-01-01T15:02:55Z","merged_at":null,"merge_commit_sha":"4c5e46652ee9c081144d8da174f4b0f65de76ec2","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":0,"forks":2,"open_issues":0,"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":true,"mergeable_state":"clean","merged_by":null,"comments":1,"review_comments":0,"commits":1,"additions":28,"deletions":16,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:02:57Z"} +,{"id":"2489652424","type":"PushEvent","actor":{"id":665292,"login":"stevencombs","gravatar_id":"","url":"https://api.github.com/users/stevencombs","avatar_url":"https://avatars.githubusercontent.com/u/665292?"},"repo":{"id":18952734,"name":"stevencombs/stevencombs.github.io","url":"https://api.github.com/repos/stevencombs/stevencombs.github.io"},"payload":{"push_id":536864594,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9ec7d4300e998b3b37b9d252bcff74fbc53b63a3","before":"ea3338d6a20ee5dbdc307e1dedd5c2116016a6fd","commits":[{"sha":"9ec7d4300e998b3b37b9d252bcff74fbc53b63a3","author":{"email":"6c25e74920ee21b4662d917e8ae800b44d553cde@gmail.com","name":"stevencombs"},"message":"blog update","distinct":true,"url":"https://api.github.com/repos/stevencombs/stevencombs.github.io/commits/9ec7d4300e998b3b37b9d252bcff74fbc53b63a3"}]},"public":true,"created_at":"2015-01-01T15:02:57Z"} +,{"id":"2489652426","type":"PushEvent","actor":{"id":1105372,"login":"ophian","gravatar_id":"","url":"https://api.github.com/users/ophian","avatar_url":"https://avatars.githubusercontent.com/u/1105372?"},"repo":{"id":2627116,"name":"s9y/Serendipity","url":"https://api.github.com/repos/s9y/Serendipity"},"payload":{"push_id":536864595,"size":1,"distinct_size":1,"ref":"refs/heads/2.0","head":"3df6aff87aa4e129f7b7ce272853fc2ebd141332","before":"0e56ffeba0761e994004dcd8aeefdda25ea4cea2","commits":[{"sha":"3df6aff87aa4e129f7b7ce272853fc2ebd141332","author":{"email":"7889110186da61a0ae3ca6f13b0e8d3cacc99788@googlemail.com","name":"Ian"},"message":"cosmetics","distinct":true,"url":"https://api.github.com/repos/s9y/Serendipity/commits/3df6aff87aa4e129f7b7ce272853fc2ebd141332"}]},"public":true,"created_at":"2015-01-01T15:02:57Z","org":{"id":1104713,"login":"s9y","gravatar_id":"","url":"https://api.github.com/orgs/s9y","avatar_url":"https://avatars.githubusercontent.com/u/1104713?"}} +,{"id":"2489652429","type":"PushEvent","actor":{"id":2167695,"login":"skylerzhang","gravatar_id":"","url":"https://api.github.com/users/skylerzhang","avatar_url":"https://avatars.githubusercontent.com/u/2167695?"},"repo":{"id":20473791,"name":"skylerzhang/skylerzhang.github.io","url":"https://api.github.com/repos/skylerzhang/skylerzhang.github.io"},"payload":{"push_id":536864596,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b6ad278b484229f5733b5be722f5450a146ba6a2","before":"8bd3e908da79abf6079c9fb1ffd57304e6fb9404","commits":[{"sha":"b6ad278b484229f5733b5be722f5450a146ba6a2","author":{"email":"b2118e48c08f491640716a9296162bc40ae16faf@gmail.com","name":"skyler"},"message":"update","distinct":true,"url":"https://api.github.com/repos/skylerzhang/skylerzhang.github.io/commits/b6ad278b484229f5733b5be722f5450a146ba6a2"}]},"public":true,"created_at":"2015-01-01T15:02:57Z"} +,{"id":"2489652430","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":19569477,"name":"cloudify-cosmo/cloudify-cloudstack-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-cloudstack-plugin"},"payload":{"push_id":536864597,"size":1,"distinct_size":1,"ref":"refs/heads/1.2m1-build","head":"ea9be6061a533f00b2635d151733ca201a0d008c","before":"b886aa823cbf81b8b4f3701747c43c3c511c0ac5","commits":[{"sha":"ea9be6061a533f00b2635d151733ca201a0d008c","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 1.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-cloudstack-plugin/commits/ea9be6061a533f00b2635d151733ca201a0d008c"}]},"public":true,"created_at":"2015-01-01T15:02:57Z","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":"2489652431","type":"PushEvent","actor":{"id":2298444,"login":"iChun","gravatar_id":"","url":"https://api.github.com/users/iChun","avatar_url":"https://avatars.githubusercontent.com/u/2298444?"},"repo":{"id":26553224,"name":"iChun/Tabula","url":"https://api.github.com/repos/iChun/Tabula"},"payload":{"push_id":536864598,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"03930eb96f32f39b0b3c0bd852f2fdae7f7f231e","before":"5970444e23f5dbc56f50c70d6e3a49a96e5897cc","commits":[{"sha":"03930eb96f32f39b0b3c0bd852f2fdae7f7f231e","author":{"email":"5f66eb3bda4ccd1a4772ab95e2cbaa53628de24d@gmail.com","name":"iChun"},"message":"Clients should now be able to open projects and import MC models on multiplayer.","distinct":true,"url":"https://api.github.com/repos/iChun/Tabula/commits/03930eb96f32f39b0b3c0bd852f2fdae7f7f231e"}]},"public":true,"created_at":"2015-01-01T15:02:57Z"} +,{"id":"2489652432","type":"WatchEvent","actor":{"id":1058248,"login":"sarum9in","gravatar_id":"","url":"https://api.github.com/users/sarum9in","avatar_url":"https://avatars.githubusercontent.com/u/1058248?"},"repo":{"id":23029617,"name":"h2o/h2o","url":"https://api.github.com/repos/h2o/h2o"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:58Z","org":{"id":9275116,"login":"h2o","gravatar_id":"","url":"https://api.github.com/orgs/h2o","avatar_url":"https://avatars.githubusercontent.com/u/9275116?"}} +,{"id":"2489652433","type":"DeleteEvent","actor":{"id":9979168,"login":"PromGames","gravatar_id":"","url":"https://api.github.com/users/PromGames","avatar_url":"https://avatars.githubusercontent.com/u/9979168?"},"repo":{"id":28622975,"name":"PromGames/Coursedrawer","url":"https://api.github.com/repos/PromGames/Coursedrawer"},"payload":{"ref":"DataBindingLab","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:58Z"} +,{"id":"2489652434","type":"IssueCommentEvent","actor":{"id":7124044,"login":"Tachii","gravatar_id":"","url":"https://api.github.com/users/Tachii","avatar_url":"https://avatars.githubusercontent.com/u/7124044?"},"repo":{"id":16466069,"name":"KoffeinFlummi/AGM","url":"https://api.github.com/repos/KoffeinFlummi/AGM"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/KoffeinFlummi/AGM/issues/1880","labels_url":"https://api.github.com/repos/KoffeinFlummi/AGM/issues/1880/labels{/name}","comments_url":"https://api.github.com/repos/KoffeinFlummi/AGM/issues/1880/comments","events_url":"https://api.github.com/repos/KoffeinFlummi/AGM/issues/1880/events","html_url":"https://github.com/KoffeinFlummi/AGM/issues/1880","id":53220206,"number":1880,"title":"bacpacks interaction hint","user":{"login":"Tachii","id":7124044,"avatar_url":"https://avatars.githubusercontent.com/u/7124044?v=3","gravatar_id":"","url":"https://api.github.com/users/Tachii","html_url":"https://github.com/Tachii","followers_url":"https://api.github.com/users/Tachii/followers","following_url":"https://api.github.com/users/Tachii/following{/other_user}","gists_url":"https://api.github.com/users/Tachii/gists{/gist_id}","starred_url":"https://api.github.com/users/Tachii/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Tachii/subscriptions","organizations_url":"https://api.github.com/users/Tachii/orgs","repos_url":"https://api.github.com/users/Tachii/repos","events_url":"https://api.github.com/users/Tachii/events{/privacy}","received_events_url":"https://api.github.com/users/Tachii/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/KoffeinFlummi/AGM/labels/feature+request","name":"feature request","color":"0052cc"}],"state":"open","locked":false,"assignee":{"login":"commy2","id":6576312,"avatar_url":"https://avatars.githubusercontent.com/u/6576312?v=3","gravatar_id":"","url":"https://api.github.com/users/commy2","html_url":"https://github.com/commy2","followers_url":"https://api.github.com/users/commy2/followers","following_url":"https://api.github.com/users/commy2/following{/other_user}","gists_url":"https://api.github.com/users/commy2/gists{/gist_id}","starred_url":"https://api.github.com/users/commy2/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/commy2/subscriptions","organizations_url":"https://api.github.com/users/commy2/orgs","repos_url":"https://api.github.com/users/commy2/repos","events_url":"https://api.github.com/users/commy2/events{/privacy}","received_events_url":"https://api.github.com/users/commy2/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/KoffeinFlummi/AGM/milestones/2","labels_url":"https://api.github.com/repos/KoffeinFlummi/AGM/milestones/2/labels","id":614608,"number":2,"title":"Version 1.0","description":"","creator":{"login":"KoffeinFlummi","id":2438809,"avatar_url":"https://avatars.githubusercontent.com/u/2438809?v=3","gravatar_id":"","url":"https://api.github.com/users/KoffeinFlummi","html_url":"https://github.com/KoffeinFlummi","followers_url":"https://api.github.com/users/KoffeinFlummi/followers","following_url":"https://api.github.com/users/KoffeinFlummi/following{/other_user}","gists_url":"https://api.github.com/users/KoffeinFlummi/gists{/gist_id}","starred_url":"https://api.github.com/users/KoffeinFlummi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/KoffeinFlummi/subscriptions","organizations_url":"https://api.github.com/users/KoffeinFlummi/orgs","repos_url":"https://api.github.com/users/KoffeinFlummi/repos","events_url":"https://api.github.com/users/KoffeinFlummi/events{/privacy}","received_events_url":"https://api.github.com/users/KoffeinFlummi/received_events","type":"User","site_admin":false},"open_issues":64,"closed_issues":111,"state":"open","created_at":"2014-03-30T20:47:21Z","updated_at":"2015-01-01T14:40:52Z","due_on":null,"closed_at":null},"comments":1,"created_at":"2015-01-01T13:59:41Z","updated_at":"2015-01-01T15:02:57Z","closed_at":null,"body":"When someone is getting inside of your backpack you have no idea he did it. It's kinda annoying, for example a prisonier can steal a grenade from a bacpack and then throw it. So the request is can you create a hint or dialog with a name of person who is using your backpack.\r\n\r\nFor example:\r\n\r\nJohn Doe is using your backpack\r\nJohn Doe is trying to access your backpack, but it's locked"},"comment":{"url":"https://api.github.com/repos/KoffeinFlummi/AGM/issues/comments/68488543","html_url":"https://github.com/KoffeinFlummi/AGM/issues/1880#issuecomment-68488543","issue_url":"https://api.github.com/repos/KoffeinFlummi/AGM/issues/1880","id":68488543,"user":{"login":"Tachii","id":7124044,"avatar_url":"https://avatars.githubusercontent.com/u/7124044?v=3","gravatar_id":"","url":"https://api.github.com/users/Tachii","html_url":"https://github.com/Tachii","followers_url":"https://api.github.com/users/Tachii/followers","following_url":"https://api.github.com/users/Tachii/following{/other_user}","gists_url":"https://api.github.com/users/Tachii/gists{/gist_id}","starred_url":"https://api.github.com/users/Tachii/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Tachii/subscriptions","organizations_url":"https://api.github.com/users/Tachii/orgs","repos_url":"https://api.github.com/users/Tachii/repos","events_url":"https://api.github.com/users/Tachii/events{/privacy}","received_events_url":"https://api.github.com/users/Tachii/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:02:57Z","updated_at":"2015-01-01T15:02:57Z","body":"It was in ace 2, maybe u can see how they did it if u want"}},"public":true,"created_at":"2015-01-01T15:02:58Z"} +,{"id":"2489652436","type":"PushEvent","actor":{"id":75446,"login":"jpawlowski","gravatar_id":"","url":"https://api.github.com/users/jpawlowski","avatar_url":"https://avatars.githubusercontent.com/u/75446?"},"repo":{"id":24657025,"name":"Hoanoho/HBE","url":"https://api.github.com/repos/Hoanoho/HBE"},"payload":{"push_id":536864600,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"d90c8c7e7dc77b5e9313be93ebb340e24dfdf3c0","before":"836b51b91d91df8da5d6f3001a2ad417f3aabad7","commits":[{"sha":"d90c8c7e7dc77b5e9313be93ebb340e24dfdf3c0","author":{"email":"e3c3aeb6a4cfab02b0f6e16de2e02aeb23d63ec5@gmail.com","name":"Julian Pawlowski"},"message":"add Digest::SHA1","distinct":true,"url":"https://api.github.com/repos/Hoanoho/HBE/commits/d90c8c7e7dc77b5e9313be93ebb340e24dfdf3c0"}]},"public":true,"created_at":"2015-01-01T15:02:58Z","org":{"id":8996526,"login":"Hoanoho","gravatar_id":"","url":"https://api.github.com/orgs/Hoanoho","avatar_url":"https://avatars.githubusercontent.com/u/8996526?"}} +,{"id":"2489652437","type":"PushEvent","actor":{"id":9547742,"login":"adlpzrmn","gravatar_id":"","url":"https://api.github.com/users/adlpzrmn","avatar_url":"https://avatars.githubusercontent.com/u/9547742?"},"repo":{"id":26164184,"name":"adlpzrmn/adlpzrmn.github.io","url":"https://api.github.com/repos/adlpzrmn/adlpzrmn.github.io"},"payload":{"push_id":536864601,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"90a06d70ee7c4253c350d40220a3d6e93cc18877","before":"6083116e480a8d3114f02095b4f97a5134512d99","commits":[{"sha":"90a06d70ee7c4253c350d40220a3d6e93cc18877","author":{"email":"909227e65a07389f2f74ddd2ac8f9d538341fdbf@yahoo.es","name":"adlpzrmn"},"message":"[HTML5 MOOC] [Módulo 10] [Ejercicios P2P]\n\nCorrección versión","distinct":true,"url":"https://api.github.com/repos/adlpzrmn/adlpzrmn.github.io/commits/90a06d70ee7c4253c350d40220a3d6e93cc18877"}]},"public":true,"created_at":"2015-01-01T15:02:58Z"} +,{"id":"2489652440","type":"ForkEvent","actor":{"id":253237,"login":"Jamesking56","gravatar_id":"","url":"https://api.github.com/users/Jamesking56","avatar_url":"https://avatars.githubusercontent.com/u/253237?"},"repo":{"id":26730195,"name":"cachethq/Cachet","url":"https://api.github.com/repos/cachethq/Cachet"},"payload":{"forkee":{"id":28688651,"name":"Cachet","full_name":"Jamesking56/Cachet","owner":{"login":"Jamesking56","id":253237,"avatar_url":"https://avatars.githubusercontent.com/u/253237?v=3","gravatar_id":"","url":"https://api.github.com/users/Jamesking56","html_url":"https://github.com/Jamesking56","followers_url":"https://api.github.com/users/Jamesking56/followers","following_url":"https://api.github.com/users/Jamesking56/following{/other_user}","gists_url":"https://api.github.com/users/Jamesking56/gists{/gist_id}","starred_url":"https://api.github.com/users/Jamesking56/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Jamesking56/subscriptions","organizations_url":"https://api.github.com/users/Jamesking56/orgs","repos_url":"https://api.github.com/users/Jamesking56/repos","events_url":"https://api.github.com/users/Jamesking56/events{/privacy}","received_events_url":"https://api.github.com/users/Jamesking56/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Jamesking56/Cachet","description":"Cachet, the open source StatusPage.io alternative written in PHP","fork":true,"url":"https://api.github.com/repos/Jamesking56/Cachet","forks_url":"https://api.github.com/repos/Jamesking56/Cachet/forks","keys_url":"https://api.github.com/repos/Jamesking56/Cachet/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Jamesking56/Cachet/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Jamesking56/Cachet/teams","hooks_url":"https://api.github.com/repos/Jamesking56/Cachet/hooks","issue_events_url":"https://api.github.com/repos/Jamesking56/Cachet/issues/events{/number}","events_url":"https://api.github.com/repos/Jamesking56/Cachet/events","assignees_url":"https://api.github.com/repos/Jamesking56/Cachet/assignees{/user}","branches_url":"https://api.github.com/repos/Jamesking56/Cachet/branches{/branch}","tags_url":"https://api.github.com/repos/Jamesking56/Cachet/tags","blobs_url":"https://api.github.com/repos/Jamesking56/Cachet/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Jamesking56/Cachet/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Jamesking56/Cachet/git/refs{/sha}","trees_url":"https://api.github.com/repos/Jamesking56/Cachet/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Jamesking56/Cachet/statuses/{sha}","languages_url":"https://api.github.com/repos/Jamesking56/Cachet/languages","stargazers_url":"https://api.github.com/repos/Jamesking56/Cachet/stargazers","contributors_url":"https://api.github.com/repos/Jamesking56/Cachet/contributors","subscribers_url":"https://api.github.com/repos/Jamesking56/Cachet/subscribers","subscription_url":"https://api.github.com/repos/Jamesking56/Cachet/subscription","commits_url":"https://api.github.com/repos/Jamesking56/Cachet/commits{/sha}","git_commits_url":"https://api.github.com/repos/Jamesking56/Cachet/git/commits{/sha}","comments_url":"https://api.github.com/repos/Jamesking56/Cachet/comments{/number}","issue_comment_url":"https://api.github.com/repos/Jamesking56/Cachet/issues/comments/{number}","contents_url":"https://api.github.com/repos/Jamesking56/Cachet/contents/{+path}","compare_url":"https://api.github.com/repos/Jamesking56/Cachet/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Jamesking56/Cachet/merges","archive_url":"https://api.github.com/repos/Jamesking56/Cachet/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Jamesking56/Cachet/downloads","issues_url":"https://api.github.com/repos/Jamesking56/Cachet/issues{/number}","pulls_url":"https://api.github.com/repos/Jamesking56/Cachet/pulls{/number}","milestones_url":"https://api.github.com/repos/Jamesking56/Cachet/milestones{/number}","notifications_url":"https://api.github.com/repos/Jamesking56/Cachet/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Jamesking56/Cachet/labels{/name}","releases_url":"https://api.github.com/repos/Jamesking56/Cachet/releases{/id}","created_at":"2015-01-01T15:02:58Z","updated_at":"2015-01-01T14:55:06Z","pushed_at":"2015-01-01T14:50:06Z","git_url":"git://github.com/Jamesking56/Cachet.git","ssh_url":"git@github.com:Jamesking56/Cachet.git","clone_url":"https://github.com/Jamesking56/Cachet.git","svn_url":"https://github.com/Jamesking56/Cachet","homepage":"http://cachethq.io","size":6115,"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:02:58Z","org":{"id":9951502,"login":"cachethq","gravatar_id":"","url":"https://api.github.com/orgs/cachethq","avatar_url":"https://avatars.githubusercontent.com/u/9951502?"}} +,{"id":"2489652442","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":18327432,"name":"cloudify-cosmo/cloudify-openstack-provider","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-openstack-provider"},"payload":{"push_id":536864605,"size":1,"distinct_size":1,"ref":"refs/heads/1.2m1-build","head":"48ef0fca44e14a7bd2547dfcb309fa4ffecf6503","before":"1bc16d5198ba5ee84706077fc9b03edecaf70529","commits":[{"sha":"48ef0fca44e14a7bd2547dfcb309fa4ffecf6503","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 1.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-openstack-provider/commits/48ef0fca44e14a7bd2547dfcb309fa4ffecf6503"}]},"public":true,"created_at":"2015-01-01T15:02:58Z","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":"2489652444","type":"PushEvent","actor":{"id":1459866,"login":"missdeer","gravatar_id":"","url":"https://api.github.com/users/missdeer","avatar_url":"https://avatars.githubusercontent.com/u/1459866?"},"repo":{"id":14350085,"name":"missdeer/istkani","url":"https://api.github.com/repos/missdeer/istkani"},"payload":{"push_id":536864607,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f08c844b31ef0a04f93561dfe5f19a40751d021a","before":"ce833f5570c1bbdbe14acfa4d2aae652b40475ca","commits":[{"sha":"f08c844b31ef0a04f93561dfe5f19a40751d021a","author":{"email":"78133d84c93e12ae1acb21fb5e4e209fb118cfa7@dfordsoft.com","name":"Fan Yang"},"message":"(*)update award data at Thu Jan 1 14:56:17 UTC 2015","distinct":true,"url":"https://api.github.com/repos/missdeer/istkani/commits/f08c844b31ef0a04f93561dfe5f19a40751d021a"}]},"public":true,"created_at":"2015-01-01T15:02:59Z"} +,{"id":"2489652445","type":"PushEvent","actor":{"id":1498691,"login":"hironytic","gravatar_id":"","url":"https://api.github.com/users/hironytic","avatar_url":"https://avatars.githubusercontent.com/u/1498691?"},"repo":{"id":23249954,"name":"hironytic/BFTaskPromise","url":"https://api.github.com/repos/hironytic/BFTaskPromise"},"payload":{"push_id":536864609,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a11dfc2c8dfbfff11f13a0e684d74773fa4d3979","before":"d64297c96ebfa4005a1462f34d428f6f593dbcc7","commits":[{"sha":"a11dfc2c8dfbfff11f13a0e684d74773fa4d3979","author":{"email":"401ee077e7c729da7abab5cc98709d8ef6415866@hironytic.com","name":"Hironori Ichimiya"},"message":"update several things.\n\n- fix test fails in Xcode 6.1.1\n- update Bolts (1.1.1 -> 1.1.3)\n- change from `#import \"BFxxxx.h\"` to `#import `.\n- update copyright year in LICENSE.","distinct":true,"url":"https://api.github.com/repos/hironytic/BFTaskPromise/commits/a11dfc2c8dfbfff11f13a0e684d74773fa4d3979"}]},"public":true,"created_at":"2015-01-01T15:02:59Z"} +,{"id":"2489652447","type":"PushEvent","actor":{"id":23115,"login":"simonask","gravatar_id":"","url":"https://api.github.com/users/simonask","avatar_url":"https://avatars.githubusercontent.com/u/23115?"},"repo":{"id":16694023,"name":"simonask/rust-reflect","url":"https://api.github.com/repos/simonask/rust-reflect"},"payload":{"push_id":536864610,"size":5,"distinct_size":5,"ref":"refs/heads/master","head":"77776402c831bc60e4c6e27cd688e99c2ef84cd9","before":"c3ba0ff166bd6277e1201f898d613e4a4510d2a0","commits":[{"sha":"c2e729c75a2361b6b474b3f8b24561bbab62d437","author":{"email":"088e16a1019277b15d58faf0541e11910eb756f6@ulsnes.dk","name":"Simon Ask Ulsnes"},"message":"Use quote_*! macros in favor of directly invoking AstBuilder when possible.","distinct":true,"url":"https://api.github.com/repos/simonask/rust-reflect/commits/c2e729c75a2361b6b474b3f8b24561bbab62d437"},{"sha":"f862787fd6f54ae7f73078f28f56332bf42eedd1","author":{"email":"088e16a1019277b15d58faf0541e11910eb756f6@ulsnes.dk","name":"Simon Ask Ulsnes"},"message":"cleanup","distinct":true,"url":"https://api.github.com/repos/simonask/rust-reflect/commits/f862787fd6f54ae7f73078f28f56332bf42eedd1"},{"sha":"0a1351421d252900106f6ee09d0abcbcac01abe5","author":{"email":"088e16a1019277b15d58faf0541e11910eb756f6@ulsnes.dk","name":"Simon Ask Ulsnes"},"message":"added TODO","distinct":true,"url":"https://api.github.com/repos/simonask/rust-reflect/commits/0a1351421d252900106f6ee09d0abcbcac01abe5"},{"sha":"3ca6fb617689f173ee4b1500eec5258b4656ac7a","author":{"email":"088e16a1019277b15d58faf0541e11910eb756f6@ulsnes.dk","name":"Simon Ask Ulsnes"},"message":"Added type_info() to AnyAttribute","distinct":true,"url":"https://api.github.com/repos/simonask/rust-reflect/commits/3ca6fb617689f173ee4b1500eec5258b4656ac7a"},{"sha":"77776402c831bc60e4c6e27cd688e99c2ef84cd9","author":{"email":"088e16a1019277b15d58faf0541e11910eb756f6@ulsnes.dk","name":"Simon Ask Ulsnes"},"message":"Updated README","distinct":true,"url":"https://api.github.com/repos/simonask/rust-reflect/commits/77776402c831bc60e4c6e27cd688e99c2ef84cd9"}]},"public":true,"created_at":"2015-01-01T15:02:59Z"} +,{"id":"2489652448","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":536864611,"size":1,"distinct_size":1,"ref":"refs/heads/0.1","head":"31a75f773f0aec0d3ae87e68d587ad40bed99fa2","before":"b64bacaca806cb8f3ef0284966cf0a2b7fe20057","commits":[{"sha":"31a75f773f0aec0d3ae87e68d587ad40bed99fa2","author":{"email":"254d51cb477bb0448649802c443c6e6c2f475324@gmail.com","name":"Bruno Carvalho de Araujo"},"message":"Update Persistence.php","distinct":true,"url":"https://api.github.com/repos/brunocarvalhodearaujo/datastore/commits/31a75f773f0aec0d3ae87e68d587ad40bed99fa2"}]},"public":true,"created_at":"2015-01-01T15:02:59Z"} +,{"id":"2489652450","type":"WatchEvent","actor":{"id":160202,"login":"UniIsland","gravatar_id":"","url":"https://api.github.com/users/UniIsland","avatar_url":"https://avatars.githubusercontent.com/u/160202?"},"repo":{"id":28081156,"name":"lexrus/VPNOn","url":"https://api.github.com/repos/lexrus/VPNOn"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:00Z"} +,{"id":"2489652451","type":"PushEvent","actor":{"id":2191920,"login":"oogre","gravatar_id":"","url":"https://api.github.com/users/oogre","avatar_url":"https://avatars.githubusercontent.com/u/2191920?"},"repo":{"id":13723075,"name":"oogre/bcksp.es","url":"https://api.github.com/repos/oogre/bcksp.es"},"payload":{"push_id":536864612,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"944e5695c9e7214c83a956c31aa9d2635f666841","before":"0a23aeda327fcf3e57a702938ee38f59a5d761e1","commits":[{"sha":"89dc05bd42b5f8f72b8023c408a301cf08848bb3","author":{"email":"87e1f221a672a14a323e57bb65eaea19d3ed3804@ogre.be","name":"oogre"},"message":"force relaunch","distinct":true,"url":"https://api.github.com/repos/oogre/bcksp.es/commits/89dc05bd42b5f8f72b8023c408a301cf08848bb3"},{"sha":"944e5695c9e7214c83a956c31aa9d2635f666841","author":{"email":"87e1f221a672a14a323e57bb65eaea19d3ed3804@ogre.be","name":"oogre"},"message":"test","distinct":true,"url":"https://api.github.com/repos/oogre/bcksp.es/commits/944e5695c9e7214c83a956c31aa9d2635f666841"}]},"public":true,"created_at":"2015-01-01T15:03:00Z"} +,{"id":"2489652452","type":"PushEvent","actor":{"id":5153317,"login":"justin76","gravatar_id":"","url":"https://api.github.com/users/justin76","avatar_url":"https://avatars.githubusercontent.com/u/5153317?"},"repo":{"id":26371503,"name":"ellej16/SumMe","url":"https://api.github.com/repos/ellej16/SumMe"},"payload":{"push_id":536864613,"size":5,"distinct_size":5,"ref":"refs/heads/dev","head":"5a9d9c55583b036fb12d9bf6522af720b36dd6aa","before":"bf8a2214fd509b3367cf9d79fe67bf4a32412617","commits":[{"sha":"6bb9685af8b61c4b519937461523c40378bf55c4","author":{"email":"07b49fd98fc5822c9336f72ad3d643ad46675c59@gmail.com","name":"Justin Allen L. Capalad"},"message":"Added download file function. Beta version","distinct":true,"url":"https://api.github.com/repos/ellej16/SumMe/commits/6bb9685af8b61c4b519937461523c40378bf55c4"},{"sha":"78f43371114699e8e71889d532e711c4f028821a","author":{"email":"07b49fd98fc5822c9336f72ad3d643ad46675c59@gmail.com","name":"Justin Allen L. Capalad"},"message":"Added download function on File Tab.","distinct":true,"url":"https://api.github.com/repos/ellej16/SumMe/commits/78f43371114699e8e71889d532e711c4f028821a"},{"sha":"92bfb79816bee6c7c4702126b71b5cb19568346a","author":{"email":"07b49fd98fc5822c9336f72ad3d643ad46675c59@gmail.com","name":"Justin Allen L. Capalad"},"message":"Added download function on File Tab.","distinct":true,"url":"https://api.github.com/repos/ellej16/SumMe/commits/92bfb79816bee6c7c4702126b71b5cb19568346a"},{"sha":"c5b9687b4b5a6001b1b21d5708adc29da8514ce6","author":{"email":"07b49fd98fc5822c9336f72ad3d643ad46675c59@gmail.com","name":"Justin Allen L. Capalad"},"message":"Added download Function.","distinct":true,"url":"https://api.github.com/repos/ellej16/SumMe/commits/c5b9687b4b5a6001b1b21d5708adc29da8514ce6"},{"sha":"5a9d9c55583b036fb12d9bf6522af720b36dd6aa","author":{"email":"07b49fd98fc5822c9336f72ad3d643ad46675c59@gmail.com","name":"Justin Allen L. Capalad"},"message":"Merge branch 'dev' of https://github.com/ellej16/SumMe into dev","distinct":true,"url":"https://api.github.com/repos/ellej16/SumMe/commits/5a9d9c55583b036fb12d9bf6522af720b36dd6aa"}]},"public":true,"created_at":"2015-01-01T15:03:00Z"} +,{"id":"2489652453","type":"WatchEvent","actor":{"id":864587,"login":"koizuka","gravatar_id":"","url":"https://api.github.com/users/koizuka","avatar_url":"https://avatars.githubusercontent.com/u/864587?"},"repo":{"id":22631173,"name":"russgrue/Adafruit_DHT_Library","url":"https://api.github.com/repos/russgrue/Adafruit_DHT_Library"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:02Z"} +,{"id":"2489652454","type":"CreateEvent","actor":{"id":10364670,"login":"AdeTroake","gravatar_id":"","url":"https://api.github.com/users/AdeTroake","avatar_url":"https://avatars.githubusercontent.com/u/10364670?"},"repo":{"id":28688652,"name":"AdeTroake/hello-world","url":"https://api.github.com/repos/AdeTroake/hello-world"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"My first GitHub repository","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:02Z"} +,{"id":"2489652458","type":"PushEvent","actor":{"id":10328445,"login":"varunamachi","gravatar_id":"","url":"https://api.github.com/users/varunamachi","avatar_url":"https://avatars.githubusercontent.com/u/10328445?"},"repo":{"id":28555687,"name":"varunamachi/tanyatu","url":"https://api.github.com/repos/varunamachi/tanyatu"},"payload":{"push_id":536864615,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d33a28ee4c84f30b34079b95290192f16bd5e785","before":"4ef4370dcce11497c66e68fc2883df34020f5119","commits":[{"sha":"d33a28ee4c84f30b34079b95290192f16bd5e785","author":{"email":"9fb65c815723a3e47d1ca83a490dfc7c94f48a00@gmail.com","name":"Varuna Amachi"},"message":"Fixes to audio library loading\n\nFixed:\n1) Audio track view was not showing the library contents\n2) Track view and lib view were not updated when new tracks were added\nto the library","distinct":true,"url":"https://api.github.com/repos/varunamachi/tanyatu/commits/d33a28ee4c84f30b34079b95290192f16bd5e785"}]},"public":true,"created_at":"2015-01-01T15:03:02Z"} +,{"id":"2489652459","type":"PushEvent","actor":{"id":5640532,"login":"JeanDamien","gravatar_id":"","url":"https://api.github.com/users/JeanDamien","avatar_url":"https://avatars.githubusercontent.com/u/5640532?"},"repo":{"id":25182632,"name":"JeanDamien/CodinGames","url":"https://api.github.com/repos/JeanDamien/CodinGames"},"payload":{"push_id":536864617,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2293c5aa72c0129c477381840cc8481402db01c4","before":"039f4aecb10b3eed3d0cb2a4519952db7fe17f2a","commits":[{"sha":"2293c5aa72c0129c477381840cc8481402db01c4","author":{"email":"f8ed4cb4b5495b98214a24e9db9255905a8fa039@msn.com","name":"JeanDamien"},"message":"Upload Pouvoir de Thor en C#","distinct":true,"url":"https://api.github.com/repos/JeanDamien/CodinGames/commits/2293c5aa72c0129c477381840cc8481402db01c4"}]},"public":true,"created_at":"2015-01-01T15:03:02Z"} +,{"id":"2489652460","type":"IssuesEvent","actor":{"id":7223093,"login":"jgermond","gravatar_id":"","url":"https://api.github.com/users/jgermond","avatar_url":"https://avatars.githubusercontent.com/u/7223093?"},"repo":{"id":25916085,"name":"Chuck-Berry/ProjetIA_Quarto","url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto/issues/1","labels_url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto/issues/1/comments","events_url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto/issues/1/events","html_url":"https://github.com/Chuck-Berry/ProjetIA_Quarto/issues/1","id":53221390,"number":1,"title":"Impossible d'arrêter la musique","user":{"login":"jgermond","id":7223093,"avatar_url":"https://avatars.githubusercontent.com/u/7223093?v=3","gravatar_id":"","url":"https://api.github.com/users/jgermond","html_url":"https://github.com/jgermond","followers_url":"https://api.github.com/users/jgermond/followers","following_url":"https://api.github.com/users/jgermond/following{/other_user}","gists_url":"https://api.github.com/users/jgermond/gists{/gist_id}","starred_url":"https://api.github.com/users/jgermond/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jgermond/subscriptions","organizations_url":"https://api.github.com/users/jgermond/orgs","repos_url":"https://api.github.com/users/jgermond/repos","events_url":"https://api.github.com/users/jgermond/events{/privacy}","received_events_url":"https://api.github.com/users/jgermond/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:03:02Z","updated_at":"2015-01-01T15:03:02Z","closed_at":null,"body":"Le bouton pour arrêter la musique ne fonctionne plus depuis la factorisation."}},"public":true,"created_at":"2015-01-01T15:03:02Z"} +,{"id":"2489652461","type":"PushEvent","actor":{"id":2883405,"login":"SimoneArena","gravatar_id":"","url":"https://api.github.com/users/SimoneArena","avatar_url":"https://avatars.githubusercontent.com/u/2883405?"},"repo":{"id":28347188,"name":"SimoneArena/Graylog2_CentOS","url":"https://api.github.com/repos/SimoneArena/Graylog2_CentOS"},"payload":{"push_id":536864618,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d26fe756f200e5f1d23b86509cbd93bcbdff4a50","before":"b97dca12fc6f3bf8a8cce1b88a7e924e9ef7ac8c","commits":[{"sha":"d26fe756f200e5f1d23b86509cbd93bcbdff4a50","author":{"email":"2bc7c377eb04471e51f992d169605aeb1166cf6a@users.noreply.github.com","name":"Simone Arena"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/SimoneArena/Graylog2_CentOS/commits/d26fe756f200e5f1d23b86509cbd93bcbdff4a50"}]},"public":true,"created_at":"2015-01-01T15:03:02Z"} +,{"id":"2489652464","type":"PushEvent","actor":{"id":6783879,"login":"OskarKlintrot","gravatar_id":"","url":"https://api.github.com/users/OskarKlintrot","avatar_url":"https://avatars.githubusercontent.com/u/6783879?"},"repo":{"id":28663633,"name":"OskarKlintrot/1dv403-PersonalWebDesktop","url":"https://api.github.com/repos/OskarKlintrot/1dv403-PersonalWebDesktop"},"payload":{"push_id":536864619,"size":4,"distinct_size":4,"ref":"refs/heads/gh-pages","head":"faeebb682807cf59cc7309547546183c1b76c52b","before":"15e9a945390bc40f4b054f6ec7d8ea1816edbe89","commits":[{"sha":"1d70b194f9e05e061e17deb8680141c384a1fe2c","author":{"email":"1499837edc350f28c7578a87c3b1a5016ac7fbae@gmail.com","name":"Oskar Klintrot"},"message":"Min-height and min-width added","distinct":true,"url":"https://api.github.com/repos/OskarKlintrot/1dv403-PersonalWebDesktop/commits/1d70b194f9e05e061e17deb8680141c384a1fe2c"},{"sha":"25ed2425bf410d98695ef6cbca33a54fcd93f165","author":{"email":"1499837edc350f28c7578a87c3b1a5016ac7fbae@gmail.com","name":"Oskar Klintrot"},"message":"New ipsum","distinct":true,"url":"https://api.github.com/repos/OskarKlintrot/1dv403-PersonalWebDesktop/commits/25ed2425bf410d98695ef6cbca33a54fcd93f165"},{"sha":"0c28ba44b7c76b09a42629c474c7d1982f89dbf1","author":{"email":"1499837edc350f28c7578a87c3b1a5016ac7fbae@gmail.com","name":"Oskar Klintrot"},"message":"Removed underline from img in header in windows","distinct":true,"url":"https://api.github.com/repos/OskarKlintrot/1dv403-PersonalWebDesktop/commits/0c28ba44b7c76b09a42629c474c7d1982f89dbf1"},{"sha":"faeebb682807cf59cc7309547546183c1b76c52b","author":{"email":"1499837edc350f28c7578a87c3b1a5016ac7fbae@gmail.com","name":"Oskar Klintrot"},"message":"Taskbar layout","distinct":true,"url":"https://api.github.com/repos/OskarKlintrot/1dv403-PersonalWebDesktop/commits/faeebb682807cf59cc7309547546183c1b76c52b"}]},"public":true,"created_at":"2015-01-01T15:03:02Z"} +,{"id":"2489652465","type":"PushEvent","actor":{"id":7030531,"login":"panagiotisegl","gravatar_id":"","url":"https://api.github.com/users/panagiotisegl","avatar_url":"https://avatars.githubusercontent.com/u/7030531?"},"repo":{"id":28665218,"name":"Panagiotisegl-SAMP/panagiotisegl_samp","url":"https://api.github.com/repos/Panagiotisegl-SAMP/panagiotisegl_samp"},"payload":{"push_id":536864620,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"542cb5225361c3987a28a1464203691ece8cedb4","before":"01dbd251c2840f9c5500ad0810673ff5aa7db094","commits":[{"sha":"542cb5225361c3987a28a1464203691ece8cedb4","author":{"email":"f033df57e112a37017211c1e0b6d5daee41a01b5@gmail.com","name":"khalifakk"},"message":"Missing folder","distinct":true,"url":"https://api.github.com/repos/Panagiotisegl-SAMP/panagiotisegl_samp/commits/542cb5225361c3987a28a1464203691ece8cedb4"}]},"public":true,"created_at":"2015-01-01T15:03:02Z","org":{"id":8000088,"login":"Panagiotisegl-SAMP","gravatar_id":"","url":"https://api.github.com/orgs/Panagiotisegl-SAMP","avatar_url":"https://avatars.githubusercontent.com/u/8000088?"}} +,{"id":"2489652469","type":"IssuesEvent","actor":{"id":419884,"login":"cvrebert","gravatar_id":"","url":"https://api.github.com/users/cvrebert","avatar_url":"https://avatars.githubusercontent.com/u/419884?"},"repo":{"id":27853915,"name":"cvrebert/mq4-hover-hover-shim","url":"https://api.github.com/repos/cvrebert/mq4-hover-hover-shim"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/cvrebert/mq4-hover-hover-shim/issues/3","labels_url":"https://api.github.com/repos/cvrebert/mq4-hover-hover-shim/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/cvrebert/mq4-hover-hover-shim/issues/3/comments","events_url":"https://api.github.com/repos/cvrebert/mq4-hover-hover-shim/issues/3/events","html_url":"https://github.com/cvrebert/mq4-hover-hover-shim/issues/3","id":53220583,"number":3,"title":"Document behavior when browser has JS disabled","user":{"login":"cvrebert","id":419884,"avatar_url":"https://avatars.githubusercontent.com/u/419884?v=3","gravatar_id":"","url":"https://api.github.com/users/cvrebert","html_url":"https://github.com/cvrebert","followers_url":"https://api.github.com/users/cvrebert/followers","following_url":"https://api.github.com/users/cvrebert/following{/other_user}","gists_url":"https://api.github.com/users/cvrebert/gists{/gist_id}","starred_url":"https://api.github.com/users/cvrebert/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cvrebert/subscriptions","organizations_url":"https://api.github.com/users/cvrebert/orgs","repos_url":"https://api.github.com/users/cvrebert/repos","events_url":"https://api.github.com/users/cvrebert/events{/privacy}","received_events_url":"https://api.github.com/users/cvrebert/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/cvrebert/mq4-hover-hover-shim/labels/bug","name":"bug","color":"fc2929"}],"state":"closed","locked":false,"assignee":null,"milestone":{"url":"https://api.github.com/repos/cvrebert/mq4-hover-hover-shim/milestones/1","labels_url":"https://api.github.com/repos/cvrebert/mq4-hover-hover-shim/milestones/1/labels","id":919118,"number":1,"title":"v0.0.2","description":"","creator":{"login":"cvrebert","id":419884,"avatar_url":"https://avatars.githubusercontent.com/u/419884?v=3","gravatar_id":"","url":"https://api.github.com/users/cvrebert","html_url":"https://github.com/cvrebert","followers_url":"https://api.github.com/users/cvrebert/followers","following_url":"https://api.github.com/users/cvrebert/following{/other_user}","gists_url":"https://api.github.com/users/cvrebert/gists{/gist_id}","starred_url":"https://api.github.com/users/cvrebert/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cvrebert/subscriptions","organizations_url":"https://api.github.com/users/cvrebert/orgs","repos_url":"https://api.github.com/users/cvrebert/repos","events_url":"https://api.github.com/users/cvrebert/events{/privacy}","received_events_url":"https://api.github.com/users/cvrebert/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":1,"state":"open","created_at":"2015-01-01T14:59:44Z","updated_at":"2015-01-01T15:03:02Z","due_on":null,"closed_at":null},"comments":0,"created_at":"2015-01-01T14:20:43Z","updated_at":"2015-01-01T15:03:02Z","closed_at":"2015-01-01T15:03:02Z","body":""}},"public":true,"created_at":"2015-01-01T15:03:03Z"} +,{"id":"2489652471","type":"PushEvent","actor":{"id":419884,"login":"cvrebert","gravatar_id":"","url":"https://api.github.com/users/cvrebert","avatar_url":"https://avatars.githubusercontent.com/u/419884?"},"repo":{"id":27853915,"name":"cvrebert/mq4-hover-hover-shim","url":"https://api.github.com/repos/cvrebert/mq4-hover-hover-shim"},"payload":{"push_id":536864624,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5b38a7780869c41058753a64a633de0a29869ce5","before":"7d61a77d54857d85b9d4bf4062607642e5645fc9","commits":[{"sha":"5b38a7780869c41058753a64a633de0a29869ce5","author":{"email":"64b2b6d12bfe4baae7dad3d018f8cbf6b0e7a044@rebertia.com","name":"Chris Rebert"},"message":"Document behavior when JS is disabled; fixes #3","distinct":true,"url":"https://api.github.com/repos/cvrebert/mq4-hover-hover-shim/commits/5b38a7780869c41058753a64a633de0a29869ce5"}]},"public":true,"created_at":"2015-01-01T15:03:03Z"} +,{"id":"2489652472","type":"CreateEvent","actor":{"id":4570265,"login":"davideast","gravatar_id":"","url":"https://api.github.com/users/davideast","avatar_url":"https://avatars.githubusercontent.com/u/4570265?"},"repo":{"id":28688653,"name":"davideast/attributor","url":"https://api.github.com/repos/davideast/attributor"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:03Z"} +,{"id":"2489652473","type":"PushEvent","actor":{"id":940859,"login":"Benni-chan","gravatar_id":"","url":"https://api.github.com/users/Benni-chan","avatar_url":"https://avatars.githubusercontent.com/u/940859?"},"repo":{"id":2681795,"name":"Benni-chan/nzbToAniDB","url":"https://api.github.com/repos/Benni-chan/nzbToAniDB"},"payload":{"push_id":536864625,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4c8d4ebaf766126800cdec4c429057b1fce40f76","before":"453196878d29a087aa60d160d3456d31fb6bbdf2","commits":[{"sha":"4c8d4ebaf766126800cdec4c429057b1fce40f76","author":{"email":"fe09bc2ef2737a3258f978e26226dcbac1b3f948@mycontact.eu","name":"Benjamin Waller"},"message":"Update anidb.py\n\nfix from gunmantheh","distinct":true,"url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/commits/4c8d4ebaf766126800cdec4c429057b1fce40f76"}]},"public":true,"created_at":"2015-01-01T15:03:03Z"} +,{"id":"2489652477","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":536864628,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4d0a7f4e9d9dc684b3c742144eb1ff9142553c04","before":"0561a607cbcb0acde87786929531a75d0b55b6f0","commits":[{"sha":"4d0a7f4e9d9dc684b3c742144eb1ff9142553c04","author":{"email":"71bc4425870fbe857f135fc454820feec4c7d880@gmail.com","name":"cdpython"},"message":"rebuilding site 2015년 1월 2일 금요일 00시 02분 59초 KST","distinct":true,"url":"https://api.github.com/repos/cdpython/blog/commits/4d0a7f4e9d9dc684b3c742144eb1ff9142553c04"}]},"public":true,"created_at":"2015-01-01T15:03:03Z"} +,{"id":"2489652482","type":"PushEvent","actor":{"id":1429460,"login":"jvrplmlmn","gravatar_id":"","url":"https://api.github.com/users/jvrplmlmn","avatar_url":"https://avatars.githubusercontent.com/u/1429460?"},"repo":{"id":24825924,"name":"jvrplmlmn/ztreamy-java","url":"https://api.github.com/repos/jvrplmlmn/ztreamy-java"},"payload":{"push_id":536864630,"size":1,"distinct_size":1,"ref":"refs/heads/development","head":"13f75d24d098af4da0a44ff28d15a2e047cfea0d","before":"503629a1f46f84afa847e7eb113c4b04c290234e","commits":[{"sha":"13f75d24d098af4da0a44ff28d15a2e047cfea0d","author":{"email":"391ffe949060087d03010b30b260794ed7904d29@gmail.com","name":"Javier Palomo Almena"},"message":"Add comments about date and time formatting specification","distinct":true,"url":"https://api.github.com/repos/jvrplmlmn/ztreamy-java/commits/13f75d24d098af4da0a44ff28d15a2e047cfea0d"}]},"public":true,"created_at":"2015-01-01T15:03:04Z"} +,{"id":"2489652484","type":"PushEvent","actor":{"id":5042659,"login":"sharkwouter","gravatar_id":"","url":"https://api.github.com/users/sharkwouter","avatar_url":"https://avatars.githubusercontent.com/u/5042659?"},"repo":{"id":26112811,"name":"sharkwouter/steamos-installer","url":"https://api.github.com/repos/sharkwouter/steamos-installer"},"payload":{"push_id":536864632,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1c51fc25e86db255b66631234902f9f09d78c7c0","before":"b75dccca6361d76f5f1f1ff31c1e4fce6b923b7f","commits":[{"sha":"1c51fc25e86db255b66631234902f9f09d78c7c0","author":{"email":"71fa9b44b300f09fc110fda8b8a0ffd2367148d0@live.nl","name":"Wouter Wijsman"},"message":"Fixed typo error message","distinct":true,"url":"https://api.github.com/repos/sharkwouter/steamos-installer/commits/1c51fc25e86db255b66631234902f9f09d78c7c0"}]},"public":true,"created_at":"2015-01-01T15:03:04Z"} +,{"id":"2489652485","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":7114802,"name":"gorkunov/smartpairs.vim","url":"https://api.github.com/repos/gorkunov/smartpairs.vim"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:04Z"} +,{"id":"2489652488","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":26163802,"name":"cloudify-cosmo/cloudify-softlayer-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-softlayer-plugin"},"payload":{"push_id":536864633,"size":1,"distinct_size":1,"ref":"refs/heads/1.2m1-build","head":"667b95b45cb35b77312f72da087d1ae73c99242f","before":"df88f4400eafadbe9f35284b8563cc84742d5bc5","commits":[{"sha":"667b95b45cb35b77312f72da087d1ae73c99242f","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 1.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-softlayer-plugin/commits/667b95b45cb35b77312f72da087d1ae73c99242f"}]},"public":true,"created_at":"2015-01-01T15:03:04Z","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":"2489652490","type":"PushEvent","actor":{"id":10146229,"login":"0sk1","gravatar_id":"","url":"https://api.github.com/users/0sk1","avatar_url":"https://avatars.githubusercontent.com/u/10146229?"},"repo":{"id":28457801,"name":"ProjectManagementSystem/pms","url":"https://api.github.com/repos/ProjectManagementSystem/pms"},"payload":{"push_id":536864635,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8017dd5dc59b27699fc99bafcbdff8d2e81060c4","before":"ada9fb86feea34d9376e0992e116cccdd2a0c1ee","commits":[{"sha":"8017dd5dc59b27699fc99bafcbdff8d2e81060c4","author":{"email":"f25fd61761085f13b311e3392fa8b5a43c4736ba@metu.edu.tr","name":"0sk1"},"message":"Rerevert for organization.py","distinct":true,"url":"https://api.github.com/repos/ProjectManagementSystem/pms/commits/8017dd5dc59b27699fc99bafcbdff8d2e81060c4"}]},"public":true,"created_at":"2015-01-01T15:03:05Z","org":{"id":10146151,"login":"ProjectManagementSystem","gravatar_id":"","url":"https://api.github.com/orgs/ProjectManagementSystem","avatar_url":"https://avatars.githubusercontent.com/u/10146151?"}} +,{"id":"2489652494","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":536864640,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"b342cfaf4ee9c14d6185f4b97022fa6b2d29e830","before":"ec819b9df4fe612bb35bf562f96810bf991f9975","commits":[{"sha":"b342cfaf4ee9c14d6185f4b97022fa6b2d29e830","author":{"email":"df05f55543db3c62cf64f7438018ec37f3605d3c@gmail.com","name":"Eunsoo Lee"},"message":"#19 통신 메시지 설정 삭제","distinct":true,"url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/commits/b342cfaf4ee9c14d6185f4b97022fa6b2d29e830"}]},"public":true,"created_at":"2015-01-01T15:03:05Z"} +,{"id":"2489652496","type":"PullRequestEvent","actor":{"id":125011,"login":"mikemcquaid","gravatar_id":"","url":"https://api.github.com/users/mikemcquaid","avatar_url":"https://avatars.githubusercontent.com/u/125011?"},"repo":{"id":206084,"name":"Homebrew/homebrew","url":"https://api.github.com/repos/Homebrew/homebrew"},"payload":{"action":"closed","number":35417,"pull_request":{"url":"https://api.github.com/repos/Homebrew/homebrew/pulls/35417","id":26743046,"html_url":"https://github.com/Homebrew/homebrew/pull/35417","diff_url":"https://github.com/Homebrew/homebrew/pull/35417.diff","patch_url":"https://github.com/Homebrew/homebrew/pull/35417.patch","issue_url":"https://api.github.com/repos/Homebrew/homebrew/issues/35417","number":35417,"state":"closed","locked":false,"title":"minimal MP3 test file added","user":{"login":"bfontaine","id":1334295,"avatar_url":"https://avatars.githubusercontent.com/u/1334295?v=3","gravatar_id":"","url":"https://api.github.com/users/bfontaine","html_url":"https://github.com/bfontaine","followers_url":"https://api.github.com/users/bfontaine/followers","following_url":"https://api.github.com/users/bfontaine/following{/other_user}","gists_url":"https://api.github.com/users/bfontaine/gists{/gist_id}","starred_url":"https://api.github.com/users/bfontaine/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bfontaine/subscriptions","organizations_url":"https://api.github.com/users/bfontaine/orgs","repos_url":"https://api.github.com/users/bfontaine/repos","events_url":"https://api.github.com/users/bfontaine/events{/privacy}","received_events_url":"https://api.github.com/users/bfontaine/received_events","type":"User","site_admin":false},"body":"I’m trying to add tests to various MP3-related formulae and I need a place to store a sample one. Is it a good place?\r\n\r\nThis is the sound of [a button click](http://www.freesound.org/people/pegtel/sounds/212003/), the shortest I was able to find on Freesound (CC0, 0.2s).","created_at":"2015-01-01T13:17:42Z","updated_at":"2015-01-01T15:03:04Z","closed_at":"2015-01-01T15:03:04Z","merged_at":null,"merge_commit_sha":"dc4b43e710461be4fa8b3544a60170f3b6567637","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/Homebrew/homebrew/pulls/35417/commits","review_comments_url":"https://api.github.com/repos/Homebrew/homebrew/pulls/35417/comments","review_comment_url":"https://api.github.com/repos/Homebrew/homebrew/pulls/comments/{number}","comments_url":"https://api.github.com/repos/Homebrew/homebrew/issues/35417/comments","statuses_url":"https://api.github.com/repos/Homebrew/homebrew/statuses/770cd74df1e188839945f529cca27f3c0f6395df","head":{"label":"bfontaine:mp3-file","ref":"mp3-file","sha":"770cd74df1e188839945f529cca27f3c0f6395df","user":{"login":"bfontaine","id":1334295,"avatar_url":"https://avatars.githubusercontent.com/u/1334295?v=3","gravatar_id":"","url":"https://api.github.com/users/bfontaine","html_url":"https://github.com/bfontaine","followers_url":"https://api.github.com/users/bfontaine/followers","following_url":"https://api.github.com/users/bfontaine/following{/other_user}","gists_url":"https://api.github.com/users/bfontaine/gists{/gist_id}","starred_url":"https://api.github.com/users/bfontaine/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bfontaine/subscriptions","organizations_url":"https://api.github.com/users/bfontaine/orgs","repos_url":"https://api.github.com/users/bfontaine/repos","events_url":"https://api.github.com/users/bfontaine/events{/privacy}","received_events_url":"https://api.github.com/users/bfontaine/received_events","type":"User","site_admin":false},"repo":{"id":26602131,"name":"homebrew","full_name":"bfontaine/homebrew","owner":{"login":"bfontaine","id":1334295,"avatar_url":"https://avatars.githubusercontent.com/u/1334295?v=3","gravatar_id":"","url":"https://api.github.com/users/bfontaine","html_url":"https://github.com/bfontaine","followers_url":"https://api.github.com/users/bfontaine/followers","following_url":"https://api.github.com/users/bfontaine/following{/other_user}","gists_url":"https://api.github.com/users/bfontaine/gists{/gist_id}","starred_url":"https://api.github.com/users/bfontaine/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bfontaine/subscriptions","organizations_url":"https://api.github.com/users/bfontaine/orgs","repos_url":"https://api.github.com/users/bfontaine/repos","events_url":"https://api.github.com/users/bfontaine/events{/privacy}","received_events_url":"https://api.github.com/users/bfontaine/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/bfontaine/homebrew","description":"The missing package manager for OS X.","fork":true,"url":"https://api.github.com/repos/bfontaine/homebrew","forks_url":"https://api.github.com/repos/bfontaine/homebrew/forks","keys_url":"https://api.github.com/repos/bfontaine/homebrew/keys{/key_id}","collaborators_url":"https://api.github.com/repos/bfontaine/homebrew/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/bfontaine/homebrew/teams","hooks_url":"https://api.github.com/repos/bfontaine/homebrew/hooks","issue_events_url":"https://api.github.com/repos/bfontaine/homebrew/issues/events{/number}","events_url":"https://api.github.com/repos/bfontaine/homebrew/events","assignees_url":"https://api.github.com/repos/bfontaine/homebrew/assignees{/user}","branches_url":"https://api.github.com/repos/bfontaine/homebrew/branches{/branch}","tags_url":"https://api.github.com/repos/bfontaine/homebrew/tags","blobs_url":"https://api.github.com/repos/bfontaine/homebrew/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/bfontaine/homebrew/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/bfontaine/homebrew/git/refs{/sha}","trees_url":"https://api.github.com/repos/bfontaine/homebrew/git/trees{/sha}","statuses_url":"https://api.github.com/repos/bfontaine/homebrew/statuses/{sha}","languages_url":"https://api.github.com/repos/bfontaine/homebrew/languages","stargazers_url":"https://api.github.com/repos/bfontaine/homebrew/stargazers","contributors_url":"https://api.github.com/repos/bfontaine/homebrew/contributors","subscribers_url":"https://api.github.com/repos/bfontaine/homebrew/subscribers","subscription_url":"https://api.github.com/repos/bfontaine/homebrew/subscription","commits_url":"https://api.github.com/repos/bfontaine/homebrew/commits{/sha}","git_commits_url":"https://api.github.com/repos/bfontaine/homebrew/git/commits{/sha}","comments_url":"https://api.github.com/repos/bfontaine/homebrew/comments{/number}","issue_comment_url":"https://api.github.com/repos/bfontaine/homebrew/issues/comments/{number}","contents_url":"https://api.github.com/repos/bfontaine/homebrew/contents/{+path}","compare_url":"https://api.github.com/repos/bfontaine/homebrew/compare/{base}...{head}","merges_url":"https://api.github.com/repos/bfontaine/homebrew/merges","archive_url":"https://api.github.com/repos/bfontaine/homebrew/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/bfontaine/homebrew/downloads","issues_url":"https://api.github.com/repos/bfontaine/homebrew/issues{/number}","pulls_url":"https://api.github.com/repos/bfontaine/homebrew/pulls{/number}","milestones_url":"https://api.github.com/repos/bfontaine/homebrew/milestones{/number}","notifications_url":"https://api.github.com/repos/bfontaine/homebrew/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/bfontaine/homebrew/labels{/name}","releases_url":"https://api.github.com/repos/bfontaine/homebrew/releases{/id}","created_at":"2014-11-13T18:44:55Z","updated_at":"2015-01-01T14:55:06Z","pushed_at":"2015-01-01T14:56:49Z","git_url":"git://github.com/bfontaine/homebrew.git","ssh_url":"git@github.com:bfontaine/homebrew.git","clone_url":"https://github.com/bfontaine/homebrew.git","svn_url":"https://github.com/bfontaine/homebrew","homepage":"http://brew.sh","size":52038,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_downloads":false,"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":"Homebrew:master","ref":"master","sha":"60cd5229da13b339e5cbf01222bd589ce8bce68c","user":{"login":"Homebrew","id":1503512,"avatar_url":"https://avatars.githubusercontent.com/u/1503512?v=3","gravatar_id":"","url":"https://api.github.com/users/Homebrew","html_url":"https://github.com/Homebrew","followers_url":"https://api.github.com/users/Homebrew/followers","following_url":"https://api.github.com/users/Homebrew/following{/other_user}","gists_url":"https://api.github.com/users/Homebrew/gists{/gist_id}","starred_url":"https://api.github.com/users/Homebrew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Homebrew/subscriptions","organizations_url":"https://api.github.com/users/Homebrew/orgs","repos_url":"https://api.github.com/users/Homebrew/repos","events_url":"https://api.github.com/users/Homebrew/events{/privacy}","received_events_url":"https://api.github.com/users/Homebrew/received_events","type":"Organization","site_admin":false},"repo":{"id":206084,"name":"homebrew","full_name":"Homebrew/homebrew","owner":{"login":"Homebrew","id":1503512,"avatar_url":"https://avatars.githubusercontent.com/u/1503512?v=3","gravatar_id":"","url":"https://api.github.com/users/Homebrew","html_url":"https://github.com/Homebrew","followers_url":"https://api.github.com/users/Homebrew/followers","following_url":"https://api.github.com/users/Homebrew/following{/other_user}","gists_url":"https://api.github.com/users/Homebrew/gists{/gist_id}","starred_url":"https://api.github.com/users/Homebrew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Homebrew/subscriptions","organizations_url":"https://api.github.com/users/Homebrew/orgs","repos_url":"https://api.github.com/users/Homebrew/repos","events_url":"https://api.github.com/users/Homebrew/events{/privacy}","received_events_url":"https://api.github.com/users/Homebrew/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/Homebrew/homebrew","description":"The missing package manager for OS X.","fork":false,"url":"https://api.github.com/repos/Homebrew/homebrew","forks_url":"https://api.github.com/repos/Homebrew/homebrew/forks","keys_url":"https://api.github.com/repos/Homebrew/homebrew/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Homebrew/homebrew/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Homebrew/homebrew/teams","hooks_url":"https://api.github.com/repos/Homebrew/homebrew/hooks","issue_events_url":"https://api.github.com/repos/Homebrew/homebrew/issues/events{/number}","events_url":"https://api.github.com/repos/Homebrew/homebrew/events","assignees_url":"https://api.github.com/repos/Homebrew/homebrew/assignees{/user}","branches_url":"https://api.github.com/repos/Homebrew/homebrew/branches{/branch}","tags_url":"https://api.github.com/repos/Homebrew/homebrew/tags","blobs_url":"https://api.github.com/repos/Homebrew/homebrew/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Homebrew/homebrew/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Homebrew/homebrew/git/refs{/sha}","trees_url":"https://api.github.com/repos/Homebrew/homebrew/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Homebrew/homebrew/statuses/{sha}","languages_url":"https://api.github.com/repos/Homebrew/homebrew/languages","stargazers_url":"https://api.github.com/repos/Homebrew/homebrew/stargazers","contributors_url":"https://api.github.com/repos/Homebrew/homebrew/contributors","subscribers_url":"https://api.github.com/repos/Homebrew/homebrew/subscribers","subscription_url":"https://api.github.com/repos/Homebrew/homebrew/subscription","commits_url":"https://api.github.com/repos/Homebrew/homebrew/commits{/sha}","git_commits_url":"https://api.github.com/repos/Homebrew/homebrew/git/commits{/sha}","comments_url":"https://api.github.com/repos/Homebrew/homebrew/comments{/number}","issue_comment_url":"https://api.github.com/repos/Homebrew/homebrew/issues/comments/{number}","contents_url":"https://api.github.com/repos/Homebrew/homebrew/contents/{+path}","compare_url":"https://api.github.com/repos/Homebrew/homebrew/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Homebrew/homebrew/merges","archive_url":"https://api.github.com/repos/Homebrew/homebrew/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Homebrew/homebrew/downloads","issues_url":"https://api.github.com/repos/Homebrew/homebrew/issues{/number}","pulls_url":"https://api.github.com/repos/Homebrew/homebrew/pulls{/number}","milestones_url":"https://api.github.com/repos/Homebrew/homebrew/milestones{/number}","notifications_url":"https://api.github.com/repos/Homebrew/homebrew/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Homebrew/homebrew/labels{/name}","releases_url":"https://api.github.com/repos/Homebrew/homebrew/releases{/id}","created_at":"2009-05-20T19:38:37Z","updated_at":"2015-01-01T15:02:16Z","pushed_at":"2015-01-01T15:02:16Z","git_url":"git://github.com/Homebrew/homebrew.git","ssh_url":"git@github.com:Homebrew/homebrew.git","clone_url":"https://github.com/Homebrew/homebrew.git","svn_url":"https://github.com/Homebrew/homebrew","homepage":"http://brew.sh","size":1145817,"stargazers_count":20802,"watchers_count":20802,"language":"Ruby","has_issues":true,"has_downloads":false,"has_wiki":true,"has_pages":true,"forks_count":10378,"mirror_url":null,"open_issues_count":224,"forks":10378,"open_issues":224,"watchers":20802,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Homebrew/homebrew/pulls/35417"},"html":{"href":"https://github.com/Homebrew/homebrew/pull/35417"},"issue":{"href":"https://api.github.com/repos/Homebrew/homebrew/issues/35417"},"comments":{"href":"https://api.github.com/repos/Homebrew/homebrew/issues/35417/comments"},"review_comments":{"href":"https://api.github.com/repos/Homebrew/homebrew/pulls/35417/comments"},"review_comment":{"href":"https://api.github.com/repos/Homebrew/homebrew/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/Homebrew/homebrew/pulls/35417/commits"},"statuses":{"href":"https://api.github.com/repos/Homebrew/homebrew/statuses/770cd74df1e188839945f529cca27f3c0f6395df"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":3,"review_comments":0,"commits":1,"additions":0,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:03:05Z","org":{"id":1503512,"login":"Homebrew","gravatar_id":"","url":"https://api.github.com/orgs/Homebrew","avatar_url":"https://avatars.githubusercontent.com/u/1503512?"}} +,{"id":"2489652497","type":"PushEvent","actor":{"id":125011,"login":"mikemcquaid","gravatar_id":"","url":"https://api.github.com/users/mikemcquaid","avatar_url":"https://avatars.githubusercontent.com/u/125011?"},"repo":{"id":206084,"name":"Homebrew/homebrew","url":"https://api.github.com/repos/Homebrew/homebrew"},"payload":{"push_id":536864637,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5b6d2dca03bef65f3ae7d639e9096b9e7f87ee4e","before":"60cd5229da13b339e5cbf01222bd589ce8bce68c","commits":[{"sha":"5b6d2dca03bef65f3ae7d639e9096b9e7f87ee4e","author":{"email":"bfee279af59f3e3f71f7ce1fa037ea7b90f93cbf@yahoo.fr","name":"Baptiste Fontaine"},"message":"minimal MP3 test file added\n\nCloses #35417.\n\nSigned-off-by: Mike McQuaid ","distinct":true,"url":"https://api.github.com/repos/Homebrew/homebrew/commits/5b6d2dca03bef65f3ae7d639e9096b9e7f87ee4e"}]},"public":true,"created_at":"2015-01-01T15:03:05Z","org":{"id":1503512,"login":"Homebrew","gravatar_id":"","url":"https://api.github.com/orgs/Homebrew","avatar_url":"https://avatars.githubusercontent.com/u/1503512?"}} +,{"id":"2489652501","type":"WatchEvent","actor":{"id":2606236,"login":"Sympho","gravatar_id":"","url":"https://api.github.com/users/Sympho","avatar_url":"https://avatars.githubusercontent.com/u/2606236?"},"repo":{"id":28257573,"name":"flarum/core","url":"https://api.github.com/repos/flarum/core"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:06Z","org":{"id":5549034,"login":"flarum","gravatar_id":"","url":"https://api.github.com/orgs/flarum","avatar_url":"https://avatars.githubusercontent.com/u/5549034?"}} +,{"id":"2489652505","type":"PushEvent","actor":{"id":610524,"login":"PhilippePerret","gravatar_id":"","url":"https://api.github.com/users/PhilippePerret","avatar_url":"https://avatars.githubusercontent.com/u/610524?"},"repo":{"id":26335465,"name":"PhilippePerret/Icare_AD","url":"https://api.github.com/repos/PhilippePerret/Icare_AD"},"payload":{"push_id":536864642,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"1f213711b67ebf5854877dd0bbdb96eaeac99557","before":"77efa79c82e1d00d0d1e77d8122a1d7f6ffd0e23","commits":[{"sha":"76dcba346f12fa4630a665e9535094999d2138b0","author":{"email":"a79b7a0c23e6516f1e99986aa9f312d34b87b156@yahoo.fr","name":"Philippe Perret"},"message":"Minor change","distinct":true,"url":"https://api.github.com/repos/PhilippePerret/Icare_AD/commits/76dcba346f12fa4630a665e9535094999d2138b0"},{"sha":"3565ef08aa7854a379fb4d9f68d765d033731781","author":{"email":"a79b7a0c23e6516f1e99986aa9f312d34b87b156@yahoo.fr","name":"Philippe Perret"},"message":"Support pour documents","distinct":true,"url":"https://api.github.com/repos/PhilippePerret/Icare_AD/commits/3565ef08aa7854a379fb4d9f68d765d033731781"},{"sha":"1f213711b67ebf5854877dd0bbdb96eaeac99557","author":{"email":"a79b7a0c23e6516f1e99986aa9f312d34b87b156@yahoo.fr","name":"Philippe Perret"},"message":"Test de mauvais documents à l'inscription","distinct":true,"url":"https://api.github.com/repos/PhilippePerret/Icare_AD/commits/1f213711b67ebf5854877dd0bbdb96eaeac99557"}]},"public":true,"created_at":"2015-01-01T15:03:06Z"} +,{"id":"2489652506","type":"PushEvent","actor":{"id":760627,"login":"tsu-nera","gravatar_id":"","url":"https://api.github.com/users/tsu-nera","avatar_url":"https://avatars.githubusercontent.com/u/760627?"},"repo":{"id":10012941,"name":"tsu-nera/dotfiles","url":"https://api.github.com/repos/tsu-nera/dotfiles"},"payload":{"push_id":536864643,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b38f86da2b3bb014b47d03094d15a129a3275e5f","before":"c036667237fb7410e806a91db4e53eca63eee0a0","commits":[{"sha":"b38f86da2b3bb014b47d03094d15a129a3275e5f","author":{"email":"9976a0541de5240960548e0676fed9769cd87143@gmail.com","name":"tsu-nera"},"message":"ddskkを導入した。","distinct":true,"url":"https://api.github.com/repos/tsu-nera/dotfiles/commits/b38f86da2b3bb014b47d03094d15a129a3275e5f"}]},"public":true,"created_at":"2015-01-01T15:03:06Z"} +,{"id":"2489652507","type":"PushEvent","actor":{"id":8132102,"login":"the-cdnjs-curator","gravatar_id":"","url":"https://api.github.com/users/the-cdnjs-curator","avatar_url":"https://avatars.githubusercontent.com/u/8132102?"},"repo":{"id":18663590,"name":"cdnjs/new-website","url":"https://api.github.com/repos/cdnjs/new-website"},"payload":{"push_id":536864644,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"97653fed23af84b6f2e0d0a7f706378385cacc4a","before":"e9365b957f0a4f02ac3e2205d859ca8c247104c8","commits":[{"sha":"97653fed23af84b6f2e0d0a7f706378385cacc4a","author":{"email":"a81c8330dae20b275f250c899f16a97692457035@gmail.com","name":"the-cdnjs-curator"},"message":"added ner files","distinct":true,"url":"https://api.github.com/repos/cdnjs/new-website/commits/97653fed23af84b6f2e0d0a7f706378385cacc4a"}]},"public":true,"created_at":"2015-01-01T15:03:07Z","org":{"id":637362,"login":"cdnjs","gravatar_id":"","url":"https://api.github.com/orgs/cdnjs","avatar_url":"https://avatars.githubusercontent.com/u/637362?"}} +,{"id":"2489652511","type":"PushEvent","actor":{"id":5335890,"login":"shsong97","gravatar_id":"","url":"https://api.github.com/users/shsong97","avatar_url":"https://avatars.githubusercontent.com/u/5335890?"},"repo":{"id":16941010,"name":"shsong97/django_blog","url":"https://api.github.com/repos/shsong97/django_blog"},"payload":{"push_id":536864646,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a65caff9c6a0a06b20b47b08b01cba6a865f7d0c","before":"f1410afd46137564607229aed5c79ddd7163bb3d","commits":[{"sha":"a65caff9c6a0a06b20b47b08b01cba6a865f7d0c","author":{"email":"2dc53b32d1b1c451c9a9e146ecabef5e65348443@gmail.com","name":"shsong97"},"message":"login related changed","distinct":true,"url":"https://api.github.com/repos/shsong97/django_blog/commits/a65caff9c6a0a06b20b47b08b01cba6a865f7d0c"}]},"public":true,"created_at":"2015-01-01T15:03:07Z"} +,{"id":"2489652517","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":18326701,"name":"cloudify-cosmo/cloudify-cli","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-cli"},"payload":{"push_id":536864649,"size":1,"distinct_size":1,"ref":"refs/heads/3.2m1-build","head":"98320e1fc29f0a86ea448c66952331ac0921c5da","before":"5ca290238f9c44b676d93ad37f225640e69cdbc7","commits":[{"sha":"98320e1fc29f0a86ea448c66952331ac0921c5da","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 3.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-cli/commits/98320e1fc29f0a86ea448c66952331ac0921c5da"}]},"public":true,"created_at":"2015-01-01T15:03:07Z","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":"2489652523","type":"PushEvent","actor":{"id":8964128,"login":"sggd","gravatar_id":"","url":"https://api.github.com/users/sggd","avatar_url":"https://avatars.githubusercontent.com/u/8964128?"},"repo":{"id":28598740,"name":"sggd/sggd.github.io","url":"https://api.github.com/repos/sggd/sggd.github.io"},"payload":{"push_id":536864652,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0efa17838e893c7e21ead79171eb532ad38bc7dc","before":"d6293e4dd460442a765a96b3f352e1a5e71134e9","commits":[{"sha":"0efa17838e893c7e21ead79171eb532ad38bc7dc","author":{"email":"068bd037f27383a256adab786bbaf8621a72eb66@whu.edu.cn","name":"LuoHua"},"message":"Delete CNAME","distinct":true,"url":"https://api.github.com/repos/sggd/sggd.github.io/commits/0efa17838e893c7e21ead79171eb532ad38bc7dc"}]},"public":true,"created_at":"2015-01-01T15:03:08Z"} +,{"id":"2489652527","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":536864655,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3998b2fd2dd6b8d98da728f6fab791d226b7571d","before":"4883f8c386f863e579adec660e3f038574f4bb9e","commits":[{"sha":"3998b2fd2dd6b8d98da728f6fab791d226b7571d","author":{"email":"b510bb486ebd5c8c5aff3ba43ada62bee3eff38e@gmail.com","name":"Hassane Moustapha"},"message":"added node modules directory to gitignore","distinct":true,"url":"https://api.github.com/repos/hkairi/agendakar-widget/commits/3998b2fd2dd6b8d98da728f6fab791d226b7571d"}]},"public":true,"created_at":"2015-01-01T15:03:08Z"} +,{"id":"2489652528","type":"PushEvent","actor":{"id":8266928,"login":"SilentStar","gravatar_id":"","url":"https://api.github.com/users/SilentStar","avatar_url":"https://avatars.githubusercontent.com/u/8266928?"},"repo":{"id":22254615,"name":"SilentStar/BoLScripts","url":"https://api.github.com/repos/SilentStar/BoLScripts"},"payload":{"push_id":536864656,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9a726b747b11363141bbb4def8232f0b74d50c21","before":"2016c1e3d7b2ceb56cfddb6a8abd40a3d530d2c5","commits":[{"sha":"9a726b747b11363141bbb4def8232f0b74d50c21","author":{"email":"76a3fa08110b1c2a7cb3afb60a43077145ad72f0@gmail.com","name":"SilentStar"},"message":"Released Jinx","distinct":true,"url":"https://api.github.com/repos/SilentStar/BoLScripts/commits/9a726b747b11363141bbb4def8232f0b74d50c21"}]},"public":true,"created_at":"2015-01-01T15:03:08Z"} +,{"id":"2489652530","type":"PushEvent","actor":{"id":720376,"login":"picodotdev","gravatar_id":"","url":"https://api.github.com/users/picodotdev","avatar_url":"https://avatars.githubusercontent.com/u/720376?"},"repo":{"id":18271108,"name":"picodotdev/blog-stack","url":"https://api.github.com/repos/picodotdev/blog-stack"},"payload":{"push_id":536864658,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"3e16fa01d4e4d1104dfa186475d4f971b2664c66","before":"38693c65c2fd6ba08604c07936a5dc3bfb5720bd","commits":[{"sha":"3e16fa01d4e4d1104dfa186475d4f971b2664c66","author":{"email":"82119ca92ec3f303155279e5d516019ee5c15a97@gmail.com","name":"pico.dev"},"message":"Site updated Thursday, 01-01-2015 10:03","distinct":true,"url":"https://api.github.com/repos/picodotdev/blog-stack/commits/3e16fa01d4e4d1104dfa186475d4f971b2664c66"}]},"public":true,"created_at":"2015-01-01T15:03:09Z"} +,{"id":"2489652531","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":536864659,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"331393a9609f316f76ae19487b65418218ade081","before":"0fca01b12e6a8a1c537842d4831906d1eb4a277e","commits":[{"sha":"331393a9609f316f76ae19487b65418218ade081","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/331393a9609f316f76ae19487b65418218ade081"}]},"public":true,"created_at":"2015-01-01T15:03:09Z"} +,{"id":"2489652533","type":"IssueCommentEvent","actor":{"id":3883059,"login":"jasvir99","gravatar_id":"","url":"https://api.github.com/users/jasvir99","avatar_url":"https://avatars.githubusercontent.com/u/3883059?"},"repo":{"id":18510170,"name":"GreatDevelopers/LibreHatti","url":"https://api.github.com/repos/GreatDevelopers/LibreHatti"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/GreatDevelopers/LibreHatti/issues/360","labels_url":"https://api.github.com/repos/GreatDevelopers/LibreHatti/issues/360/labels{/name}","comments_url":"https://api.github.com/repos/GreatDevelopers/LibreHatti/issues/360/comments","events_url":"https://api.github.com/repos/GreatDevelopers/LibreHatti/issues/360/events","html_url":"https://github.com/GreatDevelopers/LibreHatti/issues/360","id":53214955,"number":360,"title":"Errors when no distribution found.","user":{"login":"jasvir99","id":3883059,"avatar_url":"https://avatars.githubusercontent.com/u/3883059?v=3","gravatar_id":"","url":"https://api.github.com/users/jasvir99","html_url":"https://github.com/jasvir99","followers_url":"https://api.github.com/users/jasvir99/followers","following_url":"https://api.github.com/users/jasvir99/following{/other_user}","gists_url":"https://api.github.com/users/jasvir99/gists{/gist_id}","starred_url":"https://api.github.com/users/jasvir99/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jasvir99/subscriptions","organizations_url":"https://api.github.com/users/jasvir99/orgs","repos_url":"https://api.github.com/users/jasvir99/repos","events_url":"https://api.github.com/users/jasvir99/events{/privacy}","received_events_url":"https://api.github.com/users/jasvir99/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":{"login":"jasvir99","id":3883059,"avatar_url":"https://avatars.githubusercontent.com/u/3883059?v=3","gravatar_id":"","url":"https://api.github.com/users/jasvir99","html_url":"https://github.com/jasvir99","followers_url":"https://api.github.com/users/jasvir99/followers","following_url":"https://api.github.com/users/jasvir99/following{/other_user}","gists_url":"https://api.github.com/users/jasvir99/gists{/gist_id}","starred_url":"https://api.github.com/users/jasvir99/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jasvir99/subscriptions","organizations_url":"https://api.github.com/users/jasvir99/orgs","repos_url":"https://api.github.com/users/jasvir99/repos","events_url":"https://api.github.com/users/jasvir99/events{/privacy}","received_events_url":"https://api.github.com/users/jasvir99/received_events","type":"User","site_admin":false},"milestone":null,"comments":1,"created_at":"2015-01-01T07:28:55Z","updated_at":"2015-01-01T15:03:09Z","closed_at":"2015-01-01T15:03:09Z","body":"When we select category which have no distribution added, it should generate error on the spot. Not after clicking save button."},"comment":{"url":"https://api.github.com/repos/GreatDevelopers/LibreHatti/issues/comments/68488545","html_url":"https://github.com/GreatDevelopers/LibreHatti/issues/360#issuecomment-68488545","issue_url":"https://api.github.com/repos/GreatDevelopers/LibreHatti/issues/360","id":68488545,"user":{"login":"jasvir99","id":3883059,"avatar_url":"https://avatars.githubusercontent.com/u/3883059?v=3","gravatar_id":"","url":"https://api.github.com/users/jasvir99","html_url":"https://github.com/jasvir99","followers_url":"https://api.github.com/users/jasvir99/followers","following_url":"https://api.github.com/users/jasvir99/following{/other_user}","gists_url":"https://api.github.com/users/jasvir99/gists{/gist_id}","starred_url":"https://api.github.com/users/jasvir99/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jasvir99/subscriptions","organizations_url":"https://api.github.com/users/jasvir99/orgs","repos_url":"https://api.github.com/users/jasvir99/repos","events_url":"https://api.github.com/users/jasvir99/events{/privacy}","received_events_url":"https://api.github.com/users/jasvir99/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:09Z","updated_at":"2015-01-01T15:03:09Z","body":"Fixed: https://github.com/GreatDevelopers/LibreHatti/commit/5e2388208728811ca859ef98f03bf3e0bff7ec1f"}},"public":true,"created_at":"2015-01-01T15:03:09Z","org":{"id":890441,"login":"GreatDevelopers","gravatar_id":"","url":"https://api.github.com/orgs/GreatDevelopers","avatar_url":"https://avatars.githubusercontent.com/u/890441?"}} +,{"id":"2489652534","type":"IssuesEvent","actor":{"id":3883059,"login":"jasvir99","gravatar_id":"","url":"https://api.github.com/users/jasvir99","avatar_url":"https://avatars.githubusercontent.com/u/3883059?"},"repo":{"id":18510170,"name":"GreatDevelopers/LibreHatti","url":"https://api.github.com/repos/GreatDevelopers/LibreHatti"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/GreatDevelopers/LibreHatti/issues/360","labels_url":"https://api.github.com/repos/GreatDevelopers/LibreHatti/issues/360/labels{/name}","comments_url":"https://api.github.com/repos/GreatDevelopers/LibreHatti/issues/360/comments","events_url":"https://api.github.com/repos/GreatDevelopers/LibreHatti/issues/360/events","html_url":"https://github.com/GreatDevelopers/LibreHatti/issues/360","id":53214955,"number":360,"title":"Errors when no distribution found.","user":{"login":"jasvir99","id":3883059,"avatar_url":"https://avatars.githubusercontent.com/u/3883059?v=3","gravatar_id":"","url":"https://api.github.com/users/jasvir99","html_url":"https://github.com/jasvir99","followers_url":"https://api.github.com/users/jasvir99/followers","following_url":"https://api.github.com/users/jasvir99/following{/other_user}","gists_url":"https://api.github.com/users/jasvir99/gists{/gist_id}","starred_url":"https://api.github.com/users/jasvir99/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jasvir99/subscriptions","organizations_url":"https://api.github.com/users/jasvir99/orgs","repos_url":"https://api.github.com/users/jasvir99/repos","events_url":"https://api.github.com/users/jasvir99/events{/privacy}","received_events_url":"https://api.github.com/users/jasvir99/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":{"login":"jasvir99","id":3883059,"avatar_url":"https://avatars.githubusercontent.com/u/3883059?v=3","gravatar_id":"","url":"https://api.github.com/users/jasvir99","html_url":"https://github.com/jasvir99","followers_url":"https://api.github.com/users/jasvir99/followers","following_url":"https://api.github.com/users/jasvir99/following{/other_user}","gists_url":"https://api.github.com/users/jasvir99/gists{/gist_id}","starred_url":"https://api.github.com/users/jasvir99/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jasvir99/subscriptions","organizations_url":"https://api.github.com/users/jasvir99/orgs","repos_url":"https://api.github.com/users/jasvir99/repos","events_url":"https://api.github.com/users/jasvir99/events{/privacy}","received_events_url":"https://api.github.com/users/jasvir99/received_events","type":"User","site_admin":false},"milestone":null,"comments":1,"created_at":"2015-01-01T07:28:55Z","updated_at":"2015-01-01T15:03:09Z","closed_at":"2015-01-01T15:03:09Z","body":"When we select category which have no distribution added, it should generate error on the spot. Not after clicking save button."}},"public":true,"created_at":"2015-01-01T15:03:09Z","org":{"id":890441,"login":"GreatDevelopers","gravatar_id":"","url":"https://api.github.com/orgs/GreatDevelopers","avatar_url":"https://avatars.githubusercontent.com/u/890441?"}} +,{"id":"2489652538","type":"PushEvent","actor":{"id":196942,"login":"icambridge","gravatar_id":"","url":"https://api.github.com/users/icambridge","avatar_url":"https://avatars.githubusercontent.com/u/196942?"},"repo":{"id":28457795,"name":"icambridge/go-playground","url":"https://api.github.com/repos/icambridge/go-playground"},"payload":{"push_id":536864664,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ca6d60bfdcd711f0ea913b4ea37f979890c4ccd9","before":"2fb55047ee4c4421527a77b91ab9eea525a1c815","commits":[{"sha":"ca6d60bfdcd711f0ea913b4ea37f979890c4ccd9","author":{"email":"dd5460de3c36eb19735c4e0906c29fd0091f20ad@inviqa.com","name":"Iain Cambridge"},"message":"Add return on specific value","distinct":true,"url":"https://api.github.com/repos/icambridge/go-playground/commits/ca6d60bfdcd711f0ea913b4ea37f979890c4ccd9"}]},"public":true,"created_at":"2015-01-01T15:03:10Z"} +,{"id":"2489652543","type":"WatchEvent","actor":{"id":6329505,"login":"xu6148152","gravatar_id":"","url":"https://api.github.com/users/xu6148152","avatar_url":"https://avatars.githubusercontent.com/u/6329505?"},"repo":{"id":5249971,"name":"pents90/svg-android","url":"https://api.github.com/repos/pents90/svg-android"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:12Z"} +,{"id":"2489652546","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":"master","ref_type":"branch","master_branch":"master","description":"记录每日练习代码","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:12Z"} +,{"id":"2489652547","type":"CreateEvent","actor":{"id":3285510,"login":"yxcvincent","gravatar_id":"","url":"https://api.github.com/users/yxcvincent","avatar_url":"https://avatars.githubusercontent.com/u/3285510?"},"repo":{"id":28688654,"name":"yxcvincent/MyProject","url":"https://api.github.com/repos/yxcvincent/MyProject"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:12Z"} +,{"id":"2489652549","type":"WatchEvent","actor":{"id":10249189,"login":"PHPerWu","gravatar_id":"","url":"https://api.github.com/users/PHPerWu","avatar_url":"https://avatars.githubusercontent.com/u/10249189?"},"repo":{"id":28688434,"name":"PHPerWu/Student","url":"https://api.github.com/repos/PHPerWu/Student"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:12Z"} +,{"id":"2489652551","type":"PushEvent","actor":{"id":946541,"login":"open768","gravatar_id":"","url":"https://api.github.com/users/open768","avatar_url":"https://avatars.githubusercontent.com/u/946541?"},"repo":{"id":16438996,"name":"open768/curiosity_browser","url":"https://api.github.com/repos/open768/curiosity_browser"},"payload":{"push_id":536864667,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d71709fcb167fa2e40ad49564c04ddaf52d95d58","before":"e03e5b7b3b9f1ecf18e1d84efc53bdc9866231f4","commits":[{"sha":"d71709fcb167fa2e40ad49564c04ddaf52d95d58","author":{"email":"05ce99054a0976bf8f32b65bea162a51e3d24961@yahoo.co.uk","name":"open768"},"message":"baseline commit\n\nA lot of changes over the last couple of months","distinct":true,"url":"https://api.github.com/repos/open768/curiosity_browser/commits/d71709fcb167fa2e40ad49564c04ddaf52d95d58"}]},"public":true,"created_at":"2015-01-01T15:03:12Z"} +,{"id":"2489652555","type":"PushEvent","actor":{"id":6436073,"login":"523860169","gravatar_id":"","url":"https://api.github.com/users/523860169","avatar_url":"https://avatars.githubusercontent.com/u/6436073?"},"repo":{"id":27432101,"name":"523860169/sh","url":"https://api.github.com/repos/523860169/sh"},"payload":{"push_id":536864670,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"665827d02387506ca5177d313b611a72fe6f6951","before":"7621d7c0b9ab85c7bf0720defaade43bcc0941fb","commits":[{"sha":"665827d02387506ca5177d313b611a72fe6f6951","author":{"email":"10f258ee912bdd79d094034bf50cfe8c68b73bc7@gmail.com","name":"523860169"},"message":"update","distinct":true,"url":"https://api.github.com/repos/523860169/sh/commits/665827d02387506ca5177d313b611a72fe6f6951"}]},"public":true,"created_at":"2015-01-01T15:03:12Z"} +,{"id":"2489652556","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":536864671,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"450262d654b6c98b48098a60541c4fdc9318afe4","before":"3dd0947cb4c87b47261123124f174c8c7bab232f","commits":[{"sha":"450262d654b6c98b48098a60541c4fdc9318afe4","author":{"email":"71bc4425870fbe857f135fc454820feec4c7d880@gmail.com","name":"cdpython"},"message":"rebuilding site 2015년 1월 2일 금요일 00시 02분 59초 KST","distinct":true,"url":"https://api.github.com/repos/cdpython/cdpython.github.io/commits/450262d654b6c98b48098a60541c4fdc9318afe4"}]},"public":true,"created_at":"2015-01-01T15:03:12Z"} +,{"id":"2489652558","type":"PushEvent","actor":{"id":10074264,"login":"DamonY","gravatar_id":"","url":"https://api.github.com/users/DamonY","avatar_url":"https://avatars.githubusercontent.com/u/10074264?"},"repo":{"id":28293846,"name":"ZhangboTeam/Adinnet.MQE","url":"https://api.github.com/repos/ZhangboTeam/Adinnet.MQE"},"payload":{"push_id":536864672,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"3907ebfae6676ca8c9ac3764bd2c2865ee30a29d","before":"a5b0ce764f0c7d5c12ae9e8e7419242979ce70ba","commits":[{"sha":"83f44b33c446d2493c4454fa013d2792087bef5c","author":{"email":"de1f57f9acd14bb15fedd1d31467f4e857e48658@qq.com","name":"DamonY"},"message":"添加连接","distinct":true,"url":"https://api.github.com/repos/ZhangboTeam/Adinnet.MQE/commits/83f44b33c446d2493c4454fa013d2792087bef5c"},{"sha":"3907ebfae6676ca8c9ac3764bd2c2865ee30a29d","author":{"email":"de1f57f9acd14bb15fedd1d31467f4e857e48658@qq.com","name":"DamonY"},"message":"Merge branch 'master' of https://github.com/ZhangboTeam/Adinnet.MQE.git","distinct":true,"url":"https://api.github.com/repos/ZhangboTeam/Adinnet.MQE/commits/3907ebfae6676ca8c9ac3764bd2c2865ee30a29d"}]},"public":true,"created_at":"2015-01-01T15:03:12Z","org":{"id":10057771,"login":"ZhangboTeam","gravatar_id":"","url":"https://api.github.com/orgs/ZhangboTeam","avatar_url":"https://avatars.githubusercontent.com/u/10057771?"}} +,{"id":"2489652559","type":"CreateEvent","actor":{"id":994018,"login":"weakboson","gravatar_id":"","url":"https://api.github.com/users/weakboson","avatar_url":"https://avatars.githubusercontent.com/u/994018?"},"repo":{"id":28688655,"name":"weakboson/sample_app_rails42","url":"https://api.github.com/repos/weakboson/sample_app_rails42"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:12Z"} +,{"id":"2489652565","type":"WatchEvent","actor":{"id":7851390,"login":"egordor","gravatar_id":"","url":"https://api.github.com/users/egordor","avatar_url":"https://avatars.githubusercontent.com/u/7851390?"},"repo":{"id":28428729,"name":"wasabeef/awesome-android-ui","url":"https://api.github.com/repos/wasabeef/awesome-android-ui"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:14Z"} +,{"id":"2489652567","type":"IssueCommentEvent","actor":{"id":829924,"login":"franciscojunior","gravatar_id":"","url":"https://api.github.com/users/franciscojunior","avatar_url":"https://avatars.githubusercontent.com/u/829924?"},"repo":{"id":2883574,"name":"npgsql/npgsql","url":"https://api.github.com/repos/npgsql/npgsql"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/npgsql/npgsql/issues/447","labels_url":"https://api.github.com/repos/npgsql/npgsql/issues/447/labels{/name}","comments_url":"https://api.github.com/repos/npgsql/npgsql/issues/447/comments","events_url":"https://api.github.com/repos/npgsql/npgsql/issues/447/events","html_url":"https://github.com/npgsql/npgsql/issues/447","id":53205767,"number":447,"title":"Switch to 100% binary and extended protocol everywhere?","user":{"login":"roji","id":1862641,"avatar_url":"https://avatars.githubusercontent.com/u/1862641?v=3","gravatar_id":"","url":"https://api.github.com/users/roji","html_url":"https://github.com/roji","followers_url":"https://api.github.com/users/roji/followers","following_url":"https://api.github.com/users/roji/following{/other_user}","gists_url":"https://api.github.com/users/roji/gists{/gist_id}","starred_url":"https://api.github.com/users/roji/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/roji/subscriptions","organizations_url":"https://api.github.com/users/roji/orgs","repos_url":"https://api.github.com/users/roji/repos","events_url":"https://api.github.com/users/roji/events{/privacy}","received_events_url":"https://api.github.com/users/roji/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":{"login":"roji","id":1862641,"avatar_url":"https://avatars.githubusercontent.com/u/1862641?v=3","gravatar_id":"","url":"https://api.github.com/users/roji","html_url":"https://github.com/roji","followers_url":"https://api.github.com/users/roji/followers","following_url":"https://api.github.com/users/roji/following{/other_user}","gists_url":"https://api.github.com/users/roji/gists{/gist_id}","starred_url":"https://api.github.com/users/roji/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/roji/subscriptions","organizations_url":"https://api.github.com/users/roji/orgs","repos_url":"https://api.github.com/users/roji/repos","events_url":"https://api.github.com/users/roji/events{/privacy}","received_events_url":"https://api.github.com/users/roji/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/npgsql/npgsql/milestones/3","labels_url":"https://api.github.com/repos/npgsql/npgsql/milestones/3/labels","id":620657,"number":3,"title":"3.0","description":"","creator":{"login":"franciscojunior","id":829924,"avatar_url":"https://avatars.githubusercontent.com/u/829924?v=3","gravatar_id":"","url":"https://api.github.com/users/franciscojunior","html_url":"https://github.com/franciscojunior","followers_url":"https://api.github.com/users/franciscojunior/followers","following_url":"https://api.github.com/users/franciscojunior/following{/other_user}","gists_url":"https://api.github.com/users/franciscojunior/gists{/gist_id}","starred_url":"https://api.github.com/users/franciscojunior/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/franciscojunior/subscriptions","organizations_url":"https://api.github.com/users/franciscojunior/orgs","repos_url":"https://api.github.com/users/franciscojunior/repos","events_url":"https://api.github.com/users/franciscojunior/events{/privacy}","received_events_url":"https://api.github.com/users/franciscojunior/received_events","type":"User","site_admin":false},"open_issues":38,"closed_issues":20,"state":"open","created_at":"2014-04-04T16:37:19Z","updated_at":"2015-01-01T06:18:34Z","due_on":null,"closed_at":null},"comments":8,"created_at":"2014-12-31T22:06:40Z","updated_at":"2015-01-01T15:03:14Z","closed_at":null,"body":"In #370 we discussed various aspects of switching to the extended query protocol, and also to binary encoding. @Emill and I discussed this again recently on our [gitter channel](https://gitter.im/npgsql/npgsql), and I wanted to get your opinions (@franciscojunior @jbcooley @glenebob). I'm sorry if revisiting this subject again is annoying.\r\n\r\nTo recall the situation, we can only request binary values using the extended query protocol, and we currently use extended query protocol only in prepared statements. In #370 we already discussed switching to the extended query protocol for non-prepared parameterized queries; this would remove a big chunk of complexity in client-side query rewriting, allow use of binary encoding when receiving values, etc. Once we do this we can also drop text encoding entirely for *sending* values to the database.\r\n\r\nSo after thinking about the whole thing some more, I now think that v3.0 should be a 100% binary-only, extended-query-only provider - I can see no real reasons for maintaining either text encoding or the simple protocol. The new read_refactor branch implements binary encoding for almost all PostgreSQL built-in types, including exotic types such as geometric and networking types, and the few types that haven't been binarized can be done for v3.0.\r\n\r\nNow, the main argument against going binary-only was unknown types - types defined by extensions are unknown to Npgsql so they're binary representation can't be decoded. With text encoding we can at least hand off the string to the user. To address this problem, we can allow a user to turn on a \"text-only\" flag on a command before executing it. This would make Npgsql request all results in text, and the user can access them as strings. The only drawback I can see is that one can't mix text and binary in the same query, so even simple ints have to be accessed as strings. The user has the option of either separating \"unknown-type queries\" from normal queries, or to deal with text representations of known types themselves - IMHO this is a very acceptable situation for the extremely rare unknown type problem (which will become even rarer as we implement support for more and more types).\r\n\r\nNote that as @franciscojunior suggested, the unknown type problem can be partially mitigated also by allowing external type handlers to be registered with Npgsql (although I think it's a bit early to actually allow that in 3.0).\r\n\r\nPros:\r\n* A transparent performance boost thanks to binary encoding. With the current situation, users have to be aware that binary encoding requires preparing the query, the fact that this entails two roundtrips... It's complicated and it involves users in the inner workings of both Npgsql and the PostgreSQL protocol. Making everything binary and extended-protocol makes the performance boost accessible to everyone in a transparent and easy way.\r\n* No more mucking around with locale settings which affect text representations (e.g. lc_monetary for money which causes #163, DateStyle=ISO...). Note that Npgsql users may want to work with PostgreSQL functions which depend on these settings, and Npgsql interferes with them to make text decoding possible.\r\n* No more loss of precision converting floating point values to and from text. Binary \"conversion\" is 100% accurate. (see #324).\r\n* Greatly simplifies our code base: text encoding and the simple protocol can simply be cut out, no more need to maintain two encoding paths for each type, etc. Npgsql becomes very lean and lightweight without losing any real functionality.\r\n\r\nCons:\r\n* Unknown (or text-only) types are a bit clumsy to use - they can't be easily mixed with known types (a query is either all-binary or all-text).\r\n* Multi-resultset queries aren't supported with the extended protocol. We'd have to fake them by sending multiple extended-protocol queries (but this can still be done in a single message, so only one roundtrip).\r\n* There was some mention of the extended protocol being less efficient than the simple protocol. We need to evaluate this with an actual performance test, but I also think the performance gains due to binary encoding should at the very least offset this.\r\n"},"comment":{"url":"https://api.github.com/repos/npgsql/npgsql/issues/comments/68488548","html_url":"https://github.com/npgsql/npgsql/issues/447#issuecomment-68488548","issue_url":"https://api.github.com/repos/npgsql/npgsql/issues/447","id":68488548,"user":{"login":"franciscojunior","id":829924,"avatar_url":"https://avatars.githubusercontent.com/u/829924?v=3","gravatar_id":"","url":"https://api.github.com/users/franciscojunior","html_url":"https://github.com/franciscojunior","followers_url":"https://api.github.com/users/franciscojunior/followers","following_url":"https://api.github.com/users/franciscojunior/following{/other_user}","gists_url":"https://api.github.com/users/franciscojunior/gists{/gist_id}","starred_url":"https://api.github.com/users/franciscojunior/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/franciscojunior/subscriptions","organizations_url":"https://api.github.com/users/franciscojunior/orgs","repos_url":"https://api.github.com/users/franciscojunior/repos","events_url":"https://api.github.com/users/franciscojunior/events{/privacy}","received_events_url":"https://api.github.com/users/franciscojunior/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:14Z","updated_at":"2015-01-01T15:03:14Z","body":"> In #370 we discussed various aspects of switching to the extended query protocol, and also to binary encoding. @Emill and I discussed this again recently on our gitter channel, and I wanted to get your opinions (@franciscojunior @jbcooley @glenebob). I'm sorry if revisiting this subject again is annoying.\r\n\r\nIt is not annoying at all. I hope I can contribute with the discussion... :)\r\n\r\nAnd first of all, I'm +1 to the binary approach. I'm just worried about the possible compromises we will have to make. I'll talk about that in the comments below...\r\n\r\n> IMHO this is a very acceptable situation for the extremely rare unknown type problem (which will become even rarer as we implement support for more and more types).\r\n\r\nI think so, but we would need to check that. I don't know how many different data types are being used which we would break with that. I think we would only be able to have a good picture of it when we release our first 3.0 version. My suggestion would be to keep the text handling path available and we could remove it as we confirm that our users are using Npgsql ok without big problems regarding query errors. What do you think? \r\nI also liked @Emill idea of defaulting to binary path and fallbacking to text if there is any requisite. \r\nI know it is not ideal :(\r\n\r\n\r\nMy main concern right now the the not only the amount of breakage we are heading at here. I'm also worried, after seeing the comments about implicit transactions, BEGIN/COMMIT and multiple statements that we may introduce some *limitations* to the point that users would have to program differently from what they are used to only to be able to use Npgsql. I hope I'm being too much dramatic here. :)\r\n\r\n\r\n> I think it will be a bit problematic with multiple-statement queries in the extended protocol if we just send separate queries. With the simple query protocol, the statements seem to be done inside a transaction.\r\n\r\nI'm wondering how jdbc guys work on this situation. I may be wrong, but I think they use the extended protocol exclusively. Maybe we could have a look at how they handle this situation and try a similar approach in Npgsql. :)\r\n\r\n \r\n\r\n> I actually just had another thought about the unknown type problem. Rather than the \"all-text\" flag I proposed above, we can simply allow the user to specify that the result column at a certain index should be returned as text. Npgsql will then request binary encoding for all columns by default, except those which have been flagged as text only. When Npgsql receives the results, columns which are transferred as text are simply untouched by Npgsql.\r\n\r\nHmmm, what happens if we handle those unknown types as text and decode them as text and give them to the user? \r\n\r\nAnother idea, would it be possible for us to detect in advance those unknown types and instead of asking the user to flag those columns which need to be text, we could just flag them ourselves, or at least ask them to be all text? This way we would eliminate any user interaction.\r\n\r\n> This means the user can mix-and-match text encoding for unknown types, while benefiting from binary everywhere else (thanks @glenebob for making me think about it). IMHO this really solves the unknown type problem, the user has total flexibility over everything, at the small price of specifying the column numbers that should be simple text.\r\n\r\nExactly! :)\r\n\r\n\r\n> I also noticed that SchemaOnly can be very elegantly implemented by simply executing Parse + Describe Statement + Sync, so I implemented that as well.\r\n\r\nExcellent, @Emill !\r\n\r\n\r\n\r\nI hope I could contribute a little bit to the discussion."}},"public":true,"created_at":"2015-01-01T15:03:14Z","org":{"id":5766497,"login":"npgsql","gravatar_id":"","url":"https://api.github.com/orgs/npgsql","avatar_url":"https://avatars.githubusercontent.com/u/5766497?"}} +,{"id":"2489652568","type":"PushEvent","actor":{"id":5471228,"login":"benweizhu","gravatar_id":"","url":"https://api.github.com/users/benweizhu","avatar_url":"https://avatars.githubusercontent.com/u/5471228?"},"repo":{"id":28537322,"name":"benweizhu/relations-with-gradle","url":"https://api.github.com/repos/benweizhu/relations-with-gradle"},"payload":{"push_id":536864678,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a48d706e6036cd56dd35c2dd32e99312336f573f","before":"2cf989d9b514a08c339b121cec7e2a41d24c749e","commits":[{"sha":"a48d706e6036cd56dd35c2dd32e99312336f573f","author":{"email":"76342f0adf4cc44fd2c629cf8e2906e516f0c101@gmail.com","name":"benweizhu"},"message":"[Relations] [Benwei] add test for One In Q","distinct":true,"url":"https://api.github.com/repos/benweizhu/relations-with-gradle/commits/a48d706e6036cd56dd35c2dd32e99312336f573f"}]},"public":true,"created_at":"2015-01-01T15:03:14Z"} +,{"id":"2489652573","type":"WatchEvent","actor":{"id":426400,"login":"altmer","gravatar_id":"","url":"https://api.github.com/users/altmer","avatar_url":"https://avatars.githubusercontent.com/u/426400?"},"repo":{"id":10915686,"name":"less/less-docs","url":"https://api.github.com/repos/less/less-docs"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:17Z","org":{"id":3538330,"login":"less","gravatar_id":"","url":"https://api.github.com/orgs/less","avatar_url":"https://avatars.githubusercontent.com/u/3538330?"}} +,{"id":"2489652574","type":"PullRequestEvent","actor":{"id":1330814,"login":"romainfrancez","gravatar_id":"","url":"https://api.github.com/users/romainfrancez","avatar_url":"https://avatars.githubusercontent.com/u/1330814?"},"repo":{"id":20778549,"name":"zurb/foundation-apps","url":"https://api.github.com/repos/zurb/foundation-apps"},"payload":{"action":"opened","number":378,"pull_request":{"url":"https://api.github.com/repos/zurb/foundation-apps/pulls/378","id":26743791,"html_url":"https://github.com/zurb/foundation-apps/pull/378","diff_url":"https://github.com/zurb/foundation-apps/pull/378.diff","patch_url":"https://github.com/zurb/foundation-apps/pull/378.patch","issue_url":"https://api.github.com/repos/zurb/foundation-apps/issues/378","number":378,"state":"open","locked":false,"title":"Renamed the ui-router bower dependency to angular-ui-router ","user":{"login":"romainfrancez","id":1330814,"avatar_url":"https://avatars.githubusercontent.com/u/1330814?v=3","gravatar_id":"","url":"https://api.github.com/users/romainfrancez","html_url":"https://github.com/romainfrancez","followers_url":"https://api.github.com/users/romainfrancez/followers","following_url":"https://api.github.com/users/romainfrancez/following{/other_user}","gists_url":"https://api.github.com/users/romainfrancez/gists{/gist_id}","starred_url":"https://api.github.com/users/romainfrancez/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/romainfrancez/subscriptions","organizations_url":"https://api.github.com/users/romainfrancez/orgs","repos_url":"https://api.github.com/users/romainfrancez/repos","events_url":"https://api.github.com/users/romainfrancez/events{/privacy}","received_events_url":"https://api.github.com/users/romainfrancez/received_events","type":"User","site_admin":false},"body":"UI router doc states the bower package is angular-ui-router\r\nhttps://github.com/angular-ui/ui-router#get-started\r\n\r\nIf most people follow this doc, they will end up with 2 dependencies ui-router and angular-ui-router","created_at":"2015-01-01T15:03:17Z","updated_at":"2015-01-01T15:03:17Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/zurb/foundation-apps/pulls/378/commits","review_comments_url":"https://api.github.com/repos/zurb/foundation-apps/pulls/378/comments","review_comment_url":"https://api.github.com/repos/zurb/foundation-apps/pulls/comments/{number}","comments_url":"https://api.github.com/repos/zurb/foundation-apps/issues/378/comments","statuses_url":"https://api.github.com/repos/zurb/foundation-apps/statuses/88067743053aee4ff5395dbae5bd26e3607eaa10","head":{"label":"romainfrancez:master","ref":"master","sha":"88067743053aee4ff5395dbae5bd26e3607eaa10","user":{"login":"romainfrancez","id":1330814,"avatar_url":"https://avatars.githubusercontent.com/u/1330814?v=3","gravatar_id":"","url":"https://api.github.com/users/romainfrancez","html_url":"https://github.com/romainfrancez","followers_url":"https://api.github.com/users/romainfrancez/followers","following_url":"https://api.github.com/users/romainfrancez/following{/other_user}","gists_url":"https://api.github.com/users/romainfrancez/gists{/gist_id}","starred_url":"https://api.github.com/users/romainfrancez/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/romainfrancez/subscriptions","organizations_url":"https://api.github.com/users/romainfrancez/orgs","repos_url":"https://api.github.com/users/romainfrancez/repos","events_url":"https://api.github.com/users/romainfrancez/events{/privacy}","received_events_url":"https://api.github.com/users/romainfrancez/received_events","type":"User","site_admin":false},"repo":{"id":28688202,"name":"foundation-apps","full_name":"romainfrancez/foundation-apps","owner":{"login":"romainfrancez","id":1330814,"avatar_url":"https://avatars.githubusercontent.com/u/1330814?v=3","gravatar_id":"","url":"https://api.github.com/users/romainfrancez","html_url":"https://github.com/romainfrancez","followers_url":"https://api.github.com/users/romainfrancez/followers","following_url":"https://api.github.com/users/romainfrancez/following{/other_user}","gists_url":"https://api.github.com/users/romainfrancez/gists{/gist_id}","starred_url":"https://api.github.com/users/romainfrancez/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/romainfrancez/subscriptions","organizations_url":"https://api.github.com/users/romainfrancez/orgs","repos_url":"https://api.github.com/users/romainfrancez/repos","events_url":"https://api.github.com/users/romainfrancez/events{/privacy}","received_events_url":"https://api.github.com/users/romainfrancez/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/romainfrancez/foundation-apps","description":"The first front-end framework created for developing fully responsive web apps.","fork":true,"url":"https://api.github.com/repos/romainfrancez/foundation-apps","forks_url":"https://api.github.com/repos/romainfrancez/foundation-apps/forks","keys_url":"https://api.github.com/repos/romainfrancez/foundation-apps/keys{/key_id}","collaborators_url":"https://api.github.com/repos/romainfrancez/foundation-apps/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/romainfrancez/foundation-apps/teams","hooks_url":"https://api.github.com/repos/romainfrancez/foundation-apps/hooks","issue_events_url":"https://api.github.com/repos/romainfrancez/foundation-apps/issues/events{/number}","events_url":"https://api.github.com/repos/romainfrancez/foundation-apps/events","assignees_url":"https://api.github.com/repos/romainfrancez/foundation-apps/assignees{/user}","branches_url":"https://api.github.com/repos/romainfrancez/foundation-apps/branches{/branch}","tags_url":"https://api.github.com/repos/romainfrancez/foundation-apps/tags","blobs_url":"https://api.github.com/repos/romainfrancez/foundation-apps/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/romainfrancez/foundation-apps/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/romainfrancez/foundation-apps/git/refs{/sha}","trees_url":"https://api.github.com/repos/romainfrancez/foundation-apps/git/trees{/sha}","statuses_url":"https://api.github.com/repos/romainfrancez/foundation-apps/statuses/{sha}","languages_url":"https://api.github.com/repos/romainfrancez/foundation-apps/languages","stargazers_url":"https://api.github.com/repos/romainfrancez/foundation-apps/stargazers","contributors_url":"https://api.github.com/repos/romainfrancez/foundation-apps/contributors","subscribers_url":"https://api.github.com/repos/romainfrancez/foundation-apps/subscribers","subscription_url":"https://api.github.com/repos/romainfrancez/foundation-apps/subscription","commits_url":"https://api.github.com/repos/romainfrancez/foundation-apps/commits{/sha}","git_commits_url":"https://api.github.com/repos/romainfrancez/foundation-apps/git/commits{/sha}","comments_url":"https://api.github.com/repos/romainfrancez/foundation-apps/comments{/number}","issue_comment_url":"https://api.github.com/repos/romainfrancez/foundation-apps/issues/comments/{number}","contents_url":"https://api.github.com/repos/romainfrancez/foundation-apps/contents/{+path}","compare_url":"https://api.github.com/repos/romainfrancez/foundation-apps/compare/{base}...{head}","merges_url":"https://api.github.com/repos/romainfrancez/foundation-apps/merges","archive_url":"https://api.github.com/repos/romainfrancez/foundation-apps/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/romainfrancez/foundation-apps/downloads","issues_url":"https://api.github.com/repos/romainfrancez/foundation-apps/issues{/number}","pulls_url":"https://api.github.com/repos/romainfrancez/foundation-apps/pulls{/number}","milestones_url":"https://api.github.com/repos/romainfrancez/foundation-apps/milestones{/number}","notifications_url":"https://api.github.com/repos/romainfrancez/foundation-apps/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/romainfrancez/foundation-apps/labels{/name}","releases_url":"https://api.github.com/repos/romainfrancez/foundation-apps/releases{/id}","created_at":"2015-01-01T14:36:16Z","updated_at":"2015-01-01T14:55:54Z","pushed_at":"2015-01-01T14:55:53Z","git_url":"git://github.com/romainfrancez/foundation-apps.git","ssh_url":"git@github.com:romainfrancez/foundation-apps.git","clone_url":"https://github.com/romainfrancez/foundation-apps.git","svn_url":"https://github.com/romainfrancez/foundation-apps","homepage":"http://foundation.zurb.com/apps","size":8744,"stargazers_count":0,"watchers_count":0,"language":"CSS","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":"zurb:master","ref":"master","sha":"ff33e2da2e0413d4ec9d5fade525c840094e0444","user":{"login":"zurb","id":156122,"avatar_url":"https://avatars.githubusercontent.com/u/156122?v=3","gravatar_id":"","url":"https://api.github.com/users/zurb","html_url":"https://github.com/zurb","followers_url":"https://api.github.com/users/zurb/followers","following_url":"https://api.github.com/users/zurb/following{/other_user}","gists_url":"https://api.github.com/users/zurb/gists{/gist_id}","starred_url":"https://api.github.com/users/zurb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zurb/subscriptions","organizations_url":"https://api.github.com/users/zurb/orgs","repos_url":"https://api.github.com/users/zurb/repos","events_url":"https://api.github.com/users/zurb/events{/privacy}","received_events_url":"https://api.github.com/users/zurb/received_events","type":"Organization","site_admin":false},"repo":{"id":20778549,"name":"foundation-apps","full_name":"zurb/foundation-apps","owner":{"login":"zurb","id":156122,"avatar_url":"https://avatars.githubusercontent.com/u/156122?v=3","gravatar_id":"","url":"https://api.github.com/users/zurb","html_url":"https://github.com/zurb","followers_url":"https://api.github.com/users/zurb/followers","following_url":"https://api.github.com/users/zurb/following{/other_user}","gists_url":"https://api.github.com/users/zurb/gists{/gist_id}","starred_url":"https://api.github.com/users/zurb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zurb/subscriptions","organizations_url":"https://api.github.com/users/zurb/orgs","repos_url":"https://api.github.com/users/zurb/repos","events_url":"https://api.github.com/users/zurb/events{/privacy}","received_events_url":"https://api.github.com/users/zurb/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/zurb/foundation-apps","description":"The first front-end framework created for developing fully responsive web apps.","fork":false,"url":"https://api.github.com/repos/zurb/foundation-apps","forks_url":"https://api.github.com/repos/zurb/foundation-apps/forks","keys_url":"https://api.github.com/repos/zurb/foundation-apps/keys{/key_id}","collaborators_url":"https://api.github.com/repos/zurb/foundation-apps/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/zurb/foundation-apps/teams","hooks_url":"https://api.github.com/repos/zurb/foundation-apps/hooks","issue_events_url":"https://api.github.com/repos/zurb/foundation-apps/issues/events{/number}","events_url":"https://api.github.com/repos/zurb/foundation-apps/events","assignees_url":"https://api.github.com/repos/zurb/foundation-apps/assignees{/user}","branches_url":"https://api.github.com/repos/zurb/foundation-apps/branches{/branch}","tags_url":"https://api.github.com/repos/zurb/foundation-apps/tags","blobs_url":"https://api.github.com/repos/zurb/foundation-apps/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/zurb/foundation-apps/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/zurb/foundation-apps/git/refs{/sha}","trees_url":"https://api.github.com/repos/zurb/foundation-apps/git/trees{/sha}","statuses_url":"https://api.github.com/repos/zurb/foundation-apps/statuses/{sha}","languages_url":"https://api.github.com/repos/zurb/foundation-apps/languages","stargazers_url":"https://api.github.com/repos/zurb/foundation-apps/stargazers","contributors_url":"https://api.github.com/repos/zurb/foundation-apps/contributors","subscribers_url":"https://api.github.com/repos/zurb/foundation-apps/subscribers","subscription_url":"https://api.github.com/repos/zurb/foundation-apps/subscription","commits_url":"https://api.github.com/repos/zurb/foundation-apps/commits{/sha}","git_commits_url":"https://api.github.com/repos/zurb/foundation-apps/git/commits{/sha}","comments_url":"https://api.github.com/repos/zurb/foundation-apps/comments{/number}","issue_comment_url":"https://api.github.com/repos/zurb/foundation-apps/issues/comments/{number}","contents_url":"https://api.github.com/repos/zurb/foundation-apps/contents/{+path}","compare_url":"https://api.github.com/repos/zurb/foundation-apps/compare/{base}...{head}","merges_url":"https://api.github.com/repos/zurb/foundation-apps/merges","archive_url":"https://api.github.com/repos/zurb/foundation-apps/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/zurb/foundation-apps/downloads","issues_url":"https://api.github.com/repos/zurb/foundation-apps/issues{/number}","pulls_url":"https://api.github.com/repos/zurb/foundation-apps/pulls{/number}","milestones_url":"https://api.github.com/repos/zurb/foundation-apps/milestones{/number}","notifications_url":"https://api.github.com/repos/zurb/foundation-apps/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/zurb/foundation-apps/labels{/name}","releases_url":"https://api.github.com/repos/zurb/foundation-apps/releases{/id}","created_at":"2014-06-12T18:35:41Z","updated_at":"2015-01-01T08:27:26Z","pushed_at":"2014-12-23T23:21:01Z","git_url":"git://github.com/zurb/foundation-apps.git","ssh_url":"git@github.com:zurb/foundation-apps.git","clone_url":"https://github.com/zurb/foundation-apps.git","svn_url":"https://github.com/zurb/foundation-apps","homepage":"http://foundation.zurb.com/apps","size":8744,"stargazers_count":891,"watchers_count":891,"language":"CSS","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":90,"mirror_url":null,"open_issues_count":39,"forks":90,"open_issues":39,"watchers":891,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/zurb/foundation-apps/pulls/378"},"html":{"href":"https://github.com/zurb/foundation-apps/pull/378"},"issue":{"href":"https://api.github.com/repos/zurb/foundation-apps/issues/378"},"comments":{"href":"https://api.github.com/repos/zurb/foundation-apps/issues/378/comments"},"review_comments":{"href":"https://api.github.com/repos/zurb/foundation-apps/pulls/378/comments"},"review_comment":{"href":"https://api.github.com/repos/zurb/foundation-apps/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/zurb/foundation-apps/pulls/378/commits"},"statuses":{"href":"https://api.github.com/repos/zurb/foundation-apps/statuses/88067743053aee4ff5395dbae5bd26e3607eaa10"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":2,"deletions":2,"changed_files":2}},"public":true,"created_at":"2015-01-01T15:03:17Z","org":{"id":156122,"login":"zurb","gravatar_id":"","url":"https://api.github.com/orgs/zurb","avatar_url":"https://avatars.githubusercontent.com/u/156122?"}} +,{"id":"2489652580","type":"WatchEvent","actor":{"id":2820647,"login":"ikkentim","gravatar_id":"","url":"https://api.github.com/users/ikkentim","avatar_url":"https://avatars.githubusercontent.com/u/2820647?"},"repo":{"id":26284176,"name":"DY357LX/Logitech-G15-SDK","url":"https://api.github.com/repos/DY357LX/Logitech-G15-SDK"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:18Z"} +,{"id":"2489652581","type":"IssueCommentEvent","actor":{"id":891655,"login":"jalvesaq","gravatar_id":"","url":"https://api.github.com/users/jalvesaq","avatar_url":"https://avatars.githubusercontent.com/u/891655?"},"repo":{"id":16408992,"name":"neovim/neovim","url":"https://api.github.com/repos/neovim/neovim"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/neovim/neovim/issues/1584","labels_url":"https://api.github.com/repos/neovim/neovim/issues/1584/labels{/name}","comments_url":"https://api.github.com/repos/neovim/neovim/issues/1584/comments","events_url":"https://api.github.com/repos/neovim/neovim/issues/1584/events","html_url":"https://github.com/neovim/neovim/pull/1584","id":50469699,"number":1584,"title":"[RFC] job: Add optional {flags} parameter.","user":{"login":"splinterofchaos","id":38515,"avatar_url":"https://avatars.githubusercontent.com/u/38515?v=3","gravatar_id":"","url":"https://api.github.com/users/splinterofchaos","html_url":"https://github.com/splinterofchaos","followers_url":"https://api.github.com/users/splinterofchaos/followers","following_url":"https://api.github.com/users/splinterofchaos/following{/other_user}","gists_url":"https://api.github.com/users/splinterofchaos/gists{/gist_id}","starred_url":"https://api.github.com/users/splinterofchaos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/splinterofchaos/subscriptions","organizations_url":"https://api.github.com/users/splinterofchaos/orgs","repos_url":"https://api.github.com/users/splinterofchaos/repos","events_url":"https://api.github.com/users/splinterofchaos/events{/privacy}","received_events_url":"https://api.github.com/users/splinterofchaos/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/neovim/neovim/labels/enhancement","name":"enhancement","color":"bfe5bf"},{"url":"https://api.github.com/repos/neovim/neovim/labels/RFC","name":"RFC","color":"ededed"},{"url":"https://api.github.com/repos/neovim/neovim/labels/shell","name":"shell","color":"c7def8"},{"url":"https://api.github.com/repos/neovim/neovim/labels/usability","name":"usability","color":"c7def8"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":40,"created_at":"2014-11-30T20:35:32Z","updated_at":"2015-01-01T15:03:16Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/neovim/neovim/pulls/1584","html_url":"https://github.com/neovim/neovim/pull/1584","diff_url":"https://github.com/neovim/neovim/pull/1584.diff","patch_url":"https://github.com/neovim/neovim/pull/1584.patch"},"body":"fixes #1574"},"comment":{"url":"https://api.github.com/repos/neovim/neovim/issues/comments/68488549","html_url":"https://github.com/neovim/neovim/pull/1584#issuecomment-68488549","issue_url":"https://api.github.com/repos/neovim/neovim/issues/1584","id":68488549,"user":{"login":"jalvesaq","id":891655,"avatar_url":"https://avatars.githubusercontent.com/u/891655?v=3","gravatar_id":"","url":"https://api.github.com/users/jalvesaq","html_url":"https://github.com/jalvesaq","followers_url":"https://api.github.com/users/jalvesaq/followers","following_url":"https://api.github.com/users/jalvesaq/following{/other_user}","gists_url":"https://api.github.com/users/jalvesaq/gists{/gist_id}","starred_url":"https://api.github.com/users/jalvesaq/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jalvesaq/subscriptions","organizations_url":"https://api.github.com/users/jalvesaq/orgs","repos_url":"https://api.github.com/users/jalvesaq/repos","events_url":"https://api.github.com/users/jalvesaq/events{/privacy}","received_events_url":"https://api.github.com/users/jalvesaq/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:16Z","updated_at":"2015-01-01T15:03:16Z","body":"If you want to automate the test, you could put `writefile(getline(1, \"$\"), fname)` before the command `quit` and check if `fname` contents are:\r\n```\r\n\r\nThis is the line number 1\r\nThis is the line number 2\r\nThis is the line number 3\r\nThis is the line number 4\r\n```\r\n"}},"public":true,"created_at":"2015-01-01T15:03:18Z","org":{"id":6471485,"login":"neovim","gravatar_id":"","url":"https://api.github.com/orgs/neovim","avatar_url":"https://avatars.githubusercontent.com/u/6471485?"}} +,{"id":"2489652586","type":"WatchEvent","actor":{"id":426400,"login":"altmer","gravatar_id":"","url":"https://api.github.com/users/altmer","avatar_url":"https://avatars.githubusercontent.com/u/426400?"},"repo":{"id":929845,"name":"sass/sass","url":"https://api.github.com/repos/sass/sass"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:18Z","org":{"id":317889,"login":"sass","gravatar_id":"","url":"https://api.github.com/orgs/sass","avatar_url":"https://avatars.githubusercontent.com/u/317889?"}} +,{"id":"2489652588","type":"IssueCommentEvent","actor":{"id":2577481,"login":"easlee","gravatar_id":"","url":"https://api.github.com/users/easlee","avatar_url":"https://avatars.githubusercontent.com/u/2577481?"},"repo":{"id":19953044,"name":"google/flatbuffers","url":"https://api.github.com/repos/google/flatbuffers"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/google/flatbuffers/issues/116","labels_url":"https://api.github.com/repos/google/flatbuffers/issues/116/labels{/name}","comments_url":"https://api.github.com/repos/google/flatbuffers/issues/116/comments","events_url":"https://api.github.com/repos/google/flatbuffers/issues/116/events","html_url":"https://github.com/google/flatbuffers/issues/116","id":53190825,"number":116,"title":"Go - table vector","user":{"login":"easlee","id":2577481,"avatar_url":"https://avatars.githubusercontent.com/u/2577481?v=3","gravatar_id":"","url":"https://api.github.com/users/easlee","html_url":"https://github.com/easlee","followers_url":"https://api.github.com/users/easlee/followers","following_url":"https://api.github.com/users/easlee/following{/other_user}","gists_url":"https://api.github.com/users/easlee/gists{/gist_id}","starred_url":"https://api.github.com/users/easlee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/easlee/subscriptions","organizations_url":"https://api.github.com/users/easlee/orgs","repos_url":"https://api.github.com/users/easlee/repos","events_url":"https://api.github.com/users/easlee/events{/privacy}","received_events_url":"https://api.github.com/users/easlee/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-12-31T16:19:26Z","updated_at":"2015-01-01T15:03:18Z","closed_at":"2015-01-01T15:03:18Z","body":"I have a problem when use flatbuffers, i define a fbs file, like this:\r\n \r\n```\r\nstruct Currency{\r\n id int32\r\n amount int32\r\n} \r\ntable Wallet{\r\n tag int32\r\n currencies []Currency\r\n}\r\ntable User{\r\n id int32\r\n wallets []Wallet\r\n}\r\n```\r\n\r\nI generate the buffer like this:\r\n\r\n```go\r\nbuilder := flatbuffers.NewBuilder(0)\r\nUserStartWalletsVector(builder, 3)\r\nfor i := 2; i >=0; i-- {\r\n WalletStartCurrenciesVector(builder, 3)\r\n for j := 2; j>=0;j-- {\r\n CreateCurrency(builder, j+1, 100)\r\n }\r\n currencies_vec := builder.EndVector(3)\r\n WalletStart(builder)\r\n WalletAddTag(i+1)\r\n WalletAddCurrencies(builder, currencies_vec)\r\n wallet := WalletEnd(builder)\r\n //How to add the wallet ???, I use follow code, but error \r\n builder.PrependUOffsetT(wallet)\r\n}\r\nwallets_vec := builder.EndVector(3)\r\n\r\nUserStart(builder)\r\nUserAddId(builder, 19)\r\nUserAddWalletsVector(builder, wallets_vec)\r\nuser := UserEnd(builder)\r\nbuilder.Finish(user)\r\n\r\nbuffer := builder.Bytes[builder:Head():]\r\n```\r\n\r\nI dont know how to add a table into a vector, in \"monster_test.fbs\", it has follow field:\r\n```\r\nline 39: testarrayoftables:[Monster] (id: 11);\r\n```\r\nbut none test case to show how to set it.\r\n\r\nWho knows how to solve it??"},"comment":{"url":"https://api.github.com/repos/google/flatbuffers/issues/comments/68488550","html_url":"https://github.com/google/flatbuffers/issues/116#issuecomment-68488550","issue_url":"https://api.github.com/repos/google/flatbuffers/issues/116","id":68488550,"user":{"login":"easlee","id":2577481,"avatar_url":"https://avatars.githubusercontent.com/u/2577481?v=3","gravatar_id":"","url":"https://api.github.com/users/easlee","html_url":"https://github.com/easlee","followers_url":"https://api.github.com/users/easlee/followers","following_url":"https://api.github.com/users/easlee/following{/other_user}","gists_url":"https://api.github.com/users/easlee/gists{/gist_id}","starred_url":"https://api.github.com/users/easlee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/easlee/subscriptions","organizations_url":"https://api.github.com/users/easlee/orgs","repos_url":"https://api.github.com/users/easlee/repos","events_url":"https://api.github.com/users/easlee/events{/privacy}","received_events_url":"https://api.github.com/users/easlee/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:18Z","updated_at":"2015-01-01T15:03:18Z","body":"I read the source code of C++ and Go, tried many times, finally solved the problem.\r\n\r\n```go\r\nwallets_count := 3\r\nbuilder := flatbuffers.NewBuilder(0)\r\nwallet_slice := make([]fb.UOffsetT, wallets_count, wallets_count)\r\n\r\n//NOTE: MUST FROM 0 TO N\r\nfor i := 0; i =0;j-- {\r\n CreateCurrency(builder, j+1, 100)\r\n }\r\n currencies_vec := builder.EndVector(3)\r\n WalletStart(builder)\r\n WalletAddTag(i+1)\r\n WalletAddCurrencies(builder, currencies_vec)\r\n wallets_slice[i] = WalletEnd(builder)\r\n}\r\nUserStartWalletsVector(builder,wallets_count)\r\n//NOTE:MUST FROM N TO 0\r\nfor i := wallets_count-1; i >= 0; i--{\r\n builder.PrependUOffsetT(wallets_slice[i])\r\n}\r\nwallets_vec := builder.EndVector(wallets_count)\r\n\r\nUserStart(builder)\r\nUserAddId(builder, 19)\r\nUserAddWalletsVector(builder, wallets_vec)\r\nuser := UserEnd(builder)\r\nbuilder.Finish(user)\r\n\r\nbuffer := builder.Bytes[builder:Head():]\r\n```"}},"public":true,"created_at":"2015-01-01T15:03:18Z","org":{"id":1342004,"login":"google","gravatar_id":"","url":"https://api.github.com/orgs/google","avatar_url":"https://avatars.githubusercontent.com/u/1342004?"}} +,{"id":"2489652589","type":"IssuesEvent","actor":{"id":10364412,"login":"Liverkiller14","gravatar_id":"","url":"https://api.github.com/users/Liverkiller14","avatar_url":"https://avatars.githubusercontent.com/u/10364412?"},"repo":{"id":28636705,"name":"The-1-7-10-Pack/The-1.7.10-Pack","url":"https://api.github.com/repos/The-1-7-10-Pack/The-1.7.10-Pack"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/The-1-7-10-Pack/The-1.7.10-Pack/issues/13","labels_url":"https://api.github.com/repos/The-1-7-10-Pack/The-1.7.10-Pack/issues/13/labels{/name}","comments_url":"https://api.github.com/repos/The-1-7-10-Pack/The-1.7.10-Pack/issues/13/comments","events_url":"https://api.github.com/repos/The-1-7-10-Pack/The-1.7.10-Pack/issues/13/events","html_url":"https://github.com/The-1-7-10-Pack/The-1.7.10-Pack/issues/13","id":53221396,"number":13,"title":"Server crash when launch","user":{"login":"Liverkiller14","id":10364412,"avatar_url":"https://avatars.githubusercontent.com/u/10364412?v=3","gravatar_id":"","url":"https://api.github.com/users/Liverkiller14","html_url":"https://github.com/Liverkiller14","followers_url":"https://api.github.com/users/Liverkiller14/followers","following_url":"https://api.github.com/users/Liverkiller14/following{/other_user}","gists_url":"https://api.github.com/users/Liverkiller14/gists{/gist_id}","starred_url":"https://api.github.com/users/Liverkiller14/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Liverkiller14/subscriptions","organizations_url":"https://api.github.com/users/Liverkiller14/orgs","repos_url":"https://api.github.com/users/Liverkiller14/repos","events_url":"https://api.github.com/users/Liverkiller14/events{/privacy}","received_events_url":"https://api.github.com/users/Liverkiller14/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:03:18Z","updated_at":"2015-01-01T15:03:18Z","closed_at":null,"body":"Anytime i try launch my server for my friends to play on it crashes (Im using 0.6.1)"}},"public":true,"created_at":"2015-01-01T15:03:18Z"} +,{"id":"2489652590","type":"IssuesEvent","actor":{"id":2577481,"login":"easlee","gravatar_id":"","url":"https://api.github.com/users/easlee","avatar_url":"https://avatars.githubusercontent.com/u/2577481?"},"repo":{"id":19953044,"name":"google/flatbuffers","url":"https://api.github.com/repos/google/flatbuffers"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/google/flatbuffers/issues/116","labels_url":"https://api.github.com/repos/google/flatbuffers/issues/116/labels{/name}","comments_url":"https://api.github.com/repos/google/flatbuffers/issues/116/comments","events_url":"https://api.github.com/repos/google/flatbuffers/issues/116/events","html_url":"https://github.com/google/flatbuffers/issues/116","id":53190825,"number":116,"title":"Go - table vector","user":{"login":"easlee","id":2577481,"avatar_url":"https://avatars.githubusercontent.com/u/2577481?v=3","gravatar_id":"","url":"https://api.github.com/users/easlee","html_url":"https://github.com/easlee","followers_url":"https://api.github.com/users/easlee/followers","following_url":"https://api.github.com/users/easlee/following{/other_user}","gists_url":"https://api.github.com/users/easlee/gists{/gist_id}","starred_url":"https://api.github.com/users/easlee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/easlee/subscriptions","organizations_url":"https://api.github.com/users/easlee/orgs","repos_url":"https://api.github.com/users/easlee/repos","events_url":"https://api.github.com/users/easlee/events{/privacy}","received_events_url":"https://api.github.com/users/easlee/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-12-31T16:19:26Z","updated_at":"2015-01-01T15:03:18Z","closed_at":"2015-01-01T15:03:18Z","body":"I have a problem when use flatbuffers, i define a fbs file, like this:\r\n \r\n```\r\nstruct Currency{\r\n id int32\r\n amount int32\r\n} \r\ntable Wallet{\r\n tag int32\r\n currencies []Currency\r\n}\r\ntable User{\r\n id int32\r\n wallets []Wallet\r\n}\r\n```\r\n\r\nI generate the buffer like this:\r\n\r\n```go\r\nbuilder := flatbuffers.NewBuilder(0)\r\nUserStartWalletsVector(builder, 3)\r\nfor i := 2; i >=0; i-- {\r\n WalletStartCurrenciesVector(builder, 3)\r\n for j := 2; j>=0;j-- {\r\n CreateCurrency(builder, j+1, 100)\r\n }\r\n currencies_vec := builder.EndVector(3)\r\n WalletStart(builder)\r\n WalletAddTag(i+1)\r\n WalletAddCurrencies(builder, currencies_vec)\r\n wallet := WalletEnd(builder)\r\n //How to add the wallet ???, I use follow code, but error \r\n builder.PrependUOffsetT(wallet)\r\n}\r\nwallets_vec := builder.EndVector(3)\r\n\r\nUserStart(builder)\r\nUserAddId(builder, 19)\r\nUserAddWalletsVector(builder, wallets_vec)\r\nuser := UserEnd(builder)\r\nbuilder.Finish(user)\r\n\r\nbuffer := builder.Bytes[builder:Head():]\r\n```\r\n\r\nI dont know how to add a table into a vector, in \"monster_test.fbs\", it has follow field:\r\n```\r\nline 39: testarrayoftables:[Monster] (id: 11);\r\n```\r\nbut none test case to show how to set it.\r\n\r\nWho knows how to solve it??"}},"public":true,"created_at":"2015-01-01T15:03:18Z","org":{"id":1342004,"login":"google","gravatar_id":"","url":"https://api.github.com/orgs/google","avatar_url":"https://avatars.githubusercontent.com/u/1342004?"}} +,{"id":"2489652591","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":"reopened","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:03:18Z","closed_at":null,"merged_at":null,"merge_commit_sha":"4c5e46652ee9c081144d8da174f4b0f65de76ec2","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:03:18Z"} +,{"id":"2489652593","type":"IssuesEvent","actor":{"id":7583891,"login":"Stickymayhem","gravatar_id":"","url":"https://api.github.com/users/Stickymayhem","avatar_url":"https://avatars.githubusercontent.com/u/7583891?"},"repo":{"id":3234987,"name":"tgstation/-tg-station","url":"https://api.github.com/repos/tgstation/-tg-station"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/tgstation/-tg-station/issues/6729","labels_url":"https://api.github.com/repos/tgstation/-tg-station/issues/6729/labels{/name}","comments_url":"https://api.github.com/repos/tgstation/-tg-station/issues/6729/comments","events_url":"https://api.github.com/repos/tgstation/-tg-station/issues/6729/events","html_url":"https://github.com/tgstation/-tg-station/issues/6729","id":53221397,"number":6729,"title":"Practice Laser shows up identically to the real laser in combat logs","user":{"login":"Stickymayhem","id":7583891,"avatar_url":"https://avatars.githubusercontent.com/u/7583891?v=3","gravatar_id":"","url":"https://api.github.com/users/Stickymayhem","html_url":"https://github.com/Stickymayhem","followers_url":"https://api.github.com/users/Stickymayhem/followers","following_url":"https://api.github.com/users/Stickymayhem/following{/other_user}","gists_url":"https://api.github.com/users/Stickymayhem/gists{/gist_id}","starred_url":"https://api.github.com/users/Stickymayhem/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Stickymayhem/subscriptions","organizations_url":"https://api.github.com/users/Stickymayhem/orgs","repos_url":"https://api.github.com/users/Stickymayhem/repos","events_url":"https://api.github.com/users/Stickymayhem/events{/privacy}","received_events_url":"https://api.github.com/users/Stickymayhem/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:03:18Z","updated_at":"2015-01-01T15:03:18Z","closed_at":null,"body":"[10:01:43] Has been shot by Blessed H. Legionare(blessedheretic) with The laser = null \r\n[10:02:09] Has been shot by Blessed H. Legionare(blessedheretic) with The laser = null\r\n\r\nOne is with the practice laser and one is with a real one. The projectile should probably be renamed."}},"public":true,"created_at":"2015-01-01T15:03:18Z","org":{"id":1363778,"login":"tgstation","gravatar_id":"","url":"https://api.github.com/orgs/tgstation","avatar_url":"https://avatars.githubusercontent.com/u/1363778?"}} +,{"id":"2489652594","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":536864689,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ececc624d8d4f3db531d8c2d53440bf9d02a59ed","before":"c22e54dce9ee06ce06dda79fa45e3c2f72217c8b","commits":[{"sha":"ececc624d8d4f3db531d8c2d53440bf9d02a59ed","author":{"email":"317c7c1ef217b4f2ad35892adef9a57fafb97e07@gmail.com","name":"buptjz"},"message":"添加注释","distinct":true,"url":"https://api.github.com/repos/buptjz/Pixel/commits/ececc624d8d4f3db531d8c2d53440bf9d02a59ed"}]},"public":true,"created_at":"2015-01-01T15:03:18Z"} +,{"id":"2489652600","type":"CreateEvent","actor":{"id":493276,"login":"k-okada","gravatar_id":"","url":"https://api.github.com/users/k-okada","avatar_url":"https://avatars.githubusercontent.com/u/493276?"},"repo":{"id":27212864,"name":"k-okada/gazebo_ros_pkgs","url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs"},"payload":{"ref":"add_package_to_model","ref_type":"branch","master_branch":"hydro-devel","description":"Wrappers, tools and additional API's for using ROS with Gazebo. Formally simulator_gazebo stack","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:20Z"} +,{"id":"2489652601","type":"PullRequestEvent","actor":{"id":10356326,"login":"e-rsh-p","gravatar_id":"","url":"https://api.github.com/users/e-rsh-p","avatar_url":"https://avatars.githubusercontent.com/u/10356326?"},"repo":{"id":2147969,"name":"ErshKUS/test","url":"https://api.github.com/repos/ErshKUS/test"},"payload":{"action":"opened","number":4,"pull_request":{"url":"https://api.github.com/repos/ErshKUS/test/pulls/4","id":26743792,"html_url":"https://github.com/ErshKUS/test/pull/4","diff_url":"https://github.com/ErshKUS/test/pull/4.diff","patch_url":"https://github.com/ErshKUS/test/pull/4.patch","issue_url":"https://api.github.com/repos/ErshKUS/test/issues/4","number":4,"state":"open","locked":false,"title":"первый пулл реквест","user":{"login":"e-rsh-p","id":10356326,"avatar_url":"https://avatars.githubusercontent.com/u/10356326?v=3","gravatar_id":"","url":"https://api.github.com/users/e-rsh-p","html_url":"https://github.com/e-rsh-p","followers_url":"https://api.github.com/users/e-rsh-p/followers","following_url":"https://api.github.com/users/e-rsh-p/following{/other_user}","gists_url":"https://api.github.com/users/e-rsh-p/gists{/gist_id}","starred_url":"https://api.github.com/users/e-rsh-p/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-rsh-p/subscriptions","organizations_url":"https://api.github.com/users/e-rsh-p/orgs","repos_url":"https://api.github.com/users/e-rsh-p/repos","events_url":"https://api.github.com/users/e-rsh-p/events{/privacy}","received_events_url":"https://api.github.com/users/e-rsh-p/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:03:20Z","updated_at":"2015-01-01T15:03:20Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/ErshKUS/test/pulls/4/commits","review_comments_url":"https://api.github.com/repos/ErshKUS/test/pulls/4/comments","review_comment_url":"https://api.github.com/repos/ErshKUS/test/pulls/comments/{number}","comments_url":"https://api.github.com/repos/ErshKUS/test/issues/4/comments","statuses_url":"https://api.github.com/repos/ErshKUS/test/statuses/fa45f59f067eb05dca6fc854c8d09a81de70bbfb","head":{"label":"e-rsh-p:master","ref":"master","sha":"fa45f59f067eb05dca6fc854c8d09a81de70bbfb","user":{"login":"e-rsh-p","id":10356326,"avatar_url":"https://avatars.githubusercontent.com/u/10356326?v=3","gravatar_id":"","url":"https://api.github.com/users/e-rsh-p","html_url":"https://github.com/e-rsh-p","followers_url":"https://api.github.com/users/e-rsh-p/followers","following_url":"https://api.github.com/users/e-rsh-p/following{/other_user}","gists_url":"https://api.github.com/users/e-rsh-p/gists{/gist_id}","starred_url":"https://api.github.com/users/e-rsh-p/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-rsh-p/subscriptions","organizations_url":"https://api.github.com/users/e-rsh-p/orgs","repos_url":"https://api.github.com/users/e-rsh-p/repos","events_url":"https://api.github.com/users/e-rsh-p/events{/privacy}","received_events_url":"https://api.github.com/users/e-rsh-p/received_events","type":"User","site_admin":false},"repo":{"id":28688502,"name":"test","full_name":"e-rsh-p/test","owner":{"login":"e-rsh-p","id":10356326,"avatar_url":"https://avatars.githubusercontent.com/u/10356326?v=3","gravatar_id":"","url":"https://api.github.com/users/e-rsh-p","html_url":"https://github.com/e-rsh-p","followers_url":"https://api.github.com/users/e-rsh-p/followers","following_url":"https://api.github.com/users/e-rsh-p/following{/other_user}","gists_url":"https://api.github.com/users/e-rsh-p/gists{/gist_id}","starred_url":"https://api.github.com/users/e-rsh-p/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-rsh-p/subscriptions","organizations_url":"https://api.github.com/users/e-rsh-p/orgs","repos_url":"https://api.github.com/users/e-rsh-p/repos","events_url":"https://api.github.com/users/e-rsh-p/events{/privacy}","received_events_url":"https://api.github.com/users/e-rsh-p/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/e-rsh-p/test","description":"","fork":true,"url":"https://api.github.com/repos/e-rsh-p/test","forks_url":"https://api.github.com/repos/e-rsh-p/test/forks","keys_url":"https://api.github.com/repos/e-rsh-p/test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/e-rsh-p/test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/e-rsh-p/test/teams","hooks_url":"https://api.github.com/repos/e-rsh-p/test/hooks","issue_events_url":"https://api.github.com/repos/e-rsh-p/test/issues/events{/number}","events_url":"https://api.github.com/repos/e-rsh-p/test/events","assignees_url":"https://api.github.com/repos/e-rsh-p/test/assignees{/user}","branches_url":"https://api.github.com/repos/e-rsh-p/test/branches{/branch}","tags_url":"https://api.github.com/repos/e-rsh-p/test/tags","blobs_url":"https://api.github.com/repos/e-rsh-p/test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/e-rsh-p/test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/e-rsh-p/test/git/refs{/sha}","trees_url":"https://api.github.com/repos/e-rsh-p/test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/e-rsh-p/test/statuses/{sha}","languages_url":"https://api.github.com/repos/e-rsh-p/test/languages","stargazers_url":"https://api.github.com/repos/e-rsh-p/test/stargazers","contributors_url":"https://api.github.com/repos/e-rsh-p/test/contributors","subscribers_url":"https://api.github.com/repos/e-rsh-p/test/subscribers","subscription_url":"https://api.github.com/repos/e-rsh-p/test/subscription","commits_url":"https://api.github.com/repos/e-rsh-p/test/commits{/sha}","git_commits_url":"https://api.github.com/repos/e-rsh-p/test/git/commits{/sha}","comments_url":"https://api.github.com/repos/e-rsh-p/test/comments{/number}","issue_comment_url":"https://api.github.com/repos/e-rsh-p/test/issues/comments/{number}","contents_url":"https://api.github.com/repos/e-rsh-p/test/contents/{+path}","compare_url":"https://api.github.com/repos/e-rsh-p/test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/e-rsh-p/test/merges","archive_url":"https://api.github.com/repos/e-rsh-p/test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/e-rsh-p/test/downloads","issues_url":"https://api.github.com/repos/e-rsh-p/test/issues{/number}","pulls_url":"https://api.github.com/repos/e-rsh-p/test/pulls{/number}","milestones_url":"https://api.github.com/repos/e-rsh-p/test/milestones{/number}","notifications_url":"https://api.github.com/repos/e-rsh-p/test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/e-rsh-p/test/labels{/name}","releases_url":"https://api.github.com/repos/e-rsh-p/test/releases{/id}","created_at":"2015-01-01T14:54:13Z","updated_at":"2014-12-31T08:31:09Z","pushed_at":"2015-01-01T14:59:33Z","git_url":"git://github.com/e-rsh-p/test.git","ssh_url":"git@github.com:e-rsh-p/test.git","clone_url":"https://github.com/e-rsh-p/test.git","svn_url":"https://github.com/e-rsh-p/test","homepage":"","size":152,"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":"ErshKUS:master","ref":"master","sha":"e930237191e5a922d3b976dd16d34a61371ab91a","user":{"login":"ErshKUS","id":873670,"avatar_url":"https://avatars.githubusercontent.com/u/873670?v=3","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","html_url":"https://github.com/ErshKUS","followers_url":"https://api.github.com/users/ErshKUS/followers","following_url":"https://api.github.com/users/ErshKUS/following{/other_user}","gists_url":"https://api.github.com/users/ErshKUS/gists{/gist_id}","starred_url":"https://api.github.com/users/ErshKUS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ErshKUS/subscriptions","organizations_url":"https://api.github.com/users/ErshKUS/orgs","repos_url":"https://api.github.com/users/ErshKUS/repos","events_url":"https://api.github.com/users/ErshKUS/events{/privacy}","received_events_url":"https://api.github.com/users/ErshKUS/received_events","type":"User","site_admin":false},"repo":{"id":2147969,"name":"test","full_name":"ErshKUS/test","owner":{"login":"ErshKUS","id":873670,"avatar_url":"https://avatars.githubusercontent.com/u/873670?v=3","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","html_url":"https://github.com/ErshKUS","followers_url":"https://api.github.com/users/ErshKUS/followers","following_url":"https://api.github.com/users/ErshKUS/following{/other_user}","gists_url":"https://api.github.com/users/ErshKUS/gists{/gist_id}","starred_url":"https://api.github.com/users/ErshKUS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ErshKUS/subscriptions","organizations_url":"https://api.github.com/users/ErshKUS/orgs","repos_url":"https://api.github.com/users/ErshKUS/repos","events_url":"https://api.github.com/users/ErshKUS/events{/privacy}","received_events_url":"https://api.github.com/users/ErshKUS/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ErshKUS/test","description":"","fork":false,"url":"https://api.github.com/repos/ErshKUS/test","forks_url":"https://api.github.com/repos/ErshKUS/test/forks","keys_url":"https://api.github.com/repos/ErshKUS/test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ErshKUS/test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ErshKUS/test/teams","hooks_url":"https://api.github.com/repos/ErshKUS/test/hooks","issue_events_url":"https://api.github.com/repos/ErshKUS/test/issues/events{/number}","events_url":"https://api.github.com/repos/ErshKUS/test/events","assignees_url":"https://api.github.com/repos/ErshKUS/test/assignees{/user}","branches_url":"https://api.github.com/repos/ErshKUS/test/branches{/branch}","tags_url":"https://api.github.com/repos/ErshKUS/test/tags","blobs_url":"https://api.github.com/repos/ErshKUS/test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ErshKUS/test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ErshKUS/test/git/refs{/sha}","trees_url":"https://api.github.com/repos/ErshKUS/test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ErshKUS/test/statuses/{sha}","languages_url":"https://api.github.com/repos/ErshKUS/test/languages","stargazers_url":"https://api.github.com/repos/ErshKUS/test/stargazers","contributors_url":"https://api.github.com/repos/ErshKUS/test/contributors","subscribers_url":"https://api.github.com/repos/ErshKUS/test/subscribers","subscription_url":"https://api.github.com/repos/ErshKUS/test/subscription","commits_url":"https://api.github.com/repos/ErshKUS/test/commits{/sha}","git_commits_url":"https://api.github.com/repos/ErshKUS/test/git/commits{/sha}","comments_url":"https://api.github.com/repos/ErshKUS/test/comments{/number}","issue_comment_url":"https://api.github.com/repos/ErshKUS/test/issues/comments/{number}","contents_url":"https://api.github.com/repos/ErshKUS/test/contents/{+path}","compare_url":"https://api.github.com/repos/ErshKUS/test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ErshKUS/test/merges","archive_url":"https://api.github.com/repos/ErshKUS/test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ErshKUS/test/downloads","issues_url":"https://api.github.com/repos/ErshKUS/test/issues{/number}","pulls_url":"https://api.github.com/repos/ErshKUS/test/pulls{/number}","milestones_url":"https://api.github.com/repos/ErshKUS/test/milestones{/number}","notifications_url":"https://api.github.com/repos/ErshKUS/test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ErshKUS/test/labels{/name}","releases_url":"https://api.github.com/repos/ErshKUS/test/releases{/id}","created_at":"2011-08-03T10:52:46Z","updated_at":"2014-12-31T08:31:09Z","pushed_at":"2015-01-01T14:53:47Z","git_url":"git://github.com/ErshKUS/test.git","ssh_url":"git@github.com:ErshKUS/test.git","clone_url":"https://github.com/ErshKUS/test.git","svn_url":"https://github.com/ErshKUS/test","homepage":"","size":152,"stargazers_count":1,"watchers_count":1,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":1,"forks":1,"open_issues":1,"watchers":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/4"},"html":{"href":"https://github.com/ErshKUS/test/pull/4"},"issue":{"href":"https://api.github.com/repos/ErshKUS/test/issues/4"},"comments":{"href":"https://api.github.com/repos/ErshKUS/test/issues/4/comments"},"review_comments":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/4/comments"},"review_comment":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/4/commits"},"statuses":{"href":"https://api.github.com/repos/ErshKUS/test/statuses/fa45f59f067eb05dca6fc854c8d09a81de70bbfb"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":2,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:03:20Z"} +,{"id":"2489652602","type":"WatchEvent","actor":{"id":160202,"login":"UniIsland","gravatar_id":"","url":"https://api.github.com/users/UniIsland","avatar_url":"https://avatars.githubusercontent.com/u/160202?"},"repo":{"id":19821524,"name":"lexrus/vpn-deploy-playbook","url":"https://api.github.com/repos/lexrus/vpn-deploy-playbook"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:20Z"} +,{"id":"2489652603","type":"CreateEvent","actor":{"id":10292498,"login":"PetrNSK","gravatar_id":"","url":"https://api.github.com/users/PetrNSK","avatar_url":"https://avatars.githubusercontent.com/u/10292498?"},"repo":{"id":28688486,"name":"PetrNSK/lessons","url":"https://api.github.com/repos/PetrNSK/lessons"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"xaver lessons","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:20Z"} +,{"id":"2489652606","type":"CreateEvent","actor":{"id":10103990,"login":"nadavwe","gravatar_id":"","url":"https://api.github.com/users/nadavwe","avatar_url":"https://avatars.githubusercontent.com/u/10103990?"},"repo":{"id":28688656,"name":"nadavwe/goos","url":"https://api.github.com/repos/nadavwe/goos"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"my try at goos in scala","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:21Z"} +,{"id":"2489652609","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":28688520,"name":"lihechao/ARPSpoofing","url":"https://api.github.com/repos/lihechao/ARPSpoofing"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"程序实现ARP欺骗","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:21Z"} +,{"id":"2489652611","type":"PushEvent","actor":{"id":4610612,"login":"Wall-Dough","gravatar_id":"","url":"https://api.github.com/users/Wall-Dough","avatar_url":"https://avatars.githubusercontent.com/u/4610612?"},"repo":{"id":27177551,"name":"Wall-Dough/infinite-monkeys","url":"https://api.github.com/repos/Wall-Dough/infinite-monkeys"},"payload":{"push_id":536864699,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"3ff74dc20d37bf373c76289ad2ea7257a000e28b","before":"49c1cfcb35ce0359fabfed5f1466e0c57c47617c","commits":[{"sha":"3ff74dc20d37bf373c76289ad2ea7257a000e28b","author":{"email":"623372bcd722ceb16f7e85d758f89088b76f922e@gmail.com","name":"Wall-Dough"},"message":"Update code.js","distinct":true,"url":"https://api.github.com/repos/Wall-Dough/infinite-monkeys/commits/3ff74dc20d37bf373c76289ad2ea7257a000e28b"}]},"public":true,"created_at":"2015-01-01T15:03:22Z"} +,{"id":"2489652613","type":"WatchEvent","actor":{"id":8217988,"login":"omriSaadon","gravatar_id":"","url":"https://api.github.com/users/omriSaadon","avatar_url":"https://avatars.githubusercontent.com/u/8217988?"},"repo":{"id":24967991,"name":"lingthio/Flask-User-starter-app","url":"https://api.github.com/repos/lingthio/Flask-User-starter-app"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:22Z"} +,{"id":"2489652614","type":"PullRequestEvent","actor":{"id":5488330,"login":"Kameshwaran","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","avatar_url":"https://avatars.githubusercontent.com/u/5488330?"},"repo":{"id":27391432,"name":"Kameshwaran/Kameshwaran.github.io","url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io"},"payload":{"action":"opened","number":5,"pull_request":{"url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/5","id":26743794,"html_url":"https://github.com/Kameshwaran/Kameshwaran.github.io/pull/5","diff_url":"https://github.com/Kameshwaran/Kameshwaran.github.io/pull/5.diff","patch_url":"https://github.com/Kameshwaran/Kameshwaran.github.io/pull/5.patch","issue_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/5","number":5,"state":"open","locked":false,"title":"searching in hash blog added","user":{"login":"Kameshwaran","id":5488330,"avatar_url":"https://avatars.githubusercontent.com/u/5488330?v=3","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","html_url":"https://github.com/Kameshwaran","followers_url":"https://api.github.com/users/Kameshwaran/followers","following_url":"https://api.github.com/users/Kameshwaran/following{/other_user}","gists_url":"https://api.github.com/users/Kameshwaran/gists{/gist_id}","starred_url":"https://api.github.com/users/Kameshwaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kameshwaran/subscriptions","organizations_url":"https://api.github.com/users/Kameshwaran/orgs","repos_url":"https://api.github.com/users/Kameshwaran/repos","events_url":"https://api.github.com/users/Kameshwaran/events{/privacy}","received_events_url":"https://api.github.com/users/Kameshwaran/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:03:22Z","updated_at":"2015-01-01T15:03:22Z","closed_at":null,"merged_at":null,"merge_commit_sha":"04c6b44cadc8481dd6e7868243d6789b6cc3cbc5","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/5/commits","review_comments_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/5/comments","review_comment_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/comments/{number}","comments_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/5/comments","statuses_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/statuses/256440fe020a94930b08762daaa17564d54aa699","head":{"label":"Kameshwaran:rectify","ref":"rectify","sha":"256440fe020a94930b08762daaa17564d54aa699","user":{"login":"Kameshwaran","id":5488330,"avatar_url":"https://avatars.githubusercontent.com/u/5488330?v=3","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","html_url":"https://github.com/Kameshwaran","followers_url":"https://api.github.com/users/Kameshwaran/followers","following_url":"https://api.github.com/users/Kameshwaran/following{/other_user}","gists_url":"https://api.github.com/users/Kameshwaran/gists{/gist_id}","starred_url":"https://api.github.com/users/Kameshwaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kameshwaran/subscriptions","organizations_url":"https://api.github.com/users/Kameshwaran/orgs","repos_url":"https://api.github.com/users/Kameshwaran/repos","events_url":"https://api.github.com/users/Kameshwaran/events{/privacy}","received_events_url":"https://api.github.com/users/Kameshwaran/received_events","type":"User","site_admin":false},"repo":{"id":27391432,"name":"Kameshwaran.github.io","full_name":"Kameshwaran/Kameshwaran.github.io","owner":{"login":"Kameshwaran","id":5488330,"avatar_url":"https://avatars.githubusercontent.com/u/5488330?v=3","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","html_url":"https://github.com/Kameshwaran","followers_url":"https://api.github.com/users/Kameshwaran/followers","following_url":"https://api.github.com/users/Kameshwaran/following{/other_user}","gists_url":"https://api.github.com/users/Kameshwaran/gists{/gist_id}","starred_url":"https://api.github.com/users/Kameshwaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kameshwaran/subscriptions","organizations_url":"https://api.github.com/users/Kameshwaran/orgs","repos_url":"https://api.github.com/users/Kameshwaran/repos","events_url":"https://api.github.com/users/Kameshwaran/events{/privacy}","received_events_url":"https://api.github.com/users/Kameshwaran/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Kameshwaran/Kameshwaran.github.io","description":"A website for my own blogs","fork":false,"url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io","forks_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/forks","keys_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/teams","hooks_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/hooks","issue_events_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/events","assignees_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/tags","blobs_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/languages","stargazers_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/stargazers","contributors_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/contributors","subscribers_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/subscribers","subscription_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/subscription","commits_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/merges","archive_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/downloads","issues_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/labels{/name}","releases_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/releases{/id}","created_at":"2014-12-01T17:40:23Z","updated_at":"2015-01-01T07:45:06Z","pushed_at":"2015-01-01T14:26:06Z","git_url":"git://github.com/Kameshwaran/Kameshwaran.github.io.git","ssh_url":"git@github.com:Kameshwaran/Kameshwaran.github.io.git","clone_url":"https://github.com/Kameshwaran/Kameshwaran.github.io.git","svn_url":"https://github.com/Kameshwaran/Kameshwaran.github.io","homepage":"http://codebrahma.com","size":192,"stargazers_count":0,"watchers_count":0,"language":"CSS","has_issues":true,"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"}},"base":{"label":"Kameshwaran:master","ref":"master","sha":"6cd627790db997325644d0ec0e46d658381cf929","user":{"login":"Kameshwaran","id":5488330,"avatar_url":"https://avatars.githubusercontent.com/u/5488330?v=3","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","html_url":"https://github.com/Kameshwaran","followers_url":"https://api.github.com/users/Kameshwaran/followers","following_url":"https://api.github.com/users/Kameshwaran/following{/other_user}","gists_url":"https://api.github.com/users/Kameshwaran/gists{/gist_id}","starred_url":"https://api.github.com/users/Kameshwaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kameshwaran/subscriptions","organizations_url":"https://api.github.com/users/Kameshwaran/orgs","repos_url":"https://api.github.com/users/Kameshwaran/repos","events_url":"https://api.github.com/users/Kameshwaran/events{/privacy}","received_events_url":"https://api.github.com/users/Kameshwaran/received_events","type":"User","site_admin":false},"repo":{"id":27391432,"name":"Kameshwaran.github.io","full_name":"Kameshwaran/Kameshwaran.github.io","owner":{"login":"Kameshwaran","id":5488330,"avatar_url":"https://avatars.githubusercontent.com/u/5488330?v=3","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","html_url":"https://github.com/Kameshwaran","followers_url":"https://api.github.com/users/Kameshwaran/followers","following_url":"https://api.github.com/users/Kameshwaran/following{/other_user}","gists_url":"https://api.github.com/users/Kameshwaran/gists{/gist_id}","starred_url":"https://api.github.com/users/Kameshwaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kameshwaran/subscriptions","organizations_url":"https://api.github.com/users/Kameshwaran/orgs","repos_url":"https://api.github.com/users/Kameshwaran/repos","events_url":"https://api.github.com/users/Kameshwaran/events{/privacy}","received_events_url":"https://api.github.com/users/Kameshwaran/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Kameshwaran/Kameshwaran.github.io","description":"A website for my own blogs","fork":false,"url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io","forks_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/forks","keys_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/teams","hooks_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/hooks","issue_events_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/events","assignees_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/tags","blobs_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/languages","stargazers_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/stargazers","contributors_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/contributors","subscribers_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/subscribers","subscription_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/subscription","commits_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/merges","archive_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/downloads","issues_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/labels{/name}","releases_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/releases{/id}","created_at":"2014-12-01T17:40:23Z","updated_at":"2015-01-01T07:45:06Z","pushed_at":"2015-01-01T14:26:06Z","git_url":"git://github.com/Kameshwaran/Kameshwaran.github.io.git","ssh_url":"git@github.com:Kameshwaran/Kameshwaran.github.io.git","clone_url":"https://github.com/Kameshwaran/Kameshwaran.github.io.git","svn_url":"https://github.com/Kameshwaran/Kameshwaran.github.io","homepage":"http://codebrahma.com","size":192,"stargazers_count":0,"watchers_count":0,"language":"CSS","has_issues":true,"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/Kameshwaran/Kameshwaran.github.io/pulls/5"},"html":{"href":"https://github.com/Kameshwaran/Kameshwaran.github.io/pull/5"},"issue":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/5"},"comments":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/5/comments"},"review_comments":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/5/comments"},"review_comment":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/5/commits"},"statuses":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/statuses/256440fe020a94930b08762daaa17564d54aa699"}},"merged":false,"mergeable":true,"mergeable_state":"clean","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":45,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:03:22Z"} +,{"id":"2489652615","type":"PushEvent","actor":{"id":6264394,"login":"vinhtho","gravatar_id":"","url":"https://api.github.com/users/vinhtho","avatar_url":"https://avatars.githubusercontent.com/u/6264394?"},"repo":{"id":18364364,"name":"vinhtho/DDAE","url":"https://api.github.com/repos/vinhtho/DDAE"},"payload":{"push_id":536864701,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8355fa77b933ea5c099a9cecab04148a9f54b8c3","before":"2c2b9976f92b255ae515e6a72089c71c2e393110","commits":[{"sha":"8355fa77b933ea5c099a9cecab04148a9f54b8c3","author":{"email":"37fa60b27cf3dbeaf65ceb6a6fff1f67c4cbaede@hotmail.de","name":"vinhtho"},"message":"updated comments in colddae_","distinct":true,"url":"https://api.github.com/repos/vinhtho/DDAE/commits/8355fa77b933ea5c099a9cecab04148a9f54b8c3"}]},"public":true,"created_at":"2015-01-01T15:03:22Z"} +,{"id":"2489652616","type":"PushEvent","actor":{"id":7846085,"login":"234satwant","gravatar_id":"","url":"https://api.github.com/users/234satwant","avatar_url":"https://avatars.githubusercontent.com/u/7846085?"},"repo":{"id":28688279,"name":"234satwant/std-flt-converter","url":"https://api.github.com/repos/234satwant/std-flt-converter"},"payload":{"push_id":536864700,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cea5d3e146dcf69132c7412aea23e1d49f0e9130","before":"05a3a2aee46e6fdfd626dd03b5a2c8578c4b6bb4","commits":[{"sha":"cea5d3e146dcf69132c7412aea23e1d49f0e9130","author":{"email":"32d11cdd6a38f6d28e36ceef7a59570806bd213c@gmail.com","name":"234satwant"},"message":"Update parser.y","distinct":true,"url":"https://api.github.com/repos/234satwant/std-flt-converter/commits/cea5d3e146dcf69132c7412aea23e1d49f0e9130"}]},"public":true,"created_at":"2015-01-01T15:03:22Z"} +,{"id":"2489652618","type":"CreateEvent","actor":{"id":299901,"login":"dankempster","gravatar_id":"","url":"https://api.github.com/users/dankempster","avatar_url":"https://avatars.githubusercontent.com/u/299901?"},"repo":{"id":28648383,"name":"dankempster/axstrad-filesystem","url":"https://api.github.com/repos/dankempster/axstrad-filesystem"},"payload":{"ref":"add-coveralls","ref_type":"branch","master_branch":"develop","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:23Z"} +,{"id":"2489652620","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":536864704,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8808c8b6dd8f48f5ef7db0ce493135e6b0386b30","before":"2cc8c3e6daa29c0cf8b1f1b20e0fd56c2c40b03b","commits":[{"sha":"8808c8b6dd8f48f5ef7db0ce493135e6b0386b30","author":{"email":"be51eeb01ab0ddac52571dd736dd0fd5d13a6a37@gmail.com","name":"Gudakesh Ankur Vatsa"},"message":"Create IPalindrome.java","distinct":true,"url":"https://api.github.com/repos/vatsaaa/mycodesnips/commits/8808c8b6dd8f48f5ef7db0ce493135e6b0386b30"}]},"public":true,"created_at":"2015-01-01T15:03:23Z"} +,{"id":"2489652622","type":"PushEvent","actor":{"id":2377920,"login":"yositani2002","gravatar_id":"","url":"https://api.github.com/users/yositani2002","avatar_url":"https://avatars.githubusercontent.com/u/2377920?"},"repo":{"id":15282557,"name":"webwarejp/openpp","url":"https://api.github.com/repos/webwarejp/openpp"},"payload":{"push_id":536864706,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c7d091c96786002d8f5ada1cbbb22bb1e91889b0","before":"8b473c635371c2d5f92de2493721f6b07171ffc1","commits":[{"sha":"c7d091c96786002d8f5ada1cbbb22bb1e91889b0","author":{"email":"44a4a50b74edbd9b13a7396f2c9d1651b1602495@gmail.com","name":"yositani2002"},"message":"change bundle name . change user admin class.\nadd any fix","distinct":true,"url":"https://api.github.com/repos/webwarejp/openpp/commits/c7d091c96786002d8f5ada1cbbb22bb1e91889b0"}]},"public":true,"created_at":"2015-01-01T15:03:23Z","org":{"id":5088333,"login":"webwarejp","gravatar_id":"","url":"https://api.github.com/orgs/webwarejp","avatar_url":"https://avatars.githubusercontent.com/u/5088333?"}} +,{"id":"2489652626","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":536864708,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b63e3e7a27830cafe46d3ba2b4b5f450367a8b91","before":"34b160373f3f3c724d2e19d86b64fae26fe24224","commits":[{"sha":"b63e3e7a27830cafe46d3ba2b4b5f450367a8b91","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420124602534\n\nHu+CQhfWJuemBrVfNBwy5bKMAEfgn/wmYHhOYYP2lX8=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/b63e3e7a27830cafe46d3ba2b4b5f450367a8b91"}]},"public":true,"created_at":"2015-01-01T15:03:24Z"} +,{"id":"2489652629","type":"PushEvent","actor":{"id":760627,"login":"tsu-nera","gravatar_id":"","url":"https://api.github.com/users/tsu-nera","avatar_url":"https://avatars.githubusercontent.com/u/760627?"},"repo":{"id":18728048,"name":"tsu-nera/futurismo","url":"https://api.github.com/repos/tsu-nera/futurismo"},"payload":{"push_id":536864711,"size":1,"distinct_size":1,"ref":"refs/heads/main","head":"fdaf4ad42a7717fdf841b86ae7ae21edbd0901ba","before":"179f91c6789b894afa557141420bdfbefe3cc74a","commits":[{"sha":"fdaf4ad42a7717fdf841b86ae7ae21edbd0901ba","author":{"email":"9976a0541de5240960548e0676fed9769cd87143@gmail.com","name":"tsu-nera"},"message":"update","distinct":true,"url":"https://api.github.com/repos/tsu-nera/futurismo/commits/fdaf4ad42a7717fdf841b86ae7ae21edbd0901ba"}]},"public":true,"created_at":"2015-01-01T15:03:24Z"} +,{"id":"2489652630","type":"WatchEvent","actor":{"id":641718,"login":"hebl","gravatar_id":"","url":"https://api.github.com/users/hebl","avatar_url":"https://avatars.githubusercontent.com/u/641718?"},"repo":{"id":1606665,"name":"xoxco/jQuery-Tags-Input","url":"https://api.github.com/repos/xoxco/jQuery-Tags-Input"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:24Z","org":{"id":725866,"login":"xoxco","gravatar_id":"","url":"https://api.github.com/orgs/xoxco","avatar_url":"https://avatars.githubusercontent.com/u/725866?"}} +,{"id":"2489652631","type":"IssuesEvent","actor":{"id":3893707,"login":"skyhills13","gravatar_id":"","url":"https://api.github.com/users/skyhills13","avatar_url":"https://avatars.githubusercontent.com/u/3893707?"},"repo":{"id":23691347,"name":"skyhills13/PhotoMosaic","url":"https://api.github.com/repos/skyhills13/PhotoMosaic"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/skyhills13/PhotoMosaic/issues/224","labels_url":"https://api.github.com/repos/skyhills13/PhotoMosaic/issues/224/labels{/name}","comments_url":"https://api.github.com/repos/skyhills13/PhotoMosaic/issues/224/comments","events_url":"https://api.github.com/repos/skyhills13/PhotoMosaic/issues/224/events","html_url":"https://github.com/skyhills13/PhotoMosaic/issues/224","id":53221401,"number":224,"title":"Filedatahandler refactoring","user":{"login":"skyhills13","id":3893707,"avatar_url":"https://avatars.githubusercontent.com/u/3893707?v=3","gravatar_id":"","url":"https://api.github.com/users/skyhills13","html_url":"https://github.com/skyhills13","followers_url":"https://api.github.com/users/skyhills13/followers","following_url":"https://api.github.com/users/skyhills13/following{/other_user}","gists_url":"https://api.github.com/users/skyhills13/gists{/gist_id}","starred_url":"https://api.github.com/users/skyhills13/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skyhills13/subscriptions","organizations_url":"https://api.github.com/users/skyhills13/orgs","repos_url":"https://api.github.com/users/skyhills13/repos","events_url":"https://api.github.com/users/skyhills13/events{/privacy}","received_events_url":"https://api.github.com/users/skyhills13/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/skyhills13/PhotoMosaic/labels/%E2%98%85","name":"★","color":"e11d21"},{"url":"https://api.github.com/repos/skyhills13/PhotoMosaic/labels/%EA%B0%9C%EC%84%A0","name":"개선","color":"009800"},{"url":"https://api.github.com/repos/skyhills13/PhotoMosaic/labels/%EB%B6%84%EC%95%BC%3A+Server","name":"분야: Server","color":"fbca04"}],"state":"open","locked":false,"assignee":{"login":"skyhills13","id":3893707,"avatar_url":"https://avatars.githubusercontent.com/u/3893707?v=3","gravatar_id":"","url":"https://api.github.com/users/skyhills13","html_url":"https://github.com/skyhills13","followers_url":"https://api.github.com/users/skyhills13/followers","following_url":"https://api.github.com/users/skyhills13/following{/other_user}","gists_url":"https://api.github.com/users/skyhills13/gists{/gist_id}","starred_url":"https://api.github.com/users/skyhills13/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skyhills13/subscriptions","organizations_url":"https://api.github.com/users/skyhills13/orgs","repos_url":"https://api.github.com/users/skyhills13/repos","events_url":"https://api.github.com/users/skyhills13/events{/privacy}","received_events_url":"https://api.github.com/users/skyhills13/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/skyhills13/PhotoMosaic/milestones/14","labels_url":"https://api.github.com/repos/skyhills13/PhotoMosaic/milestones/14/labels","id":919110,"number":14,"title":"Refactoring","description":"refactoring by skyhills13","creator":{"login":"skyhills13","id":3893707,"avatar_url":"https://avatars.githubusercontent.com/u/3893707?v=3","gravatar_id":"","url":"https://api.github.com/users/skyhills13","html_url":"https://github.com/skyhills13","followers_url":"https://api.github.com/users/skyhills13/followers","following_url":"https://api.github.com/users/skyhills13/following{/other_user}","gists_url":"https://api.github.com/users/skyhills13/gists{/gist_id}","starred_url":"https://api.github.com/users/skyhills13/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skyhills13/subscriptions","organizations_url":"https://api.github.com/users/skyhills13/orgs","repos_url":"https://api.github.com/users/skyhills13/repos","events_url":"https://api.github.com/users/skyhills13/events{/privacy}","received_events_url":"https://api.github.com/users/skyhills13/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":1,"state":"open","created_at":"2015-01-01T14:39:31Z","updated_at":"2015-01-01T15:03:24Z","due_on":"2015-02-27T15:00:00Z","closed_at":null},"comments":0,"created_at":"2015-01-01T15:03:24Z","updated_at":"2015-01-01T15:03:24Z","closed_at":null,"body":"method를 object에게 위임하여 더 객체지향적으로 설계"}},"public":true,"created_at":"2015-01-01T15:03:24Z"} +,{"id":"2489652636","type":"CreateEvent","actor":{"id":1548494,"login":"dibyendumajumdar","gravatar_id":"","url":"https://api.github.com/users/dibyendumajumdar","avatar_url":"https://avatars.githubusercontent.com/u/1548494?"},"repo":{"id":28688657,"name":"dibyendumajumdar/ravi","url":"https://api.github.com/repos/dibyendumajumdar/ravi"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Experimental derivative of Lua","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:24Z"} +,{"id":"2489652637","type":"IssueCommentEvent","actor":{"id":703355,"login":"mschaaf","gravatar_id":"","url":"https://api.github.com/users/mschaaf","avatar_url":"https://avatars.githubusercontent.com/u/703355?"},"repo":{"id":13252497,"name":"Dica-Developer/generator-node-webkit","url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/57","labels_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/57/labels{/name}","comments_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/57/comments","events_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/57/events","html_url":"https://github.com/Dica-Developer/generator-node-webkit/issues/57","id":49583895,"number":57,"title":"issue when running dist application on ubuntu 64","user":{"login":"hems","id":27327,"avatar_url":"https://avatars.githubusercontent.com/u/27327?v=3","gravatar_id":"","url":"https://api.github.com/users/hems","html_url":"https://github.com/hems","followers_url":"https://api.github.com/users/hems/followers","following_url":"https://api.github.com/users/hems/following{/other_user}","gists_url":"https://api.github.com/users/hems/gists{/gist_id}","starred_url":"https://api.github.com/users/hems/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hems/subscriptions","organizations_url":"https://api.github.com/users/hems/orgs","repos_url":"https://api.github.com/users/hems/repos","events_url":"https://api.github.com/users/hems/events{/privacy}","received_events_url":"https://api.github.com/users/hems/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2014-11-20T16:57:56Z","updated_at":"2015-01-01T15:03:24Z","closed_at":"2015-01-01T15:03:24Z","body":"I just did \"grunt dist-linux\", then moved the files from my darwin to linux, and then when trying to execute i get this error message\r\n\r\n````\r\n./node-webkit \r\n[2159:1120/165651:ERROR:icu_util.cc(149)] Couldn't mmap /home/beaglert/Desktop/Linux64/icudtl.dat\r\n[2159:1120/165651:FATAL:content_main_runner.cc(716)] Check failed: base::i18n::InitializeICU(). \r\nAborted (core dumped)\r\n````\r\n\r\nAm i supposed to build the linux dist on a linux computer ?\r\n\r\nShall I try use a different version of node-webkit bin ?"},"comment":{"url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/comments/68488551","html_url":"https://github.com/Dica-Developer/generator-node-webkit/issues/57#issuecomment-68488551","issue_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/57","id":68488551,"user":{"login":"mschaaf","id":703355,"avatar_url":"https://avatars.githubusercontent.com/u/703355?v=3","gravatar_id":"","url":"https://api.github.com/users/mschaaf","html_url":"https://github.com/mschaaf","followers_url":"https://api.github.com/users/mschaaf/followers","following_url":"https://api.github.com/users/mschaaf/following{/other_user}","gists_url":"https://api.github.com/users/mschaaf/gists{/gist_id}","starred_url":"https://api.github.com/users/mschaaf/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mschaaf/subscriptions","organizations_url":"https://api.github.com/users/mschaaf/orgs","repos_url":"https://api.github.com/users/mschaaf/repos","events_url":"https://api.github.com/users/mschaaf/events{/privacy}","received_events_url":"https://api.github.com/users/mschaaf/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:24Z","updated_at":"2015-01-01T15:03:24Z","body":"Thank you @arminhammer for the patch its merged"}},"public":true,"created_at":"2015-01-01T15:03:24Z","org":{"id":1409907,"login":"Dica-Developer","gravatar_id":"","url":"https://api.github.com/orgs/Dica-Developer","avatar_url":"https://avatars.githubusercontent.com/u/1409907?"}} +,{"id":"2489652638","type":"IssuesEvent","actor":{"id":703355,"login":"mschaaf","gravatar_id":"","url":"https://api.github.com/users/mschaaf","avatar_url":"https://avatars.githubusercontent.com/u/703355?"},"repo":{"id":13252497,"name":"Dica-Developer/generator-node-webkit","url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/57","labels_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/57/labels{/name}","comments_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/57/comments","events_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/57/events","html_url":"https://github.com/Dica-Developer/generator-node-webkit/issues/57","id":49583895,"number":57,"title":"issue when running dist application on ubuntu 64","user":{"login":"hems","id":27327,"avatar_url":"https://avatars.githubusercontent.com/u/27327?v=3","gravatar_id":"","url":"https://api.github.com/users/hems","html_url":"https://github.com/hems","followers_url":"https://api.github.com/users/hems/followers","following_url":"https://api.github.com/users/hems/following{/other_user}","gists_url":"https://api.github.com/users/hems/gists{/gist_id}","starred_url":"https://api.github.com/users/hems/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hems/subscriptions","organizations_url":"https://api.github.com/users/hems/orgs","repos_url":"https://api.github.com/users/hems/repos","events_url":"https://api.github.com/users/hems/events{/privacy}","received_events_url":"https://api.github.com/users/hems/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2014-11-20T16:57:56Z","updated_at":"2015-01-01T15:03:24Z","closed_at":"2015-01-01T15:03:24Z","body":"I just did \"grunt dist-linux\", then moved the files from my darwin to linux, and then when trying to execute i get this error message\r\n\r\n````\r\n./node-webkit \r\n[2159:1120/165651:ERROR:icu_util.cc(149)] Couldn't mmap /home/beaglert/Desktop/Linux64/icudtl.dat\r\n[2159:1120/165651:FATAL:content_main_runner.cc(716)] Check failed: base::i18n::InitializeICU(). \r\nAborted (core dumped)\r\n````\r\n\r\nAm i supposed to build the linux dist on a linux computer ?\r\n\r\nShall I try use a different version of node-webkit bin ?"}},"public":true,"created_at":"2015-01-01T15:03:24Z","org":{"id":1409907,"login":"Dica-Developer","gravatar_id":"","url":"https://api.github.com/orgs/Dica-Developer","avatar_url":"https://avatars.githubusercontent.com/u/1409907?"}} +,{"id":"2489652639","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":536864712,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ce43e0c4202c607f17925699c0f8212855585392","before":"43b8b2d09a03eab6e0d1f27f7c8c645b72eb5391","commits":[{"sha":"ce43e0c4202c607f17925699c0f8212855585392","author":{"email":"de163e90d3aeef9f404d1de71c48e234a211e3c3@gmail.com","name":"KT"},"message":"Update","distinct":true,"url":"https://api.github.com/repos/qdm/qdm.github.io/commits/ce43e0c4202c607f17925699c0f8212855585392"}]},"public":true,"created_at":"2015-01-01T15:03:24Z"} +,{"id":"2489652641","type":"WatchEvent","actor":{"id":2844,"login":"stem","gravatar_id":"","url":"https://api.github.com/users/stem","avatar_url":"https://avatars.githubusercontent.com/u/2844?"},"repo":{"id":26066727,"name":"knsv/mermaid","url":"https://api.github.com/repos/knsv/mermaid"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:25Z"} +,{"id":"2489652645","type":"PushEvent","actor":{"id":4897842,"login":"aiya000","gravatar_id":"","url":"https://api.github.com/users/aiya000","avatar_url":"https://avatars.githubusercontent.com/u/4897842?"},"repo":{"id":23388672,"name":"aiya000/dotfiles","url":"https://api.github.com/repos/aiya000/dotfiles"},"payload":{"push_id":536864715,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"294eab71e173a6e594ffcfe78f9fd4a36aa5f0cc","before":"01734cab8e35e794c855e456510f037c60d87d5c","commits":[{"sha":"294eab71e173a6e594ffcfe78f9fd4a36aa5f0cc","author":{"email":"62b7be0f4091fe1dc13d7236d1aa371af3f368b5@gmail.com","name":"aiya000"},"message":"Added an alias","distinct":true,"url":"https://api.github.com/repos/aiya000/dotfiles/commits/294eab71e173a6e594ffcfe78f9fd4a36aa5f0cc"}]},"public":true,"created_at":"2015-01-01T15:03:25Z"} +,{"id":"2489652646","type":"CreateEvent","actor":{"id":10110526,"login":"beckypdata","gravatar_id":"","url":"https://api.github.com/users/beckypdata","avatar_url":"https://avatars.githubusercontent.com/u/10110526?"},"repo":{"id":28688658,"name":"beckypdata/WorkbenchGUI","url":"https://api.github.com/repos/beckypdata/WorkbenchGUI"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:25Z"} +,{"id":"2489652648","type":"IssueCommentEvent","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":"created","issue":{"url":"https://api.github.com/repos/andreasgal/j2me.js/issues/780","labels_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/780/labels{/name}","comments_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/780/comments","events_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/780/events","html_url":"https://github.com/andreasgal/j2me.js/issues/780","id":52758012,"number":780,"title":"Print page contents when fs tests fail","user":{"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},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-23T17:15:06Z","updated_at":"2015-01-01T15:03:26Z","closed_at":"2015-01-01T15:03:26Z","body":"We should do something like what we do for http://localhost:8000/index.html in tests/automation.js"},"comment":{"url":"https://api.github.com/repos/andreasgal/j2me.js/issues/comments/68488552","html_url":"https://github.com/andreasgal/j2me.js/issues/780#issuecomment-68488552","issue_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/780","id":68488552,"user":{"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},"created_at":"2015-01-01T15:03:26Z","updated_at":"2015-01-01T15:03:26Z","body":"Should be fixed by #807 (@myk, correct me if I'm wrong)"}},"public":true,"created_at":"2015-01-01T15:03:27Z"} +,{"id":"2489652649","type":"IssuesEvent","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","issue":{"url":"https://api.github.com/repos/andreasgal/j2me.js/issues/780","labels_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/780/labels{/name}","comments_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/780/comments","events_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/780/events","html_url":"https://github.com/andreasgal/j2me.js/issues/780","id":52758012,"number":780,"title":"Print page contents when fs tests fail","user":{"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},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-23T17:15:06Z","updated_at":"2015-01-01T15:03:26Z","closed_at":"2015-01-01T15:03:26Z","body":"We should do something like what we do for http://localhost:8000/index.html in tests/automation.js"}},"public":true,"created_at":"2015-01-01T15:03:27Z"} +,{"id":"2489652650","type":"WatchEvent","actor":{"id":62787,"login":"bolstad","gravatar_id":"","url":"https://api.github.com/users/bolstad","avatar_url":"https://avatars.githubusercontent.com/u/62787?"},"repo":{"id":6297520,"name":"quantopian/zipline","url":"https://api.github.com/repos/quantopian/zipline"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:27Z","org":{"id":1393215,"login":"quantopian","gravatar_id":"","url":"https://api.github.com/orgs/quantopian","avatar_url":"https://avatars.githubusercontent.com/u/1393215?"}} +,{"id":"2489652652","type":"PullRequestEvent","actor":{"id":5488330,"login":"Kameshwaran","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","avatar_url":"https://avatars.githubusercontent.com/u/5488330?"},"repo":{"id":27391432,"name":"Kameshwaran/Kameshwaran.github.io","url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io"},"payload":{"action":"closed","number":5,"pull_request":{"url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/5","id":26743794,"html_url":"https://github.com/Kameshwaran/Kameshwaran.github.io/pull/5","diff_url":"https://github.com/Kameshwaran/Kameshwaran.github.io/pull/5.diff","patch_url":"https://github.com/Kameshwaran/Kameshwaran.github.io/pull/5.patch","issue_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/5","number":5,"state":"closed","locked":false,"title":"searching in hash blog added","user":{"login":"Kameshwaran","id":5488330,"avatar_url":"https://avatars.githubusercontent.com/u/5488330?v=3","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","html_url":"https://github.com/Kameshwaran","followers_url":"https://api.github.com/users/Kameshwaran/followers","following_url":"https://api.github.com/users/Kameshwaran/following{/other_user}","gists_url":"https://api.github.com/users/Kameshwaran/gists{/gist_id}","starred_url":"https://api.github.com/users/Kameshwaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kameshwaran/subscriptions","organizations_url":"https://api.github.com/users/Kameshwaran/orgs","repos_url":"https://api.github.com/users/Kameshwaran/repos","events_url":"https://api.github.com/users/Kameshwaran/events{/privacy}","received_events_url":"https://api.github.com/users/Kameshwaran/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:03:22Z","updated_at":"2015-01-01T15:03:26Z","closed_at":"2015-01-01T15:03:26Z","merged_at":"2015-01-01T15:03:26Z","merge_commit_sha":"04c6b44cadc8481dd6e7868243d6789b6cc3cbc5","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/5/commits","review_comments_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/5/comments","review_comment_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/comments/{number}","comments_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/5/comments","statuses_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/statuses/256440fe020a94930b08762daaa17564d54aa699","head":{"label":"Kameshwaran:rectify","ref":"rectify","sha":"256440fe020a94930b08762daaa17564d54aa699","user":{"login":"Kameshwaran","id":5488330,"avatar_url":"https://avatars.githubusercontent.com/u/5488330?v=3","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","html_url":"https://github.com/Kameshwaran","followers_url":"https://api.github.com/users/Kameshwaran/followers","following_url":"https://api.github.com/users/Kameshwaran/following{/other_user}","gists_url":"https://api.github.com/users/Kameshwaran/gists{/gist_id}","starred_url":"https://api.github.com/users/Kameshwaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kameshwaran/subscriptions","organizations_url":"https://api.github.com/users/Kameshwaran/orgs","repos_url":"https://api.github.com/users/Kameshwaran/repos","events_url":"https://api.github.com/users/Kameshwaran/events{/privacy}","received_events_url":"https://api.github.com/users/Kameshwaran/received_events","type":"User","site_admin":false},"repo":{"id":27391432,"name":"Kameshwaran.github.io","full_name":"Kameshwaran/Kameshwaran.github.io","owner":{"login":"Kameshwaran","id":5488330,"avatar_url":"https://avatars.githubusercontent.com/u/5488330?v=3","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","html_url":"https://github.com/Kameshwaran","followers_url":"https://api.github.com/users/Kameshwaran/followers","following_url":"https://api.github.com/users/Kameshwaran/following{/other_user}","gists_url":"https://api.github.com/users/Kameshwaran/gists{/gist_id}","starred_url":"https://api.github.com/users/Kameshwaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kameshwaran/subscriptions","organizations_url":"https://api.github.com/users/Kameshwaran/orgs","repos_url":"https://api.github.com/users/Kameshwaran/repos","events_url":"https://api.github.com/users/Kameshwaran/events{/privacy}","received_events_url":"https://api.github.com/users/Kameshwaran/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Kameshwaran/Kameshwaran.github.io","description":"A website for my own blogs","fork":false,"url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io","forks_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/forks","keys_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/teams","hooks_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/hooks","issue_events_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/events","assignees_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/tags","blobs_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/languages","stargazers_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/stargazers","contributors_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/contributors","subscribers_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/subscribers","subscription_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/subscription","commits_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/merges","archive_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/downloads","issues_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/labels{/name}","releases_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/releases{/id}","created_at":"2014-12-01T17:40:23Z","updated_at":"2015-01-01T07:45:06Z","pushed_at":"2015-01-01T15:03:26Z","git_url":"git://github.com/Kameshwaran/Kameshwaran.github.io.git","ssh_url":"git@github.com:Kameshwaran/Kameshwaran.github.io.git","clone_url":"https://github.com/Kameshwaran/Kameshwaran.github.io.git","svn_url":"https://github.com/Kameshwaran/Kameshwaran.github.io","homepage":"http://codebrahma.com","size":192,"stargazers_count":0,"watchers_count":0,"language":"CSS","has_issues":true,"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":"Kameshwaran:master","ref":"master","sha":"6cd627790db997325644d0ec0e46d658381cf929","user":{"login":"Kameshwaran","id":5488330,"avatar_url":"https://avatars.githubusercontent.com/u/5488330?v=3","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","html_url":"https://github.com/Kameshwaran","followers_url":"https://api.github.com/users/Kameshwaran/followers","following_url":"https://api.github.com/users/Kameshwaran/following{/other_user}","gists_url":"https://api.github.com/users/Kameshwaran/gists{/gist_id}","starred_url":"https://api.github.com/users/Kameshwaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kameshwaran/subscriptions","organizations_url":"https://api.github.com/users/Kameshwaran/orgs","repos_url":"https://api.github.com/users/Kameshwaran/repos","events_url":"https://api.github.com/users/Kameshwaran/events{/privacy}","received_events_url":"https://api.github.com/users/Kameshwaran/received_events","type":"User","site_admin":false},"repo":{"id":27391432,"name":"Kameshwaran.github.io","full_name":"Kameshwaran/Kameshwaran.github.io","owner":{"login":"Kameshwaran","id":5488330,"avatar_url":"https://avatars.githubusercontent.com/u/5488330?v=3","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","html_url":"https://github.com/Kameshwaran","followers_url":"https://api.github.com/users/Kameshwaran/followers","following_url":"https://api.github.com/users/Kameshwaran/following{/other_user}","gists_url":"https://api.github.com/users/Kameshwaran/gists{/gist_id}","starred_url":"https://api.github.com/users/Kameshwaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kameshwaran/subscriptions","organizations_url":"https://api.github.com/users/Kameshwaran/orgs","repos_url":"https://api.github.com/users/Kameshwaran/repos","events_url":"https://api.github.com/users/Kameshwaran/events{/privacy}","received_events_url":"https://api.github.com/users/Kameshwaran/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Kameshwaran/Kameshwaran.github.io","description":"A website for my own blogs","fork":false,"url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io","forks_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/forks","keys_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/teams","hooks_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/hooks","issue_events_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/events","assignees_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/tags","blobs_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/languages","stargazers_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/stargazers","contributors_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/contributors","subscribers_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/subscribers","subscription_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/subscription","commits_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/merges","archive_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/downloads","issues_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/labels{/name}","releases_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/releases{/id}","created_at":"2014-12-01T17:40:23Z","updated_at":"2015-01-01T07:45:06Z","pushed_at":"2015-01-01T15:03:26Z","git_url":"git://github.com/Kameshwaran/Kameshwaran.github.io.git","ssh_url":"git@github.com:Kameshwaran/Kameshwaran.github.io.git","clone_url":"https://github.com/Kameshwaran/Kameshwaran.github.io.git","svn_url":"https://github.com/Kameshwaran/Kameshwaran.github.io","homepage":"http://codebrahma.com","size":192,"stargazers_count":0,"watchers_count":0,"language":"CSS","has_issues":true,"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/Kameshwaran/Kameshwaran.github.io/pulls/5"},"html":{"href":"https://github.com/Kameshwaran/Kameshwaran.github.io/pull/5"},"issue":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/5"},"comments":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/5/comments"},"review_comments":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/5/comments"},"review_comment":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/5/commits"},"statuses":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/statuses/256440fe020a94930b08762daaa17564d54aa699"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"Kameshwaran","id":5488330,"avatar_url":"https://avatars.githubusercontent.com/u/5488330?v=3","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","html_url":"https://github.com/Kameshwaran","followers_url":"https://api.github.com/users/Kameshwaran/followers","following_url":"https://api.github.com/users/Kameshwaran/following{/other_user}","gists_url":"https://api.github.com/users/Kameshwaran/gists{/gist_id}","starred_url":"https://api.github.com/users/Kameshwaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kameshwaran/subscriptions","organizations_url":"https://api.github.com/users/Kameshwaran/orgs","repos_url":"https://api.github.com/users/Kameshwaran/repos","events_url":"https://api.github.com/users/Kameshwaran/events{/privacy}","received_events_url":"https://api.github.com/users/Kameshwaran/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":45,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:03:27Z"} +,{"id":"2489652657","type":"PushEvent","actor":{"id":572734,"login":"dennisdoomen","gravatar_id":"","url":"https://api.github.com/users/dennisdoomen","avatar_url":"https://avatars.githubusercontent.com/u/572734?"},"repo":{"id":11718424,"name":"dennisdoomen/fluentassertions","url":"https://api.github.com/repos/dennisdoomen/fluentassertions"},"payload":{"push_id":536864719,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"800fb952cb7e9a0ec9e19805dff0040fc81186cf","before":"32cc471141eb556e0c61a79120c64b5e72a2c0f2","commits":[{"sha":"800fb952cb7e9a0ec9e19805dff0040fc81186cf","author":{"email":"be903bd9420de0a271980c4eceeccfd9d0a8d211@avivasolutions.nl","name":"Dennis Doomen"},"message":"Added the collection.Should().StartWith() assertion to verify that a collection starts with a particular element.","distinct":true,"url":"https://api.github.com/repos/dennisdoomen/fluentassertions/commits/800fb952cb7e9a0ec9e19805dff0040fc81186cf"}]},"public":true,"created_at":"2015-01-01T15:03:27Z"} +,{"id":"2489652658","type":"ForkEvent","actor":{"id":10358507,"login":"cfdrws","gravatar_id":"","url":"https://api.github.com/users/cfdrws","avatar_url":"https://avatars.githubusercontent.com/u/10358507?"},"repo":{"id":28181288,"name":"letitiaXu/MINET","url":"https://api.github.com/repos/letitiaXu/MINET"},"payload":{"forkee":{"id":28688659,"name":"MINET","full_name":"cfdrws/MINET","owner":{"login":"cfdrws","id":10358507,"avatar_url":"https://avatars.githubusercontent.com/u/10358507?v=3","gravatar_id":"","url":"https://api.github.com/users/cfdrws","html_url":"https://github.com/cfdrws","followers_url":"https://api.github.com/users/cfdrws/followers","following_url":"https://api.github.com/users/cfdrws/following{/other_user}","gists_url":"https://api.github.com/users/cfdrws/gists{/gist_id}","starred_url":"https://api.github.com/users/cfdrws/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cfdrws/subscriptions","organizations_url":"https://api.github.com/users/cfdrws/orgs","repos_url":"https://api.github.com/users/cfdrws/repos","events_url":"https://api.github.com/users/cfdrws/events{/privacy}","received_events_url":"https://api.github.com/users/cfdrws/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/cfdrws/MINET","description":"","fork":true,"url":"https://api.github.com/repos/cfdrws/MINET","forks_url":"https://api.github.com/repos/cfdrws/MINET/forks","keys_url":"https://api.github.com/repos/cfdrws/MINET/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cfdrws/MINET/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cfdrws/MINET/teams","hooks_url":"https://api.github.com/repos/cfdrws/MINET/hooks","issue_events_url":"https://api.github.com/repos/cfdrws/MINET/issues/events{/number}","events_url":"https://api.github.com/repos/cfdrws/MINET/events","assignees_url":"https://api.github.com/repos/cfdrws/MINET/assignees{/user}","branches_url":"https://api.github.com/repos/cfdrws/MINET/branches{/branch}","tags_url":"https://api.github.com/repos/cfdrws/MINET/tags","blobs_url":"https://api.github.com/repos/cfdrws/MINET/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cfdrws/MINET/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cfdrws/MINET/git/refs{/sha}","trees_url":"https://api.github.com/repos/cfdrws/MINET/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cfdrws/MINET/statuses/{sha}","languages_url":"https://api.github.com/repos/cfdrws/MINET/languages","stargazers_url":"https://api.github.com/repos/cfdrws/MINET/stargazers","contributors_url":"https://api.github.com/repos/cfdrws/MINET/contributors","subscribers_url":"https://api.github.com/repos/cfdrws/MINET/subscribers","subscription_url":"https://api.github.com/repos/cfdrws/MINET/subscription","commits_url":"https://api.github.com/repos/cfdrws/MINET/commits{/sha}","git_commits_url":"https://api.github.com/repos/cfdrws/MINET/git/commits{/sha}","comments_url":"https://api.github.com/repos/cfdrws/MINET/comments{/number}","issue_comment_url":"https://api.github.com/repos/cfdrws/MINET/issues/comments/{number}","contents_url":"https://api.github.com/repos/cfdrws/MINET/contents/{+path}","compare_url":"https://api.github.com/repos/cfdrws/MINET/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cfdrws/MINET/merges","archive_url":"https://api.github.com/repos/cfdrws/MINET/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cfdrws/MINET/downloads","issues_url":"https://api.github.com/repos/cfdrws/MINET/issues{/number}","pulls_url":"https://api.github.com/repos/cfdrws/MINET/pulls{/number}","milestones_url":"https://api.github.com/repos/cfdrws/MINET/milestones{/number}","notifications_url":"https://api.github.com/repos/cfdrws/MINET/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cfdrws/MINET/labels{/name}","releases_url":"https://api.github.com/repos/cfdrws/MINET/releases{/id}","created_at":"2015-01-01T15:03:26Z","updated_at":"2015-01-01T15:03:27Z","pushed_at":"2014-12-29T09:51:04Z","git_url":"git://github.com/cfdrws/MINET.git","ssh_url":"git@github.com:cfdrws/MINET.git","clone_url":"https://github.com/cfdrws/MINET.git","svn_url":"https://github.com/cfdrws/MINET","homepage":null,"size":160,"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","public":true}},"public":true,"created_at":"2015-01-01T15:03:27Z"} +,{"id":"2489652659","type":"PushEvent","actor":{"id":5488330,"login":"Kameshwaran","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","avatar_url":"https://avatars.githubusercontent.com/u/5488330?"},"repo":{"id":27391432,"name":"Kameshwaran/Kameshwaran.github.io","url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io"},"payload":{"push_id":536864720,"size":2,"distinct_size":1,"ref":"refs/heads/master","head":"822a533786e29dce7155084babda4d1df884e26b","before":"6cd627790db997325644d0ec0e46d658381cf929","commits":[{"sha":"256440fe020a94930b08762daaa17564d54aa699","author":{"email":"c4590d14fd906c2ac70a54adbfe0a4e2746237e1@yahoo.co.uk","name":"Kameshwaran"},"message":"searching in hash blog added","distinct":false,"url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/commits/256440fe020a94930b08762daaa17564d54aa699"},{"sha":"822a533786e29dce7155084babda4d1df884e26b","author":{"email":"fc0b8cd559ad7a06aa4a0d820aaafd1bef9f52bc@codebrahma.com","name":"Kameshwaran"},"message":"Merge pull request #5 from Kameshwaran/rectify\n\nsearching in hash blog added","distinct":true,"url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/commits/822a533786e29dce7155084babda4d1df884e26b"}]},"public":true,"created_at":"2015-01-01T15:03:27Z"} +,{"id":"2489652664","type":"PushEvent","actor":{"id":2195785,"login":"dedyk","gravatar_id":"","url":"https://api.github.com/users/dedyk","avatar_url":"https://avatars.githubusercontent.com/u/2195785?"},"repo":{"id":5510151,"name":"dedyk/JaponskiSlownik","url":"https://api.github.com/repos/dedyk/JaponskiSlownik"},"payload":{"push_id":536864723,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6eb6ca10bd77985eb238ea0a314142f9a2f5ba26","before":"c0adf523b3649cb519d32e4c76ebd3d1bfdd2ff4","commits":[{"sha":"6eb6ca10bd77985eb238ea0a314142f9a2f5ba26","author":{"email":"6060bdfd167145ad8cf4f6c94cd1f8745f8f9ebe@gmail.com","name":"dedyk"},"message":"update","distinct":true,"url":"https://api.github.com/repos/dedyk/JaponskiSlownik/commits/6eb6ca10bd77985eb238ea0a314142f9a2f5ba26"}]},"public":true,"created_at":"2015-01-01T15:03:27Z"} +,{"id":"2489652666","type":"WatchEvent","actor":{"id":10094941,"login":"mr0-0nerd","gravatar_id":"","url":"https://api.github.com/users/mr0-0nerd","avatar_url":"https://avatars.githubusercontent.com/u/10094941?"},"repo":{"id":14664813,"name":"diegotoral/generator-django","url":"https://api.github.com/repos/diegotoral/generator-django"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:28Z"} +,{"id":"2489652669","type":"WatchEvent","actor":{"id":5088643,"login":"abixadamj","gravatar_id":"","url":"https://api.github.com/users/abixadamj","avatar_url":"https://avatars.githubusercontent.com/u/5088643?"},"repo":{"id":6093324,"name":"Kozea/wdb","url":"https://api.github.com/repos/Kozea/wdb"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:28Z","org":{"id":870325,"login":"Kozea","gravatar_id":"","url":"https://api.github.com/orgs/Kozea","avatar_url":"https://avatars.githubusercontent.com/u/870325?"}} +,{"id":"2489652670","type":"PushEvent","actor":{"id":6699795,"login":"FusionSP","gravatar_id":"","url":"https://api.github.com/users/FusionSP","avatar_url":"https://avatars.githubusercontent.com/u/6699795?"},"repo":{"id":26531615,"name":"FusionSP/android_frameworks_base","url":"https://api.github.com/repos/FusionSP/android_frameworks_base"},"payload":{"push_id":536864726,"size":1,"distinct_size":1,"ref":"refs/heads/lp5.0","head":"971e8c356e4b431fdac2fefda0055cc95613de6c","before":"d5cd51a78264bd69f0518b61ca44c635216f4eef","commits":[{"sha":"971e8c356e4b431fdac2fefda0055cc95613de6c","author":{"email":"f3fd42a39172f5ea1543e1a25a660642a3134c0e@hotmail.nl","name":"Dragon"},"message":"Revert \"MediaMuxer: handle expection for add track\"\n\nThis reverts commit a9a55b975eb7c8345f92efdf90962fbe855ba284.","distinct":true,"url":"https://api.github.com/repos/FusionSP/android_frameworks_base/commits/971e8c356e4b431fdac2fefda0055cc95613de6c"}]},"public":true,"created_at":"2015-01-01T15:03:28Z"} +,{"id":"2489652675","type":"ForkEvent","actor":{"id":8217988,"login":"omriSaadon","gravatar_id":"","url":"https://api.github.com/users/omriSaadon","avatar_url":"https://avatars.githubusercontent.com/u/8217988?"},"repo":{"id":24967991,"name":"lingthio/Flask-User-starter-app","url":"https://api.github.com/repos/lingthio/Flask-User-starter-app"},"payload":{"forkee":{"id":28688660,"name":"Flask-User-starter-app","full_name":"omriSaadon/Flask-User-starter-app","owner":{"login":"omriSaadon","id":8217988,"avatar_url":"https://avatars.githubusercontent.com/u/8217988?v=3","gravatar_id":"","url":"https://api.github.com/users/omriSaadon","html_url":"https://github.com/omriSaadon","followers_url":"https://api.github.com/users/omriSaadon/followers","following_url":"https://api.github.com/users/omriSaadon/following{/other_user}","gists_url":"https://api.github.com/users/omriSaadon/gists{/gist_id}","starred_url":"https://api.github.com/users/omriSaadon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/omriSaadon/subscriptions","organizations_url":"https://api.github.com/users/omriSaadon/orgs","repos_url":"https://api.github.com/users/omriSaadon/repos","events_url":"https://api.github.com/users/omriSaadon/events{/privacy}","received_events_url":"https://api.github.com/users/omriSaadon/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/omriSaadon/Flask-User-starter-app","description":"","fork":true,"url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app","forks_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/forks","keys_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/keys{/key_id}","collaborators_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/teams","hooks_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/hooks","issue_events_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/issues/events{/number}","events_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/events","assignees_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/assignees{/user}","branches_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/branches{/branch}","tags_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/tags","blobs_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/git/refs{/sha}","trees_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/git/trees{/sha}","statuses_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/statuses/{sha}","languages_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/languages","stargazers_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/stargazers","contributors_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/contributors","subscribers_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/subscribers","subscription_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/subscription","commits_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/commits{/sha}","git_commits_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/git/commits{/sha}","comments_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/comments{/number}","issue_comment_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/issues/comments/{number}","contents_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/contents/{+path}","compare_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/compare/{base}...{head}","merges_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/merges","archive_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/downloads","issues_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/issues{/number}","pulls_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/pulls{/number}","milestones_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/milestones{/number}","notifications_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/labels{/name}","releases_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/releases{/id}","created_at":"2015-01-01T15:03:29Z","updated_at":"2015-01-01T15:03:22Z","pushed_at":"2014-12-09T17:44:01Z","git_url":"git://github.com/omriSaadon/Flask-User-starter-app.git","ssh_url":"git@github.com:omriSaadon/Flask-User-starter-app.git","clone_url":"https://github.com/omriSaadon/Flask-User-starter-app.git","svn_url":"https://github.com/omriSaadon/Flask-User-starter-app","homepage":null,"size":200,"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:03:29Z"} +,{"id":"2489652676","type":"CreateEvent","actor":{"id":343795,"login":"Depicus","gravatar_id":"","url":"https://api.github.com/users/Depicus","avatar_url":"https://avatars.githubusercontent.com/u/343795?"},"repo":{"id":28688644,"name":"Depicus/ghost-gumby-theme","url":"https://api.github.com/repos/Depicus/ghost-gumby-theme"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"A theme for Ghost based on Gumby CSS Framework","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:29Z"} +,{"id":"2489652678","type":"CreateEvent","actor":{"id":1821081,"login":"ajschmaltz","gravatar_id":"","url":"https://api.github.com/users/ajschmaltz","avatar_url":"https://avatars.githubusercontent.com/u/1821081?"},"repo":{"id":28688661,"name":"ajschmaltz/TapQuote","url":"https://api.github.com/repos/ajschmaltz/TapQuote"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:29Z"} +,{"id":"2489652682","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":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:30Z"} +,{"id":"2489652683","type":"PushEvent","actor":{"id":281340,"login":"peschuster","gravatar_id":"","url":"https://api.github.com/users/peschuster","avatar_url":"https://avatars.githubusercontent.com/u/281340?"},"repo":{"id":18992184,"name":"feg-giessen/pco-webtools","url":"https://api.github.com/repos/feg-giessen/pco-webtools"},"payload":{"push_id":536864734,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"c9bca044ff893251a50c16836c28e5e2cf1ac823","before":"5c9eee53bfbe82d8bab9c84a06da9b3568364503","commits":[{"sha":"c8f1ce9a2001668e0ff8f26630c434d0dc3e5663","author":{"email":"d8a9fb8969c3be8fc73cfdf8c02d05df918770ff@gmail.com","name":"Peter Schuster"},"message":"Exception on empty text","distinct":true,"url":"https://api.github.com/repos/feg-giessen/pco-webtools/commits/c8f1ce9a2001668e0ff8f26630c434d0dc3e5663"},{"sha":"c9bca044ff893251a50c16836c28e5e2cf1ac823","author":{"email":"d8a9fb8969c3be8fc73cfdf8c02d05df918770ff@gmail.com","name":"Peter Schuster"},"message":"Live-JS and CSS updates.","distinct":true,"url":"https://api.github.com/repos/feg-giessen/pco-webtools/commits/c9bca044ff893251a50c16836c28e5e2cf1ac823"}]},"public":true,"created_at":"2015-01-01T15:03:30Z","org":{"id":3055295,"login":"feg-giessen","gravatar_id":"","url":"https://api.github.com/orgs/feg-giessen","avatar_url":"https://avatars.githubusercontent.com/u/3055295?"}} +,{"id":"2489652684","type":"DeleteEvent","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":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:30Z","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":"2489652685","type":"WatchEvent","actor":{"id":6006469,"login":"fyquah95","gravatar_id":"","url":"https://api.github.com/users/fyquah95","avatar_url":"https://avatars.githubusercontent.com/u/6006469?"},"repo":{"id":2855551,"name":"gousiosg/github-mirror","url":"https://api.github.com/repos/gousiosg/github-mirror"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:30Z"} +,{"id":"2489652689","type":"ForkEvent","actor":{"id":2434564,"login":"licong","gravatar_id":"","url":"https://api.github.com/users/licong","avatar_url":"https://avatars.githubusercontent.com/u/2434564?"},"repo":{"id":427635,"name":"ervandew/eclim","url":"https://api.github.com/repos/ervandew/eclim"},"payload":{"forkee":{"id":28688662,"name":"eclim","full_name":"licong/eclim","owner":{"login":"licong","id":2434564,"avatar_url":"https://avatars.githubusercontent.com/u/2434564?v=3","gravatar_id":"","url":"https://api.github.com/users/licong","html_url":"https://github.com/licong","followers_url":"https://api.github.com/users/licong/followers","following_url":"https://api.github.com/users/licong/following{/other_user}","gists_url":"https://api.github.com/users/licong/gists{/gist_id}","starred_url":"https://api.github.com/users/licong/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/licong/subscriptions","organizations_url":"https://api.github.com/users/licong/orgs","repos_url":"https://api.github.com/users/licong/repos","events_url":"https://api.github.com/users/licong/events{/privacy}","received_events_url":"https://api.github.com/users/licong/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/licong/eclim","description":"Expose eclipse features inside of vim.","fork":true,"url":"https://api.github.com/repos/licong/eclim","forks_url":"https://api.github.com/repos/licong/eclim/forks","keys_url":"https://api.github.com/repos/licong/eclim/keys{/key_id}","collaborators_url":"https://api.github.com/repos/licong/eclim/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/licong/eclim/teams","hooks_url":"https://api.github.com/repos/licong/eclim/hooks","issue_events_url":"https://api.github.com/repos/licong/eclim/issues/events{/number}","events_url":"https://api.github.com/repos/licong/eclim/events","assignees_url":"https://api.github.com/repos/licong/eclim/assignees{/user}","branches_url":"https://api.github.com/repos/licong/eclim/branches{/branch}","tags_url":"https://api.github.com/repos/licong/eclim/tags","blobs_url":"https://api.github.com/repos/licong/eclim/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/licong/eclim/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/licong/eclim/git/refs{/sha}","trees_url":"https://api.github.com/repos/licong/eclim/git/trees{/sha}","statuses_url":"https://api.github.com/repos/licong/eclim/statuses/{sha}","languages_url":"https://api.github.com/repos/licong/eclim/languages","stargazers_url":"https://api.github.com/repos/licong/eclim/stargazers","contributors_url":"https://api.github.com/repos/licong/eclim/contributors","subscribers_url":"https://api.github.com/repos/licong/eclim/subscribers","subscription_url":"https://api.github.com/repos/licong/eclim/subscription","commits_url":"https://api.github.com/repos/licong/eclim/commits{/sha}","git_commits_url":"https://api.github.com/repos/licong/eclim/git/commits{/sha}","comments_url":"https://api.github.com/repos/licong/eclim/comments{/number}","issue_comment_url":"https://api.github.com/repos/licong/eclim/issues/comments/{number}","contents_url":"https://api.github.com/repos/licong/eclim/contents/{+path}","compare_url":"https://api.github.com/repos/licong/eclim/compare/{base}...{head}","merges_url":"https://api.github.com/repos/licong/eclim/merges","archive_url":"https://api.github.com/repos/licong/eclim/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/licong/eclim/downloads","issues_url":"https://api.github.com/repos/licong/eclim/issues{/number}","pulls_url":"https://api.github.com/repos/licong/eclim/pulls{/number}","milestones_url":"https://api.github.com/repos/licong/eclim/milestones{/number}","notifications_url":"https://api.github.com/repos/licong/eclim/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/licong/eclim/labels{/name}","releases_url":"https://api.github.com/repos/licong/eclim/releases{/id}","created_at":"2015-01-01T15:03:31Z","updated_at":"2015-01-01T03:06:14Z","pushed_at":"2014-12-14T17:01:42Z","git_url":"git://github.com/licong/eclim.git","ssh_url":"git@github.com:licong/eclim.git","clone_url":"https://github.com/licong/eclim.git","svn_url":"https://github.com/licong/eclim","homepage":"http://eclim.org","size":86947,"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:03:32Z"} +,{"id":"2489652693","type":"PushEvent","actor":{"id":812069,"login":"shamazmazum","gravatar_id":"","url":"https://api.github.com/users/shamazmazum","avatar_url":"https://avatars.githubusercontent.com/u/812069?"},"repo":{"id":4461956,"name":"shamazmazum/easy-audio","url":"https://api.github.com/repos/shamazmazum/easy-audio"},"payload":{"push_id":536864739,"size":1,"distinct_size":1,"ref":"refs/heads/wv","head":"7ba5fc1165e46dcffc9dd2fe1457b80823a9aa04","before":"aa078328c8fee98c4724e6b74eda13079fc6d429","commits":[{"sha":"7ba5fc1165e46dcffc9dd2fe1457b80823a9aa04","author":{"email":"704a77d66ccadb12947074e4bc348afbef6e654b@gmail.com","name":"Vasily Postnicov"},"message":"decorrelation samples reader","distinct":true,"url":"https://api.github.com/repos/shamazmazum/easy-audio/commits/7ba5fc1165e46dcffc9dd2fe1457b80823a9aa04"}]},"public":true,"created_at":"2015-01-01T15:03:33Z"} +,{"id":"2489652695","type":"CreateEvent","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":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify Bash Plugin","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:33Z","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":"2489652696","type":"CreateEvent","actor":{"id":10364715,"login":"yousom","gravatar_id":"","url":"https://api.github.com/users/yousom","avatar_url":"https://avatars.githubusercontent.com/u/10364715?"},"repo":{"id":28688663,"name":"yousom/github","url":"https://api.github.com/repos/yousom/github"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"This is my project to learn github","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:33Z"} +,{"id":"2489652699","type":"PushEvent","actor":{"id":2816805,"login":"guedeWebGate","gravatar_id":"","url":"https://api.github.com/users/guedeWebGate","avatar_url":"https://avatars.githubusercontent.com/u/2816805?"},"repo":{"id":28688564,"name":"guedeWebGate/pluginDemoAngularJS","url":"https://api.github.com/repos/guedeWebGate/pluginDemoAngularJS"},"payload":{"push_id":536864741,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"285aa442bdb7463f7732ace7764b52f94a839e8a","before":"e3d414fb563c1cd9d98984a9b70fffefd4fc61b1","commits":[{"sha":"285aa442bdb7463f7732ace7764b52f94a839e8a","author":{"email":"68b0dfca522a271462acaa072bedcf1f6ed6a19f@webgate.biz","name":"Christian Guedemann"},"message":"Update .gitignore","distinct":true,"url":"https://api.github.com/repos/guedeWebGate/pluginDemoAngularJS/commits/285aa442bdb7463f7732ace7764b52f94a839e8a"}]},"public":true,"created_at":"2015-01-01T15:03:33Z"} +,{"id":"2489652700","type":"PushEvent","actor":{"id":2242174,"login":"mofumofu3n","gravatar_id":"","url":"https://api.github.com/users/mofumofu3n","avatar_url":"https://avatars.githubusercontent.com/u/2242174?"},"repo":{"id":27716943,"name":"mofumofu3n/Anime","url":"https://api.github.com/repos/mofumofu3n/Anime"},"payload":{"push_id":536864742,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"77f9725ffcf81a57b114e4104973d53da9cc5e5b","before":"347fcb3c58650dc7729b4795c71173bb84abd8b2","commits":[{"sha":"77f9725ffcf81a57b114e4104973d53da9cc5e5b","author":{"email":"bd43c6aeed1ec20a379e52a4d3f4cfb6887743c0@gmail.com","name":"mofumofu3n"},"message":"設定画面の項目をSparseArrayに変更","distinct":true,"url":"https://api.github.com/repos/mofumofu3n/Anime/commits/77f9725ffcf81a57b114e4104973d53da9cc5e5b"}]},"public":true,"created_at":"2015-01-01T15:03:33Z"} +,{"id":"2489652703","type":"ForkEvent","actor":{"id":10045938,"login":"cashfit","gravatar_id":"","url":"https://api.github.com/users/cashfit","avatar_url":"https://avatars.githubusercontent.com/u/10045938?"},"repo":{"id":7266637,"name":"khailey/Oracle-DBA-Scripts","url":"https://api.github.com/repos/khailey/Oracle-DBA-Scripts"},"payload":{"forkee":{"id":28688665,"name":"Oracle-DBA-Scripts","full_name":"cashfit/Oracle-DBA-Scripts","owner":{"login":"cashfit","id":10045938,"avatar_url":"https://avatars.githubusercontent.com/u/10045938?v=3","gravatar_id":"","url":"https://api.github.com/users/cashfit","html_url":"https://github.com/cashfit","followers_url":"https://api.github.com/users/cashfit/followers","following_url":"https://api.github.com/users/cashfit/following{/other_user}","gists_url":"https://api.github.com/users/cashfit/gists{/gist_id}","starred_url":"https://api.github.com/users/cashfit/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cashfit/subscriptions","organizations_url":"https://api.github.com/users/cashfit/orgs","repos_url":"https://api.github.com/users/cashfit/repos","events_url":"https://api.github.com/users/cashfit/events{/privacy}","received_events_url":"https://api.github.com/users/cashfit/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/cashfit/Oracle-DBA-Scripts","description":"Scripts that make my job as a DBA a bit easier","fork":true,"url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts","forks_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/forks","keys_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/teams","hooks_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/hooks","issue_events_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/issues/events{/number}","events_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/events","assignees_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/assignees{/user}","branches_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/branches{/branch}","tags_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/tags","blobs_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/git/refs{/sha}","trees_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/statuses/{sha}","languages_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/languages","stargazers_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/stargazers","contributors_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/contributors","subscribers_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/subscribers","subscription_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/subscription","commits_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/commits{/sha}","git_commits_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/git/commits{/sha}","comments_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/comments{/number}","issue_comment_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/issues/comments/{number}","contents_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/contents/{+path}","compare_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/merges","archive_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/downloads","issues_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/issues{/number}","pulls_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/pulls{/number}","milestones_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/milestones{/number}","notifications_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/labels{/name}","releases_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/releases{/id}","created_at":"2015-01-01T15:03:33Z","updated_at":"2014-02-25T07:08:40Z","pushed_at":"2012-12-21T00:17:49Z","git_url":"git://github.com/cashfit/Oracle-DBA-Scripts.git","ssh_url":"git@github.com:cashfit/Oracle-DBA-Scripts.git","clone_url":"https://github.com/cashfit/Oracle-DBA-Scripts.git","svn_url":"https://github.com/cashfit/Oracle-DBA-Scripts","homepage":"","size":92,"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:03:33Z"} +,{"id":"2489652706","type":"ForkEvent","actor":{"id":2973493,"login":"Sergio102472","gravatar_id":"","url":"https://api.github.com/users/Sergio102472","avatar_url":"https://avatars.githubusercontent.com/u/2973493?"},"repo":{"id":17872545,"name":"FelixLC/homepagevinify","url":"https://api.github.com/repos/FelixLC/homepagevinify"},"payload":{"forkee":{"id":28688666,"name":"homepagevinify","full_name":"Sergio102472/homepagevinify","owner":{"login":"Sergio102472","id":2973493,"avatar_url":"https://avatars.githubusercontent.com/u/2973493?v=3","gravatar_id":"","url":"https://api.github.com/users/Sergio102472","html_url":"https://github.com/Sergio102472","followers_url":"https://api.github.com/users/Sergio102472/followers","following_url":"https://api.github.com/users/Sergio102472/following{/other_user}","gists_url":"https://api.github.com/users/Sergio102472/gists{/gist_id}","starred_url":"https://api.github.com/users/Sergio102472/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Sergio102472/subscriptions","organizations_url":"https://api.github.com/users/Sergio102472/orgs","repos_url":"https://api.github.com/users/Sergio102472/repos","events_url":"https://api.github.com/users/Sergio102472/events{/privacy}","received_events_url":"https://api.github.com/users/Sergio102472/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Sergio102472/homepagevinify","description":"","fork":true,"url":"https://api.github.com/repos/Sergio102472/homepagevinify","forks_url":"https://api.github.com/repos/Sergio102472/homepagevinify/forks","keys_url":"https://api.github.com/repos/Sergio102472/homepagevinify/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Sergio102472/homepagevinify/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Sergio102472/homepagevinify/teams","hooks_url":"https://api.github.com/repos/Sergio102472/homepagevinify/hooks","issue_events_url":"https://api.github.com/repos/Sergio102472/homepagevinify/issues/events{/number}","events_url":"https://api.github.com/repos/Sergio102472/homepagevinify/events","assignees_url":"https://api.github.com/repos/Sergio102472/homepagevinify/assignees{/user}","branches_url":"https://api.github.com/repos/Sergio102472/homepagevinify/branches{/branch}","tags_url":"https://api.github.com/repos/Sergio102472/homepagevinify/tags","blobs_url":"https://api.github.com/repos/Sergio102472/homepagevinify/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Sergio102472/homepagevinify/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Sergio102472/homepagevinify/git/refs{/sha}","trees_url":"https://api.github.com/repos/Sergio102472/homepagevinify/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Sergio102472/homepagevinify/statuses/{sha}","languages_url":"https://api.github.com/repos/Sergio102472/homepagevinify/languages","stargazers_url":"https://api.github.com/repos/Sergio102472/homepagevinify/stargazers","contributors_url":"https://api.github.com/repos/Sergio102472/homepagevinify/contributors","subscribers_url":"https://api.github.com/repos/Sergio102472/homepagevinify/subscribers","subscription_url":"https://api.github.com/repos/Sergio102472/homepagevinify/subscription","commits_url":"https://api.github.com/repos/Sergio102472/homepagevinify/commits{/sha}","git_commits_url":"https://api.github.com/repos/Sergio102472/homepagevinify/git/commits{/sha}","comments_url":"https://api.github.com/repos/Sergio102472/homepagevinify/comments{/number}","issue_comment_url":"https://api.github.com/repos/Sergio102472/homepagevinify/issues/comments/{number}","contents_url":"https://api.github.com/repos/Sergio102472/homepagevinify/contents/{+path}","compare_url":"https://api.github.com/repos/Sergio102472/homepagevinify/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Sergio102472/homepagevinify/merges","archive_url":"https://api.github.com/repos/Sergio102472/homepagevinify/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Sergio102472/homepagevinify/downloads","issues_url":"https://api.github.com/repos/Sergio102472/homepagevinify/issues{/number}","pulls_url":"https://api.github.com/repos/Sergio102472/homepagevinify/pulls{/number}","milestones_url":"https://api.github.com/repos/Sergio102472/homepagevinify/milestones{/number}","notifications_url":"https://api.github.com/repos/Sergio102472/homepagevinify/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Sergio102472/homepagevinify/labels{/name}","releases_url":"https://api.github.com/repos/Sergio102472/homepagevinify/releases{/id}","created_at":"2015-01-01T15:03:35Z","updated_at":"2014-10-07T10:10:14Z","pushed_at":"2014-12-28T16:38:49Z","git_url":"git://github.com/Sergio102472/homepagevinify.git","ssh_url":"git@github.com:Sergio102472/homepagevinify.git","clone_url":"https://github.com/Sergio102472/homepagevinify.git","svn_url":"https://github.com/Sergio102472/homepagevinify","homepage":null,"size":35464,"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:03:35Z"} +,{"id":"2489652707","type":"PushEvent","actor":{"id":6559752,"login":"unnamed-idea","gravatar_id":"","url":"https://api.github.com/users/unnamed-idea","avatar_url":"https://avatars.githubusercontent.com/u/6559752?"},"repo":{"id":28688390,"name":"unnamed-idea/recipes","url":"https://api.github.com/repos/unnamed-idea/recipes"},"payload":{"push_id":536864744,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f4f749292365b0fadb1cd351083c4100ae0dadd6","before":"a6a2f991a1bb60e1dec7c5d68c8393b70ea6f7f6","commits":[{"sha":"f4f749292365b0fadb1cd351083c4100ae0dadd6","author":{"email":"1ea62ea3c1356eef381741677680cd7e792ea22c@udacity.com","name":"Sarah Spikes"},"message":"Remove cumin from chili","distinct":true,"url":"https://api.github.com/repos/unnamed-idea/recipes/commits/f4f749292365b0fadb1cd351083c4100ae0dadd6"}]},"public":true,"created_at":"2015-01-01T15:03:35Z"} +,{"id":"2489652708","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327612,"name":"cloudify-cosmo/cloudify-dsl-parser","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-dsl-parser"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:35Z","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":"2489652709","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":24766039,"name":"linkedin/Zopkio","url":"https://api.github.com/repos/linkedin/Zopkio"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:35Z","org":{"id":357098,"login":"linkedin","gravatar_id":"","url":"https://api.github.com/orgs/linkedin","avatar_url":"https://avatars.githubusercontent.com/u/357098?"}} +,{"id":"2489652710","type":"PushEvent","actor":{"id":2470167,"login":"zeniko","gravatar_id":"","url":"https://api.github.com/users/zeniko","avatar_url":"https://avatars.githubusercontent.com/u/2470167?"},"repo":{"id":6041301,"name":"sumatrapdfreader/sumatrapdf","url":"https://api.github.com/repos/sumatrapdfreader/sumatrapdf"},"payload":{"push_id":536864746,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8ed6f078d8b8e3a990eb996bc710165dbce4b197","before":"876f4616f9dcdcad35730546f3508c9aa8feeacd","commits":[{"sha":"8ed6f078d8b8e3a990eb996bc710165dbce4b197","author":{"email":"324e35143cc16f40a3a5d906840375a610efeefd@gmail.com","name":"Simon Bünzli"},"message":"update FreeType to v2.5.5","distinct":true,"url":"https://api.github.com/repos/sumatrapdfreader/sumatrapdf/commits/8ed6f078d8b8e3a990eb996bc710165dbce4b197"}]},"public":true,"created_at":"2015-01-01T15:03:35Z","org":{"id":9777518,"login":"sumatrapdfreader","gravatar_id":"","url":"https://api.github.com/orgs/sumatrapdfreader","avatar_url":"https://avatars.githubusercontent.com/u/9777518?"}} +,{"id":"2489652712","type":"CreateEvent","actor":{"id":1323354,"login":"fatjanhushi","gravatar_id":"","url":"https://api.github.com/users/fatjanhushi","avatar_url":"https://avatars.githubusercontent.com/u/1323354?"},"repo":{"id":28688667,"name":"fatjanhushi/t25mycalendar","url":"https://api.github.com/repos/fatjanhushi/t25mycalendar"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:36Z"} +,{"id":"2489652713","type":"PushEvent","actor":{"id":90007,"login":"lukasmueller","gravatar_id":"","url":"https://api.github.com/users/lukasmueller","avatar_url":"https://avatars.githubusercontent.com/u/90007?"},"repo":{"id":11846582,"name":"solgenomics/gbs","url":"https://api.github.com/repos/solgenomics/gbs"},"payload":{"push_id":536864748,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7f8a4684715930f9836b6ec0321037eeed1d270a","before":"33de0cef45644c944ddc8e47c7b53f8f063eb325","commits":[{"sha":"7f8a4684715930f9836b6ec0321037eeed1d270a","author":{"email":"d9224b331176d2e198ac5218b7415e2f1956ab1a@cornell.edu","name":"Lukas Mueller"},"message":"fix typo.","distinct":true,"url":"https://api.github.com/repos/solgenomics/gbs/commits/7f8a4684715930f9836b6ec0321037eeed1d270a"}]},"public":true,"created_at":"2015-01-01T15:03:36Z","org":{"id":260757,"login":"solgenomics","gravatar_id":"","url":"https://api.github.com/orgs/solgenomics","avatar_url":"https://avatars.githubusercontent.com/u/260757?"}} +,{"id":"2489652716","type":"IssueCommentEvent","actor":{"id":43438,"login":"timoxley","gravatar_id":"","url":"https://api.github.com/users/timoxley","avatar_url":"https://avatars.githubusercontent.com/u/43438?"},"repo":{"id":24328359,"name":"timoxley/bulk","url":"https://api.github.com/repos/timoxley/bulk"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/timoxley/bulk/issues/3","labels_url":"https://api.github.com/repos/timoxley/bulk/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/timoxley/bulk/issues/3/comments","events_url":"https://api.github.com/repos/timoxley/bulk/issues/3/events","html_url":"https://github.com/timoxley/bulk/issues/3","id":53052553,"number":3,"title":"--bail","user":{"login":"yoshuawuyts","id":2467194,"avatar_url":"https://avatars.githubusercontent.com/u/2467194?v=3","gravatar_id":"","url":"https://api.github.com/users/yoshuawuyts","html_url":"https://github.com/yoshuawuyts","followers_url":"https://api.github.com/users/yoshuawuyts/followers","following_url":"https://api.github.com/users/yoshuawuyts/following{/other_user}","gists_url":"https://api.github.com/users/yoshuawuyts/gists{/gist_id}","starred_url":"https://api.github.com/users/yoshuawuyts/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yoshuawuyts/subscriptions","organizations_url":"https://api.github.com/users/yoshuawuyts/orgs","repos_url":"https://api.github.com/users/yoshuawuyts/repos","events_url":"https://api.github.com/users/yoshuawuyts/events{/privacy}","received_events_url":"https://api.github.com/users/yoshuawuyts/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-29T16:32:53Z","updated_at":"2015-01-01T15:03:37Z","closed_at":null,"body":"though it was in `bulk` already, but it would be cool if `--bail` could be given to exit on a non-0 exit code."},"comment":{"url":"https://api.github.com/repos/timoxley/bulk/issues/comments/68488554","html_url":"https://github.com/timoxley/bulk/issues/3#issuecomment-68488554","issue_url":"https://api.github.com/repos/timoxley/bulk/issues/3","id":68488554,"user":{"login":"timoxley","id":43438,"avatar_url":"https://avatars.githubusercontent.com/u/43438?v=3","gravatar_id":"","url":"https://api.github.com/users/timoxley","html_url":"https://github.com/timoxley","followers_url":"https://api.github.com/users/timoxley/followers","following_url":"https://api.github.com/users/timoxley/following{/other_user}","gists_url":"https://api.github.com/users/timoxley/gists{/gist_id}","starred_url":"https://api.github.com/users/timoxley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timoxley/subscriptions","organizations_url":"https://api.github.com/users/timoxley/orgs","repos_url":"https://api.github.com/users/timoxley/repos","events_url":"https://api.github.com/users/timoxley/events{/privacy}","received_events_url":"https://api.github.com/users/timoxley/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:37Z","updated_at":"2015-01-01T15:03:37Z","body":"agree."}},"public":true,"created_at":"2015-01-01T15:03:38Z"} +,{"id":"2489652717","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327612,"name":"cloudify-cosmo/cloudify-dsl-parser","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-dsl-parser"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify DSL Parser","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:38Z","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":"2489652726","type":"PushEvent","actor":{"id":3354417,"login":"shawnkong","gravatar_id":"","url":"https://api.github.com/users/shawnkong","avatar_url":"https://avatars.githubusercontent.com/u/3354417?"},"repo":{"id":20821944,"name":"shawnkong/shawnkong.github.io","url":"https://api.github.com/repos/shawnkong/shawnkong.github.io"},"payload":{"push_id":536864755,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ccceb16531a7a6d6a3f923b4265c9c4248312059","before":"ac6b9566f2a67be88ab2a7766daf03ea5fb974dd","commits":[{"sha":"ccceb16531a7a6d6a3f923b4265c9c4248312059","author":{"email":"c5c979718c347f8fe7828de502c3f485349b9d03@gmail.com","name":"shawnkong"},"message":"add post 2015 plan\n\nChange-Id: I5bc1021aadffb3c051c301b0ebc40a21ff259a0a\nSigned-off-by: shawnkong ","distinct":true,"url":"https://api.github.com/repos/shawnkong/shawnkong.github.io/commits/ccceb16531a7a6d6a3f923b4265c9c4248312059"}]},"public":true,"created_at":"2015-01-01T15:03:39Z"} +,{"id":"2489652727","type":"PushEvent","actor":{"id":4466256,"login":"okulovsky","gravatar_id":"","url":"https://api.github.com/users/okulovsky","avatar_url":"https://avatars.githubusercontent.com/u/4466256?"},"repo":{"id":19462305,"name":"air-labs/Tuto","url":"https://api.github.com/repos/air-labs/Tuto"},"payload":{"push_id":536864756,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"57e3be6b289588c525ac6ae147332fd533b6d489","before":"0bdc102b271ae2d9413849d8a40fe610b44fc7be","commits":[{"sha":"57e3be6b289588c525ac6ae147332fd533b6d489","author":{"email":"8630f38b17740aa0ae8e471c062911f48b4e9dfe@gmail.com","name":"okulovsky"},"message":"Добавил компиляцию tex в pdf","distinct":true,"url":"https://api.github.com/repos/air-labs/Tuto/commits/57e3be6b289588c525ac6ae147332fd533b6d489"}]},"public":true,"created_at":"2015-01-01T15:03:39Z","org":{"id":4466273,"login":"air-labs","gravatar_id":"","url":"https://api.github.com/orgs/air-labs","avatar_url":"https://avatars.githubusercontent.com/u/4466273?"}} +,{"id":"2489652728","type":"PushEvent","actor":{"id":311914,"login":"rrrene","gravatar_id":"","url":"https://api.github.com/users/rrrene","avatar_url":"https://avatars.githubusercontent.com/u/311914?"},"repo":{"id":20063638,"name":"inch-ci/inch_ci-web","url":"https://api.github.com/repos/inch-ci/inch_ci-web"},"payload":{"push_id":536864757,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"3d262753ae79ae1a1a7fe332bc06ae84167d5841","before":"8efbce0a71f551f966ea896e5b46d565f3a5faa0","commits":[{"sha":"72597e07562836b6ba5080cae9c1b2a3ffb01a3a","author":{"email":"22ee0097135072451429b5ac45630d52779cd49b@bamaru.de","name":"René Föhring"},"message":"Update css","distinct":true,"url":"https://api.github.com/repos/inch-ci/inch_ci-web/commits/72597e07562836b6ba5080cae9c1b2a3ffb01a3a"},{"sha":"3d262753ae79ae1a1a7fe332bc06ae84167d5841","author":{"email":"22ee0097135072451429b5ac45630d52779cd49b@bamaru.de","name":"René Föhring"},"message":"Remove development outputs","distinct":true,"url":"https://api.github.com/repos/inch-ci/inch_ci-web/commits/3d262753ae79ae1a1a7fe332bc06ae84167d5841"}]},"public":true,"created_at":"2015-01-01T15:03:40Z","org":{"id":6720851,"login":"inch-ci","gravatar_id":"","url":"https://api.github.com/orgs/inch-ci","avatar_url":"https://avatars.githubusercontent.com/u/6720851?"}} +,{"id":"2489652729","type":"ReleaseEvent","actor":{"id":7693186,"login":"ashishparkhi","gravatar_id":"","url":"https://api.github.com/users/ashishparkhi","avatar_url":"https://avatars.githubusercontent.com/u/7693186?"},"repo":{"id":27871780,"name":"IDeaSCo/rockstar","url":"https://api.github.com/repos/IDeaSCo/rockstar"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/IDeaSCo/rockstar/releases/818680","assets_url":"https://api.github.com/repos/IDeaSCo/rockstar/releases/818680/assets","upload_url":"https://uploads.github.com/repos/IDeaSCo/rockstar/releases/818680/assets{?name}","html_url":"https://github.com/IDeaSCo/rockstar/releases/tag/v1.0.0","id":818680,"tag_name":"v1.0.0","target_commitish":"master","name":null,"draft":false,"author":{"login":"ashishparkhi","id":7693186,"avatar_url":"https://avatars.githubusercontent.com/u/7693186?v=3","gravatar_id":"","url":"https://api.github.com/users/ashishparkhi","html_url":"https://github.com/ashishparkhi","followers_url":"https://api.github.com/users/ashishparkhi/followers","following_url":"https://api.github.com/users/ashishparkhi/following{/other_user}","gists_url":"https://api.github.com/users/ashishparkhi/gists{/gist_id}","starred_url":"https://api.github.com/users/ashishparkhi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ashishparkhi/subscriptions","organizations_url":"https://api.github.com/users/ashishparkhi/orgs","repos_url":"https://api.github.com/users/ashishparkhi/repos","events_url":"https://api.github.com/users/ashishparkhi/events{/privacy}","received_events_url":"https://api.github.com/users/ashishparkhi/received_events","type":"User","site_admin":false},"prerelease":false,"created_at":"2015-01-01T14:59:51Z","published_at":"2015-01-01T15:03:39Z","assets":[],"tarball_url":"https://api.github.com/repos/IDeaSCo/rockstar/tarball/v1.0.0","zipball_url":"https://api.github.com/repos/IDeaSCo/rockstar/zipball/v1.0.0","body":null}},"public":true,"created_at":"2015-01-01T15:03:40Z","org":{"id":8440704,"login":"IDeaSCo","gravatar_id":"","url":"https://api.github.com/orgs/IDeaSCo","avatar_url":"https://avatars.githubusercontent.com/u/8440704?"}} +,{"id":"2489652730","type":"CommitCommentEvent","actor":{"id":4303686,"login":"csfrancis","gravatar_id":"","url":"https://api.github.com/users/csfrancis","avatar_url":"https://avatars.githubusercontent.com/u/4303686?"},"repo":{"id":28687850,"name":"csfrancis/vmware-tools-patches","url":"https://api.github.com/repos/csfrancis/vmware-tools-patches"},"payload":{"comment":{"url":"https://api.github.com/repos/csfrancis/vmware-tools-patches/comments/9132428","html_url":"https://github.com/csfrancis/vmware-tools-patches/commit/f69e8bd03dd3f85b995e74fe6ca289d6f880dda0#commitcomment-9132428","id":9132428,"user":{"login":"csfrancis","id":4303686,"avatar_url":"https://avatars.githubusercontent.com/u/4303686?v=3","gravatar_id":"","url":"https://api.github.com/users/csfrancis","html_url":"https://github.com/csfrancis","followers_url":"https://api.github.com/users/csfrancis/followers","following_url":"https://api.github.com/users/csfrancis/following{/other_user}","gists_url":"https://api.github.com/users/csfrancis/gists{/gist_id}","starred_url":"https://api.github.com/users/csfrancis/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/csfrancis/subscriptions","organizations_url":"https://api.github.com/users/csfrancis/orgs","repos_url":"https://api.github.com/users/csfrancis/repos","events_url":"https://api.github.com/users/csfrancis/events{/privacy}","received_events_url":"https://api.github.com/users/csfrancis/received_events","type":"User","site_admin":false},"position":8,"line":8,"path":"patches/vmhgfs/vmhgfs-d_alias-kernel-3.18.1-tools-9.6.1.patch","commit_id":"f69e8bd03dd3f85b995e74fe6ca289d6f880dda0","created_at":"2015-01-01T15:03:40Z","updated_at":"2015-01-01T15:03:40Z","body":"Yeah, I noticed that but it didn't apply cleanly for me with my version of vmware tools."}},"public":true,"created_at":"2015-01-01T15:03:40Z"} +,{"id":"2489652732","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327658,"name":"cloudify-cosmo/cloudify-plugin-template","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-plugin-template"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:40Z","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":"2489652733","type":"WatchEvent","actor":{"id":5698124,"login":"xingdao","gravatar_id":"","url":"https://api.github.com/users/xingdao","avatar_url":"https://avatars.githubusercontent.com/u/5698124?"},"repo":{"id":19542809,"name":"interagent/http-api-design","url":"https://api.github.com/repos/interagent/http-api-design"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:40Z","org":{"id":7388387,"login":"interagent","gravatar_id":"","url":"https://api.github.com/orgs/interagent","avatar_url":"https://avatars.githubusercontent.com/u/7388387?"}} +,{"id":"2489652734","type":"PushEvent","actor":{"id":8603621,"login":"pmbhumkar","gravatar_id":"","url":"https://api.github.com/users/pmbhumkar","avatar_url":"https://avatars.githubusercontent.com/u/8603621?"},"repo":{"id":28688570,"name":"pmbhumkar/mangoopatch","url":"https://api.github.com/repos/pmbhumkar/mangoopatch"},"payload":{"push_id":536864760,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"efa50f8ded6f77431d39070c26b574b270923e1b","before":"e5273b9874e5878168fd4248dccf5b4277278dd8","commits":[{"sha":"efa50f8ded6f77431d39070c26b574b270923e1b","author":{"email":"38fd3d050688ff5865e112d70b9a3b39cb125550@gmail.com","name":"pmbhumkar"},"message":"Create chown.patch","distinct":true,"url":"https://api.github.com/repos/pmbhumkar/mangoopatch/commits/efa50f8ded6f77431d39070c26b574b270923e1b"}]},"public":true,"created_at":"2015-01-01T15:03:40Z"} +,{"id":"2489652737","type":"IssueCommentEvent","actor":{"id":201664,"login":"aredo","gravatar_id":"","url":"https://api.github.com/users/aredo","avatar_url":"https://avatars.githubusercontent.com/u/201664?"},"repo":{"id":28348351,"name":"nodeschool/jakarta","url":"https://api.github.com/repos/nodeschool/jakarta"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/nodeschool/jakarta/issues/3","labels_url":"https://api.github.com/repos/nodeschool/jakarta/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/nodeschool/jakarta/issues/3/comments","events_url":"https://api.github.com/repos/nodeschool/jakarta/issues/3/events","html_url":"https://github.com/nodeschool/jakarta/pull/3","id":53213097,"number":3,"title":"repull request at gh-pages branch","user":{"login":"eufat","id":3710666,"avatar_url":"https://avatars.githubusercontent.com/u/3710666?v=3","gravatar_id":"","url":"https://api.github.com/users/eufat","html_url":"https://github.com/eufat","followers_url":"https://api.github.com/users/eufat/followers","following_url":"https://api.github.com/users/eufat/following{/other_user}","gists_url":"https://api.github.com/users/eufat/gists{/gist_id}","starred_url":"https://api.github.com/users/eufat/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eufat/subscriptions","organizations_url":"https://api.github.com/users/eufat/orgs","repos_url":"https://api.github.com/users/eufat/repos","events_url":"https://api.github.com/users/eufat/events{/privacy}","received_events_url":"https://api.github.com/users/eufat/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T05:00:23Z","updated_at":"2015-01-01T15:03:40Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/nodeschool/jakarta/pulls/3","html_url":"https://github.com/nodeschool/jakarta/pull/3","diff_url":"https://github.com/nodeschool/jakarta/pull/3.diff","patch_url":"https://github.com/nodeschool/jakarta/pull/3.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/nodeschool/jakarta/issues/comments/68488555","html_url":"https://github.com/nodeschool/jakarta/pull/3#issuecomment-68488555","issue_url":"https://api.github.com/repos/nodeschool/jakarta/issues/3","id":68488555,"user":{"login":"aredo","id":201664,"avatar_url":"https://avatars.githubusercontent.com/u/201664?v=3","gravatar_id":"","url":"https://api.github.com/users/aredo","html_url":"https://github.com/aredo","followers_url":"https://api.github.com/users/aredo/followers","following_url":"https://api.github.com/users/aredo/following{/other_user}","gists_url":"https://api.github.com/users/aredo/gists{/gist_id}","starred_url":"https://api.github.com/users/aredo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aredo/subscriptions","organizations_url":"https://api.github.com/users/aredo/orgs","repos_url":"https://api.github.com/users/aredo/repos","events_url":"https://api.github.com/users/aredo/events{/privacy}","received_events_url":"https://api.github.com/users/aredo/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:40Z","updated_at":"2015-01-01T15:03:40Z","body":"@eufat please make it all as one commit and make sure your PS and do merge automatically by github. Thanks."}},"public":true,"created_at":"2015-01-01T15:03:40Z","org":{"id":5437587,"login":"nodeschool","gravatar_id":"","url":"https://api.github.com/orgs/nodeschool","avatar_url":"https://avatars.githubusercontent.com/u/5437587?"}} +,{"id":"2489652739","type":"PushEvent","actor":{"id":5277588,"login":"Martstol","gravatar_id":"","url":"https://api.github.com/users/Martstol","avatar_url":"https://avatars.githubusercontent.com/u/5277588?"},"repo":{"id":25680650,"name":"Martstol/ProsjektOppgave","url":"https://api.github.com/repos/Martstol/ProsjektOppgave"},"payload":{"push_id":536864762,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a92176ced2fe1a3b284a6b0214858ad5938a8bf5","before":"2c6ad9cd99433d54b049df56e0294b71a1d2accc","commits":[{"sha":"a92176ced2fe1a3b284a6b0214858ad5938a8bf5","author":{"email":"bc008341b45f3cbb00018aa07f861bfc1cd56c3c@gmail.com","name":"Martin"},"message":"...","distinct":true,"url":"https://api.github.com/repos/Martstol/ProsjektOppgave/commits/a92176ced2fe1a3b284a6b0214858ad5938a8bf5"}]},"public":true,"created_at":"2015-01-01T15:03:40Z"} +,{"id":"2489652744","type":"PushEvent","actor":{"id":53159,"login":"lxsameer","gravatar_id":"","url":"https://api.github.com/users/lxsameer","avatar_url":"https://avatars.githubusercontent.com/u/53159?"},"repo":{"id":28520883,"name":"Yellowen/Franky","url":"https://api.github.com/repos/Yellowen/Franky"},"payload":{"push_id":536864765,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"bd64dadcd8910b4e2c41e369a1a47578866d16a0","before":"3a817cc6908f87b023faba91c43bab1f4a7403e9","commits":[{"sha":"c094cc8ea0f4e071113aec45d8076b79807fe3be","author":{"email":"6ca2d002a241c39080e8e33413f3f48ae3b75969@gnu.org","name":"Sameer Rahmani"},"message":"Repeat plugin fixed","distinct":true,"url":"https://api.github.com/repos/Yellowen/Franky/commits/c094cc8ea0f4e071113aec45d8076b79807fe3be"},{"sha":"bd64dadcd8910b4e2c41e369a1a47578866d16a0","author":{"email":"6ca2d002a241c39080e8e33413f3f48ae3b75969@gnu.org","name":"Sameer Rahmani"},"message":"Repeat plugin fixed","distinct":true,"url":"https://api.github.com/repos/Yellowen/Franky/commits/bd64dadcd8910b4e2c41e369a1a47578866d16a0"}]},"public":true,"created_at":"2015-01-01T15:03:42Z","org":{"id":3639224,"login":"Yellowen","gravatar_id":"","url":"https://api.github.com/orgs/Yellowen","avatar_url":"https://avatars.githubusercontent.com/u/3639224?"}} +,{"id":"2489652749","type":"WatchEvent","actor":{"id":10364689,"login":"ketandani02","gravatar_id":"","url":"https://api.github.com/users/ketandani02","avatar_url":"https://avatars.githubusercontent.com/u/10364689?"},"repo":{"id":16157746,"name":"aspnet/EntityFramework","url":"https://api.github.com/repos/aspnet/EntityFramework"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:43Z","org":{"id":6476660,"login":"aspnet","gravatar_id":"","url":"https://api.github.com/orgs/aspnet","avatar_url":"https://avatars.githubusercontent.com/u/6476660?"}} +,{"id":"2489652750","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327658,"name":"cloudify-cosmo/cloudify-plugin-template","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-plugin-template"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify Templates for Cloudify Plugins","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:43Z","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":"2489652752","type":"PushEvent","actor":{"id":7666055,"login":"sivir","gravatar_id":"","url":"https://api.github.com/users/sivir","avatar_url":"https://avatars.githubusercontent.com/u/7666055?"},"repo":{"id":27804731,"name":"sivir/baikal1","url":"https://api.github.com/repos/sivir/baikal1"},"payload":{"push_id":536864767,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"288deddbcf2f3fa724d448da07876d72b10bb25f","before":"5dfb1df3b6b89b7fbae33ed472250584847f4444","commits":[{"sha":"288deddbcf2f3fa724d448da07876d72b10bb25f","author":{"email":"1e2053d8b74af812877a9ba6f0caba8976b70fc7@gmail.com","name":"Egor Potiomkin"},"message":"music","distinct":true,"url":"https://api.github.com/repos/sivir/baikal1/commits/288deddbcf2f3fa724d448da07876d72b10bb25f"}]},"public":true,"created_at":"2015-01-01T15:03:43Z"} +,{"id":"2489652753","type":"PushEvent","actor":{"id":906606,"login":"loki2302","gravatar_id":"","url":"https://api.github.com/users/loki2302","avatar_url":"https://avatars.githubusercontent.com/u/906606?"},"repo":{"id":23532033,"name":"loki2302/nodejs-app-experiment","url":"https://api.github.com/repos/loki2302/nodejs-app-experiment"},"payload":{"push_id":536864768,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"07ec8d189b8a0095eeaa2cf9a79734f4906f0b7d","before":"a56a55e59ae05c49b724b3cba27115422be7147f","commits":[{"sha":"07ec8d189b8a0095eeaa2cf9a79734f4906f0b7d","author":{"email":"58b632659afcd17f116d710ecd637de3c7aab5c6@loki2302.me","name":"loki2302"},"message":"Now using Koa instead of Express","distinct":true,"url":"https://api.github.com/repos/loki2302/nodejs-app-experiment/commits/07ec8d189b8a0095eeaa2cf9a79734f4906f0b7d"}]},"public":true,"created_at":"2015-01-01T15:03:43Z"} +,{"id":"2489652756","type":"IssueCommentEvent","actor":{"id":43438,"login":"timoxley","gravatar_id":"","url":"https://api.github.com/users/timoxley","avatar_url":"https://avatars.githubusercontent.com/u/43438?"},"repo":{"id":24328359,"name":"timoxley/bulk","url":"https://api.github.com/repos/timoxley/bulk"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/timoxley/bulk/issues/3","labels_url":"https://api.github.com/repos/timoxley/bulk/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/timoxley/bulk/issues/3/comments","events_url":"https://api.github.com/repos/timoxley/bulk/issues/3/events","html_url":"https://github.com/timoxley/bulk/issues/3","id":53052553,"number":3,"title":"--bail","user":{"login":"yoshuawuyts","id":2467194,"avatar_url":"https://avatars.githubusercontent.com/u/2467194?v=3","gravatar_id":"","url":"https://api.github.com/users/yoshuawuyts","html_url":"https://github.com/yoshuawuyts","followers_url":"https://api.github.com/users/yoshuawuyts/followers","following_url":"https://api.github.com/users/yoshuawuyts/following{/other_user}","gists_url":"https://api.github.com/users/yoshuawuyts/gists{/gist_id}","starred_url":"https://api.github.com/users/yoshuawuyts/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yoshuawuyts/subscriptions","organizations_url":"https://api.github.com/users/yoshuawuyts/orgs","repos_url":"https://api.github.com/users/yoshuawuyts/repos","events_url":"https://api.github.com/users/yoshuawuyts/events{/privacy}","received_events_url":"https://api.github.com/users/yoshuawuyts/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-12-29T16:32:53Z","updated_at":"2015-01-01T15:03:43Z","closed_at":null,"body":"though it was in `bulk` already, but it would be cool if `--bail` could be given to exit on a non-0 exit code."},"comment":{"url":"https://api.github.com/repos/timoxley/bulk/issues/comments/68488557","html_url":"https://github.com/timoxley/bulk/issues/3#issuecomment-68488557","issue_url":"https://api.github.com/repos/timoxley/bulk/issues/3","id":68488557,"user":{"login":"timoxley","id":43438,"avatar_url":"https://avatars.githubusercontent.com/u/43438?v=3","gravatar_id":"","url":"https://api.github.com/users/timoxley","html_url":"https://github.com/timoxley","followers_url":"https://api.github.com/users/timoxley/followers","following_url":"https://api.github.com/users/timoxley/following{/other_user}","gists_url":"https://api.github.com/users/timoxley/gists{/gist_id}","starred_url":"https://api.github.com/users/timoxley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timoxley/subscriptions","organizations_url":"https://api.github.com/users/timoxley/orgs","repos_url":"https://api.github.com/users/timoxley/repos","events_url":"https://api.github.com/users/timoxley/events{/privacy}","received_events_url":"https://api.github.com/users/timoxley/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:43Z","updated_at":"2015-01-01T15:03:43Z","body":"PR?"}},"public":true,"created_at":"2015-01-01T15:03:43Z"} +,{"id":"2489652762","type":"PushEvent","actor":{"id":6477580,"login":"l1berty","gravatar_id":"","url":"https://api.github.com/users/l1berty","avatar_url":"https://avatars.githubusercontent.com/u/6477580?"},"repo":{"id":26651759,"name":"vivisect/vivisect","url":"https://api.github.com/repos/vivisect/vivisect"},"payload":{"push_id":536864772,"size":35,"distinct_size":2,"ref":"refs/heads/l1berty_vstruct_marshalling_fix","head":"e94cae76eccf0f322d483405fa260e6dd926a9b8","before":"c2a78b1425f13d1f8a679fa20f5c6f6bab6ba656","commits":[{"sha":"bf56ce0df9db770aea27d09f6387b7ea68b8689c","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@r4780y.com","name":"atlas"},"message":"Viv memcanvas starts at a valid VA, fixing a lot of render bugs.\nthe existing code arbitrarily slams in some offset from the va we want\nas the starting va. for viv, if that is in the middle of a string, the\nsize of the string gets slammed in, causing all offsets to be wrong. if\na long string exists just prior to the thing you want to see, often your\nobject doesn't get rendered.","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/bf56ce0df9db770aea27d09f6387b7ea68b8689c"},{"sha":"3e962cbd971acc92d65b8247bdbc3b0e00ca40f0","author":{"email":"7f746920ebdfbf9e3a86fb40c11e8fa2326b9896@kenshoto.com","name":"invisig0th"},"message":"Merge pull request #22 from atlas0fd00m/real-master\n\nViv memcanvas starts at a valid VA, fixing a lot of render bugs.","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/3e962cbd971acc92d65b8247bdbc3b0e00ca40f0"},{"sha":"1137827f0bc3c67ba04303a7a51539f345b5217d","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"Dynamic Branches in default VaSet for all workspaces.","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/1137827f0bc3c67ba04303a7a51539f345b5217d"},{"sha":"2086615f833da1b77bc3b63074e6b6e0e179eeae","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"symboliks read/writeSymMemory and solve() support for vals list","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/2086615f833da1b77bc3b63074e6b6e0e179eeae"},{"sha":"af8843a15a55d1dedc507846c3095e679e503771","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"x86 jmp reg instruction now should return constraints for each known xref, allowing switch-cases to flow","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/af8843a15a55d1dedc507846c3095e679e503771"},{"sha":"08c7cb73cfe977b5fa7646d62cd6da5e7ff7eb38","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"dynamic branches made mainstream (wrapped into impemu.AnalysisMonitor)","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/08c7cb73cfe977b5fa7646d62cd6da5e7ff7eb38"},{"sha":"5247f66cdfaa28023fe5421aa6d2093ec606821b","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"and the flags.","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/5247f66cdfaa28023fe5421aa6d2093ec606821b"},{"sha":"5b03905bd2c03fc36150bbcef3c9ef28a140aea1","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"and the flags.","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/5b03905bd2c03fc36150bbcef3c9ef28a140aea1"},{"sha":"27cb792bce329146697e3938f07d7e277a00867a","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"detect GCC ELF PIC code (where calls and other memory refs are made based on ebx)","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/27cb792bce329146697e3938f07d7e277a00867a"},{"sha":"cf43cc8c5e6542b49fb312cc554070b50c57d0a9","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"cleanup thunk_bx","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/cf43cc8c5e6542b49fb312cc554070b50c57d0a9"},{"sha":"b0cbea67ee701df23eb53c07c7dbfd61acc6f3cd","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"name fix","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/b0cbea67ee701df23eb53c07c7dbfd61acc6f3cd"},{"sha":"590aa55b32692388dc318bda27f258f245816ac5","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"name fix again","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/590aa55b32692388dc318bda27f258f245816ac5"},{"sha":"337ea8a4490544f471f9d0b408b1f61d768b7b29","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"Viv Gui: if setting comment or name and current one exists, prepopulate the dialog box with the current one for editing.","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/337ea8a4490544f471f9d0b408b1f61d768b7b29"},{"sha":"d148056dc0e4353b686786b8068e76f3a090b016","author":{"email":"7f746920ebdfbf9e3a86fb40c11e8fa2326b9896@kenshoto.com","name":"invisig0th"},"message":"Merge pull request #29 from atlas0fd00m/atlas_EasyEditNameAndComment\n\nViv Gui: if setting comment or name and current one exists, prepopulate ...","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/d148056dc0e4353b686786b8068e76f3a090b016"},{"sha":"94e4458a9613e381a5790593f1a7b2233ee32419","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"python3 print fiexs","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/94e4458a9613e381a5790593f1a7b2233ee32419"},{"sha":"99fb97929102d85e116e16676f01a3e6ecbfd3aa","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"track dynamic branches in codeflow callbacks. (dual mode commit... both methods currently exist. pick one and remove loser before merging upstream)","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/99fb97929102d85e116e16676f01a3e6ecbfd3aa"},{"sha":"13e087c04ea0bbdb2aec72b451e14f1ac6486cd1","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"remove original dynamic branch handling code.","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/13e087c04ea0bbdb2aec72b451e14f1ac6486cd1"},{"sha":"b08a1ff586b96d9455a90ab6fa2ea2e1573853c5","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"cleanup and removal of artifacts.","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/b08a1ff586b96d9455a90ab6fa2ea2e1573853c5"},{"sha":"89bc073ac7c44109bddc7b079604e3b7262e3eec","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@r4780y.com","name":"atlas"},"message":"fixing envi/i386 render bug which caused clicked registers to be treated\nseparately in i386RegOper/i386SibOper and i386RegMemOper.","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/89bc073ac7c44109bddc7b079604e3b7262e3eec"},{"sha":"50e11b0ec27c97db8a96204d59b52c7ae4520da5","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@r4780y.com","name":"atlas"},"message":"viv: dump QWebView-derived MemCanvas classes to HTML files (Memory View\nand FuncGraph View and Symboliks View). Sadly, we can't currently\neasily do this for the CallGraph or Tree Views (eg. Functions, Workspace\nNames). perhaps the TreeViews will be added later. not sure about\nCallGraph, it's a different animal altogether.","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/50e11b0ec27c97db8a96204d59b52c7ae4520da5"}]},"public":true,"created_at":"2015-01-01T15:03:44Z","org":{"id":9749998,"login":"vivisect","gravatar_id":"","url":"https://api.github.com/orgs/vivisect","avatar_url":"https://avatars.githubusercontent.com/u/9749998?"}} +,{"id":"2489652763","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18326574,"name":"cloudify-cosmo/cloudify-manager","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:44Z","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":"2489652765","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":"closed","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":"closed","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:03:44Z","closed_at":"2015-01-01T15:03:44Z","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":11,"forks":448,"open_issues":11,"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":false,"mergeable_state":"dirty","merged_by":null,"comments":0,"review_comments":0,"commits":32,"additions":16320,"deletions":167,"changed_files":99}},"public":true,"created_at":"2015-01-01T15:03:45Z"} +,{"id":"2489652769","type":"IssueCommentEvent","actor":{"id":2156237,"login":"arkascha","gravatar_id":"","url":"https://api.github.com/users/arkascha","avatar_url":"https://avatars.githubusercontent.com/u/2156237?"},"repo":{"id":8987090,"name":"owncloud/shorty","url":"https://api.github.com/repos/owncloud/shorty"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/owncloud/shorty/issues/77","labels_url":"https://api.github.com/repos/owncloud/shorty/issues/77/labels{/name}","comments_url":"https://api.github.com/repos/owncloud/shorty/issues/77/comments","events_url":"https://api.github.com/repos/owncloud/shorty/issues/77/events","html_url":"https://github.com/owncloud/shorty/issues/77","id":52982767,"number":77,"title":"States don't seem to work properly anymore","user":{"login":"arkascha","id":2156237,"avatar_url":"https://avatars.githubusercontent.com/u/2156237?v=3","gravatar_id":"","url":"https://api.github.com/users/arkascha","html_url":"https://github.com/arkascha","followers_url":"https://api.github.com/users/arkascha/followers","following_url":"https://api.github.com/users/arkascha/following{/other_user}","gists_url":"https://api.github.com/users/arkascha/gists{/gist_id}","starred_url":"https://api.github.com/users/arkascha/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arkascha/subscriptions","organizations_url":"https://api.github.com/users/arkascha/orgs","repos_url":"https://api.github.com/users/arkascha/repos","events_url":"https://api.github.com/users/arkascha/events{/privacy}","received_events_url":"https://api.github.com/users/arkascha/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":8,"created_at":"2014-12-28T14:51:46Z","updated_at":"2015-01-01T15:03:44Z","closed_at":null,"body":"@fredl99 reported this issue in over there: https://github.com/owncloud/shorty/issues/76\r\nI took the liberty to separated the issue here into a separate entry. \r\n\r\nThe selected states don't seem to work properly anymore. Any of \"closed\", \"private\" or \"shared\" results in a \"forbidden\" message when calling the short URL, regardless if or which user is logged in. No login-page appears either. The only working status at the moment is \"public\"."},"comment":{"url":"https://api.github.com/repos/owncloud/shorty/issues/comments/68488558","html_url":"https://github.com/owncloud/shorty/issues/77#issuecomment-68488558","issue_url":"https://api.github.com/repos/owncloud/shorty/issues/77","id":68488558,"user":{"login":"arkascha","id":2156237,"avatar_url":"https://avatars.githubusercontent.com/u/2156237?v=3","gravatar_id":"","url":"https://api.github.com/users/arkascha","html_url":"https://github.com/arkascha","followers_url":"https://api.github.com/users/arkascha/followers","following_url":"https://api.github.com/users/arkascha/following{/other_user}","gists_url":"https://api.github.com/users/arkascha/gists{/gist_id}","starred_url":"https://api.github.com/users/arkascha/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arkascha/subscriptions","organizations_url":"https://api.github.com/users/arkascha/orgs","repos_url":"https://api.github.com/users/arkascha/repos","events_url":"https://api.github.com/users/arkascha/events{/privacy}","received_events_url":"https://api.github.com/users/arkascha/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:44Z","updated_at":"2015-01-01T15:03:44Z","body":"Hm... maybe such configuration should be prevented in an explicit manner. \r\nIt never occurred to me one could try such a configuration. Classical case of \"creator blindness\" :-)"}},"public":true,"created_at":"2015-01-01T15:03:45Z","org":{"id":1645051,"login":"owncloud","gravatar_id":"","url":"https://api.github.com/orgs/owncloud","avatar_url":"https://avatars.githubusercontent.com/u/1645051?"}} +,{"id":"2489652770","type":"PullRequestEvent","actor":{"id":299901,"login":"dankempster","gravatar_id":"","url":"https://api.github.com/users/dankempster","avatar_url":"https://avatars.githubusercontent.com/u/299901?"},"repo":{"id":28648383,"name":"dankempster/axstrad-filesystem","url":"https://api.github.com/repos/dankempster/axstrad-filesystem"},"payload":{"action":"opened","number":3,"pull_request":{"url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/3","id":26743795,"html_url":"https://github.com/dankempster/axstrad-filesystem/pull/3","diff_url":"https://github.com/dankempster/axstrad-filesystem/pull/3.diff","patch_url":"https://github.com/dankempster/axstrad-filesystem/pull/3.patch","issue_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/3","number":3,"state":"open","locked":false,"title":"Set Travis builds to push code coverage to Coveralls.","user":{"login":"dankempster","id":299901,"avatar_url":"https://avatars.githubusercontent.com/u/299901?v=3","gravatar_id":"","url":"https://api.github.com/users/dankempster","html_url":"https://github.com/dankempster","followers_url":"https://api.github.com/users/dankempster/followers","following_url":"https://api.github.com/users/dankempster/following{/other_user}","gists_url":"https://api.github.com/users/dankempster/gists{/gist_id}","starred_url":"https://api.github.com/users/dankempster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dankempster/subscriptions","organizations_url":"https://api.github.com/users/dankempster/orgs","repos_url":"https://api.github.com/users/dankempster/repos","events_url":"https://api.github.com/users/dankempster/events{/privacy}","received_events_url":"https://api.github.com/users/dankempster/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:03:45Z","updated_at":"2015-01-01T15:03:45Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/3/commits","review_comments_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/3/comments","review_comment_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/comments/{number}","comments_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/3/comments","statuses_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/statuses/1c6534408ae63ce8b18d28eb47ce83dbf0af31bb","head":{"label":"dankempster:add-coveralls","ref":"add-coveralls","sha":"1c6534408ae63ce8b18d28eb47ce83dbf0af31bb","user":{"login":"dankempster","id":299901,"avatar_url":"https://avatars.githubusercontent.com/u/299901?v=3","gravatar_id":"","url":"https://api.github.com/users/dankempster","html_url":"https://github.com/dankempster","followers_url":"https://api.github.com/users/dankempster/followers","following_url":"https://api.github.com/users/dankempster/following{/other_user}","gists_url":"https://api.github.com/users/dankempster/gists{/gist_id}","starred_url":"https://api.github.com/users/dankempster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dankempster/subscriptions","organizations_url":"https://api.github.com/users/dankempster/orgs","repos_url":"https://api.github.com/users/dankempster/repos","events_url":"https://api.github.com/users/dankempster/events{/privacy}","received_events_url":"https://api.github.com/users/dankempster/received_events","type":"User","site_admin":false},"repo":{"id":28648383,"name":"axstrad-filesystem","full_name":"dankempster/axstrad-filesystem","owner":{"login":"dankempster","id":299901,"avatar_url":"https://avatars.githubusercontent.com/u/299901?v=3","gravatar_id":"","url":"https://api.github.com/users/dankempster","html_url":"https://github.com/dankempster","followers_url":"https://api.github.com/users/dankempster/followers","following_url":"https://api.github.com/users/dankempster/following{/other_user}","gists_url":"https://api.github.com/users/dankempster/gists{/gist_id}","starred_url":"https://api.github.com/users/dankempster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dankempster/subscriptions","organizations_url":"https://api.github.com/users/dankempster/orgs","repos_url":"https://api.github.com/users/dankempster/repos","events_url":"https://api.github.com/users/dankempster/events{/privacy}","received_events_url":"https://api.github.com/users/dankempster/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/dankempster/axstrad-filesystem","description":"","fork":false,"url":"https://api.github.com/repos/dankempster/axstrad-filesystem","forks_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/forks","keys_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/keys{/key_id}","collaborators_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/teams","hooks_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/hooks","issue_events_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/events{/number}","events_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/events","assignees_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/assignees{/user}","branches_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/branches{/branch}","tags_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/tags","blobs_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/refs{/sha}","trees_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/trees{/sha}","statuses_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/statuses/{sha}","languages_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/languages","stargazers_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/stargazers","contributors_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/contributors","subscribers_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/subscribers","subscription_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/subscription","commits_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/commits{/sha}","git_commits_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/commits{/sha}","comments_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/comments{/number}","issue_comment_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/comments/{number}","contents_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/contents/{+path}","compare_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/compare/{base}...{head}","merges_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/merges","archive_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/downloads","issues_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues{/number}","pulls_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls{/number}","milestones_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/milestones{/number}","notifications_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/labels{/name}","releases_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/releases{/id}","created_at":"2014-12-30T22:56:17Z","updated_at":"2014-12-31T01:11:17Z","pushed_at":"2015-01-01T15:03:23Z","git_url":"git://github.com/dankempster/axstrad-filesystem.git","ssh_url":"git@github.com:dankempster/axstrad-filesystem.git","clone_url":"https://github.com/dankempster/axstrad-filesystem.git","svn_url":"https://github.com/dankempster/axstrad-filesystem","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":2,"forks":0,"open_issues":2,"watchers":0,"default_branch":"develop"}},"base":{"label":"dankempster:develop","ref":"develop","sha":"d2707adf8fb6309152905cb36666b74f5df6e513","user":{"login":"dankempster","id":299901,"avatar_url":"https://avatars.githubusercontent.com/u/299901?v=3","gravatar_id":"","url":"https://api.github.com/users/dankempster","html_url":"https://github.com/dankempster","followers_url":"https://api.github.com/users/dankempster/followers","following_url":"https://api.github.com/users/dankempster/following{/other_user}","gists_url":"https://api.github.com/users/dankempster/gists{/gist_id}","starred_url":"https://api.github.com/users/dankempster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dankempster/subscriptions","organizations_url":"https://api.github.com/users/dankempster/orgs","repos_url":"https://api.github.com/users/dankempster/repos","events_url":"https://api.github.com/users/dankempster/events{/privacy}","received_events_url":"https://api.github.com/users/dankempster/received_events","type":"User","site_admin":false},"repo":{"id":28648383,"name":"axstrad-filesystem","full_name":"dankempster/axstrad-filesystem","owner":{"login":"dankempster","id":299901,"avatar_url":"https://avatars.githubusercontent.com/u/299901?v=3","gravatar_id":"","url":"https://api.github.com/users/dankempster","html_url":"https://github.com/dankempster","followers_url":"https://api.github.com/users/dankempster/followers","following_url":"https://api.github.com/users/dankempster/following{/other_user}","gists_url":"https://api.github.com/users/dankempster/gists{/gist_id}","starred_url":"https://api.github.com/users/dankempster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dankempster/subscriptions","organizations_url":"https://api.github.com/users/dankempster/orgs","repos_url":"https://api.github.com/users/dankempster/repos","events_url":"https://api.github.com/users/dankempster/events{/privacy}","received_events_url":"https://api.github.com/users/dankempster/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/dankempster/axstrad-filesystem","description":"","fork":false,"url":"https://api.github.com/repos/dankempster/axstrad-filesystem","forks_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/forks","keys_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/keys{/key_id}","collaborators_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/teams","hooks_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/hooks","issue_events_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/events{/number}","events_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/events","assignees_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/assignees{/user}","branches_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/branches{/branch}","tags_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/tags","blobs_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/refs{/sha}","trees_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/trees{/sha}","statuses_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/statuses/{sha}","languages_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/languages","stargazers_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/stargazers","contributors_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/contributors","subscribers_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/subscribers","subscription_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/subscription","commits_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/commits{/sha}","git_commits_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/commits{/sha}","comments_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/comments{/number}","issue_comment_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/comments/{number}","contents_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/contents/{+path}","compare_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/compare/{base}...{head}","merges_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/merges","archive_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/downloads","issues_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues{/number}","pulls_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls{/number}","milestones_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/milestones{/number}","notifications_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/labels{/name}","releases_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/releases{/id}","created_at":"2014-12-30T22:56:17Z","updated_at":"2014-12-31T01:11:17Z","pushed_at":"2015-01-01T15:03:23Z","git_url":"git://github.com/dankempster/axstrad-filesystem.git","ssh_url":"git@github.com:dankempster/axstrad-filesystem.git","clone_url":"https://github.com/dankempster/axstrad-filesystem.git","svn_url":"https://github.com/dankempster/axstrad-filesystem","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":2,"forks":0,"open_issues":2,"watchers":0,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/3"},"html":{"href":"https://github.com/dankempster/axstrad-filesystem/pull/3"},"issue":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/3"},"comments":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/3/comments"},"review_comments":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/3/comments"},"review_comment":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/3/commits"},"statuses":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/statuses/1c6534408ae63ce8b18d28eb47ce83dbf0af31bb"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":436,"deletions":10,"changed_files":4}},"public":true,"created_at":"2015-01-01T15:03:45Z"} +,{"id":"2489652771","type":"PushEvent","actor":{"id":8971138,"login":"LinhTruongVan","gravatar_id":"","url":"https://api.github.com/users/LinhTruongVan","avatar_url":"https://avatars.githubusercontent.com/u/8971138?"},"repo":{"id":28688443,"name":"LinhTruongVan/EnglishArena","url":"https://api.github.com/repos/LinhTruongVan/EnglishArena"},"payload":{"push_id":536864774,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"6e307dee25493e801b5168762464aba2c053e236","before":"7d08278e6e9e6606a3032d1c7ee393ddb3af3188","commits":[{"sha":"4a2b59f23f6de6bf88ba0a6931cb41e13c3ed544","author":{"email":"2fc45bccdafcc507982afaeeb541bf326905243c@gmail.com","name":"LinhTruongVan"},"message":"English Arena","distinct":true,"url":"https://api.github.com/repos/LinhTruongVan/EnglishArena/commits/4a2b59f23f6de6bf88ba0a6931cb41e13c3ed544"},{"sha":"6e307dee25493e801b5168762464aba2c053e236","author":{"email":"2fc45bccdafcc507982afaeeb541bf326905243c@gmail.com","name":"LinhTruongVan"},"message":"Merge branch 'master' of https://github.com/LinhTruongVan/EnglishArena","distinct":true,"url":"https://api.github.com/repos/LinhTruongVan/EnglishArena/commits/6e307dee25493e801b5168762464aba2c053e236"}]},"public":true,"created_at":"2015-01-01T15:03:45Z"} +,{"id":"2489652772","type":"PushEvent","actor":{"id":3623502,"login":"jjyo","gravatar_id":"","url":"https://api.github.com/users/jjyo","avatar_url":"https://avatars.githubusercontent.com/u/3623502?"},"repo":{"id":26426188,"name":"jjyo/android","url":"https://api.github.com/repos/jjyo/android"},"payload":{"push_id":536864775,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"84e70f6bd97458ba61a6b9b4e2070a3bca10208b","before":"a47effd990fc30e8235eb8190b4b171e04a6f0de","commits":[{"sha":"84e70f6bd97458ba61a6b9b4e2070a3bca10208b","author":{"email":"5dd1561c768785384e2a643250a8e3941f5fefad@163.com","name":"jjyo"},"message":"SADF","distinct":true,"url":"https://api.github.com/repos/jjyo/android/commits/84e70f6bd97458ba61a6b9b4e2070a3bca10208b"}]},"public":true,"created_at":"2015-01-01T15:03:45Z"} +,{"id":"2489652775","type":"PushEvent","actor":{"id":6874783,"login":"wanglongqi","gravatar_id":"","url":"https://api.github.com/users/wanglongqi","avatar_url":"https://avatars.githubusercontent.com/u/6874783?"},"repo":{"id":17819385,"name":"wanglongqi/wanglongqi.github.io","url":"https://api.github.com/repos/wanglongqi/wanglongqi.github.io"},"payload":{"push_id":536864776,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3f082bfe9ce37521adceaba94687b8da1ca757a2","before":"7be4309af9078c2610b349b03c3b74d6fba65364","commits":[{"sha":"3f082bfe9ce37521adceaba94687b8da1ca757a2","author":{"email":"16320187abe3fdd5a51d91f3939d7c3d922d276f@gmail.com","name":"WANG Longqi"},"message":"no message","distinct":true,"url":"https://api.github.com/repos/wanglongqi/wanglongqi.github.io/commits/3f082bfe9ce37521adceaba94687b8da1ca757a2"}]},"public":true,"created_at":"2015-01-01T15:03:45Z"} +,{"id":"2489652776","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":536864778,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8363b1bc893a653daaf6fef0fee79580d3a9d937","before":"c6ef09bde4f3b81c41c92ae18cc332fecb8efcdc","commits":[{"sha":"8363b1bc893a653daaf6fef0fee79580d3a9d937","author":{"email":"efb10bbac3105896ed72c82c36828ccc7a2547da@gmail.com","name":"syon"},"message":"middleman build","distinct":true,"url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/commits/8363b1bc893a653daaf6fef0fee79580d3a9d937"}]},"public":true,"created_at":"2015-01-01T15:03:46Z"} +,{"id":"2489652778","type":"WatchEvent","actor":{"id":1811118,"login":"rodolfobandeira","gravatar_id":"","url":"https://api.github.com/users/rodolfobandeira","avatar_url":"https://avatars.githubusercontent.com/u/1811118?"},"repo":{"id":11288568,"name":"digitalocean/rack-protection","url":"https://api.github.com/repos/digitalocean/rack-protection"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:46Z","org":{"id":4650108,"login":"digitalocean","gravatar_id":"","url":"https://api.github.com/orgs/digitalocean","avatar_url":"https://avatars.githubusercontent.com/u/4650108?"}} +,{"id":"2489652779","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":536864780,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fd1426e13dccb13a23cfbe03c067ebeaa49331f9","before":"aa0a4decc8475d7af6b33b6fea69d6102e5b06ba","commits":[{"sha":"fd1426e13dccb13a23cfbe03c067ebeaa49331f9","author":{"email":"05c0269870804bada1f091d378fdd69482fe0000@yahoo.com","name":"Matthew Ye"},"message":"ddddddd\n\nddddddddd","distinct":true,"url":"https://api.github.com/repos/Blimeo/blimeo.github.io/commits/fd1426e13dccb13a23cfbe03c067ebeaa49331f9"}]},"public":true,"created_at":"2015-01-01T15:03:46Z"} +,{"id":"2489652782","type":"PushEvent","actor":{"id":6587210,"login":"EmilAleksandrov","gravatar_id":"","url":"https://api.github.com/users/EmilAleksandrov","avatar_url":"https://avatars.githubusercontent.com/u/6587210?"},"repo":{"id":28593309,"name":"EmilAleksandrov/PracticalProject-OnlineAds","url":"https://api.github.com/repos/EmilAleksandrov/PracticalProject-OnlineAds"},"payload":{"push_id":536864781,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f7d079bb8d48a9905c1f5421805d677acc669f71","before":"15a9b4450553ba60008d01ccbabafa81fda6c3e4","commits":[{"sha":"f7d079bb8d48a9905c1f5421805d677acc669f71","author":{"email":"5a18d12f372cb890f7a3930223687493602f3246@gmail.com","name":"Aleksandrov"},"message":"Set category logic at last","distinct":true,"url":"https://api.github.com/repos/EmilAleksandrov/PracticalProject-OnlineAds/commits/f7d079bb8d48a9905c1f5421805d677acc669f71"}]},"public":true,"created_at":"2015-01-01T15:03:46Z"} +,{"id":"2489652789","type":"CreateEvent","actor":{"id":8189622,"login":"dc29","gravatar_id":"","url":"https://api.github.com/users/dc29","avatar_url":"https://avatars.githubusercontent.com/u/8189622?"},"repo":{"id":28688669,"name":"dc29/bash","url":"https://api.github.com/repos/dc29/bash"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":null,"pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:48Z"} +,{"id":"2489652790","type":"PushEvent","actor":{"id":1266011,"login":"danprince","gravatar_id":"","url":"https://api.github.com/users/danprince","avatar_url":"https://avatars.githubusercontent.com/u/1266011?"},"repo":{"id":28223366,"name":"danprince/ng-picky","url":"https://api.github.com/repos/danprince/ng-picky"},"payload":{"push_id":536864785,"size":1,"distinct_size":1,"ref":"refs/heads/dev","head":"21a6d06b2d56c2d4fd462c9615ba580ac1339a93","before":"57437298f6d4e29395ba807ee25c20e3eb220720","commits":[{"sha":"21a6d06b2d56c2d4fd462c9615ba580ac1339a93","author":{"email":"469c42bff2bd573099eb48b1874c2ce051c1bf36@hotmail.co.uk","name":"danprince"},"message":"fixing issues caused by foundation","distinct":true,"url":"https://api.github.com/repos/danprince/ng-picky/commits/21a6d06b2d56c2d4fd462c9615ba580ac1339a93"}]},"public":true,"created_at":"2015-01-01T15:03:48Z"} +,{"id":"2489652792","type":"CreateEvent","actor":{"id":1323354,"login":"fatjanhushi","gravatar_id":"","url":"https://api.github.com/users/fatjanhushi","avatar_url":"https://avatars.githubusercontent.com/u/1323354?"},"repo":{"id":28688667,"name":"fatjanhushi/t25mycalendar","url":"https://api.github.com/repos/fatjanhushi/t25mycalendar"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:48Z"} +,{"id":"2489652794","type":"CreateEvent","actor":{"id":9414889,"login":"whiteineyes","gravatar_id":"","url":"https://api.github.com/users/whiteineyes","avatar_url":"https://avatars.githubusercontent.com/u/9414889?"},"repo":{"id":28688463,"name":"whiteineyes/hexo","url":"https://api.github.com/repos/whiteineyes/hexo"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:48Z"} +,{"id":"2489652796","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18326574,"name":"cloudify-cosmo/cloudify-manager","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify's manager related code","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:48Z","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":"2489652798","type":"IssueCommentEvent","actor":{"id":4801917,"login":"andreas-venturini","gravatar_id":"","url":"https://api.github.com/users/andreas-venturini","avatar_url":"https://avatars.githubusercontent.com/u/4801917?"},"repo":{"id":18684510,"name":"coreos/bugs","url":"https://api.github.com/repos/coreos/bugs"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/coreos/bugs/issues/123","labels_url":"https://api.github.com/repos/coreos/bugs/issues/123/labels{/name}","comments_url":"https://api.github.com/repos/coreos/bugs/issues/123/comments","events_url":"https://api.github.com/repos/coreos/bugs/issues/123/events","html_url":"https://github.com/coreos/bugs/issues/123","id":42358703,"number":123,"title":"Failed to set memory.limit_in_bytes on : Invalid argument","user":{"login":"jfromaniello","id":178512,"avatar_url":"https://avatars.githubusercontent.com/u/178512?v=3","gravatar_id":"","url":"https://api.github.com/users/jfromaniello","html_url":"https://github.com/jfromaniello","followers_url":"https://api.github.com/users/jfromaniello/followers","following_url":"https://api.github.com/users/jfromaniello/following{/other_user}","gists_url":"https://api.github.com/users/jfromaniello/gists{/gist_id}","starred_url":"https://api.github.com/users/jfromaniello/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jfromaniello/subscriptions","organizations_url":"https://api.github.com/users/jfromaniello/orgs","repos_url":"https://api.github.com/users/jfromaniello/repos","events_url":"https://api.github.com/users/jfromaniello/events{/privacy}","received_events_url":"https://api.github.com/users/jfromaniello/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/coreos/bugs/labels/bug","name":"bug","color":"eb6420"},{"url":"https://api.github.com/repos/coreos/bugs/labels/os","name":"os","color":"FFFFFF"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-09-09T22:27:19Z","updated_at":"2015-01-01T15:03:48Z","closed_at":null,"body":"I see this message in the logs, not sure what it means:\r\n\r\n```\r\nSep 09 22:15:09 ip-172-31-31-59.us-west-1.compute.internal systemd[1]: Failed to set memory.limit_in_bytes on : Invalid argument\r\nSep 09 22:15:09 ip-172-31-31-59.us-west-1.compute.internal systemd[1]: Failed to reset devices.list on /system.slice: Invalid argument\r\n```"},"comment":{"url":"https://api.github.com/repos/coreos/bugs/issues/comments/68488559","html_url":"https://github.com/coreos/bugs/issues/123#issuecomment-68488559","issue_url":"https://api.github.com/repos/coreos/bugs/issues/123","id":68488559,"user":{"login":"andreas-venturini","id":4801917,"avatar_url":"https://avatars.githubusercontent.com/u/4801917?v=3","gravatar_id":"","url":"https://api.github.com/users/andreas-venturini","html_url":"https://github.com/andreas-venturini","followers_url":"https://api.github.com/users/andreas-venturini/followers","following_url":"https://api.github.com/users/andreas-venturini/following{/other_user}","gists_url":"https://api.github.com/users/andreas-venturini/gists{/gist_id}","starred_url":"https://api.github.com/users/andreas-venturini/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andreas-venturini/subscriptions","organizations_url":"https://api.github.com/users/andreas-venturini/orgs","repos_url":"https://api.github.com/users/andreas-venturini/repos","events_url":"https://api.github.com/users/andreas-venturini/events{/privacy}","received_events_url":"https://api.github.com/users/andreas-venturini/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:48Z","updated_at":"2015-01-01T15:03:48Z","body":"Not sure what the implications are\r\n```bash\r\ncoreos0 ~ $ sudo journalctl -b\r\n[...]\r\nJan 01 15:48:23 coreos0 systemd[1]: Starting system-addon\\x2drun.slice.\r\nJan 01 15:48:23 coreos0 systemd[1]: Failed to set memory.limit_in_bytes on : Invalid argument\r\nJan 01 15:48:23 coreos0 systemd[1]: Created slice system-addon\\x2drun.slice.\r\n[...]\r\n```\r\n\r\nShortly before in the logs (possibly unrelated to above message)\r\n```bash\r\ncoreos0 ~ $ sudo journalctl -b\r\n[...]\r\nJan 01 15:48:23 coreos0 systemd-journald[88]: Received SIGTERM from PID 1 (systemd).\r\nJan 01 15:48:23 coreos0 systemd[1]: Breaking ordering cycle by deleting job sockets.target/start\r\nJan 01 15:48:23 coreos0 systemd[1]: Job sockets.target/start deleted to break ordering cycle starting with basic.target/start\r\n[...]\r\n```\r\n\r\n```bash\r\ncoreos0 ~ $ cat /etc/lsb-release\r\nDISTRIB_ID=CoreOS\r\nDISTRIB_RELEASE=547.0.0\r\nDISTRIB_CODENAME=\"Red Dog\"\r\nDISTRIB_DESCRIPTION=\"CoreOS 547.0.0\"\r\n```"}},"public":true,"created_at":"2015-01-01T15:03:48Z","org":{"id":3730757,"login":"coreos","gravatar_id":"","url":"https://api.github.com/orgs/coreos","avatar_url":"https://avatars.githubusercontent.com/u/3730757?"}} +,{"id":"2489652800","type":"ForkEvent","actor":{"id":1482672,"login":"deathcore01","gravatar_id":"","url":"https://api.github.com/users/deathcore01","avatar_url":"https://avatars.githubusercontent.com/u/1482672?"},"repo":{"id":26156411,"name":"Rythal/Carbonite","url":"https://api.github.com/repos/Rythal/Carbonite"},"payload":{"forkee":{"id":28688670,"name":"Carbonite","full_name":"deathcore01/Carbonite","owner":{"login":"deathcore01","id":1482672,"avatar_url":"https://avatars.githubusercontent.com/u/1482672?v=3","gravatar_id":"","url":"https://api.github.com/users/deathcore01","html_url":"https://github.com/deathcore01","followers_url":"https://api.github.com/users/deathcore01/followers","following_url":"https://api.github.com/users/deathcore01/following{/other_user}","gists_url":"https://api.github.com/users/deathcore01/gists{/gist_id}","starred_url":"https://api.github.com/users/deathcore01/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deathcore01/subscriptions","organizations_url":"https://api.github.com/users/deathcore01/orgs","repos_url":"https://api.github.com/users/deathcore01/repos","events_url":"https://api.github.com/users/deathcore01/events{/privacy}","received_events_url":"https://api.github.com/users/deathcore01/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/deathcore01/Carbonite","description":"Carbonite Maps System","fork":true,"url":"https://api.github.com/repos/deathcore01/Carbonite","forks_url":"https://api.github.com/repos/deathcore01/Carbonite/forks","keys_url":"https://api.github.com/repos/deathcore01/Carbonite/keys{/key_id}","collaborators_url":"https://api.github.com/repos/deathcore01/Carbonite/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/deathcore01/Carbonite/teams","hooks_url":"https://api.github.com/repos/deathcore01/Carbonite/hooks","issue_events_url":"https://api.github.com/repos/deathcore01/Carbonite/issues/events{/number}","events_url":"https://api.github.com/repos/deathcore01/Carbonite/events","assignees_url":"https://api.github.com/repos/deathcore01/Carbonite/assignees{/user}","branches_url":"https://api.github.com/repos/deathcore01/Carbonite/branches{/branch}","tags_url":"https://api.github.com/repos/deathcore01/Carbonite/tags","blobs_url":"https://api.github.com/repos/deathcore01/Carbonite/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/deathcore01/Carbonite/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/deathcore01/Carbonite/git/refs{/sha}","trees_url":"https://api.github.com/repos/deathcore01/Carbonite/git/trees{/sha}","statuses_url":"https://api.github.com/repos/deathcore01/Carbonite/statuses/{sha}","languages_url":"https://api.github.com/repos/deathcore01/Carbonite/languages","stargazers_url":"https://api.github.com/repos/deathcore01/Carbonite/stargazers","contributors_url":"https://api.github.com/repos/deathcore01/Carbonite/contributors","subscribers_url":"https://api.github.com/repos/deathcore01/Carbonite/subscribers","subscription_url":"https://api.github.com/repos/deathcore01/Carbonite/subscription","commits_url":"https://api.github.com/repos/deathcore01/Carbonite/commits{/sha}","git_commits_url":"https://api.github.com/repos/deathcore01/Carbonite/git/commits{/sha}","comments_url":"https://api.github.com/repos/deathcore01/Carbonite/comments{/number}","issue_comment_url":"https://api.github.com/repos/deathcore01/Carbonite/issues/comments/{number}","contents_url":"https://api.github.com/repos/deathcore01/Carbonite/contents/{+path}","compare_url":"https://api.github.com/repos/deathcore01/Carbonite/compare/{base}...{head}","merges_url":"https://api.github.com/repos/deathcore01/Carbonite/merges","archive_url":"https://api.github.com/repos/deathcore01/Carbonite/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/deathcore01/Carbonite/downloads","issues_url":"https://api.github.com/repos/deathcore01/Carbonite/issues{/number}","pulls_url":"https://api.github.com/repos/deathcore01/Carbonite/pulls{/number}","milestones_url":"https://api.github.com/repos/deathcore01/Carbonite/milestones{/number}","notifications_url":"https://api.github.com/repos/deathcore01/Carbonite/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/deathcore01/Carbonite/labels{/name}","releases_url":"https://api.github.com/repos/deathcore01/Carbonite/releases{/id}","created_at":"2015-01-01T15:03:48Z","updated_at":"2015-01-01T14:36:53Z","pushed_at":"2015-01-01T14:36:53Z","git_url":"git://github.com/deathcore01/Carbonite.git","ssh_url":"git@github.com:deathcore01/Carbonite.git","clone_url":"https://github.com/deathcore01/Carbonite.git","svn_url":"https://github.com/deathcore01/Carbonite","homepage":null,"size":10622,"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:03:48Z"} +,{"id":"2489652801","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":16667589,"name":"daniellitoc/xultimate-resource","url":"https://api.github.com/repos/daniellitoc/xultimate-resource"},"payload":{"forkee":{"id":28688671,"name":"xultimate-resource","full_name":"weiguo21/xultimate-resource","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/xultimate-resource","description":"采用Spring MVC,用于在FastDFS分布式文件系统中完成资源管理(上传、删除、下载)的ShowCase。图片类资源的支持实时缩略图功能。缩放、剪裁、水印等功能通过已封装好AWT和im4java进行处理,即支持GraphicsMagick。","fork":true,"url":"https://api.github.com/repos/weiguo21/xultimate-resource","forks_url":"https://api.github.com/repos/weiguo21/xultimate-resource/forks","keys_url":"https://api.github.com/repos/weiguo21/xultimate-resource/keys{/key_id}","collaborators_url":"https://api.github.com/repos/weiguo21/xultimate-resource/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/weiguo21/xultimate-resource/teams","hooks_url":"https://api.github.com/repos/weiguo21/xultimate-resource/hooks","issue_events_url":"https://api.github.com/repos/weiguo21/xultimate-resource/issues/events{/number}","events_url":"https://api.github.com/repos/weiguo21/xultimate-resource/events","assignees_url":"https://api.github.com/repos/weiguo21/xultimate-resource/assignees{/user}","branches_url":"https://api.github.com/repos/weiguo21/xultimate-resource/branches{/branch}","tags_url":"https://api.github.com/repos/weiguo21/xultimate-resource/tags","blobs_url":"https://api.github.com/repos/weiguo21/xultimate-resource/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/weiguo21/xultimate-resource/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/weiguo21/xultimate-resource/git/refs{/sha}","trees_url":"https://api.github.com/repos/weiguo21/xultimate-resource/git/trees{/sha}","statuses_url":"https://api.github.com/repos/weiguo21/xultimate-resource/statuses/{sha}","languages_url":"https://api.github.com/repos/weiguo21/xultimate-resource/languages","stargazers_url":"https://api.github.com/repos/weiguo21/xultimate-resource/stargazers","contributors_url":"https://api.github.com/repos/weiguo21/xultimate-resource/contributors","subscribers_url":"https://api.github.com/repos/weiguo21/xultimate-resource/subscribers","subscription_url":"https://api.github.com/repos/weiguo21/xultimate-resource/subscription","commits_url":"https://api.github.com/repos/weiguo21/xultimate-resource/commits{/sha}","git_commits_url":"https://api.github.com/repos/weiguo21/xultimate-resource/git/commits{/sha}","comments_url":"https://api.github.com/repos/weiguo21/xultimate-resource/comments{/number}","issue_comment_url":"https://api.github.com/repos/weiguo21/xultimate-resource/issues/comments/{number}","contents_url":"https://api.github.com/repos/weiguo21/xultimate-resource/contents/{+path}","compare_url":"https://api.github.com/repos/weiguo21/xultimate-resource/compare/{base}...{head}","merges_url":"https://api.github.com/repos/weiguo21/xultimate-resource/merges","archive_url":"https://api.github.com/repos/weiguo21/xultimate-resource/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/weiguo21/xultimate-resource/downloads","issues_url":"https://api.github.com/repos/weiguo21/xultimate-resource/issues{/number}","pulls_url":"https://api.github.com/repos/weiguo21/xultimate-resource/pulls{/number}","milestones_url":"https://api.github.com/repos/weiguo21/xultimate-resource/milestones{/number}","notifications_url":"https://api.github.com/repos/weiguo21/xultimate-resource/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/weiguo21/xultimate-resource/labels{/name}","releases_url":"https://api.github.com/repos/weiguo21/xultimate-resource/releases{/id}","created_at":"2015-01-01T15:03:49Z","updated_at":"2014-12-31T10:44:18Z","pushed_at":"2014-08-28T05:04:15Z","git_url":"git://github.com/weiguo21/xultimate-resource.git","ssh_url":"git@github.com:weiguo21/xultimate-resource.git","clone_url":"https://github.com/weiguo21/xultimate-resource.git","svn_url":"https://github.com/weiguo21/xultimate-resource","homepage":"","size":256,"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:03:49Z"} +,{"id":"2489652804","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327618,"name":"cloudify-cosmo/cloudify-rest-client","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-rest-client"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:50Z","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":"2489652812","type":"PushEvent","actor":{"id":2276523,"login":"tttwwy","gravatar_id":"","url":"https://api.github.com/users/tttwwy","avatar_url":"https://avatars.githubusercontent.com/u/2276523?"},"repo":{"id":27988190,"name":"tttwwy/contest","url":"https://api.github.com/repos/tttwwy/contest"},"payload":{"push_id":536864795,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ceb19fe60849bc27bde2c327fea21d1c3d206bc2","before":"0972829e0d6de9b7f21a6248cd0165d8eaa1ae11","commits":[{"sha":"ceb19fe60849bc27bde2c327fea21d1c3d206bc2","author":{"email":"67e6d062086856e93fc57bfb63c83084d08725a8@126.com","name":"xiaose"},"message":"fix","distinct":true,"url":"https://api.github.com/repos/tttwwy/contest/commits/ceb19fe60849bc27bde2c327fea21d1c3d206bc2"}]},"public":true,"created_at":"2015-01-01T15:03:51Z"} +,{"id":"2489652814","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":536864796,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"d9e6ec1876dfe6a9dc9b3aa31ecd332372640016","before":"fd5bacb69d7570aa678176ade7079eee513e54e5","commits":[{"sha":"d9e6ec1876dfe6a9dc9b3aa31ecd332372640016","author":{"email":"2d897f84cebfa32309ad883bf75cbe8ccb3f6374@jpespinal.com","name":"Juan Pablo Espinal"},"message":"Attempting to center Contact section labels.","distinct":true,"url":"https://api.github.com/repos/jpespinal/portfolio/commits/d9e6ec1876dfe6a9dc9b3aa31ecd332372640016"}]},"public":true,"created_at":"2015-01-01T15:03:51Z"} +,{"id":"2489652816","type":"PushEvent","actor":{"id":6898582,"login":"XHaller","gravatar_id":"","url":"https://api.github.com/users/XHaller","avatar_url":"https://avatars.githubusercontent.com/u/6898582?"},"repo":{"id":26170215,"name":"XHaller/xhaller.github.com","url":"https://api.github.com/repos/XHaller/xhaller.github.com"},"payload":{"push_id":536864798,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0a467cab4e901b3c0148e23b909ae95744442c0f","before":"acab0549742cd0c83186aefd0d126d67364b2950","commits":[{"sha":"0a467cab4e901b3c0148e23b909ae95744442c0f","author":{"email":"95c305a35894539ea190a03cf7af282a95538e58@BX-mbpdeMacBook-Pro.local","name":"BX_mbp"},"message":"gitpro","distinct":true,"url":"https://api.github.com/repos/XHaller/xhaller.github.com/commits/0a467cab4e901b3c0148e23b909ae95744442c0f"}]},"public":true,"created_at":"2015-01-01T15:03:51Z"} +,{"id":"2489652817","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":96,"pull_request":{"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/96","id":25666907,"html_url":"https://github.com/RusticiSoftware/TinCanJS/pull/96","diff_url":"https://github.com/RusticiSoftware/TinCanJS/pull/96.diff","patch_url":"https://github.com/RusticiSoftware/TinCanJS/pull/96.patch","issue_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues/96","number":96,"state":"closed","locked":false,"title":"Add duration functions to Utils","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":"Two duration functions for Utils to help APs with tracking attempt duration.\r\n\r\nReplaces #92 ","created_at":"2014-12-08T13:51:57Z","updated_at":"2015-01-01T15:03:51Z","closed_at":"2015-01-01T15:03:51Z","merged_at":"2015-01-01T15:03:51Z","merge_commit_sha":"0816d87a8ee532882a9529eb724ff70e6b3d987c","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/96/commits","review_comments_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/96/comments","review_comment_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/comments/{number}","comments_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues/96/comments","statuses_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/statuses/c4f8e33fa846e8e60bce2d3aff568d4088e27f8c","head":{"label":"garemoko:duration_functions_squashed","ref":"duration_functions_squashed","sha":"c4f8e33fa846e8e60bce2d3aff568d4088e27f8c","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-01T15:00:10Z","pushed_at":"2015-01-01T15:03:51Z","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":21,"forks":60,"open_issues":21,"watchers":78,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/96"},"html":{"href":"https://github.com/RusticiSoftware/TinCanJS/pull/96"},"issue":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues/96"},"comments":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues/96/comments"},"review_comments":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/96/comments"},"review_comment":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/96/commits"},"statuses":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/statuses/c4f8e33fa846e8e60bce2d3aff568d4088e27f8c"}},"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":0,"commits":7,"additions":101,"deletions":0,"changed_files":2}},"public":true,"created_at":"2015-01-01T15:03:51Z","org":{"id":440964,"login":"RusticiSoftware","gravatar_id":"","url":"https://api.github.com/orgs/RusticiSoftware","avatar_url":"https://avatars.githubusercontent.com/u/440964?"}} +,{"id":"2489652818","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":536864799,"size":8,"distinct_size":8,"ref":"refs/heads/master","head":"2a204f300343a9d3cddfcfcc91862f54f138d0a7","before":"0b7228d8cdcf4ea3e954b6f34e7e51ce815cacf2","commits":[{"sha":"a21f28c7ba68f7d704604f8b4cf4bdae165b9bbc","author":{"email":"f0b5ad119fc7d6d7228544a49e69f64f24eacb81@hotmail.com","name":"Andrew Downes"},"message":"Add duration functions to Utils","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/a21f28c7ba68f7d704604f8b4cf4bdae165b9bbc"},{"sha":"8b8839226ef2a0703f068166e20ae64e654b1bb3","author":{"email":"f0b5ad119fc7d6d7228544a49e69f64f24eacb81@hotmail.com","name":"Andrew Downes"},"message":"code tidy from previous commit","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/8b8839226ef2a0703f068166e20ae64e654b1bb3"},{"sha":"e7b76fc581ba3828c1e955351e2bc2ef98e360f4","author":{"email":"f0b5ad119fc7d6d7228544a49e69f64f24eacb81@hotmail.com","name":"Andrew Downes"},"message":"fix code style and throw error on unsupported timestamp","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/e7b76fc581ba3828c1e955351e2bc2ef98e360f4"},{"sha":"5907feb56a46972f4d3b17cfdc9b9528dfc2e4f0","author":{"email":"f0b5ad119fc7d6d7228544a49e69f64f24eacb81@hotmail.com","name":"Andrew Downes"},"message":"fix build errors introduced in last commit","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/5907feb56a46972f4d3b17cfdc9b9528dfc2e4f0"},{"sha":"9b4410ed9d241569a0c36c598b032170cb138974","author":{"email":"6e47f84bcaace900fd8377790f1551726cd9517e@scorm.com","name":"Brian J. Miller"},"message":"Few more style cleanups","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/9b4410ed9d241569a0c36c598b032170cb138974"},{"sha":"f5d94e878ad4f4418b119f2baa59ee637bdf32db","author":{"email":"f0b5ad119fc7d6d7228544a49e69f64f24eacb81@hotmail.com","name":"Andrew Downes"},"message":"Duration function tests","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/f5d94e878ad4f4418b119f2baa59ee637bdf32db"},{"sha":"c4f8e33fa846e8e60bce2d3aff568d4088e27f8c","author":{"email":"f0b5ad119fc7d6d7228544a49e69f64f24eacb81@hotmail.com","name":"Andrew Downes"},"message":"Fix duration function tests","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/c4f8e33fa846e8e60bce2d3aff568d4088e27f8c"},{"sha":"2a204f300343a9d3cddfcfcc91862f54f138d0a7","author":{"email":"3a19cd5185143587c3e7d5e91f5db86ca3a27fc7@scorm.com","name":"bscSCORM"},"message":"Merge pull request #96 from garemoko/duration_functions_squashed\n\nAdd duration functions to Utils","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/2a204f300343a9d3cddfcfcc91862f54f138d0a7"}]},"public":true,"created_at":"2015-01-01T15:03:51Z","org":{"id":440964,"login":"RusticiSoftware","gravatar_id":"","url":"https://api.github.com/orgs/RusticiSoftware","avatar_url":"https://avatars.githubusercontent.com/u/440964?"}} +,{"id":"2489652824","type":"PushEvent","actor":{"id":6685542,"login":"lummax","gravatar_id":"","url":"https://api.github.com/users/lummax","avatar_url":"https://avatars.githubusercontent.com/u/6685542?"},"repo":{"id":28688540,"name":"lummax/librcimimxcons","url":"https://api.github.com/repos/lummax/librcimimxcons"},"payload":{"push_id":536864801,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"36fe55608c1e5dc5e9542bbde0f3bc65c41dc197","before":"e2eb98dfc7e3ff64cb1731686768eab549799627","commits":[{"sha":"36fe55608c1e5dc5e9542bbde0f3bc65c41dc197","author":{"email":"d11d775f9afa9d792151336d360f7bb8e3aa3b6b@googlemail.com","name":"lummax"},"message":"Add .travis.yml","distinct":true,"url":"https://api.github.com/repos/lummax/librcimimxcons/commits/36fe55608c1e5dc5e9542bbde0f3bc65c41dc197"}]},"public":true,"created_at":"2015-01-01T15:03:52Z"} +,{"id":"2489652825","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327618,"name":"cloudify-cosmo/cloudify-rest-client","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-rest-client"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify REST Client","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:52Z","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":"2489652827","type":"ForkEvent","actor":{"id":7715508,"login":"18840850852","gravatar_id":"","url":"https://api.github.com/users/18840850852","avatar_url":"https://avatars.githubusercontent.com/u/7715508?"},"repo":{"id":10188673,"name":"mcxiaoke/android-volley","url":"https://api.github.com/repos/mcxiaoke/android-volley"},"payload":{"forkee":{"id":28688672,"name":"android-volley","full_name":"18840850852/android-volley","owner":{"login":"18840850852","id":7715508,"avatar_url":"https://avatars.githubusercontent.com/u/7715508?v=3","gravatar_id":"","url":"https://api.github.com/users/18840850852","html_url":"https://github.com/18840850852","followers_url":"https://api.github.com/users/18840850852/followers","following_url":"https://api.github.com/users/18840850852/following{/other_user}","gists_url":"https://api.github.com/users/18840850852/gists{/gist_id}","starred_url":"https://api.github.com/users/18840850852/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/18840850852/subscriptions","organizations_url":"https://api.github.com/users/18840850852/orgs","repos_url":"https://api.github.com/users/18840850852/repos","events_url":"https://api.github.com/users/18840850852/events{/privacy}","received_events_url":"https://api.github.com/users/18840850852/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/18840850852/android-volley","description":"volley","fork":true,"url":"https://api.github.com/repos/18840850852/android-volley","forks_url":"https://api.github.com/repos/18840850852/android-volley/forks","keys_url":"https://api.github.com/repos/18840850852/android-volley/keys{/key_id}","collaborators_url":"https://api.github.com/repos/18840850852/android-volley/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/18840850852/android-volley/teams","hooks_url":"https://api.github.com/repos/18840850852/android-volley/hooks","issue_events_url":"https://api.github.com/repos/18840850852/android-volley/issues/events{/number}","events_url":"https://api.github.com/repos/18840850852/android-volley/events","assignees_url":"https://api.github.com/repos/18840850852/android-volley/assignees{/user}","branches_url":"https://api.github.com/repos/18840850852/android-volley/branches{/branch}","tags_url":"https://api.github.com/repos/18840850852/android-volley/tags","blobs_url":"https://api.github.com/repos/18840850852/android-volley/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/18840850852/android-volley/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/18840850852/android-volley/git/refs{/sha}","trees_url":"https://api.github.com/repos/18840850852/android-volley/git/trees{/sha}","statuses_url":"https://api.github.com/repos/18840850852/android-volley/statuses/{sha}","languages_url":"https://api.github.com/repos/18840850852/android-volley/languages","stargazers_url":"https://api.github.com/repos/18840850852/android-volley/stargazers","contributors_url":"https://api.github.com/repos/18840850852/android-volley/contributors","subscribers_url":"https://api.github.com/repos/18840850852/android-volley/subscribers","subscription_url":"https://api.github.com/repos/18840850852/android-volley/subscription","commits_url":"https://api.github.com/repos/18840850852/android-volley/commits{/sha}","git_commits_url":"https://api.github.com/repos/18840850852/android-volley/git/commits{/sha}","comments_url":"https://api.github.com/repos/18840850852/android-volley/comments{/number}","issue_comment_url":"https://api.github.com/repos/18840850852/android-volley/issues/comments/{number}","contents_url":"https://api.github.com/repos/18840850852/android-volley/contents/{+path}","compare_url":"https://api.github.com/repos/18840850852/android-volley/compare/{base}...{head}","merges_url":"https://api.github.com/repos/18840850852/android-volley/merges","archive_url":"https://api.github.com/repos/18840850852/android-volley/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/18840850852/android-volley/downloads","issues_url":"https://api.github.com/repos/18840850852/android-volley/issues{/number}","pulls_url":"https://api.github.com/repos/18840850852/android-volley/pulls{/number}","milestones_url":"https://api.github.com/repos/18840850852/android-volley/milestones{/number}","notifications_url":"https://api.github.com/repos/18840850852/android-volley/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/18840850852/android-volley/labels{/name}","releases_url":"https://api.github.com/repos/18840850852/android-volley/releases{/id}","created_at":"2015-01-01T15:03:52Z","updated_at":"2015-01-01T04:23:41Z","pushed_at":"2014-12-31T02:20:30Z","git_url":"git://github.com/18840850852/android-volley.git","ssh_url":"git@github.com:18840850852/android-volley.git","clone_url":"https://github.com/18840850852/android-volley.git","svn_url":"https://github.com/18840850852/android-volley","homepage":"https://android.googlesource.com/platform/frameworks/volley","size":1590,"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:03:53Z"} +,{"id":"2489652828","type":"IssuesEvent","actor":{"id":9463991,"login":"eldadtzadok","gravatar_id":"","url":"https://api.github.com/users/eldadtzadok","avatar_url":"https://avatars.githubusercontent.com/u/9463991?"},"repo":{"id":27998120,"name":"shenkarlab/Off-The-record","url":"https://api.github.com/repos/shenkarlab/Off-The-record"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/shenkarlab/Off-The-record/issues/13","labels_url":"https://api.github.com/repos/shenkarlab/Off-The-record/issues/13/labels{/name}","comments_url":"https://api.github.com/repos/shenkarlab/Off-The-record/issues/13/comments","events_url":"https://api.github.com/repos/shenkarlab/Off-The-record/issues/13/events","html_url":"https://github.com/shenkarlab/Off-The-record/issues/13","id":53221405,"number":13,"title":"Extract Data For 1st section","user":{"login":"eldadtzadok","id":9463991,"avatar_url":"https://avatars.githubusercontent.com/u/9463991?v=3","gravatar_id":"","url":"https://api.github.com/users/eldadtzadok","html_url":"https://github.com/eldadtzadok","followers_url":"https://api.github.com/users/eldadtzadok/followers","following_url":"https://api.github.com/users/eldadtzadok/following{/other_user}","gists_url":"https://api.github.com/users/eldadtzadok/gists{/gist_id}","starred_url":"https://api.github.com/users/eldadtzadok/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eldadtzadok/subscriptions","organizations_url":"https://api.github.com/users/eldadtzadok/orgs","repos_url":"https://api.github.com/users/eldadtzadok/repos","events_url":"https://api.github.com/users/eldadtzadok/events{/privacy}","received_events_url":"https://api.github.com/users/eldadtzadok/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:03:52Z","updated_at":"2015-01-01T15:03:52Z","closed_at":null,"body":"בגוגל דרייב יש קובץ עם מילים שיש לבדוק אצל כל פוליטיקאי ולדרג מי שלושת הפוליטיקאים שמצטיינים בכל קטגוריה\r\n @AlexGr2 וניר שאני לא מוצא את התיוג שלו"}},"public":true,"created_at":"2015-01-01T15:03:53Z","org":{"id":6725176,"login":"shenkarlab","gravatar_id":"","url":"https://api.github.com/orgs/shenkarlab","avatar_url":"https://avatars.githubusercontent.com/u/6725176?"}} +,{"id":"2489652832","type":"PushEvent","actor":{"id":2237700,"login":"s-p-k","gravatar_id":"","url":"https://api.github.com/users/s-p-k","avatar_url":"https://avatars.githubusercontent.com/u/2237700?"},"repo":{"id":14831231,"name":"s-p-k/foxy","url":"https://api.github.com/repos/s-p-k/foxy"},"payload":{"push_id":536864803,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9df2623abdff338ef7fe858e9a23be3e19837015","before":"588ae312d1ff433fa9fb503abf3c153101a06f00","commits":[{"sha":"9df2623abdff338ef7fe858e9a23be3e19837015","author":{"email":"f56cf1a6a4ea45c75e564a05f1c1e38e569e0ee7@gmail.com","name":"s-p-k"},"message":"update TODO and LICENSE files","distinct":true,"url":"https://api.github.com/repos/s-p-k/foxy/commits/9df2623abdff338ef7fe858e9a23be3e19837015"}]},"public":true,"created_at":"2015-01-01T15:03:53Z"} +,{"id":"2489652833","type":"PushEvent","actor":{"id":9755468,"login":"pionnertech","gravatar_id":"","url":"https://api.github.com/users/pionnertech","avatar_url":"https://avatars.githubusercontent.com/u/9755468?"},"repo":{"id":26832780,"name":"pionnertech/versallestap","url":"https://api.github.com/repos/pionnertech/versallestap"},"payload":{"push_id":536864804,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4499b06ddc997a59dd8c51d2a2a5681f973daa03","before":"0d8b996a0aa2370f02ea2d7fee55ae53bb2eef91","commits":[{"sha":"4499b06ddc997a59dd8c51d2a2a5681f973daa03","author":{"email":"970c3b53f51ad7bb4ca1e7f2a053ef66f5f67348@outlook.com","name":"pionnertch"},"message":"rtest","distinct":true,"url":"https://api.github.com/repos/pionnertech/versallestap/commits/4499b06ddc997a59dd8c51d2a2a5681f973daa03"}]},"public":true,"created_at":"2015-01-01T15:03:53Z"} +,{"id":"2489652834","type":"PushEvent","actor":{"id":3191500,"login":"aec4d","gravatar_id":"","url":"https://api.github.com/users/aec4d","avatar_url":"https://avatars.githubusercontent.com/u/3191500?"},"repo":{"id":28686024,"name":"aec4d/Scriptlet","url":"https://api.github.com/repos/aec4d/Scriptlet"},"payload":{"push_id":536864806,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a1ec60edc5ff0dc361fb407d1c319c7467418bff","before":"f36d900a5c2f897c039288857848be8deb7ee690","commits":[{"sha":"a1ec60edc5ff0dc361fb407d1c319c7467418bff","author":{"email":"240bc8ef56a1c4574ae4655fdaf3ae1a234619e0@outlook.com","name":"ficapy"},"message":"int/str~~~搞错了","distinct":true,"url":"https://api.github.com/repos/aec4d/Scriptlet/commits/a1ec60edc5ff0dc361fb407d1c319c7467418bff"}]},"public":true,"created_at":"2015-01-01T15:03:53Z"} +,{"id":"2489652839","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":536864809,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"22b68503fc68007099cb1a708556191236833b05","before":"ee822ce5f57f499ffa84806f36252259fb44728b","commits":[{"sha":"22b68503fc68007099cb1a708556191236833b05","author":{"email":"ab0de8a5debb5a0bc3c57846c2316b38f658d3f8@gmail.com","name":"manmyung"},"message":"~p31","distinct":true,"url":"https://api.github.com/repos/manmyung/study-4clojure/commits/22b68503fc68007099cb1a708556191236833b05"}]},"public":true,"created_at":"2015-01-01T15:03:54Z"} +,{"id":"2489652840","type":"PushEvent","actor":{"id":5946993,"login":"skewie","gravatar_id":"","url":"https://api.github.com/users/skewie","avatar_url":"https://avatars.githubusercontent.com/u/5946993?"},"repo":{"id":28603626,"name":"Althox/ik2011-inl1","url":"https://api.github.com/repos/Althox/ik2011-inl1"},"payload":{"push_id":536864810,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"31263e4a09fd3c6248ed453ae507d8cf55f10b07","before":"18f4e83b6930e3e28284628feb04e5e4aab1f21c","commits":[{"sha":"31263e4a09fd3c6248ed453ae507d8cf55f10b07","author":{"email":"9828034f45c139f3d0314872cee30463ece9b196@Lappy","name":"Jeff"},"message":"Removed git-ignore on the libs","distinct":true,"url":"https://api.github.com/repos/Althox/ik2011-inl1/commits/31263e4a09fd3c6248ed453ae507d8cf55f10b07"}]},"public":true,"created_at":"2015-01-01T15:03:54Z"} +,{"id":"2489652841","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327506,"name":"cloudify-cosmo/cloudify-system-tests","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-system-tests"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:54Z","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":"2489652842","type":"PushEvent","actor":{"id":10240653,"login":"peasandpetals","gravatar_id":"","url":"https://api.github.com/users/peasandpetals","avatar_url":"https://avatars.githubusercontent.com/u/10240653?"},"repo":{"id":28406582,"name":"peasandpetals/peasandpetals.github.io","url":"https://api.github.com/repos/peasandpetals/peasandpetals.github.io"},"payload":{"push_id":536864812,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"843219cf6bc5b8c019b2217e41c4c3f1e56aa0b0","before":"2c3596d8c46dd5b595af8e3fe0a6577d43f3f4f3","commits":[{"sha":"843219cf6bc5b8c019b2217e41c4c3f1e56aa0b0","author":{"email":"fc8c7307e9592b5798f02a8c7341cdf9f29b45ec@gmail.com","name":"peasandpetals"},"message":"santa's lane\n\nphotography new post","distinct":true,"url":"https://api.github.com/repos/peasandpetals/peasandpetals.github.io/commits/843219cf6bc5b8c019b2217e41c4c3f1e56aa0b0"}]},"public":true,"created_at":"2015-01-01T15:03:54Z"} +,{"id":"2489652844","type":"PushEvent","actor":{"id":169434,"login":"rgngl","gravatar_id":"","url":"https://api.github.com/users/rgngl","avatar_url":"https://avatars.githubusercontent.com/u/169434?"},"repo":{"id":9831340,"name":"rgngl/GamePlay","url":"https://api.github.com/repos/rgngl/GamePlay"},"payload":{"push_id":536864813,"size":1,"distinct_size":1,"ref":"refs/heads/patch-1","head":"cba0d00f3835b49050b8389ce3608a9c842f4583","before":"3c825cc256826077155b1735d342ec3429a7e6b0","commits":[{"sha":"cba0d00f3835b49050b8389ce3608a9c842f4583","author":{"email":"c13571dbffa0eb89c7f8eebdce482897b0f5a685@ustun.fi","name":"Üstün Ergenoglu"},"message":"Add 1 pixel padding to generated font atlas\n\nThis avoids artifacts when using SDF fonts with some characters that\r\nhappen to be on the first column of the texture atlas.","distinct":true,"url":"https://api.github.com/repos/rgngl/GamePlay/commits/cba0d00f3835b49050b8389ce3608a9c842f4583"}]},"public":true,"created_at":"2015-01-01T15:03:54Z"} +,{"id":"2489652848","type":"IssueCommentEvent","actor":{"id":940859,"login":"Benni-chan","gravatar_id":"","url":"https://api.github.com/users/Benni-chan","avatar_url":"https://avatars.githubusercontent.com/u/940859?"},"repo":{"id":2681795,"name":"Benni-chan/nzbToAniDB","url":"https://api.github.com/repos/Benni-chan/nzbToAniDB"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/24","labels_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/24/labels{/name}","comments_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/24/comments","events_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/24/events","html_url":"https://github.com/Benni-chan/nzbToAniDB/pull/24","id":53218172,"number":24,"title":"Fix for TV/Movie directory condition","user":{"login":"gunmantheh","id":4093289,"avatar_url":"https://avatars.githubusercontent.com/u/4093289?v=3","gravatar_id":"","url":"https://api.github.com/users/gunmantheh","html_url":"https://github.com/gunmantheh","followers_url":"https://api.github.com/users/gunmantheh/followers","following_url":"https://api.github.com/users/gunmantheh/following{/other_user}","gists_url":"https://api.github.com/users/gunmantheh/gists{/gist_id}","starred_url":"https://api.github.com/users/gunmantheh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gunmantheh/subscriptions","organizations_url":"https://api.github.com/users/gunmantheh/orgs","repos_url":"https://api.github.com/users/gunmantheh/repos","events_url":"https://api.github.com/users/gunmantheh/events{/privacy}","received_events_url":"https://api.github.com/users/gunmantheh/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T11:46:09Z","updated_at":"2015-01-01T15:03:54Z","closed_at":"2015-01-01T15:03:54Z","pull_request":{"url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/pulls/24","html_url":"https://github.com/Benni-chan/nzbToAniDB/pull/24","diff_url":"https://github.com/Benni-chan/nzbToAniDB/pull/24.diff","patch_url":"https://github.com/Benni-chan/nzbToAniDB/pull/24.patch"},"body":"removed unneeded condition for TV/Movie directory condition"},"comment":{"url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/comments/68488562","html_url":"https://github.com/Benni-chan/nzbToAniDB/pull/24#issuecomment-68488562","issue_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/24","id":68488562,"user":{"login":"Benni-chan","id":940859,"avatar_url":"https://avatars.githubusercontent.com/u/940859?v=3","gravatar_id":"","url":"https://api.github.com/users/Benni-chan","html_url":"https://github.com/Benni-chan","followers_url":"https://api.github.com/users/Benni-chan/followers","following_url":"https://api.github.com/users/Benni-chan/following{/other_user}","gists_url":"https://api.github.com/users/Benni-chan/gists{/gist_id}","starred_url":"https://api.github.com/users/Benni-chan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Benni-chan/subscriptions","organizations_url":"https://api.github.com/users/Benni-chan/orgs","repos_url":"https://api.github.com/users/Benni-chan/repos","events_url":"https://api.github.com/users/Benni-chan/events{/privacy}","received_events_url":"https://api.github.com/users/Benni-chan/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:54Z","updated_at":"2015-01-01T15:03:54Z","body":"merged manually.\r\ni believe, i fixed this in my new version, too.\r\nSome more bugfixes will be added in the next few days."}},"public":true,"created_at":"2015-01-01T15:03:56Z"} +,{"id":"2489652849","type":"CreateEvent","actor":{"id":7246669,"login":"casanovatoy","gravatar_id":"","url":"https://api.github.com/users/casanovatoy","avatar_url":"https://avatars.githubusercontent.com/u/7246669?"},"repo":{"id":28688673,"name":"casanovatoy/MotionDetection","url":"https://api.github.com/repos/casanovatoy/MotionDetection"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"MotionDetection","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:56Z"} +,{"id":"2489652850","type":"PullRequestEvent","actor":{"id":940859,"login":"Benni-chan","gravatar_id":"","url":"https://api.github.com/users/Benni-chan","avatar_url":"https://avatars.githubusercontent.com/u/940859?"},"repo":{"id":2681795,"name":"Benni-chan/nzbToAniDB","url":"https://api.github.com/repos/Benni-chan/nzbToAniDB"},"payload":{"action":"closed","number":24,"pull_request":{"url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/pulls/24","id":26742494,"html_url":"https://github.com/Benni-chan/nzbToAniDB/pull/24","diff_url":"https://github.com/Benni-chan/nzbToAniDB/pull/24.diff","patch_url":"https://github.com/Benni-chan/nzbToAniDB/pull/24.patch","issue_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/24","number":24,"state":"closed","locked":false,"title":"Fix for TV/Movie directory condition","user":{"login":"gunmantheh","id":4093289,"avatar_url":"https://avatars.githubusercontent.com/u/4093289?v=3","gravatar_id":"","url":"https://api.github.com/users/gunmantheh","html_url":"https://github.com/gunmantheh","followers_url":"https://api.github.com/users/gunmantheh/followers","following_url":"https://api.github.com/users/gunmantheh/following{/other_user}","gists_url":"https://api.github.com/users/gunmantheh/gists{/gist_id}","starred_url":"https://api.github.com/users/gunmantheh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gunmantheh/subscriptions","organizations_url":"https://api.github.com/users/gunmantheh/orgs","repos_url":"https://api.github.com/users/gunmantheh/repos","events_url":"https://api.github.com/users/gunmantheh/events{/privacy}","received_events_url":"https://api.github.com/users/gunmantheh/received_events","type":"User","site_admin":false},"body":"removed unneeded condition for TV/Movie directory condition","created_at":"2015-01-01T11:46:09Z","updated_at":"2015-01-01T15:03:54Z","closed_at":"2015-01-01T15:03:54Z","merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/pulls/24/commits","review_comments_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/pulls/24/comments","review_comment_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/pulls/comments/{number}","comments_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/24/comments","statuses_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/statuses/b958d73fca9cce005387fcef0d25c74cce392805","head":{"label":"gunmantheh:master","ref":"master","sha":"b958d73fca9cce005387fcef0d25c74cce392805","user":{"login":"gunmantheh","id":4093289,"avatar_url":"https://avatars.githubusercontent.com/u/4093289?v=3","gravatar_id":"","url":"https://api.github.com/users/gunmantheh","html_url":"https://github.com/gunmantheh","followers_url":"https://api.github.com/users/gunmantheh/followers","following_url":"https://api.github.com/users/gunmantheh/following{/other_user}","gists_url":"https://api.github.com/users/gunmantheh/gists{/gist_id}","starred_url":"https://api.github.com/users/gunmantheh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gunmantheh/subscriptions","organizations_url":"https://api.github.com/users/gunmantheh/orgs","repos_url":"https://api.github.com/users/gunmantheh/repos","events_url":"https://api.github.com/users/gunmantheh/events{/privacy}","received_events_url":"https://api.github.com/users/gunmantheh/received_events","type":"User","site_admin":false},"repo":{"id":25476034,"name":"nzbToAniDB","full_name":"gunmantheh/nzbToAniDB","owner":{"login":"gunmantheh","id":4093289,"avatar_url":"https://avatars.githubusercontent.com/u/4093289?v=3","gravatar_id":"","url":"https://api.github.com/users/gunmantheh","html_url":"https://github.com/gunmantheh","followers_url":"https://api.github.com/users/gunmantheh/followers","following_url":"https://api.github.com/users/gunmantheh/following{/other_user}","gists_url":"https://api.github.com/users/gunmantheh/gists{/gist_id}","starred_url":"https://api.github.com/users/gunmantheh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gunmantheh/subscriptions","organizations_url":"https://api.github.com/users/gunmantheh/orgs","repos_url":"https://api.github.com/users/gunmantheh/repos","events_url":"https://api.github.com/users/gunmantheh/events{/privacy}","received_events_url":"https://api.github.com/users/gunmantheh/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/gunmantheh/nzbToAniDB","description":"postprocessing script for animes (to use with sabnzbd+ or nzbget or even as stand alone) to rename files after a sync with anidb.net. files can additionally be renamed via tvdb","fork":true,"url":"https://api.github.com/repos/gunmantheh/nzbToAniDB","forks_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/forks","keys_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/teams","hooks_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/hooks","issue_events_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/issues/events{/number}","events_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/events","assignees_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/assignees{/user}","branches_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/branches{/branch}","tags_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/tags","blobs_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/git/refs{/sha}","trees_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/statuses/{sha}","languages_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/languages","stargazers_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/stargazers","contributors_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/contributors","subscribers_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/subscribers","subscription_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/subscription","commits_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/commits{/sha}","git_commits_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/git/commits{/sha}","comments_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/comments{/number}","issue_comment_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/issues/comments/{number}","contents_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/contents/{+path}","compare_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/merges","archive_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/downloads","issues_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/issues{/number}","pulls_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/pulls{/number}","milestones_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/milestones{/number}","notifications_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/labels{/name}","releases_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/releases{/id}","created_at":"2014-10-20T16:43:37Z","updated_at":"2015-01-01T11:44:04Z","pushed_at":"2015-01-01T11:44:04Z","git_url":"git://github.com/gunmantheh/nzbToAniDB.git","ssh_url":"git@github.com:gunmantheh/nzbToAniDB.git","clone_url":"https://github.com/gunmantheh/nzbToAniDB.git","svn_url":"https://github.com/gunmantheh/nzbToAniDB","homepage":"","size":394,"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":"Benni-chan:master","ref":"master","sha":"453196878d29a087aa60d160d3456d31fb6bbdf2","user":{"login":"Benni-chan","id":940859,"avatar_url":"https://avatars.githubusercontent.com/u/940859?v=3","gravatar_id":"","url":"https://api.github.com/users/Benni-chan","html_url":"https://github.com/Benni-chan","followers_url":"https://api.github.com/users/Benni-chan/followers","following_url":"https://api.github.com/users/Benni-chan/following{/other_user}","gists_url":"https://api.github.com/users/Benni-chan/gists{/gist_id}","starred_url":"https://api.github.com/users/Benni-chan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Benni-chan/subscriptions","organizations_url":"https://api.github.com/users/Benni-chan/orgs","repos_url":"https://api.github.com/users/Benni-chan/repos","events_url":"https://api.github.com/users/Benni-chan/events{/privacy}","received_events_url":"https://api.github.com/users/Benni-chan/received_events","type":"User","site_admin":false},"repo":{"id":2681795,"name":"nzbToAniDB","full_name":"Benni-chan/nzbToAniDB","owner":{"login":"Benni-chan","id":940859,"avatar_url":"https://avatars.githubusercontent.com/u/940859?v=3","gravatar_id":"","url":"https://api.github.com/users/Benni-chan","html_url":"https://github.com/Benni-chan","followers_url":"https://api.github.com/users/Benni-chan/followers","following_url":"https://api.github.com/users/Benni-chan/following{/other_user}","gists_url":"https://api.github.com/users/Benni-chan/gists{/gist_id}","starred_url":"https://api.github.com/users/Benni-chan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Benni-chan/subscriptions","organizations_url":"https://api.github.com/users/Benni-chan/orgs","repos_url":"https://api.github.com/users/Benni-chan/repos","events_url":"https://api.github.com/users/Benni-chan/events{/privacy}","received_events_url":"https://api.github.com/users/Benni-chan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Benni-chan/nzbToAniDB","description":"postprocessing script for animes (to use with sabnzbd+ or nzbget or even as stand alone) to rename files after a sync with anidb.net. files can additionally be renamed via tvdb","fork":false,"url":"https://api.github.com/repos/Benni-chan/nzbToAniDB","forks_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/forks","keys_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/teams","hooks_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/hooks","issue_events_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/events{/number}","events_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/events","assignees_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/assignees{/user}","branches_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/branches{/branch}","tags_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/tags","blobs_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/git/refs{/sha}","trees_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/statuses/{sha}","languages_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/languages","stargazers_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/stargazers","contributors_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/contributors","subscribers_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/subscribers","subscription_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/subscription","commits_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/commits{/sha}","git_commits_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/git/commits{/sha}","comments_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/comments{/number}","issue_comment_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/comments/{number}","contents_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/contents/{+path}","compare_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/merges","archive_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/downloads","issues_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues{/number}","pulls_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/pulls{/number}","milestones_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/milestones{/number}","notifications_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/labels{/name}","releases_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/releases{/id}","created_at":"2011-10-31T16:10:14Z","updated_at":"2015-01-01T15:03:03Z","pushed_at":"2015-01-01T15:03:03Z","git_url":"git://github.com/Benni-chan/nzbToAniDB.git","ssh_url":"git@github.com:Benni-chan/nzbToAniDB.git","clone_url":"https://github.com/Benni-chan/nzbToAniDB.git","svn_url":"https://github.com/Benni-chan/nzbToAniDB","homepage":"","size":711,"stargazers_count":14,"watchers_count":14,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":5,"mirror_url":null,"open_issues_count":1,"forks":5,"open_issues":1,"watchers":14,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Benni-chan/nzbToAniDB/pulls/24"},"html":{"href":"https://github.com/Benni-chan/nzbToAniDB/pull/24"},"issue":{"href":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/24"},"comments":{"href":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/24/comments"},"review_comments":{"href":"https://api.github.com/repos/Benni-chan/nzbToAniDB/pulls/24/comments"},"review_comment":{"href":"https://api.github.com/repos/Benni-chan/nzbToAniDB/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/Benni-chan/nzbToAniDB/pulls/24/commits"},"statuses":{"href":"https://api.github.com/repos/Benni-chan/nzbToAniDB/statuses/b958d73fca9cce005387fcef0d25c74cce392805"}},"merged":false,"mergeable":false,"mergeable_state":"dirty","merged_by":null,"comments":1,"review_comments":0,"commits":2,"additions":3,"deletions":2,"changed_files":2}},"public":true,"created_at":"2015-01-01T15:03:56Z"} +,{"id":"2489652851","type":"PushEvent","actor":{"id":188109,"login":"wilkart","gravatar_id":"","url":"https://api.github.com/users/wilkart","avatar_url":"https://avatars.githubusercontent.com/u/188109?"},"repo":{"id":11866439,"name":"wilkart/www","url":"https://api.github.com/repos/wilkart/www"},"payload":{"push_id":536864815,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"36a2680f6dff3aab4694168ad13a1cdda22a7b68","before":"e68d2ee6aa48de64869c92386b9bcb3c9b9f55d5","commits":[{"sha":"5dd586f266b22cad9c83944a4851d50095cc551e","author":{"email":"273edee8364c8f7081cae4169cd51ab69c7c9c6b@netcentric.biz","name":"Artur Pedziwilk"},"message":"change deprecated pygments to highlither","distinct":true,"url":"https://api.github.com/repos/wilkart/www/commits/5dd586f266b22cad9c83944a4851d50095cc551e"},{"sha":"4f30e336cb327540fed225511421b80b1d6a42dd","author":{"email":"273edee8364c8f7081cae4169cd51ab69c7c9c6b@netcentric.biz","name":"Artur Pedziwilk"},"message":"rename libs to lib","distinct":true,"url":"https://api.github.com/repos/wilkart/www/commits/4f30e336cb327540fed225511421b80b1d6a42dd"},{"sha":"36a2680f6dff3aab4694168ad13a1cdda22a7b68","author":{"email":"273edee8364c8f7081cae4169cd51ab69c7c9c6b@netcentric.biz","name":"Artur Pedziwilk"},"message":"renambe libs to lib","distinct":true,"url":"https://api.github.com/repos/wilkart/www/commits/36a2680f6dff3aab4694168ad13a1cdda22a7b68"}]},"public":true,"created_at":"2015-01-01T15:03:56Z"} +,{"id":"2489652855","type":"CreateEvent","actor":{"id":8678270,"login":"Prakash14","gravatar_id":"","url":"https://api.github.com/users/Prakash14","avatar_url":"https://avatars.githubusercontent.com/u/8678270?"},"repo":{"id":28688674,"name":"Prakash14/hello-world","url":"https://api.github.com/repos/Prakash14/hello-world"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:56Z"} +,{"id":"2489652858","type":"PushEvent","actor":{"id":10152921,"login":"Antidelay","gravatar_id":"","url":"https://api.github.com/users/Antidelay","avatar_url":"https://avatars.githubusercontent.com/u/10152921?"},"repo":{"id":28637715,"name":"Antidelay/antidelay.github.io","url":"https://api.github.com/repos/Antidelay/antidelay.github.io"},"payload":{"push_id":536864817,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e4176b4e3c7de41c883b09d4d78b9743582afd12","before":"764546592da04232508776ca74548a7afcce99f3","commits":[{"sha":"e4176b4e3c7de41c883b09d4d78b9743582afd12","author":{"email":"881baaede9ab674cbb97cddae8bfda41d8ad51c3@example.com","name":"ep"},"message":"Site updated at 2015-01-01 15:03:51 UTC","distinct":true,"url":"https://api.github.com/repos/Antidelay/antidelay.github.io/commits/e4176b4e3c7de41c883b09d4d78b9743582afd12"}]},"public":true,"created_at":"2015-01-01T15:03:56Z"} +,{"id":"2489652859","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":536864818,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5ef4e8a239978cac60f0d3b57451fdab92639d6f","before":"8808c8b6dd8f48f5ef7db0ce493135e6b0386b30","commits":[{"sha":"5ef4e8a239978cac60f0d3b57451fdab92639d6f","author":{"email":"be51eeb01ab0ddac52571dd736dd0fd5d13a6a37@gmail.com","name":"Gudakesh Ankur Vatsa"},"message":"Create NumPalindrome.java","distinct":true,"url":"https://api.github.com/repos/vatsaaa/mycodesnips/commits/5ef4e8a239978cac60f0d3b57451fdab92639d6f"}]},"public":true,"created_at":"2015-01-01T15:03:56Z"} +,{"id":"2489652860","type":"WatchEvent","actor":{"id":950759,"login":"haosdent","gravatar_id":"","url":"https://api.github.com/users/haosdent","avatar_url":"https://avatars.githubusercontent.com/u/950759?"},"repo":{"id":28428729,"name":"wasabeef/awesome-android-ui","url":"https://api.github.com/repos/wasabeef/awesome-android-ui"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:56Z"} +,{"id":"2489652861","type":"PushEvent","actor":{"id":917694,"login":"cashewkernchen","gravatar_id":"","url":"https://api.github.com/users/cashewkernchen","avatar_url":"https://avatars.githubusercontent.com/u/917694?"},"repo":{"id":2300694,"name":"hacken-in/website","url":"https://api.github.com/repos/hacken-in/website"},"payload":{"push_id":536864819,"size":1,"distinct_size":1,"ref":"refs/heads/346-translation-cleanup","head":"778e193411e863541c680ff76ed7fc494f7d5097","before":"b033f02435d9085efeca78fa00a1babd6d2845f5","commits":[{"sha":"778e193411e863541c680ff76ed7fc494f7d5097","author":{"email":"482c4ce9f7b5b954e757720e199157491a5c1715@gmail.com","name":"cashewkernchen"},"message":"Useless file is useless","distinct":true,"url":"https://api.github.com/repos/hacken-in/website/commits/778e193411e863541c680ff76ed7fc494f7d5097"}]},"public":true,"created_at":"2015-01-01T15:03:56Z","org":{"id":1831760,"login":"hacken-in","gravatar_id":"","url":"https://api.github.com/orgs/hacken-in","avatar_url":"https://avatars.githubusercontent.com/u/1831760?"}} +,{"id":"2489652862","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327506,"name":"cloudify-cosmo/cloudify-system-tests","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-system-tests"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify System Tests","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:56Z","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":"2489652863","type":"PushEvent","actor":{"id":886093,"login":"fifahuihua","gravatar_id":"","url":"https://api.github.com/users/fifahuihua","avatar_url":"https://avatars.githubusercontent.com/u/886093?"},"repo":{"id":28496141,"name":"fifahuihua/multi-checkbox","url":"https://api.github.com/repos/fifahuihua/multi-checkbox"},"payload":{"push_id":536864820,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"aea3db1776053da01c3be569e3a193ca3b3d5de5","before":"35f2929ab0fb44283f3a172b96afdcc405461fdb","commits":[{"sha":"aea3db1776053da01c3be569e3a193ca3b3d5de5","author":{"email":"a315864039802a8d69d0f8ab426e32a1cc326f64@dinglicom.com","name":"Antony ZHANG"},"message":"Add styles of multiple checkbox","distinct":true,"url":"https://api.github.com/repos/fifahuihua/multi-checkbox/commits/aea3db1776053da01c3be569e3a193ca3b3d5de5"}]},"public":true,"created_at":"2015-01-01T15:03:56Z"} +,{"id":"2489652864","type":"PushEvent","actor":{"id":10351099,"login":"yangnuri","gravatar_id":"","url":"https://api.github.com/users/yangnuri","avatar_url":"https://avatars.githubusercontent.com/u/10351099?"},"repo":{"id":28683302,"name":"yangnuri/yangnuri.github.io","url":"https://api.github.com/repos/yangnuri/yangnuri.github.io"},"payload":{"push_id":536864821,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"22dd8a45e33968ea91935d6cc668b1f808a1b248","before":"db41abc23aa7826020051ac085006f24683b7a8c","commits":[{"sha":"22dd8a45e33968ea91935d6cc668b1f808a1b248","author":{"email":"d19294121d393899624648c460bc0b6750613ec3@hanmail.net","name":"seung hwan Shin"},"message":"Update index.html","distinct":true,"url":"https://api.github.com/repos/yangnuri/yangnuri.github.io/commits/22dd8a45e33968ea91935d6cc668b1f808a1b248"}]},"public":true,"created_at":"2015-01-01T15:03:56Z"} +,{"id":"2489652870","type":"PushEvent","actor":{"id":3824954,"login":"jshawl","gravatar_id":"","url":"https://api.github.com/users/jshawl","avatar_url":"https://avatars.githubusercontent.com/u/3824954?"},"repo":{"id":28678748,"name":"jshawl/sassbit.es","url":"https://api.github.com/repos/jshawl/sassbit.es"},"payload":{"push_id":536864824,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"73d8df3fbbaeb1d2cd7bc13b2c114dd298d7a0ba","before":"f37cf7324cff16354764f366eb6c0d604f74f881","commits":[{"sha":"73d8df3fbbaeb1d2cd7bc13b2c114dd298d7a0ba","author":{"email":"a5c95b3d7cb4d0ae05a15c79c79ab458dc2c8f9e@jshawl.com","name":"Jesse Shawl"},"message":"updte site title","distinct":true,"url":"https://api.github.com/repos/jshawl/sassbit.es/commits/73d8df3fbbaeb1d2cd7bc13b2c114dd298d7a0ba"}]},"public":true,"created_at":"2015-01-01T15:03:57Z"} +,{"id":"2489652871","type":"PushEvent","actor":{"id":228279,"login":"mamash","gravatar_id":"","url":"https://api.github.com/users/mamash","avatar_url":"https://avatars.githubusercontent.com/u/228279?"},"repo":{"id":3875528,"name":"joyent/pkgsrc-wip","url":"https://api.github.com/repos/joyent/pkgsrc-wip"},"payload":{"push_id":536864822,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b4f14f8f70b411de2acf7cdaa52ab42dce92af2e","before":"562a2a3ef625764a555c8f435b91a3fa893c0e05","commits":[{"sha":"b4f14f8f70b411de2acf7cdaa52ab42dce92af2e","author":{"email":"d95473deac19b5ee39005b1221cddf8e23df101b","name":"thomasklausner"},"message":"Add octave-mode.","distinct":true,"url":"https://api.github.com/repos/joyent/pkgsrc-wip/commits/b4f14f8f70b411de2acf7cdaa52ab42dce92af2e"}]},"public":true,"created_at":"2015-01-01T15:03:57Z","org":{"id":10161,"login":"joyent","gravatar_id":"","url":"https://api.github.com/orgs/joyent","avatar_url":"https://avatars.githubusercontent.com/u/10161?"}} +,{"id":"2489652875","type":"IssuesEvent","actor":{"id":5514202,"login":"DeeJee","gravatar_id":"","url":"https://api.github.com/users/DeeJee","avatar_url":"https://avatars.githubusercontent.com/u/5514202?"},"repo":{"id":28571307,"name":"DeeJee/VhpTimeLogger","url":"https://api.github.com/repos/DeeJee/VhpTimeLogger"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4","labels_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4/comments","events_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4/events","html_url":"https://github.com/DeeJee/VhpTimeLogger/issues/4","id":53221406,"number":4,"title":"Rapportage","user":{"login":"DeeJee","id":5514202,"avatar_url":"https://avatars.githubusercontent.com/u/5514202?v=3","gravatar_id":"","url":"https://api.github.com/users/DeeJee","html_url":"https://github.com/DeeJee","followers_url":"https://api.github.com/users/DeeJee/followers","following_url":"https://api.github.com/users/DeeJee/following{/other_user}","gists_url":"https://api.github.com/users/DeeJee/gists{/gist_id}","starred_url":"https://api.github.com/users/DeeJee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeeJee/subscriptions","organizations_url":"https://api.github.com/users/DeeJee/orgs","repos_url":"https://api.github.com/users/DeeJee/repos","events_url":"https://api.github.com/users/DeeJee/events{/privacy}","received_events_url":"https://api.github.com/users/DeeJee/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:03:57Z","updated_at":"2015-01-01T15:03:57Z","closed_at":null,"body":"Kun je de suggestie voor het datumbereik predateren? De suggestie is nu de huidige maand, maar wat je eigenlijk wilt weten is wat er de afgelopen tijd gebeurd is. Het is beter de vorige maand als suggestie te geven. \r\n"}},"public":true,"created_at":"2015-01-01T15:03:57Z"} +,{"id":"2489652879","type":"PushEvent","actor":{"id":794263,"login":"wildlyinaccurate","gravatar_id":"","url":"https://api.github.com/users/wildlyinaccurate","avatar_url":"https://avatars.githubusercontent.com/u/794263?"},"repo":{"id":27370287,"name":"wildlyinaccurate/wildlyinaccurate.github.io","url":"https://api.github.com/repos/wildlyinaccurate/wildlyinaccurate.github.io"},"payload":{"push_id":536864827,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"020b17ce0046bab52bb9288af1977bca9b41e390","before":"c00f1d94c759599c5f99a41d1063e500d94cdee5","commits":[{"sha":"020b17ce0046bab52bb9288af1977bca9b41e390","author":{"email":"461476587780aa9fa5611ea6dc3912c146a91760@wildlyinaccurate.com","name":"Joseph Wynn"},"message":"jekyll build","distinct":true,"url":"https://api.github.com/repos/wildlyinaccurate/wildlyinaccurate.github.io/commits/020b17ce0046bab52bb9288af1977bca9b41e390"}]},"public":true,"created_at":"2015-01-01T15:03:58Z"} +,{"id":"2489652883","type":"CreateEvent","actor":{"id":10362402,"login":"FY811043695","gravatar_id":"","url":"https://api.github.com/users/FY811043695","avatar_url":"https://avatars.githubusercontent.com/u/10362402?"},"repo":{"id":28688675,"name":"FY811043695/Intelhomework","url":"https://api.github.com/repos/FY811043695/Intelhomework"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"homework","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:58Z"} +,{"id":"2489652887","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327646,"name":"cloudify-cosmo/cloudify-plugins-common","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-plugins-common"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:59Z","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":"2489652888","type":"PushEvent","actor":{"id":420786,"login":"adieyal","gravatar_id":"","url":"https://api.github.com/users/adieyal","avatar_url":"https://avatars.githubusercontent.com/u/420786?"},"repo":{"id":23510644,"name":"Code4SA/traffic-fines","url":"https://api.github.com/repos/Code4SA/traffic-fines"},"payload":{"push_id":536864832,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"2bdf05c119fb2c3ac6380c90e54972aa051a81fa","before":"7ee0ecd86ec5e3e2f129d45c8e40b08ae3bf8506","commits":[{"sha":"2bdf05c119fb2c3ac6380c90e54972aa051a81fa","author":{"email":"b3e8ff7ac1c7e75661e16152a5dce1ff36a3e140@burgercom.co.za","name":"Adi Eyal"},"message":"Updated iframe resize code","distinct":true,"url":"https://api.github.com/repos/Code4SA/traffic-fines/commits/2bdf05c119fb2c3ac6380c90e54972aa051a81fa"}]},"public":true,"created_at":"2015-01-01T15:03:59Z","org":{"id":4387576,"login":"Code4SA","gravatar_id":"","url":"https://api.github.com/orgs/Code4SA","avatar_url":"https://avatars.githubusercontent.com/u/4387576?"}} +,{"id":"2489652894","type":"PushEvent","actor":{"id":247819,"login":"onacit","gravatar_id":"","url":"https://api.github.com/users/onacit","avatar_url":"https://avatars.githubusercontent.com/u/247819?"},"repo":{"id":21372103,"name":"jinahya/json-cdc","url":"https://api.github.com/repos/jinahya/json-cdc"},"payload":{"push_id":536864834,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"a4377662240de7fafff3504ab97cbdebb56d3401","before":"147f9076b48a1d01b41807503dd057368ec77268","commits":[{"sha":"a4377662240de7fafff3504ab97cbdebb56d3401","author":{"email":"16b4bb8650f54ebf5a7cdbe5a8b041b2dd4bee69@gmail.com","name":"Jin Kwon"},"message":"creating site for 1.1-SNAPSHOT","distinct":true,"url":"https://api.github.com/repos/jinahya/json-cdc/commits/a4377662240de7fafff3504ab97cbdebb56d3401"}]},"public":true,"created_at":"2015-01-01T15:04:01Z"} +,{"id":"2489652895","type":"PushEvent","actor":{"id":8964128,"login":"sggd","gravatar_id":"","url":"https://api.github.com/users/sggd","avatar_url":"https://avatars.githubusercontent.com/u/8964128?"},"repo":{"id":28598740,"name":"sggd/sggd.github.io","url":"https://api.github.com/repos/sggd/sggd.github.io"},"payload":{"push_id":536864835,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"a5dfcadee5e88657101d98fc2b95d58596a7a22d","before":"0efa17838e893c7e21ead79171eb532ad38bc7dc","commits":[{"sha":"29a946ec8c3e6caa841d43948b5bf6249690b638","author":{"email":"068bd037f27383a256adab786bbaf8621a72eb66@whu.edu.cn","name":"罗华"},"message":"First commit","distinct":true,"url":"https://api.github.com/repos/sggd/sggd.github.io/commits/29a946ec8c3e6caa841d43948b5bf6249690b638"},{"sha":"a5dfcadee5e88657101d98fc2b95d58596a7a22d","author":{"email":"068bd037f27383a256adab786bbaf8621a72eb66@whu.edu.cn","name":"罗华"},"message":"Site updated: 2015-01-01 23:03:32","distinct":true,"url":"https://api.github.com/repos/sggd/sggd.github.io/commits/a5dfcadee5e88657101d98fc2b95d58596a7a22d"}]},"public":true,"created_at":"2015-01-01T15:04:02Z"} +,{"id":"2489652897","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327646,"name":"cloudify-cosmo/cloudify-plugins-common","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-plugins-common"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify Resources for Cloudify Plugins","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:02Z","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":"2489652900","type":"PushEvent","actor":{"id":983232,"login":"johnmay","gravatar_id":"","url":"https://api.github.com/users/johnmay","avatar_url":"https://avatars.githubusercontent.com/u/983232?"},"repo":{"id":4647708,"name":"johnmay/cdk","url":"https://api.github.com/repos/johnmay/cdk"},"payload":{"push_id":536864837,"size":1,"distinct_size":1,"ref":"refs/heads/patch/bugfixup-010115","head":"789005bcb62a14bad6fbd4e9c8503f550c32b853","before":"c8828eb3718dad485cc1e8ce892651909ee40c47","commits":[{"sha":"789005bcb62a14bad6fbd4e9c8503f550c32b853","author":{"email":"a51dda7c7ff50b61eaea0444371f4a6a9301e501@nextmovesoftware.com","name":"John May"},"message":"Demonstrate correct parsing of SMARTS in bug 909.","distinct":true,"url":"https://api.github.com/repos/johnmay/cdk/commits/789005bcb62a14bad6fbd4e9c8503f550c32b853"}]},"public":true,"created_at":"2015-01-01T15:04:02Z"} +,{"id":"2489652907","type":"PushEvent","actor":{"id":9734362,"login":"ken5scal","gravatar_id":"","url":"https://api.github.com/users/ken5scal","avatar_url":"https://avatars.githubusercontent.com/u/9734362?"},"repo":{"id":28687722,"name":"ken5scal/demo_app","url":"https://api.github.com/repos/ken5scal/demo_app"},"payload":{"push_id":536864840,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"129655ef85eb88b3c1adeaebec59908de0d90bf0","before":"afaaaf1b9061f9fed4fff849d97c91003b57d50e","commits":[{"sha":"129655ef85eb88b3c1adeaebec59908de0d90bf0","author":{"email":"374ad2b91cbb4c974e1f1e08c7c0f05341d5345d@gmail.com","name":"ken5scal"},"message":"Finish demo app","distinct":true,"url":"https://api.github.com/repos/ken5scal/demo_app/commits/129655ef85eb88b3c1adeaebec59908de0d90bf0"}]},"public":true,"created_at":"2015-01-01T15:04:03Z"} +,{"id":"2489652910","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327753,"name":"cloudify-cosmo/cloudify-chef-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-chef-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:04Z","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":"2489652912","type":"PushEvent","actor":{"id":7022740,"login":"antares993","gravatar_id":"","url":"https://api.github.com/users/antares993","avatar_url":"https://avatars.githubusercontent.com/u/7022740?"},"repo":{"id":28403213,"name":"antares993/silex-web-template","url":"https://api.github.com/repos/antares993/silex-web-template"},"payload":{"push_id":536864844,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0d7dc1303fdbac3e03d477be4e486498b2fec361","before":"423ec31f60652458877a29e770c387ce516ea188","commits":[{"sha":"0d7dc1303fdbac3e03d477be4e486498b2fec361","author":{"email":"58a543594352a0974282357c1a0f9143af46b64c@gmail.com","name":"Antarès Tupin"},"message":"Merged retinafy and images compression","distinct":true,"url":"https://api.github.com/repos/antares993/silex-web-template/commits/0d7dc1303fdbac3e03d477be4e486498b2fec361"}]},"public":true,"created_at":"2015-01-01T15:04:04Z"} +,{"id":"2489652913","type":"PushEvent","actor":{"id":914337,"login":"briangaid","gravatar_id":"","url":"https://api.github.com/users/briangaid","avatar_url":"https://avatars.githubusercontent.com/u/914337?"},"repo":{"id":10535450,"name":"briangaid/briangaid.github.io","url":"https://api.github.com/repos/briangaid/briangaid.github.io"},"payload":{"push_id":536864845,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5413bba5eea0fbef6ccba3a8b1684c51633d0a84","before":"3dd34aa60098d26f8216fbd08eed4561bbcb4d7e","commits":[{"sha":"5413bba5eea0fbef6ccba3a8b1684c51633d0a84","author":{"email":"0d212fa24a03354e8bb9a9c2e4138446e4e601cf@users.noreply.github.com","name":"Brian Gaid"},"message":"alphabetical order","distinct":true,"url":"https://api.github.com/repos/briangaid/briangaid.github.io/commits/5413bba5eea0fbef6ccba3a8b1684c51633d0a84"}]},"public":true,"created_at":"2015-01-01T15:04:04Z"} +,{"id":"2489652915","type":"PushEvent","actor":{"id":8603621,"login":"pmbhumkar","gravatar_id":"","url":"https://api.github.com/users/pmbhumkar","avatar_url":"https://avatars.githubusercontent.com/u/8603621?"},"repo":{"id":28688570,"name":"pmbhumkar/mangoopatch","url":"https://api.github.com/repos/pmbhumkar/mangoopatch"},"payload":{"push_id":536864846,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a12d4f3d0c430c575a2c71562b7c5e5b19f54671","before":"efa50f8ded6f77431d39070c26b574b270923e1b","commits":[{"sha":"a12d4f3d0c430c575a2c71562b7c5e5b19f54671","author":{"email":"38fd3d050688ff5865e112d70b9a3b39cb125550@gmail.com","name":"pmbhumkar"},"message":"Update chmod.patch","distinct":true,"url":"https://api.github.com/repos/pmbhumkar/mangoopatch/commits/a12d4f3d0c430c575a2c71562b7c5e5b19f54671"}]},"public":true,"created_at":"2015-01-01T15:04:04Z"} +,{"id":"2489652917","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":536864848,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4f5b0000160f0e6c39af4660a4ab039332547b7a","before":"daadbac2241068c039f396a0e8ddb8e04409e10a","commits":[{"sha":"4f5b0000160f0e6c39af4660a4ab039332547b7a","author":{"email":"197afcde7a19cfc6854f5986f09cef0e7ba62fa2@qq.com","name":"weshellnet"},"message":"Create CNAME","distinct":true,"url":"https://api.github.com/repos/weshellnet/weshellnet.github.io/commits/4f5b0000160f0e6c39af4660a4ab039332547b7a"}]},"public":true,"created_at":"2015-01-01T15:04:04Z"} +,{"id":"2489652925","type":"PushEvent","actor":{"id":5619484,"login":"vincium","gravatar_id":"","url":"https://api.github.com/users/vincium","avatar_url":"https://avatars.githubusercontent.com/u/5619484?"},"repo":{"id":21457517,"name":"vincium/league-of-tennis","url":"https://api.github.com/repos/vincium/league-of-tennis"},"payload":{"push_id":536864851,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"9253d79f83f2f39db66cc69549a01f8e50c2f9b2","before":"93db5b5721452c02fadc4ba4f1215a205c72b61e","commits":[{"sha":"5dd2b4e2585551b66b5feda7e0f90582d3dd58ef","author":{"email":"a9db76139231430ef91f3c109ab5a85ada7020ee@gmail.com","name":"vincium"},"message":"fix when common < 0","distinct":true,"url":"https://api.github.com/repos/vincium/league-of-tennis/commits/5dd2b4e2585551b66b5feda7e0f90582d3dd58ef"},{"sha":"9253d79f83f2f39db66cc69549a01f8e50c2f9b2","author":{"email":"a9db76139231430ef91f3c109ab5a85ada7020ee@gmail.com","name":"vincium"},"message":"Merge branch 'master' of github.com:vincium/league-of-tennis","distinct":true,"url":"https://api.github.com/repos/vincium/league-of-tennis/commits/9253d79f83f2f39db66cc69549a01f8e50c2f9b2"}]},"public":true,"created_at":"2015-01-01T15:04:05Z"} +,{"id":"2489652927","type":"PushEvent","actor":{"id":929551,"login":"geekzy","gravatar_id":"","url":"https://api.github.com/users/geekzy","avatar_url":"https://avatars.githubusercontent.com/u/929551?"},"repo":{"id":20910320,"name":"geekzy/jdbf","url":"https://api.github.com/repos/geekzy/jdbf"},"payload":{"push_id":536864852,"size":25,"distinct_size":25,"ref":"refs/heads/master","head":"47b6b92c54124daf83968275baa12ea8667a9def","before":"75e5d60460631bd06619ec45892e4ecd68d50db9","commits":[{"sha":"622abb677febfb440eb60cef47fdeb4f414a2aa7","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"fix ThreadLocal with date formats","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/622abb677febfb440eb60cef47fdeb4f414a2aa7"},{"sha":"c5a2b727be23043c1f4612347175ac5965b30c20","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"jdbf 2.0: add ability to read DBF files with MEMO fields","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/c5a2b727be23043c1f4612347175ac5965b30c20"},{"sha":"0b384951a705c0daec35e65ca8491dcc31da031e","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"remove legacy code blocks","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/0b384951a705c0daec35e65ca8491dcc31da031e"},{"sha":"dcd8936a3f79e24a126faeded1164fcf219d1af1","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"add versioneye badge","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/dcd8936a3f79e24a126faeded1164fcf219d1af1"},{"sha":"e66deed28ba929160fa03ead304a783fbd157938","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"fix dependency monitoring badge","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/e66deed28ba929160fa03ead304a783fbd157938"},{"sha":"2c5a5df5993a490507d7634a056401ce394653d8","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"fix issue #3 (https://github.com/iryndin/jdbf/issues/3)\nadd record (sequence) number for each DbfRecord","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/2c5a5df5993a490507d7634a056401ce394653d8"},{"sha":"41cd06e3a7ffec29f3b15bffb7fbbe45dd3c70f1","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"fix issue #4\nshould parse update date from DBF file with respect to file type","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/41cd06e3a7ffec29f3b15bffb7fbbe45dd3c70f1"},{"sha":"a3d77c2616f5e5d1fd7570a75dac27e1a2580b4f","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"update POM version from 2.0 to 2.0.1","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/a3d77c2616f5e5d1fd7570a75dac27e1a2580b4f"},{"sha":"732f423d5aec19ae6078f25e7d7f7bf530905689","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"Ivan Ryndin"},"message":"update readme","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/732f423d5aec19ae6078f25e7d7f7bf530905689"},{"sha":"f9aac6c866aeb00a4fb546fb571f84c14f5649b2","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"remove IntelliJ IDEA files","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/f9aac6c866aeb00a4fb546fb571f84c14f5649b2"},{"sha":"645c608e16df9ecfe89a22df1210133576ed37e2","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"Ivan Ryndin"},"message":"add links to docs","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/645c608e16df9ecfe89a22df1210133576ed37e2"},{"sha":"b2005483aafe60ec98157ffd37d014eb7cda27ae","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"Ivan Ryndin"},"message":"add small user guide to README","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/b2005483aafe60ec98157ffd37d014eb7cda27ae"},{"sha":"cf77fdabbfc45445caae05344706b73452afd33d","author":{"email":"a99576d88e1d44728c374601958088441cdae1a5@gmail.com","name":"183614956"},"message":"Example: Write to DBF","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/cf77fdabbfc45445caae05344706b73452afd33d"},{"sha":"945376664fea528c62cdbed97580084d6939f1bc","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"Ivan Ryndin"},"message":"Merge pull request #6 from 183614956/patch-1\n\nExample: Write to DBF","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/945376664fea528c62cdbed97580084d6939f1bc"},{"sha":"3999cec38a977c7ac31cb562a922f0b39dcdc4e1","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"fix issue #7\nadd isDeleted method that checks if record is deleted.\nupdate tests\nupdate POM version from 2.0.1 to 2.0.2","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/3999cec38a977c7ac31cb562a922f0b39dcdc4e1"},{"sha":"50460babc0c2fd04fba2f248c9a1b5040a7af882","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"Ivan Ryndin"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/50460babc0c2fd04fba2f248c9a1b5040a7af882"},{"sha":"f964c1024106da4474b6dab4a31046b77902d207","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"Ivan Ryndin"},"message":"Fix javadocs","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/f964c1024106da4474b6dab4a31046b77902d207"},{"sha":"0e6802eebac1c24fbba70ccf90824052e3172fed","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"remove legacy","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/0e6802eebac1c24fbba70ccf90824052e3172fed"},{"sha":"f1108bbb0b656c4550150ec4cd6bc258a22edeaa","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"remove legacy 2","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/f1108bbb0b656c4550150ec4cd6bc258a22edeaa"},{"sha":"b54103b1b1057f59fe0492a906c4e8072bd03ca8","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"refresh TODOs","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/b54103b1b1057f59fe0492a906c4e8072bd03ca8"}]},"public":true,"created_at":"2015-01-01T15:04:05Z"} +,{"id":"2489652932","type":"PushEvent","actor":{"id":9965,"login":"sbooth","gravatar_id":"","url":"https://api.github.com/users/sbooth","avatar_url":"https://avatars.githubusercontent.com/u/9965?"},"repo":{"id":1679183,"name":"sbooth/SFBPopovers","url":"https://api.github.com/repos/sbooth/SFBPopovers"},"payload":{"push_id":536864854,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"95611a615f22aa755fc37eca0d21b88144e368d3","before":"2f5d31e4d91bca94c96549f0661a30af8115e00e","commits":[{"sha":"95611a615f22aa755fc37eca0d21b88144e368d3","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@sbooth.org","name":"sbooth"},"message":"Updated copyright for 2015 and removed use of deprecated methods","distinct":true,"url":"https://api.github.com/repos/sbooth/SFBPopovers/commits/95611a615f22aa755fc37eca0d21b88144e368d3"}]},"public":true,"created_at":"2015-01-01T15:04:06Z"} +,{"id":"2489652933","type":"PullRequestEvent","actor":{"id":873670,"login":"ErshKUS","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","avatar_url":"https://avatars.githubusercontent.com/u/873670?"},"repo":{"id":2147969,"name":"ErshKUS/test","url":"https://api.github.com/repos/ErshKUS/test"},"payload":{"action":"closed","number":4,"pull_request":{"url":"https://api.github.com/repos/ErshKUS/test/pulls/4","id":26743792,"html_url":"https://github.com/ErshKUS/test/pull/4","diff_url":"https://github.com/ErshKUS/test/pull/4.diff","patch_url":"https://github.com/ErshKUS/test/pull/4.patch","issue_url":"https://api.github.com/repos/ErshKUS/test/issues/4","number":4,"state":"closed","locked":false,"title":"первый пулл реквест","user":{"login":"e-rsh-p","id":10356326,"avatar_url":"https://avatars.githubusercontent.com/u/10356326?v=3","gravatar_id":"","url":"https://api.github.com/users/e-rsh-p","html_url":"https://github.com/e-rsh-p","followers_url":"https://api.github.com/users/e-rsh-p/followers","following_url":"https://api.github.com/users/e-rsh-p/following{/other_user}","gists_url":"https://api.github.com/users/e-rsh-p/gists{/gist_id}","starred_url":"https://api.github.com/users/e-rsh-p/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-rsh-p/subscriptions","organizations_url":"https://api.github.com/users/e-rsh-p/orgs","repos_url":"https://api.github.com/users/e-rsh-p/repos","events_url":"https://api.github.com/users/e-rsh-p/events{/privacy}","received_events_url":"https://api.github.com/users/e-rsh-p/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:03:20Z","updated_at":"2015-01-01T15:04:06Z","closed_at":"2015-01-01T15:04:06Z","merged_at":"2015-01-01T15:04:06Z","merge_commit_sha":"430d8aff3e939fd3a39a0116033601e3d92446c0","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/ErshKUS/test/pulls/4/commits","review_comments_url":"https://api.github.com/repos/ErshKUS/test/pulls/4/comments","review_comment_url":"https://api.github.com/repos/ErshKUS/test/pulls/comments/{number}","comments_url":"https://api.github.com/repos/ErshKUS/test/issues/4/comments","statuses_url":"https://api.github.com/repos/ErshKUS/test/statuses/fa45f59f067eb05dca6fc854c8d09a81de70bbfb","head":{"label":"e-rsh-p:master","ref":"master","sha":"fa45f59f067eb05dca6fc854c8d09a81de70bbfb","user":{"login":"e-rsh-p","id":10356326,"avatar_url":"https://avatars.githubusercontent.com/u/10356326?v=3","gravatar_id":"","url":"https://api.github.com/users/e-rsh-p","html_url":"https://github.com/e-rsh-p","followers_url":"https://api.github.com/users/e-rsh-p/followers","following_url":"https://api.github.com/users/e-rsh-p/following{/other_user}","gists_url":"https://api.github.com/users/e-rsh-p/gists{/gist_id}","starred_url":"https://api.github.com/users/e-rsh-p/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-rsh-p/subscriptions","organizations_url":"https://api.github.com/users/e-rsh-p/orgs","repos_url":"https://api.github.com/users/e-rsh-p/repos","events_url":"https://api.github.com/users/e-rsh-p/events{/privacy}","received_events_url":"https://api.github.com/users/e-rsh-p/received_events","type":"User","site_admin":false},"repo":{"id":28688502,"name":"test","full_name":"e-rsh-p/test","owner":{"login":"e-rsh-p","id":10356326,"avatar_url":"https://avatars.githubusercontent.com/u/10356326?v=3","gravatar_id":"","url":"https://api.github.com/users/e-rsh-p","html_url":"https://github.com/e-rsh-p","followers_url":"https://api.github.com/users/e-rsh-p/followers","following_url":"https://api.github.com/users/e-rsh-p/following{/other_user}","gists_url":"https://api.github.com/users/e-rsh-p/gists{/gist_id}","starred_url":"https://api.github.com/users/e-rsh-p/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-rsh-p/subscriptions","organizations_url":"https://api.github.com/users/e-rsh-p/orgs","repos_url":"https://api.github.com/users/e-rsh-p/repos","events_url":"https://api.github.com/users/e-rsh-p/events{/privacy}","received_events_url":"https://api.github.com/users/e-rsh-p/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/e-rsh-p/test","description":"","fork":true,"url":"https://api.github.com/repos/e-rsh-p/test","forks_url":"https://api.github.com/repos/e-rsh-p/test/forks","keys_url":"https://api.github.com/repos/e-rsh-p/test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/e-rsh-p/test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/e-rsh-p/test/teams","hooks_url":"https://api.github.com/repos/e-rsh-p/test/hooks","issue_events_url":"https://api.github.com/repos/e-rsh-p/test/issues/events{/number}","events_url":"https://api.github.com/repos/e-rsh-p/test/events","assignees_url":"https://api.github.com/repos/e-rsh-p/test/assignees{/user}","branches_url":"https://api.github.com/repos/e-rsh-p/test/branches{/branch}","tags_url":"https://api.github.com/repos/e-rsh-p/test/tags","blobs_url":"https://api.github.com/repos/e-rsh-p/test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/e-rsh-p/test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/e-rsh-p/test/git/refs{/sha}","trees_url":"https://api.github.com/repos/e-rsh-p/test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/e-rsh-p/test/statuses/{sha}","languages_url":"https://api.github.com/repos/e-rsh-p/test/languages","stargazers_url":"https://api.github.com/repos/e-rsh-p/test/stargazers","contributors_url":"https://api.github.com/repos/e-rsh-p/test/contributors","subscribers_url":"https://api.github.com/repos/e-rsh-p/test/subscribers","subscription_url":"https://api.github.com/repos/e-rsh-p/test/subscription","commits_url":"https://api.github.com/repos/e-rsh-p/test/commits{/sha}","git_commits_url":"https://api.github.com/repos/e-rsh-p/test/git/commits{/sha}","comments_url":"https://api.github.com/repos/e-rsh-p/test/comments{/number}","issue_comment_url":"https://api.github.com/repos/e-rsh-p/test/issues/comments/{number}","contents_url":"https://api.github.com/repos/e-rsh-p/test/contents/{+path}","compare_url":"https://api.github.com/repos/e-rsh-p/test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/e-rsh-p/test/merges","archive_url":"https://api.github.com/repos/e-rsh-p/test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/e-rsh-p/test/downloads","issues_url":"https://api.github.com/repos/e-rsh-p/test/issues{/number}","pulls_url":"https://api.github.com/repos/e-rsh-p/test/pulls{/number}","milestones_url":"https://api.github.com/repos/e-rsh-p/test/milestones{/number}","notifications_url":"https://api.github.com/repos/e-rsh-p/test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/e-rsh-p/test/labels{/name}","releases_url":"https://api.github.com/repos/e-rsh-p/test/releases{/id}","created_at":"2015-01-01T14:54:13Z","updated_at":"2014-12-31T08:31:09Z","pushed_at":"2015-01-01T14:59:33Z","git_url":"git://github.com/e-rsh-p/test.git","ssh_url":"git@github.com:e-rsh-p/test.git","clone_url":"https://github.com/e-rsh-p/test.git","svn_url":"https://github.com/e-rsh-p/test","homepage":"","size":152,"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":"ErshKUS:master","ref":"master","sha":"e930237191e5a922d3b976dd16d34a61371ab91a","user":{"login":"ErshKUS","id":873670,"avatar_url":"https://avatars.githubusercontent.com/u/873670?v=3","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","html_url":"https://github.com/ErshKUS","followers_url":"https://api.github.com/users/ErshKUS/followers","following_url":"https://api.github.com/users/ErshKUS/following{/other_user}","gists_url":"https://api.github.com/users/ErshKUS/gists{/gist_id}","starred_url":"https://api.github.com/users/ErshKUS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ErshKUS/subscriptions","organizations_url":"https://api.github.com/users/ErshKUS/orgs","repos_url":"https://api.github.com/users/ErshKUS/repos","events_url":"https://api.github.com/users/ErshKUS/events{/privacy}","received_events_url":"https://api.github.com/users/ErshKUS/received_events","type":"User","site_admin":false},"repo":{"id":2147969,"name":"test","full_name":"ErshKUS/test","owner":{"login":"ErshKUS","id":873670,"avatar_url":"https://avatars.githubusercontent.com/u/873670?v=3","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","html_url":"https://github.com/ErshKUS","followers_url":"https://api.github.com/users/ErshKUS/followers","following_url":"https://api.github.com/users/ErshKUS/following{/other_user}","gists_url":"https://api.github.com/users/ErshKUS/gists{/gist_id}","starred_url":"https://api.github.com/users/ErshKUS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ErshKUS/subscriptions","organizations_url":"https://api.github.com/users/ErshKUS/orgs","repos_url":"https://api.github.com/users/ErshKUS/repos","events_url":"https://api.github.com/users/ErshKUS/events{/privacy}","received_events_url":"https://api.github.com/users/ErshKUS/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ErshKUS/test","description":"","fork":false,"url":"https://api.github.com/repos/ErshKUS/test","forks_url":"https://api.github.com/repos/ErshKUS/test/forks","keys_url":"https://api.github.com/repos/ErshKUS/test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ErshKUS/test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ErshKUS/test/teams","hooks_url":"https://api.github.com/repos/ErshKUS/test/hooks","issue_events_url":"https://api.github.com/repos/ErshKUS/test/issues/events{/number}","events_url":"https://api.github.com/repos/ErshKUS/test/events","assignees_url":"https://api.github.com/repos/ErshKUS/test/assignees{/user}","branches_url":"https://api.github.com/repos/ErshKUS/test/branches{/branch}","tags_url":"https://api.github.com/repos/ErshKUS/test/tags","blobs_url":"https://api.github.com/repos/ErshKUS/test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ErshKUS/test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ErshKUS/test/git/refs{/sha}","trees_url":"https://api.github.com/repos/ErshKUS/test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ErshKUS/test/statuses/{sha}","languages_url":"https://api.github.com/repos/ErshKUS/test/languages","stargazers_url":"https://api.github.com/repos/ErshKUS/test/stargazers","contributors_url":"https://api.github.com/repos/ErshKUS/test/contributors","subscribers_url":"https://api.github.com/repos/ErshKUS/test/subscribers","subscription_url":"https://api.github.com/repos/ErshKUS/test/subscription","commits_url":"https://api.github.com/repos/ErshKUS/test/commits{/sha}","git_commits_url":"https://api.github.com/repos/ErshKUS/test/git/commits{/sha}","comments_url":"https://api.github.com/repos/ErshKUS/test/comments{/number}","issue_comment_url":"https://api.github.com/repos/ErshKUS/test/issues/comments/{number}","contents_url":"https://api.github.com/repos/ErshKUS/test/contents/{+path}","compare_url":"https://api.github.com/repos/ErshKUS/test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ErshKUS/test/merges","archive_url":"https://api.github.com/repos/ErshKUS/test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ErshKUS/test/downloads","issues_url":"https://api.github.com/repos/ErshKUS/test/issues{/number}","pulls_url":"https://api.github.com/repos/ErshKUS/test/pulls{/number}","milestones_url":"https://api.github.com/repos/ErshKUS/test/milestones{/number}","notifications_url":"https://api.github.com/repos/ErshKUS/test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ErshKUS/test/labels{/name}","releases_url":"https://api.github.com/repos/ErshKUS/test/releases{/id}","created_at":"2011-08-03T10:52:46Z","updated_at":"2014-12-31T08:31:09Z","pushed_at":"2015-01-01T15:04:06Z","git_url":"git://github.com/ErshKUS/test.git","ssh_url":"git@github.com:ErshKUS/test.git","clone_url":"https://github.com/ErshKUS/test.git","svn_url":"https://github.com/ErshKUS/test","homepage":"","size":152,"stargazers_count":1,"watchers_count":1,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/4"},"html":{"href":"https://github.com/ErshKUS/test/pull/4"},"issue":{"href":"https://api.github.com/repos/ErshKUS/test/issues/4"},"comments":{"href":"https://api.github.com/repos/ErshKUS/test/issues/4/comments"},"review_comments":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/4/comments"},"review_comment":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/4/commits"},"statuses":{"href":"https://api.github.com/repos/ErshKUS/test/statuses/fa45f59f067eb05dca6fc854c8d09a81de70bbfb"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"ErshKUS","id":873670,"avatar_url":"https://avatars.githubusercontent.com/u/873670?v=3","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","html_url":"https://github.com/ErshKUS","followers_url":"https://api.github.com/users/ErshKUS/followers","following_url":"https://api.github.com/users/ErshKUS/following{/other_user}","gists_url":"https://api.github.com/users/ErshKUS/gists{/gist_id}","starred_url":"https://api.github.com/users/ErshKUS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ErshKUS/subscriptions","organizations_url":"https://api.github.com/users/ErshKUS/orgs","repos_url":"https://api.github.com/users/ErshKUS/repos","events_url":"https://api.github.com/users/ErshKUS/events{/privacy}","received_events_url":"https://api.github.com/users/ErshKUS/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":2,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:04:06Z"} +,{"id":"2489652936","type":"WatchEvent","actor":{"id":6399899,"login":"hacke2","gravatar_id":"","url":"https://api.github.com/users/hacke2","avatar_url":"https://avatars.githubusercontent.com/u/6399899?"},"repo":{"id":17893612,"name":"maomaoshu/jsBook","url":"https://api.github.com/repos/maomaoshu/jsBook"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:07Z"} +,{"id":"2489652940","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327753,"name":"cloudify-cosmo/cloudify-chef-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-chef-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify Chef Plugin","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:07Z","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":"2489652941","type":"PushEvent","actor":{"id":873670,"login":"ErshKUS","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","avatar_url":"https://avatars.githubusercontent.com/u/873670?"},"repo":{"id":2147969,"name":"ErshKUS/test","url":"https://api.github.com/repos/ErshKUS/test"},"payload":{"push_id":536864857,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"0e0c2c2d74fcd5976273d81d5d0db46ef741c8c7","before":"e930237191e5a922d3b976dd16d34a61371ab91a","commits":[{"sha":"fa45f59f067eb05dca6fc854c8d09a81de70bbfb","author":{"email":"7d206429a64aeaaa20169d635c1554cd2e4cdc16@yandex.ru","name":"e-rsh-p"},"message":"первое изменение в форке","distinct":true,"url":"https://api.github.com/repos/ErshKUS/test/commits/fa45f59f067eb05dca6fc854c8d09a81de70bbfb"},{"sha":"0e0c2c2d74fcd5976273d81d5d0db46ef741c8c7","author":{"email":"759752891c2da4a45a38d25a390ae29ab3869cac@gmail.com","name":"ErshKUS"},"message":"Merge pull request #4 from e-rsh-p/master\n\nпервый пулл реквест","distinct":true,"url":"https://api.github.com/repos/ErshKUS/test/commits/0e0c2c2d74fcd5976273d81d5d0db46ef741c8c7"}]},"public":true,"created_at":"2015-01-01T15:04:07Z"} +,{"id":"2489652942","type":"PushEvent","actor":{"id":818850,"login":"stubma","gravatar_id":"","url":"https://api.github.com/users/stubma","avatar_url":"https://avatars.githubusercontent.com/u/818850?"},"repo":{"id":26906938,"name":"stubma/cocos2dx-classical","url":"https://api.github.com/repos/stubma/cocos2dx-classical"},"payload":{"push_id":536864858,"size":5,"distinct_size":5,"ref":"refs/heads/master","head":"6298fcb73b8725dc7ee41adf0880f6e3cce88c73","before":"5743acef822357790747cf6e6e80672233d1d15c","commits":[{"sha":"9b388deb79ecea2be911bbdf59cf51d07b9f4381","author":{"email":"9c6f8d6f1d16fe77e2bee75389a742db1b82600f@gmail.com","name":"luma"},"message":"generate is done","distinct":true,"url":"https://api.github.com/repos/stubma/cocos2dx-classical/commits/9b388deb79ecea2be911bbdf59cf51d07b9f4381"},{"sha":"5c4c9d0d4d892a0294a4216d573ffaa435e900a8","author":{"email":"9c6f8d6f1d16fe77e2bee75389a742db1b82600f@gmail.com","name":"luma"},"message":"generated ccnode binding code compiled ok","distinct":true,"url":"https://api.github.com/repos/stubma/cocos2dx-classical/commits/5c4c9d0d4d892a0294a4216d573ffaa435e900a8"},{"sha":"f912cb130504cc8aa8d5e232d64ef019f16d05e2","author":{"email":"9c6f8d6f1d16fe77e2bee75389a742db1b82600f@gmail.com","name":"luma"},"message":"exclude non-object pointer, fix other problem, ready to generate all\ncode","distinct":true,"url":"https://api.github.com/repos/stubma/cocos2dx-classical/commits/f912cb130504cc8aa8d5e232d64ef019f16d05e2"},{"sha":"8b2d5b21f8a80730765d901d298ed0606288a5f6","author":{"email":"9c6f8d6f1d16fe77e2bee75389a742db1b82600f@gmail.com","name":"luma"},"message":"generate almost all cocos2dx binding, now compiled, need add more\nconversion for some types, need debug hellolua","distinct":true,"url":"https://api.github.com/repos/stubma/cocos2dx-classical/commits/8b2d5b21f8a80730765d901d298ed0606288a5f6"},{"sha":"6298fcb73b8725dc7ee41adf0880f6e3cce88c73","author":{"email":"9c6f8d6f1d16fe77e2bee75389a742db1b82600f@gmail.com","name":"luma"},"message":"finally! hellolua is ok! huhu….","distinct":true,"url":"https://api.github.com/repos/stubma/cocos2dx-classical/commits/6298fcb73b8725dc7ee41adf0880f6e3cce88c73"}]},"public":true,"created_at":"2015-01-01T15:04:07Z"} +,{"id":"2489652944","type":"PushEvent","actor":{"id":10341686,"login":"Arnie97","gravatar_id":"","url":"https://api.github.com/users/Arnie97","avatar_url":"https://avatars.githubusercontent.com/u/10341686?"},"repo":{"id":28664467,"name":"Arnie97/milky","url":"https://api.github.com/repos/Arnie97/milky"},"payload":{"push_id":536864859,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"163f1fba2561fe3e570b2a9283d8d08aef027e87","before":"001f7eee7637013adc750be61244df28b9a2790f","commits":[{"sha":"163f1fba2561fe3e570b2a9283d8d08aef027e87","author":{"email":"15fb2de3c60da2080fa1c355aa8b56d4d8cf760f@gmail.com","name":"Arnie97"},"message":"Added milky logo to README.","distinct":true,"url":"https://api.github.com/repos/Arnie97/milky/commits/163f1fba2561fe3e570b2a9283d8d08aef027e87"}]},"public":true,"created_at":"2015-01-01T15:04:07Z"} +,{"id":"2489652945","type":"PullRequestEvent","actor":{"id":3148102,"login":"syon","gravatar_id":"","url":"https://api.github.com/users/syon","avatar_url":"https://avatars.githubusercontent.com/u/3148102?"},"repo":{"id":21061553,"name":"andy-hiroyuki/andy-hiroyuki.github.io","url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io"},"payload":{"action":"opened","number":48,"pull_request":{"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48","id":26743796,"html_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/48","diff_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/48.diff","patch_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/48.patch","issue_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/48","number":48,"state":"open","locked":false,"title":"Silver Forest","user":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:04:07Z","updated_at":"2015-01-01T15:04:07Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48/commits","review_comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48/comments","review_comment_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/comments/{number}","comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/48/comments","statuses_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/a133ccb43da62f8b35640a3519e5a519669e1573","head":{"label":"syon:middleman","ref":"middleman","sha":"a133ccb43da62f8b35640a3519e5a519669e1573","user":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"repo":{"id":21061659,"name":"andy-hiroyuki.github.io","full_name":"syon/andy-hiroyuki.github.io","owner":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/syon/andy-hiroyuki.github.io","description":"","fork":true,"url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io","forks_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/forks","keys_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/teams","hooks_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/hooks","issue_events_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/events","assignees_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/tags","blobs_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/languages","stargazers_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/stargazers","contributors_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/contributors","subscribers_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/subscribers","subscription_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/subscription","commits_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/merges","archive_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/downloads","issues_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/labels{/name}","releases_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/releases{/id}","created_at":"2014-06-21T06:00:23Z","updated_at":"2014-12-23T17:37:01Z","pushed_at":"2015-01-01T15:03:46Z","git_url":"git://github.com/syon/andy-hiroyuki.github.io.git","ssh_url":"git@github.com:syon/andy-hiroyuki.github.io.git","clone_url":"https://github.com/syon/andy-hiroyuki.github.io.git","svn_url":"https://github.com/syon/andy-hiroyuki.github.io","homepage":null,"size":16189,"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":"andy-hiroyuki:middleman","ref":"middleman","sha":"2321737bf1add6a64d3cefb5f3e4699fd2d93491","user":{"login":"andy-hiroyuki","id":7948328,"avatar_url":"https://avatars.githubusercontent.com/u/7948328?v=3","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","html_url":"https://github.com/andy-hiroyuki","followers_url":"https://api.github.com/users/andy-hiroyuki/followers","following_url":"https://api.github.com/users/andy-hiroyuki/following{/other_user}","gists_url":"https://api.github.com/users/andy-hiroyuki/gists{/gist_id}","starred_url":"https://api.github.com/users/andy-hiroyuki/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andy-hiroyuki/subscriptions","organizations_url":"https://api.github.com/users/andy-hiroyuki/orgs","repos_url":"https://api.github.com/users/andy-hiroyuki/repos","events_url":"https://api.github.com/users/andy-hiroyuki/events{/privacy}","received_events_url":"https://api.github.com/users/andy-hiroyuki/received_events","type":"User","site_admin":false},"repo":{"id":21061553,"name":"andy-hiroyuki.github.io","full_name":"andy-hiroyuki/andy-hiroyuki.github.io","owner":{"login":"andy-hiroyuki","id":7948328,"avatar_url":"https://avatars.githubusercontent.com/u/7948328?v=3","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","html_url":"https://github.com/andy-hiroyuki","followers_url":"https://api.github.com/users/andy-hiroyuki/followers","following_url":"https://api.github.com/users/andy-hiroyuki/following{/other_user}","gists_url":"https://api.github.com/users/andy-hiroyuki/gists{/gist_id}","starred_url":"https://api.github.com/users/andy-hiroyuki/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andy-hiroyuki/subscriptions","organizations_url":"https://api.github.com/users/andy-hiroyuki/orgs","repos_url":"https://api.github.com/users/andy-hiroyuki/repos","events_url":"https://api.github.com/users/andy-hiroyuki/events{/privacy}","received_events_url":"https://api.github.com/users/andy-hiroyuki/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io","description":"","fork":false,"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io","forks_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/forks","keys_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/teams","hooks_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/hooks","issue_events_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/events","assignees_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/tags","blobs_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/languages","stargazers_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/stargazers","contributors_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/contributors","subscribers_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/subscribers","subscription_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/subscription","commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/merges","archive_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/downloads","issues_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/labels{/name}","releases_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/releases{/id}","created_at":"2014-06-21T05:52:31Z","updated_at":"2014-12-23T17:40:26Z","pushed_at":"2015-01-01T14:56:05Z","git_url":"git://github.com/andy-hiroyuki/andy-hiroyuki.github.io.git","ssh_url":"git@github.com:andy-hiroyuki/andy-hiroyuki.github.io.git","clone_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io.git","svn_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io","homepage":null,"size":16162,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":1,"mirror_url":null,"open_issues_count":1,"forks":1,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48"},"html":{"href":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/48"},"issue":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/48"},"comments":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/48/comments"},"review_comments":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48/comments"},"review_comment":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48/commits"},"statuses":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/a133ccb43da62f8b35640a3519e5a519669e1573"}},"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:04:08Z"} +,{"id":"2489652946","type":"PushEvent","actor":{"id":5569910,"login":"Appebyte","gravatar_id":"","url":"https://api.github.com/users/Appebyte","avatar_url":"https://avatars.githubusercontent.com/u/5569910?"},"repo":{"id":28678105,"name":"Appebyte/multi-control","url":"https://api.github.com/repos/Appebyte/multi-control"},"payload":{"push_id":536864860,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0df0516349748ee3f7442d2b00f62317c6eb7758","before":"0a3f7dded6251886a5be73254ccd38d4eed9ca6d","commits":[{"sha":"0df0516349748ee3f7442d2b00f62317c6eb7758","author":{"email":"8d5129c2409c98003da513279115ea60a4c21d3c@users.noreply.github.com","name":"Ahmed"},"message":"Update Command.java","distinct":true,"url":"https://api.github.com/repos/Appebyte/multi-control/commits/0df0516349748ee3f7442d2b00f62317c6eb7758"}]},"public":true,"created_at":"2015-01-01T15:04:08Z"} +,{"id":"2489652947","type":"CreateEvent","actor":{"id":1924410,"login":"hotmailckl","gravatar_id":"","url":"https://api.github.com/users/hotmailckl","avatar_url":"https://avatars.githubusercontent.com/u/1924410?"},"repo":{"id":10817431,"name":"hotmailckl/test","url":"https://api.github.com/repos/hotmailckl/test"},"payload":{"ref":"TEST-2","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:08Z"} +,{"id":"2489652948","type":"PushEvent","actor":{"id":76594,"login":"elemoine","gravatar_id":"","url":"https://api.github.com/users/elemoine","avatar_url":"https://avatars.githubusercontent.com/u/76594?"},"repo":{"id":20214698,"name":"elemoine/ngeo","url":"https://api.github.com/repos/elemoine/ngeo"},"payload":{"push_id":536864861,"size":1,"distinct_size":1,"ref":"refs/heads/layertree_watch","head":"2dd3937b290f177339bbef292743fcfdacb5b8a7","before":"ab49ea3598c21bb71e153a447847454571835515","commits":[{"sha":"2dd3937b290f177339bbef292743fcfdacb5b8a7","author":{"email":"44065822685ce90a8f0713234276624942dcc658@gmail.com","name":"Éric Lemoine"},"message":"Make map directive watch map expr","distinct":true,"url":"https://api.github.com/repos/elemoine/ngeo/commits/2dd3937b290f177339bbef292743fcfdacb5b8a7"}]},"public":true,"created_at":"2015-01-01T15:04:08Z"} +,{"id":"2489652949","type":"WatchEvent","actor":{"id":7065458,"login":"wpok","gravatar_id":"","url":"https://api.github.com/users/wpok","avatar_url":"https://avatars.githubusercontent.com/u/7065458?"},"repo":{"id":11133743,"name":"h5bp/Effeckt.css","url":"https://api.github.com/repos/h5bp/Effeckt.css"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:08Z","org":{"id":1136800,"login":"h5bp","gravatar_id":"","url":"https://api.github.com/orgs/h5bp","avatar_url":"https://avatars.githubusercontent.com/u/1136800?"}} +,{"id":"2489652950","type":"PushEvent","actor":{"id":9973025,"login":"hpraveen","gravatar_id":"","url":"https://api.github.com/users/hpraveen","avatar_url":"https://avatars.githubusercontent.com/u/9973025?"},"repo":{"id":27212560,"name":"hpraveen/OSWD","url":"https://api.github.com/repos/hpraveen/OSWD"},"payload":{"push_id":536864863,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f55f8c1884f7218f1e9d69517505d6db6b1360ae","before":"8a65df6940f61649b96529f381792b42186c6208","commits":[{"sha":"f55f8c1884f7218f1e9d69517505d6db6b1360ae","author":{"email":"52da7f86a46b435c9123f30308193766489b0d2c@gmail.com","name":"hpraveen"},"message":"Sample CSV file to test functions (LOG00350_2.csv)","distinct":true,"url":"https://api.github.com/repos/hpraveen/OSWD/commits/f55f8c1884f7218f1e9d69517505d6db6b1360ae"}]},"public":true,"created_at":"2015-01-01T15:04:08Z"} +,{"id":"2489652953","type":"PushEvent","actor":{"id":5608724,"login":"hjhhh3000","gravatar_id":"","url":"https://api.github.com/users/hjhhh3000","avatar_url":"https://avatars.githubusercontent.com/u/5608724?"},"repo":{"id":27982189,"name":"hjhhh3000/FirstBlood","url":"https://api.github.com/repos/hjhhh3000/FirstBlood"},"payload":{"push_id":536864866,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"dbc2e72ef55b80b6c28feeed7a2889567d0c3df2","before":"d6e6fade143d33d08f8e05388434724e9aaca3c8","commits":[{"sha":"dbc2e72ef55b80b6c28feeed7a2889567d0c3df2","author":{"email":"f6e38eace2fff1986ef619774e7c5e540546d34b@gmail.com","name":"hjhhh3000"},"message":"Origin Lexicon changed","distinct":true,"url":"https://api.github.com/repos/hjhhh3000/FirstBlood/commits/dbc2e72ef55b80b6c28feeed7a2889567d0c3df2"}]},"public":true,"created_at":"2015-01-01T15:04:08Z"} +,{"id":"2489652964","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":536864869,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"07ba7c86a0ef0d08c172077a45011e8c829acdb5","before":"12d8972d9f48393e00a962eef7904c5330dc8ea1","commits":[{"sha":"07ba7c86a0ef0d08c172077a45011e8c829acdb5","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"1.1.14","distinct":true,"url":"https://api.github.com/repos/hex7c0/logger-request-cli/commits/07ba7c86a0ef0d08c172077a45011e8c829acdb5"}]},"public":true,"created_at":"2015-01-01T15:04:09Z"} +,{"id":"2489652968","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":536864870,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6fbaf2f2ab764d082d2a636ae1012264cc6e268d","before":"b63e3e7a27830cafe46d3ba2b4b5f450367a8b91","commits":[{"sha":"6fbaf2f2ab764d082d2a636ae1012264cc6e268d","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420124647622\n\nuQEe7NCVtbsa4X5fjk7pRwYCJy/uRXw+imYMZ8PPVl4=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/6fbaf2f2ab764d082d2a636ae1012264cc6e268d"}]},"public":true,"created_at":"2015-01-01T15:04:09Z"} +,{"id":"2489652969","type":"WatchEvent","actor":{"id":319844,"login":"linkyndy","gravatar_id":"","url":"https://api.github.com/users/linkyndy","avatar_url":"https://avatars.githubusercontent.com/u/319844?"},"repo":{"id":7202484,"name":"steveklabnik/request_store","url":"https://api.github.com/repos/steveklabnik/request_store"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:09Z"} +,{"id":"2489652974","type":"WatchEvent","actor":{"id":1915554,"login":"Rudeg","gravatar_id":"","url":"https://api.github.com/users/Rudeg","avatar_url":"https://avatars.githubusercontent.com/u/1915554?"},"repo":{"id":3605299,"name":"baconjs/bacon.js","url":"https://api.github.com/repos/baconjs/bacon.js"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:10Z","org":{"id":5165264,"login":"baconjs","gravatar_id":"","url":"https://api.github.com/orgs/baconjs","avatar_url":"https://avatars.githubusercontent.com/u/5165264?"}} +,{"id":"2489652975","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327738,"name":"cloudify-cosmo/cloudify-openstack-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-openstack-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:10Z","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":"2489652976","type":"CreateEvent","actor":{"id":994018,"login":"weakboson","gravatar_id":"","url":"https://api.github.com/users/weakboson","avatar_url":"https://avatars.githubusercontent.com/u/994018?"},"repo":{"id":28688655,"name":"weakboson/sample_app_rails42","url":"https://api.github.com/repos/weakboson/sample_app_rails42"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:10Z"} +,{"id":"2489652978","type":"PushEvent","actor":{"id":3893707,"login":"skyhills13","gravatar_id":"","url":"https://api.github.com/users/skyhills13","avatar_url":"https://avatars.githubusercontent.com/u/3893707?"},"repo":{"id":23691347,"name":"skyhills13/PhotoMosaic","url":"https://api.github.com/repos/skyhills13/PhotoMosaic"},"payload":{"push_id":536864874,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"5315e15efdfb050aecbd590848ee1fae946d9e01","before":"5c9217933eac891c719117fa83ddad569568cddd","commits":[{"sha":"5315e15efdfb050aecbd590848ee1fae946d9e01","author":{"email":"8133434cd628e9190d4cd2d5a00228d5b2685fcf@gmail.com","name":"skyhills13"},"message":"#224 delegate renameAsUnique method of FileDataHandler to Photo","distinct":true,"url":"https://api.github.com/repos/skyhills13/PhotoMosaic/commits/5315e15efdfb050aecbd590848ee1fae946d9e01"}]},"public":true,"created_at":"2015-01-01T15:04:10Z"} +,{"id":"2489652987","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":536864876,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2b46c90ae6537603fc0591b4dbb92f9bb70a5535","before":"cfc67a964475a358a16e7c50dd44c0586043c74e","commits":[{"sha":"2b46c90ae6537603fc0591b4dbb92f9bb70a5535","author":{"email":"0ccf54d51d1a5240ad356feb30dfa4d1749f8844@gmail.com","name":"TraderCoderGambler"},"message":"auto-update balances","distinct":true,"url":"https://api.github.com/repos/chancecoin/chancecoinj/commits/2b46c90ae6537603fc0591b4dbb92f9bb70a5535"}]},"public":true,"created_at":"2015-01-01T15:04:12Z"} +,{"id":"2489652989","type":"PushEvent","actor":{"id":5953115,"login":"iranreyes","gravatar_id":"","url":"https://api.github.com/users/iranreyes","avatar_url":"https://avatars.githubusercontent.com/u/5953115?"},"repo":{"id":27998130,"name":"iranreyes/malihu-custom-scrollbar-plugin","url":"https://api.github.com/repos/iranreyes/malihu-custom-scrollbar-plugin"},"payload":{"push_id":536864877,"size":1,"distinct_size":1,"ref":"refs/heads/angularPlugin","head":"880fe128358543c42a497dc770b8e4aa3c860d1f","before":"0fd259fec856704a01515726825161aa5c0037df","commits":[{"sha":"880fe128358543c42a497dc770b8e4aa3c860d1f","author":{"email":"d8c908aa4242eb383a7b5d37c85354de83bfcd7d@gmail.com","name":"Iran Reyes Fleitas"},"message":"Extending the options of configuration","distinct":true,"url":"https://api.github.com/repos/iranreyes/malihu-custom-scrollbar-plugin/commits/880fe128358543c42a497dc770b8e4aa3c860d1f"}]},"public":true,"created_at":"2015-01-01T15:04:12Z"} +,{"id":"2489652992","type":"PushEvent","actor":{"id":3596538,"login":"westcripp","gravatar_id":"","url":"https://api.github.com/users/westcripp","avatar_url":"https://avatars.githubusercontent.com/u/3596538?"},"repo":{"id":17210708,"name":"ResurrectionRemix/Resurrection_packages_apps_Settings","url":"https://api.github.com/repos/ResurrectionRemix/Resurrection_packages_apps_Settings"},"payload":{"push_id":536864879,"size":1,"distinct_size":1,"ref":"refs/heads/lollipop","head":"089b03f48e627280ce8f9b17bdcdb4a6529dd544","before":"9a287aee515bc3fb94033253b77606d958a528e0","commits":[{"sha":"089b03f48e627280ce8f9b17bdcdb4a6529dd544","author":{"email":"8204deefaa3818a0ee439421fcb19bcaac2d56b7@gmail.com","name":"westcripp"},"message":"Revert \"Settings: Don't set root access as a default fallback option.\"\n\nThis reverts commit f2a512c7ced8633fb5207057a21627e13d360030.","distinct":true,"url":"https://api.github.com/repos/ResurrectionRemix/Resurrection_packages_apps_Settings/commits/089b03f48e627280ce8f9b17bdcdb4a6529dd544"}]},"public":true,"created_at":"2015-01-01T15:04:12Z","org":{"id":4931972,"login":"ResurrectionRemix","gravatar_id":"","url":"https://api.github.com/orgs/ResurrectionRemix","avatar_url":"https://avatars.githubusercontent.com/u/4931972?"}} +,{"id":"2489652993","type":"PushEvent","actor":{"id":7315383,"login":"jaromanda","gravatar_id":"","url":"https://api.github.com/users/jaromanda","avatar_url":"https://avatars.githubusercontent.com/u/7315383?"},"repo":{"id":28639232,"name":"jaromanda/RioCast","url":"https://api.github.com/repos/jaromanda/RioCast"},"payload":{"push_id":536864880,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9210dc0c7436eb018442f73759e5ee60c50c7797","before":"1d5b33dfa0270fcb0ab1b00416bb66f322938182","commits":[{"sha":"9210dc0c7436eb018442f73759e5ee60c50c7797","author":{"email":"f69c6761b81ce575e03c7dff5aa15a192de25113@gmail.com","name":"jaromanda"},"message":"Fixed node-webkit link","distinct":true,"url":"https://api.github.com/repos/jaromanda/RioCast/commits/9210dc0c7436eb018442f73759e5ee60c50c7797"}]},"public":true,"created_at":"2015-01-01T15:04:12Z"} +,{"id":"2489652994","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327738,"name":"cloudify-cosmo/cloudify-openstack-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-openstack-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify OpenStack Plugin","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:12Z","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":"2489652995","type":"CreateEvent","actor":{"id":1447152,"login":"yoheiMune","gravatar_id":"","url":"https://api.github.com/users/yoheiMune","avatar_url":"https://avatars.githubusercontent.com/u/1447152?"},"repo":{"id":28688676,"name":"yoheiMune/analytics-playground","url":"https://api.github.com/repos/yoheiMune/analytics-playground"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"analytics-playground","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:12Z"} +,{"id":"2489652996","type":"ForkEvent","actor":{"id":284013,"login":"torome","gravatar_id":"","url":"https://api.github.com/users/torome","avatar_url":"https://avatars.githubusercontent.com/u/284013?"},"repo":{"id":26730195,"name":"cachethq/Cachet","url":"https://api.github.com/repos/cachethq/Cachet"},"payload":{"forkee":{"id":28688677,"name":"Cachet","full_name":"torome/Cachet","owner":{"login":"torome","id":284013,"avatar_url":"https://avatars.githubusercontent.com/u/284013?v=3","gravatar_id":"","url":"https://api.github.com/users/torome","html_url":"https://github.com/torome","followers_url":"https://api.github.com/users/torome/followers","following_url":"https://api.github.com/users/torome/following{/other_user}","gists_url":"https://api.github.com/users/torome/gists{/gist_id}","starred_url":"https://api.github.com/users/torome/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/torome/subscriptions","organizations_url":"https://api.github.com/users/torome/orgs","repos_url":"https://api.github.com/users/torome/repos","events_url":"https://api.github.com/users/torome/events{/privacy}","received_events_url":"https://api.github.com/users/torome/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/torome/Cachet","description":"Cachet, the open source StatusPage.io alternative written in PHP","fork":true,"url":"https://api.github.com/repos/torome/Cachet","forks_url":"https://api.github.com/repos/torome/Cachet/forks","keys_url":"https://api.github.com/repos/torome/Cachet/keys{/key_id}","collaborators_url":"https://api.github.com/repos/torome/Cachet/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/torome/Cachet/teams","hooks_url":"https://api.github.com/repos/torome/Cachet/hooks","issue_events_url":"https://api.github.com/repos/torome/Cachet/issues/events{/number}","events_url":"https://api.github.com/repos/torome/Cachet/events","assignees_url":"https://api.github.com/repos/torome/Cachet/assignees{/user}","branches_url":"https://api.github.com/repos/torome/Cachet/branches{/branch}","tags_url":"https://api.github.com/repos/torome/Cachet/tags","blobs_url":"https://api.github.com/repos/torome/Cachet/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/torome/Cachet/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/torome/Cachet/git/refs{/sha}","trees_url":"https://api.github.com/repos/torome/Cachet/git/trees{/sha}","statuses_url":"https://api.github.com/repos/torome/Cachet/statuses/{sha}","languages_url":"https://api.github.com/repos/torome/Cachet/languages","stargazers_url":"https://api.github.com/repos/torome/Cachet/stargazers","contributors_url":"https://api.github.com/repos/torome/Cachet/contributors","subscribers_url":"https://api.github.com/repos/torome/Cachet/subscribers","subscription_url":"https://api.github.com/repos/torome/Cachet/subscription","commits_url":"https://api.github.com/repos/torome/Cachet/commits{/sha}","git_commits_url":"https://api.github.com/repos/torome/Cachet/git/commits{/sha}","comments_url":"https://api.github.com/repos/torome/Cachet/comments{/number}","issue_comment_url":"https://api.github.com/repos/torome/Cachet/issues/comments/{number}","contents_url":"https://api.github.com/repos/torome/Cachet/contents/{+path}","compare_url":"https://api.github.com/repos/torome/Cachet/compare/{base}...{head}","merges_url":"https://api.github.com/repos/torome/Cachet/merges","archive_url":"https://api.github.com/repos/torome/Cachet/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/torome/Cachet/downloads","issues_url":"https://api.github.com/repos/torome/Cachet/issues{/number}","pulls_url":"https://api.github.com/repos/torome/Cachet/pulls{/number}","milestones_url":"https://api.github.com/repos/torome/Cachet/milestones{/number}","notifications_url":"https://api.github.com/repos/torome/Cachet/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/torome/Cachet/labels{/name}","releases_url":"https://api.github.com/repos/torome/Cachet/releases{/id}","created_at":"2015-01-01T15:04:12Z","updated_at":"2015-01-01T14:55:06Z","pushed_at":"2015-01-01T14:50:06Z","git_url":"git://github.com/torome/Cachet.git","ssh_url":"git@github.com:torome/Cachet.git","clone_url":"https://github.com/torome/Cachet.git","svn_url":"https://github.com/torome/Cachet","homepage":"http://cachethq.io","size":6115,"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:04:12Z","org":{"id":9951502,"login":"cachethq","gravatar_id":"","url":"https://api.github.com/orgs/cachethq","avatar_url":"https://avatars.githubusercontent.com/u/9951502?"}} +,{"id":"2489653000","type":"PushEvent","actor":{"id":4703277,"login":"magic4u","gravatar_id":"","url":"https://api.github.com/users/magic4u","avatar_url":"https://avatars.githubusercontent.com/u/4703277?"},"repo":{"id":25163183,"name":"magic4u/ybutterfly","url":"https://api.github.com/repos/magic4u/ybutterfly"},"payload":{"push_id":536864883,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cca0aa8dc41e539f01ba10cf8f83d91671cd3351","before":"a1919a7d60667a7f8a0e3f7917796169cf244747","commits":[{"sha":"cca0aa8dc41e539f01ba10cf8f83d91671cd3351","author":{"email":"598032c2ba9d104103e86c0731e078519f9dd07e@sohu.com","name":"magic4u"},"message":"0.9","distinct":true,"url":"https://api.github.com/repos/magic4u/ybutterfly/commits/cca0aa8dc41e539f01ba10cf8f83d91671cd3351"}]},"public":true,"created_at":"2015-01-01T15:04:13Z"} +,{"id":"2489653009","type":"CreateEvent","actor":{"id":8950411,"login":"keren13","gravatar_id":"","url":"https://api.github.com/users/keren13","avatar_url":"https://avatars.githubusercontent.com/u/8950411?"},"repo":{"id":28688678,"name":"keren13/Java-Two-Dimensional-Arrays","url":"https://api.github.com/repos/keren13/Java-Two-Dimensional-Arrays"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Experimenting with two dimensional arrays by printing out its contents, computing its sums, and other functions.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:13Z"} +,{"id":"2489653010","type":"PushEvent","actor":{"id":485317,"login":"saurabh-hirani","gravatar_id":"","url":"https://api.github.com/users/saurabh-hirani","avatar_url":"https://avatars.githubusercontent.com/u/485317?"},"repo":{"id":28595832,"name":"saurabh-hirani/pyfunc","url":"https://api.github.com/repos/saurabh-hirani/pyfunc"},"payload":{"push_id":536864885,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"dad90c73b91a2a4081d30fd2a550cca45cc0983b","before":"4ed733eb0ef8c24b1d8347ec34904ab3c4af1367","commits":[{"sha":"dad90c73b91a2a4081d30fd2a550cca45cc0983b","author":{"email":"f1c2dc5afbb0ad44fd654daa949d1b851b7e0a32@bluejeansnet.com","name":"Saurabh Hirani"},"message":"updated readme with command outputs","distinct":true,"url":"https://api.github.com/repos/saurabh-hirani/pyfunc/commits/dad90c73b91a2a4081d30fd2a550cca45cc0983b"}]},"public":true,"created_at":"2015-01-01T15:04:13Z"} +,{"id":"2489653011","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":536864886,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3378b12357f5839faf1fb6f5c96d259320e2e359","before":"5ef4e8a239978cac60f0d3b57451fdab92639d6f","commits":[{"sha":"3378b12357f5839faf1fb6f5c96d259320e2e359","author":{"email":"be51eeb01ab0ddac52571dd736dd0fd5d13a6a37@gmail.com","name":"Gudakesh Ankur Vatsa"},"message":"Create StrPalindrome.java","distinct":true,"url":"https://api.github.com/repos/vatsaaa/mycodesnips/commits/3378b12357f5839faf1fb6f5c96d259320e2e359"}]},"public":true,"created_at":"2015-01-01T15:04:14Z"} +,{"id":"2489653012","type":"WatchEvent","actor":{"id":1143718,"login":"rawcreative","gravatar_id":"","url":"https://api.github.com/users/rawcreative","avatar_url":"https://avatars.githubusercontent.com/u/1143718?"},"repo":{"id":15992694,"name":"quasado/gravit","url":"https://api.github.com/repos/quasado/gravit"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:14Z"} +,{"id":"2489653014","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":19340336,"name":"cloudify-cosmo/cloudify-puppet-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-puppet-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:14Z","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":"2489653016","type":"CreateEvent","actor":{"id":9557325,"login":"St7ven","gravatar_id":"","url":"https://api.github.com/users/St7ven","avatar_url":"https://avatars.githubusercontent.com/u/9557325?"},"repo":{"id":28597134,"name":"St7ven/cleanflight","url":"https://api.github.com/repos/St7ven/cleanflight"},"payload":{"ref":"Neopixel_Ring","ref_type":"branch","master_branch":"master","description":"Clean-code version of the baseflight flight controller","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:15Z"} +,{"id":"2489653017","type":"IssuesEvent","actor":{"id":7826565,"login":"practicalswift","gravatar_id":"","url":"https://api.github.com/users/practicalswift","avatar_url":"https://avatars.githubusercontent.com/u/7826565?"},"repo":{"id":23238061,"name":"practicalswift/swift-compiler-crashes","url":"https://api.github.com/repos/practicalswift/swift-compiler-crashes"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/practicalswift/swift-compiler-crashes/issues/41","labels_url":"https://api.github.com/repos/practicalswift/swift-compiler-crashes/issues/41/labels{/name}","comments_url":"https://api.github.com/repos/practicalswift/swift-compiler-crashes/issues/41/comments","events_url":"https://api.github.com/repos/practicalswift/swift-compiler-crashes/issues/41/events","html_url":"https://github.com/practicalswift/swift-compiler-crashes/issues/41","id":52958893,"number":41,"title":"CONTRIBUTING.md proposes to use \"wrong\" binary","user":{"login":"juangamnik","id":2939856,"avatar_url":"https://avatars.githubusercontent.com/u/2939856?v=3","gravatar_id":"","url":"https://api.github.com/users/juangamnik","html_url":"https://github.com/juangamnik","followers_url":"https://api.github.com/users/juangamnik/followers","following_url":"https://api.github.com/users/juangamnik/following{/other_user}","gists_url":"https://api.github.com/users/juangamnik/gists{/gist_id}","starred_url":"https://api.github.com/users/juangamnik/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/juangamnik/subscriptions","organizations_url":"https://api.github.com/users/juangamnik/orgs","repos_url":"https://api.github.com/users/juangamnik/repos","events_url":"https://api.github.com/users/juangamnik/events{/privacy}","received_events_url":"https://api.github.com/users/juangamnik/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-12-27T15:00:44Z","updated_at":"2015-01-01T15:04:15Z","closed_at":"2015-01-01T15:04:14Z","body":"In the step-by-step guide says `xcrun swiftc` should be used, but shouldn't it better be `xcrun swift`?\r\n\r\n```bash\r\n$ xcrun swiftc crash.swift 2>&1 | egrep 'swift.*0x' | egrep -v '(PrintStackTrace|SignalHandler)' | head -1\r\n```\r\nvs.\r\n```bash\r\n$ xcrun swift crash.swift 2>&1 | egrep 'swift.*0x' | egrep -v '(PrintStackTrace|SignalHandler)' | head -1\r\n```\r\n"}},"public":true,"created_at":"2015-01-01T15:04:15Z"} +,{"id":"2489653022","type":"IssuesEvent","actor":{"id":1665772,"login":"ondrejsika","gravatar_id":"","url":"https://api.github.com/users/ondrejsika","avatar_url":"https://avatars.githubusercontent.com/u/1665772?"},"repo":{"id":28677966,"name":"phphost/phm","url":"https://api.github.com/repos/phphost/phm"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/phphost/phm/issues/1","labels_url":"https://api.github.com/repos/phphost/phm/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/phphost/phm/issues/1/comments","events_url":"https://api.github.com/repos/phphost/phm/issues/1/events","html_url":"https://github.com/phphost/phm/issues/1","id":53221411,"number":1,"title":"ftp support","user":{"login":"ondrejsika","id":1665772,"avatar_url":"https://avatars.githubusercontent.com/u/1665772?v=3","gravatar_id":"","url":"https://api.github.com/users/ondrejsika","html_url":"https://github.com/ondrejsika","followers_url":"https://api.github.com/users/ondrejsika/followers","following_url":"https://api.github.com/users/ondrejsika/following{/other_user}","gists_url":"https://api.github.com/users/ondrejsika/gists{/gist_id}","starred_url":"https://api.github.com/users/ondrejsika/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ondrejsika/subscriptions","organizations_url":"https://api.github.com/users/ondrejsika/orgs","repos_url":"https://api.github.com/users/ondrejsika/repos","events_url":"https://api.github.com/users/ondrejsika/events{/privacy}","received_events_url":"https://api.github.com/users/ondrejsika/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:04:15Z","updated_at":"2015-01-01T15:04:15Z","closed_at":null,"body":""}},"public":true,"created_at":"2015-01-01T15:04:15Z","org":{"id":5645680,"login":"phphost","gravatar_id":"","url":"https://api.github.com/orgs/phphost","avatar_url":"https://avatars.githubusercontent.com/u/5645680?"}} +,{"id":"2489653023","type":"IssueCommentEvent","actor":{"id":1020496,"login":"jorisvandenbossche","gravatar_id":"","url":"https://api.github.com/users/jorisvandenbossche","avatar_url":"https://avatars.githubusercontent.com/u/1020496?"},"repo":{"id":858127,"name":"pydata/pandas","url":"https://api.github.com/repos/pydata/pandas"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/pydata/pandas/issues/6581","labels_url":"https://api.github.com/repos/pydata/pandas/issues/6581/labels{/name}","comments_url":"https://api.github.com/repos/pydata/pandas/issues/6581/comments","events_url":"https://api.github.com/repos/pydata/pandas/issues/6581/events","html_url":"https://github.com/pydata/pandas/issues/6581","id":29065993,"number":6581,"title":"DEPR: remove code for deprecations from prior versions","user":{"login":"jsexauer","id":1630128,"avatar_url":"https://avatars.githubusercontent.com/u/1630128?v=3","gravatar_id":"","url":"https://api.github.com/users/jsexauer","html_url":"https://github.com/jsexauer","followers_url":"https://api.github.com/users/jsexauer/followers","following_url":"https://api.github.com/users/jsexauer/following{/other_user}","gists_url":"https://api.github.com/users/jsexauer/gists{/gist_id}","starred_url":"https://api.github.com/users/jsexauer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jsexauer/subscriptions","organizations_url":"https://api.github.com/users/jsexauer/orgs","repos_url":"https://api.github.com/users/jsexauer/repos","events_url":"https://api.github.com/users/jsexauer/events{/privacy}","received_events_url":"https://api.github.com/users/jsexauer/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/pydata/pandas/labels/Deprecate","name":"Deprecate","color":"5319e7"},{"url":"https://api.github.com/repos/pydata/pandas/labels/Note+To+Selves","name":"Note To Selves","color":"DDDDDD"}],"state":"open","locked":false,"assignee":null,"milestone":{"url":"https://api.github.com/repos/pydata/pandas/milestones/25","labels_url":"https://api.github.com/repos/pydata/pandas/milestones/25/labels","id":569113,"number":25,"title":"0.16.0","description":"after 0.15 of course!","creator":{"login":"jreback","id":953992,"avatar_url":"https://avatars.githubusercontent.com/u/953992?v=3","gravatar_id":"","url":"https://api.github.com/users/jreback","html_url":"https://github.com/jreback","followers_url":"https://api.github.com/users/jreback/followers","following_url":"https://api.github.com/users/jreback/following{/other_user}","gists_url":"https://api.github.com/users/jreback/gists{/gist_id}","starred_url":"https://api.github.com/users/jreback/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jreback/subscriptions","organizations_url":"https://api.github.com/users/jreback/orgs","repos_url":"https://api.github.com/users/jreback/repos","events_url":"https://api.github.com/users/jreback/events{/privacy}","received_events_url":"https://api.github.com/users/jreback/received_events","type":"User","site_admin":false},"open_issues":867,"closed_issues":118,"state":"open","created_at":"2014-02-14T03:31:22Z","updated_at":"2014-12-29T17:15:20Z","due_on":"2015-02-28T08:00:00Z","closed_at":null},"comments":24,"created_at":"2014-03-09T23:47:17Z","updated_at":"2015-01-01T15:04:15Z","closed_at":null,"body":"# For 0.15\r\n- [x] `DataFrame.delevel` already deprecated in 0.7\r\n\r\n# For 0.16\r\n- [ ] boxplot https://github.com/pydata/pandas/pull/7096\r\n - [ ] change default of `return_type` from None to `'axes'`\r\n - [ ] update return_type section in visualization.rst\r\n- [ ] #5505, DataFrame.pivot_table and crosstab were refactored to use the same arguments as pivot (index and columns) and FutureWarnings added for the old arguments. Per @jreback, in 0.16, these deprecated arguments should be removed and the docstring updated. This issue is submitted as a reminder to do so and should be tagged with a 0.156 milestone.\r\n- [ ] #6686, cols was deprecated in DataFrame.to_excel and to_csv (rows is not deprecated, don't touch it!)\r\n- [ ] #8140, remove `covert_dummies` from `core/reshape` entirely. Deprecated in favor of enhanced `get_dummies`. Deprecated as of 0.15\r\n- [ ] #8481, remove ``pandas.tools.util.py/value_range``\r\n\r\n# Future\r\n- [ ] #6680, cols was deprecated in DataFrame.to_duplicated and drop_duplicates\r\n- [ ] #5231 ``na_last`` arg from Series.sort\r\n- [ ] #4950 - ``rolling_corr_pairwise()``, ``expanding_corr_pairwise()`` replace by ``rolling_corr()``, ``expanding_corr()``\r\n- [ ] #2304 Deprecate broadcasting TimeSeries along DataFrame index\r\n- [ ] #6815/#6813 ``.freq`` in ``Timestamp`` rather than ``.offset`` (internally used)\r\n- [ ] #3787 Deprecate load and save in favor of pickle and to_pickle\r\n- [ ] #4853, #4864 Deprecate timeRule and offset in favor of freq () \r\n- [ ] Deprecate colSpace in favor of col_space (no issue, commit 4a5a677c) \r\n- [ ] #3822, #3817 Deprecate year/month parameters in finance option signatures\r\n- [ ] #4713 Remove kind from read_excel\r\n- [ ] #4770, #7032 Deprecate infer_types to have no effect\r\n- [ ] #4645 Deprecate table keyword in HDFStore\r\n- [ ] #4892 Float indexers in non-float indexes.\r\n- [ ] #6919 Remove ``copy`` keyword from ``xs``,``minor_xs``,``major_xs`` (4 places)\r\n- [ ] #6910 Change `Panel.shift`'s signature to match `generic.shift()`'s\r\n- [ ] #6930 factorize took an `order` argument but didn't do anything with it.\r\n- [ ] #7088 Deprecate percentile_width in favor of percentiles\r\n- [ ] remove `TimeSeries` alias\r\n- [ ] #8376 remove ``.levels`` from ``Categorical`` constructor / accessor\r\n- [ ] #8486 remove ``outtype`` in ``.to_dict()`` replaced by ``orient``\r\n- [ ] #8227 '+'/'-' for Index set ops\r\n"},"comment":{"url":"https://api.github.com/repos/pydata/pandas/issues/comments/68488565","html_url":"https://github.com/pydata/pandas/issues/6581#issuecomment-68488565","issue_url":"https://api.github.com/repos/pydata/pandas/issues/6581","id":68488565,"user":{"login":"jorisvandenbossche","id":1020496,"avatar_url":"https://avatars.githubusercontent.com/u/1020496?v=3","gravatar_id":"","url":"https://api.github.com/users/jorisvandenbossche","html_url":"https://github.com/jorisvandenbossche","followers_url":"https://api.github.com/users/jorisvandenbossche/followers","following_url":"https://api.github.com/users/jorisvandenbossche/following{/other_user}","gists_url":"https://api.github.com/users/jorisvandenbossche/gists{/gist_id}","starred_url":"https://api.github.com/users/jorisvandenbossche/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jorisvandenbossche/subscriptions","organizations_url":"https://api.github.com/users/jorisvandenbossche/orgs","repos_url":"https://api.github.com/users/jorisvandenbossche/repos","events_url":"https://api.github.com/users/jorisvandenbossche/events{/privacy}","received_events_url":"https://api.github.com/users/jorisvandenbossche/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:04:15Z","updated_at":"2015-01-01T15:04:15Z","body":"I think everything in the list is good to go."}},"public":true,"created_at":"2015-01-01T15:04:15Z","org":{"id":1284191,"login":"pydata","gravatar_id":"","url":"https://api.github.com/orgs/pydata","avatar_url":"https://avatars.githubusercontent.com/u/1284191?"}} +,{"id":"2489653025","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":536864891,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"45034b9593501122f3a08f028b4297a2691d2e92","before":"be239644a06f031e9e16ca02f6918cbc88bebde1","commits":[{"sha":"45034b9593501122f3a08f028b4297a2691d2e92","author":{"email":"798520c19e899fb2be364efde581283231d48b6f@126.com","name":"quhezheng"},"message":"update","distinct":true,"url":"https://api.github.com/repos/quhezheng/HomeIP/commits/45034b9593501122f3a08f028b4297a2691d2e92"}]},"public":true,"created_at":"2015-01-01T15:04:16Z"} +,{"id":"2489653034","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":19340336,"name":"cloudify-cosmo/cloudify-puppet-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-puppet-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify plugin for the puppet configuration system","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:18Z","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":"2489653038","type":"PushEvent","actor":{"id":40815,"login":"smarr","gravatar_id":"","url":"https://api.github.com/users/smarr","avatar_url":"https://avatars.githubusercontent.com/u/40815?"},"repo":{"id":13716174,"name":"SOM-st/SOMpp","url":"https://api.github.com/repos/SOM-st/SOMpp"},"payload":{"push_id":536864896,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"dace6179818eb4b8255c88b94b37c67cf375bb3c","before":"9770d4fa1d8d476f85bf71c90244c3234f60ef5e","commits":[{"sha":"9dc8b967fc5d67fbccc701c94e9ad16905ae19ae","author":{"email":"46f1a0bd5592a2f9244ca321b129902a06b53e03@stefan-marr.de","name":"Stefan Marr"},"message":"Removed pVMObject typedef\n\nSigned-off-by: Stefan Marr ","distinct":true,"url":"https://api.github.com/repos/SOM-st/SOMpp/commits/9dc8b967fc5d67fbccc701c94e9ad16905ae19ae"},{"sha":"dace6179818eb4b8255c88b94b37c67cf375bb3c","author":{"email":"46f1a0bd5592a2f9244ca321b129902a06b53e03@stefan-marr.de","name":"Stefan Marr"},"message":"Removed pVMAbstract typedef\n\nSigned-off-by: Stefan Marr ","distinct":true,"url":"https://api.github.com/repos/SOM-st/SOMpp/commits/dace6179818eb4b8255c88b94b37c67cf375bb3c"}]},"public":true,"created_at":"2015-01-01T15:04:18Z","org":{"id":5729455,"login":"SOM-st","gravatar_id":"","url":"https://api.github.com/orgs/SOM-st","avatar_url":"https://avatars.githubusercontent.com/u/5729455?"}} +,{"id":"2489653039","type":"PushEvent","actor":{"id":10125047,"login":"zhou---jing","gravatar_id":"","url":"https://api.github.com/users/zhou---jing","avatar_url":"https://avatars.githubusercontent.com/u/10125047?"},"repo":{"id":28687566,"name":"zhou---jing/zhou---jing.github.com","url":"https://api.github.com/repos/zhou---jing/zhou---jing.github.com"},"payload":{"push_id":536864897,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"55ea25948edab58b175f6dc0b04c901c1fcec9a9","before":"095e3b074e952ec00c9f2637db0d94f05605ae08","commits":[{"sha":"76dd17b375d7cf97cf17eea4884257c708db44d0","author":{"email":"11937e34b780e46bd05ddaa6c291c24c319199e8@hotmail.com","name":"zhoujing"},"message":"First commit","distinct":true,"url":"https://api.github.com/repos/zhou---jing/zhou---jing.github.com/commits/76dd17b375d7cf97cf17eea4884257c708db44d0"},{"sha":"55ea25948edab58b175f6dc0b04c901c1fcec9a9","author":{"email":"11937e34b780e46bd05ddaa6c291c24c319199e8@hotmail.com","name":"zhoujing"},"message":"Site updated: 2015-01-01 23:06:50","distinct":true,"url":"https://api.github.com/repos/zhou---jing/zhou---jing.github.com/commits/55ea25948edab58b175f6dc0b04c901c1fcec9a9"}]},"public":true,"created_at":"2015-01-01T15:04:18Z"} +,{"id":"2489653045","type":"PushEvent","actor":{"id":9912146,"login":"kensyo","gravatar_id":"","url":"https://api.github.com/users/kensyo","avatar_url":"https://avatars.githubusercontent.com/u/9912146?"},"repo":{"id":27037214,"name":"kensyo/dotfiles","url":"https://api.github.com/repos/kensyo/dotfiles"},"payload":{"push_id":536864900,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a56bd4cc3c67646c7368b0158423ef40a831c156","before":"168d069c403ce8a200b098ac9a4398a8c4c8cb60","commits":[{"sha":"a56bd4cc3c67646c7368b0158423ef40a831c156","author":{"email":"7f3d11e1144db096a20e1022e1d99c40693637e5@gmail.com","name":"kensyo"},"message":" .vimrcの(fcitxに関する)ttimeoutlenを100にした。","distinct":true,"url":"https://api.github.com/repos/kensyo/dotfiles/commits/a56bd4cc3c67646c7368b0158423ef40a831c156"}]},"public":true,"created_at":"2015-01-01T15:04:19Z"} +,{"id":"2489653046","type":"PushEvent","actor":{"id":4074405,"login":"Praveen-Innocent","gravatar_id":"","url":"https://api.github.com/users/Praveen-Innocent","avatar_url":"https://avatars.githubusercontent.com/u/4074405?"},"repo":{"id":28687669,"name":"Praveen-Innocent/QuickSilver","url":"https://api.github.com/repos/Praveen-Innocent/QuickSilver"},"payload":{"push_id":536864901,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7e10a550e24c58d7bdfb2725be60a87fe0cc6318","before":"01a3da267b3a283b7d030be32bce14d51011b1df","commits":[{"sha":"7e10a550e24c58d7bdfb2725be60a87fe0cc6318","author":{"email":"4d3bb2edfe8f959f0752502189d0e58641043f73@gmail.com","name":"PC"},"message":"creating engine and abstract mvc classes","distinct":true,"url":"https://api.github.com/repos/Praveen-Innocent/QuickSilver/commits/7e10a550e24c58d7bdfb2725be60a87fe0cc6318"}]},"public":true,"created_at":"2015-01-01T15:04:19Z"} +,{"id":"2489653047","type":"WatchEvent","actor":{"id":3116673,"login":"parkjh","gravatar_id":"","url":"https://api.github.com/users/parkjh","avatar_url":"https://avatars.githubusercontent.com/u/3116673?"},"repo":{"id":3920453,"name":"mhartl/rails_tutorial_sublime_text","url":"https://api.github.com/repos/mhartl/rails_tutorial_sublime_text"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:19Z"} +,{"id":"2489653049","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327786,"name":"cloudify-cosmo/cloudify-hello-world-example","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-hello-world-example"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:19Z","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":"2489653051","type":"ForkEvent","actor":{"id":5127927,"login":"doronk","gravatar_id":"","url":"https://api.github.com/users/doronk","avatar_url":"https://avatars.githubusercontent.com/u/5127927?"},"repo":{"id":14712600,"name":"Grishu/MYDroid","url":"https://api.github.com/repos/Grishu/MYDroid"},"payload":{"forkee":{"id":28688679,"name":"MYDroid","full_name":"doronk/MYDroid","owner":{"login":"doronk","id":5127927,"avatar_url":"https://avatars.githubusercontent.com/u/5127927?v=3","gravatar_id":"","url":"https://api.github.com/users/doronk","html_url":"https://github.com/doronk","followers_url":"https://api.github.com/users/doronk/followers","following_url":"https://api.github.com/users/doronk/following{/other_user}","gists_url":"https://api.github.com/users/doronk/gists{/gist_id}","starred_url":"https://api.github.com/users/doronk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/doronk/subscriptions","organizations_url":"https://api.github.com/users/doronk/orgs","repos_url":"https://api.github.com/users/doronk/repos","events_url":"https://api.github.com/users/doronk/events{/privacy}","received_events_url":"https://api.github.com/users/doronk/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/doronk/MYDroid","description":"","fork":true,"url":"https://api.github.com/repos/doronk/MYDroid","forks_url":"https://api.github.com/repos/doronk/MYDroid/forks","keys_url":"https://api.github.com/repos/doronk/MYDroid/keys{/key_id}","collaborators_url":"https://api.github.com/repos/doronk/MYDroid/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/doronk/MYDroid/teams","hooks_url":"https://api.github.com/repos/doronk/MYDroid/hooks","issue_events_url":"https://api.github.com/repos/doronk/MYDroid/issues/events{/number}","events_url":"https://api.github.com/repos/doronk/MYDroid/events","assignees_url":"https://api.github.com/repos/doronk/MYDroid/assignees{/user}","branches_url":"https://api.github.com/repos/doronk/MYDroid/branches{/branch}","tags_url":"https://api.github.com/repos/doronk/MYDroid/tags","blobs_url":"https://api.github.com/repos/doronk/MYDroid/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/doronk/MYDroid/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/doronk/MYDroid/git/refs{/sha}","trees_url":"https://api.github.com/repos/doronk/MYDroid/git/trees{/sha}","statuses_url":"https://api.github.com/repos/doronk/MYDroid/statuses/{sha}","languages_url":"https://api.github.com/repos/doronk/MYDroid/languages","stargazers_url":"https://api.github.com/repos/doronk/MYDroid/stargazers","contributors_url":"https://api.github.com/repos/doronk/MYDroid/contributors","subscribers_url":"https://api.github.com/repos/doronk/MYDroid/subscribers","subscription_url":"https://api.github.com/repos/doronk/MYDroid/subscription","commits_url":"https://api.github.com/repos/doronk/MYDroid/commits{/sha}","git_commits_url":"https://api.github.com/repos/doronk/MYDroid/git/commits{/sha}","comments_url":"https://api.github.com/repos/doronk/MYDroid/comments{/number}","issue_comment_url":"https://api.github.com/repos/doronk/MYDroid/issues/comments/{number}","contents_url":"https://api.github.com/repos/doronk/MYDroid/contents/{+path}","compare_url":"https://api.github.com/repos/doronk/MYDroid/compare/{base}...{head}","merges_url":"https://api.github.com/repos/doronk/MYDroid/merges","archive_url":"https://api.github.com/repos/doronk/MYDroid/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/doronk/MYDroid/downloads","issues_url":"https://api.github.com/repos/doronk/MYDroid/issues{/number}","pulls_url":"https://api.github.com/repos/doronk/MYDroid/pulls{/number}","milestones_url":"https://api.github.com/repos/doronk/MYDroid/milestones{/number}","notifications_url":"https://api.github.com/repos/doronk/MYDroid/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/doronk/MYDroid/labels{/name}","releases_url":"https://api.github.com/repos/doronk/MYDroid/releases{/id}","created_at":"2015-01-01T15:04:20Z","updated_at":"2014-11-19T03:49:42Z","pushed_at":"2014-04-07T09:30:26Z","git_url":"git://github.com/doronk/MYDroid.git","ssh_url":"git@github.com:doronk/MYDroid.git","clone_url":"https://github.com/doronk/MYDroid.git","svn_url":"https://github.com/doronk/MYDroid","homepage":null,"size":836,"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:04:20Z"} +,{"id":"2489653057","type":"PullRequestEvent","actor":{"id":493276,"login":"k-okada","gravatar_id":"","url":"https://api.github.com/users/k-okada","avatar_url":"https://avatars.githubusercontent.com/u/493276?"},"repo":{"id":10344201,"name":"ros-simulation/gazebo_ros_pkgs","url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs"},"payload":{"action":"opened","number":287,"pull_request":{"url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/287","id":26743798,"html_url":"https://github.com/ros-simulation/gazebo_ros_pkgs/pull/287","diff_url":"https://github.com/ros-simulation/gazebo_ros_pkgs/pull/287.diff","patch_url":"https://github.com/ros-simulation/gazebo_ros_pkgs/pull/287.patch","issue_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/287","number":287,"state":"open","locked":false,"title":"add option to change package:// to model:// when loading urdf file","user":{"login":"k-okada","id":493276,"avatar_url":"https://avatars.githubusercontent.com/u/493276?v=3","gravatar_id":"","url":"https://api.github.com/users/k-okada","html_url":"https://github.com/k-okada","followers_url":"https://api.github.com/users/k-okada/followers","following_url":"https://api.github.com/users/k-okada/following{/other_user}","gists_url":"https://api.github.com/users/k-okada/gists{/gist_id}","starred_url":"https://api.github.com/users/k-okada/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k-okada/subscriptions","organizations_url":"https://api.github.com/users/k-okada/orgs","repos_url":"https://api.github.com/users/k-okada/repos","events_url":"https://api.github.com/users/k-okada/events{/privacy}","received_events_url":"https://api.github.com/users/k-okada/received_events","type":"User","site_admin":false},"body":"this feature is required if we want to use gzweb, but ofcourse you have to set GAZEBO_MODEL_PATH correctly","created_at":"2015-01-01T15:04:20Z","updated_at":"2015-01-01T15:04:20Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/287/commits","review_comments_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/287/comments","review_comment_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/comments/{number}","comments_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/287/comments","statuses_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/statuses/5f82ee0428994b7f52d63285a672774be29f0b9e","head":{"label":"k-okada:add_package_to_model","ref":"add_package_to_model","sha":"5f82ee0428994b7f52d63285a672774be29f0b9e","user":{"login":"k-okada","id":493276,"avatar_url":"https://avatars.githubusercontent.com/u/493276?v=3","gravatar_id":"","url":"https://api.github.com/users/k-okada","html_url":"https://github.com/k-okada","followers_url":"https://api.github.com/users/k-okada/followers","following_url":"https://api.github.com/users/k-okada/following{/other_user}","gists_url":"https://api.github.com/users/k-okada/gists{/gist_id}","starred_url":"https://api.github.com/users/k-okada/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k-okada/subscriptions","organizations_url":"https://api.github.com/users/k-okada/orgs","repos_url":"https://api.github.com/users/k-okada/repos","events_url":"https://api.github.com/users/k-okada/events{/privacy}","received_events_url":"https://api.github.com/users/k-okada/received_events","type":"User","site_admin":false},"repo":{"id":27212864,"name":"gazebo_ros_pkgs","full_name":"k-okada/gazebo_ros_pkgs","owner":{"login":"k-okada","id":493276,"avatar_url":"https://avatars.githubusercontent.com/u/493276?v=3","gravatar_id":"","url":"https://api.github.com/users/k-okada","html_url":"https://github.com/k-okada","followers_url":"https://api.github.com/users/k-okada/followers","following_url":"https://api.github.com/users/k-okada/following{/other_user}","gists_url":"https://api.github.com/users/k-okada/gists{/gist_id}","starred_url":"https://api.github.com/users/k-okada/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k-okada/subscriptions","organizations_url":"https://api.github.com/users/k-okada/orgs","repos_url":"https://api.github.com/users/k-okada/repos","events_url":"https://api.github.com/users/k-okada/events{/privacy}","received_events_url":"https://api.github.com/users/k-okada/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k-okada/gazebo_ros_pkgs","description":"Wrappers, tools and additional API's for using ROS with Gazebo. Formally simulator_gazebo stack","fork":true,"url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs","forks_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/forks","keys_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/teams","hooks_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/hooks","issue_events_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/issues/events{/number}","events_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/events","assignees_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/assignees{/user}","branches_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/branches{/branch}","tags_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/tags","blobs_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/git/refs{/sha}","trees_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/statuses/{sha}","languages_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/languages","stargazers_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/stargazers","contributors_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/contributors","subscribers_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/subscribers","subscription_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/subscription","commits_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/commits{/sha}","git_commits_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/git/commits{/sha}","comments_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/comments{/number}","issue_comment_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/issues/comments/{number}","contents_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/contents/{+path}","compare_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/merges","archive_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/downloads","issues_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/issues{/number}","pulls_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/pulls{/number}","milestones_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/milestones{/number}","notifications_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/labels{/name}","releases_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/releases{/id}","created_at":"2014-11-27T06:51:53Z","updated_at":"2014-11-27T06:51:54Z","pushed_at":"2015-01-01T15:03:20Z","git_url":"git://github.com/k-okada/gazebo_ros_pkgs.git","ssh_url":"git@github.com:k-okada/gazebo_ros_pkgs.git","clone_url":"https://github.com/k-okada/gazebo_ros_pkgs.git","svn_url":"https://github.com/k-okada/gazebo_ros_pkgs","homepage":"www.ros.org/wiki/gazebo_ros_pkgs","size":3075,"stargazers_count":0,"watchers_count":0,"language":"C++","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":"hydro-devel"}},"base":{"label":"ros-simulation:hydro-devel","ref":"hydro-devel","sha":"d8471f25c0323670be994a4c554903ff06df0bd7","user":{"login":"ros-simulation","id":2349888,"avatar_url":"https://avatars.githubusercontent.com/u/2349888?v=3","gravatar_id":"","url":"https://api.github.com/users/ros-simulation","html_url":"https://github.com/ros-simulation","followers_url":"https://api.github.com/users/ros-simulation/followers","following_url":"https://api.github.com/users/ros-simulation/following{/other_user}","gists_url":"https://api.github.com/users/ros-simulation/gists{/gist_id}","starred_url":"https://api.github.com/users/ros-simulation/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ros-simulation/subscriptions","organizations_url":"https://api.github.com/users/ros-simulation/orgs","repos_url":"https://api.github.com/users/ros-simulation/repos","events_url":"https://api.github.com/users/ros-simulation/events{/privacy}","received_events_url":"https://api.github.com/users/ros-simulation/received_events","type":"Organization","site_admin":false},"repo":{"id":10344201,"name":"gazebo_ros_pkgs","full_name":"ros-simulation/gazebo_ros_pkgs","owner":{"login":"ros-simulation","id":2349888,"avatar_url":"https://avatars.githubusercontent.com/u/2349888?v=3","gravatar_id":"","url":"https://api.github.com/users/ros-simulation","html_url":"https://github.com/ros-simulation","followers_url":"https://api.github.com/users/ros-simulation/followers","following_url":"https://api.github.com/users/ros-simulation/following{/other_user}","gists_url":"https://api.github.com/users/ros-simulation/gists{/gist_id}","starred_url":"https://api.github.com/users/ros-simulation/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ros-simulation/subscriptions","organizations_url":"https://api.github.com/users/ros-simulation/orgs","repos_url":"https://api.github.com/users/ros-simulation/repos","events_url":"https://api.github.com/users/ros-simulation/events{/privacy}","received_events_url":"https://api.github.com/users/ros-simulation/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/ros-simulation/gazebo_ros_pkgs","description":"Wrappers, tools and additional API's for using ROS with Gazebo. Formally simulator_gazebo stack","fork":false,"url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs","forks_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/forks","keys_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/teams","hooks_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/hooks","issue_events_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/events{/number}","events_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/events","assignees_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/assignees{/user}","branches_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/branches{/branch}","tags_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/tags","blobs_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/git/refs{/sha}","trees_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/statuses/{sha}","languages_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/languages","stargazers_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/stargazers","contributors_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/contributors","subscribers_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/subscribers","subscription_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/subscription","commits_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/commits{/sha}","git_commits_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/git/commits{/sha}","comments_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/comments{/number}","issue_comment_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/comments/{number}","contents_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/contents/{+path}","compare_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/merges","archive_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/downloads","issues_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues{/number}","pulls_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls{/number}","milestones_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/milestones{/number}","notifications_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/labels{/name}","releases_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/releases{/id}","created_at":"2013-05-28T19:59:20Z","updated_at":"2014-12-15T13:51:55Z","pushed_at":"2014-12-16T21:29:55Z","git_url":"git://github.com/ros-simulation/gazebo_ros_pkgs.git","ssh_url":"git@github.com:ros-simulation/gazebo_ros_pkgs.git","clone_url":"https://github.com/ros-simulation/gazebo_ros_pkgs.git","svn_url":"https://github.com/ros-simulation/gazebo_ros_pkgs","homepage":"www.ros.org/wiki/gazebo_ros_pkgs","size":5148,"stargazers_count":21,"watchers_count":21,"language":"C++","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":73,"mirror_url":null,"open_issues_count":62,"forks":73,"open_issues":62,"watchers":21,"default_branch":"hydro-devel"}},"_links":{"self":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/287"},"html":{"href":"https://github.com/ros-simulation/gazebo_ros_pkgs/pull/287"},"issue":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/287"},"comments":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/287/comments"},"review_comments":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/287/comments"},"review_comment":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/287/commits"},"statuses":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/statuses/5f82ee0428994b7f52d63285a672774be29f0b9e"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":92,"additions":1573,"deletions":700,"changed_files":44}},"public":true,"created_at":"2015-01-01T15:04:21Z","org":{"id":2349888,"login":"ros-simulation","gravatar_id":"","url":"https://api.github.com/orgs/ros-simulation","avatar_url":"https://avatars.githubusercontent.com/u/2349888?"}} +,{"id":"2489653060","type":"PullRequestEvent","actor":{"id":3148102,"login":"syon","gravatar_id":"","url":"https://api.github.com/users/syon","avatar_url":"https://avatars.githubusercontent.com/u/3148102?"},"repo":{"id":21061553,"name":"andy-hiroyuki/andy-hiroyuki.github.io","url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io"},"payload":{"action":"opened","number":49,"pull_request":{"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49","id":26743799,"html_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/49","diff_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/49.diff","patch_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/49.patch","issue_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/49","number":49,"state":"open","locked":false,"title":"middleman build","user":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:04:21Z","updated_at":"2015-01-01T15:04:21Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49/commits","review_comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49/comments","review_comment_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/comments/{number}","comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/49/comments","statuses_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/8363b1bc893a653daaf6fef0fee79580d3a9d937","head":{"label":"syon:master","ref":"master","sha":"8363b1bc893a653daaf6fef0fee79580d3a9d937","user":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"repo":{"id":21061659,"name":"andy-hiroyuki.github.io","full_name":"syon/andy-hiroyuki.github.io","owner":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/syon/andy-hiroyuki.github.io","description":"","fork":true,"url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io","forks_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/forks","keys_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/teams","hooks_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/hooks","issue_events_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/events","assignees_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/tags","blobs_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/languages","stargazers_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/stargazers","contributors_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/contributors","subscribers_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/subscribers","subscription_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/subscription","commits_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/merges","archive_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/downloads","issues_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/labels{/name}","releases_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/releases{/id}","created_at":"2014-06-21T06:00:23Z","updated_at":"2014-12-23T17:37:01Z","pushed_at":"2015-01-01T15:03:46Z","git_url":"git://github.com/syon/andy-hiroyuki.github.io.git","ssh_url":"git@github.com:syon/andy-hiroyuki.github.io.git","clone_url":"https://github.com/syon/andy-hiroyuki.github.io.git","svn_url":"https://github.com/syon/andy-hiroyuki.github.io","homepage":null,"size":16189,"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":"andy-hiroyuki:master","ref":"master","sha":"a5a3782480c4ecfc08c105cb88dfcd8841df1783","user":{"login":"andy-hiroyuki","id":7948328,"avatar_url":"https://avatars.githubusercontent.com/u/7948328?v=3","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","html_url":"https://github.com/andy-hiroyuki","followers_url":"https://api.github.com/users/andy-hiroyuki/followers","following_url":"https://api.github.com/users/andy-hiroyuki/following{/other_user}","gists_url":"https://api.github.com/users/andy-hiroyuki/gists{/gist_id}","starred_url":"https://api.github.com/users/andy-hiroyuki/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andy-hiroyuki/subscriptions","organizations_url":"https://api.github.com/users/andy-hiroyuki/orgs","repos_url":"https://api.github.com/users/andy-hiroyuki/repos","events_url":"https://api.github.com/users/andy-hiroyuki/events{/privacy}","received_events_url":"https://api.github.com/users/andy-hiroyuki/received_events","type":"User","site_admin":false},"repo":{"id":21061553,"name":"andy-hiroyuki.github.io","full_name":"andy-hiroyuki/andy-hiroyuki.github.io","owner":{"login":"andy-hiroyuki","id":7948328,"avatar_url":"https://avatars.githubusercontent.com/u/7948328?v=3","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","html_url":"https://github.com/andy-hiroyuki","followers_url":"https://api.github.com/users/andy-hiroyuki/followers","following_url":"https://api.github.com/users/andy-hiroyuki/following{/other_user}","gists_url":"https://api.github.com/users/andy-hiroyuki/gists{/gist_id}","starred_url":"https://api.github.com/users/andy-hiroyuki/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andy-hiroyuki/subscriptions","organizations_url":"https://api.github.com/users/andy-hiroyuki/orgs","repos_url":"https://api.github.com/users/andy-hiroyuki/repos","events_url":"https://api.github.com/users/andy-hiroyuki/events{/privacy}","received_events_url":"https://api.github.com/users/andy-hiroyuki/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io","description":"","fork":false,"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io","forks_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/forks","keys_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/teams","hooks_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/hooks","issue_events_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/events","assignees_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/tags","blobs_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/languages","stargazers_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/stargazers","contributors_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/contributors","subscribers_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/subscribers","subscription_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/subscription","commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/merges","archive_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/downloads","issues_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/labels{/name}","releases_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/releases{/id}","created_at":"2014-06-21T05:52:31Z","updated_at":"2014-12-23T17:40:26Z","pushed_at":"2015-01-01T14:56:05Z","git_url":"git://github.com/andy-hiroyuki/andy-hiroyuki.github.io.git","ssh_url":"git@github.com:andy-hiroyuki/andy-hiroyuki.github.io.git","clone_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io.git","svn_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io","homepage":null,"size":16162,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":1,"mirror_url":null,"open_issues_count":2,"forks":1,"open_issues":2,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49"},"html":{"href":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/49"},"issue":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/49"},"comments":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/49/comments"},"review_comments":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49/comments"},"review_comment":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49/commits"},"statuses":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/8363b1bc893a653daaf6fef0fee79580d3a9d937"}},"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:04:21Z"} +,{"id":"2489653063","type":"CreateEvent","actor":{"id":3233228,"login":"LureBreaker","gravatar_id":"","url":"https://api.github.com/users/LureBreaker","avatar_url":"https://avatars.githubusercontent.com/u/3233228?"},"repo":{"id":28688680,"name":"LureBreaker/django-tutorial","url":"https://api.github.com/repos/LureBreaker/django-tutorial"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"django tutorial","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:21Z"} +,{"id":"2489653068","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327786,"name":"cloudify-cosmo/cloudify-hello-world-example","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-hello-world-example"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify Examples","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:22Z","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":"2489653070","type":"CreateEvent","actor":{"id":1259250,"login":"muniere","gravatar_id":"","url":"https://api.github.com/users/muniere","avatar_url":"https://avatars.githubusercontent.com/u/1259250?"},"repo":{"id":28688681,"name":"muniere/hipchat-history","url":"https://api.github.com/repos/muniere/hipchat-history"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Collect hipchat history in specific rooms","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:23Z"} +,{"id":"2489653075","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":536864908,"size":1,"distinct_size":1,"ref":"refs/heads/wip","head":"1c5683c55ae4d6219bb0a09e9cc8a24577ac6647","before":"af42b5406caa200abca594cb5483f5b6ff703c34","commits":[{"sha":"1c5683c55ae4d6219bb0a09e9cc8a24577ac6647","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"piwi"},"message":"uniformization of the 'wip' branch vs. 'master'","distinct":true,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/1c5683c55ae4d6219bb0a09e9cc8a24577ac6647"}]},"public":true,"created_at":"2015-01-01T15:04:23Z","org":{"id":3798221,"login":"atelierspierrot","gravatar_id":"","url":"https://api.github.com/orgs/atelierspierrot","avatar_url":"https://avatars.githubusercontent.com/u/3798221?"}} +,{"id":"2489653076","type":"PushEvent","actor":{"id":1429281,"login":"andrewcooke","gravatar_id":"","url":"https://api.github.com/users/andrewcooke","avatar_url":"https://avatars.githubusercontent.com/u/1429281?"},"repo":{"id":23759903,"name":"andrewcooke/GAIIR.jl","url":"https://api.github.com/repos/andrewcooke/GAIIR.jl"},"payload":{"push_id":536864909,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"25491e73247d8d634c56b5a27ba2fb09bb498660","before":"48d8926ee49c550432b6c9bcf780b1778fbb00fc","commits":[{"sha":"25491e73247d8d634c56b5a27ba2fb09bb498660","author":{"email":"02e0a999c50b1f88df7a8f5a04e1b76b35ea6a88@acooke.org","name":"andrew cooke"},"message":"dead project; old files","distinct":true,"url":"https://api.github.com/repos/andrewcooke/GAIIR.jl/commits/25491e73247d8d634c56b5a27ba2fb09bb498660"}]},"public":true,"created_at":"2015-01-01T15:04:23Z"} +,{"id":"2489653077","type":"PushEvent","actor":{"id":193115,"login":"haf","gravatar_id":"","url":"https://api.github.com/users/haf","avatar_url":"https://avatars.githubusercontent.com/u/193115?"},"repo":{"id":28634585,"name":"SuaveIO/Fuchu","url":"https://api.github.com/repos/SuaveIO/Fuchu"},"payload":{"push_id":536864910,"size":5,"distinct_size":4,"ref":"refs/heads/master","head":"8a6bc245bec7f40ebc6050fea4e68f5bfc22c743","before":"b0cc3b9b1e782dd6ded2c67432a2ebd86f6ec4a5","commits":[{"sha":"1570ed317c0600f3eacd9828f7530afc5f368e29","author":{"email":"a076b11c2cc63ccdc903dbe182e1eecc3cbbc094@haf.se","name":"Henrik Feldt"},"message":"wip - @ademar - can you assist? I have to rest a bit...","distinct":false,"url":"https://api.github.com/repos/SuaveIO/Fuchu/commits/1570ed317c0600f3eacd9828f7530afc5f368e29"},{"sha":"3f4eb8c59507c4d286b122d7b59d1fae3ffdb6fb","author":{"email":"a076b11c2cc63ccdc903dbe182e1eecc3cbbc094@haf.se","name":"Henrik Feldt"},"message":"v4.5, fix apis, compiles again","distinct":true,"url":"https://api.github.com/repos/SuaveIO/Fuchu/commits/3f4eb8c59507c4d286b122d7b59d1fae3ffdb6fb"},{"sha":"b72b27d977d6c2f58298974231d3e11918e2ce0f","author":{"email":"a076b11c2cc63ccdc903dbe182e1eecc3cbbc094@haf.se","name":"Henrik Feldt"},"message":"Merge branch 'feature/upgrade-libs'","distinct":true,"url":"https://api.github.com/repos/SuaveIO/Fuchu/commits/b72b27d977d6c2f58298974231d3e11918e2ce0f"},{"sha":"6aa36c601d86e64821b5082bb23c0d50fed40341","author":{"email":"a076b11c2cc63ccdc903dbe182e1eecc3cbbc094@haf.se","name":"Henrik Feldt"},"message":"bumping minor, breaking api changes","distinct":true,"url":"https://api.github.com/repos/SuaveIO/Fuchu/commits/6aa36c601d86e64821b5082bb23c0d50fed40341"},{"sha":"8a6bc245bec7f40ebc6050fea4e68f5bfc22c743","author":{"email":"a076b11c2cc63ccdc903dbe182e1eecc3cbbc094@haf.se","name":"Henrik Feldt"},"message":"rake runs unit tests, fsharp.core nuget dependency","distinct":true,"url":"https://api.github.com/repos/SuaveIO/Fuchu/commits/8a6bc245bec7f40ebc6050fea4e68f5bfc22c743"}]},"public":true,"created_at":"2015-01-01T15:04:23Z","org":{"id":5822862,"login":"SuaveIO","gravatar_id":"","url":"https://api.github.com/orgs/SuaveIO","avatar_url":"https://avatars.githubusercontent.com/u/5822862?"}} +,{"id":"2489653078","type":"PushEvent","actor":{"id":1382891,"login":"opachesa","gravatar_id":"","url":"https://api.github.com/users/opachesa","avatar_url":"https://avatars.githubusercontent.com/u/1382891?"},"repo":{"id":26723066,"name":"opachesa/proyecto-uno","url":"https://api.github.com/repos/opachesa/proyecto-uno"},"payload":{"push_id":536864911,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"284229754f5a167c4410c3c7f2874a9f6b0267dc","before":"db9a061b58d614b26c5b0176a8cae780f60ef387","commits":[{"sha":"4eb49300a8cb0116904a33de74e3701d6904922a","author":{"email":"19dd31ec29200827fa2e9ad9f9d9a21087b1afca@gmail.com","name":"omar.pache"},"message":"Clases utilidades","distinct":true,"url":"https://api.github.com/repos/opachesa/proyecto-uno/commits/4eb49300a8cb0116904a33de74e3701d6904922a"},{"sha":"284229754f5a167c4410c3c7f2874a9f6b0267dc","author":{"email":"19dd31ec29200827fa2e9ad9f9d9a21087b1afca@gmail.com","name":"omar.pache"},"message":"Merge remote-tracking branch 'origin/master'","distinct":true,"url":"https://api.github.com/repos/opachesa/proyecto-uno/commits/284229754f5a167c4410c3c7f2874a9f6b0267dc"}]},"public":true,"created_at":"2015-01-01T15:04:23Z"} +,{"id":"2489653079","type":"CreateEvent","actor":{"id":193115,"login":"haf","gravatar_id":"","url":"https://api.github.com/users/haf","avatar_url":"https://avatars.githubusercontent.com/u/193115?"},"repo":{"id":28634585,"name":"SuaveIO/Fuchu","url":"https://api.github.com/repos/SuaveIO/Fuchu"},"payload":{"ref":"v0.6.0","ref_type":"tag","master_branch":"master","description":"Functional test library for F# / C# / VB.NET","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:24Z","org":{"id":5822862,"login":"SuaveIO","gravatar_id":"","url":"https://api.github.com/orgs/SuaveIO","avatar_url":"https://avatars.githubusercontent.com/u/5822862?"}} +,{"id":"2489653083","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":23050575,"name":"cloudify-cosmo/cloudify-script-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-script-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:24Z","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":"2489653087","type":"CreateEvent","actor":{"id":7489322,"login":"nav2cool","gravatar_id":"","url":"https://api.github.com/users/nav2cool","avatar_url":"https://avatars.githubusercontent.com/u/7489322?"},"repo":{"id":28688137,"name":"nav2cool/sample-app-rails","url":"https://api.github.com/repos/nav2cool/sample-app-rails"},"payload":{"ref":"static-pages","ref_type":"branch","master_branch":"master","description":"railstutorial","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:25Z"} +,{"id":"2489653089","type":"CreateEvent","actor":{"id":9144720,"login":"liuchao0206","gravatar_id":"","url":"https://api.github.com/users/liuchao0206","avatar_url":"https://avatars.githubusercontent.com/u/9144720?"},"repo":{"id":28688682,"name":"liuchao0206/WhoIsUndercover","url":"https://api.github.com/repos/liuchao0206/WhoIsUndercover"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:26Z"} +,{"id":"2489653090","type":"PushEvent","actor":{"id":4683642,"login":"efwahl","gravatar_id":"","url":"https://api.github.com/users/efwahl","avatar_url":"https://avatars.githubusercontent.com/u/4683642?"},"repo":{"id":27305381,"name":"efwahl/redis-py","url":"https://api.github.com/repos/efwahl/redis-py"},"payload":{"push_id":536864916,"size":7,"distinct_size":7,"ref":"refs/heads/master","head":"323ad59a7a4b0442311814892b553d5017affb56","before":"fa714e08ef59d37b145616cb60939eedafda0bd4","commits":[{"sha":"e31e98ba66cf3b16fc6a1658b23400102a782f11","author":{"email":"9773878d237ad1f0b31f1354f3b87239c0805fba@cliqz.com","name":"Hendrik Muhs"},"message":"UnicodeDecodeErrorfix unicode encode error when using pipeline in combination with msgpack and lua","distinct":true,"url":"https://api.github.com/repos/efwahl/redis-py/commits/e31e98ba66cf3b16fc6a1658b23400102a782f11"},{"sha":"2e05913f002d1b08a09d47f6506dacd53bafe052","author":{"email":"9773878d237ad1f0b31f1354f3b87239c0805fba@cliqz.com","name":"Hendrik Muhs"},"message":"fix pep8","distinct":true,"url":"https://api.github.com/repos/efwahl/redis-py/commits/2e05913f002d1b08a09d47f6506dacd53bafe052"},{"sha":"eddf49d774945986325a04e134b0ba42e0046e70","author":{"email":"9773878d237ad1f0b31f1354f3b87239c0805fba@cliqz.com","name":"Hendrik Muhs"},"message":"pep8 fix","distinct":true,"url":"https://api.github.com/repos/efwahl/redis-py/commits/eddf49d774945986325a04e134b0ba42e0046e70"},{"sha":"38b19cd3098f0c21510a5565dae349bd1caef6dc","author":{"email":"e3579b1e47f273529f0f929453e939a68ede9fd1@andymccurdy.com","name":"Andy McCurdy"},"message":"Merge pull request #564 from hendrik-cliqz/fix-unicode-conversion-in-exception-handling\n\nFix UnicodeDecodeError in annotate_excpetion","distinct":true,"url":"https://api.github.com/repos/efwahl/redis-py/commits/38b19cd3098f0c21510a5565dae349bd1caef6dc"},{"sha":"9cea9e8d55485b4df80556211c3976e3042100be","author":{"email":"8678d91aceeffb4195d952677da14c0fa738a21d@yahoo-inc.com","name":"Joshua Harlow"},"message":"Allow delay between watch errors\n\nWhen a watcher error occurs (due to some key being\nwatched being mutated) the current behavior is to\nimmediately try again. To avoid the thundering herd\nproblem a delay is nice to provide to avoid these\nsituations by introducing a sleep period between these\ntypes of failures.","distinct":true,"url":"https://api.github.com/repos/efwahl/redis-py/commits/9cea9e8d55485b4df80556211c3976e3042100be"},{"sha":"54e1040b576afb4155bf839483428c5edac14df0","author":{"email":"e3579b1e47f273529f0f929453e939a68ede9fd1@andymccurdy.com","name":"Andy McCurdy"},"message":"Merge pull request #567 from harlowja/watch-delay\n\nAllow delay between watch errors","distinct":true,"url":"https://api.github.com/repos/efwahl/redis-py/commits/54e1040b576afb4155bf839483428c5edac14df0"},{"sha":"323ad59a7a4b0442311814892b553d5017affb56","author":{"email":"4012e86c1d737d937525d3b6c2216b9ff83e920c@gyre.biz","name":"Edward F. Wahl"},"message":"Allow pubsub WorkerThread to be shut down while in a callback by ignoring the RuntimeError thrown when join is called on the running thread.","distinct":true,"url":"https://api.github.com/repos/efwahl/redis-py/commits/323ad59a7a4b0442311814892b553d5017affb56"}]},"public":true,"created_at":"2015-01-01T15:04:26Z"} +,{"id":"2489653091","type":"PushEvent","actor":{"id":648622,"login":"neuro-sys","gravatar_id":"","url":"https://api.github.com/users/neuro-sys","avatar_url":"https://avatars.githubusercontent.com/u/648622?"},"repo":{"id":8240344,"name":"neuro-sys/neuro-bot","url":"https://api.github.com/repos/neuro-sys/neuro-bot"},"payload":{"push_id":536864917,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8cf955cd4aacd923998f866110997faf17b0f773","before":"183b99e5a162bee02828f35ccb9db02243ffd8d8","commits":[{"sha":"8cf955cd4aacd923998f866110997faf17b0f773","author":{"email":"54be6c1231effc5ae0d6d78e7bc79452bb7f7890@gmail.com","name":"Firat Salgur"},"message":"avoid some obscure memmory corruption","distinct":true,"url":"https://api.github.com/repos/neuro-sys/neuro-bot/commits/8cf955cd4aacd923998f866110997faf17b0f773"}]},"public":true,"created_at":"2015-01-01T15:04:26Z"} +,{"id":"2489653092","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":23050575,"name":"cloudify-cosmo/cloudify-script-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-script-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"A Cloudify plugin for running scripts","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:27Z","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":"2489653095","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":9330072,"name":"fogleman/Craft","url":"https://api.github.com/repos/fogleman/Craft"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:27Z"} +,{"id":"2489653096","type":"PushEvent","actor":{"id":6496992,"login":"braathwaate","gravatar_id":"","url":"https://api.github.com/users/braathwaate","avatar_url":"https://avatars.githubusercontent.com/u/6496992?"},"repo":{"id":16331244,"name":"braathwaate/stratego","url":"https://api.github.com/repos/braathwaate/stratego"},"payload":{"push_id":536864919,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cb38dc1032fc0ec9ca66a72d7d573aa1725e7413","before":"1c0855266f2febe2458ee8878883a408d95de749","commits":[{"sha":"cb38dc1032fc0ec9ca66a72d7d573aa1725e7413","author":{"email":"7b504dabb4d07becc7eea8f6a6acbd652369b9b3@whitewaterhill.com","name":"braathwaate"},"message":"minor speed improvement; fix known five attack bug","distinct":true,"url":"https://api.github.com/repos/braathwaate/stratego/commits/cb38dc1032fc0ec9ca66a72d7d573aa1725e7413"}]},"public":true,"created_at":"2015-01-01T15:04:27Z"} +,{"id":"2489653097","type":"IssuesEvent","actor":{"id":1218075,"login":"Pylipala","gravatar_id":"","url":"https://api.github.com/users/Pylipala","avatar_url":"https://avatars.githubusercontent.com/u/1218075?"},"repo":{"id":24482035,"name":"mogutt/TTServer","url":"https://api.github.com/repos/mogutt/TTServer"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/mogutt/TTServer/issues/19","labels_url":"https://api.github.com/repos/mogutt/TTServer/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/mogutt/TTServer/issues/19/comments","events_url":"https://api.github.com/repos/mogutt/TTServer/issues/19/events","html_url":"https://github.com/mogutt/TTServer/issues/19","id":53221415,"number":19,"title":"IM.BaseDefine.proto is missing","user":{"login":"Pylipala","id":1218075,"avatar_url":"https://avatars.githubusercontent.com/u/1218075?v=3","gravatar_id":"","url":"https://api.github.com/users/Pylipala","html_url":"https://github.com/Pylipala","followers_url":"https://api.github.com/users/Pylipala/followers","following_url":"https://api.github.com/users/Pylipala/following{/other_user}","gists_url":"https://api.github.com/users/Pylipala/gists{/gist_id}","starred_url":"https://api.github.com/users/Pylipala/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Pylipala/subscriptions","organizations_url":"https://api.github.com/users/Pylipala/orgs","repos_url":"https://api.github.com/users/Pylipala/repos","events_url":"https://api.github.com/users/Pylipala/events{/privacy}","received_events_url":"https://api.github.com/users/Pylipala/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:04:27Z","updated_at":"2015-01-01T15:04:27Z","closed_at":null,"body":"IM.BaseDefine.pb.h is generated from IM.BaseDefine.proto, while the latter is not provided."}},"public":true,"created_at":"2015-01-01T15:04:27Z","org":{"id":8542441,"login":"mogutt","gravatar_id":"","url":"https://api.github.com/orgs/mogutt","avatar_url":"https://avatars.githubusercontent.com/u/8542441?"}} +,{"id":"2489653099","type":"PushEvent","actor":{"id":208340,"login":"myfreeweb","gravatar_id":"","url":"https://api.github.com/users/myfreeweb","avatar_url":"https://avatars.githubusercontent.com/u/208340?"},"repo":{"id":1344037,"name":"myfreeweb/dotfiles","url":"https://api.github.com/repos/myfreeweb/dotfiles"},"payload":{"push_id":536864920,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1c890642b859dcbba334e4bc7b2378b560176906","before":"d2b57abd35ef19a871328dc3925f4206e714c9bf","commits":[{"sha":"1c890642b859dcbba334e4bc7b2378b560176906","author":{"email":"79e2475f81a6317276bf7cbb3958b20d289b78df@unrelenting.technology","name":"Greg V"},"message":"tmux mail indicator, git log gpg, shellcheck fixes, stuff","distinct":true,"url":"https://api.github.com/repos/myfreeweb/dotfiles/commits/1c890642b859dcbba334e4bc7b2378b560176906"}]},"public":true,"created_at":"2015-01-01T15:04:27Z"} +,{"id":"2489653101","type":"PushEvent","actor":{"id":220863,"login":"jgoewert","gravatar_id":"","url":"https://api.github.com/users/jgoewert","avatar_url":"https://avatars.githubusercontent.com/u/220863?"},"repo":{"id":1452772,"name":"jgoewert/angry_cosmos","url":"https://api.github.com/repos/jgoewert/angry_cosmos"},"payload":{"push_id":536864921,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"69b6b47213a38b5bc47e50ad93a8d5219461f6b3","before":"153ba3719c1c42b7c6dd1108b595e81d2b0ae9fc","commits":[{"sha":"69b6b47213a38b5bc47e50ad93a8d5219461f6b3","author":{"email":"a51dda7c7ff50b61eaea0444371f4a6a9301e501@goewert.org","name":"John Goewert"},"message":"Added parallax starfield background","distinct":true,"url":"https://api.github.com/repos/jgoewert/angry_cosmos/commits/69b6b47213a38b5bc47e50ad93a8d5219461f6b3"}]},"public":true,"created_at":"2015-01-01T15:04:28Z"} +,{"id":"2489653104","type":"PushEvent","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":{"push_id":536864924,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1a7a49d99e3ad2e473d19df16fa44443a89f3677","before":"73483773b6e381f4bea26728062acc594f4721ba","commits":[{"sha":"1a7a49d99e3ad2e473d19df16fa44443a89f3677","author":{"email":"f48eb4cb2f8059580c9d9ef68746adfc97228595@gmail.com","name":"Anton Petrov"},"message":"Create README.md","distinct":true,"url":"https://api.github.com/repos/petroav/6.828/commits/1a7a49d99e3ad2e473d19df16fa44443a89f3677"}]},"public":true,"created_at":"2015-01-01T15:04:28Z"} +,{"id":"2489653106","type":"WatchEvent","actor":{"id":7654983,"login":"JoakimLiu","gravatar_id":"","url":"https://api.github.com/users/JoakimLiu","avatar_url":"https://avatars.githubusercontent.com/u/7654983?"},"repo":{"id":26867665,"name":"k06a/LaunchScreenViewController","url":"https://api.github.com/repos/k06a/LaunchScreenViewController"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:29Z"} +,{"id":"2489653107","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":20684017,"name":"cloudify-cosmo/cloudify-libcloud-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-libcloud-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:29Z","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":"2489653111","type":"WatchEvent","actor":{"id":77152,"login":"budevg","gravatar_id":"","url":"https://api.github.com/users/budevg","avatar_url":"https://avatars.githubusercontent.com/u/77152?"},"repo":{"id":609376,"name":"thenigan/git-diffall","url":"https://api.github.com/repos/thenigan/git-diffall"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:30Z"} +,{"id":"2489653114","type":"PushEvent","actor":{"id":223335,"login":"jettify","gravatar_id":"","url":"https://api.github.com/users/jettify","avatar_url":"https://avatars.githubusercontent.com/u/223335?"},"repo":{"id":22174212,"name":"jettify/aiogibson","url":"https://api.github.com/repos/jettify/aiogibson"},"payload":{"push_id":536864928,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"94049295e5341777c5c3a1dc1f74ec61f75445e5","before":"59a45a8515c0e19cfed3c1a4d5b9398681f8bc6f","commits":[{"sha":"94049295e5341777c5c3a1dc1f74ec61f75445e5","author":{"email":"eb4210615e6f7d8633151b39d3bf3b0924fddbc7@yahoo.com","name":"Nickolai Novik"},"message":"move to nose","distinct":true,"url":"https://api.github.com/repos/jettify/aiogibson/commits/94049295e5341777c5c3a1dc1f74ec61f75445e5"}]},"public":true,"created_at":"2015-01-01T15:04:31Z"} +,{"id":"2489653116","type":"PushEvent","actor":{"id":10172901,"login":"jbackman","gravatar_id":"","url":"https://api.github.com/users/jbackman","avatar_url":"https://avatars.githubusercontent.com/u/10172901?"},"repo":{"id":28668128,"name":"jbackman/ansible-scripts","url":"https://api.github.com/repos/jbackman/ansible-scripts"},"payload":{"push_id":536864929,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"95abccb60e109f87dcd7babbd87ede48e0e24bba","before":"cbd8cc29a05d2a389cf96630b3d9cbbfef37e987","commits":[{"sha":"95abccb60e109f87dcd7babbd87ede48e0e24bba","author":{"email":"64b2b6d12bfe4baae7dad3d018f8cbf6b0e7a044@jitonline.net","name":"Justin Backman"},"message":"update centos prereq","distinct":true,"url":"https://api.github.com/repos/jbackman/ansible-scripts/commits/95abccb60e109f87dcd7babbd87ede48e0e24bba"}]},"public":true,"created_at":"2015-01-01T15:04:31Z"} +,{"id":"2489653118","type":"IssuesEvent","actor":{"id":1665772,"login":"ondrejsika","gravatar_id":"","url":"https://api.github.com/users/ondrejsika","avatar_url":"https://avatars.githubusercontent.com/u/1665772?"},"repo":{"id":13438321,"name":"phphost/phphost","url":"https://api.github.com/repos/phphost/phphost"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/phphost/phphost/issues/4","labels_url":"https://api.github.com/repos/phphost/phphost/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/phphost/phphost/issues/4/comments","events_url":"https://api.github.com/repos/phphost/phphost/issues/4/events","html_url":"https://github.com/phphost/phphost/issues/4","id":53221416,"number":4,"title":"ftp support","user":{"login":"ondrejsika","id":1665772,"avatar_url":"https://avatars.githubusercontent.com/u/1665772?v=3","gravatar_id":"","url":"https://api.github.com/users/ondrejsika","html_url":"https://github.com/ondrejsika","followers_url":"https://api.github.com/users/ondrejsika/followers","following_url":"https://api.github.com/users/ondrejsika/following{/other_user}","gists_url":"https://api.github.com/users/ondrejsika/gists{/gist_id}","starred_url":"https://api.github.com/users/ondrejsika/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ondrejsika/subscriptions","organizations_url":"https://api.github.com/users/ondrejsika/orgs","repos_url":"https://api.github.com/users/ondrejsika/repos","events_url":"https://api.github.com/users/ondrejsika/events{/privacy}","received_events_url":"https://api.github.com/users/ondrejsika/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:04:31Z","updated_at":"2015-01-01T15:04:31Z","closed_at":null,"body":"https://github.com/phphost/phm/issues/1"}},"public":true,"created_at":"2015-01-01T15:04:31Z","org":{"id":5645680,"login":"phphost","gravatar_id":"","url":"https://api.github.com/orgs/phphost","avatar_url":"https://avatars.githubusercontent.com/u/5645680?"}} +,{"id":"2489653120","type":"PushEvent","actor":{"id":551491,"login":"evz","gravatar_id":"","url":"https://api.github.com/users/evz","avatar_url":"https://avatars.githubusercontent.com/u/551491?"},"repo":{"id":20695134,"name":"datamade/dedupe-api","url":"https://api.github.com/repos/datamade/dedupe-api"},"payload":{"push_id":536864931,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"12d7cff6ed0ee7270e8fbbe215cb4c4171cd914f","before":"550cf1c02023c800ef2346e5dcc0f991a61cac77","commits":[{"sha":"12d7cff6ed0ee7270e8fbbe215cb4c4171cd914f","author":{"email":"5f88688432f640fe09036b76cf237f328cc3d778@gmail.com","name":"Eric van Zanten"},"message":"Fixed the thing where selecting mutiple field types was broke","distinct":true,"url":"https://api.github.com/repos/datamade/dedupe-api/commits/12d7cff6ed0ee7270e8fbbe215cb4c4171cd914f"}]},"public":true,"created_at":"2015-01-01T15:04:31Z","org":{"id":3723931,"login":"datamade","gravatar_id":"","url":"https://api.github.com/orgs/datamade","avatar_url":"https://avatars.githubusercontent.com/u/3723931?"}} +,{"id":"2489653126","type":"WatchEvent","actor":{"id":6399899,"login":"hacke2","gravatar_id":"","url":"https://api.github.com/users/hacke2","avatar_url":"https://avatars.githubusercontent.com/u/6399899?"},"repo":{"id":17893612,"name":"maomaoshu/jsBook","url":"https://api.github.com/repos/maomaoshu/jsBook"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:33Z"} +,{"id":"2489653127","type":"WatchEvent","actor":{"id":112799,"login":"wildtype","gravatar_id":"","url":"https://api.github.com/users/wildtype","avatar_url":"https://avatars.githubusercontent.com/u/112799?"},"repo":{"id":6515967,"name":"mindd-it/pappu-pakia","url":"https://api.github.com/repos/mindd-it/pappu-pakia"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:33Z","org":{"id":2706802,"login":"mindd-it","gravatar_id":"","url":"https://api.github.com/orgs/mindd-it","avatar_url":"https://avatars.githubusercontent.com/u/2706802?"}} +,{"id":"2489653128","type":"PushEvent","actor":{"id":785941,"login":"cenotaph","gravatar_id":"","url":"https://api.github.com/users/cenotaph","avatar_url":"https://avatars.githubusercontent.com/u/785941?"},"repo":{"id":28541151,"name":"cenotaph/version","url":"https://api.github.com/repos/cenotaph/version"},"payload":{"push_id":536864934,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"487a53484efe168b4a734c729a10e6026168c05b","before":"d662560256751335f44c088934f8cc0196a3d6eb","commits":[{"sha":"7d90244bb841e4e76eb0829965958c366e6bb8cb","author":{"email":"a602e216eb44a3ac5e096036eeaaef6bb9159677@cenotaph.org","name":"John W. Fail"},"message":"server static files","distinct":true,"url":"https://api.github.com/repos/cenotaph/version/commits/7d90244bb841e4e76eb0829965958c366e6bb8cb"},{"sha":"487a53484efe168b4a734c729a10e6026168c05b","author":{"email":"a602e216eb44a3ac5e096036eeaaef6bb9159677@cenotaph.org","name":"John W. Fail"},"message":"sprockets-rails added","distinct":true,"url":"https://api.github.com/repos/cenotaph/version/commits/487a53484efe168b4a734c729a10e6026168c05b"}]},"public":true,"created_at":"2015-01-01T15:04:33Z"} +,{"id":"2489653131","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":20684017,"name":"cloudify-cosmo/cloudify-libcloud-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-libcloud-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify Libcloud plugin","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:33Z","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":"2489653133","type":"PushEvent","actor":{"id":10012013,"login":"TomatoGreen","gravatar_id":"","url":"https://api.github.com/users/TomatoGreen","avatar_url":"https://avatars.githubusercontent.com/u/10012013?"},"repo":{"id":28655687,"name":"TomatoGreen/MyExercises","url":"https://api.github.com/repos/TomatoGreen/MyExercises"},"payload":{"push_id":536864936,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cc9fa509af6479666bb680fcd151555b8d0d46c2","before":"07cc8bdf48f72762b147f5fa07367bd0caeb7600","commits":[{"sha":"cc9fa509af6479666bb680fcd151555b8d0d46c2","author":{"email":"2bdfbd374e55c5412541638e63602038e78f4b51@gmail.com","name":"Zhenzhen.Cui"},"message":"CorrectionOfCodilityProblemSolution","distinct":true,"url":"https://api.github.com/repos/TomatoGreen/MyExercises/commits/cc9fa509af6479666bb680fcd151555b8d0d46c2"}]},"public":true,"created_at":"2015-01-01T15:04:33Z"} +,{"id":"2489653134","type":"PushEvent","actor":{"id":10148309,"login":"mjbalint","gravatar_id":"","url":"https://api.github.com/users/mjbalint","avatar_url":"https://avatars.githubusercontent.com/u/10148309?"},"repo":{"id":28637737,"name":"mjbalint/memory","url":"https://api.github.com/repos/mjbalint/memory"},"payload":{"push_id":536864937,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"0fa58ad114b30ddcdf2d7a3729b902ab2fd4af00","before":"2d6477dbdbea2287051b61ca330999c9867da6da","commits":[{"sha":"324275e83c972de844a8ffb5999fa7b3b5f3013f","author":{"email":"bdf3ce29cd7e86d03eb3c27ca4764ed0d8510e4d@gmail.com","name":"Matthew Balint"},"message":"Improve flag selection logic","distinct":true,"url":"https://api.github.com/repos/mjbalint/memory/commits/324275e83c972de844a8ffb5999fa7b3b5f3013f"},{"sha":"0fa58ad114b30ddcdf2d7a3729b902ab2fd4af00","author":{"email":"bdf3ce29cd7e86d03eb3c27ca4764ed0d8510e4d@gmail.com","name":"Matthew Balint"},"message":"Make image lists more object-oriented","distinct":true,"url":"https://api.github.com/repos/mjbalint/memory/commits/0fa58ad114b30ddcdf2d7a3729b902ab2fd4af00"}]},"public":true,"created_at":"2015-01-01T15:04:33Z"} +,{"id":"2489653142","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":22381600,"name":"cloudify-cosmo/yo-ci","url":"https://api.github.com/repos/cloudify-cosmo/yo-ci"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:34Z","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":"2489653147","type":"PushEvent","actor":{"id":487050,"login":"shlevy","gravatar_id":"","url":"https://api.github.com/users/shlevy","avatar_url":"https://avatars.githubusercontent.com/u/487050?"},"repo":{"id":4754156,"name":"shlevy/nixpkgs","url":"https://api.github.com/repos/shlevy/nixpkgs"},"payload":{"push_id":536864942,"size":2,"distinct_size":2,"ref":"refs/heads/nice-fetchgit-names","head":"664d0fbbba2e94bf63372751a029b05dd190ba7b","before":"d533880a8b73090ab3e2b789c19820ff63b635fe","commits":[{"sha":"a8603605aaaf780aa45edd0f16c8c9588455ccf2","author":{"email":"2ad57049e5a4c55c398e1a2fc9bf3e78fb5d7c3a@shealevy.com","name":"Shea Levy"},"message":"fetchgit: give output a nicer name\n\nInstead of git-export, we get the basename of the repo, plus the\nshortrev if the commit-ish is a rev.","distinct":true,"url":"https://api.github.com/repos/shlevy/nixpkgs/commits/a8603605aaaf780aa45edd0f16c8c9588455ccf2"},{"sha":"664d0fbbba2e94bf63372751a029b05dd190ba7b","author":{"email":"2ad57049e5a4c55c398e1a2fc9bf3e78fb5d7c3a@shealevy.com","name":"Shea Levy"},"message":"proot: Don't hard-code git-export","distinct":true,"url":"https://api.github.com/repos/shlevy/nixpkgs/commits/664d0fbbba2e94bf63372751a029b05dd190ba7b"}]},"public":true,"created_at":"2015-01-01T15:04:35Z"} +,{"id":"2489653148","type":"WatchEvent","actor":{"id":6512272,"login":"stevenzhangyu","gravatar_id":"","url":"https://api.github.com/users/stevenzhangyu","avatar_url":"https://avatars.githubusercontent.com/u/6512272?"},"repo":{"id":26655352,"name":"jbarrow/LambdaNet","url":"https://api.github.com/repos/jbarrow/LambdaNet"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:35Z"} +,{"id":"2489653150","type":"PushEvent","actor":{"id":4958081,"login":"andanteyk","gravatar_id":"","url":"https://api.github.com/users/andanteyk","avatar_url":"https://avatars.githubusercontent.com/u/4958081?"},"repo":{"id":23504173,"name":"andanteyk/ElectronicObserver","url":"https://api.github.com/repos/andanteyk/ElectronicObserver"},"payload":{"push_id":536864944,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"4f7a8072f402215bccf504951d3cb64cc3c14138","before":"eedf29992d8d49db2074017806636773fa92307b","commits":[{"sha":"4f7a8072f402215bccf504951d3cb64cc3c14138","author":{"email":"2aabba477567bbfb7254b03347e1bec9288774ba@gmail.com","name":"andanteyk"},"message":"設定システム改装\n\n・仕様変更の可能性あり、本番環境には適用しないこと","distinct":true,"url":"https://api.github.com/repos/andanteyk/ElectronicObserver/commits/4f7a8072f402215bccf504951d3cb64cc3c14138"}]},"public":true,"created_at":"2015-01-01T15:04:35Z"} +,{"id":"2489653153","type":"WatchEvent","actor":{"id":426400,"login":"altmer","gravatar_id":"","url":"https://api.github.com/users/altmer","avatar_url":"https://avatars.githubusercontent.com/u/426400?"},"repo":{"id":9508769,"name":"bouil/angular-google-chart","url":"https://api.github.com/repos/bouil/angular-google-chart"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:36Z"} +,{"id":"2489653154","type":"IssueCommentEvent","actor":{"id":303881,"login":"rhyslbw","gravatar_id":"","url":"https://api.github.com/users/rhyslbw","avatar_url":"https://avatars.githubusercontent.com/u/303881?"},"repo":{"id":11704015,"name":"anticoders/meteor-fake","url":"https://api.github.com/repos/anticoders/meteor-fake"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/anticoders/meteor-fake/issues/6","labels_url":"https://api.github.com/repos/anticoders/meteor-fake/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/anticoders/meteor-fake/issues/6/comments","events_url":"https://api.github.com/repos/anticoders/meteor-fake/issues/6/events","html_url":"https://github.com/anticoders/meteor-fake/issues/6","id":47752405,"number":6,"title":"Feature request: generate dummy documents for a collection based on aldeed's SimpleSchema","user":{"login":"yanndebelgique","id":2687189,"avatar_url":"https://avatars.githubusercontent.com/u/2687189?v=3","gravatar_id":"","url":"https://api.github.com/users/yanndebelgique","html_url":"https://github.com/yanndebelgique","followers_url":"https://api.github.com/users/yanndebelgique/followers","following_url":"https://api.github.com/users/yanndebelgique/following{/other_user}","gists_url":"https://api.github.com/users/yanndebelgique/gists{/gist_id}","starred_url":"https://api.github.com/users/yanndebelgique/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yanndebelgique/subscriptions","organizations_url":"https://api.github.com/users/yanndebelgique/orgs","repos_url":"https://api.github.com/users/yanndebelgique/repos","events_url":"https://api.github.com/users/yanndebelgique/events{/privacy}","received_events_url":"https://api.github.com/users/yanndebelgique/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":5,"created_at":"2014-11-04T19:12:16Z","updated_at":"2015-01-01T15:04:35Z","closed_at":null,"body":"You would use it like this : \r\n\r\nFake.docs(SimpleSchema);\r\n\r\nWould spit out a document based on the SimpleSchema object. That would be freakin awesome! :+1: \r\n\r\n\r\n\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/anticoders/meteor-fake/issues/comments/68488567","html_url":"https://github.com/anticoders/meteor-fake/issues/6#issuecomment-68488567","issue_url":"https://api.github.com/repos/anticoders/meteor-fake/issues/6","id":68488567,"user":{"login":"rhyslbw","id":303881,"avatar_url":"https://avatars.githubusercontent.com/u/303881?v=3","gravatar_id":"","url":"https://api.github.com/users/rhyslbw","html_url":"https://github.com/rhyslbw","followers_url":"https://api.github.com/users/rhyslbw/followers","following_url":"https://api.github.com/users/rhyslbw/following{/other_user}","gists_url":"https://api.github.com/users/rhyslbw/gists{/gist_id}","starred_url":"https://api.github.com/users/rhyslbw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rhyslbw/subscriptions","organizations_url":"https://api.github.com/users/rhyslbw/orgs","repos_url":"https://api.github.com/users/rhyslbw/repos","events_url":"https://api.github.com/users/rhyslbw/events{/privacy}","received_events_url":"https://api.github.com/users/rhyslbw/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:04:35Z","updated_at":"2015-01-01T15:04:35Z","body":"+1"}},"public":true,"created_at":"2015-01-01T15:04:36Z","org":{"id":6698996,"login":"anticoders","gravatar_id":"","url":"https://api.github.com/orgs/anticoders","avatar_url":"https://avatars.githubusercontent.com/u/6698996?"}} +,{"id":"2489653155","type":"IssueCommentEvent","actor":{"id":201664,"login":"aredo","gravatar_id":"","url":"https://api.github.com/users/aredo","avatar_url":"https://avatars.githubusercontent.com/u/201664?"},"repo":{"id":28348351,"name":"nodeschool/jakarta","url":"https://api.github.com/repos/nodeschool/jakarta"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/nodeschool/jakarta/issues/3","labels_url":"https://api.github.com/repos/nodeschool/jakarta/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/nodeschool/jakarta/issues/3/comments","events_url":"https://api.github.com/repos/nodeschool/jakarta/issues/3/events","html_url":"https://github.com/nodeschool/jakarta/pull/3","id":53213097,"number":3,"title":"repull request at gh-pages branch","user":{"login":"eufat","id":3710666,"avatar_url":"https://avatars.githubusercontent.com/u/3710666?v=3","gravatar_id":"","url":"https://api.github.com/users/eufat","html_url":"https://github.com/eufat","followers_url":"https://api.github.com/users/eufat/followers","following_url":"https://api.github.com/users/eufat/following{/other_user}","gists_url":"https://api.github.com/users/eufat/gists{/gist_id}","starred_url":"https://api.github.com/users/eufat/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eufat/subscriptions","organizations_url":"https://api.github.com/users/eufat/orgs","repos_url":"https://api.github.com/users/eufat/repos","events_url":"https://api.github.com/users/eufat/events{/privacy}","received_events_url":"https://api.github.com/users/eufat/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T05:00:23Z","updated_at":"2015-01-01T15:04:36Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/nodeschool/jakarta/pulls/3","html_url":"https://github.com/nodeschool/jakarta/pull/3","diff_url":"https://github.com/nodeschool/jakarta/pull/3.diff","patch_url":"https://github.com/nodeschool/jakarta/pull/3.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/nodeschool/jakarta/issues/comments/68488568","html_url":"https://github.com/nodeschool/jakarta/pull/3#issuecomment-68488568","issue_url":"https://api.github.com/repos/nodeschool/jakarta/issues/3","id":68488568,"user":{"login":"aredo","id":201664,"avatar_url":"https://avatars.githubusercontent.com/u/201664?v=3","gravatar_id":"","url":"https://api.github.com/users/aredo","html_url":"https://github.com/aredo","followers_url":"https://api.github.com/users/aredo/followers","following_url":"https://api.github.com/users/aredo/following{/other_user}","gists_url":"https://api.github.com/users/aredo/gists{/gist_id}","starred_url":"https://api.github.com/users/aredo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aredo/subscriptions","organizations_url":"https://api.github.com/users/aredo/orgs","repos_url":"https://api.github.com/users/aredo/repos","events_url":"https://api.github.com/users/aredo/events{/privacy}","received_events_url":"https://api.github.com/users/aredo/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:04:36Z","updated_at":"2015-01-01T15:04:36Z","body":"we prefer using LESS instead SASS"}},"public":true,"created_at":"2015-01-01T15:04:36Z","org":{"id":5437587,"login":"nodeschool","gravatar_id":"","url":"https://api.github.com/orgs/nodeschool","avatar_url":"https://avatars.githubusercontent.com/u/5437587?"}} +,{"id":"2489653156","type":"WatchEvent","actor":{"id":1988429,"login":"dirtycoder","gravatar_id":"","url":"https://api.github.com/users/dirtycoder","avatar_url":"https://avatars.githubusercontent.com/u/1988429?"},"repo":{"id":1151051,"name":"django-oscar/django-oscar","url":"https://api.github.com/repos/django-oscar/django-oscar"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:36Z","org":{"id":9057806,"login":"django-oscar","gravatar_id":"","url":"https://api.github.com/orgs/django-oscar","avatar_url":"https://avatars.githubusercontent.com/u/9057806?"}} +,{"id":"2489653159","type":"IssuesEvent","actor":{"id":968651,"login":"mustilica","gravatar_id":"","url":"https://api.github.com/users/mustilica","avatar_url":"https://avatars.githubusercontent.com/u/968651?"},"repo":{"id":8545220,"name":"twbs/bootstrap-expo","url":"https://api.github.com/repos/twbs/bootstrap-expo"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/twbs/bootstrap-expo/issues/1442","labels_url":"https://api.github.com/repos/twbs/bootstrap-expo/issues/1442/labels{/name}","comments_url":"https://api.github.com/repos/twbs/bootstrap-expo/issues/1442/comments","events_url":"https://api.github.com/repos/twbs/bootstrap-expo/issues/1442/events","html_url":"https://github.com/twbs/bootstrap-expo/issues/1442","id":53221420,"number":1442,"title":"http://kulu.be/ (personal website)","user":{"login":"mustilica","id":968651,"avatar_url":"https://avatars.githubusercontent.com/u/968651?v=3","gravatar_id":"","url":"https://api.github.com/users/mustilica","html_url":"https://github.com/mustilica","followers_url":"https://api.github.com/users/mustilica/followers","following_url":"https://api.github.com/users/mustilica/following{/other_user}","gists_url":"https://api.github.com/users/mustilica/gists{/gist_id}","starred_url":"https://api.github.com/users/mustilica/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mustilica/subscriptions","organizations_url":"https://api.github.com/users/mustilica/orgs","repos_url":"https://api.github.com/users/mustilica/repos","events_url":"https://api.github.com/users/mustilica/events{/privacy}","received_events_url":"https://api.github.com/users/mustilica/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:04:36Z","updated_at":"2015-01-01T15:04:36Z","closed_at":null,"body":"Hi,\r\n\r\nI'm Mustafa, software developer and MFA candidate.\r\n\r\nhttp://kulu.be/ is my personal website. This site contains my short biography and projects.\r\n\r\nIt is built with several components but bootstrap selected for front-end development.\r\n\r\nThanks in advance,\r\nBest.\r\n"}},"public":true,"created_at":"2015-01-01T15:04:36Z","org":{"id":2918581,"login":"twbs","gravatar_id":"","url":"https://api.github.com/orgs/twbs","avatar_url":"https://avatars.githubusercontent.com/u/2918581?"}} +,{"id":"2489653161","type":"IssueCommentEvent","actor":{"id":43438,"login":"timoxley","gravatar_id":"","url":"https://api.github.com/users/timoxley","avatar_url":"https://avatars.githubusercontent.com/u/43438?"},"repo":{"id":24328359,"name":"timoxley/bulk","url":"https://api.github.com/repos/timoxley/bulk"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/timoxley/bulk/issues/2","labels_url":"https://api.github.com/repos/timoxley/bulk/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/timoxley/bulk/issues/2/comments","events_url":"https://api.github.com/repos/timoxley/bulk/issues/2/events","html_url":"https://github.com/timoxley/bulk/issues/2","id":50473582,"number":2,"title":"Remove -c","user":{"login":"timoxley","id":43438,"avatar_url":"https://avatars.githubusercontent.com/u/43438?v=3","gravatar_id":"","url":"https://api.github.com/users/timoxley","html_url":"https://github.com/timoxley","followers_url":"https://api.github.com/users/timoxley/followers","following_url":"https://api.github.com/users/timoxley/following{/other_user}","gists_url":"https://api.github.com/users/timoxley/gists{/gist_id}","starred_url":"https://api.github.com/users/timoxley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timoxley/subscriptions","organizations_url":"https://api.github.com/users/timoxley/orgs","repos_url":"https://api.github.com/users/timoxley/repos","events_url":"https://api.github.com/users/timoxley/events{/privacy}","received_events_url":"https://api.github.com/users/timoxley/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-11-30T22:37:34Z","updated_at":"2015-01-01T15:04:36Z","closed_at":null,"body":"escaping quotes is crap"},"comment":{"url":"https://api.github.com/repos/timoxley/bulk/issues/comments/68488569","html_url":"https://github.com/timoxley/bulk/issues/2#issuecomment-68488569","issue_url":"https://api.github.com/repos/timoxley/bulk/issues/2","id":68488569,"user":{"login":"timoxley","id":43438,"avatar_url":"https://avatars.githubusercontent.com/u/43438?v=3","gravatar_id":"","url":"https://api.github.com/users/timoxley","html_url":"https://github.com/timoxley","followers_url":"https://api.github.com/users/timoxley/followers","following_url":"https://api.github.com/users/timoxley/following{/other_user}","gists_url":"https://api.github.com/users/timoxley/gists{/gist_id}","starred_url":"https://api.github.com/users/timoxley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timoxley/subscriptions","organizations_url":"https://api.github.com/users/timoxley/orgs","repos_url":"https://api.github.com/users/timoxley/repos","events_url":"https://api.github.com/users/timoxley/events{/privacy}","received_events_url":"https://api.github.com/users/timoxley/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:04:36Z","updated_at":"2015-01-01T15:04:36Z","body":"and if you need to `&&` in the command, put it in quotes."}},"public":true,"created_at":"2015-01-01T15:04:36Z"} +,{"id":"2489653162","type":"PushEvent","actor":{"id":7263966,"login":"haiwei624","gravatar_id":"","url":"https://api.github.com/users/haiwei624","avatar_url":"https://avatars.githubusercontent.com/u/7263966?"},"repo":{"id":26637937,"name":"Dronevery/MultiwaySwitch","url":"https://api.github.com/repos/Dronevery/MultiwaySwitch"},"payload":{"push_id":536864947,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d0d8e06689155bc54db41423f86b291feb7df25c","before":"9f7f5dabbcc393e6f753044515ce7bf7f22bf6c9","commits":[{"sha":"d0d8e06689155bc54db41423f86b291feb7df25c","author":{"email":"4166b3895ef24650f783a01a179be798d38072d3@163.com","name":"haiwei624"},"message":"delete echo of content of data package.","distinct":true,"url":"https://api.github.com/repos/Dronevery/MultiwaySwitch/commits/d0d8e06689155bc54db41423f86b291feb7df25c"}]},"public":true,"created_at":"2015-01-01T15:04:36Z","org":{"id":9743787,"login":"Dronevery","gravatar_id":"","url":"https://api.github.com/orgs/Dronevery","avatar_url":"https://avatars.githubusercontent.com/u/9743787?"}} +,{"id":"2489653165","type":"WatchEvent","actor":{"id":1833474,"login":"wasabeef","gravatar_id":"","url":"https://api.github.com/users/wasabeef","avatar_url":"https://avatars.githubusercontent.com/u/1833474?"},"repo":{"id":21700699,"name":"vsouza/awesome-ios","url":"https://api.github.com/repos/vsouza/awesome-ios"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:36Z"} +,{"id":"2489653166","type":"PushEvent","actor":{"id":9699715,"login":"D0nBilb0","gravatar_id":"","url":"https://api.github.com/users/D0nBilb0","avatar_url":"https://avatars.githubusercontent.com/u/9699715?"},"repo":{"id":26546687,"name":"D0nBilb0/AAL","url":"https://api.github.com/repos/D0nBilb0/AAL"},"payload":{"push_id":536864949,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"781ae88871bb28743559baef32c5d5cc89a4ee72","before":"acd67943e57230138d27dd5cf9c0ee8081bbc122","commits":[{"sha":"781ae88871bb28743559baef32c5d5cc89a4ee72","author":{"email":"82d11ed77cfd6f1b54aa989f745cc29845decc12@gmail.com","name":"D0nBilb0"},"message":"bath tub functionality + radio functionality","distinct":true,"url":"https://api.github.com/repos/D0nBilb0/AAL/commits/781ae88871bb28743559baef32c5d5cc89a4ee72"}]},"public":true,"created_at":"2015-01-01T15:04:36Z"} +,{"id":"2489653167","type":"PushEvent","actor":{"id":6587210,"login":"EmilAleksandrov","gravatar_id":"","url":"https://api.github.com/users/EmilAleksandrov","avatar_url":"https://avatars.githubusercontent.com/u/6587210?"},"repo":{"id":28593309,"name":"EmilAleksandrov/PracticalProject-OnlineAds","url":"https://api.github.com/repos/EmilAleksandrov/PracticalProject-OnlineAds"},"payload":{"push_id":536864950,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b6429f884d5f33288af857e36937bbe66e2a3a5d","before":"f7d079bb8d48a9905c1f5421805d677acc669f71","commits":[{"sha":"b6429f884d5f33288af857e36937bbe66e2a3a5d","author":{"email":"5a18d12f372cb890f7a3930223687493602f3246@gmail.com","name":"Aleksandrov"},"message":"set glyphicons icon","distinct":true,"url":"https://api.github.com/repos/EmilAleksandrov/PracticalProject-OnlineAds/commits/b6429f884d5f33288af857e36937bbe66e2a3a5d"}]},"public":true,"created_at":"2015-01-01T15:04:37Z"} +,{"id":"2489653168","type":"PushEvent","actor":{"id":10072088,"login":"DevKwan","gravatar_id":"","url":"https://api.github.com/users/DevKwan","avatar_url":"https://avatars.githubusercontent.com/u/10072088?"},"repo":{"id":28293846,"name":"ZhangboTeam/Adinnet.MQE","url":"https://api.github.com/repos/ZhangboTeam/Adinnet.MQE"},"payload":{"push_id":536864951,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"189e1138ad937214bca30379df75d5f960ccdc38","before":"3907ebfae6676ca8c9ac3764bd2c2865ee30a29d","commits":[{"sha":"160b44d664cd4bb091ff6856e9f248e06b0c77b2","author":{"email":"fbe9b52ff527055c61e8ee4389e9ea8bc806d546@hotmail.com","name":"关可今"},"message":"PhaseInSystemUser实现并与Phase交互成功","distinct":true,"url":"https://api.github.com/repos/ZhangboTeam/Adinnet.MQE/commits/160b44d664cd4bb091ff6856e9f248e06b0c77b2"},{"sha":"189e1138ad937214bca30379df75d5f960ccdc38","author":{"email":"fbe9b52ff527055c61e8ee4389e9ea8bc806d546@hotmail.com","name":"关可今"},"message":"Merge branch 'master' of https://github.com/ZhangboTeam/Adinnet.MQE","distinct":true,"url":"https://api.github.com/repos/ZhangboTeam/Adinnet.MQE/commits/189e1138ad937214bca30379df75d5f960ccdc38"}]},"public":true,"created_at":"2015-01-01T15:04:37Z","org":{"id":10057771,"login":"ZhangboTeam","gravatar_id":"","url":"https://api.github.com/orgs/ZhangboTeam","avatar_url":"https://avatars.githubusercontent.com/u/10057771?"}} +,{"id":"2489653169","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":22381600,"name":"cloudify-cosmo/yo-ci","url":"https://api.github.com/repos/cloudify-cosmo/yo-ci"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"A python travis client built for integration","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:37Z","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":"2489653170","type":"PushEvent","actor":{"id":8079942,"login":"avnash","gravatar_id":"","url":"https://api.github.com/users/avnash","avatar_url":"https://avatars.githubusercontent.com/u/8079942?"},"repo":{"id":28472487,"name":"avnash/students","url":"https://api.github.com/repos/avnash/students"},"payload":{"push_id":536864952,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3e5da7117e2f65a45f58267d8f52f8c92001d686","before":"1413a900705352b473d60f19945e6ca41284b095","commits":[{"sha":"3e5da7117e2f65a45f58267d8f52f8c92001d686","author":{"email":"be2ffd277d2a8b60f94b8da1bec68882a65300fe@gmail.com","name":"avnash"},"message":"login error msg","distinct":true,"url":"https://api.github.com/repos/avnash/students/commits/3e5da7117e2f65a45f58267d8f52f8c92001d686"}]},"public":true,"created_at":"2015-01-01T15:04:37Z"} +,{"id":"2489653172","type":"CreateEvent","actor":{"id":282825,"login":"DragonBe","gravatar_id":"","url":"https://api.github.com/users/DragonBe","avatar_url":"https://avatars.githubusercontent.com/u/282825?"},"repo":{"id":28687507,"name":"DragonBe/SpeckCatalog","url":"https://api.github.com/repos/DragonBe/SpeckCatalog"},"payload":{"ref":"issue-117","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:38Z"} +,{"id":"2489653173","type":"PushEvent","actor":{"id":3876790,"login":"jonsger","gravatar_id":"","url":"https://api.github.com/users/jonsger","avatar_url":"https://avatars.githubusercontent.com/u/3876790?"},"repo":{"id":27735697,"name":"jonsger/diaspora","url":"https://api.github.com/repos/jonsger/diaspora"},"payload":{"push_id":536864955,"size":1,"distinct_size":1,"ref":"refs/heads/invitation","head":"6a9ecd2b34c6e4188e433fb2a4d21a2aa2d27922","before":"0667bb2949d2bc2589d6a00319bed3a92939baad","commits":[{"sha":"6a9ecd2b34c6e4188e433fb2a4d21a2aa2d27922","author":{"email":"a32f459e873a851c669a85c08986469c13c86cff@web.de","name":"jonsger"},"message":"correct I18n","distinct":true,"url":"https://api.github.com/repos/jonsger/diaspora/commits/6a9ecd2b34c6e4188e433fb2a4d21a2aa2d27922"}]},"public":true,"created_at":"2015-01-01T15:04:38Z"} +,{"id":"2489653177","type":"PushEvent","actor":{"id":873670,"login":"ErshKUS","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","avatar_url":"https://avatars.githubusercontent.com/u/873670?"},"repo":{"id":2147969,"name":"ErshKUS/test","url":"https://api.github.com/repos/ErshKUS/test"},"payload":{"push_id":536864958,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a50bf27ad665aaba89b20175893948e85ec8338b","before":"0e0c2c2d74fcd5976273d81d5d0db46ef741c8c7","commits":[{"sha":"a50bf27ad665aaba89b20175893948e85ec8338b","author":{"email":"759752891c2da4a45a38d25a390ae29ab3869cac@gmail.com","name":"ErshKUS"},"message":"второе локально","distinct":true,"url":"https://api.github.com/repos/ErshKUS/test/commits/a50bf27ad665aaba89b20175893948e85ec8338b"}]},"public":true,"created_at":"2015-01-01T15:04:38Z"} +,{"id":"2489653181","type":"PushEvent","actor":{"id":9962824,"login":"sabasingh","gravatar_id":"","url":"https://api.github.com/users/sabasingh","avatar_url":"https://avatars.githubusercontent.com/u/9962824?"},"repo":{"id":27308146,"name":"sabasingh/sabasingh.github.io","url":"https://api.github.com/repos/sabasingh/sabasingh.github.io"},"payload":{"push_id":536864960,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"88b5b480d282cb6fa84787d76030d5e6286184a3","before":"eb74b37a3eef01452cb4d344e99c3f5ead3fe132","commits":[{"sha":"d9bc7c8239fc87f4e5e05aa52fd97615b01e6c6e","author":{"email":"d1658824968a4a6237bfcfe6370497b055c0db1f","name":"unknown"},"message":"slideshow and typos","distinct":true,"url":"https://api.github.com/repos/sabasingh/sabasingh.github.io/commits/d9bc7c8239fc87f4e5e05aa52fd97615b01e6c6e"},{"sha":"88b5b480d282cb6fa84787d76030d5e6286184a3","author":{"email":"d1658824968a4a6237bfcfe6370497b055c0db1f","name":"unknown"},"message":"typos","distinct":true,"url":"https://api.github.com/repos/sabasingh/sabasingh.github.io/commits/88b5b480d282cb6fa84787d76030d5e6286184a3"}]},"public":true,"created_at":"2015-01-01T15:04:38Z"} +,{"id":"2489653183","type":"WatchEvent","actor":{"id":71495,"login":"tokenrove","gravatar_id":"","url":"https://api.github.com/users/tokenrove","avatar_url":"https://avatars.githubusercontent.com/u/71495?"},"repo":{"id":7970180,"name":"graydon/bors","url":"https://api.github.com/repos/graydon/bors"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:39Z"} +,{"id":"2489653184","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":23067055,"name":"cloudify-cosmo/cloudify-diamond-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-diamond-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:39Z","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":"2489653192","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":12103692,"name":"fangj/WebViewJavascriptBridge","url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge"},"payload":{"action":"opened","number":1,"pull_request":{"url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/pulls/1","id":26743803,"html_url":"https://github.com/fangj/WebViewJavascriptBridge/pull/1","diff_url":"https://github.com/fangj/WebViewJavascriptBridge/pull/1.diff","patch_url":"https://github.com/fangj/WebViewJavascriptBridge/pull/1.patch","issue_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/issues/1","number":1,"state":"open","locked":false,"title":"call Handler.handler() in ui thread and double escape messageJSON to jav...","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":"...ascript","created_at":"2015-01-01T15:04:40Z","updated_at":"2015-01-01T15:04:40Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/pulls/1/commits","review_comments_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/pulls/1/comments","review_comment_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/pulls/comments/{number}","comments_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/issues/1/comments","statuses_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/statuses/51e6abf3bbf9a1be7aae5ff37883195e7a07c434","head":{"label":"wheam:master","ref":"master","sha":"51e6abf3bbf9a1be7aae5ff37883195e7a07c434","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},"repo":{"id":28687343,"name":"WebViewJavascriptBridge","full_name":"wheam/WebViewJavascriptBridge","owner":{"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},"private":false,"html_url":"https://github.com/wheam/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/wheam/WebViewJavascriptBridge","forks_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/forks","keys_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/teams","hooks_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/hooks","issue_events_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/issues/events{/number}","events_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/events","assignees_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/assignees{/user}","branches_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/branches{/branch}","tags_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/tags","blobs_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/git/refs{/sha}","trees_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/statuses/{sha}","languages_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/languages","stargazers_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/stargazers","contributors_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/contributors","subscribers_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/subscribers","subscription_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/subscription","commits_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/commits{/sha}","git_commits_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/git/commits{/sha}","comments_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/comments{/number}","issue_comment_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/issues/comments/{number}","contents_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/contents/{+path}","compare_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/merges","archive_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/downloads","issues_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/issues{/number}","pulls_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/pulls{/number}","milestones_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/milestones{/number}","notifications_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/labels{/name}","releases_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/releases{/id}","created_at":"2015-01-01T13:49:37Z","updated_at":"2015-01-01T14:58:30Z","pushed_at":"2015-01-01T14:58:30Z","git_url":"git://github.com/wheam/WebViewJavascriptBridge.git","ssh_url":"git@github.com:wheam/WebViewJavascriptBridge.git","clone_url":"https://github.com/wheam/WebViewJavascriptBridge.git","svn_url":"https://github.com/wheam/WebViewJavascriptBridge","homepage":"","size":763,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","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":"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":1,"forks":2,"open_issues":1,"watchers":11,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/pulls/1"},"html":{"href":"https://github.com/fangj/WebViewJavascriptBridge/pull/1"},"issue":{"href":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/issues/1"},"comments":{"href":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/statuses/51e6abf3bbf9a1be7aae5ff37883195e7a07c434"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":95,"deletions":15,"changed_files":3}},"public":true,"created_at":"2015-01-01T15:04:42Z"} +,{"id":"2489653193","type":"PushEvent","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":{"push_id":536864965,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6b83c69ec6024bb228b571d5db14e44bc8bccd02","before":"a9c30f833de2421befdccfbb10463cfaea4a94e1","commits":[{"sha":"6b83c69ec6024bb228b571d5db14e44bc8bccd02","author":{"email":"3a0dec2eb820221561cf0f0bb7685890bb21d66c@uni-muenster.de","name":"Wittkopp"},"message":"Create README.md","distinct":true,"url":"https://api.github.com/repos/MrWitt/floatingCar/commits/6b83c69ec6024bb228b571d5db14e44bc8bccd02"}]},"public":true,"created_at":"2015-01-01T15:04:42Z"} +,{"id":"2489653194","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":6,"created_at":"2015-01-01T13:35:14Z","updated_at":"2015-01-01T15:04:41Z","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/68488570","html_url":"https://github.com/NixOS/nixpkgs/pull/5521#issuecomment-68488570","issue_url":"https://api.github.com/repos/NixOS/nixpkgs/issues/5521","id":68488570,"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:04:41Z","updated_at":"2015-01-01T15:04:41Z","body":"rebased"}},"public":true,"created_at":"2015-01-01T15:04:42Z","org":{"id":487568,"login":"NixOS","gravatar_id":"","url":"https://api.github.com/orgs/NixOS","avatar_url":"https://avatars.githubusercontent.com/u/487568?"}} +,{"id":"2489653195","type":"IssueCommentEvent","actor":{"id":5040118,"login":"newnon","gravatar_id":"","url":"https://api.github.com/users/newnon","avatar_url":"https://avatars.githubusercontent.com/u/5040118?"},"repo":{"id":1093228,"name":"cocos2d/cocos2d-x","url":"https://api.github.com/repos/cocos2d/cocos2d-x"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/cocos2d/cocos2d-x/issues/9489","labels_url":"https://api.github.com/repos/cocos2d/cocos2d-x/issues/9489/labels{/name}","comments_url":"https://api.github.com/repos/cocos2d/cocos2d-x/issues/9489/comments","events_url":"https://api.github.com/repos/cocos2d/cocos2d-x/issues/9489/events","html_url":"https://github.com/cocos2d/cocos2d-x/pull/9489","id":51884196,"number":9489,"title":"Clang static analyzer crash fix","user":{"login":"newnon","id":5040118,"avatar_url":"https://avatars.githubusercontent.com/u/5040118?v=3","gravatar_id":"","url":"https://api.github.com/users/newnon","html_url":"https://github.com/newnon","followers_url":"https://api.github.com/users/newnon/followers","following_url":"https://api.github.com/users/newnon/following{/other_user}","gists_url":"https://api.github.com/users/newnon/gists{/gist_id}","starred_url":"https://api.github.com/users/newnon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/newnon/subscriptions","organizations_url":"https://api.github.com/users/newnon/orgs","repos_url":"https://api.github.com/users/newnon/repos","events_url":"https://api.github.com/users/newnon/events{/privacy}","received_events_url":"https://api.github.com/users/newnon/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":7,"created_at":"2014-12-13T10:53:26Z","updated_at":"2015-01-01T15:04:41Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/cocos2d/cocos2d-x/pulls/9489","html_url":"https://github.com/cocos2d/cocos2d-x/pull/9489","diff_url":"https://github.com/cocos2d/cocos2d-x/pull/9489.diff","patch_url":"https://github.com/cocos2d/cocos2d-x/pull/9489.patch"},"body":"Clang static analyzer crash on this two lines\r\njust ignore it in analyzer"},"comment":{"url":"https://api.github.com/repos/cocos2d/cocos2d-x/issues/comments/68488571","html_url":"https://github.com/cocos2d/cocos2d-x/pull/9489#issuecomment-68488571","issue_url":"https://api.github.com/repos/cocos2d/cocos2d-x/issues/9489","id":68488571,"user":{"login":"newnon","id":5040118,"avatar_url":"https://avatars.githubusercontent.com/u/5040118?v=3","gravatar_id":"","url":"https://api.github.com/users/newnon","html_url":"https://github.com/newnon","followers_url":"https://api.github.com/users/newnon/followers","following_url":"https://api.github.com/users/newnon/following{/other_user}","gists_url":"https://api.github.com/users/newnon/gists{/gist_id}","starred_url":"https://api.github.com/users/newnon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/newnon/subscriptions","organizations_url":"https://api.github.com/users/newnon/orgs","repos_url":"https://api.github.com/users/newnon/repos","events_url":"https://api.github.com/users/newnon/events{/privacy}","received_events_url":"https://api.github.com/users/newnon/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:04:41Z","updated_at":"2015-01-01T15:04:41Z","body":"No i have absolutely no idea why, but i think it's a clang bug. But the simplest way to fix it just add this few lines."}},"public":true,"created_at":"2015-01-01T15:04:43Z","org":{"id":234324,"login":"cocos2d","gravatar_id":"","url":"https://api.github.com/orgs/cocos2d","avatar_url":"https://avatars.githubusercontent.com/u/234324?"}} +,{"id":"2489653199","type":"ForkEvent","actor":{"id":6512272,"login":"stevenzhangyu","gravatar_id":"","url":"https://api.github.com/users/stevenzhangyu","avatar_url":"https://avatars.githubusercontent.com/u/6512272?"},"repo":{"id":26655352,"name":"jbarrow/LambdaNet","url":"https://api.github.com/repos/jbarrow/LambdaNet"},"payload":{"forkee":{"id":28688685,"name":"LambdaNet","full_name":"stevenzhangyu/LambdaNet","owner":{"login":"stevenzhangyu","id":6512272,"avatar_url":"https://avatars.githubusercontent.com/u/6512272?v=3","gravatar_id":"","url":"https://api.github.com/users/stevenzhangyu","html_url":"https://github.com/stevenzhangyu","followers_url":"https://api.github.com/users/stevenzhangyu/followers","following_url":"https://api.github.com/users/stevenzhangyu/following{/other_user}","gists_url":"https://api.github.com/users/stevenzhangyu/gists{/gist_id}","starred_url":"https://api.github.com/users/stevenzhangyu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stevenzhangyu/subscriptions","organizations_url":"https://api.github.com/users/stevenzhangyu/orgs","repos_url":"https://api.github.com/users/stevenzhangyu/repos","events_url":"https://api.github.com/users/stevenzhangyu/events{/privacy}","received_events_url":"https://api.github.com/users/stevenzhangyu/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/stevenzhangyu/LambdaNet","description":"Purely functional artificial neural network library implemented in Haskell.","fork":true,"url":"https://api.github.com/repos/stevenzhangyu/LambdaNet","forks_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/forks","keys_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/keys{/key_id}","collaborators_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/teams","hooks_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/hooks","issue_events_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/issues/events{/number}","events_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/events","assignees_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/assignees{/user}","branches_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/branches{/branch}","tags_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/tags","blobs_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/git/refs{/sha}","trees_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/git/trees{/sha}","statuses_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/statuses/{sha}","languages_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/languages","stargazers_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/stargazers","contributors_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/contributors","subscribers_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/subscribers","subscription_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/subscription","commits_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/commits{/sha}","git_commits_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/git/commits{/sha}","comments_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/comments{/number}","issue_comment_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/issues/comments/{number}","contents_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/contents/{+path}","compare_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/compare/{base}...{head}","merges_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/merges","archive_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/downloads","issues_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/issues{/number}","pulls_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/pulls{/number}","milestones_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/milestones{/number}","notifications_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/labels{/name}","releases_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/releases{/id}","created_at":"2015-01-01T15:04:41Z","updated_at":"2015-01-01T15:04:42Z","pushed_at":"2014-12-31T20:01:39Z","git_url":"git://github.com/stevenzhangyu/LambdaNet.git","ssh_url":"git@github.com:stevenzhangyu/LambdaNet.git","clone_url":"https://github.com/stevenzhangyu/LambdaNet.git","svn_url":"https://github.com/stevenzhangyu/LambdaNet","homepage":"","size":1194,"stargazers_count":0,"watchers_count":0,"language":"Haskell","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:04:43Z"} +,{"id":"2489653200","type":"WatchEvent","actor":{"id":5717770,"login":"phyng","gravatar_id":"","url":"https://api.github.com/users/phyng","avatar_url":"https://avatars.githubusercontent.com/u/5717770?"},"repo":{"id":16545155,"name":"bordaigorl/sublime-evernote","url":"https://api.github.com/repos/bordaigorl/sublime-evernote"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:43Z"} +,{"id":"2489653203","type":"PushEvent","actor":{"id":1264698,"login":"sorra","gravatar_id":"","url":"https://api.github.com/users/sorra","avatar_url":"https://avatars.githubusercontent.com/u/1264698?"},"repo":{"id":28679728,"name":"sorra/keylity","url":"https://api.github.com/repos/sorra/keylity"},"payload":{"push_id":536864968,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5e27ea3b100bd1f9bd763b86cf399a6abf9e00c5","before":"e33b7a6116f6900583ecf82f1b134b90352ea8a0","commits":[{"sha":"5e27ea3b100bd1f9bd763b86cf399a6abf9e00c5","author":{"email":"2a0b702de5ce7c68fd37dd97e6ce0521dc3d2a76@163.com","name":"Dongqing Hu"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/sorra/keylity/commits/5e27ea3b100bd1f9bd763b86cf399a6abf9e00c5"}]},"public":true,"created_at":"2015-01-01T15:04:43Z"} +,{"id":"2489653202","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":536864967,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6fe11207c60e9f0762c51e41f0c305a75d8b3523","before":"59fdcb1091825ece541d97bf483e6cb23263b371","commits":[{"sha":"6fe11207c60e9f0762c51e41f0c305a75d8b3523","author":{"email":"aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d@lyftclothing.com","name":"Jacob Gibbs"},"message":"Site updated at 2015-01-01 15:04:31 UTC","distinct":true,"url":"https://api.github.com/repos/lyftclothing/lyftclothing.github.io/commits/6fe11207c60e9f0762c51e41f0c305a75d8b3523"}]},"public":true,"created_at":"2015-01-01T15:04:43Z"} +,{"id":"2489653209","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":23067055,"name":"cloudify-cosmo/cloudify-diamond-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-diamond-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify diamond monitoring plugin","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:43Z","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":"2489653210","type":"PushEvent","actor":{"id":4339651,"login":"MJKWoolnough","gravatar_id":"","url":"https://api.github.com/users/MJKWoolnough","avatar_url":"https://avatars.githubusercontent.com/u/4339651?"},"repo":{"id":26171241,"name":"MJKWoolnough/academy-chauffeurs","url":"https://api.github.com/repos/MJKWoolnough/academy-chauffeurs"},"payload":{"push_id":536864969,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bc2e624d3af1637ed8f14c4fff6467d90ed3fa42","before":"f4b508f63db5de46f6da060fd6489b207e493047","commits":[{"sha":"bc2e624d3af1637ed8f14c4fff6467d90ed3fa42","author":{"email":"b6c6ef2ac07ef6320c51ba6e6ced359ecd6a371a@gmail.com","name":"Michael Woolnough"},"message":"Added missing return","distinct":true,"url":"https://api.github.com/repos/MJKWoolnough/academy-chauffeurs/commits/bc2e624d3af1637ed8f14c4fff6467d90ed3fa42"}]},"public":true,"created_at":"2015-01-01T15:04:43Z"} +,{"id":"2489653211","type":"PushEvent","actor":{"id":1908185,"login":"kaiwangchen","gravatar_id":"","url":"https://api.github.com/users/kaiwangchen","avatar_url":"https://avatars.githubusercontent.com/u/1908185?"},"repo":{"id":28043477,"name":"kaiwangchen/learn_python_the_hard_way_3rd_edition","url":"https://api.github.com/repos/kaiwangchen/learn_python_the_hard_way_3rd_edition"},"payload":{"push_id":536864970,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"cd904bfdd7e773ab764be48c6174c0e01c4d0862","before":"e88a0141a9dadbcad303d2518867971658e0a452","commits":[{"sha":"e37b24c0143ddfec92ebaf9196f77c5d5b7c88ec","author":{"email":"916a4a5b909120b67e6b09a86dd6dee26770808f@gmail.com","name":"Chen Kaiwang"},"message":"ex 33 ~ 40","distinct":true,"url":"https://api.github.com/repos/kaiwangchen/learn_python_the_hard_way_3rd_edition/commits/e37b24c0143ddfec92ebaf9196f77c5d5b7c88ec"},{"sha":"cd904bfdd7e773ab764be48c6174c0e01c4d0862","author":{"email":"916a4a5b909120b67e6b09a86dd6dee26770808f@gmail.com","name":"Chen Kaiwang"},"message":"ex 41 ~ 49","distinct":true,"url":"https://api.github.com/repos/kaiwangchen/learn_python_the_hard_way_3rd_edition/commits/cd904bfdd7e773ab764be48c6174c0e01c4d0862"}]},"public":true,"created_at":"2015-01-01T15:04:43Z"} +,{"id":"2489653212","type":"WatchEvent","actor":{"id":3904348,"login":"floscher","gravatar_id":"","url":"https://api.github.com/users/floscher","avatar_url":"https://avatars.githubusercontent.com/u/3904348?"},"repo":{"id":1725199,"name":"github/linguist","url":"https://api.github.com/repos/github/linguist"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:43Z","org":{"id":9919,"login":"github","gravatar_id":"","url":"https://api.github.com/orgs/github","avatar_url":"https://avatars.githubusercontent.com/u/9919?"}} +,{"id":"2489653214","type":"PushEvent","actor":{"id":1344072,"login":"frasator","gravatar_id":"","url":"https://api.github.com/users/frasator","avatar_url":"https://avatars.githubusercontent.com/u/1344072?"},"repo":{"id":7691091,"name":"opencb/cell-maps","url":"https://api.github.com/repos/opencb/cell-maps"},"payload":{"push_id":536864971,"size":1,"distinct_size":1,"ref":"refs/heads/feature/opencga-0.3","head":"f60392a25e22e179e6828992438cf6ed701bf366","before":"bd11b0c0e81308514b001c337ff6f815b2dc382b","commits":[{"sha":"f60392a25e22e179e6828992438cf6ed701bf366","author":{"email":"268735c099a7f309af1c2b36bb84632ef0b691e7@gmail.com","name":"frasator"},"message":"added browser check alert","distinct":true,"url":"https://api.github.com/repos/opencb/cell-maps/commits/f60392a25e22e179e6828992438cf6ed701bf366"}]},"public":true,"created_at":"2015-01-01T15:04:43Z","org":{"id":5293871,"login":"opencb","gravatar_id":"","url":"https://api.github.com/orgs/opencb","avatar_url":"https://avatars.githubusercontent.com/u/5293871?"}} +,{"id":"2489653215","type":"PushEvent","actor":{"id":76243,"login":"GerryG","gravatar_id":"","url":"https://api.github.com/users/GerryG","avatar_url":"https://avatars.githubusercontent.com/u/76243?"},"repo":{"id":182039,"name":"GerryG/wagn","url":"https://api.github.com/repos/GerryG/wagn"},"payload":{"push_id":536864972,"size":1,"distinct_size":1,"ref":"refs/heads/card-gem","head":"21d62ed232a1b54f23ea7f916975a62be0b324fd","before":"02c617f30d2c7773f7137d5464bc25e2022cfd6f","commits":[{"sha":"21d62ed232a1b54f23ea7f916975a62be0b324fd","author":{"email":"8cbdf1d1e39600f8ac48b4560f249f08647aaa47@tribune.com","name":"Gerry Gleason"},"message":"Introduce module Cardio, loading/config working pretty nicely now.","distinct":true,"url":"https://api.github.com/repos/GerryG/wagn/commits/21d62ed232a1b54f23ea7f916975a62be0b324fd"}]},"public":true,"created_at":"2015-01-01T15:04:43Z"} +,{"id":"2489653216","type":"PushEvent","actor":{"id":3815749,"login":"ofsole","gravatar_id":"","url":"https://api.github.com/users/ofsole","avatar_url":"https://avatars.githubusercontent.com/u/3815749?"},"repo":{"id":23965142,"name":"ofsole/dokuwiki","url":"https://api.github.com/repos/ofsole/dokuwiki"},"payload":{"push_id":536864973,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c8bfb06b302b5bb7bc2ae08ecc0d8ff08b82a417","before":"b561a78dbb572d6e1fa312032edebc35feb3e0a2","commits":[{"sha":"c8bfb06b302b5bb7bc2ae08ecc0d8ff08b82a417","author":{"email":"8ffb39dcdf151712915ecd300127e20b26b9ae1e@ericsson.com","name":"elvis.cai"},"message":"update Thu Jan 1 23:00:01 CST 2015","distinct":true,"url":"https://api.github.com/repos/ofsole/dokuwiki/commits/c8bfb06b302b5bb7bc2ae08ecc0d8ff08b82a417"}]},"public":true,"created_at":"2015-01-01T15:04:43Z"} +,{"id":"2489653217","type":"PushEvent","actor":{"id":218546,"login":"lebedov","gravatar_id":"","url":"https://api.github.com/users/lebedov","avatar_url":"https://avatars.githubusercontent.com/u/218546?"},"repo":{"id":3631164,"name":"lebedov/chooser","url":"https://api.github.com/repos/lebedov/chooser"},"payload":{"push_id":536864974,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"5f861ba7c438f7b62a042be49d3ebec7890956be","before":"76e8bea9782cf091b2bd57e90c4d3bb68ac9ba69","commits":[{"sha":"d4101877bb3337121ff747598063709d3cbe0e30","author":{"email":"ca5ec77d6f2bd7cd889ddc1f7121a5e11d4c64f6@columbia.edu","name":"Lev Givon"},"message":"Add QupZilla, improve docs, update ez_setup, update copyright date.","distinct":true,"url":"https://api.github.com/repos/lebedov/chooser/commits/d4101877bb3337121ff747598063709d3cbe0e30"},{"sha":"5f861ba7c438f7b62a042be49d3ebec7890956be","author":{"email":"ca5ec77d6f2bd7cd889ddc1f7121a5e11d4c64f6@columbia.edu","name":"Lev Givon"},"message":"Add customized sdist command to automatically build man page when building sdist.","distinct":true,"url":"https://api.github.com/repos/lebedov/chooser/commits/5f861ba7c438f7b62a042be49d3ebec7890956be"}]},"public":true,"created_at":"2015-01-01T15:04:43Z"} +,{"id":"2489653220","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":20876193,"name":"cloudify-cosmo/cloudify-fabric-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-fabric-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:43Z","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":"2489653223","type":"PushEvent","actor":{"id":4601085,"login":"xsmart","gravatar_id":"","url":"https://api.github.com/users/xsmart","avatar_url":"https://avatars.githubusercontent.com/u/4601085?"},"repo":{"id":27301995,"name":"xsmart/ve","url":"https://api.github.com/repos/xsmart/ve"},"payload":{"push_id":536864979,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"c3ddf8946020002df518ad2c4b3a42005a76b651","before":"3d781bff0592d7d8dbfb0db5bffdc271a63ba74a","commits":[{"sha":"ed2d61cd65c508154ee67ae38daef63baf6f7955","author":{"email":"a08991db6e0eee880260138e16f052bca1959810@163.com","name":"xsmart"},"message":"add hdfs","distinct":true,"url":"https://api.github.com/repos/xsmart/ve/commits/ed2d61cd65c508154ee67ae38daef63baf6f7955"},{"sha":"3aa35f54aba74396fdf747f6dd8f189895f7804e","author":{"email":"a08991db6e0eee880260138e16f052bca1959810@163.com","name":"xsmart"},"message":"add hdfs","distinct":true,"url":"https://api.github.com/repos/xsmart/ve/commits/3aa35f54aba74396fdf747f6dd8f189895f7804e"},{"sha":"c3ddf8946020002df518ad2c4b3a42005a76b651","author":{"email":"a08991db6e0eee880260138e16f052bca1959810@163.com","name":"xsmart"},"message":"add hdfs vdb","distinct":true,"url":"https://api.github.com/repos/xsmart/ve/commits/c3ddf8946020002df518ad2c4b3a42005a76b651"}]},"public":true,"created_at":"2015-01-01T15:04:43Z"} +,{"id":"2489653228","type":"PushEvent","actor":{"id":2964928,"login":"taylorhxu","gravatar_id":"","url":"https://api.github.com/users/taylorhxu","avatar_url":"https://avatars.githubusercontent.com/u/2964928?"},"repo":{"id":25008698,"name":"taylorhxu/taylorhxu.github.io","url":"https://api.github.com/repos/taylorhxu/taylorhxu.github.io"},"payload":{"push_id":536864984,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"eb4ff5f19c6fe012784ae06b538c790a4706acdb","before":"86585d04083d80f41d730dcd8bf34b042097cbd8","commits":[{"sha":"eb4ff5f19c6fe012784ae06b538c790a4706acdb","author":{"email":"bbaab3af5605ab26fe8b9502a6ab51a673b35a8b@gmail.com","name":"Taylor Xu"},"message":"fix","distinct":true,"url":"https://api.github.com/repos/taylorhxu/taylorhxu.github.io/commits/eb4ff5f19c6fe012784ae06b538c790a4706acdb"}]},"public":true,"created_at":"2015-01-01T15:04:43Z"} +,{"id":"2489653234","type":"PushEvent","actor":{"id":853977,"login":"yous","gravatar_id":"","url":"https://api.github.com/users/yous","avatar_url":"https://avatars.githubusercontent.com/u/853977?"},"repo":{"id":25107404,"name":"yous/sawarineko","url":"https://api.github.com/repos/yous/sawarineko"},"payload":{"push_id":536864988,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"676f8a50d565a3dc2b77f2e5714e5bdcf78f5493","before":"2b03e5ddf97d8e067aacaa93705479194f8c5e29","commits":[{"sha":"9d9a3f1008806d7baf10ef467af1bc376ce22174","author":{"email":"e81a3f44f53ea94642bc84ba592fbe580ab2b0d7@gmail.com","name":"ChaYoung You"},"message":"Support Ruby 2.2","distinct":true,"url":"https://api.github.com/repos/yous/sawarineko/commits/9d9a3f1008806d7baf10ef467af1bc376ce22174"},{"sha":"676f8a50d565a3dc2b77f2e5714e5bdcf78f5493","author":{"email":"e81a3f44f53ea94642bc84ba592fbe580ab2b0d7@gmail.com","name":"ChaYoung You"},"message":"Bump RuboCop to 0.28.0","distinct":true,"url":"https://api.github.com/repos/yous/sawarineko/commits/676f8a50d565a3dc2b77f2e5714e5bdcf78f5493"}]},"public":true,"created_at":"2015-01-01T15:04:44Z"} +,{"id":"2489653237","type":"PushEvent","actor":{"id":640179,"login":"jgmalcolm","gravatar_id":"","url":"https://api.github.com/users/jgmalcolm","avatar_url":"https://avatars.githubusercontent.com/u/640179?"},"repo":{"id":22471076,"name":"jgmalcolm/erikreinertsen.github.io","url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io"},"payload":{"push_id":536864990,"size":58,"distinct_size":58,"ref":"refs/heads/master","head":"40dd4043b399e102ac12d8f5ffcacf19c22b96df","before":"281ae39a9e04da4fff9b49f5b35989642c7a8da3","commits":[{"sha":"8e3eb94925851ebac0f3aead8bb0e120671501b1","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"new draft","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/8e3eb94925851ebac0f3aead8bb0e120671501b1"},{"sha":"c457e1810b226e314e44a88a053605127c9f57d8","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"adsf","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/c457e1810b226e314e44a88a053605127c9f57d8"},{"sha":"ace39771fcd51ac871dc9fc908eb66646602ca9b","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"updates","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/ace39771fcd51ac871dc9fc908eb66646602ca9b"},{"sha":"ddf80e42a703ef609174b0b95ba55f0b38b1a530","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"added tufts","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/ddf80e42a703ef609174b0b95ba55f0b38b1a530"},{"sha":"c964c898ea90bad0f93fde490074ee93cc7182f4","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"new pic","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/c964c898ea90bad0f93fde490074ee93cc7182f4"},{"sha":"368dca0b83598669703a7986dd2febbeb9d1438c","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"updated IEMED","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/368dca0b83598669703a7986dd2febbeb9d1438c"},{"sha":"90395ef3d390b9df712e5fb5f5aa36047859d627","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"draft post on iemed","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/90395ef3d390b9df712e5fb5f5aa36047859d627"},{"sha":"0c224a333d65bb722a32fef7f548cb4afb2abb4c","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"asdf","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/0c224a333d65bb722a32fef7f548cb4afb2abb4c"},{"sha":"6a8b18654c40552e4f829b65be2ed79e231fadb4","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"edit program culture","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/6a8b18654c40552e4f829b65be2ed79e231fadb4"},{"sha":"3e22beadb076faf2313fda725ce99e5ef8af38a5","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"edits to file name","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/3e22beadb076faf2313fda725ce99e5ef8af38a5"},{"sha":"cfc1eed892722ad237c2a33edf79efa7416fcf4d","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"update pic","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/cfc1eed892722ad237c2a33edf79efa7416fcf4d"},{"sha":"6fc0391c4c540eb69280a67fdc0b40d505d38c05","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"updates to about.md","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/6fc0391c4c540eb69280a67fdc0b40d505d38c05"},{"sha":"bf5a9a890dcc34ce29bc7cb0be703cc73e84b4ed","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"update","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/bf5a9a890dcc34ce29bc7cb0be703cc73e84b4ed"},{"sha":"f58ff570eb1744e64a52bf51692f199d939deff1","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"images","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/f58ff570eb1744e64a52bf51692f199d939deff1"},{"sha":"57251a35ae4e3237934857a1903e358b269b6dbb","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"updates","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/57251a35ae4e3237934857a1903e358b269b6dbb"},{"sha":"e1aae8373b455b8dfa88c741caa4f2de8c744188","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"updates","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/e1aae8373b455b8dfa88c741caa4f2de8c744188"},{"sha":"9d6281d41c76d415c436362017965b9e233ff2b7","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"updates","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/9d6281d41c76d415c436362017965b9e233ff2b7"},{"sha":"9e277b977d042939bb28fbc297c0cf90b80bc2f1","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"updates","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/9e277b977d042939bb28fbc297c0cf90b80bc2f1"},{"sha":"563c9c71e195074e453c95885976fe87ad18da96","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"updates to about","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/563c9c71e195074e453c95885976fe87ad18da96"},{"sha":"bf3b532b555ccd4c1fd8299431139a47f5cd040e","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Ik"},"message":"updated IEMed page with outcomes data","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/bf3b532b555ccd4c1fd8299431139a47f5cd040e"}]},"public":true,"created_at":"2015-01-01T15:04:45Z"} +,{"id":"2489653239","type":"IssueCommentEvent","actor":{"id":5514202,"login":"DeeJee","gravatar_id":"","url":"https://api.github.com/users/DeeJee","avatar_url":"https://avatars.githubusercontent.com/u/5514202?"},"repo":{"id":28571307,"name":"DeeJee/VhpTimeLogger","url":"https://api.github.com/repos/DeeJee/VhpTimeLogger"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4","labels_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4/comments","events_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4/events","html_url":"https://github.com/DeeJee/VhpTimeLogger/issues/4","id":53221406,"number":4,"title":"Rapportage","user":{"login":"DeeJee","id":5514202,"avatar_url":"https://avatars.githubusercontent.com/u/5514202?v=3","gravatar_id":"","url":"https://api.github.com/users/DeeJee","html_url":"https://github.com/DeeJee","followers_url":"https://api.github.com/users/DeeJee/followers","following_url":"https://api.github.com/users/DeeJee/following{/other_user}","gists_url":"https://api.github.com/users/DeeJee/gists{/gist_id}","starred_url":"https://api.github.com/users/DeeJee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeeJee/subscriptions","organizations_url":"https://api.github.com/users/DeeJee/orgs","repos_url":"https://api.github.com/users/DeeJee/repos","events_url":"https://api.github.com/users/DeeJee/events{/privacy}","received_events_url":"https://api.github.com/users/DeeJee/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:03:57Z","updated_at":"2015-01-01T15:04:45Z","closed_at":"2015-01-01T15:04:45Z","body":"Kun je de suggestie voor het datumbereik predateren? De suggestie is nu de huidige maand, maar wat je eigenlijk wilt weten is wat er de afgelopen tijd gebeurd is. Het is beter de vorige maand als suggestie te geven. \r\n"},"comment":{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/comments/68488572","html_url":"https://github.com/DeeJee/VhpTimeLogger/issues/4#issuecomment-68488572","issue_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4","id":68488572,"user":{"login":"DeeJee","id":5514202,"avatar_url":"https://avatars.githubusercontent.com/u/5514202?v=3","gravatar_id":"","url":"https://api.github.com/users/DeeJee","html_url":"https://github.com/DeeJee","followers_url":"https://api.github.com/users/DeeJee/followers","following_url":"https://api.github.com/users/DeeJee/following{/other_user}","gists_url":"https://api.github.com/users/DeeJee/gists{/gist_id}","starred_url":"https://api.github.com/users/DeeJee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeeJee/subscriptions","organizations_url":"https://api.github.com/users/DeeJee/orgs","repos_url":"https://api.github.com/users/DeeJee/repos","events_url":"https://api.github.com/users/DeeJee/events{/privacy}","received_events_url":"https://api.github.com/users/DeeJee/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:04:45Z","updated_at":"2015-01-01T15:04:45Z","body":"De vorige maand wordt nu ingevuld maar is nog aanpasbaar."}},"public":true,"created_at":"2015-01-01T15:04:48Z"} +,{"id":"2489653240","type":"IssuesEvent","actor":{"id":5514202,"login":"DeeJee","gravatar_id":"","url":"https://api.github.com/users/DeeJee","avatar_url":"https://avatars.githubusercontent.com/u/5514202?"},"repo":{"id":28571307,"name":"DeeJee/VhpTimeLogger","url":"https://api.github.com/repos/DeeJee/VhpTimeLogger"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4","labels_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4/comments","events_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4/events","html_url":"https://github.com/DeeJee/VhpTimeLogger/issues/4","id":53221406,"number":4,"title":"Rapportage","user":{"login":"DeeJee","id":5514202,"avatar_url":"https://avatars.githubusercontent.com/u/5514202?v=3","gravatar_id":"","url":"https://api.github.com/users/DeeJee","html_url":"https://github.com/DeeJee","followers_url":"https://api.github.com/users/DeeJee/followers","following_url":"https://api.github.com/users/DeeJee/following{/other_user}","gists_url":"https://api.github.com/users/DeeJee/gists{/gist_id}","starred_url":"https://api.github.com/users/DeeJee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeeJee/subscriptions","organizations_url":"https://api.github.com/users/DeeJee/orgs","repos_url":"https://api.github.com/users/DeeJee/repos","events_url":"https://api.github.com/users/DeeJee/events{/privacy}","received_events_url":"https://api.github.com/users/DeeJee/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:03:57Z","updated_at":"2015-01-01T15:04:45Z","closed_at":"2015-01-01T15:04:45Z","body":"Kun je de suggestie voor het datumbereik predateren? De suggestie is nu de huidige maand, maar wat je eigenlijk wilt weten is wat er de afgelopen tijd gebeurd is. Het is beter de vorige maand als suggestie te geven. \r\n"}},"public":true,"created_at":"2015-01-01T15:04:48Z"} +,{"id":"2489653241","type":"WatchEvent","actor":{"id":459648,"login":"samsonasik","gravatar_id":"","url":"https://api.github.com/users/samsonasik","avatar_url":"https://avatars.githubusercontent.com/u/459648?"},"repo":{"id":28300862,"name":"padraic/humbug","url":"https://api.github.com/repos/padraic/humbug"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:48Z"} +,{"id":"2489653249","type":"IssuesEvent","actor":{"id":1665772,"login":"ondrejsika","gravatar_id":"","url":"https://api.github.com/users/ondrejsika","avatar_url":"https://avatars.githubusercontent.com/u/1665772?"},"repo":{"id":28677966,"name":"phphost/phm","url":"https://api.github.com/repos/phphost/phm"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/phphost/phm/issues/2","labels_url":"https://api.github.com/repos/phphost/phm/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/phphost/phm/issues/2/comments","events_url":"https://api.github.com/repos/phphost/phm/issues/2/events","html_url":"https://github.com/phphost/phm/issues/2","id":53221422,"number":2,"title":"postgres support","user":{"login":"ondrejsika","id":1665772,"avatar_url":"https://avatars.githubusercontent.com/u/1665772?v=3","gravatar_id":"","url":"https://api.github.com/users/ondrejsika","html_url":"https://github.com/ondrejsika","followers_url":"https://api.github.com/users/ondrejsika/followers","following_url":"https://api.github.com/users/ondrejsika/following{/other_user}","gists_url":"https://api.github.com/users/ondrejsika/gists{/gist_id}","starred_url":"https://api.github.com/users/ondrejsika/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ondrejsika/subscriptions","organizations_url":"https://api.github.com/users/ondrejsika/orgs","repos_url":"https://api.github.com/users/ondrejsika/repos","events_url":"https://api.github.com/users/ondrejsika/events{/privacy}","received_events_url":"https://api.github.com/users/ondrejsika/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:04:47Z","updated_at":"2015-01-01T15:04:47Z","closed_at":null,"body":""}},"public":true,"created_at":"2015-01-01T15:04:48Z","org":{"id":5645680,"login":"phphost","gravatar_id":"","url":"https://api.github.com/orgs/phphost","avatar_url":"https://avatars.githubusercontent.com/u/5645680?"}} +,{"id":"2489653250","type":"IssuesEvent","actor":{"id":3109892,"login":"JohnnyCrazy","gravatar_id":"","url":"https://api.github.com/users/JohnnyCrazy","avatar_url":"https://avatars.githubusercontent.com/u/3109892?"},"repo":{"id":27866137,"name":"pdaddyo/soundbounce","url":"https://api.github.com/repos/pdaddyo/soundbounce"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/pdaddyo/soundbounce/issues/137","labels_url":"https://api.github.com/repos/pdaddyo/soundbounce/issues/137/labels{/name}","comments_url":"https://api.github.com/repos/pdaddyo/soundbounce/issues/137/comments","events_url":"https://api.github.com/repos/pdaddyo/soundbounce/issues/137/events","html_url":"https://github.com/pdaddyo/soundbounce/issues/137","id":53221423,"number":137,"title":"Implement a Server-Database","user":{"login":"JohnnyCrazy","id":3109892,"avatar_url":"https://avatars.githubusercontent.com/u/3109892?v=3","gravatar_id":"","url":"https://api.github.com/users/JohnnyCrazy","html_url":"https://github.com/JohnnyCrazy","followers_url":"https://api.github.com/users/JohnnyCrazy/followers","following_url":"https://api.github.com/users/JohnnyCrazy/following{/other_user}","gists_url":"https://api.github.com/users/JohnnyCrazy/gists{/gist_id}","starred_url":"https://api.github.com/users/JohnnyCrazy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JohnnyCrazy/subscriptions","organizations_url":"https://api.github.com/users/JohnnyCrazy/orgs","repos_url":"https://api.github.com/users/JohnnyCrazy/repos","events_url":"https://api.github.com/users/JohnnyCrazy/events{/privacy}","received_events_url":"https://api.github.com/users/JohnnyCrazy/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:04:47Z","updated_at":"2015-01-01T15:04:47Z","closed_at":null,"body":"Hey,\r\n\r\nAs I opened `rooms.json` I already thought my browser crashed :stuck_out_tongue_winking_eye: \r\n\r\nIt needs some kind of Database, I would probably go for [Redis](http://redis.io/) since it has a fast access time and would fit into the project. (Although it's not good to use if the host-systems RAM is not high enough, alternative for Redis would be [MongoDB](www.mongodb.org))\r\n\r\nIf you accept PRs, maybe I can look into it and implement some stuff.\r\n\r\nGreetings!"}},"public":true,"created_at":"2015-01-01T15:04:48Z"} +,{"id":"2489653251","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":20876193,"name":"cloudify-cosmo/cloudify-fabric-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-fabric-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"For running fabric tasks or commands from the manager","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:48Z","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":"2489653253","type":"CreateEvent","actor":{"id":7875273,"login":"Paz23","gravatar_id":"","url":"https://api.github.com/users/Paz23","avatar_url":"https://avatars.githubusercontent.com/u/7875273?"},"repo":{"id":28688686,"name":"Paz23/cd_mongoose_dashboard","url":"https://api.github.com/repos/Paz23/cd_mongoose_dashboard"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"node.js w/mongodb & mongoose - basic CRUD operations","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:48Z"} +,{"id":"2489653255","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":24059140,"name":"cloudify-cosmo/cloudify-amqp-influxdb","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-amqp-influxdb"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:48Z","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":"2489653257","type":"PushEvent","actor":{"id":1830959,"login":"zebMcCorkle","gravatar_id":"","url":"https://api.github.com/users/zebMcCorkle","avatar_url":"https://avatars.githubusercontent.com/u/1830959?"},"repo":{"id":28688375,"name":"zebMcCorkle/ecocc-server","url":"https://api.github.com/repos/zebMcCorkle/ecocc-server"},"payload":{"push_id":536864993,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5d170eedc08b0497ae37394da60131694f161b86","before":"4e54ad0c27d5e051cc2c669f7b50998674ad8118","commits":[{"sha":"5d170eedc08b0497ae37394da60131694f161b86","author":{"email":"669d9dedf3e9850c1e91eac4c93360c03ab812cb@brenhamk-12.net","name":"unknown"},"message":"More Heroku compatibility and also commit.sh for convienence.","distinct":true,"url":"https://api.github.com/repos/zebMcCorkle/ecocc-server/commits/5d170eedc08b0497ae37394da60131694f161b86"}]},"public":true,"created_at":"2015-01-01T15:04:48Z"} +,{"id":"2489653260","type":"PushEvent","actor":{"id":2549491,"login":"Waterstrong","gravatar_id":"","url":"https://api.github.com/users/Waterstrong","avatar_url":"https://avatars.githubusercontent.com/u/2549491?"},"repo":{"id":28564179,"name":"Waterstrong/refactor-fragment","url":"https://api.github.com/repos/Waterstrong/refactor-fragment"},"payload":{"push_id":536864996,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ccc5a7d53966626328b7c9aac491ff70fa12cd68","before":"da36460c38848307372211d9a713aff5e931ede8","commits":[{"sha":"ccc5a7d53966626328b7c9aac491ff70fa12cd68","author":{"email":"6ee526f11c56f8e79aa1b59f3fc41cc903efdef0@thoughtworks.com","name":"Waterstrong"},"message":"[Waterstrong]: add Cruncher ready for refactor","distinct":true,"url":"https://api.github.com/repos/Waterstrong/refactor-fragment/commits/ccc5a7d53966626328b7c9aac491ff70fa12cd68"}]},"public":true,"created_at":"2015-01-01T15:04:48Z"} +,{"id":"2489653261","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":28688286,"name":"wix/generator-react-templates","url":"https://api.github.com/repos/wix/generator-react-templates"},"payload":{"push_id":536864997,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"71ba2885c2f0e56607f3a6a72cf3422641d1c666","before":"654edbaf6422f0a781e81d82e9b0ddac5b047281","commits":[{"sha":"71ba2885c2f0e56607f3a6a72cf3422641d1c666","author":{"email":"e64918f1cbd60416febfa2aa253965ba87b1896f@wix.com","name":"ido"},"message":"fix github link","distinct":true,"url":"https://api.github.com/repos/wix/generator-react-templates/commits/71ba2885c2f0e56607f3a6a72cf3422641d1c666"}]},"public":true,"created_at":"2015-01-01T15:04:48Z","org":{"id":686511,"login":"wix","gravatar_id":"","url":"https://api.github.com/orgs/wix","avatar_url":"https://avatars.githubusercontent.com/u/686511?"}} +,{"id":"2489653268","type":"DeleteEvent","actor":{"id":3543067,"login":"goutnet","gravatar_id":"","url":"https://api.github.com/users/goutnet","avatar_url":"https://avatars.githubusercontent.com/u/3543067?"},"repo":{"id":28285840,"name":"goutnet/concrete5-5.7.0","url":"https://api.github.com/repos/goutnet/concrete5-5.7.0"},"payload":{"ref":"minitrue","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:49Z"} +,{"id":"2489653281","type":"CreateEvent","actor":{"id":2987505,"login":"syssys123","gravatar_id":"","url":"https://api.github.com/users/syssys123","avatar_url":"https://avatars.githubusercontent.com/u/2987505?"},"repo":{"id":28688687,"name":"syssys123/apiproject20141","url":"https://api.github.com/repos/syssys123/apiproject20141"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"cloudpiapiClientTest create!","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:53Z"} +,{"id":"2489653284","type":"IssuesEvent","actor":{"id":7223093,"login":"jgermond","gravatar_id":"","url":"https://api.github.com/users/jgermond","avatar_url":"https://avatars.githubusercontent.com/u/7223093?"},"repo":{"id":25916085,"name":"Chuck-Berry/ProjetIA_Quarto","url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto/issues/2","labels_url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto/issues/2/comments","events_url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto/issues/2/events","html_url":"https://github.com/Chuck-Berry/ProjetIA_Quarto/issues/2","id":53221425,"number":2,"title":"Erreur lors on choisit une pièce au lieu de celle déjà choisie","user":{"login":"jgermond","id":7223093,"avatar_url":"https://avatars.githubusercontent.com/u/7223093?v=3","gravatar_id":"","url":"https://api.github.com/users/jgermond","html_url":"https://github.com/jgermond","followers_url":"https://api.github.com/users/jgermond/followers","following_url":"https://api.github.com/users/jgermond/following{/other_user}","gists_url":"https://api.github.com/users/jgermond/gists{/gist_id}","starred_url":"https://api.github.com/users/jgermond/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jgermond/subscriptions","organizations_url":"https://api.github.com/users/jgermond/orgs","repos_url":"https://api.github.com/users/jgermond/repos","events_url":"https://api.github.com/users/jgermond/events{/privacy}","received_events_url":"https://api.github.com/users/jgermond/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:04:53Z","updated_at":"2015-01-01T15:04:53Z","closed_at":null,"body":"Lorsque le tour du joueur commence, il doit placé la pièce choisie par l'IA lors du tour précédent.\r\nCependant, l'application permet de choisir une pièce sans avoir placer la précédente. Ce qui provoque une erreur et bloque l'application."}},"public":true,"created_at":"2015-01-01T15:04:53Z"} +,{"id":"2489653285","type":"PushEvent","actor":{"id":510643,"login":"zear","gravatar_id":"","url":"https://api.github.com/users/zear","avatar_url":"https://avatars.githubusercontent.com/u/510643?"},"repo":{"id":23046099,"name":"zear/fled","url":"https://api.github.com/repos/zear/fled"},"payload":{"push_id":536865013,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a1b048a2d677b67ba36ce22f65240e1ec029c9aa","before":"3001bb21b9d4f4caaaf89e4c010ecea3439eac11","commits":[{"sha":"a1b048a2d677b67ba36ce22f65240e1ec029c9aa","author":{"email":"e9548e40587e209076ac078126b5598cb2ea17be@gmail.com","name":"Zear"},"message":"Replace a hack with a clearner solution for program exit through the menu.","distinct":true,"url":"https://api.github.com/repos/zear/fled/commits/a1b048a2d677b67ba36ce22f65240e1ec029c9aa"}]},"public":true,"created_at":"2015-01-01T15:04:53Z"} +,{"id":"2489653286","type":"IssuesEvent","actor":{"id":546301,"login":"unicomp21","gravatar_id":"","url":"https://api.github.com/users/unicomp21","avatar_url":"https://avatars.githubusercontent.com/u/546301?"},"repo":{"id":17989040,"name":"brendan-duncan/dartray","url":"https://api.github.com/repos/brendan-duncan/dartray"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/brendan-duncan/dartray/issues/14","labels_url":"https://api.github.com/repos/brendan-duncan/dartray/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/brendan-duncan/dartray/issues/14/comments","events_url":"https://api.github.com/repos/brendan-duncan/dartray/issues/14/events","html_url":"https://github.com/brendan-duncan/dartray/issues/14","id":53221424,"number":14,"title":"Is this v2 of PBRT?","user":{"login":"unicomp21","id":546301,"avatar_url":"https://avatars.githubusercontent.com/u/546301?v=3","gravatar_id":"","url":"https://api.github.com/users/unicomp21","html_url":"https://github.com/unicomp21","followers_url":"https://api.github.com/users/unicomp21/followers","following_url":"https://api.github.com/users/unicomp21/following{/other_user}","gists_url":"https://api.github.com/users/unicomp21/gists{/gist_id}","starred_url":"https://api.github.com/users/unicomp21/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/unicomp21/subscriptions","organizations_url":"https://api.github.com/users/unicomp21/orgs","repos_url":"https://api.github.com/users/unicomp21/repos","events_url":"https://api.github.com/users/unicomp21/events{/privacy}","received_events_url":"https://api.github.com/users/unicomp21/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:04:53Z","updated_at":"2015-01-01T15:04:53Z","closed_at":null,"body":""}},"public":true,"created_at":"2015-01-01T15:04:53Z"} +,{"id":"2489653283","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":24059140,"name":"cloudify-cosmo/cloudify-amqp-influxdb","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-amqp-influxdb"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"A Cloudify specific transport to consume events from RMQ and push them to InfluxDB","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:53Z","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":"2489653289","type":"PushEvent","actor":{"id":5665732,"login":"greensn0w","gravatar_id":"","url":"https://api.github.com/users/greensn0w","avatar_url":"https://avatars.githubusercontent.com/u/5665732?"},"repo":{"id":28674563,"name":"greensn0w/Gryphon","url":"https://api.github.com/repos/greensn0w/Gryphon"},"payload":{"push_id":536865014,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5b712498335a114da804e9ed2e9fc36a77936157","before":"f896bd02417b81dd62f959374f196a0c1ea83484","commits":[{"sha":"5b712498335a114da804e9ed2e9fc36a77936157","author":{"email":"1b1e6d1f14f247253858e155eaaffaae82ee786b@aol.de","name":"Lukas Breuer"},"message":"Update .gitignore","distinct":true,"url":"https://api.github.com/repos/greensn0w/Gryphon/commits/5b712498335a114da804e9ed2e9fc36a77936157"}]},"public":true,"created_at":"2015-01-01T15:04:53Z"} +,{"id":"2489653288","type":"ForkEvent","actor":{"id":2099681,"login":"UmpPCPL","gravatar_id":"","url":"https://api.github.com/users/UmpPCPL","avatar_url":"https://avatars.githubusercontent.com/u/2099681?"},"repo":{"id":1217614,"name":"xbmc/xbmc","url":"https://api.github.com/repos/xbmc/xbmc"},"payload":{"forkee":{"id":28688688,"name":"xbmc","full_name":"UmpPCPL/xbmc","owner":{"login":"UmpPCPL","id":2099681,"avatar_url":"https://avatars.githubusercontent.com/u/2099681?v=3","gravatar_id":"","url":"https://api.github.com/users/UmpPCPL","html_url":"https://github.com/UmpPCPL","followers_url":"https://api.github.com/users/UmpPCPL/followers","following_url":"https://api.github.com/users/UmpPCPL/following{/other_user}","gists_url":"https://api.github.com/users/UmpPCPL/gists{/gist_id}","starred_url":"https://api.github.com/users/UmpPCPL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/UmpPCPL/subscriptions","organizations_url":"https://api.github.com/users/UmpPCPL/orgs","repos_url":"https://api.github.com/users/UmpPCPL/repos","events_url":"https://api.github.com/users/UmpPCPL/events{/privacy}","received_events_url":"https://api.github.com/users/UmpPCPL/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/UmpPCPL/xbmc","description":"Kodi Main Repository - By using this code you agree with our policy and will follow the GPLv2 license as included","fork":true,"url":"https://api.github.com/repos/UmpPCPL/xbmc","forks_url":"https://api.github.com/repos/UmpPCPL/xbmc/forks","keys_url":"https://api.github.com/repos/UmpPCPL/xbmc/keys{/key_id}","collaborators_url":"https://api.github.com/repos/UmpPCPL/xbmc/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/UmpPCPL/xbmc/teams","hooks_url":"https://api.github.com/repos/UmpPCPL/xbmc/hooks","issue_events_url":"https://api.github.com/repos/UmpPCPL/xbmc/issues/events{/number}","events_url":"https://api.github.com/repos/UmpPCPL/xbmc/events","assignees_url":"https://api.github.com/repos/UmpPCPL/xbmc/assignees{/user}","branches_url":"https://api.github.com/repos/UmpPCPL/xbmc/branches{/branch}","tags_url":"https://api.github.com/repos/UmpPCPL/xbmc/tags","blobs_url":"https://api.github.com/repos/UmpPCPL/xbmc/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/UmpPCPL/xbmc/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/UmpPCPL/xbmc/git/refs{/sha}","trees_url":"https://api.github.com/repos/UmpPCPL/xbmc/git/trees{/sha}","statuses_url":"https://api.github.com/repos/UmpPCPL/xbmc/statuses/{sha}","languages_url":"https://api.github.com/repos/UmpPCPL/xbmc/languages","stargazers_url":"https://api.github.com/repos/UmpPCPL/xbmc/stargazers","contributors_url":"https://api.github.com/repos/UmpPCPL/xbmc/contributors","subscribers_url":"https://api.github.com/repos/UmpPCPL/xbmc/subscribers","subscription_url":"https://api.github.com/repos/UmpPCPL/xbmc/subscription","commits_url":"https://api.github.com/repos/UmpPCPL/xbmc/commits{/sha}","git_commits_url":"https://api.github.com/repos/UmpPCPL/xbmc/git/commits{/sha}","comments_url":"https://api.github.com/repos/UmpPCPL/xbmc/comments{/number}","issue_comment_url":"https://api.github.com/repos/UmpPCPL/xbmc/issues/comments/{number}","contents_url":"https://api.github.com/repos/UmpPCPL/xbmc/contents/{+path}","compare_url":"https://api.github.com/repos/UmpPCPL/xbmc/compare/{base}...{head}","merges_url":"https://api.github.com/repos/UmpPCPL/xbmc/merges","archive_url":"https://api.github.com/repos/UmpPCPL/xbmc/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/UmpPCPL/xbmc/downloads","issues_url":"https://api.github.com/repos/UmpPCPL/xbmc/issues{/number}","pulls_url":"https://api.github.com/repos/UmpPCPL/xbmc/pulls{/number}","milestones_url":"https://api.github.com/repos/UmpPCPL/xbmc/milestones{/number}","notifications_url":"https://api.github.com/repos/UmpPCPL/xbmc/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/UmpPCPL/xbmc/labels{/name}","releases_url":"https://api.github.com/repos/UmpPCPL/xbmc/releases{/id}","created_at":"2015-01-01T15:04:53Z","updated_at":"2015-01-01T13:58:32Z","pushed_at":"2015-01-01T13:58:32Z","git_url":"git://github.com/UmpPCPL/xbmc.git","ssh_url":"git@github.com:UmpPCPL/xbmc.git","clone_url":"https://github.com/UmpPCPL/xbmc.git","svn_url":"https://github.com/UmpPCPL/xbmc","homepage":"http://kodi.wiki/view/Official:Trademark_Policy","size":1794360,"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:04:53Z","org":{"id":199122,"login":"xbmc","gravatar_id":"","url":"https://api.github.com/orgs/xbmc","avatar_url":"https://avatars.githubusercontent.com/u/199122?"}} +,{"id":"2489653291","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":536865016,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2e8c17d3aef56256b908537e26885343a6ff5c90","before":"8806028a516de60cbbcbee90bcef66080540a826","commits":[{"sha":"2e8c17d3aef56256b908537e26885343a6ff5c90","author":{"email":"cbb7353e6d953ef360baf960c122346276c6e320@hudson.bz","name":"Patrick Hudson"},"message":"Scripted auto-commit on change (2015-01-01 10:04:51) by gitwatch.sh","distinct":true,"url":"https://api.github.com/repos/patrick-hudson/EggDrop/commits/2e8c17d3aef56256b908537e26885343a6ff5c90"}]},"public":true,"created_at":"2015-01-01T15:04:53Z"} +,{"id":"2489653292","type":"ReleaseEvent","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":{"action":"published","release":{"url":"https://api.github.com/repos/hex7c0/logger-request-cli/releases/818684","assets_url":"https://api.github.com/repos/hex7c0/logger-request-cli/releases/818684/assets","upload_url":"https://uploads.github.com/repos/hex7c0/logger-request-cli/releases/818684/assets{?name}","html_url":"https://github.com/hex7c0/logger-request-cli/releases/tag/1.1.14","id":818684,"tag_name":"1.1.14","target_commitish":"master","name":"v1.1.14","draft":false,"author":{"login":"hex7c0","id":4419146,"avatar_url":"https://avatars.githubusercontent.com/u/4419146?v=3","gravatar_id":"","url":"https://api.github.com/users/hex7c0","html_url":"https://github.com/hex7c0","followers_url":"https://api.github.com/users/hex7c0/followers","following_url":"https://api.github.com/users/hex7c0/following{/other_user}","gists_url":"https://api.github.com/users/hex7c0/gists{/gist_id}","starred_url":"https://api.github.com/users/hex7c0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hex7c0/subscriptions","organizations_url":"https://api.github.com/users/hex7c0/orgs","repos_url":"https://api.github.com/users/hex7c0/repos","events_url":"https://api.github.com/users/hex7c0/events{/privacy}","received_events_url":"https://api.github.com/users/hex7c0/received_events","type":"User","site_admin":false},"prerelease":false,"created_at":"2015-01-01T15:00:40Z","published_at":"2015-01-01T15:04:53Z","assets":[],"tarball_url":"https://api.github.com/repos/hex7c0/logger-request-cli/tarball/1.1.14","zipball_url":"https://api.github.com/repos/hex7c0/logger-request-cli/zipball/1.1.14","body":"* Update devDependencies"}},"public":true,"created_at":"2015-01-01T15:04:53Z"} +,{"id":"2489653293","type":"CreateEvent","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":{"ref":"1.1.14","ref_type":"tag","master_branch":"master","description":"parser for logger request for Nodejs","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:53Z"} +,{"id":"2489653294","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":24557021,"name":"cloudify-cosmo/cloudify-manager-blueprints","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager-blueprints"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:53Z","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":"2489653295","type":"PushEvent","actor":{"id":8266914,"login":"Privatik3","gravatar_id":"","url":"https://api.github.com/users/Privatik3","avatar_url":"https://avatars.githubusercontent.com/u/8266914?"},"repo":{"id":28636302,"name":"Privatik3/anime-parser","url":"https://api.github.com/repos/Privatik3/anime-parser"},"payload":{"push_id":536865018,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ee19b3c5006c4a17a1e926b6c7e3124799e78b90","before":"ec4968964875cebed66c7bea95453f833499b715","commits":[{"sha":"ee19b3c5006c4a17a1e926b6c7e3124799e78b90","author":{"email":"3afc32889bce9984cd9f61213165940a465332cb@yandex.ru","name":"Privatik3"},"message":"delete idea file","distinct":true,"url":"https://api.github.com/repos/Privatik3/anime-parser/commits/ee19b3c5006c4a17a1e926b6c7e3124799e78b90"}]},"public":true,"created_at":"2015-01-01T15:04:53Z"} +,{"id":"2489653296","type":"PushEvent","actor":{"id":1475489,"login":"moldcraft","gravatar_id":"","url":"https://api.github.com/users/moldcraft","avatar_url":"https://avatars.githubusercontent.com/u/1475489?"},"repo":{"id":19216484,"name":"moldcraft/NotificationsBundle","url":"https://api.github.com/repos/moldcraft/NotificationsBundle"},"payload":{"push_id":536865019,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bc579d0ca20427925e92d8b7f6ee3a5589c85b04","before":"48fad3144b4193abb7cbe3fa4800a9389d6ce313","commits":[{"sha":"bc579d0ca20427925e92d8b7f6ee3a5589c85b04","author":{"email":"ca75e330fb3b73a476fbc2a7cb7daa1c10db421d@email.com","name":"moldcraft"},"message":"fixes","distinct":true,"url":"https://api.github.com/repos/moldcraft/NotificationsBundle/commits/bc579d0ca20427925e92d8b7f6ee3a5589c85b04"}]},"public":true,"created_at":"2015-01-01T15:04:53Z"} +,{"id":"2489653297","type":"PushEvent","actor":{"id":6264291,"login":"dKab","gravatar_id":"","url":"https://api.github.com/users/dKab","avatar_url":"https://avatars.githubusercontent.com/u/6264291?"},"repo":{"id":28271921,"name":"dKab/jasmine-tests","url":"https://api.github.com/repos/dKab/jasmine-tests"},"payload":{"push_id":536865020,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"b85a628d9429c34c8dc1e8240d7cb486136edc17","before":"16de4d6e76533a221b07e66179530b3494a2a1fa","commits":[{"sha":"b85a628d9429c34c8dc1e8240d7cb486136edc17","author":{"email":"547e00975902c3dbc50faaea4b09255e347bd22f@gmail.com","name":"DmitriyKab"},"message":"add 7 task","distinct":true,"url":"https://api.github.com/repos/dKab/jasmine-tests/commits/b85a628d9429c34c8dc1e8240d7cb486136edc17"}]},"public":true,"created_at":"2015-01-01T15:04:53Z"} +,{"id":"2489653299","type":"PushEvent","actor":{"id":914337,"login":"briangaid","gravatar_id":"","url":"https://api.github.com/users/briangaid","avatar_url":"https://avatars.githubusercontent.com/u/914337?"},"repo":{"id":10535450,"name":"briangaid/briangaid.github.io","url":"https://api.github.com/repos/briangaid/briangaid.github.io"},"payload":{"push_id":536865022,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a69ccff25812d091c75d4221cea4f04080126024","before":"5413bba5eea0fbef6ccba3a8b1684c51633d0a84","commits":[{"sha":"a69ccff25812d091c75d4221cea4f04080126024","author":{"email":"0d212fa24a03354e8bb9a9c2e4138446e4e601cf@users.noreply.github.com","name":"Brian Gaid"},"message":"alphabetical order","distinct":true,"url":"https://api.github.com/repos/briangaid/briangaid.github.io/commits/a69ccff25812d091c75d4221cea4f04080126024"}]},"public":true,"created_at":"2015-01-01T15:04:53Z"} +,{"id":"2489653307","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":536865027,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2a968bedd20eacaccf93831e84704d050ada2c0b","before":"6fbaf2f2ab764d082d2a636ae1012264cc6e268d","commits":[{"sha":"2a968bedd20eacaccf93831e84704d050ada2c0b","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420124692760\n\nuDmWt9s5z6eOqqsJ3uFzBUstMQlQA2ogRnCykyssWFI=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/2a968bedd20eacaccf93831e84704d050ada2c0b"}]},"public":true,"created_at":"2015-01-01T15:04:54Z"} +,{"id":"2489653309","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":22374697,"name":"zidom/sample-image-url","url":"https://api.github.com/repos/zidom/sample-image-url"},"payload":{"forkee":{"id":28688689,"name":"sample-image-url","full_name":"weiguo21/sample-image-url","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/sample-image-url","description":"图片处理URL","fork":true,"url":"https://api.github.com/repos/weiguo21/sample-image-url","forks_url":"https://api.github.com/repos/weiguo21/sample-image-url/forks","keys_url":"https://api.github.com/repos/weiguo21/sample-image-url/keys{/key_id}","collaborators_url":"https://api.github.com/repos/weiguo21/sample-image-url/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/weiguo21/sample-image-url/teams","hooks_url":"https://api.github.com/repos/weiguo21/sample-image-url/hooks","issue_events_url":"https://api.github.com/repos/weiguo21/sample-image-url/issues/events{/number}","events_url":"https://api.github.com/repos/weiguo21/sample-image-url/events","assignees_url":"https://api.github.com/repos/weiguo21/sample-image-url/assignees{/user}","branches_url":"https://api.github.com/repos/weiguo21/sample-image-url/branches{/branch}","tags_url":"https://api.github.com/repos/weiguo21/sample-image-url/tags","blobs_url":"https://api.github.com/repos/weiguo21/sample-image-url/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/weiguo21/sample-image-url/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/weiguo21/sample-image-url/git/refs{/sha}","trees_url":"https://api.github.com/repos/weiguo21/sample-image-url/git/trees{/sha}","statuses_url":"https://api.github.com/repos/weiguo21/sample-image-url/statuses/{sha}","languages_url":"https://api.github.com/repos/weiguo21/sample-image-url/languages","stargazers_url":"https://api.github.com/repos/weiguo21/sample-image-url/stargazers","contributors_url":"https://api.github.com/repos/weiguo21/sample-image-url/contributors","subscribers_url":"https://api.github.com/repos/weiguo21/sample-image-url/subscribers","subscription_url":"https://api.github.com/repos/weiguo21/sample-image-url/subscription","commits_url":"https://api.github.com/repos/weiguo21/sample-image-url/commits{/sha}","git_commits_url":"https://api.github.com/repos/weiguo21/sample-image-url/git/commits{/sha}","comments_url":"https://api.github.com/repos/weiguo21/sample-image-url/comments{/number}","issue_comment_url":"https://api.github.com/repos/weiguo21/sample-image-url/issues/comments/{number}","contents_url":"https://api.github.com/repos/weiguo21/sample-image-url/contents/{+path}","compare_url":"https://api.github.com/repos/weiguo21/sample-image-url/compare/{base}...{head}","merges_url":"https://api.github.com/repos/weiguo21/sample-image-url/merges","archive_url":"https://api.github.com/repos/weiguo21/sample-image-url/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/weiguo21/sample-image-url/downloads","issues_url":"https://api.github.com/repos/weiguo21/sample-image-url/issues{/number}","pulls_url":"https://api.github.com/repos/weiguo21/sample-image-url/pulls{/number}","milestones_url":"https://api.github.com/repos/weiguo21/sample-image-url/milestones{/number}","notifications_url":"https://api.github.com/repos/weiguo21/sample-image-url/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/weiguo21/sample-image-url/labels{/name}","releases_url":"https://api.github.com/repos/weiguo21/sample-image-url/releases{/id}","created_at":"2015-01-01T15:04:54Z","updated_at":"2014-07-29T09:59:55Z","pushed_at":"2014-07-30T02:10:46Z","git_url":"git://github.com/weiguo21/sample-image-url.git","ssh_url":"git@github.com:weiguo21/sample-image-url.git","clone_url":"https://github.com/weiguo21/sample-image-url.git","svn_url":"https://github.com/weiguo21/sample-image-url","homepage":null,"size":164,"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:04:54Z"} +,{"id":"2489653313","type":"PushEvent","actor":{"id":514670,"login":"GeoffWilson","gravatar_id":"","url":"https://api.github.com/users/GeoffWilson","avatar_url":"https://avatars.githubusercontent.com/u/514670?"},"repo":{"id":7530062,"name":"GeoffWilson/WaveBlast","url":"https://api.github.com/repos/GeoffWilson/WaveBlast"},"payload":{"push_id":536865029,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5892134ff18895519d0e5730fedc359d1fd15dd4","before":"11f184329b99a3df65b767be1c9ae91e4017eecc","commits":[{"sha":"5892134ff18895519d0e5730fedc359d1fd15dd4","author":{"email":"12e4e0ae5788964f88386f1c82d7ad0a77679857@heg.com","name":"Geoff"},"message":"Add missing sound effects","distinct":true,"url":"https://api.github.com/repos/GeoffWilson/WaveBlast/commits/5892134ff18895519d0e5730fedc359d1fd15dd4"}]},"public":true,"created_at":"2015-01-01T15:04:55Z"} +,{"id":"2489653315","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":536865030,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ea552baee740a761bc28941b73d1cb83887ef9e7","before":"d584abbd7fbb76ad62050a432aba74cacd912814","commits":[{"sha":"ea552baee740a761bc28941b73d1cb83887ef9e7","author":{"email":"1a73af9e7ae00182733b2292511b814be66f065f@jeffquast.com","name":"jquast"},"message":"prefer lowercase form of CherryPy for faster inst","distinct":true,"url":"https://api.github.com/repos/jquast/x84/commits/ea552baee740a761bc28941b73d1cb83887ef9e7"}]},"public":true,"created_at":"2015-01-01T15:04:55Z"} +,{"id":"2489653316","type":"PushEvent","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":{"push_id":536865031,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"592c830a6b144bf70c3ace790eb542a9d006f65b","before":"5a74cff0dcea565743acfa0a7bc3dbcb78e607ef","commits":[{"sha":"592c830a6b144bf70c3ace790eb542a9d006f65b","author":{"email":"894f70dbb0c6b051b806e4942bc91c9cbb0b0dbf@web.de","name":"Xexanos"},"message":"added config option to add nuggets as fuel and adding default value to coal nuggets.","distinct":true,"url":"https://api.github.com/repos/Xexanos/PoorOres/commits/592c830a6b144bf70c3ace790eb542a9d006f65b"}]},"public":true,"created_at":"2015-01-01T15:04:55Z"} +,{"id":"2489653317","type":"PushEvent","actor":{"id":8039387,"login":"NamTThai","gravatar_id":"","url":"https://api.github.com/users/NamTThai","avatar_url":"https://avatars.githubusercontent.com/u/8039387?"},"repo":{"id":21883102,"name":"NamTThai/PokemonShowdownAndroidClient","url":"https://api.github.com/repos/NamTThai/PokemonShowdownAndroidClient"},"payload":{"push_id":536865032,"size":1,"distinct_size":1,"ref":"refs/heads/battling","head":"1a201a2bb209de9f2b947a26ebca24d68c4cafa5","before":"219eb8b7cb0022d451b0eb8e682fface05c43b3c","commits":[{"sha":"1a201a2bb209de9f2b947a26ebca24d68c4cafa5","author":{"email":"c2069ece478593632bc9d200fc334cb14496faf2@gmail.com","name":"namThai"},"message":"team preview fix","distinct":true,"url":"https://api.github.com/repos/NamTThai/PokemonShowdownAndroidClient/commits/1a201a2bb209de9f2b947a26ebca24d68c4cafa5"}]},"public":true,"created_at":"2015-01-01T15:04:55Z"} +,{"id":"2489653323","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":24557021,"name":"cloudify-cosmo/cloudify-manager-blueprints","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager-blueprints"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:55Z","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":"2489653325","type":"WatchEvent","actor":{"id":740978,"login":"bernharduw","gravatar_id":"","url":"https://api.github.com/users/bernharduw","avatar_url":"https://avatars.githubusercontent.com/u/740978?"},"repo":{"id":28249537,"name":"markdown-it/markdown-it","url":"https://api.github.com/repos/markdown-it/markdown-it"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:58Z","org":{"id":10248321,"login":"markdown-it","gravatar_id":"","url":"https://api.github.com/orgs/markdown-it","avatar_url":"https://avatars.githubusercontent.com/u/10248321?"}} +,{"id":"2489653326","type":"WatchEvent","actor":{"id":1264971,"login":"jangwonhong","gravatar_id":"","url":"https://api.github.com/users/jangwonhong","avatar_url":"https://avatars.githubusercontent.com/u/1264971?"},"repo":{"id":16688238,"name":"UnifiedViews/Core","url":"https://api.github.com/repos/UnifiedViews/Core"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:58Z","org":{"id":6388673,"login":"UnifiedViews","gravatar_id":"","url":"https://api.github.com/orgs/UnifiedViews","avatar_url":"https://avatars.githubusercontent.com/u/6388673?"}} +,{"id":"2489653329","type":"CreateEvent","actor":{"id":3233228,"login":"LureBreaker","gravatar_id":"","url":"https://api.github.com/users/LureBreaker","avatar_url":"https://avatars.githubusercontent.com/u/3233228?"},"repo":{"id":28688680,"name":"LureBreaker/django-tutorial","url":"https://api.github.com/repos/LureBreaker/django-tutorial"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"django tutorial","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:58Z"} +,{"id":"2489653330","type":"CreateEvent","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":{"ref":"test_pr","ref_type":"branch","master_branch":"master","description":"A gulp plugin to pipe contents to github pull request comments.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:58Z"} +,{"id":"2489653331","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":19423184,"name":"cloudify-cosmo/cloudify-nodecellar-example","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-nodecellar-example"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:58Z","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":"2489653334","type":"PushEvent","actor":{"id":202400,"login":"danpalmer","gravatar_id":"","url":"https://api.github.com/users/danpalmer","avatar_url":"https://avatars.githubusercontent.com/u/202400?"},"repo":{"id":28408835,"name":"danpalmer/django-google-charts","url":"https://api.github.com/repos/danpalmer/django-google-charts"},"payload":{"push_id":536865037,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"9adc8106109f23ebf53a96b06e12022a01e8e106","before":"bdecb849ddafc0ed57db1758e7a4eda824bfa2ad","commits":[{"sha":"5192076ca066e1a602d1260c75a534afac00275e","author":{"email":"b6ced4168a19f8065f5d62b69c834c0a5b995458@me.com","name":"Dan Palmer"},"message":"Include template tags package","distinct":true,"url":"https://api.github.com/repos/danpalmer/django-google-charts/commits/5192076ca066e1a602d1260c75a534afac00275e"},{"sha":"9adc8106109f23ebf53a96b06e12022a01e8e106","author":{"email":"b6ced4168a19f8065f5d62b69c834c0a5b995458@me.com","name":"Dan Palmer"},"message":"Single quotes for non-human readable strings","distinct":true,"url":"https://api.github.com/repos/danpalmer/django-google-charts/commits/9adc8106109f23ebf53a96b06e12022a01e8e106"}]},"public":true,"created_at":"2015-01-01T15:04:58Z"} +,{"id":"2489653343","type":"IssueCommentEvent","actor":{"id":841788,"login":"finnp","gravatar_id":"","url":"https://api.github.com/users/finnp","avatar_url":"https://avatars.githubusercontent.com/u/841788?"},"repo":{"id":23203674,"name":"nodeschool/organizers","url":"https://api.github.com/repos/nodeschool/organizers"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/nodeschool/organizers/issues/106","labels_url":"https://api.github.com/repos/nodeschool/organizers/issues/106/labels{/name}","comments_url":"https://api.github.com/repos/nodeschool/organizers/issues/106/comments","events_url":"https://api.github.com/repos/nodeschool/organizers/issues/106/events","html_url":"https://github.com/nodeschool/organizers/issues/106","id":53216625,"number":106,"title":"Nodeschool chapter for Stuttgart, Germany","user":{"login":"kwakayama","id":2142829,"avatar_url":"https://avatars.githubusercontent.com/u/2142829?v=3","gravatar_id":"","url":"https://api.github.com/users/kwakayama","html_url":"https://github.com/kwakayama","followers_url":"https://api.github.com/users/kwakayama/followers","following_url":"https://api.github.com/users/kwakayama/following{/other_user}","gists_url":"https://api.github.com/users/kwakayama/gists{/gist_id}","starred_url":"https://api.github.com/users/kwakayama/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kwakayama/subscriptions","organizations_url":"https://api.github.com/users/kwakayama/orgs","repos_url":"https://api.github.com/users/kwakayama/repos","events_url":"https://api.github.com/users/kwakayama/events{/privacy}","received_events_url":"https://api.github.com/users/kwakayama/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T09:47:17Z","updated_at":"2015-01-01T15:04:59Z","closed_at":"2015-01-01T15:04:59Z","body":"Hi, I would like to start a nodeschool chapter for Stuttgart, Germany. I am @wakayamakentaro on twitter and work at [Brandwatch](http://www.brandwatch.com/). I have been co-organizing the [JS meetup in Stuttgart](http://www.meetup.com/stuttgartjs/) and want to create an event which focus on Node.js. I have been using Node.js for more than 4 years and would like to help others learn as well.\r\n"},"comment":{"url":"https://api.github.com/repos/nodeschool/organizers/issues/comments/68488575","html_url":"https://github.com/nodeschool/organizers/issues/106#issuecomment-68488575","issue_url":"https://api.github.com/repos/nodeschool/organizers/issues/106","id":68488575,"user":{"login":"finnp","id":841788,"avatar_url":"https://avatars.githubusercontent.com/u/841788?v=3","gravatar_id":"","url":"https://api.github.com/users/finnp","html_url":"https://github.com/finnp","followers_url":"https://api.github.com/users/finnp/followers","following_url":"https://api.github.com/users/finnp/following{/other_user}","gists_url":"https://api.github.com/users/finnp/gists{/gist_id}","starred_url":"https://api.github.com/users/finnp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/finnp/subscriptions","organizations_url":"https://api.github.com/users/finnp/orgs","repos_url":"https://api.github.com/users/finnp/repos","events_url":"https://api.github.com/users/finnp/events{/privacy}","received_events_url":"https://api.github.com/users/finnp/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:04:59Z","updated_at":"2015-01-01T15:04:59Z","body":"Awesome to have another chapter in Germany :+1: I invited you to the org. You can now go ahed and [create a repo](https://github.com/nodeschool/organizers#1). Make sure to make a PR to the homepage to have the capter be featured there."}},"public":true,"created_at":"2015-01-01T15:04:59Z","org":{"id":5437587,"login":"nodeschool","gravatar_id":"","url":"https://api.github.com/orgs/nodeschool","avatar_url":"https://avatars.githubusercontent.com/u/5437587?"}} +,{"id":"2489653344","type":"IssuesEvent","actor":{"id":841788,"login":"finnp","gravatar_id":"","url":"https://api.github.com/users/finnp","avatar_url":"https://avatars.githubusercontent.com/u/841788?"},"repo":{"id":23203674,"name":"nodeschool/organizers","url":"https://api.github.com/repos/nodeschool/organizers"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/nodeschool/organizers/issues/106","labels_url":"https://api.github.com/repos/nodeschool/organizers/issues/106/labels{/name}","comments_url":"https://api.github.com/repos/nodeschool/organizers/issues/106/comments","events_url":"https://api.github.com/repos/nodeschool/organizers/issues/106/events","html_url":"https://github.com/nodeschool/organizers/issues/106","id":53216625,"number":106,"title":"Nodeschool chapter for Stuttgart, Germany","user":{"login":"kwakayama","id":2142829,"avatar_url":"https://avatars.githubusercontent.com/u/2142829?v=3","gravatar_id":"","url":"https://api.github.com/users/kwakayama","html_url":"https://github.com/kwakayama","followers_url":"https://api.github.com/users/kwakayama/followers","following_url":"https://api.github.com/users/kwakayama/following{/other_user}","gists_url":"https://api.github.com/users/kwakayama/gists{/gist_id}","starred_url":"https://api.github.com/users/kwakayama/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kwakayama/subscriptions","organizations_url":"https://api.github.com/users/kwakayama/orgs","repos_url":"https://api.github.com/users/kwakayama/repos","events_url":"https://api.github.com/users/kwakayama/events{/privacy}","received_events_url":"https://api.github.com/users/kwakayama/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T09:47:17Z","updated_at":"2015-01-01T15:04:59Z","closed_at":"2015-01-01T15:04:59Z","body":"Hi, I would like to start a nodeschool chapter for Stuttgart, Germany. I am @wakayamakentaro on twitter and work at [Brandwatch](http://www.brandwatch.com/). I have been co-organizing the [JS meetup in Stuttgart](http://www.meetup.com/stuttgartjs/) and want to create an event which focus on Node.js. I have been using Node.js for more than 4 years and would like to help others learn as well.\r\n"}},"public":true,"created_at":"2015-01-01T15:04:59Z","org":{"id":5437587,"login":"nodeschool","gravatar_id":"","url":"https://api.github.com/orgs/nodeschool","avatar_url":"https://avatars.githubusercontent.com/u/5437587?"}} +,{"id":"2489653347","type":"CommitCommentEvent","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":{"comment":{"url":"https://api.github.com/repos/walmik/timer.jquery/comments/9132431","html_url":"https://github.com/walmik/timer.jquery/commit/fcf2715634a85af52d7544203ed5792bf685e329#commitcomment-9132431","id":9132431,"user":{"login":"walmik","id":467030,"avatar_url":"https://avatars.githubusercontent.com/u/467030?v=3","gravatar_id":"","url":"https://api.github.com/users/walmik","html_url":"https://github.com/walmik","followers_url":"https://api.github.com/users/walmik/followers","following_url":"https://api.github.com/users/walmik/following{/other_user}","gists_url":"https://api.github.com/users/walmik/gists{/gist_id}","starred_url":"https://api.github.com/users/walmik/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/walmik/subscriptions","organizations_url":"https://api.github.com/users/walmik/orgs","repos_url":"https://api.github.com/users/walmik/repos","events_url":"https://api.github.com/users/walmik/events{/privacy}","received_events_url":"https://api.github.com/users/walmik/received_events","type":"User","site_admin":false},"position":null,"line":null,"path":"","commit_id":"fcf2715634a85af52d7544203ed5792bf685e329","created_at":"2015-01-01T15:04:59Z","updated_at":"2015-01-01T15:04:59Z","body":"@@rebuild"}},"public":true,"created_at":"2015-01-01T15:04:59Z"} +,{"id":"2489653349","type":"PushEvent","actor":{"id":406045,"login":"uutan","gravatar_id":"","url":"https://api.github.com/users/uutan","avatar_url":"https://avatars.githubusercontent.com/u/406045?"},"repo":{"id":23510507,"name":"uutan/tsaoko","url":"https://api.github.com/repos/uutan/tsaoko"},"payload":{"push_id":536865046,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a5cffb446a6dc14ba79e9804dc0a1ba473edefb1","before":"da39bb1fa94163f5b0ea97f49f0df7dc5d2118fe","commits":[{"sha":"a5cffb446a6dc14ba79e9804dc0a1ba473edefb1","author":{"email":"5dcf220993dd9832453f96092756561102e52171@qq.com","name":"UUTAN"},"message":"草果官網","distinct":true,"url":"https://api.github.com/repos/uutan/tsaoko/commits/a5cffb446a6dc14ba79e9804dc0a1ba473edefb1"}]},"public":true,"created_at":"2015-01-01T15:04:59Z"} +,{"id":"2489653351","type":"WatchEvent","actor":{"id":660405,"login":"musketyr","gravatar_id":"","url":"https://api.github.com/users/musketyr","avatar_url":"https://avatars.githubusercontent.com/u/660405?"},"repo":{"id":15878519,"name":"ukdtom/SRT2UTF-8.bundle","url":"https://api.github.com/repos/ukdtom/SRT2UTF-8.bundle"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:00Z"} +,{"id":"2489653352","type":"WatchEvent","actor":{"id":226445,"login":"efantasia","gravatar_id":"","url":"https://api.github.com/users/efantasia","avatar_url":"https://avatars.githubusercontent.com/u/226445?"},"repo":{"id":22317183,"name":"philipz/docker-nginx-hhvm-wordpress","url":"https://api.github.com/repos/philipz/docker-nginx-hhvm-wordpress"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:00Z"} +,{"id":"2489653355","type":"IssueCommentEvent","actor":{"id":63502,"login":"ferventcoder","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","avatar_url":"https://avatars.githubusercontent.com/u/63502?"},"repo":{"id":22735696,"name":"chocolatey/chocolatey-package-updater","url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7","labels_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7/comments","events_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7/events","html_url":"https://github.com/chocolatey/chocolatey-package-updater/issues/7","id":47026963,"number":7,"title":"Support for passing {{checksum}} variable","user":{"login":"dtgm","id":3309431,"avatar_url":"https://avatars.githubusercontent.com/u/3309431?v=3","gravatar_id":"","url":"https://api.github.com/users/dtgm","html_url":"https://github.com/dtgm","followers_url":"https://api.github.com/users/dtgm/followers","following_url":"https://api.github.com/users/dtgm/following{/other_user}","gists_url":"https://api.github.com/users/dtgm/gists{/gist_id}","starred_url":"https://api.github.com/users/dtgm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dtgm/subscriptions","organizations_url":"https://api.github.com/users/dtgm/orgs","repos_url":"https://api.github.com/users/dtgm/repos","events_url":"https://api.github.com/users/dtgm/events{/privacy}","received_events_url":"https://api.github.com/users/dtgm/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-10-28T13:44:42Z","updated_at":"2015-01-01T15:05:00Z","closed_at":null,"body":"Please add support for passing {{checksum}} with ChocoPkgUp.exe.\r\n\r\nSee: https://github.com/chocolatey/chocolatey/issues/427#issuecomment-60740928"},"comment":{"url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/comments/68488576","html_url":"https://github.com/chocolatey/chocolatey-package-updater/issues/7#issuecomment-68488576","issue_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7","id":68488576,"user":{"login":"ferventcoder","id":63502,"avatar_url":"https://avatars.githubusercontent.com/u/63502?v=3","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","html_url":"https://github.com/ferventcoder","followers_url":"https://api.github.com/users/ferventcoder/followers","following_url":"https://api.github.com/users/ferventcoder/following{/other_user}","gists_url":"https://api.github.com/users/ferventcoder/gists{/gist_id}","starred_url":"https://api.github.com/users/ferventcoder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ferventcoder/subscriptions","organizations_url":"https://api.github.com/users/ferventcoder/orgs","repos_url":"https://api.github.com/users/ferventcoder/repos","events_url":"https://api.github.com/users/ferventcoder/events{/privacy}","received_events_url":"https://api.github.com/users/ferventcoder/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:05:00Z","updated_at":"2015-01-01T15:05:00Z","body":"Checksum and Checksumx64"}},"public":true,"created_at":"2015-01-01T15:05:00Z","org":{"id":811025,"login":"chocolatey","gravatar_id":"","url":"https://api.github.com/orgs/chocolatey","avatar_url":"https://avatars.githubusercontent.com/u/811025?"}} +,{"id":"2489653358","type":"PushEvent","actor":{"id":8898656,"login":"manhtai","gravatar_id":"","url":"https://api.github.com/users/manhtai","avatar_url":"https://avatars.githubusercontent.com/u/8898656?"},"repo":{"id":27435369,"name":"hochanh/rblog","url":"https://api.github.com/repos/hochanh/rblog"},"payload":{"push_id":536865049,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"f08bd6fb352d3b0730c68b1a02b0c3e3083030cb","before":"199c92e2a0d9c97a9d39231db8d5cfd3ed7ad5e4","commits":[{"sha":"f08bd6fb352d3b0730c68b1a02b0c3e3083030cb","author":{"email":"fadd56ec452f32494dcac8d1adde33d451bf70c7@manhtai.com","name":"manhtai"},"message":"replace pics","distinct":true,"url":"https://api.github.com/repos/hochanh/rblog/commits/f08bd6fb352d3b0730c68b1a02b0c3e3083030cb"}]},"public":true,"created_at":"2015-01-01T15:05:00Z","org":{"id":10047909,"login":"hochanh","gravatar_id":"","url":"https://api.github.com/orgs/hochanh","avatar_url":"https://avatars.githubusercontent.com/u/10047909?"}} +,{"id":"2489653360","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":19423184,"name":"cloudify-cosmo/cloudify-nodecellar-example","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-nodecellar-example"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"A sample Cloudify 3 application consisted of a nodejs server and mongodb database. ","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:00Z","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":"2489653362","type":"PushEvent","actor":{"id":9973025,"login":"hpraveen","gravatar_id":"","url":"https://api.github.com/users/hpraveen","avatar_url":"https://avatars.githubusercontent.com/u/9973025?"},"repo":{"id":27212560,"name":"hpraveen/OSWD","url":"https://api.github.com/repos/hpraveen/OSWD"},"payload":{"push_id":536865053,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6825222ff7259838fd57c82a371a239bf1fd658c","before":"f55f8c1884f7218f1e9d69517505d6db6b1360ae","commits":[{"sha":"6825222ff7259838fd57c82a371a239bf1fd658c","author":{"email":"52da7f86a46b435c9123f30308193766489b0d2c@gmail.com","name":"hpraveen"},"message":"Functions to load csv files and plot time series graphs","distinct":true,"url":"https://api.github.com/repos/hpraveen/OSWD/commits/6825222ff7259838fd57c82a371a239bf1fd658c"}]},"public":true,"created_at":"2015-01-01T15:05:02Z"} +,{"id":"2489653363","type":"ReleaseEvent","actor":{"id":3888750,"login":"joachimmetz","gravatar_id":"","url":"https://api.github.com/users/joachimmetz","avatar_url":"https://avatars.githubusercontent.com/u/3888750?"},"repo":{"id":24068439,"name":"libyal/libcfile","url":"https://api.github.com/repos/libyal/libcfile"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/libyal/libcfile/releases/818685","assets_url":"https://api.github.com/repos/libyal/libcfile/releases/818685/assets","upload_url":"https://uploads.github.com/repos/libyal/libcfile/releases/818685/assets{?name}","html_url":"https://github.com/libyal/libcfile/releases/tag/20150101","id":818685,"tag_name":"20150101","target_commitish":"master","name":"libcfile-alpha-20150101","draft":false,"author":{"login":"joachimmetz","id":3888750,"avatar_url":"https://avatars.githubusercontent.com/u/3888750?v=3","gravatar_id":"","url":"https://api.github.com/users/joachimmetz","html_url":"https://github.com/joachimmetz","followers_url":"https://api.github.com/users/joachimmetz/followers","following_url":"https://api.github.com/users/joachimmetz/following{/other_user}","gists_url":"https://api.github.com/users/joachimmetz/gists{/gist_id}","starred_url":"https://api.github.com/users/joachimmetz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/joachimmetz/subscriptions","organizations_url":"https://api.github.com/users/joachimmetz/orgs","repos_url":"https://api.github.com/users/joachimmetz/repos","events_url":"https://api.github.com/users/joachimmetz/events{/privacy}","received_events_url":"https://api.github.com/users/joachimmetz/received_events","type":"User","site_admin":false},"prerelease":true,"created_at":"2014-12-29T06:00:39Z","published_at":"2015-01-01T15:05:01Z","assets":[],"tarball_url":"https://api.github.com/repos/libyal/libcfile/tarball/20150101","zipball_url":"https://api.github.com/repos/libyal/libcfile/zipball/20150101","body":"Release of version 20150101"}},"public":true,"created_at":"2015-01-01T15:05:02Z","org":{"id":8692283,"login":"libyal","gravatar_id":"","url":"https://api.github.com/orgs/libyal","avatar_url":"https://avatars.githubusercontent.com/u/8692283?"}} +,{"id":"2489653365","type":"CreateEvent","actor":{"id":3888750,"login":"joachimmetz","gravatar_id":"","url":"https://api.github.com/users/joachimmetz","avatar_url":"https://avatars.githubusercontent.com/u/3888750?"},"repo":{"id":24068439,"name":"libyal/libcfile","url":"https://api.github.com/repos/libyal/libcfile"},"payload":{"ref":"20150101","ref_type":"tag","master_branch":"master","description":"Library for cross-platform C file functions","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:02Z","org":{"id":8692283,"login":"libyal","gravatar_id":"","url":"https://api.github.com/orgs/libyal","avatar_url":"https://avatars.githubusercontent.com/u/8692283?"}} +,{"id":"2489653367","type":"CreateEvent","actor":{"id":1905149,"login":"oggehej","gravatar_id":"","url":"https://api.github.com/users/oggehej","avatar_url":"https://avatars.githubusercontent.com/u/1905149?"},"repo":{"id":28688690,"name":"oggehej/ForceDismount","url":"https://api.github.com/repos/oggehej/ForceDismount"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:02Z"} +,{"id":"2489653368","type":"DeleteEvent","actor":{"id":1334295,"login":"bfontaine","gravatar_id":"","url":"https://api.github.com/users/bfontaine","avatar_url":"https://avatars.githubusercontent.com/u/1334295?"},"repo":{"id":26602131,"name":"bfontaine/homebrew","url":"https://api.github.com/repos/bfontaine/homebrew"},"payload":{"ref":"mp3-file","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:02Z"} +,{"id":"2489653372","type":"CreateEvent","actor":{"id":8950411,"login":"keren13","gravatar_id":"","url":"https://api.github.com/users/keren13","avatar_url":"https://avatars.githubusercontent.com/u/8950411?"},"repo":{"id":28688678,"name":"keren13/Java-Two-Dimensional-Arrays","url":"https://api.github.com/repos/keren13/Java-Two-Dimensional-Arrays"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Experimenting with two dimensional arrays by printing out its contents, computing its sums, and other functions.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:02Z"} +,{"id":"2489653374","type":"CreateEvent","actor":{"id":2987505,"login":"syssys123","gravatar_id":"","url":"https://api.github.com/users/syssys123","avatar_url":"https://avatars.githubusercontent.com/u/2987505?"},"repo":{"id":28688687,"name":"syssys123/apiproject20141","url":"https://api.github.com/repos/syssys123/apiproject20141"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"cloudpiapiClientTest create!","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:02Z"} +,{"id":"2489653376","type":"PushEvent","actor":{"id":8425583,"login":"adinosaur","gravatar_id":"","url":"https://api.github.com/users/adinosaur","avatar_url":"https://avatars.githubusercontent.com/u/8425583?"},"repo":{"id":28687419,"name":"adinosaur/Intelligence_analysis_system","url":"https://api.github.com/repos/adinosaur/Intelligence_analysis_system"},"payload":{"push_id":536865058,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"671f0c3b366eff3b4f2065213abaa6116eaeaa72","before":"8d91c0a4fd7bd8400a7a020e2f2632134aa38c6c","commits":[{"sha":"671f0c3b366eff3b4f2065213abaa6116eaeaa72","author":{"email":"ea7852616db8108387ccd9877c42431cc05307e8@gmail.com","name":"dinosaur"},"message":"without data","distinct":true,"url":"https://api.github.com/repos/adinosaur/Intelligence_analysis_system/commits/671f0c3b366eff3b4f2065213abaa6116eaeaa72"}]},"public":true,"created_at":"2015-01-01T15:05:02Z"} +,{"id":"2489653379","type":"PushEvent","actor":{"id":4897842,"login":"aiya000","gravatar_id":"","url":"https://api.github.com/users/aiya000","avatar_url":"https://avatars.githubusercontent.com/u/4897842?"},"repo":{"id":23388672,"name":"aiya000/dotfiles","url":"https://api.github.com/repos/aiya000/dotfiles"},"payload":{"push_id":536865061,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"543c6d10a7aa1858ac4250e978f6a77810f442eb","before":"294eab71e173a6e594ffcfe78f9fd4a36aa5f0cc","commits":[{"sha":"ae493a7a34b0fbdd4c4179fbb4e6805a7f7a53bf","author":{"email":"62b7be0f4091fe1dc13d7236d1aa371af3f368b5@gmail.com","name":"aiya000"},"message":"Added an alias","distinct":true,"url":"https://api.github.com/repos/aiya000/dotfiles/commits/ae493a7a34b0fbdd4c4179fbb4e6805a7f7a53bf"},{"sha":"543c6d10a7aa1858ac4250e978f6a77810f442eb","author":{"email":"62b7be0f4091fe1dc13d7236d1aa371af3f368b5@gmail.com","name":"aiya000"},"message":"Fixed Conflict","distinct":true,"url":"https://api.github.com/repos/aiya000/dotfiles/commits/543c6d10a7aa1858ac4250e978f6a77810f442eb"}]},"public":true,"created_at":"2015-01-01T15:05:02Z"} +,{"id":"2489653383","type":"PushEvent","actor":{"id":818850,"login":"stubma","gravatar_id":"","url":"https://api.github.com/users/stubma","avatar_url":"https://avatars.githubusercontent.com/u/818850?"},"repo":{"id":26906938,"name":"stubma/cocos2dx-classical","url":"https://api.github.com/repos/stubma/cocos2dx-classical"},"payload":{"push_id":536865062,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1d6a481fcaccb57a27f4570fe855244f7ccb4bf1","before":"6298fcb73b8725dc7ee41adf0880f6e3cce88c73","commits":[{"sha":"1d6a481fcaccb57a27f4570fe855244f7ccb4bf1","author":{"email":"9c6f8d6f1d16fe77e2bee75389a742db1b82600f@gmail.com","name":"luma"},"message":"update readme","distinct":true,"url":"https://api.github.com/repos/stubma/cocos2dx-classical/commits/1d6a481fcaccb57a27f4570fe855244f7ccb4bf1"}]},"public":true,"created_at":"2015-01-01T15:05:02Z"} +,{"id":"2489653391","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":19569477,"name":"cloudify-cosmo/cloudify-cloudstack-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-cloudstack-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:03Z","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":"2489653392","type":"PullRequestEvent","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":{"action":"opened","number":2,"pull_request":{"url":"https://api.github.com/repos/zordius/gulp-github/pulls/2","id":26743805,"html_url":"https://github.com/zordius/gulp-github/pull/2","diff_url":"https://github.com/zordius/gulp-github/pull/2.diff","patch_url":"https://github.com/zordius/gulp-github/pull/2.patch","issue_url":"https://api.github.com/repos/zordius/gulp-github/issues/2","number":2,"state":"open","locked":false,"title":"test","user":{"login":"zordius","id":1201409,"avatar_url":"https://avatars.githubusercontent.com/u/1201409?v=3","gravatar_id":"","url":"https://api.github.com/users/zordius","html_url":"https://github.com/zordius","followers_url":"https://api.github.com/users/zordius/followers","following_url":"https://api.github.com/users/zordius/following{/other_user}","gists_url":"https://api.github.com/users/zordius/gists{/gist_id}","starred_url":"https://api.github.com/users/zordius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zordius/subscriptions","organizations_url":"https://api.github.com/users/zordius/orgs","repos_url":"https://api.github.com/users/zordius/repos","events_url":"https://api.github.com/users/zordius/events{/privacy}","received_events_url":"https://api.github.com/users/zordius/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:05:03Z","updated_at":"2015-01-01T15:05:03Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/zordius/gulp-github/pulls/2/commits","review_comments_url":"https://api.github.com/repos/zordius/gulp-github/pulls/2/comments","review_comment_url":"https://api.github.com/repos/zordius/gulp-github/pulls/comments/{number}","comments_url":"https://api.github.com/repos/zordius/gulp-github/issues/2/comments","statuses_url":"https://api.github.com/repos/zordius/gulp-github/statuses/7e5a80a0e5483cb9df1b571dccc031dcb45f7d50","head":{"label":"zordius:test_pr","ref":"test_pr","sha":"7e5a80a0e5483cb9df1b571dccc031dcb45f7d50","user":{"login":"zordius","id":1201409,"avatar_url":"https://avatars.githubusercontent.com/u/1201409?v=3","gravatar_id":"","url":"https://api.github.com/users/zordius","html_url":"https://github.com/zordius","followers_url":"https://api.github.com/users/zordius/followers","following_url":"https://api.github.com/users/zordius/following{/other_user}","gists_url":"https://api.github.com/users/zordius/gists{/gist_id}","starred_url":"https://api.github.com/users/zordius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zordius/subscriptions","organizations_url":"https://api.github.com/users/zordius/orgs","repos_url":"https://api.github.com/users/zordius/repos","events_url":"https://api.github.com/users/zordius/events{/privacy}","received_events_url":"https://api.github.com/users/zordius/received_events","type":"User","site_admin":false},"repo":{"id":28685419,"name":"gulp-github","full_name":"zordius/gulp-github","owner":{"login":"zordius","id":1201409,"avatar_url":"https://avatars.githubusercontent.com/u/1201409?v=3","gravatar_id":"","url":"https://api.github.com/users/zordius","html_url":"https://github.com/zordius","followers_url":"https://api.github.com/users/zordius/followers","following_url":"https://api.github.com/users/zordius/following{/other_user}","gists_url":"https://api.github.com/users/zordius/gists{/gist_id}","starred_url":"https://api.github.com/users/zordius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zordius/subscriptions","organizations_url":"https://api.github.com/users/zordius/orgs","repos_url":"https://api.github.com/users/zordius/repos","events_url":"https://api.github.com/users/zordius/events{/privacy}","received_events_url":"https://api.github.com/users/zordius/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/zordius/gulp-github","description":"A gulp plugin to pipe contents to github pull request comments.","fork":false,"url":"https://api.github.com/repos/zordius/gulp-github","forks_url":"https://api.github.com/repos/zordius/gulp-github/forks","keys_url":"https://api.github.com/repos/zordius/gulp-github/keys{/key_id}","collaborators_url":"https://api.github.com/repos/zordius/gulp-github/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/zordius/gulp-github/teams","hooks_url":"https://api.github.com/repos/zordius/gulp-github/hooks","issue_events_url":"https://api.github.com/repos/zordius/gulp-github/issues/events{/number}","events_url":"https://api.github.com/repos/zordius/gulp-github/events","assignees_url":"https://api.github.com/repos/zordius/gulp-github/assignees{/user}","branches_url":"https://api.github.com/repos/zordius/gulp-github/branches{/branch}","tags_url":"https://api.github.com/repos/zordius/gulp-github/tags","blobs_url":"https://api.github.com/repos/zordius/gulp-github/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/zordius/gulp-github/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/zordius/gulp-github/git/refs{/sha}","trees_url":"https://api.github.com/repos/zordius/gulp-github/git/trees{/sha}","statuses_url":"https://api.github.com/repos/zordius/gulp-github/statuses/{sha}","languages_url":"https://api.github.com/repos/zordius/gulp-github/languages","stargazers_url":"https://api.github.com/repos/zordius/gulp-github/stargazers","contributors_url":"https://api.github.com/repos/zordius/gulp-github/contributors","subscribers_url":"https://api.github.com/repos/zordius/gulp-github/subscribers","subscription_url":"https://api.github.com/repos/zordius/gulp-github/subscription","commits_url":"https://api.github.com/repos/zordius/gulp-github/commits{/sha}","git_commits_url":"https://api.github.com/repos/zordius/gulp-github/git/commits{/sha}","comments_url":"https://api.github.com/repos/zordius/gulp-github/comments{/number}","issue_comment_url":"https://api.github.com/repos/zordius/gulp-github/issues/comments/{number}","contents_url":"https://api.github.com/repos/zordius/gulp-github/contents/{+path}","compare_url":"https://api.github.com/repos/zordius/gulp-github/compare/{base}...{head}","merges_url":"https://api.github.com/repos/zordius/gulp-github/merges","archive_url":"https://api.github.com/repos/zordius/gulp-github/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/zordius/gulp-github/downloads","issues_url":"https://api.github.com/repos/zordius/gulp-github/issues{/number}","pulls_url":"https://api.github.com/repos/zordius/gulp-github/pulls{/number}","milestones_url":"https://api.github.com/repos/zordius/gulp-github/milestones{/number}","notifications_url":"https://api.github.com/repos/zordius/gulp-github/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/zordius/gulp-github/labels{/name}","releases_url":"https://api.github.com/repos/zordius/gulp-github/releases{/id}","created_at":"2015-01-01T11:28:34Z","updated_at":"2015-01-01T15:01:34Z","pushed_at":"2015-01-01T15:04:58Z","git_url":"git://github.com/zordius/gulp-github.git","ssh_url":"git@github.com:zordius/gulp-github.git","clone_url":"https://github.com/zordius/gulp-github.git","svn_url":"https://github.com/zordius/gulp-github","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","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":"zordius:master","ref":"master","sha":"25e76bca2086e73d43a7259f089b0b7ca568ee4a","user":{"login":"zordius","id":1201409,"avatar_url":"https://avatars.githubusercontent.com/u/1201409?v=3","gravatar_id":"","url":"https://api.github.com/users/zordius","html_url":"https://github.com/zordius","followers_url":"https://api.github.com/users/zordius/followers","following_url":"https://api.github.com/users/zordius/following{/other_user}","gists_url":"https://api.github.com/users/zordius/gists{/gist_id}","starred_url":"https://api.github.com/users/zordius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zordius/subscriptions","organizations_url":"https://api.github.com/users/zordius/orgs","repos_url":"https://api.github.com/users/zordius/repos","events_url":"https://api.github.com/users/zordius/events{/privacy}","received_events_url":"https://api.github.com/users/zordius/received_events","type":"User","site_admin":false},"repo":{"id":28685419,"name":"gulp-github","full_name":"zordius/gulp-github","owner":{"login":"zordius","id":1201409,"avatar_url":"https://avatars.githubusercontent.com/u/1201409?v=3","gravatar_id":"","url":"https://api.github.com/users/zordius","html_url":"https://github.com/zordius","followers_url":"https://api.github.com/users/zordius/followers","following_url":"https://api.github.com/users/zordius/following{/other_user}","gists_url":"https://api.github.com/users/zordius/gists{/gist_id}","starred_url":"https://api.github.com/users/zordius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zordius/subscriptions","organizations_url":"https://api.github.com/users/zordius/orgs","repos_url":"https://api.github.com/users/zordius/repos","events_url":"https://api.github.com/users/zordius/events{/privacy}","received_events_url":"https://api.github.com/users/zordius/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/zordius/gulp-github","description":"A gulp plugin to pipe contents to github pull request comments.","fork":false,"url":"https://api.github.com/repos/zordius/gulp-github","forks_url":"https://api.github.com/repos/zordius/gulp-github/forks","keys_url":"https://api.github.com/repos/zordius/gulp-github/keys{/key_id}","collaborators_url":"https://api.github.com/repos/zordius/gulp-github/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/zordius/gulp-github/teams","hooks_url":"https://api.github.com/repos/zordius/gulp-github/hooks","issue_events_url":"https://api.github.com/repos/zordius/gulp-github/issues/events{/number}","events_url":"https://api.github.com/repos/zordius/gulp-github/events","assignees_url":"https://api.github.com/repos/zordius/gulp-github/assignees{/user}","branches_url":"https://api.github.com/repos/zordius/gulp-github/branches{/branch}","tags_url":"https://api.github.com/repos/zordius/gulp-github/tags","blobs_url":"https://api.github.com/repos/zordius/gulp-github/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/zordius/gulp-github/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/zordius/gulp-github/git/refs{/sha}","trees_url":"https://api.github.com/repos/zordius/gulp-github/git/trees{/sha}","statuses_url":"https://api.github.com/repos/zordius/gulp-github/statuses/{sha}","languages_url":"https://api.github.com/repos/zordius/gulp-github/languages","stargazers_url":"https://api.github.com/repos/zordius/gulp-github/stargazers","contributors_url":"https://api.github.com/repos/zordius/gulp-github/contributors","subscribers_url":"https://api.github.com/repos/zordius/gulp-github/subscribers","subscription_url":"https://api.github.com/repos/zordius/gulp-github/subscription","commits_url":"https://api.github.com/repos/zordius/gulp-github/commits{/sha}","git_commits_url":"https://api.github.com/repos/zordius/gulp-github/git/commits{/sha}","comments_url":"https://api.github.com/repos/zordius/gulp-github/comments{/number}","issue_comment_url":"https://api.github.com/repos/zordius/gulp-github/issues/comments/{number}","contents_url":"https://api.github.com/repos/zordius/gulp-github/contents/{+path}","compare_url":"https://api.github.com/repos/zordius/gulp-github/compare/{base}...{head}","merges_url":"https://api.github.com/repos/zordius/gulp-github/merges","archive_url":"https://api.github.com/repos/zordius/gulp-github/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/zordius/gulp-github/downloads","issues_url":"https://api.github.com/repos/zordius/gulp-github/issues{/number}","pulls_url":"https://api.github.com/repos/zordius/gulp-github/pulls{/number}","milestones_url":"https://api.github.com/repos/zordius/gulp-github/milestones{/number}","notifications_url":"https://api.github.com/repos/zordius/gulp-github/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/zordius/gulp-github/labels{/name}","releases_url":"https://api.github.com/repos/zordius/gulp-github/releases{/id}","created_at":"2015-01-01T11:28:34Z","updated_at":"2015-01-01T15:01:34Z","pushed_at":"2015-01-01T15:04:58Z","git_url":"git://github.com/zordius/gulp-github.git","ssh_url":"git@github.com:zordius/gulp-github.git","clone_url":"https://github.com/zordius/gulp-github.git","svn_url":"https://github.com/zordius/gulp-github","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","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/zordius/gulp-github/pulls/2"},"html":{"href":"https://github.com/zordius/gulp-github/pull/2"},"issue":{"href":"https://api.github.com/repos/zordius/gulp-github/issues/2"},"comments":{"href":"https://api.github.com/repos/zordius/gulp-github/issues/2/comments"},"review_comments":{"href":"https://api.github.com/repos/zordius/gulp-github/pulls/2/comments"},"review_comment":{"href":"https://api.github.com/repos/zordius/gulp-github/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/zordius/gulp-github/pulls/2/commits"},"statuses":{"href":"https://api.github.com/repos/zordius/gulp-github/statuses/7e5a80a0e5483cb9df1b571dccc031dcb45f7d50"}},"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:05:03Z"} +,{"id":"2489653394","type":"PushEvent","actor":{"id":2964928,"login":"taylorhxu","gravatar_id":"","url":"https://api.github.com/users/taylorhxu","avatar_url":"https://avatars.githubusercontent.com/u/2964928?"},"repo":{"id":25008698,"name":"taylorhxu/taylorhxu.github.io","url":"https://api.github.com/repos/taylorhxu/taylorhxu.github.io"},"payload":{"push_id":536865066,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a2853c0256efde79b82d18d874c836684be2da08","before":"eb4ff5f19c6fe012784ae06b538c790a4706acdb","commits":[{"sha":"a2853c0256efde79b82d18d874c836684be2da08","author":{"email":"bbaab3af5605ab26fe8b9502a6ab51a673b35a8b@gmail.com","name":"Taylor Xu"},"message":"old theme photo deleted","distinct":true,"url":"https://api.github.com/repos/taylorhxu/taylorhxu.github.io/commits/a2853c0256efde79b82d18d874c836684be2da08"}]},"public":true,"created_at":"2015-01-01T15:05:03Z"} +,{"id":"2489653396","type":"PushEvent","actor":{"id":8790160,"login":"irham0019","gravatar_id":"","url":"https://api.github.com/users/irham0019","avatar_url":"https://avatars.githubusercontent.com/u/8790160?"},"repo":{"id":28379061,"name":"irham0019/product-esb","url":"https://api.github.com/repos/irham0019/product-esb"},"payload":{"push_id":536865067,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fcb3048471acb1de5ca455cad6fb20b395d0fb4d","before":"18b06afd890685a6d1c4023eaffe6b37a330e887","commits":[{"sha":"fcb3048471acb1de5ca455cad6fb20b395d0fb4d","author":{"email":"8c912c39e70806ce574df9ee73874b1d6d5405e5@gmail.com","name":"mirhamiqbal"},"message":"changes requested","distinct":true,"url":"https://api.github.com/repos/irham0019/product-esb/commits/fcb3048471acb1de5ca455cad6fb20b395d0fb4d"}]},"public":true,"created_at":"2015-01-01T15:05:04Z"} +,{"id":"2489653397","type":"WatchEvent","actor":{"id":1946663,"login":"qinix","gravatar_id":"","url":"https://api.github.com/users/qinix","avatar_url":"https://avatars.githubusercontent.com/u/1946663?"},"repo":{"id":3727706,"name":"emacs-helm/helm","url":"https://api.github.com/repos/emacs-helm/helm"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:04Z","org":{"id":1541688,"login":"emacs-helm","gravatar_id":"","url":"https://api.github.com/orgs/emacs-helm","avatar_url":"https://avatars.githubusercontent.com/u/1541688?"}} +,{"id":"2489653400","type":"PushEvent","actor":{"id":10152921,"login":"Antidelay","gravatar_id":"","url":"https://api.github.com/users/Antidelay","avatar_url":"https://avatars.githubusercontent.com/u/10152921?"},"repo":{"id":28637715,"name":"Antidelay/antidelay.github.io","url":"https://api.github.com/repos/Antidelay/antidelay.github.io"},"payload":{"push_id":536865069,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"60116a8a001671c70532298795fe1ff04c67fccb","before":"e4176b4e3c7de41c883b09d4d78b9743582afd12","commits":[{"sha":"60116a8a001671c70532298795fe1ff04c67fccb","author":{"email":"881baaede9ab674cbb97cddae8bfda41d8ad51c3@example.com","name":"ep"},"message":"Site updated at 2015-01-01 15:04:59 UTC","distinct":true,"url":"https://api.github.com/repos/Antidelay/antidelay.github.io/commits/60116a8a001671c70532298795fe1ff04c67fccb"}]},"public":true,"created_at":"2015-01-01T15:05:04Z"} +,{"id":"2489653401","type":"CreateEvent","actor":{"id":821709,"login":"kmcgrath","gravatar_id":"","url":"https://api.github.com/users/kmcgrath","avatar_url":"https://avatars.githubusercontent.com/u/821709?"},"repo":{"id":28688691,"name":"kmcgrath/marathon-haproxy","url":"https://api.github.com/repos/kmcgrath/marathon-haproxy"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"HAProxy container for Mesos Marathon","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:04Z"} +,{"id":"2489653402","type":"PullRequestEvent","actor":{"id":7948328,"login":"andy-hiroyuki","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","avatar_url":"https://avatars.githubusercontent.com/u/7948328?"},"repo":{"id":21061553,"name":"andy-hiroyuki/andy-hiroyuki.github.io","url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io"},"payload":{"action":"closed","number":49,"pull_request":{"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49","id":26743799,"html_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/49","diff_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/49.diff","patch_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/49.patch","issue_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/49","number":49,"state":"closed","locked":false,"title":"middleman build","user":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:04:21Z","updated_at":"2015-01-01T15:05:04Z","closed_at":"2015-01-01T15:05:04Z","merged_at":"2015-01-01T15:05:04Z","merge_commit_sha":"e70240f5e6ee377aaa9e832cefbccd5c111c7cb2","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49/commits","review_comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49/comments","review_comment_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/comments/{number}","comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/49/comments","statuses_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/8363b1bc893a653daaf6fef0fee79580d3a9d937","head":{"label":"syon:master","ref":"master","sha":"8363b1bc893a653daaf6fef0fee79580d3a9d937","user":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"repo":{"id":21061659,"name":"andy-hiroyuki.github.io","full_name":"syon/andy-hiroyuki.github.io","owner":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/syon/andy-hiroyuki.github.io","description":"","fork":true,"url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io","forks_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/forks","keys_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/teams","hooks_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/hooks","issue_events_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/events","assignees_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/tags","blobs_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/languages","stargazers_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/stargazers","contributors_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/contributors","subscribers_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/subscribers","subscription_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/subscription","commits_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/merges","archive_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/downloads","issues_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/labels{/name}","releases_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/releases{/id}","created_at":"2014-06-21T06:00:23Z","updated_at":"2014-12-23T17:37:01Z","pushed_at":"2015-01-01T15:03:46Z","git_url":"git://github.com/syon/andy-hiroyuki.github.io.git","ssh_url":"git@github.com:syon/andy-hiroyuki.github.io.git","clone_url":"https://github.com/syon/andy-hiroyuki.github.io.git","svn_url":"https://github.com/syon/andy-hiroyuki.github.io","homepage":null,"size":16189,"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":"andy-hiroyuki:master","ref":"master","sha":"a5a3782480c4ecfc08c105cb88dfcd8841df1783","user":{"login":"andy-hiroyuki","id":7948328,"avatar_url":"https://avatars.githubusercontent.com/u/7948328?v=3","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","html_url":"https://github.com/andy-hiroyuki","followers_url":"https://api.github.com/users/andy-hiroyuki/followers","following_url":"https://api.github.com/users/andy-hiroyuki/following{/other_user}","gists_url":"https://api.github.com/users/andy-hiroyuki/gists{/gist_id}","starred_url":"https://api.github.com/users/andy-hiroyuki/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andy-hiroyuki/subscriptions","organizations_url":"https://api.github.com/users/andy-hiroyuki/orgs","repos_url":"https://api.github.com/users/andy-hiroyuki/repos","events_url":"https://api.github.com/users/andy-hiroyuki/events{/privacy}","received_events_url":"https://api.github.com/users/andy-hiroyuki/received_events","type":"User","site_admin":false},"repo":{"id":21061553,"name":"andy-hiroyuki.github.io","full_name":"andy-hiroyuki/andy-hiroyuki.github.io","owner":{"login":"andy-hiroyuki","id":7948328,"avatar_url":"https://avatars.githubusercontent.com/u/7948328?v=3","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","html_url":"https://github.com/andy-hiroyuki","followers_url":"https://api.github.com/users/andy-hiroyuki/followers","following_url":"https://api.github.com/users/andy-hiroyuki/following{/other_user}","gists_url":"https://api.github.com/users/andy-hiroyuki/gists{/gist_id}","starred_url":"https://api.github.com/users/andy-hiroyuki/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andy-hiroyuki/subscriptions","organizations_url":"https://api.github.com/users/andy-hiroyuki/orgs","repos_url":"https://api.github.com/users/andy-hiroyuki/repos","events_url":"https://api.github.com/users/andy-hiroyuki/events{/privacy}","received_events_url":"https://api.github.com/users/andy-hiroyuki/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io","description":"","fork":false,"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io","forks_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/forks","keys_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/teams","hooks_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/hooks","issue_events_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/events","assignees_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/tags","blobs_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/languages","stargazers_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/stargazers","contributors_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/contributors","subscribers_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/subscribers","subscription_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/subscription","commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/merges","archive_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/downloads","issues_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/labels{/name}","releases_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/releases{/id}","created_at":"2014-06-21T05:52:31Z","updated_at":"2014-12-23T17:40:26Z","pushed_at":"2015-01-01T15:05:04Z","git_url":"git://github.com/andy-hiroyuki/andy-hiroyuki.github.io.git","ssh_url":"git@github.com:andy-hiroyuki/andy-hiroyuki.github.io.git","clone_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io.git","svn_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io","homepage":null,"size":16162,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":1,"mirror_url":null,"open_issues_count":1,"forks":1,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49"},"html":{"href":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/49"},"issue":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/49"},"comments":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/49/comments"},"review_comments":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49/comments"},"review_comment":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49/commits"},"statuses":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/8363b1bc893a653daaf6fef0fee79580d3a9d937"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"andy-hiroyuki","id":7948328,"avatar_url":"https://avatars.githubusercontent.com/u/7948328?v=3","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","html_url":"https://github.com/andy-hiroyuki","followers_url":"https://api.github.com/users/andy-hiroyuki/followers","following_url":"https://api.github.com/users/andy-hiroyuki/following{/other_user}","gists_url":"https://api.github.com/users/andy-hiroyuki/gists{/gist_id}","starred_url":"https://api.github.com/users/andy-hiroyuki/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andy-hiroyuki/subscriptions","organizations_url":"https://api.github.com/users/andy-hiroyuki/orgs","repos_url":"https://api.github.com/users/andy-hiroyuki/repos","events_url":"https://api.github.com/users/andy-hiroyuki/events{/privacy}","received_events_url":"https://api.github.com/users/andy-hiroyuki/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":1,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:05:04Z"} +,{"id":"2489653403","type":"PushEvent","actor":{"id":7948328,"login":"andy-hiroyuki","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","avatar_url":"https://avatars.githubusercontent.com/u/7948328?"},"repo":{"id":21061553,"name":"andy-hiroyuki/andy-hiroyuki.github.io","url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io"},"payload":{"push_id":536865070,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"e9bba315c225126d9adbfa7269f189c9623590ea","before":"a5a3782480c4ecfc08c105cb88dfcd8841df1783","commits":[{"sha":"8363b1bc893a653daaf6fef0fee79580d3a9d937","author":{"email":"efb10bbac3105896ed72c82c36828ccc7a2547da@gmail.com","name":"syon"},"message":"middleman build","distinct":true,"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/commits/8363b1bc893a653daaf6fef0fee79580d3a9d937"},{"sha":"e9bba315c225126d9adbfa7269f189c9623590ea","author":{"email":"9caf384f4d1faf46005af9913407078e8d6de5d8@gmail.com","name":"Andy Hiroyuki"},"message":"Merge pull request #49 from syon/master\n\nmiddleman build","distinct":true,"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/commits/e9bba315c225126d9adbfa7269f189c9623590ea"}]},"public":true,"created_at":"2015-01-01T15:05:05Z"} +,{"id":"2489653404","type":"IssuesEvent","actor":{"id":6242447,"login":"emilecaron","gravatar_id":"","url":"https://api.github.com/users/emilecaron","avatar_url":"https://avatars.githubusercontent.com/u/6242447?"},"repo":{"id":27214351,"name":"emilecaron/remindme","url":"https://api.github.com/repos/emilecaron/remindme"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/emilecaron/remindme/issues/3","labels_url":"https://api.github.com/repos/emilecaron/remindme/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/emilecaron/remindme/issues/3/comments","events_url":"https://api.github.com/repos/emilecaron/remindme/issues/3/events","html_url":"https://github.com/emilecaron/remindme/issues/3","id":53221429,"number":3,"title":"Handle alert.date in the future","user":{"login":"emilecaron","id":6242447,"avatar_url":"https://avatars.githubusercontent.com/u/6242447?v=3","gravatar_id":"","url":"https://api.github.com/users/emilecaron","html_url":"https://github.com/emilecaron","followers_url":"https://api.github.com/users/emilecaron/followers","following_url":"https://api.github.com/users/emilecaron/following{/other_user}","gists_url":"https://api.github.com/users/emilecaron/gists{/gist_id}","starred_url":"https://api.github.com/users/emilecaron/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/emilecaron/subscriptions","organizations_url":"https://api.github.com/users/emilecaron/orgs","repos_url":"https://api.github.com/users/emilecaron/repos","events_url":"https://api.github.com/users/emilecaron/events{/privacy}","received_events_url":"https://api.github.com/users/emilecaron/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:05:05Z","updated_at":"2015-01-01T15:05:05Z","closed_at":null,"body":""}},"public":true,"created_at":"2015-01-01T15:05:05Z"} +,{"id":"2489653405","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":536865071,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"00a358962973133f1f87103b034e4bd210d54a5e","before":"b747ea81bd2e80c6381e0aae3c19e11ca147a27f","commits":[{"sha":"00a358962973133f1f87103b034e4bd210d54a5e","author":{"email":"2bae8075423fd09d34532d5328ba3cbe924763f0@gmail.com","name":"Anton Berezin"},"message":"Posts","distinct":true,"url":"https://api.github.com/repos/gurunars/gurunars.github.io/commits/00a358962973133f1f87103b034e4bd210d54a5e"}]},"public":true,"created_at":"2015-01-01T15:05:05Z"} +,{"id":"2489653406","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":19569477,"name":"cloudify-cosmo/cloudify-cloudstack-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-cloudstack-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify plugin for CloudStack ","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:05Z","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":"2489653410","type":"PushEvent","actor":{"id":5207740,"login":"deavmi","gravatar_id":"","url":"https://api.github.com/users/deavmi","avatar_url":"https://avatars.githubusercontent.com/u/5207740?"},"repo":{"id":28594765,"name":"TermLang/TermLang","url":"https://api.github.com/repos/TermLang/TermLang"},"payload":{"push_id":536865073,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3bc8fe4eb7f388e9d28ed9256e8b7c867f99477f","before":"d0ff80a8c9f78898f025be918ce63f1f96d0bd23","commits":[{"sha":"3bc8fe4eb7f388e9d28ed9256e8b7c867f99477f","author":{"email":"fa6aee1990af62bf51cd97811e799a79793c3c18@gmail.com","name":"Tristan B. Kildaire"},"message":"Much update.","distinct":true,"url":"https://api.github.com/repos/TermLang/TermLang/commits/3bc8fe4eb7f388e9d28ed9256e8b7c867f99477f"}]},"public":true,"created_at":"2015-01-01T15:05:05Z","org":{"id":10340174,"login":"TermLang","gravatar_id":"","url":"https://api.github.com/orgs/TermLang","avatar_url":"https://avatars.githubusercontent.com/u/10340174?"}} +,{"id":"2489653414","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":536865074,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bf468aab3a56fb824f2c5881cb92105b6d454084","before":"42b668380d07c94d83beb1ce1b4ff91109e6a022","commits":[{"sha":"bf468aab3a56fb824f2c5881cb92105b6d454084","author":{"email":"c7f2353e77fbd59227c091422ca81210965ba01d","name":"selloggingbot"},"message":"updating logs","distinct":true,"url":"https://api.github.com/repos/SeleniumHQ/irc-logs/commits/bf468aab3a56fb824f2c5881cb92105b6d454084"}]},"public":true,"created_at":"2015-01-01T15:05:05Z","org":{"id":983927,"login":"SeleniumHQ","gravatar_id":"","url":"https://api.github.com/orgs/SeleniumHQ","avatar_url":"https://avatars.githubusercontent.com/u/983927?"}} +,{"id":"2489653415","type":"CreateEvent","actor":{"id":2987505,"login":"syssys123","gravatar_id":"","url":"https://api.github.com/users/syssys123","avatar_url":"https://avatars.githubusercontent.com/u/2987505?"},"repo":{"id":28688687,"name":"syssys123/apiproject20141","url":"https://api.github.com/repos/syssys123/apiproject20141"},"payload":{"ref":"rails4mysql22","ref_type":"tag","master_branch":"master","description":"cloudpiapiClientTest create!","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:05Z"} +,{"id":"2489653417","type":"CreateEvent","actor":{"id":5339055,"login":"Pisces000221","gravatar_id":"","url":"https://api.github.com/users/Pisces000221","avatar_url":"https://avatars.githubusercontent.com/u/5339055?"},"repo":{"id":28688692,"name":"a6trs/accumu-note","url":"https://api.github.com/repos/a6trs/accumu-note"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"每一个伟大的工程背后,都有着无数不为人知的故事和秘密。","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:08Z","org":{"id":10167537,"login":"a6trs","gravatar_id":"","url":"https://api.github.com/orgs/a6trs","avatar_url":"https://avatars.githubusercontent.com/u/10167537?"}} +,{"id":"2489653418","type":"CreateEvent","actor":{"id":1308306,"login":"relativebit","gravatar_id":"","url":"https://api.github.com/users/relativebit","avatar_url":"https://avatars.githubusercontent.com/u/1308306?"},"repo":{"id":28574566,"name":"relativebit/relativebit.com","url":"https://api.github.com/repos/relativebit/relativebit.com"},"payload":{"ref":"doven","ref_type":"branch","master_branch":"master","description":"Source for https://relativebit.com","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:08Z"} +,{"id":"2489653422","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":536865076,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"88f262e09f7d3b1681c952961985083cfd48bc41","before":"3a3f749dee0da674db13c946d2b74a1f4ded512b","commits":[{"sha":"88f262e09f7d3b1681c952961985083cfd48bc41","author":{"email":"24bf68e341ce0fbd9259a5d51feed79682ea4eba@greatfire.org","name":"Ubuntu"},"message":"a","distinct":true,"url":"https://api.github.com/repos/greatfire/z/commits/88f262e09f7d3b1681c952961985083cfd48bc41"}]},"public":true,"created_at":"2015-01-01T15:05:08Z"} +,{"id":"2489653424","type":"PushEvent","actor":{"id":1306576,"login":"LostCrew","gravatar_id":"","url":"https://api.github.com/users/LostCrew","avatar_url":"https://avatars.githubusercontent.com/u/1306576?"},"repo":{"id":10228575,"name":"LostCrew/rateyourmusic","url":"https://api.github.com/repos/LostCrew/rateyourmusic"},"payload":{"push_id":536865078,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"db27be999761842098aa2b3455907ca0141853e4","before":"295ebcdb15342f414ef1665af4968d28b5883a99","commits":[{"sha":"db27be999761842098aa2b3455907ca0141853e4","author":{"email":"52d3bae5c1352c5f807c79f488efa95d1c522870@lostcrew.it","name":"Emanuele Marchi"},"message":"updated description and README","distinct":true,"url":"https://api.github.com/repos/LostCrew/rateyourmusic/commits/db27be999761842098aa2b3455907ca0141853e4"}]},"public":true,"created_at":"2015-01-01T15:05:08Z"} +,{"id":"2489653427","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":28688693,"name":"lihechao/ChatRoom","url":"https://api.github.com/repos/lihechao/ChatRoom"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"C/S模式的网络聊天室客户端和服务器","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:08Z"} +,{"id":"2489653430","type":"PushEvent","actor":{"id":612769,"login":"csabagaspar","gravatar_id":"","url":"https://api.github.com/users/csabagaspar","avatar_url":"https://avatars.githubusercontent.com/u/612769?"},"repo":{"id":24816620,"name":"csabagaspar/example-tools","url":"https://api.github.com/repos/csabagaspar/example-tools"},"payload":{"push_id":536865085,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"477a3c62ab99e6b0805fd86984ad1b21feda0c08","before":"224398ea57849cce2a1fddd92e0ce93343172991","commits":[{"sha":"477a3c62ab99e6b0805fd86984ad1b21feda0c08","author":{"email":"d645ea8f2305bb71f622d0e14248fca98135d66d@gmail.com","name":"csabagaspar"},"message":"logstash and jackson","distinct":true,"url":"https://api.github.com/repos/csabagaspar/example-tools/commits/477a3c62ab99e6b0805fd86984ad1b21feda0c08"}]},"public":true,"created_at":"2015-01-01T15:05:08Z"} +,{"id":"2489653435","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327432,"name":"cloudify-cosmo/cloudify-openstack-provider","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-openstack-provider"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:08Z","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":"2489653438","type":"IssuesEvent","actor":{"id":1665772,"login":"ondrejsika","gravatar_id":"","url":"https://api.github.com/users/ondrejsika","avatar_url":"https://avatars.githubusercontent.com/u/1665772?"},"repo":{"id":13438321,"name":"phphost/phphost","url":"https://api.github.com/repos/phphost/phphost"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/phphost/phphost/issues/5","labels_url":"https://api.github.com/repos/phphost/phphost/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/phphost/phphost/issues/5/comments","events_url":"https://api.github.com/repos/phphost/phphost/issues/5/events","html_url":"https://github.com/phphost/phphost/issues/5","id":53221431,"number":5,"title":"postgres support","user":{"login":"ondrejsika","id":1665772,"avatar_url":"https://avatars.githubusercontent.com/u/1665772?v=3","gravatar_id":"","url":"https://api.github.com/users/ondrejsika","html_url":"https://github.com/ondrejsika","followers_url":"https://api.github.com/users/ondrejsika/followers","following_url":"https://api.github.com/users/ondrejsika/following{/other_user}","gists_url":"https://api.github.com/users/ondrejsika/gists{/gist_id}","starred_url":"https://api.github.com/users/ondrejsika/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ondrejsika/subscriptions","organizations_url":"https://api.github.com/users/ondrejsika/orgs","repos_url":"https://api.github.com/users/ondrejsika/repos","events_url":"https://api.github.com/users/ondrejsika/events{/privacy}","received_events_url":"https://api.github.com/users/ondrejsika/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:05:08Z","updated_at":"2015-01-01T15:05:08Z","closed_at":null,"body":"https://github.com/phphost/phm/issues/2"}},"public":true,"created_at":"2015-01-01T15:05:08Z","org":{"id":5645680,"login":"phphost","gravatar_id":"","url":"https://api.github.com/orgs/phphost","avatar_url":"https://avatars.githubusercontent.com/u/5645680?"}} +,{"id":"2489653440","type":"PushEvent","actor":{"id":6771700,"login":"cjwddtc","gravatar_id":"","url":"https://api.github.com/users/cjwddtc","avatar_url":"https://avatars.githubusercontent.com/u/6771700?"},"repo":{"id":28661026,"name":"cjwddtc/asd","url":"https://api.github.com/repos/cjwddtc/asd"},"payload":{"push_id":536865089,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8917c3c8d3752d735b48b2d7e0942ca0d2d73936","before":"4d727b37440f523c204f463e0f4a3f939de06688","commits":[{"sha":"8917c3c8d3752d735b48b2d7e0942ca0d2d73936","author":{"email":"cce0ee3666d2a8038a5486a3a2e0ef7df45eb8e9@ssmail.hit.edu.cn","name":"cjwddtc"},"message":"修复\n\n修复","distinct":true,"url":"https://api.github.com/repos/cjwddtc/asd/commits/8917c3c8d3752d735b48b2d7e0942ca0d2d73936"}]},"public":true,"created_at":"2015-01-01T15:05:08Z"} +,{"id":"2489653444","type":"PushEvent","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":{"push_id":536865091,"size":1,"distinct_size":1,"ref":"refs/heads/release_branch_1.0","head":"03c94e8f323ad20a3d72766734a86d609acf9e43","before":"61fef70ed01accb61d78eceadebf2213098fc9aa","commits":[{"sha":"03c94e8f323ad20a3d72766734a86d609acf9e43","author":{"email":"5c42cbeae7aa5f4bd3816fa47f49e5ce7a88d270@yahoo.fr","name":"Exuper O"},"message":"task(kill_list): replace kill list with coding practices instead of assassins","distinct":true,"url":"https://api.github.com/repos/exuperok/dojo_rules/commits/03c94e8f323ad20a3d72766734a86d609acf9e43"}]},"public":true,"created_at":"2015-01-01T15:05:08Z"} +,{"id":"2489653447","type":"WatchEvent","actor":{"id":1730702,"login":"mquandalle","gravatar_id":"","url":"https://api.github.com/users/mquandalle","avatar_url":"https://avatars.githubusercontent.com/u/1730702?"},"repo":{"id":11654790,"name":"techfort/LokiJS","url":"https://api.github.com/repos/techfort/LokiJS"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:09Z"} +,{"id":"2489653448","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":536865080,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fc8fa23156b2f8e0324c2b1ccc31eded475ab640","before":"285f31f23dfe56b375350a6daa8b79afe65adbe7","commits":[{"sha":"fc8fa23156b2f8e0324c2b1ccc31eded475ab640","author":{"email":"24bf68e341ce0fbd9259a5d51feed79682ea4eba@greatfire.org","name":"Ubuntu"},"message":"a","distinct":true,"url":"https://api.github.com/repos/greatfire/wiki/commits/fc8fa23156b2f8e0324c2b1ccc31eded475ab640"}]},"public":true,"created_at":"2015-01-01T15:05:09Z"} +,{"id":"2489653451","type":"PushEvent","actor":{"id":72053,"login":"graemeg","gravatar_id":"","url":"https://api.github.com/users/graemeg","avatar_url":"https://avatars.githubusercontent.com/u/72053?"},"repo":{"id":171777,"name":"graemeg/lazarus","url":"https://api.github.com/repos/graemeg/lazarus"},"payload":{"push_id":536865094,"size":1,"distinct_size":1,"ref":"refs/heads/upstream","head":"189169453e44e900f72254097226403eaeaf3ed0","before":"5bb7df77780ec5b358ba4976f2904425ea49df9a","commits":[{"sha":"189169453e44e900f72254097226403eaeaf3ed0","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/graemeg/lazarus/commits/189169453e44e900f72254097226403eaeaf3ed0"}]},"public":true,"created_at":"2015-01-01T15:05:09Z"} +,{"id":"2489653453","type":"IssuesEvent","actor":{"id":1459257,"login":"lloydbenson","gravatar_id":"","url":"https://api.github.com/users/lloydbenson","avatar_url":"https://avatars.githubusercontent.com/u/1459257?"},"repo":{"id":23658480,"name":"fishin/gills","url":"https://api.github.com/repos/fishin/gills"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/fishin/gills/issues/36","labels_url":"https://api.github.com/repos/fishin/gills/issues/36/labels{/name}","comments_url":"https://api.github.com/repos/fishin/gills/issues/36/comments","events_url":"https://api.github.com/repos/fishin/gills/issues/36/events","html_url":"https://github.com/fishin/gills/issues/36","id":52898665,"number":36,"title":"fix git pull","user":{"login":"lloydbenson","id":1459257,"avatar_url":"https://avatars.githubusercontent.com/u/1459257?v=3","gravatar_id":"","url":"https://api.github.com/users/lloydbenson","html_url":"https://github.com/lloydbenson","followers_url":"https://api.github.com/users/lloydbenson/followers","following_url":"https://api.github.com/users/lloydbenson/following{/other_user}","gists_url":"https://api.github.com/users/lloydbenson/gists{/gist_id}","starred_url":"https://api.github.com/users/lloydbenson/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lloydbenson/subscriptions","organizations_url":"https://api.github.com/users/lloydbenson/orgs","repos_url":"https://api.github.com/users/lloydbenson/repos","events_url":"https://api.github.com/users/lloydbenson/events{/privacy}","received_events_url":"https://api.github.com/users/lloydbenson/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":{"login":"lloydbenson","id":1459257,"avatar_url":"https://avatars.githubusercontent.com/u/1459257?v=3","gravatar_id":"","url":"https://api.github.com/users/lloydbenson","html_url":"https://github.com/lloydbenson","followers_url":"https://api.github.com/users/lloydbenson/followers","following_url":"https://api.github.com/users/lloydbenson/following{/other_user}","gists_url":"https://api.github.com/users/lloydbenson/gists{/gist_id}","starred_url":"https://api.github.com/users/lloydbenson/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lloydbenson/subscriptions","organizations_url":"https://api.github.com/users/lloydbenson/orgs","repos_url":"https://api.github.com/users/lloydbenson/repos","events_url":"https://api.github.com/users/lloydbenson/events{/privacy}","received_events_url":"https://api.github.com/users/lloydbenson/received_events","type":"User","site_admin":false},"milestone":null,"comments":0,"created_at":"2014-12-26T12:50:05Z","updated_at":"2015-01-01T15:05:09Z","closed_at":"2015-01-01T15:05:09Z","body":"Fix git pull issues if you change branch, it doesnt care."}},"public":true,"created_at":"2015-01-01T15:05:09Z","org":{"id":8632751,"login":"fishin","gravatar_id":"","url":"https://api.github.com/orgs/fishin","avatar_url":"https://avatars.githubusercontent.com/u/8632751?"}} +,{"id":"2489653456","type":"PushEvent","actor":{"id":803768,"login":"backbone","gravatar_id":"","url":"https://api.github.com/users/backbone","avatar_url":"https://avatars.githubusercontent.com/u/803768?"},"repo":{"id":24404721,"name":"backbone/portage-tree","url":"https://api.github.com/repos/backbone/portage-tree"},"payload":{"push_id":536865097,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4f94bfc2c04c28d19a4713826ba603c7c8964830","before":"ab7ad151e49108132a8fb91ba259fd31f196e04e","commits":[{"sha":"4f94bfc2c04c28d19a4713826ba603c7c8964830","author":{"email":"4da38e79dbf743adc207e22b3829ee998325e896@backbone.ws","name":"Kolan Sh"},"message":"Sync with portage [Thu Jan 1 18:05:03 MSK 2015].","distinct":true,"url":"https://api.github.com/repos/backbone/portage-tree/commits/4f94bfc2c04c28d19a4713826ba603c7c8964830"}]},"public":true,"created_at":"2015-01-01T15:05:10Z"} +,{"id":"2489653457","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327432,"name":"cloudify-cosmo/cloudify-openstack-provider","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-openstack-provider"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify OpenStack Provider","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:10Z","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":"2489653463","type":"PushEvent","actor":{"id":4510675,"login":"mojo1643","gravatar_id":"","url":"https://api.github.com/users/mojo1643","avatar_url":"https://avatars.githubusercontent.com/u/4510675?"},"repo":{"id":27554864,"name":"mojo1643/Dalal_v2","url":"https://api.github.com/repos/mojo1643/Dalal_v2"},"payload":{"push_id":536865100,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"a09ea229fb445b91bd21dc50e1f0c115624475e4","before":"ab3bac8f1795d5980b3905e7be2b400061364d22","commits":[{"sha":"918200d0165aa12aa797eee361c963c15d4cf718","author":{"email":"35018c8890fea7a8ef5cb6cb9e1bcfa0dcf3c2c7@gmail.com","name":"mojo1643"},"message":"buy_sell_updates","distinct":true,"url":"https://api.github.com/repos/mojo1643/Dalal_v2/commits/918200d0165aa12aa797eee361c963c15d4cf718"},{"sha":"4938d5c25d7b275d22ef6a0238803a5440747892","author":{"email":"35018c8890fea7a8ef5cb6cb9e1bcfa0dcf3c2c7@gmail.com","name":"mojo1643"},"message":"century","distinct":true,"url":"https://api.github.com/repos/mojo1643/Dalal_v2/commits/4938d5c25d7b275d22ef6a0238803a5440747892"},{"sha":"a09ea229fb445b91bd21dc50e1f0c115624475e4","author":{"email":"35018c8890fea7a8ef5cb6cb9e1bcfa0dcf3c2c7@gmail.com","name":"mojo1643"},"message":"century","distinct":true,"url":"https://api.github.com/repos/mojo1643/Dalal_v2/commits/a09ea229fb445b91bd21dc50e1f0c115624475e4"}]},"public":true,"created_at":"2015-01-01T15:05:11Z"} +,{"id":"2489653464","type":"PushEvent","actor":{"id":4151414,"login":"simplement-e","gravatar_id":"","url":"https://api.github.com/users/simplement-e","avatar_url":"https://avatars.githubusercontent.com/u/4151414?"},"repo":{"id":22617225,"name":"simplement-e/aurore","url":"https://api.github.com/repos/simplement-e/aurore"},"payload":{"push_id":536865101,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7a0982f31a48e0a11dc8078ca1e8191702c1c60b","before":"e12c2e467e290c9aff390e251efdf94f34c01e09","commits":[{"sha":"7a0982f31a48e0a11dc8078ca1e8191702c1c60b","author":{"email":"17b9e1c64588c7fa6419b4d29dc1f4426279ba01@simplement-e.fr","name":"Michael"},"message":"Obtention ip locale zipato depuis serveur cloud","distinct":true,"url":"https://api.github.com/repos/simplement-e/aurore/commits/7a0982f31a48e0a11dc8078ca1e8191702c1c60b"}]},"public":true,"created_at":"2015-01-01T15:05:11Z"} +,{"id":"2489653467","type":"IssueCommentEvent","actor":{"id":564592,"login":"HeinrichApfelmus","gravatar_id":"","url":"https://api.github.com/users/HeinrichApfelmus","avatar_url":"https://avatars.githubusercontent.com/u/564592?"},"repo":{"id":6774018,"name":"fpco/stackage","url":"https://api.github.com/repos/fpco/stackage"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/fpco/stackage/issues/295","labels_url":"https://api.github.com/repos/fpco/stackage/issues/295/labels{/name}","comments_url":"https://api.github.com/repos/fpco/stackage/issues/295/comments","events_url":"https://api.github.com/repos/fpco/stackage/issues/295/events","html_url":"https://github.com/fpco/stackage/issues/295","id":44212499,"number":295,"title":"threepenny-gui: does not support websockets 0.9","user":{"login":"snoyberg","id":49415,"avatar_url":"https://avatars.githubusercontent.com/u/49415?v=3","gravatar_id":"","url":"https://api.github.com/users/snoyberg","html_url":"https://github.com/snoyberg","followers_url":"https://api.github.com/users/snoyberg/followers","following_url":"https://api.github.com/users/snoyberg/following{/other_user}","gists_url":"https://api.github.com/users/snoyberg/gists{/gist_id}","starred_url":"https://api.github.com/users/snoyberg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/snoyberg/subscriptions","organizations_url":"https://api.github.com/users/snoyberg/orgs","repos_url":"https://api.github.com/users/snoyberg/repos","events_url":"https://api.github.com/users/snoyberg/events{/privacy}","received_events_url":"https://api.github.com/users/snoyberg/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2014-09-28T04:10:15Z","updated_at":"2015-01-01T15:05:11Z","closed_at":"2014-12-31T09:05:11Z","body":"threepenny-gui-0.4.2.0 (FP Complete ) cannot use: \r\n- websockets-0.9.0.1 -- ==0.8.*\r\n- websockets-snap-0.9.0.0 -- ==0.8.*\r\n\r\nPinging @HeinrichApfelmus"},"comment":{"url":"https://api.github.com/repos/fpco/stackage/issues/comments/68488578","html_url":"https://github.com/fpco/stackage/issues/295#issuecomment-68488578","issue_url":"https://api.github.com/repos/fpco/stackage/issues/295","id":68488578,"user":{"login":"HeinrichApfelmus","id":564592,"avatar_url":"https://avatars.githubusercontent.com/u/564592?v=3","gravatar_id":"","url":"https://api.github.com/users/HeinrichApfelmus","html_url":"https://github.com/HeinrichApfelmus","followers_url":"https://api.github.com/users/HeinrichApfelmus/followers","following_url":"https://api.github.com/users/HeinrichApfelmus/following{/other_user}","gists_url":"https://api.github.com/users/HeinrichApfelmus/gists{/gist_id}","starred_url":"https://api.github.com/users/HeinrichApfelmus/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/HeinrichApfelmus/subscriptions","organizations_url":"https://api.github.com/users/HeinrichApfelmus/orgs","repos_url":"https://api.github.com/users/HeinrichApfelmus/repos","events_url":"https://api.github.com/users/HeinrichApfelmus/events{/privacy}","received_events_url":"https://api.github.com/users/HeinrichApfelmus/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:05:11Z","updated_at":"2015-01-01T15:05:11Z","body":"Unfortunately, I don't think I'll be able to fulfill the maintainer's agreement in the foreseeable future, so I have to decline."}},"public":true,"created_at":"2015-01-01T15:05:11Z","org":{"id":2163372,"login":"fpco","gravatar_id":"","url":"https://api.github.com/orgs/fpco","avatar_url":"https://avatars.githubusercontent.com/u/2163372?"}} +,{"id":"2489653473","type":"PullRequestEvent","actor":{"id":7948328,"login":"andy-hiroyuki","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","avatar_url":"https://avatars.githubusercontent.com/u/7948328?"},"repo":{"id":21061553,"name":"andy-hiroyuki/andy-hiroyuki.github.io","url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io"},"payload":{"action":"closed","number":48,"pull_request":{"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48","id":26743796,"html_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/48","diff_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/48.diff","patch_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/48.patch","issue_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/48","number":48,"state":"closed","locked":false,"title":"Silver Forest","user":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:04:07Z","updated_at":"2015-01-01T15:05:12Z","closed_at":"2015-01-01T15:05:12Z","merged_at":"2015-01-01T15:05:12Z","merge_commit_sha":"68eaced4ddc7c7de603a40d4205694a1cd752cf8","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48/commits","review_comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48/comments","review_comment_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/comments/{number}","comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/48/comments","statuses_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/a133ccb43da62f8b35640a3519e5a519669e1573","head":{"label":"syon:middleman","ref":"middleman","sha":"a133ccb43da62f8b35640a3519e5a519669e1573","user":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"repo":{"id":21061659,"name":"andy-hiroyuki.github.io","full_name":"syon/andy-hiroyuki.github.io","owner":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/syon/andy-hiroyuki.github.io","description":"","fork":true,"url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io","forks_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/forks","keys_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/teams","hooks_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/hooks","issue_events_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/events","assignees_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/tags","blobs_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/languages","stargazers_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/stargazers","contributors_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/contributors","subscribers_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/subscribers","subscription_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/subscription","commits_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/merges","archive_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/downloads","issues_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/labels{/name}","releases_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/releases{/id}","created_at":"2014-06-21T06:00:23Z","updated_at":"2014-12-23T17:37:01Z","pushed_at":"2015-01-01T15:03:46Z","git_url":"git://github.com/syon/andy-hiroyuki.github.io.git","ssh_url":"git@github.com:syon/andy-hiroyuki.github.io.git","clone_url":"https://github.com/syon/andy-hiroyuki.github.io.git","svn_url":"https://github.com/syon/andy-hiroyuki.github.io","homepage":null,"size":16189,"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":"andy-hiroyuki:middleman","ref":"middleman","sha":"2321737bf1add6a64d3cefb5f3e4699fd2d93491","user":{"login":"andy-hiroyuki","id":7948328,"avatar_url":"https://avatars.githubusercontent.com/u/7948328?v=3","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","html_url":"https://github.com/andy-hiroyuki","followers_url":"https://api.github.com/users/andy-hiroyuki/followers","following_url":"https://api.github.com/users/andy-hiroyuki/following{/other_user}","gists_url":"https://api.github.com/users/andy-hiroyuki/gists{/gist_id}","starred_url":"https://api.github.com/users/andy-hiroyuki/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andy-hiroyuki/subscriptions","organizations_url":"https://api.github.com/users/andy-hiroyuki/orgs","repos_url":"https://api.github.com/users/andy-hiroyuki/repos","events_url":"https://api.github.com/users/andy-hiroyuki/events{/privacy}","received_events_url":"https://api.github.com/users/andy-hiroyuki/received_events","type":"User","site_admin":false},"repo":{"id":21061553,"name":"andy-hiroyuki.github.io","full_name":"andy-hiroyuki/andy-hiroyuki.github.io","owner":{"login":"andy-hiroyuki","id":7948328,"avatar_url":"https://avatars.githubusercontent.com/u/7948328?v=3","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","html_url":"https://github.com/andy-hiroyuki","followers_url":"https://api.github.com/users/andy-hiroyuki/followers","following_url":"https://api.github.com/users/andy-hiroyuki/following{/other_user}","gists_url":"https://api.github.com/users/andy-hiroyuki/gists{/gist_id}","starred_url":"https://api.github.com/users/andy-hiroyuki/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andy-hiroyuki/subscriptions","organizations_url":"https://api.github.com/users/andy-hiroyuki/orgs","repos_url":"https://api.github.com/users/andy-hiroyuki/repos","events_url":"https://api.github.com/users/andy-hiroyuki/events{/privacy}","received_events_url":"https://api.github.com/users/andy-hiroyuki/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io","description":"","fork":false,"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io","forks_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/forks","keys_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/teams","hooks_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/hooks","issue_events_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/events","assignees_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/tags","blobs_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/languages","stargazers_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/stargazers","contributors_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/contributors","subscribers_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/subscribers","subscription_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/subscription","commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/merges","archive_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/downloads","issues_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/labels{/name}","releases_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/releases{/id}","created_at":"2014-06-21T05:52:31Z","updated_at":"2014-12-23T17:40:26Z","pushed_at":"2015-01-01T15:05:12Z","git_url":"git://github.com/andy-hiroyuki/andy-hiroyuki.github.io.git","ssh_url":"git@github.com:andy-hiroyuki/andy-hiroyuki.github.io.git","clone_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io.git","svn_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io","homepage":null,"size":16162,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48"},"html":{"href":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/48"},"issue":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/48"},"comments":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/48/comments"},"review_comments":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48/comments"},"review_comment":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48/commits"},"statuses":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/a133ccb43da62f8b35640a3519e5a519669e1573"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"andy-hiroyuki","id":7948328,"avatar_url":"https://avatars.githubusercontent.com/u/7948328?v=3","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","html_url":"https://github.com/andy-hiroyuki","followers_url":"https://api.github.com/users/andy-hiroyuki/followers","following_url":"https://api.github.com/users/andy-hiroyuki/following{/other_user}","gists_url":"https://api.github.com/users/andy-hiroyuki/gists{/gist_id}","starred_url":"https://api.github.com/users/andy-hiroyuki/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andy-hiroyuki/subscriptions","organizations_url":"https://api.github.com/users/andy-hiroyuki/orgs","repos_url":"https://api.github.com/users/andy-hiroyuki/repos","events_url":"https://api.github.com/users/andy-hiroyuki/events{/privacy}","received_events_url":"https://api.github.com/users/andy-hiroyuki/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":1,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:05:12Z"} +,{"id":"2489653476","type":"PushEvent","actor":{"id":106133,"login":"Tiggar","gravatar_id":"","url":"https://api.github.com/users/Tiggar","avatar_url":"https://avatars.githubusercontent.com/u/106133?"},"repo":{"id":27003508,"name":"Tiggar/isp-performance","url":"https://api.github.com/repos/Tiggar/isp-performance"},"payload":{"push_id":536865106,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"4d45b8162036efa140652e55c1fb406e473b0c22","before":"7b2ec211d48bc075a9c6e34d9a7dd24605edd7b1","commits":[{"sha":"4d45b8162036efa140652e55c1fb406e473b0c22","author":{"email":"5069df3b8e9785f1eb5e6bda1f2483f61b73e1aa@gmail.com","name":"Jan Michael"},"message":"updates all charts","distinct":true,"url":"https://api.github.com/repos/Tiggar/isp-performance/commits/4d45b8162036efa140652e55c1fb406e473b0c22"}]},"public":true,"created_at":"2015-01-01T15:05:12Z"} +,{"id":"2489653477","type":"PushEvent","actor":{"id":2987505,"login":"syssys123","gravatar_id":"","url":"https://api.github.com/users/syssys123","avatar_url":"https://avatars.githubusercontent.com/u/2987505?"},"repo":{"id":28688687,"name":"syssys123/apiproject20141","url":"https://api.github.com/repos/syssys123/apiproject20141"},"payload":{"push_id":536865107,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3d532869ebb6a02dd7eb1786471c1cf54005b36f","before":"bd3c8779721d3827942678df29146920b28a67d1","commits":[{"sha":"3d532869ebb6a02dd7eb1786471c1cf54005b36f","author":{"email":"dc76e9f0c0006e8f919e0c515c66dbba3982f785@hudson.samsungcloud.org","name":"root"},"message":"rails4mysql2","distinct":true,"url":"https://api.github.com/repos/syssys123/apiproject20141/commits/3d532869ebb6a02dd7eb1786471c1cf54005b36f"}]},"public":true,"created_at":"2015-01-01T15:05:13Z"} +,{"id":"2489653478","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":20684007,"name":"cloudify-cosmo/cloudify-libcloud-provider","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-libcloud-provider"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:13Z","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":"2489653480","type":"PushEvent","actor":{"id":7948328,"login":"andy-hiroyuki","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","avatar_url":"https://avatars.githubusercontent.com/u/7948328?"},"repo":{"id":21061553,"name":"andy-hiroyuki/andy-hiroyuki.github.io","url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io"},"payload":{"push_id":536865109,"size":2,"distinct_size":2,"ref":"refs/heads/middleman","head":"17d81123f1814cc4bc30a8b5cde2ad676ddb3942","before":"2321737bf1add6a64d3cefb5f3e4699fd2d93491","commits":[{"sha":"a133ccb43da62f8b35640a3519e5a519669e1573","author":{"email":"efb10bbac3105896ed72c82c36828ccc7a2547da@gmail.com","name":"syon"},"message":"Silver Forest","distinct":true,"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/commits/a133ccb43da62f8b35640a3519e5a519669e1573"},{"sha":"17d81123f1814cc4bc30a8b5cde2ad676ddb3942","author":{"email":"9caf384f4d1faf46005af9913407078e8d6de5d8@gmail.com","name":"Andy Hiroyuki"},"message":"Merge pull request #48 from syon/middleman\n\nSilver Forest","distinct":true,"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/commits/17d81123f1814cc4bc30a8b5cde2ad676ddb3942"}]},"public":true,"created_at":"2015-01-01T15:05:13Z"} +,{"id":"2489653481","type":"PushEvent","actor":{"id":436691,"login":"lfarrell","gravatar_id":"","url":"https://api.github.com/users/lfarrell","avatar_url":"https://avatars.githubusercontent.com/u/436691?"},"repo":{"id":27356689,"name":"lfarrell/DPLA-Metadata-Explorer","url":"https://api.github.com/repos/lfarrell/DPLA-Metadata-Explorer"},"payload":{"push_id":536865110,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ec36ae152b35bd2c1ace255ca14d7da73b70650a","before":"acf158b3040f94659f754c8ad186fc36f55cf0dd","commits":[{"sha":"ec36ae152b35bd2c1ace255ca14d7da73b70650a","author":{"email":"b11d4f2999ccc74f2c93bc88775bb7be7fad72d9@gmail.com","name":"Larry Farrell"},"message":"Add link out searching. Links work correctly.","distinct":true,"url":"https://api.github.com/repos/lfarrell/DPLA-Metadata-Explorer/commits/ec36ae152b35bd2c1ace255ca14d7da73b70650a"}]},"public":true,"created_at":"2015-01-01T15:05:13Z"} +,{"id":"2489653483","type":"PushEvent","actor":{"id":8448394,"login":"puneetkumaragarwall","gravatar_id":"","url":"https://api.github.com/users/puneetkumaragarwall","avatar_url":"https://avatars.githubusercontent.com/u/8448394?"},"repo":{"id":28298619,"name":"puneetkumaragarwall/ExpediaHotelDeals","url":"https://api.github.com/repos/puneetkumaragarwall/ExpediaHotelDeals"},"payload":{"push_id":536865112,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ae3b8dc179345ecf3bde5f34065470578bf860be","before":"b5cb75f124823bbebb8ac343e0c744c9755b07ca","commits":[{"sha":"ae3b8dc179345ecf3bde5f34065470578bf860be","author":{"email":"a0c95c08074bbbc08b2fd2a825e9033dde96ec55@yahoo.co.in","name":"puneetkumaragarwall"},"message":"added jetty runner","distinct":true,"url":"https://api.github.com/repos/puneetkumaragarwall/ExpediaHotelDeals/commits/ae3b8dc179345ecf3bde5f34065470578bf860be"}]},"public":true,"created_at":"2015-01-01T15:05:13Z"} +,{"id":"2489653484","type":"CreateEvent","actor":{"id":7875273,"login":"Paz23","gravatar_id":"","url":"https://api.github.com/users/Paz23","avatar_url":"https://avatars.githubusercontent.com/u/7875273?"},"repo":{"id":28688686,"name":"Paz23/cd_mongoose_dashboard","url":"https://api.github.com/repos/Paz23/cd_mongoose_dashboard"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"node.js w/mongodb & mongoose - basic CRUD operations","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:13Z"} +,{"id":"2489653486","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":536865113,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f5591d055c838387eaa8fe838bacb99c15c16e58","before":"2b46c90ae6537603fc0591b4dbb92f9bb70a5535","commits":[{"sha":"f5591d055c838387eaa8fe838bacb99c15c16e58","author":{"email":"0ccf54d51d1a5240ad356feb30dfa4d1749f8844@gmail.com","name":"TraderCoderGambler"},"message":"auto-update balances","distinct":true,"url":"https://api.github.com/repos/chancecoin/chancecoinj/commits/f5591d055c838387eaa8fe838bacb99c15c16e58"}]},"public":true,"created_at":"2015-01-01T15:05:13Z"} +,{"id":"2489653492","type":"PushEvent","actor":{"id":3724388,"login":"cheyang","gravatar_id":"","url":"https://api.github.com/users/cheyang","avatar_url":"https://avatars.githubusercontent.com/u/3724388?"},"repo":{"id":27756669,"name":"cheyang/docker_brick","url":"https://api.github.com/repos/cheyang/docker_brick"},"payload":{"push_id":536865116,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"796e2f27cbc854c8a3778928ad810679b8b213f6","before":"e4a573c9b97b253d785a550171944c09400d2bef","commits":[{"sha":"796e2f27cbc854c8a3778928ad810679b8b213f6","author":{"email":"a29c45cf07a273bd58fb05ec870d18d562d741a4@163.com","name":"cheyang"},"message":"commit 2","distinct":true,"url":"https://api.github.com/repos/cheyang/docker_brick/commits/796e2f27cbc854c8a3778928ad810679b8b213f6"}]},"public":true,"created_at":"2015-01-01T15:05:14Z"} +,{"id":"2489653493","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":20684007,"name":"cloudify-cosmo/cloudify-libcloud-provider","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-libcloud-provider"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify Libcloud provider","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:14Z","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":"2489653494","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":"opened","issue":{"url":"https://api.github.com/repos/cptnnick/F3_PA/issues/4","labels_url":"https://api.github.com/repos/cptnnick/F3_PA/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/cptnnick/F3_PA/issues/4/comments","events_url":"https://api.github.com/repos/cptnnick/F3_PA/issues/4/events","html_url":"https://github.com/cptnnick/F3_PA/issues/4","id":53221433,"number":4,"title":"What do with radios while waiting for newest F3.","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/question","name":"question","color":"cc317c"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:05:14Z","updated_at":"2015-01-01T15:05:14Z","closed_at":null,"body":"While we can easily utilize the modules, I'm a bit afraid of the new mission makers, as they will most likely have the whole 31-39 thing happen and people bitching in the AAR. We could update the mission.sqm to include these preplaced, but I'm not sure if thats a good idea at all. \r\n\r\nStick with what we got for now i guess?"}},"public":true,"created_at":"2015-01-01T15:05:14Z"} +,{"id":"2489653496","type":"PushEvent","actor":{"id":6229503,"login":"divingteng","gravatar_id":"","url":"https://api.github.com/users/divingteng","avatar_url":"https://avatars.githubusercontent.com/u/6229503?"},"repo":{"id":24402101,"name":"divingteng/divingteng.github.io","url":"https://api.github.com/repos/divingteng/divingteng.github.io"},"payload":{"push_id":536865117,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6bae03ee51cf01572012128f822c4b2d68a274e8","before":"efd6cb545b08eabf7bd9032bd13926e28b7667d7","commits":[{"sha":"6bae03ee51cf01572012128f822c4b2d68a274e8","author":{"email":"6300585194b05b18f92030355740c498c19577f1@gmail.com","name":"tengyue"},"message":"修改瀑布流加载时背景","distinct":true,"url":"https://api.github.com/repos/divingteng/divingteng.github.io/commits/6bae03ee51cf01572012128f822c4b2d68a274e8"}]},"public":true,"created_at":"2015-01-01T15:05:14Z"} +,{"id":"2489653499","type":"PushEvent","actor":{"id":216771,"login":"jmchilton","gravatar_id":"","url":"https://api.github.com/users/jmchilton","avatar_url":"https://avatars.githubusercontent.com/u/216771?"},"repo":{"id":6923705,"name":"jmchilton/galaxy-central","url":"https://api.github.com/repos/jmchilton/galaxy-central"},"payload":{"push_id":536865120,"size":4,"distinct_size":4,"ref":"refs/heads/master","head":"264f7e16bc7026b6557a613edaf58afb148720f5","before":"76382e8b83d0447f23566fa6537c1930dde3782e","commits":[{"sha":"71016e2b8deb423b0acfbd2072e3fc9a06821e05","author":{"email":"e361bfc8c8526c02f5efd3e71aa466615402f28f@gmail.com","name":"John Chilton"},"message":"PEP-8 fix for lib/tool_shed/tools/tool_version_manager.py.","distinct":true,"url":"https://api.github.com/repos/jmchilton/galaxy-central/commits/71016e2b8deb423b0acfbd2072e3fc9a06821e05"},{"sha":"fa70d39fdb82b0608220a8601fffd0a6aa3e2a23","author":{"email":"e361bfc8c8526c02f5efd3e71aa466615402f28f@gmail.com","name":"John Chilton"},"message":"Unit test to verify tool panel handles multiple successive TS install...\nIn particular that the integrated panel reflects all the installed tools but that they are groupped correctly in ToolBox._tool_panel.","distinct":true,"url":"https://api.github.com/repos/jmchilton/galaxy-central/commits/fa70d39fdb82b0608220a8601fffd0a6aa3e2a23"},{"sha":"ef421522e5d0d050e081202a7c8bb8cfaba4f57e","author":{"email":"e361bfc8c8526c02f5efd3e71aa466615402f28f@gmail.com","name":"John Chilton"},"message":"Tweak InstallManger handle_repository_contents to clarify...\n... that this method is only used within this class.","distinct":true,"url":"https://api.github.com/repos/jmchilton/galaxy-central/commits/ef421522e5d0d050e081202a7c8bb8cfaba4f57e"},{"sha":"264f7e16bc7026b6557a613edaf58afb148720f5","author":{"email":"e361bfc8c8526c02f5efd3e71aa466615402f28f@gmail.com","name":"John Chilton"},"message":"Bugfix: Populte tool lineage stuff prior to install.\nDuring tool shed tool installs populate lineage information in tool shed install database prior to adding tool to the tool panel so that the lineage information may be used to group tools. Previously I believe these tools would only be correctly groupped after restarting Galaxy.","distinct":true,"url":"https://api.github.com/repos/jmchilton/galaxy-central/commits/264f7e16bc7026b6557a613edaf58afb148720f5"}]},"public":true,"created_at":"2015-01-01T15:05:15Z"} +,{"id":"2489653504","type":"IssueCommentEvent","actor":{"id":180264,"login":"sethrubenstein","gravatar_id":"","url":"https://api.github.com/users/sethrubenstein","avatar_url":"https://avatars.githubusercontent.com/u/180264?"},"repo":{"id":14286513,"name":"PixelRocket-Biz/cliff-michaels","url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163","labels_url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163/labels{/name}","comments_url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163/comments","events_url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163/events","html_url":"https://github.com/PixelRocket-Biz/cliff-michaels/issues/163","id":53198415,"number":163,"title":"HOW DO PEOPLE KNOW HOW TO PRINT THEIR SAVED TOOLS?","user":{"login":"cliffmichaelsgithub","id":6202539,"avatar_url":"https://avatars.githubusercontent.com/u/6202539?v=3","gravatar_id":"","url":"https://api.github.com/users/cliffmichaelsgithub","html_url":"https://github.com/cliffmichaelsgithub","followers_url":"https://api.github.com/users/cliffmichaelsgithub/followers","following_url":"https://api.github.com/users/cliffmichaelsgithub/following{/other_user}","gists_url":"https://api.github.com/users/cliffmichaelsgithub/gists{/gist_id}","starred_url":"https://api.github.com/users/cliffmichaelsgithub/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cliffmichaelsgithub/subscriptions","organizations_url":"https://api.github.com/users/cliffmichaelsgithub/orgs","repos_url":"https://api.github.com/users/cliffmichaelsgithub/repos","events_url":"https://api.github.com/users/cliffmichaelsgithub/events{/privacy}","received_events_url":"https://api.github.com/users/cliffmichaelsgithub/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-31T19:05:12Z","updated_at":"2015-01-01T15:05:16Z","closed_at":"2015-01-01T15:05:16Z","body":"Will we have a PINT BUTTON ON the tool or exercise edit page?"},"comment":{"url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/comments/68488580","html_url":"https://github.com/PixelRocket-Biz/cliff-michaels/issues/163#issuecomment-68488580","issue_url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163","id":68488580,"user":{"login":"sethrubenstein","id":180264,"avatar_url":"https://avatars.githubusercontent.com/u/180264?v=3","gravatar_id":"","url":"https://api.github.com/users/sethrubenstein","html_url":"https://github.com/sethrubenstein","followers_url":"https://api.github.com/users/sethrubenstein/followers","following_url":"https://api.github.com/users/sethrubenstein/following{/other_user}","gists_url":"https://api.github.com/users/sethrubenstein/gists{/gist_id}","starred_url":"https://api.github.com/users/sethrubenstein/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sethrubenstein/subscriptions","organizations_url":"https://api.github.com/users/sethrubenstein/orgs","repos_url":"https://api.github.com/users/sethrubenstein/repos","events_url":"https://api.github.com/users/sethrubenstein/events{/privacy}","received_events_url":"https://api.github.com/users/sethrubenstein/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:05:16Z","updated_at":"2015-01-01T15:05:16Z","body":"Part of Chris Coveys notes - add a print button. Thats in my todo list for things to get out Sunday."}},"public":true,"created_at":"2015-01-01T15:05:16Z","org":{"id":4207428,"login":"PixelRocket-Biz","gravatar_id":"","url":"https://api.github.com/orgs/PixelRocket-Biz","avatar_url":"https://avatars.githubusercontent.com/u/4207428?"}} +,{"id":"2489653505","type":"IssuesEvent","actor":{"id":180264,"login":"sethrubenstein","gravatar_id":"","url":"https://api.github.com/users/sethrubenstein","avatar_url":"https://avatars.githubusercontent.com/u/180264?"},"repo":{"id":14286513,"name":"PixelRocket-Biz/cliff-michaels","url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163","labels_url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163/labels{/name}","comments_url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163/comments","events_url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163/events","html_url":"https://github.com/PixelRocket-Biz/cliff-michaels/issues/163","id":53198415,"number":163,"title":"HOW DO PEOPLE KNOW HOW TO PRINT THEIR SAVED TOOLS?","user":{"login":"cliffmichaelsgithub","id":6202539,"avatar_url":"https://avatars.githubusercontent.com/u/6202539?v=3","gravatar_id":"","url":"https://api.github.com/users/cliffmichaelsgithub","html_url":"https://github.com/cliffmichaelsgithub","followers_url":"https://api.github.com/users/cliffmichaelsgithub/followers","following_url":"https://api.github.com/users/cliffmichaelsgithub/following{/other_user}","gists_url":"https://api.github.com/users/cliffmichaelsgithub/gists{/gist_id}","starred_url":"https://api.github.com/users/cliffmichaelsgithub/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cliffmichaelsgithub/subscriptions","organizations_url":"https://api.github.com/users/cliffmichaelsgithub/orgs","repos_url":"https://api.github.com/users/cliffmichaelsgithub/repos","events_url":"https://api.github.com/users/cliffmichaelsgithub/events{/privacy}","received_events_url":"https://api.github.com/users/cliffmichaelsgithub/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-31T19:05:12Z","updated_at":"2015-01-01T15:05:16Z","closed_at":"2015-01-01T15:05:16Z","body":"Will we have a PINT BUTTON ON the tool or exercise edit page?"}},"public":true,"created_at":"2015-01-01T15:05:16Z","org":{"id":4207428,"login":"PixelRocket-Biz","gravatar_id":"","url":"https://api.github.com/orgs/PixelRocket-Biz","avatar_url":"https://avatars.githubusercontent.com/u/4207428?"}} +,{"id":"2489653506","type":"WatchEvent","actor":{"id":853977,"login":"yous","gravatar_id":"","url":"https://api.github.com/users/yous","avatar_url":"https://avatars.githubusercontent.com/u/853977?"},"repo":{"id":28237300,"name":"SatanWoo/3D-Github-Contribution","url":"https://api.github.com/repos/SatanWoo/3D-Github-Contribution"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:16Z"} +,{"id":"2489653508","type":"CreateEvent","actor":{"id":2987505,"login":"syssys123","gravatar_id":"","url":"https://api.github.com/users/syssys123","avatar_url":"https://avatars.githubusercontent.com/u/2987505?"},"repo":{"id":28688687,"name":"syssys123/apiproject20141","url":"https://api.github.com/repos/syssys123/apiproject20141"},"payload":{"ref":"rails4mysql2","ref_type":"tag","master_branch":"master","description":"cloudpiapiClientTest create!","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:17Z"} +,{"id":"2489653509","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":536865124,"size":1,"distinct_size":1,"ref":"refs/heads/policy_ui","head":"e568ab2e87b915fb104ae3b8795533352dbfdf41","before":"db4f1d5c3f0dcc249e73e6ef82998c6cd3d18a2e","commits":[{"sha":"e568ab2e87b915fb104ae3b8795533352dbfdf41","author":{"email":"6f01bf2e882e3bb6371d28d1418e5f729e7183e6@ben-hanna.com","name":"Shlomi Zadok"},"message":"fixes","distinct":true,"url":"https://api.github.com/repos/shlomizadok/foreman_openscap/commits/e568ab2e87b915fb104ae3b8795533352dbfdf41"}]},"public":true,"created_at":"2015-01-01T15:05:17Z"} +,{"id":"2489653510","type":"PushEvent","actor":{"id":1513207,"login":"Bdot42","gravatar_id":"","url":"https://api.github.com/users/Bdot42","avatar_url":"https://avatars.githubusercontent.com/u/1513207?"},"repo":{"id":3653720,"name":"Bdot42/mfakto","url":"https://api.github.com/repos/Bdot42/mfakto"},"payload":{"push_id":536865125,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9accebd5209be993d9fc12f5211fe88c51b82d9e","before":"8d8caa4de2d7cc8a23b62308be9a4bb1b67e5e90","commits":[{"sha":"9accebd5209be993d9fc12f5211fe88c51b82d9e","author":{"email":"1dafffdfcfa27b533e3a83f9d95b5a9a64c05a7f@gmx.net","name":"Bertram Franz"},"message":"Adjust to APP SDK 3.0","distinct":true,"url":"https://api.github.com/repos/Bdot42/mfakto/commits/9accebd5209be993d9fc12f5211fe88c51b82d9e"}]},"public":true,"created_at":"2015-01-01T15:05:17Z"} +,{"id":"2489653512","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":"master","ref_type":"branch","master_branch":"0.1","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:17Z"} +,{"id":"2489653513","type":"PushEvent","actor":{"id":23115,"login":"simonask","gravatar_id":"","url":"https://api.github.com/users/simonask","avatar_url":"https://avatars.githubusercontent.com/u/23115?"},"repo":{"id":16694023,"name":"simonask/rust-reflect","url":"https://api.github.com/repos/simonask/rust-reflect"},"payload":{"push_id":536865128,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b9bbcb85acbeb4fab2b6aefab67dca23dad41871","before":"77776402c831bc60e4c6e27cd688e99c2ef84cd9","commits":[{"sha":"b9bbcb85acbeb4fab2b6aefab67dca23dad41871","author":{"email":"088e16a1019277b15d58faf0541e11910eb756f6@ulsnes.dk","name":"Simon Ask Ulsnes"},"message":"Updated README","distinct":true,"url":"https://api.github.com/repos/simonask/rust-reflect/commits/b9bbcb85acbeb4fab2b6aefab67dca23dad41871"}]},"public":true,"created_at":"2015-01-01T15:05:17Z"} +,{"id":"2489653514","type":"WatchEvent","actor":{"id":725190,"login":"developerworks","gravatar_id":"","url":"https://api.github.com/users/developerworks","avatar_url":"https://avatars.githubusercontent.com/u/725190?"},"repo":{"id":10495300,"name":"developerworks/mydocs","url":"https://api.github.com/repos/developerworks/mydocs"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:18Z"} +,{"id":"2489653522","type":"PushEvent","actor":{"id":99252,"login":"chiro","gravatar_id":"","url":"https://api.github.com/users/chiro","avatar_url":"https://avatars.githubusercontent.com/u/99252?"},"repo":{"id":16001919,"name":"chiro/WXCS","url":"https://api.github.com/repos/chiro/WXCS"},"payload":{"push_id":536865130,"size":1,"distinct_size":1,"ref":"refs/heads/update-deps","head":"5c0361757503fa2252da68abc722d28c6d85da52","before":"11715ccc1b66cdd2cfed656db60cf68eda8bae71","commits":[{"sha":"5c0361757503fa2252da68abc722d28c6d85da52","author":{"email":"040ec873a7ea95be0cb1de524988dd73d8a254f4@gmail.com","name":"chiro"},"message":"Update dependencies.","distinct":true,"url":"https://api.github.com/repos/chiro/WXCS/commits/5c0361757503fa2252da68abc722d28c6d85da52"}]},"public":true,"created_at":"2015-01-01T15:05:19Z"} +,{"id":"2489653523","type":"PushEvent","actor":{"id":4692633,"login":"PoulpiFr","gravatar_id":"","url":"https://api.github.com/users/PoulpiFr","avatar_url":"https://avatars.githubusercontent.com/u/4692633?"},"repo":{"id":28680235,"name":"PoulpiFr/poulpifr.github.io","url":"https://api.github.com/repos/PoulpiFr/poulpifr.github.io"},"payload":{"push_id":536865131,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"69c0275ec7faed0366f7010da120e9649641a5c0","before":"22558f99fd64eb0f85c37b3dae6ad50e64e182aa","commits":[{"sha":"69c0275ec7faed0366f7010da120e9649641a5c0","author":{"email":"dcab404f98ba7310a3001578a4eced9bbf94dc6f@MacBook-Pro-de-Pierre.local","name":"Pierre de Poulpiquet"},"message":"Add Jemoji support","distinct":true,"url":"https://api.github.com/repos/PoulpiFr/poulpifr.github.io/commits/69c0275ec7faed0366f7010da120e9649641a5c0"}]},"public":true,"created_at":"2015-01-01T15:05:19Z"} +,{"id":"2489653527","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":28688447,"name":"quixing/hell0-world","url":"https://api.github.com/repos/quixing/hell0-world"},"payload":{"ref":"readme-edits","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:19Z"} +,{"id":"2489653530","type":"PushEvent","actor":{"id":1133652,"login":"keum","gravatar_id":"","url":"https://api.github.com/users/keum","avatar_url":"https://avatars.githubusercontent.com/u/1133652?"},"repo":{"id":18115347,"name":"keum/data_display","url":"https://api.github.com/repos/keum/data_display"},"payload":{"push_id":536865135,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7d080fa167d746936343c3f88a69d54fbb09152e","before":"a80c707a15e89573a64bce56f220ff7b3cae1964","commits":[{"sha":"7d080fa167d746936343c3f88a69d54fbb09152e","author":{"email":"77be1f27789ed5ba740c04e6493c37160e58f28c@gmail.com","name":"Peter Keum"},"message":"\"Data Upload: 2015-01-01 07:05:17 AM\"","distinct":true,"url":"https://api.github.com/repos/keum/data_display/commits/7d080fa167d746936343c3f88a69d54fbb09152e"}]},"public":true,"created_at":"2015-01-01T15:05:19Z"} +,{"id":"2489653531","type":"IssueCommentEvent","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":"created","issue":{"url":"https://api.github.com/repos/expressjs/errorhandler/issues/10","labels_url":"https://api.github.com/repos/expressjs/errorhandler/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/expressjs/errorhandler/issues/10/comments","events_url":"https://api.github.com/repos/expressjs/errorhandler/issues/10/events","html_url":"https://github.com/expressjs/errorhandler/pull/10","id":53221369,"number":10,"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},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:01:59Z","updated_at":"2015-01-01T15:05:19Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/expressjs/errorhandler/pulls/10","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"},"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"},"comment":{"url":"https://api.github.com/repos/expressjs/errorhandler/issues/comments/68488583","html_url":"https://github.com/expressjs/errorhandler/pull/10#issuecomment-68488583","issue_url":"https://api.github.com/repos/expressjs/errorhandler/issues/10","id":68488583,"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},"created_at":"2015-01-01T15:05:19Z","updated_at":"2015-01-01T15:05:19Z","body":"Uh, just saw https://github.com/expressjs/errorhandler/pull/8 Maybe you'd like another implementation."}},"public":true,"created_at":"2015-01-01T15:05:20Z","org":{"id":5658226,"login":"expressjs","gravatar_id":"","url":"https://api.github.com/orgs/expressjs","avatar_url":"https://avatars.githubusercontent.com/u/5658226?"}} +,{"id":"2489653532","type":"WatchEvent","actor":{"id":5133487,"login":"Pierozi","gravatar_id":"","url":"https://api.github.com/users/Pierozi","avatar_url":"https://avatars.githubusercontent.com/u/5133487?"},"repo":{"id":2909429,"name":"nicolargo/glances","url":"https://api.github.com/repos/nicolargo/glances"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:20Z"} +,{"id":"2489653533","type":"PushEvent","actor":{"id":9318079,"login":"FeridunMekec","gravatar_id":"","url":"https://api.github.com/users/FeridunMekec","avatar_url":"https://avatars.githubusercontent.com/u/9318079?"},"repo":{"id":26536869,"name":"fabianroeber/Raumplaner2","url":"https://api.github.com/repos/fabianroeber/Raumplaner2"},"payload":{"push_id":536865136,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a44f61f7eeba7d21a07ad1d4e2f693a0792dd90f","before":"d1c1b5d69aaf55b871711cde2f31f946bb1a22d3","commits":[{"sha":"a44f61f7eeba7d21a07ad1d4e2f693a0792dd90f","author":{"email":"9f9f9c66bff12210938444ad767edb58dae5497c@hdm-stuttgart.de","name":"Feridun Mekec"},"message":"GUI - Neue
für die Klasse HauptLayout hinzugefügt. Alle Elemente\nwerden automatisch in der Mitte des Bildschirms angezeigt","distinct":true,"url":"https://api.github.com/repos/fabianroeber/Raumplaner2/commits/a44f61f7eeba7d21a07ad1d4e2f693a0792dd90f"}]},"public":true,"created_at":"2015-01-01T15:05:20Z"} +,{"id":"2489653538","type":"WatchEvent","actor":{"id":5564569,"login":"jgoldfar","gravatar_id":"","url":"https://api.github.com/users/jgoldfar","avatar_url":"https://avatars.githubusercontent.com/u/5564569?"},"repo":{"id":28233099,"name":"isohuntto/openbay","url":"https://api.github.com/repos/isohuntto/openbay"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:23Z"} +,{"id":"2489653539","type":"CreateEvent","actor":{"id":8510870,"login":"ZyTZag","gravatar_id":"","url":"https://api.github.com/users/ZyTZag","avatar_url":"https://avatars.githubusercontent.com/u/8510870?"},"repo":{"id":28688696,"name":"ZyTZag/Hexapod","url":"https://api.github.com/repos/ZyTZag/Hexapod"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:23Z"} +,{"id":"2489653547","type":"CreateEvent","actor":{"id":1266011,"login":"danprince","gravatar_id":"","url":"https://api.github.com/users/danprince","avatar_url":"https://avatars.githubusercontent.com/u/1266011?"},"repo":{"id":28223366,"name":"danprince/ng-picky","url":"https://api.github.com/repos/danprince/ng-picky"},"payload":{"ref":"v0.1.1","ref_type":"tag","master_branch":"master","description":"A pure Angular color picker.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:23Z"} +,{"id":"2489653548","type":"CreateEvent","actor":{"id":2290904,"login":"Dokman","gravatar_id":"","url":"https://api.github.com/users/Dokman","avatar_url":"https://avatars.githubusercontent.com/u/2290904?"},"repo":{"id":28672261,"name":"Dokman/EvilCraft","url":"https://api.github.com/repos/Dokman/EvilCraft"},"payload":{"ref":"Squashed","ref_type":"branch","master_branch":"master","description":"An evil mod for Minecraft.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:23Z"} +,{"id":"2489653550","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":26163802,"name":"cloudify-cosmo/cloudify-softlayer-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-softlayer-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:23Z","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":"2489653552","type":"PushEvent","actor":{"id":1806581,"login":"liveralmask","gravatar_id":"","url":"https://api.github.com/users/liveralmask","avatar_url":"https://avatars.githubusercontent.com/u/1806581?"},"repo":{"id":28663086,"name":"liveralmask/unity","url":"https://api.github.com/repos/liveralmask/unity"},"payload":{"push_id":536865138,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f63b16184f3b105d7b7bf88b6f42a3b746ec3264","before":"86606882d7c131cbed766426f207988285311c84","commits":[{"sha":"f63b16184f3b105d7b7bf88b6f42a3b746ec3264","author":{"email":"bc2d5017dcfc5f59ae5df9dd3e45d99c151e4b7a@gmail.com","name":"liveralmask"},"message":"より使いやすくした","distinct":true,"url":"https://api.github.com/repos/liveralmask/unity/commits/f63b16184f3b105d7b7bf88b6f42a3b746ec3264"}]},"public":true,"created_at":"2015-01-01T15:05:24Z"} +,{"id":"2489653553","type":"PushEvent","actor":{"id":9846486,"login":"juho-lee","gravatar_id":"","url":"https://api.github.com/users/juho-lee","avatar_url":"https://avatars.githubusercontent.com/u/9846486?"},"repo":{"id":28086025,"name":"juho-lee/nrmm.cpp","url":"https://api.github.com/repos/juho-lee/nrmm.cpp"},"payload":{"push_id":536865139,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"6325e642fd6dab632d4be2d097aad24730ccbe3d","before":"6ad39007e56f5790fe2ba89bd9e1f34938c7bcaa","commits":[{"sha":"27de6f4e1ea0e1f5a462608079dde7b1ff82162f","author":{"email":"70c111ef9daf23ae806e3dca342d54613e06e414@postech.ac.kr","name":"juho-lee"},"message":"bhcs","distinct":true,"url":"https://api.github.com/repos/juho-lee/nrmm.cpp/commits/27de6f4e1ea0e1f5a462608079dde7b1ff82162f"},{"sha":"6325e642fd6dab632d4be2d097aad24730ccbe3d","author":{"email":"70c111ef9daf23ae806e3dca342d54613e06e414@postech.ac.kr","name":"juho-lee"},"message":"bhcs","distinct":true,"url":"https://api.github.com/repos/juho-lee/nrmm.cpp/commits/6325e642fd6dab632d4be2d097aad24730ccbe3d"}]},"public":true,"created_at":"2015-01-01T15:05:24Z"} +,{"id":"2489653554","type":"PushEvent","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":{"push_id":536865140,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f901f42723a34c5cc84cde02e5a19d561a1f8fc4","before":"548d811003f89bbe75e9a06238d5bce9bcaa365f","commits":[{"sha":"f901f42723a34c5cc84cde02e5a19d561a1f8fc4","author":{"email":"9616f0f530f91329424a239eb7a70e9aeaec3d55@gmail.com","name":"taukir4u"},"message":"C#\n\nSigned-off-by: taukir4u ","distinct":true,"url":"https://api.github.com/repos/taukir4u/ResultUIApp/commits/f901f42723a34c5cc84cde02e5a19d561a1f8fc4"}]},"public":true,"created_at":"2015-01-01T15:05:24Z"} +,{"id":"2489653555","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":536865142,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c189108b7b28513f0bc0d94284135f9d5804662c","before":"123a619699a240e3cefae4187042dcd132888f31","commits":[{"sha":"c189108b7b28513f0bc0d94284135f9d5804662c","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/c189108b7b28513f0bc0d94284135f9d5804662c"}]},"public":true,"created_at":"2015-01-01T15:05:24Z"} +,{"id":"2489653559","type":"IssueCommentEvent","actor":{"id":1696148,"login":"bgcngm","gravatar_id":"","url":"https://api.github.com/users/bgcngm","avatar_url":"https://avatars.githubusercontent.com/u/1696148?"},"repo":{"id":5242494,"name":"bgcngm/mtk-tools","url":"https://api.github.com/repos/bgcngm/mtk-tools"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/bgcngm/mtk-tools/issues/8","labels_url":"https://api.github.com/repos/bgcngm/mtk-tools/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/bgcngm/mtk-tools/issues/8/comments","events_url":"https://api.github.com/repos/bgcngm/mtk-tools/issues/8/events","html_url":"https://github.com/bgcngm/mtk-tools/pull/8","id":53009548,"number":8,"title":"add support for new platforms - mt6595","user":{"login":"carliv","id":4932350,"avatar_url":"https://avatars.githubusercontent.com/u/4932350?v=3","gravatar_id":"","url":"https://api.github.com/users/carliv","html_url":"https://github.com/carliv","followers_url":"https://api.github.com/users/carliv/followers","following_url":"https://api.github.com/users/carliv/following{/other_user}","gists_url":"https://api.github.com/users/carliv/gists{/gist_id}","starred_url":"https://api.github.com/users/carliv/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/carliv/subscriptions","organizations_url":"https://api.github.com/users/carliv/orgs","repos_url":"https://api.github.com/users/carliv/repos","events_url":"https://api.github.com/users/carliv/events{/privacy}","received_events_url":"https://api.github.com/users/carliv/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/bgcngm/mtk-tools/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":25,"created_at":"2014-12-28T20:53:18Z","updated_at":"2015-01-01T15:05:24Z","closed_at":"2014-12-29T09:49:34Z","pull_request":{"url":"https://api.github.com/repos/bgcngm/mtk-tools/pulls/8","html_url":"https://github.com/bgcngm/mtk-tools/pull/8","diff_url":"https://github.com/bgcngm/mtk-tools/pull/8.diff","patch_url":"https://github.com/bgcngm/mtk-tools/pull/8.patch"},"body":"Hi Bruno,\r\nI updated your tools to support new MTK platforms, which require to pass extra arguments (offsets) in repacking command line. For this the script will create a new file \"boot.img-Args.txt\" - as example for boot image - will copy in it values like this: \"--base 0x10000000 --pagesize 2048 --kernel_offset 0x00008000 --ramdisk_offset 0x01000000 --second_offset 0x00f00000 --tags_offset 0x00000100\". They will be shown on the screen also. At repacking all these are passed in command and the resulting image will work in these new phones. It has no impact on older platforms - I tested this myself, and for new platform was tested in zopo zp999 thread. Additionally I created a new script which will only show image infos, if there is no need to unpack it. I compiled again all binaries modules to support these extra arguments, and also I compiled the required modules for info script. I couldn't do it for OSX, but I have the repo with boot-info in my gihub if you can build it. Also mkbootimg has to be compiled again for OSX to accept extra arguments.\r\nLiviu"},"comment":{"url":"https://api.github.com/repos/bgcngm/mtk-tools/issues/comments/68488584","html_url":"https://github.com/bgcngm/mtk-tools/pull/8#issuecomment-68488584","issue_url":"https://api.github.com/repos/bgcngm/mtk-tools/issues/8","id":68488584,"user":{"login":"bgcngm","id":1696148,"avatar_url":"https://avatars.githubusercontent.com/u/1696148?v=3","gravatar_id":"","url":"https://api.github.com/users/bgcngm","html_url":"https://github.com/bgcngm","followers_url":"https://api.github.com/users/bgcngm/followers","following_url":"https://api.github.com/users/bgcngm/following{/other_user}","gists_url":"https://api.github.com/users/bgcngm/gists{/gist_id}","starred_url":"https://api.github.com/users/bgcngm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bgcngm/subscriptions","organizations_url":"https://api.github.com/users/bgcngm/orgs","repos_url":"https://api.github.com/users/bgcngm/repos","events_url":"https://api.github.com/users/bgcngm/events{/privacy}","received_events_url":"https://api.github.com/users/bgcngm/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:05:24Z","updated_at":"2015-01-01T15:05:24Z","body":"Yeah, it's a good idea, to show more info when repacking. Thanks!"}},"public":true,"created_at":"2015-01-01T15:05:24Z"} +,{"id":"2489653560","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":26163802,"name":"cloudify-cosmo/cloudify-softlayer-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-softlayer-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"Plugin for the softlayer cloud","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:24Z","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":"2489653561","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":536865147,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4facd5246e793a5f37bd2b6fe5681139bcf57193","before":"3378b12357f5839faf1fb6f5c96d259320e2e359","commits":[{"sha":"4facd5246e793a5f37bd2b6fe5681139bcf57193","author":{"email":"be51eeb01ab0ddac52571dd736dd0fd5d13a6a37@gmail.com","name":"Gudakesh Ankur Vatsa"},"message":"Create Palindrome.java","distinct":true,"url":"https://api.github.com/repos/vatsaaa/mycodesnips/commits/4facd5246e793a5f37bd2b6fe5681139bcf57193"}]},"public":true,"created_at":"2015-01-01T15:05:24Z"} +,{"id":"2489653567","type":"PushEvent","actor":{"id":1879746,"login":"leon-barrett","gravatar_id":"","url":"https://api.github.com/users/leon-barrett","avatar_url":"https://avatars.githubusercontent.com/u/1879746?"},"repo":{"id":16740838,"name":"TheClimateCorporation/claypoole","url":"https://api.github.com/repos/TheClimateCorporation/claypoole"},"payload":{"push_id":536865150,"size":4,"distinct_size":4,"ref":"refs/heads/lazy","head":"6ac501aeab9cb1a2a5e33a2395a3caa10ef53855","before":"9f4e7d893af396d3eeadc717106506ffa58d2e65","commits":[{"sha":"7f27b421a85a9025c751ab39a38bba1394186fd2","author":{"email":"be92910ae7bb6f58bb9b7c6f845bc30640119592@climate.com","name":"Leon Barrett"},"message":"Add license header to file","distinct":true,"url":"https://api.github.com/repos/TheClimateCorporation/claypoole/commits/7f27b421a85a9025c751ab39a38bba1394186fd2"},{"sha":"f7a23f9924703ec00100a758847ee2a138091278","author":{"email":"be92910ae7bb6f58bb9b7c6f845bc30640119592@climate.com","name":"Leon Barrett"},"message":"Simplified tests somewhat","distinct":true,"url":"https://api.github.com/repos/TheClimateCorporation/claypoole/commits/f7a23f9924703ec00100a758847ee2a138091278"},{"sha":"2d88b1fd27ee54de6ed5806b41b5a7f760badbda","author":{"email":"be92910ae7bb6f58bb9b7c6f845bc30640119592@climate.com","name":"Leon Barrett"},"message":"Ported tests to lazy, fixed lazy bug","distinct":true,"url":"https://api.github.com/repos/TheClimateCorporation/claypoole/commits/2d88b1fd27ee54de6ed5806b41b5a7f760badbda"},{"sha":"6ac501aeab9cb1a2a5e33a2395a3caa10ef53855","author":{"email":"be92910ae7bb6f58bb9b7c6f845bc30640119592@climate.com","name":"Leon Barrett"},"message":"Expand -manual functions, add tests","distinct":true,"url":"https://api.github.com/repos/TheClimateCorporation/claypoole/commits/6ac501aeab9cb1a2a5e33a2395a3caa10ef53855"}]},"public":true,"created_at":"2015-01-01T15:05:25Z","org":{"id":1661603,"login":"TheClimateCorporation","gravatar_id":"","url":"https://api.github.com/orgs/TheClimateCorporation","avatar_url":"https://avatars.githubusercontent.com/u/1661603?"}} +,{"id":"2489653570","type":"WatchEvent","actor":{"id":2033346,"login":"DalekVoid","gravatar_id":"","url":"https://api.github.com/users/DalekVoid","avatar_url":"https://avatars.githubusercontent.com/u/2033346?"},"repo":{"id":19584534,"name":"joshpuckett/SketchPlugins","url":"https://api.github.com/repos/joshpuckett/SketchPlugins"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:25Z"} +,{"id":"2489653573","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":19545865,"name":"fpc-svn/logs","url":"https://api.github.com/repos/fpc-svn/logs"},"payload":{"push_id":536865153,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e3449359c8e3d440bb8cc63a43bffeac259a6fbd","before":"c872b17a211fa98937c7c822422e1d00835c069f","commits":[{"sha":"e3449359c8e3d440bb8cc63a43bffeac259a6fbd","author":{"email":"365ec17a675f3273bc16c74761ad83f2cf07c59a@mailinator.com","name":"nobody"},"message":"Updatelogs script","distinct":true,"url":"https://api.github.com/repos/fpc-svn/logs/commits/e3449359c8e3d440bb8cc63a43bffeac259a6fbd"}]},"public":true,"created_at":"2015-01-01T15:05:26Z","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":"2489653574","type":"WatchEvent","actor":{"id":2033346,"login":"DalekVoid","gravatar_id":"","url":"https://api.github.com/users/DalekVoid","avatar_url":"https://avatars.githubusercontent.com/u/2033346?"},"repo":{"id":12081573,"name":"almonk/SketchGit","url":"https://api.github.com/repos/almonk/SketchGit"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:26Z"} +,{"id":"2489653575","type":"ReleaseEvent","actor":{"id":9699715,"login":"D0nBilb0","gravatar_id":"","url":"https://api.github.com/users/D0nBilb0","avatar_url":"https://avatars.githubusercontent.com/u/9699715?"},"repo":{"id":26546687,"name":"D0nBilb0/AAL","url":"https://api.github.com/repos/D0nBilb0/AAL"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/D0nBilb0/AAL/releases/818686","assets_url":"https://api.github.com/repos/D0nBilb0/AAL/releases/818686/assets","upload_url":"https://uploads.github.com/repos/D0nBilb0/AAL/releases/818686/assets{?name}","html_url":"https://github.com/D0nBilb0/AAL/releases/tag/v0.2","id":818686,"tag_name":"v0.2","target_commitish":"master","name":"Version 0.2","draft":false,"author":{"login":"D0nBilb0","id":9699715,"avatar_url":"https://avatars.githubusercontent.com/u/9699715?v=3","gravatar_id":"","url":"https://api.github.com/users/D0nBilb0","html_url":"https://github.com/D0nBilb0","followers_url":"https://api.github.com/users/D0nBilb0/followers","following_url":"https://api.github.com/users/D0nBilb0/following{/other_user}","gists_url":"https://api.github.com/users/D0nBilb0/gists{/gist_id}","starred_url":"https://api.github.com/users/D0nBilb0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/D0nBilb0/subscriptions","organizations_url":"https://api.github.com/users/D0nBilb0/orgs","repos_url":"https://api.github.com/users/D0nBilb0/repos","events_url":"https://api.github.com/users/D0nBilb0/events{/privacy}","received_events_url":"https://api.github.com/users/D0nBilb0/received_events","type":"User","site_admin":false},"prerelease":true,"created_at":"2015-01-01T15:04:30Z","published_at":"2015-01-01T15:05:26Z","assets":[],"tarball_url":"https://api.github.com/repos/D0nBilb0/AAL/tarball/v0.2","zipball_url":"https://api.github.com/repos/D0nBilb0/AAL/zipball/v0.2","body":"with bath tub and radio"}},"public":true,"created_at":"2015-01-01T15:05:26Z"} +,{"id":"2489653577","type":"PushEvent","actor":{"id":4371337,"login":"jostw","gravatar_id":"","url":"https://api.github.com/users/jostw","avatar_url":"https://avatars.githubusercontent.com/u/4371337?"},"repo":{"id":20407433,"name":"jostw/jos.tw","url":"https://api.github.com/repos/jostw/jos.tw"},"payload":{"push_id":536865154,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"49cb8d03c9ac7d58670b55398fec4b5e59ac725e","before":"b37b9685c5d61bb51bb16e9ba8705c04dd5fea02","commits":[{"sha":"49cb8d03c9ac7d58670b55398fec4b5e59ac725e","author":{"email":"1d6e1cf70ec6f9ab28d3ea4b27a49a77654d370e@jos.tw","name":"jos"},"message":"Add: npm init","distinct":true,"url":"https://api.github.com/repos/jostw/jos.tw/commits/49cb8d03c9ac7d58670b55398fec4b5e59ac725e"}]},"public":true,"created_at":"2015-01-01T15:05:26Z"} +,{"id":"2489653579","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18326701,"name":"cloudify-cosmo/cloudify-cli","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-cli"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:27Z","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":"2489653581","type":"PushEvent","actor":{"id":7299909,"login":"paddatrapper","gravatar_id":"","url":"https://api.github.com/users/paddatrapper","avatar_url":"https://avatars.githubusercontent.com/u/7299909?"},"repo":{"id":28605092,"name":"paddatrapper/CaseTracker","url":"https://api.github.com/repos/paddatrapper/CaseTracker"},"payload":{"push_id":536865157,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"536567e2c967b8c94d5bd847b3509e7b64bf6c3b","before":"a9932f96e11bbfe690679f0a3a04ff365ef3d934","commits":[{"sha":"536567e2c967b8c94d5bd847b3509e7b64bf6c3b","author":{"email":"5654cbe3d60e8de8a726d6300843254de49a3a3e@gmail.com","name":"Kyle Robertze"},"message":"initial server code","distinct":true,"url":"https://api.github.com/repos/paddatrapper/CaseTracker/commits/536567e2c967b8c94d5bd847b3509e7b64bf6c3b"}]},"public":true,"created_at":"2015-01-01T15:05:27Z"} +,{"id":"2489653582","type":"CreateEvent","actor":{"id":9699715,"login":"D0nBilb0","gravatar_id":"","url":"https://api.github.com/users/D0nBilb0","avatar_url":"https://avatars.githubusercontent.com/u/9699715?"},"repo":{"id":26546687,"name":"D0nBilb0/AAL","url":"https://api.github.com/repos/D0nBilb0/AAL"},"payload":{"ref":"v0.2","ref_type":"tag","master_branch":"master","description":"Git for AAL project","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:27Z"} +,{"id":"2489653586","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":536865158,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"19aa3690d277ebeb3a2448c6170fd0c14cbacf9b","before":"ce43e0c4202c607f17925699c0f8212855585392","commits":[{"sha":"19aa3690d277ebeb3a2448c6170fd0c14cbacf9b","author":{"email":"de163e90d3aeef9f404d1de71c48e234a211e3c3@gmail.com","name":"KT"},"message":"Update","distinct":true,"url":"https://api.github.com/repos/qdm/qdm.github.io/commits/19aa3690d277ebeb3a2448c6170fd0c14cbacf9b"}]},"public":true,"created_at":"2015-01-01T15:05:28Z"} +,{"id":"2489653587","type":"PushEvent","actor":{"id":2325817,"login":"Dinoshauer","gravatar_id":"","url":"https://api.github.com/users/Dinoshauer","avatar_url":"https://avatars.githubusercontent.com/u/2325817?"},"repo":{"id":28606497,"name":"Dinoshauer/ImportConfig","url":"https://api.github.com/repos/Dinoshauer/ImportConfig"},"payload":{"push_id":536865160,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f17cd2b734b1011394cc8b4b154657c4a5aa5b18","before":"9562ee0d10aaf1d20583ba698c88fdd503ae1775","commits":[{"sha":"f17cd2b734b1011394cc8b4b154657c4a5aa5b18","author":{"email":"13fbd79c3d390e5d6585a21e11ff5ec1970cff0c@mackwerk.dk","name":"Kasper Jacobsen"},"message":"Moved classes into their own files, made it installable with setup.py. Nasty hack for dependencies to get the version and other __'s","distinct":true,"url":"https://api.github.com/repos/Dinoshauer/ImportConfig/commits/f17cd2b734b1011394cc8b4b154657c4a5aa5b18"}]},"public":true,"created_at":"2015-01-01T15:05:29Z"} +,{"id":"2489653588","type":"PushEvent","actor":{"id":6895272,"login":"kimalec","gravatar_id":"","url":"https://api.github.com/users/kimalec","avatar_url":"https://avatars.githubusercontent.com/u/6895272?"},"repo":{"id":22725052,"name":"kimalec/BlogSyncer","url":"https://api.github.com/repos/kimalec/BlogSyncer"},"payload":{"push_id":536865161,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"658e7ec3e2f424840a5fe0b11cf2f4facc176c40","before":"cd8ec1c93d6bc541cbbe6d6ca0c969d1dcf57318","commits":[{"sha":"6d116b3e8e2f050a701110f927bd78e234a83399","author":{"email":"6361a942e62052bd6f5507de1f1b3e6c2b339567@gmail.com","name":"Kim Alec"},"message":"Merge pull request #136 from kimalec/master\n\nResolved JUS-93 JSHint Error 수정하기. Fixed #128","distinct":true,"url":"https://api.github.com/repos/kimalec/BlogSyncer/commits/6d116b3e8e2f050a701110f927bd78e234a83399"},{"sha":"5aa118113d22f98e52d08475206a3086d68e2ade","author":{"email":"6361a942e62052bd6f5507de1f1b3e6c2b339567@gmail.com","name":"Alec Kim"},"message":"JUS-91 Google Invalid Credentials 에러 수정하기. Fixed #125\n\n* google.js\n- refresh token을 받기 위해서 accessType offline과 approvalPrompt force를 추가함.\n- _updateAccessToken() 추가 : 401이 발생하면, accessToken을 갱신함.\n Todo 401이 발생한 요청사항은 현재 버려짐.\n- log message 모양 일부 변경함.","distinct":true,"url":"https://api.github.com/repos/kimalec/BlogSyncer/commits/5aa118113d22f98e52d08475206a3086d68e2ade"},{"sha":"658e7ec3e2f424840a5fe0b11cf2f4facc176c40","author":{"email":"6361a942e62052bd6f5507de1f1b3e6c2b339567@gmail.com","name":"Alec Kim"},"message":"JUS-91 Google Invalid Credentials 에러 수정하기. Fixed #125","distinct":true,"url":"https://api.github.com/repos/kimalec/BlogSyncer/commits/658e7ec3e2f424840a5fe0b11cf2f4facc176c40"}]},"public":true,"created_at":"2015-01-01T15:05:29Z"} +,{"id":"2489653590","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18326701,"name":"cloudify-cosmo/cloudify-cli","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-cli"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify's CLI","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:29Z","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":"2489653592","type":"PushEvent","actor":{"id":172753,"login":"oehmiche","gravatar_id":"","url":"https://api.github.com/users/oehmiche","avatar_url":"https://avatars.githubusercontent.com/u/172753?"},"repo":{"id":26650146,"name":"oehmiche/isp-performance","url":"https://api.github.com/repos/oehmiche/isp-performance"},"payload":{"push_id":536865162,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"620a7742df7a052f4fadb5872abde49ba3c02f34","before":"49c8eba7b118fdaa85d7b8e3a55e48cdd0467d32","commits":[{"sha":"620a7742df7a052f4fadb5872abde49ba3c02f34","author":{"email":"37955833ebc42115603c87ad993837f95227dc9d@raspberry.pi","name":"smokeping.script"},"message":"updates all charts","distinct":true,"url":"https://api.github.com/repos/oehmiche/isp-performance/commits/620a7742df7a052f4fadb5872abde49ba3c02f34"}]},"public":true,"created_at":"2015-01-01T15:05:29Z"} +,{"id":"2489653593","type":"WatchEvent","actor":{"id":2231444,"login":"antogg","gravatar_id":"","url":"https://api.github.com/users/antogg","avatar_url":"https://avatars.githubusercontent.com/u/2231444?"},"repo":{"id":4869294,"name":"radare/radare2","url":"https://api.github.com/repos/radare/radare2"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:29Z"} +,{"id":"2489653596","type":"IssuesEvent","actor":{"id":681359,"login":"gregorej","gravatar_id":"","url":"https://api.github.com/users/gregorej","avatar_url":"https://avatars.githubusercontent.com/u/681359?"},"repo":{"id":28038035,"name":"gregorej/vala-intellij-plugin","url":"https://api.github.com/repos/gregorej/vala-intellij-plugin"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/gregorej/vala-intellij-plugin/issues/10","labels_url":"https://api.github.com/repos/gregorej/vala-intellij-plugin/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/gregorej/vala-intellij-plugin/issues/10/comments","events_url":"https://api.github.com/repos/gregorej/vala-intellij-plugin/issues/10/events","html_url":"https://github.com/gregorej/vala-intellij-plugin/issues/10","id":53221439,"number":10,"title":"Add support for missing tokens","user":{"login":"gregorej","id":681359,"avatar_url":"https://avatars.githubusercontent.com/u/681359?v=3","gravatar_id":"","url":"https://api.github.com/users/gregorej","html_url":"https://github.com/gregorej","followers_url":"https://api.github.com/users/gregorej/followers","following_url":"https://api.github.com/users/gregorej/following{/other_user}","gists_url":"https://api.github.com/users/gregorej/gists{/gist_id}","starred_url":"https://api.github.com/users/gregorej/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gregorej/subscriptions","organizations_url":"https://api.github.com/users/gregorej/orgs","repos_url":"https://api.github.com/users/gregorej/repos","events_url":"https://api.github.com/users/gregorej/events{/privacy}","received_events_url":"https://api.github.com/users/gregorej/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:05:29Z","updated_at":"2015-01-01T15:05:29Z","closed_at":null,"body":"real number literals\r\nstring literals\r\ntrue, false\r\noperators (++, --, etc)"}},"public":true,"created_at":"2015-01-01T15:05:29Z"} +,{"id":"2489653600","type":"PullRequestEvent","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":{"action":"closed","number":1,"pull_request":{"url":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/1","id":26743660,"html_url":"https://github.com/shlomizadok/foreman_openscap/pull/1","diff_url":"https://github.com/shlomizadok/foreman_openscap/pull/1.diff","patch_url":"https://github.com/shlomizadok/foreman_openscap/pull/1.patch","issue_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/issues/1","number":1,"state":"closed","locked":false,"title":"Policy ui","user":{"login":"ohadlevy","id":20167,"avatar_url":"https://avatars.githubusercontent.com/u/20167?v=3","gravatar_id":"","url":"https://api.github.com/users/ohadlevy","html_url":"https://github.com/ohadlevy","followers_url":"https://api.github.com/users/ohadlevy/followers","following_url":"https://api.github.com/users/ohadlevy/following{/other_user}","gists_url":"https://api.github.com/users/ohadlevy/gists{/gist_id}","starred_url":"https://api.github.com/users/ohadlevy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ohadlevy/subscriptions","organizations_url":"https://api.github.com/users/ohadlevy/orgs","repos_url":"https://api.github.com/users/ohadlevy/repos","events_url":"https://api.github.com/users/ohadlevy/events{/privacy}","received_events_url":"https://api.github.com/users/ohadlevy/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T14:46:56Z","updated_at":"2015-01-01T15:05:29Z","closed_at":"2015-01-01T15:05:29Z","merged_at":"2015-01-01T15:05:29Z","merge_commit_sha":"955303fe7d8046774b96a5fc0f718be18d833b46","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/1/commits","review_comments_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/1/comments","review_comment_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/comments/{number}","comments_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/issues/1/comments","statuses_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/statuses/7d9e161019a3f17b7ed003f306b41a61d0a3260e","head":{"label":"ohadlevy:policy-ui","ref":"policy-ui","sha":"7d9e161019a3f17b7ed003f306b41a61d0a3260e","user":{"login":"ohadlevy","id":20167,"avatar_url":"https://avatars.githubusercontent.com/u/20167?v=3","gravatar_id":"","url":"https://api.github.com/users/ohadlevy","html_url":"https://github.com/ohadlevy","followers_url":"https://api.github.com/users/ohadlevy/followers","following_url":"https://api.github.com/users/ohadlevy/following{/other_user}","gists_url":"https://api.github.com/users/ohadlevy/gists{/gist_id}","starred_url":"https://api.github.com/users/ohadlevy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ohadlevy/subscriptions","organizations_url":"https://api.github.com/users/ohadlevy/orgs","repos_url":"https://api.github.com/users/ohadlevy/repos","events_url":"https://api.github.com/users/ohadlevy/events{/privacy}","received_events_url":"https://api.github.com/users/ohadlevy/received_events","type":"User","site_admin":false},"repo":{"id":27348763,"name":"foreman_openscap","full_name":"ohadlevy/foreman_openscap","owner":{"login":"ohadlevy","id":20167,"avatar_url":"https://avatars.githubusercontent.com/u/20167?v=3","gravatar_id":"","url":"https://api.github.com/users/ohadlevy","html_url":"https://github.com/ohadlevy","followers_url":"https://api.github.com/users/ohadlevy/followers","following_url":"https://api.github.com/users/ohadlevy/following{/other_user}","gists_url":"https://api.github.com/users/ohadlevy/gists{/gist_id}","starred_url":"https://api.github.com/users/ohadlevy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ohadlevy/subscriptions","organizations_url":"https://api.github.com/users/ohadlevy/orgs","repos_url":"https://api.github.com/users/ohadlevy/repos","events_url":"https://api.github.com/users/ohadlevy/events{/privacy}","received_events_url":"https://api.github.com/users/ohadlevy/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ohadlevy/foreman_openscap","description":"Foreman plug-in for displaying OpenSCAP audit reports","fork":true,"url":"https://api.github.com/repos/ohadlevy/foreman_openscap","forks_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/forks","keys_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/teams","hooks_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/hooks","issue_events_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/issues/events{/number}","events_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/events","assignees_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/assignees{/user}","branches_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/branches{/branch}","tags_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/tags","blobs_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/git/refs{/sha}","trees_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/statuses/{sha}","languages_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/languages","stargazers_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/stargazers","contributors_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/contributors","subscribers_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/subscribers","subscription_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/subscription","commits_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/commits{/sha}","git_commits_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/git/commits{/sha}","comments_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/comments{/number}","issue_comment_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/issues/comments/{number}","contents_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/contents/{+path}","compare_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/merges","archive_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/downloads","issues_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/issues{/number}","pulls_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/pulls{/number}","milestones_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/milestones{/number}","notifications_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/labels{/name}","releases_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/releases{/id}","created_at":"2014-11-30T20:22:33Z","updated_at":"2014-11-30T20:22:33Z","pushed_at":"2015-01-01T14:48:10Z","git_url":"git://github.com/ohadlevy/foreman_openscap.git","ssh_url":"git@github.com:ohadlevy/foreman_openscap.git","clone_url":"https://github.com/ohadlevy/foreman_openscap.git","svn_url":"https://github.com/ohadlevy/foreman_openscap","homepage":null,"size":257,"stargazers_count":0,"watchers_count":0,"language":"Ruby","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":"shlomizadok:policy_ui","ref":"policy_ui","sha":"db4f1d5c3f0dcc249e73e6ef82998c6cd3d18a2e","user":{"login":"shlomizadok","id":433583,"avatar_url":"https://avatars.githubusercontent.com/u/433583?v=3","gravatar_id":"","url":"https://api.github.com/users/shlomizadok","html_url":"https://github.com/shlomizadok","followers_url":"https://api.github.com/users/shlomizadok/followers","following_url":"https://api.github.com/users/shlomizadok/following{/other_user}","gists_url":"https://api.github.com/users/shlomizadok/gists{/gist_id}","starred_url":"https://api.github.com/users/shlomizadok/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shlomizadok/subscriptions","organizations_url":"https://api.github.com/users/shlomizadok/orgs","repos_url":"https://api.github.com/users/shlomizadok/repos","events_url":"https://api.github.com/users/shlomizadok/events{/privacy}","received_events_url":"https://api.github.com/users/shlomizadok/received_events","type":"User","site_admin":false},"repo":{"id":27426416,"name":"foreman_openscap","full_name":"shlomizadok/foreman_openscap","owner":{"login":"shlomizadok","id":433583,"avatar_url":"https://avatars.githubusercontent.com/u/433583?v=3","gravatar_id":"","url":"https://api.github.com/users/shlomizadok","html_url":"https://github.com/shlomizadok","followers_url":"https://api.github.com/users/shlomizadok/followers","following_url":"https://api.github.com/users/shlomizadok/following{/other_user}","gists_url":"https://api.github.com/users/shlomizadok/gists{/gist_id}","starred_url":"https://api.github.com/users/shlomizadok/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shlomizadok/subscriptions","organizations_url":"https://api.github.com/users/shlomizadok/orgs","repos_url":"https://api.github.com/users/shlomizadok/repos","events_url":"https://api.github.com/users/shlomizadok/events{/privacy}","received_events_url":"https://api.github.com/users/shlomizadok/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/shlomizadok/foreman_openscap","description":"Foreman plug-in for displaying OpenSCAP audit reports","fork":true,"url":"https://api.github.com/repos/shlomizadok/foreman_openscap","forks_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/forks","keys_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/keys{/key_id}","collaborators_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/teams","hooks_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/hooks","issue_events_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/issues/events{/number}","events_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/events","assignees_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/assignees{/user}","branches_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/branches{/branch}","tags_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/tags","blobs_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/git/refs{/sha}","trees_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/git/trees{/sha}","statuses_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/statuses/{sha}","languages_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/languages","stargazers_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/stargazers","contributors_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/contributors","subscribers_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/subscribers","subscription_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/subscription","commits_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/commits{/sha}","git_commits_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/git/commits{/sha}","comments_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/comments{/number}","issue_comment_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/issues/comments/{number}","contents_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/contents/{+path}","compare_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/compare/{base}...{head}","merges_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/merges","archive_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/downloads","issues_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/issues{/number}","pulls_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls{/number}","milestones_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/milestones{/number}","notifications_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/labels{/name}","releases_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/releases{/id}","created_at":"2014-12-02T10:04:02Z","updated_at":"2014-12-15T07:08:17Z","pushed_at":"2015-01-01T15:05:29Z","git_url":"git://github.com/shlomizadok/foreman_openscap.git","ssh_url":"git@github.com:shlomizadok/foreman_openscap.git","clone_url":"https://github.com/shlomizadok/foreman_openscap.git","svn_url":"https://github.com/shlomizadok/foreman_openscap","homepage":null,"size":364,"stargazers_count":0,"watchers_count":0,"language":"Ruby","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/shlomizadok/foreman_openscap/pulls/1"},"html":{"href":"https://github.com/shlomizadok/foreman_openscap/pull/1"},"issue":{"href":"https://api.github.com/repos/shlomizadok/foreman_openscap/issues/1"},"comments":{"href":"https://api.github.com/repos/shlomizadok/foreman_openscap/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/shlomizadok/foreman_openscap/statuses/7d9e161019a3f17b7ed003f306b41a61d0a3260e"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"shlomizadok","id":433583,"avatar_url":"https://avatars.githubusercontent.com/u/433583?v=3","gravatar_id":"","url":"https://api.github.com/users/shlomizadok","html_url":"https://github.com/shlomizadok","followers_url":"https://api.github.com/users/shlomizadok/followers","following_url":"https://api.github.com/users/shlomizadok/following{/other_user}","gists_url":"https://api.github.com/users/shlomizadok/gists{/gist_id}","starred_url":"https://api.github.com/users/shlomizadok/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shlomizadok/subscriptions","organizations_url":"https://api.github.com/users/shlomizadok/orgs","repos_url":"https://api.github.com/users/shlomizadok/repos","events_url":"https://api.github.com/users/shlomizadok/events{/privacy}","received_events_url":"https://api.github.com/users/shlomizadok/received_events","type":"User","site_admin":false},"comments":0,"review_comments":1,"commits":2,"additions":64,"deletions":30,"changed_files":11}},"public":true,"created_at":"2015-01-01T15:05:30Z"} +,{"id":"2489653603","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":536865165,"size":3,"distinct_size":3,"ref":"refs/heads/policy_ui","head":"89bab3aa2d4dba55a5651d154c63685d47a8b951","before":"e568ab2e87b915fb104ae3b8795533352dbfdf41","commits":[{"sha":"0f7efdcb78fe0ed59903fd9dac632881d344f121","author":{"email":"6f01bf2e882e3bb6371d28d1418e5f729e7183e6@ben-hanna.com","name":"Shlomi Zadok"},"message":"validations on hostgroup","distinct":true,"url":"https://api.github.com/repos/shlomizadok/foreman_openscap/commits/0f7efdcb78fe0ed59903fd9dac632881d344f121"},{"sha":"7d9e161019a3f17b7ed003f306b41a61d0a3260e","author":{"email":"76585193381c02075ccad46923cb2f8cd8aee274@gmail.com","name":"Ohad Levy"},"message":"minor fixes, wip","distinct":true,"url":"https://api.github.com/repos/shlomizadok/foreman_openscap/commits/7d9e161019a3f17b7ed003f306b41a61d0a3260e"},{"sha":"89bab3aa2d4dba55a5651d154c63685d47a8b951","author":{"email":"6f01bf2e882e3bb6371d28d1418e5f729e7183e6@ben-hanna.com","name":"Shlomi Zadok"},"message":"Merge pull request #1 from ohadlevy/policy-ui\n\nPolicy ui","distinct":true,"url":"https://api.github.com/repos/shlomizadok/foreman_openscap/commits/89bab3aa2d4dba55a5651d154c63685d47a8b951"}]},"public":true,"created_at":"2015-01-01T15:05:30Z"} +,{"id":"2489653607","type":"IssuesEvent","actor":{"id":10178301,"login":"MarkusAV","gravatar_id":"","url":"https://api.github.com/users/MarkusAV","avatar_url":"https://avatars.githubusercontent.com/u/10178301?"},"repo":{"id":23853939,"name":"WorldCretornica/PlotMe-Core","url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core/issues/66","labels_url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core/issues/66/labels{/name}","comments_url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core/issues/66/comments","events_url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core/issues/66/events","html_url":"https://github.com/WorldCretornica/PlotMe-Core/issues/66","id":53218917,"number":66,"title":"cant load DynmapPlotMe.jar","user":{"login":"Burockk","id":10358468,"avatar_url":"https://avatars.githubusercontent.com/u/10358468?v=3","gravatar_id":"","url":"https://api.github.com/users/Burockk","html_url":"https://github.com/Burockk","followers_url":"https://api.github.com/users/Burockk/followers","following_url":"https://api.github.com/users/Burockk/following{/other_user}","gists_url":"https://api.github.com/users/Burockk/gists{/gist_id}","starred_url":"https://api.github.com/users/Burockk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Burockk/subscriptions","organizations_url":"https://api.github.com/users/Burockk/orgs","repos_url":"https://api.github.com/users/Burockk/repos","events_url":"https://api.github.com/users/Burockk/events{/privacy}","received_events_url":"https://api.github.com/users/Burockk/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core/labels/invalid","name":"invalid","color":"e6e6e6"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T12:37:14Z","updated_at":"2015-01-01T15:05:31Z","closed_at":"2015-01-01T15:05:31Z","body":"[14:31:51] [Server thread/INFO]: Set PluginClassLoader as parallel capable\r\n[14:31:51] [Server thread/ERROR]: Could not load 'plugins\\DynmapPlotMe.jar' in folder 'plugins'\r\norg.bukkit.plugin.UnknownDependencyException: dynmap\r\n\tat org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:225) [spigot.jar:git-Spigot-1.7.9-R0.2-208-ge0f2e95]\r\n\tat org.bukkit.craftbukkit.v1_7_R4.CraftServer.loadPlugins(CraftServer.java:369) [spigot.jar:git-Spigot-1.7.9-R0.2-208-ge0f2e95]\r\n\tat net.minecraft.server.v1_7_R4.DedicatedServer.init(DedicatedServer.java:152) [spigot.jar:git-Spigot-1.7.9-R0.2-208-ge0f2e95]\r\n\tat net.minecraft.server.v1_7_R4.MinecraftServer.run(MinecraftServer.java:458) [spigot.jar:git-Spigot-1.7.9-R0.2-208-ge0f2e95]\r\n\tat net.minecraft.server.v1_7_R4.ThreadServerApplication.run(SourceFile:628) [spigot.jar:git-Spigot-1.7.9-R0.2-208-ge0f2e95]\r\n"}},"public":true,"created_at":"2015-01-01T15:05:31Z","org":{"id":6457147,"login":"WorldCretornica","gravatar_id":"","url":"https://api.github.com/orgs/WorldCretornica","avatar_url":"https://avatars.githubusercontent.com/u/6457147?"}} +,{"id":"2489653611","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327768,"name":"cloudify-cosmo/cloudify-cli-packager","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-cli-packager"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:31Z","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":"2489653613","type":"WatchEvent","actor":{"id":1712577,"login":"IvanD87","gravatar_id":"","url":"https://api.github.com/users/IvanD87","avatar_url":"https://avatars.githubusercontent.com/u/1712577?"},"repo":{"id":8659145,"name":"MizzleDK/Mizuu","url":"https://api.github.com/repos/MizzleDK/Mizuu"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:32Z"} +,{"id":"2489653616","type":"PushEvent","actor":{"id":5101884,"login":"Atvaark","gravatar_id":"","url":"https://api.github.com/users/Atvaark","avatar_url":"https://avatars.githubusercontent.com/u/5101884?"},"repo":{"id":28562333,"name":"Atvaark/FtexTool","url":"https://api.github.com/repos/Atvaark/FtexTool"},"payload":{"push_id":536865169,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"d7ac2071381fda8e1aad67308168618156e7be2a","before":"96e5f6968cadaaf41ce5e5e016b94e40cd73452d","commits":[{"sha":"3c7980bb5a830ab5af6a72d5c46642905f946c5e","author":{"email":"90d00659f465990581b68b3fc25b67ddc2f2fb58@users.noreply.github.com","name":"Atvaark"},"message":"Cleaned up code.","distinct":true,"url":"https://api.github.com/repos/Atvaark/FtexTool/commits/3c7980bb5a830ab5af6a72d5c46642905f946c5e"},{"sha":"d7ac2071381fda8e1aad67308168618156e7be2a","author":{"email":"90d00659f465990581b68b3fc25b67ddc2f2fb58@users.noreply.github.com","name":"Atvaark"},"message":"Incremented assembly version to 0.2.","distinct":true,"url":"https://api.github.com/repos/Atvaark/FtexTool/commits/d7ac2071381fda8e1aad67308168618156e7be2a"}]},"public":true,"created_at":"2015-01-01T15:05:32Z"} +,{"id":"2489653617","type":"IssuesEvent","actor":{"id":2170188,"login":"e-motiv","gravatar_id":"","url":"https://api.github.com/users/e-motiv","avatar_url":"https://avatars.githubusercontent.com/u/2170188?"},"repo":{"id":2464908,"name":"joomla/joomla-cms","url":"https://api.github.com/repos/joomla/joomla-cms"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/joomla/joomla-cms/issues/5579","labels_url":"https://api.github.com/repos/joomla/joomla-cms/issues/5579/labels{/name}","comments_url":"https://api.github.com/repos/joomla/joomla-cms/issues/5579/comments","events_url":"https://api.github.com/repos/joomla/joomla-cms/issues/5579/events","html_url":"https://github.com/joomla/joomla-cms/issues/5579","id":53221441,"number":5579,"title":"Joomla changes component segments first dash/hyphen into colon.","user":{"login":"e-motiv","id":2170188,"avatar_url":"https://avatars.githubusercontent.com/u/2170188?v=3","gravatar_id":"","url":"https://api.github.com/users/e-motiv","html_url":"https://github.com/e-motiv","followers_url":"https://api.github.com/users/e-motiv/followers","following_url":"https://api.github.com/users/e-motiv/following{/other_user}","gists_url":"https://api.github.com/users/e-motiv/gists{/gist_id}","starred_url":"https://api.github.com/users/e-motiv/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-motiv/subscriptions","organizations_url":"https://api.github.com/users/e-motiv/orgs","repos_url":"https://api.github.com/users/e-motiv/repos","events_url":"https://api.github.com/users/e-motiv/events{/privacy}","received_events_url":"https://api.github.com/users/e-motiv/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:05:32Z","updated_at":"2015-01-01T15:05:32Z","closed_at":null,"body":"#### Steps to reproduce the issue\r\nMaking a component's router: router.php.\r\nIn the function \"parse(&$segments)\" the segments have already been tampered with by joomla itself (while not after the build function which is not consistent).\r\nE.g. **\"my-personal-sef-url\" becomes \"my:personal-sef-url\"**\r\n\r\n\r\n#### Expected result\r\nSince it is up to the component router to build the segments in the first place (by the build function) and thus his responsibility to make segments, Joomla should leave the segments sent afterwards to the parser alone. I am of course talking only about the segments targeted for this component and not the segments before that. Joomla can do what it wants with that. \r\n\r\nI know this probably has to do with slug or similar, but whatever the reason, this is forcing component developers to use that \"concept\" of routing. This concept should be up to the component developer. \r\n\r\nBut OK, if any developer doesn't agree with the above concept responsibilty, then one should be consistent and make it so that the segments returned by the build function are also changed accordingly after building them. Than at least for someone not knowing this concept, both functions in router.php are complying to each other. \r\n\r\nFYI:\r\nThis \"bug\" is already here since a long time it seems and people have changed the dash back to a colon in their routing. (Isn't that a bit inefficient, and again inconsistent?).\r\nHere is one example, but more can be found via google:\r\nhttp://stackoverflow.com/questions/13471360/joomla-component-sef-links-on-and-jrequestgetvar-not-returning-variables-fro\r\n\r\n\r\n\r\n\r\n\r\n"}},"public":true,"created_at":"2015-01-01T15:05:32Z","org":{"id":751633,"login":"joomla","gravatar_id":"","url":"https://api.github.com/orgs/joomla","avatar_url":"https://avatars.githubusercontent.com/u/751633?"}} +,{"id":"2489653620","type":"PullRequestEvent","actor":{"id":1303626,"login":"lunarok","gravatar_id":"","url":"https://api.github.com/users/lunarok","avatar_url":"https://avatars.githubusercontent.com/u/1303626?"},"repo":{"id":24268760,"name":"conselio/jeedom_mysensors","url":"https://api.github.com/repos/conselio/jeedom_mysensors"},"payload":{"action":"opened","number":8,"pull_request":{"url":"https://api.github.com/repos/conselio/jeedom_mysensors/pulls/8","id":26743810,"html_url":"https://github.com/conselio/jeedom_mysensors/pull/8","diff_url":"https://github.com/conselio/jeedom_mysensors/pull/8.diff","patch_url":"https://github.com/conselio/jeedom_mysensors/pull/8.patch","issue_url":"https://api.github.com/repos/conselio/jeedom_mysensors/issues/8","number":8,"state":"open","locked":false,"title":"Pulling version 1.9.2","user":{"login":"lunarok","id":1303626,"avatar_url":"https://avatars.githubusercontent.com/u/1303626?v=3","gravatar_id":"","url":"https://api.github.com/users/lunarok","html_url":"https://github.com/lunarok","followers_url":"https://api.github.com/users/lunarok/followers","following_url":"https://api.github.com/users/lunarok/following{/other_user}","gists_url":"https://api.github.com/users/lunarok/gists{/gist_id}","starred_url":"https://api.github.com/users/lunarok/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lunarok/subscriptions","organizations_url":"https://api.github.com/users/lunarok/orgs","repos_url":"https://api.github.com/users/lunarok/repos","events_url":"https://api.github.com/users/lunarok/events{/privacy}","received_events_url":"https://api.github.com/users/lunarok/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:05:33Z","updated_at":"2015-01-01T15:05:33Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/conselio/jeedom_mysensors/pulls/8/commits","review_comments_url":"https://api.github.com/repos/conselio/jeedom_mysensors/pulls/8/comments","review_comment_url":"https://api.github.com/repos/conselio/jeedom_mysensors/pulls/comments/{number}","comments_url":"https://api.github.com/repos/conselio/jeedom_mysensors/issues/8/comments","statuses_url":"https://api.github.com/repos/conselio/jeedom_mysensors/statuses/c9e34df46285235d6428914a5ab3d0f8cacbf69b","head":{"label":"lunarok:master","ref":"master","sha":"c9e34df46285235d6428914a5ab3d0f8cacbf69b","user":{"login":"lunarok","id":1303626,"avatar_url":"https://avatars.githubusercontent.com/u/1303626?v=3","gravatar_id":"","url":"https://api.github.com/users/lunarok","html_url":"https://github.com/lunarok","followers_url":"https://api.github.com/users/lunarok/followers","following_url":"https://api.github.com/users/lunarok/following{/other_user}","gists_url":"https://api.github.com/users/lunarok/gists{/gist_id}","starred_url":"https://api.github.com/users/lunarok/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lunarok/subscriptions","organizations_url":"https://api.github.com/users/lunarok/orgs","repos_url":"https://api.github.com/users/lunarok/repos","events_url":"https://api.github.com/users/lunarok/events{/privacy}","received_events_url":"https://api.github.com/users/lunarok/received_events","type":"User","site_admin":false},"repo":{"id":25791212,"name":"jeedom_mysensors","full_name":"lunarok/jeedom_mysensors","owner":{"login":"lunarok","id":1303626,"avatar_url":"https://avatars.githubusercontent.com/u/1303626?v=3","gravatar_id":"","url":"https://api.github.com/users/lunarok","html_url":"https://github.com/lunarok","followers_url":"https://api.github.com/users/lunarok/followers","following_url":"https://api.github.com/users/lunarok/following{/other_user}","gists_url":"https://api.github.com/users/lunarok/gists{/gist_id}","starred_url":"https://api.github.com/users/lunarok/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lunarok/subscriptions","organizations_url":"https://api.github.com/users/lunarok/orgs","repos_url":"https://api.github.com/users/lunarok/repos","events_url":"https://api.github.com/users/lunarok/events{/privacy}","received_events_url":"https://api.github.com/users/lunarok/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/lunarok/jeedom_mysensors","description":"Plugin pour Jeedom pour MySensors V1.6","fork":true,"url":"https://api.github.com/repos/lunarok/jeedom_mysensors","forks_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/forks","keys_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/keys{/key_id}","collaborators_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/teams","hooks_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/hooks","issue_events_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/issues/events{/number}","events_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/events","assignees_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/assignees{/user}","branches_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/branches{/branch}","tags_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/tags","blobs_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/git/refs{/sha}","trees_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/git/trees{/sha}","statuses_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/statuses/{sha}","languages_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/languages","stargazers_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/stargazers","contributors_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/contributors","subscribers_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/subscribers","subscription_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/subscription","commits_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/commits{/sha}","git_commits_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/git/commits{/sha}","comments_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/comments{/number}","issue_comment_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/issues/comments/{number}","contents_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/contents/{+path}","compare_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/compare/{base}...{head}","merges_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/merges","archive_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/downloads","issues_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/issues{/number}","pulls_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/pulls{/number}","milestones_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/milestones{/number}","notifications_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/labels{/name}","releases_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/releases{/id}","created_at":"2014-10-26T21:13:20Z","updated_at":"2014-12-24T13:53:29Z","pushed_at":"2014-12-24T13:53:29Z","git_url":"git://github.com/lunarok/jeedom_mysensors.git","ssh_url":"git@github.com:lunarok/jeedom_mysensors.git","clone_url":"https://github.com/lunarok/jeedom_mysensors.git","svn_url":"https://github.com/lunarok/jeedom_mysensors","homepage":"","size":9173,"stargazers_count":0,"watchers_count":0,"language":"C","has_issues":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"conselio:master","ref":"master","sha":"3d9ff859d3584f0356e246c536487e9c39baddd7","user":{"login":"conselio","id":1991433,"avatar_url":"https://avatars.githubusercontent.com/u/1991433?v=3","gravatar_id":"","url":"https://api.github.com/users/conselio","html_url":"https://github.com/conselio","followers_url":"https://api.github.com/users/conselio/followers","following_url":"https://api.github.com/users/conselio/following{/other_user}","gists_url":"https://api.github.com/users/conselio/gists{/gist_id}","starred_url":"https://api.github.com/users/conselio/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/conselio/subscriptions","organizations_url":"https://api.github.com/users/conselio/orgs","repos_url":"https://api.github.com/users/conselio/repos","events_url":"https://api.github.com/users/conselio/events{/privacy}","received_events_url":"https://api.github.com/users/conselio/received_events","type":"User","site_admin":false},"repo":{"id":24268760,"name":"jeedom_mysensors","full_name":"conselio/jeedom_mysensors","owner":{"login":"conselio","id":1991433,"avatar_url":"https://avatars.githubusercontent.com/u/1991433?v=3","gravatar_id":"","url":"https://api.github.com/users/conselio","html_url":"https://github.com/conselio","followers_url":"https://api.github.com/users/conselio/followers","following_url":"https://api.github.com/users/conselio/following{/other_user}","gists_url":"https://api.github.com/users/conselio/gists{/gist_id}","starred_url":"https://api.github.com/users/conselio/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/conselio/subscriptions","organizations_url":"https://api.github.com/users/conselio/orgs","repos_url":"https://api.github.com/users/conselio/repos","events_url":"https://api.github.com/users/conselio/events{/privacy}","received_events_url":"https://api.github.com/users/conselio/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/conselio/jeedom_mysensors","description":"Plugin pour Jeedom pour MySensors V1.4","fork":false,"url":"https://api.github.com/repos/conselio/jeedom_mysensors","forks_url":"https://api.github.com/repos/conselio/jeedom_mysensors/forks","keys_url":"https://api.github.com/repos/conselio/jeedom_mysensors/keys{/key_id}","collaborators_url":"https://api.github.com/repos/conselio/jeedom_mysensors/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/conselio/jeedom_mysensors/teams","hooks_url":"https://api.github.com/repos/conselio/jeedom_mysensors/hooks","issue_events_url":"https://api.github.com/repos/conselio/jeedom_mysensors/issues/events{/number}","events_url":"https://api.github.com/repos/conselio/jeedom_mysensors/events","assignees_url":"https://api.github.com/repos/conselio/jeedom_mysensors/assignees{/user}","branches_url":"https://api.github.com/repos/conselio/jeedom_mysensors/branches{/branch}","tags_url":"https://api.github.com/repos/conselio/jeedom_mysensors/tags","blobs_url":"https://api.github.com/repos/conselio/jeedom_mysensors/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/conselio/jeedom_mysensors/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/conselio/jeedom_mysensors/git/refs{/sha}","trees_url":"https://api.github.com/repos/conselio/jeedom_mysensors/git/trees{/sha}","statuses_url":"https://api.github.com/repos/conselio/jeedom_mysensors/statuses/{sha}","languages_url":"https://api.github.com/repos/conselio/jeedom_mysensors/languages","stargazers_url":"https://api.github.com/repos/conselio/jeedom_mysensors/stargazers","contributors_url":"https://api.github.com/repos/conselio/jeedom_mysensors/contributors","subscribers_url":"https://api.github.com/repos/conselio/jeedom_mysensors/subscribers","subscription_url":"https://api.github.com/repos/conselio/jeedom_mysensors/subscription","commits_url":"https://api.github.com/repos/conselio/jeedom_mysensors/commits{/sha}","git_commits_url":"https://api.github.com/repos/conselio/jeedom_mysensors/git/commits{/sha}","comments_url":"https://api.github.com/repos/conselio/jeedom_mysensors/comments{/number}","issue_comment_url":"https://api.github.com/repos/conselio/jeedom_mysensors/issues/comments/{number}","contents_url":"https://api.github.com/repos/conselio/jeedom_mysensors/contents/{+path}","compare_url":"https://api.github.com/repos/conselio/jeedom_mysensors/compare/{base}...{head}","merges_url":"https://api.github.com/repos/conselio/jeedom_mysensors/merges","archive_url":"https://api.github.com/repos/conselio/jeedom_mysensors/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/conselio/jeedom_mysensors/downloads","issues_url":"https://api.github.com/repos/conselio/jeedom_mysensors/issues{/number}","pulls_url":"https://api.github.com/repos/conselio/jeedom_mysensors/pulls{/number}","milestones_url":"https://api.github.com/repos/conselio/jeedom_mysensors/milestones{/number}","notifications_url":"https://api.github.com/repos/conselio/jeedom_mysensors/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/conselio/jeedom_mysensors/labels{/name}","releases_url":"https://api.github.com/repos/conselio/jeedom_mysensors/releases{/id}","created_at":"2014-09-20T17:02:43Z","updated_at":"2014-11-23T20:45:26Z","pushed_at":"2014-11-23T20:45:26Z","git_url":"git://github.com/conselio/jeedom_mysensors.git","ssh_url":"git@github.com:conselio/jeedom_mysensors.git","clone_url":"https://github.com/conselio/jeedom_mysensors.git","svn_url":"https://github.com/conselio/jeedom_mysensors","homepage":"","size":2010,"stargazers_count":2,"watchers_count":2,"language":"PHP","has_issues":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":2,"mirror_url":null,"open_issues_count":1,"forks":2,"open_issues":1,"watchers":2,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/conselio/jeedom_mysensors/pulls/8"},"html":{"href":"https://github.com/conselio/jeedom_mysensors/pull/8"},"issue":{"href":"https://api.github.com/repos/conselio/jeedom_mysensors/issues/8"},"comments":{"href":"https://api.github.com/repos/conselio/jeedom_mysensors/issues/8/comments"},"review_comments":{"href":"https://api.github.com/repos/conselio/jeedom_mysensors/pulls/8/comments"},"review_comment":{"href":"https://api.github.com/repos/conselio/jeedom_mysensors/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/conselio/jeedom_mysensors/pulls/8/commits"},"statuses":{"href":"https://api.github.com/repos/conselio/jeedom_mysensors/statuses/c9e34df46285235d6428914a5ab3d0f8cacbf69b"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":153,"additions":42993,"deletions":190,"changed_files":755}},"public":true,"created_at":"2015-01-01T15:05:33Z"} +,{"id":"2489653621","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327768,"name":"cloudify-cosmo/cloudify-cli-packager","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-cli-packager"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify CLI Package Generator","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:33Z","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":"2489653622","type":"PushEvent","actor":{"id":4948391,"login":"cnt0","gravatar_id":"","url":"https://api.github.com/users/cnt0","avatar_url":"https://avatars.githubusercontent.com/u/4948391?"},"repo":{"id":22261730,"name":"cnt0/lfseries","url":"https://api.github.com/repos/cnt0/lfseries"},"payload":{"push_id":536865170,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"db5c6d32582cbdecd5134e765dd55173a770aece","before":"f54adae920801f015d4776ea2986e48cb5a0887c","commits":[{"sha":"db5c6d32582cbdecd5134e765dd55173a770aece","author":{"email":"1d3bb8be64db81658a2f14c82af419e2c4c63f60@yandex.ru","name":"cnt0"},"message":"improved code quality","distinct":true,"url":"https://api.github.com/repos/cnt0/lfseries/commits/db5c6d32582cbdecd5134e765dd55173a770aece"}]},"public":true,"created_at":"2015-01-01T15:05:34Z"} +,{"id":"2489653625","type":"PushEvent","actor":{"id":3081466,"login":"mdietze","gravatar_id":"","url":"https://api.github.com/users/mdietze","avatar_url":"https://avatars.githubusercontent.com/u/3081466?"},"repo":{"id":19502747,"name":"PecanProject/PecanProject.github.io","url":"https://api.github.com/repos/PecanProject/PecanProject.github.io"},"payload":{"push_id":536865173,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9cff2b1952461c1e7d395be025305b6b517e0ae3","before":"e3548d0038d6ed57065757b24808b328e0ebfcd8","commits":[{"sha":"9cff2b1952461c1e7d395be025305b6b517e0ae3","author":{"email":"41e9a1c6c5cf0926708208f35f5e72a2cd2b8363@bu.edu","name":"Mike Dietze"},"message":"old news: cleaning up 2013 and early 2014 timeline","distinct":true,"url":"https://api.github.com/repos/PecanProject/PecanProject.github.io/commits/9cff2b1952461c1e7d395be025305b6b517e0ae3"}]},"public":true,"created_at":"2015-01-01T15:05:34Z","org":{"id":2879854,"login":"PecanProject","gravatar_id":"","url":"https://api.github.com/orgs/PecanProject","avatar_url":"https://avatars.githubusercontent.com/u/2879854?"}} +,{"id":"2489653630","type":"PushEvent","actor":{"id":8036795,"login":"lilutanya","gravatar_id":"","url":"https://api.github.com/users/lilutanya","avatar_url":"https://avatars.githubusercontent.com/u/8036795?"},"repo":{"id":28629261,"name":"lilutanya/dojo_rules","url":"https://api.github.com/repos/lilutanya/dojo_rules"},"payload":{"push_id":536865175,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9111975d8b080da1e8e482b3e1888c4d27a3efcc","before":"b55908ddd0e0b2cf1d2d05ad6e4eccc56902d0d7","commits":[{"sha":"9111975d8b080da1e8e482b3e1888c4d27a3efcc","author":{"email":"8458e22f204983eea9394bb266c8181ba024a86f@gmail.com","name":"lilutanya"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/lilutanya/dojo_rules/commits/9111975d8b080da1e8e482b3e1888c4d27a3efcc"}]},"public":true,"created_at":"2015-01-01T15:05:34Z"} +,{"id":"2489653632","type":"WatchEvent","actor":{"id":529110,"login":"zenbaku","gravatar_id":"","url":"https://api.github.com/users/zenbaku","avatar_url":"https://avatars.githubusercontent.com/u/529110?"},"repo":{"id":2943911,"name":"montagejs/montage","url":"https://api.github.com/repos/montagejs/montage"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:35Z","org":{"id":2008799,"login":"montagejs","gravatar_id":"","url":"https://api.github.com/orgs/montagejs","avatar_url":"https://avatars.githubusercontent.com/u/2008799?"}} +,{"id":"2489653641","type":"IssueCommentEvent","actor":{"id":7045663,"login":"arjenhiemstra","gravatar_id":"","url":"https://api.github.com/users/arjenhiemstra","avatar_url":"https://avatars.githubusercontent.com/u/7045663?"},"repo":{"id":6233804,"name":"emoncms/emoncms","url":"https://api.github.com/repos/emoncms/emoncms"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/emoncms/emoncms/issues/265","labels_url":"https://api.github.com/repos/emoncms/emoncms/issues/265/labels{/name}","comments_url":"https://api.github.com/repos/emoncms/emoncms/issues/265/comments","events_url":"https://api.github.com/repos/emoncms/emoncms/issues/265/events","html_url":"https://github.com/emoncms/emoncms/issues/265","id":51758223,"number":265,"title":"Auto remove old data","user":{"login":"bettinz","id":9438037,"avatar_url":"https://avatars.githubusercontent.com/u/9438037?v=3","gravatar_id":"","url":"https://api.github.com/users/bettinz","html_url":"https://github.com/bettinz","followers_url":"https://api.github.com/users/bettinz/followers","following_url":"https://api.github.com/users/bettinz/following{/other_user}","gists_url":"https://api.github.com/users/bettinz/gists{/gist_id}","starred_url":"https://api.github.com/users/bettinz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bettinz/subscriptions","organizations_url":"https://api.github.com/users/bettinz/orgs","repos_url":"https://api.github.com/users/bettinz/repos","events_url":"https://api.github.com/users/bettinz/events{/privacy}","received_events_url":"https://api.github.com/users/bettinz/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-12T00:49:27Z","updated_at":"2015-01-01T15:05:37Z","closed_at":null,"body":"Hello,\r\nIf I use PHPFIWA or PHPFINA I can't delete old data. The best thing is to set an interval like \"delete data old than 90 days \". This allow me to manage a small interval without a lot of disk space. For some feeds in fact, i need kwh/d of 5 years (for example), but I don't need every value for 5 years (the graph in Full screen doesn't delete the interval with phpfiwa or phpfina).\r\nThank you"},"comment":{"url":"https://api.github.com/repos/emoncms/emoncms/issues/comments/68488586","html_url":"https://github.com/emoncms/emoncms/issues/265#issuecomment-68488586","issue_url":"https://api.github.com/repos/emoncms/emoncms/issues/265","id":68488586,"user":{"login":"arjenhiemstra","id":7045663,"avatar_url":"https://avatars.githubusercontent.com/u/7045663?v=3","gravatar_id":"","url":"https://api.github.com/users/arjenhiemstra","html_url":"https://github.com/arjenhiemstra","followers_url":"https://api.github.com/users/arjenhiemstra/followers","following_url":"https://api.github.com/users/arjenhiemstra/following{/other_user}","gists_url":"https://api.github.com/users/arjenhiemstra/gists{/gist_id}","starred_url":"https://api.github.com/users/arjenhiemstra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arjenhiemstra/subscriptions","organizations_url":"https://api.github.com/users/arjenhiemstra/orgs","repos_url":"https://api.github.com/users/arjenhiemstra/repos","events_url":"https://api.github.com/users/arjenhiemstra/events{/privacy}","received_events_url":"https://api.github.com/users/arjenhiemstra/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:05:37Z","updated_at":"2015-01-01T15:05:37Z","body":"Would be a great feature!"}},"public":true,"created_at":"2015-01-01T15:05:37Z","org":{"id":2532311,"login":"emoncms","gravatar_id":"","url":"https://api.github.com/orgs/emoncms","avatar_url":"https://avatars.githubusercontent.com/u/2532311?"}} +,{"id":"2489653644","type":"PushEvent","actor":{"id":8362849,"login":"fuxiangduan","gravatar_id":"","url":"https://api.github.com/users/fuxiangduan","avatar_url":"https://avatars.githubusercontent.com/u/8362849?"},"repo":{"id":28590482,"name":"fuxiangduan/fuxiangduan.github.io","url":"https://api.github.com/repos/fuxiangduan/fuxiangduan.github.io"},"payload":{"push_id":536865180,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"711498cdcb9056f212b4c09aa304a95f60c4ff48","before":"b8050fc3de513852825068708c4071d3a4a9b0ca","commits":[{"sha":"711498cdcb9056f212b4c09aa304a95f60c4ff48","author":{"email":"24486e45c352ca994e17983b9893e19a3e0c7221@outlook.com","name":"fuxiangduan"},"message":"delete all","distinct":true,"url":"https://api.github.com/repos/fuxiangduan/fuxiangduan.github.io/commits/711498cdcb9056f212b4c09aa304a95f60c4ff48"}]},"public":true,"created_at":"2015-01-01T15:05:37Z"} +,{"id":"2489653652","type":"PushEvent","actor":{"id":18631,"login":"ngs","gravatar_id":"","url":"https://api.github.com/users/ngs","avatar_url":"https://avatars.githubusercontent.com/u/18631?"},"repo":{"id":18731779,"name":"ngs/sources.ngs.io","url":"https://api.github.com/repos/ngs/sources.ngs.io"},"payload":{"push_id":536865184,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"af35bbfaa560d244fb2eed7860e7737a252b839c","before":"f6371972166280a34bb76e183547bb997a782f5e","commits":[{"sha":"af35bbfaa560d244fb2eed7860e7737a252b839c","author":{"email":"86f7e437faa5a7fce15d1ddcb9eaeaea377667b8@ngs.io","name":"Atsushi Nagase"},"message":"adopt jquery.hidescroll","distinct":true,"url":"https://api.github.com/repos/ngs/sources.ngs.io/commits/af35bbfaa560d244fb2eed7860e7737a252b839c"}]},"public":true,"created_at":"2015-01-01T15:05:38Z"} +,{"id":"2489653653","type":"PushEvent","actor":{"id":512573,"login":"SamWhited","gravatar_id":"","url":"https://api.github.com/users/SamWhited","avatar_url":"https://avatars.githubusercontent.com/u/512573?"},"repo":{"id":27289261,"name":"campaul/ph.sh","url":"https://api.github.com/repos/campaul/ph.sh"},"payload":{"push_id":536865185,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4f3074235f7915bab9f0491df1d09c1ea18993e7","before":"600d536f83270458c3c5f1e990164289d46e515a","commits":[{"sha":"4f3074235f7915bab9f0491df1d09c1ea18993e7","author":{"email":"f16bed56189e249fe4ca8ed10a1ecae60e8ceac0@samwhited.com","name":"Sam Whited"},"message":"Tiny code readability tweak","distinct":true,"url":"https://api.github.com/repos/campaul/ph.sh/commits/4f3074235f7915bab9f0491df1d09c1ea18993e7"}]},"public":true,"created_at":"2015-01-01T15:05:38Z"} +,{"id":"2489653656","type":"PushEvent","actor":{"id":1208119,"login":"LorenzMeier","gravatar_id":"","url":"https://api.github.com/users/LorenzMeier","avatar_url":"https://avatars.githubusercontent.com/u/1208119?"},"repo":{"id":5298790,"name":"PX4/Firmware","url":"https://api.github.com/repos/PX4/Firmware"},"payload":{"push_id":536865183,"size":1,"distinct_size":1,"ref":"refs/heads/hmc5983_SPI","head":"ee8ec9a79f9a6a2a6d3f06df6e9f150da8ab3302","before":"44b2330dfbf574c0dad1f6955bebde607579f270","commits":[{"sha":"ee8ec9a79f9a6a2a6d3f06df6e9f150da8ab3302","author":{"email":"93ed4a0a3d0e1873efad9e42341ac36b31958df6@inf.ethz.ch","name":"Lorenz Meier"},"message":"Support for HMC5983, which can also be attached via SPI","distinct":true,"url":"https://api.github.com/repos/PX4/Firmware/commits/ee8ec9a79f9a6a2a6d3f06df6e9f150da8ab3302"}]},"public":true,"created_at":"2015-01-01T15:05:39Z","org":{"id":2096014,"login":"PX4","gravatar_id":"","url":"https://api.github.com/orgs/PX4","avatar_url":"https://avatars.githubusercontent.com/u/2096014?"}} +,{"id":"2489653659","type":"PushEvent","actor":{"id":88600,"login":"LebedevRI","gravatar_id":"","url":"https://api.github.com/users/LebedevRI","avatar_url":"https://avatars.githubusercontent.com/u/88600?"},"repo":{"id":3791835,"name":"darktable-org/darktable","url":"https://api.github.com/repos/darktable-org/darktable"},"payload":{"push_id":536865188,"size":1,"distinct_size":1,"ref":"refs/heads/cache2","head":"a7eed3ef0a4ffe4c9c5501b4cb106e687e88a527","before":"882240c7bf64893229abdf1ae5accee82b1e90f5","commits":[{"sha":"a7eed3ef0a4ffe4c9c5501b4cb106e687e88a527","author":{"email":"c247390a474ba78064f3a5ec8d0ca3a56d88a36b@gmail.com","name":"Roman Lebedev"},"message":"dt_view_image_expose(): better guardning against memory issues","distinct":true,"url":"https://api.github.com/repos/darktable-org/darktable/commits/a7eed3ef0a4ffe4c9c5501b4cb106e687e88a527"}]},"public":true,"created_at":"2015-01-01T15:05:39Z","org":{"id":1561544,"login":"darktable-org","gravatar_id":"","url":"https://api.github.com/orgs/darktable-org","avatar_url":"https://avatars.githubusercontent.com/u/1561544?"}} +,{"id":"2489653662","type":"PushEvent","actor":{"id":5418069,"login":"mjlm","gravatar_id":"","url":"https://api.github.com/users/mjlm","avatar_url":"https://avatars.githubusercontent.com/u/5418069?"},"repo":{"id":25335508,"name":"HarveyLab/Acquisition2P_class","url":"https://api.github.com/repos/HarveyLab/Acquisition2P_class"},"payload":{"push_id":536865190,"size":1,"distinct_size":1,"ref":"refs/heads/matthiasMCorr","head":"8c033f44bacc30b99dbe7700e9fd94001286b589","before":"a37c92d7969b5af5f600abd4e8d50aee64abbb42","commits":[{"sha":"8c033f44bacc30b99dbe7700e9fd94001286b589","author":{"email":"b69ba29707f773b186b98750d6b4669cce778255@gmail.com","name":"mjlm-office"},"message":"Change motionCorrect bug due to typo.","distinct":true,"url":"https://api.github.com/repos/HarveyLab/Acquisition2P_class/commits/8c033f44bacc30b99dbe7700e9fd94001286b589"}]},"public":true,"created_at":"2015-01-01T15:05:39Z","org":{"id":5429498,"login":"HarveyLab","gravatar_id":"","url":"https://api.github.com/orgs/HarveyLab","avatar_url":"https://avatars.githubusercontent.com/u/5429498?"}} +,{"id":"2489653664","type":"CreateEvent","actor":{"id":5096753,"login":"Iryaz","gravatar_id":"","url":"https://api.github.com/users/Iryaz","avatar_url":"https://avatars.githubusercontent.com/u/5096753?"},"repo":{"id":27636313,"name":"Shamrel/leso6","url":"https://api.github.com/repos/Shamrel/leso6"},"payload":{"ref":"dev","ref_type":"branch","master_branch":"master","description":"Source code for training kit LESO6 based on ATMEGA","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:39Z"} +,{"id":"2489653666","type":"PushEvent","actor":{"id":10074264,"login":"DamonY","gravatar_id":"","url":"https://api.github.com/users/DamonY","avatar_url":"https://avatars.githubusercontent.com/u/10074264?"},"repo":{"id":28293846,"name":"ZhangboTeam/Adinnet.MQE","url":"https://api.github.com/repos/ZhangboTeam/Adinnet.MQE"},"payload":{"push_id":536865193,"size":0,"distinct_size":0,"ref":"refs/heads/master","head":"189e1138ad937214bca30379df75d5f960ccdc38","before":"189e1138ad937214bca30379df75d5f960ccdc38","commits":[]},"public":true,"created_at":"2015-01-01T15:05:39Z","org":{"id":10057771,"login":"ZhangboTeam","gravatar_id":"","url":"https://api.github.com/orgs/ZhangboTeam","avatar_url":"https://avatars.githubusercontent.com/u/10057771?"}} +,{"id":"2489653673","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":536865194,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0f52e925514fa93caea5d1f01aa6bdd02b00ba7a","before":"2a968bedd20eacaccf93831e84704d050ada2c0b","commits":[{"sha":"0f52e925514fa93caea5d1f01aa6bdd02b00ba7a","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420124737878\n\nfRE9/JugcwoEtB4bnm+X0w8XjAIInnwDyhgwBlAAiCg=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/0f52e925514fa93caea5d1f01aa6bdd02b00ba7a"}]},"public":true,"created_at":"2015-01-01T15:05:39Z"} +,{"id":"2489653674","type":"CreateEvent","actor":{"id":1259250,"login":"muniere","gravatar_id":"","url":"https://api.github.com/users/muniere","avatar_url":"https://avatars.githubusercontent.com/u/1259250?"},"repo":{"id":28688681,"name":"muniere/hipchat-history","url":"https://api.github.com/repos/muniere/hipchat-history"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Collect hipchat history in specific rooms","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:40Z"} +,{"id":"2489653675","type":"PullRequestEvent","actor":{"id":4683642,"login":"efwahl","gravatar_id":"","url":"https://api.github.com/users/efwahl","avatar_url":"https://avatars.githubusercontent.com/u/4683642?"},"repo":{"id":363150,"name":"andymccurdy/redis-py","url":"https://api.github.com/repos/andymccurdy/redis-py"},"payload":{"action":"opened","number":575,"pull_request":{"url":"https://api.github.com/repos/andymccurdy/redis-py/pulls/575","id":26743812,"html_url":"https://github.com/andymccurdy/redis-py/pull/575","diff_url":"https://github.com/andymccurdy/redis-py/pull/575.diff","patch_url":"https://github.com/andymccurdy/redis-py/pull/575.patch","issue_url":"https://api.github.com/repos/andymccurdy/redis-py/issues/575","number":575,"state":"open","locked":false,"title":"Allow pubsub WorkerThread to be shut down while in a callback ","user":{"login":"efwahl","id":4683642,"avatar_url":"https://avatars.githubusercontent.com/u/4683642?v=3","gravatar_id":"","url":"https://api.github.com/users/efwahl","html_url":"https://github.com/efwahl","followers_url":"https://api.github.com/users/efwahl/followers","following_url":"https://api.github.com/users/efwahl/following{/other_user}","gists_url":"https://api.github.com/users/efwahl/gists{/gist_id}","starred_url":"https://api.github.com/users/efwahl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/efwahl/subscriptions","organizations_url":"https://api.github.com/users/efwahl/orgs","repos_url":"https://api.github.com/users/efwahl/repos","events_url":"https://api.github.com/users/efwahl/events{/privacy}","received_events_url":"https://api.github.com/users/efwahl/received_events","type":"User","site_admin":false},"body":"Allow pubsub WorkerThread to be shut down while in a callback by ignoring the RuntimeError thrown when join is called on the running thread.","created_at":"2015-01-01T15:05:39Z","updated_at":"2015-01-01T15:05:39Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/andymccurdy/redis-py/pulls/575/commits","review_comments_url":"https://api.github.com/repos/andymccurdy/redis-py/pulls/575/comments","review_comment_url":"https://api.github.com/repos/andymccurdy/redis-py/pulls/comments/{number}","comments_url":"https://api.github.com/repos/andymccurdy/redis-py/issues/575/comments","statuses_url":"https://api.github.com/repos/andymccurdy/redis-py/statuses/323ad59a7a4b0442311814892b553d5017affb56","head":{"label":"efwahl:master","ref":"master","sha":"323ad59a7a4b0442311814892b553d5017affb56","user":{"login":"efwahl","id":4683642,"avatar_url":"https://avatars.githubusercontent.com/u/4683642?v=3","gravatar_id":"","url":"https://api.github.com/users/efwahl","html_url":"https://github.com/efwahl","followers_url":"https://api.github.com/users/efwahl/followers","following_url":"https://api.github.com/users/efwahl/following{/other_user}","gists_url":"https://api.github.com/users/efwahl/gists{/gist_id}","starred_url":"https://api.github.com/users/efwahl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/efwahl/subscriptions","organizations_url":"https://api.github.com/users/efwahl/orgs","repos_url":"https://api.github.com/users/efwahl/repos","events_url":"https://api.github.com/users/efwahl/events{/privacy}","received_events_url":"https://api.github.com/users/efwahl/received_events","type":"User","site_admin":false},"repo":{"id":27305381,"name":"redis-py","full_name":"efwahl/redis-py","owner":{"login":"efwahl","id":4683642,"avatar_url":"https://avatars.githubusercontent.com/u/4683642?v=3","gravatar_id":"","url":"https://api.github.com/users/efwahl","html_url":"https://github.com/efwahl","followers_url":"https://api.github.com/users/efwahl/followers","following_url":"https://api.github.com/users/efwahl/following{/other_user}","gists_url":"https://api.github.com/users/efwahl/gists{/gist_id}","starred_url":"https://api.github.com/users/efwahl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/efwahl/subscriptions","organizations_url":"https://api.github.com/users/efwahl/orgs","repos_url":"https://api.github.com/users/efwahl/repos","events_url":"https://api.github.com/users/efwahl/events{/privacy}","received_events_url":"https://api.github.com/users/efwahl/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/efwahl/redis-py","description":"Redis Python Client","fork":true,"url":"https://api.github.com/repos/efwahl/redis-py","forks_url":"https://api.github.com/repos/efwahl/redis-py/forks","keys_url":"https://api.github.com/repos/efwahl/redis-py/keys{/key_id}","collaborators_url":"https://api.github.com/repos/efwahl/redis-py/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/efwahl/redis-py/teams","hooks_url":"https://api.github.com/repos/efwahl/redis-py/hooks","issue_events_url":"https://api.github.com/repos/efwahl/redis-py/issues/events{/number}","events_url":"https://api.github.com/repos/efwahl/redis-py/events","assignees_url":"https://api.github.com/repos/efwahl/redis-py/assignees{/user}","branches_url":"https://api.github.com/repos/efwahl/redis-py/branches{/branch}","tags_url":"https://api.github.com/repos/efwahl/redis-py/tags","blobs_url":"https://api.github.com/repos/efwahl/redis-py/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/efwahl/redis-py/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/efwahl/redis-py/git/refs{/sha}","trees_url":"https://api.github.com/repos/efwahl/redis-py/git/trees{/sha}","statuses_url":"https://api.github.com/repos/efwahl/redis-py/statuses/{sha}","languages_url":"https://api.github.com/repos/efwahl/redis-py/languages","stargazers_url":"https://api.github.com/repos/efwahl/redis-py/stargazers","contributors_url":"https://api.github.com/repos/efwahl/redis-py/contributors","subscribers_url":"https://api.github.com/repos/efwahl/redis-py/subscribers","subscription_url":"https://api.github.com/repos/efwahl/redis-py/subscription","commits_url":"https://api.github.com/repos/efwahl/redis-py/commits{/sha}","git_commits_url":"https://api.github.com/repos/efwahl/redis-py/git/commits{/sha}","comments_url":"https://api.github.com/repos/efwahl/redis-py/comments{/number}","issue_comment_url":"https://api.github.com/repos/efwahl/redis-py/issues/comments/{number}","contents_url":"https://api.github.com/repos/efwahl/redis-py/contents/{+path}","compare_url":"https://api.github.com/repos/efwahl/redis-py/compare/{base}...{head}","merges_url":"https://api.github.com/repos/efwahl/redis-py/merges","archive_url":"https://api.github.com/repos/efwahl/redis-py/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/efwahl/redis-py/downloads","issues_url":"https://api.github.com/repos/efwahl/redis-py/issues{/number}","pulls_url":"https://api.github.com/repos/efwahl/redis-py/pulls{/number}","milestones_url":"https://api.github.com/repos/efwahl/redis-py/milestones{/number}","notifications_url":"https://api.github.com/repos/efwahl/redis-py/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/efwahl/redis-py/labels{/name}","releases_url":"https://api.github.com/repos/efwahl/redis-py/releases{/id}","created_at":"2014-11-29T15:02:22Z","updated_at":"2015-01-01T15:04:26Z","pushed_at":"2015-01-01T15:04:25Z","git_url":"git://github.com/efwahl/redis-py.git","ssh_url":"git@github.com:efwahl/redis-py.git","clone_url":"https://github.com/efwahl/redis-py.git","svn_url":"https://github.com/efwahl/redis-py","homepage":"","size":1541,"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":"andymccurdy:master","ref":"master","sha":"54e1040b576afb4155bf839483428c5edac14df0","user":{"login":"andymccurdy","id":89265,"avatar_url":"https://avatars.githubusercontent.com/u/89265?v=3","gravatar_id":"","url":"https://api.github.com/users/andymccurdy","html_url":"https://github.com/andymccurdy","followers_url":"https://api.github.com/users/andymccurdy/followers","following_url":"https://api.github.com/users/andymccurdy/following{/other_user}","gists_url":"https://api.github.com/users/andymccurdy/gists{/gist_id}","starred_url":"https://api.github.com/users/andymccurdy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andymccurdy/subscriptions","organizations_url":"https://api.github.com/users/andymccurdy/orgs","repos_url":"https://api.github.com/users/andymccurdy/repos","events_url":"https://api.github.com/users/andymccurdy/events{/privacy}","received_events_url":"https://api.github.com/users/andymccurdy/received_events","type":"User","site_admin":false},"repo":{"id":363150,"name":"redis-py","full_name":"andymccurdy/redis-py","owner":{"login":"andymccurdy","id":89265,"avatar_url":"https://avatars.githubusercontent.com/u/89265?v=3","gravatar_id":"","url":"https://api.github.com/users/andymccurdy","html_url":"https://github.com/andymccurdy","followers_url":"https://api.github.com/users/andymccurdy/followers","following_url":"https://api.github.com/users/andymccurdy/following{/other_user}","gists_url":"https://api.github.com/users/andymccurdy/gists{/gist_id}","starred_url":"https://api.github.com/users/andymccurdy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andymccurdy/subscriptions","organizations_url":"https://api.github.com/users/andymccurdy/orgs","repos_url":"https://api.github.com/users/andymccurdy/repos","events_url":"https://api.github.com/users/andymccurdy/events{/privacy}","received_events_url":"https://api.github.com/users/andymccurdy/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/andymccurdy/redis-py","description":"Redis Python Client","fork":false,"url":"https://api.github.com/repos/andymccurdy/redis-py","forks_url":"https://api.github.com/repos/andymccurdy/redis-py/forks","keys_url":"https://api.github.com/repos/andymccurdy/redis-py/keys{/key_id}","collaborators_url":"https://api.github.com/repos/andymccurdy/redis-py/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/andymccurdy/redis-py/teams","hooks_url":"https://api.github.com/repos/andymccurdy/redis-py/hooks","issue_events_url":"https://api.github.com/repos/andymccurdy/redis-py/issues/events{/number}","events_url":"https://api.github.com/repos/andymccurdy/redis-py/events","assignees_url":"https://api.github.com/repos/andymccurdy/redis-py/assignees{/user}","branches_url":"https://api.github.com/repos/andymccurdy/redis-py/branches{/branch}","tags_url":"https://api.github.com/repos/andymccurdy/redis-py/tags","blobs_url":"https://api.github.com/repos/andymccurdy/redis-py/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/andymccurdy/redis-py/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/andymccurdy/redis-py/git/refs{/sha}","trees_url":"https://api.github.com/repos/andymccurdy/redis-py/git/trees{/sha}","statuses_url":"https://api.github.com/repos/andymccurdy/redis-py/statuses/{sha}","languages_url":"https://api.github.com/repos/andymccurdy/redis-py/languages","stargazers_url":"https://api.github.com/repos/andymccurdy/redis-py/stargazers","contributors_url":"https://api.github.com/repos/andymccurdy/redis-py/contributors","subscribers_url":"https://api.github.com/repos/andymccurdy/redis-py/subscribers","subscription_url":"https://api.github.com/repos/andymccurdy/redis-py/subscription","commits_url":"https://api.github.com/repos/andymccurdy/redis-py/commits{/sha}","git_commits_url":"https://api.github.com/repos/andymccurdy/redis-py/git/commits{/sha}","comments_url":"https://api.github.com/repos/andymccurdy/redis-py/comments{/number}","issue_comment_url":"https://api.github.com/repos/andymccurdy/redis-py/issues/comments/{number}","contents_url":"https://api.github.com/repos/andymccurdy/redis-py/contents/{+path}","compare_url":"https://api.github.com/repos/andymccurdy/redis-py/compare/{base}...{head}","merges_url":"https://api.github.com/repos/andymccurdy/redis-py/merges","archive_url":"https://api.github.com/repos/andymccurdy/redis-py/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/andymccurdy/redis-py/downloads","issues_url":"https://api.github.com/repos/andymccurdy/redis-py/issues{/number}","pulls_url":"https://api.github.com/repos/andymccurdy/redis-py/pulls{/number}","milestones_url":"https://api.github.com/repos/andymccurdy/redis-py/milestones{/number}","notifications_url":"https://api.github.com/repos/andymccurdy/redis-py/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/andymccurdy/redis-py/labels{/name}","releases_url":"https://api.github.com/repos/andymccurdy/redis-py/releases{/id}","created_at":"2009-11-06T10:22:26Z","updated_at":"2015-01-01T00:34:20Z","pushed_at":"2014-12-09T00:50:46Z","git_url":"git://github.com/andymccurdy/redis-py.git","ssh_url":"git@github.com:andymccurdy/redis-py.git","clone_url":"https://github.com/andymccurdy/redis-py.git","svn_url":"https://github.com/andymccurdy/redis-py","homepage":"","size":4077,"stargazers_count":2955,"watchers_count":2955,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":680,"mirror_url":null,"open_issues_count":81,"forks":680,"open_issues":81,"watchers":2955,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/andymccurdy/redis-py/pulls/575"},"html":{"href":"https://github.com/andymccurdy/redis-py/pull/575"},"issue":{"href":"https://api.github.com/repos/andymccurdy/redis-py/issues/575"},"comments":{"href":"https://api.github.com/repos/andymccurdy/redis-py/issues/575/comments"},"review_comments":{"href":"https://api.github.com/repos/andymccurdy/redis-py/pulls/575/comments"},"review_comment":{"href":"https://api.github.com/repos/andymccurdy/redis-py/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/andymccurdy/redis-py/pulls/575/commits"},"statuses":{"href":"https://api.github.com/repos/andymccurdy/redis-py/statuses/323ad59a7a4b0442311814892b553d5017affb56"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":5,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:05:40Z"} +,{"id":"2489653681","type":"IssueCommentEvent","actor":{"id":2354108,"login":"coveralls","gravatar_id":"","url":"https://api.github.com/users/coveralls","avatar_url":"https://avatars.githubusercontent.com/u/2354108?"},"repo":{"id":28648383,"name":"dankempster/axstrad-filesystem","url":"https://api.github.com/repos/dankempster/axstrad-filesystem"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/3","labels_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/3/comments","events_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/3/events","html_url":"https://github.com/dankempster/axstrad-filesystem/pull/3","id":53221403,"number":3,"title":"Set Travis builds to push code coverage to Coveralls.","user":{"login":"dankempster","id":299901,"avatar_url":"https://avatars.githubusercontent.com/u/299901?v=3","gravatar_id":"","url":"https://api.github.com/users/dankempster","html_url":"https://github.com/dankempster","followers_url":"https://api.github.com/users/dankempster/followers","following_url":"https://api.github.com/users/dankempster/following{/other_user}","gists_url":"https://api.github.com/users/dankempster/gists{/gist_id}","starred_url":"https://api.github.com/users/dankempster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dankempster/subscriptions","organizations_url":"https://api.github.com/users/dankempster/orgs","repos_url":"https://api.github.com/users/dankempster/repos","events_url":"https://api.github.com/users/dankempster/events{/privacy}","received_events_url":"https://api.github.com/users/dankempster/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T15:03:45Z","updated_at":"2015-01-01T15:05:41Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/3","html_url":"https://github.com/dankempster/axstrad-filesystem/pull/3","diff_url":"https://github.com/dankempster/axstrad-filesystem/pull/3.diff","patch_url":"https://github.com/dankempster/axstrad-filesystem/pull/3.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/comments/68488588","html_url":"https://github.com/dankempster/axstrad-filesystem/pull/3#issuecomment-68488588","issue_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/3","id":68488588,"user":{"login":"coveralls","id":2354108,"avatar_url":"https://avatars.githubusercontent.com/u/2354108?v=3","gravatar_id":"","url":"https://api.github.com/users/coveralls","html_url":"https://github.com/coveralls","followers_url":"https://api.github.com/users/coveralls/followers","following_url":"https://api.github.com/users/coveralls/following{/other_user}","gists_url":"https://api.github.com/users/coveralls/gists{/gist_id}","starred_url":"https://api.github.com/users/coveralls/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/coveralls/subscriptions","organizations_url":"https://api.github.com/users/coveralls/orgs","repos_url":"https://api.github.com/users/coveralls/repos","events_url":"https://api.github.com/users/coveralls/events{/privacy}","received_events_url":"https://api.github.com/users/coveralls/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:05:41Z","updated_at":"2015-01-01T15:05:41Z","body":"\n[![Coverage Status](https://coveralls.io/builds/1680435/badge)](https://coveralls.io/builds/1680435)\n\nChanges Unknown when pulling **1c6534408ae63ce8b18d28eb47ce83dbf0af31bb on add-coveralls** into ** on develop**.\n"}},"public":true,"created_at":"2015-01-01T15:05:42Z"} +,{"id":"2489653682","type":"IssueCommentEvent","actor":{"id":2354108,"login":"coveralls","gravatar_id":"","url":"https://api.github.com/users/coveralls","avatar_url":"https://avatars.githubusercontent.com/u/2354108?"},"repo":{"id":28648383,"name":"dankempster/axstrad-filesystem","url":"https://api.github.com/repos/dankempster/axstrad-filesystem"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/3","labels_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/3/comments","events_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/3/events","html_url":"https://github.com/dankempster/axstrad-filesystem/pull/3","id":53221403,"number":3,"title":"Set Travis builds to push code coverage to Coveralls.","user":{"login":"dankempster","id":299901,"avatar_url":"https://avatars.githubusercontent.com/u/299901?v=3","gravatar_id":"","url":"https://api.github.com/users/dankempster","html_url":"https://github.com/dankempster","followers_url":"https://api.github.com/users/dankempster/followers","following_url":"https://api.github.com/users/dankempster/following{/other_user}","gists_url":"https://api.github.com/users/dankempster/gists{/gist_id}","starred_url":"https://api.github.com/users/dankempster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dankempster/subscriptions","organizations_url":"https://api.github.com/users/dankempster/orgs","repos_url":"https://api.github.com/users/dankempster/repos","events_url":"https://api.github.com/users/dankempster/events{/privacy}","received_events_url":"https://api.github.com/users/dankempster/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T15:03:45Z","updated_at":"2015-01-01T15:05:41Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/3","html_url":"https://github.com/dankempster/axstrad-filesystem/pull/3","diff_url":"https://github.com/dankempster/axstrad-filesystem/pull/3.diff","patch_url":"https://github.com/dankempster/axstrad-filesystem/pull/3.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/comments/68488589","html_url":"https://github.com/dankempster/axstrad-filesystem/pull/3#issuecomment-68488589","issue_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/3","id":68488589,"user":{"login":"coveralls","id":2354108,"avatar_url":"https://avatars.githubusercontent.com/u/2354108?v=3","gravatar_id":"","url":"https://api.github.com/users/coveralls","html_url":"https://github.com/coveralls","followers_url":"https://api.github.com/users/coveralls/followers","following_url":"https://api.github.com/users/coveralls/following{/other_user}","gists_url":"https://api.github.com/users/coveralls/gists{/gist_id}","starred_url":"https://api.github.com/users/coveralls/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/coveralls/subscriptions","organizations_url":"https://api.github.com/users/coveralls/orgs","repos_url":"https://api.github.com/users/coveralls/repos","events_url":"https://api.github.com/users/coveralls/events{/privacy}","received_events_url":"https://api.github.com/users/coveralls/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:05:41Z","updated_at":"2015-01-01T15:05:41Z","body":"\n[![Coverage Status](https://coveralls.io/builds/1680435/badge)](https://coveralls.io/builds/1680435)\n\nChanges Unknown when pulling **1c6534408ae63ce8b18d28eb47ce83dbf0af31bb on add-coveralls** into ** on develop**.\n"}},"public":true,"created_at":"2015-01-01T15:05:42Z"} +,{"id":"2489653683","type":"CreateEvent","actor":{"id":775131,"login":"NiGGa","gravatar_id":"","url":"https://api.github.com/users/NiGGa","avatar_url":"https://avatars.githubusercontent.com/u/775131?"},"repo":{"id":28688700,"name":"NiGGa/NiGGa","url":"https://api.github.com/repos/NiGGa/NiGGa"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"blog","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:42Z"} +,{"id":"2489653689","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":23112280,"name":"cloudify-cosmo/grafana","url":"https://api.github.com/repos/cloudify-cosmo/grafana"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:42Z","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":"2489653690","type":"PushEvent","actor":{"id":1595215,"login":"addsict","gravatar_id":"","url":"https://api.github.com/users/addsict","avatar_url":"https://avatars.githubusercontent.com/u/1595215?"},"repo":{"id":28685061,"name":"addsict/swift-hal","url":"https://api.github.com/repos/addsict/swift-hal"},"payload":{"push_id":536865198,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fa4a0d77ecac256b5917e9e72d56d38e386d63e6","before":"0e5c3d5d672e2c6becef6536fd8c3807a8ad5923","commits":[{"sha":"fa4a0d77ecac256b5917e9e72d56d38e386d63e6","author":{"email":"a806f7c457c6968dc6db7e95cd3863047591a722@gmail.com","name":"Yuuki Furuyama"},"message":"Add HALResource and HALLink classes","distinct":true,"url":"https://api.github.com/repos/addsict/swift-hal/commits/fa4a0d77ecac256b5917e9e72d56d38e386d63e6"}]},"public":true,"created_at":"2015-01-01T15:05:43Z"} +,{"id":"2489653692","type":"PushEvent","actor":{"id":512573,"login":"SamWhited","gravatar_id":"","url":"https://api.github.com/users/SamWhited","avatar_url":"https://avatars.githubusercontent.com/u/512573?"},"repo":{"id":28072019,"name":"SamWhited/ph.sh","url":"https://api.github.com/repos/SamWhited/ph.sh"},"payload":{"push_id":536865199,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4f3074235f7915bab9f0491df1d09c1ea18993e7","before":"600d536f83270458c3c5f1e990164289d46e515a","commits":[{"sha":"4f3074235f7915bab9f0491df1d09c1ea18993e7","author":{"email":"f16bed56189e249fe4ca8ed10a1ecae60e8ceac0@samwhited.com","name":"Sam Whited"},"message":"Tiny code readability tweak","distinct":true,"url":"https://api.github.com/repos/SamWhited/ph.sh/commits/4f3074235f7915bab9f0491df1d09c1ea18993e7"}]},"public":true,"created_at":"2015-01-01T15:05:43Z"} +,{"id":"2489653693","type":"PushEvent","actor":{"id":4729139,"login":"poschengband","gravatar_id":"","url":"https://api.github.com/users/poschengband","avatar_url":"https://avatars.githubusercontent.com/u/4729139?"},"repo":{"id":10765478,"name":"poschengband/poschengband","url":"https://api.github.com/repos/poschengband/poschengband"},"payload":{"push_id":536865200,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"cf8fc58962a6e323a6d63d07d3211ec2dde52982","before":"a3a5ea26c7a02f84e24b2866eadc12f00ff681d1","commits":[{"sha":"cf8fc58962a6e323a6d63d07d3211ec2dde52982","author":{"email":"59f8025d5107eab2ad159f3dd097ebc035e401a3@gmail.com","name":"poschengband"},"message":"Possessors: Make the start a bit easier","distinct":true,"url":"https://api.github.com/repos/poschengband/poschengband/commits/cf8fc58962a6e323a6d63d07d3211ec2dde52982"}]},"public":true,"created_at":"2015-01-01T15:05:43Z"} +,{"id":"2489653698","type":"CreateEvent","actor":{"id":6280692,"login":"madrick001","gravatar_id":"","url":"https://api.github.com/users/madrick001","avatar_url":"https://avatars.githubusercontent.com/u/6280692?"},"repo":{"id":28688701,"name":"madrick001/crocode-sandbox","url":"https://api.github.com/repos/madrick001/crocode-sandbox"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"test repository","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:43Z"} +,{"id":"2489653699","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":536865202,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"87a3658a73bd1c5ff737d72a3aac38c082c6a93c","before":"b6253d8186fc72d75a793bc065efa77186b81371","commits":[{"sha":"87a3658a73bd1c5ff737d72a3aac38c082c6a93c","author":{"email":"6b83eded995a0663a8581c4317a76bfbfaf34437@xiaoshitou1","name":"xiaoshitou"},"message":"Translated by 土妹子","distinct":true,"url":"https://api.github.com/repos/gnenbu/gn_enbu_chs/commits/87a3658a73bd1c5ff737d72a3aac38c082c6a93c"}]},"public":true,"created_at":"2015-01-01T15:05:43Z"} +,{"id":"2489653700","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":23112280,"name":"cloudify-cosmo/grafana","url":"https://api.github.com/repos/cloudify-cosmo/grafana"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"Grafana - A Graphite & InfluxDB Dashboard and Graph Editor","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:44Z","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":"2489653701","type":"CreateEvent","actor":{"id":1834049,"login":"isaacseymour","gravatar_id":"","url":"https://api.github.com/users/isaacseymour","avatar_url":"https://avatars.githubusercontent.com/u/1834049?"},"repo":{"id":28648149,"name":"gocardless/activejob-retry","url":"https://api.github.com/repos/gocardless/activejob-retry"},"payload":{"ref":"drop-sidekiq","ref_type":"branch","master_branch":"master","description":"Automatic retries for ActiveJob","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:44Z","org":{"id":790629,"login":"gocardless","gravatar_id":"","url":"https://api.github.com/orgs/gocardless","avatar_url":"https://avatars.githubusercontent.com/u/790629?"}} +,{"id":"2489653703","type":"PushEvent","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":{"push_id":536865204,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"913be863f57466adb1a050e473d0ff99defc733b","before":"f219fe1fbe70d7899f783fec32460ce3f32f02c5","commits":[{"sha":"913be863f57466adb1a050e473d0ff99defc733b","author":{"email":"59bd0a3ff43b32849b319e645d4798d8a5d1e889@suprafly.com","name":"suprafly"},"message":"Updates Readme, again","distinct":true,"url":"https://api.github.com/repos/suprafly/knodes/commits/913be863f57466adb1a050e473d0ff99defc733b"}]},"public":true,"created_at":"2015-01-01T15:05:44Z"} +,{"id":"2489653704","type":"PushEvent","actor":{"id":1282796,"login":"Contron","gravatar_id":"","url":"https://api.github.com/users/Contron","avatar_url":"https://avatars.githubusercontent.com/u/1282796?"},"repo":{"id":28539689,"name":"Contron/Sharpknife","url":"https://api.github.com/repos/Contron/Sharpknife"},"payload":{"push_id":536865205,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f172a1ced37a33cfe2582682099bc45c5e3a6bb3","before":"1cff44b23008a24ff077455f587da013e2a3c971","commits":[{"sha":"f172a1ced37a33cfe2582682099bc45c5e3a6bb3","author":{"email":"f9785c7ddaf742d1c42905a4d2ea3e636c438ccd@gmail.com","name":"Contron"},"message":"Added a class to assist with editing sub-types.","distinct":true,"url":"https://api.github.com/repos/Contron/Sharpknife/commits/f172a1ced37a33cfe2582682099bc45c5e3a6bb3"}]},"public":true,"created_at":"2015-01-01T15:05:44Z"} +,{"id":"2489653705","type":"PushEvent","actor":{"id":457834,"login":"danielbayerlein","gravatar_id":"","url":"https://api.github.com/users/danielbayerlein","avatar_url":"https://avatars.githubusercontent.com/u/457834?"},"repo":{"id":8679959,"name":"danielbayerlein/middleman-google-analytics","url":"https://api.github.com/repos/danielbayerlein/middleman-google-analytics"},"payload":{"push_id":536865206,"size":3,"distinct_size":1,"ref":"refs/heads/1.1.0","head":"13f93aa0729049053d762db6fd67de39cd95ed1a","before":"57fc4c16c6500e68d7f30bb00cb222e856483ff3","commits":[{"sha":"b9d16a3d27025c5a703fabf296b3223c4ece31fb","author":{"email":"3a2628526b7c462695a38309b4ff2c5407be92e1@users.noreply.github.com","name":"Daniel Bayerlein"},"message":"2015","distinct":false,"url":"https://api.github.com/repos/danielbayerlein/middleman-google-analytics/commits/b9d16a3d27025c5a703fabf296b3223c4ece31fb"},{"sha":"ef624fa12bbcca9fab1ef8331b73bc9f4bf93f0d","author":{"email":"3a2628526b7c462695a38309b4ff2c5407be92e1@users.noreply.github.com","name":"Daniel Bayerlein"},"message":"2015","distinct":false,"url":"https://api.github.com/repos/danielbayerlein/middleman-google-analytics/commits/ef624fa12bbcca9fab1ef8331b73bc9f4bf93f0d"},{"sha":"13f93aa0729049053d762db6fd67de39cd95ed1a","author":{"email":"baecafc6a326e59fa3fdd6f0b31dbeb84996ff91@googlemail.com","name":"Daniel Bayerlein"},"message":"Merge branch 'master' into 1.1.0","distinct":true,"url":"https://api.github.com/repos/danielbayerlein/middleman-google-analytics/commits/13f93aa0729049053d762db6fd67de39cd95ed1a"}]},"public":true,"created_at":"2015-01-01T15:05:44Z"} +,{"id":"2489653709","type":"PushEvent","actor":{"id":513512,"login":"sorlok","gravatar_id":"","url":"https://api.github.com/users/sorlok","avatar_url":"https://avatars.githubusercontent.com/u/513512?"},"repo":{"id":15421817,"name":"sorlok/enigma-dev","url":"https://api.github.com/repos/sorlok/enigma-dev"},"payload":{"push_id":536865211,"size":1,"distinct_size":1,"ref":"refs/heads/exit_multiblock","head":"8eb0c51c9df8fed45b329f47551de39ee10d1b78","before":"6d3b018ce2a86692f7b37d0c0e6de01273f84305","commits":[{"sha":"8eb0c51c9df8fed45b329f47551de39ee10d1b78","author":{"email":"b834296bd3defa26f3fd13cb0e37fce057e3bb4f@gmail.com","name":"Seth N. Hetu"},"message":"Added block exiting to the compliance settings; changed the block labels to be enigma_block_end_X","distinct":true,"url":"https://api.github.com/repos/sorlok/enigma-dev/commits/8eb0c51c9df8fed45b329f47551de39ee10d1b78"}]},"public":true,"created_at":"2015-01-01T15:05:44Z"} +,{"id":"2489653711","type":"PushEvent","actor":{"id":1516479,"login":"acmerfight","gravatar_id":"","url":"https://api.github.com/users/acmerfight","avatar_url":"https://avatars.githubusercontent.com/u/1516479?"},"repo":{"id":28592663,"name":"acmerfight/alizee","url":"https://api.github.com/repos/acmerfight/alizee"},"payload":{"push_id":536865212,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"ae2c4fb2c4bbf0f09933b847b230d169472457f0","before":"7ea39945b70164cbe3b31c581c5a4159656ef26c","commits":[{"sha":"67362e235e1100e75166a051fdb4fbc0062952f4","author":{"email":"de5a753110b5ee9287e7d1e3a89f76ed2f5d7ab6@gmail.com","name":"acmerfight"},"message":"edit readme","distinct":true,"url":"https://api.github.com/repos/acmerfight/alizee/commits/67362e235e1100e75166a051fdb4fbc0062952f4"},{"sha":"ae2c4fb2c4bbf0f09933b847b230d169472457f0","author":{"email":"de5a753110b5ee9287e7d1e3a89f76ed2f5d7ab6@gmail.com","name":"acmerfight"},"message":"base parse info","distinct":true,"url":"https://api.github.com/repos/acmerfight/alizee/commits/ae2c4fb2c4bbf0f09933b847b230d169472457f0"}]},"public":true,"created_at":"2015-01-01T15:05:45Z"} +,{"id":"2489653714","type":"PushEvent","actor":{"id":8809806,"login":"eliasjhojala","gravatar_id":"","url":"https://api.github.com/users/eliasjhojala","avatar_url":"https://avatars.githubusercontent.com/u/8809806?"},"repo":{"id":24153967,"name":"eliasjhojala/DMX-lighting-controller","url":"https://api.github.com/repos/eliasjhojala/DMX-lighting-controller"},"payload":{"push_id":536865214,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f9fdc61a84c5d3b17482f83c33d4922730d3f7c4","before":"820f29fdaac7a90a466c382f578fdc643af1f86b","commits":[{"sha":"f9fdc61a84c5d3b17482f83c33d4922730d3f7c4","author":{"email":"af1c502bde4fec8cd34f27a7284b5711f6f986ce@gmail.com","name":"eliasjhojala"},"message":"update","distinct":true,"url":"https://api.github.com/repos/eliasjhojala/DMX-lighting-controller/commits/f9fdc61a84c5d3b17482f83c33d4922730d3f7c4"}]},"public":true,"created_at":"2015-01-01T15:05:45Z"} +,{"id":"2489653715","type":"PushEvent","actor":{"id":4943982,"login":"puneetratan","gravatar_id":"","url":"https://api.github.com/users/puneetratan","avatar_url":"https://avatars.githubusercontent.com/u/4943982?"},"repo":{"id":13473645,"name":"puneetratan/my_angular_project","url":"https://api.github.com/repos/puneetratan/my_angular_project"},"payload":{"push_id":536865215,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3d0a577339a6bb40121a9004bdb857bc91b85a06","before":"48732fe25c24c5837176df7e8eb2841eb8f8453e","commits":[{"sha":"3d0a577339a6bb40121a9004bdb857bc91b85a06","author":{"email":"834bf4cca76818eca1abd04844b89c34d03cc987@gmail.com","name":"Puneet"},"message":"update info record","distinct":true,"url":"https://api.github.com/repos/puneetratan/my_angular_project/commits/3d0a577339a6bb40121a9004bdb857bc91b85a06"}]},"public":true,"created_at":"2015-01-01T15:05:45Z"} +,{"id":"2489653716","type":"IssueCommentEvent","actor":{"id":6196107,"login":"xinhugo","gravatar_id":"","url":"https://api.github.com/users/xinhugo","avatar_url":"https://avatars.githubusercontent.com/u/6196107?"},"repo":{"id":4598984,"name":"FelisCatus/SwitchyOmega","url":"https://api.github.com/repos/FelisCatus/SwitchyOmega"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/FelisCatus/SwitchyOmega/issues/99","labels_url":"https://api.github.com/repos/FelisCatus/SwitchyOmega/issues/99/labels{/name}","comments_url":"https://api.github.com/repos/FelisCatus/SwitchyOmega/issues/99/comments","events_url":"https://api.github.com/repos/FelisCatus/SwitchyOmega/issues/99/events","html_url":"https://github.com/FelisCatus/SwitchyOmega/issues/99","id":52726692,"number":99,"title":"没有「导出规则列表」功能","user":{"login":"xinhugo","id":6196107,"avatar_url":"https://avatars.githubusercontent.com/u/6196107?v=3","gravatar_id":"","url":"https://api.github.com/users/xinhugo","html_url":"https://github.com/xinhugo","followers_url":"https://api.github.com/users/xinhugo/followers","following_url":"https://api.github.com/users/xinhugo/following{/other_user}","gists_url":"https://api.github.com/users/xinhugo/gists{/gist_id}","starred_url":"https://api.github.com/users/xinhugo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xinhugo/subscriptions","organizations_url":"https://api.github.com/users/xinhugo/orgs","repos_url":"https://api.github.com/users/xinhugo/repos","events_url":"https://api.github.com/users/xinhugo/events{/privacy}","received_events_url":"https://api.github.com/users/xinhugo/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":12,"created_at":"2014-12-23T09:41:55Z","updated_at":"2015-01-01T15:05:45Z","closed_at":"2015-01-01T13:57:59Z","body":"相比SwitchySharp,没有「导出规则列表」,即「SwitchyRules.ssrl」文件。\r\n\r\n是功能正在开发,还是去掉此功能了?"},"comment":{"url":"https://api.github.com/repos/FelisCatus/SwitchyOmega/issues/comments/68488591","html_url":"https://github.com/FelisCatus/SwitchyOmega/issues/99#issuecomment-68488591","issue_url":"https://api.github.com/repos/FelisCatus/SwitchyOmega/issues/99","id":68488591,"user":{"login":"xinhugo","id":6196107,"avatar_url":"https://avatars.githubusercontent.com/u/6196107?v=3","gravatar_id":"","url":"https://api.github.com/users/xinhugo","html_url":"https://github.com/xinhugo","followers_url":"https://api.github.com/users/xinhugo/followers","following_url":"https://api.github.com/users/xinhugo/following{/other_user}","gists_url":"https://api.github.com/users/xinhugo/gists{/gist_id}","starred_url":"https://api.github.com/users/xinhugo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xinhugo/subscriptions","organizations_url":"https://api.github.com/users/xinhugo/orgs","repos_url":"https://api.github.com/users/xinhugo/repos","events_url":"https://api.github.com/users/xinhugo/events{/privacy}","received_events_url":"https://api.github.com/users/xinhugo/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:05:45Z","updated_at":"2015-01-01T15:05:45Z","body":"@FelisCatus 看起来是个解决办法,我试一下。\r\n\r\n另外反馈一个问题,新建情景模式、改情景模式的名字,操作起来,感到卡。"}},"public":true,"created_at":"2015-01-01T15:05:45Z"} +,{"id":"2489653721","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.1","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:45Z"} +,{"id":"2489653723","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327496,"name":"cloudify-cosmo/cloudify-packager","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-packager"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:45Z","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":"2489653726","type":"PushEvent","actor":{"id":453848,"login":"chrisharrington","gravatar_id":"","url":"https://api.github.com/users/chrisharrington","avatar_url":"https://avatars.githubusercontent.com/u/453848?"},"repo":{"id":28461780,"name":"chrisharrington/dapper-developer-theme","url":"https://api.github.com/repos/chrisharrington/dapper-developer-theme"},"payload":{"push_id":536865220,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"11fdd038eaffc0f755a6b74f75fd9d8fb98ec59f","before":"584821b69a82d9c866a9036a69feaa723bc6d3e7","commits":[{"sha":"11fdd038eaffc0f755a6b74f75fd9d8fb98ec59f","author":{"email":"2e3cd565e41038168c0c8762f21821474f12bee6@gmail.com","name":"Chris Harrington"},"message":"Switched GitHub widget url to new dapper-service project on EC2.","distinct":true,"url":"https://api.github.com/repos/chrisharrington/dapper-developer-theme/commits/11fdd038eaffc0f755a6b74f75fd9d8fb98ec59f"}]},"public":true,"created_at":"2015-01-01T15:05:46Z"} +,{"id":"2489653730","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":26173989,"name":"soltex/imgserver","url":"https://api.github.com/repos/soltex/imgserver"},"payload":{"forkee":{"id":28688702,"name":"imgserver","full_name":"weiguo21/imgserver","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/imgserver","description":"图片处理,使用gm,nginx,weedfs,tomcat容器处理图片自动缩放","fork":true,"url":"https://api.github.com/repos/weiguo21/imgserver","forks_url":"https://api.github.com/repos/weiguo21/imgserver/forks","keys_url":"https://api.github.com/repos/weiguo21/imgserver/keys{/key_id}","collaborators_url":"https://api.github.com/repos/weiguo21/imgserver/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/weiguo21/imgserver/teams","hooks_url":"https://api.github.com/repos/weiguo21/imgserver/hooks","issue_events_url":"https://api.github.com/repos/weiguo21/imgserver/issues/events{/number}","events_url":"https://api.github.com/repos/weiguo21/imgserver/events","assignees_url":"https://api.github.com/repos/weiguo21/imgserver/assignees{/user}","branches_url":"https://api.github.com/repos/weiguo21/imgserver/branches{/branch}","tags_url":"https://api.github.com/repos/weiguo21/imgserver/tags","blobs_url":"https://api.github.com/repos/weiguo21/imgserver/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/weiguo21/imgserver/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/weiguo21/imgserver/git/refs{/sha}","trees_url":"https://api.github.com/repos/weiguo21/imgserver/git/trees{/sha}","statuses_url":"https://api.github.com/repos/weiguo21/imgserver/statuses/{sha}","languages_url":"https://api.github.com/repos/weiguo21/imgserver/languages","stargazers_url":"https://api.github.com/repos/weiguo21/imgserver/stargazers","contributors_url":"https://api.github.com/repos/weiguo21/imgserver/contributors","subscribers_url":"https://api.github.com/repos/weiguo21/imgserver/subscribers","subscription_url":"https://api.github.com/repos/weiguo21/imgserver/subscription","commits_url":"https://api.github.com/repos/weiguo21/imgserver/commits{/sha}","git_commits_url":"https://api.github.com/repos/weiguo21/imgserver/git/commits{/sha}","comments_url":"https://api.github.com/repos/weiguo21/imgserver/comments{/number}","issue_comment_url":"https://api.github.com/repos/weiguo21/imgserver/issues/comments/{number}","contents_url":"https://api.github.com/repos/weiguo21/imgserver/contents/{+path}","compare_url":"https://api.github.com/repos/weiguo21/imgserver/compare/{base}...{head}","merges_url":"https://api.github.com/repos/weiguo21/imgserver/merges","archive_url":"https://api.github.com/repos/weiguo21/imgserver/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/weiguo21/imgserver/downloads","issues_url":"https://api.github.com/repos/weiguo21/imgserver/issues{/number}","pulls_url":"https://api.github.com/repos/weiguo21/imgserver/pulls{/number}","milestones_url":"https://api.github.com/repos/weiguo21/imgserver/milestones{/number}","notifications_url":"https://api.github.com/repos/weiguo21/imgserver/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/weiguo21/imgserver/labels{/name}","releases_url":"https://api.github.com/repos/weiguo21/imgserver/releases{/id}","created_at":"2015-01-01T15:05:46Z","updated_at":"2014-11-04T16:38:25Z","pushed_at":"2014-11-11T14:34:45Z","git_url":"git://github.com/weiguo21/imgserver.git","ssh_url":"git@github.com:weiguo21/imgserver.git","clone_url":"https://github.com/weiguo21/imgserver.git","svn_url":"https://github.com/weiguo21/imgserver","homepage":null,"size":148,"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:05:48Z"} +,{"id":"2489653732","type":"PushEvent","actor":{"id":5450996,"login":"gaoyifan","gravatar_id":"","url":"https://api.github.com/users/gaoyifan","avatar_url":"https://avatars.githubusercontent.com/u/5450996?"},"repo":{"id":28510535,"name":"Dronevery/drone_boot","url":"https://api.github.com/repos/Dronevery/drone_boot"},"payload":{"push_id":536865222,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6e284402aaf3d377f9d6b50b5f59f46d01166c80","before":"509ef88059287c09b433432c8ef2b92595b455f0","commits":[{"sha":"6e284402aaf3d377f9d6b50b5f59f46d01166c80","author":{"email":"46f1a0bd5592a2f9244ca321b129902a06b53e03@gaoyifan.com","name":"Yifan Gao"},"message":"fix 4G adapter to ME3760","distinct":true,"url":"https://api.github.com/repos/Dronevery/drone_boot/commits/6e284402aaf3d377f9d6b50b5f59f46d01166c80"}]},"public":true,"created_at":"2015-01-01T15:05:48Z","org":{"id":9743787,"login":"Dronevery","gravatar_id":"","url":"https://api.github.com/orgs/Dronevery","avatar_url":"https://avatars.githubusercontent.com/u/9743787?"}} +,{"id":"2489653735","type":"IssuesEvent","actor":{"id":1565977,"login":"tolengo","gravatar_id":"","url":"https://api.github.com/users/tolengo","avatar_url":"https://avatars.githubusercontent.com/u/1565977?"},"repo":{"id":15916696,"name":"nahual/semillero","url":"https://api.github.com/repos/nahual/semillero"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/nahual/semillero/issues/11","labels_url":"https://api.github.com/repos/nahual/semillero/issues/11/labels{/name}","comments_url":"https://api.github.com/repos/nahual/semillero/issues/11/comments","events_url":"https://api.github.com/repos/nahual/semillero/issues/11/events","html_url":"https://github.com/nahual/semillero/issues/11","id":48450336,"number":11,"title":"Ordenar observaciones de la empresa de más reciente a menos reciente","user":{"login":"silvogl","id":9513640,"avatar_url":"https://avatars.githubusercontent.com/u/9513640?v=3","gravatar_id":"","url":"https://api.github.com/users/silvogl","html_url":"https://github.com/silvogl","followers_url":"https://api.github.com/users/silvogl/followers","following_url":"https://api.github.com/users/silvogl/following{/other_user}","gists_url":"https://api.github.com/users/silvogl/gists{/gist_id}","starred_url":"https://api.github.com/users/silvogl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/silvogl/subscriptions","organizations_url":"https://api.github.com/users/silvogl/orgs","repos_url":"https://api.github.com/users/silvogl/repos","events_url":"https://api.github.com/users/silvogl/events{/privacy}","received_events_url":"https://api.github.com/users/silvogl/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/nahual/semillero/labels/bug","name":"bug","color":"fc2929"}],"state":"closed","locked":false,"assignee":{"login":"tolengo","id":1565977,"avatar_url":"https://avatars.githubusercontent.com/u/1565977?v=3","gravatar_id":"","url":"https://api.github.com/users/tolengo","html_url":"https://github.com/tolengo","followers_url":"https://api.github.com/users/tolengo/followers","following_url":"https://api.github.com/users/tolengo/following{/other_user}","gists_url":"https://api.github.com/users/tolengo/gists{/gist_id}","starred_url":"https://api.github.com/users/tolengo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tolengo/subscriptions","organizations_url":"https://api.github.com/users/tolengo/orgs","repos_url":"https://api.github.com/users/tolengo/repos","events_url":"https://api.github.com/users/tolengo/events{/privacy}","received_events_url":"https://api.github.com/users/tolengo/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/nahual/semillero/milestones/1","labels_url":"https://api.github.com/repos/nahual/semillero/milestones/1/labels","id":919096,"number":1,"title":"1.0","description":"Salida a producción de Semillero","creator":{"login":"tolengo","id":1565977,"avatar_url":"https://avatars.githubusercontent.com/u/1565977?v=3","gravatar_id":"","url":"https://api.github.com/users/tolengo","html_url":"https://github.com/tolengo","followers_url":"https://api.github.com/users/tolengo/followers","following_url":"https://api.github.com/users/tolengo/following{/other_user}","gists_url":"https://api.github.com/users/tolengo/gists{/gist_id}","starred_url":"https://api.github.com/users/tolengo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tolengo/subscriptions","organizations_url":"https://api.github.com/users/tolengo/orgs","repos_url":"https://api.github.com/users/tolengo/repos","events_url":"https://api.github.com/users/tolengo/events{/privacy}","received_events_url":"https://api.github.com/users/tolengo/received_events","type":"User","site_admin":false},"open_issues":4,"closed_issues":4,"state":"open","created_at":"2015-01-01T13:59:36Z","updated_at":"2015-01-01T15:05:46Z","due_on":null,"closed_at":null},"comments":0,"created_at":"2014-11-11T23:33:47Z","updated_at":"2015-01-01T15:05:46Z","closed_at":"2015-01-01T15:05:46Z","body":"Al consultar las observaciones, debería ordenarse de mas nueva a mas antigua (es decir, arriba la ultima)"}},"public":true,"created_at":"2015-01-01T15:05:48Z","org":{"id":1733886,"login":"nahual","gravatar_id":"","url":"https://api.github.com/orgs/nahual","avatar_url":"https://avatars.githubusercontent.com/u/1733886?"}} +,{"id":"2489653736","type":"WatchEvent","actor":{"id":2509640,"login":"copuzzle","gravatar_id":"","url":"https://api.github.com/users/copuzzle","avatar_url":"https://avatars.githubusercontent.com/u/2509640?"},"repo":{"id":18465188,"name":"copuzzle/torn_wap_alipay","url":"https://api.github.com/repos/copuzzle/torn_wap_alipay"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:48Z"} +,{"id":"2489653738","type":"PushEvent","actor":{"id":1565977,"login":"tolengo","gravatar_id":"","url":"https://api.github.com/users/tolengo","avatar_url":"https://avatars.githubusercontent.com/u/1565977?"},"repo":{"id":15916696,"name":"nahual/semillero","url":"https://api.github.com/repos/nahual/semillero"},"payload":{"push_id":536865223,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"452652d6edf1df8a9fd9670ec4df5bf6684ddcbb","before":"4c9c8e2ef0b8e0cc7068328ce6db7f020cce22e3","commits":[{"sha":"452652d6edf1df8a9fd9670ec4df5bf6684ddcbb","author":{"email":"b49a5780a99ea81284fc0746a78f84a30e4d5c73@lagostena.com.ar","name":"juan.lagostena"},"message":"Observaciones en la empresa: orden de más reciente a menos. Fixes #11","distinct":true,"url":"https://api.github.com/repos/nahual/semillero/commits/452652d6edf1df8a9fd9670ec4df5bf6684ddcbb"}]},"public":true,"created_at":"2015-01-01T15:05:48Z","org":{"id":1733886,"login":"nahual","gravatar_id":"","url":"https://api.github.com/orgs/nahual","avatar_url":"https://avatars.githubusercontent.com/u/1733886?"}} +,{"id":"2489653741","type":"PushEvent","actor":{"id":188068,"login":"alama","gravatar_id":"","url":"https://api.github.com/users/alama","avatar_url":"https://avatars.githubusercontent.com/u/188068?"},"repo":{"id":22131621,"name":"alama/PSO2Proxy","url":"https://api.github.com/repos/alama/PSO2Proxy"},"payload":{"push_id":536865225,"size":16,"distinct_size":1,"ref":"refs/heads/testing_log","head":"e2f52836b393ff14a5a3a61c0599e5313b0c2caa","before":"69511817a2105f31c9665dcc6b45ca0e0fd4062e","commits":[{"sha":"06d575cbc3f93f801eee3b01a34f6f9eb5ea47df","author":{"email":"ddfd60baa0a2e8344a754280059462322796b4da@gmail.com","name":"Alam Arias"},"message":"log is needed here, oops","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/06d575cbc3f93f801eee3b01a34f6f9eb5ea47df"},{"sha":"2f217f18bbac3845fe8ce81f664313ed6f382007","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"Update GlobalChat.py\n\nhttps://github.com/cyberkitsune/PSO2Proxy/issues/126","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/2f217f18bbac3845fe8ce81f664313ed6f382007"},{"sha":"294403ac3ff29cdcb43efc08d3af2827ba054afa","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"oops added too many extra lines","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/294403ac3ff29cdcb43efc08d3af2827ba054afa"},{"sha":"5fd9ab14fcd9ea9b245753f1a2af99f77f5b52d2","author":{"email":"8cc50ce46513b6ddee59a7e3b0e5fa247ab8c11d@users.noreply.github.com","name":"acffordyce973"},"message":"Merge pull request #128 from alama/master\n\nlog is needed here, oops","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/5fd9ab14fcd9ea9b245753f1a2af99f77f5b52d2"},{"sha":"abc2c33d6793e5be1cf1a0e4efa5ae24d6b5f999","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"more graceful way to slice\n\n[0] doesn't slice to well unlike [:1]","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/abc2c33d6793e5be1cf1a0e4efa5ae24d6b5f999"},{"sha":"03309632c32ae148a519c3dc82a28cc4ba0c8fed","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"fix based on rfc standards for irc","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/03309632c32ae148a519c3dc82a28cc4ba0c8fed"},{"sha":"69a4572c581fbaa193561d08d8e7aa3c1de7acb4","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"moved exception to when it actually tries to join \n\ndue to multiple prefixes its simply better for it to not join at all if it doesn't have one of the 4 prefixes specified by rfc 2811","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/69a4572c581fbaa193561d08d8e7aa3c1de7acb4"},{"sha":"890cb21bf7b36447fb85f1144bc44c44603e9deb","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"fixed some indentation","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/890cb21bf7b36447fb85f1144bc44c44603e9deb"},{"sha":"c434167e706a211f233aa7cd6b85e8ce43b84943","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"indentation","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/c434167e706a211f233aa7cd6b85e8ce43b84943"},{"sha":"d446161f3c00841c369c29857e1fe1e176a40012","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"indentation last try","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/d446161f3c00841c369c29857e1fe1e176a40012"},{"sha":"1913cd9de6adb3ddcb52c7fe0a68cfea17020bb7","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"this is not javascript LOL\n\nstupid me used `.index()` instead of `in`","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/1913cd9de6adb3ddcb52c7fe0a68cfea17020bb7"},{"sha":"1d8811add1ba30c80133b0961095e7b07fba93da","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"english grammar issue","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/1d8811add1ba30c80133b0961095e7b07fba93da"},{"sha":"ad81be93b3618c69a8bff241b345be313530b8b8","author":{"email":"49b8d532592346d99aaea34660d99198118fa6db@users.noreply.github.com","name":"AIDA"},"message":"Debian Wheezy has no sudo","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/ad81be93b3618c69a8bff241b345be313530b8b8"},{"sha":"35dd3d56c422ef82b0e7b3be4df338d03a6b2a65","author":{"email":"49b8d532592346d99aaea34660d99198118fa6db@users.noreply.github.com","name":"AIDA"},"message":"Moved all \"commandlines\" idents to the left","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/35dd3d56c422ef82b0e7b3be4df338d03a6b2a65"},{"sha":"0e6c5d4a2b3f61fc20f577a9cfee8aaffc89ec3d","author":{"email":"8e9e6775366d92d16fa005715567f43359273521@gmail.com","name":"Sean McClenaghan"},"message":"Merge pull request #129 from kamijoutouma/patch-1\n\nUpdate GlobalChat.py","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/0e6c5d4a2b3f61fc20f577a9cfee8aaffc89ec3d"},{"sha":"e2f52836b393ff14a5a3a61c0599e5313b0c2caa","author":{"email":"ddfd60baa0a2e8344a754280059462322796b4da@gmail.com","name":"Alam Arias"},"message":"Merge branch 'master' into testing_log","distinct":true,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/e2f52836b393ff14a5a3a61c0599e5313b0c2caa"}]},"public":true,"created_at":"2015-01-01T15:05:49Z"} +,{"id":"2489653742","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":22619256,"name":"hex7c0/mod_autoindex","url":"https://api.github.com/repos/hex7c0/mod_autoindex"},"payload":{"push_id":536865226,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"2c4b408af4e36e34f7429cc939348337c7e066ee","before":"a65bc752c3984fcfe77285cdcb3ee7cee9a5018b","commits":[{"sha":"bdce5b52201a0302b44d767b34a17a14046f74e0","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"travis docker","distinct":true,"url":"https://api.github.com/repos/hex7c0/mod_autoindex/commits/bdce5b52201a0302b44d767b34a17a14046f74e0"},{"sha":"2c4b408af4e36e34f7429cc939348337c7e066ee","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"update devDependencies","distinct":true,"url":"https://api.github.com/repos/hex7c0/mod_autoindex/commits/2c4b408af4e36e34f7429cc939348337c7e066ee"}]},"public":true,"created_at":"2015-01-01T15:05:49Z"} +,{"id":"2489653744","type":"PushEvent","actor":{"id":1447152,"login":"yoheiMune","gravatar_id":"","url":"https://api.github.com/users/yoheiMune","avatar_url":"https://avatars.githubusercontent.com/u/1447152?"},"repo":{"id":28688676,"name":"yoheiMune/analytics-playground","url":"https://api.github.com/repos/yoheiMune/analytics-playground"},"payload":{"push_id":536865227,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"4428585cd170ad3167d67f1f30f84a3d760d68b7","before":"6f6b39949c8c9659b7a1addb968ff13fc271d19a","commits":[{"sha":"a7d033cf9d12e2990d59541030d79a6a0ad3c090","author":{"email":"694c699c112094c2eee0e9bd882e773f0f452a80@gmail.com","name":"Yohei Munesada"},"message":"first commit","distinct":true,"url":"https://api.github.com/repos/yoheiMune/analytics-playground/commits/a7d033cf9d12e2990d59541030d79a6a0ad3c090"},{"sha":"4428585cd170ad3167d67f1f30f84a3d760d68b7","author":{"email":"694c699c112094c2eee0e9bd882e773f0f452a80@gmail.com","name":"Yohei Munesada"},"message":"Merge branch 'master' of https://github.com/yoheiMune/analytics-playground","distinct":true,"url":"https://api.github.com/repos/yoheiMune/analytics-playground/commits/4428585cd170ad3167d67f1f30f84a3d760d68b7"}]},"public":true,"created_at":"2015-01-01T15:05:49Z"} +,{"id":"2489653745","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327496,"name":"cloudify-cosmo/cloudify-packager","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-packager"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify Package Generator","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:49Z","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":"2489653747","type":"PushEvent","actor":{"id":10258656,"login":"lizqd841013","gravatar_id":"","url":"https://api.github.com/users/lizqd841013","avatar_url":"https://avatars.githubusercontent.com/u/10258656?"},"repo":{"id":28270377,"name":"lulugyf/opendoc","url":"https://api.github.com/repos/lulugyf/opendoc"},"payload":{"push_id":536865228,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ccd110fcc344df245a1f785c56fb03400e787316","before":"6c9fc6d6bb7d4f96707734025d0dc10e1ff359cd","commits":[{"sha":"ccd110fcc344df245a1f785c56fb03400e787316","author":{"email":"6ecca024ce97ffa907a11b2f03c1e155b72762db@163.com","name":"lizqd"},"message":"sqlmap","distinct":true,"url":"https://api.github.com/repos/lulugyf/opendoc/commits/ccd110fcc344df245a1f785c56fb03400e787316"}]},"public":true,"created_at":"2015-01-01T15:05:49Z"} +,{"id":"2489653749","type":"CreateEvent","actor":{"id":9415208,"login":"PanZeYong","gravatar_id":"","url":"https://api.github.com/users/PanZeYong","avatar_url":"https://avatars.githubusercontent.com/u/9415208?"},"repo":{"id":28688703,"name":"PanZeYong/testgit","url":"https://api.github.com/repos/PanZeYong/testgit"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:49Z"} +,{"id":"2489653750","type":"CreateEvent","actor":{"id":50245,"login":"bkuhlmann","gravatar_id":"","url":"https://api.github.com/users/bkuhlmann","avatar_url":"https://avatars.githubusercontent.com/u/50245?"},"repo":{"id":4458582,"name":"bkuhlmann/prawn_plus","url":"https://api.github.com/repos/bkuhlmann/prawn_plus"},"payload":{"ref":"v6.0.0","ref_type":"tag","master_branch":"master","description":"Enhances default Prawn PDF functionality.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:49Z"} +,{"id":"2489653756","type":"WatchEvent","actor":{"id":8717187,"login":"WuZhuoran","gravatar_id":"","url":"https://api.github.com/users/WuZhuoran","avatar_url":"https://avatars.githubusercontent.com/u/8717187?"},"repo":{"id":26208860,"name":"WuZhuoran/MUN_EasyChair","url":"https://api.github.com/repos/WuZhuoran/MUN_EasyChair"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:50Z"} +,{"id":"2489653759","type":"CreateEvent","actor":{"id":5112284,"login":"imrenagi","gravatar_id":"","url":"https://api.github.com/users/imrenagi","avatar_url":"https://avatars.githubusercontent.com/u/5112284?"},"repo":{"id":28688007,"name":"imrenagi/MCL_Java","url":"https://api.github.com/repos/imrenagi/MCL_Java"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Simulation of Monte Carlo Localization for Humanoid Robot Soccer League, used in Robocup","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:51Z"} +,{"id":"2489653760","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":24800517,"name":"cloudify-cosmo/cloudify-agent-packager","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-agent-packager"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:51Z","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":"2489653762","type":"PushEvent","actor":{"id":7557579,"login":"timepiss","gravatar_id":"","url":"https://api.github.com/users/timepiss","avatar_url":"https://avatars.githubusercontent.com/u/7557579?"},"repo":{"id":20050543,"name":"ShaastraWebops/frontend","url":"https://api.github.com/repos/ShaastraWebops/frontend"},"payload":{"push_id":536865235,"size":1,"distinct_size":1,"ref":"refs/heads/production","head":"5db52833a801ecac9b77bca279ae9b003770cc36","before":"083eda146f141ee4ec854b22f4ef85d579122746","commits":[{"sha":"5db52833a801ecac9b77bca279ae9b003770cc36","author":{"email":"72d7be0d0b94d84d24ad343f69c9b71630602aba@gmail.com","name":"timepiss"},"message":"logoz update","distinct":true,"url":"https://api.github.com/repos/ShaastraWebops/frontend/commits/5db52833a801ecac9b77bca279ae9b003770cc36"}]},"public":true,"created_at":"2015-01-01T15:05:51Z","org":{"id":1709267,"login":"ShaastraWebops","gravatar_id":"","url":"https://api.github.com/orgs/ShaastraWebops","avatar_url":"https://avatars.githubusercontent.com/u/1709267?"}} +,{"id":"2489653764","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/253","labels_url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/253/labels{/name}","comments_url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/253/comments","events_url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/253/events","html_url":"https://github.com/rovo89/XposedInstaller/pull/253","id":53198521,"number":253,"title":"Removed Superuser permission (preparation for Lollipop)","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":6,"created_at":"2014-12-31T19:07:25Z","updated_at":"2015-01-01T15:05:51Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/rovo89/XposedInstaller/pulls/253","html_url":"https://github.com/rovo89/XposedInstaller/pull/253","diff_url":"https://github.com/rovo89/XposedInstaller/pull/253.diff","patch_url":"https://github.com/rovo89/XposedInstaller/pull/253.patch"},"body":"Not need on 5.0."},"comment":{"url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/comments/68488593","html_url":"https://github.com/rovo89/XposedInstaller/pull/253#issuecomment-68488593","issue_url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/253","id":68488593,"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:05:51Z","updated_at":"2015-01-01T15:05:51Z","body":"> Anyway, if app runs SU command, user is asked to allow/deny it -> permission is useless.\r\n\r\nI think the original plan was to enforce this permission, i.e. apps without it would always be denied. Some Superuser apps had a setting to enable this, most showed at least a warning. Anyway, it seems your suggestion is fine for Lollipop, we just need those for lower releases."}},"public":true,"created_at":"2015-01-01T15:05:52Z"} +,{"id":"2489653765","type":"PullRequestEvent","actor":{"id":99252,"login":"chiro","gravatar_id":"","url":"https://api.github.com/users/chiro","avatar_url":"https://avatars.githubusercontent.com/u/99252?"},"repo":{"id":16001800,"name":"asi1024/WXCS","url":"https://api.github.com/repos/asi1024/WXCS"},"payload":{"action":"opened","number":36,"pull_request":{"url":"https://api.github.com/repos/asi1024/WXCS/pulls/36","id":26743813,"html_url":"https://github.com/asi1024/WXCS/pull/36","diff_url":"https://github.com/asi1024/WXCS/pull/36.diff","patch_url":"https://github.com/asi1024/WXCS/pull/36.patch","issue_url":"https://api.github.com/repos/asi1024/WXCS/issues/36","number":36,"state":"open","locked":false,"title":"Update dependencies.","user":{"login":"chiro","id":99252,"avatar_url":"https://avatars.githubusercontent.com/u/99252?v=3","gravatar_id":"","url":"https://api.github.com/users/chiro","html_url":"https://github.com/chiro","followers_url":"https://api.github.com/users/chiro/followers","following_url":"https://api.github.com/users/chiro/following{/other_user}","gists_url":"https://api.github.com/users/chiro/gists{/gist_id}","starred_url":"https://api.github.com/users/chiro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chiro/subscriptions","organizations_url":"https://api.github.com/users/chiro/orgs","repos_url":"https://api.github.com/users/chiro/repos","events_url":"https://api.github.com/users/chiro/events{/privacy}","received_events_url":"https://api.github.com/users/chiro/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:05:51Z","updated_at":"2015-01-01T15:05:51Z","closed_at":null,"merged_at":null,"merge_commit_sha":"3bc3e333e13544d7f23fd33c42017cf0b7c62e9a","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/asi1024/WXCS/pulls/36/commits","review_comments_url":"https://api.github.com/repos/asi1024/WXCS/pulls/36/comments","review_comment_url":"https://api.github.com/repos/asi1024/WXCS/pulls/comments/{number}","comments_url":"https://api.github.com/repos/asi1024/WXCS/issues/36/comments","statuses_url":"https://api.github.com/repos/asi1024/WXCS/statuses/5c0361757503fa2252da68abc722d28c6d85da52","head":{"label":"chiro:update-deps","ref":"update-deps","sha":"5c0361757503fa2252da68abc722d28c6d85da52","user":{"login":"chiro","id":99252,"avatar_url":"https://avatars.githubusercontent.com/u/99252?v=3","gravatar_id":"","url":"https://api.github.com/users/chiro","html_url":"https://github.com/chiro","followers_url":"https://api.github.com/users/chiro/followers","following_url":"https://api.github.com/users/chiro/following{/other_user}","gists_url":"https://api.github.com/users/chiro/gists{/gist_id}","starred_url":"https://api.github.com/users/chiro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chiro/subscriptions","organizations_url":"https://api.github.com/users/chiro/orgs","repos_url":"https://api.github.com/users/chiro/repos","events_url":"https://api.github.com/users/chiro/events{/privacy}","received_events_url":"https://api.github.com/users/chiro/received_events","type":"User","site_admin":false},"repo":{"id":16001919,"name":"WXCS","full_name":"chiro/WXCS","owner":{"login":"chiro","id":99252,"avatar_url":"https://avatars.githubusercontent.com/u/99252?v=3","gravatar_id":"","url":"https://api.github.com/users/chiro","html_url":"https://github.com/chiro","followers_url":"https://api.github.com/users/chiro/followers","following_url":"https://api.github.com/users/chiro/following{/other_user}","gists_url":"https://api.github.com/users/chiro/gists{/gist_id}","starred_url":"https://api.github.com/users/chiro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chiro/subscriptions","organizations_url":"https://api.github.com/users/chiro/orgs","repos_url":"https://api.github.com/users/chiro/repos","events_url":"https://api.github.com/users/chiro/events{/privacy}","received_events_url":"https://api.github.com/users/chiro/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/chiro/WXCS","description":"Wonderful eXciting Contest System (honmaka)","fork":true,"url":"https://api.github.com/repos/chiro/WXCS","forks_url":"https://api.github.com/repos/chiro/WXCS/forks","keys_url":"https://api.github.com/repos/chiro/WXCS/keys{/key_id}","collaborators_url":"https://api.github.com/repos/chiro/WXCS/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/chiro/WXCS/teams","hooks_url":"https://api.github.com/repos/chiro/WXCS/hooks","issue_events_url":"https://api.github.com/repos/chiro/WXCS/issues/events{/number}","events_url":"https://api.github.com/repos/chiro/WXCS/events","assignees_url":"https://api.github.com/repos/chiro/WXCS/assignees{/user}","branches_url":"https://api.github.com/repos/chiro/WXCS/branches{/branch}","tags_url":"https://api.github.com/repos/chiro/WXCS/tags","blobs_url":"https://api.github.com/repos/chiro/WXCS/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/chiro/WXCS/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/chiro/WXCS/git/refs{/sha}","trees_url":"https://api.github.com/repos/chiro/WXCS/git/trees{/sha}","statuses_url":"https://api.github.com/repos/chiro/WXCS/statuses/{sha}","languages_url":"https://api.github.com/repos/chiro/WXCS/languages","stargazers_url":"https://api.github.com/repos/chiro/WXCS/stargazers","contributors_url":"https://api.github.com/repos/chiro/WXCS/contributors","subscribers_url":"https://api.github.com/repos/chiro/WXCS/subscribers","subscription_url":"https://api.github.com/repos/chiro/WXCS/subscription","commits_url":"https://api.github.com/repos/chiro/WXCS/commits{/sha}","git_commits_url":"https://api.github.com/repos/chiro/WXCS/git/commits{/sha}","comments_url":"https://api.github.com/repos/chiro/WXCS/comments{/number}","issue_comment_url":"https://api.github.com/repos/chiro/WXCS/issues/comments/{number}","contents_url":"https://api.github.com/repos/chiro/WXCS/contents/{+path}","compare_url":"https://api.github.com/repos/chiro/WXCS/compare/{base}...{head}","merges_url":"https://api.github.com/repos/chiro/WXCS/merges","archive_url":"https://api.github.com/repos/chiro/WXCS/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/chiro/WXCS/downloads","issues_url":"https://api.github.com/repos/chiro/WXCS/issues{/number}","pulls_url":"https://api.github.com/repos/chiro/WXCS/pulls{/number}","milestones_url":"https://api.github.com/repos/chiro/WXCS/milestones{/number}","notifications_url":"https://api.github.com/repos/chiro/WXCS/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/chiro/WXCS/labels{/name}","releases_url":"https://api.github.com/repos/chiro/WXCS/releases{/id}","created_at":"2014-01-17T14:37:28Z","updated_at":"2015-01-01T14:48:46Z","pushed_at":"2015-01-01T15:05:18Z","git_url":"git://github.com/chiro/WXCS.git","ssh_url":"git@github.com:chiro/WXCS.git","clone_url":"https://github.com/chiro/WXCS.git","svn_url":"https://github.com/chiro/WXCS","homepage":null,"size":851,"stargazers_count":0,"watchers_count":0,"language":"Haskell","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":"asi1024:master","ref":"master","sha":"1eeef640678cf97bd18dc18a51682d7474014f52","user":{"login":"asi1024","id":5086403,"avatar_url":"https://avatars.githubusercontent.com/u/5086403?v=3","gravatar_id":"","url":"https://api.github.com/users/asi1024","html_url":"https://github.com/asi1024","followers_url":"https://api.github.com/users/asi1024/followers","following_url":"https://api.github.com/users/asi1024/following{/other_user}","gists_url":"https://api.github.com/users/asi1024/gists{/gist_id}","starred_url":"https://api.github.com/users/asi1024/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asi1024/subscriptions","organizations_url":"https://api.github.com/users/asi1024/orgs","repos_url":"https://api.github.com/users/asi1024/repos","events_url":"https://api.github.com/users/asi1024/events{/privacy}","received_events_url":"https://api.github.com/users/asi1024/received_events","type":"User","site_admin":false},"repo":{"id":16001800,"name":"WXCS","full_name":"asi1024/WXCS","owner":{"login":"asi1024","id":5086403,"avatar_url":"https://avatars.githubusercontent.com/u/5086403?v=3","gravatar_id":"","url":"https://api.github.com/users/asi1024","html_url":"https://github.com/asi1024","followers_url":"https://api.github.com/users/asi1024/followers","following_url":"https://api.github.com/users/asi1024/following{/other_user}","gists_url":"https://api.github.com/users/asi1024/gists{/gist_id}","starred_url":"https://api.github.com/users/asi1024/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asi1024/subscriptions","organizations_url":"https://api.github.com/users/asi1024/orgs","repos_url":"https://api.github.com/users/asi1024/repos","events_url":"https://api.github.com/users/asi1024/events{/privacy}","received_events_url":"https://api.github.com/users/asi1024/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asi1024/WXCS","description":"Wonderful eXciting Contest System (honmaka)","fork":false,"url":"https://api.github.com/repos/asi1024/WXCS","forks_url":"https://api.github.com/repos/asi1024/WXCS/forks","keys_url":"https://api.github.com/repos/asi1024/WXCS/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asi1024/WXCS/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asi1024/WXCS/teams","hooks_url":"https://api.github.com/repos/asi1024/WXCS/hooks","issue_events_url":"https://api.github.com/repos/asi1024/WXCS/issues/events{/number}","events_url":"https://api.github.com/repos/asi1024/WXCS/events","assignees_url":"https://api.github.com/repos/asi1024/WXCS/assignees{/user}","branches_url":"https://api.github.com/repos/asi1024/WXCS/branches{/branch}","tags_url":"https://api.github.com/repos/asi1024/WXCS/tags","blobs_url":"https://api.github.com/repos/asi1024/WXCS/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asi1024/WXCS/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asi1024/WXCS/git/refs{/sha}","trees_url":"https://api.github.com/repos/asi1024/WXCS/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asi1024/WXCS/statuses/{sha}","languages_url":"https://api.github.com/repos/asi1024/WXCS/languages","stargazers_url":"https://api.github.com/repos/asi1024/WXCS/stargazers","contributors_url":"https://api.github.com/repos/asi1024/WXCS/contributors","subscribers_url":"https://api.github.com/repos/asi1024/WXCS/subscribers","subscription_url":"https://api.github.com/repos/asi1024/WXCS/subscription","commits_url":"https://api.github.com/repos/asi1024/WXCS/commits{/sha}","git_commits_url":"https://api.github.com/repos/asi1024/WXCS/git/commits{/sha}","comments_url":"https://api.github.com/repos/asi1024/WXCS/comments{/number}","issue_comment_url":"https://api.github.com/repos/asi1024/WXCS/issues/comments/{number}","contents_url":"https://api.github.com/repos/asi1024/WXCS/contents/{+path}","compare_url":"https://api.github.com/repos/asi1024/WXCS/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asi1024/WXCS/merges","archive_url":"https://api.github.com/repos/asi1024/WXCS/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asi1024/WXCS/downloads","issues_url":"https://api.github.com/repos/asi1024/WXCS/issues{/number}","pulls_url":"https://api.github.com/repos/asi1024/WXCS/pulls{/number}","milestones_url":"https://api.github.com/repos/asi1024/WXCS/milestones{/number}","notifications_url":"https://api.github.com/repos/asi1024/WXCS/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asi1024/WXCS/labels{/name}","releases_url":"https://api.github.com/repos/asi1024/WXCS/releases{/id}","created_at":"2014-01-17T14:31:32Z","updated_at":"2015-01-01T14:46:26Z","pushed_at":"2015-01-01T14:46:25Z","git_url":"git://github.com/asi1024/WXCS.git","ssh_url":"git@github.com:asi1024/WXCS.git","clone_url":"https://github.com/asi1024/WXCS.git","svn_url":"https://github.com/asi1024/WXCS","homepage":null,"size":2389,"stargazers_count":6,"watchers_count":6,"language":"Haskell","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":6,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/asi1024/WXCS/pulls/36"},"html":{"href":"https://github.com/asi1024/WXCS/pull/36"},"issue":{"href":"https://api.github.com/repos/asi1024/WXCS/issues/36"},"comments":{"href":"https://api.github.com/repos/asi1024/WXCS/issues/36/comments"},"review_comments":{"href":"https://api.github.com/repos/asi1024/WXCS/pulls/36/comments"},"review_comment":{"href":"https://api.github.com/repos/asi1024/WXCS/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/asi1024/WXCS/pulls/36/commits"},"statuses":{"href":"https://api.github.com/repos/asi1024/WXCS/statuses/5c0361757503fa2252da68abc722d28c6d85da52"}},"merged":false,"mergeable":true,"mergeable_state":"clean","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":21,"deletions":24,"changed_files":2}},"public":true,"created_at":"2015-01-01T15:05:52Z"} +,{"id":"2489653769","type":"PushEvent","actor":{"id":183092,"login":"ahiliation","gravatar_id":"","url":"https://api.github.com/users/ahiliation","avatar_url":"https://avatars.githubusercontent.com/u/183092?"},"repo":{"id":26358910,"name":"ahiliation/beautifulwork","url":"https://api.github.com/repos/ahiliation/beautifulwork"},"payload":{"push_id":536865236,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0faf3f34d36fa3a339ed0336620f213eeca5acd2","before":"e5a1f6ecee1887ce22a2ca4d25f4adb4a9458385","commits":[{"sha":"0faf3f34d36fa3a339ed0336620f213eeca5acd2","author":{"email":"06654cc2c89ac7125a96acf514e58bb1513f4158@rocketmail.com","name":"Jeffrin Jose T"},"message":"work","distinct":true,"url":"https://api.github.com/repos/ahiliation/beautifulwork/commits/0faf3f34d36fa3a339ed0336620f213eeca5acd2"}]},"public":true,"created_at":"2015-01-01T15:05:52Z"} +,{"id":"2489653772","type":"CreateEvent","actor":{"id":9414889,"login":"whiteineyes","gravatar_id":"","url":"https://api.github.com/users/whiteineyes","avatar_url":"https://avatars.githubusercontent.com/u/9414889?"},"repo":{"id":28688704,"name":"whiteineyes/hexo","url":"https://api.github.com/repos/whiteineyes/hexo"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:54Z"} +,{"id":"2489653779","type":"CreateEvent","actor":{"id":4053416,"login":"gabrielusvicente","gravatar_id":"","url":"https://api.github.com/users/gabrielusvicente","avatar_url":"https://avatars.githubusercontent.com/u/4053416?"},"repo":{"id":28659229,"name":"gabrielusvicente/findaconf","url":"https://api.github.com/repos/gabrielusvicente/findaconf"},"payload":{"ref":"OAuth","ref_type":"branch","master_branch":"master","description":"Mock-up for Find a Conference","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:54Z"} +,{"id":"2489653781","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":24800517,"name":"cloudify-cosmo/cloudify-agent-packager","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-agent-packager"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"A tool for creation Cloudify agents","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:54Z","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":"2489653780","type":"PullRequestReviewCommentEvent","actor":{"id":576796,"login":"chrismccord","gravatar_id":"","url":"https://api.github.com/users/chrismccord","avatar_url":"https://avatars.githubusercontent.com/u/576796?"},"repo":{"id":16072585,"name":"phoenixframework/phoenix","url":"https://api.github.com/repos/phoenixframework/phoenix"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/phoenixframework/phoenix/pulls/comments/22400101","id":22400101,"diff_hunk":"@@ -16,34 +15,34 @@ defmodule Phoenix.Socket do\n \n \n @doc \"\"\"\n- Sets current channel of multiplexed socket connection\n+ Sets current topic of multiplexed socket connection\n \"\"\"\n- def set_current_channel(socket, channel, topic) do\n- %Socket{socket | channel: channel, topic: topic}\n+ def set_current_topic(socket, topic) do","path":"lib/phoenix/socket.ex","position":17,"original_position":17,"commit_id":"a3c9681cff1e99e87149fc4069f050309fdbb433","original_commit_id":"a3c9681cff1e99e87149fc4069f050309fdbb433","user":{"login":"chrismccord","id":576796,"avatar_url":"https://avatars.githubusercontent.com/u/576796?v=3","gravatar_id":"","url":"https://api.github.com/users/chrismccord","html_url":"https://github.com/chrismccord","followers_url":"https://api.github.com/users/chrismccord/followers","following_url":"https://api.github.com/users/chrismccord/following{/other_user}","gists_url":"https://api.github.com/users/chrismccord/gists{/gist_id}","starred_url":"https://api.github.com/users/chrismccord/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrismccord/subscriptions","organizations_url":"https://api.github.com/users/chrismccord/orgs","repos_url":"https://api.github.com/users/chrismccord/repos","events_url":"https://api.github.com/users/chrismccord/events{/privacy}","received_events_url":"https://api.github.com/users/chrismccord/received_events","type":"User","site_admin":false},"body":":+1: ","created_at":"2015-01-01T15:05:52Z","updated_at":"2015-01-01T15:05:52Z","html_url":"https://github.com/phoenixframework/phoenix/pull/570#discussion_r22400101","pull_request_url":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570","_links":{"self":{"href":"https://api.github.com/repos/phoenixframework/phoenix/pulls/comments/22400101"},"html":{"href":"https://github.com/phoenixframework/phoenix/pull/570#discussion_r22400101"},"pull_request":{"href":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570"}}},"pull_request":{"url":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570","id":26732191,"html_url":"https://github.com/phoenixframework/phoenix/pull/570","diff_url":"https://github.com/phoenixframework/phoenix/pull/570.diff","patch_url":"https://github.com/phoenixframework/phoenix/pull/570.patch","issue_url":"https://api.github.com/repos/phoenixframework/phoenix/issues/570","number":570,"state":"open","locked":false,"title":"Refactor Channel Layer","user":{"login":"chrismccord","id":576796,"avatar_url":"https://avatars.githubusercontent.com/u/576796?v=3","gravatar_id":"","url":"https://api.github.com/users/chrismccord","html_url":"https://github.com/chrismccord","followers_url":"https://api.github.com/users/chrismccord/followers","following_url":"https://api.github.com/users/chrismccord/following{/other_user}","gists_url":"https://api.github.com/users/chrismccord/gists{/gist_id}","starred_url":"https://api.github.com/users/chrismccord/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrismccord/subscriptions","organizations_url":"https://api.github.com/users/chrismccord/orgs","repos_url":"https://api.github.com/users/chrismccord/repos","events_url":"https://api.github.com/users/chrismccord/events{/privacy}","received_events_url":"https://api.github.com/users/chrismccord/received_events","type":"User","site_admin":false},"body":"I believe I have addressed everything discussed in #478. @josevalim please take a thorough look once you have a chance because it ended up being less rework than I thought. The Publisher (PubSub) API remained exactly the same and is implemented per your description. Notable changes:\r\n\r\n1. `socket` API in the router. Socket endpoints are now configured via the `socket` macro and house the channel definitions. Channels can also now be scoped based on transport, i.e.:\r\n\r\n```elixir\r\n defmodule MyApp.Router do\r\n use Phoenix.Router\r\n\r\n socket \"/ws\", MyApp do\r\n channel \"topic1:*\", MyChannel\r\n channel \"baretopic\", MyChannel\r\n channel \"wsonly:*\", MyChannel, via: [Phoenix.Transports.WebSocket]\r\n channel \"lponly:*\", MyChannel, via: [Phoenix.Transports.LongPoller]\r\n end\r\n ...\r\n\r\n```\r\n\r\n2. The \"topic\" abstraction is now *only a string identifier*. We used to conflate the channel name and topic names. Now `channel \"foo:*\"` refers to the topic \"foo\" and any pattern following \"foo:\". By convention, we use \"topic:subtopic\", but the splat \"*\" does not require a colon.\r\n\r\n3. Likewise, in the channel callbacks, you now match on the topic directly:\r\n\r\n```elixir\r\n# router\r\nchannel \"rooms:*\", RoomChannel\r\n\r\n# channel\r\ndef join(\"rooms:lobby\", message, socket) do ...\r\ndef join(\"rooms:\" <> room_id, message, socket) do ...\r\n```\r\n\r\n4. All channel callbacks now accept `socket` as the last argument to more closely follow a GenServer API where the state is held in the last arg and the message is matched int he first.\r\n\r\n5. Transports now use two flavors of messages, `{:socket_reply, %Message{...}}` and `{:socket_broadcast, %Message{...})` to differentiate replies from broadcasts. This was required to support `outgoing` callbacks.\r\n\r\n6. `event` has been renamed to `incoming` and now channel callbacks can filter/intercept/modify broadcasts with an `outgoing` callback for per-socket customization, i.e.:\r\n\r\n```elixir\r\ndef incoming(\"new:msg\", %{\"from_id\" => from_id, \"body\" => body}, socket) do\r\n # broadcast incoming new message to all subscribers\r\n broadcast socket, \"new:msg\", %{body: body, from_id: from_id}\r\nend\r\n\r\n# each socket's outgoing callback will be triggered for per-socket\r\n# customization of broadcast. Sockets can also not reply to filter broadcasts\r\n# from being relayed.\r\ndef outgoing(\"new:msg\", msg, socket) do\r\n user = socket.assigns[:user]\r\n\r\n reply socket, \"new:msg\", Dict.merge(msg,\r\n is_editable: can_edit?(user, msg.from_id),\r\n is_friend: is_friend?(user, msg.from_id)\r\n )\r\nend\r\n\r\n# by default just forward reply\r\ndef outgoing(event, msg, socket) do\r\n reply socket, event, msg \r\nend\r\n```\r\n\r\n### Points of discussion for the 0.8.0 release:\r\n\r\n- Should incoming/outgoing be renamed to a more GenServer'esque API? i.e. `handle_incoming`, `handle_outgoing`? I prefer the current naming, but `handle_` could be more welcoming to newcomers who would find it more familiar to GenServer style.\r\n- Should we embed the `node()` my default in the message to allow per-node filtering? I opted not to since end-users can attach their `node()` themselves in the broadcasted message if they need per-node handling. Subscribers can pick up the message the compare their node().\r\n- Others?\r\n\r\n\r\n### Points of discussion for 0.9.0+:\r\n\r\nAs discussed on IRC, we need to tackle handling missed messages with a configurable backend. Today, the LongPoller requires a cookie session, and clustered nodes. The PubSub also requires clustering. We would like to move towards a configurable store with `last_seen_id` tracking of messages, for replaying messages between client drops, as well as a solution to non-clustered pubsub servers.\r\n\r\nLet me know how it looks! Thanks","created_at":"2014-12-31T18:50:27Z","updated_at":"2015-01-01T15:05:52Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570/commits","review_comments_url":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570/comments","review_comment_url":"https://api.github.com/repos/phoenixframework/phoenix/pulls/comments/{number}","comments_url":"https://api.github.com/repos/phoenixframework/phoenix/issues/570/comments","statuses_url":"https://api.github.com/repos/phoenixframework/phoenix/statuses/a3c9681cff1e99e87149fc4069f050309fdbb433","head":{"label":"phoenixframework:cm-channels-next","ref":"cm-channels-next","sha":"a3c9681cff1e99e87149fc4069f050309fdbb433","user":{"login":"phoenixframework","id":6510388,"avatar_url":"https://avatars.githubusercontent.com/u/6510388?v=3","gravatar_id":"","url":"https://api.github.com/users/phoenixframework","html_url":"https://github.com/phoenixframework","followers_url":"https://api.github.com/users/phoenixframework/followers","following_url":"https://api.github.com/users/phoenixframework/following{/other_user}","gists_url":"https://api.github.com/users/phoenixframework/gists{/gist_id}","starred_url":"https://api.github.com/users/phoenixframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/phoenixframework/subscriptions","organizations_url":"https://api.github.com/users/phoenixframework/orgs","repos_url":"https://api.github.com/users/phoenixframework/repos","events_url":"https://api.github.com/users/phoenixframework/events{/privacy}","received_events_url":"https://api.github.com/users/phoenixframework/received_events","type":"Organization","site_admin":false},"repo":{"id":16072585,"name":"phoenix","full_name":"phoenixframework/phoenix","owner":{"login":"phoenixframework","id":6510388,"avatar_url":"https://avatars.githubusercontent.com/u/6510388?v=3","gravatar_id":"","url":"https://api.github.com/users/phoenixframework","html_url":"https://github.com/phoenixframework","followers_url":"https://api.github.com/users/phoenixframework/followers","following_url":"https://api.github.com/users/phoenixframework/following{/other_user}","gists_url":"https://api.github.com/users/phoenixframework/gists{/gist_id}","starred_url":"https://api.github.com/users/phoenixframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/phoenixframework/subscriptions","organizations_url":"https://api.github.com/users/phoenixframework/orgs","repos_url":"https://api.github.com/users/phoenixframework/repos","events_url":"https://api.github.com/users/phoenixframework/events{/privacy}","received_events_url":"https://api.github.com/users/phoenixframework/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/phoenixframework/phoenix","description":"Elixir Web Framework","fork":false,"url":"https://api.github.com/repos/phoenixframework/phoenix","forks_url":"https://api.github.com/repos/phoenixframework/phoenix/forks","keys_url":"https://api.github.com/repos/phoenixframework/phoenix/keys{/key_id}","collaborators_url":"https://api.github.com/repos/phoenixframework/phoenix/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/phoenixframework/phoenix/teams","hooks_url":"https://api.github.com/repos/phoenixframework/phoenix/hooks","issue_events_url":"https://api.github.com/repos/phoenixframework/phoenix/issues/events{/number}","events_url":"https://api.github.com/repos/phoenixframework/phoenix/events","assignees_url":"https://api.github.com/repos/phoenixframework/phoenix/assignees{/user}","branches_url":"https://api.github.com/repos/phoenixframework/phoenix/branches{/branch}","tags_url":"https://api.github.com/repos/phoenixframework/phoenix/tags","blobs_url":"https://api.github.com/repos/phoenixframework/phoenix/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/phoenixframework/phoenix/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/phoenixframework/phoenix/git/refs{/sha}","trees_url":"https://api.github.com/repos/phoenixframework/phoenix/git/trees{/sha}","statuses_url":"https://api.github.com/repos/phoenixframework/phoenix/statuses/{sha}","languages_url":"https://api.github.com/repos/phoenixframework/phoenix/languages","stargazers_url":"https://api.github.com/repos/phoenixframework/phoenix/stargazers","contributors_url":"https://api.github.com/repos/phoenixframework/phoenix/contributors","subscribers_url":"https://api.github.com/repos/phoenixframework/phoenix/subscribers","subscription_url":"https://api.github.com/repos/phoenixframework/phoenix/subscription","commits_url":"https://api.github.com/repos/phoenixframework/phoenix/commits{/sha}","git_commits_url":"https://api.github.com/repos/phoenixframework/phoenix/git/commits{/sha}","comments_url":"https://api.github.com/repos/phoenixframework/phoenix/comments{/number}","issue_comment_url":"https://api.github.com/repos/phoenixframework/phoenix/issues/comments/{number}","contents_url":"https://api.github.com/repos/phoenixframework/phoenix/contents/{+path}","compare_url":"https://api.github.com/repos/phoenixframework/phoenix/compare/{base}...{head}","merges_url":"https://api.github.com/repos/phoenixframework/phoenix/merges","archive_url":"https://api.github.com/repos/phoenixframework/phoenix/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/phoenixframework/phoenix/downloads","issues_url":"https://api.github.com/repos/phoenixframework/phoenix/issues{/number}","pulls_url":"https://api.github.com/repos/phoenixframework/phoenix/pulls{/number}","milestones_url":"https://api.github.com/repos/phoenixframework/phoenix/milestones{/number}","notifications_url":"https://api.github.com/repos/phoenixframework/phoenix/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/phoenixframework/phoenix/labels{/name}","releases_url":"https://api.github.com/repos/phoenixframework/phoenix/releases{/id}","created_at":"2014-01-20T14:14:11Z","updated_at":"2015-01-01T04:17:53Z","pushed_at":"2014-12-31T18:59:11Z","git_url":"git://github.com/phoenixframework/phoenix.git","ssh_url":"git@github.com:phoenixframework/phoenix.git","clone_url":"https://github.com/phoenixframework/phoenix.git","svn_url":"https://github.com/phoenixframework/phoenix","homepage":"","size":5577,"stargazers_count":1788,"watchers_count":1788,"language":"Elixir","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":159,"mirror_url":null,"open_issues_count":19,"forks":159,"open_issues":19,"watchers":1788,"default_branch":"master"}},"base":{"label":"phoenixframework:master","ref":"master","sha":"191909d97511ab99f9bbcc776cba9988c8b07596","user":{"login":"phoenixframework","id":6510388,"avatar_url":"https://avatars.githubusercontent.com/u/6510388?v=3","gravatar_id":"","url":"https://api.github.com/users/phoenixframework","html_url":"https://github.com/phoenixframework","followers_url":"https://api.github.com/users/phoenixframework/followers","following_url":"https://api.github.com/users/phoenixframework/following{/other_user}","gists_url":"https://api.github.com/users/phoenixframework/gists{/gist_id}","starred_url":"https://api.github.com/users/phoenixframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/phoenixframework/subscriptions","organizations_url":"https://api.github.com/users/phoenixframework/orgs","repos_url":"https://api.github.com/users/phoenixframework/repos","events_url":"https://api.github.com/users/phoenixframework/events{/privacy}","received_events_url":"https://api.github.com/users/phoenixframework/received_events","type":"Organization","site_admin":false},"repo":{"id":16072585,"name":"phoenix","full_name":"phoenixframework/phoenix","owner":{"login":"phoenixframework","id":6510388,"avatar_url":"https://avatars.githubusercontent.com/u/6510388?v=3","gravatar_id":"","url":"https://api.github.com/users/phoenixframework","html_url":"https://github.com/phoenixframework","followers_url":"https://api.github.com/users/phoenixframework/followers","following_url":"https://api.github.com/users/phoenixframework/following{/other_user}","gists_url":"https://api.github.com/users/phoenixframework/gists{/gist_id}","starred_url":"https://api.github.com/users/phoenixframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/phoenixframework/subscriptions","organizations_url":"https://api.github.com/users/phoenixframework/orgs","repos_url":"https://api.github.com/users/phoenixframework/repos","events_url":"https://api.github.com/users/phoenixframework/events{/privacy}","received_events_url":"https://api.github.com/users/phoenixframework/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/phoenixframework/phoenix","description":"Elixir Web Framework","fork":false,"url":"https://api.github.com/repos/phoenixframework/phoenix","forks_url":"https://api.github.com/repos/phoenixframework/phoenix/forks","keys_url":"https://api.github.com/repos/phoenixframework/phoenix/keys{/key_id}","collaborators_url":"https://api.github.com/repos/phoenixframework/phoenix/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/phoenixframework/phoenix/teams","hooks_url":"https://api.github.com/repos/phoenixframework/phoenix/hooks","issue_events_url":"https://api.github.com/repos/phoenixframework/phoenix/issues/events{/number}","events_url":"https://api.github.com/repos/phoenixframework/phoenix/events","assignees_url":"https://api.github.com/repos/phoenixframework/phoenix/assignees{/user}","branches_url":"https://api.github.com/repos/phoenixframework/phoenix/branches{/branch}","tags_url":"https://api.github.com/repos/phoenixframework/phoenix/tags","blobs_url":"https://api.github.com/repos/phoenixframework/phoenix/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/phoenixframework/phoenix/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/phoenixframework/phoenix/git/refs{/sha}","trees_url":"https://api.github.com/repos/phoenixframework/phoenix/git/trees{/sha}","statuses_url":"https://api.github.com/repos/phoenixframework/phoenix/statuses/{sha}","languages_url":"https://api.github.com/repos/phoenixframework/phoenix/languages","stargazers_url":"https://api.github.com/repos/phoenixframework/phoenix/stargazers","contributors_url":"https://api.github.com/repos/phoenixframework/phoenix/contributors","subscribers_url":"https://api.github.com/repos/phoenixframework/phoenix/subscribers","subscription_url":"https://api.github.com/repos/phoenixframework/phoenix/subscription","commits_url":"https://api.github.com/repos/phoenixframework/phoenix/commits{/sha}","git_commits_url":"https://api.github.com/repos/phoenixframework/phoenix/git/commits{/sha}","comments_url":"https://api.github.com/repos/phoenixframework/phoenix/comments{/number}","issue_comment_url":"https://api.github.com/repos/phoenixframework/phoenix/issues/comments/{number}","contents_url":"https://api.github.com/repos/phoenixframework/phoenix/contents/{+path}","compare_url":"https://api.github.com/repos/phoenixframework/phoenix/compare/{base}...{head}","merges_url":"https://api.github.com/repos/phoenixframework/phoenix/merges","archive_url":"https://api.github.com/repos/phoenixframework/phoenix/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/phoenixframework/phoenix/downloads","issues_url":"https://api.github.com/repos/phoenixframework/phoenix/issues{/number}","pulls_url":"https://api.github.com/repos/phoenixframework/phoenix/pulls{/number}","milestones_url":"https://api.github.com/repos/phoenixframework/phoenix/milestones{/number}","notifications_url":"https://api.github.com/repos/phoenixframework/phoenix/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/phoenixframework/phoenix/labels{/name}","releases_url":"https://api.github.com/repos/phoenixframework/phoenix/releases{/id}","created_at":"2014-01-20T14:14:11Z","updated_at":"2015-01-01T04:17:53Z","pushed_at":"2014-12-31T18:59:11Z","git_url":"git://github.com/phoenixframework/phoenix.git","ssh_url":"git@github.com:phoenixframework/phoenix.git","clone_url":"https://github.com/phoenixframework/phoenix.git","svn_url":"https://github.com/phoenixframework/phoenix","homepage":"","size":5577,"stargazers_count":1788,"watchers_count":1788,"language":"Elixir","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":159,"mirror_url":null,"open_issues_count":19,"forks":159,"open_issues":19,"watchers":1788,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570"},"html":{"href":"https://github.com/phoenixframework/phoenix/pull/570"},"issue":{"href":"https://api.github.com/repos/phoenixframework/phoenix/issues/570"},"comments":{"href":"https://api.github.com/repos/phoenixframework/phoenix/issues/570/comments"},"review_comments":{"href":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570/comments"},"review_comment":{"href":"https://api.github.com/repos/phoenixframework/phoenix/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570/commits"},"statuses":{"href":"https://api.github.com/repos/phoenixframework/phoenix/statuses/a3c9681cff1e99e87149fc4069f050309fdbb433"}}}},"public":true,"created_at":"2015-01-01T15:05:52Z","org":{"id":6510388,"login":"phoenixframework","gravatar_id":"","url":"https://api.github.com/orgs/phoenixframework","avatar_url":"https://avatars.githubusercontent.com/u/6510388?"}} +,{"id":"2489653782","type":"PushEvent","actor":{"id":3173564,"login":"noelslevin","gravatar_id":"","url":"https://api.github.com/users/noelslevin","avatar_url":"https://avatars.githubusercontent.com/u/3173564?"},"repo":{"id":18819592,"name":"noelslevin/fantasyf1-site","url":"https://api.github.com/repos/noelslevin/fantasyf1-site"},"payload":{"push_id":536865239,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fd50730b1f33baf53d1f0c0202fe2f59955150b2","before":"10e59690254e5ad6908bf6cbad22cb836e6e10ab","commits":[{"sha":"fd50730b1f33baf53d1f0c0202fe2f59955150b2","author":{"email":"c77e20340d29f24134b11c1433c9ffe3fc1a6c71@gmail.com","name":"Noel Slevin"},"message":"Removing old assets\n\nFollowing reorganisation, old assets have been removed from their former\nlocations.","distinct":true,"url":"https://api.github.com/repos/noelslevin/fantasyf1-site/commits/fd50730b1f33baf53d1f0c0202fe2f59955150b2"}]},"public":true,"created_at":"2015-01-01T15:05:54Z"} +,{"id":"2489653783","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":536865238,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7ae671554ed70f83f2d4a7be38cc34781b86cc21","before":"ef1a32ff62e8f166bd70754eed656177d16e03ed","commits":[{"sha":"7ae671554ed70f83f2d4a7be38cc34781b86cc21","author":{"email":"a964ada144256419b1dd7e3f8a6b4fc60c5e9024@gmail.com","name":"EricSchles"},"message":"that was dumb","distinct":true,"url":"https://api.github.com/repos/EricSchles/typecheck/commits/7ae671554ed70f83f2d4a7be38cc34781b86cc21"}]},"public":true,"created_at":"2015-01-01T15:05:54Z"} +,{"id":"2489653784","type":"PushEvent","actor":{"id":496937,"login":"rasmuserik","gravatar_id":"","url":"https://api.github.com/users/rasmuserik","avatar_url":"https://avatars.githubusercontent.com/u/496937?"},"repo":{"id":23589171,"name":"rasmuserik/solsort-server","url":"https://api.github.com/repos/rasmuserik/solsort-server"},"payload":{"push_id":536865241,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"59450bbaf98ba33f47b4019864fc8503560eaf42","before":"0d03ce5ed3de73c696ec3e78b8cfc4f82152ca96","commits":[{"sha":"59450bbaf98ba33f47b4019864fc8503560eaf42","author":{"email":"e9b243650a6e1842677883d4cd64fc87384c6aca@solsort.dk","name":"Rasmus Erik Voel Jensen"},"message":"secure indexeddb with locks","distinct":true,"url":"https://api.github.com/repos/rasmuserik/solsort-server/commits/59450bbaf98ba33f47b4019864fc8503560eaf42"}]},"public":true,"created_at":"2015-01-01T15:05:54Z"} +,{"id":"2489653785","type":"PushEvent","actor":{"id":818850,"login":"stubma","gravatar_id":"","url":"https://api.github.com/users/stubma","avatar_url":"https://avatars.githubusercontent.com/u/818850?"},"repo":{"id":26906938,"name":"stubma/cocos2dx-classical","url":"https://api.github.com/repos/stubma/cocos2dx-classical"},"payload":{"push_id":536865240,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"537e39ad84f9f4201161410bc8d705be482fe693","before":"1d6a481fcaccb57a27f4570fe855244f7ccb4bf1","commits":[{"sha":"537e39ad84f9f4201161410bc8d705be482fe693","author":{"email":"9c6f8d6f1d16fe77e2bee75389a742db1b82600f@gmail.com","name":"luma"},"message":"update readme","distinct":true,"url":"https://api.github.com/repos/stubma/cocos2dx-classical/commits/537e39ad84f9f4201161410bc8d705be482fe693"}]},"public":true,"created_at":"2015-01-01T15:05:54Z"} +,{"id":"2489653786","type":"PushEvent","actor":{"id":15918,"login":"flori","gravatar_id":"","url":"https://api.github.com/users/flori","avatar_url":"https://avatars.githubusercontent.com/u/15918?"},"repo":{"id":27917754,"name":"flori/complex_config","url":"https://api.github.com/repos/flori/complex_config"},"payload":{"push_id":536865243,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"f3e6a35517a17015c6d5058c683d5ab92dff43d2","before":"e1000f4259b86ef01fa6bb4e762c40fc0a166e33","commits":[{"sha":"8afcb181ce758004442b0bc1bdfba7aef623ec6d","author":{"email":"57fb0fa215ff4cdc993b9a5a902c20acf4aba67c@ping.de","name":"Florian Frank"},"message":"Don't leak cash after calling flush_cache","distinct":true,"url":"https://api.github.com/repos/flori/complex_config/commits/8afcb181ce758004442b0bc1bdfba7aef623ec6d"},{"sha":"5347c045b6146b0eed6b6ada285769dcaf0c1d4b","author":{"email":"57fb0fa215ff4cdc993b9a5a902c20acf4aba67c@ping.de","name":"Florian Frank"},"message":"puts sometimes decides to call to_ary and fails\n\nFix this by adding a on level to_ary method.","distinct":true,"url":"https://api.github.com/repos/flori/complex_config/commits/5347c045b6146b0eed6b6ada285769dcaf0c1d4b"},{"sha":"f3e6a35517a17015c6d5058c683d5ab92dff43d2","author":{"email":"57fb0fa215ff4cdc993b9a5a902c20acf4aba67c@ping.de","name":"Florian Frank"},"message":"In case of non-assoc list arrays use value","distinct":true,"url":"https://api.github.com/repos/flori/complex_config/commits/f3e6a35517a17015c6d5058c683d5ab92dff43d2"}]},"public":true,"created_at":"2015-01-01T15:05:54Z"} +,{"id":"2489653787","type":"CreateEvent","actor":{"id":10281370,"login":"wh3198","gravatar_id":"","url":"https://api.github.com/users/wh3198","avatar_url":"https://avatars.githubusercontent.com/u/10281370?"},"repo":{"id":28688705,"name":"wh3198/reflections","url":"https://api.github.com/repos/wh3198/reflections"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Udacity Git Hub Class reflections","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:54Z"} +,{"id":"2489653789","type":"PushEvent","actor":{"id":238531,"login":"indutny","gravatar_id":"","url":"https://api.github.com/users/indutny","avatar_url":"https://avatars.githubusercontent.com/u/238531?"},"repo":{"id":14643587,"name":"indutny/bud","url":"https://api.github.com/repos/indutny/bud"},"payload":{"push_id":536865245,"size":1,"distinct_size":1,"ref":"refs/heads/feature/ipc-config","head":"a39c8eeda9d125492a9220cd28655296dfc2b9d1","before":"e48411434bbf2690f062d0ded7d252df0d52f814","commits":[{"sha":"a39c8eeda9d125492a9220cd28655296dfc2b9d1","author":{"email":"e39d94bae70283f13d24c278e04952d6dad9384b@indutny.com","name":"Fedor Indutny"},"message":"config: split init into two phases","distinct":true,"url":"https://api.github.com/repos/indutny/bud/commits/a39c8eeda9d125492a9220cd28655296dfc2b9d1"}]},"public":true,"created_at":"2015-01-01T15:05:54Z"} +,{"id":"2489653792","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":"v1.0.1","ref_type":"tag","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:55Z"} +,{"id":"2489653793","type":"PullRequestEvent","actor":{"id":6895272,"login":"kimalec","gravatar_id":"","url":"https://api.github.com/users/kimalec","avatar_url":"https://avatars.githubusercontent.com/u/6895272?"},"repo":{"id":20168914,"name":"WizardFactory/BlogSyncer","url":"https://api.github.com/repos/WizardFactory/BlogSyncer"},"payload":{"action":"opened","number":138,"pull_request":{"url":"https://api.github.com/repos/WizardFactory/BlogSyncer/pulls/138","id":26743814,"html_url":"https://github.com/WizardFactory/BlogSyncer/pull/138","diff_url":"https://github.com/WizardFactory/BlogSyncer/pull/138.diff","patch_url":"https://github.com/WizardFactory/BlogSyncer/pull/138.patch","issue_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/issues/138","number":138,"state":"open","locked":false,"title":"JUS-91 Google Invalid Credentials 에러 수정하기. Fixed #125","user":{"login":"kimalec","id":6895272,"avatar_url":"https://avatars.githubusercontent.com/u/6895272?v=3","gravatar_id":"","url":"https://api.github.com/users/kimalec","html_url":"https://github.com/kimalec","followers_url":"https://api.github.com/users/kimalec/followers","following_url":"https://api.github.com/users/kimalec/following{/other_user}","gists_url":"https://api.github.com/users/kimalec/gists{/gist_id}","starred_url":"https://api.github.com/users/kimalec/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kimalec/subscriptions","organizations_url":"https://api.github.com/users/kimalec/orgs","repos_url":"https://api.github.com/users/kimalec/repos","events_url":"https://api.github.com/users/kimalec/events{/privacy}","received_events_url":"https://api.github.com/users/kimalec/received_events","type":"User","site_admin":false},"body":"JUS-91 Google Invalid Credentials 에러 수정하기. Fixed #125","created_at":"2015-01-01T15:05:55Z","updated_at":"2015-01-01T15:05:55Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/pulls/138/commits","review_comments_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/pulls/138/comments","review_comment_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/pulls/comments/{number}","comments_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/issues/138/comments","statuses_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/statuses/658e7ec3e2f424840a5fe0b11cf2f4facc176c40","head":{"label":"kimalec:master","ref":"master","sha":"658e7ec3e2f424840a5fe0b11cf2f4facc176c40","user":{"login":"kimalec","id":6895272,"avatar_url":"https://avatars.githubusercontent.com/u/6895272?v=3","gravatar_id":"","url":"https://api.github.com/users/kimalec","html_url":"https://github.com/kimalec","followers_url":"https://api.github.com/users/kimalec/followers","following_url":"https://api.github.com/users/kimalec/following{/other_user}","gists_url":"https://api.github.com/users/kimalec/gists{/gist_id}","starred_url":"https://api.github.com/users/kimalec/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kimalec/subscriptions","organizations_url":"https://api.github.com/users/kimalec/orgs","repos_url":"https://api.github.com/users/kimalec/repos","events_url":"https://api.github.com/users/kimalec/events{/privacy}","received_events_url":"https://api.github.com/users/kimalec/received_events","type":"User","site_admin":false},"repo":{"id":22725052,"name":"BlogSyncer","full_name":"kimalec/BlogSyncer","owner":{"login":"kimalec","id":6895272,"avatar_url":"https://avatars.githubusercontent.com/u/6895272?v=3","gravatar_id":"","url":"https://api.github.com/users/kimalec","html_url":"https://github.com/kimalec","followers_url":"https://api.github.com/users/kimalec/followers","following_url":"https://api.github.com/users/kimalec/following{/other_user}","gists_url":"https://api.github.com/users/kimalec/gists{/gist_id}","starred_url":"https://api.github.com/users/kimalec/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kimalec/subscriptions","organizations_url":"https://api.github.com/users/kimalec/orgs","repos_url":"https://api.github.com/users/kimalec/repos","events_url":"https://api.github.com/users/kimalec/events{/privacy}","received_events_url":"https://api.github.com/users/kimalec/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/kimalec/BlogSyncer","description":"Synchronize blogs","fork":true,"url":"https://api.github.com/repos/kimalec/BlogSyncer","forks_url":"https://api.github.com/repos/kimalec/BlogSyncer/forks","keys_url":"https://api.github.com/repos/kimalec/BlogSyncer/keys{/key_id}","collaborators_url":"https://api.github.com/repos/kimalec/BlogSyncer/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/kimalec/BlogSyncer/teams","hooks_url":"https://api.github.com/repos/kimalec/BlogSyncer/hooks","issue_events_url":"https://api.github.com/repos/kimalec/BlogSyncer/issues/events{/number}","events_url":"https://api.github.com/repos/kimalec/BlogSyncer/events","assignees_url":"https://api.github.com/repos/kimalec/BlogSyncer/assignees{/user}","branches_url":"https://api.github.com/repos/kimalec/BlogSyncer/branches{/branch}","tags_url":"https://api.github.com/repos/kimalec/BlogSyncer/tags","blobs_url":"https://api.github.com/repos/kimalec/BlogSyncer/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/kimalec/BlogSyncer/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/kimalec/BlogSyncer/git/refs{/sha}","trees_url":"https://api.github.com/repos/kimalec/BlogSyncer/git/trees{/sha}","statuses_url":"https://api.github.com/repos/kimalec/BlogSyncer/statuses/{sha}","languages_url":"https://api.github.com/repos/kimalec/BlogSyncer/languages","stargazers_url":"https://api.github.com/repos/kimalec/BlogSyncer/stargazers","contributors_url":"https://api.github.com/repos/kimalec/BlogSyncer/contributors","subscribers_url":"https://api.github.com/repos/kimalec/BlogSyncer/subscribers","subscription_url":"https://api.github.com/repos/kimalec/BlogSyncer/subscription","commits_url":"https://api.github.com/repos/kimalec/BlogSyncer/commits{/sha}","git_commits_url":"https://api.github.com/repos/kimalec/BlogSyncer/git/commits{/sha}","comments_url":"https://api.github.com/repos/kimalec/BlogSyncer/comments{/number}","issue_comment_url":"https://api.github.com/repos/kimalec/BlogSyncer/issues/comments/{number}","contents_url":"https://api.github.com/repos/kimalec/BlogSyncer/contents/{+path}","compare_url":"https://api.github.com/repos/kimalec/BlogSyncer/compare/{base}...{head}","merges_url":"https://api.github.com/repos/kimalec/BlogSyncer/merges","archive_url":"https://api.github.com/repos/kimalec/BlogSyncer/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/kimalec/BlogSyncer/downloads","issues_url":"https://api.github.com/repos/kimalec/BlogSyncer/issues{/number}","pulls_url":"https://api.github.com/repos/kimalec/BlogSyncer/pulls{/number}","milestones_url":"https://api.github.com/repos/kimalec/BlogSyncer/milestones{/number}","notifications_url":"https://api.github.com/repos/kimalec/BlogSyncer/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/kimalec/BlogSyncer/labels{/name}","releases_url":"https://api.github.com/repos/kimalec/BlogSyncer/releases{/id}","created_at":"2014-08-07T14:51:16Z","updated_at":"2015-01-01T15:05:29Z","pushed_at":"2015-01-01T15:05:28Z","git_url":"git://github.com/kimalec/BlogSyncer.git","ssh_url":"git@github.com:kimalec/BlogSyncer.git","clone_url":"https://github.com/kimalec/BlogSyncer.git","svn_url":"https://github.com/kimalec/BlogSyncer","homepage":"","size":706,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","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":"WizardFactory:master","ref":"master","sha":"6d116b3e8e2f050a701110f927bd78e234a83399","user":{"login":"WizardFactory","id":6895302,"avatar_url":"https://avatars.githubusercontent.com/u/6895302?v=3","gravatar_id":"","url":"https://api.github.com/users/WizardFactory","html_url":"https://github.com/WizardFactory","followers_url":"https://api.github.com/users/WizardFactory/followers","following_url":"https://api.github.com/users/WizardFactory/following{/other_user}","gists_url":"https://api.github.com/users/WizardFactory/gists{/gist_id}","starred_url":"https://api.github.com/users/WizardFactory/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/WizardFactory/subscriptions","organizations_url":"https://api.github.com/users/WizardFactory/orgs","repos_url":"https://api.github.com/users/WizardFactory/repos","events_url":"https://api.github.com/users/WizardFactory/events{/privacy}","received_events_url":"https://api.github.com/users/WizardFactory/received_events","type":"Organization","site_admin":false},"repo":{"id":20168914,"name":"BlogSyncer","full_name":"WizardFactory/BlogSyncer","owner":{"login":"WizardFactory","id":6895302,"avatar_url":"https://avatars.githubusercontent.com/u/6895302?v=3","gravatar_id":"","url":"https://api.github.com/users/WizardFactory","html_url":"https://github.com/WizardFactory","followers_url":"https://api.github.com/users/WizardFactory/followers","following_url":"https://api.github.com/users/WizardFactory/following{/other_user}","gists_url":"https://api.github.com/users/WizardFactory/gists{/gist_id}","starred_url":"https://api.github.com/users/WizardFactory/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/WizardFactory/subscriptions","organizations_url":"https://api.github.com/users/WizardFactory/orgs","repos_url":"https://api.github.com/users/WizardFactory/repos","events_url":"https://api.github.com/users/WizardFactory/events{/privacy}","received_events_url":"https://api.github.com/users/WizardFactory/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/WizardFactory/BlogSyncer","description":"Synchronize blogs","fork":false,"url":"https://api.github.com/repos/WizardFactory/BlogSyncer","forks_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/forks","keys_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/keys{/key_id}","collaborators_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/teams","hooks_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/hooks","issue_events_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/issues/events{/number}","events_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/events","assignees_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/assignees{/user}","branches_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/branches{/branch}","tags_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/tags","blobs_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/git/refs{/sha}","trees_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/git/trees{/sha}","statuses_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/statuses/{sha}","languages_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/languages","stargazers_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/stargazers","contributors_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/contributors","subscribers_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/subscribers","subscription_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/subscription","commits_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/commits{/sha}","git_commits_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/git/commits{/sha}","comments_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/comments{/number}","issue_comment_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/issues/comments/{number}","contents_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/contents/{+path}","compare_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/compare/{base}...{head}","merges_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/merges","archive_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/downloads","issues_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/issues{/number}","pulls_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/pulls{/number}","milestones_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/milestones{/number}","notifications_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/labels{/name}","releases_url":"https://api.github.com/repos/WizardFactory/BlogSyncer/releases{/id}","created_at":"2014-05-25T23:35:18Z","updated_at":"2014-12-28T07:33:14Z","pushed_at":"2014-12-28T07:33:14Z","git_url":"git://github.com/WizardFactory/BlogSyncer.git","ssh_url":"git@github.com:WizardFactory/BlogSyncer.git","clone_url":"https://github.com/WizardFactory/BlogSyncer.git","svn_url":"https://github.com/WizardFactory/BlogSyncer","homepage":"","size":1046,"stargazers_count":2,"watchers_count":2,"language":"JavaScript","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":6,"mirror_url":null,"open_issues_count":23,"forks":6,"open_issues":23,"watchers":2,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/WizardFactory/BlogSyncer/pulls/138"},"html":{"href":"https://github.com/WizardFactory/BlogSyncer/pull/138"},"issue":{"href":"https://api.github.com/repos/WizardFactory/BlogSyncer/issues/138"},"comments":{"href":"https://api.github.com/repos/WizardFactory/BlogSyncer/issues/138/comments"},"review_comments":{"href":"https://api.github.com/repos/WizardFactory/BlogSyncer/pulls/138/comments"},"review_comment":{"href":"https://api.github.com/repos/WizardFactory/BlogSyncer/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/WizardFactory/BlogSyncer/pulls/138/commits"},"statuses":{"href":"https://api.github.com/repos/WizardFactory/BlogSyncer/statuses/658e7ec3e2f424840a5fe0b11cf2f4facc176c40"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":2,"additions":187,"deletions":56,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:05:55Z","org":{"id":6895302,"login":"WizardFactory","gravatar_id":"","url":"https://api.github.com/orgs/WizardFactory","avatar_url":"https://avatars.githubusercontent.com/u/6895302?"}} +,{"id":"2489653795","type":"PushEvent","actor":{"id":4278113,"login":"steelbrain","gravatar_id":"","url":"https://api.github.com/users/steelbrain","avatar_url":"https://avatars.githubusercontent.com/u/4278113?"},"repo":{"id":28396795,"name":"steelbrain/node-ssh","url":"https://api.github.com/repos/steelbrain/node-ssh"},"payload":{"push_id":536865246,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"99e96ca41df34443914c6761fd093d1c456141ac","before":"873060e2e9b55e05fa1676f63d8845752b525e10","commits":[{"sha":"99e96ca41df34443914c6761fd093d1c456141ac","author":{"email":"20287e119d3445cdb0e6bcadf64d2a9ad3347f0f@gmail.com","name":"steelbrain"},"message":"Bump version to 0.0.2","distinct":true,"url":"https://api.github.com/repos/steelbrain/node-ssh/commits/99e96ca41df34443914c6761fd093d1c456141ac"}]},"public":true,"created_at":"2015-01-01T15:05:55Z"} +,{"id":"2489653798","type":"IssueCommentEvent","actor":{"id":2290904,"login":"Dokman","gravatar_id":"","url":"https://api.github.com/users/Dokman","avatar_url":"https://avatars.githubusercontent.com/u/2290904?"},"repo":{"id":13619340,"name":"rubensworks/EvilCraft","url":"https://api.github.com/repos/rubensworks/EvilCraft"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/rubensworks/EvilCraft/issues/174","labels_url":"https://api.github.com/repos/rubensworks/EvilCraft/issues/174/labels{/name}","comments_url":"https://api.github.com/repos/rubensworks/EvilCraft/issues/174/comments","events_url":"https://api.github.com/repos/rubensworks/EvilCraft/issues/174/events","html_url":"https://github.com/rubensworks/EvilCraft/pull/174","id":53198024,"number":174,"title":"[WIP] Spanish Translation","user":{"login":"Dokman","id":2290904,"avatar_url":"https://avatars.githubusercontent.com/u/2290904?v=3","gravatar_id":"","url":"https://api.github.com/users/Dokman","html_url":"https://github.com/Dokman","followers_url":"https://api.github.com/users/Dokman/followers","following_url":"https://api.github.com/users/Dokman/following{/other_user}","gists_url":"https://api.github.com/users/Dokman/gists{/gist_id}","starred_url":"https://api.github.com/users/Dokman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Dokman/subscriptions","organizations_url":"https://api.github.com/users/Dokman/orgs","repos_url":"https://api.github.com/users/Dokman/repos","events_url":"https://api.github.com/users/Dokman/events{/privacy}","received_events_url":"https://api.github.com/users/Dokman/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":6,"created_at":"2014-12-31T18:57:28Z","updated_at":"2015-01-01T15:05:55Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/rubensworks/EvilCraft/pulls/174","html_url":"https://github.com/rubensworks/EvilCraft/pull/174","diff_url":"https://github.com/rubensworks/EvilCraft/pull/174.diff","patch_url":"https://github.com/rubensworks/EvilCraft/pull/174.patch"},"body":"Is a work in progress in a few days i'll have it at 100%"},"comment":{"url":"https://api.github.com/repos/rubensworks/EvilCraft/issues/comments/68488594","html_url":"https://github.com/rubensworks/EvilCraft/pull/174#issuecomment-68488594","issue_url":"https://api.github.com/repos/rubensworks/EvilCraft/issues/174","id":68488594,"user":{"login":"Dokman","id":2290904,"avatar_url":"https://avatars.githubusercontent.com/u/2290904?v=3","gravatar_id":"","url":"https://api.github.com/users/Dokman","html_url":"https://github.com/Dokman","followers_url":"https://api.github.com/users/Dokman/followers","following_url":"https://api.github.com/users/Dokman/following{/other_user}","gists_url":"https://api.github.com/users/Dokman/gists{/gist_id}","starred_url":"https://api.github.com/users/Dokman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Dokman/subscriptions","organizations_url":"https://api.github.com/users/Dokman/orgs","repos_url":"https://api.github.com/users/Dokman/repos","events_url":"https://api.github.com/users/Dokman/events{/privacy}","received_events_url":"https://api.github.com/users/Dokman/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:05:55Z","updated_at":"2015-01-01T15:05:55Z","body":"this is no? https://github.com/Dokman/EvilCraft/tree/Squashed\r\n@rubensworks "}},"public":true,"created_at":"2015-01-01T15:05:55Z"} +,{"id":"2489653801","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":19700613,"name":"cloudify-cosmo/packman","url":"https://api.github.com/repos/cloudify-cosmo/packman"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:55Z","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":"2489653803","type":"CreateEvent","actor":{"id":10103990,"login":"nadavwe","gravatar_id":"","url":"https://api.github.com/users/nadavwe","avatar_url":"https://avatars.githubusercontent.com/u/10103990?"},"repo":{"id":28688656,"name":"nadavwe/goos","url":"https://api.github.com/repos/nadavwe/goos"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"my try at goos in scala","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:55Z"} +,{"id":"2489653804","type":"CreateEvent","actor":{"id":5018213,"login":"japaric","gravatar_id":"","url":"https://api.github.com/users/japaric","avatar_url":"https://avatars.githubusercontent.com/u/5018213?"},"repo":{"id":17873870,"name":"japaric/rust","url":"https://api.github.com/repos/japaric/rust"},"payload":{"ref":"at","ref_type":"branch","master_branch":"master","description":"a safe, concurrent, practical language","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:55Z"} +,{"id":"2489653806","type":"PushEvent","actor":{"id":37787,"login":"daleharvey","gravatar_id":"","url":"https://api.github.com/users/daleharvey","avatar_url":"https://avatars.githubusercontent.com/u/37787?"},"repo":{"id":714074,"name":"pouchdb/pouchdb","url":"https://api.github.com/repos/pouchdb/pouchdb"},"payload":{"push_id":536865251,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"123cb573cd062f3a71288aad97fe3bd9379dc524","before":"f9721e5c43fe1dec805a41663c773e3873e6ae5a","commits":[{"sha":"123cb573cd062f3a71288aad97fe3bd9379dc524","author":{"email":"8d228162edd35036000dffdf5bad2457553cab61@gmail.com","name":"Will Holley"},"message":"(#136) - Skip \"Revs diff with empty revs\" / CouchDB 2.0\n\nCouchDB 2.0 currently fails to respond when an empty revision\nset is passed to _revs_diff (COUCHDB-2531). Until this is fixed,\nskip the test.","distinct":true,"url":"https://api.github.com/repos/pouchdb/pouchdb/commits/123cb573cd062f3a71288aad97fe3bd9379dc524"}]},"public":true,"created_at":"2015-01-01T15:05:56Z","org":{"id":3406112,"login":"pouchdb","gravatar_id":"","url":"https://api.github.com/orgs/pouchdb","avatar_url":"https://avatars.githubusercontent.com/u/3406112?"}} +,{"id":"2489653807","type":"PushEvent","actor":{"id":9003373,"login":"liu0922","gravatar_id":"","url":"https://api.github.com/users/liu0922","avatar_url":"https://avatars.githubusercontent.com/u/9003373?"},"repo":{"id":28687630,"name":"liu0922/MyVim","url":"https://api.github.com/repos/liu0922/MyVim"},"payload":{"push_id":536865253,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6d8523e5e02250c6f1be08d5ac27e9c487c84108","before":"7082ec8b6dbf13e1ce76db9964c9e4749624d894","commits":[{"sha":"6d8523e5e02250c6f1be08d5ac27e9c487c84108","author":{"email":"8fbef3b3b81c8f07bb999d5e53ae5f6647981000@wen-U-100.(none)","name":"wenchang"},"message":"modify","distinct":true,"url":"https://api.github.com/repos/liu0922/MyVim/commits/6d8523e5e02250c6f1be08d5ac27e9c487c84108"}]},"public":true,"created_at":"2015-01-01T15:05:56Z"} +,{"id":"2489653808","type":"PushEvent","actor":{"id":23956,"login":"suer","gravatar_id":"","url":"https://api.github.com/users/suer","avatar_url":"https://avatars.githubusercontent.com/u/23956?"},"repo":{"id":28680611,"name":"suer/habitize","url":"https://api.github.com/repos/suer/habitize"},"payload":{"push_id":536865254,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8baeff5d13bb76eec8467fc577059ea01d30965f","before":"44e2bd4e60ae1fdabc0e314714d2902f9007f5fe","commits":[{"sha":"8baeff5d13bb76eec8467fc577059ea01d30965f","author":{"email":"62018320c1007bed3de8ecee33cabb1c8356c6ff@gmail.com","name":"Ryo SUETSUGU"},"message":"Added: add button","distinct":true,"url":"https://api.github.com/repos/suer/habitize/commits/8baeff5d13bb76eec8467fc577059ea01d30965f"}]},"public":true,"created_at":"2015-01-01T15:05:56Z"} +,{"id":"2489653810","type":"WatchEvent","actor":{"id":2867210,"login":"tomatrow","gravatar_id":"","url":"https://api.github.com/users/tomatrow","avatar_url":"https://avatars.githubusercontent.com/u/2867210?"},"repo":{"id":20926348,"name":"orta/Snapshots","url":"https://api.github.com/repos/orta/Snapshots"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:57Z"} +,{"id":"2489653811","type":"CreateEvent","actor":{"id":6280692,"login":"madrick001","gravatar_id":"","url":"https://api.github.com/users/madrick001","avatar_url":"https://avatars.githubusercontent.com/u/6280692?"},"repo":{"id":28688701,"name":"madrick001/crocode-sandbox","url":"https://api.github.com/repos/madrick001/crocode-sandbox"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"test repository","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:57Z"} +,{"id":"2489653814","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":536865257,"size":1,"distinct_size":1,"ref":"refs/heads/br_herman","head":"2cc65211dc2c6dcd7a383120d758cb64650ff404","before":"9abf9375103bfcc66167e15a96e939d8232667a8","commits":[{"sha":"2cc65211dc2c6dcd7a383120d758cb64650ff404","author":{"email":"2bb20d8a71fb7adbc1d6239cc9ff4130f26819dc@gmail.com","name":"Herman"},"message":"Coba-coba","distinct":true,"url":"https://api.github.com/repos/hermanwahyudi/selenium/commits/2cc65211dc2c6dcd7a383120d758cb64650ff404"}]},"public":true,"created_at":"2015-01-01T15:05:57Z"} +,{"id":"2489653817","type":"IssueCommentEvent","actor":{"id":3656088,"login":"jchodera","gravatar_id":"","url":"https://api.github.com/users/jchodera","avatar_url":"https://avatars.githubusercontent.com/u/3656088?"},"repo":{"id":12027604,"name":"choderalab/pymbar-examples","url":"https://api.github.com/repos/choderalab/pymbar-examples"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/choderalab/pymbar-examples/issues/13","labels_url":"https://api.github.com/repos/choderalab/pymbar-examples/issues/13/labels{/name}","comments_url":"https://api.github.com/repos/choderalab/pymbar-examples/issues/13/comments","events_url":"https://api.github.com/repos/choderalab/pymbar-examples/issues/13/events","html_url":"https://github.com/choderalab/pymbar-examples/pull/13","id":53168824,"number":13,"title":"pull request on dec 30","user":{"login":"FEPanalysis","id":9339661,"avatar_url":"https://avatars.githubusercontent.com/u/9339661?v=3","gravatar_id":"","url":"https://api.github.com/users/FEPanalysis","html_url":"https://github.com/FEPanalysis","followers_url":"https://api.github.com/users/FEPanalysis/followers","following_url":"https://api.github.com/users/FEPanalysis/following{/other_user}","gists_url":"https://api.github.com/users/FEPanalysis/gists{/gist_id}","starred_url":"https://api.github.com/users/FEPanalysis/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/FEPanalysis/subscriptions","organizations_url":"https://api.github.com/users/FEPanalysis/orgs","repos_url":"https://api.github.com/users/FEPanalysis/repos","events_url":"https://api.github.com/users/FEPanalysis/events{/privacy}","received_events_url":"https://api.github.com/users/FEPanalysis/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-12-31T06:00:59Z","updated_at":"2015-01-01T15:05:57Z","closed_at":"2015-01-01T14:50:22Z","pull_request":{"url":"https://api.github.com/repos/choderalab/pymbar-examples/pulls/13","html_url":"https://github.com/choderalab/pymbar-examples/pull/13","diff_url":"https://github.com/choderalab/pymbar-examples/pull/13.diff","patch_url":"https://github.com/choderalab/pymbar-examples/pull/13.patch"},"body":"Michael,\r\n\r\nPlease have a look at it."},"comment":{"url":"https://api.github.com/repos/choderalab/pymbar-examples/issues/comments/68488596","html_url":"https://github.com/choderalab/pymbar-examples/pull/13#issuecomment-68488596","issue_url":"https://api.github.com/repos/choderalab/pymbar-examples/issues/13","id":68488596,"user":{"login":"jchodera","id":3656088,"avatar_url":"https://avatars.githubusercontent.com/u/3656088?v=3","gravatar_id":"","url":"https://api.github.com/users/jchodera","html_url":"https://github.com/jchodera","followers_url":"https://api.github.com/users/jchodera/followers","following_url":"https://api.github.com/users/jchodera/following{/other_user}","gists_url":"https://api.github.com/users/jchodera/gists{/gist_id}","starred_url":"https://api.github.com/users/jchodera/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jchodera/subscriptions","organizations_url":"https://api.github.com/users/jchodera/orgs","repos_url":"https://api.github.com/users/jchodera/repos","events_url":"https://api.github.com/users/jchodera/events{/privacy}","received_events_url":"https://api.github.com/users/jchodera/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:05:57Z","updated_at":"2015-01-01T15:05:57Z","body":"@mrshirts : Can you still describe what this is for our records?\r\n\r\nSince there are multiple developers here, we have to communicate clearly when we open pull requests or issues or make commits. Version control systems are no substitute for developer communication here."}},"public":true,"created_at":"2015-01-01T15:05:57Z","org":{"id":4217481,"login":"choderalab","gravatar_id":"","url":"https://api.github.com/orgs/choderalab","avatar_url":"https://avatars.githubusercontent.com/u/4217481?"}} +,{"id":"2489653818","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":19700613,"name":"cloudify-cosmo/packman","url":"https://api.github.com/repos/cloudify-cosmo/packman"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"a packaging framework.. and more!","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:57Z","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":"2489653822","type":"IssueCommentEvent","actor":{"id":63502,"login":"ferventcoder","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","avatar_url":"https://avatars.githubusercontent.com/u/63502?"},"repo":{"id":22735696,"name":"chocolatey/chocolatey-package-updater","url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7","labels_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7/comments","events_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7/events","html_url":"https://github.com/chocolatey/chocolatey-package-updater/issues/7","id":47026963,"number":7,"title":"Support for passing {{checksum}} variable","user":{"login":"dtgm","id":3309431,"avatar_url":"https://avatars.githubusercontent.com/u/3309431?v=3","gravatar_id":"","url":"https://api.github.com/users/dtgm","html_url":"https://github.com/dtgm","followers_url":"https://api.github.com/users/dtgm/followers","following_url":"https://api.github.com/users/dtgm/following{/other_user}","gists_url":"https://api.github.com/users/dtgm/gists{/gist_id}","starred_url":"https://api.github.com/users/dtgm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dtgm/subscriptions","organizations_url":"https://api.github.com/users/dtgm/orgs","repos_url":"https://api.github.com/users/dtgm/repos","events_url":"https://api.github.com/users/dtgm/events{/privacy}","received_events_url":"https://api.github.com/users/dtgm/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-10-28T13:44:42Z","updated_at":"2015-01-01T15:05:58Z","closed_at":null,"body":"Please add support for passing {{checksum}} with ChocoPkgUp.exe.\r\n\r\nSee: https://github.com/chocolatey/chocolatey/issues/427#issuecomment-60740928"},"comment":{"url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/comments/68488597","html_url":"https://github.com/chocolatey/chocolatey-package-updater/issues/7#issuecomment-68488597","issue_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7","id":68488597,"user":{"login":"ferventcoder","id":63502,"avatar_url":"https://avatars.githubusercontent.com/u/63502?v=3","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","html_url":"https://github.com/ferventcoder","followers_url":"https://api.github.com/users/ferventcoder/followers","following_url":"https://api.github.com/users/ferventcoder/following{/other_user}","gists_url":"https://api.github.com/users/ferventcoder/gists{/gist_id}","starred_url":"https://api.github.com/users/ferventcoder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ferventcoder/subscriptions","organizations_url":"https://api.github.com/users/ferventcoder/orgs","repos_url":"https://api.github.com/users/ferventcoder/repos","events_url":"https://api.github.com/users/ferventcoder/events{/privacy}","received_events_url":"https://api.github.com/users/ferventcoder/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:05:58Z","updated_at":"2015-01-01T15:05:58Z","body":"`/c=` or `/checksum=`\r\n`/c64` or `/checksumx64`"}},"public":true,"created_at":"2015-01-01T15:05:59Z","org":{"id":811025,"login":"chocolatey","gravatar_id":"","url":"https://api.github.com/orgs/chocolatey","avatar_url":"https://avatars.githubusercontent.com/u/811025?"}} +,{"id":"2489653824","type":"CreateEvent","actor":{"id":5978905,"login":"loyaltyHF","gravatar_id":"","url":"https://api.github.com/users/loyaltyHF","avatar_url":"https://avatars.githubusercontent.com/u/5978905?"},"repo":{"id":28545730,"name":"loyaltyHF/Loyalty.Networking","url":"https://api.github.com/repos/loyaltyHF/Loyalty.Networking"},"payload":{"ref":"v1.0","ref_type":"tag","master_branch":"master","description":"Just basic","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:59Z"} +,{"id":"2489653825","type":"CreateEvent","actor":{"id":15918,"login":"flori","gravatar_id":"","url":"https://api.github.com/users/flori","avatar_url":"https://avatars.githubusercontent.com/u/15918?"},"repo":{"id":27917754,"name":"flori/complex_config","url":"https://api.github.com/repos/flori/complex_config"},"payload":{"ref":"v0.1.1","ref_type":"tag","master_branch":"master","description":"configuration library using YAML","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:59Z"} +,{"id":"2489653826","type":"PushEvent","actor":{"id":1334295,"login":"bfontaine","gravatar_id":"","url":"https://api.github.com/users/bfontaine","avatar_url":"https://avatars.githubusercontent.com/u/1334295?"},"repo":{"id":26602131,"name":"bfontaine/homebrew","url":"https://api.github.com/repos/bfontaine/homebrew"},"payload":{"push_id":536865260,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5b6d2dca03bef65f3ae7d639e9096b9e7f87ee4e","before":"60cd5229da13b339e5cbf01222bd589ce8bce68c","commits":[{"sha":"5b6d2dca03bef65f3ae7d639e9096b9e7f87ee4e","author":{"email":"bfee279af59f3e3f71f7ce1fa037ea7b90f93cbf@yahoo.fr","name":"Baptiste Fontaine"},"message":"minimal MP3 test file added\n\nCloses #35417.\n\nSigned-off-by: Mike McQuaid ","distinct":true,"url":"https://api.github.com/repos/bfontaine/homebrew/commits/5b6d2dca03bef65f3ae7d639e9096b9e7f87ee4e"}]},"public":true,"created_at":"2015-01-01T15:05:59Z"} +,{"id":"2489653839","type":"PushEvent","actor":{"id":4237699,"login":"Dwillcocks","gravatar_id":"","url":"https://api.github.com/users/Dwillcocks","avatar_url":"https://avatars.githubusercontent.com/u/4237699?"},"repo":{"id":27402795,"name":"Dwillcocks/Dwillcocks.github.io","url":"https://api.github.com/repos/Dwillcocks/Dwillcocks.github.io"},"payload":{"push_id":536865268,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"15d2a4cff83fb025703d1edd6680db78fe6d6347","before":"d929568d0b25579a9d9c7975140a47fb74eb653f","commits":[{"sha":"15d2a4cff83fb025703d1edd6680db78fe6d6347","author":{"email":"70f8bb9a8a5393ef080507a89e4b98d139000d65@daniels-imac.home","name":"Dwillcocks"},"message":"k","distinct":true,"url":"https://api.github.com/repos/Dwillcocks/Dwillcocks.github.io/commits/15d2a4cff83fb025703d1edd6680db78fe6d6347"}]},"public":true,"created_at":"2015-01-01T15:06:01Z"} +,{"id":"2489653840","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/36","labels_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/36/labels{/name}","comments_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/36/comments","events_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/36/events","html_url":"https://github.com/markbirbeck/sublime-text-shell-command/issues/36","id":53219669,"number":36,"title":"Allow user to enter values that will be used in commands","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},"labels":[{"url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2015-01-01T13:26:24Z","updated_at":"2015-01-01T15:06:01Z","closed_at":"2015-01-01T14:55:54Z","body":"Often commands such as renaming a Git branch will require input from the user. This feature will allow variables to be provided by the user using the dollar syntax and a string to indicate the command prompt.\r\n\r\nThe following example shows how this feature could be used to create a shortcut that allows a feature branch to be started that uses a name for the new branch that is provided by the user:\r\n\r\n```json\r\n[\r\n {\r\n \"keys\": [\"!\", \"f\"],\r\n \"command\": \"shell_command\",\r\n \"args\": {\r\n \"command\": \"git checkout -b feature/${branch::Feature Branch} develop\",\r\n \"panel\": true\r\n }\r\n }\r\n]\r\n```\r\n\r\nNote that the double colon in the middle indicates that there is no default value. If one was provided then this would be used to populate the prompt first:\r\n\r\n```\r\ngit checkout -b feature/${branch:my new feature:Feature Branch} develop\r\n```\r\n"},"comment":{"url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/comments/68488598","html_url":"https://github.com/markbirbeck/sublime-text-shell-command/issues/36#issuecomment-68488598","issue_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/36","id":68488598,"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:06:01Z","updated_at":"2015-01-01T15:06:01Z","body":"This also answers one part of @pchomik's request at https://github.com/wbond/package_control_channel/pull/3835."}},"public":true,"created_at":"2015-01-01T15:06:01Z"} +,{"id":"2489653843","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":10237433,"name":"GigaSpaces-QA/DevOps","url":"https://api.github.com/repos/GigaSpaces-QA/DevOps"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:01Z","org":{"id":2812610,"login":"GigaSpaces-QA","gravatar_id":"","url":"https://api.github.com/orgs/GigaSpaces-QA","avatar_url":"https://avatars.githubusercontent.com/u/2812610?"}} +,{"id":"2489653844","type":"GollumEvent","actor":{"id":3470648,"login":"VPatrick","gravatar_id":"","url":"https://api.github.com/users/VPatrick","avatar_url":"https://avatars.githubusercontent.com/u/3470648?"},"repo":{"id":27587790,"name":"VPatrick/PerlArchiver","url":"https://api.github.com/repos/VPatrick/PerlArchiver"},"payload":{"pages":[{"page_name":"Verbosity","title":"Verbosity","summary":null,"action":"created","sha":"602bf38003a434d0e3c969c810be8775032227a8","html_url":"https://github.com/VPatrick/PerlArchiver/wiki/Verbosity"}]},"public":true,"created_at":"2015-01-01T15:06:01Z"} +,{"id":"2489653847","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":536865272,"size":1,"distinct_size":1,"ref":"refs/heads/rel-3_3","head":"117e2ebeca4173ab9a6e50f75f3609370e625db0","before":"bbbc77b03d86aeaf8263dd6bac31578fd333ecfe","commits":[{"sha":"117e2ebeca4173ab9a6e50f75f3609370e625db0","author":{"email":"2497d761a8fe182513acbb1aafe37a7278b43d72@otrs.com","name":"Manuel Hecht"},"message":"Updated copyright date.","distinct":true,"url":"https://api.github.com/repos/OTRS/otrs/commits/117e2ebeca4173ab9a6e50f75f3609370e625db0"}]},"public":true,"created_at":"2015-01-01T15:06:01Z","org":{"id":3065906,"login":"OTRS","gravatar_id":"","url":"https://api.github.com/orgs/OTRS","avatar_url":"https://avatars.githubusercontent.com/u/3065906?"}} +,{"id":"2489653850","type":"PullRequestEvent","actor":{"id":1354987,"login":"d3rp","gravatar_id":"","url":"https://api.github.com/users/d3rp","avatar_url":"https://avatars.githubusercontent.com/u/1354987?"},"repo":{"id":24474126,"name":"ansible/ansible-modules-core","url":"https://api.github.com/repos/ansible/ansible-modules-core"},"payload":{"action":"opened","number":587,"pull_request":{"url":"https://api.github.com/repos/ansible/ansible-modules-core/pulls/587","id":26743815,"html_url":"https://github.com/ansible/ansible-modules-core/pull/587","diff_url":"https://github.com/ansible/ansible-modules-core/pull/587.diff","patch_url":"https://github.com/ansible/ansible-modules-core/pull/587.patch","issue_url":"https://api.github.com/repos/ansible/ansible-modules-core/issues/587","number":587,"state":"open","locked":false,"title":"Add support ipv6only to wait_for","user":{"login":"d3rp","id":1354987,"avatar_url":"https://avatars.githubusercontent.com/u/1354987?v=3","gravatar_id":"","url":"https://api.github.com/users/d3rp","html_url":"https://github.com/d3rp","followers_url":"https://api.github.com/users/d3rp/followers","following_url":"https://api.github.com/users/d3rp/following{/other_user}","gists_url":"https://api.github.com/users/d3rp/gists{/gist_id}","starred_url":"https://api.github.com/users/d3rp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/d3rp/subscriptions","organizations_url":"https://api.github.com/users/d3rp/orgs","repos_url":"https://api.github.com/users/d3rp/repos","events_url":"https://api.github.com/users/d3rp/events{/privacy}","received_events_url":"https://api.github.com/users/d3rp/received_events","type":"User","site_admin":false},"body":"Use a function socket.create_connection instead of socket.connect().","created_at":"2015-01-01T15:06:01Z","updated_at":"2015-01-01T15:06:01Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/ansible/ansible-modules-core/pulls/587/commits","review_comments_url":"https://api.github.com/repos/ansible/ansible-modules-core/pulls/587/comments","review_comment_url":"https://api.github.com/repos/ansible/ansible-modules-core/pulls/comments/{number}","comments_url":"https://api.github.com/repos/ansible/ansible-modules-core/issues/587/comments","statuses_url":"https://api.github.com/repos/ansible/ansible-modules-core/statuses/21fedc87f1cff5daf87f28617857106718f9174a","head":{"label":"d3rp:devel","ref":"devel","sha":"21fedc87f1cff5daf87f28617857106718f9174a","user":{"login":"d3rp","id":1354987,"avatar_url":"https://avatars.githubusercontent.com/u/1354987?v=3","gravatar_id":"","url":"https://api.github.com/users/d3rp","html_url":"https://github.com/d3rp","followers_url":"https://api.github.com/users/d3rp/followers","following_url":"https://api.github.com/users/d3rp/following{/other_user}","gists_url":"https://api.github.com/users/d3rp/gists{/gist_id}","starred_url":"https://api.github.com/users/d3rp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/d3rp/subscriptions","organizations_url":"https://api.github.com/users/d3rp/orgs","repos_url":"https://api.github.com/users/d3rp/repos","events_url":"https://api.github.com/users/d3rp/events{/privacy}","received_events_url":"https://api.github.com/users/d3rp/received_events","type":"User","site_admin":false},"repo":{"id":28688529,"name":"ansible-modules-core","full_name":"d3rp/ansible-modules-core","owner":{"login":"d3rp","id":1354987,"avatar_url":"https://avatars.githubusercontent.com/u/1354987?v=3","gravatar_id":"","url":"https://api.github.com/users/d3rp","html_url":"https://github.com/d3rp","followers_url":"https://api.github.com/users/d3rp/followers","following_url":"https://api.github.com/users/d3rp/following{/other_user}","gists_url":"https://api.github.com/users/d3rp/gists{/gist_id}","starred_url":"https://api.github.com/users/d3rp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/d3rp/subscriptions","organizations_url":"https://api.github.com/users/d3rp/orgs","repos_url":"https://api.github.com/users/d3rp/repos","events_url":"https://api.github.com/users/d3rp/events{/privacy}","received_events_url":"https://api.github.com/users/d3rp/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/d3rp/ansible-modules-core","description":"Ansible modules - these modules ship with ansible","fork":true,"url":"https://api.github.com/repos/d3rp/ansible-modules-core","forks_url":"https://api.github.com/repos/d3rp/ansible-modules-core/forks","keys_url":"https://api.github.com/repos/d3rp/ansible-modules-core/keys{/key_id}","collaborators_url":"https://api.github.com/repos/d3rp/ansible-modules-core/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/d3rp/ansible-modules-core/teams","hooks_url":"https://api.github.com/repos/d3rp/ansible-modules-core/hooks","issue_events_url":"https://api.github.com/repos/d3rp/ansible-modules-core/issues/events{/number}","events_url":"https://api.github.com/repos/d3rp/ansible-modules-core/events","assignees_url":"https://api.github.com/repos/d3rp/ansible-modules-core/assignees{/user}","branches_url":"https://api.github.com/repos/d3rp/ansible-modules-core/branches{/branch}","tags_url":"https://api.github.com/repos/d3rp/ansible-modules-core/tags","blobs_url":"https://api.github.com/repos/d3rp/ansible-modules-core/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/d3rp/ansible-modules-core/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/d3rp/ansible-modules-core/git/refs{/sha}","trees_url":"https://api.github.com/repos/d3rp/ansible-modules-core/git/trees{/sha}","statuses_url":"https://api.github.com/repos/d3rp/ansible-modules-core/statuses/{sha}","languages_url":"https://api.github.com/repos/d3rp/ansible-modules-core/languages","stargazers_url":"https://api.github.com/repos/d3rp/ansible-modules-core/stargazers","contributors_url":"https://api.github.com/repos/d3rp/ansible-modules-core/contributors","subscribers_url":"https://api.github.com/repos/d3rp/ansible-modules-core/subscribers","subscription_url":"https://api.github.com/repos/d3rp/ansible-modules-core/subscription","commits_url":"https://api.github.com/repos/d3rp/ansible-modules-core/commits{/sha}","git_commits_url":"https://api.github.com/repos/d3rp/ansible-modules-core/git/commits{/sha}","comments_url":"https://api.github.com/repos/d3rp/ansible-modules-core/comments{/number}","issue_comment_url":"https://api.github.com/repos/d3rp/ansible-modules-core/issues/comments/{number}","contents_url":"https://api.github.com/repos/d3rp/ansible-modules-core/contents/{+path}","compare_url":"https://api.github.com/repos/d3rp/ansible-modules-core/compare/{base}...{head}","merges_url":"https://api.github.com/repos/d3rp/ansible-modules-core/merges","archive_url":"https://api.github.com/repos/d3rp/ansible-modules-core/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/d3rp/ansible-modules-core/downloads","issues_url":"https://api.github.com/repos/d3rp/ansible-modules-core/issues{/number}","pulls_url":"https://api.github.com/repos/d3rp/ansible-modules-core/pulls{/number}","milestones_url":"https://api.github.com/repos/d3rp/ansible-modules-core/milestones{/number}","notifications_url":"https://api.github.com/repos/d3rp/ansible-modules-core/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/d3rp/ansible-modules-core/labels{/name}","releases_url":"https://api.github.com/repos/d3rp/ansible-modules-core/releases{/id}","created_at":"2015-01-01T14:56:04Z","updated_at":"2015-01-01T15:01:46Z","pushed_at":"2015-01-01T15:01:46Z","git_url":"git://github.com/d3rp/ansible-modules-core.git","ssh_url":"git@github.com:d3rp/ansible-modules-core.git","clone_url":"https://github.com/d3rp/ansible-modules-core.git","svn_url":"https://github.com/d3rp/ansible-modules-core","homepage":"","size":13540,"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":"devel"}},"base":{"label":"ansible:devel","ref":"devel","sha":"0d551d8d245e060e453cfdcd608eeca595efe760","user":{"login":"ansible","id":1507452,"avatar_url":"https://avatars.githubusercontent.com/u/1507452?v=3","gravatar_id":"","url":"https://api.github.com/users/ansible","html_url":"https://github.com/ansible","followers_url":"https://api.github.com/users/ansible/followers","following_url":"https://api.github.com/users/ansible/following{/other_user}","gists_url":"https://api.github.com/users/ansible/gists{/gist_id}","starred_url":"https://api.github.com/users/ansible/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ansible/subscriptions","organizations_url":"https://api.github.com/users/ansible/orgs","repos_url":"https://api.github.com/users/ansible/repos","events_url":"https://api.github.com/users/ansible/events{/privacy}","received_events_url":"https://api.github.com/users/ansible/received_events","type":"Organization","site_admin":false},"repo":{"id":24474126,"name":"ansible-modules-core","full_name":"ansible/ansible-modules-core","owner":{"login":"ansible","id":1507452,"avatar_url":"https://avatars.githubusercontent.com/u/1507452?v=3","gravatar_id":"","url":"https://api.github.com/users/ansible","html_url":"https://github.com/ansible","followers_url":"https://api.github.com/users/ansible/followers","following_url":"https://api.github.com/users/ansible/following{/other_user}","gists_url":"https://api.github.com/users/ansible/gists{/gist_id}","starred_url":"https://api.github.com/users/ansible/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ansible/subscriptions","organizations_url":"https://api.github.com/users/ansible/orgs","repos_url":"https://api.github.com/users/ansible/repos","events_url":"https://api.github.com/users/ansible/events{/privacy}","received_events_url":"https://api.github.com/users/ansible/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/ansible/ansible-modules-core","description":"Ansible modules - these modules ship with ansible","fork":false,"url":"https://api.github.com/repos/ansible/ansible-modules-core","forks_url":"https://api.github.com/repos/ansible/ansible-modules-core/forks","keys_url":"https://api.github.com/repos/ansible/ansible-modules-core/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ansible/ansible-modules-core/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ansible/ansible-modules-core/teams","hooks_url":"https://api.github.com/repos/ansible/ansible-modules-core/hooks","issue_events_url":"https://api.github.com/repos/ansible/ansible-modules-core/issues/events{/number}","events_url":"https://api.github.com/repos/ansible/ansible-modules-core/events","assignees_url":"https://api.github.com/repos/ansible/ansible-modules-core/assignees{/user}","branches_url":"https://api.github.com/repos/ansible/ansible-modules-core/branches{/branch}","tags_url":"https://api.github.com/repos/ansible/ansible-modules-core/tags","blobs_url":"https://api.github.com/repos/ansible/ansible-modules-core/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ansible/ansible-modules-core/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ansible/ansible-modules-core/git/refs{/sha}","trees_url":"https://api.github.com/repos/ansible/ansible-modules-core/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ansible/ansible-modules-core/statuses/{sha}","languages_url":"https://api.github.com/repos/ansible/ansible-modules-core/languages","stargazers_url":"https://api.github.com/repos/ansible/ansible-modules-core/stargazers","contributors_url":"https://api.github.com/repos/ansible/ansible-modules-core/contributors","subscribers_url":"https://api.github.com/repos/ansible/ansible-modules-core/subscribers","subscription_url":"https://api.github.com/repos/ansible/ansible-modules-core/subscription","commits_url":"https://api.github.com/repos/ansible/ansible-modules-core/commits{/sha}","git_commits_url":"https://api.github.com/repos/ansible/ansible-modules-core/git/commits{/sha}","comments_url":"https://api.github.com/repos/ansible/ansible-modules-core/comments{/number}","issue_comment_url":"https://api.github.com/repos/ansible/ansible-modules-core/issues/comments/{number}","contents_url":"https://api.github.com/repos/ansible/ansible-modules-core/contents/{+path}","compare_url":"https://api.github.com/repos/ansible/ansible-modules-core/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ansible/ansible-modules-core/merges","archive_url":"https://api.github.com/repos/ansible/ansible-modules-core/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ansible/ansible-modules-core/downloads","issues_url":"https://api.github.com/repos/ansible/ansible-modules-core/issues{/number}","pulls_url":"https://api.github.com/repos/ansible/ansible-modules-core/pulls{/number}","milestones_url":"https://api.github.com/repos/ansible/ansible-modules-core/milestones{/number}","notifications_url":"https://api.github.com/repos/ansible/ansible-modules-core/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ansible/ansible-modules-core/labels{/name}","releases_url":"https://api.github.com/repos/ansible/ansible-modules-core/releases{/id}","created_at":"2014-09-25T20:28:25Z","updated_at":"2014-12-30T23:01:01Z","pushed_at":"2014-12-30T19:12:30Z","git_url":"git://github.com/ansible/ansible-modules-core.git","ssh_url":"git@github.com:ansible/ansible-modules-core.git","clone_url":"https://github.com/ansible/ansible-modules-core.git","svn_url":"https://github.com/ansible/ansible-modules-core","homepage":"","size":13540,"stargazers_count":141,"watchers_count":141,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":327,"mirror_url":null,"open_issues_count":363,"forks":327,"open_issues":363,"watchers":141,"default_branch":"devel"}},"_links":{"self":{"href":"https://api.github.com/repos/ansible/ansible-modules-core/pulls/587"},"html":{"href":"https://github.com/ansible/ansible-modules-core/pull/587"},"issue":{"href":"https://api.github.com/repos/ansible/ansible-modules-core/issues/587"},"comments":{"href":"https://api.github.com/repos/ansible/ansible-modules-core/issues/587/comments"},"review_comments":{"href":"https://api.github.com/repos/ansible/ansible-modules-core/pulls/587/comments"},"review_comment":{"href":"https://api.github.com/repos/ansible/ansible-modules-core/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/ansible/ansible-modules-core/pulls/587/commits"},"statuses":{"href":"https://api.github.com/repos/ansible/ansible-modules-core/statuses/21fedc87f1cff5daf87f28617857106718f9174a"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":2,"deletions":6,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:06:02Z","org":{"id":1507452,"login":"ansible","gravatar_id":"","url":"https://api.github.com/orgs/ansible","avatar_url":"https://avatars.githubusercontent.com/u/1507452?"}} +,{"id":"2489653855","type":"PushEvent","actor":{"id":9318079,"login":"FeridunMekec","gravatar_id":"","url":"https://api.github.com/users/FeridunMekec","avatar_url":"https://avatars.githubusercontent.com/u/9318079?"},"repo":{"id":26536869,"name":"fabianroeber/Raumplaner2","url":"https://api.github.com/repos/fabianroeber/Raumplaner2"},"payload":{"push_id":536865274,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ebcebef68c7f6ffa96e010a57faf2fc24c488a5c","before":"a44f61f7eeba7d21a07ad1d4e2f693a0792dd90f","commits":[{"sha":"ebcebef68c7f6ffa96e010a57faf2fc24c488a5c","author":{"email":"9f9f9c66bff12210938444ad767edb58dae5497c@hdm-stuttgart.de","name":"Feridun Mekec"},"message":"GUI - der VerticalPanel von der Klasse HauptLayout wurde gestyled","distinct":true,"url":"https://api.github.com/repos/fabianroeber/Raumplaner2/commits/ebcebef68c7f6ffa96e010a57faf2fc24c488a5c"}]},"public":true,"created_at":"2015-01-01T15:06:02Z"} +,{"id":"2489653857","type":"CreateEvent","actor":{"id":5406350,"login":"ruLait","gravatar_id":"","url":"https://api.github.com/users/ruLait","avatar_url":"https://avatars.githubusercontent.com/u/5406350?"},"repo":{"id":23067268,"name":"ap-fm/app-vk","url":"https://api.github.com/repos/ap-fm/app-vk"},"payload":{"ref":"master","ref_type":"branch","master_branch":"gh-pages","description":"Application in social network «VKontakte».","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:03Z","org":{"id":8478174,"login":"ap-fm","gravatar_id":"","url":"https://api.github.com/orgs/ap-fm","avatar_url":"https://avatars.githubusercontent.com/u/8478174?"}} +,{"id":"2489653858","type":"PushEvent","actor":{"id":6825362,"login":"Aymenworks","gravatar_id":"","url":"https://api.github.com/users/Aymenworks","avatar_url":"https://avatars.githubusercontent.com/u/6825362?"},"repo":{"id":28316236,"name":"Aymenworks/EmptyApp","url":"https://api.github.com/repos/Aymenworks/EmptyApp"},"payload":{"push_id":536865276,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ef1f55cd0f445afbd489fd061ed5d728eff2d37b","before":"33657cde32af67209e185969bd3c89f0b34d6ccd","commits":[{"sha":"ef1f55cd0f445afbd489fd061ed5d728eff2d37b","author":{"email":"c4ef171a48d78f662bcce391783b9132c95d617d@gmail.com","name":"Rebouh Aymen"},"message":"Add test to circle ci","distinct":true,"url":"https://api.github.com/repos/Aymenworks/EmptyApp/commits/ef1f55cd0f445afbd489fd061ed5d728eff2d37b"}]},"public":true,"created_at":"2015-01-01T15:06:03Z"} +,{"id":"2489653862","type":"CreateEvent","actor":{"id":10252834,"login":"JonhSHEPARD","gravatar_id":"","url":"https://api.github.com/users/JonhSHEPARD","avatar_url":"https://avatars.githubusercontent.com/u/10252834?"},"repo":{"id":28688707,"name":"JonhSHEPARD/EnderWar","url":"https://api.github.com/repos/JonhSHEPARD/EnderWar"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:04Z"} +,{"id":"2489653867","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":10237433,"name":"GigaSpaces-QA/DevOps","url":"https://api.github.com/repos/GigaSpaces-QA/DevOps"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:04Z","org":{"id":2812610,"login":"GigaSpaces-QA","gravatar_id":"","url":"https://api.github.com/orgs/GigaSpaces-QA","avatar_url":"https://avatars.githubusercontent.com/u/2812610?"}} +,{"id":"2489653868","type":"CreateEvent","actor":{"id":5406399,"login":"Izaron","gravatar_id":"","url":"https://api.github.com/users/Izaron","avatar_url":"https://avatars.githubusercontent.com/u/5406399?"},"repo":{"id":27729778,"name":"Izaron/openmrs-distro-referenceapplication","url":"https://api.github.com/repos/Izaron/openmrs-distro-referenceapplication"},"payload":{"ref":"gci-4-2","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:04Z"} +,{"id":"2489653869","type":"PushEvent","actor":{"id":7246669,"login":"casanovatoy","gravatar_id":"","url":"https://api.github.com/users/casanovatoy","avatar_url":"https://avatars.githubusercontent.com/u/7246669?"},"repo":{"id":28688673,"name":"casanovatoy/MotionDetection","url":"https://api.github.com/repos/casanovatoy/MotionDetection"},"payload":{"push_id":536865278,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"5c68c927365c95d12ee259fc5857e78fe2525ad6","before":"02641322fd6be5beda62dafa5e39db542147fb9c","commits":[{"sha":"97f45a542e43640eadd59d36f7b148f258fb13e7","author":{"email":"cd1933db799b8605408805474cd408cf9ae0d160@TOY-","name":"toy"},"message":"test","distinct":true,"url":"https://api.github.com/repos/casanovatoy/MotionDetection/commits/97f45a542e43640eadd59d36f7b148f258fb13e7"},{"sha":"5c68c927365c95d12ee259fc5857e78fe2525ad6","author":{"email":"cd1933db799b8605408805474cd408cf9ae0d160@TOY-","name":"toy"},"message":"Merge origin/master","distinct":true,"url":"https://api.github.com/repos/casanovatoy/MotionDetection/commits/5c68c927365c95d12ee259fc5857e78fe2525ad6"}]},"public":true,"created_at":"2015-01-01T15:06:04Z"} +,{"id":"2489653872","type":"IssueCommentEvent","actor":{"id":5514202,"login":"DeeJee","gravatar_id":"","url":"https://api.github.com/users/DeeJee","avatar_url":"https://avatars.githubusercontent.com/u/5514202?"},"repo":{"id":28571307,"name":"DeeJee/VhpTimeLogger","url":"https://api.github.com/repos/DeeJee/VhpTimeLogger"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/1","labels_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/1/comments","events_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/1/events","html_url":"https://github.com/DeeJee/VhpTimeLogger/issues/1","id":53221224,"number":1,"title":"Sortering projecten","user":{"login":"DeeJee","id":5514202,"avatar_url":"https://avatars.githubusercontent.com/u/5514202?v=3","gravatar_id":"","url":"https://api.github.com/users/DeeJee","html_url":"https://github.com/DeeJee","followers_url":"https://api.github.com/users/DeeJee/followers","following_url":"https://api.github.com/users/DeeJee/following{/other_user}","gists_url":"https://api.github.com/users/DeeJee/gists{/gist_id}","starred_url":"https://api.github.com/users/DeeJee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeeJee/subscriptions","organizations_url":"https://api.github.com/users/DeeJee/orgs","repos_url":"https://api.github.com/users/DeeJee/repos","events_url":"https://api.github.com/users/DeeJee/events{/privacy}","received_events_url":"https://api.github.com/users/DeeJee/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T14:54:25Z","updated_at":"2015-01-01T15:06:04Z","closed_at":"2015-01-01T15:06:04Z","body":"Kun je de projecten sorteren op hun naam ipv op hun nummer in de database? Dat nummer heeft voor mij geen betekenis. Dit graag ook bij rapportage doen.\r\n"},"comment":{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/comments/68488600","html_url":"https://github.com/DeeJee/VhpTimeLogger/issues/1#issuecomment-68488600","issue_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/1","id":68488600,"user":{"login":"DeeJee","id":5514202,"avatar_url":"https://avatars.githubusercontent.com/u/5514202?v=3","gravatar_id":"","url":"https://api.github.com/users/DeeJee","html_url":"https://github.com/DeeJee","followers_url":"https://api.github.com/users/DeeJee/followers","following_url":"https://api.github.com/users/DeeJee/following{/other_user}","gists_url":"https://api.github.com/users/DeeJee/gists{/gist_id}","starred_url":"https://api.github.com/users/DeeJee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeeJee/subscriptions","organizations_url":"https://api.github.com/users/DeeJee/orgs","repos_url":"https://api.github.com/users/DeeJee/repos","events_url":"https://api.github.com/users/DeeJee/events{/privacy}","received_events_url":"https://api.github.com/users/DeeJee/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:06:04Z","updated_at":"2015-01-01T15:06:04Z","body":"Bij mij zijn de rapportages wel gesorteerd. Het zou kunnen dat het al opgelost was maar nog niet opgeleverd."}},"public":true,"created_at":"2015-01-01T15:06:04Z"} +,{"id":"2489653873","type":"IssuesEvent","actor":{"id":5514202,"login":"DeeJee","gravatar_id":"","url":"https://api.github.com/users/DeeJee","avatar_url":"https://avatars.githubusercontent.com/u/5514202?"},"repo":{"id":28571307,"name":"DeeJee/VhpTimeLogger","url":"https://api.github.com/repos/DeeJee/VhpTimeLogger"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/1","labels_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/1/comments","events_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/1/events","html_url":"https://github.com/DeeJee/VhpTimeLogger/issues/1","id":53221224,"number":1,"title":"Sortering projecten","user":{"login":"DeeJee","id":5514202,"avatar_url":"https://avatars.githubusercontent.com/u/5514202?v=3","gravatar_id":"","url":"https://api.github.com/users/DeeJee","html_url":"https://github.com/DeeJee","followers_url":"https://api.github.com/users/DeeJee/followers","following_url":"https://api.github.com/users/DeeJee/following{/other_user}","gists_url":"https://api.github.com/users/DeeJee/gists{/gist_id}","starred_url":"https://api.github.com/users/DeeJee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeeJee/subscriptions","organizations_url":"https://api.github.com/users/DeeJee/orgs","repos_url":"https://api.github.com/users/DeeJee/repos","events_url":"https://api.github.com/users/DeeJee/events{/privacy}","received_events_url":"https://api.github.com/users/DeeJee/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T14:54:25Z","updated_at":"2015-01-01T15:06:04Z","closed_at":"2015-01-01T15:06:04Z","body":"Kun je de projecten sorteren op hun naam ipv op hun nummer in de database? Dat nummer heeft voor mij geen betekenis. Dit graag ook bij rapportage doen.\r\n"}},"public":true,"created_at":"2015-01-01T15:06:04Z"} +,{"id":"2489653874","type":"PushEvent","actor":{"id":374562,"login":"sniperHW","gravatar_id":"","url":"https://api.github.com/users/sniperHW","avatar_url":"https://avatars.githubusercontent.com/u/374562?"},"repo":{"id":5221544,"name":"sniperHW/distri.lua","url":"https://api.github.com/repos/sniperHW/distri.lua"},"payload":{"push_id":536865281,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"712a1964d0d23bfbdf7bf1183bf7704f0e99c789","before":"fee81817c5af01b519a751f39d9cfe9f1f986403","commits":[{"sha":"712a1964d0d23bfbdf7bf1183bf7704f0e99c789","author":{"email":"9366f89b51d172d29b2dd5ed646750d4bdd8760f@21cn.com","name":"sniperHW"},"message":"update sample/uthread","distinct":true,"url":"https://api.github.com/repos/sniperHW/distri.lua/commits/712a1964d0d23bfbdf7bf1183bf7704f0e99c789"}]},"public":true,"created_at":"2015-01-01T15:06:04Z"} +,{"id":"2489653876","type":"PushEvent","actor":{"id":159079,"login":"cljack","gravatar_id":"","url":"https://api.github.com/users/cljack","avatar_url":"https://avatars.githubusercontent.com/u/159079?"},"repo":{"id":26508501,"name":"sairem/forsalebyinventor","url":"https://api.github.com/repos/sairem/forsalebyinventor"},"payload":{"push_id":536865282,"size":1,"distinct_size":1,"ref":"refs/heads/shopify_ui_2","head":"646cceda770932845d72d1ce134f278ec689d7a4","before":"a86b70cf06f3a419ade6b1d544a59c15611141a3","commits":[{"sha":"646cceda770932845d72d1ce134f278ec689d7a4","author":{"email":"b57bc101627e00cecb051891f553d1e5c44a58df@pghsyscorp.com","name":"Chet Jack"},"message":"got the dogone selects working.","distinct":true,"url":"https://api.github.com/repos/sairem/forsalebyinventor/commits/646cceda770932845d72d1ce134f278ec689d7a4"}]},"public":true,"created_at":"2015-01-01T15:06:05Z"} +,{"id":"2489653877","type":"IssueCommentEvent","actor":{"id":1640033,"login":"jensscherbl","gravatar_id":"","url":"https://api.github.com/users/jensscherbl","avatar_url":"https://avatars.githubusercontent.com/u/1640033?"},"repo":{"id":787760,"name":"symphonycms/jit_image_manipulation","url":"https://api.github.com/repos/symphonycms/jit_image_manipulation"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/symphonycms/jit_image_manipulation/issues/98","labels_url":"https://api.github.com/repos/symphonycms/jit_image_manipulation/issues/98/labels{/name}","comments_url":"https://api.github.com/repos/symphonycms/jit_image_manipulation/issues/98/comments","events_url":"https://api.github.com/repos/symphonycms/jit_image_manipulation/issues/98/events","html_url":"https://github.com/symphonycms/jit_image_manipulation/pull/98","id":53220449,"number":98,"title":"Jit renderer","user":{"login":"brendo","id":69268,"avatar_url":"https://avatars.githubusercontent.com/u/69268?v=3","gravatar_id":"","url":"https://api.github.com/users/brendo","html_url":"https://github.com/brendo","followers_url":"https://api.github.com/users/brendo/followers","following_url":"https://api.github.com/users/brendo/following{/other_user}","gists_url":"https://api.github.com/users/brendo/gists{/gist_id}","starred_url":"https://api.github.com/users/brendo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/brendo/subscriptions","organizations_url":"https://api.github.com/users/brendo/orgs","repos_url":"https://api.github.com/users/brendo/repos","events_url":"https://api.github.com/users/brendo/events{/privacy}","received_events_url":"https://api.github.com/users/brendo/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T14:12:34Z","updated_at":"2015-01-01T15:06:05Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/symphonycms/jit_image_manipulation/pulls/98","html_url":"https://github.com/symphonycms/jit_image_manipulation/pull/98","diff_url":"https://github.com/symphonycms/jit_image_manipulation/pull/98.diff","patch_url":"https://github.com/symphonycms/jit_image_manipulation/pull/98.patch"},"body":"This pull request (and branch) is a major overhaul to the architecture of JIT. Instead of a standalone script, JIT is simply another Renderer which inherits all Symphony functionality. This was made possible by Symphony 2.5, which added the `ModifySymphonyLauncher` delegate. This alleviates the major limitation of JIT in that it can now use delegates.\r\n\r\nI believe this change would make it possible to fix the following by adding in delegates, or with minor changes to the code:\r\n\r\n- Added other modes easily as they can be dropped into `workspace/jit-image-manipulation/filters`, #73\r\n- Adding different cache types, #69\r\n- Allowing image retrieval to come from different sources, #97\r\n\r\nThe code in this pull request is far from release quality, but I've pushed up in response to [the comment](https://github.com/symphonycms/symphony-2/issues/2266#issuecomment-68440077) by @jensscherbl that others could probably run with this better than I can. Math and image manipulation are not my strengths, so I'm happy for interested parties to carry on this work and work towards a 2.0 release!"},"comment":{"url":"https://api.github.com/repos/symphonycms/jit_image_manipulation/issues/comments/68488601","html_url":"https://github.com/symphonycms/jit_image_manipulation/pull/98#issuecomment-68488601","issue_url":"https://api.github.com/repos/symphonycms/jit_image_manipulation/issues/98","id":68488601,"user":{"login":"jensscherbl","id":1640033,"avatar_url":"https://avatars.githubusercontent.com/u/1640033?v=3","gravatar_id":"","url":"https://api.github.com/users/jensscherbl","html_url":"https://github.com/jensscherbl","followers_url":"https://api.github.com/users/jensscherbl/followers","following_url":"https://api.github.com/users/jensscherbl/following{/other_user}","gists_url":"https://api.github.com/users/jensscherbl/gists{/gist_id}","starred_url":"https://api.github.com/users/jensscherbl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jensscherbl/subscriptions","organizations_url":"https://api.github.com/users/jensscherbl/orgs","repos_url":"https://api.github.com/users/jensscherbl/repos","events_url":"https://api.github.com/users/jensscherbl/events{/privacy}","received_events_url":"https://api.github.com/users/jensscherbl/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:06:05Z","updated_at":"2015-01-01T15:06:05Z","body":"The launcher thing is interesting. I thought about another approach a while ago and would like to hear your opinion on that.\r\n\r\nWhat if we reuse existing Symphony functionality for this? Using pages with an image page type, URL parameter and image data source to create recipes?\r\n\r\nModifications could then be defined on a data source level, similar to what we're discussing for text formatters."}},"public":true,"created_at":"2015-01-01T15:06:05Z","org":{"id":334029,"login":"symphonycms","gravatar_id":"","url":"https://api.github.com/orgs/symphonycms","avatar_url":"https://avatars.githubusercontent.com/u/334029?"}} +,{"id":"2489653878","type":"CreateEvent","actor":{"id":1330814,"login":"romainfrancez","gravatar_id":"","url":"https://api.github.com/users/romainfrancez","avatar_url":"https://avatars.githubusercontent.com/u/1330814?"},"repo":{"id":28048124,"name":"bitsandco/generator-ngf","url":"https://api.github.com/repos/bitsandco/generator-ngf"},"payload":{"ref":"feature/37","ref_type":"branch","master_branch":"develop","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:05Z","org":{"id":9888801,"login":"bitsandco","gravatar_id":"","url":"https://api.github.com/orgs/bitsandco","avatar_url":"https://avatars.githubusercontent.com/u/9888801?"}} +,{"id":"2489653879","type":"PushEvent","actor":{"id":10264005,"login":"Melify","gravatar_id":"","url":"https://api.github.com/users/Melify","avatar_url":"https://avatars.githubusercontent.com/u/10264005?"},"repo":{"id":28632467,"name":"Melify-Toolkit/components","url":"https://api.github.com/repos/Melify-Toolkit/components"},"payload":{"push_id":536865283,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a9f07abeb96371299e61e8c15c43569bab05b51f","before":"b4c03658859acd3a096944bec6a3b8a7a5fbb6a2","commits":[{"sha":"a9f07abeb96371299e61e8c15c43569bab05b51f","author":{"email":"5bdcd3c0d4d24ae3e71b3b452a024c6324c7e4bb@melify.com","name":"Mel"},"message":"committed","distinct":true,"url":"https://api.github.com/repos/Melify-Toolkit/components/commits/a9f07abeb96371299e61e8c15c43569bab05b51f"}]},"public":true,"created_at":"2015-01-01T15:06:05Z","org":{"id":10291775,"login":"Melify-Toolkit","gravatar_id":"","url":"https://api.github.com/orgs/Melify-Toolkit","avatar_url":"https://avatars.githubusercontent.com/u/10291775?"}} +,{"id":"2489653880","type":"PushEvent","actor":{"id":8032883,"login":"xiyouMc","gravatar_id":"","url":"https://api.github.com/users/xiyouMc","avatar_url":"https://avatars.githubusercontent.com/u/8032883?"},"repo":{"id":27965734,"name":"xiyouMc/xupt_score_android","url":"https://api.github.com/repos/xiyouMc/xupt_score_android"},"payload":{"push_id":536865285,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"d7eca778624ebb146c06d2129dfe6b8b403efd97","before":"a1f6df8b45022c08d6187cad0363375a5bbc4b7e","commits":[{"sha":"4214a3a40b0ed8ede985eeb517b55615e5499576","author":{"email":"a05dd3464c0cdcc4bcc5649b5497c94023561b54@qq.com","name":"xiyouMc"},"message":"实现在 AddFriendListActivity中点击按钮切换activity","distinct":true,"url":"https://api.github.com/repos/xiyouMc/xupt_score_android/commits/4214a3a40b0ed8ede985eeb517b55615e5499576"},{"sha":"d7eca778624ebb146c06d2129dfe6b8b403efd97","author":{"email":"a05dd3464c0cdcc4bcc5649b5497c94023561b54@qq.com","name":"xiyouMc"},"message":"实现 好友申请和好友推荐按钮的切换 和 各自activity的编写","distinct":true,"url":"https://api.github.com/repos/xiyouMc/xupt_score_android/commits/d7eca778624ebb146c06d2129dfe6b8b403efd97"}]},"public":true,"created_at":"2015-01-01T15:06:05Z"} +,{"id":"2489653881","type":"WatchEvent","actor":{"id":1901588,"login":"yanivnizan","gravatar_id":"","url":"https://api.github.com/users/yanivnizan","avatar_url":"https://avatars.githubusercontent.com/u/1901588?"},"repo":{"id":1588584,"name":"moai/moai-dev","url":"https://api.github.com/repos/moai/moai-dev"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:06:05Z","org":{"id":696279,"login":"moai","gravatar_id":"","url":"https://api.github.com/orgs/moai","avatar_url":"https://avatars.githubusercontent.com/u/696279?"}} +,{"id":"2489653886","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":24107628,"name":"cloudify-cosmo/version-tool","url":"https://api.github.com/repos/cloudify-cosmo/version-tool"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:06Z","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":"2489653891","type":"PushEvent","actor":{"id":6867370,"login":"steveeric","gravatar_id":"","url":"https://api.github.com/users/steveeric","avatar_url":"https://avatars.githubusercontent.com/u/6867370?"},"repo":{"id":27966014,"name":"steveeric/Test_EN_Revolution","url":"https://api.github.com/repos/steveeric/Test_EN_Revolution"},"payload":{"push_id":536865291,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e92e33b06f53cf5d61fa58c207901e52d4838692","before":"c6b36fd81f53cadea8ff0949861e844a1de9d24e","commits":[{"sha":"e92e33b06f53cf5d61fa58c207901e52d4838692","author":{"email":"7dd9b33881225c7ac41dce30c1447db47c41d4af@primary-meta-works.com","name":"shota"},"message":"2015年1月2日 0時2分\n\n-v0.1.1-5 -α\n\n[修正]\n50音表から選択した際の教員名は、ネットワーク上のDBからでなく\n端末内のローカルに設置されているDBから取得する手法に変更しました.","distinct":true,"url":"https://api.github.com/repos/steveeric/Test_EN_Revolution/commits/e92e33b06f53cf5d61fa58c207901e52d4838692"}]},"public":true,"created_at":"2015-01-01T15:06:06Z"} +,{"id":"2489653893","type":"PushEvent","actor":{"id":21938,"login":"flavioc","gravatar_id":"","url":"https://api.github.com/users/flavioc","avatar_url":"https://avatars.githubusercontent.com/u/21938?"},"repo":{"id":1469942,"name":"flavioc/meld","url":"https://api.github.com/repos/flavioc/meld"},"payload":{"push_id":536865293,"size":1,"distinct_size":1,"ref":"refs/heads/compiler","head":"f57b757c84f4694e303437d133a864721a0f087a","before":"b56c9fda5ceb62c27ce9cd08a1a8339f61059134","commits":[{"sha":"f57b757c84f4694e303437d133a864721a0f087a","author":{"email":"f6652002828979796044bc12702fa33ba39e4d01@gmail.com","name":"Flávio Cruz"},"message":"Implement localization.","distinct":true,"url":"https://api.github.com/repos/flavioc/meld/commits/f57b757c84f4694e303437d133a864721a0f087a"}]},"public":true,"created_at":"2015-01-01T15:06:07Z"} +,{"id":"2489653900","type":"PushEvent","actor":{"id":398496,"login":"LudovicRousseau","gravatar_id":"","url":"https://api.github.com/users/LudovicRousseau","avatar_url":"https://avatars.githubusercontent.com/u/398496?"},"repo":{"id":6838904,"name":"OpenSC/engine_pkcs11","url":"https://api.github.com/repos/OpenSC/engine_pkcs11"},"payload":{"push_id":536865296,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3f8af6823ec2f9a093a4ff282f3546cf42a46a0e","before":"5171e82407fd4581a246d82d734ef64b8ad7f2b4","commits":[{"sha":"3f8af6823ec2f9a093a4ff282f3546cf42a46a0e","author":{"email":"4d37b5b136fbbc441e77a9794302478fef70bb5a@gmail.com","name":"Ludovic Rousseau"},"message":"Create README.md\n\nFrom Petr Pisar email \"Re: [Opensc-devel] Relation between engine_pkcs11 and openssl\" http://sourceforge.net/p/opensc/mailman/message/33195265/","distinct":true,"url":"https://api.github.com/repos/OpenSC/engine_pkcs11/commits/3f8af6823ec2f9a093a4ff282f3546cf42a46a0e"}]},"public":true,"created_at":"2015-01-01T15:06:08Z","org":{"id":895249,"login":"OpenSC","gravatar_id":"","url":"https://api.github.com/orgs/OpenSC","avatar_url":"https://avatars.githubusercontent.com/u/895249?"}} +,{"id":"2489653901","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":24107628,"name":"cloudify-cosmo/version-tool","url":"https://api.github.com/repos/cloudify-cosmo/version-tool"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify's version upgrade tool","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:08Z","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":"2489653902","type":"PushEvent","actor":{"id":4686379,"login":"topilski","gravatar_id":"","url":"https://api.github.com/users/topilski","avatar_url":"https://avatars.githubusercontent.com/u/4686379?"},"repo":{"id":14664276,"name":"fasto/fastoredis","url":"https://api.github.com/repos/fasto/fastoredis"},"payload":{"push_id":536865297,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"af4f16e89f0a97f4a492c682781a2736086403c4","before":"484a4b1f83ae63078bd29cc8aff6a6e5c8514b3b","commits":[{"sha":"0f5e743640cf675fe67e358e651dc1bbc2107939","author":{"email":"748a9380df1c4346a61a2e60bbb988e80a8ce16f@gmail.com","name":"topilski"},"message":"Fix double conversions","distinct":true,"url":"https://api.github.com/repos/fasto/fastoredis/commits/0f5e743640cf675fe67e358e651dc1bbc2107939"},{"sha":"af4f16e89f0a97f4a492c682781a2736086403c4","author":{"email":"748a9380df1c4346a61a2e60bbb988e80a8ce16f@gmail.com","name":"topilski"},"message":"History graph real time","distinct":true,"url":"https://api.github.com/repos/fasto/fastoredis/commits/af4f16e89f0a97f4a492c682781a2736086403c4"}]},"public":true,"created_at":"2015-01-01T15:06:08Z","org":{"id":6024327,"login":"fasto","gravatar_id":"","url":"https://api.github.com/orgs/fasto","avatar_url":"https://avatars.githubusercontent.com/u/6024327?"}} +,{"id":"2489653907","type":"IssuesEvent","actor":{"id":8301972,"login":"issue-reporter","gravatar_id":"","url":"https://api.github.com/users/issue-reporter","avatar_url":"https://avatars.githubusercontent.com/u/8301972?"},"repo":{"id":17531908,"name":"Shippable/support","url":"https://api.github.com/repos/Shippable/support"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/Shippable/support/issues/930","labels_url":"https://api.github.com/repos/Shippable/support/issues/930/labels{/name}","comments_url":"https://api.github.com/repos/Shippable/support/issues/930/comments","events_url":"https://api.github.com/repos/Shippable/support/issues/930/events","html_url":"https://github.com/Shippable/support/issues/930","id":53221454,"number":930,"title":"Ruby 2.2.0 support","user":{"login":"issue-reporter","id":8301972,"avatar_url":"https://avatars.githubusercontent.com/u/8301972?v=3","gravatar_id":"","url":"https://api.github.com/users/issue-reporter","html_url":"https://github.com/issue-reporter","followers_url":"https://api.github.com/users/issue-reporter/followers","following_url":"https://api.github.com/users/issue-reporter/following{/other_user}","gists_url":"https://api.github.com/users/issue-reporter/gists{/gist_id}","starred_url":"https://api.github.com/users/issue-reporter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/issue-reporter/subscriptions","organizations_url":"https://api.github.com/users/issue-reporter/orgs","repos_url":"https://api.github.com/users/issue-reporter/repos","events_url":"https://api.github.com/users/issue-reporter/events{/privacy}","received_events_url":"https://api.github.com/users/issue-reporter/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:06:09Z","updated_at":"2015-01-01T15:06:09Z","closed_at":null,"body":"Do you happen to know when Ruby 2.2.0 support will be added? Relevant output is below.\r\n\r\n```\r\n git_sync ✓ 1 seconds\r\nruby-2.2.0-preview1 is not installed.\r\nTo install do: 'rvm install ruby-2.2.0-preview1'\r\n install ✗\r\nshippable_retry bundle install --gemfile=Gemfile\r\nYour Ruby version is 1.9.3, but your Gemfile specified 2.2.0\r\nYour Ruby version is 1.9.3, but your Gemfile specified 2.2.0\r\nYour Ruby version is 1.9.3, but your Gemfile specified 2.2.0\r\nBuild completed\r\nSkipping artifact upload\r\nBuild completed\r\n```\r\n\r\nThank you very much."}},"public":true,"created_at":"2015-01-01T15:06:09Z","org":{"id":5647221,"login":"Shippable","gravatar_id":"","url":"https://api.github.com/orgs/Shippable","avatar_url":"https://avatars.githubusercontent.com/u/5647221?"}} +,{"id":"2489653909","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":17395765,"name":"OTRS/Fred","url":"https://api.github.com/repos/OTRS/Fred"},"payload":{"push_id":536865301,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"209e12a103daed53e01f5a4fb9d9c667cf8520e1","before":"e16ac8fd1a0baa8bfba2ce21a85ed3e872aec4ee","commits":[{"sha":"209e12a103daed53e01f5a4fb9d9c667cf8520e1","author":{"email":"2497d761a8fe182513acbb1aafe37a7278b43d72@otrs.com","name":"Manuel Hecht"},"message":"Updated copyright date.","distinct":true,"url":"https://api.github.com/repos/OTRS/Fred/commits/209e12a103daed53e01f5a4fb9d9c667cf8520e1"}]},"public":true,"created_at":"2015-01-01T15:06:09Z","org":{"id":3065906,"login":"OTRS","gravatar_id":"","url":"https://api.github.com/orgs/OTRS","avatar_url":"https://avatars.githubusercontent.com/u/3065906?"}} +,{"id":"2489653910","type":"PushEvent","actor":{"id":4301128,"login":"elsafy","gravatar_id":"","url":"https://api.github.com/users/elsafy","avatar_url":"https://avatars.githubusercontent.com/u/4301128?"},"repo":{"id":23516424,"name":"elsafy/MOM_APIary","url":"https://api.github.com/repos/elsafy/MOM_APIary"},"payload":{"push_id":536865302,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"19dda9287a7773b2f63263b77ab6bb025e4f7861","before":"efad81ed809fb85c12f6140c4f7b5464da7fc227","commits":[{"sha":"19dda9287a7773b2f63263b77ab6bb025e4f7861","author":{"email":"67e59ba1c3b9a85786616b23aba48ac21ef3ecb9@gmail.com","name":"M.Farid"},"message":"put deprecated notes on old system APIs","distinct":true,"url":"https://api.github.com/repos/elsafy/MOM_APIary/commits/19dda9287a7773b2f63263b77ab6bb025e4f7861"}]},"public":true,"created_at":"2015-01-01T15:06:09Z"} +,{"id":"2489653911","type":"PullRequestEvent","actor":{"id":282825,"login":"DragonBe","gravatar_id":"","url":"https://api.github.com/users/DragonBe","avatar_url":"https://avatars.githubusercontent.com/u/282825?"},"repo":{"id":2927058,"name":"speckcommerce/SpeckCatalog","url":"https://api.github.com/repos/speckcommerce/SpeckCatalog"},"payload":{"action":"opened","number":118,"pull_request":{"url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/pulls/118","id":26743817,"html_url":"https://github.com/speckcommerce/SpeckCatalog/pull/118","diff_url":"https://github.com/speckcommerce/SpeckCatalog/pull/118.diff","patch_url":"https://github.com/speckcommerce/SpeckCatalog/pull/118.patch","issue_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/issues/118","number":118,"state":"open","locked":false,"title":"Issue #117: removing edp-sub-layout from project as the project is not on packagist","user":{"login":"DragonBe","id":282825,"avatar_url":"https://avatars.githubusercontent.com/u/282825?v=3","gravatar_id":"","url":"https://api.github.com/users/DragonBe","html_url":"https://github.com/DragonBe","followers_url":"https://api.github.com/users/DragonBe/followers","following_url":"https://api.github.com/users/DragonBe/following{/other_user}","gists_url":"https://api.github.com/users/DragonBe/gists{/gist_id}","starred_url":"https://api.github.com/users/DragonBe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DragonBe/subscriptions","organizations_url":"https://api.github.com/users/DragonBe/orgs","repos_url":"https://api.github.com/users/DragonBe/repos","events_url":"https://api.github.com/users/DragonBe/events{/privacy}","received_events_url":"https://api.github.com/users/DragonBe/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:06:09Z","updated_at":"2015-01-01T15:06:09Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/pulls/118/commits","review_comments_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/pulls/118/comments","review_comment_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/pulls/comments/{number}","comments_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/issues/118/comments","statuses_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/statuses/066ea147de14a52f29886b707498e8df7ce9e30c","head":{"label":"DragonBe:issue-117","ref":"issue-117","sha":"066ea147de14a52f29886b707498e8df7ce9e30c","user":{"login":"DragonBe","id":282825,"avatar_url":"https://avatars.githubusercontent.com/u/282825?v=3","gravatar_id":"","url":"https://api.github.com/users/DragonBe","html_url":"https://github.com/DragonBe","followers_url":"https://api.github.com/users/DragonBe/followers","following_url":"https://api.github.com/users/DragonBe/following{/other_user}","gists_url":"https://api.github.com/users/DragonBe/gists{/gist_id}","starred_url":"https://api.github.com/users/DragonBe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DragonBe/subscriptions","organizations_url":"https://api.github.com/users/DragonBe/orgs","repos_url":"https://api.github.com/users/DragonBe/repos","events_url":"https://api.github.com/users/DragonBe/events{/privacy}","received_events_url":"https://api.github.com/users/DragonBe/received_events","type":"User","site_admin":false},"repo":{"id":28687507,"name":"SpeckCatalog","full_name":"DragonBe/SpeckCatalog","owner":{"login":"DragonBe","id":282825,"avatar_url":"https://avatars.githubusercontent.com/u/282825?v=3","gravatar_id":"","url":"https://api.github.com/users/DragonBe","html_url":"https://github.com/DragonBe","followers_url":"https://api.github.com/users/DragonBe/followers","following_url":"https://api.github.com/users/DragonBe/following{/other_user}","gists_url":"https://api.github.com/users/DragonBe/gists{/gist_id}","starred_url":"https://api.github.com/users/DragonBe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DragonBe/subscriptions","organizations_url":"https://api.github.com/users/DragonBe/orgs","repos_url":"https://api.github.com/users/DragonBe/repos","events_url":"https://api.github.com/users/DragonBe/events{/privacy}","received_events_url":"https://api.github.com/users/DragonBe/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/DragonBe/SpeckCatalog","description":"","fork":true,"url":"https://api.github.com/repos/DragonBe/SpeckCatalog","forks_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/forks","keys_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/keys{/key_id}","collaborators_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/teams","hooks_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/hooks","issue_events_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/issues/events{/number}","events_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/events","assignees_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/assignees{/user}","branches_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/branches{/branch}","tags_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/tags","blobs_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/git/refs{/sha}","trees_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/git/trees{/sha}","statuses_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/statuses/{sha}","languages_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/languages","stargazers_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/stargazers","contributors_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/contributors","subscribers_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/subscribers","subscription_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/subscription","commits_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/commits{/sha}","git_commits_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/git/commits{/sha}","comments_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/comments{/number}","issue_comment_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/issues/comments/{number}","contents_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/contents/{+path}","compare_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/compare/{base}...{head}","merges_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/merges","archive_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/downloads","issues_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/issues{/number}","pulls_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/pulls{/number}","milestones_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/milestones{/number}","notifications_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/labels{/name}","releases_url":"https://api.github.com/repos/DragonBe/SpeckCatalog/releases{/id}","created_at":"2015-01-01T13:58:03Z","updated_at":"2015-01-01T14:35:08Z","pushed_at":"2015-01-01T15:04:38Z","git_url":"git://github.com/DragonBe/SpeckCatalog.git","ssh_url":"git@github.com:DragonBe/SpeckCatalog.git","clone_url":"https://github.com/DragonBe/SpeckCatalog.git","svn_url":"https://github.com/DragonBe/SpeckCatalog","homepage":"","size":2223,"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":"speckcommerce:master","ref":"master","sha":"c233d6fe1cd152faf72de7b433633d199d102466","user":{"login":"speckcommerce","id":1194368,"avatar_url":"https://avatars.githubusercontent.com/u/1194368?v=3","gravatar_id":"","url":"https://api.github.com/users/speckcommerce","html_url":"https://github.com/speckcommerce","followers_url":"https://api.github.com/users/speckcommerce/followers","following_url":"https://api.github.com/users/speckcommerce/following{/other_user}","gists_url":"https://api.github.com/users/speckcommerce/gists{/gist_id}","starred_url":"https://api.github.com/users/speckcommerce/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/speckcommerce/subscriptions","organizations_url":"https://api.github.com/users/speckcommerce/orgs","repos_url":"https://api.github.com/users/speckcommerce/repos","events_url":"https://api.github.com/users/speckcommerce/events{/privacy}","received_events_url":"https://api.github.com/users/speckcommerce/received_events","type":"Organization","site_admin":false},"repo":{"id":2927058,"name":"SpeckCatalog","full_name":"speckcommerce/SpeckCatalog","owner":{"login":"speckcommerce","id":1194368,"avatar_url":"https://avatars.githubusercontent.com/u/1194368?v=3","gravatar_id":"","url":"https://api.github.com/users/speckcommerce","html_url":"https://github.com/speckcommerce","followers_url":"https://api.github.com/users/speckcommerce/followers","following_url":"https://api.github.com/users/speckcommerce/following{/other_user}","gists_url":"https://api.github.com/users/speckcommerce/gists{/gist_id}","starred_url":"https://api.github.com/users/speckcommerce/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/speckcommerce/subscriptions","organizations_url":"https://api.github.com/users/speckcommerce/orgs","repos_url":"https://api.github.com/users/speckcommerce/repos","events_url":"https://api.github.com/users/speckcommerce/events{/privacy}","received_events_url":"https://api.github.com/users/speckcommerce/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/speckcommerce/SpeckCatalog","description":"","fork":false,"url":"https://api.github.com/repos/speckcommerce/SpeckCatalog","forks_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/forks","keys_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/keys{/key_id}","collaborators_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/teams","hooks_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/hooks","issue_events_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/issues/events{/number}","events_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/events","assignees_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/assignees{/user}","branches_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/branches{/branch}","tags_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/tags","blobs_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/git/refs{/sha}","trees_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/git/trees{/sha}","statuses_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/statuses/{sha}","languages_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/languages","stargazers_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/stargazers","contributors_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/contributors","subscribers_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/subscribers","subscription_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/subscription","commits_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/commits{/sha}","git_commits_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/git/commits{/sha}","comments_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/comments{/number}","issue_comment_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/issues/comments/{number}","contents_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/contents/{+path}","compare_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/compare/{base}...{head}","merges_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/merges","archive_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/downloads","issues_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/issues{/number}","pulls_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/pulls{/number}","milestones_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/milestones{/number}","notifications_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/labels{/name}","releases_url":"https://api.github.com/repos/speckcommerce/SpeckCatalog/releases{/id}","created_at":"2011-12-06T18:49:50Z","updated_at":"2014-12-20T15:52:12Z","pushed_at":"2014-07-07T15:04:10Z","git_url":"git://github.com/speckcommerce/SpeckCatalog.git","ssh_url":"git@github.com:speckcommerce/SpeckCatalog.git","clone_url":"https://github.com/speckcommerce/SpeckCatalog.git","svn_url":"https://github.com/speckcommerce/SpeckCatalog","homepage":"","size":2811,"stargazers_count":20,"watchers_count":20,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":22,"mirror_url":null,"open_issues_count":9,"forks":22,"open_issues":9,"watchers":20,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/speckcommerce/SpeckCatalog/pulls/118"},"html":{"href":"https://github.com/speckcommerce/SpeckCatalog/pull/118"},"issue":{"href":"https://api.github.com/repos/speckcommerce/SpeckCatalog/issues/118"},"comments":{"href":"https://api.github.com/repos/speckcommerce/SpeckCatalog/issues/118/comments"},"review_comments":{"href":"https://api.github.com/repos/speckcommerce/SpeckCatalog/pulls/118/comments"},"review_comment":{"href":"https://api.github.com/repos/speckcommerce/SpeckCatalog/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/speckcommerce/SpeckCatalog/pulls/118/commits"},"statuses":{"href":"https://api.github.com/repos/speckcommerce/SpeckCatalog/statuses/066ea147de14a52f29886b707498e8df7ce9e30c"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":2,"additions":2,"deletions":3,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:06:10Z","org":{"id":1194368,"login":"speckcommerce","gravatar_id":"","url":"https://api.github.com/orgs/speckcommerce","avatar_url":"https://avatars.githubusercontent.com/u/1194368?"}} +,{"id":"2489653915","type":"PushEvent","actor":{"id":3960243,"login":"wp-plugins-user","gravatar_id":"","url":"https://api.github.com/users/wp-plugins-user","avatar_url":"https://avatars.githubusercontent.com/u/3960243?"},"repo":{"id":27287395,"name":"wp-plugins/spam-hammer","url":"https://api.github.com/repos/wp-plugins/spam-hammer"},"payload":{"push_id":536865304,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7a765187a58b84eb5dc5ffa5cb1556b86b3ccb1c","before":"1fa7c7274691ee7b7a05d1696664dfab610428d3","commits":[{"sha":"7a765187a58b84eb5dc5ffa5cb1556b86b3ccb1c","author":{"email":"8177b3ca125b2874291549da03b6ae3b620b0c28@b8457f37-d9ea-0310-8a92-e5e31aec5664","name":"wpspamhammer"},"message":"Readme.txt Update. Total Spam Attacks: 15,163,847\n\ngit-svn-id: https://plugins.svn.wordpress.org/spam-hammer/trunk@1057917 b8457f37-d9ea-0310-8a92-e5e31aec5664","distinct":true,"url":"https://api.github.com/repos/wp-plugins/spam-hammer/commits/7a765187a58b84eb5dc5ffa5cb1556b86b3ccb1c"}]},"public":true,"created_at":"2015-01-01T15:06:10Z","org":{"id":2996849,"login":"wp-plugins","gravatar_id":"","url":"https://api.github.com/orgs/wp-plugins","avatar_url":"https://avatars.githubusercontent.com/u/2996849?"}} +,{"id":"2489653919","type":"PushEvent","actor":{"id":1131567,"login":"shinnn","gravatar_id":"","url":"https://api.github.com/users/shinnn","avatar_url":"https://avatars.githubusercontent.com/u/1131567?"},"repo":{"id":23858813,"name":"shinnn/node-brace-expand-join","url":"https://api.github.com/repos/shinnn/node-brace-expand-join"},"payload":{"push_id":536865307,"size":5,"distinct_size":5,"ref":"refs/heads/master","head":"5d289ab9ad281075175b9cf1ae3ca13d87093d48","before":"eb3ee60787f73ad589d1aa25992e227cb8cbac08","commits":[{"sha":"1d5f1e690460bbc177ecf11cea75e0f384807d95","author":{"email":"f1b266ca50a23de22cba2e142aa981f15ff4a1c3@gmail.com","name":"Shinnosuke Watanabe"},"message":"use feature-specific modules","distinct":true,"url":"https://api.github.com/repos/shinnn/node-brace-expand-join/commits/1d5f1e690460bbc177ecf11cea75e0f384807d95"},{"sha":"c9c8b646793338fa320276ad6df7db8e85d72261","author":{"email":"f1b266ca50a23de22cba2e142aa981f15ff4a1c3@gmail.com","name":"Shinnosuke Watanabe"},"message":"support bower","distinct":true,"url":"https://api.github.com/repos/shinnn/node-brace-expand-join/commits/c9c8b646793338fa320276ad6df7db8e85d72261"},{"sha":"e5ba077a0e151d33b713f1b23b1043fc29c6c9c1","author":{"email":"f1b266ca50a23de22cba2e142aa981f15ff4a1c3@gmail.com","name":"Shinnosuke Watanabe"},"message":"use jscsConfig instead of .jscs.json\n\nhttps://github.com/jscs-dev/node-jscs#--config","distinct":true,"url":"https://api.github.com/repos/shinnn/node-brace-expand-join/commits/e5ba077a0e151d33b713f1b23b1043fc29c6c9c1"},{"sha":"aea4f6ab3c9081726a6dcc98aaa5fcaba157783f","author":{"email":"f1b266ca50a23de22cba2e142aa981f15ff4a1c3@gmail.com","name":"Shinnosuke Watanabe"},"message":"quicken CI build","distinct":true,"url":"https://api.github.com/repos/shinnn/node-brace-expand-join/commits/aea4f6ab3c9081726a6dcc98aaa5fcaba157783f"},{"sha":"5d289ab9ad281075175b9cf1ae3ca13d87093d48","author":{"email":"f1b266ca50a23de22cba2e142aa981f15ff4a1c3@gmail.com","name":"Shinnosuke Watanabe"},"message":"use flat badges","distinct":true,"url":"https://api.github.com/repos/shinnn/node-brace-expand-join/commits/5d289ab9ad281075175b9cf1ae3ca13d87093d48"}]},"public":true,"created_at":"2015-01-01T15:06:10Z"} +,{"id":"2489653921","type":"PushEvent","actor":{"id":6073586,"login":"joechina","gravatar_id":"","url":"https://api.github.com/users/joechina","avatar_url":"https://avatars.githubusercontent.com/u/6073586?"},"repo":{"id":28602943,"name":"joechina/eclasso2oSource2015","url":"https://api.github.com/repos/joechina/eclasso2oSource2015"},"payload":{"push_id":536865308,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"c4cc41eb97d420c3d9474fa25893cb83c40a7ecc","before":"ed6106cb7fbf9cc76e0cb0b8298b2d558b95739d","commits":[{"sha":"a3187d81a3929e1b06321b47550cce8a37b6a449","author":{"email":"8d0bad4b8be372c203bf3a118580b76922e49078@hotmail.com","name":"joechina"},"message":"clean up","distinct":true,"url":"https://api.github.com/repos/joechina/eclasso2oSource2015/commits/a3187d81a3929e1b06321b47550cce8a37b6a449"},{"sha":"a8797ca299070bb245b952543dd0d0e45c00d889","author":{"email":"8d0bad4b8be372c203bf3a118580b76922e49078@hotmail.com","name":"joechina"},"message":"Rebuild","distinct":true,"url":"https://api.github.com/repos/joechina/eclasso2oSource2015/commits/a8797ca299070bb245b952543dd0d0e45c00d889"},{"sha":"c4cc41eb97d420c3d9474fa25893cb83c40a7ecc","author":{"email":"8d0bad4b8be372c203bf3a118580b76922e49078@hotmail.com","name":"joechina"},"message":"20150101","distinct":true,"url":"https://api.github.com/repos/joechina/eclasso2oSource2015/commits/c4cc41eb97d420c3d9474fa25893cb83c40a7ecc"}]},"public":true,"created_at":"2015-01-01T15:06:10Z"} +,{"id":"2489653930","type":"ForkEvent","actor":{"id":10364092,"login":"ayoumination","gravatar_id":"","url":"https://api.github.com/users/ayoumination","avatar_url":"https://avatars.githubusercontent.com/u/10364092?"},"repo":{"id":1539787,"name":"play/play","url":"https://api.github.com/repos/play/play"},"payload":{"forkee":{"id":28688708,"name":"play","full_name":"ayoumination/play","owner":{"login":"ayoumination","id":10364092,"avatar_url":"https://avatars.githubusercontent.com/u/10364092?v=3","gravatar_id":"","url":"https://api.github.com/users/ayoumination","html_url":"https://github.com/ayoumination","followers_url":"https://api.github.com/users/ayoumination/followers","following_url":"https://api.github.com/users/ayoumination/following{/other_user}","gists_url":"https://api.github.com/users/ayoumination/gists{/gist_id}","starred_url":"https://api.github.com/users/ayoumination/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ayoumination/subscriptions","organizations_url":"https://api.github.com/users/ayoumination/orgs","repos_url":"https://api.github.com/users/ayoumination/repos","events_url":"https://api.github.com/users/ayoumination/events{/privacy}","received_events_url":"https://api.github.com/users/ayoumination/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ayoumination/play","description":"play ► — your company's dj","fork":true,"url":"https://api.github.com/repos/ayoumination/play","forks_url":"https://api.github.com/repos/ayoumination/play/forks","keys_url":"https://api.github.com/repos/ayoumination/play/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ayoumination/play/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ayoumination/play/teams","hooks_url":"https://api.github.com/repos/ayoumination/play/hooks","issue_events_url":"https://api.github.com/repos/ayoumination/play/issues/events{/number}","events_url":"https://api.github.com/repos/ayoumination/play/events","assignees_url":"https://api.github.com/repos/ayoumination/play/assignees{/user}","branches_url":"https://api.github.com/repos/ayoumination/play/branches{/branch}","tags_url":"https://api.github.com/repos/ayoumination/play/tags","blobs_url":"https://api.github.com/repos/ayoumination/play/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ayoumination/play/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ayoumination/play/git/refs{/sha}","trees_url":"https://api.github.com/repos/ayoumination/play/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ayoumination/play/statuses/{sha}","languages_url":"https://api.github.com/repos/ayoumination/play/languages","stargazers_url":"https://api.github.com/repos/ayoumination/play/stargazers","contributors_url":"https://api.github.com/repos/ayoumination/play/contributors","subscribers_url":"https://api.github.com/repos/ayoumination/play/subscribers","subscription_url":"https://api.github.com/repos/ayoumination/play/subscription","commits_url":"https://api.github.com/repos/ayoumination/play/commits{/sha}","git_commits_url":"https://api.github.com/repos/ayoumination/play/git/commits{/sha}","comments_url":"https://api.github.com/repos/ayoumination/play/comments{/number}","issue_comment_url":"https://api.github.com/repos/ayoumination/play/issues/comments/{number}","contents_url":"https://api.github.com/repos/ayoumination/play/contents/{+path}","compare_url":"https://api.github.com/repos/ayoumination/play/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ayoumination/play/merges","archive_url":"https://api.github.com/repos/ayoumination/play/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ayoumination/play/downloads","issues_url":"https://api.github.com/repos/ayoumination/play/issues{/number}","pulls_url":"https://api.github.com/repos/ayoumination/play/pulls{/number}","milestones_url":"https://api.github.com/repos/ayoumination/play/milestones{/number}","notifications_url":"https://api.github.com/repos/ayoumination/play/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ayoumination/play/labels{/name}","releases_url":"https://api.github.com/repos/ayoumination/play/releases{/id}","created_at":"2015-01-01T15:06:11Z","updated_at":"2014-12-31T16:49:49Z","pushed_at":"2014-05-05T22:03:43Z","git_url":"git://github.com/ayoumination/play.git","ssh_url":"git@github.com:ayoumination/play.git","clone_url":"https://github.com/ayoumination/play.git","svn_url":"https://github.com/ayoumination/play","homepage":"http://zachholman.com/screencast/play/","size":9541,"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:06:12Z","org":{"id":1609638,"login":"play","gravatar_id":"","url":"https://api.github.com/orgs/play","avatar_url":"https://avatars.githubusercontent.com/u/1609638?"}} +,{"id":"2489653933","type":"IssueCommentEvent","actor":{"id":37787,"login":"daleharvey","gravatar_id":"","url":"https://api.github.com/users/daleharvey","avatar_url":"https://avatars.githubusercontent.com/u/37787?"},"repo":{"id":714074,"name":"pouchdb/pouchdb","url":"https://api.github.com/repos/pouchdb/pouchdb"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3306","labels_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3306/labels{/name}","comments_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3306/comments","events_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3306/events","html_url":"https://github.com/pouchdb/pouchdb/pull/3306","id":53113983,"number":3306,"title":"(#136) - Skip \"Revs diff with empty revs\" / CouchDB 2.0","user":{"login":"willholley","id":97787,"avatar_url":"https://avatars.githubusercontent.com/u/97787?v=3","gravatar_id":"","url":"https://api.github.com/users/willholley","html_url":"https://github.com/willholley","followers_url":"https://api.github.com/users/willholley/followers","following_url":"https://api.github.com/users/willholley/following{/other_user}","gists_url":"https://api.github.com/users/willholley/gists{/gist_id}","starred_url":"https://api.github.com/users/willholley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/willholley/subscriptions","organizations_url":"https://api.github.com/users/willholley/orgs","repos_url":"https://api.github.com/users/willholley/repos","events_url":"https://api.github.com/users/willholley/events{/privacy}","received_events_url":"https://api.github.com/users/willholley/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-30T12:58:31Z","updated_at":"2015-01-01T15:06:11Z","closed_at":"2015-01-01T15:06:11Z","pull_request":{"url":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3306","html_url":"https://github.com/pouchdb/pouchdb/pull/3306","diff_url":"https://github.com/pouchdb/pouchdb/pull/3306.diff","patch_url":"https://github.com/pouchdb/pouchdb/pull/3306.patch"},"body":"CouchDB 2.0 currently fails to respond when an empty revision set is passed to _revs_diff (COUCHDB-2531). Until this is fixed, skip the test."},"comment":{"url":"https://api.github.com/repos/pouchdb/pouchdb/issues/comments/68488603","html_url":"https://github.com/pouchdb/pouchdb/pull/3306#issuecomment-68488603","issue_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3306","id":68488603,"user":{"login":"daleharvey","id":37787,"avatar_url":"https://avatars.githubusercontent.com/u/37787?v=3","gravatar_id":"","url":"https://api.github.com/users/daleharvey","html_url":"https://github.com/daleharvey","followers_url":"https://api.github.com/users/daleharvey/followers","following_url":"https://api.github.com/users/daleharvey/following{/other_user}","gists_url":"https://api.github.com/users/daleharvey/gists{/gist_id}","starred_url":"https://api.github.com/users/daleharvey/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/daleharvey/subscriptions","organizations_url":"https://api.github.com/users/daleharvey/orgs","repos_url":"https://api.github.com/users/daleharvey/repos","events_url":"https://api.github.com/users/daleharvey/events{/privacy}","received_events_url":"https://api.github.com/users/daleharvey/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:06:11Z","updated_at":"2015-01-01T15:06:11Z","body":"Thanks - https://github.com/pouchdb/pouchdb/commit/123cb573cd062f3a71288aad97fe3bd9379dc524"}},"public":true,"created_at":"2015-01-01T15:06:12Z","org":{"id":3406112,"login":"pouchdb","gravatar_id":"","url":"https://api.github.com/orgs/pouchdb","avatar_url":"https://avatars.githubusercontent.com/u/3406112?"}} +,{"id":"2489653934","type":"PullRequestEvent","actor":{"id":37787,"login":"daleharvey","gravatar_id":"","url":"https://api.github.com/users/daleharvey","avatar_url":"https://avatars.githubusercontent.com/u/37787?"},"repo":{"id":714074,"name":"pouchdb/pouchdb","url":"https://api.github.com/repos/pouchdb/pouchdb"},"payload":{"action":"closed","number":3306,"pull_request":{"url":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3306","id":26684426,"html_url":"https://github.com/pouchdb/pouchdb/pull/3306","diff_url":"https://github.com/pouchdb/pouchdb/pull/3306.diff","patch_url":"https://github.com/pouchdb/pouchdb/pull/3306.patch","issue_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3306","number":3306,"state":"closed","locked":false,"title":"(#136) - Skip \"Revs diff with empty revs\" / CouchDB 2.0","user":{"login":"willholley","id":97787,"avatar_url":"https://avatars.githubusercontent.com/u/97787?v=3","gravatar_id":"","url":"https://api.github.com/users/willholley","html_url":"https://github.com/willholley","followers_url":"https://api.github.com/users/willholley/followers","following_url":"https://api.github.com/users/willholley/following{/other_user}","gists_url":"https://api.github.com/users/willholley/gists{/gist_id}","starred_url":"https://api.github.com/users/willholley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/willholley/subscriptions","organizations_url":"https://api.github.com/users/willholley/orgs","repos_url":"https://api.github.com/users/willholley/repos","events_url":"https://api.github.com/users/willholley/events{/privacy}","received_events_url":"https://api.github.com/users/willholley/received_events","type":"User","site_admin":false},"body":"CouchDB 2.0 currently fails to respond when an empty revision set is passed to _revs_diff (COUCHDB-2531). Until this is fixed, skip the test.","created_at":"2014-12-30T12:58:31Z","updated_at":"2015-01-01T15:06:11Z","closed_at":"2015-01-01T15:06:11Z","merged_at":null,"merge_commit_sha":"1ba573c2a674e92ded8fbbe6b3b9a10875a1cec5","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3306/commits","review_comments_url":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3306/comments","review_comment_url":"https://api.github.com/repos/pouchdb/pouchdb/pulls/comments/{number}","comments_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3306/comments","statuses_url":"https://api.github.com/repos/pouchdb/pouchdb/statuses/f855a0c8f4ccc024e9028644a769ca82c7571cc6","head":{"label":"willholley:136-skip-revs-diff-empty-revs","ref":"136-skip-revs-diff-empty-revs","sha":"f855a0c8f4ccc024e9028644a769ca82c7571cc6","user":{"login":"willholley","id":97787,"avatar_url":"https://avatars.githubusercontent.com/u/97787?v=3","gravatar_id":"","url":"https://api.github.com/users/willholley","html_url":"https://github.com/willholley","followers_url":"https://api.github.com/users/willholley/followers","following_url":"https://api.github.com/users/willholley/following{/other_user}","gists_url":"https://api.github.com/users/willholley/gists{/gist_id}","starred_url":"https://api.github.com/users/willholley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/willholley/subscriptions","organizations_url":"https://api.github.com/users/willholley/orgs","repos_url":"https://api.github.com/users/willholley/repos","events_url":"https://api.github.com/users/willholley/events{/privacy}","received_events_url":"https://api.github.com/users/willholley/received_events","type":"User","site_admin":false},"repo":{"id":9749351,"name":"pouchdb","full_name":"willholley/pouchdb","owner":{"login":"willholley","id":97787,"avatar_url":"https://avatars.githubusercontent.com/u/97787?v=3","gravatar_id":"","url":"https://api.github.com/users/willholley","html_url":"https://github.com/willholley","followers_url":"https://api.github.com/users/willholley/followers","following_url":"https://api.github.com/users/willholley/following{/other_user}","gists_url":"https://api.github.com/users/willholley/gists{/gist_id}","starred_url":"https://api.github.com/users/willholley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/willholley/subscriptions","organizations_url":"https://api.github.com/users/willholley/orgs","repos_url":"https://api.github.com/users/willholley/repos","events_url":"https://api.github.com/users/willholley/events{/privacy}","received_events_url":"https://api.github.com/users/willholley/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/willholley/pouchdb","description":"PouchDB is a pocket-sized database.","fork":true,"url":"https://api.github.com/repos/willholley/pouchdb","forks_url":"https://api.github.com/repos/willholley/pouchdb/forks","keys_url":"https://api.github.com/repos/willholley/pouchdb/keys{/key_id}","collaborators_url":"https://api.github.com/repos/willholley/pouchdb/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/willholley/pouchdb/teams","hooks_url":"https://api.github.com/repos/willholley/pouchdb/hooks","issue_events_url":"https://api.github.com/repos/willholley/pouchdb/issues/events{/number}","events_url":"https://api.github.com/repos/willholley/pouchdb/events","assignees_url":"https://api.github.com/repos/willholley/pouchdb/assignees{/user}","branches_url":"https://api.github.com/repos/willholley/pouchdb/branches{/branch}","tags_url":"https://api.github.com/repos/willholley/pouchdb/tags","blobs_url":"https://api.github.com/repos/willholley/pouchdb/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/willholley/pouchdb/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/willholley/pouchdb/git/refs{/sha}","trees_url":"https://api.github.com/repos/willholley/pouchdb/git/trees{/sha}","statuses_url":"https://api.github.com/repos/willholley/pouchdb/statuses/{sha}","languages_url":"https://api.github.com/repos/willholley/pouchdb/languages","stargazers_url":"https://api.github.com/repos/willholley/pouchdb/stargazers","contributors_url":"https://api.github.com/repos/willholley/pouchdb/contributors","subscribers_url":"https://api.github.com/repos/willholley/pouchdb/subscribers","subscription_url":"https://api.github.com/repos/willholley/pouchdb/subscription","commits_url":"https://api.github.com/repos/willholley/pouchdb/commits{/sha}","git_commits_url":"https://api.github.com/repos/willholley/pouchdb/git/commits{/sha}","comments_url":"https://api.github.com/repos/willholley/pouchdb/comments{/number}","issue_comment_url":"https://api.github.com/repos/willholley/pouchdb/issues/comments/{number}","contents_url":"https://api.github.com/repos/willholley/pouchdb/contents/{+path}","compare_url":"https://api.github.com/repos/willholley/pouchdb/compare/{base}...{head}","merges_url":"https://api.github.com/repos/willholley/pouchdb/merges","archive_url":"https://api.github.com/repos/willholley/pouchdb/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/willholley/pouchdb/downloads","issues_url":"https://api.github.com/repos/willholley/pouchdb/issues{/number}","pulls_url":"https://api.github.com/repos/willholley/pouchdb/pulls{/number}","milestones_url":"https://api.github.com/repos/willholley/pouchdb/milestones{/number}","notifications_url":"https://api.github.com/repos/willholley/pouchdb/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/willholley/pouchdb/labels{/name}","releases_url":"https://api.github.com/repos/willholley/pouchdb/releases{/id}","created_at":"2013-04-29T14:00:59Z","updated_at":"2014-12-30T11:30:36Z","pushed_at":"2014-12-30T18:05:39Z","git_url":"git://github.com/willholley/pouchdb.git","ssh_url":"git@github.com:willholley/pouchdb.git","clone_url":"https://github.com/willholley/pouchdb.git","svn_url":"https://github.com/willholley/pouchdb","homepage":"","size":71975,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","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":"pouchdb:master","ref":"master","sha":"9144e18a27ad15e80c7abd3bfe69d1f3a5e3df74","user":{"login":"pouchdb","id":3406112,"avatar_url":"https://avatars.githubusercontent.com/u/3406112?v=3","gravatar_id":"","url":"https://api.github.com/users/pouchdb","html_url":"https://github.com/pouchdb","followers_url":"https://api.github.com/users/pouchdb/followers","following_url":"https://api.github.com/users/pouchdb/following{/other_user}","gists_url":"https://api.github.com/users/pouchdb/gists{/gist_id}","starred_url":"https://api.github.com/users/pouchdb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pouchdb/subscriptions","organizations_url":"https://api.github.com/users/pouchdb/orgs","repos_url":"https://api.github.com/users/pouchdb/repos","events_url":"https://api.github.com/users/pouchdb/events{/privacy}","received_events_url":"https://api.github.com/users/pouchdb/received_events","type":"Organization","site_admin":false},"repo":{"id":714074,"name":"pouchdb","full_name":"pouchdb/pouchdb","owner":{"login":"pouchdb","id":3406112,"avatar_url":"https://avatars.githubusercontent.com/u/3406112?v=3","gravatar_id":"","url":"https://api.github.com/users/pouchdb","html_url":"https://github.com/pouchdb","followers_url":"https://api.github.com/users/pouchdb/followers","following_url":"https://api.github.com/users/pouchdb/following{/other_user}","gists_url":"https://api.github.com/users/pouchdb/gists{/gist_id}","starred_url":"https://api.github.com/users/pouchdb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pouchdb/subscriptions","organizations_url":"https://api.github.com/users/pouchdb/orgs","repos_url":"https://api.github.com/users/pouchdb/repos","events_url":"https://api.github.com/users/pouchdb/events{/privacy}","received_events_url":"https://api.github.com/users/pouchdb/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/pouchdb/pouchdb","description":"PouchDB is a pocket-sized database.","fork":false,"url":"https://api.github.com/repos/pouchdb/pouchdb","forks_url":"https://api.github.com/repos/pouchdb/pouchdb/forks","keys_url":"https://api.github.com/repos/pouchdb/pouchdb/keys{/key_id}","collaborators_url":"https://api.github.com/repos/pouchdb/pouchdb/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/pouchdb/pouchdb/teams","hooks_url":"https://api.github.com/repos/pouchdb/pouchdb/hooks","issue_events_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/events{/number}","events_url":"https://api.github.com/repos/pouchdb/pouchdb/events","assignees_url":"https://api.github.com/repos/pouchdb/pouchdb/assignees{/user}","branches_url":"https://api.github.com/repos/pouchdb/pouchdb/branches{/branch}","tags_url":"https://api.github.com/repos/pouchdb/pouchdb/tags","blobs_url":"https://api.github.com/repos/pouchdb/pouchdb/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/pouchdb/pouchdb/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/pouchdb/pouchdb/git/refs{/sha}","trees_url":"https://api.github.com/repos/pouchdb/pouchdb/git/trees{/sha}","statuses_url":"https://api.github.com/repos/pouchdb/pouchdb/statuses/{sha}","languages_url":"https://api.github.com/repos/pouchdb/pouchdb/languages","stargazers_url":"https://api.github.com/repos/pouchdb/pouchdb/stargazers","contributors_url":"https://api.github.com/repos/pouchdb/pouchdb/contributors","subscribers_url":"https://api.github.com/repos/pouchdb/pouchdb/subscribers","subscription_url":"https://api.github.com/repos/pouchdb/pouchdb/subscription","commits_url":"https://api.github.com/repos/pouchdb/pouchdb/commits{/sha}","git_commits_url":"https://api.github.com/repos/pouchdb/pouchdb/git/commits{/sha}","comments_url":"https://api.github.com/repos/pouchdb/pouchdb/comments{/number}","issue_comment_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/comments/{number}","contents_url":"https://api.github.com/repos/pouchdb/pouchdb/contents/{+path}","compare_url":"https://api.github.com/repos/pouchdb/pouchdb/compare/{base}...{head}","merges_url":"https://api.github.com/repos/pouchdb/pouchdb/merges","archive_url":"https://api.github.com/repos/pouchdb/pouchdb/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/pouchdb/pouchdb/downloads","issues_url":"https://api.github.com/repos/pouchdb/pouchdb/issues{/number}","pulls_url":"https://api.github.com/repos/pouchdb/pouchdb/pulls{/number}","milestones_url":"https://api.github.com/repos/pouchdb/pouchdb/milestones{/number}","notifications_url":"https://api.github.com/repos/pouchdb/pouchdb/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/pouchdb/pouchdb/labels{/name}","releases_url":"https://api.github.com/repos/pouchdb/pouchdb/releases{/id}","created_at":"2010-06-10T18:34:24Z","updated_at":"2015-01-01T15:05:54Z","pushed_at":"2015-01-01T15:05:54Z","git_url":"git://github.com/pouchdb/pouchdb.git","ssh_url":"git@github.com:pouchdb/pouchdb.git","clone_url":"https://github.com/pouchdb/pouchdb.git","svn_url":"https://github.com/pouchdb/pouchdb","homepage":"http://pouchdb.com/","size":152232,"stargazers_count":3578,"watchers_count":3578,"language":"JavaScript","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":414,"mirror_url":null,"open_issues_count":314,"forks":414,"open_issues":314,"watchers":3578,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3306"},"html":{"href":"https://github.com/pouchdb/pouchdb/pull/3306"},"issue":{"href":"https://api.github.com/repos/pouchdb/pouchdb/issues/3306"},"comments":{"href":"https://api.github.com/repos/pouchdb/pouchdb/issues/3306/comments"},"review_comments":{"href":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3306/comments"},"review_comment":{"href":"https://api.github.com/repos/pouchdb/pouchdb/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3306/commits"},"statuses":{"href":"https://api.github.com/repos/pouchdb/pouchdb/statuses/f855a0c8f4ccc024e9028644a769ca82c7571cc6"}},"merged":false,"mergeable":true,"mergeable_state":"unstable","merged_by":null,"comments":1,"review_comments":0,"commits":1,"additions":5,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:06:12Z","org":{"id":3406112,"login":"pouchdb","gravatar_id":"","url":"https://api.github.com/orgs/pouchdb","avatar_url":"https://avatars.githubusercontent.com/u/3406112?"}} +,{"id":"2489653939","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":536865310,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a78bf575b7d648cbb870e3a7e94be77e2347c61c","before":"fd1426e13dccb13a23cfbe03c067ebeaa49331f9","commits":[{"sha":"a78bf575b7d648cbb870e3a7e94be77e2347c61c","author":{"email":"05c0269870804bada1f091d378fdd69482fe0000@yahoo.com","name":"Matthew Ye"},"message":"dddddd\n\nddddddddddd","distinct":true,"url":"https://api.github.com/repos/Blimeo/blimeo.github.io/commits/a78bf575b7d648cbb870e3a7e94be77e2347c61c"}]},"public":true,"created_at":"2015-01-01T15:06:12Z"} +,{"id":"2489653941","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":24022175,"name":"cloudify-cosmo/repex","url":"https://api.github.com/repos/cloudify-cosmo/repex"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"replace regex in multiple files","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:12Z","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":"2489653945","type":"PushEvent","actor":{"id":6982260,"login":"rickpeyton","gravatar_id":"","url":"https://api.github.com/users/rickpeyton","avatar_url":"https://avatars.githubusercontent.com/u/6982260?"},"repo":{"id":28559996,"name":"rickpeyton/note-taking_tealeaf","url":"https://api.github.com/repos/rickpeyton/note-taking_tealeaf"},"payload":{"push_id":536865313,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5ef3315f2fde8efc50447a1af0c148af4472bc85","before":"06621c2154466a5b7495257acc5a413239787318","commits":[{"sha":"5ef3315f2fde8efc50447a1af0c148af4472bc85","author":{"email":"53b446148b0a1ccbbe4344f97bc4a4e87b9ffef5@gmail.com","name":"Rick Peyton"},"message":"Lesson 01 Notes","distinct":true,"url":"https://api.github.com/repos/rickpeyton/note-taking_tealeaf/commits/5ef3315f2fde8efc50447a1af0c148af4472bc85"}]},"public":true,"created_at":"2015-01-01T15:06:13Z"} +,{"id":"2489653949","type":"ForkEvent","actor":{"id":1593300,"login":"hynnet","gravatar_id":"","url":"https://api.github.com/users/hynnet","avatar_url":"https://avatars.githubusercontent.com/u/1593300?"},"repo":{"id":15984177,"name":"gabriel/NAChloride","url":"https://api.github.com/repos/gabriel/NAChloride"},"payload":{"forkee":{"id":28688709,"name":"NAChloride","full_name":"hynnet/NAChloride","owner":{"login":"hynnet","id":1593300,"avatar_url":"https://avatars.githubusercontent.com/u/1593300?v=3","gravatar_id":"","url":"https://api.github.com/users/hynnet","html_url":"https://github.com/hynnet","followers_url":"https://api.github.com/users/hynnet/followers","following_url":"https://api.github.com/users/hynnet/following{/other_user}","gists_url":"https://api.github.com/users/hynnet/gists{/gist_id}","starred_url":"https://api.github.com/users/hynnet/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hynnet/subscriptions","organizations_url":"https://api.github.com/users/hynnet/orgs","repos_url":"https://api.github.com/users/hynnet/repos","events_url":"https://api.github.com/users/hynnet/events{/privacy}","received_events_url":"https://api.github.com/users/hynnet/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/hynnet/NAChloride","description":"libsodium (NaCl), Scrypt, XSalsa20, AES-256-CTR, TwoFish-CTR, HMAC (SHA1, SHA2, SHA3), Digest (SHA2, SHA3/Keccak), HKDF","fork":true,"url":"https://api.github.com/repos/hynnet/NAChloride","forks_url":"https://api.github.com/repos/hynnet/NAChloride/forks","keys_url":"https://api.github.com/repos/hynnet/NAChloride/keys{/key_id}","collaborators_url":"https://api.github.com/repos/hynnet/NAChloride/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/hynnet/NAChloride/teams","hooks_url":"https://api.github.com/repos/hynnet/NAChloride/hooks","issue_events_url":"https://api.github.com/repos/hynnet/NAChloride/issues/events{/number}","events_url":"https://api.github.com/repos/hynnet/NAChloride/events","assignees_url":"https://api.github.com/repos/hynnet/NAChloride/assignees{/user}","branches_url":"https://api.github.com/repos/hynnet/NAChloride/branches{/branch}","tags_url":"https://api.github.com/repos/hynnet/NAChloride/tags","blobs_url":"https://api.github.com/repos/hynnet/NAChloride/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/hynnet/NAChloride/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/hynnet/NAChloride/git/refs{/sha}","trees_url":"https://api.github.com/repos/hynnet/NAChloride/git/trees{/sha}","statuses_url":"https://api.github.com/repos/hynnet/NAChloride/statuses/{sha}","languages_url":"https://api.github.com/repos/hynnet/NAChloride/languages","stargazers_url":"https://api.github.com/repos/hynnet/NAChloride/stargazers","contributors_url":"https://api.github.com/repos/hynnet/NAChloride/contributors","subscribers_url":"https://api.github.com/repos/hynnet/NAChloride/subscribers","subscription_url":"https://api.github.com/repos/hynnet/NAChloride/subscription","commits_url":"https://api.github.com/repos/hynnet/NAChloride/commits{/sha}","git_commits_url":"https://api.github.com/repos/hynnet/NAChloride/git/commits{/sha}","comments_url":"https://api.github.com/repos/hynnet/NAChloride/comments{/number}","issue_comment_url":"https://api.github.com/repos/hynnet/NAChloride/issues/comments/{number}","contents_url":"https://api.github.com/repos/hynnet/NAChloride/contents/{+path}","compare_url":"https://api.github.com/repos/hynnet/NAChloride/compare/{base}...{head}","merges_url":"https://api.github.com/repos/hynnet/NAChloride/merges","archive_url":"https://api.github.com/repos/hynnet/NAChloride/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/hynnet/NAChloride/downloads","issues_url":"https://api.github.com/repos/hynnet/NAChloride/issues{/number}","pulls_url":"https://api.github.com/repos/hynnet/NAChloride/pulls{/number}","milestones_url":"https://api.github.com/repos/hynnet/NAChloride/milestones{/number}","notifications_url":"https://api.github.com/repos/hynnet/NAChloride/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/hynnet/NAChloride/labels{/name}","releases_url":"https://api.github.com/repos/hynnet/NAChloride/releases{/id}","created_at":"2015-01-01T15:06:13Z","updated_at":"2014-12-09T02:41:15Z","pushed_at":"2014-12-09T02:41:22Z","git_url":"git://github.com/hynnet/NAChloride.git","ssh_url":"git@github.com:hynnet/NAChloride.git","clone_url":"https://github.com/hynnet/NAChloride.git","svn_url":"https://github.com/hynnet/NAChloride","homepage":"","size":410,"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:06:14Z"} +,{"id":"2489653956","type":"PushEvent","actor":{"id":8938184,"login":"cronopy","gravatar_id":"","url":"https://api.github.com/users/cronopy","avatar_url":"https://avatars.githubusercontent.com/u/8938184?"},"repo":{"id":24530527,"name":"cronopy/cronopy","url":"https://api.github.com/repos/cronopy/cronopy"},"payload":{"push_id":536865316,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"c8c595ff1d8f3cc7afff83110d3264aa67212773","before":"481f0d7e0d08511bc95da78bf886137b87fce690","commits":[{"sha":"5f5b287239d009d9db50d67c18b94ea28bff6d95","author":{"email":"5848753be3b37de6db98ca5e439c5eb7f76f25c5@utp.edu.co","name":"Carlos Andres Lopez"},"message":"Gestion de menu proyectos parte 1","distinct":true,"url":"https://api.github.com/repos/cronopy/cronopy/commits/5f5b287239d009d9db50d67c18b94ea28bff6d95"},{"sha":"c8c595ff1d8f3cc7afff83110d3264aa67212773","author":{"email":"5848753be3b37de6db98ca5e439c5eb7f76f25c5@utp.edu.co","name":"Carlos Andres Lopez"},"message":"Menu Proyectos","distinct":true,"url":"https://api.github.com/repos/cronopy/cronopy/commits/c8c595ff1d8f3cc7afff83110d3264aa67212773"}]},"public":true,"created_at":"2015-01-01T15:06:14Z"} +,{"id":"2489653959","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":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:14Z"} +,{"id":"2489653961","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":22381600,"name":"cloudify-cosmo/yo-ci","url":"https://api.github.com/repos/cloudify-cosmo/yo-ci"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:14Z","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":"2489653962","type":"CreateEvent","actor":{"id":9414889,"login":"whiteineyes","gravatar_id":"","url":"https://api.github.com/users/whiteineyes","avatar_url":"https://avatars.githubusercontent.com/u/9414889?"},"repo":{"id":28688704,"name":"whiteineyes/hexo","url":"https://api.github.com/repos/whiteineyes/hexo"},"payload":{"ref":"gh-pages","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:14Z"} +,{"id":"2489653963","type":"PullRequestEvent","actor":{"id":493276,"login":"k-okada","gravatar_id":"","url":"https://api.github.com/users/k-okada","avatar_url":"https://avatars.githubusercontent.com/u/493276?"},"repo":{"id":10344201,"name":"ros-simulation/gazebo_ros_pkgs","url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs"},"payload":{"action":"opened","number":288,"pull_request":{"url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/288","id":26743818,"html_url":"https://github.com/ros-simulation/gazebo_ros_pkgs/pull/288","diff_url":"https://github.com/ros-simulation/gazebo_ros_pkgs/pull/288.diff","patch_url":"https://github.com/ros-simulation/gazebo_ros_pkgs/pull/288.patch","issue_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/288","number":288,"state":"open","locked":false,"title":"add option to change package:// to model:// when loading urdf file","user":{"login":"k-okada","id":493276,"avatar_url":"https://avatars.githubusercontent.com/u/493276?v=3","gravatar_id":"","url":"https://api.github.com/users/k-okada","html_url":"https://github.com/k-okada","followers_url":"https://api.github.com/users/k-okada/followers","following_url":"https://api.github.com/users/k-okada/following{/other_user}","gists_url":"https://api.github.com/users/k-okada/gists{/gist_id}","starred_url":"https://api.github.com/users/k-okada/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k-okada/subscriptions","organizations_url":"https://api.github.com/users/k-okada/orgs","repos_url":"https://api.github.com/users/k-okada/repos","events_url":"https://api.github.com/users/k-okada/events{/privacy}","received_events_url":"https://api.github.com/users/k-okada/received_events","type":"User","site_admin":false},"body":"this feature is required if we want to use gzweb, but ofcourse you have to set GAZEBO_MODEL_PATH correctly","created_at":"2015-01-01T15:06:14Z","updated_at":"2015-01-01T15:06:14Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/288/commits","review_comments_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/288/comments","review_comment_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/comments/{number}","comments_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/288/comments","statuses_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/statuses/5f82ee0428994b7f52d63285a672774be29f0b9e","head":{"label":"k-okada:add_package_to_model","ref":"add_package_to_model","sha":"5f82ee0428994b7f52d63285a672774be29f0b9e","user":{"login":"k-okada","id":493276,"avatar_url":"https://avatars.githubusercontent.com/u/493276?v=3","gravatar_id":"","url":"https://api.github.com/users/k-okada","html_url":"https://github.com/k-okada","followers_url":"https://api.github.com/users/k-okada/followers","following_url":"https://api.github.com/users/k-okada/following{/other_user}","gists_url":"https://api.github.com/users/k-okada/gists{/gist_id}","starred_url":"https://api.github.com/users/k-okada/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k-okada/subscriptions","organizations_url":"https://api.github.com/users/k-okada/orgs","repos_url":"https://api.github.com/users/k-okada/repos","events_url":"https://api.github.com/users/k-okada/events{/privacy}","received_events_url":"https://api.github.com/users/k-okada/received_events","type":"User","site_admin":false},"repo":{"id":27212864,"name":"gazebo_ros_pkgs","full_name":"k-okada/gazebo_ros_pkgs","owner":{"login":"k-okada","id":493276,"avatar_url":"https://avatars.githubusercontent.com/u/493276?v=3","gravatar_id":"","url":"https://api.github.com/users/k-okada","html_url":"https://github.com/k-okada","followers_url":"https://api.github.com/users/k-okada/followers","following_url":"https://api.github.com/users/k-okada/following{/other_user}","gists_url":"https://api.github.com/users/k-okada/gists{/gist_id}","starred_url":"https://api.github.com/users/k-okada/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k-okada/subscriptions","organizations_url":"https://api.github.com/users/k-okada/orgs","repos_url":"https://api.github.com/users/k-okada/repos","events_url":"https://api.github.com/users/k-okada/events{/privacy}","received_events_url":"https://api.github.com/users/k-okada/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k-okada/gazebo_ros_pkgs","description":"Wrappers, tools and additional API's for using ROS with Gazebo. Formally simulator_gazebo stack","fork":true,"url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs","forks_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/forks","keys_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/teams","hooks_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/hooks","issue_events_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/issues/events{/number}","events_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/events","assignees_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/assignees{/user}","branches_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/branches{/branch}","tags_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/tags","blobs_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/git/refs{/sha}","trees_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/statuses/{sha}","languages_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/languages","stargazers_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/stargazers","contributors_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/contributors","subscribers_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/subscribers","subscription_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/subscription","commits_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/commits{/sha}","git_commits_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/git/commits{/sha}","comments_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/comments{/number}","issue_comment_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/issues/comments/{number}","contents_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/contents/{+path}","compare_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/merges","archive_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/downloads","issues_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/issues{/number}","pulls_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/pulls{/number}","milestones_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/milestones{/number}","notifications_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/labels{/name}","releases_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/releases{/id}","created_at":"2014-11-27T06:51:53Z","updated_at":"2014-11-27T06:51:54Z","pushed_at":"2015-01-01T15:03:20Z","git_url":"git://github.com/k-okada/gazebo_ros_pkgs.git","ssh_url":"git@github.com:k-okada/gazebo_ros_pkgs.git","clone_url":"https://github.com/k-okada/gazebo_ros_pkgs.git","svn_url":"https://github.com/k-okada/gazebo_ros_pkgs","homepage":"www.ros.org/wiki/gazebo_ros_pkgs","size":3075,"stargazers_count":0,"watchers_count":0,"language":"C++","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":"hydro-devel"}},"base":{"label":"ros-simulation:indigo-devel","ref":"indigo-devel","sha":"49e404c7c1b86dafa526dd3a88651ede0da2160d","user":{"login":"ros-simulation","id":2349888,"avatar_url":"https://avatars.githubusercontent.com/u/2349888?v=3","gravatar_id":"","url":"https://api.github.com/users/ros-simulation","html_url":"https://github.com/ros-simulation","followers_url":"https://api.github.com/users/ros-simulation/followers","following_url":"https://api.github.com/users/ros-simulation/following{/other_user}","gists_url":"https://api.github.com/users/ros-simulation/gists{/gist_id}","starred_url":"https://api.github.com/users/ros-simulation/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ros-simulation/subscriptions","organizations_url":"https://api.github.com/users/ros-simulation/orgs","repos_url":"https://api.github.com/users/ros-simulation/repos","events_url":"https://api.github.com/users/ros-simulation/events{/privacy}","received_events_url":"https://api.github.com/users/ros-simulation/received_events","type":"Organization","site_admin":false},"repo":{"id":10344201,"name":"gazebo_ros_pkgs","full_name":"ros-simulation/gazebo_ros_pkgs","owner":{"login":"ros-simulation","id":2349888,"avatar_url":"https://avatars.githubusercontent.com/u/2349888?v=3","gravatar_id":"","url":"https://api.github.com/users/ros-simulation","html_url":"https://github.com/ros-simulation","followers_url":"https://api.github.com/users/ros-simulation/followers","following_url":"https://api.github.com/users/ros-simulation/following{/other_user}","gists_url":"https://api.github.com/users/ros-simulation/gists{/gist_id}","starred_url":"https://api.github.com/users/ros-simulation/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ros-simulation/subscriptions","organizations_url":"https://api.github.com/users/ros-simulation/orgs","repos_url":"https://api.github.com/users/ros-simulation/repos","events_url":"https://api.github.com/users/ros-simulation/events{/privacy}","received_events_url":"https://api.github.com/users/ros-simulation/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/ros-simulation/gazebo_ros_pkgs","description":"Wrappers, tools and additional API's for using ROS with Gazebo. Formally simulator_gazebo stack","fork":false,"url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs","forks_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/forks","keys_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/teams","hooks_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/hooks","issue_events_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/events{/number}","events_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/events","assignees_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/assignees{/user}","branches_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/branches{/branch}","tags_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/tags","blobs_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/git/refs{/sha}","trees_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/statuses/{sha}","languages_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/languages","stargazers_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/stargazers","contributors_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/contributors","subscribers_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/subscribers","subscription_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/subscription","commits_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/commits{/sha}","git_commits_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/git/commits{/sha}","comments_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/comments{/number}","issue_comment_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/comments/{number}","contents_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/contents/{+path}","compare_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/merges","archive_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/downloads","issues_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues{/number}","pulls_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls{/number}","milestones_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/milestones{/number}","notifications_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/labels{/name}","releases_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/releases{/id}","created_at":"2013-05-28T19:59:20Z","updated_at":"2014-12-15T13:51:55Z","pushed_at":"2014-12-16T21:29:55Z","git_url":"git://github.com/ros-simulation/gazebo_ros_pkgs.git","ssh_url":"git@github.com:ros-simulation/gazebo_ros_pkgs.git","clone_url":"https://github.com/ros-simulation/gazebo_ros_pkgs.git","svn_url":"https://github.com/ros-simulation/gazebo_ros_pkgs","homepage":"www.ros.org/wiki/gazebo_ros_pkgs","size":5148,"stargazers_count":21,"watchers_count":21,"language":"C++","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":73,"mirror_url":null,"open_issues_count":63,"forks":73,"open_issues":63,"watchers":21,"default_branch":"hydro-devel"}},"_links":{"self":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/288"},"html":{"href":"https://github.com/ros-simulation/gazebo_ros_pkgs/pull/288"},"issue":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/288"},"comments":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/288/comments"},"review_comments":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/288/comments"},"review_comment":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/288/commits"},"statuses":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/statuses/5f82ee0428994b7f52d63285a672774be29f0b9e"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":8,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:06:14Z","org":{"id":2349888,"login":"ros-simulation","gravatar_id":"","url":"https://api.github.com/orgs/ros-simulation","avatar_url":"https://avatars.githubusercontent.com/u/2349888?"}} +,{"id":"2489653964","type":"PushEvent","actor":{"id":6712868,"login":"nickwq","gravatar_id":"","url":"https://api.github.com/users/nickwq","avatar_url":"https://avatars.githubusercontent.com/u/6712868?"},"repo":{"id":21810868,"name":"nickwq/nickwq.github.io","url":"https://api.github.com/repos/nickwq/nickwq.github.io"},"payload":{"push_id":536865320,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fc8a6278ebd4e731b4f4b960d54a52b9c19fffc0","before":"435196451836280cd6e974ee54b24a49a83d0cfa","commits":[{"sha":"fc8a6278ebd4e731b4f4b960d54a52b9c19fffc0","author":{"email":"7526af6fbb5fab1ca78f52d63a8a0b0add9cefa2@gmail.com","name":"nickwq"},"message":"Replace master branch with page content via GitHub","distinct":true,"url":"https://api.github.com/repos/nickwq/nickwq.github.io/commits/fc8a6278ebd4e731b4f4b960d54a52b9c19fffc0"}]},"public":true,"created_at":"2015-01-01T15:06:14Z"} +,{"id":"2489653967","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":536865322,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1f15405a70925e43344fa1d125d837ae64d259df","before":"f5591d055c838387eaa8fe838bacb99c15c16e58","commits":[{"sha":"1f15405a70925e43344fa1d125d837ae64d259df","author":{"email":"0ccf54d51d1a5240ad356feb30dfa4d1749f8844@gmail.com","name":"TraderCoderGambler"},"message":"auto-update balances","distinct":true,"url":"https://api.github.com/repos/chancecoin/chancecoinj/commits/1f15405a70925e43344fa1d125d837ae64d259df"}]},"public":true,"created_at":"2015-01-01T15:06:15Z"} +,{"id":"2489653969","type":"WatchEvent","actor":{"id":3837743,"login":"robhamk","gravatar_id":"","url":"https://api.github.com/users/robhamk","avatar_url":"https://avatars.githubusercontent.com/u/3837743?"},"repo":{"id":22790488,"name":"iluwatar/java-design-patterns","url":"https://api.github.com/repos/iluwatar/java-design-patterns"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:06:15Z"} +,{"id":"2489653970","type":"PushEvent","actor":{"id":10074264,"login":"DamonY","gravatar_id":"","url":"https://api.github.com/users/DamonY","avatar_url":"https://avatars.githubusercontent.com/u/10074264?"},"repo":{"id":28293846,"name":"ZhangboTeam/Adinnet.MQE","url":"https://api.github.com/repos/ZhangboTeam/Adinnet.MQE"},"payload":{"push_id":536865323,"size":0,"distinct_size":0,"ref":"refs/heads/master","head":"189e1138ad937214bca30379df75d5f960ccdc38","before":"189e1138ad937214bca30379df75d5f960ccdc38","commits":[]},"public":true,"created_at":"2015-01-01T15:06:15Z","org":{"id":10057771,"login":"ZhangboTeam","gravatar_id":"","url":"https://api.github.com/orgs/ZhangboTeam","avatar_url":"https://avatars.githubusercontent.com/u/10057771?"}} +,{"id":"2489653974","type":"PushEvent","actor":{"id":5451787,"login":"jdeluyck","gravatar_id":"","url":"https://api.github.com/users/jdeluyck","avatar_url":"https://avatars.githubusercontent.com/u/5451787?"},"repo":{"id":14086397,"name":"jdeluyck/android","url":"https://api.github.com/repos/jdeluyck/android"},"payload":{"push_id":536865325,"size":1,"distinct_size":1,"ref":"refs/heads/cm-11.0","head":"46f8e99fff6891c142050f1d2be0e1d3043863f5","before":"c0fa403bffcca7a6645b946ac56a4a2e346e15a6","commits":[{"sha":"46f8e99fff6891c142050f1d2be0e1d3043863f5","author":{"email":"e816b4b5f2eede266db4d9a00415215d52e545d8@kcore.org","name":"Jan De Luyck"},"message":"update repos\n\nChange-Id: I76a24705cdabe8f21704987be0641630a94afc68","distinct":true,"url":"https://api.github.com/repos/jdeluyck/android/commits/46f8e99fff6891c142050f1d2be0e1d3043863f5"}]},"public":true,"created_at":"2015-01-01T15:06:15Z"} +,{"id":"2489653975","type":"CreateEvent","actor":{"id":5768659,"login":"supermat","gravatar_id":"","url":"https://api.github.com/users/supermat","avatar_url":"https://avatars.githubusercontent.com/u/5768659?"},"repo":{"id":28688710,"name":"supermat/SD_image_rest","url":"https://api.github.com/repos/supermat/SD_image_rest"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":null,"pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:17Z"} +,{"id":"2489653979","type":"PullRequestEvent","actor":{"id":10364248,"login":"adneon0","gravatar_id":"","url":"https://api.github.com/users/adneon0","avatar_url":"https://avatars.githubusercontent.com/u/10364248?"},"repo":{"id":28687101,"name":"adneon0/hello-world","url":"https://api.github.com/repos/adneon0/hello-world"},"payload":{"action":"opened","number":2,"pull_request":{"url":"https://api.github.com/repos/adneon0/hello-world/pulls/2","id":26743819,"html_url":"https://github.com/adneon0/hello-world/pull/2","diff_url":"https://github.com/adneon0/hello-world/pull/2.diff","patch_url":"https://github.com/adneon0/hello-world/pull/2.patch","issue_url":"https://api.github.com/repos/adneon0/hello-world/issues/2","number":2,"state":"open","locked":false,"title":"Finish Readme fixes#1","user":{"login":"adneon0","id":10364248,"avatar_url":"https://avatars.githubusercontent.com/u/10364248?v=3","gravatar_id":"","url":"https://api.github.com/users/adneon0","html_url":"https://github.com/adneon0","followers_url":"https://api.github.com/users/adneon0/followers","following_url":"https://api.github.com/users/adneon0/following{/other_user}","gists_url":"https://api.github.com/users/adneon0/gists{/gist_id}","starred_url":"https://api.github.com/users/adneon0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adneon0/subscriptions","organizations_url":"https://api.github.com/users/adneon0/orgs","repos_url":"https://api.github.com/users/adneon0/repos","events_url":"https://api.github.com/users/adneon0/events{/privacy}","received_events_url":"https://api.github.com/users/adneon0/received_events","type":"User","site_admin":false},"body":"its my first fix","created_at":"2015-01-01T15:06:16Z","updated_at":"2015-01-01T15:06:16Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/adneon0/hello-world/pulls/2/commits","review_comments_url":"https://api.github.com/repos/adneon0/hello-world/pulls/2/comments","review_comment_url":"https://api.github.com/repos/adneon0/hello-world/pulls/comments/{number}","comments_url":"https://api.github.com/repos/adneon0/hello-world/issues/2/comments","statuses_url":"https://api.github.com/repos/adneon0/hello-world/statuses/2b1609dd6e99beb67127a4bb9e7ec80c0b29890f","head":{"label":"adneon0:readme-edits","ref":"readme-edits","sha":"2b1609dd6e99beb67127a4bb9e7ec80c0b29890f","user":{"login":"adneon0","id":10364248,"avatar_url":"https://avatars.githubusercontent.com/u/10364248?v=3","gravatar_id":"","url":"https://api.github.com/users/adneon0","html_url":"https://github.com/adneon0","followers_url":"https://api.github.com/users/adneon0/followers","following_url":"https://api.github.com/users/adneon0/following{/other_user}","gists_url":"https://api.github.com/users/adneon0/gists{/gist_id}","starred_url":"https://api.github.com/users/adneon0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adneon0/subscriptions","organizations_url":"https://api.github.com/users/adneon0/orgs","repos_url":"https://api.github.com/users/adneon0/repos","events_url":"https://api.github.com/users/adneon0/events{/privacy}","received_events_url":"https://api.github.com/users/adneon0/received_events","type":"User","site_admin":false},"repo":{"id":28687101,"name":"hello-world","full_name":"adneon0/hello-world","owner":{"login":"adneon0","id":10364248,"avatar_url":"https://avatars.githubusercontent.com/u/10364248?v=3","gravatar_id":"","url":"https://api.github.com/users/adneon0","html_url":"https://github.com/adneon0","followers_url":"https://api.github.com/users/adneon0/followers","following_url":"https://api.github.com/users/adneon0/following{/other_user}","gists_url":"https://api.github.com/users/adneon0/gists{/gist_id}","starred_url":"https://api.github.com/users/adneon0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adneon0/subscriptions","organizations_url":"https://api.github.com/users/adneon0/orgs","repos_url":"https://api.github.com/users/adneon0/repos","events_url":"https://api.github.com/users/adneon0/events{/privacy}","received_events_url":"https://api.github.com/users/adneon0/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/adneon0/hello-world","description":"First One!","fork":false,"url":"https://api.github.com/repos/adneon0/hello-world","forks_url":"https://api.github.com/repos/adneon0/hello-world/forks","keys_url":"https://api.github.com/repos/adneon0/hello-world/keys{/key_id}","collaborators_url":"https://api.github.com/repos/adneon0/hello-world/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/adneon0/hello-world/teams","hooks_url":"https://api.github.com/repos/adneon0/hello-world/hooks","issue_events_url":"https://api.github.com/repos/adneon0/hello-world/issues/events{/number}","events_url":"https://api.github.com/repos/adneon0/hello-world/events","assignees_url":"https://api.github.com/repos/adneon0/hello-world/assignees{/user}","branches_url":"https://api.github.com/repos/adneon0/hello-world/branches{/branch}","tags_url":"https://api.github.com/repos/adneon0/hello-world/tags","blobs_url":"https://api.github.com/repos/adneon0/hello-world/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/adneon0/hello-world/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/adneon0/hello-world/git/refs{/sha}","trees_url":"https://api.github.com/repos/adneon0/hello-world/git/trees{/sha}","statuses_url":"https://api.github.com/repos/adneon0/hello-world/statuses/{sha}","languages_url":"https://api.github.com/repos/adneon0/hello-world/languages","stargazers_url":"https://api.github.com/repos/adneon0/hello-world/stargazers","contributors_url":"https://api.github.com/repos/adneon0/hello-world/contributors","subscribers_url":"https://api.github.com/repos/adneon0/hello-world/subscribers","subscription_url":"https://api.github.com/repos/adneon0/hello-world/subscription","commits_url":"https://api.github.com/repos/adneon0/hello-world/commits{/sha}","git_commits_url":"https://api.github.com/repos/adneon0/hello-world/git/commits{/sha}","comments_url":"https://api.github.com/repos/adneon0/hello-world/comments{/number}","issue_comment_url":"https://api.github.com/repos/adneon0/hello-world/issues/comments/{number}","contents_url":"https://api.github.com/repos/adneon0/hello-world/contents/{+path}","compare_url":"https://api.github.com/repos/adneon0/hello-world/compare/{base}...{head}","merges_url":"https://api.github.com/repos/adneon0/hello-world/merges","archive_url":"https://api.github.com/repos/adneon0/hello-world/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/adneon0/hello-world/downloads","issues_url":"https://api.github.com/repos/adneon0/hello-world/issues{/number}","pulls_url":"https://api.github.com/repos/adneon0/hello-world/pulls{/number}","milestones_url":"https://api.github.com/repos/adneon0/hello-world/milestones{/number}","notifications_url":"https://api.github.com/repos/adneon0/hello-world/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/adneon0/hello-world/labels{/name}","releases_url":"https://api.github.com/repos/adneon0/hello-world/releases{/id}","created_at":"2015-01-01T13:34:42Z","updated_at":"2015-01-01T13:34:42Z","pushed_at":"2015-01-01T14:58:27Z","git_url":"git://github.com/adneon0/hello-world.git","ssh_url":"git@github.com:adneon0/hello-world.git","clone_url":"https://github.com/adneon0/hello-world.git","svn_url":"https://github.com/adneon0/hello-world","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":2,"forks":0,"open_issues":2,"watchers":0,"default_branch":"master"}},"base":{"label":"adneon0:master","ref":"master","sha":"3cdd52e9afbb36582ac3a4cffd251edc96f3886c","user":{"login":"adneon0","id":10364248,"avatar_url":"https://avatars.githubusercontent.com/u/10364248?v=3","gravatar_id":"","url":"https://api.github.com/users/adneon0","html_url":"https://github.com/adneon0","followers_url":"https://api.github.com/users/adneon0/followers","following_url":"https://api.github.com/users/adneon0/following{/other_user}","gists_url":"https://api.github.com/users/adneon0/gists{/gist_id}","starred_url":"https://api.github.com/users/adneon0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adneon0/subscriptions","organizations_url":"https://api.github.com/users/adneon0/orgs","repos_url":"https://api.github.com/users/adneon0/repos","events_url":"https://api.github.com/users/adneon0/events{/privacy}","received_events_url":"https://api.github.com/users/adneon0/received_events","type":"User","site_admin":false},"repo":{"id":28687101,"name":"hello-world","full_name":"adneon0/hello-world","owner":{"login":"adneon0","id":10364248,"avatar_url":"https://avatars.githubusercontent.com/u/10364248?v=3","gravatar_id":"","url":"https://api.github.com/users/adneon0","html_url":"https://github.com/adneon0","followers_url":"https://api.github.com/users/adneon0/followers","following_url":"https://api.github.com/users/adneon0/following{/other_user}","gists_url":"https://api.github.com/users/adneon0/gists{/gist_id}","starred_url":"https://api.github.com/users/adneon0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adneon0/subscriptions","organizations_url":"https://api.github.com/users/adneon0/orgs","repos_url":"https://api.github.com/users/adneon0/repos","events_url":"https://api.github.com/users/adneon0/events{/privacy}","received_events_url":"https://api.github.com/users/adneon0/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/adneon0/hello-world","description":"First One!","fork":false,"url":"https://api.github.com/repos/adneon0/hello-world","forks_url":"https://api.github.com/repos/adneon0/hello-world/forks","keys_url":"https://api.github.com/repos/adneon0/hello-world/keys{/key_id}","collaborators_url":"https://api.github.com/repos/adneon0/hello-world/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/adneon0/hello-world/teams","hooks_url":"https://api.github.com/repos/adneon0/hello-world/hooks","issue_events_url":"https://api.github.com/repos/adneon0/hello-world/issues/events{/number}","events_url":"https://api.github.com/repos/adneon0/hello-world/events","assignees_url":"https://api.github.com/repos/adneon0/hello-world/assignees{/user}","branches_url":"https://api.github.com/repos/adneon0/hello-world/branches{/branch}","tags_url":"https://api.github.com/repos/adneon0/hello-world/tags","blobs_url":"https://api.github.com/repos/adneon0/hello-world/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/adneon0/hello-world/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/adneon0/hello-world/git/refs{/sha}","trees_url":"https://api.github.com/repos/adneon0/hello-world/git/trees{/sha}","statuses_url":"https://api.github.com/repos/adneon0/hello-world/statuses/{sha}","languages_url":"https://api.github.com/repos/adneon0/hello-world/languages","stargazers_url":"https://api.github.com/repos/adneon0/hello-world/stargazers","contributors_url":"https://api.github.com/repos/adneon0/hello-world/contributors","subscribers_url":"https://api.github.com/repos/adneon0/hello-world/subscribers","subscription_url":"https://api.github.com/repos/adneon0/hello-world/subscription","commits_url":"https://api.github.com/repos/adneon0/hello-world/commits{/sha}","git_commits_url":"https://api.github.com/repos/adneon0/hello-world/git/commits{/sha}","comments_url":"https://api.github.com/repos/adneon0/hello-world/comments{/number}","issue_comment_url":"https://api.github.com/repos/adneon0/hello-world/issues/comments/{number}","contents_url":"https://api.github.com/repos/adneon0/hello-world/contents/{+path}","compare_url":"https://api.github.com/repos/adneon0/hello-world/compare/{base}...{head}","merges_url":"https://api.github.com/repos/adneon0/hello-world/merges","archive_url":"https://api.github.com/repos/adneon0/hello-world/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/adneon0/hello-world/downloads","issues_url":"https://api.github.com/repos/adneon0/hello-world/issues{/number}","pulls_url":"https://api.github.com/repos/adneon0/hello-world/pulls{/number}","milestones_url":"https://api.github.com/repos/adneon0/hello-world/milestones{/number}","notifications_url":"https://api.github.com/repos/adneon0/hello-world/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/adneon0/hello-world/labels{/name}","releases_url":"https://api.github.com/repos/adneon0/hello-world/releases{/id}","created_at":"2015-01-01T13:34:42Z","updated_at":"2015-01-01T13:34:42Z","pushed_at":"2015-01-01T14:58:27Z","git_url":"git://github.com/adneon0/hello-world.git","ssh_url":"git@github.com:adneon0/hello-world.git","clone_url":"https://github.com/adneon0/hello-world.git","svn_url":"https://github.com/adneon0/hello-world","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"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/adneon0/hello-world/pulls/2"},"html":{"href":"https://github.com/adneon0/hello-world/pull/2"},"issue":{"href":"https://api.github.com/repos/adneon0/hello-world/issues/2"},"comments":{"href":"https://api.github.com/repos/adneon0/hello-world/issues/2/comments"},"review_comments":{"href":"https://api.github.com/repos/adneon0/hello-world/pulls/2/comments"},"review_comment":{"href":"https://api.github.com/repos/adneon0/hello-world/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/adneon0/hello-world/pulls/2/commits"},"statuses":{"href":"https://api.github.com/repos/adneon0/hello-world/statuses/2b1609dd6e99beb67127a4bb9e7ec80c0b29890f"}},"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:06:17Z"} +,{"id":"2489653991","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":22381600,"name":"cloudify-cosmo/yo-ci","url":"https://api.github.com/repos/cloudify-cosmo/yo-ci"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"A python travis client built for integration","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:17Z","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":"2489653992","type":"PushEvent","actor":{"id":2859531,"login":"Atekihcan","gravatar_id":"","url":"https://api.github.com/users/Atekihcan","avatar_url":"https://avatars.githubusercontent.com/u/2859531?"},"repo":{"id":28266913,"name":"Atekihcan/Sendroid","url":"https://api.github.com/repos/Atekihcan/Sendroid"},"payload":{"push_id":536865328,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"7c96c2eee4f57400d9066a8260fbdced7fe9bae5","before":"832e39c07cd4a559ec95e746ff7bf44c5769fa33","commits":[{"sha":"7c96c2eee4f57400d9066a8260fbdced7fe9bae5","author":{"email":"13e202404dbd07e09a699255ec98c11fb5762967@gmail.com","name":"Atekihcan"},"message":"minor changes in FAQ","distinct":true,"url":"https://api.github.com/repos/Atekihcan/Sendroid/commits/7c96c2eee4f57400d9066a8260fbdced7fe9bae5"}]},"public":true,"created_at":"2015-01-01T15:06:17Z"} +,{"id":"2489653999","type":"CreateEvent","actor":{"id":2534060,"login":"herpiko","gravatar_id":"","url":"https://api.github.com/users/herpiko","avatar_url":"https://avatars.githubusercontent.com/u/2534060?"},"repo":{"id":26988297,"name":"herpiko/simaya","url":"https://api.github.com/repos/herpiko/simaya"},"payload":{"ref":"fixes274_1","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:18Z"} +,{"id":"2489654003","type":"PushEvent","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":{"push_id":536865332,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"62eee650242a3c07dfc2a9bd731c67b4eec37e95","before":"23bdc051de257bd68cd32d03a694ff2340f1ef85","commits":[{"sha":"62eee650242a3c07dfc2a9bd731c67b4eec37e95","author":{"email":"ac12fe72600cb004ae32ce344ab74a9d66bc906b@users.noreply.github.com","name":"deeperx"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/deeperx/dojo_rules/commits/62eee650242a3c07dfc2a9bd731c67b4eec37e95"}]},"public":true,"created_at":"2015-01-01T15:06:18Z"} +,{"id":"2489654004","type":"WatchEvent","actor":{"id":6292882,"login":"Wlanfr3ak","gravatar_id":"","url":"https://api.github.com/users/Wlanfr3ak","avatar_url":"https://avatars.githubusercontent.com/u/6292882?"},"repo":{"id":9166492,"name":"Kerwood/rtorrent.auto.install","url":"https://api.github.com/repos/Kerwood/rtorrent.auto.install"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:06:18Z"} +,{"id":"2489654008","type":"PushEvent","actor":{"id":3797972,"login":"oceanjack","gravatar_id":"","url":"https://api.github.com/users/oceanjack","avatar_url":"https://avatars.githubusercontent.com/u/3797972?"},"repo":{"id":27213484,"name":"oceanjack/oceanjack.github.io","url":"https://api.github.com/repos/oceanjack/oceanjack.github.io"},"payload":{"push_id":536865335,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"11544f068df7f55ab89dfff208b531cd6771bef6","before":"44d1430ddb611780c603a07204a06e161e121ddd","commits":[{"sha":"11544f068df7f55ab89dfff208b531cd6771bef6","author":{"email":"e7962a36105d0ad4343dd588376fafc81e75f2e2@gmail.com","name":"oceanjack"},"message":"update","distinct":true,"url":"https://api.github.com/repos/oceanjack/oceanjack.github.io/commits/11544f068df7f55ab89dfff208b531cd6771bef6"}]},"public":true,"created_at":"2015-01-01T15:06:19Z"} +,{"id":"2489654009","type":"WatchEvent","actor":{"id":52580,"login":"jastix","gravatar_id":"","url":"https://api.github.com/users/jastix","avatar_url":"https://avatars.githubusercontent.com/u/52580?"},"repo":{"id":12601945,"name":"dobarkod/cookie-banner","url":"https://api.github.com/repos/dobarkod/cookie-banner"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:06:19Z","org":{"id":2169146,"login":"dobarkod","gravatar_id":"","url":"https://api.github.com/orgs/dobarkod","avatar_url":"https://avatars.githubusercontent.com/u/2169146?"}} +,{"id":"2489654013","type":"PushEvent","actor":{"id":303766,"login":"phasenraum2010","gravatar_id":"","url":"https://api.github.com/users/phasenraum2010","avatar_url":"https://avatars.githubusercontent.com/u/303766?"},"repo":{"id":9591899,"name":"phasenraum2010/greenshop","url":"https://api.github.com/repos/phasenraum2010/greenshop"},"payload":{"push_id":536865337,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"603fcb05274e5e16ff1f8fae333f2304eef3a38e","before":"6b71ee37bd44d24692d228aab12b77b72fba1a8b","commits":[{"sha":"603fcb05274e5e16ff1f8fae333f2304eef3a38e","author":{"email":"5f50a84c1fa3bcff146405017f36aec1a10a9e38@woehlke.org","name":"phasenraum2010"},"message":"New Product Box.","distinct":true,"url":"https://api.github.com/repos/phasenraum2010/greenshop/commits/603fcb05274e5e16ff1f8fae333f2304eef3a38e"}]},"public":true,"created_at":"2015-01-01T15:06:19Z"} +,{"id":"2489654020","type":"IssuesEvent","actor":{"id":5303727,"login":"Brijendrasial","gravatar_id":"","url":"https://api.github.com/users/Brijendrasial","avatar_url":"https://avatars.githubusercontent.com/u/5303727?"},"repo":{"id":1036767,"name":"sibprogrammer/owp","url":"https://api.github.com/repos/sibprogrammer/owp"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/sibprogrammer/owp/issues/50","labels_url":"https://api.github.com/repos/sibprogrammer/owp/issues/50/labels{/name}","comments_url":"https://api.github.com/repos/sibprogrammer/owp/issues/50/comments","events_url":"https://api.github.com/repos/sibprogrammer/owp/issues/50/events","html_url":"https://github.com/sibprogrammer/owp/issues/50","id":53221462,"number":50,"title":"Whmcs Configuration Vps start, stop, restart","user":{"login":"Brijendrasial","id":5303727,"avatar_url":"https://avatars.githubusercontent.com/u/5303727?v=3","gravatar_id":"","url":"https://api.github.com/users/Brijendrasial","html_url":"https://github.com/Brijendrasial","followers_url":"https://api.github.com/users/Brijendrasial/followers","following_url":"https://api.github.com/users/Brijendrasial/following{/other_user}","gists_url":"https://api.github.com/users/Brijendrasial/gists{/gist_id}","starred_url":"https://api.github.com/users/Brijendrasial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Brijendrasial/subscriptions","organizations_url":"https://api.github.com/users/Brijendrasial/orgs","repos_url":"https://api.github.com/users/Brijendrasial/repos","events_url":"https://api.github.com/users/Brijendrasial/events{/privacy}","received_events_url":"https://api.github.com/users/Brijendrasial/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:06:20Z","updated_at":"2015-01-01T15:06:20Z","closed_at":null,"body":"Hello,\r\n\r\nIs there any way to add these options to whmcs client module?"}},"public":true,"created_at":"2015-01-01T15:06:20Z"} +,{"id":"2489654025","type":"CreateEvent","actor":{"id":10364786,"login":"kvaartz","gravatar_id":"","url":"https://api.github.com/users/kvaartz","avatar_url":"https://avatars.githubusercontent.com/u/10364786?"},"repo":{"id":28688712,"name":"kvaartz/webdev","url":"https://api.github.com/repos/kvaartz/webdev"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:22Z"} +,{"id":"2489654031","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":536865340,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"03580655615779dece8403902492c125a2b9ba3c","before":"45034b9593501122f3a08f028b4297a2691d2e92","commits":[{"sha":"03580655615779dece8403902492c125a2b9ba3c","author":{"email":"798520c19e899fb2be364efde581283231d48b6f@126.com","name":"quhezheng"},"message":"update","distinct":true,"url":"https://api.github.com/repos/quhezheng/HomeIP/commits/03580655615779dece8403902492c125a2b9ba3c"}]},"public":true,"created_at":"2015-01-01T15:06:22Z"} +,{"id":"2489654033","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":536865342,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"00147d3c221946a7d0e295b1a6bafb003643a024","before":"f8db283a12541f4c61ade4809737f93f2d7a626d","commits":[{"sha":"00147d3c221946a7d0e295b1a6bafb003643a024","author":{"email":"82a36422d455213247e76b728a8ed41cf0074c73@dealloc.org","name":"Claudio Jolowicz"},"message":"[qreversetree] Add --dry-run.","distinct":true,"url":"https://api.github.com/repos/cjolowicz/scripts/commits/00147d3c221946a7d0e295b1a6bafb003643a024"}]},"public":true,"created_at":"2015-01-01T15:06:22Z"} +,{"id":"2489654034","type":"PushEvent","actor":{"id":718983,"login":"mhyfritz","gravatar_id":"","url":"https://api.github.com/users/mhyfritz","avatar_url":"https://avatars.githubusercontent.com/u/718983?"},"repo":{"id":27045536,"name":"mhyfritz/goontools","url":"https://api.github.com/repos/mhyfritz/goontools"},"payload":{"push_id":536865343,"size":3,"distinct_size":3,"ref":"refs/heads/dev","head":"05bc512c153360d505ab423f617b960b415deed6","before":"cf3abe9a6f5c80ef217d9c22d5f8a04147e9d63d","commits":[{"sha":"d4858243b4a0f73069305d2e7b59611abb87654f","author":{"email":"92e30aa2dcbfdfbee1d86c37a05f0abd25e11e3e@gmail.com","name":"Markus Hsi-Yang Fritz"},"message":"Resurrect array.h","distinct":true,"url":"https://api.github.com/repos/mhyfritz/goontools/commits/d4858243b4a0f73069305d2e7b59611abb87654f"},{"sha":"f16cec550893797d044b6e6280a5d227f41c7c52","author":{"email":"92e30aa2dcbfdfbee1d86c37a05f0abd25e11e3e@gmail.com","name":"Markus Hsi-Yang Fritz"},"message":"Allow arbitrary paths","distinct":true,"url":"https://api.github.com/repos/mhyfritz/goontools/commits/f16cec550893797d044b6e6280a5d227f41c7c52"},{"sha":"05bc512c153360d505ab423f617b960b415deed6","author":{"email":"92e30aa2dcbfdfbee1d86c37a05f0abd25e11e3e@gmail.com","name":"Markus Hsi-Yang Fritz"},"message":"Fix bugs getopt and json parse errors","distinct":true,"url":"https://api.github.com/repos/mhyfritz/goontools/commits/05bc512c153360d505ab423f617b960b415deed6"}]},"public":true,"created_at":"2015-01-01T15:06:22Z"} +,{"id":"2489654036","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":536865344,"size":3,"distinct_size":1,"ref":"refs/heads/master","head":"9850e5ca8737ada0e2eabaa1ec25955845d48c81","before":"8c5e8cff8bc1e26debd545d6f270e3748a6c4a53","commits":[{"sha":"1ef70b2d64fef77f1a0a1a01036d10bb4a865169","author":{"email":"e225f70e51a1c8b116ff8cab1ebd81c5cf6dacb1@gmail.com","name":"ashishsanjayrao"},"message":"Merge branch 'master' of https://www.github.com/Poornaprajna-Technologies/test\nSo adding a new line","distinct":false,"url":"https://api.github.com/repos/Poornaprajna-Technologies/test/commits/1ef70b2d64fef77f1a0a1a01036d10bb4a865169"},{"sha":"735ec29b8c3018560ee82661aa4165e789fddf2f","author":{"email":"e225f70e51a1c8b116ff8cab1ebd81c5cf6dacb1@gmail.com","name":"ashishsanjayrao"},"message":"trying to add the new folder","distinct":false,"url":"https://api.github.com/repos/Poornaprajna-Technologies/test/commits/735ec29b8c3018560ee82661aa4165e789fddf2f"},{"sha":"9850e5ca8737ada0e2eabaa1ec25955845d48c81","author":{"email":"e225f70e51a1c8b116ff8cab1ebd81c5cf6dacb1@gmail.com","name":"ashishsanjayrao"},"message":"Merge branch 'master' of https://www.github.com/Poornaprajna-Technologies/test","distinct":true,"url":"https://api.github.com/repos/Poornaprajna-Technologies/test/commits/9850e5ca8737ada0e2eabaa1ec25955845d48c81"}]},"public":true,"created_at":"2015-01-01T15:06:23Z","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":"2489654037","type":"PushEvent","actor":{"id":10103990,"login":"nadavwe","gravatar_id":"","url":"https://api.github.com/users/nadavwe","avatar_url":"https://avatars.githubusercontent.com/u/10103990?"},"repo":{"id":28688656,"name":"nadavwe/goos","url":"https://api.github.com/repos/nadavwe/goos"},"payload":{"push_id":536865345,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a04b6adfd4cf0f3504817492bf2d18ab80bd41b2","before":"e39f32547fb4bbf59fbbbfbc0292d1e568ae1d1b","commits":[{"sha":"a04b6adfd4cf0f3504817492bf2d18ab80bd41b2","author":{"email":"7e0f30fdc6ff9b2aafdd8bd6a7048aca9735a8e9@wix.com","name":"Nadav Wexler"},"message":"Create README.md","distinct":true,"url":"https://api.github.com/repos/nadavwe/goos/commits/a04b6adfd4cf0f3504817492bf2d18ab80bd41b2"}]},"public":true,"created_at":"2015-01-01T15:06:23Z"} +,{"id":"2489654042","type":"IssueCommentEvent","actor":{"id":1856308,"login":"rdmueller","gravatar_id":"","url":"https://api.github.com/users/rdmueller","avatar_url":"https://avatars.githubusercontent.com/u/1856308?"},"repo":{"id":26207770,"name":"rdmueller/grails-filmStrip","url":"https://api.github.com/repos/rdmueller/grails-filmStrip"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/rdmueller/grails-filmStrip/issues/22","labels_url":"https://api.github.com/repos/rdmueller/grails-filmStrip/issues/22/labels{/name}","comments_url":"https://api.github.com/repos/rdmueller/grails-filmStrip/issues/22/comments","events_url":"https://api.github.com/repos/rdmueller/grails-filmStrip/issues/22/events","html_url":"https://github.com/rdmueller/grails-filmStrip/issues/22","id":53011460,"number":22,"title":"add contributions section to documentation","user":{"login":"rdmueller","id":1856308,"avatar_url":"https://avatars.githubusercontent.com/u/1856308?v=3","gravatar_id":"","url":"https://api.github.com/users/rdmueller","html_url":"https://github.com/rdmueller","followers_url":"https://api.github.com/users/rdmueller/followers","following_url":"https://api.github.com/users/rdmueller/following{/other_user}","gists_url":"https://api.github.com/users/rdmueller/gists{/gist_id}","starred_url":"https://api.github.com/users/rdmueller/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rdmueller/subscriptions","organizations_url":"https://api.github.com/users/rdmueller/orgs","repos_url":"https://api.github.com/users/rdmueller/repos","events_url":"https://api.github.com/users/rdmueller/events{/privacy}","received_events_url":"https://api.github.com/users/rdmueller/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-28T22:30:24Z","updated_at":"2015-01-01T15:06:23Z","closed_at":null,"body":""},"comment":{"url":"https://api.github.com/repos/rdmueller/grails-filmStrip/issues/comments/68488608","html_url":"https://github.com/rdmueller/grails-filmStrip/issues/22#issuecomment-68488608","issue_url":"https://api.github.com/repos/rdmueller/grails-filmStrip/issues/22","id":68488608,"user":{"login":"rdmueller","id":1856308,"avatar_url":"https://avatars.githubusercontent.com/u/1856308?v=3","gravatar_id":"","url":"https://api.github.com/users/rdmueller","html_url":"https://github.com/rdmueller","followers_url":"https://api.github.com/users/rdmueller/followers","following_url":"https://api.github.com/users/rdmueller/following{/other_user}","gists_url":"https://api.github.com/users/rdmueller/gists{/gist_id}","starred_url":"https://api.github.com/users/rdmueller/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rdmueller/subscriptions","organizations_url":"https://api.github.com/users/rdmueller/orgs","repos_url":"https://api.github.com/users/rdmueller/repos","events_url":"https://api.github.com/users/rdmueller/events{/privacy}","received_events_url":"https://api.github.com/users/rdmueller/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:06:23Z","updated_at":"2015-01-01T15:06:23Z","body":"mention those who have contributed and how other may contribute to the plugin"}},"public":true,"created_at":"2015-01-01T15:06:23Z"} +,{"id":"2489654046","type":"PushEvent","actor":{"id":181719,"login":"tuvokki","gravatar_id":"","url":"https://api.github.com/users/tuvokki","avatar_url":"https://avatars.githubusercontent.com/u/181719?"},"repo":{"id":18937826,"name":"tuvokki/py_sysutils","url":"https://api.github.com/repos/tuvokki/py_sysutils"},"payload":{"push_id":536865348,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ebcbbb04375027b67cae3207f0fe5dff888d8e4e","before":"387f3be7a79df152fe7248b9b52bf580c2df29e8","commits":[{"sha":"ebcbbb04375027b67cae3207f0fe5dff888d8e4e","author":{"email":"551dc3238f358fff847af6267cef3cee20066362@gmail.com","name":"Wouter"},"message":"Create a new vhost config for nginx","distinct":true,"url":"https://api.github.com/repos/tuvokki/py_sysutils/commits/ebcbbb04375027b67cae3207f0fe5dff888d8e4e"}]},"public":true,"created_at":"2015-01-01T15:06:24Z"} +,{"id":"2489654047","type":"WatchEvent","actor":{"id":2552995,"login":"JiriNenahlo","gravatar_id":"","url":"https://api.github.com/users/JiriNenahlo","avatar_url":"https://avatars.githubusercontent.com/u/2552995?"},"repo":{"id":7694208,"name":"lucasr/twoway-view","url":"https://api.github.com/repos/lucasr/twoway-view"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:06:24Z"} +,{"id":"2489654050","type":"PushEvent","actor":{"id":3244222,"login":"dan-lyn","gravatar_id":"","url":"https://api.github.com/users/dan-lyn","avatar_url":"https://avatars.githubusercontent.com/u/3244222?"},"repo":{"id":27088726,"name":"dan-lyn/ElasticsearchExplorerBundle","url":"https://api.github.com/repos/dan-lyn/ElasticsearchExplorerBundle"},"payload":{"push_id":536865349,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1dbdcf46160b58e74d6afff599630a7f01a32b94","before":"ce5400c0776a6452e0f26f58cf240ce56bf172ae","commits":[{"sha":"1dbdcf46160b58e74d6afff599630a7f01a32b94","author":{"email":"0d33f17c2b21dd4853dfb85b73739048fa179b1d@hotmail.com","name":"dan-lyn"},"message":"set selected searchfield in search","distinct":true,"url":"https://api.github.com/repos/dan-lyn/ElasticsearchExplorerBundle/commits/1dbdcf46160b58e74d6afff599630a7f01a32b94"}]},"public":true,"created_at":"2015-01-01T15:06:25Z"} +,{"id":"2489654051","type":"IssuesEvent","actor":{"id":6000196,"login":"xenolightning","gravatar_id":"","url":"https://api.github.com/users/xenolightning","avatar_url":"https://avatars.githubusercontent.com/u/6000196?"},"repo":{"id":16687979,"name":"xenolightning/AudioSwitcher_v1","url":"https://api.github.com/repos/xenolightning/AudioSwitcher_v1"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/xenolightning/AudioSwitcher_v1/issues/289","labels_url":"https://api.github.com/repos/xenolightning/AudioSwitcher_v1/issues/289/labels{/name}","comments_url":"https://api.github.com/repos/xenolightning/AudioSwitcher_v1/issues/289/comments","events_url":"https://api.github.com/repos/xenolightning/AudioSwitcher_v1/issues/289/events","html_url":"https://github.com/xenolightning/AudioSwitcher_v1/issues/289","id":53221463,"number":289,"title":"Audio Switcher Client Issue","user":{"login":"xenolightning","id":6000196,"avatar_url":"https://avatars.githubusercontent.com/u/6000196?v=3","gravatar_id":"","url":"https://api.github.com/users/xenolightning","html_url":"https://github.com/xenolightning","followers_url":"https://api.github.com/users/xenolightning/followers","following_url":"https://api.github.com/users/xenolightning/following{/other_user}","gists_url":"https://api.github.com/users/xenolightning/gists{/gist_id}","starred_url":"https://api.github.com/users/xenolightning/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xenolightning/subscriptions","organizations_url":"https://api.github.com/users/xenolightning/orgs","repos_url":"https://api.github.com/users/xenolightning/repos","events_url":"https://api.github.com/users/xenolightning/events{/privacy}","received_events_url":"https://api.github.com/users/xenolightning/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/xenolightning/AudioSwitcher_v1/labels/auto-report","name":"auto-report","color":"bfe5bf"},{"url":"https://api.github.com/repos/xenolightning/AudioSwitcher_v1/labels/client","name":"client","color":"fbca04"}],"state":"open","locked":false,"assignee":{"login":"xenolightning","id":6000196,"avatar_url":"https://avatars.githubusercontent.com/u/6000196?v=3","gravatar_id":"","url":"https://api.github.com/users/xenolightning","html_url":"https://github.com/xenolightning","followers_url":"https://api.github.com/users/xenolightning/followers","following_url":"https://api.github.com/users/xenolightning/following{/other_user}","gists_url":"https://api.github.com/users/xenolightning/gists{/gist_id}","starred_url":"https://api.github.com/users/xenolightning/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xenolightning/subscriptions","organizations_url":"https://api.github.com/users/xenolightning/orgs","repos_url":"https://api.github.com/users/xenolightning/repos","events_url":"https://api.github.com/users/xenolightning/events{/privacy}","received_events_url":"https://api.github.com/users/xenolightning/received_events","type":"User","site_admin":false},"milestone":null,"comments":0,"created_at":"2015-01-01T15:06:25Z","updated_at":"2015-01-01T15:06:25Z","closed_at":null,"body":"### Details:\r\nAudio Switcher\nVersion: 1.6.2.1\nOperating System: Microsoft Windows NT 6.1.7601 Service Pack 1 64-bit\nAdministrator Privileges: False\n\r\n\r\n\r\n### User Comments:\r\n\r\n### Stacktrace:\r\n```\r\nSystem.Security.SecurityException: Requested registry access is not allowed.\n at Microsoft.Win32.RegistryKey.OpenSubKey(String name, Boolean writable)\n at FortyOne.AudioSwitcher.Configuration.ConfigurationSettings.set_AutoStartWithWindows(Boolean value)\n at FortyOne.AudioSwitcher.AudioSwitcher.LoadSettings()\n at FortyOne.AudioSwitcher.AudioSwitcher..ctor()\n at FortyOne.AudioSwitcher.Program.Main()\nThe Zone of the assembly that failed was:\nMyComputer\r\n```\r\n"}},"public":true,"created_at":"2015-01-01T15:06:25Z"} +,{"id":"2489654055","type":"PushEvent","actor":{"id":1415293,"login":"habibalamin","gravatar_id":"","url":"https://api.github.com/users/habibalamin","avatar_url":"https://avatars.githubusercontent.com/u/1415293?"},"repo":{"id":28038539,"name":"habibalamin/toursquare","url":"https://api.github.com/repos/habibalamin/toursquare"},"payload":{"push_id":536865351,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"2273816136ceb07a6148d0174e734cd62640aff5","before":"2e3ec45df16b9a7acbbe4a7fdc195fae81c465d6","commits":[{"sha":"1a0d4efcb362f5023b7892b295711e5b841627e6","author":{"email":"ee00d5d1f4d4a521692573f60d18a145147322a6@gmail.com","name":"Habib Alamin"},"message":"Add PostGIS extension to database.yml config.","distinct":true,"url":"https://api.github.com/repos/habibalamin/toursquare/commits/1a0d4efcb362f5023b7892b295711e5b841627e6"},{"sha":"c7fdcc4c9f10f4e7b49c9c4fbc40ff6866e30949","author":{"email":"ee00d5d1f4d4a521692573f60d18a145147322a6@gmail.com","name":"Habib Alamin"},"message":"\"rails g model Ping user:references location:point\", then migrate.","distinct":true,"url":"https://api.github.com/repos/habibalamin/toursquare/commits/c7fdcc4c9f10f4e7b49c9c4fbc40ff6866e30949"},{"sha":"2273816136ceb07a6148d0174e734cd62640aff5","author":{"email":"ee00d5d1f4d4a521692573f60d18a145147322a6@gmail.com","name":"Habib Alamin"},"message":"User has many Pings.","distinct":true,"url":"https://api.github.com/repos/habibalamin/toursquare/commits/2273816136ceb07a6148d0174e734cd62640aff5"}]},"public":true,"created_at":"2015-01-01T15:06:25Z"} +,{"id":"2489654056","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":536865350,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"74fcaec4c5ef543a9390c06d956d4ad25d3e75e5","before":"0f52e925514fa93caea5d1f01aa6bdd02b00ba7a","commits":[{"sha":"74fcaec4c5ef543a9390c06d956d4ad25d3e75e5","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420124783577\n\ni8B7BNyYZZvJYrpYiXh6exR4JCOuzsMFUXxvSJ38Ti8=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/74fcaec4c5ef543a9390c06d956d4ad25d3e75e5"}]},"public":true,"created_at":"2015-01-01T15:06:25Z"} +,{"id":"2489654057","type":"WatchEvent","actor":{"id":1773304,"login":"liutian1937","gravatar_id":"","url":"https://api.github.com/users/liutian1937","avatar_url":"https://avatars.githubusercontent.com/u/1773304?"},"repo":{"id":19141383,"name":"fouber/blog","url":"https://api.github.com/repos/fouber/blog"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:06:25Z"} +,{"id":"2489654062","type":"CreateEvent","actor":{"id":10252834,"login":"JonhSHEPARD","gravatar_id":"","url":"https://api.github.com/users/JonhSHEPARD","avatar_url":"https://avatars.githubusercontent.com/u/10252834?"},"repo":{"id":28688707,"name":"JonhSHEPARD/EnderWar","url":"https://api.github.com/repos/JonhSHEPARD/EnderWar"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:26Z"} +,{"id":"2489654064","type":"PushEvent","actor":{"id":8817002,"login":"keywhut","gravatar_id":"","url":"https://api.github.com/users/keywhut","avatar_url":"https://avatars.githubusercontent.com/u/8817002?"},"repo":{"id":28682414,"name":"keywhut/NewsRelease","url":"https://api.github.com/repos/keywhut/NewsRelease"},"payload":{"push_id":536865356,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2317474ae005b65d9091e0b1596ada312510e313","before":"0c76d1c3710289c84032bc11773ecccb93417663","commits":[{"sha":"2317474ae005b65d9091e0b1596ada312510e313","author":{"email":"311e10ceef40671a0a9a6e554c9ff5867331f87d@163.com","name":"keywhut"},"message":"配置稍微修改","distinct":true,"url":"https://api.github.com/repos/keywhut/NewsRelease/commits/2317474ae005b65d9091e0b1596ada312510e313"}]},"public":true,"created_at":"2015-01-01T15:06:26Z"} +,{"id":"2489654070","type":"WatchEvent","actor":{"id":1842973,"login":"hemincong","gravatar_id":"","url":"https://api.github.com/users/hemincong","avatar_url":"https://avatars.githubusercontent.com/u/1842973?"},"repo":{"id":28081156,"name":"lexrus/VPNOn","url":"https://api.github.com/repos/lexrus/VPNOn"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:06:28Z"} +,{"id":"2489654071","type":"IssuesEvent","actor":{"id":2717002,"login":"thetobby","gravatar_id":"","url":"https://api.github.com/users/thetobby","avatar_url":"https://avatars.githubusercontent.com/u/2717002?"},"repo":{"id":28650025,"name":"thetobby/Tmal","url":"https://api.github.com/repos/thetobby/Tmal"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/thetobby/Tmal/issues/1","labels_url":"https://api.github.com/repos/thetobby/Tmal/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/thetobby/Tmal/issues/1/comments","events_url":"https://api.github.com/repos/thetobby/Tmal/issues/1/events","html_url":"https://github.com/thetobby/Tmal/issues/1","id":53221464,"number":1,"title":"Citrix virtual app Firefox support","user":{"login":"thetobby","id":2717002,"avatar_url":"https://avatars.githubusercontent.com/u/2717002?v=3","gravatar_id":"","url":"https://api.github.com/users/thetobby","html_url":"https://github.com/thetobby","followers_url":"https://api.github.com/users/thetobby/followers","following_url":"https://api.github.com/users/thetobby/following{/other_user}","gists_url":"https://api.github.com/users/thetobby/gists{/gist_id}","starred_url":"https://api.github.com/users/thetobby/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thetobby/subscriptions","organizations_url":"https://api.github.com/users/thetobby/orgs","repos_url":"https://api.github.com/users/thetobby/repos","events_url":"https://api.github.com/users/thetobby/events{/privacy}","received_events_url":"https://api.github.com/users/thetobby/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/thetobby/Tmal/labels/bug","name":"bug","color":"fc2929"},{"url":"https://api.github.com/repos/thetobby/Tmal/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:06:28Z","updated_at":"2015-01-01T15:06:28Z","closed_at":null,"body":"Only supports default desktop installations with Registery file.\r\n-Needs to support Citrix app launch as well as option"}},"public":true,"created_at":"2015-01-01T15:06:28Z"} +,{"id":"2489654075","type":"PushEvent","actor":{"id":7595862,"login":"Chrisxwh","gravatar_id":"","url":"https://api.github.com/users/Chrisxwh","avatar_url":"https://avatars.githubusercontent.com/u/7595862?"},"repo":{"id":28678318,"name":"Chrisxwh/Modified-PPTP-Script","url":"https://api.github.com/repos/Chrisxwh/Modified-PPTP-Script"},"payload":{"push_id":536865360,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"222334ff4d62395b64f6ad71bd7dd9d059594695","before":"da92a16f6c7faf803bf091a20399d1114cf79633","commits":[{"sha":"222334ff4d62395b64f6ad71bd7dd9d059594695","author":{"email":"c9180f2bf4d6a7af150e29f041048a109c8b8b9d@gmail.com","name":"Chrisxwh"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/Chrisxwh/Modified-PPTP-Script/commits/222334ff4d62395b64f6ad71bd7dd9d059594695"}]},"public":true,"created_at":"2015-01-01T15:06:28Z"} +,{"id":"2489654076","type":"PushEvent","actor":{"id":481354,"login":"mkovacs","gravatar_id":"","url":"https://api.github.com/users/mkovacs","avatar_url":"https://avatars.githubusercontent.com/u/481354?"},"repo":{"id":28615246,"name":"mkovacs/immersive","url":"https://api.github.com/repos/mkovacs/immersive"},"payload":{"push_id":536865361,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2c745c17ab3fddfff2a15bf38c0d6a093a974d0c","before":"e78026441a233f3ca7f201aa25d49da4131a1c5a","commits":[{"sha":"2c745c17ab3fddfff2a15bf38c0d6a093a974d0c","author":{"email":"5e08f35238ebc3d28e7159a7007ffbbd9e8be8cd@gmail.com","name":"Mate J Kovacs"},"message":"ovr-sensors-demo can print LibOVR version string","distinct":true,"url":"https://api.github.com/repos/mkovacs/immersive/commits/2c745c17ab3fddfff2a15bf38c0d6a093a974d0c"}]},"public":true,"created_at":"2015-01-01T15:06:28Z"} +,{"id":"2489654077","type":"MemberEvent","actor":{"id":7246669,"login":"casanovatoy","gravatar_id":"","url":"https://api.github.com/users/casanovatoy","avatar_url":"https://avatars.githubusercontent.com/u/7246669?"},"repo":{"id":28688673,"name":"casanovatoy/MotionDetection","url":"https://api.github.com/repos/casanovatoy/MotionDetection"},"payload":{"member":{"login":"DSRainy","id":7234857,"avatar_url":"https://avatars.githubusercontent.com/u/7234857?v=3","gravatar_id":"","url":"https://api.github.com/users/DSRainy","html_url":"https://github.com/DSRainy","followers_url":"https://api.github.com/users/DSRainy/followers","following_url":"https://api.github.com/users/DSRainy/following{/other_user}","gists_url":"https://api.github.com/users/DSRainy/gists{/gist_id}","starred_url":"https://api.github.com/users/DSRainy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DSRainy/subscriptions","organizations_url":"https://api.github.com/users/DSRainy/orgs","repos_url":"https://api.github.com/users/DSRainy/repos","events_url":"https://api.github.com/users/DSRainy/events{/privacy}","received_events_url":"https://api.github.com/users/DSRainy/received_events","type":"User","site_admin":false},"action":"added"},"public":true,"created_at":"2015-01-01T15:06:29Z"} +,{"id":"2489654080","type":"WatchEvent","actor":{"id":1693988,"login":"perryflynn","gravatar_id":"","url":"https://api.github.com/users/perryflynn","avatar_url":"https://avatars.githubusercontent.com/u/1693988?"},"repo":{"id":11323319,"name":"erusev/parsedown","url":"https://api.github.com/repos/erusev/parsedown"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:06:29Z"} +,{"id":"2489654082","type":"PushEvent","actor":{"id":414586,"login":"roryk","gravatar_id":"","url":"https://api.github.com/users/roryk","avatar_url":"https://avatars.githubusercontent.com/u/414586?"},"repo":{"id":8049897,"name":"chapmanb/bcbio-nextgen","url":"https://api.github.com/repos/chapmanb/bcbio-nextgen"},"payload":{"push_id":536865363,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7739f85609f07bf3ffa69f653cb410e7bce69b88","before":"fc9f49f34329b6dd2c7602d9d5c7cb625426d631","commits":[{"sha":"7739f85609f07bf3ffa69f653cb410e7bce69b88","author":{"email":"fc10ada4ec9f72360620658ed25e869fa8a1f414@gmail.com","name":"roryk"},"message":"Convert fastq files to phred+33 quality for transcriptome mapping.\n\nbwa mem can't handle phred+64.","distinct":true,"url":"https://api.github.com/repos/chapmanb/bcbio-nextgen/commits/7739f85609f07bf3ffa69f653cb410e7bce69b88"}]},"public":true,"created_at":"2015-01-01T15:06:29Z"} +,{"id":"2489654085","type":"PushEvent","actor":{"id":3233228,"login":"LureBreaker","gravatar_id":"","url":"https://api.github.com/users/LureBreaker","avatar_url":"https://avatars.githubusercontent.com/u/3233228?"},"repo":{"id":28688680,"name":"LureBreaker/django-tutorial","url":"https://api.github.com/repos/LureBreaker/django-tutorial"},"payload":{"push_id":536865365,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"581c9136738ec914ed9713293355c303cc59ae0c","before":"e308ed5afa606bc8fef8bf1a9b17c42649ba89f6","commits":[{"sha":"581c9136738ec914ed9713293355c303cc59ae0c","author":{"email":"516cd4ba6af87985d3b4a4685b1a4e7b76748394@sis.smu.edu.sg","name":"Lim Xian Ming"},"message":"Create README.md","distinct":true,"url":"https://api.github.com/repos/LureBreaker/django-tutorial/commits/581c9136738ec914ed9713293355c303cc59ae0c"}]},"public":true,"created_at":"2015-01-01T15:06:29Z"} +,{"id":"2489654086","type":"PullRequestEvent","actor":{"id":337024,"login":"nabetama","gravatar_id":"","url":"https://api.github.com/users/nabetama","avatar_url":"https://avatars.githubusercontent.com/u/337024?"},"repo":{"id":27433708,"name":"nabetama/slacky","url":"https://api.github.com/repos/nabetama/slacky"},"payload":{"action":"closed","number":39,"pull_request":{"url":"https://api.github.com/repos/nabetama/slacky/pulls/39","id":26743726,"html_url":"https://github.com/nabetama/slacky/pull/39","diff_url":"https://github.com/nabetama/slacky/pull/39.diff","patch_url":"https://github.com/nabetama/slacky/pull/39.patch","issue_url":"https://api.github.com/repos/nabetama/slacky/issues/39","number":39,"state":"closed","locked":false,"title":"message format at timeline.","user":{"login":"nabetama","id":337024,"avatar_url":"https://avatars.githubusercontent.com/u/337024?v=3","gravatar_id":"","url":"https://api.github.com/users/nabetama","html_url":"https://github.com/nabetama","followers_url":"https://api.github.com/users/nabetama/followers","following_url":"https://api.github.com/users/nabetama/following{/other_user}","gists_url":"https://api.github.com/users/nabetama/gists{/gist_id}","starred_url":"https://api.github.com/users/nabetama/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nabetama/subscriptions","organizations_url":"https://api.github.com/users/nabetama/orgs","repos_url":"https://api.github.com/users/nabetama/repos","events_url":"https://api.github.com/users/nabetama/events{/privacy}","received_events_url":"https://api.github.com/users/nabetama/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T14:54:34Z","updated_at":"2015-01-01T15:06:29Z","closed_at":"2015-01-01T15:06:29Z","merged_at":"2015-01-01T15:06:29Z","merge_commit_sha":"0b8290534d8211da15769e88946c5cebfae82034","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/nabetama/slacky/pulls/39/commits","review_comments_url":"https://api.github.com/repos/nabetama/slacky/pulls/39/comments","review_comment_url":"https://api.github.com/repos/nabetama/slacky/pulls/comments/{number}","comments_url":"https://api.github.com/repos/nabetama/slacky/issues/39/comments","statuses_url":"https://api.github.com/repos/nabetama/slacky/statuses/c7152154ea634dee6b2a82227dda5e5d72d602f5","head":{"label":"nabetama:timeline","ref":"timeline","sha":"c7152154ea634dee6b2a82227dda5e5d72d602f5","user":{"login":"nabetama","id":337024,"avatar_url":"https://avatars.githubusercontent.com/u/337024?v=3","gravatar_id":"","url":"https://api.github.com/users/nabetama","html_url":"https://github.com/nabetama","followers_url":"https://api.github.com/users/nabetama/followers","following_url":"https://api.github.com/users/nabetama/following{/other_user}","gists_url":"https://api.github.com/users/nabetama/gists{/gist_id}","starred_url":"https://api.github.com/users/nabetama/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nabetama/subscriptions","organizations_url":"https://api.github.com/users/nabetama/orgs","repos_url":"https://api.github.com/users/nabetama/repos","events_url":"https://api.github.com/users/nabetama/events{/privacy}","received_events_url":"https://api.github.com/users/nabetama/received_events","type":"User","site_admin":false},"repo":{"id":27433708,"name":"slacky","full_name":"nabetama/slacky","owner":{"login":"nabetama","id":337024,"avatar_url":"https://avatars.githubusercontent.com/u/337024?v=3","gravatar_id":"","url":"https://api.github.com/users/nabetama","html_url":"https://github.com/nabetama","followers_url":"https://api.github.com/users/nabetama/followers","following_url":"https://api.github.com/users/nabetama/following{/other_user}","gists_url":"https://api.github.com/users/nabetama/gists{/gist_id}","starred_url":"https://api.github.com/users/nabetama/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nabetama/subscriptions","organizations_url":"https://api.github.com/users/nabetama/orgs","repos_url":"https://api.github.com/users/nabetama/repos","events_url":"https://api.github.com/users/nabetama/events{/privacy}","received_events_url":"https://api.github.com/users/nabetama/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/nabetama/slacky","description":"A Python package for Slack's JSON REST API.","fork":false,"url":"https://api.github.com/repos/nabetama/slacky","forks_url":"https://api.github.com/repos/nabetama/slacky/forks","keys_url":"https://api.github.com/repos/nabetama/slacky/keys{/key_id}","collaborators_url":"https://api.github.com/repos/nabetama/slacky/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/nabetama/slacky/teams","hooks_url":"https://api.github.com/repos/nabetama/slacky/hooks","issue_events_url":"https://api.github.com/repos/nabetama/slacky/issues/events{/number}","events_url":"https://api.github.com/repos/nabetama/slacky/events","assignees_url":"https://api.github.com/repos/nabetama/slacky/assignees{/user}","branches_url":"https://api.github.com/repos/nabetama/slacky/branches{/branch}","tags_url":"https://api.github.com/repos/nabetama/slacky/tags","blobs_url":"https://api.github.com/repos/nabetama/slacky/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/nabetama/slacky/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/nabetama/slacky/git/refs{/sha}","trees_url":"https://api.github.com/repos/nabetama/slacky/git/trees{/sha}","statuses_url":"https://api.github.com/repos/nabetama/slacky/statuses/{sha}","languages_url":"https://api.github.com/repos/nabetama/slacky/languages","stargazers_url":"https://api.github.com/repos/nabetama/slacky/stargazers","contributors_url":"https://api.github.com/repos/nabetama/slacky/contributors","subscribers_url":"https://api.github.com/repos/nabetama/slacky/subscribers","subscription_url":"https://api.github.com/repos/nabetama/slacky/subscription","commits_url":"https://api.github.com/repos/nabetama/slacky/commits{/sha}","git_commits_url":"https://api.github.com/repos/nabetama/slacky/git/commits{/sha}","comments_url":"https://api.github.com/repos/nabetama/slacky/comments{/number}","issue_comment_url":"https://api.github.com/repos/nabetama/slacky/issues/comments/{number}","contents_url":"https://api.github.com/repos/nabetama/slacky/contents/{+path}","compare_url":"https://api.github.com/repos/nabetama/slacky/compare/{base}...{head}","merges_url":"https://api.github.com/repos/nabetama/slacky/merges","archive_url":"https://api.github.com/repos/nabetama/slacky/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/nabetama/slacky/downloads","issues_url":"https://api.github.com/repos/nabetama/slacky/issues{/number}","pulls_url":"https://api.github.com/repos/nabetama/slacky/pulls{/number}","milestones_url":"https://api.github.com/repos/nabetama/slacky/milestones{/number}","notifications_url":"https://api.github.com/repos/nabetama/slacky/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/nabetama/slacky/labels{/name}","releases_url":"https://api.github.com/repos/nabetama/slacky/releases{/id}","created_at":"2014-12-02T13:29:43Z","updated_at":"2015-01-01T14:42:06Z","pushed_at":"2015-01-01T15:06:29Z","git_url":"git://github.com/nabetama/slacky.git","ssh_url":"git@github.com:nabetama/slacky.git","clone_url":"https://github.com/nabetama/slacky.git","svn_url":"https://github.com/nabetama/slacky","homepage":"https://pypi.python.org/pypi/slacky","size":1320,"stargazers_count":1,"watchers_count":1,"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":1,"default_branch":"master"}},"base":{"label":"nabetama:master","ref":"master","sha":"2e9d23807e62e1c59e77382464b5b923ccd0ed20","user":{"login":"nabetama","id":337024,"avatar_url":"https://avatars.githubusercontent.com/u/337024?v=3","gravatar_id":"","url":"https://api.github.com/users/nabetama","html_url":"https://github.com/nabetama","followers_url":"https://api.github.com/users/nabetama/followers","following_url":"https://api.github.com/users/nabetama/following{/other_user}","gists_url":"https://api.github.com/users/nabetama/gists{/gist_id}","starred_url":"https://api.github.com/users/nabetama/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nabetama/subscriptions","organizations_url":"https://api.github.com/users/nabetama/orgs","repos_url":"https://api.github.com/users/nabetama/repos","events_url":"https://api.github.com/users/nabetama/events{/privacy}","received_events_url":"https://api.github.com/users/nabetama/received_events","type":"User","site_admin":false},"repo":{"id":27433708,"name":"slacky","full_name":"nabetama/slacky","owner":{"login":"nabetama","id":337024,"avatar_url":"https://avatars.githubusercontent.com/u/337024?v=3","gravatar_id":"","url":"https://api.github.com/users/nabetama","html_url":"https://github.com/nabetama","followers_url":"https://api.github.com/users/nabetama/followers","following_url":"https://api.github.com/users/nabetama/following{/other_user}","gists_url":"https://api.github.com/users/nabetama/gists{/gist_id}","starred_url":"https://api.github.com/users/nabetama/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nabetama/subscriptions","organizations_url":"https://api.github.com/users/nabetama/orgs","repos_url":"https://api.github.com/users/nabetama/repos","events_url":"https://api.github.com/users/nabetama/events{/privacy}","received_events_url":"https://api.github.com/users/nabetama/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/nabetama/slacky","description":"A Python package for Slack's JSON REST API.","fork":false,"url":"https://api.github.com/repos/nabetama/slacky","forks_url":"https://api.github.com/repos/nabetama/slacky/forks","keys_url":"https://api.github.com/repos/nabetama/slacky/keys{/key_id}","collaborators_url":"https://api.github.com/repos/nabetama/slacky/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/nabetama/slacky/teams","hooks_url":"https://api.github.com/repos/nabetama/slacky/hooks","issue_events_url":"https://api.github.com/repos/nabetama/slacky/issues/events{/number}","events_url":"https://api.github.com/repos/nabetama/slacky/events","assignees_url":"https://api.github.com/repos/nabetama/slacky/assignees{/user}","branches_url":"https://api.github.com/repos/nabetama/slacky/branches{/branch}","tags_url":"https://api.github.com/repos/nabetama/slacky/tags","blobs_url":"https://api.github.com/repos/nabetama/slacky/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/nabetama/slacky/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/nabetama/slacky/git/refs{/sha}","trees_url":"https://api.github.com/repos/nabetama/slacky/git/trees{/sha}","statuses_url":"https://api.github.com/repos/nabetama/slacky/statuses/{sha}","languages_url":"https://api.github.com/repos/nabetama/slacky/languages","stargazers_url":"https://api.github.com/repos/nabetama/slacky/stargazers","contributors_url":"https://api.github.com/repos/nabetama/slacky/contributors","subscribers_url":"https://api.github.com/repos/nabetama/slacky/subscribers","subscription_url":"https://api.github.com/repos/nabetama/slacky/subscription","commits_url":"https://api.github.com/repos/nabetama/slacky/commits{/sha}","git_commits_url":"https://api.github.com/repos/nabetama/slacky/git/commits{/sha}","comments_url":"https://api.github.com/repos/nabetama/slacky/comments{/number}","issue_comment_url":"https://api.github.com/repos/nabetama/slacky/issues/comments/{number}","contents_url":"https://api.github.com/repos/nabetama/slacky/contents/{+path}","compare_url":"https://api.github.com/repos/nabetama/slacky/compare/{base}...{head}","merges_url":"https://api.github.com/repos/nabetama/slacky/merges","archive_url":"https://api.github.com/repos/nabetama/slacky/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/nabetama/slacky/downloads","issues_url":"https://api.github.com/repos/nabetama/slacky/issues{/number}","pulls_url":"https://api.github.com/repos/nabetama/slacky/pulls{/number}","milestones_url":"https://api.github.com/repos/nabetama/slacky/milestones{/number}","notifications_url":"https://api.github.com/repos/nabetama/slacky/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/nabetama/slacky/labels{/name}","releases_url":"https://api.github.com/repos/nabetama/slacky/releases{/id}","created_at":"2014-12-02T13:29:43Z","updated_at":"2015-01-01T14:42:06Z","pushed_at":"2015-01-01T15:06:29Z","git_url":"git://github.com/nabetama/slacky.git","ssh_url":"git@github.com:nabetama/slacky.git","clone_url":"https://github.com/nabetama/slacky.git","svn_url":"https://github.com/nabetama/slacky","homepage":"https://pypi.python.org/pypi/slacky","size":1320,"stargazers_count":1,"watchers_count":1,"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":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/nabetama/slacky/pulls/39"},"html":{"href":"https://github.com/nabetama/slacky/pull/39"},"issue":{"href":"https://api.github.com/repos/nabetama/slacky/issues/39"},"comments":{"href":"https://api.github.com/repos/nabetama/slacky/issues/39/comments"},"review_comments":{"href":"https://api.github.com/repos/nabetama/slacky/pulls/39/comments"},"review_comment":{"href":"https://api.github.com/repos/nabetama/slacky/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/nabetama/slacky/pulls/39/commits"},"statuses":{"href":"https://api.github.com/repos/nabetama/slacky/statuses/c7152154ea634dee6b2a82227dda5e5d72d602f5"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"nabetama","id":337024,"avatar_url":"https://avatars.githubusercontent.com/u/337024?v=3","gravatar_id":"","url":"https://api.github.com/users/nabetama","html_url":"https://github.com/nabetama","followers_url":"https://api.github.com/users/nabetama/followers","following_url":"https://api.github.com/users/nabetama/following{/other_user}","gists_url":"https://api.github.com/users/nabetama/gists{/gist_id}","starred_url":"https://api.github.com/users/nabetama/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nabetama/subscriptions","organizations_url":"https://api.github.com/users/nabetama/orgs","repos_url":"https://api.github.com/users/nabetama/repos","events_url":"https://api.github.com/users/nabetama/events{/privacy}","received_events_url":"https://api.github.com/users/nabetama/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":2,"deletions":2,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:06:29Z"} +,{"id":"2489654088","type":"WatchEvent","actor":{"id":955484,"login":"xieren58","gravatar_id":"","url":"https://api.github.com/users/xieren58","avatar_url":"https://avatars.githubusercontent.com/u/955484?"},"repo":{"id":18501766,"name":"devinus/poison","url":"https://api.github.com/repos/devinus/poison"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:06:29Z"} +,{"id":"2489654089","type":"PushEvent","actor":{"id":337024,"login":"nabetama","gravatar_id":"","url":"https://api.github.com/users/nabetama","avatar_url":"https://avatars.githubusercontent.com/u/337024?"},"repo":{"id":27433708,"name":"nabetama/slacky","url":"https://api.github.com/repos/nabetama/slacky"},"payload":{"push_id":536865366,"size":2,"distinct_size":1,"ref":"refs/heads/master","head":"67172ff8d1f50fffa85c880db2a0e143cc350ad2","before":"2e9d23807e62e1c59e77382464b5b923ccd0ed20","commits":[{"sha":"c7152154ea634dee6b2a82227dda5e5d72d602f5","author":{"email":"2278e2e498cb2e11617fd57f8a62966011a6b306@gmail.com","name":"nabetama"},"message":"message format at timeline.","distinct":false,"url":"https://api.github.com/repos/nabetama/slacky/commits/c7152154ea634dee6b2a82227dda5e5d72d602f5"},{"sha":"67172ff8d1f50fffa85c880db2a0e143cc350ad2","author":{"email":"2278e2e498cb2e11617fd57f8a62966011a6b306@gmail.com","name":"nabetama"},"message":"Merge pull request #39 from nabetama/timeline\n\nmessage format at timeline.","distinct":true,"url":"https://api.github.com/repos/nabetama/slacky/commits/67172ff8d1f50fffa85c880db2a0e143cc350ad2"}]},"public":true,"created_at":"2015-01-01T15:06:29Z"} +,{"id":"2489654094","type":"CreateEvent","actor":{"id":624632,"login":"gusennan","gravatar_id":"","url":"https://api.github.com/users/gusennan","avatar_url":"https://avatars.githubusercontent.com/u/624632?"},"repo":{"id":28673499,"name":"gusennan/xamarin-forms-samples","url":"https://api.github.com/repos/gusennan/xamarin-forms-samples"},"payload":{"ref":"deck_unittests","ref_type":"branch","master_branch":"master","description":"Sample apps built using the Xamarin.Forms framework","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:30Z"} +,{"id":"2489654098","type":"DeleteEvent","actor":{"id":3888750,"login":"joachimmetz","gravatar_id":"","url":"https://api.github.com/users/joachimmetz","avatar_url":"https://avatars.githubusercontent.com/u/3888750?"},"repo":{"id":24068439,"name":"libyal/libcfile","url":"https://api.github.com/repos/libyal/libcfile"},"payload":{"ref":"20150101","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:30Z","org":{"id":8692283,"login":"libyal","gravatar_id":"","url":"https://api.github.com/orgs/libyal","avatar_url":"https://avatars.githubusercontent.com/u/8692283?"}} +,{"id":"2489654101","type":"WatchEvent","actor":{"id":426400,"login":"altmer","gravatar_id":"","url":"https://api.github.com/users/altmer","avatar_url":"https://avatars.githubusercontent.com/u/426400?"},"repo":{"id":1424470,"name":"moment/moment","url":"https://api.github.com/repos/moment/moment"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:06:31Z","org":{"id":4129662,"login":"moment","gravatar_id":"","url":"https://api.github.com/orgs/moment","avatar_url":"https://avatars.githubusercontent.com/u/4129662?"}} +,{"id":"2489654102","type":"WatchEvent","actor":{"id":15594,"login":"mattsta","gravatar_id":"","url":"https://api.github.com/users/mattsta","avatar_url":"https://avatars.githubusercontent.com/u/15594?"},"repo":{"id":943149,"name":"mbostock/d3","url":"https://api.github.com/repos/mbostock/d3"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:06:31Z"} +,{"id":"2489654104","type":"WatchEvent","actor":{"id":170820,"login":"seyhunak","gravatar_id":"","url":"https://api.github.com/users/seyhunak","avatar_url":"https://avatars.githubusercontent.com/u/170820?"},"repo":{"id":8257106,"name":"jessesquires/JSQMessagesViewController","url":"https://api.github.com/repos/jessesquires/JSQMessagesViewController"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:06:31Z"} +,{"id":"2489654105","type":"IssueCommentEvent","actor":{"id":9715,"login":"ttilley","gravatar_id":"","url":"https://api.github.com/users/ttilley","avatar_url":"https://avatars.githubusercontent.com/u/9715?"},"repo":{"id":27638530,"name":"paulcbetts/grunt-build-atom-shell","url":"https://api.github.com/repos/paulcbetts/grunt-build-atom-shell"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/paulcbetts/grunt-build-atom-shell/issues/7","labels_url":"https://api.github.com/repos/paulcbetts/grunt-build-atom-shell/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/paulcbetts/grunt-build-atom-shell/issues/7/comments","events_url":"https://api.github.com/repos/paulcbetts/grunt-build-atom-shell/issues/7/events","html_url":"https://github.com/paulcbetts/grunt-build-atom-shell/issues/7","id":53219793,"number":7,"title":"breaking change in atom-shell 0.20.3 build","user":{"login":"ttilley","id":9715,"avatar_url":"https://avatars.githubusercontent.com/u/9715?v=3","gravatar_id":"","url":"https://api.github.com/users/ttilley","html_url":"https://github.com/ttilley","followers_url":"https://api.github.com/users/ttilley/followers","following_url":"https://api.github.com/users/ttilley/following{/other_user}","gists_url":"https://api.github.com/users/ttilley/gists{/gist_id}","starred_url":"https://api.github.com/users/ttilley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ttilley/subscriptions","organizations_url":"https://api.github.com/users/ttilley/orgs","repos_url":"https://api.github.com/users/ttilley/repos","events_url":"https://api.github.com/users/ttilley/events{/privacy}","received_events_url":"https://api.github.com/users/ttilley/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T13:34:18Z","updated_at":"2015-01-01T15:06:31Z","closed_at":null,"body":"The 'atom.gyp' rigging needs to be fixed for atom-shell 0.20.3 and beyond. The upstream build process has changed in order to make this customization simpler. Now the suggested method of renaming is:\r\n\r\n```shell\r\nexport GYP_DEFINES=\"product_name=MyApp project_name=myapp\"\r\n./script/update.py\r\n./script/build.py -C Release -t myapp\r\n```\r\n\r\nIn grunt-build-atom-shell 1.1.4, attempting to compile atom-shell 0.20.3 will throw the following error:\r\n\r\n```\r\n>> Running: python script/bootstrap.py\r\n>> Running: python script/build.py -c Release -t triple-triad-atom\r\n>> ninja: error: unknown target 'triple-triad-atom'\r\n```\r\n\r\nThe 'atom.gyp' file ends up containing:\r\n\r\n```\r\n 'project_name%': 'atom',\r\n 'product_name%': 'Atom',\r\n```\r\n\r\nDealing with quoting and interpolation for multiple options in a single string feels weird for me, so it might just be simpler to add another two replace statements for the new form. I haven't looked at the changes in depth to see what else might have changed (or if those defines are used in other places).\r\n\r\nIf I get un-lazy I'll patch and submit a pull quest, but considering i'm both lazy and hung over you'll probably get to it first. :laughing: "},"comment":{"url":"https://api.github.com/repos/paulcbetts/grunt-build-atom-shell/issues/comments/68488610","html_url":"https://github.com/paulcbetts/grunt-build-atom-shell/issues/7#issuecomment-68488610","issue_url":"https://api.github.com/repos/paulcbetts/grunt-build-atom-shell/issues/7","id":68488610,"user":{"login":"ttilley","id":9715,"avatar_url":"https://avatars.githubusercontent.com/u/9715?v=3","gravatar_id":"","url":"https://api.github.com/users/ttilley","html_url":"https://github.com/ttilley","followers_url":"https://api.github.com/users/ttilley/followers","following_url":"https://api.github.com/users/ttilley/following{/other_user}","gists_url":"https://api.github.com/users/ttilley/gists{/gist_id}","starred_url":"https://api.github.com/users/ttilley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ttilley/subscriptions","organizations_url":"https://api.github.com/users/ttilley/orgs","repos_url":"https://api.github.com/users/ttilley/repos","events_url":"https://api.github.com/users/ttilley/events{/privacy}","received_events_url":"https://api.github.com/users/ttilley/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:06:31Z","updated_at":"2015-01-01T15:06:31Z","body":"It appears that there's a typo in atom-shell upstream that mixes up product_name and project_name in one place, breaking the build anyways. \r\n\r\nThis is what i'm doing to work around it locally:\r\n\r\n```diff\r\ndiff --git i/tasks/build-atom-shell-task.coffee w/tasks/build-atom-shell-task.coffee\r\nindex 66f8812..a5d42a1 100644\r\n--- i/tasks/build-atom-shell-task.coffee\r\n+++ w/tasks/build-atom-shell-task.coffee\r\n@@ -62,16 +62,27 @@ module.exports = (grunt) ->\r\n .concatMap (x) -> spawnObservable(x)\r\n .takeLast(1)\r\n \r\n+ envWithGypDefines = (projectName, productName) ->\r\n+ ewg = _.extend {}, process.env\r\n+ ewg.GYP_DEFINES = \"project_name=#{projectName} product_name=#{productName}\"\r\n+ if process.env.GYP_DEFINES?\r\n+ ewg.GYP_DEFINES = \"#{process.env.GYP_DEFINES} #{ewg.GYP_DEFINES}\"\r\n+ ewg\r\n+\r\n buildAtomShell = (atomShellDir, config, projectName, productName, forceRebuild) ->\r\n+ cmdOptions =\r\n+ cwd: atomShellDir\r\n+ env: envWithGypDefines(projectName, productName)\r\n+\r\n bootstrapCmd =\r\n cmd: 'python'\r\n args: ['script/bootstrap.py']\r\n- opts: {cwd: atomShellDir}\r\n+ opts: cmdOptions\r\n \r\n buildCmd =\r\n cmd: 'python'\r\n args: ['script/build.py', '-c', config, '-t', projectName]\r\n- opts: {cwd: atomShellDir}\r\n+ opts: cmdOptions\r\n \r\n rx.Observable.create (subj) ->\r\n grunt.verbose.ok \"Rigging atom.gyp to have correct name\"\r\n@@ -81,6 +92,7 @@ module.exports = (grunt) ->\r\n .replace(\"'project_name': 'atom'\", \"'project_name': '#{projectName}'\")\r\n .replace(\"'product_name': 'Atom'\", \"'product_name': '#{productName}'\")\r\n .replace(\"'framework_name': 'Atom Framework'\", \"'framework_name': '#{productName} Framework'\")\r\n+ .replace(\"'<(project_name) Framework'\", \"'<(product_name) Framework'\") # fix upstream typo in 0.20.3\r\n \r\n grunt.file.write gypFile, atomGyp\r\n```\r\n"}},"public":true,"created_at":"2015-01-01T15:06:31Z"} +,{"id":"2489654108","type":"PushEvent","actor":{"id":1563559,"login":"jaswsinc","gravatar_id":"","url":"https://api.github.com/users/jaswsinc","avatar_url":"https://avatars.githubusercontent.com/u/1563559?"},"repo":{"id":26142240,"name":"websharks/zencache","url":"https://api.github.com/repos/websharks/zencache"},"payload":{"push_id":536865373,"size":1,"distinct_size":1,"ref":"refs/heads/feature/5-deactivate","head":"46f08fe96ad6b8dba7ebb94dd778f59082ec2d00","before":"d96c9eb2f4dd57a1907df2ed2ecb642f449b8efd","commits":[{"sha":"46f08fe96ad6b8dba7ebb94dd778f59082ec2d00","author":{"email":"6201de23c7ceb366b024d639ec160438de89ccc1@wsharks.com","name":"JasWSInc"},"message":"Auto-deactivate QC and QCP. See: websharks/zencache#5","distinct":true,"url":"https://api.github.com/repos/websharks/zencache/commits/46f08fe96ad6b8dba7ebb94dd778f59082ec2d00"}]},"public":true,"created_at":"2015-01-01T15:06:31Z","org":{"id":1563690,"login":"websharks","gravatar_id":"","url":"https://api.github.com/orgs/websharks","avatar_url":"https://avatars.githubusercontent.com/u/1563690?"}} +,{"id":"2489654110","type":"WatchEvent","actor":{"id":744011,"login":"karlguillotte","gravatar_id":"","url":"https://api.github.com/users/karlguillotte","avatar_url":"https://avatars.githubusercontent.com/u/744011?"},"repo":{"id":14905973,"name":"petehunt/react-boilerplate","url":"https://api.github.com/repos/petehunt/react-boilerplate"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:06:34Z"} +,{"id":"2489654114","type":"PushEvent","actor":{"id":886093,"login":"fifahuihua","gravatar_id":"","url":"https://api.github.com/users/fifahuihua","avatar_url":"https://avatars.githubusercontent.com/u/886093?"},"repo":{"id":28496141,"name":"fifahuihua/multi-checkbox","url":"https://api.github.com/repos/fifahuihua/multi-checkbox"},"payload":{"push_id":536865375,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ad740bc0e76058dbfc75fe04065e8a64f3088855","before":"aea3db1776053da01c3be569e3a193ca3b3d5de5","commits":[{"sha":"ad740bc0e76058dbfc75fe04065e8a64f3088855","author":{"email":"a315864039802a8d69d0f8ab426e32a1cc326f64@dinglicom.com","name":"Antony ZHANG"},"message":"remove icomoon fonts","distinct":true,"url":"https://api.github.com/repos/fifahuihua/multi-checkbox/commits/ad740bc0e76058dbfc75fe04065e8a64f3088855"}]},"public":true,"created_at":"2015-01-01T15:06:34Z"} +,{"id":"2489654116","type":"PushEvent","actor":{"id":3797972,"login":"oceanjack","gravatar_id":"","url":"https://api.github.com/users/oceanjack","avatar_url":"https://avatars.githubusercontent.com/u/3797972?"},"repo":{"id":27213484,"name":"oceanjack/oceanjack.github.io","url":"https://api.github.com/repos/oceanjack/oceanjack.github.io"},"payload":{"push_id":536865377,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1210edf75dc6c2c48bdc121b4de4e11bd46d4479","before":"11544f068df7f55ab89dfff208b531cd6771bef6","commits":[{"sha":"1210edf75dc6c2c48bdc121b4de4e11bd46d4479","author":{"email":"e7962a36105d0ad4343dd588376fafc81e75f2e2@gmail.com","name":"oceanjack"},"message":"update","distinct":true,"url":"https://api.github.com/repos/oceanjack/oceanjack.github.io/commits/1210edf75dc6c2c48bdc121b4de4e11bd46d4479"}]},"public":true,"created_at":"2015-01-01T15:06:34Z"} +,{"id":"2489654119","type":"PushEvent","actor":{"id":1349719,"login":"Rolos","gravatar_id":"","url":"https://api.github.com/users/Rolos","avatar_url":"https://avatars.githubusercontent.com/u/1349719?"},"repo":{"id":26723157,"name":"Rolos/Quizmaniac","url":"https://api.github.com/repos/Rolos/Quizmaniac"},"payload":{"push_id":536865379,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"075546951dec19b9511f27e501d1ae0dfc4e030d","before":"046a63deeb94c9b61905e927236da7dca814931b","commits":[{"sha":"075546951dec19b9511f27e501d1ae0dfc4e030d","author":{"email":"c80c86607818b7830709ffaf7592bc2b71204ed1@gmail.com","name":"lsierra"},"message":"Resolve some issues with saving results","distinct":true,"url":"https://api.github.com/repos/Rolos/Quizmaniac/commits/075546951dec19b9511f27e501d1ae0dfc4e030d"}]},"public":true,"created_at":"2015-01-01T15:06:34Z"} +,{"id":"2489654120","type":"PushEvent","actor":{"id":4500858,"login":"TitanNano","gravatar_id":"","url":"https://api.github.com/users/TitanNano","avatar_url":"https://avatars.githubusercontent.com/u/4500858?"},"repo":{"id":19286860,"name":"TitanNano/loqui","url":"https://api.github.com/repos/TitanNano/loqui"},"payload":{"push_id":536865380,"size":1,"distinct_size":1,"ref":"refs/heads/send-status","head":"93184b6ede78d07b16529d609d0402949865be7c","before":"88fc52bab19264acffae11798631c3769d0ffb95","commits":[{"sha":"93184b6ede78d07b16529d609d0402949865be7c","author":{"email":"7e423ed1cd785730cb345931e6011764eaa64c83@titannano.de","name":"Jovan Gerodetti"},"message":"only set status and rerender if it isn't already sent.","distinct":true,"url":"https://api.github.com/repos/TitanNano/loqui/commits/93184b6ede78d07b16529d609d0402949865be7c"}]},"public":true,"created_at":"2015-01-01T15:06:34Z"} +,{"id":"2489654122","type":"PushEvent","actor":{"id":4500858,"login":"TitanNano","gravatar_id":"","url":"https://api.github.com/users/TitanNano","avatar_url":"https://avatars.githubusercontent.com/u/4500858?"},"repo":{"id":19286860,"name":"TitanNano/loqui","url":"https://api.github.com/repos/TitanNano/loqui"},"payload":{"push_id":536865381,"size":1,"distinct_size":1,"ref":"refs/heads/dev","head":"4ec47a022735ae3ba8c4fe4eab1b336d70df5225","before":"509f1218bd4539fa3830fc9395f6aa9ae721a33d","commits":[{"sha":"4ec47a022735ae3ba8c4fe4eab1b336d70df5225","author":{"email":"a23beac346f9599a3cfb0b79e24119622346eef3@gmail.com","name":"Jovan Gerodetti"},"message":"Merge pull request #617 from TitanNano/dev\n\nfixed list selector for lastACK line","distinct":true,"url":"https://api.github.com/repos/TitanNano/loqui/commits/4ec47a022735ae3ba8c4fe4eab1b336d70df5225"}]},"public":true,"created_at":"2015-01-01T15:06:34Z"} +,{"id":"2489654124","type":"PushEvent","actor":{"id":812977,"login":"oparisy","gravatar_id":"","url":"https://api.github.com/users/oparisy","avatar_url":"https://avatars.githubusercontent.com/u/812977?"},"repo":{"id":28646951,"name":"oparisy/lwjgl-packaging","url":"https://api.github.com/repos/oparisy/lwjgl-packaging"},"payload":{"push_id":536865383,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"430dd7258e701c7ab3ff175d1172d2525005a870","before":"48113f4b5b9e074dc4287db024d2ace00edbc868","commits":[{"sha":"430dd7258e701c7ab3ff175d1172d2525005a870","author":{"email":"cedfe4728585c331c4102d6179de4dbdf49e3681@gmail.com”","name":"“oparisy”"},"message":"Specify how to integrate this script","distinct":true,"url":"https://api.github.com/repos/oparisy/lwjgl-packaging/commits/430dd7258e701c7ab3ff175d1172d2525005a870"}]},"public":true,"created_at":"2015-01-01T15:06:35Z"} +,{"id":"2489654129","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":28688452,"name":"brunocarvalhodearaujo/BackBone","url":"https://api.github.com/repos/brunocarvalhodearaujo/BackBone"},"payload":{"push_id":536865387,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c4c05b8018d673be5cba2ec3b313d789be83aeea","before":"8f496de67e8c312235c16cb3493adf117d491b58","commits":[{"sha":"c4c05b8018d673be5cba2ec3b313d789be83aeea","author":{"email":"254d51cb477bb0448649802c443c6e6c2f475324@gmail.com","name":"Bruno Carvalho de Araujo"},"message":"Delete Router.php","distinct":true,"url":"https://api.github.com/repos/brunocarvalhodearaujo/BackBone/commits/c4c05b8018d673be5cba2ec3b313d789be83aeea"}]},"public":true,"created_at":"2015-01-01T15:06:36Z"} +,{"id":"2489654130","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":536865388,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"f357a59f2a72d625663d6f765ff620d7ef09360d","before":"d9e6ec1876dfe6a9dc9b3aa31ecd332372640016","commits":[{"sha":"f357a59f2a72d625663d6f765ff620d7ef09360d","author":{"email":"2d897f84cebfa32309ad883bf75cbe8ccb3f6374@jpespinal.com","name":"Juan Pablo Espinal"},"message":"Attempt 2.","distinct":true,"url":"https://api.github.com/repos/jpespinal/portfolio/commits/f357a59f2a72d625663d6f765ff620d7ef09360d"}]},"public":true,"created_at":"2015-01-01T15:06:36Z"} +,{"id":"2489654132","type":"CreateEvent","actor":{"id":775309,"login":"smspillaz","gravatar_id":"","url":"https://api.github.com/users/smspillaz","avatar_url":"https://avatars.githubusercontent.com/u/775309?"},"repo":{"id":28322529,"name":"smspillaz/polysquare-ci-scripts","url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts"},"payload":{"ref":"polysquare-ci-scripts.item_39","ref_type":"branch","master_branch":"master","description":"Polysquare CI Scripts (common to a few modules)","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:36Z"} +,{"id":"2489654134","type":"WatchEvent","actor":{"id":7368588,"login":"wasdchenhao","gravatar_id":"","url":"https://api.github.com/users/wasdchenhao","avatar_url":"https://avatars.githubusercontent.com/u/7368588?"},"repo":{"id":11704709,"name":"wyouflf/xUtils","url":"https://api.github.com/repos/wyouflf/xUtils"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:06:36Z"} +,{"id":"2489654136","type":"PushEvent","actor":{"id":667327,"login":"sam-d","gravatar_id":"","url":"https://api.github.com/users/sam-d","avatar_url":"https://avatars.githubusercontent.com/u/667327?"},"repo":{"id":18569518,"name":"sam-d/sam-d.github.io","url":"https://api.github.com/repos/sam-d/sam-d.github.io"},"payload":{"push_id":536865391,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d035bcef977ed02104a43441af7b0a360c455bb2","before":"28de198818e7fe48a804d50543f6d0263962acab","commits":[{"sha":"d035bcef977ed02104a43441af7b0a360c455bb2","author":{"email":"e6fb06210fafc02fd7479ddbed2d042cc3a5155e@sam-d.com","name":"Sebastian Dümcke"},"message":"localized date to german","distinct":true,"url":"https://api.github.com/repos/sam-d/sam-d.github.io/commits/d035bcef977ed02104a43441af7b0a360c455bb2"}]},"public":true,"created_at":"2015-01-01T15:06:37Z"} +,{"id":"2489654137","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":22619256,"name":"hex7c0/mod_autoindex","url":"https://api.github.com/repos/hex7c0/mod_autoindex"},"payload":{"push_id":536865392,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1d85270dd894255a4e70b6f8e2945de0d3604c2a","before":"2c4b408af4e36e34f7429cc939348337c7e066ee","commits":[{"sha":"1d85270dd894255a4e70b6f8e2945de0d3604c2a","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"grunt","distinct":true,"url":"https://api.github.com/repos/hex7c0/mod_autoindex/commits/1d85270dd894255a4e70b6f8e2945de0d3604c2a"}]},"public":true,"created_at":"2015-01-01T15:06:37Z"} +,{"id":"2489654138","type":"PushEvent","actor":{"id":1187778,"login":"hurik","gravatar_id":"","url":"https://api.github.com/users/hurik","avatar_url":"https://avatars.githubusercontent.com/u/1187778?"},"repo":{"id":28590210,"name":"hurik/MangaDownloader","url":"https://api.github.com/repos/hurik/MangaDownloader"},"payload":{"push_id":536865393,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"66166c1891679145baa779c9226be4e597b05992","before":"afc8e65827735848eb1591f39a2f62ab63680202","commits":[{"sha":"66166c1891679145baa779c9226be4e597b05992","author":{"email":"b15c342f1de186996bcca5e1a23cd684d2fadb32@giemza.net","name":"Andreas Giemza"},"message":"line webtoon added & JsoupHelper improved","distinct":true,"url":"https://api.github.com/repos/hurik/MangaDownloader/commits/66166c1891679145baa779c9226be4e597b05992"}]},"public":true,"created_at":"2015-01-01T15:06:37Z"} +,{"id":"2489654140","type":"PushEvent","actor":{"id":420786,"login":"adieyal","gravatar_id":"","url":"https://api.github.com/users/adieyal","avatar_url":"https://avatars.githubusercontent.com/u/420786?"},"repo":{"id":23510644,"name":"Code4SA/traffic-fines","url":"https://api.github.com/repos/Code4SA/traffic-fines"},"payload":{"push_id":536865394,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"6538e6f5d60bfb9124901ad2522c562b96ada4a9","before":"2bdf05c119fb2c3ac6380c90e54972aa051a81fa","commits":[{"sha":"6538e6f5d60bfb9124901ad2522c562b96ada4a9","author":{"email":"b3e8ff7ac1c7e75661e16152a5dce1ff36a3e140@burgercom.co.za","name":"Adi Eyal"},"message":"Added absolute urls","distinct":true,"url":"https://api.github.com/repos/Code4SA/traffic-fines/commits/6538e6f5d60bfb9124901ad2522c562b96ada4a9"}]},"public":true,"created_at":"2015-01-01T15:06:37Z","org":{"id":4387576,"login":"Code4SA","gravatar_id":"","url":"https://api.github.com/orgs/Code4SA","avatar_url":"https://avatars.githubusercontent.com/u/4387576?"}} +,{"id":"2489654143","type":"CreateEvent","actor":{"id":7752475,"login":"p1ch-jp","gravatar_id":"","url":"https://api.github.com/users/p1ch-jp","avatar_url":"https://avatars.githubusercontent.com/u/7752475?"},"repo":{"id":28688714,"name":"p1ch-jp/chiraura","url":"https://api.github.com/repos/p1ch-jp/chiraura"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"blogging.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:38Z"} +,{"id":"2489654148","type":"ForkEvent","actor":{"id":1572750,"login":"bhurtelashish","gravatar_id":"","url":"https://api.github.com/users/bhurtelashish","avatar_url":"https://avatars.githubusercontent.com/u/1572750?"},"repo":{"id":534037,"name":"gregkh/kernel-development","url":"https://api.github.com/repos/gregkh/kernel-development"},"payload":{"forkee":{"id":28688715,"name":"kernel-development","full_name":"bhurtelashish/kernel-development","owner":{"login":"bhurtelashish","id":1572750,"avatar_url":"https://avatars.githubusercontent.com/u/1572750?v=3","gravatar_id":"","url":"https://api.github.com/users/bhurtelashish","html_url":"https://github.com/bhurtelashish","followers_url":"https://api.github.com/users/bhurtelashish/followers","following_url":"https://api.github.com/users/bhurtelashish/following{/other_user}","gists_url":"https://api.github.com/users/bhurtelashish/gists{/gist_id}","starred_url":"https://api.github.com/users/bhurtelashish/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhurtelashish/subscriptions","organizations_url":"https://api.github.com/users/bhurtelashish/orgs","repos_url":"https://api.github.com/users/bhurtelashish/repos","events_url":"https://api.github.com/users/bhurtelashish/events{/privacy}","received_events_url":"https://api.github.com/users/bhurtelashish/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/bhurtelashish/kernel-development","description":"Presentation on how the Linux kernel is developed","fork":true,"url":"https://api.github.com/repos/bhurtelashish/kernel-development","forks_url":"https://api.github.com/repos/bhurtelashish/kernel-development/forks","keys_url":"https://api.github.com/repos/bhurtelashish/kernel-development/keys{/key_id}","collaborators_url":"https://api.github.com/repos/bhurtelashish/kernel-development/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/bhurtelashish/kernel-development/teams","hooks_url":"https://api.github.com/repos/bhurtelashish/kernel-development/hooks","issue_events_url":"https://api.github.com/repos/bhurtelashish/kernel-development/issues/events{/number}","events_url":"https://api.github.com/repos/bhurtelashish/kernel-development/events","assignees_url":"https://api.github.com/repos/bhurtelashish/kernel-development/assignees{/user}","branches_url":"https://api.github.com/repos/bhurtelashish/kernel-development/branches{/branch}","tags_url":"https://api.github.com/repos/bhurtelashish/kernel-development/tags","blobs_url":"https://api.github.com/repos/bhurtelashish/kernel-development/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/bhurtelashish/kernel-development/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/bhurtelashish/kernel-development/git/refs{/sha}","trees_url":"https://api.github.com/repos/bhurtelashish/kernel-development/git/trees{/sha}","statuses_url":"https://api.github.com/repos/bhurtelashish/kernel-development/statuses/{sha}","languages_url":"https://api.github.com/repos/bhurtelashish/kernel-development/languages","stargazers_url":"https://api.github.com/repos/bhurtelashish/kernel-development/stargazers","contributors_url":"https://api.github.com/repos/bhurtelashish/kernel-development/contributors","subscribers_url":"https://api.github.com/repos/bhurtelashish/kernel-development/subscribers","subscription_url":"https://api.github.com/repos/bhurtelashish/kernel-development/subscription","commits_url":"https://api.github.com/repos/bhurtelashish/kernel-development/commits{/sha}","git_commits_url":"https://api.github.com/repos/bhurtelashish/kernel-development/git/commits{/sha}","comments_url":"https://api.github.com/repos/bhurtelashish/kernel-development/comments{/number}","issue_comment_url":"https://api.github.com/repos/bhurtelashish/kernel-development/issues/comments/{number}","contents_url":"https://api.github.com/repos/bhurtelashish/kernel-development/contents/{+path}","compare_url":"https://api.github.com/repos/bhurtelashish/kernel-development/compare/{base}...{head}","merges_url":"https://api.github.com/repos/bhurtelashish/kernel-development/merges","archive_url":"https://api.github.com/repos/bhurtelashish/kernel-development/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/bhurtelashish/kernel-development/downloads","issues_url":"https://api.github.com/repos/bhurtelashish/kernel-development/issues{/number}","pulls_url":"https://api.github.com/repos/bhurtelashish/kernel-development/pulls{/number}","milestones_url":"https://api.github.com/repos/bhurtelashish/kernel-development/milestones{/number}","notifications_url":"https://api.github.com/repos/bhurtelashish/kernel-development/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/bhurtelashish/kernel-development/labels{/name}","releases_url":"https://api.github.com/repos/bhurtelashish/kernel-development/releases{/id}","created_at":"2015-01-01T15:06:38Z","updated_at":"2014-12-29T16:06:22Z","pushed_at":"2014-11-11T10:20:57Z","git_url":"git://github.com/bhurtelashish/kernel-development.git","ssh_url":"git@github.com:bhurtelashish/kernel-development.git","clone_url":"https://github.com/bhurtelashish/kernel-development.git","svn_url":"https://github.com/bhurtelashish/kernel-development","homepage":"","size":141488,"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:06:39Z"} +,{"id":"2489654149","type":"ForkEvent","actor":{"id":1115602,"login":"manasdas17","gravatar_id":"","url":"https://api.github.com/users/manasdas17","avatar_url":"https://avatars.githubusercontent.com/u/1115602?"},"repo":{"id":26405558,"name":"LaloHao/udg-med-p6","url":"https://api.github.com/repos/LaloHao/udg-med-p6"},"payload":{"forkee":{"id":28688716,"name":"udg-med-p6","full_name":"manasdas17/udg-med-p6","owner":{"login":"manasdas17","id":1115602,"avatar_url":"https://avatars.githubusercontent.com/u/1115602?v=3","gravatar_id":"","url":"https://api.github.com/users/manasdas17","html_url":"https://github.com/manasdas17","followers_url":"https://api.github.com/users/manasdas17/followers","following_url":"https://api.github.com/users/manasdas17/following{/other_user}","gists_url":"https://api.github.com/users/manasdas17/gists{/gist_id}","starred_url":"https://api.github.com/users/manasdas17/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/manasdas17/subscriptions","organizations_url":"https://api.github.com/users/manasdas17/orgs","repos_url":"https://api.github.com/users/manasdas17/repos","events_url":"https://api.github.com/users/manasdas17/events{/privacy}","received_events_url":"https://api.github.com/users/manasdas17/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/manasdas17/udg-med-p6","description":"","fork":true,"url":"https://api.github.com/repos/manasdas17/udg-med-p6","forks_url":"https://api.github.com/repos/manasdas17/udg-med-p6/forks","keys_url":"https://api.github.com/repos/manasdas17/udg-med-p6/keys{/key_id}","collaborators_url":"https://api.github.com/repos/manasdas17/udg-med-p6/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/manasdas17/udg-med-p6/teams","hooks_url":"https://api.github.com/repos/manasdas17/udg-med-p6/hooks","issue_events_url":"https://api.github.com/repos/manasdas17/udg-med-p6/issues/events{/number}","events_url":"https://api.github.com/repos/manasdas17/udg-med-p6/events","assignees_url":"https://api.github.com/repos/manasdas17/udg-med-p6/assignees{/user}","branches_url":"https://api.github.com/repos/manasdas17/udg-med-p6/branches{/branch}","tags_url":"https://api.github.com/repos/manasdas17/udg-med-p6/tags","blobs_url":"https://api.github.com/repos/manasdas17/udg-med-p6/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/manasdas17/udg-med-p6/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/manasdas17/udg-med-p6/git/refs{/sha}","trees_url":"https://api.github.com/repos/manasdas17/udg-med-p6/git/trees{/sha}","statuses_url":"https://api.github.com/repos/manasdas17/udg-med-p6/statuses/{sha}","languages_url":"https://api.github.com/repos/manasdas17/udg-med-p6/languages","stargazers_url":"https://api.github.com/repos/manasdas17/udg-med-p6/stargazers","contributors_url":"https://api.github.com/repos/manasdas17/udg-med-p6/contributors","subscribers_url":"https://api.github.com/repos/manasdas17/udg-med-p6/subscribers","subscription_url":"https://api.github.com/repos/manasdas17/udg-med-p6/subscription","commits_url":"https://api.github.com/repos/manasdas17/udg-med-p6/commits{/sha}","git_commits_url":"https://api.github.com/repos/manasdas17/udg-med-p6/git/commits{/sha}","comments_url":"https://api.github.com/repos/manasdas17/udg-med-p6/comments{/number}","issue_comment_url":"https://api.github.com/repos/manasdas17/udg-med-p6/issues/comments/{number}","contents_url":"https://api.github.com/repos/manasdas17/udg-med-p6/contents/{+path}","compare_url":"https://api.github.com/repos/manasdas17/udg-med-p6/compare/{base}...{head}","merges_url":"https://api.github.com/repos/manasdas17/udg-med-p6/merges","archive_url":"https://api.github.com/repos/manasdas17/udg-med-p6/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/manasdas17/udg-med-p6/downloads","issues_url":"https://api.github.com/repos/manasdas17/udg-med-p6/issues{/number}","pulls_url":"https://api.github.com/repos/manasdas17/udg-med-p6/pulls{/number}","milestones_url":"https://api.github.com/repos/manasdas17/udg-med-p6/milestones{/number}","notifications_url":"https://api.github.com/repos/manasdas17/udg-med-p6/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/manasdas17/udg-med-p6/labels{/name}","releases_url":"https://api.github.com/repos/manasdas17/udg-med-p6/releases{/id}","created_at":"2015-01-01T15:06:39Z","updated_at":"2014-11-09T19:06:17Z","pushed_at":"2014-11-09T19:25:59Z","git_url":"git://github.com/manasdas17/udg-med-p6.git","ssh_url":"git@github.com:manasdas17/udg-med-p6.git","clone_url":"https://github.com/manasdas17/udg-med-p6.git","svn_url":"https://github.com/manasdas17/udg-med-p6","homepage":null,"size":336,"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:06:39Z"} +,{"id":"2489654151","type":"PushEvent","actor":{"id":2183232,"login":"strin","gravatar_id":"","url":"https://api.github.com/users/strin","avatar_url":"https://avatars.githubusercontent.com/u/2183232?"},"repo":{"id":27001736,"name":"strin/DeepBayes","url":"https://api.github.com/repos/strin/DeepBayes"},"payload":{"push_id":536865398,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"48eb325b9dfba96dda54500e5fa2fa096bd5dbed","before":"09f0367df9bca9b38348a7f534e5cfbe107b0796","commits":[{"sha":"48eb325b9dfba96dda54500e5fa2fa096bd5dbed","author":{"email":"d9a89fbcceb744233fef3f256548dcd943fb5e12@gmail.com","name":"strin"},"message":"fix bug in dlgm","distinct":true,"url":"https://api.github.com/repos/strin/DeepBayes/commits/48eb325b9dfba96dda54500e5fa2fa096bd5dbed"}]},"public":true,"created_at":"2015-01-01T15:06:39Z"} +,{"id":"2489654152","type":"WatchEvent","actor":{"id":1905496,"login":"tuankiet65","gravatar_id":"","url":"https://api.github.com/users/tuankiet65","avatar_url":"https://avatars.githubusercontent.com/u/1905496?"},"repo":{"id":13971811,"name":"Imgur/imgurpython","url":"https://api.github.com/repos/Imgur/imgurpython"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:06:39Z","org":{"id":558067,"login":"Imgur","gravatar_id":"","url":"https://api.github.com/orgs/Imgur","avatar_url":"https://avatars.githubusercontent.com/u/558067?"}} +,{"id":"2489654153","type":"PushEvent","actor":{"id":3888750,"login":"joachimmetz","gravatar_id":"","url":"https://api.github.com/users/joachimmetz","avatar_url":"https://avatars.githubusercontent.com/u/3888750?"},"repo":{"id":24068439,"name":"libyal/libcfile","url":"https://api.github.com/repos/libyal/libcfile"},"payload":{"push_id":536865399,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9a0dd17f31db245b1b2e33e854f791ad307f4604","before":"1d5ca06a703022851eb5434ce0cf6360d9194b51","commits":[{"sha":"9a0dd17f31db245b1b2e33e854f791ad307f4604","author":{"email":"c00dbb8f3a73f529a0fc5e9b99aa381752dc0845@gmail.com","name":"Joachim Metz"},"message":"Applied updates.","distinct":true,"url":"https://api.github.com/repos/libyal/libcfile/commits/9a0dd17f31db245b1b2e33e854f791ad307f4604"}]},"public":true,"created_at":"2015-01-01T15:06:39Z","org":{"id":8692283,"login":"libyal","gravatar_id":"","url":"https://api.github.com/orgs/libyal","avatar_url":"https://avatars.githubusercontent.com/u/8692283?"}} +,{"id":"2489654155","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":536865401,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"bee80526d2ab633bff100700e3209eb6892aeed6","before":"fa7744f3bcf704f85b7e1c00fa82f8d80efe05a7","commits":[{"sha":"2c46abc5d99977726b78c548564cdc1121c1c872","author":{"email":"d1b928b8d508e3f66cae7957e98afb6318e80cde@GMAIL.COM","name":"JORGE POLANCO"},"message":"Add jQuery UI","distinct":true,"url":"https://api.github.com/repos/drjorgepolanco/depot/commits/2c46abc5d99977726b78c548564cdc1121c1c872"},{"sha":"aa424263f85b3f5b5e734199b0c631f631f54282","author":{"email":"d1b928b8d508e3f66cae7957e98afb6318e80cde@GMAIL.COM","name":"JORGE POLANCO"},"message":"Add jQuery UI","distinct":true,"url":"https://api.github.com/repos/drjorgepolanco/depot/commits/aa424263f85b3f5b5e734199b0c631f631f54282"},{"sha":"bee80526d2ab633bff100700e3209eb6892aeed6","author":{"email":"d1b928b8d508e3f66cae7957e98afb6318e80cde@GMAIL.COM","name":"JORGE POLANCO"},"message":"Add current_item to format.js to highlight changes with jQuery UI","distinct":true,"url":"https://api.github.com/repos/drjorgepolanco/depot/commits/bee80526d2ab633bff100700e3209eb6892aeed6"}]},"public":true,"created_at":"2015-01-01T15:06:40Z"} +,{"id":"2489654157","type":"WatchEvent","actor":{"id":7189950,"login":"wuhp","gravatar_id":"","url":"https://api.github.com/users/wuhp","avatar_url":"https://avatars.githubusercontent.com/u/7189950?"},"repo":{"id":6443435,"name":"apcera/gnatsd","url":"https://api.github.com/repos/apcera/gnatsd"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:06:40Z","org":{"id":1637964,"login":"apcera","gravatar_id":"","url":"https://api.github.com/orgs/apcera","avatar_url":"https://avatars.githubusercontent.com/u/1637964?"}} +,{"id":"2489654166","type":"PullRequestEvent","actor":{"id":775309,"login":"smspillaz","gravatar_id":"","url":"https://api.github.com/users/smspillaz","avatar_url":"https://avatars.githubusercontent.com/u/775309?"},"repo":{"id":28320857,"name":"polysquare/polysquare-ci-scripts","url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts"},"payload":{"action":"opened","number":39,"pull_request":{"url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/pulls/39","id":26743820,"html_url":"https://github.com/polysquare/polysquare-ci-scripts/pull/39","diff_url":"https://github.com/polysquare/polysquare-ci-scripts/pull/39.diff","patch_url":"https://github.com/polysquare/polysquare-ci-scripts/pull/39.patch","issue_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/issues/39","number":39,"state":"open","locked":false,"title":"The wildcard operator returns full paths so use basename.","user":{"login":"smspillaz","id":775309,"avatar_url":"https://avatars.githubusercontent.com/u/775309?v=3","gravatar_id":"","url":"https://api.github.com/users/smspillaz","html_url":"https://github.com/smspillaz","followers_url":"https://api.github.com/users/smspillaz/followers","following_url":"https://api.github.com/users/smspillaz/following{/other_user}","gists_url":"https://api.github.com/users/smspillaz/gists{/gist_id}","starred_url":"https://api.github.com/users/smspillaz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/smspillaz/subscriptions","organizations_url":"https://api.github.com/users/smspillaz/orgs","repos_url":"https://api.github.com/users/smspillaz/repos","events_url":"https://api.github.com/users/smspillaz/events{/privacy}","received_events_url":"https://api.github.com/users/smspillaz/received_events","type":"User","site_admin":false},"body":null,"created_at":"2015-01-01T15:06:41Z","updated_at":"2015-01-01T15:06:41Z","closed_at":null,"merged_at":null,"merge_commit_sha":"3b09b2c5edee30098cb12d0499e3a1de6ae073a2","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/pulls/39/commits","review_comments_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/pulls/39/comments","review_comment_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/pulls/comments/{number}","comments_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/issues/39/comments","statuses_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/statuses/b62f059a809f8af61e250f5121ba697be391ee99","head":{"label":"smspillaz:polysquare-ci-scripts.item_39","ref":"polysquare-ci-scripts.item_39","sha":"b62f059a809f8af61e250f5121ba697be391ee99","user":{"login":"smspillaz","id":775309,"avatar_url":"https://avatars.githubusercontent.com/u/775309?v=3","gravatar_id":"","url":"https://api.github.com/users/smspillaz","html_url":"https://github.com/smspillaz","followers_url":"https://api.github.com/users/smspillaz/followers","following_url":"https://api.github.com/users/smspillaz/following{/other_user}","gists_url":"https://api.github.com/users/smspillaz/gists{/gist_id}","starred_url":"https://api.github.com/users/smspillaz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/smspillaz/subscriptions","organizations_url":"https://api.github.com/users/smspillaz/orgs","repos_url":"https://api.github.com/users/smspillaz/repos","events_url":"https://api.github.com/users/smspillaz/events{/privacy}","received_events_url":"https://api.github.com/users/smspillaz/received_events","type":"User","site_admin":false},"repo":{"id":28322529,"name":"polysquare-ci-scripts","full_name":"smspillaz/polysquare-ci-scripts","owner":{"login":"smspillaz","id":775309,"avatar_url":"https://avatars.githubusercontent.com/u/775309?v=3","gravatar_id":"","url":"https://api.github.com/users/smspillaz","html_url":"https://github.com/smspillaz","followers_url":"https://api.github.com/users/smspillaz/followers","following_url":"https://api.github.com/users/smspillaz/following{/other_user}","gists_url":"https://api.github.com/users/smspillaz/gists{/gist_id}","starred_url":"https://api.github.com/users/smspillaz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/smspillaz/subscriptions","organizations_url":"https://api.github.com/users/smspillaz/orgs","repos_url":"https://api.github.com/users/smspillaz/repos","events_url":"https://api.github.com/users/smspillaz/events{/privacy}","received_events_url":"https://api.github.com/users/smspillaz/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/smspillaz/polysquare-ci-scripts","description":"Polysquare CI Scripts (common to a few modules)","fork":true,"url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts","forks_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/forks","keys_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/keys{/key_id}","collaborators_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/teams","hooks_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/hooks","issue_events_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/issues/events{/number}","events_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/events","assignees_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/assignees{/user}","branches_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/branches{/branch}","tags_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/tags","blobs_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/git/refs{/sha}","trees_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/git/trees{/sha}","statuses_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/statuses/{sha}","languages_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/languages","stargazers_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/stargazers","contributors_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/contributors","subscribers_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/subscribers","subscription_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/subscription","commits_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/commits{/sha}","git_commits_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/git/commits{/sha}","comments_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/comments{/number}","issue_comment_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/issues/comments/{number}","contents_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/contents/{+path}","compare_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/compare/{base}...{head}","merges_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/merges","archive_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/downloads","issues_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/issues{/number}","pulls_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/pulls{/number}","milestones_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/milestones{/number}","notifications_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/labels{/name}","releases_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/releases{/id}","created_at":"2014-12-22T03:05:55Z","updated_at":"2014-12-28T04:42:59Z","pushed_at":"2015-01-01T15:06:36Z","git_url":"git://github.com/smspillaz/polysquare-ci-scripts.git","ssh_url":"git@github.com:smspillaz/polysquare-ci-scripts.git","clone_url":"https://github.com/smspillaz/polysquare-ci-scripts.git","svn_url":"https://github.com/smspillaz/polysquare-ci-scripts","homepage":null,"size":605,"stargazers_count":0,"watchers_count":0,"language":"Shell","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":"polysquare:master","ref":"master","sha":"0228536a5a26d3a698ed013580b835f08bee0155","user":{"login":"polysquare","id":4264086,"avatar_url":"https://avatars.githubusercontent.com/u/4264086?v=3","gravatar_id":"","url":"https://api.github.com/users/polysquare","html_url":"https://github.com/polysquare","followers_url":"https://api.github.com/users/polysquare/followers","following_url":"https://api.github.com/users/polysquare/following{/other_user}","gists_url":"https://api.github.com/users/polysquare/gists{/gist_id}","starred_url":"https://api.github.com/users/polysquare/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/polysquare/subscriptions","organizations_url":"https://api.github.com/users/polysquare/orgs","repos_url":"https://api.github.com/users/polysquare/repos","events_url":"https://api.github.com/users/polysquare/events{/privacy}","received_events_url":"https://api.github.com/users/polysquare/received_events","type":"Organization","site_admin":false},"repo":{"id":28320857,"name":"polysquare-ci-scripts","full_name":"polysquare/polysquare-ci-scripts","owner":{"login":"polysquare","id":4264086,"avatar_url":"https://avatars.githubusercontent.com/u/4264086?v=3","gravatar_id":"","url":"https://api.github.com/users/polysquare","html_url":"https://github.com/polysquare","followers_url":"https://api.github.com/users/polysquare/followers","following_url":"https://api.github.com/users/polysquare/following{/other_user}","gists_url":"https://api.github.com/users/polysquare/gists{/gist_id}","starred_url":"https://api.github.com/users/polysquare/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/polysquare/subscriptions","organizations_url":"https://api.github.com/users/polysquare/orgs","repos_url":"https://api.github.com/users/polysquare/repos","events_url":"https://api.github.com/users/polysquare/events{/privacy}","received_events_url":"https://api.github.com/users/polysquare/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/polysquare/polysquare-ci-scripts","description":"Polysquare CI Scripts (common to a few modules)","fork":false,"url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts","forks_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/forks","keys_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/keys{/key_id}","collaborators_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/teams","hooks_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/hooks","issue_events_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/issues/events{/number}","events_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/events","assignees_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/assignees{/user}","branches_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/branches{/branch}","tags_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/tags","blobs_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/git/refs{/sha}","trees_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/git/trees{/sha}","statuses_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/statuses/{sha}","languages_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/languages","stargazers_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/stargazers","contributors_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/contributors","subscribers_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/subscribers","subscription_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/subscription","commits_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/commits{/sha}","git_commits_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/git/commits{/sha}","comments_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/comments{/number}","issue_comment_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/issues/comments/{number}","contents_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/contents/{+path}","compare_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/compare/{base}...{head}","merges_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/merges","archive_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/downloads","issues_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/issues{/number}","pulls_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/pulls{/number}","milestones_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/milestones{/number}","notifications_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/labels{/name}","releases_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/releases{/id}","created_at":"2014-12-22T01:58:27Z","updated_at":"2015-01-01T14:50:12Z","pushed_at":"2015-01-01T14:50:11Z","git_url":"git://github.com/polysquare/polysquare-ci-scripts.git","ssh_url":"git@github.com:polysquare/polysquare-ci-scripts.git","clone_url":"https://github.com/polysquare/polysquare-ci-scripts.git","svn_url":"https://github.com/polysquare/polysquare-ci-scripts","homepage":null,"size":609,"stargazers_count":0,"watchers_count":0,"language":"Shell","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":1,"forks":1,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/pulls/39"},"html":{"href":"https://github.com/polysquare/polysquare-ci-scripts/pull/39"},"issue":{"href":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/issues/39"},"comments":{"href":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/issues/39/comments"},"review_comments":{"href":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/pulls/39/comments"},"review_comment":{"href":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/pulls/39/commits"},"statuses":{"href":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/statuses/b62f059a809f8af61e250f5121ba697be391ee99"}},"merged":false,"mergeable":true,"mergeable_state":"clean","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":4,"deletions":3,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:06:42Z","org":{"id":4264086,"login":"polysquare","gravatar_id":"","url":"https://api.github.com/orgs/polysquare","avatar_url":"https://avatars.githubusercontent.com/u/4264086?"}} +,{"id":"2489654170","type":"PushEvent","actor":{"id":9769086,"login":"sporter69","gravatar_id":"","url":"https://api.github.com/users/sporter69","avatar_url":"https://avatars.githubusercontent.com/u/9769086?"},"repo":{"id":28312912,"name":"lcrespom/ycs","url":"https://api.github.com/repos/lcrespom/ycs"},"payload":{"push_id":536865407,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3cbcc38c15228205779cabccd3b70be0e9788335","before":"096aa26df17a8a69960a2f4f84cd6aeb019bd93a","commits":[{"sha":"3cbcc38c15228205779cabccd3b70be0e9788335","author":{"email":"3c3fae4eb0fb8d0e50830db4a8590e41d7714b5a@gmx.com","name":"admin@mydocumenta.com"},"message":"TextosDAO","distinct":true,"url":"https://api.github.com/repos/lcrespom/ycs/commits/3cbcc38c15228205779cabccd3b70be0e9788335"}]},"public":true,"created_at":"2015-01-01T15:06:42Z"} +,{"id":"2489654179","type":"PushEvent","actor":{"id":8475373,"login":"wenzi0github","gravatar_id":"","url":"https://api.github.com/users/wenzi0github","avatar_url":"https://avatars.githubusercontent.com/u/8475373?"},"repo":{"id":24920831,"name":"wenzi0github/wenzi0github.github.io","url":"https://api.github.com/repos/wenzi0github/wenzi0github.github.io"},"payload":{"push_id":536865409,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e2747d731d3418928a4c394636227cf885b972f5","before":"7447787e3317e5ca850aef956871e206fade6daf","commits":[{"sha":"e2747d731d3418928a4c394636227cf885b972f5","author":{"email":"cc7fb23564ee8bfdd044808e734b68cc9cb2ecc1@foxmail.com","name":"wenzi"},"message":"change link seq","distinct":true,"url":"https://api.github.com/repos/wenzi0github/wenzi0github.github.io/commits/e2747d731d3418928a4c394636227cf885b972f5"}]},"public":true,"created_at":"2015-01-01T15:06:43Z"} +,{"id":"2489654184","type":"IssuesEvent","actor":{"id":7440673,"login":"spitfire-sidra","gravatar_id":"","url":"https://api.github.com/users/spitfire-sidra","avatar_url":"https://avatars.githubusercontent.com/u/7440673?"},"repo":{"id":19313712,"name":"PwnDoRa/mazu","url":"https://api.github.com/repos/PwnDoRa/mazu"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/PwnDoRa/mazu/issues/28","labels_url":"https://api.github.com/repos/PwnDoRa/mazu/issues/28/labels{/name}","comments_url":"https://api.github.com/repos/PwnDoRa/mazu/issues/28/comments","events_url":"https://api.github.com/repos/PwnDoRa/mazu/issues/28/events","html_url":"https://github.com/PwnDoRa/mazu/issues/28","id":53221466,"number":28,"title":"Feature 'download sample' is not working","user":{"login":"spitfire-sidra","id":7440673,"avatar_url":"https://avatars.githubusercontent.com/u/7440673?v=3","gravatar_id":"","url":"https://api.github.com/users/spitfire-sidra","html_url":"https://github.com/spitfire-sidra","followers_url":"https://api.github.com/users/spitfire-sidra/followers","following_url":"https://api.github.com/users/spitfire-sidra/following{/other_user}","gists_url":"https://api.github.com/users/spitfire-sidra/gists{/gist_id}","starred_url":"https://api.github.com/users/spitfire-sidra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/spitfire-sidra/subscriptions","organizations_url":"https://api.github.com/users/spitfire-sidra/orgs","repos_url":"https://api.github.com/users/spitfire-sidra/repos","events_url":"https://api.github.com/users/spitfire-sidra/events{/privacy}","received_events_url":"https://api.github.com/users/spitfire-sidra/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/PwnDoRa/mazu/labels/bug","name":"bug","color":"fc2929"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:06:44Z","updated_at":"2015-01-01T15:06:44Z","closed_at":null,"body":"I forgot to save sha256 values in GridFS. So, the feature is not working now. It will show you 404 Not Found.\r\n\r\nI will fix it quickly."}},"public":true,"created_at":"2015-01-01T15:06:45Z","org":{"id":7446840,"login":"PwnDoRa","gravatar_id":"","url":"https://api.github.com/orgs/PwnDoRa","avatar_url":"https://avatars.githubusercontent.com/u/7446840?"}} +,{"id":"2489654185","type":"PushEvent","actor":{"id":1523813,"login":"gganesan","gravatar_id":"","url":"https://api.github.com/users/gganesan","avatar_url":"https://avatars.githubusercontent.com/u/1523813?"},"repo":{"id":28672350,"name":"gganesan/BuildInformationRepo","url":"https://api.github.com/repos/gganesan/BuildInformationRepo"},"payload":{"push_id":536865411,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"93e5ae745621db9750738484e6dd1eae8d8714bd","before":"e068b3a28b7c18fda52ef092186bcff9710aa6ba","commits":[{"sha":"93e5ae745621db9750738484e6dd1eae8d8714bd","author":{"email":"29d94e8d484ed435d75ae53776be9191a9507918@gmail.com","name":"Ganesh Ganesan"},"message":"test 1","distinct":true,"url":"https://api.github.com/repos/gganesan/BuildInformationRepo/commits/93e5ae745621db9750738484e6dd1eae8d8714bd"}]},"public":true,"created_at":"2015-01-01T15:06:45Z"} +,{"id":"2489654186","type":"PushEvent","actor":{"id":1515179,"login":"hogejiro","gravatar_id":"","url":"https://api.github.com/users/hogejiro","avatar_url":"https://avatars.githubusercontent.com/u/1515179?"},"repo":{"id":8836079,"name":"hogejiro/studybooks","url":"https://api.github.com/repos/hogejiro/studybooks"},"payload":{"push_id":536865412,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2325b2d2d31a93bedaadb5a7cef34e71c10da9ee","before":"866e57d66a2d1da39e40091956470cdf8c7c2171","commits":[{"sha":"2325b2d2d31a93bedaadb5a7cef34e71c10da9ee","author":{"email":"ab711be5dc961f6f7ddc4e40213438230115c129@gmail.com","name":"hogejiro"},"message":"modify bug @ problem 5-5","distinct":true,"url":"https://api.github.com/repos/hogejiro/studybooks/commits/2325b2d2d31a93bedaadb5a7cef34e71c10da9ee"}]},"public":true,"created_at":"2015-01-01T15:06:45Z"} +,{"id":"2489654187","type":"IssueCommentEvent","actor":{"id":493276,"login":"k-okada","gravatar_id":"","url":"https://api.github.com/users/k-okada","avatar_url":"https://avatars.githubusercontent.com/u/493276?"},"repo":{"id":10344201,"name":"ros-simulation/gazebo_ros_pkgs","url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/287","labels_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/287/labels{/name}","comments_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/287/comments","events_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/287/events","html_url":"https://github.com/ros-simulation/gazebo_ros_pkgs/pull/287","id":53221413,"number":287,"title":"add option to change package:// to model:// when loading urdf file","user":{"login":"k-okada","id":493276,"avatar_url":"https://avatars.githubusercontent.com/u/493276?v=3","gravatar_id":"","url":"https://api.github.com/users/k-okada","html_url":"https://github.com/k-okada","followers_url":"https://api.github.com/users/k-okada/followers","following_url":"https://api.github.com/users/k-okada/following{/other_user}","gists_url":"https://api.github.com/users/k-okada/gists{/gist_id}","starred_url":"https://api.github.com/users/k-okada/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k-okada/subscriptions","organizations_url":"https://api.github.com/users/k-okada/orgs","repos_url":"https://api.github.com/users/k-okada/repos","events_url":"https://api.github.com/users/k-okada/events{/privacy}","received_events_url":"https://api.github.com/users/k-okada/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:04:20Z","updated_at":"2015-01-01T15:06:45Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/287","html_url":"https://github.com/ros-simulation/gazebo_ros_pkgs/pull/287","diff_url":"https://github.com/ros-simulation/gazebo_ros_pkgs/pull/287.diff","patch_url":"https://github.com/ros-simulation/gazebo_ros_pkgs/pull/287.patch"},"body":"this feature is required if we want to use gzweb, but ofcourse you have to set GAZEBO_MODEL_PATH correctly"},"comment":{"url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/comments/68488611","html_url":"https://github.com/ros-simulation/gazebo_ros_pkgs/pull/287#issuecomment-68488611","issue_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/287","id":68488611,"user":{"login":"k-okada","id":493276,"avatar_url":"https://avatars.githubusercontent.com/u/493276?v=3","gravatar_id":"","url":"https://api.github.com/users/k-okada","html_url":"https://github.com/k-okada","followers_url":"https://api.github.com/users/k-okada/followers","following_url":"https://api.github.com/users/k-okada/following{/other_user}","gists_url":"https://api.github.com/users/k-okada/gists{/gist_id}","starred_url":"https://api.github.com/users/k-okada/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k-okada/subscriptions","organizations_url":"https://api.github.com/users/k-okada/orgs","repos_url":"https://api.github.com/users/k-okada/repos","events_url":"https://api.github.com/users/k-okada/events{/privacy}","received_events_url":"https://api.github.com/users/k-okada/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:06:45Z","updated_at":"2015-01-01T15:06:45Z","body":"closed due to wrong target, see new PR -> https://github.com/ros-simulation/gazebo_ros_pkgs/pull/288"}},"public":true,"created_at":"2015-01-01T15:06:47Z","org":{"id":2349888,"login":"ros-simulation","gravatar_id":"","url":"https://api.github.com/orgs/ros-simulation","avatar_url":"https://avatars.githubusercontent.com/u/2349888?"}} +,{"id":"2489654190","type":"ReleaseEvent","actor":{"id":3888750,"login":"joachimmetz","gravatar_id":"","url":"https://api.github.com/users/joachimmetz","avatar_url":"https://avatars.githubusercontent.com/u/3888750?"},"repo":{"id":24068439,"name":"libyal/libcfile","url":"https://api.github.com/repos/libyal/libcfile"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/libyal/libcfile/releases/818689","assets_url":"https://api.github.com/repos/libyal/libcfile/releases/818689/assets","upload_url":"https://uploads.github.com/repos/libyal/libcfile/releases/818689/assets{?name}","html_url":"https://github.com/libyal/libcfile/releases/tag/20150101","id":818689,"tag_name":"20150101","target_commitish":"master","name":"libcfile-alpha-20150101","draft":false,"author":{"login":"joachimmetz","id":3888750,"avatar_url":"https://avatars.githubusercontent.com/u/3888750?v=3","gravatar_id":"","url":"https://api.github.com/users/joachimmetz","html_url":"https://github.com/joachimmetz","followers_url":"https://api.github.com/users/joachimmetz/followers","following_url":"https://api.github.com/users/joachimmetz/following{/other_user}","gists_url":"https://api.github.com/users/joachimmetz/gists{/gist_id}","starred_url":"https://api.github.com/users/joachimmetz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/joachimmetz/subscriptions","organizations_url":"https://api.github.com/users/joachimmetz/orgs","repos_url":"https://api.github.com/users/joachimmetz/repos","events_url":"https://api.github.com/users/joachimmetz/events{/privacy}","received_events_url":"https://api.github.com/users/joachimmetz/received_events","type":"User","site_admin":false},"prerelease":true,"created_at":"2015-01-01T15:06:37Z","published_at":"2015-01-01T15:06:46Z","assets":[],"tarball_url":"https://api.github.com/repos/libyal/libcfile/tarball/20150101","zipball_url":"https://api.github.com/repos/libyal/libcfile/zipball/20150101","body":"Release of version 20150101"}},"public":true,"created_at":"2015-01-01T15:06:47Z","org":{"id":8692283,"login":"libyal","gravatar_id":"","url":"https://api.github.com/orgs/libyal","avatar_url":"https://avatars.githubusercontent.com/u/8692283?"}} +,{"id":"2489654192","type":"CreateEvent","actor":{"id":3888750,"login":"joachimmetz","gravatar_id":"","url":"https://api.github.com/users/joachimmetz","avatar_url":"https://avatars.githubusercontent.com/u/3888750?"},"repo":{"id":24068439,"name":"libyal/libcfile","url":"https://api.github.com/repos/libyal/libcfile"},"payload":{"ref":"20150101","ref_type":"tag","master_branch":"master","description":"Library for cross-platform C file functions","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:47Z","org":{"id":8692283,"login":"libyal","gravatar_id":"","url":"https://api.github.com/orgs/libyal","avatar_url":"https://avatars.githubusercontent.com/u/8692283?"}} +,{"id":"2489654193","type":"PushEvent","actor":{"id":9318079,"login":"FeridunMekec","gravatar_id":"","url":"https://api.github.com/users/FeridunMekec","avatar_url":"https://avatars.githubusercontent.com/u/9318079?"},"repo":{"id":26536869,"name":"fabianroeber/Raumplaner2","url":"https://api.github.com/repos/fabianroeber/Raumplaner2"},"payload":{"push_id":536865416,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4a75fed072ac792ba9abccdc02171a3df6a73722","before":"ebcebef68c7f6ffa96e010a57faf2fc24c488a5c","commits":[{"sha":"4a75fed072ac792ba9abccdc02171a3df6a73722","author":{"email":"9f9f9c66bff12210938444ad767edb58dae5497c@hdm-stuttgart.de","name":"Feridun Mekec"},"message":"GUI - Der Code für das Stylen über .css Datei hinzugefügt","distinct":true,"url":"https://api.github.com/repos/fabianroeber/Raumplaner2/commits/4a75fed072ac792ba9abccdc02171a3df6a73722"}]},"public":true,"created_at":"2015-01-01T15:06:47Z"} +,{"id":"2489654196","type":"PullRequestEvent","actor":{"id":169434,"login":"rgngl","gravatar_id":"","url":"https://api.github.com/users/rgngl","avatar_url":"https://avatars.githubusercontent.com/u/169434?"},"repo":{"id":2567475,"name":"gameplay3d/GamePlay","url":"https://api.github.com/repos/gameplay3d/GamePlay"},"payload":{"action":"opened","number":1641,"pull_request":{"url":"https://api.github.com/repos/gameplay3d/GamePlay/pulls/1641","id":26743821,"html_url":"https://github.com/gameplay3d/GamePlay/pull/1641","diff_url":"https://github.com/gameplay3d/GamePlay/pull/1641.diff","patch_url":"https://github.com/gameplay3d/GamePlay/pull/1641.patch","issue_url":"https://api.github.com/repos/gameplay3d/GamePlay/issues/1641","number":1641,"state":"open","locked":false,"title":"Add 1 pixel padding to generated font atlas","user":{"login":"rgngl","id":169434,"avatar_url":"https://avatars.githubusercontent.com/u/169434?v=3","gravatar_id":"","url":"https://api.github.com/users/rgngl","html_url":"https://github.com/rgngl","followers_url":"https://api.github.com/users/rgngl/followers","following_url":"https://api.github.com/users/rgngl/following{/other_user}","gists_url":"https://api.github.com/users/rgngl/gists{/gist_id}","starred_url":"https://api.github.com/users/rgngl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rgngl/subscriptions","organizations_url":"https://api.github.com/users/rgngl/orgs","repos_url":"https://api.github.com/users/rgngl/repos","events_url":"https://api.github.com/users/rgngl/events{/privacy}","received_events_url":"https://api.github.com/users/rgngl/received_events","type":"User","site_admin":false},"body":"This avoids artifacts when using SDF fonts with some characters that\r\nhappen to be on the first column of the texture atlas.\r\n\r\nExample: https://www.dropbox.com/s/6t6edr0w4enyvdm/Screenshot%202015-01-01%2016.55.02.png?dl=0 (left side of p, 7 and K is not smooth)\r\n\r\nFixed: https://www.dropbox.com/s/w4ha6824j6j8s15/Screenshot%202015-01-01%2016.55.51.png?dl=0","created_at":"2015-01-01T15:06:47Z","updated_at":"2015-01-01T15:06:47Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/gameplay3d/GamePlay/pulls/1641/commits","review_comments_url":"https://api.github.com/repos/gameplay3d/GamePlay/pulls/1641/comments","review_comment_url":"https://api.github.com/repos/gameplay3d/GamePlay/pulls/comments/{number}","comments_url":"https://api.github.com/repos/gameplay3d/GamePlay/issues/1641/comments","statuses_url":"https://api.github.com/repos/gameplay3d/GamePlay/statuses/cba0d00f3835b49050b8389ce3608a9c842f4583","head":{"label":"rgngl:patch-1","ref":"patch-1","sha":"cba0d00f3835b49050b8389ce3608a9c842f4583","user":{"login":"rgngl","id":169434,"avatar_url":"https://avatars.githubusercontent.com/u/169434?v=3","gravatar_id":"","url":"https://api.github.com/users/rgngl","html_url":"https://github.com/rgngl","followers_url":"https://api.github.com/users/rgngl/followers","following_url":"https://api.github.com/users/rgngl/following{/other_user}","gists_url":"https://api.github.com/users/rgngl/gists{/gist_id}","starred_url":"https://api.github.com/users/rgngl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rgngl/subscriptions","organizations_url":"https://api.github.com/users/rgngl/orgs","repos_url":"https://api.github.com/users/rgngl/repos","events_url":"https://api.github.com/users/rgngl/events{/privacy}","received_events_url":"https://api.github.com/users/rgngl/received_events","type":"User","site_admin":false},"repo":{"id":9831340,"name":"GamePlay","full_name":"rgngl/GamePlay","owner":{"login":"rgngl","id":169434,"avatar_url":"https://avatars.githubusercontent.com/u/169434?v=3","gravatar_id":"","url":"https://api.github.com/users/rgngl","html_url":"https://github.com/rgngl","followers_url":"https://api.github.com/users/rgngl/followers","following_url":"https://api.github.com/users/rgngl/following{/other_user}","gists_url":"https://api.github.com/users/rgngl/gists{/gist_id}","starred_url":"https://api.github.com/users/rgngl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rgngl/subscriptions","organizations_url":"https://api.github.com/users/rgngl/orgs","repos_url":"https://api.github.com/users/rgngl/repos","events_url":"https://api.github.com/users/rgngl/events{/privacy}","received_events_url":"https://api.github.com/users/rgngl/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/rgngl/GamePlay","description":"An open-source, cross-platform 3D native C++ game framework making it easy to learn and write mobile and desktop games.","fork":true,"url":"https://api.github.com/repos/rgngl/GamePlay","forks_url":"https://api.github.com/repos/rgngl/GamePlay/forks","keys_url":"https://api.github.com/repos/rgngl/GamePlay/keys{/key_id}","collaborators_url":"https://api.github.com/repos/rgngl/GamePlay/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/rgngl/GamePlay/teams","hooks_url":"https://api.github.com/repos/rgngl/GamePlay/hooks","issue_events_url":"https://api.github.com/repos/rgngl/GamePlay/issues/events{/number}","events_url":"https://api.github.com/repos/rgngl/GamePlay/events","assignees_url":"https://api.github.com/repos/rgngl/GamePlay/assignees{/user}","branches_url":"https://api.github.com/repos/rgngl/GamePlay/branches{/branch}","tags_url":"https://api.github.com/repos/rgngl/GamePlay/tags","blobs_url":"https://api.github.com/repos/rgngl/GamePlay/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/rgngl/GamePlay/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/rgngl/GamePlay/git/refs{/sha}","trees_url":"https://api.github.com/repos/rgngl/GamePlay/git/trees{/sha}","statuses_url":"https://api.github.com/repos/rgngl/GamePlay/statuses/{sha}","languages_url":"https://api.github.com/repos/rgngl/GamePlay/languages","stargazers_url":"https://api.github.com/repos/rgngl/GamePlay/stargazers","contributors_url":"https://api.github.com/repos/rgngl/GamePlay/contributors","subscribers_url":"https://api.github.com/repos/rgngl/GamePlay/subscribers","subscription_url":"https://api.github.com/repos/rgngl/GamePlay/subscription","commits_url":"https://api.github.com/repos/rgngl/GamePlay/commits{/sha}","git_commits_url":"https://api.github.com/repos/rgngl/GamePlay/git/commits{/sha}","comments_url":"https://api.github.com/repos/rgngl/GamePlay/comments{/number}","issue_comment_url":"https://api.github.com/repos/rgngl/GamePlay/issues/comments/{number}","contents_url":"https://api.github.com/repos/rgngl/GamePlay/contents/{+path}","compare_url":"https://api.github.com/repos/rgngl/GamePlay/compare/{base}...{head}","merges_url":"https://api.github.com/repos/rgngl/GamePlay/merges","archive_url":"https://api.github.com/repos/rgngl/GamePlay/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/rgngl/GamePlay/downloads","issues_url":"https://api.github.com/repos/rgngl/GamePlay/issues{/number}","pulls_url":"https://api.github.com/repos/rgngl/GamePlay/pulls{/number}","milestones_url":"https://api.github.com/repos/rgngl/GamePlay/milestones{/number}","notifications_url":"https://api.github.com/repos/rgngl/GamePlay/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/rgngl/GamePlay/labels{/name}","releases_url":"https://api.github.com/repos/rgngl/GamePlay/releases{/id}","created_at":"2013-05-03T07:53:25Z","updated_at":"2014-12-06T12:22:54Z","pushed_at":"2015-01-01T15:03:54Z","git_url":"git://github.com/rgngl/GamePlay.git","ssh_url":"git@github.com:rgngl/GamePlay.git","clone_url":"https://github.com/rgngl/GamePlay.git","svn_url":"https://github.com/rgngl/GamePlay","homepage":"www.gameplay3d.org","size":206729,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":false,"has_downloads":true,"has_wiki":false,"has_pages":true,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"next"}},"base":{"label":"gameplay3d:next","ref":"next","sha":"3c825cc256826077155b1735d342ec3429a7e6b0","user":{"login":"gameplay3d","id":5668263,"avatar_url":"https://avatars.githubusercontent.com/u/5668263?v=3","gravatar_id":"","url":"https://api.github.com/users/gameplay3d","html_url":"https://github.com/gameplay3d","followers_url":"https://api.github.com/users/gameplay3d/followers","following_url":"https://api.github.com/users/gameplay3d/following{/other_user}","gists_url":"https://api.github.com/users/gameplay3d/gists{/gist_id}","starred_url":"https://api.github.com/users/gameplay3d/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gameplay3d/subscriptions","organizations_url":"https://api.github.com/users/gameplay3d/orgs","repos_url":"https://api.github.com/users/gameplay3d/repos","events_url":"https://api.github.com/users/gameplay3d/events{/privacy}","received_events_url":"https://api.github.com/users/gameplay3d/received_events","type":"Organization","site_admin":false},"repo":{"id":2567475,"name":"GamePlay","full_name":"gameplay3d/GamePlay","owner":{"login":"gameplay3d","id":5668263,"avatar_url":"https://avatars.githubusercontent.com/u/5668263?v=3","gravatar_id":"","url":"https://api.github.com/users/gameplay3d","html_url":"https://github.com/gameplay3d","followers_url":"https://api.github.com/users/gameplay3d/followers","following_url":"https://api.github.com/users/gameplay3d/following{/other_user}","gists_url":"https://api.github.com/users/gameplay3d/gists{/gist_id}","starred_url":"https://api.github.com/users/gameplay3d/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gameplay3d/subscriptions","organizations_url":"https://api.github.com/users/gameplay3d/orgs","repos_url":"https://api.github.com/users/gameplay3d/repos","events_url":"https://api.github.com/users/gameplay3d/events{/privacy}","received_events_url":"https://api.github.com/users/gameplay3d/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/gameplay3d/GamePlay","description":"Open-source, cross-platform 3D native C++ game framework making it easy to create mobile and desktop games.","fork":false,"url":"https://api.github.com/repos/gameplay3d/GamePlay","forks_url":"https://api.github.com/repos/gameplay3d/GamePlay/forks","keys_url":"https://api.github.com/repos/gameplay3d/GamePlay/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gameplay3d/GamePlay/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gameplay3d/GamePlay/teams","hooks_url":"https://api.github.com/repos/gameplay3d/GamePlay/hooks","issue_events_url":"https://api.github.com/repos/gameplay3d/GamePlay/issues/events{/number}","events_url":"https://api.github.com/repos/gameplay3d/GamePlay/events","assignees_url":"https://api.github.com/repos/gameplay3d/GamePlay/assignees{/user}","branches_url":"https://api.github.com/repos/gameplay3d/GamePlay/branches{/branch}","tags_url":"https://api.github.com/repos/gameplay3d/GamePlay/tags","blobs_url":"https://api.github.com/repos/gameplay3d/GamePlay/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gameplay3d/GamePlay/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gameplay3d/GamePlay/git/refs{/sha}","trees_url":"https://api.github.com/repos/gameplay3d/GamePlay/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gameplay3d/GamePlay/statuses/{sha}","languages_url":"https://api.github.com/repos/gameplay3d/GamePlay/languages","stargazers_url":"https://api.github.com/repos/gameplay3d/GamePlay/stargazers","contributors_url":"https://api.github.com/repos/gameplay3d/GamePlay/contributors","subscribers_url":"https://api.github.com/repos/gameplay3d/GamePlay/subscribers","subscription_url":"https://api.github.com/repos/gameplay3d/GamePlay/subscription","commits_url":"https://api.github.com/repos/gameplay3d/GamePlay/commits{/sha}","git_commits_url":"https://api.github.com/repos/gameplay3d/GamePlay/git/commits{/sha}","comments_url":"https://api.github.com/repos/gameplay3d/GamePlay/comments{/number}","issue_comment_url":"https://api.github.com/repos/gameplay3d/GamePlay/issues/comments/{number}","contents_url":"https://api.github.com/repos/gameplay3d/GamePlay/contents/{+path}","compare_url":"https://api.github.com/repos/gameplay3d/GamePlay/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gameplay3d/GamePlay/merges","archive_url":"https://api.github.com/repos/gameplay3d/GamePlay/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gameplay3d/GamePlay/downloads","issues_url":"https://api.github.com/repos/gameplay3d/GamePlay/issues{/number}","pulls_url":"https://api.github.com/repos/gameplay3d/GamePlay/pulls{/number}","milestones_url":"https://api.github.com/repos/gameplay3d/GamePlay/milestones{/number}","notifications_url":"https://api.github.com/repos/gameplay3d/GamePlay/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gameplay3d/GamePlay/labels{/name}","releases_url":"https://api.github.com/repos/gameplay3d/GamePlay/releases{/id}","created_at":"2011-10-13T05:46:41Z","updated_at":"2014-12-29T12:38:21Z","pushed_at":"2014-12-31T15:14:58Z","git_url":"git://github.com/gameplay3d/GamePlay.git","ssh_url":"git@github.com:gameplay3d/GamePlay.git","clone_url":"https://github.com/gameplay3d/GamePlay.git","svn_url":"https://github.com/gameplay3d/GamePlay","homepage":"www.gameplay3d.org","size":733388,"stargazers_count":1227,"watchers_count":1227,"language":"C++","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":645,"mirror_url":null,"open_issues_count":21,"forks":645,"open_issues":21,"watchers":1227,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/gameplay3d/GamePlay/pulls/1641"},"html":{"href":"https://github.com/gameplay3d/GamePlay/pull/1641"},"issue":{"href":"https://api.github.com/repos/gameplay3d/GamePlay/issues/1641"},"comments":{"href":"https://api.github.com/repos/gameplay3d/GamePlay/issues/1641/comments"},"review_comments":{"href":"https://api.github.com/repos/gameplay3d/GamePlay/pulls/1641/comments"},"review_comment":{"href":"https://api.github.com/repos/gameplay3d/GamePlay/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/gameplay3d/GamePlay/pulls/1641/commits"},"statuses":{"href":"https://api.github.com/repos/gameplay3d/GamePlay/statuses/cba0d00f3835b49050b8389ce3608a9c842f4583"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":2,"deletions":2,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:06:47Z","org":{"id":5668263,"login":"gameplay3d","gravatar_id":"","url":"https://api.github.com/orgs/gameplay3d","avatar_url":"https://avatars.githubusercontent.com/u/5668263?"}} +,{"id":"2489654199","type":"PushEvent","actor":{"id":1482672,"login":"deathcore01","gravatar_id":"","url":"https://api.github.com/users/deathcore01","avatar_url":"https://avatars.githubusercontent.com/u/1482672?"},"repo":{"id":28688670,"name":"deathcore01/Carbonite","url":"https://api.github.com/repos/deathcore01/Carbonite"},"payload":{"push_id":536865421,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1a73fa1dc96ce3e9c816c872bb2dd70d558e2ba5","before":"8fd7b72c9bc5f327ac89be5ed980e124e2833560","commits":[{"sha":"1a73fa1dc96ce3e9c816c872bb2dd70d558e2ba5","author":{"email":"c5f8734a6c54993ede7d3275b6725030e2ef7f7f@gmx.de","name":"deathcore01"},"message":"fix for issue #143","distinct":true,"url":"https://api.github.com/repos/deathcore01/Carbonite/commits/1a73fa1dc96ce3e9c816c872bb2dd70d558e2ba5"}]},"public":true,"created_at":"2015-01-01T15:06:48Z"} +,{"id":"2489654200","type":"CreateEvent","actor":{"id":7450973,"login":"riemann111","gravatar_id":"","url":"https://api.github.com/users/riemann111","avatar_url":"https://avatars.githubusercontent.com/u/7450973?"},"repo":{"id":28688717,"name":"riemann111/Powerbot","url":"https://api.github.com/repos/riemann111/Powerbot"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Powerbot scripts","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:48Z"} +,{"id":"2489654204","type":"PullRequestEvent","actor":{"id":493276,"login":"k-okada","gravatar_id":"","url":"https://api.github.com/users/k-okada","avatar_url":"https://avatars.githubusercontent.com/u/493276?"},"repo":{"id":10344201,"name":"ros-simulation/gazebo_ros_pkgs","url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs"},"payload":{"action":"closed","number":287,"pull_request":{"url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/287","id":26743798,"html_url":"https://github.com/ros-simulation/gazebo_ros_pkgs/pull/287","diff_url":"https://github.com/ros-simulation/gazebo_ros_pkgs/pull/287.diff","patch_url":"https://github.com/ros-simulation/gazebo_ros_pkgs/pull/287.patch","issue_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/287","number":287,"state":"closed","locked":false,"title":"add option to change package:// to model:// when loading urdf file","user":{"login":"k-okada","id":493276,"avatar_url":"https://avatars.githubusercontent.com/u/493276?v=3","gravatar_id":"","url":"https://api.github.com/users/k-okada","html_url":"https://github.com/k-okada","followers_url":"https://api.github.com/users/k-okada/followers","following_url":"https://api.github.com/users/k-okada/following{/other_user}","gists_url":"https://api.github.com/users/k-okada/gists{/gist_id}","starred_url":"https://api.github.com/users/k-okada/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k-okada/subscriptions","organizations_url":"https://api.github.com/users/k-okada/orgs","repos_url":"https://api.github.com/users/k-okada/repos","events_url":"https://api.github.com/users/k-okada/events{/privacy}","received_events_url":"https://api.github.com/users/k-okada/received_events","type":"User","site_admin":false},"body":"this feature is required if we want to use gzweb, but ofcourse you have to set GAZEBO_MODEL_PATH correctly","created_at":"2015-01-01T15:04:20Z","updated_at":"2015-01-01T15:06:48Z","closed_at":"2015-01-01T15:06:48Z","merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/287/commits","review_comments_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/287/comments","review_comment_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/comments/{number}","comments_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/287/comments","statuses_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/statuses/5f82ee0428994b7f52d63285a672774be29f0b9e","head":{"label":"k-okada:add_package_to_model","ref":"add_package_to_model","sha":"5f82ee0428994b7f52d63285a672774be29f0b9e","user":{"login":"k-okada","id":493276,"avatar_url":"https://avatars.githubusercontent.com/u/493276?v=3","gravatar_id":"","url":"https://api.github.com/users/k-okada","html_url":"https://github.com/k-okada","followers_url":"https://api.github.com/users/k-okada/followers","following_url":"https://api.github.com/users/k-okada/following{/other_user}","gists_url":"https://api.github.com/users/k-okada/gists{/gist_id}","starred_url":"https://api.github.com/users/k-okada/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k-okada/subscriptions","organizations_url":"https://api.github.com/users/k-okada/orgs","repos_url":"https://api.github.com/users/k-okada/repos","events_url":"https://api.github.com/users/k-okada/events{/privacy}","received_events_url":"https://api.github.com/users/k-okada/received_events","type":"User","site_admin":false},"repo":{"id":27212864,"name":"gazebo_ros_pkgs","full_name":"k-okada/gazebo_ros_pkgs","owner":{"login":"k-okada","id":493276,"avatar_url":"https://avatars.githubusercontent.com/u/493276?v=3","gravatar_id":"","url":"https://api.github.com/users/k-okada","html_url":"https://github.com/k-okada","followers_url":"https://api.github.com/users/k-okada/followers","following_url":"https://api.github.com/users/k-okada/following{/other_user}","gists_url":"https://api.github.com/users/k-okada/gists{/gist_id}","starred_url":"https://api.github.com/users/k-okada/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k-okada/subscriptions","organizations_url":"https://api.github.com/users/k-okada/orgs","repos_url":"https://api.github.com/users/k-okada/repos","events_url":"https://api.github.com/users/k-okada/events{/privacy}","received_events_url":"https://api.github.com/users/k-okada/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k-okada/gazebo_ros_pkgs","description":"Wrappers, tools and additional API's for using ROS with Gazebo. Formally simulator_gazebo stack","fork":true,"url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs","forks_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/forks","keys_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/teams","hooks_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/hooks","issue_events_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/issues/events{/number}","events_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/events","assignees_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/assignees{/user}","branches_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/branches{/branch}","tags_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/tags","blobs_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/git/refs{/sha}","trees_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/statuses/{sha}","languages_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/languages","stargazers_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/stargazers","contributors_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/contributors","subscribers_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/subscribers","subscription_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/subscription","commits_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/commits{/sha}","git_commits_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/git/commits{/sha}","comments_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/comments{/number}","issue_comment_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/issues/comments/{number}","contents_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/contents/{+path}","compare_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/merges","archive_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/downloads","issues_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/issues{/number}","pulls_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/pulls{/number}","milestones_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/milestones{/number}","notifications_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/labels{/name}","releases_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/releases{/id}","created_at":"2014-11-27T06:51:53Z","updated_at":"2014-11-27T06:51:54Z","pushed_at":"2015-01-01T15:03:20Z","git_url":"git://github.com/k-okada/gazebo_ros_pkgs.git","ssh_url":"git@github.com:k-okada/gazebo_ros_pkgs.git","clone_url":"https://github.com/k-okada/gazebo_ros_pkgs.git","svn_url":"https://github.com/k-okada/gazebo_ros_pkgs","homepage":"www.ros.org/wiki/gazebo_ros_pkgs","size":3075,"stargazers_count":0,"watchers_count":0,"language":"C++","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":"hydro-devel"}},"base":{"label":"ros-simulation:hydro-devel","ref":"hydro-devel","sha":"d8471f25c0323670be994a4c554903ff06df0bd7","user":{"login":"ros-simulation","id":2349888,"avatar_url":"https://avatars.githubusercontent.com/u/2349888?v=3","gravatar_id":"","url":"https://api.github.com/users/ros-simulation","html_url":"https://github.com/ros-simulation","followers_url":"https://api.github.com/users/ros-simulation/followers","following_url":"https://api.github.com/users/ros-simulation/following{/other_user}","gists_url":"https://api.github.com/users/ros-simulation/gists{/gist_id}","starred_url":"https://api.github.com/users/ros-simulation/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ros-simulation/subscriptions","organizations_url":"https://api.github.com/users/ros-simulation/orgs","repos_url":"https://api.github.com/users/ros-simulation/repos","events_url":"https://api.github.com/users/ros-simulation/events{/privacy}","received_events_url":"https://api.github.com/users/ros-simulation/received_events","type":"Organization","site_admin":false},"repo":{"id":10344201,"name":"gazebo_ros_pkgs","full_name":"ros-simulation/gazebo_ros_pkgs","owner":{"login":"ros-simulation","id":2349888,"avatar_url":"https://avatars.githubusercontent.com/u/2349888?v=3","gravatar_id":"","url":"https://api.github.com/users/ros-simulation","html_url":"https://github.com/ros-simulation","followers_url":"https://api.github.com/users/ros-simulation/followers","following_url":"https://api.github.com/users/ros-simulation/following{/other_user}","gists_url":"https://api.github.com/users/ros-simulation/gists{/gist_id}","starred_url":"https://api.github.com/users/ros-simulation/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ros-simulation/subscriptions","organizations_url":"https://api.github.com/users/ros-simulation/orgs","repos_url":"https://api.github.com/users/ros-simulation/repos","events_url":"https://api.github.com/users/ros-simulation/events{/privacy}","received_events_url":"https://api.github.com/users/ros-simulation/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/ros-simulation/gazebo_ros_pkgs","description":"Wrappers, tools and additional API's for using ROS with Gazebo. Formally simulator_gazebo stack","fork":false,"url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs","forks_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/forks","keys_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/teams","hooks_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/hooks","issue_events_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/events{/number}","events_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/events","assignees_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/assignees{/user}","branches_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/branches{/branch}","tags_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/tags","blobs_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/git/refs{/sha}","trees_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/statuses/{sha}","languages_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/languages","stargazers_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/stargazers","contributors_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/contributors","subscribers_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/subscribers","subscription_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/subscription","commits_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/commits{/sha}","git_commits_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/git/commits{/sha}","comments_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/comments{/number}","issue_comment_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/comments/{number}","contents_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/contents/{+path}","compare_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/merges","archive_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/downloads","issues_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues{/number}","pulls_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls{/number}","milestones_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/milestones{/number}","notifications_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/labels{/name}","releases_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/releases{/id}","created_at":"2013-05-28T19:59:20Z","updated_at":"2014-12-15T13:51:55Z","pushed_at":"2014-12-16T21:29:55Z","git_url":"git://github.com/ros-simulation/gazebo_ros_pkgs.git","ssh_url":"git@github.com:ros-simulation/gazebo_ros_pkgs.git","clone_url":"https://github.com/ros-simulation/gazebo_ros_pkgs.git","svn_url":"https://github.com/ros-simulation/gazebo_ros_pkgs","homepage":"www.ros.org/wiki/gazebo_ros_pkgs","size":5148,"stargazers_count":21,"watchers_count":21,"language":"C++","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":73,"mirror_url":null,"open_issues_count":62,"forks":73,"open_issues":62,"watchers":21,"default_branch":"hydro-devel"}},"_links":{"self":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/287"},"html":{"href":"https://github.com/ros-simulation/gazebo_ros_pkgs/pull/287"},"issue":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/287"},"comments":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/287/comments"},"review_comments":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/287/comments"},"review_comment":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/287/commits"},"statuses":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/statuses/5f82ee0428994b7f52d63285a672774be29f0b9e"}},"merged":false,"mergeable":false,"mergeable_state":"dirty","merged_by":null,"comments":1,"review_comments":0,"commits":92,"additions":1573,"deletions":700,"changed_files":44}},"public":true,"created_at":"2015-01-01T15:06:48Z","org":{"id":2349888,"login":"ros-simulation","gravatar_id":"","url":"https://api.github.com/orgs/ros-simulation","avatar_url":"https://avatars.githubusercontent.com/u/2349888?"}} +,{"id":"2489654215","type":"IssueCommentEvent","actor":{"id":1806092,"login":"cgrates","gravatar_id":"","url":"https://api.github.com/users/cgrates","avatar_url":"https://avatars.githubusercontent.com/u/1806092?"},"repo":{"id":3254877,"name":"cgrates/cgrates","url":"https://api.github.com/repos/cgrates/cgrates"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/cgrates/cgrates/issues/33","labels_url":"https://api.github.com/repos/cgrates/cgrates/issues/33/labels{/name}","comments_url":"https://api.github.com/repos/cgrates/cgrates/issues/33/comments","events_url":"https://api.github.com/repos/cgrates/cgrates/issues/33/events","html_url":"https://github.com/cgrates/cgrates/issues/33","id":53185513,"number":33,"title":"Dropped calls when rate_increment and group_interval_start set to 6","user":{"login":"ewsamuels","id":5496519,"avatar_url":"https://avatars.githubusercontent.com/u/5496519?v=3","gravatar_id":"","url":"https://api.github.com/users/ewsamuels","html_url":"https://github.com/ewsamuels","followers_url":"https://api.github.com/users/ewsamuels/followers","following_url":"https://api.github.com/users/ewsamuels/following{/other_user}","gists_url":"https://api.github.com/users/ewsamuels/gists{/gist_id}","starred_url":"https://api.github.com/users/ewsamuels/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ewsamuels/subscriptions","organizations_url":"https://api.github.com/users/ewsamuels/orgs","repos_url":"https://api.github.com/users/ewsamuels/repos","events_url":"https://api.github.com/users/ewsamuels/events{/privacy}","received_events_url":"https://api.github.com/users/ewsamuels/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-31T14:13:23Z","updated_at":"2015-01-01T15:06:50Z","closed_at":null,"body":"Hello,\r\n\r\nI uploaded my A-Z rates and I was able to make calls to any international destination that I called however I noticed that whenever I made a call to the USA the call would drop as soon as it was answered. \r\n\r\nThere were no errors in the Freeswitch or CGRates logs but what I did realize was that all the international destinations I was calling the rate_increment and group_interval_start were both set to 1 whereas for the USA both the rate_increment and group_interval_start were both set to 6. \r\n\r\nI set both the rate_increment and group_interval_start were both set to 1 and was able to make calls to the USA then I set them back to 6 and the calls dropped again. \r\n\r\n#### GET CALL COST with rate_increment and group_interval_start set to 6\r\n cgr-console 'cost Direction=\"*out\" Category=\"call\" Tenant=\"sbc.mydomain.com\" Subject=\"2651797610\" Account=\"2651797610\" Destination=\"19173001321\" TimeStart=\"2014-12-31T14:00:00Z\" TimeEnd=\"2014-12-31T14:05:00Z\"'\r\n{\r\n \"Direction\": \"*out\",\r\n \"Category\": \"call\",\r\n \"Tenant\": \"sbc.mydomain.com\",\r\n \"Subject\": \"322181565\",\r\n \"Account\": \"322181565\",\r\n \"Destination\": \"19123001321\",\r\n \"TOR\": \"*voice\",\r\n \"Cost\": 6e+09,\r\n \"Timespans\": [\r\n {\r\n \"TimeStart\": \"2014-12-31T14:00:00Z\",\r\n \"TimeEnd\": \"2014-12-31T14:00:06Z\",\r\n \"Cost\": 6e+09,\r\n \"RateInterval\": {\r\n \"Timing\": {\r\n \"Years\": [],\r\n \"Months\": [],\r\n \"MonthDays\": [],\r\n \"WeekDays\": [],\r\n \"StartTime\": \"00:00:00\",\r\n \"EndTime\": \"\"\r\n },\r\n \"Rating\": {\r\n \"ConnectFee\": 0,\r\n \"RoundingMethod\": \"*middle\",\r\n \"RoundingDecimals\": 5,\r\n \"Rates\": [\r\n {\r\n \"GroupIntervalStart\": 6000000000,\r\n \"Value\": 0,\r\n \"RateIncrement\": 6000000000,\r\n \"RateUnit\": 60000000000\r\n }\r\n ]\r\n },\r\n \"Weight\": 10\r\n },\r\n \"DurationIndex\": 6000000000,\r\n \"Increments\": null,\r\n \"MatchedSubject\": \"*out:sbc.mydomain.com:call:*any\",\r\n \"MatchedPrefix\": \"1912\",\r\n \"MatchedDestId\": \"United_States\"\r\n },\r\n {\r\n \"TimeStart\": \"2014-12-31T14:00:06Z\",\r\n \"TimeEnd\": \"2014-12-31T14:05:00Z\",\r\n \"Cost\": 0,\r\n \"RateInterval\": {\r\n \"Timing\": {\r\n \"Years\": [],\r\n \"Months\": [],\r\n \"MonthDays\": [],\r\n \"WeekDays\": [],\r\n \"StartTime\": \"00:00:00\",\r\n \"EndTime\": \"\"\r\n },\r\n \"Rating\": {\r\n \"ConnectFee\": 0,\r\n \"RoundingMethod\": \"*middle\",\r\n \"RoundingDecimals\": 5,\r\n \"Rates\": [\r\n {\r\n \"GroupIntervalStart\": 6000000000,\r\n \"Value\": 0,\r\n \"RateIncrement\": 6000000000,\r\n \"RateUnit\": 60000000000\r\n }\r\n ]\r\n },\r\n \"Weight\": 10\r\n },\r\n \"DurationIndex\": 300000000000,\r\n \"Increments\": null,\r\n \"MatchedSubject\": \"*out:sbc.mydomain.com:call:*any\",\r\n \"MatchedPrefix\": \"1912\",\r\n \"MatchedDestId\": \"United_States\"\r\n }\r\n ]\r\n}\r\n#### GET CALL COST with rate_increment and group_interval_start set to 1\r\nroot@sbc:~# cgr-console 'cost Direction=\"*out\" Category=\"call\" Tenant=\"sbc.mydomain.com\" Subject=\"322181565\" Account=\"322181565\" Destination=\"19123001321\" TimeStart=\"2014-12-31T14:00:00Z\" TimeEnd=\"2014-12-31T14:05:00Z\"'\r\n{\r\n \"Direction\": \"*out\",\r\n \"Category\": \"call\",\r\n \"Tenant\": \"sbc.mydomain.com\",\r\n \"Subject\": \"322181565\",\r\n \"Account\": \"322181565\",\r\n \"Destination\": \"19123001321\",\r\n \"TOR\": \"*voice\",\r\n \"Cost\": 1e+09,\r\n \"Timespans\": [\r\n {\r\n \"TimeStart\": \"2014-12-31T14:00:00Z\",\r\n \"TimeEnd\": \"2014-12-31T14:00:01Z\",\r\n \"Cost\": 1e+09,\r\n \"RateInterval\": {\r\n \"Timing\": {\r\n \"Years\": [],\r\n \"Months\": [],\r\n \"MonthDays\": [],\r\n \"WeekDays\": [],\r\n \"StartTime\": \"00:00:00\",\r\n \"EndTime\": \"\"\r\n },\r\n \"Rating\": {\r\n \"ConnectFee\": 0,\r\n \"RoundingMethod\": \"*middle\",\r\n \"RoundingDecimals\": 5,\r\n \"Rates\": [\r\n {\r\n \"GroupIntervalStart\": 1000000000,\r\n \"Value\": 0,\r\n \"RateIncrement\": 1000000000,\r\n \"RateUnit\": 60000000000\r\n }\r\n ]\r\n },\r\n \"Weight\": 10\r\n },\r\n \"DurationIndex\": 1000000000,\r\n \"Increments\": null,\r\n \"MatchedSubject\": \"*out:sbc.mydomain.com:call:*any\",\r\n \"MatchedPrefix\": \"1912\",\r\n \"MatchedDestId\": \"United_States\"\r\n },\r\n {\r\n \"TimeStart\": \"2014-12-31T14:00:01Z\",\r\n \"TimeEnd\": \"2014-12-31T14:05:00Z\",\r\n \"Cost\": 0,\r\n \"RateInterval\": {\r\n \"Timing\": {\r\n \"Years\": [],\r\n \"Months\": [],\r\n \"MonthDays\": [],\r\n \"WeekDays\": [],\r\n \"StartTime\": \"00:00:00\",\r\n \"EndTime\": \"\"\r\n },\r\n \"Rating\": {\r\n \"ConnectFee\": 0,\r\n \"RoundingMethod\": \"*middle\",\r\n \"RoundingDecimals\": 5,\r\n \"Rates\": [\r\n {\r\n \"GroupIntervalStart\": 1000000000,\r\n \"Value\": 0,\r\n \"RateIncrement\": 1000000000,\r\n \"RateUnit\": 60000000000\r\n }\r\n ]\r\n },\r\n \"Weight\": 10\r\n },\r\n \"DurationIndex\": 300000000000,\r\n \"Increments\": null,\r\n \"MatchedSubject\": \"*out:sbc.mydomain.com:call:*any\",\r\n \"MatchedPrefix\": \"1912\",\r\n \"MatchedDestId\": \"United_States\"\r\n }\r\n ]\r\n}\r\n![tp_rates](https://cloud.githubusercontent.com/assets/5496519/5588044/dce73c9c-90f5-11e4-8eee-fb63667db4b8.png)\r\n\r\n![tp_rating_plan](https://cloud.githubusercontent.com/assets/5496519/5588055/2ae49fb6-90f6-11e4-9801-4a9b85b2807d.png)\r\n\r\n![tp_rating_profile](https://cloud.githubusercontent.com/assets/5496519/5588062/821cb2d2-90f6-11e4-81c8-e0ad30d3a325.png)\r\n\r\nI trust someone would be able to make some sense from this.\r\n\r\nHappy New Year to ALL!\r\n\r\nregards,\r\n\r\nErrol\r\n\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/cgrates/cgrates/issues/comments/68488612","html_url":"https://github.com/cgrates/cgrates/issues/33#issuecomment-68488612","issue_url":"https://api.github.com/repos/cgrates/cgrates/issues/33","id":68488612,"user":{"login":"cgrates","id":1806092,"avatar_url":"https://avatars.githubusercontent.com/u/1806092?v=3","gravatar_id":"","url":"https://api.github.com/users/cgrates","html_url":"https://github.com/cgrates","followers_url":"https://api.github.com/users/cgrates/followers","following_url":"https://api.github.com/users/cgrates/following{/other_user}","gists_url":"https://api.github.com/users/cgrates/gists{/gist_id}","starred_url":"https://api.github.com/users/cgrates/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cgrates/subscriptions","organizations_url":"https://api.github.com/users/cgrates/orgs","repos_url":"https://api.github.com/users/cgrates/repos","events_url":"https://api.github.com/users/cgrates/events{/privacy}","received_events_url":"https://api.github.com/users/cgrates/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:06:50Z","updated_at":"2015-01-01T15:06:50Z","body":"Hi Errol,\n\nHappy New Year to you too!\n\nThe reason you get session disconnect is due to tariff plan error you \nhave inserted in your Rates.csv. If you set GroupIntervalStart to 6 the \nrater will not have a rate for the beginning of the interval (1-6) hence \ndropping the call. If you want to have the first 6 seconds of a call \nfree, you need to still define a GroupIntervalStart 0 with a \ncorresponding rate of 0. If you want to charge all but in increments of \n6 seconds, you need to define GroupIntervalStart to 0 and RateIncrement \nto 6.\n\nLet me know if clear enough.\n\nDanB\n\nOn 31.12.2014 16:13, ewsamuels wrote:\n>\n> Hello,\n>\n> I uploaded my A-Z rates and I was able to make calls to any \n> international destination that I called however I noticed that \n> whenever I made a call to the USA the call would drop as soon as it \n> was answered.\n>\n> There were no errors in the Freeswitch or CGRates logs but what I did \n> realize was that all the international destinations I was calling the \n> rate_increment and group_interval_start were both set to 1 whereas for \n> the USA both the rate_increment and group_interval_start were both set \n> to 6.\n>\n> I set both the rate_increment and group_interval_start were both set \n> to 1 and was able to make calls to the USA then I set them back to 6 \n> and the calls dropped again.\n>\n>\n> GET CALL COST with rate_increment and group_interval_start set\n> to 6\n>\n> cgr-console 'cost Direction=\"/out\" Category=\"call\" \n> Tenant=\"sbc.mydomain.com\" Subject=\"2651797610\" Account=\"2651797610\" \n> Destination=\"19173001321\" TimeStart=\"2014-12-31T14:00:00Z\" \n> TimeEnd=\"2014-12-31T14:05:00Z\"'\n> {\n> \"Direction\": \"/out\",\n> \"Category\": \"call\",\n> \"Tenant\": \"sbc.mydomain.com\",\n> \"Subject\": \"322181565\",\n> \"Account\": \"322181565\",\n> \"Destination\": \"19123001321\",\n> \"TOR\": \"/voice\",\n> \"Cost\": 6e+09,\n> \"Timespans\": [\n> {\n> \"TimeStart\": \"2014-12-31T14:00:00Z\",\n> \"TimeEnd\": \"2014-12-31T14:00:06Z\",\n> \"Cost\": 6e+09,\n> \"RateInterval\": {\n> \"Timing\": {\n> \"Years\": [],\n> \"Months\": [],\n> \"MonthDays\": [],\n> \"WeekDays\": [],\n> \"StartTime\": \"00:00:00\",\n> \"EndTime\": \"\"\n> },\n> \"Rating\": {\n> \"ConnectFee\": 0,\n> \"RoundingMethod\": \"/middle\",\n> \"RoundingDecimals\": 5,\n> \"Rates\": [\n> {\n> \"GroupIntervalStart\": 6000000000,\n> \"Value\": 0,\n> \"RateIncrement\": 6000000000,\n> \"RateUnit\": 60000000000\n> }\n> ]\n> },\n> \"Weight\": 10\n> },\n> \"DurationIndex\": 6000000000,\n> \"Increments\": null,\n> \"MatchedSubject\": \"/out:sbc.mydomain.com:call:/any\",\n> \"MatchedPrefix\": \"1912\",\n> \"MatchedDestId\": \"United_States\"\n> },\n> {\n> \"TimeStart\": \"2014-12-31T14:00:06Z\",\n> \"TimeEnd\": \"2014-12-31T14:05:00Z\",\n> \"Cost\": 0,\n> \"RateInterval\": {\n> \"Timing\": {\n> \"Years\": [],\n> \"Months\": [],\n> \"MonthDays\": [],\n> \"WeekDays\": [],\n> \"StartTime\": \"00:00:00\",\n> \"EndTime\": \"\"\n> },\n> \"Rating\": {\n> \"ConnectFee\": 0,\n> \"RoundingMethod\": \"/middle\",\n> \"RoundingDecimals\": 5,\n> \"Rates\": [\n> {\n> \"GroupIntervalStart\": 6000000000,\n> \"Value\": 0,\n> \"RateIncrement\": 6000000000,\n> \"RateUnit\": 60000000000\n> }\n> ]\n> },\n> \"Weight\": 10\n> },\n> \"DurationIndex\": 300000000000,\n> \"Increments\": null,\n> \"MatchedSubject\": \"/out:sbc.mydomain.com:call:*any\",\n> \"MatchedPrefix\": \"1912\",\n> \"MatchedDestId\": \"United_States\"\n> }\n> ]\n> }\n>\n>\n> GET CALL COST with rate_increment and group_interval_start set\n> to 1\n>\n> root@sbc:~# cgr-console 'cost Direction=\"/out\" Category=\"call\" \n> Tenant=\"sbc.mydomain.com\" Subject=\"322181565\" Account=\"322181565\" \n> Destination=\"19123001321\" TimeStart=\"2014-12-31T14:00:00Z\" \n> TimeEnd=\"2014-12-31T14:05:00Z\"'\n> {\n> \"Direction\": \"/out\",\n> \"Category\": \"call\",\n> \"Tenant\": \"sbc.mydomain.com\",\n> \"Subject\": \"322181565\",\n> \"Account\": \"322181565\",\n> \"Destination\": \"19123001321\",\n> \"TOR\": \"/voice\",\n> \"Cost\": 1e+09,\n> \"Timespans\": [\n> {\n> \"TimeStart\": \"2014-12-31T14:00:00Z\",\n> \"TimeEnd\": \"2014-12-31T14:00:01Z\",\n> \"Cost\": 1e+09,\n> \"RateInterval\": {\n> \"Timing\": {\n> \"Years\": [],\n> \"Months\": [],\n> \"MonthDays\": [],\n> \"WeekDays\": [],\n> \"StartTime\": \"00:00:00\",\n> \"EndTime\": \"\"\n> },\n> \"Rating\": {\n> \"ConnectFee\": 0,\n> \"RoundingMethod\": \"/middle\",\n> \"RoundingDecimals\": 5,\n> \"Rates\": [\n> {\n> \"GroupIntervalStart\": 1000000000,\n> \"Value\": 0,\n> \"RateIncrement\": 1000000000,\n> \"RateUnit\": 60000000000\n> }\n> ]\n> },\n> \"Weight\": 10\n> },\n> \"DurationIndex\": 1000000000,\n> \"Increments\": null,\n> \"MatchedSubject\": \"/out:sbc.mydomain.com:call:/any\",\n> \"MatchedPrefix\": \"1912\",\n> \"MatchedDestId\": \"United_States\"\n> },\n> {\n> \"TimeStart\": \"2014-12-31T14:00:01Z\",\n> \"TimeEnd\": \"2014-12-31T14:05:00Z\",\n> \"Cost\": 0,\n> \"RateInterval\": {\n> \"Timing\": {\n> \"Years\": [],\n> \"Months\": [],\n> \"MonthDays\": [],\n> \"WeekDays\": [],\n> \"StartTime\": \"00:00:00\",\n> \"EndTime\": \"\"\n> },\n> \"Rating\": {\n> \"ConnectFee\": 0,\n> \"RoundingMethod\": \"/middle\",\n> \"RoundingDecimals\": 5,\n> \"Rates\": [\n> {\n> \"GroupIntervalStart\": 1000000000,\n> \"Value\": 0,\n> \"RateIncrement\": 1000000000,\n> \"RateUnit\": 60000000000\n> }\n> ]\n> },\n> \"Weight\": 10\n> },\n> \"DurationIndex\": 300000000000,\n> \"Increments\": null,\n> \"MatchedSubject\": \"/out:sbc.mydomain.com:call:*any\",\n> \"MatchedPrefix\": \"1912\",\n> \"MatchedDestId\": \"United_States\"\n> }\n> ]\n> }\n> tp_rates \n> \n>\n> tp_rating_plan \n> \n>\n> tp_rating_profile \n> \n>\n> I trust someone would be able to make some sense from this.\n>\n> Happy New Year to ALL!\n>\n> regards,\n>\n> Errol\n>\n> —\n> Reply to this email directly or view it on GitHub \n> .\n>"}},"public":true,"created_at":"2015-01-01T15:06:50Z"} +,{"id":"2489654221","type":"PullRequestEvent","actor":{"id":4053416,"login":"gabrielusvicente","gravatar_id":"","url":"https://api.github.com/users/gabrielusvicente","avatar_url":"https://avatars.githubusercontent.com/u/4053416?"},"repo":{"id":27336731,"name":"cuducos/findaconf","url":"https://api.github.com/repos/cuducos/findaconf"},"payload":{"action":"opened","number":3,"pull_request":{"url":"https://api.github.com/repos/cuducos/findaconf/pulls/3","id":26743822,"html_url":"https://github.com/cuducos/findaconf/pull/3","diff_url":"https://github.com/cuducos/findaconf/pull/3.diff","patch_url":"https://github.com/cuducos/findaconf/pull/3.patch","issue_url":"https://api.github.com/repos/cuducos/findaconf/issues/3","number":3,"state":"open","locked":false,"title":"Create login authentication","user":{"login":"gabrielusvicente","id":4053416,"avatar_url":"https://avatars.githubusercontent.com/u/4053416?v=3","gravatar_id":"","url":"https://api.github.com/users/gabrielusvicente","html_url":"https://github.com/gabrielusvicente","followers_url":"https://api.github.com/users/gabrielusvicente/followers","following_url":"https://api.github.com/users/gabrielusvicente/following{/other_user}","gists_url":"https://api.github.com/users/gabrielusvicente/gists{/gist_id}","starred_url":"https://api.github.com/users/gabrielusvicente/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gabrielusvicente/subscriptions","organizations_url":"https://api.github.com/users/gabrielusvicente/orgs","repos_url":"https://api.github.com/users/gabrielusvicente/repos","events_url":"https://api.github.com/users/gabrielusvicente/events{/privacy}","received_events_url":"https://api.github.com/users/gabrielusvicente/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:06:50Z","updated_at":"2015-01-01T15:06:50Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/cuducos/findaconf/pulls/3/commits","review_comments_url":"https://api.github.com/repos/cuducos/findaconf/pulls/3/comments","review_comment_url":"https://api.github.com/repos/cuducos/findaconf/pulls/comments/{number}","comments_url":"https://api.github.com/repos/cuducos/findaconf/issues/3/comments","statuses_url":"https://api.github.com/repos/cuducos/findaconf/statuses/8dc8514a7c8e50ba40c20e8d10809c3b1e906860","head":{"label":"gabrielusvicente:OAuth","ref":"OAuth","sha":"8dc8514a7c8e50ba40c20e8d10809c3b1e906860","user":{"login":"gabrielusvicente","id":4053416,"avatar_url":"https://avatars.githubusercontent.com/u/4053416?v=3","gravatar_id":"","url":"https://api.github.com/users/gabrielusvicente","html_url":"https://github.com/gabrielusvicente","followers_url":"https://api.github.com/users/gabrielusvicente/followers","following_url":"https://api.github.com/users/gabrielusvicente/following{/other_user}","gists_url":"https://api.github.com/users/gabrielusvicente/gists{/gist_id}","starred_url":"https://api.github.com/users/gabrielusvicente/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gabrielusvicente/subscriptions","organizations_url":"https://api.github.com/users/gabrielusvicente/orgs","repos_url":"https://api.github.com/users/gabrielusvicente/repos","events_url":"https://api.github.com/users/gabrielusvicente/events{/privacy}","received_events_url":"https://api.github.com/users/gabrielusvicente/received_events","type":"User","site_admin":false},"repo":{"id":28659229,"name":"findaconf","full_name":"gabrielusvicente/findaconf","owner":{"login":"gabrielusvicente","id":4053416,"avatar_url":"https://avatars.githubusercontent.com/u/4053416?v=3","gravatar_id":"","url":"https://api.github.com/users/gabrielusvicente","html_url":"https://github.com/gabrielusvicente","followers_url":"https://api.github.com/users/gabrielusvicente/followers","following_url":"https://api.github.com/users/gabrielusvicente/following{/other_user}","gists_url":"https://api.github.com/users/gabrielusvicente/gists{/gist_id}","starred_url":"https://api.github.com/users/gabrielusvicente/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gabrielusvicente/subscriptions","organizations_url":"https://api.github.com/users/gabrielusvicente/orgs","repos_url":"https://api.github.com/users/gabrielusvicente/repos","events_url":"https://api.github.com/users/gabrielusvicente/events{/privacy}","received_events_url":"https://api.github.com/users/gabrielusvicente/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/gabrielusvicente/findaconf","description":"Mock-up for Find a Conference","fork":true,"url":"https://api.github.com/repos/gabrielusvicente/findaconf","forks_url":"https://api.github.com/repos/gabrielusvicente/findaconf/forks","keys_url":"https://api.github.com/repos/gabrielusvicente/findaconf/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gabrielusvicente/findaconf/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gabrielusvicente/findaconf/teams","hooks_url":"https://api.github.com/repos/gabrielusvicente/findaconf/hooks","issue_events_url":"https://api.github.com/repos/gabrielusvicente/findaconf/issues/events{/number}","events_url":"https://api.github.com/repos/gabrielusvicente/findaconf/events","assignees_url":"https://api.github.com/repos/gabrielusvicente/findaconf/assignees{/user}","branches_url":"https://api.github.com/repos/gabrielusvicente/findaconf/branches{/branch}","tags_url":"https://api.github.com/repos/gabrielusvicente/findaconf/tags","blobs_url":"https://api.github.com/repos/gabrielusvicente/findaconf/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gabrielusvicente/findaconf/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gabrielusvicente/findaconf/git/refs{/sha}","trees_url":"https://api.github.com/repos/gabrielusvicente/findaconf/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gabrielusvicente/findaconf/statuses/{sha}","languages_url":"https://api.github.com/repos/gabrielusvicente/findaconf/languages","stargazers_url":"https://api.github.com/repos/gabrielusvicente/findaconf/stargazers","contributors_url":"https://api.github.com/repos/gabrielusvicente/findaconf/contributors","subscribers_url":"https://api.github.com/repos/gabrielusvicente/findaconf/subscribers","subscription_url":"https://api.github.com/repos/gabrielusvicente/findaconf/subscription","commits_url":"https://api.github.com/repos/gabrielusvicente/findaconf/commits{/sha}","git_commits_url":"https://api.github.com/repos/gabrielusvicente/findaconf/git/commits{/sha}","comments_url":"https://api.github.com/repos/gabrielusvicente/findaconf/comments{/number}","issue_comment_url":"https://api.github.com/repos/gabrielusvicente/findaconf/issues/comments/{number}","contents_url":"https://api.github.com/repos/gabrielusvicente/findaconf/contents/{+path}","compare_url":"https://api.github.com/repos/gabrielusvicente/findaconf/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gabrielusvicente/findaconf/merges","archive_url":"https://api.github.com/repos/gabrielusvicente/findaconf/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gabrielusvicente/findaconf/downloads","issues_url":"https://api.github.com/repos/gabrielusvicente/findaconf/issues{/number}","pulls_url":"https://api.github.com/repos/gabrielusvicente/findaconf/pulls{/number}","milestones_url":"https://api.github.com/repos/gabrielusvicente/findaconf/milestones{/number}","notifications_url":"https://api.github.com/repos/gabrielusvicente/findaconf/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gabrielusvicente/findaconf/labels{/name}","releases_url":"https://api.github.com/repos/gabrielusvicente/findaconf/releases{/id}","created_at":"2014-12-31T07:13:08Z","updated_at":"2014-12-31T10:03:29Z","pushed_at":"2015-01-01T15:05:54Z","git_url":"git://github.com/gabrielusvicente/findaconf.git","ssh_url":"git@github.com:gabrielusvicente/findaconf.git","clone_url":"https://github.com/gabrielusvicente/findaconf.git","svn_url":"https://github.com/gabrielusvicente/findaconf","homepage":null,"size":273,"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":"cuducos:master","ref":"master","sha":"e816d1f3bcb3d0a2e5cab8dbc8ebb8e189c905e2","user":{"login":"cuducos","id":4732915,"avatar_url":"https://avatars.githubusercontent.com/u/4732915?v=3","gravatar_id":"","url":"https://api.github.com/users/cuducos","html_url":"https://github.com/cuducos","followers_url":"https://api.github.com/users/cuducos/followers","following_url":"https://api.github.com/users/cuducos/following{/other_user}","gists_url":"https://api.github.com/users/cuducos/gists{/gist_id}","starred_url":"https://api.github.com/users/cuducos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cuducos/subscriptions","organizations_url":"https://api.github.com/users/cuducos/orgs","repos_url":"https://api.github.com/users/cuducos/repos","events_url":"https://api.github.com/users/cuducos/events{/privacy}","received_events_url":"https://api.github.com/users/cuducos/received_events","type":"User","site_admin":false},"repo":{"id":27336731,"name":"findaconf","full_name":"cuducos/findaconf","owner":{"login":"cuducos","id":4732915,"avatar_url":"https://avatars.githubusercontent.com/u/4732915?v=3","gravatar_id":"","url":"https://api.github.com/users/cuducos","html_url":"https://github.com/cuducos","followers_url":"https://api.github.com/users/cuducos/followers","following_url":"https://api.github.com/users/cuducos/following{/other_user}","gists_url":"https://api.github.com/users/cuducos/gists{/gist_id}","starred_url":"https://api.github.com/users/cuducos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cuducos/subscriptions","organizations_url":"https://api.github.com/users/cuducos/orgs","repos_url":"https://api.github.com/users/cuducos/repos","events_url":"https://api.github.com/users/cuducos/events{/privacy}","received_events_url":"https://api.github.com/users/cuducos/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/cuducos/findaconf","description":"Mock-up for Find a Conference","fork":false,"url":"https://api.github.com/repos/cuducos/findaconf","forks_url":"https://api.github.com/repos/cuducos/findaconf/forks","keys_url":"https://api.github.com/repos/cuducos/findaconf/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cuducos/findaconf/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cuducos/findaconf/teams","hooks_url":"https://api.github.com/repos/cuducos/findaconf/hooks","issue_events_url":"https://api.github.com/repos/cuducos/findaconf/issues/events{/number}","events_url":"https://api.github.com/repos/cuducos/findaconf/events","assignees_url":"https://api.github.com/repos/cuducos/findaconf/assignees{/user}","branches_url":"https://api.github.com/repos/cuducos/findaconf/branches{/branch}","tags_url":"https://api.github.com/repos/cuducos/findaconf/tags","blobs_url":"https://api.github.com/repos/cuducos/findaconf/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cuducos/findaconf/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cuducos/findaconf/git/refs{/sha}","trees_url":"https://api.github.com/repos/cuducos/findaconf/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cuducos/findaconf/statuses/{sha}","languages_url":"https://api.github.com/repos/cuducos/findaconf/languages","stargazers_url":"https://api.github.com/repos/cuducos/findaconf/stargazers","contributors_url":"https://api.github.com/repos/cuducos/findaconf/contributors","subscribers_url":"https://api.github.com/repos/cuducos/findaconf/subscribers","subscription_url":"https://api.github.com/repos/cuducos/findaconf/subscription","commits_url":"https://api.github.com/repos/cuducos/findaconf/commits{/sha}","git_commits_url":"https://api.github.com/repos/cuducos/findaconf/git/commits{/sha}","comments_url":"https://api.github.com/repos/cuducos/findaconf/comments{/number}","issue_comment_url":"https://api.github.com/repos/cuducos/findaconf/issues/comments/{number}","contents_url":"https://api.github.com/repos/cuducos/findaconf/contents/{+path}","compare_url":"https://api.github.com/repos/cuducos/findaconf/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cuducos/findaconf/merges","archive_url":"https://api.github.com/repos/cuducos/findaconf/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cuducos/findaconf/downloads","issues_url":"https://api.github.com/repos/cuducos/findaconf/issues{/number}","pulls_url":"https://api.github.com/repos/cuducos/findaconf/pulls{/number}","milestones_url":"https://api.github.com/repos/cuducos/findaconf/milestones{/number}","notifications_url":"https://api.github.com/repos/cuducos/findaconf/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cuducos/findaconf/labels{/name}","releases_url":"https://api.github.com/repos/cuducos/findaconf/releases{/id}","created_at":"2014-11-30T13:31:51Z","updated_at":"2014-12-31T10:06:24Z","pushed_at":"2014-12-31T10:06:23Z","git_url":"git://github.com/cuducos/findaconf.git","ssh_url":"git@github.com:cuducos/findaconf.git","clone_url":"https://github.com/cuducos/findaconf.git","svn_url":"https://github.com/cuducos/findaconf","homepage":null,"size":273,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":1,"forks":1,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/cuducos/findaconf/pulls/3"},"html":{"href":"https://github.com/cuducos/findaconf/pull/3"},"issue":{"href":"https://api.github.com/repos/cuducos/findaconf/issues/3"},"comments":{"href":"https://api.github.com/repos/cuducos/findaconf/issues/3/comments"},"review_comments":{"href":"https://api.github.com/repos/cuducos/findaconf/pulls/3/comments"},"review_comment":{"href":"https://api.github.com/repos/cuducos/findaconf/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/cuducos/findaconf/pulls/3/commits"},"statuses":{"href":"https://api.github.com/repos/cuducos/findaconf/statuses/8dc8514a7c8e50ba40c20e8d10809c3b1e906860"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":2,"additions":125,"deletions":26,"changed_files":9}},"public":true,"created_at":"2015-01-01T15:06:50Z"} +,{"id":"2489654223","type":"CreateEvent","actor":{"id":8283768,"login":"evelynting610","gravatar_id":"","url":"https://api.github.com/users/evelynting610","avatar_url":"https://avatars.githubusercontent.com/u/8283768?"},"repo":{"id":28688641,"name":"evelynting610/yolunchme","url":"https://api.github.com/repos/evelynting610/yolunchme"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"The Front-End design of the App","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:50Z"} +,{"id":"2489654225","type":"ForkEvent","actor":{"id":1593300,"login":"hynnet","gravatar_id":"","url":"https://api.github.com/users/hynnet","avatar_url":"https://avatars.githubusercontent.com/u/1593300?"},"repo":{"id":21363806,"name":"Tabbedout/SodiumObjc","url":"https://api.github.com/repos/Tabbedout/SodiumObjc"},"payload":{"forkee":{"id":28688718,"name":"SodiumObjc","full_name":"hynnet/SodiumObjc","owner":{"login":"hynnet","id":1593300,"avatar_url":"https://avatars.githubusercontent.com/u/1593300?v=3","gravatar_id":"","url":"https://api.github.com/users/hynnet","html_url":"https://github.com/hynnet","followers_url":"https://api.github.com/users/hynnet/followers","following_url":"https://api.github.com/users/hynnet/following{/other_user}","gists_url":"https://api.github.com/users/hynnet/gists{/gist_id}","starred_url":"https://api.github.com/users/hynnet/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hynnet/subscriptions","organizations_url":"https://api.github.com/users/hynnet/orgs","repos_url":"https://api.github.com/users/hynnet/repos","events_url":"https://api.github.com/users/hynnet/events{/privacy}","received_events_url":"https://api.github.com/users/hynnet/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/hynnet/SodiumObjc","description":"Objective-C bindings for NaCL","fork":true,"url":"https://api.github.com/repos/hynnet/SodiumObjc","forks_url":"https://api.github.com/repos/hynnet/SodiumObjc/forks","keys_url":"https://api.github.com/repos/hynnet/SodiumObjc/keys{/key_id}","collaborators_url":"https://api.github.com/repos/hynnet/SodiumObjc/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/hynnet/SodiumObjc/teams","hooks_url":"https://api.github.com/repos/hynnet/SodiumObjc/hooks","issue_events_url":"https://api.github.com/repos/hynnet/SodiumObjc/issues/events{/number}","events_url":"https://api.github.com/repos/hynnet/SodiumObjc/events","assignees_url":"https://api.github.com/repos/hynnet/SodiumObjc/assignees{/user}","branches_url":"https://api.github.com/repos/hynnet/SodiumObjc/branches{/branch}","tags_url":"https://api.github.com/repos/hynnet/SodiumObjc/tags","blobs_url":"https://api.github.com/repos/hynnet/SodiumObjc/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/hynnet/SodiumObjc/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/hynnet/SodiumObjc/git/refs{/sha}","trees_url":"https://api.github.com/repos/hynnet/SodiumObjc/git/trees{/sha}","statuses_url":"https://api.github.com/repos/hynnet/SodiumObjc/statuses/{sha}","languages_url":"https://api.github.com/repos/hynnet/SodiumObjc/languages","stargazers_url":"https://api.github.com/repos/hynnet/SodiumObjc/stargazers","contributors_url":"https://api.github.com/repos/hynnet/SodiumObjc/contributors","subscribers_url":"https://api.github.com/repos/hynnet/SodiumObjc/subscribers","subscription_url":"https://api.github.com/repos/hynnet/SodiumObjc/subscription","commits_url":"https://api.github.com/repos/hynnet/SodiumObjc/commits{/sha}","git_commits_url":"https://api.github.com/repos/hynnet/SodiumObjc/git/commits{/sha}","comments_url":"https://api.github.com/repos/hynnet/SodiumObjc/comments{/number}","issue_comment_url":"https://api.github.com/repos/hynnet/SodiumObjc/issues/comments/{number}","contents_url":"https://api.github.com/repos/hynnet/SodiumObjc/contents/{+path}","compare_url":"https://api.github.com/repos/hynnet/SodiumObjc/compare/{base}...{head}","merges_url":"https://api.github.com/repos/hynnet/SodiumObjc/merges","archive_url":"https://api.github.com/repos/hynnet/SodiumObjc/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/hynnet/SodiumObjc/downloads","issues_url":"https://api.github.com/repos/hynnet/SodiumObjc/issues{/number}","pulls_url":"https://api.github.com/repos/hynnet/SodiumObjc/pulls{/number}","milestones_url":"https://api.github.com/repos/hynnet/SodiumObjc/milestones{/number}","notifications_url":"https://api.github.com/repos/hynnet/SodiumObjc/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/hynnet/SodiumObjc/labels{/name}","releases_url":"https://api.github.com/repos/hynnet/SodiumObjc/releases{/id}","created_at":"2015-01-01T15:06:52Z","updated_at":"2014-11-23T02:38:34Z","pushed_at":"2014-10-14T16:44:27Z","git_url":"git://github.com/hynnet/SodiumObjc.git","ssh_url":"git@github.com:hynnet/SodiumObjc.git","clone_url":"https://github.com/hynnet/SodiumObjc.git","svn_url":"https://github.com/hynnet/SodiumObjc","homepage":null,"size":3517,"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:06:52Z","org":{"id":3585680,"login":"Tabbedout","gravatar_id":"","url":"https://api.github.com/orgs/Tabbedout","avatar_url":"https://avatars.githubusercontent.com/u/3585680?"}} +,{"id":"2489654226","type":"CommitCommentEvent","actor":{"id":6748717,"login":"Sdw-","gravatar_id":"","url":"https://api.github.com/users/Sdw-","avatar_url":"https://avatars.githubusercontent.com/u/6748717?"},"repo":{"id":25987473,"name":"L2J/L2J_Server","url":"https://api.github.com/repos/L2J/L2J_Server"},"payload":{"comment":{"url":"https://api.github.com/repos/L2J/L2J_Server/comments/9132434","html_url":"https://github.com/L2J/L2J_Server/commit/85f029c52f0a7b613dcc2086a374aa779ba09f72#commitcomment-9132434","id":9132434,"user":{"login":"Sdw-","id":6748717,"avatar_url":"https://avatars.githubusercontent.com/u/6748717?v=3","gravatar_id":"","url":"https://api.github.com/users/Sdw-","html_url":"https://github.com/Sdw-","followers_url":"https://api.github.com/users/Sdw-/followers","following_url":"https://api.github.com/users/Sdw-/following{/other_user}","gists_url":"https://api.github.com/users/Sdw-/gists{/gist_id}","starred_url":"https://api.github.com/users/Sdw-/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Sdw-/subscriptions","organizations_url":"https://api.github.com/users/Sdw-/orgs","repos_url":"https://api.github.com/users/Sdw-/repos","events_url":"https://api.github.com/users/Sdw-/events{/privacy}","received_events_url":"https://api.github.com/users/Sdw-/received_events","type":"User","site_admin":false},"position":5,"line":48,"path":"L2J_Server/java/com/l2jserver/gameserver/network/serverpackets/EtcStatusUpdate.java","commit_id":"85f029c52f0a7b613dcc2086a374aa779ba09f72","created_at":"2015-01-01T15:06:52Z","updated_at":"2015-01-01T15:06:52Z","body":"I reworked that packet myself, support is still here and even nc changed the format quite a bit. It's just retarded if they leaves it here (Ho wait, classic) I just thought it might be used by something and wanted to make sure."}},"public":true,"created_at":"2015-01-01T15:06:52Z","org":{"id":4763428,"login":"L2J","gravatar_id":"","url":"https://api.github.com/orgs/L2J","avatar_url":"https://avatars.githubusercontent.com/u/4763428?"}} +,{"id":"2489654227","type":"WatchEvent","actor":{"id":407708,"login":"chamnap","gravatar_id":"","url":"https://api.github.com/users/chamnap","avatar_url":"https://avatars.githubusercontent.com/u/407708?"},"repo":{"id":12013012,"name":"IronSummitMedia/startbootstrap","url":"https://api.github.com/repos/IronSummitMedia/startbootstrap"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:06:52Z","org":{"id":5191791,"login":"IronSummitMedia","gravatar_id":"","url":"https://api.github.com/orgs/IronSummitMedia","avatar_url":"https://avatars.githubusercontent.com/u/5191791?"}} +,{"id":"2489654229","type":"WatchEvent","actor":{"id":3059292,"login":"evileric","gravatar_id":"","url":"https://api.github.com/users/evileric","avatar_url":"https://avatars.githubusercontent.com/u/3059292?"},"repo":{"id":6816044,"name":"lauren/pick-a-color","url":"https://api.github.com/repos/lauren/pick-a-color"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:06:52Z"} +,{"id":"2489654230","type":"WatchEvent","actor":{"id":170820,"login":"seyhunak","gravatar_id":"","url":"https://api.github.com/users/seyhunak","avatar_url":"https://avatars.githubusercontent.com/u/170820?"},"repo":{"id":14578734,"name":"jessesquires/JSQSystemSoundPlayer","url":"https://api.github.com/repos/jessesquires/JSQSystemSoundPlayer"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:06:52Z"} +,{"id":"2489654231","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":22619256,"name":"hex7c0/mod_autoindex","url":"https://api.github.com/repos/hex7c0/mod_autoindex"},"payload":{"push_id":536865432,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9620649b890c712d812f135d2bbeb14776293f3c","before":"1d85270dd894255a4e70b6f8e2945de0d3604c2a","commits":[{"sha":"9620649b890c712d812f135d2bbeb14776293f3c","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"1.4.17","distinct":true,"url":"https://api.github.com/repos/hex7c0/mod_autoindex/commits/9620649b890c712d812f135d2bbeb14776293f3c"}]},"public":true,"created_at":"2015-01-01T15:06:52Z"} +,{"id":"2489654232","type":"PushEvent","actor":{"id":366761,"login":"flackr","gravatar_id":"","url":"https://api.github.com/users/flackr","avatar_url":"https://avatars.githubusercontent.com/u/366761?"},"repo":{"id":6974683,"name":"flackr/lobby","url":"https://api.github.com/repos/flackr/lobby"},"payload":{"push_id":536865433,"size":1,"distinct_size":1,"ref":"refs/heads/webrtc","head":"db72498fea535cee5953e2666c9272f58d262f45","before":"2b14c6aa6aa872d6946a843d839c9f4266b00b17","commits":[{"sha":"db72498fea535cee5953e2666c9272f58d262f45","author":{"email":"96236e735c86b7a403f7cd72f8aa555c4573b3ce@gmail.com","name":"Robert Flack"},"message":"Use public server address.","distinct":true,"url":"https://api.github.com/repos/flackr/lobby/commits/db72498fea535cee5953e2666c9272f58d262f45"}]},"public":true,"created_at":"2015-01-01T15:06:53Z"} +,{"id":"2489654233","type":"PushEvent","actor":{"id":3233228,"login":"LureBreaker","gravatar_id":"","url":"https://api.github.com/users/LureBreaker","avatar_url":"https://avatars.githubusercontent.com/u/3233228?"},"repo":{"id":28688680,"name":"LureBreaker/django-tutorial","url":"https://api.github.com/repos/LureBreaker/django-tutorial"},"payload":{"push_id":536865434,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4b3ed06baa4174fc370a9afeab5aa746da099eb0","before":"581c9136738ec914ed9713293355c303cc59ae0c","commits":[{"sha":"4b3ed06baa4174fc370a9afeab5aa746da099eb0","author":{"email":"516cd4ba6af87985d3b4a4685b1a4e7b76748394@sis.smu.edu.sg","name":"Lim Xian Ming"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/LureBreaker/django-tutorial/commits/4b3ed06baa4174fc370a9afeab5aa746da099eb0"}]},"public":true,"created_at":"2015-01-01T15:06:53Z"} +,{"id":"2489654234","type":"IssueCommentEvent","actor":{"id":5514202,"login":"DeeJee","gravatar_id":"","url":"https://api.github.com/users/DeeJee","avatar_url":"https://avatars.githubusercontent.com/u/5514202?"},"repo":{"id":28571307,"name":"DeeJee/VhpTimeLogger","url":"https://api.github.com/repos/DeeJee/VhpTimeLogger"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/3","labels_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/3/comments","events_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/3/events","html_url":"https://github.com/DeeJee/VhpTimeLogger/issues/3","id":53221236,"number":3,"title":"Namen rapportage","user":{"login":"DeeJee","id":5514202,"avatar_url":"https://avatars.githubusercontent.com/u/5514202?v=3","gravatar_id":"","url":"https://api.github.com/users/DeeJee","html_url":"https://github.com/DeeJee","followers_url":"https://api.github.com/users/DeeJee/followers","following_url":"https://api.github.com/users/DeeJee/following{/other_user}","gists_url":"https://api.github.com/users/DeeJee/gists{/gist_id}","starred_url":"https://api.github.com/users/DeeJee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeeJee/subscriptions","organizations_url":"https://api.github.com/users/DeeJee/orgs","repos_url":"https://api.github.com/users/DeeJee/repos","events_url":"https://api.github.com/users/DeeJee/events{/privacy}","received_events_url":"https://api.github.com/users/DeeJee/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T14:55:09Z","updated_at":"2015-01-01T15:06:53Z","closed_at":"2015-01-01T15:06:53Z","body":"Kun je de data in de namen zo weergeven dat ze goed sorteren? Dus bijv 2013-10-01 tm 2013-10-15\r\n"},"comment":{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/comments/68488613","html_url":"https://github.com/DeeJee/VhpTimeLogger/issues/3#issuecomment-68488613","issue_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/3","id":68488613,"user":{"login":"DeeJee","id":5514202,"avatar_url":"https://avatars.githubusercontent.com/u/5514202?v=3","gravatar_id":"","url":"https://api.github.com/users/DeeJee","html_url":"https://github.com/DeeJee","followers_url":"https://api.github.com/users/DeeJee/followers","following_url":"https://api.github.com/users/DeeJee/following{/other_user}","gists_url":"https://api.github.com/users/DeeJee/gists{/gist_id}","starred_url":"https://api.github.com/users/DeeJee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeeJee/subscriptions","organizations_url":"https://api.github.com/users/DeeJee/orgs","repos_url":"https://api.github.com/users/DeeJee/repos","events_url":"https://api.github.com/users/DeeJee/events{/privacy}","received_events_url":"https://api.github.com/users/DeeJee/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:06:53Z","updated_at":"2015-01-01T15:06:53Z","body":"Het datum formaat is aangepast."}},"public":true,"created_at":"2015-01-01T15:06:53Z"} +,{"id":"2489654235","type":"IssuesEvent","actor":{"id":5514202,"login":"DeeJee","gravatar_id":"","url":"https://api.github.com/users/DeeJee","avatar_url":"https://avatars.githubusercontent.com/u/5514202?"},"repo":{"id":28571307,"name":"DeeJee/VhpTimeLogger","url":"https://api.github.com/repos/DeeJee/VhpTimeLogger"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/3","labels_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/3/comments","events_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/3/events","html_url":"https://github.com/DeeJee/VhpTimeLogger/issues/3","id":53221236,"number":3,"title":"Namen rapportage","user":{"login":"DeeJee","id":5514202,"avatar_url":"https://avatars.githubusercontent.com/u/5514202?v=3","gravatar_id":"","url":"https://api.github.com/users/DeeJee","html_url":"https://github.com/DeeJee","followers_url":"https://api.github.com/users/DeeJee/followers","following_url":"https://api.github.com/users/DeeJee/following{/other_user}","gists_url":"https://api.github.com/users/DeeJee/gists{/gist_id}","starred_url":"https://api.github.com/users/DeeJee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeeJee/subscriptions","organizations_url":"https://api.github.com/users/DeeJee/orgs","repos_url":"https://api.github.com/users/DeeJee/repos","events_url":"https://api.github.com/users/DeeJee/events{/privacy}","received_events_url":"https://api.github.com/users/DeeJee/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T14:55:09Z","updated_at":"2015-01-01T15:06:53Z","closed_at":"2015-01-01T15:06:53Z","body":"Kun je de data in de namen zo weergeven dat ze goed sorteren? Dus bijv 2013-10-01 tm 2013-10-15\r\n"}},"public":true,"created_at":"2015-01-01T15:06:53Z"} +,{"id":"2489654236","type":"PushEvent","actor":{"id":341158,"login":"stfx","gravatar_id":"","url":"https://api.github.com/users/stfx","avatar_url":"https://avatars.githubusercontent.com/u/341158?"},"repo":{"id":20288451,"name":"stfx/innodependencyinstaller","url":"https://api.github.com/repos/stfx/innodependencyinstaller"},"payload":{"push_id":536865435,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"522c2563a35d07d289621f35aa2bad1c82c827df","before":"4e64dea21038c8674e114e0d1fbd22e49c4dd249","commits":[{"sha":"522c2563a35d07d289621f35aa2bad1c82c827df","author":{"email":"a150986b6087621a0da6ddec78e9f3f3e318d425@hotmail.de","name":"stfx"},"message":"Fix Visual C++ redist install parameters","distinct":true,"url":"https://api.github.com/repos/stfx/innodependencyinstaller/commits/522c2563a35d07d289621f35aa2bad1c82c827df"}]},"public":true,"created_at":"2015-01-01T15:06:53Z"} +,{"id":"2489654239","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":27928684,"name":"go-amz/amz","url":"https://api.github.com/repos/go-amz/amz"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/go-amz/amz/issues/6","labels_url":"https://api.github.com/repos/go-amz/amz/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/go-amz/amz/issues/6/comments","events_url":"https://api.github.com/repos/go-amz/amz/issues/6/events","html_url":"https://github.com/go-amz/amz/pull/6","id":53089846,"number":6,"title":"setup Travis CI for testing","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":7,"created_at":"2014-12-30T03:03:13Z","updated_at":"2015-01-01T15:06:53Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/go-amz/amz/pulls/6","html_url":"https://github.com/go-amz/amz/pull/6","diff_url":"https://github.com/go-amz/amz/pull/6.diff","patch_url":"https://github.com/go-amz/amz/pull/6.patch"},"body":"* [x] It's still necessary to [activate a webhook](http://docs.travis-ci.com/user/getting-started/) to test pull requests "},"comment":{"url":"https://api.github.com/repos/go-amz/amz/issues/comments/68488614","html_url":"https://github.com/go-amz/amz/pull/6#issuecomment-68488614","issue_url":"https://api.github.com/repos/go-amz/amz/issues/6","id":68488614,"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:06:53Z","updated_at":"2015-01-01T15:06:53Z","body":"I think `go get gopkg.in/amz.v1/...` might actually do what you intend for the README. I'm starting to see those triple dots used in more places.\r\n\r\nAs for the Travis CI testing, if we can override the dest on Travis CI:\r\n```\r\ngit clone --depth=50 git://github.com/go-amz/amz.git go-amz/amz\r\n```\r\n\r\ngo gopkg.in/amz.v1\r\n\r\nbut still have it fetch the patch properly:\r\n\r\n```\r\n git fetch origin +refs/pull/6/merge\r\n```\r\n\r\nThen we may not have to have different import statements on the master branch.\r\n\r\nv2-dev might need a slightly different Travis CI file though.\r\n\r\nThough the master branch is pretty much unusable in it's current state, it's really just there for https://github.com/niemeyer/gopkg/issues/20."}},"public":true,"created_at":"2015-01-01T15:06:53Z","org":{"id":8137365,"login":"go-amz","gravatar_id":"","url":"https://api.github.com/orgs/go-amz","avatar_url":"https://avatars.githubusercontent.com/u/8137365?"}} +,{"id":"2489654240","type":"PushEvent","actor":{"id":2725764,"login":"DesertLynx","gravatar_id":"","url":"https://api.github.com/users/DesertLynx","avatar_url":"https://avatars.githubusercontent.com/u/2725764?"},"repo":{"id":28687111,"name":"DesertLynx/async-chainable","url":"https://api.github.com/repos/DesertLynx/async-chainable"},"payload":{"push_id":536865437,"size":6,"distinct_size":6,"ref":"refs/heads/master","head":"c344334eec3ec949999eba43d12110ffede5881e","before":"d34d35cbd3eb88d4616b5f28bb94a6c03d8a2267","commits":[{"sha":"4fa11eda6a238cda46bab0d399d86b466b3a9407","author":{"email":"6b0d31c0d563223024da45691584643ac78c96e8@ttcarter.com","name":"Matt Carter"},"message":"Added all docs","distinct":true,"url":"https://api.github.com/repos/DesertLynx/async-chainable/commits/4fa11eda6a238cda46bab0d399d86b466b3a9407"},{"sha":"cf9d09c2dbd58ba90da87007dc95e6d3bc89ac46","author":{"email":"6b0d31c0d563223024da45691584643ac78c96e8@ttcarter.com","name":"Matt Carter"},"message":"Merge pull request #1 from DesertLynx/master\n\nMOAR TESTS","distinct":true,"url":"https://api.github.com/repos/DesertLynx/async-chainable/commits/cf9d09c2dbd58ba90da87007dc95e6d3bc89ac46"},{"sha":"f8a9d6235ee6553c6323bad05a3f49e6e101df43","author":{"email":"6b0d31c0d563223024da45691584643ac78c96e8@ttcarter.com","name":"Matt Carter"},"message":"Merge branch 'master' of github.com:hash-bang/async-chainable","distinct":true,"url":"https://api.github.com/repos/DesertLynx/async-chainable/commits/f8a9d6235ee6553c6323bad05a3f49e6e101df43"},{"sha":"68fc7534f288752ceac9381915046834abdd9d80","author":{"email":"6b0d31c0d563223024da45691584643ac78c96e8@ttcarter.com","name":"Matt Carter"},"message":"BUGFIX: Test code not using callbacks","distinct":true,"url":"https://api.github.com/repos/DesertLynx/async-chainable/commits/68fc7534f288752ceac9381915046834abdd9d80"},{"sha":"e5f7d9e28edb81e81fac2173a3b70b4623a395a7","author":{"email":"1a73af9e7ae00182733b2292511b814be66f065f@davidporter.id.au","name":"DesertLynx"},"message":"Added istanbul reporting","distinct":true,"url":"https://api.github.com/repos/DesertLynx/async-chainable/commits/e5f7d9e28edb81e81fac2173a3b70b4623a395a7"},{"sha":"c344334eec3ec949999eba43d12110ffede5881e","author":{"email":"1a73af9e7ae00182733b2292511b814be66f065f@davidporter.id.au","name":"DesertLynx"},"message":"Fixed a little more test stupidity","distinct":true,"url":"https://api.github.com/repos/DesertLynx/async-chainable/commits/c344334eec3ec949999eba43d12110ffede5881e"}]},"public":true,"created_at":"2015-01-01T15:06:53Z"} +,{"id":"2489654243","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":536865439,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"0979cba80472b11d30f8ec51b7ab5451caf5f0c3","before":"900f3f2e22cb0da1db22bc10a697b265b6c5427b","commits":[{"sha":"0979cba80472b11d30f8ec51b7ab5451caf5f0c3","author":{"email":"f95eec723805367c948bb244273f7ff20cfc9c50@gmail.com","name":"5aurabhK"},"message":"charts","distinct":true,"url":"https://api.github.com/repos/5aurabhK/keepingfit/commits/0979cba80472b11d30f8ec51b7ab5451caf5f0c3"}]},"public":true,"created_at":"2015-01-01T15:06:53Z"} +,{"id":"2489654245","type":"PushEvent","actor":{"id":1259250,"login":"muniere","gravatar_id":"","url":"https://api.github.com/users/muniere","avatar_url":"https://avatars.githubusercontent.com/u/1259250?"},"repo":{"id":28688681,"name":"muniere/hipchat-history","url":"https://api.github.com/repos/muniere/hipchat-history"},"payload":{"push_id":536865441,"size":6,"distinct_size":6,"ref":"refs/heads/master","head":"fdee85b1797d525259720c358340790317aac453","before":"bceccc155ab9b7c56c7891f384b4bddeb3a3337e","commits":[{"sha":"bda5ad59d813e352b83b97e1649b0d2b053b3d9c","author":{"email":"031e3536a6f8d25babc86cb32cff8cbaeb0c16c7@gmail.com","name":"Hiromune Ikeda"},"message":"First commit","distinct":true,"url":"https://api.github.com/repos/muniere/hipchat-history/commits/bda5ad59d813e352b83b97e1649b0d2b053b3d9c"},{"sha":"5b0012a23d6e868cc84145b2c24fa7c95e7400c8","author":{"email":"031e3536a6f8d25babc86cb32cff8cbaeb0c16c7@gmail.com","name":"Hiromune Ikeda"},"message":"Support to collect messages in specific date","distinct":true,"url":"https://api.github.com/repos/muniere/hipchat-history/commits/5b0012a23d6e868cc84145b2c24fa7c95e7400c8"},{"sha":"62fd0bbe8378e6bce90f8cbe59b704d53028873f","author":{"email":"031e3536a6f8d25babc86cb32cff8cbaeb0c16c7@gmail.com","name":"Hiromune Ikeda"},"message":"Refactor methods for room history","distinct":true,"url":"https://api.github.com/repos/muniere/hipchat-history/commits/62fd0bbe8378e6bce90f8cbe59b704d53028873f"},{"sha":"6871e658f8a6a2f0b0e233262d9af1bd354749e9","author":{"email":"031e3536a6f8d25babc86cb32cff8cbaeb0c16c7@gmail.com","name":"Hiromune Ikeda"},"message":"Support to select messages only from owner of token","distinct":true,"url":"https://api.github.com/repos/muniere/hipchat-history/commits/6871e658f8a6a2f0b0e233262d9af1bd354749e9"},{"sha":"97acfb704bf126120ae310ae14369844d44562b2","author":{"email":"031e3536a6f8d25babc86cb32cff8cbaeb0c16c7@gmail.com","name":"Hiromune Ikeda"},"message":"Indent multiple line messages","distinct":true,"url":"https://api.github.com/repos/muniere/hipchat-history/commits/97acfb704bf126120ae310ae14369844d44562b2"},{"sha":"fdee85b1797d525259720c358340790317aac453","author":{"email":"031e3536a6f8d25babc86cb32cff8cbaeb0c16c7@gmail.com","name":"Hiromune Ikeda"},"message":"Do not colorize except for tty","distinct":true,"url":"https://api.github.com/repos/muniere/hipchat-history/commits/fdee85b1797d525259720c358340790317aac453"}]},"public":true,"created_at":"2015-01-01T15:06:53Z"} +,{"id":"2489654247","type":"MemberEvent","actor":{"id":10362114,"login":"tdkhoa110802","gravatar_id":"","url":"https://api.github.com/users/tdkhoa110802","avatar_url":"https://avatars.githubusercontent.com/u/10362114?"},"repo":{"id":28687205,"name":"tdkhoa110802/Testing","url":"https://api.github.com/repos/tdkhoa110802/Testing"},"payload":{"member":{"login":"jackson1604","id":8214757,"avatar_url":"https://avatars.githubusercontent.com/u/8214757?v=3","gravatar_id":"","url":"https://api.github.com/users/jackson1604","html_url":"https://github.com/jackson1604","followers_url":"https://api.github.com/users/jackson1604/followers","following_url":"https://api.github.com/users/jackson1604/following{/other_user}","gists_url":"https://api.github.com/users/jackson1604/gists{/gist_id}","starred_url":"https://api.github.com/users/jackson1604/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jackson1604/subscriptions","organizations_url":"https://api.github.com/users/jackson1604/orgs","repos_url":"https://api.github.com/users/jackson1604/repos","events_url":"https://api.github.com/users/jackson1604/events{/privacy}","received_events_url":"https://api.github.com/users/jackson1604/received_events","type":"User","site_admin":false},"action":"added"},"public":true,"created_at":"2015-01-01T15:06:54Z"} +,{"id":"2489654249","type":"ForkEvent","actor":{"id":1572750,"login":"bhurtelashish","gravatar_id":"","url":"https://api.github.com/users/bhurtelashish","avatar_url":"https://avatars.githubusercontent.com/u/1572750?"},"repo":{"id":7960283,"name":"gregkh/kdbus","url":"https://api.github.com/repos/gregkh/kdbus"},"payload":{"forkee":{"id":28688719,"name":"kdbus","full_name":"bhurtelashish/kdbus","owner":{"login":"bhurtelashish","id":1572750,"avatar_url":"https://avatars.githubusercontent.com/u/1572750?v=3","gravatar_id":"","url":"https://api.github.com/users/bhurtelashish","html_url":"https://github.com/bhurtelashish","followers_url":"https://api.github.com/users/bhurtelashish/followers","following_url":"https://api.github.com/users/bhurtelashish/following{/other_user}","gists_url":"https://api.github.com/users/bhurtelashish/gists{/gist_id}","starred_url":"https://api.github.com/users/bhurtelashish/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhurtelashish/subscriptions","organizations_url":"https://api.github.com/users/bhurtelashish/orgs","repos_url":"https://api.github.com/users/bhurtelashish/repos","events_url":"https://api.github.com/users/bhurtelashish/events{/privacy}","received_events_url":"https://api.github.com/users/bhurtelashish/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/bhurtelashish/kdbus","description":"Kernel \"dbus-like\" code for the Linux kernel","fork":true,"url":"https://api.github.com/repos/bhurtelashish/kdbus","forks_url":"https://api.github.com/repos/bhurtelashish/kdbus/forks","keys_url":"https://api.github.com/repos/bhurtelashish/kdbus/keys{/key_id}","collaborators_url":"https://api.github.com/repos/bhurtelashish/kdbus/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/bhurtelashish/kdbus/teams","hooks_url":"https://api.github.com/repos/bhurtelashish/kdbus/hooks","issue_events_url":"https://api.github.com/repos/bhurtelashish/kdbus/issues/events{/number}","events_url":"https://api.github.com/repos/bhurtelashish/kdbus/events","assignees_url":"https://api.github.com/repos/bhurtelashish/kdbus/assignees{/user}","branches_url":"https://api.github.com/repos/bhurtelashish/kdbus/branches{/branch}","tags_url":"https://api.github.com/repos/bhurtelashish/kdbus/tags","blobs_url":"https://api.github.com/repos/bhurtelashish/kdbus/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/bhurtelashish/kdbus/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/bhurtelashish/kdbus/git/refs{/sha}","trees_url":"https://api.github.com/repos/bhurtelashish/kdbus/git/trees{/sha}","statuses_url":"https://api.github.com/repos/bhurtelashish/kdbus/statuses/{sha}","languages_url":"https://api.github.com/repos/bhurtelashish/kdbus/languages","stargazers_url":"https://api.github.com/repos/bhurtelashish/kdbus/stargazers","contributors_url":"https://api.github.com/repos/bhurtelashish/kdbus/contributors","subscribers_url":"https://api.github.com/repos/bhurtelashish/kdbus/subscribers","subscription_url":"https://api.github.com/repos/bhurtelashish/kdbus/subscription","commits_url":"https://api.github.com/repos/bhurtelashish/kdbus/commits{/sha}","git_commits_url":"https://api.github.com/repos/bhurtelashish/kdbus/git/commits{/sha}","comments_url":"https://api.github.com/repos/bhurtelashish/kdbus/comments{/number}","issue_comment_url":"https://api.github.com/repos/bhurtelashish/kdbus/issues/comments/{number}","contents_url":"https://api.github.com/repos/bhurtelashish/kdbus/contents/{+path}","compare_url":"https://api.github.com/repos/bhurtelashish/kdbus/compare/{base}...{head}","merges_url":"https://api.github.com/repos/bhurtelashish/kdbus/merges","archive_url":"https://api.github.com/repos/bhurtelashish/kdbus/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/bhurtelashish/kdbus/downloads","issues_url":"https://api.github.com/repos/bhurtelashish/kdbus/issues{/number}","pulls_url":"https://api.github.com/repos/bhurtelashish/kdbus/pulls{/number}","milestones_url":"https://api.github.com/repos/bhurtelashish/kdbus/milestones{/number}","notifications_url":"https://api.github.com/repos/bhurtelashish/kdbus/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/bhurtelashish/kdbus/labels{/name}","releases_url":"https://api.github.com/repos/bhurtelashish/kdbus/releases{/id}","created_at":"2015-01-01T15:06:54Z","updated_at":"2014-12-26T20:01:46Z","pushed_at":"2014-12-24T17:19:18Z","git_url":"git://github.com/bhurtelashish/kdbus.git","ssh_url":"git@github.com:bhurtelashish/kdbus.git","clone_url":"https://github.com/bhurtelashish/kdbus.git","svn_url":"https://github.com/bhurtelashish/kdbus","homepage":null,"size":5453,"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:06:54Z"} +,{"id":"2489654251","type":"WatchEvent","actor":{"id":1017620,"login":"BartoszJarocki","gravatar_id":"","url":"https://api.github.com/users/BartoszJarocki","avatar_url":"https://avatars.githubusercontent.com/u/1017620?"},"repo":{"id":8659145,"name":"MizzleDK/Mizuu","url":"https://api.github.com/repos/MizzleDK/Mizuu"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:06:55Z"} +,{"id":"2489654252","type":"CreateEvent","actor":{"id":7450973,"login":"riemann111","gravatar_id":"","url":"https://api.github.com/users/riemann111","avatar_url":"https://avatars.githubusercontent.com/u/7450973?"},"repo":{"id":28688717,"name":"riemann111/Powerbot","url":"https://api.github.com/repos/riemann111/Powerbot"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Powerbot scripts","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:06:55Z"} +,{"id":"2489654253","type":"PushEvent","actor":{"id":1447152,"login":"yoheiMune","gravatar_id":"","url":"https://api.github.com/users/yoheiMune","avatar_url":"https://avatars.githubusercontent.com/u/1447152?"},"repo":{"id":28688676,"name":"yoheiMune/analytics-playground","url":"https://api.github.com/repos/yoheiMune/analytics-playground"},"payload":{"push_id":536865444,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0b2e80dbdf7983ba51366b2b7468095ed08444d5","before":"4428585cd170ad3167d67f1f30f84a3d760d68b7","commits":[{"sha":"0b2e80dbdf7983ba51366b2b7468095ed08444d5","author":{"email":"694c699c112094c2eee0e9bd882e773f0f452a80@gmail.com","name":"Yohei Munesada"},"message":"modify description","distinct":true,"url":"https://api.github.com/repos/yoheiMune/analytics-playground/commits/0b2e80dbdf7983ba51366b2b7468095ed08444d5"}]},"public":true,"created_at":"2015-01-01T15:06:55Z"} +,{"id":"2489654262","type":"PushEvent","actor":{"id":2065346,"login":"FObermaier","gravatar_id":"","url":"https://api.github.com/users/FObermaier","avatar_url":"https://avatars.githubusercontent.com/u/2065346?"},"repo":{"id":25365061,"name":"BruTile/BruTile","url":"https://api.github.com/repos/BruTile/BruTile"},"payload":{"push_id":536865447,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"3889b2295d28705a6f4b9cf37180bb77f0fceebd","before":"b4c0767d6aad616e2474f5afa8caa7345648f917","commits":[{"sha":"d00e67089246d1c082ecefc3350afce7c098d39d","author":{"email":"b4ed861e7e9accf894d6091f6cd9b447d52d9e69@netcologne.de","name":"FObermaier"},"message":"Fix BruTile.Serialization","distinct":true,"url":"https://api.github.com/repos/BruTile/BruTile/commits/d00e67089246d1c082ecefc3350afce7c098d39d"},{"sha":"3889b2295d28705a6f4b9cf37180bb77f0fceebd","author":{"email":"b4ed861e7e9accf894d6091f6cd9b447d52d9e69@netcologne.de","name":"FObermaier"},"message":"Merge branch 'master' of https://github.com/BruTile/BruTile.git","distinct":true,"url":"https://api.github.com/repos/BruTile/BruTile/commits/3889b2295d28705a6f4b9cf37180bb77f0fceebd"}]},"public":true,"created_at":"2015-01-01T15:06:59Z","org":{"id":9279219,"login":"BruTile","gravatar_id":"","url":"https://api.github.com/orgs/BruTile","avatar_url":"https://avatars.githubusercontent.com/u/9279219?"}} +,{"id":"2489654264","type":"PushEvent","actor":{"id":5467033,"login":"KDamir","gravatar_id":"","url":"https://api.github.com/users/KDamir","avatar_url":"https://avatars.githubusercontent.com/u/5467033?"},"repo":{"id":28470701,"name":"KDamir/myapp","url":"https://api.github.com/repos/KDamir/myapp"},"payload":{"push_id":536865449,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6bee7007aba5aa313c4df0ae125e887fe504fa99","before":"694dfeafe8fd4d44732cbc039548701f650d65b8","commits":[{"sha":"6bee7007aba5aa313c4df0ae125e887fe504fa99","author":{"email":"aef3a593f7fa2c1b8196e480c82727a97482f0d0@gmail.com","name":"Damir"},"message":"fix","distinct":true,"url":"https://api.github.com/repos/KDamir/myapp/commits/6bee7007aba5aa313c4df0ae125e887fe504fa99"}]},"public":true,"created_at":"2015-01-01T15:06:59Z"} +,{"id":"2489654265","type":"PushEvent","actor":{"id":23115,"login":"simonask","gravatar_id":"","url":"https://api.github.com/users/simonask","avatar_url":"https://avatars.githubusercontent.com/u/23115?"},"repo":{"id":16694023,"name":"simonask/rust-reflect","url":"https://api.github.com/repos/simonask/rust-reflect"},"payload":{"push_id":536865450,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bcf855c3b92d689ebc7c420b20b8eff88e5b30bd","before":"b9bbcb85acbeb4fab2b6aefab67dca23dad41871","commits":[{"sha":"bcf855c3b92d689ebc7c420b20b8eff88e5b30bd","author":{"email":"088e16a1019277b15d58faf0541e11910eb756f6@ulsnes.dk","name":"Simon Ask Ulsnes"},"message":"Fixed example in README","distinct":true,"url":"https://api.github.com/repos/simonask/rust-reflect/commits/bcf855c3b92d689ebc7c420b20b8eff88e5b30bd"}]},"public":true,"created_at":"2015-01-01T15:06:59Z"} +,{"id":"2489654268","type":"IssueCommentEvent","actor":{"id":442991,"login":"royopa","gravatar_id":"","url":"https://api.github.com/users/royopa","avatar_url":"https://avatars.githubusercontent.com/u/442991?"},"repo":{"id":28672755,"name":"royopa/trello-control-doc-pt-br","url":"https://api.github.com/repos/royopa/trello-control-doc-pt-br"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/royopa/trello-control-doc-pt-br/issues/1","labels_url":"https://api.github.com/repos/royopa/trello-control-doc-pt-br/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/royopa/trello-control-doc-pt-br/issues/1/comments","events_url":"https://api.github.com/repos/royopa/trello-control-doc-pt-br/issues/1/events","html_url":"https://github.com/royopa/trello-control-doc-pt-br/issues/1","id":53205398,"number":1,"title":"Route unstranslated throws error","user":{"login":"alexandrecruz","id":4138631,"avatar_url":"https://avatars.githubusercontent.com/u/4138631?v=3","gravatar_id":"","url":"https://api.github.com/users/alexandrecruz","html_url":"https://github.com/alexandrecruz","followers_url":"https://api.github.com/users/alexandrecruz/followers","following_url":"https://api.github.com/users/alexandrecruz/following{/other_user}","gists_url":"https://api.github.com/users/alexandrecruz/gists{/gist_id}","starred_url":"https://api.github.com/users/alexandrecruz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alexandrecruz/subscriptions","organizations_url":"https://api.github.com/users/alexandrecruz/orgs","repos_url":"https://api.github.com/users/alexandrecruz/repos","events_url":"https://api.github.com/users/alexandrecruz/events{/privacy}","received_events_url":"https://api.github.com/users/alexandrecruz/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-12-31T21:57:06Z","updated_at":"2015-01-01T15:06:59Z","closed_at":null,"body":"\"Unstranslated\" page (from link \"Arquivos ainda não traduzidos\" in homepage) throws Internal Server Error."},"comment":{"url":"https://api.github.com/repos/royopa/trello-control-doc-pt-br/issues/comments/68488617","html_url":"https://github.com/royopa/trello-control-doc-pt-br/issues/1#issuecomment-68488617","issue_url":"https://api.github.com/repos/royopa/trello-control-doc-pt-br/issues/1","id":68488617,"user":{"login":"royopa","id":442991,"avatar_url":"https://avatars.githubusercontent.com/u/442991?v=3","gravatar_id":"","url":"https://api.github.com/users/royopa","html_url":"https://github.com/royopa","followers_url":"https://api.github.com/users/royopa/followers","following_url":"https://api.github.com/users/royopa/following{/other_user}","gists_url":"https://api.github.com/users/royopa/gists{/gist_id}","starred_url":"https://api.github.com/users/royopa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/royopa/subscriptions","organizations_url":"https://api.github.com/users/royopa/orgs","repos_url":"https://api.github.com/users/royopa/repos","events_url":"https://api.github.com/users/royopa/events{/privacy}","received_events_url":"https://api.github.com/users/royopa/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:06:59Z","updated_at":"2015-01-01T15:06:59Z","body":"Ah, lá não tem jeito de corrigir, pois o problema está na configuração do\r\nPHP.ini do hostinger, que não tenho acesso.\r\n\r\nOn Thu, Jan 1, 2015 at 12:06 PM, Alexandre Cruz \r\nwrote:\r\n\r\n> @royopa Desculpe a falta de explanação, o\r\n> erro está sendo apresentado no\r\n> http://trello-control-doc-pt-br.esy.es/web/index_dev.php que foi enviado\r\n> no chat do Gitter.\r\n>\r\n> —\r\n> Reply to this email directly or view it on GitHub\r\n> \r\n> .\r\n>\r\n\r\n\r\n\r\n-- \r\nRodrigo Prado de Jesus\r\nhttp://about.me/royopa\r\nroyopa@gmail.com"}},"public":true,"created_at":"2015-01-01T15:06:59Z"} +,{"id":"2489654272","type":"WatchEvent","actor":{"id":7702246,"login":"fuhongliang","gravatar_id":"","url":"https://api.github.com/users/fuhongliang","avatar_url":"https://avatars.githubusercontent.com/u/7702246?"},"repo":{"id":375132,"name":"jwood/standup-timer","url":"https://api.github.com/repos/jwood/standup-timer"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:07:00Z"} +,{"id":"2489654275","type":"CreateEvent","actor":{"id":292693,"login":"mikemoraned","gravatar_id":"","url":"https://api.github.com/users/mikemoraned","avatar_url":"https://avatars.githubusercontent.com/u/292693?"},"repo":{"id":28688640,"name":"mikemoraned/spark-play-sbt","url":"https://api.github.com/repos/mikemoraned/spark-play-sbt"},"payload":{"ref":"master","ref_type":"branch","master_branch":"feature/twitter-play-geohash-geohash","description":"Playing around with Spark, using SBT","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:07:00Z"} +,{"id":"2489654278","type":"WatchEvent","actor":{"id":195559,"login":"rakhmad","gravatar_id":"","url":"https://api.github.com/users/rakhmad","avatar_url":"https://avatars.githubusercontent.com/u/195559?"},"repo":{"id":27993911,"name":"damianpetla/kotlin-dagger-example","url":"https://api.github.com/repos/damianpetla/kotlin-dagger-example"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:07:00Z"} +,{"id":"2489654279","type":"WatchEvent","actor":{"id":9975304,"login":"Aercus","gravatar_id":"","url":"https://api.github.com/users/Aercus","avatar_url":"https://avatars.githubusercontent.com/u/9975304?"},"repo":{"id":26751622,"name":"xsoameix/p2p-chat-room","url":"https://api.github.com/repos/xsoameix/p2p-chat-room"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:07:00Z"} +,{"id":"2489654281","type":"PushEvent","actor":{"id":785941,"login":"cenotaph","gravatar_id":"","url":"https://api.github.com/users/cenotaph","avatar_url":"https://avatars.githubusercontent.com/u/785941?"},"repo":{"id":28541151,"name":"cenotaph/version","url":"https://api.github.com/repos/cenotaph/version"},"payload":{"push_id":536865456,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"80a8801f1c39c2f4563f7024c223046760f2d9e0","before":"487a53484efe168b4a734c729a10e6026168c05b","commits":[{"sha":"80a8801f1c39c2f4563f7024c223046760f2d9e0","author":{"email":"a602e216eb44a3ac5e096036eeaaef6bb9159677@cenotaph.org","name":"John W. Fail"},"message":"back to assets in pathname","distinct":true,"url":"https://api.github.com/repos/cenotaph/version/commits/80a8801f1c39c2f4563f7024c223046760f2d9e0"}]},"public":true,"created_at":"2015-01-01T15:07:00Z"} +,{"id":"2489654282","type":"PullRequestReviewCommentEvent","actor":{"id":459648,"login":"samsonasik","gravatar_id":"","url":"https://api.github.com/users/samsonasik","avatar_url":"https://avatars.githubusercontent.com/u/459648?"},"repo":{"id":702550,"name":"zendframework/zf2","url":"https://api.github.com/repos/zendframework/zf2"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/22400104","id":22400104,"diff_hunk":"@@ -0,0 +1,90 @@\n+ array('allowed-1', 'allowed-2')\r\n));\r\necho $whitelist->filter('allowed-2'); // => 'allowed-2'\r\necho $whitelist->filter('not-allowed'); // => null\r\n```\r\n\r\n### Blacklist\r\n```php\r\n$blacklist = new \\Zend\\Filter\\Whitelist(array(\r\n 'type' => 'blacklist', // optional, default is 'whitelist'\r\n 'list' => array('not-allowed-1', 'not-allowed-2')\r\n));\r\necho $blacklist->filter('allowed'); // => 'allowed'\r\necho $blacklist->filter('not-allowed-2'); // => null\r\n```\r\n\r\n### Notes \r\n\r\n1. Maybe calling the filter class `Whitelist` might be counter-intuitive if the desired behavior is that of a blacklist. But I couldn't think of a better way to name the filter, so I'm open to suggestions:\r\n * Something like \"AllowedList\" would just be a synonym of \"whitelist\". \r\n * \"List\" would just be too vague.\r\n * Separate filter classes seemed overkill.\r\n2. I decided to allow only one type of configuration in the constructor (by array of options) just to keep it simple. If you'd like to allow for a more dynamic constructor (like a few other filters do) let me know.\r\n3. Not sure what commit edbc12b is doing in this PR. Looks like its in `master` but not in `develop`.\r\n\r\nSee #6960 for more info.","created_at":"2014-12-05T16:02:35Z","updated_at":"2015-01-01T15:07:00Z","closed_at":null,"merged_at":null,"merge_commit_sha":"305e637f84c8f628496932bd99c0195a0a503c44","assignee":{"login":"Ocramius","id":154256,"avatar_url":"https://avatars.githubusercontent.com/u/154256?v=3","gravatar_id":"","url":"https://api.github.com/users/Ocramius","html_url":"https://github.com/Ocramius","followers_url":"https://api.github.com/users/Ocramius/followers","following_url":"https://api.github.com/users/Ocramius/following{/other_user}","gists_url":"https://api.github.com/users/Ocramius/gists{/gist_id}","starred_url":"https://api.github.com/users/Ocramius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Ocramius/subscriptions","organizations_url":"https://api.github.com/users/Ocramius/orgs","repos_url":"https://api.github.com/users/Ocramius/repos","events_url":"https://api.github.com/users/Ocramius/events{/privacy}","received_events_url":"https://api.github.com/users/Ocramius/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/zendframework/zf2/milestones/26","labels_url":"https://api.github.com/repos/zendframework/zf2/milestones/26/labels","id":593244,"number":26,"title":"2.4.0","description":null,"creator":{"login":"weierophinney","id":25943,"avatar_url":"https://avatars.githubusercontent.com/u/25943?v=3","gravatar_id":"","url":"https://api.github.com/users/weierophinney","html_url":"https://github.com/weierophinney","followers_url":"https://api.github.com/users/weierophinney/followers","following_url":"https://api.github.com/users/weierophinney/following{/other_user}","gists_url":"https://api.github.com/users/weierophinney/gists{/gist_id}","starred_url":"https://api.github.com/users/weierophinney/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/weierophinney/subscriptions","organizations_url":"https://api.github.com/users/weierophinney/orgs","repos_url":"https://api.github.com/users/weierophinney/repos","events_url":"https://api.github.com/users/weierophinney/events{/privacy}","received_events_url":"https://api.github.com/users/weierophinney/received_events","type":"User","site_admin":false},"open_issues":34,"closed_issues":163,"state":"open","created_at":"2014-03-10T21:38:11Z","updated_at":"2014-12-31T09:55:26Z","due_on":null,"closed_at":null},"commits_url":"https://api.github.com/repos/zendframework/zf2/pulls/6962/commits","review_comments_url":"https://api.github.com/repos/zendframework/zf2/pulls/6962/comments","review_comment_url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/{number}","comments_url":"https://api.github.com/repos/zendframework/zf2/issues/6962/comments","statuses_url":"https://api.github.com/repos/zendframework/zf2/statuses/58ef5245151d935d9031d42a504cfab37297af9e","head":{"label":"gabrielsomoza:gabriel/zf-6960-whitelist-filter","ref":"gabriel/zf-6960-whitelist-filter","sha":"58ef5245151d935d9031d42a504cfab37297af9e","user":{"login":"gabrielsomoza","id":106219,"avatar_url":"https://avatars.githubusercontent.com/u/106219?v=3","gravatar_id":"","url":"https://api.github.com/users/gabrielsomoza","html_url":"https://github.com/gabrielsomoza","followers_url":"https://api.github.com/users/gabrielsomoza/followers","following_url":"https://api.github.com/users/gabrielsomoza/following{/other_user}","gists_url":"https://api.github.com/users/gabrielsomoza/gists{/gist_id}","starred_url":"https://api.github.com/users/gabrielsomoza/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gabrielsomoza/subscriptions","organizations_url":"https://api.github.com/users/gabrielsomoza/orgs","repos_url":"https://api.github.com/users/gabrielsomoza/repos","events_url":"https://api.github.com/users/gabrielsomoza/events{/privacy}","received_events_url":"https://api.github.com/users/gabrielsomoza/received_events","type":"User","site_admin":false},"repo":{"id":27590921,"name":"zf2","full_name":"gabrielsomoza/zf2","owner":{"login":"gabrielsomoza","id":106219,"avatar_url":"https://avatars.githubusercontent.com/u/106219?v=3","gravatar_id":"","url":"https://api.github.com/users/gabrielsomoza","html_url":"https://github.com/gabrielsomoza","followers_url":"https://api.github.com/users/gabrielsomoza/followers","following_url":"https://api.github.com/users/gabrielsomoza/following{/other_user}","gists_url":"https://api.github.com/users/gabrielsomoza/gists{/gist_id}","starred_url":"https://api.github.com/users/gabrielsomoza/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gabrielsomoza/subscriptions","organizations_url":"https://api.github.com/users/gabrielsomoza/orgs","repos_url":"https://api.github.com/users/gabrielsomoza/repos","events_url":"https://api.github.com/users/gabrielsomoza/events{/privacy}","received_events_url":"https://api.github.com/users/gabrielsomoza/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/gabrielsomoza/zf2","description":"Official Zend Framework 2 git repository","fork":true,"url":"https://api.github.com/repos/gabrielsomoza/zf2","forks_url":"https://api.github.com/repos/gabrielsomoza/zf2/forks","keys_url":"https://api.github.com/repos/gabrielsomoza/zf2/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gabrielsomoza/zf2/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gabrielsomoza/zf2/teams","hooks_url":"https://api.github.com/repos/gabrielsomoza/zf2/hooks","issue_events_url":"https://api.github.com/repos/gabrielsomoza/zf2/issues/events{/number}","events_url":"https://api.github.com/repos/gabrielsomoza/zf2/events","assignees_url":"https://api.github.com/repos/gabrielsomoza/zf2/assignees{/user}","branches_url":"https://api.github.com/repos/gabrielsomoza/zf2/branches{/branch}","tags_url":"https://api.github.com/repos/gabrielsomoza/zf2/tags","blobs_url":"https://api.github.com/repos/gabrielsomoza/zf2/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gabrielsomoza/zf2/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gabrielsomoza/zf2/git/refs{/sha}","trees_url":"https://api.github.com/repos/gabrielsomoza/zf2/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gabrielsomoza/zf2/statuses/{sha}","languages_url":"https://api.github.com/repos/gabrielsomoza/zf2/languages","stargazers_url":"https://api.github.com/repos/gabrielsomoza/zf2/stargazers","contributors_url":"https://api.github.com/repos/gabrielsomoza/zf2/contributors","subscribers_url":"https://api.github.com/repos/gabrielsomoza/zf2/subscribers","subscription_url":"https://api.github.com/repos/gabrielsomoza/zf2/subscription","commits_url":"https://api.github.com/repos/gabrielsomoza/zf2/commits{/sha}","git_commits_url":"https://api.github.com/repos/gabrielsomoza/zf2/git/commits{/sha}","comments_url":"https://api.github.com/repos/gabrielsomoza/zf2/comments{/number}","issue_comment_url":"https://api.github.com/repos/gabrielsomoza/zf2/issues/comments/{number}","contents_url":"https://api.github.com/repos/gabrielsomoza/zf2/contents/{+path}","compare_url":"https://api.github.com/repos/gabrielsomoza/zf2/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gabrielsomoza/zf2/merges","archive_url":"https://api.github.com/repos/gabrielsomoza/zf2/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gabrielsomoza/zf2/downloads","issues_url":"https://api.github.com/repos/gabrielsomoza/zf2/issues{/number}","pulls_url":"https://api.github.com/repos/gabrielsomoza/zf2/pulls{/number}","milestones_url":"https://api.github.com/repos/gabrielsomoza/zf2/milestones{/number}","notifications_url":"https://api.github.com/repos/gabrielsomoza/zf2/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gabrielsomoza/zf2/labels{/name}","releases_url":"https://api.github.com/repos/gabrielsomoza/zf2/releases{/id}","created_at":"2014-12-05T12:39:42Z","updated_at":"2014-12-05T12:39:55Z","pushed_at":"2014-12-11T12:53:29Z","git_url":"git://github.com/gabrielsomoza/zf2.git","ssh_url":"git@github.com:gabrielsomoza/zf2.git","clone_url":"https://github.com/gabrielsomoza/zf2.git","svn_url":"https://github.com/gabrielsomoza/zf2","homepage":"http://framework.zend.com/","size":92512,"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":"zendframework:develop","ref":"develop","sha":"847c17cbb07f24a8da16b672840ca62ba85eb7de","user":{"login":"zendframework","id":296074,"avatar_url":"https://avatars.githubusercontent.com/u/296074?v=3","gravatar_id":"","url":"https://api.github.com/users/zendframework","html_url":"https://github.com/zendframework","followers_url":"https://api.github.com/users/zendframework/followers","following_url":"https://api.github.com/users/zendframework/following{/other_user}","gists_url":"https://api.github.com/users/zendframework/gists{/gist_id}","starred_url":"https://api.github.com/users/zendframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zendframework/subscriptions","organizations_url":"https://api.github.com/users/zendframework/orgs","repos_url":"https://api.github.com/users/zendframework/repos","events_url":"https://api.github.com/users/zendframework/events{/privacy}","received_events_url":"https://api.github.com/users/zendframework/received_events","type":"Organization","site_admin":false},"repo":{"id":702550,"name":"zf2","full_name":"zendframework/zf2","owner":{"login":"zendframework","id":296074,"avatar_url":"https://avatars.githubusercontent.com/u/296074?v=3","gravatar_id":"","url":"https://api.github.com/users/zendframework","html_url":"https://github.com/zendframework","followers_url":"https://api.github.com/users/zendframework/followers","following_url":"https://api.github.com/users/zendframework/following{/other_user}","gists_url":"https://api.github.com/users/zendframework/gists{/gist_id}","starred_url":"https://api.github.com/users/zendframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zendframework/subscriptions","organizations_url":"https://api.github.com/users/zendframework/orgs","repos_url":"https://api.github.com/users/zendframework/repos","events_url":"https://api.github.com/users/zendframework/events{/privacy}","received_events_url":"https://api.github.com/users/zendframework/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/zendframework/zf2","description":"Official Zend Framework 2 git repository","fork":false,"url":"https://api.github.com/repos/zendframework/zf2","forks_url":"https://api.github.com/repos/zendframework/zf2/forks","keys_url":"https://api.github.com/repos/zendframework/zf2/keys{/key_id}","collaborators_url":"https://api.github.com/repos/zendframework/zf2/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/zendframework/zf2/teams","hooks_url":"https://api.github.com/repos/zendframework/zf2/hooks","issue_events_url":"https://api.github.com/repos/zendframework/zf2/issues/events{/number}","events_url":"https://api.github.com/repos/zendframework/zf2/events","assignees_url":"https://api.github.com/repos/zendframework/zf2/assignees{/user}","branches_url":"https://api.github.com/repos/zendframework/zf2/branches{/branch}","tags_url":"https://api.github.com/repos/zendframework/zf2/tags","blobs_url":"https://api.github.com/repos/zendframework/zf2/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/zendframework/zf2/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/zendframework/zf2/git/refs{/sha}","trees_url":"https://api.github.com/repos/zendframework/zf2/git/trees{/sha}","statuses_url":"https://api.github.com/repos/zendframework/zf2/statuses/{sha}","languages_url":"https://api.github.com/repos/zendframework/zf2/languages","stargazers_url":"https://api.github.com/repos/zendframework/zf2/stargazers","contributors_url":"https://api.github.com/repos/zendframework/zf2/contributors","subscribers_url":"https://api.github.com/repos/zendframework/zf2/subscribers","subscription_url":"https://api.github.com/repos/zendframework/zf2/subscription","commits_url":"https://api.github.com/repos/zendframework/zf2/commits{/sha}","git_commits_url":"https://api.github.com/repos/zendframework/zf2/git/commits{/sha}","comments_url":"https://api.github.com/repos/zendframework/zf2/comments{/number}","issue_comment_url":"https://api.github.com/repos/zendframework/zf2/issues/comments/{number}","contents_url":"https://api.github.com/repos/zendframework/zf2/contents/{+path}","compare_url":"https://api.github.com/repos/zendframework/zf2/compare/{base}...{head}","merges_url":"https://api.github.com/repos/zendframework/zf2/merges","archive_url":"https://api.github.com/repos/zendframework/zf2/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/zendframework/zf2/downloads","issues_url":"https://api.github.com/repos/zendframework/zf2/issues{/number}","pulls_url":"https://api.github.com/repos/zendframework/zf2/pulls{/number}","milestones_url":"https://api.github.com/repos/zendframework/zf2/milestones{/number}","notifications_url":"https://api.github.com/repos/zendframework/zf2/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/zendframework/zf2/labels{/name}","releases_url":"https://api.github.com/repos/zendframework/zf2/releases{/id}","created_at":"2010-06-04T02:42:05Z","updated_at":"2014-12-31T13:29:16Z","pushed_at":"2014-12-31T10:44:38Z","git_url":"git://github.com/zendframework/zf2.git","ssh_url":"git@github.com:zendframework/zf2.git","clone_url":"https://github.com/zendframework/zf2.git","svn_url":"https://github.com/zendframework/zf2","homepage":"http://framework.zend.com/","size":217086,"stargazers_count":4972,"watchers_count":4972,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":3016,"mirror_url":null,"open_issues_count":601,"forks":3016,"open_issues":601,"watchers":4972,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6962"},"html":{"href":"https://github.com/zendframework/zf2/pull/6962"},"issue":{"href":"https://api.github.com/repos/zendframework/zf2/issues/6962"},"comments":{"href":"https://api.github.com/repos/zendframework/zf2/issues/6962/comments"},"review_comments":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6962/comments"},"review_comment":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6962/commits"},"statuses":{"href":"https://api.github.com/repos/zendframework/zf2/statuses/58ef5245151d935d9031d42a504cfab37297af9e"}}}},"public":true,"created_at":"2015-01-01T15:07:00Z","org":{"id":296074,"login":"zendframework","gravatar_id":"","url":"https://api.github.com/orgs/zendframework","avatar_url":"https://avatars.githubusercontent.com/u/296074?"}} +,{"id":"2489654284","type":"PushEvent","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":{"push_id":536865457,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"149142b4c0a11a61ae8b4b83210757ccf4e7b593","before":"b7d3db98b193399b4e68ee5e3ece9a3afece919c","commits":[{"sha":"149142b4c0a11a61ae8b4b83210757ccf4e7b593","author":{"email":"1a73af9e7ae00182733b2292511b814be66f065f@emersion.fr","name":"Emersion"},"message":"Now using sudo library instead of gksu","distinct":true,"url":"https://api.github.com/repos/emersion/bups/commits/149142b4c0a11a61ae8b4b83210757ccf4e7b593"}]},"public":true,"created_at":"2015-01-01T15:07:01Z"} +,{"id":"2489654286","type":"IssueCommentEvent","actor":{"id":359377,"login":"roland-d","gravatar_id":"","url":"https://api.github.com/users/roland-d","avatar_url":"https://avatars.githubusercontent.com/u/359377?"},"repo":{"id":2464908,"name":"joomla/joomla-cms","url":"https://api.github.com/repos/joomla/joomla-cms"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/joomla/joomla-cms/issues/5577","labels_url":"https://api.github.com/repos/joomla/joomla-cms/issues/5577/labels{/name}","comments_url":"https://api.github.com/repos/joomla/joomla-cms/issues/5577/comments","events_url":"https://api.github.com/repos/joomla/joomla-cms/issues/5577/events","html_url":"https://github.com/joomla/joomla-cms/pull/5577","id":53196155,"number":5577,"title":"Use 0 for ftp_enable as in com_config","user":{"login":"wilsonge","id":1986000,"avatar_url":"https://avatars.githubusercontent.com/u/1986000?v=3","gravatar_id":"","url":"https://api.github.com/users/wilsonge","html_url":"https://github.com/wilsonge","followers_url":"https://api.github.com/users/wilsonge/followers","following_url":"https://api.github.com/users/wilsonge/following{/other_user}","gists_url":"https://api.github.com/users/wilsonge/gists{/gist_id}","starred_url":"https://api.github.com/users/wilsonge/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wilsonge/subscriptions","organizations_url":"https://api.github.com/users/wilsonge/orgs","repos_url":"https://api.github.com/users/wilsonge/repos","events_url":"https://api.github.com/users/wilsonge/events{/privacy}","received_events_url":"https://api.github.com/users/wilsonge/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/joomla/joomla-cms/labels/PR-staging","name":"PR-staging","color":"c7def8"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-12-31T18:15:03Z","updated_at":"2015-01-01T15:07:01Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/joomla/joomla-cms/pulls/5577","html_url":"https://github.com/joomla/joomla-cms/pull/5577","diff_url":"https://github.com/joomla/joomla-cms/pull/5577.diff","patch_url":"https://github.com/joomla/joomla-cms/pull/5577.patch"},"body":"Spin off from the discussion at https://groups.google.com/forum/#!topic/joomla-dev-cms/VfAtj4YOiYs\r\n\r\nIf you save the global config then you find this has a value of ```0``` whereas in installation it's an empty string. This standardises it to be an ```0```"},"comment":{"url":"https://api.github.com/repos/joomla/joomla-cms/issues/comments/68488618","html_url":"https://github.com/joomla/joomla-cms/pull/5577#issuecomment-68488618","issue_url":"https://api.github.com/repos/joomla/joomla-cms/issues/5577","id":68488618,"user":{"login":"roland-d","id":359377,"avatar_url":"https://avatars.githubusercontent.com/u/359377?v=3","gravatar_id":"","url":"https://api.github.com/users/roland-d","html_url":"https://github.com/roland-d","followers_url":"https://api.github.com/users/roland-d/followers","following_url":"https://api.github.com/users/roland-d/following{/other_user}","gists_url":"https://api.github.com/users/roland-d/gists{/gist_id}","starred_url":"https://api.github.com/users/roland-d/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/roland-d/subscriptions","organizations_url":"https://api.github.com/users/roland-d/orgs","repos_url":"https://api.github.com/users/roland-d/repos","events_url":"https://api.github.com/users/roland-d/events{/privacy}","received_events_url":"https://api.github.com/users/roland-d/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:07:01Z","updated_at":"2015-01-01T15:07:01Z","body":"@test: Code looks good to me as well.\r\n\r\nMerging since we have 2 successful tests."}},"public":true,"created_at":"2015-01-01T15:07:02Z","org":{"id":751633,"login":"joomla","gravatar_id":"","url":"https://api.github.com/orgs/joomla","avatar_url":"https://avatars.githubusercontent.com/u/751633?"}} +,{"id":"2489654288","type":"PushEvent","actor":{"id":1543321,"login":"lenguyenthedat","gravatar_id":"","url":"https://api.github.com/users/lenguyenthedat","avatar_url":"https://avatars.githubusercontent.com/u/1543321?"},"repo":{"id":28439754,"name":"lenguyenthedat/kaggle-for-fun","url":"https://api.github.com/repos/lenguyenthedat/kaggle-for-fun"},"payload":{"push_id":536865459,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5bd7d7f20bde6cb035bbd67c9adef2dfe606cc02","before":"44a8b7fb02035b496636a5a443aab56582e6c0cd","commits":[{"sha":"5bd7d7f20bde6cb035bbd67c9adef2dfe606cc02","author":{"email":"8f3247e21ea52eacdd6698907179e86490dfbef6@zalora.com","name":"Dat Le"},"message":"eta0 too high for SGD.","distinct":true,"url":"https://api.github.com/repos/lenguyenthedat/kaggle-for-fun/commits/5bd7d7f20bde6cb035bbd67c9adef2dfe606cc02"}]},"public":true,"created_at":"2015-01-01T15:07:02Z"} +,{"id":"2489654289","type":"PushEvent","actor":{"id":613429,"login":"hgdeoro","gravatar_id":"","url":"https://api.github.com/users/hgdeoro","avatar_url":"https://avatars.githubusercontent.com/u/613429?"},"repo":{"id":28618894,"name":"data-tsunami/django-mercadopago","url":"https://api.github.com/repos/data-tsunami/django-mercadopago"},"payload":{"push_id":536865460,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"58951d0004187d7d7193c6feef12c804f2ac8160","before":"c052e1ba013c605de9b6baf500352e3ba5c8a980","commits":[{"sha":"58951d0004187d7d7193c6feef12c804f2ac8160","author":{"email":"1860f25020fd1aeb914f1885b2651e32d5929e6b@gmail.com","name":"Horacio G. de Oro"},"message":"FIX: use real dict instead of object","distinct":true,"url":"https://api.github.com/repos/data-tsunami/django-mercadopago/commits/58951d0004187d7d7193c6feef12c804f2ac8160"}]},"public":true,"created_at":"2015-01-01T15:07:02Z","org":{"id":5349679,"login":"data-tsunami","gravatar_id":"","url":"https://api.github.com/orgs/data-tsunami","avatar_url":"https://avatars.githubusercontent.com/u/5349679?"}} +,{"id":"2489654296","type":"IssueCommentEvent","actor":{"id":2352329,"login":"ohh2ahh","gravatar_id":"","url":"https://api.github.com/users/ohh2ahh","avatar_url":"https://avatars.githubusercontent.com/u/2352329?"},"repo":{"id":13155183,"name":"EddyVerbruggen/Custom-URL-scheme","url":"https://api.github.com/repos/EddyVerbruggen/Custom-URL-scheme"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/EddyVerbruggen/Custom-URL-scheme/issues/56","labels_url":"https://api.github.com/repos/EddyVerbruggen/Custom-URL-scheme/issues/56/labels{/name}","comments_url":"https://api.github.com/repos/EddyVerbruggen/Custom-URL-scheme/issues/56/comments","events_url":"https://api.github.com/repos/EddyVerbruggen/Custom-URL-scheme/issues/56/events","html_url":"https://github.com/EddyVerbruggen/Custom-URL-scheme/issues/56","id":51127683,"number":56,"title":"handleOpenURL is not called if app was closed","user":{"login":"dmitriyles","id":1061737,"avatar_url":"https://avatars.githubusercontent.com/u/1061737?v=3","gravatar_id":"","url":"https://api.github.com/users/dmitriyles","html_url":"https://github.com/dmitriyles","followers_url":"https://api.github.com/users/dmitriyles/followers","following_url":"https://api.github.com/users/dmitriyles/following{/other_user}","gists_url":"https://api.github.com/users/dmitriyles/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitriyles/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitriyles/subscriptions","organizations_url":"https://api.github.com/users/dmitriyles/orgs","repos_url":"https://api.github.com/users/dmitriyles/repos","events_url":"https://api.github.com/users/dmitriyles/events{/privacy}","received_events_url":"https://api.github.com/users/dmitriyles/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":5,"created_at":"2014-12-05T17:59:21Z","updated_at":"2015-01-01T15:07:03Z","closed_at":null,"body":"I'm trying to launch my app with link on Facebook feed. If my app was opened at that time and just staying in background (`deviceready` already happened), everything is OK, `handleOpenURL` works. But if my app was closed, I get nothing. Java is trying to call `handleOpenURL`, which does not exist in that moment because my first page is not loaded. It could happen because I use splash-screen. Could you call `handleOpenURL` only after `deviceready` event?"},"comment":{"url":"https://api.github.com/repos/EddyVerbruggen/Custom-URL-scheme/issues/comments/68488620","html_url":"https://github.com/EddyVerbruggen/Custom-URL-scheme/issues/56#issuecomment-68488620","issue_url":"https://api.github.com/repos/EddyVerbruggen/Custom-URL-scheme/issues/56","id":68488620,"user":{"login":"ohh2ahh","id":2352329,"avatar_url":"https://avatars.githubusercontent.com/u/2352329?v=3","gravatar_id":"","url":"https://api.github.com/users/ohh2ahh","html_url":"https://github.com/ohh2ahh","followers_url":"https://api.github.com/users/ohh2ahh/followers","following_url":"https://api.github.com/users/ohh2ahh/following{/other_user}","gists_url":"https://api.github.com/users/ohh2ahh/gists{/gist_id}","starred_url":"https://api.github.com/users/ohh2ahh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ohh2ahh/subscriptions","organizations_url":"https://api.github.com/users/ohh2ahh/orgs","repos_url":"https://api.github.com/users/ohh2ahh/repos","events_url":"https://api.github.com/users/ohh2ahh/events{/privacy}","received_events_url":"https://api.github.com/users/ohh2ahh/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:07:03Z","updated_at":"2015-01-01T15:07:03Z","body":"@EddyVerbruggen Here's a Cordova project incl. the Xcode project (url scheme is myapp://) with the issue. Thanks for your effort!\r\n\r\nhttps://dl.dropboxusercontent.com/u/10047417/Web/custom-url-scheme-issue-56.zip"}},"public":true,"created_at":"2015-01-01T15:07:03Z"} +,{"id":"2489654299","type":"PushEvent","actor":{"id":6245934,"login":"centipair","gravatar_id":"","url":"https://api.github.com/users/centipair","avatar_url":"https://avatars.githubusercontent.com/u/6245934?"},"repo":{"id":28340774,"name":"centipair/store","url":"https://api.github.com/repos/centipair/store"},"payload":{"push_id":536865463,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"80784c752e9af3a14de385cfef17bb482ba131af","before":"17f75e6525d00aea576d460f6e93539a79fe95d9","commits":[{"sha":"80784c752e9af3a14de385cfef17bb482ba131af","author":{"email":"09a6bb2bf75c0f15ae91f26fa86a0a9a2c3ed06a@gmail.com","name":"Devasia Joseph"},"message":"Added api for settings","distinct":true,"url":"https://api.github.com/repos/centipair/store/commits/80784c752e9af3a14de385cfef17bb482ba131af"}]},"public":true,"created_at":"2015-01-01T15:07:04Z"} +,{"id":"2489654300","type":"CreateEvent","actor":{"id":1758366,"login":"mzgol","gravatar_id":"","url":"https://api.github.com/users/mzgol","avatar_url":"https://avatars.githubusercontent.com/u/1758366?"},"repo":{"id":28574597,"name":"mzgol/npm-bump","url":"https://api.github.com/repos/mzgol/npm-bump"},"payload":{"ref":"0.0.9","ref_type":"tag","master_branch":"master","description":"A better `npm version major|minor|patch`","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:07:04Z"} +,{"id":"2489654301","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":536865464,"size":2,"distinct_size":0,"ref":"refs/heads/master","head":"2cc65211dc2c6dcd7a383120d758cb64650ff404","before":"1b58dd4c4e14ea9cf5212b981774bd448a266c3c","commits":[{"sha":"9abf9375103bfcc66167e15a96e939d8232667a8","author":{"email":"2bb20d8a71fb7adbc1d6239cc9ff4130f26819dc@gmail.com","name":"Herman"},"message":"Push br_herman","distinct":false,"url":"https://api.github.com/repos/hermanwahyudi/selenium/commits/9abf9375103bfcc66167e15a96e939d8232667a8"},{"sha":"2cc65211dc2c6dcd7a383120d758cb64650ff404","author":{"email":"2bb20d8a71fb7adbc1d6239cc9ff4130f26819dc@gmail.com","name":"Herman"},"message":"Coba-coba","distinct":false,"url":"https://api.github.com/repos/hermanwahyudi/selenium/commits/2cc65211dc2c6dcd7a383120d758cb64650ff404"}]},"public":true,"created_at":"2015-01-01T15:07:04Z"} +,{"id":"2489654303","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":536865466,"size":1,"distinct_size":1,"ref":"refs/heads/lollipop","head":"2dc988d0c7e1ebf92bf9701248c4d1796cca826f","before":"60082a637f0e7b4e9a7e1b105109b258b0b2a52b","commits":[{"sha":"2dc988d0c7e1ebf92bf9701248c4d1796cca826f","author":{"email":"7f5bb03cf507c861269be561971108be8f37d832@chemlab.org","name":"Steve Kondik"},"message":"perf: Per-app performance profiles\n\n * Performance Profiles is going to grow into a much more powerful\n feature which can apply advanced optimizations or power saving\n techniques depending on both the state of the hardware as well\n as the current applications in use.\n * Refactor the original code and move it into PowerManager so\n that it's managed from the same place.\n * Implement \"automatic performance profiles\". This feature will\n automatically select a profile when specific activities are\n running. Currently this list is static and engages performance\n mode for several benchmarks (trollface).\n * Added support for a new power hint, POWER_HINT_SET_PROFILE.\n Currently, these profiles are fired using a property trigger\n in init. This is easy, but the PowerHAL can do more.\n * Moved the setting to Settings.Secure and also wrapped calls\n to the service in the DEVICE_POWER permission. Nobody should\n mess with this stuff except the system.\n * Powersave profile will automatically activate Android's built-in\n low power mode.\n * Original patch by Jorge Ruesga\n\nTODO:\n * Implement API for per-app configuration by user\n * Quicksettings tile\n\nChange-Id: I140ebc0648c4cf05900e005923247c3180be8c93\n\nConflicts:\n\tcore/res/res/values/cm_arrays.xml\n\tcore/res/res/values/cm_strings.xml\n\tcore/res/res/values/config.xml\n\tcore/res/res/values/symbols.xml\n\tservices/core/java/com/android/server/am/ActivityStackSupervisor.java\n\tservices/core/java/com/android/server/power/PowerManagerService.java","distinct":true,"url":"https://api.github.com/repos/CRXTeam/android_frameworks_base/commits/2dc988d0c7e1ebf92bf9701248c4d1796cca826f"}]},"public":true,"created_at":"2015-01-01T15:07:04Z","org":{"id":6718659,"login":"CRXTeam","gravatar_id":"","url":"https://api.github.com/orgs/CRXTeam","avatar_url":"https://avatars.githubusercontent.com/u/6718659?"}} +,{"id":"2489654307","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":13261905,"name":"yiisoft/yii2-jui","url":"https://api.github.com/repos/yiisoft/yii2-jui"},"payload":{"push_id":536865467,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f93aa7eecd4705afc6aa59ba3dc3ddbf11e5efdc","before":"ce0f939a7c8745ebf8c995b6adf88d49976f77c8","commits":[{"sha":"f93aa7eecd4705afc6aa59ba3dc3ddbf11e5efdc","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-jui/commits/f93aa7eecd4705afc6aa59ba3dc3ddbf11e5efdc"}]},"public":true,"created_at":"2015-01-01T15:07:04Z","org":{"id":993323,"login":"yiisoft","gravatar_id":"","url":"https://api.github.com/orgs/yiisoft","avatar_url":"https://avatars.githubusercontent.com/u/993323?"}} +,{"id":"2489654308","type":"PullRequestEvent","actor":{"id":3321281,"login":"mmattel","gravatar_id":"","url":"https://api.github.com/users/mmattel","avatar_url":"https://avatars.githubusercontent.com/u/3321281?"},"repo":{"id":6405172,"name":"owncloud/documentation","url":"https://api.github.com/repos/owncloud/documentation"},"payload":{"action":"opened","number":733,"pull_request":{"url":"https://api.github.com/repos/owncloud/documentation/pulls/733","id":26743824,"html_url":"https://github.com/owncloud/documentation/pull/733","diff_url":"https://github.com/owncloud/documentation/pull/733.diff","patch_url":"https://github.com/owncloud/documentation/pull/733.patch","issue_url":"https://api.github.com/repos/owncloud/documentation/issues/733","number":733,"state":"open","locked":false,"title":"add double backticks to $user in config/smb to have the same look as in ...","user":{"login":"mmattel","id":3321281,"avatar_url":"https://avatars.githubusercontent.com/u/3321281?v=3","gravatar_id":"","url":"https://api.github.com/users/mmattel","html_url":"https://github.com/mmattel","followers_url":"https://api.github.com/users/mmattel/followers","following_url":"https://api.github.com/users/mmattel/following{/other_user}","gists_url":"https://api.github.com/users/mmattel/gists{/gist_id}","starred_url":"https://api.github.com/users/mmattel/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mmattel/subscriptions","organizations_url":"https://api.github.com/users/mmattel/orgs","repos_url":"https://api.github.com/users/mmattel/repos","events_url":"https://api.github.com/users/mmattel/events{/privacy}","received_events_url":"https://api.github.com/users/mmattel/received_events","type":"User","site_admin":false},"body":"...stable7\r\n\r\nthis references to #711 where for stable7 in section smb at the term $user double backticks have been used but not for master.\r\nThis PR fixes this.\r\n@carlaschroder please review and merge","created_at":"2015-01-01T15:07:04Z","updated_at":"2015-01-01T15:07:04Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/owncloud/documentation/pulls/733/commits","review_comments_url":"https://api.github.com/repos/owncloud/documentation/pulls/733/comments","review_comment_url":"https://api.github.com/repos/owncloud/documentation/pulls/comments/{number}","comments_url":"https://api.github.com/repos/owncloud/documentation/issues/733/comments","statuses_url":"https://api.github.com/repos/owncloud/documentation/statuses/dc43d4fe85828394858fc435823d7ed4daae3325","head":{"label":"mmattel:add_double_backticks_to_$user","ref":"add_double_backticks_to_$user","sha":"dc43d4fe85828394858fc435823d7ed4daae3325","user":{"login":"mmattel","id":3321281,"avatar_url":"https://avatars.githubusercontent.com/u/3321281?v=3","gravatar_id":"","url":"https://api.github.com/users/mmattel","html_url":"https://github.com/mmattel","followers_url":"https://api.github.com/users/mmattel/followers","following_url":"https://api.github.com/users/mmattel/following{/other_user}","gists_url":"https://api.github.com/users/mmattel/gists{/gist_id}","starred_url":"https://api.github.com/users/mmattel/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mmattel/subscriptions","organizations_url":"https://api.github.com/users/mmattel/orgs","repos_url":"https://api.github.com/users/mmattel/repos","events_url":"https://api.github.com/users/mmattel/events{/privacy}","received_events_url":"https://api.github.com/users/mmattel/received_events","type":"User","site_admin":false},"repo":{"id":27933146,"name":"documentation","full_name":"mmattel/documentation","owner":{"login":"mmattel","id":3321281,"avatar_url":"https://avatars.githubusercontent.com/u/3321281?v=3","gravatar_id":"","url":"https://api.github.com/users/mmattel","html_url":"https://github.com/mmattel","followers_url":"https://api.github.com/users/mmattel/followers","following_url":"https://api.github.com/users/mmattel/following{/other_user}","gists_url":"https://api.github.com/users/mmattel/gists{/gist_id}","starred_url":"https://api.github.com/users/mmattel/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mmattel/subscriptions","organizations_url":"https://api.github.com/users/mmattel/orgs","repos_url":"https://api.github.com/users/mmattel/repos","events_url":"https://api.github.com/users/mmattel/events{/privacy}","received_events_url":"https://api.github.com/users/mmattel/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mmattel/documentation","description":"Documentation and manual","fork":true,"url":"https://api.github.com/repos/mmattel/documentation","forks_url":"https://api.github.com/repos/mmattel/documentation/forks","keys_url":"https://api.github.com/repos/mmattel/documentation/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mmattel/documentation/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mmattel/documentation/teams","hooks_url":"https://api.github.com/repos/mmattel/documentation/hooks","issue_events_url":"https://api.github.com/repos/mmattel/documentation/issues/events{/number}","events_url":"https://api.github.com/repos/mmattel/documentation/events","assignees_url":"https://api.github.com/repos/mmattel/documentation/assignees{/user}","branches_url":"https://api.github.com/repos/mmattel/documentation/branches{/branch}","tags_url":"https://api.github.com/repos/mmattel/documentation/tags","blobs_url":"https://api.github.com/repos/mmattel/documentation/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mmattel/documentation/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mmattel/documentation/git/refs{/sha}","trees_url":"https://api.github.com/repos/mmattel/documentation/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mmattel/documentation/statuses/{sha}","languages_url":"https://api.github.com/repos/mmattel/documentation/languages","stargazers_url":"https://api.github.com/repos/mmattel/documentation/stargazers","contributors_url":"https://api.github.com/repos/mmattel/documentation/contributors","subscribers_url":"https://api.github.com/repos/mmattel/documentation/subscribers","subscription_url":"https://api.github.com/repos/mmattel/documentation/subscription","commits_url":"https://api.github.com/repos/mmattel/documentation/commits{/sha}","git_commits_url":"https://api.github.com/repos/mmattel/documentation/git/commits{/sha}","comments_url":"https://api.github.com/repos/mmattel/documentation/comments{/number}","issue_comment_url":"https://api.github.com/repos/mmattel/documentation/issues/comments/{number}","contents_url":"https://api.github.com/repos/mmattel/documentation/contents/{+path}","compare_url":"https://api.github.com/repos/mmattel/documentation/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mmattel/documentation/merges","archive_url":"https://api.github.com/repos/mmattel/documentation/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mmattel/documentation/downloads","issues_url":"https://api.github.com/repos/mmattel/documentation/issues{/number}","pulls_url":"https://api.github.com/repos/mmattel/documentation/pulls{/number}","milestones_url":"https://api.github.com/repos/mmattel/documentation/milestones{/number}","notifications_url":"https://api.github.com/repos/mmattel/documentation/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mmattel/documentation/labels{/name}","releases_url":"https://api.github.com/repos/mmattel/documentation/releases{/id}","created_at":"2014-12-12T18:39:52Z","updated_at":"2015-01-01T14:41:09Z","pushed_at":"2015-01-01T15:02:11Z","git_url":"git://github.com/mmattel/documentation.git","ssh_url":"git@github.com:mmattel/documentation.git","clone_url":"https://github.com/mmattel/documentation.git","svn_url":"https://github.com/mmattel/documentation","homepage":null,"size":23681,"stargazers_count":0,"watchers_count":0,"language":"CSS","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":"owncloud:master","ref":"master","sha":"926a54b15865cbe3af524d4f50abde92c214d638","user":{"login":"owncloud","id":1645051,"avatar_url":"https://avatars.githubusercontent.com/u/1645051?v=3","gravatar_id":"","url":"https://api.github.com/users/owncloud","html_url":"https://github.com/owncloud","followers_url":"https://api.github.com/users/owncloud/followers","following_url":"https://api.github.com/users/owncloud/following{/other_user}","gists_url":"https://api.github.com/users/owncloud/gists{/gist_id}","starred_url":"https://api.github.com/users/owncloud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/owncloud/subscriptions","organizations_url":"https://api.github.com/users/owncloud/orgs","repos_url":"https://api.github.com/users/owncloud/repos","events_url":"https://api.github.com/users/owncloud/events{/privacy}","received_events_url":"https://api.github.com/users/owncloud/received_events","type":"Organization","site_admin":false},"repo":{"id":6405172,"name":"documentation","full_name":"owncloud/documentation","owner":{"login":"owncloud","id":1645051,"avatar_url":"https://avatars.githubusercontent.com/u/1645051?v=3","gravatar_id":"","url":"https://api.github.com/users/owncloud","html_url":"https://github.com/owncloud","followers_url":"https://api.github.com/users/owncloud/followers","following_url":"https://api.github.com/users/owncloud/following{/other_user}","gists_url":"https://api.github.com/users/owncloud/gists{/gist_id}","starred_url":"https://api.github.com/users/owncloud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/owncloud/subscriptions","organizations_url":"https://api.github.com/users/owncloud/orgs","repos_url":"https://api.github.com/users/owncloud/repos","events_url":"https://api.github.com/users/owncloud/events{/privacy}","received_events_url":"https://api.github.com/users/owncloud/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/owncloud/documentation","description":"Documentation and manual","fork":false,"url":"https://api.github.com/repos/owncloud/documentation","forks_url":"https://api.github.com/repos/owncloud/documentation/forks","keys_url":"https://api.github.com/repos/owncloud/documentation/keys{/key_id}","collaborators_url":"https://api.github.com/repos/owncloud/documentation/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/owncloud/documentation/teams","hooks_url":"https://api.github.com/repos/owncloud/documentation/hooks","issue_events_url":"https://api.github.com/repos/owncloud/documentation/issues/events{/number}","events_url":"https://api.github.com/repos/owncloud/documentation/events","assignees_url":"https://api.github.com/repos/owncloud/documentation/assignees{/user}","branches_url":"https://api.github.com/repos/owncloud/documentation/branches{/branch}","tags_url":"https://api.github.com/repos/owncloud/documentation/tags","blobs_url":"https://api.github.com/repos/owncloud/documentation/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/owncloud/documentation/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/owncloud/documentation/git/refs{/sha}","trees_url":"https://api.github.com/repos/owncloud/documentation/git/trees{/sha}","statuses_url":"https://api.github.com/repos/owncloud/documentation/statuses/{sha}","languages_url":"https://api.github.com/repos/owncloud/documentation/languages","stargazers_url":"https://api.github.com/repos/owncloud/documentation/stargazers","contributors_url":"https://api.github.com/repos/owncloud/documentation/contributors","subscribers_url":"https://api.github.com/repos/owncloud/documentation/subscribers","subscription_url":"https://api.github.com/repos/owncloud/documentation/subscription","commits_url":"https://api.github.com/repos/owncloud/documentation/commits{/sha}","git_commits_url":"https://api.github.com/repos/owncloud/documentation/git/commits{/sha}","comments_url":"https://api.github.com/repos/owncloud/documentation/comments{/number}","issue_comment_url":"https://api.github.com/repos/owncloud/documentation/issues/comments/{number}","contents_url":"https://api.github.com/repos/owncloud/documentation/contents/{+path}","compare_url":"https://api.github.com/repos/owncloud/documentation/compare/{base}...{head}","merges_url":"https://api.github.com/repos/owncloud/documentation/merges","archive_url":"https://api.github.com/repos/owncloud/documentation/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/owncloud/documentation/downloads","issues_url":"https://api.github.com/repos/owncloud/documentation/issues{/number}","pulls_url":"https://api.github.com/repos/owncloud/documentation/pulls{/number}","milestones_url":"https://api.github.com/repos/owncloud/documentation/milestones{/number}","notifications_url":"https://api.github.com/repos/owncloud/documentation/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/owncloud/documentation/labels{/name}","releases_url":"https://api.github.com/repos/owncloud/documentation/releases{/id}","created_at":"2012-10-26T14:36:00Z","updated_at":"2014-12-31T21:26:10Z","pushed_at":"2014-12-31T21:26:09Z","git_url":"git://github.com/owncloud/documentation.git","ssh_url":"git@github.com:owncloud/documentation.git","clone_url":"https://github.com/owncloud/documentation.git","svn_url":"https://github.com/owncloud/documentation","homepage":null,"size":30616,"stargazers_count":70,"watchers_count":70,"language":"CSS","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":127,"mirror_url":null,"open_issues_count":108,"forks":127,"open_issues":108,"watchers":70,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/owncloud/documentation/pulls/733"},"html":{"href":"https://github.com/owncloud/documentation/pull/733"},"issue":{"href":"https://api.github.com/repos/owncloud/documentation/issues/733"},"comments":{"href":"https://api.github.com/repos/owncloud/documentation/issues/733/comments"},"review_comments":{"href":"https://api.github.com/repos/owncloud/documentation/pulls/733/comments"},"review_comment":{"href":"https://api.github.com/repos/owncloud/documentation/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/owncloud/documentation/pulls/733/commits"},"statuses":{"href":"https://api.github.com/repos/owncloud/documentation/statuses/dc43d4fe85828394858fc435823d7ed4daae3325"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":2,"deletions":2,"changed_files":2}},"public":true,"created_at":"2015-01-01T15:07:04Z","org":{"id":1645051,"login":"owncloud","gravatar_id":"","url":"https://api.github.com/orgs/owncloud","avatar_url":"https://avatars.githubusercontent.com/u/1645051?"}} +,{"id":"2489654309","type":"PushEvent","actor":{"id":2456212,"login":"svineet","gravatar_id":"","url":"https://api.github.com/users/svineet","avatar_url":"https://avatars.githubusercontent.com/u/2456212?"},"repo":{"id":28031608,"name":"svineet/eden","url":"https://api.github.com/repos/svineet/eden"},"payload":{"push_id":536865468,"size":1,"distinct_size":1,"ref":"refs/heads/svineet_staging","head":"378aba2018546b850815cee276266773d26c4c92","before":"41752d4f6beca5887c2ccf1972019d3eef04585c","commits":[{"sha":"378aba2018546b850815cee276266773d26c4c92","author":{"email":"c3af8d11c8b1b9b1bcc441103ac63caf9eaadeff@gmail.com","name":"Sai Vineet"},"message":"Make event_type link table","distinct":true,"url":"https://api.github.com/repos/svineet/eden/commits/378aba2018546b850815cee276266773d26c4c92"}]},"public":true,"created_at":"2015-01-01T15:07:05Z"} +,{"id":"2489654310","type":"IssueCommentEvent","actor":{"id":1808930,"login":"m13253","gravatar_id":"","url":"https://api.github.com/users/m13253","avatar_url":"https://avatars.githubusercontent.com/u/1808930?"},"repo":{"id":17420913,"name":"rust-lang/cargo","url":"https://api.github.com/repos/rust-lang/cargo"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/rust-lang/cargo/issues/1106","labels_url":"https://api.github.com/repos/rust-lang/cargo/issues/1106/labels{/name}","comments_url":"https://api.github.com/repos/rust-lang/cargo/issues/1106/comments","events_url":"https://api.github.com/repos/rust-lang/cargo/issues/1106/events","html_url":"https://github.com/rust-lang/cargo/issues/1106","id":53119235,"number":1106,"title":"Request not to suppress the output of build script","user":{"login":"m13253","id":1808930,"avatar_url":"https://avatars.githubusercontent.com/u/1808930?v=3","gravatar_id":"","url":"https://api.github.com/users/m13253","html_url":"https://github.com/m13253","followers_url":"https://api.github.com/users/m13253/followers","following_url":"https://api.github.com/users/m13253/following{/other_user}","gists_url":"https://api.github.com/users/m13253/gists{/gist_id}","starred_url":"https://api.github.com/users/m13253/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/m13253/subscriptions","organizations_url":"https://api.github.com/users/m13253/orgs","repos_url":"https://api.github.com/users/m13253/repos","events_url":"https://api.github.com/users/m13253/events{/privacy}","received_events_url":"https://api.github.com/users/m13253/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-12-30T14:35:17Z","updated_at":"2015-01-01T15:07:04Z","closed_at":null,"body":"Sometimes the build script may fail, leaving some useful information (such as the output of GCC) in stdout or stderr.\r\nHowever, I found that Cargo is not displaying the output of my build script.\r\n\r\nI request a feature, that the stderr is displayed by default and stdout is displayed when `--verbose` is on.\r\n\r\nThanks."},"comment":{"url":"https://api.github.com/repos/rust-lang/cargo/issues/comments/68488621","html_url":"https://github.com/rust-lang/cargo/issues/1106#issuecomment-68488621","issue_url":"https://api.github.com/repos/rust-lang/cargo/issues/1106","id":68488621,"user":{"login":"m13253","id":1808930,"avatar_url":"https://avatars.githubusercontent.com/u/1808930?v=3","gravatar_id":"","url":"https://api.github.com/users/m13253","html_url":"https://github.com/m13253","followers_url":"https://api.github.com/users/m13253/followers","following_url":"https://api.github.com/users/m13253/following{/other_user}","gists_url":"https://api.github.com/users/m13253/gists{/gist_id}","starred_url":"https://api.github.com/users/m13253/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/m13253/subscriptions","organizations_url":"https://api.github.com/users/m13253/orgs","repos_url":"https://api.github.com/users/m13253/repos","events_url":"https://api.github.com/users/m13253/events{/privacy}","received_events_url":"https://api.github.com/users/m13253/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:07:04Z","updated_at":"2015-01-01T15:07:04Z","body":"## The exmple\r\n\r\nI have copied the `build.rs` from http://doc.crates.io/build-script.html#case-study:-building-some-native-code , as is listed below:\r\n\r\n```rust\r\n// build.rs\r\n\r\nuse std::io::Command;\r\nuse std::os;\r\n\r\nfn main() {\r\n let out_dir = os::getenv(\"OUT_DIR\").unwrap();\r\n\r\n // note that there are a number of downsides to this approach, the comments\r\n // below detail how to improve the portability of these commands.\r\n Command::new(\"gcc\").args(&[\"src/hello.c\", \"-c\", \"-o\"])\r\n .arg(format!(\"{}/hello.o\", out_dir))\r\n .status().unwrap();\r\n Command::new(\"ar\").args(&[\"crus\", \"libhello.a\", \"hello.o\"])\r\n .cwd(&Path::new(&out_dir))\r\n .status().unwrap();\r\n\r\n println!(\"cargo:rustc-flags=-L {} -l hello:static\", out_dir);\r\n}\r\n```\r\n\r\nNote that the script does not check the status code of GCC or AR.\r\n\r\n## The problem\r\n\r\nAnd it happened that the source does not compile. However Cargo printed out **NOTHING** helpful to diagnose this problem:\r\n\r\n```\r\n$ cargo build --verbose\r\n Compiling hello v0.0.1 (file:///tmp/hello)\r\n Running `rustc build.rs --crate-name build-script-build --crate-type bin -C prefer-dynamic -g --out-dir /tmp/hello/target/build/hello-77de99f14f3cb8ca --emit=dep-info,link -L /tmp/hello/target -L /tmp/hello/target/deps`\r\n Running `/tmp/hello/target/build/hello-77de99f14f3cb8ca/build-script-build`\r\n Running `rustc /tmp/hello/src/lib.rs --crate-name hello --crate-type lib -g -C metadata=77de99f14f3cb8ca -C extra-filename=-77de99f14f3cb8ca --out-dir /tmp/hello/target --emit=dep-info,link -L /tmp/hello/target -L /tmp/hello/target/deps -L /tmp/hello/target/build/hello-77de99f14f3cb8ca/out -l hello:static`\r\nerror: could not find native static library `hello`, perhaps an -L flag is missing?\r\nCould not compile `hello`.\r\n\r\nCaused by:\r\n Process didn't exit successfully: `rustc /tmp/hello/src/lib.rs --crate-name hello --crate-type lib -g -C metadata=77de99f14f3cb8ca -C extra-filename=-77de99f14f3cb8ca --out-dir /tmp/hello/target --emit=dep-info,link -L /tmp/hello/target -L /tmp/hello/target/deps -L /tmp/hello/target/build/hello-77de99f14f3cb8ca/out -l hello:static` (status=101)\r\n```\r\n\r\nI spent an extra hour figuring out where the problem is, having add some extra code to redirect the output of GCC to a log file.\r\n\r\nI admit that there is a bug in the build script that the status code should be checked. But anyway, there need to be a way to debug this, **or it will be a pain if this happens on a client's computer, causing a complaining mail.**\r\n\r\n## If the user says `--verbose`, do verbose.\r\n\r\nI know that printing a lot of garbage messes the terminal. So it is reasonable that the output of build script is suppressed.\r\n\r\nBut why continuing to suppress the output even if the user says `--verbose`?\r\n\r\nI have read in issue #985 that it may be too noisy with `--verbose`. That's `build.rs`'s stuff. `build.rs` should filter the output so only useful messages are shown, which is not Cargo's duty since Cargo no nothing about which message is useful.\r\n\r\n## Compilation takes time, user may want to see what is going on\r\n\r\nIn the documentation of Cargo, it explained that build scripts may find an extra library or build a library itself.\r\n\r\nOn the latter case, it may take time. It is better to tell the user why the compilation sticks at this point.\r\n\r\n## GCC warnings are really useful\r\n\r\nIf Cargo displays the output only when the build fails, the GCC warnings will be suppressed.\r\n\r\nJust like Rust lints, GCC warnings is usually useful to improve the security of the code.\r\n\r\n## My idea\r\n\r\n1. `stderr` is always on, and `stdout` is off unless `--verbose` is on\r\n\r\n2. Or alternatively, introduce verbosity level\r\n\r\n(P.S. I am really sorry that this post is so long and somewhat offensive)"}},"public":true,"created_at":"2015-01-01T15:07:05Z","org":{"id":5430905,"login":"rust-lang","gravatar_id":"","url":"https://api.github.com/orgs/rust-lang","avatar_url":"https://avatars.githubusercontent.com/u/5430905?"}} +,{"id":"2489654314","type":"PushEvent","actor":{"id":4319913,"login":"vanvught","gravatar_id":"","url":"https://api.github.com/users/vanvught","avatar_url":"https://avatars.githubusercontent.com/u/4319913?"},"repo":{"id":11056160,"name":"vanvught/OpenILDA","url":"https://api.github.com/repos/vanvught/OpenILDA"},"payload":{"push_id":536865471,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e3513338ad10b0fac39ab591308f231558e42e71","before":"59b0d6a26ce3ed70bb8897dac0f217c0a815cfc9","commits":[{"sha":"e3513338ad10b0fac39ab591308f231558e42e71","author":{"email":"dfa9b7f1d536e394c44db1b2fc16dbbb4b30f283@gmail.com","name":"Arjan"},"message":"Added all include files from project bob","distinct":true,"url":"https://api.github.com/repos/vanvught/OpenILDA/commits/e3513338ad10b0fac39ab591308f231558e42e71"}]},"public":true,"created_at":"2015-01-01T15:07:05Z"} +,{"id":"2489654316","type":"PushEvent","actor":{"id":5593699,"login":"limor-gs","gravatar_id":"","url":"https://api.github.com/users/limor-gs","avatar_url":"https://avatars.githubusercontent.com/u/5593699?"},"repo":{"id":24107628,"name":"cloudify-cosmo/version-tool","url":"https://api.github.com/repos/cloudify-cosmo/version-tool"},"payload":{"push_id":536865472,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4d662d382a24fa78ff797a8f33ad7f100ed35202","before":"4a728217fa7e7785d358d25584118fae47ef1389","commits":[{"sha":"4d662d382a24fa78ff797a8f33ad7f100ed35202","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"limor-gs"},"message":"Update release-config.yaml","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/version-tool/commits/4d662d382a24fa78ff797a8f33ad7f100ed35202"}]},"public":true,"created_at":"2015-01-01T15:07:06Z","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":"2489654318","type":"WatchEvent","actor":{"id":147228,"login":"lkraav","gravatar_id":"","url":"https://api.github.com/users/lkraav","avatar_url":"https://avatars.githubusercontent.com/u/147228?"},"repo":{"id":11527226,"name":"bueltge/wordpress-multisite-enhancements","url":"https://api.github.com/repos/bueltge/wordpress-multisite-enhancements"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:07:06Z"} +,{"id":"2489654319","type":"PullRequestEvent","actor":{"id":359377,"login":"roland-d","gravatar_id":"","url":"https://api.github.com/users/roland-d","avatar_url":"https://avatars.githubusercontent.com/u/359377?"},"repo":{"id":2464908,"name":"joomla/joomla-cms","url":"https://api.github.com/repos/joomla/joomla-cms"},"payload":{"action":"closed","number":5577,"pull_request":{"url":"https://api.github.com/repos/joomla/joomla-cms/pulls/5577","id":26731258,"html_url":"https://github.com/joomla/joomla-cms/pull/5577","diff_url":"https://github.com/joomla/joomla-cms/pull/5577.diff","patch_url":"https://github.com/joomla/joomla-cms/pull/5577.patch","issue_url":"https://api.github.com/repos/joomla/joomla-cms/issues/5577","number":5577,"state":"closed","locked":false,"title":"Use 0 for ftp_enable as in com_config","user":{"login":"wilsonge","id":1986000,"avatar_url":"https://avatars.githubusercontent.com/u/1986000?v=3","gravatar_id":"","url":"https://api.github.com/users/wilsonge","html_url":"https://github.com/wilsonge","followers_url":"https://api.github.com/users/wilsonge/followers","following_url":"https://api.github.com/users/wilsonge/following{/other_user}","gists_url":"https://api.github.com/users/wilsonge/gists{/gist_id}","starred_url":"https://api.github.com/users/wilsonge/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wilsonge/subscriptions","organizations_url":"https://api.github.com/users/wilsonge/orgs","repos_url":"https://api.github.com/users/wilsonge/repos","events_url":"https://api.github.com/users/wilsonge/events{/privacy}","received_events_url":"https://api.github.com/users/wilsonge/received_events","type":"User","site_admin":false},"body":"Spin off from the discussion at https://groups.google.com/forum/#!topic/joomla-dev-cms/VfAtj4YOiYs\r\n\r\nIf you save the global config then you find this has a value of ```0``` whereas in installation it's an empty string. This standardises it to be an ```0```","created_at":"2014-12-31T18:15:03Z","updated_at":"2015-01-01T15:07:06Z","closed_at":"2015-01-01T15:07:06Z","merged_at":"2015-01-01T15:07:06Z","merge_commit_sha":"6f44d1bcfb856c39aadd4a15e03d5408338befac","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/joomla/joomla-cms/pulls/5577/commits","review_comments_url":"https://api.github.com/repos/joomla/joomla-cms/pulls/5577/comments","review_comment_url":"https://api.github.com/repos/joomla/joomla-cms/pulls/comments/{number}","comments_url":"https://api.github.com/repos/joomla/joomla-cms/issues/5577/comments","statuses_url":"https://api.github.com/repos/joomla/joomla-cms/statuses/e4533b54e20dcf1c78bf356751420440c12c768d","head":{"label":"wilsonge:configconsistency","ref":"configconsistency","sha":"e4533b54e20dcf1c78bf356751420440c12c768d","user":{"login":"wilsonge","id":1986000,"avatar_url":"https://avatars.githubusercontent.com/u/1986000?v=3","gravatar_id":"","url":"https://api.github.com/users/wilsonge","html_url":"https://github.com/wilsonge","followers_url":"https://api.github.com/users/wilsonge/followers","following_url":"https://api.github.com/users/wilsonge/following{/other_user}","gists_url":"https://api.github.com/users/wilsonge/gists{/gist_id}","starred_url":"https://api.github.com/users/wilsonge/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wilsonge/subscriptions","organizations_url":"https://api.github.com/users/wilsonge/orgs","repos_url":"https://api.github.com/users/wilsonge/repos","events_url":"https://api.github.com/users/wilsonge/events{/privacy}","received_events_url":"https://api.github.com/users/wilsonge/received_events","type":"User","site_admin":false},"repo":{"id":9136608,"name":"joomla-cms","full_name":"wilsonge/joomla-cms","owner":{"login":"wilsonge","id":1986000,"avatar_url":"https://avatars.githubusercontent.com/u/1986000?v=3","gravatar_id":"","url":"https://api.github.com/users/wilsonge","html_url":"https://github.com/wilsonge","followers_url":"https://api.github.com/users/wilsonge/followers","following_url":"https://api.github.com/users/wilsonge/following{/other_user}","gists_url":"https://api.github.com/users/wilsonge/gists{/gist_id}","starred_url":"https://api.github.com/users/wilsonge/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wilsonge/subscriptions","organizations_url":"https://api.github.com/users/wilsonge/orgs","repos_url":"https://api.github.com/users/wilsonge/repos","events_url":"https://api.github.com/users/wilsonge/events{/privacy}","received_events_url":"https://api.github.com/users/wilsonge/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/wilsonge/joomla-cms","description":"Home of the Joomla! Content Management System","fork":true,"url":"https://api.github.com/repos/wilsonge/joomla-cms","forks_url":"https://api.github.com/repos/wilsonge/joomla-cms/forks","keys_url":"https://api.github.com/repos/wilsonge/joomla-cms/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wilsonge/joomla-cms/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wilsonge/joomla-cms/teams","hooks_url":"https://api.github.com/repos/wilsonge/joomla-cms/hooks","issue_events_url":"https://api.github.com/repos/wilsonge/joomla-cms/issues/events{/number}","events_url":"https://api.github.com/repos/wilsonge/joomla-cms/events","assignees_url":"https://api.github.com/repos/wilsonge/joomla-cms/assignees{/user}","branches_url":"https://api.github.com/repos/wilsonge/joomla-cms/branches{/branch}","tags_url":"https://api.github.com/repos/wilsonge/joomla-cms/tags","blobs_url":"https://api.github.com/repos/wilsonge/joomla-cms/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wilsonge/joomla-cms/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wilsonge/joomla-cms/git/refs{/sha}","trees_url":"https://api.github.com/repos/wilsonge/joomla-cms/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wilsonge/joomla-cms/statuses/{sha}","languages_url":"https://api.github.com/repos/wilsonge/joomla-cms/languages","stargazers_url":"https://api.github.com/repos/wilsonge/joomla-cms/stargazers","contributors_url":"https://api.github.com/repos/wilsonge/joomla-cms/contributors","subscribers_url":"https://api.github.com/repos/wilsonge/joomla-cms/subscribers","subscription_url":"https://api.github.com/repos/wilsonge/joomla-cms/subscription","commits_url":"https://api.github.com/repos/wilsonge/joomla-cms/commits{/sha}","git_commits_url":"https://api.github.com/repos/wilsonge/joomla-cms/git/commits{/sha}","comments_url":"https://api.github.com/repos/wilsonge/joomla-cms/comments{/number}","issue_comment_url":"https://api.github.com/repos/wilsonge/joomla-cms/issues/comments/{number}","contents_url":"https://api.github.com/repos/wilsonge/joomla-cms/contents/{+path}","compare_url":"https://api.github.com/repos/wilsonge/joomla-cms/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wilsonge/joomla-cms/merges","archive_url":"https://api.github.com/repos/wilsonge/joomla-cms/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wilsonge/joomla-cms/downloads","issues_url":"https://api.github.com/repos/wilsonge/joomla-cms/issues{/number}","pulls_url":"https://api.github.com/repos/wilsonge/joomla-cms/pulls{/number}","milestones_url":"https://api.github.com/repos/wilsonge/joomla-cms/milestones{/number}","notifications_url":"https://api.github.com/repos/wilsonge/joomla-cms/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wilsonge/joomla-cms/labels{/name}","releases_url":"https://api.github.com/repos/wilsonge/joomla-cms/releases{/id}","created_at":"2013-03-31T21:30:21Z","updated_at":"2014-12-31T01:49:10Z","pushed_at":"2014-12-31T19:10:34Z","git_url":"git://github.com/wilsonge/joomla-cms.git","ssh_url":"git@github.com:wilsonge/joomla-cms.git","clone_url":"https://github.com/wilsonge/joomla-cms.git","svn_url":"https://github.com/wilsonge/joomla-cms","homepage":"http://joomla.org","size":127990,"stargazers_count":1,"watchers_count":1,"language":"PHP","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":1,"default_branch":"staging"}},"base":{"label":"joomla:staging","ref":"staging","sha":"d165a8a6cc4163b00e16813ba5dbb0ae79bc8765","user":{"login":"joomla","id":751633,"avatar_url":"https://avatars.githubusercontent.com/u/751633?v=3","gravatar_id":"","url":"https://api.github.com/users/joomla","html_url":"https://github.com/joomla","followers_url":"https://api.github.com/users/joomla/followers","following_url":"https://api.github.com/users/joomla/following{/other_user}","gists_url":"https://api.github.com/users/joomla/gists{/gist_id}","starred_url":"https://api.github.com/users/joomla/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/joomla/subscriptions","organizations_url":"https://api.github.com/users/joomla/orgs","repos_url":"https://api.github.com/users/joomla/repos","events_url":"https://api.github.com/users/joomla/events{/privacy}","received_events_url":"https://api.github.com/users/joomla/received_events","type":"Organization","site_admin":false},"repo":{"id":2464908,"name":"joomla-cms","full_name":"joomla/joomla-cms","owner":{"login":"joomla","id":751633,"avatar_url":"https://avatars.githubusercontent.com/u/751633?v=3","gravatar_id":"","url":"https://api.github.com/users/joomla","html_url":"https://github.com/joomla","followers_url":"https://api.github.com/users/joomla/followers","following_url":"https://api.github.com/users/joomla/following{/other_user}","gists_url":"https://api.github.com/users/joomla/gists{/gist_id}","starred_url":"https://api.github.com/users/joomla/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/joomla/subscriptions","organizations_url":"https://api.github.com/users/joomla/orgs","repos_url":"https://api.github.com/users/joomla/repos","events_url":"https://api.github.com/users/joomla/events{/privacy}","received_events_url":"https://api.github.com/users/joomla/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/joomla/joomla-cms","description":"Home of the Joomla! Content Management System","fork":false,"url":"https://api.github.com/repos/joomla/joomla-cms","forks_url":"https://api.github.com/repos/joomla/joomla-cms/forks","keys_url":"https://api.github.com/repos/joomla/joomla-cms/keys{/key_id}","collaborators_url":"https://api.github.com/repos/joomla/joomla-cms/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/joomla/joomla-cms/teams","hooks_url":"https://api.github.com/repos/joomla/joomla-cms/hooks","issue_events_url":"https://api.github.com/repos/joomla/joomla-cms/issues/events{/number}","events_url":"https://api.github.com/repos/joomla/joomla-cms/events","assignees_url":"https://api.github.com/repos/joomla/joomla-cms/assignees{/user}","branches_url":"https://api.github.com/repos/joomla/joomla-cms/branches{/branch}","tags_url":"https://api.github.com/repos/joomla/joomla-cms/tags","blobs_url":"https://api.github.com/repos/joomla/joomla-cms/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/joomla/joomla-cms/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/joomla/joomla-cms/git/refs{/sha}","trees_url":"https://api.github.com/repos/joomla/joomla-cms/git/trees{/sha}","statuses_url":"https://api.github.com/repos/joomla/joomla-cms/statuses/{sha}","languages_url":"https://api.github.com/repos/joomla/joomla-cms/languages","stargazers_url":"https://api.github.com/repos/joomla/joomla-cms/stargazers","contributors_url":"https://api.github.com/repos/joomla/joomla-cms/contributors","subscribers_url":"https://api.github.com/repos/joomla/joomla-cms/subscribers","subscription_url":"https://api.github.com/repos/joomla/joomla-cms/subscription","commits_url":"https://api.github.com/repos/joomla/joomla-cms/commits{/sha}","git_commits_url":"https://api.github.com/repos/joomla/joomla-cms/git/commits{/sha}","comments_url":"https://api.github.com/repos/joomla/joomla-cms/comments{/number}","issue_comment_url":"https://api.github.com/repos/joomla/joomla-cms/issues/comments/{number}","contents_url":"https://api.github.com/repos/joomla/joomla-cms/contents/{+path}","compare_url":"https://api.github.com/repos/joomla/joomla-cms/compare/{base}...{head}","merges_url":"https://api.github.com/repos/joomla/joomla-cms/merges","archive_url":"https://api.github.com/repos/joomla/joomla-cms/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/joomla/joomla-cms/downloads","issues_url":"https://api.github.com/repos/joomla/joomla-cms/issues{/number}","pulls_url":"https://api.github.com/repos/joomla/joomla-cms/pulls{/number}","milestones_url":"https://api.github.com/repos/joomla/joomla-cms/milestones{/number}","notifications_url":"https://api.github.com/repos/joomla/joomla-cms/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/joomla/joomla-cms/labels{/name}","releases_url":"https://api.github.com/repos/joomla/joomla-cms/releases{/id}","created_at":"2011-09-27T02:07:38Z","updated_at":"2014-12-31T16:16:23Z","pushed_at":"2015-01-01T15:07:06Z","git_url":"git://github.com/joomla/joomla-cms.git","ssh_url":"git@github.com:joomla/joomla-cms.git","clone_url":"https://github.com/joomla/joomla-cms.git","svn_url":"https://github.com/joomla/joomla-cms","homepage":"http://joomla.org","size":287754,"stargazers_count":1389,"watchers_count":1389,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1542,"mirror_url":null,"open_issues_count":466,"forks":1542,"open_issues":466,"watchers":1389,"default_branch":"staging"}},"_links":{"self":{"href":"https://api.github.com/repos/joomla/joomla-cms/pulls/5577"},"html":{"href":"https://github.com/joomla/joomla-cms/pull/5577"},"issue":{"href":"https://api.github.com/repos/joomla/joomla-cms/issues/5577"},"comments":{"href":"https://api.github.com/repos/joomla/joomla-cms/issues/5577/comments"},"review_comments":{"href":"https://api.github.com/repos/joomla/joomla-cms/pulls/5577/comments"},"review_comment":{"href":"https://api.github.com/repos/joomla/joomla-cms/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/joomla/joomla-cms/pulls/5577/commits"},"statuses":{"href":"https://api.github.com/repos/joomla/joomla-cms/statuses/e4533b54e20dcf1c78bf356751420440c12c768d"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"roland-d","id":359377,"avatar_url":"https://avatars.githubusercontent.com/u/359377?v=3","gravatar_id":"","url":"https://api.github.com/users/roland-d","html_url":"https://github.com/roland-d","followers_url":"https://api.github.com/users/roland-d/followers","following_url":"https://api.github.com/users/roland-d/following{/other_user}","gists_url":"https://api.github.com/users/roland-d/gists{/gist_id}","starred_url":"https://api.github.com/users/roland-d/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/roland-d/subscriptions","organizations_url":"https://api.github.com/users/roland-d/orgs","repos_url":"https://api.github.com/users/roland-d/repos","events_url":"https://api.github.com/users/roland-d/events{/privacy}","received_events_url":"https://api.github.com/users/roland-d/received_events","type":"User","site_admin":false},"comments":2,"review_comments":0,"commits":1,"additions":1,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:07:06Z","org":{"id":751633,"login":"joomla","gravatar_id":"","url":"https://api.github.com/orgs/joomla","avatar_url":"https://avatars.githubusercontent.com/u/751633?"}} +,{"id":"2489654320","type":"PullRequestReviewCommentEvent","actor":{"id":459648,"login":"samsonasik","gravatar_id":"","url":"https://api.github.com/users/samsonasik","avatar_url":"https://avatars.githubusercontent.com/u/459648?"},"repo":{"id":702550,"name":"zendframework/zf2","url":"https://api.github.com/repos/zendframework/zf2"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/22400106","id":22400106,"diff_hunk":"@@ -0,0 +1,91 @@\n+ array('allowed-1', 'allowed-2')\r\n));\r\necho $whitelist->filter('allowed-2'); // => 'allowed-2'\r\necho $whitelist->filter('not-allowed'); // => null\r\n```\r\n\r\n### Blacklist\r\n```php\r\n$blacklist = new \\Zend\\Filter\\Whitelist(array(\r\n 'type' => 'blacklist', // optional, default is 'whitelist'\r\n 'list' => array('not-allowed-1', 'not-allowed-2')\r\n));\r\necho $blacklist->filter('allowed'); // => 'allowed'\r\necho $blacklist->filter('not-allowed-2'); // => null\r\n```\r\n\r\n### Notes \r\n\r\n1. Maybe calling the filter class `Whitelist` might be counter-intuitive if the desired behavior is that of a blacklist. But I couldn't think of a better way to name the filter, so I'm open to suggestions:\r\n * Something like \"AllowedList\" would just be a synonym of \"whitelist\". \r\n * \"List\" would just be too vague.\r\n * Separate filter classes seemed overkill.\r\n2. I decided to allow only one type of configuration in the constructor (by array of options) just to keep it simple. If you'd like to allow for a more dynamic constructor (like a few other filters do) let me know.\r\n3. Not sure what commit edbc12b is doing in this PR. Looks like its in `master` but not in `develop`.\r\n\r\nSee #6960 for more info.","created_at":"2014-12-05T16:02:35Z","updated_at":"2015-01-01T15:07:06Z","closed_at":null,"merged_at":null,"merge_commit_sha":"305e637f84c8f628496932bd99c0195a0a503c44","assignee":{"login":"Ocramius","id":154256,"avatar_url":"https://avatars.githubusercontent.com/u/154256?v=3","gravatar_id":"","url":"https://api.github.com/users/Ocramius","html_url":"https://github.com/Ocramius","followers_url":"https://api.github.com/users/Ocramius/followers","following_url":"https://api.github.com/users/Ocramius/following{/other_user}","gists_url":"https://api.github.com/users/Ocramius/gists{/gist_id}","starred_url":"https://api.github.com/users/Ocramius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Ocramius/subscriptions","organizations_url":"https://api.github.com/users/Ocramius/orgs","repos_url":"https://api.github.com/users/Ocramius/repos","events_url":"https://api.github.com/users/Ocramius/events{/privacy}","received_events_url":"https://api.github.com/users/Ocramius/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/zendframework/zf2/milestones/26","labels_url":"https://api.github.com/repos/zendframework/zf2/milestones/26/labels","id":593244,"number":26,"title":"2.4.0","description":null,"creator":{"login":"weierophinney","id":25943,"avatar_url":"https://avatars.githubusercontent.com/u/25943?v=3","gravatar_id":"","url":"https://api.github.com/users/weierophinney","html_url":"https://github.com/weierophinney","followers_url":"https://api.github.com/users/weierophinney/followers","following_url":"https://api.github.com/users/weierophinney/following{/other_user}","gists_url":"https://api.github.com/users/weierophinney/gists{/gist_id}","starred_url":"https://api.github.com/users/weierophinney/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/weierophinney/subscriptions","organizations_url":"https://api.github.com/users/weierophinney/orgs","repos_url":"https://api.github.com/users/weierophinney/repos","events_url":"https://api.github.com/users/weierophinney/events{/privacy}","received_events_url":"https://api.github.com/users/weierophinney/received_events","type":"User","site_admin":false},"open_issues":34,"closed_issues":163,"state":"open","created_at":"2014-03-10T21:38:11Z","updated_at":"2014-12-31T09:55:26Z","due_on":null,"closed_at":null},"commits_url":"https://api.github.com/repos/zendframework/zf2/pulls/6962/commits","review_comments_url":"https://api.github.com/repos/zendframework/zf2/pulls/6962/comments","review_comment_url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/{number}","comments_url":"https://api.github.com/repos/zendframework/zf2/issues/6962/comments","statuses_url":"https://api.github.com/repos/zendframework/zf2/statuses/58ef5245151d935d9031d42a504cfab37297af9e","head":{"label":"gabrielsomoza:gabriel/zf-6960-whitelist-filter","ref":"gabriel/zf-6960-whitelist-filter","sha":"58ef5245151d935d9031d42a504cfab37297af9e","user":{"login":"gabrielsomoza","id":106219,"avatar_url":"https://avatars.githubusercontent.com/u/106219?v=3","gravatar_id":"","url":"https://api.github.com/users/gabrielsomoza","html_url":"https://github.com/gabrielsomoza","followers_url":"https://api.github.com/users/gabrielsomoza/followers","following_url":"https://api.github.com/users/gabrielsomoza/following{/other_user}","gists_url":"https://api.github.com/users/gabrielsomoza/gists{/gist_id}","starred_url":"https://api.github.com/users/gabrielsomoza/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gabrielsomoza/subscriptions","organizations_url":"https://api.github.com/users/gabrielsomoza/orgs","repos_url":"https://api.github.com/users/gabrielsomoza/repos","events_url":"https://api.github.com/users/gabrielsomoza/events{/privacy}","received_events_url":"https://api.github.com/users/gabrielsomoza/received_events","type":"User","site_admin":false},"repo":{"id":27590921,"name":"zf2","full_name":"gabrielsomoza/zf2","owner":{"login":"gabrielsomoza","id":106219,"avatar_url":"https://avatars.githubusercontent.com/u/106219?v=3","gravatar_id":"","url":"https://api.github.com/users/gabrielsomoza","html_url":"https://github.com/gabrielsomoza","followers_url":"https://api.github.com/users/gabrielsomoza/followers","following_url":"https://api.github.com/users/gabrielsomoza/following{/other_user}","gists_url":"https://api.github.com/users/gabrielsomoza/gists{/gist_id}","starred_url":"https://api.github.com/users/gabrielsomoza/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gabrielsomoza/subscriptions","organizations_url":"https://api.github.com/users/gabrielsomoza/orgs","repos_url":"https://api.github.com/users/gabrielsomoza/repos","events_url":"https://api.github.com/users/gabrielsomoza/events{/privacy}","received_events_url":"https://api.github.com/users/gabrielsomoza/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/gabrielsomoza/zf2","description":"Official Zend Framework 2 git repository","fork":true,"url":"https://api.github.com/repos/gabrielsomoza/zf2","forks_url":"https://api.github.com/repos/gabrielsomoza/zf2/forks","keys_url":"https://api.github.com/repos/gabrielsomoza/zf2/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gabrielsomoza/zf2/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gabrielsomoza/zf2/teams","hooks_url":"https://api.github.com/repos/gabrielsomoza/zf2/hooks","issue_events_url":"https://api.github.com/repos/gabrielsomoza/zf2/issues/events{/number}","events_url":"https://api.github.com/repos/gabrielsomoza/zf2/events","assignees_url":"https://api.github.com/repos/gabrielsomoza/zf2/assignees{/user}","branches_url":"https://api.github.com/repos/gabrielsomoza/zf2/branches{/branch}","tags_url":"https://api.github.com/repos/gabrielsomoza/zf2/tags","blobs_url":"https://api.github.com/repos/gabrielsomoza/zf2/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gabrielsomoza/zf2/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gabrielsomoza/zf2/git/refs{/sha}","trees_url":"https://api.github.com/repos/gabrielsomoza/zf2/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gabrielsomoza/zf2/statuses/{sha}","languages_url":"https://api.github.com/repos/gabrielsomoza/zf2/languages","stargazers_url":"https://api.github.com/repos/gabrielsomoza/zf2/stargazers","contributors_url":"https://api.github.com/repos/gabrielsomoza/zf2/contributors","subscribers_url":"https://api.github.com/repos/gabrielsomoza/zf2/subscribers","subscription_url":"https://api.github.com/repos/gabrielsomoza/zf2/subscription","commits_url":"https://api.github.com/repos/gabrielsomoza/zf2/commits{/sha}","git_commits_url":"https://api.github.com/repos/gabrielsomoza/zf2/git/commits{/sha}","comments_url":"https://api.github.com/repos/gabrielsomoza/zf2/comments{/number}","issue_comment_url":"https://api.github.com/repos/gabrielsomoza/zf2/issues/comments/{number}","contents_url":"https://api.github.com/repos/gabrielsomoza/zf2/contents/{+path}","compare_url":"https://api.github.com/repos/gabrielsomoza/zf2/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gabrielsomoza/zf2/merges","archive_url":"https://api.github.com/repos/gabrielsomoza/zf2/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gabrielsomoza/zf2/downloads","issues_url":"https://api.github.com/repos/gabrielsomoza/zf2/issues{/number}","pulls_url":"https://api.github.com/repos/gabrielsomoza/zf2/pulls{/number}","milestones_url":"https://api.github.com/repos/gabrielsomoza/zf2/milestones{/number}","notifications_url":"https://api.github.com/repos/gabrielsomoza/zf2/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gabrielsomoza/zf2/labels{/name}","releases_url":"https://api.github.com/repos/gabrielsomoza/zf2/releases{/id}","created_at":"2014-12-05T12:39:42Z","updated_at":"2014-12-05T12:39:55Z","pushed_at":"2014-12-11T12:53:29Z","git_url":"git://github.com/gabrielsomoza/zf2.git","ssh_url":"git@github.com:gabrielsomoza/zf2.git","clone_url":"https://github.com/gabrielsomoza/zf2.git","svn_url":"https://github.com/gabrielsomoza/zf2","homepage":"http://framework.zend.com/","size":92512,"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":"zendframework:develop","ref":"develop","sha":"847c17cbb07f24a8da16b672840ca62ba85eb7de","user":{"login":"zendframework","id":296074,"avatar_url":"https://avatars.githubusercontent.com/u/296074?v=3","gravatar_id":"","url":"https://api.github.com/users/zendframework","html_url":"https://github.com/zendframework","followers_url":"https://api.github.com/users/zendframework/followers","following_url":"https://api.github.com/users/zendframework/following{/other_user}","gists_url":"https://api.github.com/users/zendframework/gists{/gist_id}","starred_url":"https://api.github.com/users/zendframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zendframework/subscriptions","organizations_url":"https://api.github.com/users/zendframework/orgs","repos_url":"https://api.github.com/users/zendframework/repos","events_url":"https://api.github.com/users/zendframework/events{/privacy}","received_events_url":"https://api.github.com/users/zendframework/received_events","type":"Organization","site_admin":false},"repo":{"id":702550,"name":"zf2","full_name":"zendframework/zf2","owner":{"login":"zendframework","id":296074,"avatar_url":"https://avatars.githubusercontent.com/u/296074?v=3","gravatar_id":"","url":"https://api.github.com/users/zendframework","html_url":"https://github.com/zendframework","followers_url":"https://api.github.com/users/zendframework/followers","following_url":"https://api.github.com/users/zendframework/following{/other_user}","gists_url":"https://api.github.com/users/zendframework/gists{/gist_id}","starred_url":"https://api.github.com/users/zendframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zendframework/subscriptions","organizations_url":"https://api.github.com/users/zendframework/orgs","repos_url":"https://api.github.com/users/zendframework/repos","events_url":"https://api.github.com/users/zendframework/events{/privacy}","received_events_url":"https://api.github.com/users/zendframework/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/zendframework/zf2","description":"Official Zend Framework 2 git repository","fork":false,"url":"https://api.github.com/repos/zendframework/zf2","forks_url":"https://api.github.com/repos/zendframework/zf2/forks","keys_url":"https://api.github.com/repos/zendframework/zf2/keys{/key_id}","collaborators_url":"https://api.github.com/repos/zendframework/zf2/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/zendframework/zf2/teams","hooks_url":"https://api.github.com/repos/zendframework/zf2/hooks","issue_events_url":"https://api.github.com/repos/zendframework/zf2/issues/events{/number}","events_url":"https://api.github.com/repos/zendframework/zf2/events","assignees_url":"https://api.github.com/repos/zendframework/zf2/assignees{/user}","branches_url":"https://api.github.com/repos/zendframework/zf2/branches{/branch}","tags_url":"https://api.github.com/repos/zendframework/zf2/tags","blobs_url":"https://api.github.com/repos/zendframework/zf2/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/zendframework/zf2/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/zendframework/zf2/git/refs{/sha}","trees_url":"https://api.github.com/repos/zendframework/zf2/git/trees{/sha}","statuses_url":"https://api.github.com/repos/zendframework/zf2/statuses/{sha}","languages_url":"https://api.github.com/repos/zendframework/zf2/languages","stargazers_url":"https://api.github.com/repos/zendframework/zf2/stargazers","contributors_url":"https://api.github.com/repos/zendframework/zf2/contributors","subscribers_url":"https://api.github.com/repos/zendframework/zf2/subscribers","subscription_url":"https://api.github.com/repos/zendframework/zf2/subscription","commits_url":"https://api.github.com/repos/zendframework/zf2/commits{/sha}","git_commits_url":"https://api.github.com/repos/zendframework/zf2/git/commits{/sha}","comments_url":"https://api.github.com/repos/zendframework/zf2/comments{/number}","issue_comment_url":"https://api.github.com/repos/zendframework/zf2/issues/comments/{number}","contents_url":"https://api.github.com/repos/zendframework/zf2/contents/{+path}","compare_url":"https://api.github.com/repos/zendframework/zf2/compare/{base}...{head}","merges_url":"https://api.github.com/repos/zendframework/zf2/merges","archive_url":"https://api.github.com/repos/zendframework/zf2/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/zendframework/zf2/downloads","issues_url":"https://api.github.com/repos/zendframework/zf2/issues{/number}","pulls_url":"https://api.github.com/repos/zendframework/zf2/pulls{/number}","milestones_url":"https://api.github.com/repos/zendframework/zf2/milestones{/number}","notifications_url":"https://api.github.com/repos/zendframework/zf2/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/zendframework/zf2/labels{/name}","releases_url":"https://api.github.com/repos/zendframework/zf2/releases{/id}","created_at":"2010-06-04T02:42:05Z","updated_at":"2014-12-31T13:29:16Z","pushed_at":"2014-12-31T10:44:38Z","git_url":"git://github.com/zendframework/zf2.git","ssh_url":"git@github.com:zendframework/zf2.git","clone_url":"https://github.com/zendframework/zf2.git","svn_url":"https://github.com/zendframework/zf2","homepage":"http://framework.zend.com/","size":217086,"stargazers_count":4972,"watchers_count":4972,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":3016,"mirror_url":null,"open_issues_count":601,"forks":3016,"open_issues":601,"watchers":4972,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6962"},"html":{"href":"https://github.com/zendframework/zf2/pull/6962"},"issue":{"href":"https://api.github.com/repos/zendframework/zf2/issues/6962"},"comments":{"href":"https://api.github.com/repos/zendframework/zf2/issues/6962/comments"},"review_comments":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6962/comments"},"review_comment":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6962/commits"},"statuses":{"href":"https://api.github.com/repos/zendframework/zf2/statuses/58ef5245151d935d9031d42a504cfab37297af9e"}}}},"public":true,"created_at":"2015-01-01T15:07:06Z","org":{"id":296074,"login":"zendframework","gravatar_id":"","url":"https://api.github.com/orgs/zendframework","avatar_url":"https://avatars.githubusercontent.com/u/296074?"}} +,{"id":"2489654323","type":"PushEvent","actor":{"id":1758366,"login":"mzgol","gravatar_id":"","url":"https://api.github.com/users/mzgol","avatar_url":"https://avatars.githubusercontent.com/u/1758366?"},"repo":{"id":28574597,"name":"mzgol/npm-bump","url":"https://api.github.com/repos/mzgol/npm-bump"},"payload":{"push_id":536865474,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"82f542351f39a757f6c226be53db1d532edbb101","before":"c20e20895fb8829f390d98c7a534f2826f3ef155","commits":[{"sha":"c7545c526d8a5a37a9a91d0821c2a70394b07f87","author":{"email":"644fc9bb9554b22049aee092b10c2ddb3ab4b891@gmail.com","name":"Michał Gołębiowski"},"message":"Tag 0.0.9","distinct":true,"url":"https://api.github.com/repos/mzgol/npm-bump/commits/c7545c526d8a5a37a9a91d0821c2a70394b07f87"},{"sha":"82f542351f39a757f6c226be53db1d532edbb101","author":{"email":"644fc9bb9554b22049aee092b10c2ddb3ab4b891@gmail.com","name":"Michał Gołębiowski"},"message":"Bump to 0.0.10-pre","distinct":true,"url":"https://api.github.com/repos/mzgol/npm-bump/commits/82f542351f39a757f6c226be53db1d532edbb101"}]},"public":true,"created_at":"2015-01-01T15:07:07Z"} +,{"id":"2489654324","type":"PushEvent","actor":{"id":4319913,"login":"vanvught","gravatar_id":"","url":"https://api.github.com/users/vanvught","avatar_url":"https://avatars.githubusercontent.com/u/4319913?"},"repo":{"id":15496962,"name":"vanvught/OpenDMX","url":"https://api.github.com/repos/vanvught/OpenDMX"},"payload":{"push_id":536865475,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"90adba67572bc2b9c22ceb07f6d267f7231283ed","before":"8f81640d2caa634599148b9696436662c9f0cd89","commits":[{"sha":"90adba67572bc2b9c22ceb07f6d267f7231283ed","author":{"email":"dfa9b7f1d536e394c44db1b2fc16dbbb4b30f283@gmail.com","name":"Arjan"},"message":"Added all include files from project bob","distinct":true,"url":"https://api.github.com/repos/vanvught/OpenDMX/commits/90adba67572bc2b9c22ceb07f6d267f7231283ed"}]},"public":true,"created_at":"2015-01-01T15:07:07Z"} +,{"id":"2489654326","type":"PushEvent","actor":{"id":8818241,"login":"webermarci","gravatar_id":"","url":"https://api.github.com/users/webermarci","avatar_url":"https://avatars.githubusercontent.com/u/8818241?"},"repo":{"id":27641258,"name":"Dominykasrr/Logic-Circuit-Sim","url":"https://api.github.com/repos/Dominykasrr/Logic-Circuit-Sim"},"payload":{"push_id":536865477,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"95ea5ada7a62ac09ff6586c514d6812fdb5c1bb3","before":"37b8d6d4f8e3f3d23ba284cd9bc8863105588cb7","commits":[{"sha":"95ea5ada7a62ac09ff6586c514d6812fdb5c1bb3","author":{"email":"81e8c79ca4b38f33dddb35382e9327613394103e@gmail.com","name":"Wéber Márton"},"message":"InputPoint\n\nConnectedElementsOutput() is implemented","distinct":true,"url":"https://api.github.com/repos/Dominykasrr/Logic-Circuit-Sim/commits/95ea5ada7a62ac09ff6586c514d6812fdb5c1bb3"}]},"public":true,"created_at":"2015-01-01T15:07:07Z"} +,{"id":"2489654327","type":"CreateEvent","actor":{"id":5768659,"login":"supermat","gravatar_id":"","url":"https://api.github.com/users/supermat","avatar_url":"https://avatars.githubusercontent.com/u/5768659?"},"repo":{"id":28688710,"name":"supermat/SD_image_rest","url":"https://api.github.com/repos/supermat/SD_image_rest"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":null,"pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:07:07Z"} +,{"id":"2489654329","type":"PushEvent","actor":{"id":10240653,"login":"peasandpetals","gravatar_id":"","url":"https://api.github.com/users/peasandpetals","avatar_url":"https://avatars.githubusercontent.com/u/10240653?"},"repo":{"id":28406582,"name":"peasandpetals/peasandpetals.github.io","url":"https://api.github.com/repos/peasandpetals/peasandpetals.github.io"},"payload":{"push_id":536865480,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f89af490cf5f05722dfdc331eed22a16df4d836d","before":"843219cf6bc5b8c019b2217e41c4c3f1e56aa0b0","commits":[{"sha":"f89af490cf5f05722dfdc331eed22a16df4d836d","author":{"email":"fc8c7307e9592b5798f02a8c7341cdf9f29b45ec@gmail.com","name":"peasandpetals"},"message":"file name updated","distinct":true,"url":"https://api.github.com/repos/peasandpetals/peasandpetals.github.io/commits/f89af490cf5f05722dfdc331eed22a16df4d836d"}]},"public":true,"created_at":"2015-01-01T15:07:07Z"} +,{"id":"2489654330","type":"PushEvent","actor":{"id":9042492,"login":"Andrew-Machen","gravatar_id":"","url":"https://api.github.com/users/Andrew-Machen","avatar_url":"https://avatars.githubusercontent.com/u/9042492?"},"repo":{"id":28185521,"name":"Andrew-Machen/emacs-config","url":"https://api.github.com/repos/Andrew-Machen/emacs-config"},"payload":{"push_id":536865481,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ca4c08c2af87202dac18409637cc91749246b9ff","before":"f6a3431f33ca08b0df4a3e345d4338682c7d37be","commits":[{"sha":"ca4c08c2af87202dac18409637cc91749246b9ff","author":{"email":"083f0af8690569b005e2bb5312cfaa7fef0b5c82@imperial.ac.uk","name":"Andrew Machen"},"message":"Added instructions at the start, and also reordered sections to group those with options together.","distinct":true,"url":"https://api.github.com/repos/Andrew-Machen/emacs-config/commits/ca4c08c2af87202dac18409637cc91749246b9ff"}]},"public":true,"created_at":"2015-01-01T15:07:07Z"} +,{"id":"2489654331","type":"PushEvent","actor":{"id":8994615,"login":"zelinskiy","gravatar_id":"","url":"https://api.github.com/users/zelinskiy","avatar_url":"https://avatars.githubusercontent.com/u/8994615?"},"repo":{"id":28506542,"name":"zelinskiy/UnitySpikes","url":"https://api.github.com/repos/zelinskiy/UnitySpikes"},"payload":{"push_id":536865482,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3e7ffd705ebf47f0dae0288bdab508c11be8f35d","before":"f09bc1987d36d8a7df50dfcb433b9a522334ab22","commits":[{"sha":"3e7ffd705ebf47f0dae0288bdab508c11be8f35d","author":{"email":"739ba4bb19d92adb7f5581d67e741a75b824dd82@gmail.com","name":"Nickolai Zelinski"},"message":"fixed imperial skin","distinct":true,"url":"https://api.github.com/repos/zelinskiy/UnitySpikes/commits/3e7ffd705ebf47f0dae0288bdab508c11be8f35d"}]},"public":true,"created_at":"2015-01-01T15:07:07Z"} +,{"id":"2489654332","type":"PushEvent","actor":{"id":7867521,"login":"protokolmedia","gravatar_id":"","url":"https://api.github.com/users/protokolmedia","avatar_url":"https://avatars.githubusercontent.com/u/7867521?"},"repo":{"id":28519392,"name":"protokolmedia/protokolmedia.github.io","url":"https://api.github.com/repos/protokolmedia/protokolmedia.github.io"},"payload":{"push_id":536865483,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"009abf4ae6767f755e9a905079ec6ce9f2e13c0f","before":"cf323731e835d03ebff20a66e36bc8dc613f0c21","commits":[{"sha":"009abf4ae6767f755e9a905079ec6ce9f2e13c0f","author":{"email":"ffdce19e24b0d683ee9b54b2d33aea58b3fb4975@gmail.com","name":"protokolmedia"},"message":"Add About","distinct":true,"url":"https://api.github.com/repos/protokolmedia/protokolmedia.github.io/commits/009abf4ae6767f755e9a905079ec6ce9f2e13c0f"}]},"public":true,"created_at":"2015-01-01T15:07:07Z"} +,{"id":"2489654334","type":"PushEvent","actor":{"id":5756226,"login":"GrilloPress","gravatar_id":"","url":"https://api.github.com/users/GrilloPress","avatar_url":"https://avatars.githubusercontent.com/u/5756226?"},"repo":{"id":28686666,"name":"Allyooop/muskox","url":"https://api.github.com/repos/Allyooop/muskox"},"payload":{"push_id":536865484,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"396bf5c1d3d26a650bd4fff45c334525e5c1ee23","before":"523ae4266a4d3f9d47a2dd1bf00fcf81ecde0a44","commits":[{"sha":"396bf5c1d3d26a650bd4fff45c334525e5c1ee23","author":{"email":"225c315693712ea48c3836b6957f7d719d5b439e@gmail.com","name":"GrilloPress"},"message":"add git ignore and method markdown file","distinct":true,"url":"https://api.github.com/repos/Allyooop/muskox/commits/396bf5c1d3d26a650bd4fff45c334525e5c1ee23"}]},"public":true,"created_at":"2015-01-01T15:07:08Z","org":{"id":9438125,"login":"Allyooop","gravatar_id":"","url":"https://api.github.com/orgs/Allyooop","avatar_url":"https://avatars.githubusercontent.com/u/9438125?"}} +,{"id":"2489654335","type":"PushEvent","actor":{"id":87412,"login":"jfinnis","gravatar_id":"","url":"https://api.github.com/users/jfinnis","avatar_url":"https://avatars.githubusercontent.com/u/87412?"},"repo":{"id":654388,"name":"jfinnis/config_vim","url":"https://api.github.com/repos/jfinnis/config_vim"},"payload":{"push_id":536865485,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"710e62fbc2e078aa625d39a5b73df30ec19481b6","before":"d58b18772e90c94364cc4a3adef6653e36d0e3fe","commits":[{"sha":"710e62fbc2e078aa625d39a5b73df30ec19481b6","author":{"email":"020194bc8b805883f4f0bcb8a140dabb0f534ba9@gmail.com","name":"Joshua Finnis"},"message":"updated doc","distinct":true,"url":"https://api.github.com/repos/jfinnis/config_vim/commits/710e62fbc2e078aa625d39a5b73df30ec19481b6"}]},"public":true,"created_at":"2015-01-01T15:07:08Z"} +,{"id":"2489654336","type":"IssueCommentEvent","actor":{"id":6202539,"login":"cliffmichaelsgithub","gravatar_id":"","url":"https://api.github.com/users/cliffmichaelsgithub","avatar_url":"https://avatars.githubusercontent.com/u/6202539?"},"repo":{"id":14286513,"name":"PixelRocket-Biz/cliff-michaels","url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163","labels_url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163/labels{/name}","comments_url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163/comments","events_url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163/events","html_url":"https://github.com/PixelRocket-Biz/cliff-michaels/issues/163","id":53198415,"number":163,"title":"HOW DO PEOPLE KNOW HOW TO PRINT THEIR SAVED TOOLS?","user":{"login":"cliffmichaelsgithub","id":6202539,"avatar_url":"https://avatars.githubusercontent.com/u/6202539?v=3","gravatar_id":"","url":"https://api.github.com/users/cliffmichaelsgithub","html_url":"https://github.com/cliffmichaelsgithub","followers_url":"https://api.github.com/users/cliffmichaelsgithub/followers","following_url":"https://api.github.com/users/cliffmichaelsgithub/following{/other_user}","gists_url":"https://api.github.com/users/cliffmichaelsgithub/gists{/gist_id}","starred_url":"https://api.github.com/users/cliffmichaelsgithub/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cliffmichaelsgithub/subscriptions","organizations_url":"https://api.github.com/users/cliffmichaelsgithub/orgs","repos_url":"https://api.github.com/users/cliffmichaelsgithub/repos","events_url":"https://api.github.com/users/cliffmichaelsgithub/events{/privacy}","received_events_url":"https://api.github.com/users/cliffmichaelsgithub/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-12-31T19:05:12Z","updated_at":"2015-01-01T15:07:08Z","closed_at":"2015-01-01T15:05:16Z","body":"Will we have a PINT BUTTON ON the tool or exercise edit page?"},"comment":{"url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/comments/68488622","html_url":"https://github.com/PixelRocket-Biz/cliff-michaels/issues/163#issuecomment-68488622","issue_url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163","id":68488622,"user":{"login":"cliffmichaelsgithub","id":6202539,"avatar_url":"https://avatars.githubusercontent.com/u/6202539?v=3","gravatar_id":"","url":"https://api.github.com/users/cliffmichaelsgithub","html_url":"https://github.com/cliffmichaelsgithub","followers_url":"https://api.github.com/users/cliffmichaelsgithub/followers","following_url":"https://api.github.com/users/cliffmichaelsgithub/following{/other_user}","gists_url":"https://api.github.com/users/cliffmichaelsgithub/gists{/gist_id}","starred_url":"https://api.github.com/users/cliffmichaelsgithub/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cliffmichaelsgithub/subscriptions","organizations_url":"https://api.github.com/users/cliffmichaelsgithub/orgs","repos_url":"https://api.github.com/users/cliffmichaelsgithub/repos","events_url":"https://api.github.com/users/cliffmichaelsgithub/events{/privacy}","received_events_url":"https://api.github.com/users/cliffmichaelsgithub/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:07:08Z","updated_at":"2015-01-01T15:07:08Z","body":"Thx. "}},"public":true,"created_at":"2015-01-01T15:07:08Z","org":{"id":4207428,"login":"PixelRocket-Biz","gravatar_id":"","url":"https://api.github.com/orgs/PixelRocket-Biz","avatar_url":"https://avatars.githubusercontent.com/u/4207428?"}} +,{"id":"2489654340","type":"IssueCommentEvent","actor":{"id":5353605,"login":"siena123","gravatar_id":"","url":"https://api.github.com/users/siena123","avatar_url":"https://avatars.githubusercontent.com/u/5353605?"},"repo":{"id":20107959,"name":"moneymanagerex/moneymanagerex","url":"https://api.github.com/repos/moneymanagerex/moneymanagerex"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/moneymanagerex/moneymanagerex/issues/326","labels_url":"https://api.github.com/repos/moneymanagerex/moneymanagerex/issues/326/labels{/name}","comments_url":"https://api.github.com/repos/moneymanagerex/moneymanagerex/issues/326/comments","events_url":"https://api.github.com/repos/moneymanagerex/moneymanagerex/issues/326/events","html_url":"https://github.com/moneymanagerex/moneymanagerex/issues/326","id":52852629,"number":326,"title":"Support transfer operation between any kind of account","user":{"login":"guanlisheng","id":721973,"avatar_url":"https://avatars.githubusercontent.com/u/721973?v=3","gravatar_id":"","url":"https://api.github.com/users/guanlisheng","html_url":"https://github.com/guanlisheng","followers_url":"https://api.github.com/users/guanlisheng/followers","following_url":"https://api.github.com/users/guanlisheng/following{/other_user}","gists_url":"https://api.github.com/users/guanlisheng/gists{/gist_id}","starred_url":"https://api.github.com/users/guanlisheng/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/guanlisheng/subscriptions","organizations_url":"https://api.github.com/users/guanlisheng/orgs","repos_url":"https://api.github.com/users/guanlisheng/repos","events_url":"https://api.github.com/users/guanlisheng/events{/privacy}","received_events_url":"https://api.github.com/users/guanlisheng/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/moneymanagerex/moneymanagerex/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":{"url":"https://api.github.com/repos/moneymanagerex/moneymanagerex/milestones/3","labels_url":"https://api.github.com/repos/moneymanagerex/moneymanagerex/milestones/3/labels","id":900049,"number":3,"title":"v1.3","description":"Major with\r\n* bulk UI redesin\r\n* reporting improvement and refactor\r\n* import/export ","creator":{"login":"guanlisheng","id":721973,"avatar_url":"https://avatars.githubusercontent.com/u/721973?v=3","gravatar_id":"","url":"https://api.github.com/users/guanlisheng","html_url":"https://github.com/guanlisheng","followers_url":"https://api.github.com/users/guanlisheng/followers","following_url":"https://api.github.com/users/guanlisheng/following{/other_user}","gists_url":"https://api.github.com/users/guanlisheng/gists{/gist_id}","starred_url":"https://api.github.com/users/guanlisheng/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/guanlisheng/subscriptions","organizations_url":"https://api.github.com/users/guanlisheng/orgs","repos_url":"https://api.github.com/users/guanlisheng/repos","events_url":"https://api.github.com/users/guanlisheng/events{/privacy}","received_events_url":"https://api.github.com/users/guanlisheng/received_events","type":"User","site_admin":false},"open_issues":11,"closed_issues":1,"state":"open","created_at":"2014-12-11T06:05:54Z","updated_at":"2014-12-30T02:01:33Z","due_on":"2015-06-27T16:00:00Z","closed_at":null},"comments":3,"created_at":"2014-12-25T07:46:55Z","updated_at":"2015-01-01T15:07:09Z","closed_at":null,"body":"Now we only support the transfer between non-stock account and there will be one single transaction as Account A, $100 ==>Account B, ¥600. \r\nBoth of the account will show this transaction will opposite transfer direction as\r\n* Account A , -> $100\r\n* Account B, <- ¥600\r\n\r\nThis enhancement is to support the transfer to any account (even Asset)."},"comment":{"url":"https://api.github.com/repos/moneymanagerex/moneymanagerex/issues/comments/68488623","html_url":"https://github.com/moneymanagerex/moneymanagerex/issues/326#issuecomment-68488623","issue_url":"https://api.github.com/repos/moneymanagerex/moneymanagerex/issues/326","id":68488623,"user":{"login":"siena123","id":5353605,"avatar_url":"https://avatars.githubusercontent.com/u/5353605?v=3","gravatar_id":"","url":"https://api.github.com/users/siena123","html_url":"https://github.com/siena123","followers_url":"https://api.github.com/users/siena123/followers","following_url":"https://api.github.com/users/siena123/following{/other_user}","gists_url":"https://api.github.com/users/siena123/gists{/gist_id}","starred_url":"https://api.github.com/users/siena123/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/siena123/subscriptions","organizations_url":"https://api.github.com/users/siena123/orgs","repos_url":"https://api.github.com/users/siena123/repos","events_url":"https://api.github.com/users/siena123/events{/privacy}","received_events_url":"https://api.github.com/users/siena123/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:07:09Z","updated_at":"2015-01-01T15:07:09Z","body":"I think this could be an interesting feature but it is not one that I would personally use. I don't know if enough people would be interested in it and use the feature to make it worth the effort."}},"public":true,"created_at":"2015-01-01T15:07:09Z","org":{"id":5001560,"login":"moneymanagerex","gravatar_id":"","url":"https://api.github.com/orgs/moneymanagerex","avatar_url":"https://avatars.githubusercontent.com/u/5001560?"}} +,{"id":"2489654343","type":"PushEvent","actor":{"id":9605547,"login":"ReyzaPS","gravatar_id":"","url":"https://api.github.com/users/ReyzaPS","avatar_url":"https://avatars.githubusercontent.com/u/9605547?"},"repo":{"id":28688305,"name":"ReyzaPS/upload_github","url":"https://api.github.com/repos/ReyzaPS/upload_github"},"payload":{"push_id":536865487,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d00fa6d61485426d7a6fc01b49d02e06008e56d5","before":"eae42633ce35b86378fce18a908c98935b325b81","commits":[{"sha":"d00fa6d61485426d7a6fc01b49d02e06008e56d5","author":{"email":"3a215a77ad2dae8e160fdfcbbbcad3a74e99391c@rocketmail.com","name":"reyza_permana"},"message":"commit again","distinct":true,"url":"https://api.github.com/repos/ReyzaPS/upload_github/commits/d00fa6d61485426d7a6fc01b49d02e06008e56d5"}]},"public":true,"created_at":"2015-01-01T15:07:09Z"} +,{"id":"2489654344","type":"PushEvent","actor":{"id":3981546,"login":"templefox","gravatar_id":"","url":"https://api.github.com/users/templefox","avatar_url":"https://avatars.githubusercontent.com/u/3981546?"},"repo":{"id":28444791,"name":"templefox/B1SeaClient","url":"https://api.github.com/repos/templefox/B1SeaClient"},"payload":{"push_id":536865488,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"55b3f4149e53341fd4774d850b892405edb30b1e","before":"2851195ef26258c6149692944059ce58750508fe","commits":[{"sha":"55b3f4149e53341fd4774d850b892405edb30b1e","author":{"email":"532af1cf6f83f18ce73e9f602364b2f718ca7708@163.com","name":"templefox"},"message":"remove test","distinct":true,"url":"https://api.github.com/repos/templefox/B1SeaClient/commits/55b3f4149e53341fd4774d850b892405edb30b1e"}]},"public":true,"created_at":"2015-01-01T15:07:09Z"} +,{"id":"2489654346","type":"GollumEvent","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":{"pages":[{"page_name":"Home","title":"Home","summary":null,"action":"edited","sha":"317e3eec81be6a3769ed682fc819e82269c5790e","html_url":"https://github.com/deeperx/dojo_rules/wiki/Home"}]},"public":true,"created_at":"2015-01-01T15:07:09Z"} +,{"id":"2489654349","type":"IssuesEvent","actor":{"id":7223093,"login":"jgermond","gravatar_id":"","url":"https://api.github.com/users/jgermond","avatar_url":"https://avatars.githubusercontent.com/u/7223093?"},"repo":{"id":25916085,"name":"Chuck-Berry/ProjetIA_Quarto","url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto/issues/3","labels_url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto/issues/3/comments","events_url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto/issues/3/events","html_url":"https://github.com/Chuck-Berry/ProjetIA_Quarto/issues/3","id":53221472,"number":3,"title":"Impossible de jouer en 2ème","user":{"login":"jgermond","id":7223093,"avatar_url":"https://avatars.githubusercontent.com/u/7223093?v=3","gravatar_id":"","url":"https://api.github.com/users/jgermond","html_url":"https://github.com/jgermond","followers_url":"https://api.github.com/users/jgermond/followers","following_url":"https://api.github.com/users/jgermond/following{/other_user}","gists_url":"https://api.github.com/users/jgermond/gists{/gist_id}","starred_url":"https://api.github.com/users/jgermond/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jgermond/subscriptions","organizations_url":"https://api.github.com/users/jgermond/orgs","repos_url":"https://api.github.com/users/jgermond/repos","events_url":"https://api.github.com/users/jgermond/events{/privacy}","received_events_url":"https://api.github.com/users/jgermond/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:07:09Z","updated_at":"2015-01-01T15:07:09Z","closed_at":null,"body":"La fonctionnalité permettant de jouer en 2ème ne fonctionne pas. Sachant que ce n'est pas demandé, cette possibilité peut être supprimer par manque de temps."}},"public":true,"created_at":"2015-01-01T15:07:09Z"} +,{"id":"2489654350","type":"PushEvent","actor":{"id":1020648,"login":"lowagner","gravatar_id":"","url":"https://api.github.com/users/lowagner","avatar_url":"https://avatars.githubusercontent.com/u/1020648?"},"repo":{"id":28598687,"name":"lowagner/pyanoh3ro","url":"https://api.github.com/repos/lowagner/pyanoh3ro"},"payload":{"push_id":536865491,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"e6c121ba7954ae399ab10aea9fd959368a4b2ed8","before":"ab29587c427e8bd027cd39d7a72ddd4d3d5f6c8e","commits":[{"sha":"48de57a4cf80aa8ed6fc1fd11db0f2490a202f7d","author":{"email":"deacdfbd19b40f96ed610ac86dca3fa92780bd8c@gmail.com","name":"lowagner"},"message":"refactored commands|quick chords|searching to one CommandClass","distinct":true,"url":"https://api.github.com/repos/lowagner/pyanoh3ro/commits/48de57a4cf80aa8ed6fc1fd11db0f2490a202f7d"},{"sha":"e6c121ba7954ae399ab10aea9fd959368a4b2ed8","author":{"email":"deacdfbd19b40f96ed610ac86dca3fa92780bd8c@gmail.com","name":"lowagner"},"message":"Added scale factor action in edit","distinct":true,"url":"https://api.github.com/repos/lowagner/pyanoh3ro/commits/e6c121ba7954ae399ab10aea9fd959368a4b2ed8"}]},"public":true,"created_at":"2015-01-01T15:07:09Z"} +,{"id":"2489654351","type":"PushEvent","actor":{"id":514670,"login":"GeoffWilson","gravatar_id":"","url":"https://api.github.com/users/GeoffWilson","avatar_url":"https://avatars.githubusercontent.com/u/514670?"},"repo":{"id":7530062,"name":"GeoffWilson/WaveBlast","url":"https://api.github.com/repos/GeoffWilson/WaveBlast"},"payload":{"push_id":536865492,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"01cb2576decc55ed80deeaa0af40401ac141b208","before":"5892134ff18895519d0e5730fedc359d1fd15dd4","commits":[{"sha":"01cb2576decc55ed80deeaa0af40401ac141b208","author":{"email":"12e4e0ae5788964f88386f1c82d7ad0a77679857@heg.com","name":"Geoff"},"message":"add mising .prop file","distinct":true,"url":"https://api.github.com/repos/GeoffWilson/WaveBlast/commits/01cb2576decc55ed80deeaa0af40401ac141b208"}]},"public":true,"created_at":"2015-01-01T15:07:10Z"} +,{"id":"2489654353","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":536865493,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3bf1190101083c43f623cb0d7b65eb196d451df3","before":"74fcaec4c5ef543a9390c06d956d4ad25d3e75e5","commits":[{"sha":"3bf1190101083c43f623cb0d7b65eb196d451df3","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420124828712\n\nu9EaRQqBUU8339abFQA0LN1Z5cuNSjSzTJs5d529w9M=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/3bf1190101083c43f623cb0d7b65eb196d451df3"}]},"public":true,"created_at":"2015-01-01T15:07:10Z"} +,{"id":"2489654354","type":"PushEvent","actor":{"id":10364721,"login":"mahir163","gravatar_id":"","url":"https://api.github.com/users/mahir163","avatar_url":"https://avatars.githubusercontent.com/u/10364721?"},"repo":{"id":28688581,"name":"mahir163/technion_events","url":"https://api.github.com/repos/mahir163/technion_events"},"payload":{"push_id":536865494,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f190a85b1de4aabe748ba177bd999c5cabb4047b","before":"95be4bf65742c916739b24a43fb62074d37805a2","commits":[{"sha":"f190a85b1de4aabe748ba177bd999c5cabb4047b","author":{"email":"44a3eec525bbe9d27bc07ca7a107d92518b2d837@users.noreply.github.com","name":"mahir163"},"message":"learning","distinct":true,"url":"https://api.github.com/repos/mahir163/technion_events/commits/f190a85b1de4aabe748ba177bd999c5cabb4047b"}]},"public":true,"created_at":"2015-01-01T15:07:10Z"} +,{"id":"2489654356","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":536865495,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b24c749b6e69746e19df1322c9f292b9cd863bf2","before":"905a5a52ea5f193c1a3ca3181801f78d0f643bd2","commits":[{"sha":"b24c749b6e69746e19df1322c9f292b9cd863bf2","author":{"email":"665b1e12a2c358d92cffe557d2cb0f0638ff2cfc@mac.com","name":"Tomoyuki Shimbara"},"message":"不要なライブラリ参照を削除","distinct":true,"url":"https://api.github.com/repos/shimbara/jersey_rest_ws/commits/b24c749b6e69746e19df1322c9f292b9cd863bf2"}]},"public":true,"created_at":"2015-01-01T15:07:10Z"} +,{"id":"2489654357","type":"IssuesEvent","actor":{"id":10364670,"login":"AdeTroake","gravatar_id":"","url":"https://api.github.com/users/AdeTroake","avatar_url":"https://avatars.githubusercontent.com/u/10364670?"},"repo":{"id":28688652,"name":"AdeTroake/hello-world","url":"https://api.github.com/repos/AdeTroake/hello-world"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/AdeTroake/hello-world/issues/1","labels_url":"https://api.github.com/repos/AdeTroake/hello-world/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/AdeTroake/hello-world/issues/1/comments","events_url":"https://api.github.com/repos/AdeTroake/hello-world/issues/1/events","html_url":"https://github.com/AdeTroake/hello-world/issues/1","id":53221473,"number":1,"title":"Finish Readme","user":{"login":"AdeTroake","id":10364670,"avatar_url":"https://avatars.githubusercontent.com/u/10364670?v=3","gravatar_id":"","url":"https://api.github.com/users/AdeTroake","html_url":"https://github.com/AdeTroake","followers_url":"https://api.github.com/users/AdeTroake/followers","following_url":"https://api.github.com/users/AdeTroake/following{/other_user}","gists_url":"https://api.github.com/users/AdeTroake/gists{/gist_id}","starred_url":"https://api.github.com/users/AdeTroake/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AdeTroake/subscriptions","organizations_url":"https://api.github.com/users/AdeTroake/orgs","repos_url":"https://api.github.com/users/AdeTroake/repos","events_url":"https://api.github.com/users/AdeTroake/events{/privacy}","received_events_url":"https://api.github.com/users/AdeTroake/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":{"login":"AdeTroake","id":10364670,"avatar_url":"https://avatars.githubusercontent.com/u/10364670?v=3","gravatar_id":"","url":"https://api.github.com/users/AdeTroake","html_url":"https://github.com/AdeTroake","followers_url":"https://api.github.com/users/AdeTroake/followers","following_url":"https://api.github.com/users/AdeTroake/following{/other_user}","gists_url":"https://api.github.com/users/AdeTroake/gists{/gist_id}","starred_url":"https://api.github.com/users/AdeTroake/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AdeTroake/subscriptions","organizations_url":"https://api.github.com/users/AdeTroake/orgs","repos_url":"https://api.github.com/users/AdeTroake/repos","events_url":"https://api.github.com/users/AdeTroake/events{/privacy}","received_events_url":"https://api.github.com/users/AdeTroake/received_events","type":"User","site_admin":false},"milestone":null,"comments":0,"created_at":"2015-01-01T15:07:10Z","updated_at":"2015-01-01T15:07:10Z","closed_at":null,"body":"Finish Readme"}},"public":true,"created_at":"2015-01-01T15:07:10Z"} +,{"id":"2489654360","type":"PushEvent","actor":{"id":141733,"login":"camelpunch","gravatar_id":"","url":"https://api.github.com/users/camelpunch","avatar_url":"https://avatars.githubusercontent.com/u/141733?"},"repo":{"id":28398121,"name":"camelpunch/bookbinder","url":"https://api.github.com/repos/camelpunch/bookbinder"},"payload":{"push_id":536865496,"size":23,"distinct_size":11,"ref":"refs/heads/push_fresh_app","head":"5d5ad21c71013531cc7b2db7fa6c1f3d4906d718","before":"0c15df8638bf5b720041578f8b710c0657a3255d","commits":[{"sha":"3e5ebab7ce6450df14eca47985018c5a6518552b","author":{"email":"9f3496284b4c2f106c6fd659e0e410c1210cf477@pivotal.io","name":"Andrew Bruce"},"message":"move command validating up into CLI [#82004144]\n\nSigned-off-by: Eric Tsiliacos ","distinct":false,"url":"https://api.github.com/repos/camelpunch/bookbinder/commits/3e5ebab7ce6450df14eca47985018c5a6518552b"},{"sha":"42870e0c517cac1c81a63ad7a4b50d3b13752c8f","author":{"email":"9f3496284b4c2f106c6fd659e0e410c1210cf477@pivotal.io","name":"Andrew Bruce"},"message":"treat flags as commands #[82004144]\n\nSigned-off-by: Eric Tsiliacos ","distinct":false,"url":"https://api.github.com/repos/camelpunch/bookbinder/commits/42870e0c517cac1c81a63ad7a4b50d3b13752c8f"},{"sha":"98676db27eb36820d9a182a9ea4312c28a3d4685","author":{"email":"9f3496284b4c2f106c6fd659e0e410c1210cf477@pivotal.io","name":"Andrew Bruce"},"message":"extract and use command validator [#82004144]\n\nSigned-off-by: Eric Tsiliacos ","distinct":false,"url":"https://api.github.com/repos/camelpunch/bookbinder/commits/98676db27eb36820d9a182a9ea4312c28a3d4685"},{"sha":"86df1b156ad5d6f56d29025e5e420f42bfb04e3d","author":{"email":"9f3496284b4c2f106c6fd659e0e410c1210cf477@pivotal.io","name":"Andrew Bruce"},"message":"Rescue RuntimeError as catch-all\n\nBare 'rescue' catches StandardErrors, which include RSpec control flow.\nWe do bare 'raise \"foo\"' for our control flow, so we want to catch\nthose.\n\nSigned-off-by: Eric Tsiliacos ","distinct":false,"url":"https://api.github.com/repos/camelpunch/bookbinder/commits/86df1b156ad5d6f56d29025e5e420f42bfb04e3d"},{"sha":"5976a8160bec94e14f930decb3f07895121ae038","author":{"email":"972fc92cb260b8a023e30788c8b1cb263f54642a@gmail.com","name":"Frank Kotsianas"},"message":"cli responds to --help [#82004144]\n\nSigned-off-by: Eric Tsiliacos ","distinct":false,"url":"https://api.github.com/repos/camelpunch/bookbinder/commits/5976a8160bec94e14f930decb3f07895121ae038"},{"sha":"67bc9b496ca40af01aa343bba9066164d11aae0c","author":{"email":"972fc92cb260b8a023e30788c8b1cb263f54642a@gmail.com","name":"Frank Kotsianas"},"message":"Clean up cli test duplication\n\nSigned-off-by: Eric Tsiliacos ","distinct":false,"url":"https://api.github.com/repos/camelpunch/bookbinder/commits/67bc9b496ca40af01aa343bba9066164d11aae0c"},{"sha":"66058e7f0beeb2a9ebe6fd7b1a803ae1e3ed4e1c","author":{"email":"972fc92cb260b8a023e30788c8b1cb263f54642a@gmail.com","name":"Frank Kotsianas"},"message":"remove mention of tag usage for the publish command [#82004144]\n\nSigned-off-by: Eric Tsiliacos ","distinct":false,"url":"https://api.github.com/repos/camelpunch/bookbinder/commits/66058e7f0beeb2a9ebe6fd7b1a803ae1e3ed4e1c"},{"sha":"5bde9c174c1595751d76907162c28697cafab49a","author":{"email":"972fc92cb260b8a023e30788c8b1cb263f54642a@gmail.com","name":"Frank Kotsianas"},"message":"Add usage description to each CLI command. [Finishes #82004144]\n\nSigned-off-by: Eric Tsiliacos ","distinct":false,"url":"https://api.github.com/repos/camelpunch/bookbinder/commits/5bde9c174c1595751d76907162c28697cafab49a"},{"sha":"4fd3aacebe7321ee0caeaad209dfc6be0967b678","author":{"email":"1052601b1ceb37a5b799506ba1c30e0105032b48@pivotal.io","name":"Eric Tsiliacos"},"message":"Present help message when bookbinder is called without arguments. [Finishes #85316408]\n\nSigned-off-by: Frank Kotsianas ","distinct":false,"url":"https://api.github.com/repos/camelpunch/bookbinder/commits/4fd3aacebe7321ee0caeaad209dfc6be0967b678"},{"sha":"009f0fe721a52210829a7ea4d3600ecc40ed1eca","author":{"email":"1052601b1ceb37a5b799506ba1c30e0105032b48@pivotal.io","name":"Eric Tsiliacos"},"message":"update copies for command usage messages [#82004144]\n\nSigned-off-by: Frank Kotsianas ","distinct":false,"url":"https://api.github.com/repos/camelpunch/bookbinder/commits/009f0fe721a52210829a7ea4d3600ecc40ed1eca"},{"sha":"94a347472568bc04871750672b38941f6de34d11","author":{"email":"1052601b1ceb37a5b799506ba1c30e0105032b48@pivotal.io","name":"Eric Tsiliacos"},"message":"Update formatting of --help usage messages. [#82004144].\n\nSigned-off-by: Frank Kotsianas ","distinct":false,"url":"https://api.github.com/repos/camelpunch/bookbinder/commits/94a347472568bc04871750672b38941f6de34d11"},{"sha":"f4965930117f5eacb05fffbb2fcddbb48512d202","author":{"email":"02e0a999c50b1f88df7a8f5a04e1b76b35ea6a88@camelpunch.com","name":"Andrew Bruce"},"message":"Use pry-byebug for debugging","distinct":false,"url":"https://api.github.com/repos/camelpunch/bookbinder/commits/f4965930117f5eacb05fffbb2fcddbb48512d202"},{"sha":"a065f0531b835ce479a3cc065779ec1d750c6db2","author":{"email":"02e0a999c50b1f88df7a8f5a04e1b76b35ea6a88@camelpunch.com","name":"Andrew Bruce"},"message":"Centralize processing of 'cf routes' output\n\n[#83972842]","distinct":true,"url":"https://api.github.com/repos/camelpunch/bookbinder/commits/a065f0531b835ce479a3cc065779ec1d750c6db2"},{"sha":"e6cf5f4646933ec38afa49a9cbf4416b725bae53","author":{"email":"02e0a999c50b1f88df7a8f5a04e1b76b35ea6a88@camelpunch.com","name":"Andrew Bruce"},"message":"whitespace","distinct":true,"url":"https://api.github.com/repos/camelpunch/bookbinder/commits/e6cf5f4646933ec38afa49a9cbf4416b725bae53"},{"sha":"f5d027fa878335d3e87284ab784e557efc3046cb","author":{"email":"02e0a999c50b1f88df7a8f5a04e1b76b35ea6a88@camelpunch.com","name":"Andrew Bruce"},"message":"Refactoring. Flattening and moisturising of specs.\n\n[#83972842]","distinct":true,"url":"https://api.github.com/repos/camelpunch/bookbinder/commits/f5d027fa878335d3e87284ab784e557efc3046cb"},{"sha":"f5cddbdb1fa04dc88aec734c198ef0745878e470","author":{"email":"02e0a999c50b1f88df7a8f5a04e1b76b35ea6a88@camelpunch.com","name":"Andrew Bruce"},"message":"Convert a stateful transform into reduce\n\n[#83972842]","distinct":true,"url":"https://api.github.com/repos/camelpunch/bookbinder/commits/f5cddbdb1fa04dc88aec734c198ef0745878e470"},{"sha":"e6f31b5a3eaa06321b4b846a01f12011dd23eb6b","author":{"email":"02e0a999c50b1f88df7a8f5a04e1b76b35ea6a88@camelpunch.com","name":"Andrew Bruce"},"message":"Stop testing an undeclared private method\n\n[#83972842]","distinct":true,"url":"https://api.github.com/repos/camelpunch/bookbinder/commits/e6f31b5a3eaa06321b4b846a01f12011dd23eb6b"},{"sha":"80d345a51dc4f0b2f3610b2835398c7168b40396","author":{"email":"02e0a999c50b1f88df7a8f5a04e1b76b35ea6a88@camelpunch.com","name":"Andrew Bruce"},"message":"Only query API once\n\n[#83972842]","distinct":true,"url":"https://api.github.com/repos/camelpunch/bookbinder/commits/80d345a51dc4f0b2f3610b2835398c7168b40396"},{"sha":"bf8dc100ab91468a1071468af2f2d2b4907bdb62","author":{"email":"02e0a999c50b1f88df7a8f5a04e1b76b35ea6a88@camelpunch.com","name":"Andrew Bruce"},"message":"Make method private\n\n[#83972842]","distinct":true,"url":"https://api.github.com/repos/camelpunch/bookbinder/commits/bf8dc100ab91468a1071468af2f2d2b4907bdb62"},{"sha":"787b2133ffc2c3bc98a364dae5fd9f8ed1ae828c","author":{"email":"02e0a999c50b1f88df7a8f5a04e1b76b35ea6a88@camelpunch.com","name":"Andrew Bruce"},"message":"Extract a CliRoutesParser\n\nAlso, move processing of credentials routes to CfCredentials\n\n[#83972842]","distinct":true,"url":"https://api.github.com/repos/camelpunch/bookbinder/commits/787b2133ffc2c3bc98a364dae5fd9f8ed1ae828c"}]},"public":true,"created_at":"2015-01-01T15:07:11Z"} +,{"id":"2489654362","type":"PushEvent","actor":{"id":1835559,"login":"donat-b","gravatar_id":"","url":"https://api.github.com/users/donat-b","avatar_url":"https://avatars.githubusercontent.com/u/1835559?"},"repo":{"id":26043807,"name":"ayntest/ayntest_game","url":"https://api.github.com/repos/ayntest/ayntest_game"},"payload":{"push_id":536865498,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d3bc20e58207f7195d445cedd6786ccd6b60be28","before":"7827207182fa8b6401698048930a7b636c2c6829","commits":[{"sha":"d3bc20e58207f7195d445cedd6786ccd6b60be28","author":{"email":"09cc31699be5b6558b22f1da8c65899ea236fee9@openmailbox.org","name":"Donat Kh"},"message":"Delete license.txt","distinct":true,"url":"https://api.github.com/repos/ayntest/ayntest_game/commits/d3bc20e58207f7195d445cedd6786ccd6b60be28"}]},"public":true,"created_at":"2015-01-01T15:07:11Z","org":{"id":8595961,"login":"ayntest","gravatar_id":"","url":"https://api.github.com/orgs/ayntest","avatar_url":"https://avatars.githubusercontent.com/u/8595961?"}} +,{"id":"2489654366","type":"WatchEvent","actor":{"id":1765755,"login":"lucasbrendel","gravatar_id":"","url":"https://api.github.com/users/lucasbrendel","avatar_url":"https://avatars.githubusercontent.com/u/1765755?"},"repo":{"id":28550311,"name":"HermitApp/hermit","url":"https://api.github.com/repos/HermitApp/hermit"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:07:11Z","org":{"id":10327713,"login":"HermitApp","gravatar_id":"","url":"https://api.github.com/orgs/HermitApp","avatar_url":"https://avatars.githubusercontent.com/u/10327713?"}} +,{"id":"2489654369","type":"WatchEvent","actor":{"id":2792717,"login":"subjam","gravatar_id":"","url":"https://api.github.com/users/subjam","avatar_url":"https://avatars.githubusercontent.com/u/2792717?"},"repo":{"id":24182261,"name":"khizmax/libcds","url":"https://api.github.com/repos/khizmax/libcds"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:07:11Z"} +,{"id":"2489654370","type":"WatchEvent","actor":{"id":831962,"login":"bgruszka","gravatar_id":"","url":"https://api.github.com/users/bgruszka","avatar_url":"https://avatars.githubusercontent.com/u/831962?"},"repo":{"id":16012579,"name":"nvbn/subman","url":"https://api.github.com/repos/nvbn/subman"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:07:11Z"} +,{"id":"2489654375","type":"PullRequestReviewCommentEvent","actor":{"id":459648,"login":"samsonasik","gravatar_id":"","url":"https://api.github.com/users/samsonasik","avatar_url":"https://avatars.githubusercontent.com/u/459648?"},"repo":{"id":702550,"name":"zendframework/zf2","url":"https://api.github.com/repos/zendframework/zf2"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/22400107","id":22400107,"diff_hunk":"@@ -0,0 +1,150 @@\n+ array('allowed-1', 'allowed-2')\r\n));\r\necho $whitelist->filter('allowed-2'); // => 'allowed-2'\r\necho $whitelist->filter('not-allowed'); // => null\r\n```\r\n\r\n### Blacklist\r\n```php\r\n$blacklist = new \\Zend\\Filter\\Whitelist(array(\r\n 'type' => 'blacklist', // optional, default is 'whitelist'\r\n 'list' => array('not-allowed-1', 'not-allowed-2')\r\n));\r\necho $blacklist->filter('allowed'); // => 'allowed'\r\necho $blacklist->filter('not-allowed-2'); // => null\r\n```\r\n\r\n### Notes \r\n\r\n1. Maybe calling the filter class `Whitelist` might be counter-intuitive if the desired behavior is that of a blacklist. But I couldn't think of a better way to name the filter, so I'm open to suggestions:\r\n * Something like \"AllowedList\" would just be a synonym of \"whitelist\". \r\n * \"List\" would just be too vague.\r\n * Separate filter classes seemed overkill.\r\n2. I decided to allow only one type of configuration in the constructor (by array of options) just to keep it simple. If you'd like to allow for a more dynamic constructor (like a few other filters do) let me know.\r\n3. Not sure what commit edbc12b is doing in this PR. Looks like its in `master` but not in `develop`.\r\n\r\nSee #6960 for more info.","created_at":"2014-12-05T16:02:35Z","updated_at":"2015-01-01T15:07:12Z","closed_at":null,"merged_at":null,"merge_commit_sha":"305e637f84c8f628496932bd99c0195a0a503c44","assignee":{"login":"Ocramius","id":154256,"avatar_url":"https://avatars.githubusercontent.com/u/154256?v=3","gravatar_id":"","url":"https://api.github.com/users/Ocramius","html_url":"https://github.com/Ocramius","followers_url":"https://api.github.com/users/Ocramius/followers","following_url":"https://api.github.com/users/Ocramius/following{/other_user}","gists_url":"https://api.github.com/users/Ocramius/gists{/gist_id}","starred_url":"https://api.github.com/users/Ocramius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Ocramius/subscriptions","organizations_url":"https://api.github.com/users/Ocramius/orgs","repos_url":"https://api.github.com/users/Ocramius/repos","events_url":"https://api.github.com/users/Ocramius/events{/privacy}","received_events_url":"https://api.github.com/users/Ocramius/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/zendframework/zf2/milestones/26","labels_url":"https://api.github.com/repos/zendframework/zf2/milestones/26/labels","id":593244,"number":26,"title":"2.4.0","description":null,"creator":{"login":"weierophinney","id":25943,"avatar_url":"https://avatars.githubusercontent.com/u/25943?v=3","gravatar_id":"","url":"https://api.github.com/users/weierophinney","html_url":"https://github.com/weierophinney","followers_url":"https://api.github.com/users/weierophinney/followers","following_url":"https://api.github.com/users/weierophinney/following{/other_user}","gists_url":"https://api.github.com/users/weierophinney/gists{/gist_id}","starred_url":"https://api.github.com/users/weierophinney/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/weierophinney/subscriptions","organizations_url":"https://api.github.com/users/weierophinney/orgs","repos_url":"https://api.github.com/users/weierophinney/repos","events_url":"https://api.github.com/users/weierophinney/events{/privacy}","received_events_url":"https://api.github.com/users/weierophinney/received_events","type":"User","site_admin":false},"open_issues":34,"closed_issues":163,"state":"open","created_at":"2014-03-10T21:38:11Z","updated_at":"2014-12-31T09:55:26Z","due_on":null,"closed_at":null},"commits_url":"https://api.github.com/repos/zendframework/zf2/pulls/6962/commits","review_comments_url":"https://api.github.com/repos/zendframework/zf2/pulls/6962/comments","review_comment_url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/{number}","comments_url":"https://api.github.com/repos/zendframework/zf2/issues/6962/comments","statuses_url":"https://api.github.com/repos/zendframework/zf2/statuses/58ef5245151d935d9031d42a504cfab37297af9e","head":{"label":"gabrielsomoza:gabriel/zf-6960-whitelist-filter","ref":"gabriel/zf-6960-whitelist-filter","sha":"58ef5245151d935d9031d42a504cfab37297af9e","user":{"login":"gabrielsomoza","id":106219,"avatar_url":"https://avatars.githubusercontent.com/u/106219?v=3","gravatar_id":"","url":"https://api.github.com/users/gabrielsomoza","html_url":"https://github.com/gabrielsomoza","followers_url":"https://api.github.com/users/gabrielsomoza/followers","following_url":"https://api.github.com/users/gabrielsomoza/following{/other_user}","gists_url":"https://api.github.com/users/gabrielsomoza/gists{/gist_id}","starred_url":"https://api.github.com/users/gabrielsomoza/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gabrielsomoza/subscriptions","organizations_url":"https://api.github.com/users/gabrielsomoza/orgs","repos_url":"https://api.github.com/users/gabrielsomoza/repos","events_url":"https://api.github.com/users/gabrielsomoza/events{/privacy}","received_events_url":"https://api.github.com/users/gabrielsomoza/received_events","type":"User","site_admin":false},"repo":{"id":27590921,"name":"zf2","full_name":"gabrielsomoza/zf2","owner":{"login":"gabrielsomoza","id":106219,"avatar_url":"https://avatars.githubusercontent.com/u/106219?v=3","gravatar_id":"","url":"https://api.github.com/users/gabrielsomoza","html_url":"https://github.com/gabrielsomoza","followers_url":"https://api.github.com/users/gabrielsomoza/followers","following_url":"https://api.github.com/users/gabrielsomoza/following{/other_user}","gists_url":"https://api.github.com/users/gabrielsomoza/gists{/gist_id}","starred_url":"https://api.github.com/users/gabrielsomoza/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gabrielsomoza/subscriptions","organizations_url":"https://api.github.com/users/gabrielsomoza/orgs","repos_url":"https://api.github.com/users/gabrielsomoza/repos","events_url":"https://api.github.com/users/gabrielsomoza/events{/privacy}","received_events_url":"https://api.github.com/users/gabrielsomoza/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/gabrielsomoza/zf2","description":"Official Zend Framework 2 git repository","fork":true,"url":"https://api.github.com/repos/gabrielsomoza/zf2","forks_url":"https://api.github.com/repos/gabrielsomoza/zf2/forks","keys_url":"https://api.github.com/repos/gabrielsomoza/zf2/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gabrielsomoza/zf2/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gabrielsomoza/zf2/teams","hooks_url":"https://api.github.com/repos/gabrielsomoza/zf2/hooks","issue_events_url":"https://api.github.com/repos/gabrielsomoza/zf2/issues/events{/number}","events_url":"https://api.github.com/repos/gabrielsomoza/zf2/events","assignees_url":"https://api.github.com/repos/gabrielsomoza/zf2/assignees{/user}","branches_url":"https://api.github.com/repos/gabrielsomoza/zf2/branches{/branch}","tags_url":"https://api.github.com/repos/gabrielsomoza/zf2/tags","blobs_url":"https://api.github.com/repos/gabrielsomoza/zf2/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gabrielsomoza/zf2/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gabrielsomoza/zf2/git/refs{/sha}","trees_url":"https://api.github.com/repos/gabrielsomoza/zf2/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gabrielsomoza/zf2/statuses/{sha}","languages_url":"https://api.github.com/repos/gabrielsomoza/zf2/languages","stargazers_url":"https://api.github.com/repos/gabrielsomoza/zf2/stargazers","contributors_url":"https://api.github.com/repos/gabrielsomoza/zf2/contributors","subscribers_url":"https://api.github.com/repos/gabrielsomoza/zf2/subscribers","subscription_url":"https://api.github.com/repos/gabrielsomoza/zf2/subscription","commits_url":"https://api.github.com/repos/gabrielsomoza/zf2/commits{/sha}","git_commits_url":"https://api.github.com/repos/gabrielsomoza/zf2/git/commits{/sha}","comments_url":"https://api.github.com/repos/gabrielsomoza/zf2/comments{/number}","issue_comment_url":"https://api.github.com/repos/gabrielsomoza/zf2/issues/comments/{number}","contents_url":"https://api.github.com/repos/gabrielsomoza/zf2/contents/{+path}","compare_url":"https://api.github.com/repos/gabrielsomoza/zf2/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gabrielsomoza/zf2/merges","archive_url":"https://api.github.com/repos/gabrielsomoza/zf2/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gabrielsomoza/zf2/downloads","issues_url":"https://api.github.com/repos/gabrielsomoza/zf2/issues{/number}","pulls_url":"https://api.github.com/repos/gabrielsomoza/zf2/pulls{/number}","milestones_url":"https://api.github.com/repos/gabrielsomoza/zf2/milestones{/number}","notifications_url":"https://api.github.com/repos/gabrielsomoza/zf2/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gabrielsomoza/zf2/labels{/name}","releases_url":"https://api.github.com/repos/gabrielsomoza/zf2/releases{/id}","created_at":"2014-12-05T12:39:42Z","updated_at":"2014-12-05T12:39:55Z","pushed_at":"2014-12-11T12:53:29Z","git_url":"git://github.com/gabrielsomoza/zf2.git","ssh_url":"git@github.com:gabrielsomoza/zf2.git","clone_url":"https://github.com/gabrielsomoza/zf2.git","svn_url":"https://github.com/gabrielsomoza/zf2","homepage":"http://framework.zend.com/","size":92512,"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":"zendframework:develop","ref":"develop","sha":"847c17cbb07f24a8da16b672840ca62ba85eb7de","user":{"login":"zendframework","id":296074,"avatar_url":"https://avatars.githubusercontent.com/u/296074?v=3","gravatar_id":"","url":"https://api.github.com/users/zendframework","html_url":"https://github.com/zendframework","followers_url":"https://api.github.com/users/zendframework/followers","following_url":"https://api.github.com/users/zendframework/following{/other_user}","gists_url":"https://api.github.com/users/zendframework/gists{/gist_id}","starred_url":"https://api.github.com/users/zendframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zendframework/subscriptions","organizations_url":"https://api.github.com/users/zendframework/orgs","repos_url":"https://api.github.com/users/zendframework/repos","events_url":"https://api.github.com/users/zendframework/events{/privacy}","received_events_url":"https://api.github.com/users/zendframework/received_events","type":"Organization","site_admin":false},"repo":{"id":702550,"name":"zf2","full_name":"zendframework/zf2","owner":{"login":"zendframework","id":296074,"avatar_url":"https://avatars.githubusercontent.com/u/296074?v=3","gravatar_id":"","url":"https://api.github.com/users/zendframework","html_url":"https://github.com/zendframework","followers_url":"https://api.github.com/users/zendframework/followers","following_url":"https://api.github.com/users/zendframework/following{/other_user}","gists_url":"https://api.github.com/users/zendframework/gists{/gist_id}","starred_url":"https://api.github.com/users/zendframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zendframework/subscriptions","organizations_url":"https://api.github.com/users/zendframework/orgs","repos_url":"https://api.github.com/users/zendframework/repos","events_url":"https://api.github.com/users/zendframework/events{/privacy}","received_events_url":"https://api.github.com/users/zendframework/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/zendframework/zf2","description":"Official Zend Framework 2 git repository","fork":false,"url":"https://api.github.com/repos/zendframework/zf2","forks_url":"https://api.github.com/repos/zendframework/zf2/forks","keys_url":"https://api.github.com/repos/zendframework/zf2/keys{/key_id}","collaborators_url":"https://api.github.com/repos/zendframework/zf2/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/zendframework/zf2/teams","hooks_url":"https://api.github.com/repos/zendframework/zf2/hooks","issue_events_url":"https://api.github.com/repos/zendframework/zf2/issues/events{/number}","events_url":"https://api.github.com/repos/zendframework/zf2/events","assignees_url":"https://api.github.com/repos/zendframework/zf2/assignees{/user}","branches_url":"https://api.github.com/repos/zendframework/zf2/branches{/branch}","tags_url":"https://api.github.com/repos/zendframework/zf2/tags","blobs_url":"https://api.github.com/repos/zendframework/zf2/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/zendframework/zf2/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/zendframework/zf2/git/refs{/sha}","trees_url":"https://api.github.com/repos/zendframework/zf2/git/trees{/sha}","statuses_url":"https://api.github.com/repos/zendframework/zf2/statuses/{sha}","languages_url":"https://api.github.com/repos/zendframework/zf2/languages","stargazers_url":"https://api.github.com/repos/zendframework/zf2/stargazers","contributors_url":"https://api.github.com/repos/zendframework/zf2/contributors","subscribers_url":"https://api.github.com/repos/zendframework/zf2/subscribers","subscription_url":"https://api.github.com/repos/zendframework/zf2/subscription","commits_url":"https://api.github.com/repos/zendframework/zf2/commits{/sha}","git_commits_url":"https://api.github.com/repos/zendframework/zf2/git/commits{/sha}","comments_url":"https://api.github.com/repos/zendframework/zf2/comments{/number}","issue_comment_url":"https://api.github.com/repos/zendframework/zf2/issues/comments/{number}","contents_url":"https://api.github.com/repos/zendframework/zf2/contents/{+path}","compare_url":"https://api.github.com/repos/zendframework/zf2/compare/{base}...{head}","merges_url":"https://api.github.com/repos/zendframework/zf2/merges","archive_url":"https://api.github.com/repos/zendframework/zf2/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/zendframework/zf2/downloads","issues_url":"https://api.github.com/repos/zendframework/zf2/issues{/number}","pulls_url":"https://api.github.com/repos/zendframework/zf2/pulls{/number}","milestones_url":"https://api.github.com/repos/zendframework/zf2/milestones{/number}","notifications_url":"https://api.github.com/repos/zendframework/zf2/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/zendframework/zf2/labels{/name}","releases_url":"https://api.github.com/repos/zendframework/zf2/releases{/id}","created_at":"2010-06-04T02:42:05Z","updated_at":"2014-12-31T13:29:16Z","pushed_at":"2014-12-31T10:44:38Z","git_url":"git://github.com/zendframework/zf2.git","ssh_url":"git@github.com:zendframework/zf2.git","clone_url":"https://github.com/zendframework/zf2.git","svn_url":"https://github.com/zendframework/zf2","homepage":"http://framework.zend.com/","size":217086,"stargazers_count":4972,"watchers_count":4972,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":3016,"mirror_url":null,"open_issues_count":601,"forks":3016,"open_issues":601,"watchers":4972,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6962"},"html":{"href":"https://github.com/zendframework/zf2/pull/6962"},"issue":{"href":"https://api.github.com/repos/zendframework/zf2/issues/6962"},"comments":{"href":"https://api.github.com/repos/zendframework/zf2/issues/6962/comments"},"review_comments":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6962/comments"},"review_comment":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6962/commits"},"statuses":{"href":"https://api.github.com/repos/zendframework/zf2/statuses/58ef5245151d935d9031d42a504cfab37297af9e"}}}},"public":true,"created_at":"2015-01-01T15:07:12Z","org":{"id":296074,"login":"zendframework","gravatar_id":"","url":"https://api.github.com/orgs/zendframework","avatar_url":"https://avatars.githubusercontent.com/u/296074?"}} +,{"id":"2489654378","type":"PushEvent","actor":{"id":2042205,"login":"bioops","gravatar_id":"","url":"https://api.github.com/users/bioops","avatar_url":"https://avatars.githubusercontent.com/u/2042205?"},"repo":{"id":10267648,"name":"bioops/bioops.github.io","url":"https://api.github.com/repos/bioops/bioops.github.io"},"payload":{"push_id":536865503,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"372c705bbd01b37132683995e27f12802042e9cf","before":"98a9cd9cd1123de0d74aa918b4cc16ca6eafdff6","commits":[{"sha":"372c705bbd01b37132683995e27f12802042e9cf","author":{"email":"b2eaeb522340eb8a723bba2ceaa674a3c4c3e5d8@gmail.com","name":"bioops"},"message":"Site updated at 2015-01-01 15:07:11 UTC","distinct":true,"url":"https://api.github.com/repos/bioops/bioops.github.io/commits/372c705bbd01b37132683995e27f12802042e9cf"}]},"public":true,"created_at":"2015-01-01T15:07:13Z"} +,{"id":"2489654379","type":"PushEvent","actor":{"id":10290491,"login":"janakact","gravatar_id":"","url":"https://api.github.com/users/janakact","avatar_url":"https://avatars.githubusercontent.com/u/10290491?"},"repo":{"id":28686805,"name":"janakact/twitHits","url":"https://api.github.com/repos/janakact/twitHits"},"payload":{"push_id":536865504,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8aefe32e7d3b7282f88309f2f762d43eb2672528","before":"a9577027f6584293b7842869867a1e5934226da4","commits":[{"sha":"8aefe32e7d3b7282f88309f2f762d43eb2672528","author":{"email":"2617b6e965482967123ffba1d3030a19adea75d2@gmail.com","name":"janakact"},"message":"Setting up the Database and Server\n\nPython - SQLite Database","distinct":true,"url":"https://api.github.com/repos/janakact/twitHits/commits/8aefe32e7d3b7282f88309f2f762d43eb2672528"}]},"public":true,"created_at":"2015-01-01T15:07:13Z"} +,{"id":"2489654384","type":"IssuesEvent","actor":{"id":5514202,"login":"DeeJee","gravatar_id":"","url":"https://api.github.com/users/DeeJee","avatar_url":"https://avatars.githubusercontent.com/u/5514202?"},"repo":{"id":28571307,"name":"DeeJee/VhpTimeLogger","url":"https://api.github.com/repos/DeeJee/VhpTimeLogger"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/5","labels_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/5/comments","events_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/5/events","html_url":"https://github.com/DeeJee/VhpTimeLogger/issues/5","id":53221475,"number":5,"title":"Beheren projecten / activiteiten","user":{"login":"DeeJee","id":5514202,"avatar_url":"https://avatars.githubusercontent.com/u/5514202?v=3","gravatar_id":"","url":"https://api.github.com/users/DeeJee","html_url":"https://github.com/DeeJee","followers_url":"https://api.github.com/users/DeeJee/followers","following_url":"https://api.github.com/users/DeeJee/following{/other_user}","gists_url":"https://api.github.com/users/DeeJee/gists{/gist_id}","starred_url":"https://api.github.com/users/DeeJee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeeJee/subscriptions","organizations_url":"https://api.github.com/users/DeeJee/orgs","repos_url":"https://api.github.com/users/DeeJee/repos","events_url":"https://api.github.com/users/DeeJee/events{/privacy}","received_events_url":"https://api.github.com/users/DeeJee/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:07:14Z","updated_at":"2015-01-01T15:07:14Z","closed_at":null,"body":"Kun je de projecten / activiteiten automatisch laten bijwerken na sluiten van het beheerscherm? Nu moet het programma nog afgesloten worden om te kunnen bijwerken"}},"public":true,"created_at":"2015-01-01T15:07:14Z"} +,{"id":"2489654386","type":"PushEvent","actor":{"id":6040962,"login":"odanado","gravatar_id":"","url":"https://api.github.com/users/odanado","avatar_url":"https://avatars.githubusercontent.com/u/6040962?"},"repo":{"id":28435941,"name":"odanado/PokeRNG","url":"https://api.github.com/repos/odanado/PokeRNG"},"payload":{"push_id":536865507,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"21543f4eac21013eb5451494d847558821fddb92","before":"9d8339c12f98f03369387ef656188c7f10546942","commits":[{"sha":"21543f4eac21013eb5451494d847558821fddb92","author":{"email":"5ac3c635f40996696b4c73f8a55f31ae87ec6208@gmail.com","name":"odan"},"message":"スマホからでもコピーライトが見えるようにした","distinct":true,"url":"https://api.github.com/repos/odanado/PokeRNG/commits/21543f4eac21013eb5451494d847558821fddb92"}]},"public":true,"created_at":"2015-01-01T15:07:14Z"} +,{"id":"2489654389","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":536865508,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6fdf755f303f142e018853deb7a95f080fe72613","before":"a245f2ede928a3045dc96100c175b25713efa654","commits":[{"sha":"6fdf755f303f142e018853deb7a95f080fe72613","author":{"email":"87c01f2a11d6af298dcc61e432606186023760d0@gmail.com","name":"Eric Hartmann"},"message":"Add GA","distinct":true,"url":"https://api.github.com/repos/ElsaBonnaud/WebSite/commits/6fdf755f303f142e018853deb7a95f080fe72613"}]},"public":true,"created_at":"2015-01-01T15:07:14Z"} +,{"id":"2489654390","type":"PushEvent","actor":{"id":8107219,"login":"xenodium","gravatar_id":"","url":"https://api.github.com/users/xenodium","avatar_url":"https://avatars.githubusercontent.com/u/8107219?"},"repo":{"id":21790449,"name":"xenodium/xenodium.github.io","url":"https://api.github.com/repos/xenodium/xenodium.github.io"},"payload":{"push_id":536865510,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"77adf567cfa55bdb17d9df0a91ac8b06b6f52e18","before":"1882897174c0b2898ed22962fcc3784120d21573","commits":[{"sha":"77adf567cfa55bdb17d9df0a91ac8b06b6f52e18","author":{"email":"5b2d0c210c4a9fd6aeaf2eaedf8273be993c90c2@xenodium.com","name":"alvaro"},"message":"Adding org mode links.","distinct":true,"url":"https://api.github.com/repos/xenodium/xenodium.github.io/commits/77adf567cfa55bdb17d9df0a91ac8b06b6f52e18"}]},"public":true,"created_at":"2015-01-01T15:07:14Z"} +,{"id":"2489654392","type":"PushEvent","actor":{"id":389861,"login":"ZoogieZork","gravatar_id":"","url":"https://api.github.com/users/ZoogieZork","avatar_url":"https://avatars.githubusercontent.com/u/389861?"},"repo":{"id":6660510,"name":"HoverRace/HoverRace","url":"https://api.github.com/repos/HoverRace/HoverRace"},"payload":{"push_id":536865511,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6cae6c3a49cfd1dd6dde7371e931e2f9ef8e62a9","before":"d2295bf869e98d1361e0803c59b2c82d03671087","commits":[{"sha":"6cae6c3a49cfd1dd6dde7371e931e2f9ef8e62a9","author":{"email":"ad312012bb5f4f9d2a9d598fc62050de6dde1721@lugatgt.org","name":"Michael Imamura"},"message":"Upgrade to Cotire 1.6.8.\n\nThis fixes issues with CMake 3.1.\n\nNote: We still don't officially support Cotire unity builds.","distinct":true,"url":"https://api.github.com/repos/HoverRace/HoverRace/commits/6cae6c3a49cfd1dd6dde7371e931e2f9ef8e62a9"}]},"public":true,"created_at":"2015-01-01T15:07:14Z","org":{"id":2780013,"login":"HoverRace","gravatar_id":"","url":"https://api.github.com/orgs/HoverRace","avatar_url":"https://avatars.githubusercontent.com/u/2780013?"}} +,{"id":"2489654393","type":"PushEvent","actor":{"id":9547742,"login":"adlpzrmn","gravatar_id":"","url":"https://api.github.com/users/adlpzrmn","avatar_url":"https://avatars.githubusercontent.com/u/9547742?"},"repo":{"id":26164184,"name":"adlpzrmn/adlpzrmn.github.io","url":"https://api.github.com/repos/adlpzrmn/adlpzrmn.github.io"},"payload":{"push_id":536865512,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"752a21bebc8817ff655c14730571ec6e1c862cf8","before":"90a06d70ee7c4253c350d40220a3d6e93cc18877","commits":[{"sha":"752a21bebc8817ff655c14730571ec6e1c862cf8","author":{"email":"909227e65a07389f2f74ddd2ac8f9d538341fdbf@yahoo.es","name":"adlpzrmn"},"message":"[HTML5 MOOC] [Módulo 10] [Ejercicios P2P]\n\nCorrección de mismo nombre y versión en ambos manifest","distinct":true,"url":"https://api.github.com/repos/adlpzrmn/adlpzrmn.github.io/commits/752a21bebc8817ff655c14730571ec6e1c862cf8"}]},"public":true,"created_at":"2015-01-01T15:07:14Z"} +,{"id":"2489654399","type":"PushEvent","actor":{"id":8036795,"login":"lilutanya","gravatar_id":"","url":"https://api.github.com/users/lilutanya","avatar_url":"https://avatars.githubusercontent.com/u/8036795?"},"repo":{"id":28629261,"name":"lilutanya/dojo_rules","url":"https://api.github.com/repos/lilutanya/dojo_rules"},"payload":{"push_id":536865517,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"064335cd441e38b93f058f4979a06a91593d8301","before":"9111975d8b080da1e8e482b3e1888c4d27a3efcc","commits":[{"sha":"064335cd441e38b93f058f4979a06a91593d8301","author":{"email":"8458e22f204983eea9394bb266c8181ba024a86f@gmail.com","name":"lilutanya"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/lilutanya/dojo_rules/commits/064335cd441e38b93f058f4979a06a91593d8301"}]},"public":true,"created_at":"2015-01-01T15:07:15Z"} +,{"id":"2489654400","type":"PushEvent","actor":{"id":9688486,"login":"FengXingYuXin","gravatar_id":"","url":"https://api.github.com/users/FengXingYuXin","avatar_url":"https://avatars.githubusercontent.com/u/9688486?"},"repo":{"id":28216598,"name":"FengXingYuXin/SGI-STL-source","url":"https://api.github.com/repos/FengXingYuXin/SGI-STL-source"},"payload":{"push_id":536865518,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"057cce17d93e5a15d9102c994ba9237da4249770","before":"737f125eef6a47d8c323340be2c1ee87f0a6329a","commits":[{"sha":"057cce17d93e5a15d9102c994ba9237da4249770","author":{"email":"d804600d20e64ba945d90b6cf57b923d75ec72b1@163.com","name":"周峰"},"message":"Update stl_algo.h","distinct":true,"url":"https://api.github.com/repos/FengXingYuXin/SGI-STL-source/commits/057cce17d93e5a15d9102c994ba9237da4249770"}]},"public":true,"created_at":"2015-01-01T15:07:15Z"} +,{"id":"2489654408","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":536865521,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"dee13ca32b9cab72963e5d87408bc8cc8aae2a98","before":"b342cfaf4ee9c14d6185f4b97022fa6b2d29e830","commits":[{"sha":"dee13ca32b9cab72963e5d87408bc8cc8aae2a98","author":{"email":"df05f55543db3c62cf64f7438018ec37f3605d3c@gmail.com","name":"Eunsoo Lee"},"message":"#19 통신 메시지 출력 설정 삭제","distinct":true,"url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/commits/dee13ca32b9cab72963e5d87408bc8cc8aae2a98"}]},"public":true,"created_at":"2015-01-01T15:07:16Z"} +,{"id":"2489654411","type":"WatchEvent","actor":{"id":1765755,"login":"lucasbrendel","gravatar_id":"","url":"https://api.github.com/users/lucasbrendel","avatar_url":"https://avatars.githubusercontent.com/u/1765755?"},"repo":{"id":28552946,"name":"HermitApp/hermit-plugin","url":"https://api.github.com/repos/HermitApp/hermit-plugin"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:07:16Z","org":{"id":10327713,"login":"HermitApp","gravatar_id":"","url":"https://api.github.com/orgs/HermitApp","avatar_url":"https://avatars.githubusercontent.com/u/10327713?"}} +,{"id":"2489654413","type":"CreateEvent","actor":{"id":1834070,"login":"patriklindstrom","gravatar_id":"","url":"https://api.github.com/users/patriklindstrom","avatar_url":"https://avatars.githubusercontent.com/u/1834070?"},"repo":{"id":28688724,"name":"patriklindstrom/attkopa","url":"https://api.github.com/repos/patriklindstrom/attkopa"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"A to buy groceries app made in Meteor on nodejs. I is a test to develop with Meteor on a VM linux machine on nitreous.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:07:18Z"} +,{"id":"2489654416","type":"ForkEvent","actor":{"id":92577,"login":"upsilon","gravatar_id":"","url":"https://api.github.com/users/upsilon","avatar_url":"https://avatars.githubusercontent.com/u/92577?"},"repo":{"id":1888972,"name":"takeshik/yacq","url":"https://api.github.com/repos/takeshik/yacq"},"payload":{"forkee":{"id":28688725,"name":"yacq","full_name":"upsilon/yacq","owner":{"login":"upsilon","id":92577,"avatar_url":"https://avatars.githubusercontent.com/u/92577?v=3","gravatar_id":"","url":"https://api.github.com/users/upsilon","html_url":"https://github.com/upsilon","followers_url":"https://api.github.com/users/upsilon/followers","following_url":"https://api.github.com/users/upsilon/following{/other_user}","gists_url":"https://api.github.com/users/upsilon/gists{/gist_id}","starred_url":"https://api.github.com/users/upsilon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/upsilon/subscriptions","organizations_url":"https://api.github.com/users/upsilon/orgs","repos_url":"https://api.github.com/users/upsilon/repos","events_url":"https://api.github.com/users/upsilon/events{/privacy}","received_events_url":"https://api.github.com/users/upsilon/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/upsilon/yacq","description":"Yet Another Compilable Query Language for .NET, based on Expression Trees API","fork":true,"url":"https://api.github.com/repos/upsilon/yacq","forks_url":"https://api.github.com/repos/upsilon/yacq/forks","keys_url":"https://api.github.com/repos/upsilon/yacq/keys{/key_id}","collaborators_url":"https://api.github.com/repos/upsilon/yacq/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/upsilon/yacq/teams","hooks_url":"https://api.github.com/repos/upsilon/yacq/hooks","issue_events_url":"https://api.github.com/repos/upsilon/yacq/issues/events{/number}","events_url":"https://api.github.com/repos/upsilon/yacq/events","assignees_url":"https://api.github.com/repos/upsilon/yacq/assignees{/user}","branches_url":"https://api.github.com/repos/upsilon/yacq/branches{/branch}","tags_url":"https://api.github.com/repos/upsilon/yacq/tags","blobs_url":"https://api.github.com/repos/upsilon/yacq/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/upsilon/yacq/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/upsilon/yacq/git/refs{/sha}","trees_url":"https://api.github.com/repos/upsilon/yacq/git/trees{/sha}","statuses_url":"https://api.github.com/repos/upsilon/yacq/statuses/{sha}","languages_url":"https://api.github.com/repos/upsilon/yacq/languages","stargazers_url":"https://api.github.com/repos/upsilon/yacq/stargazers","contributors_url":"https://api.github.com/repos/upsilon/yacq/contributors","subscribers_url":"https://api.github.com/repos/upsilon/yacq/subscribers","subscription_url":"https://api.github.com/repos/upsilon/yacq/subscription","commits_url":"https://api.github.com/repos/upsilon/yacq/commits{/sha}","git_commits_url":"https://api.github.com/repos/upsilon/yacq/git/commits{/sha}","comments_url":"https://api.github.com/repos/upsilon/yacq/comments{/number}","issue_comment_url":"https://api.github.com/repos/upsilon/yacq/issues/comments/{number}","contents_url":"https://api.github.com/repos/upsilon/yacq/contents/{+path}","compare_url":"https://api.github.com/repos/upsilon/yacq/compare/{base}...{head}","merges_url":"https://api.github.com/repos/upsilon/yacq/merges","archive_url":"https://api.github.com/repos/upsilon/yacq/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/upsilon/yacq/downloads","issues_url":"https://api.github.com/repos/upsilon/yacq/issues{/number}","pulls_url":"https://api.github.com/repos/upsilon/yacq/pulls{/number}","milestones_url":"https://api.github.com/repos/upsilon/yacq/milestones{/number}","notifications_url":"https://api.github.com/repos/upsilon/yacq/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/upsilon/yacq/labels{/name}","releases_url":"https://api.github.com/repos/upsilon/yacq/releases{/id}","created_at":"2015-01-01T15:07:17Z","updated_at":"2014-12-21T13:39:48Z","pushed_at":"2013-10-11T17:47:26Z","git_url":"git://github.com/upsilon/yacq.git","ssh_url":"git@github.com:upsilon/yacq.git","clone_url":"https://github.com/upsilon/yacq.git","svn_url":"https://github.com/upsilon/yacq","homepage":"http://yacq.net/","size":12260,"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":"develop","public":true}},"public":true,"created_at":"2015-01-01T15:07:18Z"} +,{"id":"2489654417","type":"PushEvent","actor":{"id":1473701,"login":"myarichuk","gravatar_id":"","url":"https://api.github.com/users/myarichuk","avatar_url":"https://avatars.githubusercontent.com/u/1473701?"},"repo":{"id":13218168,"name":"myarichuk/ravendb","url":"https://api.github.com/repos/myarichuk/ravendb"},"payload":{"push_id":536865522,"size":3,"distinct_size":3,"ref":"refs/heads/RavenDB-3025","head":"0da88493bf2b0866cd6dde2cf866bbc0a39e1c79","before":"ee7e9bab27c9473ce26b8f4019b0a9f7da07c394","commits":[{"sha":"c6be6f319bfbe4c3fe1b26b5a316702b97eda7c4","author":{"email":"442479e538d65b5b2e24921828463c68c80368a6@gmail.com","name":"Michael Yarichuk"},"message":"finished adding support for cancellation token for IAsyncDatabaseCommands implementation","distinct":true,"url":"https://api.github.com/repos/myarichuk/ravendb/commits/c6be6f319bfbe4c3fe1b26b5a316702b97eda7c4"},{"sha":"d5e6ac92360247c73c8f09f3c7355080813fd26e","author":{"email":"442479e538d65b5b2e24921828463c68c80368a6@gmail.com","name":"Michael Yarichuk"},"message":"added cancellation token to implementation of IAsyncGlobalAdminDatabaseCommands","distinct":true,"url":"https://api.github.com/repos/myarichuk/ravendb/commits/d5e6ac92360247c73c8f09f3c7355080813fd26e"},{"sha":"0da88493bf2b0866cd6dde2cf866bbc0a39e1c79","author":{"email":"442479e538d65b5b2e24921828463c68c80368a6@gmail.com","name":"Michael Yarichuk"},"message":"added cancellation tokens to IAsyncAdminDatabaseCommands implementation","distinct":true,"url":"https://api.github.com/repos/myarichuk/ravendb/commits/0da88493bf2b0866cd6dde2cf866bbc0a39e1c79"}]},"public":true,"created_at":"2015-01-01T15:07:18Z"} +,{"id":"2489654419","type":"PushEvent","actor":{"id":298984,"login":"blaubaer","gravatar_id":"","url":"https://api.github.com/users/blaubaer","avatar_url":"https://avatars.githubusercontent.com/u/298984?"},"repo":{"id":28340333,"name":"echocat/locela-api-java","url":"https://api.github.com/repos/echocat/locela-api-java"},"payload":{"push_id":536865523,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"be46f2e8fffecadab342f12574c6fb3106736e62","before":"10b249a14445ee66a1965b833db20de7e8eaf731","commits":[{"sha":"be46f2e8fffecadab342f12574c6fb3106736e62","author":{"email":"5fdc67d2166bcdd1d3aa4ed45ea5a25e9b21bc20@noczinski.eu","name":"Gregor Noczinski"},"message":"Improved LocaleHierarchy","distinct":true,"url":"https://api.github.com/repos/echocat/locela-api-java/commits/be46f2e8fffecadab342f12574c6fb3106736e62"}]},"public":true,"created_at":"2015-01-01T15:07:18Z","org":{"id":3128980,"login":"echocat","gravatar_id":"","url":"https://api.github.com/orgs/echocat","avatar_url":"https://avatars.githubusercontent.com/u/3128980?"}} +,{"id":"2489654420","type":"IssueCommentEvent","actor":{"id":2429503,"login":"Cacodaimon","gravatar_id":"","url":"https://api.github.com/users/Cacodaimon","avatar_url":"https://avatars.githubusercontent.com/u/2429503?"},"repo":{"id":15013132,"name":"Cacodaimon/CacoCloud","url":"https://api.github.com/repos/Cacodaimon/CacoCloud"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/Cacodaimon/CacoCloud/issues/19","labels_url":"https://api.github.com/repos/Cacodaimon/CacoCloud/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/Cacodaimon/CacoCloud/issues/19/comments","events_url":"https://api.github.com/repos/Cacodaimon/CacoCloud/issues/19/events","html_url":"https://github.com/Cacodaimon/CacoCloud/issues/19","id":53183687,"number":19,"title":"Installation","user":{"login":"la0wei","id":3761308,"avatar_url":"https://avatars.githubusercontent.com/u/3761308?v=3","gravatar_id":"","url":"https://api.github.com/users/la0wei","html_url":"https://github.com/la0wei","followers_url":"https://api.github.com/users/la0wei/followers","following_url":"https://api.github.com/users/la0wei/following{/other_user}","gists_url":"https://api.github.com/users/la0wei/gists{/gist_id}","starred_url":"https://api.github.com/users/la0wei/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/la0wei/subscriptions","organizations_url":"https://api.github.com/users/la0wei/orgs","repos_url":"https://api.github.com/users/la0wei/repos","events_url":"https://api.github.com/users/la0wei/events{/privacy}","received_events_url":"https://api.github.com/users/la0wei/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-31T13:21:26Z","updated_at":"2015-01-01T15:07:18Z","closed_at":"2015-01-01T15:07:18Z","body":"I have a vps running debian 7.I just installed lamp env and nothong configured.\r\nJust put files in the /var/www/ folder, I navigate to xxx.com/install,nothing shows.\r\nIf navigate to xx.com, it shows the xxx.com/#/login page ,I can view the login page.\r\nBut I didn't finish the installation,ofcource I can't.\r\nwhat happend?PHP scripts permisson or something else?"},"comment":{"url":"https://api.github.com/repos/Cacodaimon/CacoCloud/issues/comments/68488624","html_url":"https://github.com/Cacodaimon/CacoCloud/issues/19#issuecomment-68488624","issue_url":"https://api.github.com/repos/Cacodaimon/CacoCloud/issues/19","id":68488624,"user":{"login":"Cacodaimon","id":2429503,"avatar_url":"https://avatars.githubusercontent.com/u/2429503?v=3","gravatar_id":"","url":"https://api.github.com/users/Cacodaimon","html_url":"https://github.com/Cacodaimon","followers_url":"https://api.github.com/users/Cacodaimon/followers","following_url":"https://api.github.com/users/Cacodaimon/following{/other_user}","gists_url":"https://api.github.com/users/Cacodaimon/gists{/gist_id}","starred_url":"https://api.github.com/users/Cacodaimon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Cacodaimon/subscriptions","organizations_url":"https://api.github.com/users/Cacodaimon/orgs","repos_url":"https://api.github.com/users/Cacodaimon/repos","events_url":"https://api.github.com/users/Cacodaimon/events{/privacy}","received_events_url":"https://api.github.com/users/Cacodaimon/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:07:18Z","updated_at":"2015-01-01T15:07:18Z","body":"If you follow these [instructions](https://gist.github.com/Cacodaimon/2ce343ec3605de96eb14 ) which are shown in this [video](https://www.youtube.com/watch?v=6nWa1qQuda4) everything works well.\r\n\r\n"}},"public":true,"created_at":"2015-01-01T15:07:18Z"} +,{"id":"2489654421","type":"IssuesEvent","actor":{"id":2429503,"login":"Cacodaimon","gravatar_id":"","url":"https://api.github.com/users/Cacodaimon","avatar_url":"https://avatars.githubusercontent.com/u/2429503?"},"repo":{"id":15013132,"name":"Cacodaimon/CacoCloud","url":"https://api.github.com/repos/Cacodaimon/CacoCloud"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/Cacodaimon/CacoCloud/issues/19","labels_url":"https://api.github.com/repos/Cacodaimon/CacoCloud/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/Cacodaimon/CacoCloud/issues/19/comments","events_url":"https://api.github.com/repos/Cacodaimon/CacoCloud/issues/19/events","html_url":"https://github.com/Cacodaimon/CacoCloud/issues/19","id":53183687,"number":19,"title":"Installation","user":{"login":"la0wei","id":3761308,"avatar_url":"https://avatars.githubusercontent.com/u/3761308?v=3","gravatar_id":"","url":"https://api.github.com/users/la0wei","html_url":"https://github.com/la0wei","followers_url":"https://api.github.com/users/la0wei/followers","following_url":"https://api.github.com/users/la0wei/following{/other_user}","gists_url":"https://api.github.com/users/la0wei/gists{/gist_id}","starred_url":"https://api.github.com/users/la0wei/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/la0wei/subscriptions","organizations_url":"https://api.github.com/users/la0wei/orgs","repos_url":"https://api.github.com/users/la0wei/repos","events_url":"https://api.github.com/users/la0wei/events{/privacy}","received_events_url":"https://api.github.com/users/la0wei/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-31T13:21:26Z","updated_at":"2015-01-01T15:07:18Z","closed_at":"2015-01-01T15:07:18Z","body":"I have a vps running debian 7.I just installed lamp env and nothong configured.\r\nJust put files in the /var/www/ folder, I navigate to xxx.com/install,nothing shows.\r\nIf navigate to xx.com, it shows the xxx.com/#/login page ,I can view the login page.\r\nBut I didn't finish the installation,ofcource I can't.\r\nwhat happend?PHP scripts permisson or something else?"}},"public":true,"created_at":"2015-01-01T15:07:18Z"} +,{"id":"2489654424","type":"PushEvent","actor":{"id":9889333,"login":"helalyne","gravatar_id":"","url":"https://api.github.com/users/helalyne","avatar_url":"https://avatars.githubusercontent.com/u/9889333?"},"repo":{"id":28417617,"name":"helalyne/secret-wookie","url":"https://api.github.com/repos/helalyne/secret-wookie"},"payload":{"push_id":536865525,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ec125477ae4644c2d93af711b571e17aebecb50e","before":"79267bc0abde2034610e271fac7c8a521bc8a94f","commits":[{"sha":"ec125477ae4644c2d93af711b571e17aebecb50e","author":{"email":"903e3d37c1727b6be48c362779ac5dc97a065b34@gmail.com","name":"Anastasia Kucherova"},"message":"Design experiments","distinct":true,"url":"https://api.github.com/repos/helalyne/secret-wookie/commits/ec125477ae4644c2d93af711b571e17aebecb50e"}]},"public":true,"created_at":"2015-01-01T15:07:18Z"} +,{"id":"2489654425","type":"PushEvent","actor":{"id":1349719,"login":"Rolos","gravatar_id":"","url":"https://api.github.com/users/Rolos","avatar_url":"https://avatars.githubusercontent.com/u/1349719?"},"repo":{"id":26723157,"name":"Rolos/Quizmaniac","url":"https://api.github.com/repos/Rolos/Quizmaniac"},"payload":{"push_id":536865526,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4e977173032491039f40e9c44938a3264825b0e6","before":"075546951dec19b9511f27e501d1ae0dfc4e030d","commits":[{"sha":"4e977173032491039f40e9c44938a3264825b0e6","author":{"email":"c80c86607818b7830709ffaf7592bc2b71204ed1@gmail.com","name":"lsierra"},"message":"Resolve saving results and updating quizzes","distinct":true,"url":"https://api.github.com/repos/Rolos/Quizmaniac/commits/4e977173032491039f40e9c44938a3264825b0e6"}]},"public":true,"created_at":"2015-01-01T15:07:18Z"} +,{"id":"2489654426","type":"ForkEvent","actor":{"id":1572750,"login":"bhurtelashish","gravatar_id":"","url":"https://api.github.com/users/bhurtelashish","avatar_url":"https://avatars.githubusercontent.com/u/1572750?"},"repo":{"id":309113,"name":"gregkh/kernel-tutorial","url":"https://api.github.com/repos/gregkh/kernel-tutorial"},"payload":{"forkee":{"id":28688726,"name":"kernel-tutorial","full_name":"bhurtelashish/kernel-tutorial","owner":{"login":"bhurtelashish","id":1572750,"avatar_url":"https://avatars.githubusercontent.com/u/1572750?v=3","gravatar_id":"","url":"https://api.github.com/users/bhurtelashish","html_url":"https://github.com/bhurtelashish","followers_url":"https://api.github.com/users/bhurtelashish/followers","following_url":"https://api.github.com/users/bhurtelashish/following{/other_user}","gists_url":"https://api.github.com/users/bhurtelashish/gists{/gist_id}","starred_url":"https://api.github.com/users/bhurtelashish/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhurtelashish/subscriptions","organizations_url":"https://api.github.com/users/bhurtelashish/orgs","repos_url":"https://api.github.com/users/bhurtelashish/repos","events_url":"https://api.github.com/users/bhurtelashish/events{/privacy}","received_events_url":"https://api.github.com/users/bhurtelashish/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/bhurtelashish/kernel-tutorial","description":"Basic \"How to write a Linux kernel patch and submit it\" tutorial","fork":true,"url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial","forks_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/forks","keys_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/keys{/key_id}","collaborators_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/teams","hooks_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/hooks","issue_events_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/issues/events{/number}","events_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/events","assignees_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/assignees{/user}","branches_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/branches{/branch}","tags_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/tags","blobs_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/git/refs{/sha}","trees_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/git/trees{/sha}","statuses_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/statuses/{sha}","languages_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/languages","stargazers_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/stargazers","contributors_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/contributors","subscribers_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/subscribers","subscription_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/subscription","commits_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/commits{/sha}","git_commits_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/git/commits{/sha}","comments_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/comments{/number}","issue_comment_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/issues/comments/{number}","contents_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/contents/{+path}","compare_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/compare/{base}...{head}","merges_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/merges","archive_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/downloads","issues_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/issues{/number}","pulls_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/pulls{/number}","milestones_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/milestones{/number}","notifications_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/labels{/name}","releases_url":"https://api.github.com/repos/bhurtelashish/kernel-tutorial/releases{/id}","created_at":"2015-01-01T15:07:18Z","updated_at":"2014-12-27T16:53:36Z","pushed_at":"2014-10-13T20:44:20Z","git_url":"git://github.com/bhurtelashish/kernel-tutorial.git","ssh_url":"git@github.com:bhurtelashish/kernel-tutorial.git","clone_url":"https://github.com/bhurtelashish/kernel-tutorial.git","svn_url":"https://github.com/bhurtelashish/kernel-tutorial","homepage":"","size":4722,"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:07:19Z"} +,{"id":"2489654427","type":"CreateEvent","actor":{"id":856271,"login":"brndmg","gravatar_id":"","url":"https://api.github.com/users/brndmg","avatar_url":"https://avatars.githubusercontent.com/u/856271?"},"repo":{"id":28688056,"name":"brndmg/node-eversocket","url":"https://api.github.com/repos/brndmg/node-eversocket"},"payload":{"ref":"issue-4","ref_type":"branch","master_branch":"master","description":"A Node.js net.Socket that automatically reconnects on close events","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:07:19Z"} +,{"id":"2489654428","type":"WatchEvent","actor":{"id":7189950,"login":"wuhp","gravatar_id":"","url":"https://api.github.com/users/wuhp","avatar_url":"https://avatars.githubusercontent.com/u/7189950?"},"repo":{"id":5425992,"name":"apcera/nats","url":"https://api.github.com/repos/apcera/nats"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:07:19Z","org":{"id":1637964,"login":"apcera","gravatar_id":"","url":"https://api.github.com/orgs/apcera","avatar_url":"https://avatars.githubusercontent.com/u/1637964?"}} +,{"id":"2489654429","type":"IssuesEvent","actor":{"id":1459257,"login":"lloydbenson","gravatar_id":"","url":"https://api.github.com/users/lloydbenson","avatar_url":"https://avatars.githubusercontent.com/u/1459257?"},"repo":{"id":23593166,"name":"fishin/reel","url":"https://api.github.com/repos/fishin/reel"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/fishin/reel/issues/25","labels_url":"https://api.github.com/repos/fishin/reel/issues/25/labels{/name}","comments_url":"https://api.github.com/repos/fishin/reel/issues/25/comments","events_url":"https://api.github.com/repos/fishin/reel/issues/25/events","html_url":"https://github.com/fishin/reel/issues/25","id":53221477,"number":25,"title":"branch not catching something?","user":{"login":"lloydbenson","id":1459257,"avatar_url":"https://avatars.githubusercontent.com/u/1459257?v=3","gravatar_id":"","url":"https://api.github.com/users/lloydbenson","html_url":"https://github.com/lloydbenson","followers_url":"https://api.github.com/users/lloydbenson/followers","following_url":"https://api.github.com/users/lloydbenson/following{/other_user}","gists_url":"https://api.github.com/users/lloydbenson/gists{/gist_id}","starred_url":"https://api.github.com/users/lloydbenson/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lloydbenson/subscriptions","organizations_url":"https://api.github.com/users/lloydbenson/orgs","repos_url":"https://api.github.com/users/lloydbenson/repos","events_url":"https://api.github.com/users/lloydbenson/events{/privacy}","received_events_url":"https://api.github.com/users/lloydbenson/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:07:19Z","updated_at":"2015-01-01T15:07:19Z","closed_at":null,"body":"When switching to an invalid branch in github, I can't seem to capture the full error.\r\n\r\nI capture:\r\n\r\n {\r\n \"command\": \"git clone --depth=50 --branch=master1 https://github.com/fishin/tacklebox .\",\r\n \"stderr\": \"Unexpected end of command stream\\n\",\r\n \"startTime\": 1420123642439,\r\n \"pid\": 75967,\r\n \"finishTime\": 1420123642930,\r\n \"code\": 128,\r\n \"signal\": null\r\n },\r\n\r\nInstead of:\r\n\r\nlbenson-mbp:blah lbenson$ git clone --depth=50 --branch=master1 https://github.com/fishin/tacklebox .\r\nCloning into '.'...\r\nwarning: Could not find remote branch master1 to clone.\r\nfatal: Remote branch master1 not found in upstream origin\r\nUnexpected end of command stream\r\n\r\nBe nice if I also saw the rest. maybe I am missing an append?"}},"public":true,"created_at":"2015-01-01T15:07:19Z","org":{"id":8632751,"login":"fishin","gravatar_id":"","url":"https://api.github.com/orgs/fishin","avatar_url":"https://avatars.githubusercontent.com/u/8632751?"}} +,{"id":"2489654433","type":"IssuesEvent","actor":{"id":10364656,"login":"lorenzobjero","gravatar_id":"","url":"https://api.github.com/users/lorenzobjero","avatar_url":"https://avatars.githubusercontent.com/u/10364656?"},"repo":{"id":28688588,"name":"lorenzobjero/hello-world","url":"https://api.github.com/repos/lorenzobjero/hello-world"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/lorenzobjero/hello-world/issues/1","labels_url":"https://api.github.com/repos/lorenzobjero/hello-world/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/lorenzobjero/hello-world/issues/1/comments","events_url":"https://api.github.com/repos/lorenzobjero/hello-world/issues/1/events","html_url":"https://github.com/lorenzobjero/hello-world/issues/1","id":53221478,"number":1,"title":"Finish README","user":{"login":"lorenzobjero","id":10364656,"avatar_url":"https://avatars.githubusercontent.com/u/10364656?v=3","gravatar_id":"","url":"https://api.github.com/users/lorenzobjero","html_url":"https://github.com/lorenzobjero","followers_url":"https://api.github.com/users/lorenzobjero/followers","following_url":"https://api.github.com/users/lorenzobjero/following{/other_user}","gists_url":"https://api.github.com/users/lorenzobjero/gists{/gist_id}","starred_url":"https://api.github.com/users/lorenzobjero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lorenzobjero/subscriptions","organizations_url":"https://api.github.com/users/lorenzobjero/orgs","repos_url":"https://api.github.com/users/lorenzobjero/repos","events_url":"https://api.github.com/users/lorenzobjero/events{/privacy}","received_events_url":"https://api.github.com/users/lorenzobjero/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:07:20Z","updated_at":"2015-01-01T15:07:20Z","closed_at":null,"body":"Provide description and full understanding of the repository"}},"public":true,"created_at":"2015-01-01T15:07:20Z"} +,{"id":"2489654434","type":"IssuesEvent","actor":{"id":3275813,"login":"darkled","gravatar_id":"","url":"https://api.github.com/users/darkled","avatar_url":"https://avatars.githubusercontent.com/u/3275813?"},"repo":{"id":12590126,"name":"jcabi/jcabi-aspects","url":"https://api.github.com/repos/jcabi/jcabi-aspects"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/jcabi/jcabi-aspects/issues/122","labels_url":"https://api.github.com/repos/jcabi/jcabi-aspects/issues/122/labels{/name}","comments_url":"https://api.github.com/repos/jcabi/jcabi-aspects/issues/122/comments","events_url":"https://api.github.com/repos/jcabi/jcabi-aspects/issues/122/events","html_url":"https://github.com/jcabi/jcabi-aspects/issues/122","id":53221479,"number":122,"title":"Different results of local and CI qulice invocation","user":{"login":"darkled","id":3275813,"avatar_url":"https://avatars.githubusercontent.com/u/3275813?v=3","gravatar_id":"","url":"https://api.github.com/users/darkled","html_url":"https://github.com/darkled","followers_url":"https://api.github.com/users/darkled/followers","following_url":"https://api.github.com/users/darkled/following{/other_user}","gists_url":"https://api.github.com/users/darkled/gists{/gist_id}","starred_url":"https://api.github.com/users/darkled/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/darkled/subscriptions","organizations_url":"https://api.github.com/users/darkled/orgs","repos_url":"https://api.github.com/users/darkled/repos","events_url":"https://api.github.com/users/darkled/events{/privacy}","received_events_url":"https://api.github.com/users/darkled/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:07:20Z","updated_at":"2015-01-01T15:07:20Z","closed_at":null,"body":"Running locally `mvn clean install -Pqulice` leads to 450+ lines in the build log looking like\r\n````\r\n...\r\n[ERROR] \\src\\test\\java\\com\\jcabi\\aspects\\UnitedThrowTest.java[118]: Lines in file should end with Unix-like end of line (RegexpMultilineCheck)\r\n[ERROR] \\src\\test\\java\\com\\jcabi\\aspects\\UnitedThrowTest.java[129]: Lines in file should end with Unix-like end of line (RegexpMultilineCheck)\r\n[ERROR] \\src\\test\\java\\com\\jcabi\\aspects\\UnitedThrowTest.java[137]: Lines in file should end with Unix-like end of line (RegexpMultilineCheck)\r\n[ERROR] \\src\\test\\java\\com\\jcabi\\aspects\\UnitedThrowTest.java[148]: Lines in file should end with Unix-like end of line (RegexpMultilineCheck)\r\n[ERROR] \\src\\test\\resources\\log4j.properties[27]: Lines in file should end with Unix-like end of line (RegexpMultilineCheck)\r\n[ERROR] \\src\\test\\resources\\log4j.properties[32]: Lines in file should end with Unix-like end of line (RegexpMultilineCheck)\r\n[INFO] Read our quality policy: http://www.qulice.com/quality.html\r\n[INFO] ------------------------------------------------------------------------\r\n[INFO] BUILD FAILURE\r\n[INFO] ------------------------------------------------------------------------\r\n...\r\n```\r\nIt differs from the actual result [here](https://travis-ci.org/jcabi/jcabi-aspects/jobs/45504605), but should not.\r\n\r\n`mvn -version` returns the following:\r\n```\r\nApache Maven 3.2.5 (12a6b3acb947671f09b81f49094c53f426d8cea1; 2014-12-14T12:59:23-04:30)\r\nMaven home: d:\\apps\\apache-maven-3.2.5\\bin\\..\r\nJava version: 1.6.0_45, vendor: Sun Microsystems Inc.\r\nJava home: c:\\Program Files\\Java\\jdk1.6.0_45\\jre\r\nDefault locale: ru_RU, platform encoding: Cp1251\r\nOS name: \"windows 7\", version: \"6.1\", arch: \"amd64\", family: \"windows\"\r\n```"}},"public":true,"created_at":"2015-01-01T15:07:20Z","org":{"id":5272640,"login":"jcabi","gravatar_id":"","url":"https://api.github.com/orgs/jcabi","avatar_url":"https://avatars.githubusercontent.com/u/5272640?"}} +,{"id":"2489654438","type":"WatchEvent","actor":{"id":1765755,"login":"lucasbrendel","gravatar_id":"","url":"https://api.github.com/users/lucasbrendel","avatar_url":"https://avatars.githubusercontent.com/u/1765755?"},"repo":{"id":28609404,"name":"HermitApp/hermit-appearance-plugin","url":"https://api.github.com/repos/HermitApp/hermit-appearance-plugin"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:07:20Z","org":{"id":10327713,"login":"HermitApp","gravatar_id":"","url":"https://api.github.com/orgs/HermitApp","avatar_url":"https://avatars.githubusercontent.com/u/10327713?"}} +,{"id":"2489654441","type":"CreateEvent","actor":{"id":2767023,"login":"ajcowking","gravatar_id":"","url":"https://api.github.com/users/ajcowking","avatar_url":"https://avatars.githubusercontent.com/u/2767023?"},"repo":{"id":28688727,"name":"ajcowking/hello-world","url":"https://api.github.com/repos/ajcowking/hello-world"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Just another repository","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:07:21Z"} +,{"id":"2489654447","type":"IssueCommentEvent","actor":{"id":2559305,"login":"sagarinnova","gravatar_id":"","url":"https://api.github.com/users/sagarinnova","avatar_url":"https://avatars.githubusercontent.com/u/2559305?"},"repo":{"id":18860433,"name":"krisrak/jquery-cordova-oauth2","url":"https://api.github.com/repos/krisrak/jquery-cordova-oauth2"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/krisrak/jquery-cordova-oauth2/issues/8","labels_url":"https://api.github.com/repos/krisrak/jquery-cordova-oauth2/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/krisrak/jquery-cordova-oauth2/issues/8/comments","events_url":"https://api.github.com/repos/krisrak/jquery-cordova-oauth2/issues/8/events","html_url":"https://github.com/krisrak/jquery-cordova-oauth2/issues/8","id":53220810,"number":8,"title":"App stays at account.google.com approval page","user":{"login":"sagarinnova","id":2559305,"avatar_url":"https://avatars.githubusercontent.com/u/2559305?v=3","gravatar_id":"","url":"https://api.github.com/users/sagarinnova","html_url":"https://github.com/sagarinnova","followers_url":"https://api.github.com/users/sagarinnova/followers","following_url":"https://api.github.com/users/sagarinnova/following{/other_user}","gists_url":"https://api.github.com/users/sagarinnova/gists{/gist_id}","starred_url":"https://api.github.com/users/sagarinnova/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sagarinnova/subscriptions","organizations_url":"https://api.github.com/users/sagarinnova/orgs","repos_url":"https://api.github.com/users/sagarinnova/repos","events_url":"https://api.github.com/users/sagarinnova/events{/privacy}","received_events_url":"https://api.github.com/users/sagarinnova/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T14:32:01Z","updated_at":"2015-01-01T15:07:21Z","closed_at":"2015-01-01T15:07:21Z","body":"Hi,\r\nThank you for the plugin. I am not sure where I am doing wrong. \r\nI am using cordova version 4.1.2 and building the app for iOS. Below are the steps I followed.\r\n\r\n1. Created the client id for iOS application \r\n2. In index.html copied the client ID and client Secret\r\n3. response_type is given as \"code\"\r\n4. redirect_uri I have given as \"urn:ietf:wg:oauth:2.0:oob\" which auto created while creating client ID\r\n5. Have also installed in app browser plugin\r\n\r\nNow when I run the app and click on \"Oauth2 Login\" button, the in app browser is opened with Google login screen. \r\n\r\nI gave the credential and then , google displays the approval page with my application name. \r\nWhen I click on \"Accept\" , I get the page with my login name and display pic , along with the \"code\". However I am not able to proceed further. The page has message \"Please copy this code, switch to your application and paste it there\" with a \"code\" in a textbox. \r\n\r\nIt should logically take me to success call back , however it stays on approval page. Attaching the page. \r\n\r\nPlease let me know , where am I doing mistake. \r\n\r\nThanks,\r\nSagar\r\n![ios simulator screen shot 01-jan-2015 7 44 27 pm](https://cloud.githubusercontent.com/assets/2559305/5592350/02da82c8-91f1-11e4-9075-c4de9811c8e4.png)\r\n"},"comment":{"url":"https://api.github.com/repos/krisrak/jquery-cordova-oauth2/issues/comments/68488626","html_url":"https://github.com/krisrak/jquery-cordova-oauth2/issues/8#issuecomment-68488626","issue_url":"https://api.github.com/repos/krisrak/jquery-cordova-oauth2/issues/8","id":68488626,"user":{"login":"sagarinnova","id":2559305,"avatar_url":"https://avatars.githubusercontent.com/u/2559305?v=3","gravatar_id":"","url":"https://api.github.com/users/sagarinnova","html_url":"https://github.com/sagarinnova","followers_url":"https://api.github.com/users/sagarinnova/followers","following_url":"https://api.github.com/users/sagarinnova/following{/other_user}","gists_url":"https://api.github.com/users/sagarinnova/gists{/gist_id}","starred_url":"https://api.github.com/users/sagarinnova/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sagarinnova/subscriptions","organizations_url":"https://api.github.com/users/sagarinnova/orgs","repos_url":"https://api.github.com/users/sagarinnova/repos","events_url":"https://api.github.com/users/sagarinnova/events{/privacy}","received_events_url":"https://api.github.com/users/sagarinnova/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:07:21Z","updated_at":"2015-01-01T15:07:21Z","body":"Issue was with the redirect URL, once I gave the dummy URL , I was able to redirect back to app and received the access_token. \r\n\r\nThanks."}},"public":true,"created_at":"2015-01-01T15:07:21Z"} +,{"id":"2489654449","type":"IssuesEvent","actor":{"id":2559305,"login":"sagarinnova","gravatar_id":"","url":"https://api.github.com/users/sagarinnova","avatar_url":"https://avatars.githubusercontent.com/u/2559305?"},"repo":{"id":18860433,"name":"krisrak/jquery-cordova-oauth2","url":"https://api.github.com/repos/krisrak/jquery-cordova-oauth2"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/krisrak/jquery-cordova-oauth2/issues/8","labels_url":"https://api.github.com/repos/krisrak/jquery-cordova-oauth2/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/krisrak/jquery-cordova-oauth2/issues/8/comments","events_url":"https://api.github.com/repos/krisrak/jquery-cordova-oauth2/issues/8/events","html_url":"https://github.com/krisrak/jquery-cordova-oauth2/issues/8","id":53220810,"number":8,"title":"App stays at account.google.com approval page","user":{"login":"sagarinnova","id":2559305,"avatar_url":"https://avatars.githubusercontent.com/u/2559305?v=3","gravatar_id":"","url":"https://api.github.com/users/sagarinnova","html_url":"https://github.com/sagarinnova","followers_url":"https://api.github.com/users/sagarinnova/followers","following_url":"https://api.github.com/users/sagarinnova/following{/other_user}","gists_url":"https://api.github.com/users/sagarinnova/gists{/gist_id}","starred_url":"https://api.github.com/users/sagarinnova/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sagarinnova/subscriptions","organizations_url":"https://api.github.com/users/sagarinnova/orgs","repos_url":"https://api.github.com/users/sagarinnova/repos","events_url":"https://api.github.com/users/sagarinnova/events{/privacy}","received_events_url":"https://api.github.com/users/sagarinnova/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T14:32:01Z","updated_at":"2015-01-01T15:07:21Z","closed_at":"2015-01-01T15:07:21Z","body":"Hi,\r\nThank you for the plugin. I am not sure where I am doing wrong. \r\nI am using cordova version 4.1.2 and building the app for iOS. Below are the steps I followed.\r\n\r\n1. Created the client id for iOS application \r\n2. In index.html copied the client ID and client Secret\r\n3. response_type is given as \"code\"\r\n4. redirect_uri I have given as \"urn:ietf:wg:oauth:2.0:oob\" which auto created while creating client ID\r\n5. Have also installed in app browser plugin\r\n\r\nNow when I run the app and click on \"Oauth2 Login\" button, the in app browser is opened with Google login screen. \r\n\r\nI gave the credential and then , google displays the approval page with my application name. \r\nWhen I click on \"Accept\" , I get the page with my login name and display pic , along with the \"code\". However I am not able to proceed further. The page has message \"Please copy this code, switch to your application and paste it there\" with a \"code\" in a textbox. \r\n\r\nIt should logically take me to success call back , however it stays on approval page. Attaching the page. \r\n\r\nPlease let me know , where am I doing mistake. \r\n\r\nThanks,\r\nSagar\r\n![ios simulator screen shot 01-jan-2015 7 44 27 pm](https://cloud.githubusercontent.com/assets/2559305/5592350/02da82c8-91f1-11e4-9075-c4de9811c8e4.png)\r\n"}},"public":true,"created_at":"2015-01-01T15:07:21Z"} +,{"id":"2489654456","type":"PushEvent","actor":{"id":1086018,"login":"gingerjoos","gravatar_id":"","url":"https://api.github.com/users/gingerjoos","avatar_url":"https://avatars.githubusercontent.com/u/1086018?"},"repo":{"id":15105024,"name":"CompileInc/django-sendgrid","url":"https://api.github.com/repos/CompileInc/django-sendgrid"},"payload":{"push_id":536865538,"size":3,"distinct_size":3,"ref":"refs/heads/develop","head":"1c0524ef309c9d95a9917bf14b5bdf56be278ea2","before":"a636675a5c5520e923a123d6828759ff04cad30a","commits":[{"sha":"fc45dafd0d5e076da29c339495ee3520d2eb0630","author":{"email":"7a505c8c59379ab63e5671d4342d619e98fc9c56@compile.com","name":"Anirudh S"},"message":"fix mixed-indentation","distinct":true,"url":"https://api.github.com/repos/CompileInc/django-sendgrid/commits/fc45dafd0d5e076da29c339495ee3520d2eb0630"},{"sha":"2b89cf84763ed3038e93db2e35bcda18c4c02881","author":{"email":"7a505c8c59379ab63e5671d4342d619e98fc9c56@compile.com","name":"Anirudh S"},"message":"fix Django 1.7 deprecation of simplejson util","distinct":true,"url":"https://api.github.com/repos/CompileInc/django-sendgrid/commits/2b89cf84763ed3038e93db2e35bcda18c4c02881"},{"sha":"1c0524ef309c9d95a9917bf14b5bdf56be278ea2","author":{"email":"7a505c8c59379ab63e5671d4342d619e98fc9c56@compile.com","name":"Anirudh S"},"message":"fix indentation issue","distinct":true,"url":"https://api.github.com/repos/CompileInc/django-sendgrid/commits/1c0524ef309c9d95a9917bf14b5bdf56be278ea2"}]},"public":true,"created_at":"2015-01-01T15:07:22Z","org":{"id":5548860,"login":"CompileInc","gravatar_id":"","url":"https://api.github.com/orgs/CompileInc","avatar_url":"https://avatars.githubusercontent.com/u/5548860?"}} +,{"id":"2489654459","type":"CreateEvent","actor":{"id":1678459,"login":"pustserg","gravatar_id":"","url":"https://api.github.com/users/pustserg","avatar_url":"https://avatars.githubusercontent.com/u/1678459?"},"repo":{"id":27646715,"name":"pustserg/thinknetica","url":"https://api.github.com/repos/pustserg/thinknetica"},"payload":{"ref":"feature/self_made_tags","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:07:23Z"} +,{"id":"2489654463","type":"PullRequestReviewCommentEvent","actor":{"id":459648,"login":"samsonasik","gravatar_id":"","url":"https://api.github.com/users/samsonasik","avatar_url":"https://avatars.githubusercontent.com/u/459648?"},"repo":{"id":702550,"name":"zendframework/zf2","url":"https://api.github.com/repos/zendframework/zf2"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/22400109","id":22400109,"diff_hunk":"@@ -0,0 +1,150 @@\n+ array('allowed-1', 'allowed-2')\r\n));\r\necho $whitelist->filter('allowed-2'); // => 'allowed-2'\r\necho $whitelist->filter('not-allowed'); // => null\r\n```\r\n\r\n### Blacklist\r\n```php\r\n$blacklist = new \\Zend\\Filter\\Whitelist(array(\r\n 'type' => 'blacklist', // optional, default is 'whitelist'\r\n 'list' => array('not-allowed-1', 'not-allowed-2')\r\n));\r\necho $blacklist->filter('allowed'); // => 'allowed'\r\necho $blacklist->filter('not-allowed-2'); // => null\r\n```\r\n\r\n### Notes \r\n\r\n1. Maybe calling the filter class `Whitelist` might be counter-intuitive if the desired behavior is that of a blacklist. But I couldn't think of a better way to name the filter, so I'm open to suggestions:\r\n * Something like \"AllowedList\" would just be a synonym of \"whitelist\". \r\n * \"List\" would just be too vague.\r\n * Separate filter classes seemed overkill.\r\n2. I decided to allow only one type of configuration in the constructor (by array of options) just to keep it simple. If you'd like to allow for a more dynamic constructor (like a few other filters do) let me know.\r\n3. Not sure what commit edbc12b is doing in this PR. Looks like its in `master` but not in `develop`.\r\n\r\nSee #6960 for more info.","created_at":"2014-12-05T16:02:35Z","updated_at":"2015-01-01T15:07:23Z","closed_at":null,"merged_at":null,"merge_commit_sha":"305e637f84c8f628496932bd99c0195a0a503c44","assignee":{"login":"Ocramius","id":154256,"avatar_url":"https://avatars.githubusercontent.com/u/154256?v=3","gravatar_id":"","url":"https://api.github.com/users/Ocramius","html_url":"https://github.com/Ocramius","followers_url":"https://api.github.com/users/Ocramius/followers","following_url":"https://api.github.com/users/Ocramius/following{/other_user}","gists_url":"https://api.github.com/users/Ocramius/gists{/gist_id}","starred_url":"https://api.github.com/users/Ocramius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Ocramius/subscriptions","organizations_url":"https://api.github.com/users/Ocramius/orgs","repos_url":"https://api.github.com/users/Ocramius/repos","events_url":"https://api.github.com/users/Ocramius/events{/privacy}","received_events_url":"https://api.github.com/users/Ocramius/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/zendframework/zf2/milestones/26","labels_url":"https://api.github.com/repos/zendframework/zf2/milestones/26/labels","id":593244,"number":26,"title":"2.4.0","description":null,"creator":{"login":"weierophinney","id":25943,"avatar_url":"https://avatars.githubusercontent.com/u/25943?v=3","gravatar_id":"","url":"https://api.github.com/users/weierophinney","html_url":"https://github.com/weierophinney","followers_url":"https://api.github.com/users/weierophinney/followers","following_url":"https://api.github.com/users/weierophinney/following{/other_user}","gists_url":"https://api.github.com/users/weierophinney/gists{/gist_id}","starred_url":"https://api.github.com/users/weierophinney/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/weierophinney/subscriptions","organizations_url":"https://api.github.com/users/weierophinney/orgs","repos_url":"https://api.github.com/users/weierophinney/repos","events_url":"https://api.github.com/users/weierophinney/events{/privacy}","received_events_url":"https://api.github.com/users/weierophinney/received_events","type":"User","site_admin":false},"open_issues":34,"closed_issues":163,"state":"open","created_at":"2014-03-10T21:38:11Z","updated_at":"2014-12-31T09:55:26Z","due_on":null,"closed_at":null},"commits_url":"https://api.github.com/repos/zendframework/zf2/pulls/6962/commits","review_comments_url":"https://api.github.com/repos/zendframework/zf2/pulls/6962/comments","review_comment_url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/{number}","comments_url":"https://api.github.com/repos/zendframework/zf2/issues/6962/comments","statuses_url":"https://api.github.com/repos/zendframework/zf2/statuses/58ef5245151d935d9031d42a504cfab37297af9e","head":{"label":"gabrielsomoza:gabriel/zf-6960-whitelist-filter","ref":"gabriel/zf-6960-whitelist-filter","sha":"58ef5245151d935d9031d42a504cfab37297af9e","user":{"login":"gabrielsomoza","id":106219,"avatar_url":"https://avatars.githubusercontent.com/u/106219?v=3","gravatar_id":"","url":"https://api.github.com/users/gabrielsomoza","html_url":"https://github.com/gabrielsomoza","followers_url":"https://api.github.com/users/gabrielsomoza/followers","following_url":"https://api.github.com/users/gabrielsomoza/following{/other_user}","gists_url":"https://api.github.com/users/gabrielsomoza/gists{/gist_id}","starred_url":"https://api.github.com/users/gabrielsomoza/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gabrielsomoza/subscriptions","organizations_url":"https://api.github.com/users/gabrielsomoza/orgs","repos_url":"https://api.github.com/users/gabrielsomoza/repos","events_url":"https://api.github.com/users/gabrielsomoza/events{/privacy}","received_events_url":"https://api.github.com/users/gabrielsomoza/received_events","type":"User","site_admin":false},"repo":{"id":27590921,"name":"zf2","full_name":"gabrielsomoza/zf2","owner":{"login":"gabrielsomoza","id":106219,"avatar_url":"https://avatars.githubusercontent.com/u/106219?v=3","gravatar_id":"","url":"https://api.github.com/users/gabrielsomoza","html_url":"https://github.com/gabrielsomoza","followers_url":"https://api.github.com/users/gabrielsomoza/followers","following_url":"https://api.github.com/users/gabrielsomoza/following{/other_user}","gists_url":"https://api.github.com/users/gabrielsomoza/gists{/gist_id}","starred_url":"https://api.github.com/users/gabrielsomoza/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gabrielsomoza/subscriptions","organizations_url":"https://api.github.com/users/gabrielsomoza/orgs","repos_url":"https://api.github.com/users/gabrielsomoza/repos","events_url":"https://api.github.com/users/gabrielsomoza/events{/privacy}","received_events_url":"https://api.github.com/users/gabrielsomoza/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/gabrielsomoza/zf2","description":"Official Zend Framework 2 git repository","fork":true,"url":"https://api.github.com/repos/gabrielsomoza/zf2","forks_url":"https://api.github.com/repos/gabrielsomoza/zf2/forks","keys_url":"https://api.github.com/repos/gabrielsomoza/zf2/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gabrielsomoza/zf2/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gabrielsomoza/zf2/teams","hooks_url":"https://api.github.com/repos/gabrielsomoza/zf2/hooks","issue_events_url":"https://api.github.com/repos/gabrielsomoza/zf2/issues/events{/number}","events_url":"https://api.github.com/repos/gabrielsomoza/zf2/events","assignees_url":"https://api.github.com/repos/gabrielsomoza/zf2/assignees{/user}","branches_url":"https://api.github.com/repos/gabrielsomoza/zf2/branches{/branch}","tags_url":"https://api.github.com/repos/gabrielsomoza/zf2/tags","blobs_url":"https://api.github.com/repos/gabrielsomoza/zf2/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gabrielsomoza/zf2/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gabrielsomoza/zf2/git/refs{/sha}","trees_url":"https://api.github.com/repos/gabrielsomoza/zf2/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gabrielsomoza/zf2/statuses/{sha}","languages_url":"https://api.github.com/repos/gabrielsomoza/zf2/languages","stargazers_url":"https://api.github.com/repos/gabrielsomoza/zf2/stargazers","contributors_url":"https://api.github.com/repos/gabrielsomoza/zf2/contributors","subscribers_url":"https://api.github.com/repos/gabrielsomoza/zf2/subscribers","subscription_url":"https://api.github.com/repos/gabrielsomoza/zf2/subscription","commits_url":"https://api.github.com/repos/gabrielsomoza/zf2/commits{/sha}","git_commits_url":"https://api.github.com/repos/gabrielsomoza/zf2/git/commits{/sha}","comments_url":"https://api.github.com/repos/gabrielsomoza/zf2/comments{/number}","issue_comment_url":"https://api.github.com/repos/gabrielsomoza/zf2/issues/comments/{number}","contents_url":"https://api.github.com/repos/gabrielsomoza/zf2/contents/{+path}","compare_url":"https://api.github.com/repos/gabrielsomoza/zf2/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gabrielsomoza/zf2/merges","archive_url":"https://api.github.com/repos/gabrielsomoza/zf2/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gabrielsomoza/zf2/downloads","issues_url":"https://api.github.com/repos/gabrielsomoza/zf2/issues{/number}","pulls_url":"https://api.github.com/repos/gabrielsomoza/zf2/pulls{/number}","milestones_url":"https://api.github.com/repos/gabrielsomoza/zf2/milestones{/number}","notifications_url":"https://api.github.com/repos/gabrielsomoza/zf2/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gabrielsomoza/zf2/labels{/name}","releases_url":"https://api.github.com/repos/gabrielsomoza/zf2/releases{/id}","created_at":"2014-12-05T12:39:42Z","updated_at":"2014-12-05T12:39:55Z","pushed_at":"2014-12-11T12:53:29Z","git_url":"git://github.com/gabrielsomoza/zf2.git","ssh_url":"git@github.com:gabrielsomoza/zf2.git","clone_url":"https://github.com/gabrielsomoza/zf2.git","svn_url":"https://github.com/gabrielsomoza/zf2","homepage":"http://framework.zend.com/","size":92512,"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":"zendframework:develop","ref":"develop","sha":"847c17cbb07f24a8da16b672840ca62ba85eb7de","user":{"login":"zendframework","id":296074,"avatar_url":"https://avatars.githubusercontent.com/u/296074?v=3","gravatar_id":"","url":"https://api.github.com/users/zendframework","html_url":"https://github.com/zendframework","followers_url":"https://api.github.com/users/zendframework/followers","following_url":"https://api.github.com/users/zendframework/following{/other_user}","gists_url":"https://api.github.com/users/zendframework/gists{/gist_id}","starred_url":"https://api.github.com/users/zendframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zendframework/subscriptions","organizations_url":"https://api.github.com/users/zendframework/orgs","repos_url":"https://api.github.com/users/zendframework/repos","events_url":"https://api.github.com/users/zendframework/events{/privacy}","received_events_url":"https://api.github.com/users/zendframework/received_events","type":"Organization","site_admin":false},"repo":{"id":702550,"name":"zf2","full_name":"zendframework/zf2","owner":{"login":"zendframework","id":296074,"avatar_url":"https://avatars.githubusercontent.com/u/296074?v=3","gravatar_id":"","url":"https://api.github.com/users/zendframework","html_url":"https://github.com/zendframework","followers_url":"https://api.github.com/users/zendframework/followers","following_url":"https://api.github.com/users/zendframework/following{/other_user}","gists_url":"https://api.github.com/users/zendframework/gists{/gist_id}","starred_url":"https://api.github.com/users/zendframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zendframework/subscriptions","organizations_url":"https://api.github.com/users/zendframework/orgs","repos_url":"https://api.github.com/users/zendframework/repos","events_url":"https://api.github.com/users/zendframework/events{/privacy}","received_events_url":"https://api.github.com/users/zendframework/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/zendframework/zf2","description":"Official Zend Framework 2 git repository","fork":false,"url":"https://api.github.com/repos/zendframework/zf2","forks_url":"https://api.github.com/repos/zendframework/zf2/forks","keys_url":"https://api.github.com/repos/zendframework/zf2/keys{/key_id}","collaborators_url":"https://api.github.com/repos/zendframework/zf2/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/zendframework/zf2/teams","hooks_url":"https://api.github.com/repos/zendframework/zf2/hooks","issue_events_url":"https://api.github.com/repos/zendframework/zf2/issues/events{/number}","events_url":"https://api.github.com/repos/zendframework/zf2/events","assignees_url":"https://api.github.com/repos/zendframework/zf2/assignees{/user}","branches_url":"https://api.github.com/repos/zendframework/zf2/branches{/branch}","tags_url":"https://api.github.com/repos/zendframework/zf2/tags","blobs_url":"https://api.github.com/repos/zendframework/zf2/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/zendframework/zf2/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/zendframework/zf2/git/refs{/sha}","trees_url":"https://api.github.com/repos/zendframework/zf2/git/trees{/sha}","statuses_url":"https://api.github.com/repos/zendframework/zf2/statuses/{sha}","languages_url":"https://api.github.com/repos/zendframework/zf2/languages","stargazers_url":"https://api.github.com/repos/zendframework/zf2/stargazers","contributors_url":"https://api.github.com/repos/zendframework/zf2/contributors","subscribers_url":"https://api.github.com/repos/zendframework/zf2/subscribers","subscription_url":"https://api.github.com/repos/zendframework/zf2/subscription","commits_url":"https://api.github.com/repos/zendframework/zf2/commits{/sha}","git_commits_url":"https://api.github.com/repos/zendframework/zf2/git/commits{/sha}","comments_url":"https://api.github.com/repos/zendframework/zf2/comments{/number}","issue_comment_url":"https://api.github.com/repos/zendframework/zf2/issues/comments/{number}","contents_url":"https://api.github.com/repos/zendframework/zf2/contents/{+path}","compare_url":"https://api.github.com/repos/zendframework/zf2/compare/{base}...{head}","merges_url":"https://api.github.com/repos/zendframework/zf2/merges","archive_url":"https://api.github.com/repos/zendframework/zf2/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/zendframework/zf2/downloads","issues_url":"https://api.github.com/repos/zendframework/zf2/issues{/number}","pulls_url":"https://api.github.com/repos/zendframework/zf2/pulls{/number}","milestones_url":"https://api.github.com/repos/zendframework/zf2/milestones{/number}","notifications_url":"https://api.github.com/repos/zendframework/zf2/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/zendframework/zf2/labels{/name}","releases_url":"https://api.github.com/repos/zendframework/zf2/releases{/id}","created_at":"2010-06-04T02:42:05Z","updated_at":"2014-12-31T13:29:16Z","pushed_at":"2014-12-31T10:44:38Z","git_url":"git://github.com/zendframework/zf2.git","ssh_url":"git@github.com:zendframework/zf2.git","clone_url":"https://github.com/zendframework/zf2.git","svn_url":"https://github.com/zendframework/zf2","homepage":"http://framework.zend.com/","size":217086,"stargazers_count":4972,"watchers_count":4972,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":3016,"mirror_url":null,"open_issues_count":601,"forks":3016,"open_issues":601,"watchers":4972,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6962"},"html":{"href":"https://github.com/zendframework/zf2/pull/6962"},"issue":{"href":"https://api.github.com/repos/zendframework/zf2/issues/6962"},"comments":{"href":"https://api.github.com/repos/zendframework/zf2/issues/6962/comments"},"review_comments":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6962/comments"},"review_comment":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6962/commits"},"statuses":{"href":"https://api.github.com/repos/zendframework/zf2/statuses/58ef5245151d935d9031d42a504cfab37297af9e"}}}},"public":true,"created_at":"2015-01-01T15:07:23Z","org":{"id":296074,"login":"zendframework","gravatar_id":"","url":"https://api.github.com/orgs/zendframework","avatar_url":"https://avatars.githubusercontent.com/u/296074?"}} +,{"id":"2489654464","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":15315789,"name":"qianlifeng/Wox","url":"https://api.github.com/repos/qianlifeng/Wox"},"payload":{"push_id":536865543,"size":1,"distinct_size":1,"ref":"refs/heads/V1.2.0","head":"0715018b79208ee4f29eab6301223825b704ba46","before":"d54e4dc6e410f6e2d6ced72a8815868cffa55862","commits":[{"sha":"0715018b79208ee4f29eab6301223825b704ba46","author":{"email":"8d358f8bee2d734157d908bc67029a31cccfd821@163.com","name":"qianlifeng"},"message":"Fix typo","distinct":true,"url":"https://api.github.com/repos/qianlifeng/Wox/commits/0715018b79208ee4f29eab6301223825b704ba46"}]},"public":true,"created_at":"2015-01-01T15:07:23Z"} +,{"id":"2489654467","type":"PushEvent","actor":{"id":6548646,"login":"R-OG","gravatar_id":"","url":"https://api.github.com/users/R-OG","avatar_url":"https://avatars.githubusercontent.com/u/6548646?"},"repo":{"id":27839746,"name":"R-OG/skin.1080xf.mb3","url":"https://api.github.com/repos/R-OG/skin.1080xf.mb3"},"payload":{"push_id":536865545,"size":1,"distinct_size":1,"ref":"refs/heads/EPG-Image","head":"19c62f4536c2ebb71345f1812e62105150c6046d","before":"b9ae8a1476ac9c0269e4d1119c7c10ece3a861a4","commits":[{"sha":"19c62f4536c2ebb71345f1812e62105150c6046d","author":{"email":"7ad815b5ea297cdcf77fdb68ba4fb23d32baa233@users.noreply.github.com","name":"R-OG"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/R-OG/skin.1080xf.mb3/commits/19c62f4536c2ebb71345f1812e62105150c6046d"}]},"public":true,"created_at":"2015-01-01T15:07:24Z"} +,{"id":"2489654471","type":"PullRequestEvent","actor":{"id":4732915,"login":"cuducos","gravatar_id":"","url":"https://api.github.com/users/cuducos","avatar_url":"https://avatars.githubusercontent.com/u/4732915?"},"repo":{"id":27336731,"name":"cuducos/findaconf","url":"https://api.github.com/repos/cuducos/findaconf"},"payload":{"action":"closed","number":3,"pull_request":{"url":"https://api.github.com/repos/cuducos/findaconf/pulls/3","id":26743822,"html_url":"https://github.com/cuducos/findaconf/pull/3","diff_url":"https://github.com/cuducos/findaconf/pull/3.diff","patch_url":"https://github.com/cuducos/findaconf/pull/3.patch","issue_url":"https://api.github.com/repos/cuducos/findaconf/issues/3","number":3,"state":"closed","locked":false,"title":"Create login authentication","user":{"login":"gabrielusvicente","id":4053416,"avatar_url":"https://avatars.githubusercontent.com/u/4053416?v=3","gravatar_id":"","url":"https://api.github.com/users/gabrielusvicente","html_url":"https://github.com/gabrielusvicente","followers_url":"https://api.github.com/users/gabrielusvicente/followers","following_url":"https://api.github.com/users/gabrielusvicente/following{/other_user}","gists_url":"https://api.github.com/users/gabrielusvicente/gists{/gist_id}","starred_url":"https://api.github.com/users/gabrielusvicente/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gabrielusvicente/subscriptions","organizations_url":"https://api.github.com/users/gabrielusvicente/orgs","repos_url":"https://api.github.com/users/gabrielusvicente/repos","events_url":"https://api.github.com/users/gabrielusvicente/events{/privacy}","received_events_url":"https://api.github.com/users/gabrielusvicente/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:06:50Z","updated_at":"2015-01-01T15:07:24Z","closed_at":"2015-01-01T15:07:24Z","merged_at":"2015-01-01T15:07:24Z","merge_commit_sha":"3e6a9bb5f155ed1f1ef09bf46249e08a11d3f50d","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/cuducos/findaconf/pulls/3/commits","review_comments_url":"https://api.github.com/repos/cuducos/findaconf/pulls/3/comments","review_comment_url":"https://api.github.com/repos/cuducos/findaconf/pulls/comments/{number}","comments_url":"https://api.github.com/repos/cuducos/findaconf/issues/3/comments","statuses_url":"https://api.github.com/repos/cuducos/findaconf/statuses/8dc8514a7c8e50ba40c20e8d10809c3b1e906860","head":{"label":"gabrielusvicente:OAuth","ref":"OAuth","sha":"8dc8514a7c8e50ba40c20e8d10809c3b1e906860","user":{"login":"gabrielusvicente","id":4053416,"avatar_url":"https://avatars.githubusercontent.com/u/4053416?v=3","gravatar_id":"","url":"https://api.github.com/users/gabrielusvicente","html_url":"https://github.com/gabrielusvicente","followers_url":"https://api.github.com/users/gabrielusvicente/followers","following_url":"https://api.github.com/users/gabrielusvicente/following{/other_user}","gists_url":"https://api.github.com/users/gabrielusvicente/gists{/gist_id}","starred_url":"https://api.github.com/users/gabrielusvicente/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gabrielusvicente/subscriptions","organizations_url":"https://api.github.com/users/gabrielusvicente/orgs","repos_url":"https://api.github.com/users/gabrielusvicente/repos","events_url":"https://api.github.com/users/gabrielusvicente/events{/privacy}","received_events_url":"https://api.github.com/users/gabrielusvicente/received_events","type":"User","site_admin":false},"repo":{"id":28659229,"name":"findaconf","full_name":"gabrielusvicente/findaconf","owner":{"login":"gabrielusvicente","id":4053416,"avatar_url":"https://avatars.githubusercontent.com/u/4053416?v=3","gravatar_id":"","url":"https://api.github.com/users/gabrielusvicente","html_url":"https://github.com/gabrielusvicente","followers_url":"https://api.github.com/users/gabrielusvicente/followers","following_url":"https://api.github.com/users/gabrielusvicente/following{/other_user}","gists_url":"https://api.github.com/users/gabrielusvicente/gists{/gist_id}","starred_url":"https://api.github.com/users/gabrielusvicente/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gabrielusvicente/subscriptions","organizations_url":"https://api.github.com/users/gabrielusvicente/orgs","repos_url":"https://api.github.com/users/gabrielusvicente/repos","events_url":"https://api.github.com/users/gabrielusvicente/events{/privacy}","received_events_url":"https://api.github.com/users/gabrielusvicente/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/gabrielusvicente/findaconf","description":"Mock-up for Find a Conference","fork":true,"url":"https://api.github.com/repos/gabrielusvicente/findaconf","forks_url":"https://api.github.com/repos/gabrielusvicente/findaconf/forks","keys_url":"https://api.github.com/repos/gabrielusvicente/findaconf/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gabrielusvicente/findaconf/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gabrielusvicente/findaconf/teams","hooks_url":"https://api.github.com/repos/gabrielusvicente/findaconf/hooks","issue_events_url":"https://api.github.com/repos/gabrielusvicente/findaconf/issues/events{/number}","events_url":"https://api.github.com/repos/gabrielusvicente/findaconf/events","assignees_url":"https://api.github.com/repos/gabrielusvicente/findaconf/assignees{/user}","branches_url":"https://api.github.com/repos/gabrielusvicente/findaconf/branches{/branch}","tags_url":"https://api.github.com/repos/gabrielusvicente/findaconf/tags","blobs_url":"https://api.github.com/repos/gabrielusvicente/findaconf/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gabrielusvicente/findaconf/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gabrielusvicente/findaconf/git/refs{/sha}","trees_url":"https://api.github.com/repos/gabrielusvicente/findaconf/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gabrielusvicente/findaconf/statuses/{sha}","languages_url":"https://api.github.com/repos/gabrielusvicente/findaconf/languages","stargazers_url":"https://api.github.com/repos/gabrielusvicente/findaconf/stargazers","contributors_url":"https://api.github.com/repos/gabrielusvicente/findaconf/contributors","subscribers_url":"https://api.github.com/repos/gabrielusvicente/findaconf/subscribers","subscription_url":"https://api.github.com/repos/gabrielusvicente/findaconf/subscription","commits_url":"https://api.github.com/repos/gabrielusvicente/findaconf/commits{/sha}","git_commits_url":"https://api.github.com/repos/gabrielusvicente/findaconf/git/commits{/sha}","comments_url":"https://api.github.com/repos/gabrielusvicente/findaconf/comments{/number}","issue_comment_url":"https://api.github.com/repos/gabrielusvicente/findaconf/issues/comments/{number}","contents_url":"https://api.github.com/repos/gabrielusvicente/findaconf/contents/{+path}","compare_url":"https://api.github.com/repos/gabrielusvicente/findaconf/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gabrielusvicente/findaconf/merges","archive_url":"https://api.github.com/repos/gabrielusvicente/findaconf/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gabrielusvicente/findaconf/downloads","issues_url":"https://api.github.com/repos/gabrielusvicente/findaconf/issues{/number}","pulls_url":"https://api.github.com/repos/gabrielusvicente/findaconf/pulls{/number}","milestones_url":"https://api.github.com/repos/gabrielusvicente/findaconf/milestones{/number}","notifications_url":"https://api.github.com/repos/gabrielusvicente/findaconf/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gabrielusvicente/findaconf/labels{/name}","releases_url":"https://api.github.com/repos/gabrielusvicente/findaconf/releases{/id}","created_at":"2014-12-31T07:13:08Z","updated_at":"2014-12-31T10:03:29Z","pushed_at":"2015-01-01T15:05:54Z","git_url":"git://github.com/gabrielusvicente/findaconf.git","ssh_url":"git@github.com:gabrielusvicente/findaconf.git","clone_url":"https://github.com/gabrielusvicente/findaconf.git","svn_url":"https://github.com/gabrielusvicente/findaconf","homepage":null,"size":273,"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":"cuducos:master","ref":"master","sha":"e816d1f3bcb3d0a2e5cab8dbc8ebb8e189c905e2","user":{"login":"cuducos","id":4732915,"avatar_url":"https://avatars.githubusercontent.com/u/4732915?v=3","gravatar_id":"","url":"https://api.github.com/users/cuducos","html_url":"https://github.com/cuducos","followers_url":"https://api.github.com/users/cuducos/followers","following_url":"https://api.github.com/users/cuducos/following{/other_user}","gists_url":"https://api.github.com/users/cuducos/gists{/gist_id}","starred_url":"https://api.github.com/users/cuducos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cuducos/subscriptions","organizations_url":"https://api.github.com/users/cuducos/orgs","repos_url":"https://api.github.com/users/cuducos/repos","events_url":"https://api.github.com/users/cuducos/events{/privacy}","received_events_url":"https://api.github.com/users/cuducos/received_events","type":"User","site_admin":false},"repo":{"id":27336731,"name":"findaconf","full_name":"cuducos/findaconf","owner":{"login":"cuducos","id":4732915,"avatar_url":"https://avatars.githubusercontent.com/u/4732915?v=3","gravatar_id":"","url":"https://api.github.com/users/cuducos","html_url":"https://github.com/cuducos","followers_url":"https://api.github.com/users/cuducos/followers","following_url":"https://api.github.com/users/cuducos/following{/other_user}","gists_url":"https://api.github.com/users/cuducos/gists{/gist_id}","starred_url":"https://api.github.com/users/cuducos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cuducos/subscriptions","organizations_url":"https://api.github.com/users/cuducos/orgs","repos_url":"https://api.github.com/users/cuducos/repos","events_url":"https://api.github.com/users/cuducos/events{/privacy}","received_events_url":"https://api.github.com/users/cuducos/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/cuducos/findaconf","description":"Mock-up for Find a Conference","fork":false,"url":"https://api.github.com/repos/cuducos/findaconf","forks_url":"https://api.github.com/repos/cuducos/findaconf/forks","keys_url":"https://api.github.com/repos/cuducos/findaconf/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cuducos/findaconf/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cuducos/findaconf/teams","hooks_url":"https://api.github.com/repos/cuducos/findaconf/hooks","issue_events_url":"https://api.github.com/repos/cuducos/findaconf/issues/events{/number}","events_url":"https://api.github.com/repos/cuducos/findaconf/events","assignees_url":"https://api.github.com/repos/cuducos/findaconf/assignees{/user}","branches_url":"https://api.github.com/repos/cuducos/findaconf/branches{/branch}","tags_url":"https://api.github.com/repos/cuducos/findaconf/tags","blobs_url":"https://api.github.com/repos/cuducos/findaconf/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cuducos/findaconf/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cuducos/findaconf/git/refs{/sha}","trees_url":"https://api.github.com/repos/cuducos/findaconf/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cuducos/findaconf/statuses/{sha}","languages_url":"https://api.github.com/repos/cuducos/findaconf/languages","stargazers_url":"https://api.github.com/repos/cuducos/findaconf/stargazers","contributors_url":"https://api.github.com/repos/cuducos/findaconf/contributors","subscribers_url":"https://api.github.com/repos/cuducos/findaconf/subscribers","subscription_url":"https://api.github.com/repos/cuducos/findaconf/subscription","commits_url":"https://api.github.com/repos/cuducos/findaconf/commits{/sha}","git_commits_url":"https://api.github.com/repos/cuducos/findaconf/git/commits{/sha}","comments_url":"https://api.github.com/repos/cuducos/findaconf/comments{/number}","issue_comment_url":"https://api.github.com/repos/cuducos/findaconf/issues/comments/{number}","contents_url":"https://api.github.com/repos/cuducos/findaconf/contents/{+path}","compare_url":"https://api.github.com/repos/cuducos/findaconf/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cuducos/findaconf/merges","archive_url":"https://api.github.com/repos/cuducos/findaconf/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cuducos/findaconf/downloads","issues_url":"https://api.github.com/repos/cuducos/findaconf/issues{/number}","pulls_url":"https://api.github.com/repos/cuducos/findaconf/pulls{/number}","milestones_url":"https://api.github.com/repos/cuducos/findaconf/milestones{/number}","notifications_url":"https://api.github.com/repos/cuducos/findaconf/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cuducos/findaconf/labels{/name}","releases_url":"https://api.github.com/repos/cuducos/findaconf/releases{/id}","created_at":"2014-11-30T13:31:51Z","updated_at":"2014-12-31T10:06:24Z","pushed_at":"2015-01-01T15:07:24Z","git_url":"git://github.com/cuducos/findaconf.git","ssh_url":"git@github.com:cuducos/findaconf.git","clone_url":"https://github.com/cuducos/findaconf.git","svn_url":"https://github.com/cuducos/findaconf","homepage":null,"size":273,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/cuducos/findaconf/pulls/3"},"html":{"href":"https://github.com/cuducos/findaconf/pull/3"},"issue":{"href":"https://api.github.com/repos/cuducos/findaconf/issues/3"},"comments":{"href":"https://api.github.com/repos/cuducos/findaconf/issues/3/comments"},"review_comments":{"href":"https://api.github.com/repos/cuducos/findaconf/pulls/3/comments"},"review_comment":{"href":"https://api.github.com/repos/cuducos/findaconf/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/cuducos/findaconf/pulls/3/commits"},"statuses":{"href":"https://api.github.com/repos/cuducos/findaconf/statuses/8dc8514a7c8e50ba40c20e8d10809c3b1e906860"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"cuducos","id":4732915,"avatar_url":"https://avatars.githubusercontent.com/u/4732915?v=3","gravatar_id":"","url":"https://api.github.com/users/cuducos","html_url":"https://github.com/cuducos","followers_url":"https://api.github.com/users/cuducos/followers","following_url":"https://api.github.com/users/cuducos/following{/other_user}","gists_url":"https://api.github.com/users/cuducos/gists{/gist_id}","starred_url":"https://api.github.com/users/cuducos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cuducos/subscriptions","organizations_url":"https://api.github.com/users/cuducos/orgs","repos_url":"https://api.github.com/users/cuducos/repos","events_url":"https://api.github.com/users/cuducos/events{/privacy}","received_events_url":"https://api.github.com/users/cuducos/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":2,"additions":125,"deletions":26,"changed_files":9}},"public":true,"created_at":"2015-01-01T15:07:24Z"} +,{"id":"2489654472","type":"PushEvent","actor":{"id":156685,"login":"MarkEWaite","gravatar_id":"","url":"https://api.github.com/users/MarkEWaite","avatar_url":"https://avatars.githubusercontent.com/u/156685?"},"repo":{"id":612587,"name":"jenkinsci/git-plugin","url":"https://api.github.com/repos/jenkinsci/git-plugin"},"payload":{"push_id":536865547,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"32962f85ad79cc427fdb296ca2ae228933a5a24f","before":"efe1692ccd882f9c6ce6464c9ea53598b9acba38","commits":[{"sha":"a0fed10edb44878d5c142d3b691c4031cf7b4134","author":{"email":"2eebcacd08146d5c39a7bd14f99ee0c52588e467@gmail.com","name":"Marcos Klein"},"message":"Correctly set the SCM name in build data when set or unset.","distinct":true,"url":"https://api.github.com/repos/jenkinsci/git-plugin/commits/a0fed10edb44878d5c142d3b691c4031cf7b4134"},{"sha":"4019f21bc3e137917888c5974423277f53249a60","author":{"email":"2eebcacd08146d5c39a7bd14f99ee0c52588e467@gmail.com","name":"Marcos Klein"},"message":"Add a testcase for the setting of SCM Names between builds.","distinct":true,"url":"https://api.github.com/repos/jenkinsci/git-plugin/commits/4019f21bc3e137917888c5974423277f53249a60"},{"sha":"32962f85ad79cc427fdb296ca2ae228933a5a24f","author":{"email":"2eebcacd08146d5c39a7bd14f99ee0c52588e467@gmail.com","name":"Marcos Klein"},"message":"Do not set the SCM name on old builds to current SCM name.","distinct":true,"url":"https://api.github.com/repos/jenkinsci/git-plugin/commits/32962f85ad79cc427fdb296ca2ae228933a5a24f"}]},"public":true,"created_at":"2015-01-01T15:07:24Z","org":{"id":107424,"login":"jenkinsci","gravatar_id":"","url":"https://api.github.com/orgs/jenkinsci","avatar_url":"https://avatars.githubusercontent.com/u/107424?"}} +,{"id":"2489654473","type":"PushEvent","actor":{"id":4732915,"login":"cuducos","gravatar_id":"","url":"https://api.github.com/users/cuducos","avatar_url":"https://avatars.githubusercontent.com/u/4732915?"},"repo":{"id":27336731,"name":"cuducos/findaconf","url":"https://api.github.com/repos/cuducos/findaconf"},"payload":{"push_id":536865548,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"02c28cfbc7503687660dc2c85ecead8ee8e038db","before":"e816d1f3bcb3d0a2e5cab8dbc8ebb8e189c905e2","commits":[{"sha":"2e6be2fc14133e9b4e3ac13b626d3083d9f8e685","author":{"email":"3936a94e45323f4b077b7aefd0f4e6ad10b56b33@gmail.com","name":"Gabriel Vicente"},"message":"Add Flask-Login & Authomatic","distinct":true,"url":"https://api.github.com/repos/cuducos/findaconf/commits/2e6be2fc14133e9b4e3ac13b626d3083d9f8e685"},{"sha":"8dc8514a7c8e50ba40c20e8d10809c3b1e906860","author":{"email":"3936a94e45323f4b077b7aefd0f4e6ad10b56b33@gmail.com","name":"Gabriel Vicente"},"message":"Create login authentication","distinct":true,"url":"https://api.github.com/repos/cuducos/findaconf/commits/8dc8514a7c8e50ba40c20e8d10809c3b1e906860"},{"sha":"02c28cfbc7503687660dc2c85ecead8ee8e038db","author":{"email":"8e3f6cc8a69f613608fa289d0d3052055016ec6f@users.noreply.github.com","name":"Eduardo Cuducos"},"message":"Merge pull request #3 from gabrielusvicente/OAuth\n\nCreate login authentication","distinct":true,"url":"https://api.github.com/repos/cuducos/findaconf/commits/02c28cfbc7503687660dc2c85ecead8ee8e038db"}]},"public":true,"created_at":"2015-01-01T15:07:24Z"} +,{"id":"2489654474","type":"PushEvent","actor":{"id":202400,"login":"danpalmer","gravatar_id":"","url":"https://api.github.com/users/danpalmer","avatar_url":"https://avatars.githubusercontent.com/u/202400?"},"repo":{"id":28408835,"name":"danpalmer/django-google-charts","url":"https://api.github.com/repos/danpalmer/django-google-charts"},"payload":{"push_id":536865549,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8cf0e51aa6dd38e335c122987fcd24107a06989e","before":"9adc8106109f23ebf53a96b06e12022a01e8e106","commits":[{"sha":"8cf0e51aa6dd38e335c122987fcd24107a06989e","author":{"email":"b6ced4168a19f8065f5d62b69c834c0a5b995458@me.com","name":"Dan Palmer"},"message":"Bump version","distinct":true,"url":"https://api.github.com/repos/danpalmer/django-google-charts/commits/8cf0e51aa6dd38e335c122987fcd24107a06989e"}]},"public":true,"created_at":"2015-01-01T15:07:25Z"} +,{"id":"2489654477","type":"PushEvent","actor":{"id":1208763,"login":"ims21","gravatar_id":"","url":"https://api.github.com/users/ims21","avatar_url":"https://avatars.githubusercontent.com/u/1208763?"},"repo":{"id":5190632,"name":"ims21/skin-PLiHD","url":"https://api.github.com/repos/ims21/skin-PLiHD"},"payload":{"push_id":536865551,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"037e445caaa31474c9e84e3dddfaad45406772cb","before":"5cf65c3fdd53853d53590ef3a5085bc6d042a9a4","commits":[{"sha":"037e445caaa31474c9e84e3dddfaad45406772cb","author":{"email":"fda17d13645199c8d769037ec1a7a195ca8842f2@users.sourceforge.net","name":"ims"},"message":"cosmetic in PLi-HD1","distinct":true,"url":"https://api.github.com/repos/ims21/skin-PLiHD/commits/037e445caaa31474c9e84e3dddfaad45406772cb"}]},"public":true,"created_at":"2015-01-01T15:07:25Z"} +,{"id":"2489654479","type":"PushEvent","actor":{"id":7557579,"login":"timepiss","gravatar_id":"","url":"https://api.github.com/users/timepiss","avatar_url":"https://avatars.githubusercontent.com/u/7557579?"},"repo":{"id":20050543,"name":"ShaastraWebops/frontend","url":"https://api.github.com/repos/ShaastraWebops/frontend"},"payload":{"push_id":536865552,"size":2,"distinct_size":2,"ref":"refs/heads/production","head":"b1e9cc607c1e4eca7ce6b1a9f8dc2a7a92282e90","before":"5db52833a801ecac9b77bca279ae9b003770cc36","commits":[{"sha":"8033161e3e3fd8bd7901d94fb1f6bc6cb4483d82","author":{"email":"66b0d701c5eedd6165b05541d24b82ed13faa3ae@shaastra.org","name":"Shaastra"},"message":"added logo","distinct":true,"url":"https://api.github.com/repos/ShaastraWebops/frontend/commits/8033161e3e3fd8bd7901d94fb1f6bc6cb4483d82"},{"sha":"b1e9cc607c1e4eca7ce6b1a9f8dc2a7a92282e90","author":{"email":"66b0d701c5eedd6165b05541d24b82ed13faa3ae@shaastra.org","name":"Shaastra"},"message":"Merge branch 'production' of https://github.com/ShaastraWebops/frontend into production","distinct":true,"url":"https://api.github.com/repos/ShaastraWebops/frontend/commits/b1e9cc607c1e4eca7ce6b1a9f8dc2a7a92282e90"}]},"public":true,"created_at":"2015-01-01T15:07:26Z","org":{"id":1709267,"login":"ShaastraWebops","gravatar_id":"","url":"https://api.github.com/orgs/ShaastraWebops","avatar_url":"https://avatars.githubusercontent.com/u/1709267?"}} +,{"id":"2489654480","type":"PushEvent","actor":{"id":3964503,"login":"KwangKa","gravatar_id":"","url":"https://api.github.com/users/KwangKa","avatar_url":"https://avatars.githubusercontent.com/u/3964503?"},"repo":{"id":25383845,"name":"KwangKa/ListeningTraining","url":"https://api.github.com/repos/KwangKa/ListeningTraining"},"payload":{"push_id":536865553,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4c1e08576a1677b99426ebf9ab4f9cab21fc10b4","before":"9ad646ae4d6ee48153c3e3f5ae0e1986565eea95","commits":[{"sha":"4c1e08576a1677b99426ebf9ab4f9cab21fc10b4","author":{"email":"ee5ce97c164938cd444461d0490f6f78afacea2a@gmail.com","name":"chen@4750Ubuntu14.04"},"message":"20150101, B&V. Hello, 2015!","distinct":true,"url":"https://api.github.com/repos/KwangKa/ListeningTraining/commits/4c1e08576a1677b99426ebf9ab4f9cab21fc10b4"}]},"public":true,"created_at":"2015-01-01T15:07:26Z"} +,{"id":"2489654482","type":"CreateEvent","actor":{"id":1905149,"login":"oggehej","gravatar_id":"","url":"https://api.github.com/users/oggehej","avatar_url":"https://avatars.githubusercontent.com/u/1905149?"},"repo":{"id":28688690,"name":"oggehej/ForceDismount","url":"https://api.github.com/repos/oggehej/ForceDismount"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:07:26Z"} +,{"id":"2489654484","type":"PushEvent","actor":{"id":149835,"login":"datag","gravatar_id":"","url":"https://api.github.com/users/datag","avatar_url":"https://avatars.githubusercontent.com/u/149835?"},"repo":{"id":8364529,"name":"datag/pkgbox-packages","url":"https://api.github.com/repos/datag/pkgbox-packages"},"payload":{"push_id":536865555,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"53c3ec19e43b4456534bf1dcd949d537364ea27b","before":"c9d5af47e4c25f1dfa663b6d0212d5bad7b78d91","commits":[{"sha":"53c3ec19e43b4456534bf1dcd949d537364ea27b","author":{"email":"c3dd414c967a4867bdee1d9a5b9bb93844394947@gmail.com","name":"Dominik D. Geyer"},"message":"MariaDB: Build without libaio","distinct":true,"url":"https://api.github.com/repos/datag/pkgbox-packages/commits/53c3ec19e43b4456534bf1dcd949d537364ea27b"}]},"public":true,"created_at":"2015-01-01T15:07:26Z"} +,{"id":"2489654486","type":"CreateEvent","actor":{"id":9676261,"login":"satheeshsanthosh","gravatar_id":"","url":"https://api.github.com/users/satheeshsanthosh","avatar_url":"https://avatars.githubusercontent.com/u/9676261?"},"repo":{"id":28688728,"name":"satheeshsanthosh/dimondvetnary","url":"https://api.github.com/repos/satheeshsanthosh/dimondvetnary"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"website for Diamond vetnary clinic","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:07:26Z"} +,{"id":"2489654487","type":"IssueCommentEvent","actor":{"id":6477580,"login":"l1berty","gravatar_id":"","url":"https://api.github.com/users/l1berty","avatar_url":"https://avatars.githubusercontent.com/u/6477580?"},"repo":{"id":26651759,"name":"vivisect/vivisect","url":"https://api.github.com/repos/vivisect/vivisect"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/vivisect/vivisect/issues/23","labels_url":"https://api.github.com/repos/vivisect/vivisect/issues/23/labels{/name}","comments_url":"https://api.github.com/repos/vivisect/vivisect/issues/23/comments","events_url":"https://api.github.com/repos/vivisect/vivisect/issues/23/events","html_url":"https://github.com/vivisect/vivisect/pull/23","id":51620531,"number":23,"title":"fixed setting of integers that could not be represented by the vstruct n...","user":{"login":"l1berty","id":6477580,"avatar_url":"https://avatars.githubusercontent.com/u/6477580?v=3","gravatar_id":"","url":"https://api.github.com/users/l1berty","html_url":"https://github.com/l1berty","followers_url":"https://api.github.com/users/l1berty/followers","following_url":"https://api.github.com/users/l1berty/following{/other_user}","gists_url":"https://api.github.com/users/l1berty/gists{/gist_id}","starred_url":"https://api.github.com/users/l1berty/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/l1berty/subscriptions","organizations_url":"https://api.github.com/users/l1berty/orgs","repos_url":"https://api.github.com/users/l1berty/repos","events_url":"https://api.github.com/users/l1berty/events{/privacy}","received_events_url":"https://api.github.com/users/l1berty/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-10T22:33:58Z","updated_at":"2015-01-01T15:07:26Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/vivisect/vivisect/pulls/23","html_url":"https://github.com/vivisect/vivisect/pull/23","diff_url":"https://github.com/vivisect/vivisect/pull/23.diff","patch_url":"https://github.com/vivisect/vivisect/pull/23.patch"},"body":"...umber types (and hence could not be subsequently vsEmit'd). added min/max checks in vsSetValue, added new signed number type, overrided vsSetValue in bitfield to reflect new behavior, added dynamically generated testcases, minor cleanup\r\n\r\ntests output:\r\ntest_bitfield (vstruct.tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_basicreasign (vstruct.tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_basicstruct (vstruct.tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_classcallback (vstruct.tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_fastparse (vstruct.tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_fastparse_bigend (vstruct.tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_fieldalign (vstruct.tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_fixedpartialasign (vstruct.tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_floats (vstruct.tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_insertfield (vstruct.tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_lengthcallback (vstruct.tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_parsefd (vstruct.tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_varray (vstruct.tests.testbasic.VStructTest) ... ok\r\ntest_vsGetFieldByOffset_end (vstruct.tests.tests_vstruct.VStructTests) ... ok\r\ntest_vsGetFieldByOffset_invalid1 (vstruct.tests.tests_vstruct.VStructTests) ... ok\r\ntest_vsGetFieldByOffset_invalid2 (vstruct.tests.tests_vstruct.VStructTests) ... ok\r\ntest_vsGetFieldByOffset_invalid3 (vstruct.tests.tests_vstruct.VStructTests) ... ok\r\ntest_vsGetFieldByOffset_nested1 (vstruct.tests.tests_vstruct.VStructTests) ... ok\r\ntest_vsGetFieldByOffset_nested2 (vstruct.tests.tests_vstruct.VStructTests) ... ok\r\ntest_vsGetFieldByOffset_nested3 (vstruct.tests.tests_vstruct.VStructTests) ... ok\r\ntest_vsGetFieldByOffset_nested4 (vstruct.tests.tests_vstruct.VStructTests) ... ok\r\ntest_vsGetFieldByOffset_start (vstruct.tests.tests_vstruct.VStructTests) ... ok\r\ntest_int16_False_-32768 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int16_False_32767 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int16_True_-32769 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int16_True_32768 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int24_False_-8388608 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int24_False_8388607 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int24_True_-8388609 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int24_True_8388608 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int32_False_-2147483648 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int32_False_2147483647 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int32_True_-2147483649 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int32_True_2147483648 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int64_False_-9223372036854775808 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int64_False_9223372036854775807 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int64_True_-9223372036854775809 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int64_True_9223372036854775808 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int8_False_-128 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int8_False_127 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int8_True_-129 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int8_True_128 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint16_False_0 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint16_False_65535 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint16_True_-1 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint16_True_65536 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint24_False_0 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint24_False_16777215 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint24_True_-1 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint24_True_16777216 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint32_False_0 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint32_False_4294967295 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint32_True_-1 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint32_True_4294967296 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint64_False_0 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint64_False_18446744073709551615 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint64_True_-1 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint64_True_18446744073709551616 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint8_False_0 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint8_False_255 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint8_True_-1 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint8_True_256 (vstruct.tests.tests_vstruct.VStructTypeTests) ... ok\r\n\r\n----------------------------------------------------------------------\r\nRan 62 tests in 0.010s\r\n\r\nOK\r\n"},"comment":{"url":"https://api.github.com/repos/vivisect/vivisect/issues/comments/68488628","html_url":"https://github.com/vivisect/vivisect/pull/23#issuecomment-68488628","issue_url":"https://api.github.com/repos/vivisect/vivisect/issues/23","id":68488628,"user":{"login":"l1berty","id":6477580,"avatar_url":"https://avatars.githubusercontent.com/u/6477580?v=3","gravatar_id":"","url":"https://api.github.com/users/l1berty","html_url":"https://github.com/l1berty","followers_url":"https://api.github.com/users/l1berty/followers","following_url":"https://api.github.com/users/l1berty/following{/other_user}","gists_url":"https://api.github.com/users/l1berty/gists{/gist_id}","starred_url":"https://api.github.com/users/l1berty/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/l1berty/subscriptions","organizations_url":"https://api.github.com/users/l1berty/orgs","repos_url":"https://api.github.com/users/l1berty/repos","events_url":"https://api.github.com/users/l1berty/events{/privacy}","received_events_url":"https://api.github.com/users/l1berty/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:07:26Z","updated_at":"2015-01-01T15:07:26Z","body":"updated to compute \"expected\" bitwise computation instead, updated test run below.\r\n\r\ntest_bitfield (tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_basicreasign (tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_basicstruct (tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_classcallback (tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_fastparse (tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_fastparse_bigend (tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_fieldalign (tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_fixedpartialasign (tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_floats (tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_insertfield (tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_lengthcallback (tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_parsefd (tests.testbasic.VStructTest) ... ok\r\ntest_vstruct_varray (tests.testbasic.VStructTest) ... ok\r\ntest_vsGetFieldByOffset_end (tests.tests_vstruct.VStructTests) ... ok\r\ntest_vsGetFieldByOffset_maxval_neg (tests.tests_vstruct.VStructTests) ... ok\r\ntest_vsGetFieldByOffset_maxval_plus1_pos (tests.tests_vstruct.VStructTests) ... ok\r\ntest_vsGetFieldByOffset_maxval_pos (tests.tests_vstruct.VStructTests) ... ok\r\ntest_vsGetFieldByOffset_nested1 (tests.tests_vstruct.VStructTests) ... ok\r\ntest_vsGetFieldByOffset_nested2 (tests.tests_vstruct.VStructTests) ... ok\r\ntest_vsGetFieldByOffset_nested3 (tests.tests_vstruct.VStructTests) ... ok\r\ntest_vsGetFieldByOffset_nested4 (tests.tests_vstruct.VStructTests) ... ok\r\ntest_vsGetFieldByOffset_start (tests.tests_vstruct.VStructTests) ... ok\r\ntest_int16_-32768_-32768 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int16_-32769_32767 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int16_-32770_32766 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int16_32767_32767 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int16_32768_-32768 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int16_32769_-32767 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int24_-8388608_-8388608 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int24_-8388609_8388607 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int24_-8388610_8388606 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int24_8388607_8388607 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int24_8388608_-8388608 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int24_8388609_-8388607 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int32_-2147483648_-2147483648 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int32_-2147483649_2147483647 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int32_-2147483650_2147483646 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int32_2147483647_2147483647 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int32_2147483648_-2147483648 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int32_2147483649_-2147483647 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int64_-9223372036854775808_-9223372036854775808 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int64_-9223372036854775809_9223372036854775807 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int64_-9223372036854775810_9223372036854775806 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int64_9223372036854775807_9223372036854775807 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int64_9223372036854775808_-9223372036854775808 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int64_9223372036854775809_-9223372036854775807 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int8_-128_-128 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int8_-129_127 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int8_-130_126 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int8_127_127 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int8_128_-128 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_int8_129_-127 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint16_-1_65535 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint16_-2_65534 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint16_0_0 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint16_65535_65535 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint16_65536_0 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint16_65537_1 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint24_-1_16777215 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint24_-2_16777214 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint24_0_0 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint24_16777215_16777215 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint24_16777216_0 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint24_16777217_1 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint32_-1_4294967295 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint32_-2_4294967294 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint32_0_0 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint32_4294967295_4294967295 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint32_4294967296_0 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint32_4294967297_1 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint64_-1_18446744073709551615 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint64_-2_18446744073709551614 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint64_0_0 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint64_18446744073709551615_18446744073709551615 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint64_18446744073709551616_0 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint64_18446744073709551617_1 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint8_-1_255 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint8_-2_254 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint8_0_0 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint8_255_255 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint8_256_0 (tests.tests_vstruct.VStructTypeTests) ... ok\r\ntest_uint8_257_1 (tests.tests_vstruct.VStructTypeTests) ... ok\r\n\r\n----------------------------------------------------------------------\r\nRan 82 tests in 0.031s\r\n\r\nOK\r\n"}},"public":true,"created_at":"2015-01-01T15:07:27Z","org":{"id":9749998,"login":"vivisect","gravatar_id":"","url":"https://api.github.com/orgs/vivisect","avatar_url":"https://avatars.githubusercontent.com/u/9749998?"}} +,{"id":"2489654491","type":"IssueCommentEvent","actor":{"id":513512,"login":"sorlok","gravatar_id":"","url":"https://api.github.com/users/sorlok","avatar_url":"https://avatars.githubusercontent.com/u/513512?"},"repo":{"id":3319723,"name":"enigma-dev/enigma-dev","url":"https://api.github.com/repos/enigma-dev/enigma-dev"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/enigma-dev/enigma-dev/issues/912","labels_url":"https://api.github.com/repos/enigma-dev/enigma-dev/issues/912/labels{/name}","comments_url":"https://api.github.com/repos/enigma-dev/enigma-dev/issues/912/comments","events_url":"https://api.github.com/repos/enigma-dev/enigma-dev/issues/912/events","html_url":"https://github.com/enigma-dev/enigma-dev/pull/912","id":53014590,"number":912,"title":"Fix for multi-code-block statements and exit.","user":{"login":"sorlok","id":513512,"avatar_url":"https://avatars.githubusercontent.com/u/513512?v=3","gravatar_id":"","url":"https://api.github.com/users/sorlok","html_url":"https://github.com/sorlok","followers_url":"https://api.github.com/users/sorlok/followers","following_url":"https://api.github.com/users/sorlok/following{/other_user}","gists_url":"https://api.github.com/users/sorlok/gists{/gist_id}","starred_url":"https://api.github.com/users/sorlok/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sorlok/subscriptions","organizations_url":"https://api.github.com/users/sorlok/orgs","repos_url":"https://api.github.com/users/sorlok/repos","events_url":"https://api.github.com/users/sorlok/events{/privacy}","received_events_url":"https://api.github.com/users/sorlok/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":17,"created_at":"2014-12-29T01:16:12Z","updated_at":"2015-01-01T15:07:27Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/enigma-dev/enigma-dev/pulls/912","html_url":"https://github.com/enigma-dev/enigma-dev/pull/912","diff_url":"https://github.com/enigma-dev/enigma-dev/pull/912.diff","patch_url":"https://github.com/enigma-dev/enigma-dev/pull/912.patch"},"body":"Fixes https://github.com/enigma-dev/enigma-dev/issues/911\r\n\r\nTurns this:\r\n```\r\n//code block 1:\r\nexit;\r\n\r\n//Code block 2:\r\nshow_message(\"HI\");\r\n```\r\n\r\nInto this:\r\n```\r\n {\r\n goto block_end_0;; \r\n }\r\n block_end_0:\r\n {\r\n show_message(\"HI\");\r\n }\r\n```\r\n\r\nNote that these block labels are only created if \"exit\" is called at least once inside them. If the current block level couldn't be determined (which is common in scripts, timelines, etc.) then the previous behavior of \"return 0\" is used. This causes scripts, timelines, etc. to act at least as accurately as they used to."},"comment":{"url":"https://api.github.com/repos/enigma-dev/enigma-dev/issues/comments/68488629","html_url":"https://github.com/enigma-dev/enigma-dev/pull/912#issuecomment-68488629","issue_url":"https://api.github.com/repos/enigma-dev/enigma-dev/issues/912","id":68488629,"user":{"login":"sorlok","id":513512,"avatar_url":"https://avatars.githubusercontent.com/u/513512?v=3","gravatar_id":"","url":"https://api.github.com/users/sorlok","html_url":"https://github.com/sorlok","followers_url":"https://api.github.com/users/sorlok/followers","following_url":"https://api.github.com/users/sorlok/following{/other_user}","gists_url":"https://api.github.com/users/sorlok/gists{/gist_id}","starred_url":"https://api.github.com/users/sorlok/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sorlok/subscriptions","organizations_url":"https://api.github.com/users/sorlok/orgs","repos_url":"https://api.github.com/users/sorlok/repos","events_url":"https://api.github.com/users/sorlok/events{/privacy}","received_events_url":"https://api.github.com/users/sorlok/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:07:27Z","updated_at":"2015-01-01T15:07:27Z","body":"Ok, this is ready. The compliance settings were updated, and I added \"enigma_\" to each block label. I think \"__enigma_\" is overkill, given the rarity of switch statements in GML, and the penchant developers have for type prefixing resource types (spr_hero, etc.). "}},"public":true,"created_at":"2015-01-01T15:07:28Z","org":{"id":332607,"login":"enigma-dev","gravatar_id":"","url":"https://api.github.com/orgs/enigma-dev","avatar_url":"https://avatars.githubusercontent.com/u/332607?"}} +,{"id":"2489654493","type":"PullRequestEvent","actor":{"id":10364248,"login":"adneon0","gravatar_id":"","url":"https://api.github.com/users/adneon0","avatar_url":"https://avatars.githubusercontent.com/u/10364248?"},"repo":{"id":28687101,"name":"adneon0/hello-world","url":"https://api.github.com/repos/adneon0/hello-world"},"payload":{"action":"closed","number":2,"pull_request":{"url":"https://api.github.com/repos/adneon0/hello-world/pulls/2","id":26743819,"html_url":"https://github.com/adneon0/hello-world/pull/2","diff_url":"https://github.com/adneon0/hello-world/pull/2.diff","patch_url":"https://github.com/adneon0/hello-world/pull/2.patch","issue_url":"https://api.github.com/repos/adneon0/hello-world/issues/2","number":2,"state":"closed","locked":false,"title":"Finish Readme fixes#1","user":{"login":"adneon0","id":10364248,"avatar_url":"https://avatars.githubusercontent.com/u/10364248?v=3","gravatar_id":"","url":"https://api.github.com/users/adneon0","html_url":"https://github.com/adneon0","followers_url":"https://api.github.com/users/adneon0/followers","following_url":"https://api.github.com/users/adneon0/following{/other_user}","gists_url":"https://api.github.com/users/adneon0/gists{/gist_id}","starred_url":"https://api.github.com/users/adneon0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adneon0/subscriptions","organizations_url":"https://api.github.com/users/adneon0/orgs","repos_url":"https://api.github.com/users/adneon0/repos","events_url":"https://api.github.com/users/adneon0/events{/privacy}","received_events_url":"https://api.github.com/users/adneon0/received_events","type":"User","site_admin":false},"body":"its my first fix","created_at":"2015-01-01T15:06:16Z","updated_at":"2015-01-01T15:07:28Z","closed_at":"2015-01-01T15:07:28Z","merged_at":"2015-01-01T15:07:28Z","merge_commit_sha":"36bf273d19cd3350223cffdb81d23e1da7af5d09","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/adneon0/hello-world/pulls/2/commits","review_comments_url":"https://api.github.com/repos/adneon0/hello-world/pulls/2/comments","review_comment_url":"https://api.github.com/repos/adneon0/hello-world/pulls/comments/{number}","comments_url":"https://api.github.com/repos/adneon0/hello-world/issues/2/comments","statuses_url":"https://api.github.com/repos/adneon0/hello-world/statuses/2b1609dd6e99beb67127a4bb9e7ec80c0b29890f","head":{"label":"adneon0:readme-edits","ref":"readme-edits","sha":"2b1609dd6e99beb67127a4bb9e7ec80c0b29890f","user":{"login":"adneon0","id":10364248,"avatar_url":"https://avatars.githubusercontent.com/u/10364248?v=3","gravatar_id":"","url":"https://api.github.com/users/adneon0","html_url":"https://github.com/adneon0","followers_url":"https://api.github.com/users/adneon0/followers","following_url":"https://api.github.com/users/adneon0/following{/other_user}","gists_url":"https://api.github.com/users/adneon0/gists{/gist_id}","starred_url":"https://api.github.com/users/adneon0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adneon0/subscriptions","organizations_url":"https://api.github.com/users/adneon0/orgs","repos_url":"https://api.github.com/users/adneon0/repos","events_url":"https://api.github.com/users/adneon0/events{/privacy}","received_events_url":"https://api.github.com/users/adneon0/received_events","type":"User","site_admin":false},"repo":{"id":28687101,"name":"hello-world","full_name":"adneon0/hello-world","owner":{"login":"adneon0","id":10364248,"avatar_url":"https://avatars.githubusercontent.com/u/10364248?v=3","gravatar_id":"","url":"https://api.github.com/users/adneon0","html_url":"https://github.com/adneon0","followers_url":"https://api.github.com/users/adneon0/followers","following_url":"https://api.github.com/users/adneon0/following{/other_user}","gists_url":"https://api.github.com/users/adneon0/gists{/gist_id}","starred_url":"https://api.github.com/users/adneon0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adneon0/subscriptions","organizations_url":"https://api.github.com/users/adneon0/orgs","repos_url":"https://api.github.com/users/adneon0/repos","events_url":"https://api.github.com/users/adneon0/events{/privacy}","received_events_url":"https://api.github.com/users/adneon0/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/adneon0/hello-world","description":"First One!","fork":false,"url":"https://api.github.com/repos/adneon0/hello-world","forks_url":"https://api.github.com/repos/adneon0/hello-world/forks","keys_url":"https://api.github.com/repos/adneon0/hello-world/keys{/key_id}","collaborators_url":"https://api.github.com/repos/adneon0/hello-world/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/adneon0/hello-world/teams","hooks_url":"https://api.github.com/repos/adneon0/hello-world/hooks","issue_events_url":"https://api.github.com/repos/adneon0/hello-world/issues/events{/number}","events_url":"https://api.github.com/repos/adneon0/hello-world/events","assignees_url":"https://api.github.com/repos/adneon0/hello-world/assignees{/user}","branches_url":"https://api.github.com/repos/adneon0/hello-world/branches{/branch}","tags_url":"https://api.github.com/repos/adneon0/hello-world/tags","blobs_url":"https://api.github.com/repos/adneon0/hello-world/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/adneon0/hello-world/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/adneon0/hello-world/git/refs{/sha}","trees_url":"https://api.github.com/repos/adneon0/hello-world/git/trees{/sha}","statuses_url":"https://api.github.com/repos/adneon0/hello-world/statuses/{sha}","languages_url":"https://api.github.com/repos/adneon0/hello-world/languages","stargazers_url":"https://api.github.com/repos/adneon0/hello-world/stargazers","contributors_url":"https://api.github.com/repos/adneon0/hello-world/contributors","subscribers_url":"https://api.github.com/repos/adneon0/hello-world/subscribers","subscription_url":"https://api.github.com/repos/adneon0/hello-world/subscription","commits_url":"https://api.github.com/repos/adneon0/hello-world/commits{/sha}","git_commits_url":"https://api.github.com/repos/adneon0/hello-world/git/commits{/sha}","comments_url":"https://api.github.com/repos/adneon0/hello-world/comments{/number}","issue_comment_url":"https://api.github.com/repos/adneon0/hello-world/issues/comments/{number}","contents_url":"https://api.github.com/repos/adneon0/hello-world/contents/{+path}","compare_url":"https://api.github.com/repos/adneon0/hello-world/compare/{base}...{head}","merges_url":"https://api.github.com/repos/adneon0/hello-world/merges","archive_url":"https://api.github.com/repos/adneon0/hello-world/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/adneon0/hello-world/downloads","issues_url":"https://api.github.com/repos/adneon0/hello-world/issues{/number}","pulls_url":"https://api.github.com/repos/adneon0/hello-world/pulls{/number}","milestones_url":"https://api.github.com/repos/adneon0/hello-world/milestones{/number}","notifications_url":"https://api.github.com/repos/adneon0/hello-world/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/adneon0/hello-world/labels{/name}","releases_url":"https://api.github.com/repos/adneon0/hello-world/releases{/id}","created_at":"2015-01-01T13:34:42Z","updated_at":"2015-01-01T13:34:42Z","pushed_at":"2015-01-01T15:07:28Z","git_url":"git://github.com/adneon0/hello-world.git","ssh_url":"git@github.com:adneon0/hello-world.git","clone_url":"https://github.com/adneon0/hello-world.git","svn_url":"https://github.com/adneon0/hello-world","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"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":"adneon0:master","ref":"master","sha":"3cdd52e9afbb36582ac3a4cffd251edc96f3886c","user":{"login":"adneon0","id":10364248,"avatar_url":"https://avatars.githubusercontent.com/u/10364248?v=3","gravatar_id":"","url":"https://api.github.com/users/adneon0","html_url":"https://github.com/adneon0","followers_url":"https://api.github.com/users/adneon0/followers","following_url":"https://api.github.com/users/adneon0/following{/other_user}","gists_url":"https://api.github.com/users/adneon0/gists{/gist_id}","starred_url":"https://api.github.com/users/adneon0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adneon0/subscriptions","organizations_url":"https://api.github.com/users/adneon0/orgs","repos_url":"https://api.github.com/users/adneon0/repos","events_url":"https://api.github.com/users/adneon0/events{/privacy}","received_events_url":"https://api.github.com/users/adneon0/received_events","type":"User","site_admin":false},"repo":{"id":28687101,"name":"hello-world","full_name":"adneon0/hello-world","owner":{"login":"adneon0","id":10364248,"avatar_url":"https://avatars.githubusercontent.com/u/10364248?v=3","gravatar_id":"","url":"https://api.github.com/users/adneon0","html_url":"https://github.com/adneon0","followers_url":"https://api.github.com/users/adneon0/followers","following_url":"https://api.github.com/users/adneon0/following{/other_user}","gists_url":"https://api.github.com/users/adneon0/gists{/gist_id}","starred_url":"https://api.github.com/users/adneon0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adneon0/subscriptions","organizations_url":"https://api.github.com/users/adneon0/orgs","repos_url":"https://api.github.com/users/adneon0/repos","events_url":"https://api.github.com/users/adneon0/events{/privacy}","received_events_url":"https://api.github.com/users/adneon0/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/adneon0/hello-world","description":"First One!","fork":false,"url":"https://api.github.com/repos/adneon0/hello-world","forks_url":"https://api.github.com/repos/adneon0/hello-world/forks","keys_url":"https://api.github.com/repos/adneon0/hello-world/keys{/key_id}","collaborators_url":"https://api.github.com/repos/adneon0/hello-world/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/adneon0/hello-world/teams","hooks_url":"https://api.github.com/repos/adneon0/hello-world/hooks","issue_events_url":"https://api.github.com/repos/adneon0/hello-world/issues/events{/number}","events_url":"https://api.github.com/repos/adneon0/hello-world/events","assignees_url":"https://api.github.com/repos/adneon0/hello-world/assignees{/user}","branches_url":"https://api.github.com/repos/adneon0/hello-world/branches{/branch}","tags_url":"https://api.github.com/repos/adneon0/hello-world/tags","blobs_url":"https://api.github.com/repos/adneon0/hello-world/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/adneon0/hello-world/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/adneon0/hello-world/git/refs{/sha}","trees_url":"https://api.github.com/repos/adneon0/hello-world/git/trees{/sha}","statuses_url":"https://api.github.com/repos/adneon0/hello-world/statuses/{sha}","languages_url":"https://api.github.com/repos/adneon0/hello-world/languages","stargazers_url":"https://api.github.com/repos/adneon0/hello-world/stargazers","contributors_url":"https://api.github.com/repos/adneon0/hello-world/contributors","subscribers_url":"https://api.github.com/repos/adneon0/hello-world/subscribers","subscription_url":"https://api.github.com/repos/adneon0/hello-world/subscription","commits_url":"https://api.github.com/repos/adneon0/hello-world/commits{/sha}","git_commits_url":"https://api.github.com/repos/adneon0/hello-world/git/commits{/sha}","comments_url":"https://api.github.com/repos/adneon0/hello-world/comments{/number}","issue_comment_url":"https://api.github.com/repos/adneon0/hello-world/issues/comments/{number}","contents_url":"https://api.github.com/repos/adneon0/hello-world/contents/{+path}","compare_url":"https://api.github.com/repos/adneon0/hello-world/compare/{base}...{head}","merges_url":"https://api.github.com/repos/adneon0/hello-world/merges","archive_url":"https://api.github.com/repos/adneon0/hello-world/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/adneon0/hello-world/downloads","issues_url":"https://api.github.com/repos/adneon0/hello-world/issues{/number}","pulls_url":"https://api.github.com/repos/adneon0/hello-world/pulls{/number}","milestones_url":"https://api.github.com/repos/adneon0/hello-world/milestones{/number}","notifications_url":"https://api.github.com/repos/adneon0/hello-world/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/adneon0/hello-world/labels{/name}","releases_url":"https://api.github.com/repos/adneon0/hello-world/releases{/id}","created_at":"2015-01-01T13:34:42Z","updated_at":"2015-01-01T13:34:42Z","pushed_at":"2015-01-01T15:07:28Z","git_url":"git://github.com/adneon0/hello-world.git","ssh_url":"git@github.com:adneon0/hello-world.git","clone_url":"https://github.com/adneon0/hello-world.git","svn_url":"https://github.com/adneon0/hello-world","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"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/adneon0/hello-world/pulls/2"},"html":{"href":"https://github.com/adneon0/hello-world/pull/2"},"issue":{"href":"https://api.github.com/repos/adneon0/hello-world/issues/2"},"comments":{"href":"https://api.github.com/repos/adneon0/hello-world/issues/2/comments"},"review_comments":{"href":"https://api.github.com/repos/adneon0/hello-world/pulls/2/comments"},"review_comment":{"href":"https://api.github.com/repos/adneon0/hello-world/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/adneon0/hello-world/pulls/2/commits"},"statuses":{"href":"https://api.github.com/repos/adneon0/hello-world/statuses/2b1609dd6e99beb67127a4bb9e7ec80c0b29890f"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"adneon0","id":10364248,"avatar_url":"https://avatars.githubusercontent.com/u/10364248?v=3","gravatar_id":"","url":"https://api.github.com/users/adneon0","html_url":"https://github.com/adneon0","followers_url":"https://api.github.com/users/adneon0/followers","following_url":"https://api.github.com/users/adneon0/following{/other_user}","gists_url":"https://api.github.com/users/adneon0/gists{/gist_id}","starred_url":"https://api.github.com/users/adneon0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adneon0/subscriptions","organizations_url":"https://api.github.com/users/adneon0/orgs","repos_url":"https://api.github.com/users/adneon0/repos","events_url":"https://api.github.com/users/adneon0/events{/privacy}","received_events_url":"https://api.github.com/users/adneon0/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":1,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:07:28Z"} +,{"id":"2489654495","type":"PushEvent","actor":{"id":2505396,"login":"lutzKleiber","gravatar_id":"","url":"https://api.github.com/users/lutzKleiber","avatar_url":"https://avatars.githubusercontent.com/u/2505396?"},"repo":{"id":19994424,"name":"lutzKleiber/jrock-2D","url":"https://api.github.com/repos/lutzKleiber/jrock-2D"},"payload":{"push_id":536865558,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5b38167ae6be90fca11ee9680a2af196ad6538bd","before":"5437d6983cfa407d2cea3af4fe0e03f4c05ea401","commits":[{"sha":"5b38167ae6be90fca11ee9680a2af196ad6538bd","author":{"email":"9b20e9ff78b04ea36084e818be32bd1148855d55@ws-lk.MS-Heimnetz","name":"lk"},"message":"abstracting SI units from Vectors and scalars.","distinct":true,"url":"https://api.github.com/repos/lutzKleiber/jrock-2D/commits/5b38167ae6be90fca11ee9680a2af196ad6538bd"}]},"public":true,"created_at":"2015-01-01T15:07:28Z"} +,{"id":"2489654497","type":"PushEvent","actor":{"id":10364248,"login":"adneon0","gravatar_id":"","url":"https://api.github.com/users/adneon0","avatar_url":"https://avatars.githubusercontent.com/u/10364248?"},"repo":{"id":28687101,"name":"adneon0/hello-world","url":"https://api.github.com/repos/adneon0/hello-world"},"payload":{"push_id":536865560,"size":2,"distinct_size":1,"ref":"refs/heads/master","head":"f0fd8a494d6a00188f1bb52c1b3d85f35e4d2de8","before":"3cdd52e9afbb36582ac3a4cffd251edc96f3886c","commits":[{"sha":"2b1609dd6e99beb67127a4bb9e7ec80c0b29890f","author":{"email":"99f1d743fb48d3034b09aa7e5f7a7a0ecdf204f1@gmail.com","name":"adneon0"},"message":"Finish Readme\n\nAdditional description","distinct":false,"url":"https://api.github.com/repos/adneon0/hello-world/commits/2b1609dd6e99beb67127a4bb9e7ec80c0b29890f"},{"sha":"f0fd8a494d6a00188f1bb52c1b3d85f35e4d2de8","author":{"email":"99f1d743fb48d3034b09aa7e5f7a7a0ecdf204f1@gmail.com","name":"adneon0"},"message":"Merge pull request #2 from adneon0/readme-edits\n\nFinish Readme fixes#1","distinct":true,"url":"https://api.github.com/repos/adneon0/hello-world/commits/f0fd8a494d6a00188f1bb52c1b3d85f35e4d2de8"}]},"public":true,"created_at":"2015-01-01T15:07:28Z"} +,{"id":"2489654508","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":536865566,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ef0b4eca7b8f09ae9da6036dc30059c138c4f64e","before":"19aa3690d277ebeb3a2448c6170fd0c14cbacf9b","commits":[{"sha":"ef0b4eca7b8f09ae9da6036dc30059c138c4f64e","author":{"email":"de163e90d3aeef9f404d1de71c48e234a211e3c3@gmail.com","name":"KT"},"message":"Update","distinct":true,"url":"https://api.github.com/repos/qdm/qdm.github.io/commits/ef0b4eca7b8f09ae9da6036dc30059c138c4f64e"}]},"public":true,"created_at":"2015-01-01T15:07:29Z"} +,{"id":"2489654511","type":"PushEvent","actor":{"id":359377,"login":"roland-d","gravatar_id":"","url":"https://api.github.com/users/roland-d","avatar_url":"https://avatars.githubusercontent.com/u/359377?"},"repo":{"id":2464908,"name":"joomla/joomla-cms","url":"https://api.github.com/repos/joomla/joomla-cms"},"payload":{"push_id":536865564,"size":2,"distinct_size":2,"ref":"refs/heads/staging","head":"3455c24360f53a1b8259cf8d569bfff0fedb98d2","before":"d165a8a6cc4163b00e16813ba5dbb0ae79bc8765","commits":[{"sha":"e4533b54e20dcf1c78bf356751420440c12c768d","author":{"email":"82e36d00da02a403b366c1d4d2d207e67b0af63c@googlemail.com","name":"George Wilson"},"message":"Use 0 for ftp_enable as in com_config","distinct":true,"url":"https://api.github.com/repos/joomla/joomla-cms/commits/e4533b54e20dcf1c78bf356751420440c12c768d"},{"sha":"3455c24360f53a1b8259cf8d569bfff0fedb98d2","author":{"email":"1a73af9e7ae00182733b2292511b814be66f065f@rolandd.com","name":"RolandD"},"message":"Merge pull request #5577 from wilsonge/configconsistency\n\nUse 0 for ftp_enable as in com_config","distinct":true,"url":"https://api.github.com/repos/joomla/joomla-cms/commits/3455c24360f53a1b8259cf8d569bfff0fedb98d2"}]},"public":true,"created_at":"2015-01-01T15:07:30Z","org":{"id":751633,"login":"joomla","gravatar_id":"","url":"https://api.github.com/orgs/joomla","avatar_url":"https://avatars.githubusercontent.com/u/751633?"}} +,{"id":"2489654513","type":"CreateEvent","actor":{"id":249887,"login":"wa120","gravatar_id":"","url":"https://api.github.com/users/wa120","avatar_url":"https://avatars.githubusercontent.com/u/249887?"},"repo":{"id":623493,"name":"wa120/jquery-components","url":"https://api.github.com/repos/wa120/jquery-components"},"payload":{"ref":"gh-pages","ref_type":"branch","master_branch":"gh-pages","description":"aa","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:07:30Z"} +,{"id":"2489654514","type":"IssueCommentEvent","actor":{"id":63502,"login":"ferventcoder","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","avatar_url":"https://avatars.githubusercontent.com/u/63502?"},"repo":{"id":22735696,"name":"chocolatey/chocolatey-package-updater","url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/2","labels_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/2/comments","events_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/2/events","html_url":"https://github.com/chocolatey/chocolatey-package-updater/issues/2","id":39766764,"number":2,"title":"Include link to this repo into the nuspec","user":{"login":"TomOne","id":4357973,"avatar_url":"https://avatars.githubusercontent.com/u/4357973?v=3","gravatar_id":"","url":"https://api.github.com/users/TomOne","html_url":"https://github.com/TomOne","followers_url":"https://api.github.com/users/TomOne/followers","following_url":"https://api.github.com/users/TomOne/following{/other_user}","gists_url":"https://api.github.com/users/TomOne/gists{/gist_id}","starred_url":"https://api.github.com/users/TomOne/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TomOne/subscriptions","organizations_url":"https://api.github.com/users/TomOne/orgs","repos_url":"https://api.github.com/users/TomOne/repos","events_url":"https://api.github.com/users/TomOne/events{/privacy}","received_events_url":"https://api.github.com/users/TomOne/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-08-07T20:49:36Z","updated_at":"2015-01-01T15:07:30Z","closed_at":"2015-01-01T15:07:30Z","body":"So users will find this repo more easily when they want to report an issue with the package updater."},"comment":{"url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/comments/68488630","html_url":"https://github.com/chocolatey/chocolatey-package-updater/issues/2#issuecomment-68488630","issue_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/2","id":68488630,"user":{"login":"ferventcoder","id":63502,"avatar_url":"https://avatars.githubusercontent.com/u/63502?v=3","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","html_url":"https://github.com/ferventcoder","followers_url":"https://api.github.com/users/ferventcoder/followers","following_url":"https://api.github.com/users/ferventcoder/following{/other_user}","gists_url":"https://api.github.com/users/ferventcoder/gists{/gist_id}","starred_url":"https://api.github.com/users/ferventcoder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ferventcoder/subscriptions","organizations_url":"https://api.github.com/users/ferventcoder/orgs","repos_url":"https://api.github.com/users/ferventcoder/repos","events_url":"https://api.github.com/users/ferventcoder/events{/privacy}","received_events_url":"https://api.github.com/users/ferventcoder/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:07:30Z","updated_at":"2015-01-01T15:07:30Z","body":"Done."}},"public":true,"created_at":"2015-01-01T15:07:30Z","org":{"id":811025,"login":"chocolatey","gravatar_id":"","url":"https://api.github.com/orgs/chocolatey","avatar_url":"https://avatars.githubusercontent.com/u/811025?"}} +,{"id":"2489654515","type":"IssuesEvent","actor":{"id":63502,"login":"ferventcoder","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","avatar_url":"https://avatars.githubusercontent.com/u/63502?"},"repo":{"id":22735696,"name":"chocolatey/chocolatey-package-updater","url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/2","labels_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/2/comments","events_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/2/events","html_url":"https://github.com/chocolatey/chocolatey-package-updater/issues/2","id":39766764,"number":2,"title":"Include link to this repo into the nuspec","user":{"login":"TomOne","id":4357973,"avatar_url":"https://avatars.githubusercontent.com/u/4357973?v=3","gravatar_id":"","url":"https://api.github.com/users/TomOne","html_url":"https://github.com/TomOne","followers_url":"https://api.github.com/users/TomOne/followers","following_url":"https://api.github.com/users/TomOne/following{/other_user}","gists_url":"https://api.github.com/users/TomOne/gists{/gist_id}","starred_url":"https://api.github.com/users/TomOne/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TomOne/subscriptions","organizations_url":"https://api.github.com/users/TomOne/orgs","repos_url":"https://api.github.com/users/TomOne/repos","events_url":"https://api.github.com/users/TomOne/events{/privacy}","received_events_url":"https://api.github.com/users/TomOne/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-08-07T20:49:36Z","updated_at":"2015-01-01T15:07:30Z","closed_at":"2015-01-01T15:07:30Z","body":"So users will find this repo more easily when they want to report an issue with the package updater."}},"public":true,"created_at":"2015-01-01T15:07:30Z","org":{"id":811025,"login":"chocolatey","gravatar_id":"","url":"https://api.github.com/orgs/chocolatey","avatar_url":"https://avatars.githubusercontent.com/u/811025?"}} +,{"id":"2489654517","type":"CreateEvent","actor":{"id":5606293,"login":"bombadil7","gravatar_id":"","url":"https://api.github.com/users/bombadil7","avatar_url":"https://avatars.githubusercontent.com/u/5606293?"},"repo":{"id":28688729,"name":"bombadil7/GitTest","url":"https://api.github.com/repos/bombadil7/GitTest"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:07:30Z"} +,{"id":"2489654520","type":"PushEvent","actor":{"id":3784687,"login":"Neson","gravatar_id":"","url":"https://api.github.com/users/Neson","avatar_url":"https://avatars.githubusercontent.com/u/3784687?"},"repo":{"id":28130013,"name":"colorgy/Core","url":"https://api.github.com/repos/colorgy/Core"},"payload":{"push_id":536865572,"size":11,"distinct_size":2,"ref":"refs/heads/master","head":"6a8bc4002e31a745f28a760ff7db0cf95c5452e3","before":"0c93459dcf73888782345167565c7fd6c96e9cd9","commits":[{"sha":"8ce095caacfbe7584450414b609a5baf503c15b0","author":{"email":"9ff4fdc39f20a0561fa10a306a859a76e45ed576@dex.tw","name":"Neson"},"message":"create devise User and UserData","distinct":false,"url":"https://api.github.com/repos/colorgy/Core/commits/8ce095caacfbe7584450414b609a5baf503c15b0"},{"sha":"11c63dff0c8e1ee6f46d7cc09f57c54634578781","author":{"email":"9ff4fdc39f20a0561fa10a306a859a76e45ed576@dex.tw","name":"Neson"},"message":"create UserEmail","distinct":false,"url":"https://api.github.com/repos/colorgy/Core/commits/11c63dff0c8e1ee6f46d7cc09f57c54634578781"},{"sha":"42472e9a8b8a47dabcb0687cefd0f9ec5e651425","author":{"email":"9ff4fdc39f20a0561fa10a306a859a76e45ed576@dex.tw","name":"Neson"},"message":"create EmailPattern & UserIdentity","distinct":false,"url":"https://api.github.com/repos/colorgy/Core/commits/42472e9a8b8a47dabcb0687cefd0f9ec5e651425"},{"sha":"03e50045e32b85901928157350d5807f570937e3","author":{"email":"9ff4fdc39f20a0561fa10a306a859a76e45ed576@dex.tw","name":"Neson"},"message":"update EmailPattern data","distinct":false,"url":"https://api.github.com/repos/colorgy/Core/commits/03e50045e32b85901928157350d5807f570937e3"},{"sha":"6e528ec4ad4b150166132dbbc2aeaa5c4769bc53","author":{"email":"9ff4fdc39f20a0561fa10a306a859a76e45ed576@dex.tw","name":"Neson"},"message":"add user identity logic","distinct":false,"url":"https://api.github.com/repos/colorgy/Core/commits/6e528ec4ad4b150166132dbbc2aeaa5c4769bc53"},{"sha":"e44c8f5a9d84e24d4e8b632c9a907c6dcca4f4e6","author":{"email":"9ff4fdc39f20a0561fa10a306a859a76e45ed576@dex.tw","name":"Neson"},"message":"associate UserEmail to UserIdentity","distinct":false,"url":"https://api.github.com/repos/colorgy/Core/commits/e44c8f5a9d84e24d4e8b632c9a907c6dcca4f4e6"},{"sha":"e1ba72f475b5f2bef2bca4766669a511c9570b47","author":{"email":"9ff4fdc39f20a0561fa10a306a859a76e45ed576@dex.tw","name":"Neson"},"message":"fix DB errors on Postgres","distinct":false,"url":"https://api.github.com/repos/colorgy/Core/commits/e1ba72f475b5f2bef2bca4766669a511c9570b47"},{"sha":"4f49ebf859e24398d23cbee37202336b1ddc1472","author":{"email":"9ff4fdc39f20a0561fa10a306a859a76e45ed576@dex.tw","name":"Neson"},"message":"add department limitations for UserIdentity","distinct":false,"url":"https://api.github.com/repos/colorgy/Core/commits/4f49ebf859e24398d23cbee37202336b1ddc1472"},{"sha":"97e88d66e3484afa9a3819d4f048fd63d5cad7ba","author":{"email":"9ff4fdc39f20a0561fa10a306a859a76e45ed576@dex.tw","name":"Neson"},"message":"update schema","distinct":false,"url":"https://api.github.com/repos/colorgy/Core/commits/97e88d66e3484afa9a3819d4f048fd63d5cad7ba"},{"sha":"c0104798055237b0f5354a98a6cebc8f7c6ac64b","author":{"email":"9ff4fdc39f20a0561fa10a306a859a76e45ed576@dex.tw","name":"Neson"},"message":"Feature: user-logic","distinct":true,"url":"https://api.github.com/repos/colorgy/Core/commits/c0104798055237b0f5354a98a6cebc8f7c6ac64b"},{"sha":"6a8bc4002e31a745f28a760ff7db0cf95c5452e3","author":{"email":"9ff4fdc39f20a0561fa10a306a859a76e45ed576@dex.tw","name":"Neson"},"message":"remove sqlite3 from production","distinct":true,"url":"https://api.github.com/repos/colorgy/Core/commits/6a8bc4002e31a745f28a760ff7db0cf95c5452e3"}]},"public":true,"created_at":"2015-01-01T15:07:31Z","org":{"id":9701622,"login":"colorgy","gravatar_id":"","url":"https://api.github.com/orgs/colorgy","avatar_url":"https://avatars.githubusercontent.com/u/9701622?"}} +,{"id":"2489654521","type":"CreateEvent","actor":{"id":3888578,"login":"natzim","gravatar_id":"","url":"https://api.github.com/users/natzim","avatar_url":"https://avatars.githubusercontent.com/u/3888578?"},"repo":{"id":28688730,"name":"natzim/Journal","url":"https://api.github.com/repos/natzim/Journal"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:07:31Z"} +,{"id":"2489654524","type":"PushEvent","actor":{"id":1385879,"login":"caprica","gravatar_id":"","url":"https://api.github.com/users/caprica","avatar_url":"https://avatars.githubusercontent.com/u/1385879?"},"repo":{"id":3289298,"name":"caprica/vlcj","url":"https://api.github.com/repos/caprica/vlcj"},"payload":{"push_id":536865573,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"d06ae88d36db076a3acdd00bd4c68e1fe6446b32","before":"9b82e36d5894ece74169b498c26d289ee6012b6e","commits":[{"sha":"d06ae88d36db076a3acdd00bd4c68e1fe6446b32","author":{"email":"60a0da52fe61d57295f225dc83c7ff9330d9ad69@capricasoftware.co.uk","name":"Mark Lee"},"message":"Update index.html","distinct":true,"url":"https://api.github.com/repos/caprica/vlcj/commits/d06ae88d36db076a3acdd00bd4c68e1fe6446b32"}]},"public":true,"created_at":"2015-01-01T15:07:31Z"} +,{"id":"2489654531","type":"IssuesEvent","actor":{"id":6710434,"login":"nPn-","gravatar_id":"","url":"https://api.github.com/users/nPn-","avatar_url":"https://avatars.githubusercontent.com/u/6710434?"},"repo":{"id":8514,"name":"rails/rails","url":"https://api.github.com/repos/rails/rails"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/rails/rails/issues/18285","labels_url":"https://api.github.com/repos/rails/rails/issues/18285/labels{/name}","comments_url":"https://api.github.com/repos/rails/rails/issues/18285/comments","events_url":"https://api.github.com/repos/rails/rails/issues/18285/events","html_url":"https://github.com/rails/rails/issues/18285","id":53221481,"number":18285,"title":"undefined method 'clear' for nil:NilClass in actionpack-4.2.0/lib/action_controller/test_case.rb","user":{"login":"nPn-","id":6710434,"avatar_url":"https://avatars.githubusercontent.com/u/6710434?v=3","gravatar_id":"","url":"https://api.github.com/users/nPn-","html_url":"https://github.com/nPn-","followers_url":"https://api.github.com/users/nPn-/followers","following_url":"https://api.github.com/users/nPn-/following{/other_user}","gists_url":"https://api.github.com/users/nPn-/gists{/gist_id}","starred_url":"https://api.github.com/users/nPn-/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nPn-/subscriptions","organizations_url":"https://api.github.com/users/nPn-/orgs","repos_url":"https://api.github.com/users/nPn-/repos","events_url":"https://api.github.com/users/nPn-/events{/privacy}","received_events_url":"https://api.github.com/users/nPn-/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:07:30Z","updated_at":"2015-01-01T15:07:30Z","closed_at":null,"body":"In some rspec before(:all) blocks it seems like the setup_subscriptions method in this file is not being called, resulting in the a nil instance_variable when reset_template_assertion is called.\r\n\r\nmore info can be found in this stackoverflow question\r\n\r\nhttp://stackoverflow.com/questions/27727786/rails-4-2-update-method-fails-only-when-called-from-beforeall-block\r\n\r\n def reset_template_assertion\r\n RENDER_TEMPLATE_INSTANCE_VARIABLES.each do |instance_variable|\r\n instance_variable_get(\"@_#{instance_variable}\").clear\r\n end\r\n end\r\n\r\nfor now I just added a check to make sure the variable is not nil before calling clear on it, but I am not sure if the problem is that the setup_subsriptions __should__ have been call and was not.\r\n\r\n def reset_template_assertion\r\n RENDER_TEMPLATE_INSTANCE_VARIABLES.each do |instance_variable|\r\n variable_name = \"@_#{instance_variable}\"\r\n variable = instance_variable_get(variable_name)\r\n variable.clear #if variable\r\n end\r\n end"}},"public":true,"created_at":"2015-01-01T15:07:31Z","org":{"id":4223,"login":"rails","gravatar_id":"","url":"https://api.github.com/orgs/rails","avatar_url":"https://avatars.githubusercontent.com/u/4223?"}} +,{"id":"2489654533","type":"PushEvent","actor":{"id":10223149,"login":"Gobbles86","gravatar_id":"","url":"https://api.github.com/users/Gobbles86","avatar_url":"https://avatars.githubusercontent.com/u/10223149?"},"repo":{"id":28371164,"name":"Gobbles86/EDTradingTool","url":"https://api.github.com/repos/Gobbles86/EDTradingTool"},"payload":{"push_id":536865578,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1cb5526b178d6243e9a00bfd1f4f949fa33e02f1","before":"b36e170a1380327e297ef839ba73291415c8d27b","commits":[{"sha":"1cb5526b178d6243e9a00bfd1f4f949fa33e02f1","author":{"email":"c2c53d66948214258a26ca9ca845d7ac0c17f8e7@github.com","name":"T"},"message":"Refactored / Profits now available for all Remote Stations","distinct":true,"url":"https://api.github.com/repos/Gobbles86/EDTradingTool/commits/1cb5526b178d6243e9a00bfd1f4f949fa33e02f1"}]},"public":true,"created_at":"2015-01-01T15:07:32Z"} +,{"id":"2489654534","type":"WatchEvent","actor":{"id":2328496,"login":"mrdaios","gravatar_id":"","url":"https://api.github.com/users/mrdaios","avatar_url":"https://avatars.githubusercontent.com/u/2328496?"},"repo":{"id":4840908,"name":"norio-nomura/EasySIMBL","url":"https://api.github.com/repos/norio-nomura/EasySIMBL"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:07:32Z"} +,{"id":"2489654536","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":28688452,"name":"brunocarvalhodearaujo/BackBone","url":"https://api.github.com/repos/brunocarvalhodearaujo/BackBone"},"payload":{"push_id":536865579,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"22f050714a0b501420abd5a6ac5dd1570a346c48","before":"c4c05b8018d673be5cba2ec3b313d789be83aeea","commits":[{"sha":"22f050714a0b501420abd5a6ac5dd1570a346c48","author":{"email":"254d51cb477bb0448649802c443c6e6c2f475324@gmail.com","name":"Bruno Carvalho de Araujo"},"message":"Update composer.json","distinct":true,"url":"https://api.github.com/repos/brunocarvalhodearaujo/BackBone/commits/22f050714a0b501420abd5a6ac5dd1570a346c48"}]},"public":true,"created_at":"2015-01-01T15:07:32Z"} +,{"id":"2489654537","type":"IssueCommentEvent","actor":{"id":452823,"login":"iox","gravatar_id":"","url":"https://api.github.com/users/iox","avatar_url":"https://avatars.githubusercontent.com/u/452823?"},"repo":{"id":1314319,"name":"instructure/canvas-lms","url":"https://api.github.com/repos/instructure/canvas-lms"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/instructure/canvas-lms/issues/150","labels_url":"https://api.github.com/repos/instructure/canvas-lms/issues/150/labels{/name}","comments_url":"https://api.github.com/repos/instructure/canvas-lms/issues/150/comments","events_url":"https://api.github.com/repos/instructure/canvas-lms/issues/150/events","html_url":"https://github.com/instructure/canvas-lms/issues/150","id":3769510,"number":150,"title":"Stylesheets broken in Production Service","user":{"login":"dailyinvention","id":350786,"avatar_url":"https://avatars.githubusercontent.com/u/350786?v=3","gravatar_id":"","url":"https://api.github.com/users/dailyinvention","html_url":"https://github.com/dailyinvention","followers_url":"https://api.github.com/users/dailyinvention/followers","following_url":"https://api.github.com/users/dailyinvention/following{/other_user}","gists_url":"https://api.github.com/users/dailyinvention/gists{/gist_id}","starred_url":"https://api.github.com/users/dailyinvention/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dailyinvention/subscriptions","organizations_url":"https://api.github.com/users/dailyinvention/orgs","repos_url":"https://api.github.com/users/dailyinvention/repos","events_url":"https://api.github.com/users/dailyinvention/events{/privacy}","received_events_url":"https://api.github.com/users/dailyinvention/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":7,"created_at":"2012-03-22T19:27:44Z","updated_at":"2015-01-01T15:07:32Z","closed_at":"2014-12-30T22:03:01Z","body":"I went through the directions for a complete Canvas production install and everything works except that there seems to be some issues with the stylesheets on the page. This is after I had to force the install into production mode by setting the environmental variable in the environment.rb file. Has anyone else had this issue? Has anyone found a solution? Thanks in advance for any help."},"comment":{"url":"https://api.github.com/repos/instructure/canvas-lms/issues/comments/68488631","html_url":"https://github.com/instructure/canvas-lms/issues/150#issuecomment-68488631","issue_url":"https://api.github.com/repos/instructure/canvas-lms/issues/150","id":68488631,"user":{"login":"iox","id":452823,"avatar_url":"https://avatars.githubusercontent.com/u/452823?v=3","gravatar_id":"","url":"https://api.github.com/users/iox","html_url":"https://github.com/iox","followers_url":"https://api.github.com/users/iox/followers","following_url":"https://api.github.com/users/iox/following{/other_user}","gists_url":"https://api.github.com/users/iox/gists{/gist_id}","starred_url":"https://api.github.com/users/iox/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iox/subscriptions","organizations_url":"https://api.github.com/users/iox/orgs","repos_url":"https://api.github.com/users/iox/repos","events_url":"https://api.github.com/users/iox/events{/privacy}","received_events_url":"https://api.github.com/users/iox/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:07:32Z","updated_at":"2015-01-01T15:07:32Z","body":"Thanks @claydiffrient "}},"public":true,"created_at":"2015-01-01T15:07:32Z","org":{"id":515326,"login":"instructure","gravatar_id":"","url":"https://api.github.com/orgs/instructure","avatar_url":"https://avatars.githubusercontent.com/u/515326?"}} +,{"id":"2489654538","type":"IssuesEvent","actor":{"id":2717002,"login":"thetobby","gravatar_id":"","url":"https://api.github.com/users/thetobby","avatar_url":"https://avatars.githubusercontent.com/u/2717002?"},"repo":{"id":28650025,"name":"thetobby/Tmal","url":"https://api.github.com/repos/thetobby/Tmal"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/thetobby/Tmal/issues/2","labels_url":"https://api.github.com/repos/thetobby/Tmal/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/thetobby/Tmal/issues/2/comments","events_url":"https://api.github.com/repos/thetobby/Tmal/issues/2/events","html_url":"https://github.com/thetobby/Tmal/issues/2","id":53221482,"number":2,"title":"Quicker responstime on func ClipFF","user":{"login":"thetobby","id":2717002,"avatar_url":"https://avatars.githubusercontent.com/u/2717002?v=3","gravatar_id":"","url":"https://api.github.com/users/thetobby","html_url":"https://github.com/thetobby","followers_url":"https://api.github.com/users/thetobby/followers","following_url":"https://api.github.com/users/thetobby/following{/other_user}","gists_url":"https://api.github.com/users/thetobby/gists{/gist_id}","starred_url":"https://api.github.com/users/thetobby/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thetobby/subscriptions","organizations_url":"https://api.github.com/users/thetobby/orgs","repos_url":"https://api.github.com/users/thetobby/repos","events_url":"https://api.github.com/users/thetobby/events{/privacy}","received_events_url":"https://api.github.com/users/thetobby/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/thetobby/Tmal/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:07:32Z","updated_at":"2015-01-01T15:07:32Z","closed_at":null,"body":"Too long sleep()"}},"public":true,"created_at":"2015-01-01T15:07:33Z"} +,{"id":"2489654542","type":"DeleteEvent","actor":{"id":10364248,"login":"adneon0","gravatar_id":"","url":"https://api.github.com/users/adneon0","avatar_url":"https://avatars.githubusercontent.com/u/10364248?"},"repo":{"id":28687101,"name":"adneon0/hello-world","url":"https://api.github.com/repos/adneon0/hello-world"},"payload":{"ref":"readme-edits","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:07:34Z"} +,{"id":"2489654545","type":"WatchEvent","actor":{"id":1765755,"login":"lucasbrendel","gravatar_id":"","url":"https://api.github.com/users/lucasbrendel","avatar_url":"https://avatars.githubusercontent.com/u/1765755?"},"repo":{"id":28676770,"name":"HermitApp/hermit-jenkins-plugin","url":"https://api.github.com/repos/HermitApp/hermit-jenkins-plugin"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:07:34Z","org":{"id":10327713,"login":"HermitApp","gravatar_id":"","url":"https://api.github.com/orgs/HermitApp","avatar_url":"https://avatars.githubusercontent.com/u/10327713?"}} +,{"id":"2489654552","type":"IssueCommentEvent","actor":{"id":1089309,"login":"fritsch","gravatar_id":"","url":"https://api.github.com/users/fritsch","avatar_url":"https://avatars.githubusercontent.com/u/1089309?"},"repo":{"id":1093060,"name":"OpenELEC/OpenELEC.tv","url":"https://api.github.com/repos/OpenELEC/OpenELEC.tv"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/OpenELEC/OpenELEC.tv/issues/3726","labels_url":"https://api.github.com/repos/OpenELEC/OpenELEC.tv/issues/3726/labels{/name}","comments_url":"https://api.github.com/repos/OpenELEC/OpenELEC.tv/issues/3726/comments","events_url":"https://api.github.com/repos/OpenELEC/OpenELEC.tv/issues/3726/events","html_url":"https://github.com/OpenELEC/OpenELEC.tv/issues/3726","id":53013702,"number":3726,"title":"kodi ","user":{"login":"tomtomclub","id":6623432,"avatar_url":"https://avatars.githubusercontent.com/u/6623432?v=3","gravatar_id":"","url":"https://api.github.com/users/tomtomclub","html_url":"https://github.com/tomtomclub","followers_url":"https://api.github.com/users/tomtomclub/followers","following_url":"https://api.github.com/users/tomtomclub/following{/other_user}","gists_url":"https://api.github.com/users/tomtomclub/gists{/gist_id}","starred_url":"https://api.github.com/users/tomtomclub/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tomtomclub/subscriptions","organizations_url":"https://api.github.com/users/tomtomclub/orgs","repos_url":"https://api.github.com/users/tomtomclub/repos","events_url":"https://api.github.com/users/tomtomclub/events{/privacy}","received_events_url":"https://api.github.com/users/tomtomclub/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":83,"created_at":"2014-12-29T00:27:55Z","updated_at":"2015-01-01T15:07:33Z","closed_at":null,"body":"\r\nmany attempts sinks all kodi hangs after 3 min video playing it stop en required rebooting,even after fresh install but \r\ngotham works well \r\n\r\nsysteem ASRock Q1900M\r\n\r\n\r\nhttp://pastebin.com/VwkCW0cf"},"comment":{"url":"https://api.github.com/repos/OpenELEC/OpenELEC.tv/issues/comments/68488632","html_url":"https://github.com/OpenELEC/OpenELEC.tv/issues/3726#issuecomment-68488632","issue_url":"https://api.github.com/repos/OpenELEC/OpenELEC.tv/issues/3726","id":68488632,"user":{"login":"fritsch","id":1089309,"avatar_url":"https://avatars.githubusercontent.com/u/1089309?v=3","gravatar_id":"","url":"https://api.github.com/users/fritsch","html_url":"https://github.com/fritsch","followers_url":"https://api.github.com/users/fritsch/followers","following_url":"https://api.github.com/users/fritsch/following{/other_user}","gists_url":"https://api.github.com/users/fritsch/gists{/gist_id}","starred_url":"https://api.github.com/users/fritsch/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fritsch/subscriptions","organizations_url":"https://api.github.com/users/fritsch/orgs","repos_url":"https://api.github.com/users/fritsch/repos","events_url":"https://api.github.com/users/fritsch/events{/privacy}","received_events_url":"https://api.github.com/users/fritsch/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:07:33Z","updated_at":"2015-01-01T15:07:33Z","body":"https://dl.dropboxusercontent.com/u/55728161/OpenELEC-Generic.x86_64-5.0.0.tar <- oki what works here? Anything better / worse?"}},"public":true,"created_at":"2015-01-01T15:07:34Z","org":{"id":487665,"login":"OpenELEC","gravatar_id":"","url":"https://api.github.com/orgs/OpenELEC","avatar_url":"https://avatars.githubusercontent.com/u/487665?"}} +,{"id":"2489654553","type":"WatchEvent","actor":{"id":3747001,"login":"MrP123","gravatar_id":"","url":"https://api.github.com/users/MrP123","avatar_url":"https://avatars.githubusercontent.com/u/3747001?"},"repo":{"id":14807173,"name":"SamyPesse/How-to-Make-a-Computer-Operating-System","url":"https://api.github.com/repos/SamyPesse/How-to-Make-a-Computer-Operating-System"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:07:34Z"} +,{"id":"2489654554","type":"CreateEvent","actor":{"id":37621,"login":"lorenzo","gravatar_id":"","url":"https://api.github.com/users/lorenzo","avatar_url":"https://avatars.githubusercontent.com/u/37621?"},"repo":{"id":656494,"name":"cakephp/cakephp","url":"https://api.github.com/repos/cakephp/cakephp"},"payload":{"ref":"3.0-move-model","ref_type":"branch","master_branch":"master","description":"CakePHP: The Rapid Development Framework for PHP - Official Repository","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:07:34Z","org":{"id":23666,"login":"cakephp","gravatar_id":"","url":"https://api.github.com/orgs/cakephp","avatar_url":"https://avatars.githubusercontent.com/u/23666?"}} +,{"id":"2489654555","type":"PushEvent","actor":{"id":389861,"login":"ZoogieZork","gravatar_id":"","url":"https://api.github.com/users/ZoogieZork","avatar_url":"https://avatars.githubusercontent.com/u/389861?"},"repo":{"id":6660510,"name":"HoverRace/HoverRace","url":"https://api.github.com/repos/HoverRace/HoverRace"},"payload":{"push_id":536865584,"size":4,"distinct_size":0,"ref":"refs/heads/external-libs","head":"6cae6c3a49cfd1dd6dde7371e931e2f9ef8e62a9","before":"dbcbf719618b6bdcf3b1bb91bd55df8b7a906d60","commits":[{"sha":"c6a5169caaa2b0b3436ccbd6c3e18027ebc65083","author":{"email":"ad312012bb5f4f9d2a9d598fc62050de6dde1721@lugatgt.org","name":"Michael Imamura"},"message":"Remove debug message.","distinct":false,"url":"https://api.github.com/repos/HoverRace/HoverRace/commits/c6a5169caaa2b0b3436ccbd6c3e18027ebc65083"},{"sha":"07a00f79e8a6e270909fdb03bbfd975cf497130d","author":{"email":"ad312012bb5f4f9d2a9d598fc62050de6dde1721@lugatgt.org","name":"Michael Imamura"},"message":"Clarify that OpenPath() only supports directories.","distinct":false,"url":"https://api.github.com/repos/HoverRace/HoverRace/commits/07a00f79e8a6e270909fdb03bbfd975cf497130d"},{"sha":"d2295bf869e98d1361e0803c59b2c82d03671087","author":{"email":"ad312012bb5f4f9d2a9d598fc62050de6dde1721@lugatgt.org","name":"Michael Imamura"},"message":"Shift the icon when pressed.\n\nThe icon staying put when the button is pressed looks especially weird\nwith the shortcut key.","distinct":false,"url":"https://api.github.com/repos/HoverRace/HoverRace/commits/d2295bf869e98d1361e0803c59b2c82d03671087"},{"sha":"6cae6c3a49cfd1dd6dde7371e931e2f9ef8e62a9","author":{"email":"ad312012bb5f4f9d2a9d598fc62050de6dde1721@lugatgt.org","name":"Michael Imamura"},"message":"Upgrade to Cotire 1.6.8.\n\nThis fixes issues with CMake 3.1.\n\nNote: We still don't officially support Cotire unity builds.","distinct":false,"url":"https://api.github.com/repos/HoverRace/HoverRace/commits/6cae6c3a49cfd1dd6dde7371e931e2f9ef8e62a9"}]},"public":true,"created_at":"2015-01-01T15:07:34Z","org":{"id":2780013,"login":"HoverRace","gravatar_id":"","url":"https://api.github.com/orgs/HoverRace","avatar_url":"https://avatars.githubusercontent.com/u/2780013?"}} +,{"id":"2489654556","type":"ForkEvent","actor":{"id":5453884,"login":"jonr42","gravatar_id":"","url":"https://api.github.com/users/jonr42","avatar_url":"https://avatars.githubusercontent.com/u/5453884?"},"repo":{"id":14802799,"name":"jeroenjanssens/command-line-one-liners","url":"https://api.github.com/repos/jeroenjanssens/command-line-one-liners"},"payload":{"forkee":{"id":28688731,"name":"command-line-one-liners","full_name":"jonr42/command-line-one-liners","owner":{"login":"jonr42","id":5453884,"avatar_url":"https://avatars.githubusercontent.com/u/5453884?v=3","gravatar_id":"","url":"https://api.github.com/users/jonr42","html_url":"https://github.com/jonr42","followers_url":"https://api.github.com/users/jonr42/followers","following_url":"https://api.github.com/users/jonr42/following{/other_user}","gists_url":"https://api.github.com/users/jonr42/gists{/gist_id}","starred_url":"https://api.github.com/users/jonr42/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jonr42/subscriptions","organizations_url":"https://api.github.com/users/jonr42/orgs","repos_url":"https://api.github.com/users/jonr42/repos","events_url":"https://api.github.com/users/jonr42/events{/privacy}","received_events_url":"https://api.github.com/users/jonr42/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/jonr42/command-line-one-liners","description":"Command line one-liners","fork":true,"url":"https://api.github.com/repos/jonr42/command-line-one-liners","forks_url":"https://api.github.com/repos/jonr42/command-line-one-liners/forks","keys_url":"https://api.github.com/repos/jonr42/command-line-one-liners/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jonr42/command-line-one-liners/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jonr42/command-line-one-liners/teams","hooks_url":"https://api.github.com/repos/jonr42/command-line-one-liners/hooks","issue_events_url":"https://api.github.com/repos/jonr42/command-line-one-liners/issues/events{/number}","events_url":"https://api.github.com/repos/jonr42/command-line-one-liners/events","assignees_url":"https://api.github.com/repos/jonr42/command-line-one-liners/assignees{/user}","branches_url":"https://api.github.com/repos/jonr42/command-line-one-liners/branches{/branch}","tags_url":"https://api.github.com/repos/jonr42/command-line-one-liners/tags","blobs_url":"https://api.github.com/repos/jonr42/command-line-one-liners/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jonr42/command-line-one-liners/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jonr42/command-line-one-liners/git/refs{/sha}","trees_url":"https://api.github.com/repos/jonr42/command-line-one-liners/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jonr42/command-line-one-liners/statuses/{sha}","languages_url":"https://api.github.com/repos/jonr42/command-line-one-liners/languages","stargazers_url":"https://api.github.com/repos/jonr42/command-line-one-liners/stargazers","contributors_url":"https://api.github.com/repos/jonr42/command-line-one-liners/contributors","subscribers_url":"https://api.github.com/repos/jonr42/command-line-one-liners/subscribers","subscription_url":"https://api.github.com/repos/jonr42/command-line-one-liners/subscription","commits_url":"https://api.github.com/repos/jonr42/command-line-one-liners/commits{/sha}","git_commits_url":"https://api.github.com/repos/jonr42/command-line-one-liners/git/commits{/sha}","comments_url":"https://api.github.com/repos/jonr42/command-line-one-liners/comments{/number}","issue_comment_url":"https://api.github.com/repos/jonr42/command-line-one-liners/issues/comments/{number}","contents_url":"https://api.github.com/repos/jonr42/command-line-one-liners/contents/{+path}","compare_url":"https://api.github.com/repos/jonr42/command-line-one-liners/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jonr42/command-line-one-liners/merges","archive_url":"https://api.github.com/repos/jonr42/command-line-one-liners/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jonr42/command-line-one-liners/downloads","issues_url":"https://api.github.com/repos/jonr42/command-line-one-liners/issues{/number}","pulls_url":"https://api.github.com/repos/jonr42/command-line-one-liners/pulls{/number}","milestones_url":"https://api.github.com/repos/jonr42/command-line-one-liners/milestones{/number}","notifications_url":"https://api.github.com/repos/jonr42/command-line-one-liners/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jonr42/command-line-one-liners/labels{/name}","releases_url":"https://api.github.com/repos/jonr42/command-line-one-liners/releases{/id}","created_at":"2015-01-01T15:07:34Z","updated_at":"2014-11-25T00:52:09Z","pushed_at":"2013-11-29T14:09:52Z","git_url":"git://github.com/jonr42/command-line-one-liners.git","ssh_url":"git@github.com:jonr42/command-line-one-liners.git","clone_url":"https://github.com/jonr42/command-line-one-liners.git","svn_url":"https://github.com/jonr42/command-line-one-liners","homepage":null,"size":90,"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:07:34Z"} +,{"id":"2489654561","type":"PushEvent","actor":{"id":544356,"login":"mattholl","gravatar_id":"","url":"https://api.github.com/users/mattholl","avatar_url":"https://avatars.githubusercontent.com/u/544356?"},"repo":{"id":28675210,"name":"mattholl/BBCRadioProxy","url":"https://api.github.com/repos/mattholl/BBCRadioProxy"},"payload":{"push_id":536865587,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"0d9364fbe4e3573c40484d93a2ea4eae9dcb7259","before":"d2bc15040e70266ab86edf4655157f2efe803840","commits":[{"sha":"c2654061be4e94eb6beed96bb1e6a99160d09be1","author":{"email":"3bc376a0efe73778c259352b09e49b369f7683cc@gmail.com","name":"mattholl"},"message":"fix logging hostname rather than host","distinct":true,"url":"https://api.github.com/repos/mattholl/BBCRadioProxy/commits/c2654061be4e94eb6beed96bb1e6a99160d09be1"},{"sha":"0d9364fbe4e3573c40484d93a2ea4eae9dcb7259","author":{"email":"3bc376a0efe73778c259352b09e49b369f7683cc@gmail.com","name":"mattholl"},"message":"Update the BBC radio paths, they seem to have changed.\nThe ones added here are indicated in the 302 response from the old BBC URLs.","distinct":true,"url":"https://api.github.com/repos/mattholl/BBCRadioProxy/commits/0d9364fbe4e3573c40484d93a2ea4eae9dcb7259"}]},"public":true,"created_at":"2015-01-01T15:07:35Z"} +,{"id":"2489654564","type":"IssueCommentEvent","actor":{"id":1069318,"login":"roblabla","gravatar_id":"","url":"https://api.github.com/users/roblabla","avatar_url":"https://avatars.githubusercontent.com/u/1069318?"},"repo":{"id":7394347,"name":"andrewrk/node-minecraft-protocol","url":"https://api.github.com/repos/andrewrk/node-minecraft-protocol"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/andrewrk/node-minecraft-protocol/issues/96","labels_url":"https://api.github.com/repos/andrewrk/node-minecraft-protocol/issues/96/labels{/name}","comments_url":"https://api.github.com/repos/andrewrk/node-minecraft-protocol/issues/96/comments","events_url":"https://api.github.com/repos/andrewrk/node-minecraft-protocol/issues/96/events","html_url":"https://github.com/andrewrk/node-minecraft-protocol/issues/96","id":42034485,"number":96,"title":"Support 1.8","user":{"login":"roblabla","id":1069318,"avatar_url":"https://avatars.githubusercontent.com/u/1069318?v=3","gravatar_id":"","url":"https://api.github.com/users/roblabla","html_url":"https://github.com/roblabla","followers_url":"https://api.github.com/users/roblabla/followers","following_url":"https://api.github.com/users/roblabla/following{/other_user}","gists_url":"https://api.github.com/users/roblabla/gists{/gist_id}","starred_url":"https://api.github.com/users/roblabla/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/roblabla/subscriptions","organizations_url":"https://api.github.com/users/roblabla/orgs","repos_url":"https://api.github.com/users/roblabla/repos","events_url":"https://api.github.com/users/roblabla/events{/privacy}","received_events_url":"https://api.github.com/users/roblabla/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":24,"created_at":"2014-09-05T10:40:22Z","updated_at":"2015-01-01T15:07:36Z","closed_at":null,"body":"Just realized 1.8 came out. It's that time of the year I guess. Time to update the protocol definition for 1.8.\r\n\r\nWith this, I thought I might try to tackle #65 using roblabla-sauce awesomeness. \r\n\r\nTODO : \r\n- Update the packet definitions\r\n- Update the tests\r\n- Add new compression system... Mojang why did you change the pipeline again :unamused: "},"comment":{"url":"https://api.github.com/repos/andrewrk/node-minecraft-protocol/issues/comments/68488634","html_url":"https://github.com/andrewrk/node-minecraft-protocol/issues/96#issuecomment-68488634","issue_url":"https://api.github.com/repos/andrewrk/node-minecraft-protocol/issues/96","id":68488634,"user":{"login":"roblabla","id":1069318,"avatar_url":"https://avatars.githubusercontent.com/u/1069318?v=3","gravatar_id":"","url":"https://api.github.com/users/roblabla","html_url":"https://github.com/roblabla","followers_url":"https://api.github.com/users/roblabla/followers","following_url":"https://api.github.com/users/roblabla/following{/other_user}","gists_url":"https://api.github.com/users/roblabla/gists{/gist_id}","starred_url":"https://api.github.com/users/roblabla/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/roblabla/subscriptions","organizations_url":"https://api.github.com/users/roblabla/orgs","repos_url":"https://api.github.com/users/roblabla/repos","events_url":"https://api.github.com/users/roblabla/events{/privacy}","received_events_url":"https://api.github.com/users/roblabla/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:07:36Z","updated_at":"2015-01-01T15:07:36Z","body":"@wtfaremyinitials I just reviewed your code for compression aaand it's wrong (probably should have done that earlier). You should read through the [wiki.vg packet format]|(http://wiki.vg/Protocol#Packet_format), you'll see that even if [```buffer.length > this.compressionThreshold```](https://github.com/wtfaremyinitials/node-minecraft-protocol/blob/675d358dec51d1d3e56068768062881c51b681d1/lib/client.js#L169), you should still pack the packet in the new format, just with dataLength to 0. There are a couple other mistakes, such as giving the wrong value to [packetLength](https://github.com/wtfaremyinitials/node-minecraft-protocol/blob/675d358dec51d1d3e56068768062881c51b681d1/lib/protocol.js#L1295). It's supposed to be the size of the COMPRESSED packet, whereas you're always giving it the size of the uncompressed packet. \r\n\r\nI'm going to be forking your work and try to fix it."}},"public":true,"created_at":"2015-01-01T15:07:36Z"} +,{"id":"2489654565","type":"PushEvent","actor":{"id":4610612,"login":"Wall-Dough","gravatar_id":"","url":"https://api.github.com/users/Wall-Dough","avatar_url":"https://avatars.githubusercontent.com/u/4610612?"},"repo":{"id":27177551,"name":"Wall-Dough/infinite-monkeys","url":"https://api.github.com/repos/Wall-Dough/infinite-monkeys"},"payload":{"push_id":536865589,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"52fa77f4dbde7e864151ba18cc34dee28dc887a1","before":"3ff74dc20d37bf373c76289ad2ea7257a000e28b","commits":[{"sha":"52fa77f4dbde7e864151ba18cc34dee28dc887a1","author":{"email":"623372bcd722ceb16f7e85d758f89088b76f922e@gmail.com","name":"Wall-Dough"},"message":"Update code.js","distinct":true,"url":"https://api.github.com/repos/Wall-Dough/infinite-monkeys/commits/52fa77f4dbde7e864151ba18cc34dee28dc887a1"}]},"public":true,"created_at":"2015-01-01T15:07:36Z"} +,{"id":"2489654567","type":"WatchEvent","actor":{"id":208340,"login":"myfreeweb","gravatar_id":"","url":"https://api.github.com/users/myfreeweb","avatar_url":"https://avatars.githubusercontent.com/u/208340?"},"repo":{"id":28081156,"name":"lexrus/VPNOn","url":"https://api.github.com/repos/lexrus/VPNOn"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:07:36Z"} +,{"id":"2489654568","type":"WatchEvent","actor":{"id":848556,"login":"elykahn","gravatar_id":"","url":"https://api.github.com/users/elykahn","avatar_url":"https://avatars.githubusercontent.com/u/848556?"},"repo":{"id":7820076,"name":"desandro/draggabilly","url":"https://api.github.com/repos/desandro/draggabilly"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:07:36Z"} +,{"id":"2489654570","type":"PushEvent","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":{"push_id":536865591,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b88088ca06628f0318e7f7fb145878289c16748e","before":"42382ba98549144234ea8afa7761f650470c3706","commits":[{"sha":"b88088ca06628f0318e7f7fb145878289c16748e","author":{"email":"a4f701001850c825986d90af96834433803aad7d@gmx.de","name":"Clemens Ahrens"},"message":"init commit","distinct":true,"url":"https://api.github.com/repos/ClemensAhrens/coref/commits/b88088ca06628f0318e7f7fb145878289c16748e"}]},"public":true,"created_at":"2015-01-01T15:07:37Z"} +,{"id":"2489654571","type":"PushEvent","actor":{"id":2994580,"login":"jksr","gravatar_id":"","url":"https://api.github.com/users/jksr","avatar_url":"https://avatars.githubusercontent.com/u/2994580?"},"repo":{"id":27839992,"name":"jksr/bb-pipe","url":"https://api.github.com/repos/jksr/bb-pipe"},"payload":{"push_id":536865592,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"90fd05d431d46a7c010170bdf6ca92cf95523e23","before":"bcfffe97d64a64e83ef6902f7fceec1f118d0beb","commits":[{"sha":"90fd05d431d46a7c010170bdf6ca92cf95523e23","author":{"email":"ef4e6a2a34fba269e9eb8bc6e61f6804bf770edc@gmail.com","name":"jksr"},"message":"all inputs done for hydroscale","distinct":true,"url":"https://api.github.com/repos/jksr/bb-pipe/commits/90fd05d431d46a7c010170bdf6ca92cf95523e23"}]},"public":true,"created_at":"2015-01-01T15:07:37Z"} +,{"id":"2489654578","type":"PushEvent","actor":{"id":7038139,"login":"JoshuaJiangFD","gravatar_id":"","url":"https://api.github.com/users/JoshuaJiangFD","avatar_url":"https://avatars.githubusercontent.com/u/7038139?"},"repo":{"id":27712655,"name":"JoshuaJiangFD/leetcode-in-java","url":"https://api.github.com/repos/JoshuaJiangFD/leetcode-in-java"},"payload":{"push_id":536865596,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0829f549d6c2e02b1dbf932933a83b6cbce8693f","before":"5331fb67b5cced83838c6f55a9898f41e29e63e4","commits":[{"sha":"0829f549d6c2e02b1dbf932933a83b6cbce8693f","author":{"email":"e2e05a2c65b3a2b7414b619712f2645ceb33308a@qq.com","name":"Joshua Jiang"},"message":"check in","distinct":true,"url":"https://api.github.com/repos/JoshuaJiangFD/leetcode-in-java/commits/0829f549d6c2e02b1dbf932933a83b6cbce8693f"}]},"public":true,"created_at":"2015-01-01T15:07:37Z"} +,{"id":"2489654580","type":"PushEvent","actor":{"id":519947,"login":"ngarbezza","gravatar_id":"","url":"https://api.github.com/users/ngarbezza","avatar_url":"https://avatars.githubusercontent.com/u/519947?"},"repo":{"id":22035288,"name":"ngarbezza/java-legacy-code-exercise","url":"https://api.github.com/repos/ngarbezza/java-legacy-code-exercise"},"payload":{"push_id":536865597,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"55ea84af0aaf42a65e5b3e899c209f9db7cdc4fa","before":"8ed4b8fbc9fddfaef1b169b260348812b649c4ad","commits":[{"sha":"55ea84af0aaf42a65e5b3e899c209f9db7cdc4fa","author":{"email":"c117da77fc941d5d302f17d8cd876e7378e43ccd@gmail.com","name":"Nahuel Garbezza"},"message":"add sasa-ui-swing maven module to finally split it from the model","distinct":true,"url":"https://api.github.com/repos/ngarbezza/java-legacy-code-exercise/commits/55ea84af0aaf42a65e5b3e899c209f9db7cdc4fa"}]},"public":true,"created_at":"2015-01-01T15:07:37Z"} +,{"id":"2489654582","type":"ForkEvent","actor":{"id":6286894,"login":"igokuson","gravatar_id":"","url":"https://api.github.com/users/igokuson","avatar_url":"https://avatars.githubusercontent.com/u/6286894?"},"repo":{"id":3299208,"name":"videolan/vlc","url":"https://api.github.com/repos/videolan/vlc"},"payload":{"forkee":{"id":28688732,"name":"vlc","full_name":"igokuson/vlc","owner":{"login":"igokuson","id":6286894,"avatar_url":"https://avatars.githubusercontent.com/u/6286894?v=3","gravatar_id":"","url":"https://api.github.com/users/igokuson","html_url":"https://github.com/igokuson","followers_url":"https://api.github.com/users/igokuson/followers","following_url":"https://api.github.com/users/igokuson/following{/other_user}","gists_url":"https://api.github.com/users/igokuson/gists{/gist_id}","starred_url":"https://api.github.com/users/igokuson/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/igokuson/subscriptions","organizations_url":"https://api.github.com/users/igokuson/orgs","repos_url":"https://api.github.com/users/igokuson/repos","events_url":"https://api.github.com/users/igokuson/events{/privacy}","received_events_url":"https://api.github.com/users/igokuson/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/igokuson/vlc","description":"VLC media player - All pull requests are ignored, please follow https://wiki.videolan.org/Sending_Patches_VLC/","fork":true,"url":"https://api.github.com/repos/igokuson/vlc","forks_url":"https://api.github.com/repos/igokuson/vlc/forks","keys_url":"https://api.github.com/repos/igokuson/vlc/keys{/key_id}","collaborators_url":"https://api.github.com/repos/igokuson/vlc/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/igokuson/vlc/teams","hooks_url":"https://api.github.com/repos/igokuson/vlc/hooks","issue_events_url":"https://api.github.com/repos/igokuson/vlc/issues/events{/number}","events_url":"https://api.github.com/repos/igokuson/vlc/events","assignees_url":"https://api.github.com/repos/igokuson/vlc/assignees{/user}","branches_url":"https://api.github.com/repos/igokuson/vlc/branches{/branch}","tags_url":"https://api.github.com/repos/igokuson/vlc/tags","blobs_url":"https://api.github.com/repos/igokuson/vlc/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/igokuson/vlc/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/igokuson/vlc/git/refs{/sha}","trees_url":"https://api.github.com/repos/igokuson/vlc/git/trees{/sha}","statuses_url":"https://api.github.com/repos/igokuson/vlc/statuses/{sha}","languages_url":"https://api.github.com/repos/igokuson/vlc/languages","stargazers_url":"https://api.github.com/repos/igokuson/vlc/stargazers","contributors_url":"https://api.github.com/repos/igokuson/vlc/contributors","subscribers_url":"https://api.github.com/repos/igokuson/vlc/subscribers","subscription_url":"https://api.github.com/repos/igokuson/vlc/subscription","commits_url":"https://api.github.com/repos/igokuson/vlc/commits{/sha}","git_commits_url":"https://api.github.com/repos/igokuson/vlc/git/commits{/sha}","comments_url":"https://api.github.com/repos/igokuson/vlc/comments{/number}","issue_comment_url":"https://api.github.com/repos/igokuson/vlc/issues/comments/{number}","contents_url":"https://api.github.com/repos/igokuson/vlc/contents/{+path}","compare_url":"https://api.github.com/repos/igokuson/vlc/compare/{base}...{head}","merges_url":"https://api.github.com/repos/igokuson/vlc/merges","archive_url":"https://api.github.com/repos/igokuson/vlc/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/igokuson/vlc/downloads","issues_url":"https://api.github.com/repos/igokuson/vlc/issues{/number}","pulls_url":"https://api.github.com/repos/igokuson/vlc/pulls{/number}","milestones_url":"https://api.github.com/repos/igokuson/vlc/milestones{/number}","notifications_url":"https://api.github.com/repos/igokuson/vlc/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/igokuson/vlc/labels{/name}","releases_url":"https://api.github.com/repos/igokuson/vlc/releases{/id}","created_at":"2015-01-01T15:07:38Z","updated_at":"2015-01-01T05:49:12Z","pushed_at":"2014-12-31T16:20:11Z","git_url":"git://github.com/igokuson/vlc.git","ssh_url":"git@github.com:igokuson/vlc.git","clone_url":"https://github.com/igokuson/vlc.git","svn_url":"https://github.com/igokuson/vlc","homepage":"http://www.videolan.org/vlc","size":282695,"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:07:38Z","org":{"id":1389585,"login":"videolan","gravatar_id":"","url":"https://api.github.com/orgs/videolan","avatar_url":"https://avatars.githubusercontent.com/u/1389585?"}} +,{"id":"2489654592","type":"PushEvent","actor":{"id":5112284,"login":"imrenagi","gravatar_id":"","url":"https://api.github.com/users/imrenagi","avatar_url":"https://avatars.githubusercontent.com/u/5112284?"},"repo":{"id":28688007,"name":"imrenagi/MCL_Java","url":"https://api.github.com/repos/imrenagi/MCL_Java"},"payload":{"push_id":536865600,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"136d0319b8caa66390f9c58a76aa95f43796f55a","before":"e359f7bbb72a962962be065bb38e019d94059a2c","commits":[{"sha":"136d0319b8caa66390f9c58a76aa95f43796f55a","author":{"email":"c1713188bd0f0158a57d0082fe16d4669413fe0e@icehousecorp.com","name":"Imre Nagi"},"message":"Add project","distinct":true,"url":"https://api.github.com/repos/imrenagi/MCL_Java/commits/136d0319b8caa66390f9c58a76aa95f43796f55a"}]},"public":true,"created_at":"2015-01-01T15:07:39Z"} +,{"id":"2489654598","type":"CreateEvent","actor":{"id":775131,"login":"NiGGa","gravatar_id":"","url":"https://api.github.com/users/NiGGa","avatar_url":"https://avatars.githubusercontent.com/u/775131?"},"repo":{"id":28688733,"name":"NiGGa/nigga.github.io","url":"https://api.github.com/repos/NiGGa/nigga.github.io"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"nigga.github.io","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:07:40Z"} +,{"id":"2489654599","type":"PushEvent","actor":{"id":5958530,"login":"derekhmd","gravatar_id":"","url":"https://api.github.com/users/derekhmd","avatar_url":"https://avatars.githubusercontent.com/u/5958530?"},"repo":{"id":20460653,"name":"derekhmd/derekhmd.github.io","url":"https://api.github.com/repos/derekhmd/derekhmd.github.io"},"payload":{"push_id":536865601,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"310f8ce1bb7b5e0d3b10f9baf9edeee17d9aa7bc","before":"feae0acd84226ede61470e5166c0718eab431498","commits":[{"sha":"0c204d8abaeebb54dae8eb2493b6de69eb4fb356","author":{"email":"e272da00d1c16ae3c1f06dfceeb6ea1f34deb3e9@gmail.com","name":"Derek Ahmed"},"message":"Still some issues with image links\n\n for tesseract not showing up. Perhaps try using background-image\nfor div instead?","distinct":true,"url":"https://api.github.com/repos/derekhmd/derekhmd.github.io/commits/0c204d8abaeebb54dae8eb2493b6de69eb4fb356"},{"sha":"310f8ce1bb7b5e0d3b10f9baf9edeee17d9aa7bc","author":{"email":"e272da00d1c16ae3c1f06dfceeb6ea1f34deb3e9@gmail.com","name":"Derek Ahmed"},"message":"Ongoing issues\n\nContact.png not showing up. Quite sure that it’s linked properly, but\nstill no results","distinct":true,"url":"https://api.github.com/repos/derekhmd/derekhmd.github.io/commits/310f8ce1bb7b5e0d3b10f9baf9edeee17d9aa7bc"}]},"public":true,"created_at":"2015-01-01T15:07:40Z"} +,{"id":"2489654612","type":"ReleaseEvent","actor":{"id":1646422,"login":"brunocarvalhodearaujo","gravatar_id":"","url":"https://api.github.com/users/brunocarvalhodearaujo","avatar_url":"https://avatars.githubusercontent.com/u/1646422?"},"repo":{"id":28688452,"name":"brunocarvalhodearaujo/BackBone","url":"https://api.github.com/repos/brunocarvalhodearaujo/BackBone"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/brunocarvalhodearaujo/BackBone/releases/818690","assets_url":"https://api.github.com/repos/brunocarvalhodearaujo/BackBone/releases/818690/assets","upload_url":"https://uploads.github.com/repos/brunocarvalhodearaujo/BackBone/releases/818690/assets{?name}","html_url":"https://github.com/brunocarvalhodearaujo/BackBone/releases/tag/0.2","id":818690,"tag_name":"0.2","target_commitish":"master","name":"","draft":false,"author":{"login":"brunocarvalhodearaujo","id":1646422,"avatar_url":"https://avatars.githubusercontent.com/u/1646422?v=3","gravatar_id":"","url":"https://api.github.com/users/brunocarvalhodearaujo","html_url":"https://github.com/brunocarvalhodearaujo","followers_url":"https://api.github.com/users/brunocarvalhodearaujo/followers","following_url":"https://api.github.com/users/brunocarvalhodearaujo/following{/other_user}","gists_url":"https://api.github.com/users/brunocarvalhodearaujo/gists{/gist_id}","starred_url":"https://api.github.com/users/brunocarvalhodearaujo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/brunocarvalhodearaujo/subscriptions","organizations_url":"https://api.github.com/users/brunocarvalhodearaujo/orgs","repos_url":"https://api.github.com/users/brunocarvalhodearaujo/repos","events_url":"https://api.github.com/users/brunocarvalhodearaujo/events{/privacy}","received_events_url":"https://api.github.com/users/brunocarvalhodearaujo/received_events","type":"User","site_admin":false},"prerelease":false,"created_at":"2015-01-01T15:07:32Z","published_at":"2015-01-01T15:07:41Z","assets":[],"tarball_url":"https://api.github.com/repos/brunocarvalhodearaujo/BackBone/tarball/0.2","zipball_url":"https://api.github.com/repos/brunocarvalhodearaujo/BackBone/zipball/0.2","body":""}},"public":true,"created_at":"2015-01-01T15:07:42Z"} +,{"id":"2489654616","type":"PushEvent","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":{"push_id":536865603,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8a5cbf7640b1968e77609daca131e78d1d1e66bb","before":"8b69759ef82e09d1446a47e5831c8ff823bf9ced","commits":[{"sha":"8a5cbf7640b1968e77609daca131e78d1d1e66bb","author":{"email":"aec2a6abcd6176c05ffa5540cfb442d2a0aa0a89@aspose.com","name":"Shahzad Latif"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/shahzad-latif/testrepo/commits/8a5cbf7640b1968e77609daca131e78d1d1e66bb"}]},"public":true,"created_at":"2015-01-01T15:07:42Z"} +,{"id":"2489654618","type":"PushEvent","actor":{"id":183092,"login":"ahiliation","gravatar_id":"","url":"https://api.github.com/users/ahiliation","avatar_url":"https://avatars.githubusercontent.com/u/183092?"},"repo":{"id":26358910,"name":"ahiliation/beautifulwork","url":"https://api.github.com/repos/ahiliation/beautifulwork"},"payload":{"push_id":536865604,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4427946427fa83c5bbe45bb314fff92036d1d11c","before":"0faf3f34d36fa3a339ed0336620f213eeca5acd2","commits":[{"sha":"4427946427fa83c5bbe45bb314fff92036d1d11c","author":{"email":"06654cc2c89ac7125a96acf514e58bb1513f4158@rocketmail.com","name":"Jeffrin Jose T"},"message":"work","distinct":true,"url":"https://api.github.com/repos/ahiliation/beautifulwork/commits/4427946427fa83c5bbe45bb314fff92036d1d11c"}]},"public":true,"created_at":"2015-01-01T15:07:42Z"} +,{"id":"2489654619","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":28688452,"name":"brunocarvalhodearaujo/BackBone","url":"https://api.github.com/repos/brunocarvalhodearaujo/BackBone"},"payload":{"ref":"0.2","ref_type":"tag","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:07:42Z"} +,{"id":"2489654620","type":"PushEvent","actor":{"id":10322234,"login":"gerigjylbegu","gravatar_id":"","url":"https://api.github.com/users/gerigjylbegu","avatar_url":"https://avatars.githubusercontent.com/u/10322234?"},"repo":{"id":28588564,"name":"gerigjylbegu/gerigjylbegu.github.io","url":"https://api.github.com/repos/gerigjylbegu/gerigjylbegu.github.io"},"payload":{"push_id":536865605,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bc28ec1ef9eb4b319ded68da3b85a9414af2df05","before":"fc0af0966019edbad0f3b6ac36312c27184e1d29","commits":[{"sha":"bc28ec1ef9eb4b319ded68da3b85a9414af2df05","author":{"email":"5d364efc371fe3cf76badc72842740c09acb86f6@gmail.com","name":"gerigjylbegu"},"message":"Update 2014-12-31-Blog.md","distinct":true,"url":"https://api.github.com/repos/gerigjylbegu/gerigjylbegu.github.io/commits/bc28ec1ef9eb4b319ded68da3b85a9414af2df05"}]},"public":true,"created_at":"2015-01-01T15:07:42Z"} +,{"id":"2489654621","type":"CreateEvent","actor":{"id":920462,"login":"matsumo1001","gravatar_id":"","url":"https://api.github.com/users/matsumo1001","avatar_url":"https://avatars.githubusercontent.com/u/920462?"},"repo":{"id":28406037,"name":"TEAM-SAT/tabinotane","url":"https://api.github.com/repos/TEAM-SAT/tabinotane"},"payload":{"ref":"improve_performance","ref_type":"branch","master_branch":"master","description":"タビノタネ − 旅行目的地レコメンドサービス","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:07:42Z","org":{"id":10265827,"login":"TEAM-SAT","gravatar_id":"","url":"https://api.github.com/orgs/TEAM-SAT","avatar_url":"https://avatars.githubusercontent.com/u/10265827?"}} +,{"id":"2489654622","type":"IssuesEvent","actor":{"id":4178716,"login":"53ningen","gravatar_id":"","url":"https://api.github.com/users/53ningen","avatar_url":"https://avatars.githubusercontent.com/u/4178716?"},"repo":{"id":28675239,"name":"53ningen/go","url":"https://api.github.com/repos/53ningen/go"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/53ningen/go/issues/2","labels_url":"https://api.github.com/repos/53ningen/go/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/53ningen/go/issues/2/comments","events_url":"https://api.github.com/repos/53ningen/go/issues/2/events","html_url":"https://github.com/53ningen/go/issues/2","id":53221485,"number":2,"title":"write lexer to enable basic arithmetic operations","user":{"login":"53ningen","id":4178716,"avatar_url":"https://avatars.githubusercontent.com/u/4178716?v=3","gravatar_id":"","url":"https://api.github.com/users/53ningen","html_url":"https://github.com/53ningen","followers_url":"https://api.github.com/users/53ningen/followers","following_url":"https://api.github.com/users/53ningen/following{/other_user}","gists_url":"https://api.github.com/users/53ningen/gists{/gist_id}","starred_url":"https://api.github.com/users/53ningen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/53ningen/subscriptions","organizations_url":"https://api.github.com/users/53ningen/orgs","repos_url":"https://api.github.com/users/53ningen/repos","events_url":"https://api.github.com/users/53ningen/events{/privacy}","received_events_url":"https://api.github.com/users/53ningen/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":{"login":"53ningen","id":4178716,"avatar_url":"https://avatars.githubusercontent.com/u/4178716?v=3","gravatar_id":"","url":"https://api.github.com/users/53ningen","html_url":"https://github.com/53ningen","followers_url":"https://api.github.com/users/53ningen/followers","following_url":"https://api.github.com/users/53ningen/following{/other_user}","gists_url":"https://api.github.com/users/53ningen/gists{/gist_id}","starred_url":"https://api.github.com/users/53ningen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/53ningen/subscriptions","organizations_url":"https://api.github.com/users/53ningen/orgs","repos_url":"https://api.github.com/users/53ningen/repos","events_url":"https://api.github.com/users/53ningen/events{/privacy}","received_events_url":"https://api.github.com/users/53ningen/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/53ningen/go/milestones/1","labels_url":"https://api.github.com/repos/53ningen/go/milestones/1/labels","id":918686,"number":1,"title":"v0.0.0 - basic arithmetic operations","description":"enable basic arithmetic operations","creator":{"login":"53ningen","id":4178716,"avatar_url":"https://avatars.githubusercontent.com/u/4178716?v=3","gravatar_id":"","url":"https://api.github.com/users/53ningen","html_url":"https://github.com/53ningen","followers_url":"https://api.github.com/users/53ningen/followers","following_url":"https://api.github.com/users/53ningen/following{/other_user}","gists_url":"https://api.github.com/users/53ningen/gists{/gist_id}","starred_url":"https://api.github.com/users/53ningen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/53ningen/subscriptions","organizations_url":"https://api.github.com/users/53ningen/orgs","repos_url":"https://api.github.com/users/53ningen/repos","events_url":"https://api.github.com/users/53ningen/events{/privacy}","received_events_url":"https://api.github.com/users/53ningen/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":0,"state":"open","created_at":"2014-12-31T21:36:36Z","updated_at":"2015-01-01T15:07:42Z","due_on":"2015-01-03T15:00:00Z","closed_at":null},"comments":0,"created_at":"2015-01-01T15:07:42Z","updated_at":"2015-01-01T15:07:42Z","closed_at":null,"body":""}},"public":true,"created_at":"2015-01-01T15:07:42Z"} +,{"id":"2489654629","type":"PullRequestEvent","actor":{"id":1482672,"login":"deathcore01","gravatar_id":"","url":"https://api.github.com/users/deathcore01","avatar_url":"https://avatars.githubusercontent.com/u/1482672?"},"repo":{"id":26156411,"name":"Rythal/Carbonite","url":"https://api.github.com/repos/Rythal/Carbonite"},"payload":{"action":"opened","number":205,"pull_request":{"url":"https://api.github.com/repos/Rythal/Carbonite/pulls/205","id":26743827,"html_url":"https://github.com/Rythal/Carbonite/pull/205","diff_url":"https://github.com/Rythal/Carbonite/pull/205.diff","patch_url":"https://github.com/Rythal/Carbonite/pull/205.patch","issue_url":"https://api.github.com/repos/Rythal/Carbonite/issues/205","number":205,"state":"open","locked":false,"title":"fix for issue #143","user":{"login":"deathcore01","id":1482672,"avatar_url":"https://avatars.githubusercontent.com/u/1482672?v=3","gravatar_id":"","url":"https://api.github.com/users/deathcore01","html_url":"https://github.com/deathcore01","followers_url":"https://api.github.com/users/deathcore01/followers","following_url":"https://api.github.com/users/deathcore01/following{/other_user}","gists_url":"https://api.github.com/users/deathcore01/gists{/gist_id}","starred_url":"https://api.github.com/users/deathcore01/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deathcore01/subscriptions","organizations_url":"https://api.github.com/users/deathcore01/orgs","repos_url":"https://api.github.com/users/deathcore01/repos","events_url":"https://api.github.com/users/deathcore01/events{/privacy}","received_events_url":"https://api.github.com/users/deathcore01/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:07:43Z","updated_at":"2015-01-01T15:07:43Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/Rythal/Carbonite/pulls/205/commits","review_comments_url":"https://api.github.com/repos/Rythal/Carbonite/pulls/205/comments","review_comment_url":"https://api.github.com/repos/Rythal/Carbonite/pulls/comments/{number}","comments_url":"https://api.github.com/repos/Rythal/Carbonite/issues/205/comments","statuses_url":"https://api.github.com/repos/Rythal/Carbonite/statuses/1a73fa1dc96ce3e9c816c872bb2dd70d558e2ba5","head":{"label":"deathcore01:master","ref":"master","sha":"1a73fa1dc96ce3e9c816c872bb2dd70d558e2ba5","user":{"login":"deathcore01","id":1482672,"avatar_url":"https://avatars.githubusercontent.com/u/1482672?v=3","gravatar_id":"","url":"https://api.github.com/users/deathcore01","html_url":"https://github.com/deathcore01","followers_url":"https://api.github.com/users/deathcore01/followers","following_url":"https://api.github.com/users/deathcore01/following{/other_user}","gists_url":"https://api.github.com/users/deathcore01/gists{/gist_id}","starred_url":"https://api.github.com/users/deathcore01/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deathcore01/subscriptions","organizations_url":"https://api.github.com/users/deathcore01/orgs","repos_url":"https://api.github.com/users/deathcore01/repos","events_url":"https://api.github.com/users/deathcore01/events{/privacy}","received_events_url":"https://api.github.com/users/deathcore01/received_events","type":"User","site_admin":false},"repo":{"id":28688670,"name":"Carbonite","full_name":"deathcore01/Carbonite","owner":{"login":"deathcore01","id":1482672,"avatar_url":"https://avatars.githubusercontent.com/u/1482672?v=3","gravatar_id":"","url":"https://api.github.com/users/deathcore01","html_url":"https://github.com/deathcore01","followers_url":"https://api.github.com/users/deathcore01/followers","following_url":"https://api.github.com/users/deathcore01/following{/other_user}","gists_url":"https://api.github.com/users/deathcore01/gists{/gist_id}","starred_url":"https://api.github.com/users/deathcore01/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deathcore01/subscriptions","organizations_url":"https://api.github.com/users/deathcore01/orgs","repos_url":"https://api.github.com/users/deathcore01/repos","events_url":"https://api.github.com/users/deathcore01/events{/privacy}","received_events_url":"https://api.github.com/users/deathcore01/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/deathcore01/Carbonite","description":"Carbonite Maps System","fork":true,"url":"https://api.github.com/repos/deathcore01/Carbonite","forks_url":"https://api.github.com/repos/deathcore01/Carbonite/forks","keys_url":"https://api.github.com/repos/deathcore01/Carbonite/keys{/key_id}","collaborators_url":"https://api.github.com/repos/deathcore01/Carbonite/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/deathcore01/Carbonite/teams","hooks_url":"https://api.github.com/repos/deathcore01/Carbonite/hooks","issue_events_url":"https://api.github.com/repos/deathcore01/Carbonite/issues/events{/number}","events_url":"https://api.github.com/repos/deathcore01/Carbonite/events","assignees_url":"https://api.github.com/repos/deathcore01/Carbonite/assignees{/user}","branches_url":"https://api.github.com/repos/deathcore01/Carbonite/branches{/branch}","tags_url":"https://api.github.com/repos/deathcore01/Carbonite/tags","blobs_url":"https://api.github.com/repos/deathcore01/Carbonite/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/deathcore01/Carbonite/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/deathcore01/Carbonite/git/refs{/sha}","trees_url":"https://api.github.com/repos/deathcore01/Carbonite/git/trees{/sha}","statuses_url":"https://api.github.com/repos/deathcore01/Carbonite/statuses/{sha}","languages_url":"https://api.github.com/repos/deathcore01/Carbonite/languages","stargazers_url":"https://api.github.com/repos/deathcore01/Carbonite/stargazers","contributors_url":"https://api.github.com/repos/deathcore01/Carbonite/contributors","subscribers_url":"https://api.github.com/repos/deathcore01/Carbonite/subscribers","subscription_url":"https://api.github.com/repos/deathcore01/Carbonite/subscription","commits_url":"https://api.github.com/repos/deathcore01/Carbonite/commits{/sha}","git_commits_url":"https://api.github.com/repos/deathcore01/Carbonite/git/commits{/sha}","comments_url":"https://api.github.com/repos/deathcore01/Carbonite/comments{/number}","issue_comment_url":"https://api.github.com/repos/deathcore01/Carbonite/issues/comments/{number}","contents_url":"https://api.github.com/repos/deathcore01/Carbonite/contents/{+path}","compare_url":"https://api.github.com/repos/deathcore01/Carbonite/compare/{base}...{head}","merges_url":"https://api.github.com/repos/deathcore01/Carbonite/merges","archive_url":"https://api.github.com/repos/deathcore01/Carbonite/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/deathcore01/Carbonite/downloads","issues_url":"https://api.github.com/repos/deathcore01/Carbonite/issues{/number}","pulls_url":"https://api.github.com/repos/deathcore01/Carbonite/pulls{/number}","milestones_url":"https://api.github.com/repos/deathcore01/Carbonite/milestones{/number}","notifications_url":"https://api.github.com/repos/deathcore01/Carbonite/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/deathcore01/Carbonite/labels{/name}","releases_url":"https://api.github.com/repos/deathcore01/Carbonite/releases{/id}","created_at":"2015-01-01T15:03:48Z","updated_at":"2015-01-01T15:06:48Z","pushed_at":"2015-01-01T15:06:48Z","git_url":"git://github.com/deathcore01/Carbonite.git","ssh_url":"git@github.com:deathcore01/Carbonite.git","clone_url":"https://github.com/deathcore01/Carbonite.git","svn_url":"https://github.com/deathcore01/Carbonite","homepage":null,"size":10622,"stargazers_count":0,"watchers_count":0,"language":"Lua","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":"Rythal:master","ref":"master","sha":"8fd7b72c9bc5f327ac89be5ed980e124e2833560","user":{"login":"Rythal","id":6054086,"avatar_url":"https://avatars.githubusercontent.com/u/6054086?v=3","gravatar_id":"","url":"https://api.github.com/users/Rythal","html_url":"https://github.com/Rythal","followers_url":"https://api.github.com/users/Rythal/followers","following_url":"https://api.github.com/users/Rythal/following{/other_user}","gists_url":"https://api.github.com/users/Rythal/gists{/gist_id}","starred_url":"https://api.github.com/users/Rythal/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Rythal/subscriptions","organizations_url":"https://api.github.com/users/Rythal/orgs","repos_url":"https://api.github.com/users/Rythal/repos","events_url":"https://api.github.com/users/Rythal/events{/privacy}","received_events_url":"https://api.github.com/users/Rythal/received_events","type":"User","site_admin":false},"repo":{"id":26156411,"name":"Carbonite","full_name":"Rythal/Carbonite","owner":{"login":"Rythal","id":6054086,"avatar_url":"https://avatars.githubusercontent.com/u/6054086?v=3","gravatar_id":"","url":"https://api.github.com/users/Rythal","html_url":"https://github.com/Rythal","followers_url":"https://api.github.com/users/Rythal/followers","following_url":"https://api.github.com/users/Rythal/following{/other_user}","gists_url":"https://api.github.com/users/Rythal/gists{/gist_id}","starred_url":"https://api.github.com/users/Rythal/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Rythal/subscriptions","organizations_url":"https://api.github.com/users/Rythal/orgs","repos_url":"https://api.github.com/users/Rythal/repos","events_url":"https://api.github.com/users/Rythal/events{/privacy}","received_events_url":"https://api.github.com/users/Rythal/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Rythal/Carbonite","description":"Carbonite Maps System","fork":false,"url":"https://api.github.com/repos/Rythal/Carbonite","forks_url":"https://api.github.com/repos/Rythal/Carbonite/forks","keys_url":"https://api.github.com/repos/Rythal/Carbonite/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Rythal/Carbonite/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Rythal/Carbonite/teams","hooks_url":"https://api.github.com/repos/Rythal/Carbonite/hooks","issue_events_url":"https://api.github.com/repos/Rythal/Carbonite/issues/events{/number}","events_url":"https://api.github.com/repos/Rythal/Carbonite/events","assignees_url":"https://api.github.com/repos/Rythal/Carbonite/assignees{/user}","branches_url":"https://api.github.com/repos/Rythal/Carbonite/branches{/branch}","tags_url":"https://api.github.com/repos/Rythal/Carbonite/tags","blobs_url":"https://api.github.com/repos/Rythal/Carbonite/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Rythal/Carbonite/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Rythal/Carbonite/git/refs{/sha}","trees_url":"https://api.github.com/repos/Rythal/Carbonite/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Rythal/Carbonite/statuses/{sha}","languages_url":"https://api.github.com/repos/Rythal/Carbonite/languages","stargazers_url":"https://api.github.com/repos/Rythal/Carbonite/stargazers","contributors_url":"https://api.github.com/repos/Rythal/Carbonite/contributors","subscribers_url":"https://api.github.com/repos/Rythal/Carbonite/subscribers","subscription_url":"https://api.github.com/repos/Rythal/Carbonite/subscription","commits_url":"https://api.github.com/repos/Rythal/Carbonite/commits{/sha}","git_commits_url":"https://api.github.com/repos/Rythal/Carbonite/git/commits{/sha}","comments_url":"https://api.github.com/repos/Rythal/Carbonite/comments{/number}","issue_comment_url":"https://api.github.com/repos/Rythal/Carbonite/issues/comments/{number}","contents_url":"https://api.github.com/repos/Rythal/Carbonite/contents/{+path}","compare_url":"https://api.github.com/repos/Rythal/Carbonite/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Rythal/Carbonite/merges","archive_url":"https://api.github.com/repos/Rythal/Carbonite/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Rythal/Carbonite/downloads","issues_url":"https://api.github.com/repos/Rythal/Carbonite/issues{/number}","pulls_url":"https://api.github.com/repos/Rythal/Carbonite/pulls{/number}","milestones_url":"https://api.github.com/repos/Rythal/Carbonite/milestones{/number}","notifications_url":"https://api.github.com/repos/Rythal/Carbonite/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Rythal/Carbonite/labels{/name}","releases_url":"https://api.github.com/repos/Rythal/Carbonite/releases{/id}","created_at":"2014-11-04T06:41:58Z","updated_at":"2015-01-01T14:36:53Z","pushed_at":"2015-01-01T14:36:53Z","git_url":"git://github.com/Rythal/Carbonite.git","ssh_url":"git@github.com:Rythal/Carbonite.git","clone_url":"https://github.com/Rythal/Carbonite.git","svn_url":"https://github.com/Rythal/Carbonite","homepage":null,"size":10622,"stargazers_count":56,"watchers_count":56,"language":"Lua","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":41,"mirror_url":null,"open_issues_count":22,"forks":41,"open_issues":22,"watchers":56,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Rythal/Carbonite/pulls/205"},"html":{"href":"https://github.com/Rythal/Carbonite/pull/205"},"issue":{"href":"https://api.github.com/repos/Rythal/Carbonite/issues/205"},"comments":{"href":"https://api.github.com/repos/Rythal/Carbonite/issues/205/comments"},"review_comments":{"href":"https://api.github.com/repos/Rythal/Carbonite/pulls/205/comments"},"review_comment":{"href":"https://api.github.com/repos/Rythal/Carbonite/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/Rythal/Carbonite/pulls/205/commits"},"statuses":{"href":"https://api.github.com/repos/Rythal/Carbonite/statuses/1a73fa1dc96ce3e9c816c872bb2dd70d558e2ba5"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":7,"deletions":2,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:07:43Z"} +,{"id":"2489654632","type":"WatchEvent","actor":{"id":5329480,"login":"kriyss","gravatar_id":"","url":"https://api.github.com/users/kriyss","avatar_url":"https://avatars.githubusercontent.com/u/5329480?"},"repo":{"id":26697605,"name":"malahx/QuickExit","url":"https://api.github.com/repos/malahx/QuickExit"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:07:44Z"} +,{"id":"2489654633","type":"WatchEvent","actor":{"id":10363995,"login":"gkontoudis","gravatar_id":"","url":"https://api.github.com/users/gkontoudis","avatar_url":"https://avatars.githubusercontent.com/u/10363995?"},"repo":{"id":16748564,"name":"zisi/openBionics","url":"https://api.github.com/repos/zisi/openBionics"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:07:44Z"} +,{"id":"2489654646","type":"WatchEvent","actor":{"id":6078139,"login":"mschramek","gravatar_id":"","url":"https://api.github.com/users/mschramek","avatar_url":"https://avatars.githubusercontent.com/u/6078139?"},"repo":{"id":20787122,"name":"begriffs/postgrest","url":"https://api.github.com/repos/begriffs/postgrest"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:07:44Z"} +,{"id":"2489654649","type":"PushEvent","actor":{"id":5638269,"login":"skatsuta","gravatar_id":"","url":"https://api.github.com/users/skatsuta","avatar_url":"https://avatars.githubusercontent.com/u/5638269?"},"repo":{"id":28325202,"name":"skatsuta/kiso-golang","url":"https://api.github.com/repos/skatsuta/kiso-golang"},"payload":{"push_id":536865612,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"287792b23946942eae0e974bec41becc1e62d3de","before":"a98cd1bdf5bb444e7c38eae80931f9212ccf4cf1","commits":[{"sha":"287792b23946942eae0e974bec41becc1e62d3de","author":{"email":"30b86df7a1d2c2012777ff39439b86ed7eca9f9e@cyberagent.co.jp","name":"skatsuta"},"message":"[add] add arithmetic_type.go","distinct":true,"url":"https://api.github.com/repos/skatsuta/kiso-golang/commits/287792b23946942eae0e974bec41becc1e62d3de"}]},"public":true,"created_at":"2015-01-01T15:07:45Z"} +,{"id":"2489654650","type":"IssueCommentEvent","actor":{"id":63502,"login":"ferventcoder","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","avatar_url":"https://avatars.githubusercontent.com/u/63502?"},"repo":{"id":22735696,"name":"chocolatey/chocolatey-package-updater","url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/8","labels_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/8/comments","events_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/8/events","html_url":"https://github.com/chocolatey/chocolatey-package-updater/issues/8","id":50524337,"number":8,"title":"Package pushed to Chocolatey by ketarin while /disablepush has been specified","user":{"login":"030","id":7524528,"avatar_url":"https://avatars.githubusercontent.com/u/7524528?v=3","gravatar_id":"","url":"https://api.github.com/users/030","html_url":"https://github.com/030","followers_url":"https://api.github.com/users/030/followers","following_url":"https://api.github.com/users/030/following{/other_user}","gists_url":"https://api.github.com/users/030/gists{/gist_id}","starred_url":"https://api.github.com/users/030/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/030/subscriptions","organizations_url":"https://api.github.com/users/030/orgs","repos_url":"https://api.github.com/users/030/repos","events_url":"https://api.github.com/users/030/events{/privacy}","received_events_url":"https://api.github.com/users/030/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":5,"created_at":"2014-12-01T13:35:15Z","updated_at":"2015-01-01T15:07:45Z","closed_at":null,"body":"# Expected outcome\r\n\r\nThe package will not be pushed if /disablepush is specified:\r\n\r\n### Execute the following command after downloading\r\n chocopkgup /p {appname} /v {version} /u \"{preupdate-url}\" /u64 \"{url64}\" /pp \"{file}\" /disablepush\r\n\r\n# Current outcome\r\n\r\nThe package is pushed"},"comment":{"url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/comments/68488639","html_url":"https://github.com/chocolatey/chocolatey-package-updater/issues/8#issuecomment-68488639","issue_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/8","id":68488639,"user":{"login":"ferventcoder","id":63502,"avatar_url":"https://avatars.githubusercontent.com/u/63502?v=3","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","html_url":"https://github.com/ferventcoder","followers_url":"https://api.github.com/users/ferventcoder/followers","following_url":"https://api.github.com/users/ferventcoder/following{/other_user}","gists_url":"https://api.github.com/users/ferventcoder/gists{/gist_id}","starred_url":"https://api.github.com/users/ferventcoder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ferventcoder/subscriptions","organizations_url":"https://api.github.com/users/ferventcoder/orgs","repos_url":"https://api.github.com/users/ferventcoder/repos","events_url":"https://api.github.com/users/ferventcoder/events{/privacy}","received_events_url":"https://api.github.com/users/ferventcoder/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:07:45Z","updated_at":"2015-01-01T15:07:45Z","body":"What does the log say? "}},"public":true,"created_at":"2015-01-01T15:07:45Z","org":{"id":811025,"login":"chocolatey","gravatar_id":"","url":"https://api.github.com/orgs/chocolatey","avatar_url":"https://avatars.githubusercontent.com/u/811025?"}} +,{"id":"2489654653","type":"PushEvent","actor":{"id":7450973,"login":"riemann111","gravatar_id":"","url":"https://api.github.com/users/riemann111","avatar_url":"https://avatars.githubusercontent.com/u/7450973?"},"repo":{"id":28688717,"name":"riemann111/Powerbot","url":"https://api.github.com/repos/riemann111/Powerbot"},"payload":{"push_id":536865613,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ce9acce8cf3db07d555e7913210c4a3c7585428d","before":"ec39c154569f296b6ebf8eac0dcd022e3398279e","commits":[{"sha":"ce9acce8cf3db07d555e7913210c4a3c7585428d","author":{"email":"84614a99f94772f6347070da175af4e4e089e556@hydrotechnik.co.uk","name":"Fraser"},"message":"Revert \"Added Powerbot scripts\"\n\nThis reverts commit ec39c154569f296b6ebf8eac0dcd022e3398279e.","distinct":true,"url":"https://api.github.com/repos/riemann111/Powerbot/commits/ce9acce8cf3db07d555e7913210c4a3c7585428d"}]},"public":true,"created_at":"2015-01-01T15:07:45Z"} +,{"id":"2489654656","type":"CreateEvent","actor":{"id":8042613,"login":"mts2","gravatar_id":"","url":"https://api.github.com/users/mts2","avatar_url":"https://avatars.githubusercontent.com/u/8042613?"},"repo":{"id":28688734,"name":"mts2/TestingThings","url":"https://api.github.com/repos/mts2/TestingThings"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:07:45Z"} +,{"id":"2489654658","type":"WatchEvent","actor":{"id":6462268,"login":"aadel112","gravatar_id":"","url":"https://api.github.com/users/aadel112","avatar_url":"https://avatars.githubusercontent.com/u/6462268?"},"repo":{"id":6452529,"name":"rethinkdb/rethinkdb","url":"https://api.github.com/repos/rethinkdb/rethinkdb"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:07:45Z","org":{"id":1229647,"login":"rethinkdb","gravatar_id":"","url":"https://api.github.com/orgs/rethinkdb","avatar_url":"https://avatars.githubusercontent.com/u/1229647?"}} +,{"id":"2489654659","type":"PushEvent","actor":{"id":8201348,"login":"cormacio100","gravatar_id":"","url":"https://api.github.com/users/cormacio100","avatar_url":"https://avatars.githubusercontent.com/u/8201348?"},"repo":{"id":28235844,"name":"cormacio100/webdev3project","url":"https://api.github.com/repos/cormacio100/webdev3project"},"payload":{"push_id":536865615,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"28c14feec3f6741c5741548c41929467f9c70d12","before":"66fa1903ec9f7a87e1c4de0990f8226eb2620d55","commits":[{"sha":"28c14feec3f6741c5741548c41929467f9c70d12","author":{"email":"5a5496795483f10e5905039fce942d950b135fec@gmail.com","name":"unknown"},"message":"excel file","distinct":true,"url":"https://api.github.com/repos/cormacio100/webdev3project/commits/28c14feec3f6741c5741548c41929467f9c70d12"}]},"public":true,"created_at":"2015-01-01T15:07:46Z"} +,{"id":"2489654663","type":"IssueCommentEvent","actor":{"id":156685,"login":"MarkEWaite","gravatar_id":"","url":"https://api.github.com/users/MarkEWaite","avatar_url":"https://avatars.githubusercontent.com/u/156685?"},"repo":{"id":612587,"name":"jenkinsci/git-plugin","url":"https://api.github.com/repos/jenkinsci/git-plugin"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/jenkinsci/git-plugin/issues/284","labels_url":"https://api.github.com/repos/jenkinsci/git-plugin/issues/284/labels{/name}","comments_url":"https://api.github.com/repos/jenkinsci/git-plugin/issues/284/comments","events_url":"https://api.github.com/repos/jenkinsci/git-plugin/issues/284/events","html_url":"https://github.com/jenkinsci/git-plugin/pull/284","id":52831613,"number":284,"title":"Correctly set the SCM name in build data when set or unset.","user":{"login":"mklein0","id":1728761,"avatar_url":"https://avatars.githubusercontent.com/u/1728761?v=3","gravatar_id":"","url":"https://api.github.com/users/mklein0","html_url":"https://github.com/mklein0","followers_url":"https://api.github.com/users/mklein0/followers","following_url":"https://api.github.com/users/mklein0/following{/other_user}","gists_url":"https://api.github.com/users/mklein0/gists{/gist_id}","starred_url":"https://api.github.com/users/mklein0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mklein0/subscriptions","organizations_url":"https://api.github.com/users/mklein0/orgs","repos_url":"https://api.github.com/users/mklein0/repos","events_url":"https://api.github.com/users/mklein0/events{/privacy}","received_events_url":"https://api.github.com/users/mklein0/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2014-12-24T18:27:29Z","updated_at":"2015-01-01T15:07:46Z","closed_at":"2015-01-01T15:07:46Z","pull_request":{"url":"https://api.github.com/repos/jenkinsci/git-plugin/pulls/284","html_url":"https://github.com/jenkinsci/git-plugin/pull/284","diff_url":"https://github.com/jenkinsci/git-plugin/pull/284.diff","patch_url":"https://github.com/jenkinsci/git-plugin/pull/284.patch"},"body":"When custom SCM name feature is enabled, the custom name is not propagated between builds. Likewise the custom SCM name is not shown in the build log due to an error in the template language syntax. This feature is commonly used in conjunction with the MultiSCM plugin."},"comment":{"url":"https://api.github.com/repos/jenkinsci/git-plugin/issues/comments/68488640","html_url":"https://github.com/jenkinsci/git-plugin/pull/284#issuecomment-68488640","issue_url":"https://api.github.com/repos/jenkinsci/git-plugin/issues/284","id":68488640,"user":{"login":"MarkEWaite","id":156685,"avatar_url":"https://avatars.githubusercontent.com/u/156685?v=3","gravatar_id":"","url":"https://api.github.com/users/MarkEWaite","html_url":"https://github.com/MarkEWaite","followers_url":"https://api.github.com/users/MarkEWaite/followers","following_url":"https://api.github.com/users/MarkEWaite/following{/other_user}","gists_url":"https://api.github.com/users/MarkEWaite/gists{/gist_id}","starred_url":"https://api.github.com/users/MarkEWaite/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MarkEWaite/subscriptions","organizations_url":"https://api.github.com/users/MarkEWaite/orgs","repos_url":"https://api.github.com/users/MarkEWaite/repos","events_url":"https://api.github.com/users/MarkEWaite/events{/privacy}","received_events_url":"https://api.github.com/users/MarkEWaite/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:07:46Z","updated_at":"2015-01-01T15:07:46Z","body":"Rebased the changes into the master branch, and committed."}},"public":true,"created_at":"2015-01-01T15:07:46Z","org":{"id":107424,"login":"jenkinsci","gravatar_id":"","url":"https://api.github.com/orgs/jenkinsci","avatar_url":"https://avatars.githubusercontent.com/u/107424?"}} +,{"id":"2489654664","type":"PullRequestEvent","actor":{"id":156685,"login":"MarkEWaite","gravatar_id":"","url":"https://api.github.com/users/MarkEWaite","avatar_url":"https://avatars.githubusercontent.com/u/156685?"},"repo":{"id":612587,"name":"jenkinsci/git-plugin","url":"https://api.github.com/repos/jenkinsci/git-plugin"},"payload":{"action":"closed","number":284,"pull_request":{"url":"https://api.github.com/repos/jenkinsci/git-plugin/pulls/284","id":26566234,"html_url":"https://github.com/jenkinsci/git-plugin/pull/284","diff_url":"https://github.com/jenkinsci/git-plugin/pull/284.diff","patch_url":"https://github.com/jenkinsci/git-plugin/pull/284.patch","issue_url":"https://api.github.com/repos/jenkinsci/git-plugin/issues/284","number":284,"state":"closed","locked":false,"title":"Correctly set the SCM name in build data when set or unset.","user":{"login":"mklein0","id":1728761,"avatar_url":"https://avatars.githubusercontent.com/u/1728761?v=3","gravatar_id":"","url":"https://api.github.com/users/mklein0","html_url":"https://github.com/mklein0","followers_url":"https://api.github.com/users/mklein0/followers","following_url":"https://api.github.com/users/mklein0/following{/other_user}","gists_url":"https://api.github.com/users/mklein0/gists{/gist_id}","starred_url":"https://api.github.com/users/mklein0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mklein0/subscriptions","organizations_url":"https://api.github.com/users/mklein0/orgs","repos_url":"https://api.github.com/users/mklein0/repos","events_url":"https://api.github.com/users/mklein0/events{/privacy}","received_events_url":"https://api.github.com/users/mklein0/received_events","type":"User","site_admin":false},"body":"When custom SCM name feature is enabled, the custom name is not propagated between builds. Likewise the custom SCM name is not shown in the build log due to an error in the template language syntax. This feature is commonly used in conjunction with the MultiSCM plugin.","created_at":"2014-12-24T18:27:29Z","updated_at":"2015-01-01T15:07:46Z","closed_at":"2015-01-01T15:07:46Z","merged_at":null,"merge_commit_sha":"374c338d3b5f55b0d737c87e5387a83d0e5a46a5","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/jenkinsci/git-plugin/pulls/284/commits","review_comments_url":"https://api.github.com/repos/jenkinsci/git-plugin/pulls/284/comments","review_comment_url":"https://api.github.com/repos/jenkinsci/git-plugin/pulls/comments/{number}","comments_url":"https://api.github.com/repos/jenkinsci/git-plugin/issues/284/comments","statuses_url":"https://api.github.com/repos/jenkinsci/git-plugin/statuses/8ebdd949b85decb2900f2f0723878f8cd4437c6a","head":{"label":"mklein0:multiscm","ref":"multiscm","sha":"8ebdd949b85decb2900f2f0723878f8cd4437c6a","user":{"login":"mklein0","id":1728761,"avatar_url":"https://avatars.githubusercontent.com/u/1728761?v=3","gravatar_id":"","url":"https://api.github.com/users/mklein0","html_url":"https://github.com/mklein0","followers_url":"https://api.github.com/users/mklein0/followers","following_url":"https://api.github.com/users/mklein0/following{/other_user}","gists_url":"https://api.github.com/users/mklein0/gists{/gist_id}","starred_url":"https://api.github.com/users/mklein0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mklein0/subscriptions","organizations_url":"https://api.github.com/users/mklein0/orgs","repos_url":"https://api.github.com/users/mklein0/repos","events_url":"https://api.github.com/users/mklein0/events{/privacy}","received_events_url":"https://api.github.com/users/mklein0/received_events","type":"User","site_admin":false},"repo":{"id":23026488,"name":"git-plugin","full_name":"mklein0/git-plugin","owner":{"login":"mklein0","id":1728761,"avatar_url":"https://avatars.githubusercontent.com/u/1728761?v=3","gravatar_id":"","url":"https://api.github.com/users/mklein0","html_url":"https://github.com/mklein0","followers_url":"https://api.github.com/users/mklein0/followers","following_url":"https://api.github.com/users/mklein0/following{/other_user}","gists_url":"https://api.github.com/users/mklein0/gists{/gist_id}","starred_url":"https://api.github.com/users/mklein0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mklein0/subscriptions","organizations_url":"https://api.github.com/users/mklein0/orgs","repos_url":"https://api.github.com/users/mklein0/repos","events_url":"https://api.github.com/users/mklein0/events{/privacy}","received_events_url":"https://api.github.com/users/mklein0/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mklein0/git-plugin","description":"Git plugin for Jenkins","fork":true,"url":"https://api.github.com/repos/mklein0/git-plugin","forks_url":"https://api.github.com/repos/mklein0/git-plugin/forks","keys_url":"https://api.github.com/repos/mklein0/git-plugin/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mklein0/git-plugin/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mklein0/git-plugin/teams","hooks_url":"https://api.github.com/repos/mklein0/git-plugin/hooks","issue_events_url":"https://api.github.com/repos/mklein0/git-plugin/issues/events{/number}","events_url":"https://api.github.com/repos/mklein0/git-plugin/events","assignees_url":"https://api.github.com/repos/mklein0/git-plugin/assignees{/user}","branches_url":"https://api.github.com/repos/mklein0/git-plugin/branches{/branch}","tags_url":"https://api.github.com/repos/mklein0/git-plugin/tags","blobs_url":"https://api.github.com/repos/mklein0/git-plugin/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mklein0/git-plugin/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mklein0/git-plugin/git/refs{/sha}","trees_url":"https://api.github.com/repos/mklein0/git-plugin/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mklein0/git-plugin/statuses/{sha}","languages_url":"https://api.github.com/repos/mklein0/git-plugin/languages","stargazers_url":"https://api.github.com/repos/mklein0/git-plugin/stargazers","contributors_url":"https://api.github.com/repos/mklein0/git-plugin/contributors","subscribers_url":"https://api.github.com/repos/mklein0/git-plugin/subscribers","subscription_url":"https://api.github.com/repos/mklein0/git-plugin/subscription","commits_url":"https://api.github.com/repos/mklein0/git-plugin/commits{/sha}","git_commits_url":"https://api.github.com/repos/mklein0/git-plugin/git/commits{/sha}","comments_url":"https://api.github.com/repos/mklein0/git-plugin/comments{/number}","issue_comment_url":"https://api.github.com/repos/mklein0/git-plugin/issues/comments/{number}","contents_url":"https://api.github.com/repos/mklein0/git-plugin/contents/{+path}","compare_url":"https://api.github.com/repos/mklein0/git-plugin/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mklein0/git-plugin/merges","archive_url":"https://api.github.com/repos/mklein0/git-plugin/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mklein0/git-plugin/downloads","issues_url":"https://api.github.com/repos/mklein0/git-plugin/issues{/number}","pulls_url":"https://api.github.com/repos/mklein0/git-plugin/pulls{/number}","milestones_url":"https://api.github.com/repos/mklein0/git-plugin/milestones{/number}","notifications_url":"https://api.github.com/repos/mklein0/git-plugin/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mklein0/git-plugin/labels{/name}","releases_url":"https://api.github.com/repos/mklein0/git-plugin/releases{/id}","created_at":"2014-08-16T20:28:09Z","updated_at":"2014-12-22T18:32:19Z","pushed_at":"2014-12-26T19:43:20Z","git_url":"git://github.com/mklein0/git-plugin.git","ssh_url":"git@github.com:mklein0/git-plugin.git","clone_url":"https://github.com/mklein0/git-plugin.git","svn_url":"https://github.com/mklein0/git-plugin","homepage":"http://wiki.jenkins-ci.org/display/JENKINS/Git Plugin","size":3665,"stargazers_count":0,"watchers_count":0,"language":"Java","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":"jenkinsci:master","ref":"master","sha":"c8845f6200f8ec2b0c205810773bb2c22275eb71","user":{"login":"jenkinsci","id":107424,"avatar_url":"https://avatars.githubusercontent.com/u/107424?v=3","gravatar_id":"","url":"https://api.github.com/users/jenkinsci","html_url":"https://github.com/jenkinsci","followers_url":"https://api.github.com/users/jenkinsci/followers","following_url":"https://api.github.com/users/jenkinsci/following{/other_user}","gists_url":"https://api.github.com/users/jenkinsci/gists{/gist_id}","starred_url":"https://api.github.com/users/jenkinsci/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jenkinsci/subscriptions","organizations_url":"https://api.github.com/users/jenkinsci/orgs","repos_url":"https://api.github.com/users/jenkinsci/repos","events_url":"https://api.github.com/users/jenkinsci/events{/privacy}","received_events_url":"https://api.github.com/users/jenkinsci/received_events","type":"Organization","site_admin":false},"repo":{"id":612587,"name":"git-plugin","full_name":"jenkinsci/git-plugin","owner":{"login":"jenkinsci","id":107424,"avatar_url":"https://avatars.githubusercontent.com/u/107424?v=3","gravatar_id":"","url":"https://api.github.com/users/jenkinsci","html_url":"https://github.com/jenkinsci","followers_url":"https://api.github.com/users/jenkinsci/followers","following_url":"https://api.github.com/users/jenkinsci/following{/other_user}","gists_url":"https://api.github.com/users/jenkinsci/gists{/gist_id}","starred_url":"https://api.github.com/users/jenkinsci/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jenkinsci/subscriptions","organizations_url":"https://api.github.com/users/jenkinsci/orgs","repos_url":"https://api.github.com/users/jenkinsci/repos","events_url":"https://api.github.com/users/jenkinsci/events{/privacy}","received_events_url":"https://api.github.com/users/jenkinsci/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/jenkinsci/git-plugin","description":"Git plugin for Jenkins","fork":true,"url":"https://api.github.com/repos/jenkinsci/git-plugin","forks_url":"https://api.github.com/repos/jenkinsci/git-plugin/forks","keys_url":"https://api.github.com/repos/jenkinsci/git-plugin/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jenkinsci/git-plugin/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jenkinsci/git-plugin/teams","hooks_url":"https://api.github.com/repos/jenkinsci/git-plugin/hooks","issue_events_url":"https://api.github.com/repos/jenkinsci/git-plugin/issues/events{/number}","events_url":"https://api.github.com/repos/jenkinsci/git-plugin/events","assignees_url":"https://api.github.com/repos/jenkinsci/git-plugin/assignees{/user}","branches_url":"https://api.github.com/repos/jenkinsci/git-plugin/branches{/branch}","tags_url":"https://api.github.com/repos/jenkinsci/git-plugin/tags","blobs_url":"https://api.github.com/repos/jenkinsci/git-plugin/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jenkinsci/git-plugin/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jenkinsci/git-plugin/git/refs{/sha}","trees_url":"https://api.github.com/repos/jenkinsci/git-plugin/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jenkinsci/git-plugin/statuses/{sha}","languages_url":"https://api.github.com/repos/jenkinsci/git-plugin/languages","stargazers_url":"https://api.github.com/repos/jenkinsci/git-plugin/stargazers","contributors_url":"https://api.github.com/repos/jenkinsci/git-plugin/contributors","subscribers_url":"https://api.github.com/repos/jenkinsci/git-plugin/subscribers","subscription_url":"https://api.github.com/repos/jenkinsci/git-plugin/subscription","commits_url":"https://api.github.com/repos/jenkinsci/git-plugin/commits{/sha}","git_commits_url":"https://api.github.com/repos/jenkinsci/git-plugin/git/commits{/sha}","comments_url":"https://api.github.com/repos/jenkinsci/git-plugin/comments{/number}","issue_comment_url":"https://api.github.com/repos/jenkinsci/git-plugin/issues/comments/{number}","contents_url":"https://api.github.com/repos/jenkinsci/git-plugin/contents/{+path}","compare_url":"https://api.github.com/repos/jenkinsci/git-plugin/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jenkinsci/git-plugin/merges","archive_url":"https://api.github.com/repos/jenkinsci/git-plugin/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jenkinsci/git-plugin/downloads","issues_url":"https://api.github.com/repos/jenkinsci/git-plugin/issues{/number}","pulls_url":"https://api.github.com/repos/jenkinsci/git-plugin/pulls{/number}","milestones_url":"https://api.github.com/repos/jenkinsci/git-plugin/milestones{/number}","notifications_url":"https://api.github.com/repos/jenkinsci/git-plugin/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jenkinsci/git-plugin/labels{/name}","releases_url":"https://api.github.com/repos/jenkinsci/git-plugin/releases{/id}","created_at":"2010-04-15T21:07:21Z","updated_at":"2015-01-01T15:07:24Z","pushed_at":"2015-01-01T15:07:23Z","git_url":"git://github.com/jenkinsci/git-plugin.git","ssh_url":"git@github.com:jenkinsci/git-plugin.git","clone_url":"https://github.com/jenkinsci/git-plugin.git","svn_url":"https://github.com/jenkinsci/git-plugin","homepage":"http://wiki.jenkins-ci.org/display/JENKINS/Git Plugin","size":8824,"stargazers_count":317,"watchers_count":317,"language":"Java","has_issues":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":387,"mirror_url":null,"open_issues_count":26,"forks":387,"open_issues":26,"watchers":317,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/jenkinsci/git-plugin/pulls/284"},"html":{"href":"https://github.com/jenkinsci/git-plugin/pull/284"},"issue":{"href":"https://api.github.com/repos/jenkinsci/git-plugin/issues/284"},"comments":{"href":"https://api.github.com/repos/jenkinsci/git-plugin/issues/284/comments"},"review_comments":{"href":"https://api.github.com/repos/jenkinsci/git-plugin/pulls/284/comments"},"review_comment":{"href":"https://api.github.com/repos/jenkinsci/git-plugin/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/jenkinsci/git-plugin/pulls/284/commits"},"statuses":{"href":"https://api.github.com/repos/jenkinsci/git-plugin/statuses/8ebdd949b85decb2900f2f0723878f8cd4437c6a"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":4,"review_comments":0,"commits":3,"additions":101,"deletions":4,"changed_files":4}},"public":true,"created_at":"2015-01-01T15:07:46Z","org":{"id":107424,"login":"jenkinsci","gravatar_id":"","url":"https://api.github.com/orgs/jenkinsci","avatar_url":"https://avatars.githubusercontent.com/u/107424?"}} +,{"id":"2489654676","type":"IssueCommentEvent","actor":{"id":683736,"login":"teramonagi","gravatar_id":"","url":"https://api.github.com/users/teramonagi","avatar_url":"https://avatars.githubusercontent.com/u/683736?"},"repo":{"id":18081621,"name":"fsprojects/FSharp.Data.Toolbox","url":"https://api.github.com/repos/fsprojects/FSharp.Data.Toolbox"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/fsprojects/FSharp.Data.Toolbox/issues/20","labels_url":"https://api.github.com/repos/fsprojects/FSharp.Data.Toolbox/issues/20/labels{/name}","comments_url":"https://api.github.com/repos/fsprojects/FSharp.Data.Toolbox/issues/20/comments","events_url":"https://api.github.com/repos/fsprojects/FSharp.Data.Toolbox/issues/20/events","html_url":"https://github.com/fsprojects/FSharp.Data.Toolbox/issues/20","id":52977993,"number":20,"title":"FSharp.Data.Toolbox.dll requires sample json files(again)","user":{"login":"teramonagi","id":683736,"avatar_url":"https://avatars.githubusercontent.com/u/683736?v=3","gravatar_id":"","url":"https://api.github.com/users/teramonagi","html_url":"https://github.com/teramonagi","followers_url":"https://api.github.com/users/teramonagi/followers","following_url":"https://api.github.com/users/teramonagi/following{/other_user}","gists_url":"https://api.github.com/users/teramonagi/gists{/gist_id}","starred_url":"https://api.github.com/users/teramonagi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/teramonagi/subscriptions","organizations_url":"https://api.github.com/users/teramonagi/orgs","repos_url":"https://api.github.com/users/teramonagi/repos","events_url":"https://api.github.com/users/teramonagi/events{/privacy}","received_events_url":"https://api.github.com/users/teramonagi/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2014-12-28T10:33:39Z","updated_at":"2015-01-01T15:07:46Z","closed_at":"2014-12-29T10:37:35Z","body":"Hi guys;\r\n\r\nI tried to learn how to use Twitter API from F# language written in great modernized F# book \"F# Deep Dives\" chapter 5. Example codes which is shown below links works well.\r\n- https://github.com/evelinag/DeepDives/tree/master/Chapter05\r\n\r\nOn the other hand, it did not work when I downloaded the newest library from nuget.\r\nI think that the same problem to issue 1 happens in F# Data 2.1.1 because the error message is the same.\r\n- [FSharp.Data.Toolbox.dll requires sample json files(issue 1)](https://github.com/fsprojects/FSharp.Data.Toolbox/issues/1)"},"comment":{"url":"https://api.github.com/repos/fsprojects/FSharp.Data.Toolbox/issues/comments/68488641","html_url":"https://github.com/fsprojects/FSharp.Data.Toolbox/issues/20#issuecomment-68488641","issue_url":"https://api.github.com/repos/fsprojects/FSharp.Data.Toolbox/issues/20","id":68488641,"user":{"login":"teramonagi","id":683736,"avatar_url":"https://avatars.githubusercontent.com/u/683736?v=3","gravatar_id":"","url":"https://api.github.com/users/teramonagi","html_url":"https://github.com/teramonagi","followers_url":"https://api.github.com/users/teramonagi/followers","following_url":"https://api.github.com/users/teramonagi/following{/other_user}","gists_url":"https://api.github.com/users/teramonagi/gists{/gist_id}","starred_url":"https://api.github.com/users/teramonagi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/teramonagi/subscriptions","organizations_url":"https://api.github.com/users/teramonagi/orgs","repos_url":"https://api.github.com/users/teramonagi/repos","events_url":"https://api.github.com/users/teramonagi/events{/privacy}","received_events_url":"https://api.github.com/users/teramonagi/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:07:46Z","updated_at":"2015-01-01T15:07:46Z","body":"I tried to do it . But I got the error as the following:\r\n```\r\nThe type referenced through 'FSharp.Data.JsonProvider,Sample=\"json/stream.json\",SampleIsList=\"True\",EmbeddedResource=\"FSharp.Data.Toolbox.Twitter,stream.json\".Root' is defined in an assembly that is not referenced. You must add a reference to assembly 'FSharp.Data'.\r\n```\r\nNeedless to say, I already checked that FSI has the reference to 'FSharp.Data'. My entire codes are : \r\n```F#\r\nSystem.Environment.CurrentDirectory <- __SOURCE_DIRECTORY__\r\n#r @\"../packages/FSharp.Data.Toolbox.Twitter.0.2/lib/net40/FSharp.Data.Toolbox.Twitter.dll\"\r\n#r @\"../packages/FSharp.Data.2.1.1/lib/net40/FSharp.Data.dll\"\r\nopen FSharp.Data.Toolbox.Twitter\r\nlet key = \"mKQL29XNemjQbLlQ8t0pBg\"\r\nlet secret = \"T27HLDve1lumQykBUgYAbcEkbDrjBe6gwbu0gqi4saM\"\r\nlet twitter = Twitter.AuthenticateAppOnly(key, secret)\r\n```"}},"public":true,"created_at":"2015-01-01T15:07:47Z","org":{"id":6001315,"login":"fsprojects","gravatar_id":"","url":"https://api.github.com/orgs/fsprojects","avatar_url":"https://avatars.githubusercontent.com/u/6001315?"}} +,{"id":"2489654681","type":"PushEvent","actor":{"id":44656,"login":"samueltardieu","gravatar_id":"","url":"https://api.github.com/users/samueltardieu","avatar_url":"https://avatars.githubusercontent.com/u/44656?"},"repo":{"id":2028724,"name":"cgeo/cgeo","url":"https://api.github.com/repos/cgeo/cgeo"},"payload":{"push_id":536865621,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d36dbd6b2fddc6be6a983cb54485fc77d64611db","before":"c263e8ce383ce04cab3dcaa70af1cca867787b13","commits":[{"sha":"d36dbd6b2fddc6be6a983cb54485fc77d64611db","author":{"email":"f16bed56189e249fe4ca8ed10a1ecae60e8ceac0@rfc1149.net","name":"Samuel Tardieu"},"message":"Use utility methods","distinct":true,"url":"https://api.github.com/repos/cgeo/cgeo/commits/d36dbd6b2fddc6be6a983cb54485fc77d64611db"}]},"public":true,"created_at":"2015-01-01T15:07:47Z","org":{"id":907088,"login":"cgeo","gravatar_id":"","url":"https://api.github.com/orgs/cgeo","avatar_url":"https://avatars.githubusercontent.com/u/907088?"}} +,{"id":"2489654682","type":"WatchEvent","actor":{"id":170820,"login":"seyhunak","gravatar_id":"","url":"https://api.github.com/users/seyhunak","avatar_url":"https://avatars.githubusercontent.com/u/170820?"},"repo":{"id":28288326,"name":"indragiek/DominantColor","url":"https://api.github.com/repos/indragiek/DominantColor"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:07:47Z"} +,{"id":"2489654690","type":"WatchEvent","actor":{"id":10290839,"login":"Xinebula","gravatar_id":"","url":"https://api.github.com/users/Xinebula","avatar_url":"https://avatars.githubusercontent.com/u/10290839?"},"repo":{"id":3112411,"name":"mcMMO-Dev/mcMMO","url":"https://api.github.com/repos/mcMMO-Dev/mcMMO"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:07:49Z","org":{"id":1429663,"login":"mcMMO-Dev","gravatar_id":"","url":"https://api.github.com/orgs/mcMMO-Dev","avatar_url":"https://avatars.githubusercontent.com/u/1429663?"}} +,{"id":"2489654692","type":"PushEvent","actor":{"id":1296436,"login":"ivantan","gravatar_id":"","url":"https://api.github.com/users/ivantan","avatar_url":"https://avatars.githubusercontent.com/u/1296436?"},"repo":{"id":28193100,"name":"ivantan/cppdevelopment","url":"https://api.github.com/repos/ivantan/cppdevelopment"},"payload":{"push_id":536865627,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0c059e4ce5387c6d939cdef520d9aaa846ae9b08","before":"270a2040cd9372e34c540137c95f271cd3dd30b6","commits":[{"sha":"0c059e4ce5387c6d939cdef520d9aaa846ae9b08","author":{"email":"613d380d62c2694a235b0893abb3ef25893063ab@gmail.com","name":"ivantan"},"message":"on scoping","distinct":true,"url":"https://api.github.com/repos/ivantan/cppdevelopment/commits/0c059e4ce5387c6d939cdef520d9aaa846ae9b08"}]},"public":true,"created_at":"2015-01-01T15:07:49Z"} +,{"id":"2489654694","type":"PushEvent","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":{"push_id":536865628,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3bde99f7264b5bdce48985903e6f5c9b4ef0429a","before":"149142b4c0a11a61ae8b4b83210757ccf4e7b593","commits":[{"sha":"3bde99f7264b5bdce48985903e6f5c9b4ef0429a","author":{"email":"1a73af9e7ae00182733b2292511b814be66f065f@emersion.fr","name":"emersion"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/emersion/bups/commits/3bde99f7264b5bdce48985903e6f5c9b4ef0429a"}]},"public":true,"created_at":"2015-01-01T15:07:49Z"} +,{"id":"2489654695","type":"DeleteEvent","actor":{"id":439605,"login":"fzwoch","gravatar_id":"","url":"https://api.github.com/users/fzwoch","avatar_url":"https://avatars.githubusercontent.com/u/439605?"},"repo":{"id":28483033,"name":"fzwoch/homebrew","url":"https://api.github.com/repos/fzwoch/homebrew"},"payload":{"ref":"applemedia","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:07:49Z"} +,{"id":"2489654696","type":"PushEvent","actor":{"id":411562,"login":"lordbron","gravatar_id":"","url":"https://api.github.com/users/lordbron","avatar_url":"https://avatars.githubusercontent.com/u/411562?"},"repo":{"id":28399271,"name":"lordbron/montage-training","url":"https://api.github.com/repos/lordbron/montage-training"},"payload":{"push_id":536865630,"size":1,"distinct_size":1,"ref":"refs/heads/montagestudio/lordbron/master","head":"a22b29e9ca2104994bfed5bda4e7bfaeb538ef12","before":"b609e9cd3e18627ed9115a6ab3ac82a0681d3b63","commits":[{"sha":"a22b29e9ca2104994bfed5bda4e7bfaeb538ef12","author":{"email":"1505422b2465e9a84f6fdfaa161078890c593f06","name":"lordbron"},"message":"Update component ui/main.reel/","distinct":true,"url":"https://api.github.com/repos/lordbron/montage-training/commits/a22b29e9ca2104994bfed5bda4e7bfaeb538ef12"}]},"public":true,"created_at":"2015-01-01T15:07:49Z"} +,{"id":"2489654698","type":"PushEvent","actor":{"id":1336287,"login":"languitar","gravatar_id":"","url":"https://api.github.com/users/languitar","avatar_url":"https://avatars.githubusercontent.com/u/1336287?"},"repo":{"id":12210495,"name":"languitar/homebrew","url":"https://api.github.com/repos/languitar/homebrew"},"payload":{"push_id":536865631,"size":1,"distinct_size":1,"ref":"refs/heads/loudmouth-head","head":"5722dfd8cee10fe7b02366c14551bfb8e044e250","before":"0a8084215fc7ab8012ea10a9bff30701f1c88f79","commits":[{"sha":"5722dfd8cee10fe7b02366c14551bfb8e044e250","author":{"email":"a4379d9071d2bc61dde500b1b931d03e5af91428@techfak.uni-bielefeld.de","name":"Johannes Wienke"},"message":"Enable building loudmouth from HEAD\n\nAdds the required sections for building loudmouth from git.","distinct":true,"url":"https://api.github.com/repos/languitar/homebrew/commits/5722dfd8cee10fe7b02366c14551bfb8e044e250"}]},"public":true,"created_at":"2015-01-01T15:07:49Z"} +,{"id":"2489654699","type":"CreateEvent","actor":{"id":5606293,"login":"bombadil7","gravatar_id":"","url":"https://api.github.com/users/bombadil7","avatar_url":"https://avatars.githubusercontent.com/u/5606293?"},"repo":{"id":28688729,"name":"bombadil7/GitTest","url":"https://api.github.com/repos/bombadil7/GitTest"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:07:49Z"} +,{"id":"2489654700","type":"IssuesEvent","actor":{"id":10364670,"login":"AdeTroake","gravatar_id":"","url":"https://api.github.com/users/AdeTroake","avatar_url":"https://avatars.githubusercontent.com/u/10364670?"},"repo":{"id":28688652,"name":"AdeTroake/hello-world","url":"https://api.github.com/repos/AdeTroake/hello-world"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/AdeTroake/hello-world/issues/1","labels_url":"https://api.github.com/repos/AdeTroake/hello-world/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/AdeTroake/hello-world/issues/1/comments","events_url":"https://api.github.com/repos/AdeTroake/hello-world/issues/1/events","html_url":"https://github.com/AdeTroake/hello-world/issues/1","id":53221473,"number":1,"title":"Finish Readme","user":{"login":"AdeTroake","id":10364670,"avatar_url":"https://avatars.githubusercontent.com/u/10364670?v=3","gravatar_id":"","url":"https://api.github.com/users/AdeTroake","html_url":"https://github.com/AdeTroake","followers_url":"https://api.github.com/users/AdeTroake/followers","following_url":"https://api.github.com/users/AdeTroake/following{/other_user}","gists_url":"https://api.github.com/users/AdeTroake/gists{/gist_id}","starred_url":"https://api.github.com/users/AdeTroake/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AdeTroake/subscriptions","organizations_url":"https://api.github.com/users/AdeTroake/orgs","repos_url":"https://api.github.com/users/AdeTroake/repos","events_url":"https://api.github.com/users/AdeTroake/events{/privacy}","received_events_url":"https://api.github.com/users/AdeTroake/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":{"login":"AdeTroake","id":10364670,"avatar_url":"https://avatars.githubusercontent.com/u/10364670?v=3","gravatar_id":"","url":"https://api.github.com/users/AdeTroake","html_url":"https://github.com/AdeTroake","followers_url":"https://api.github.com/users/AdeTroake/followers","following_url":"https://api.github.com/users/AdeTroake/following{/other_user}","gists_url":"https://api.github.com/users/AdeTroake/gists{/gist_id}","starred_url":"https://api.github.com/users/AdeTroake/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AdeTroake/subscriptions","organizations_url":"https://api.github.com/users/AdeTroake/orgs","repos_url":"https://api.github.com/users/AdeTroake/repos","events_url":"https://api.github.com/users/AdeTroake/events{/privacy}","received_events_url":"https://api.github.com/users/AdeTroake/received_events","type":"User","site_admin":false},"milestone":null,"comments":0,"created_at":"2015-01-01T15:07:10Z","updated_at":"2015-01-01T15:07:50Z","closed_at":"2015-01-01T15:07:50Z","body":"Finish Readme"}},"public":true,"created_at":"2015-01-01T15:07:50Z"} +,{"id":"2489654704","type":"PushEvent","actor":{"id":4237699,"login":"Dwillcocks","gravatar_id":"","url":"https://api.github.com/users/Dwillcocks","avatar_url":"https://avatars.githubusercontent.com/u/4237699?"},"repo":{"id":27402795,"name":"Dwillcocks/Dwillcocks.github.io","url":"https://api.github.com/repos/Dwillcocks/Dwillcocks.github.io"},"payload":{"push_id":536865636,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"646f4ceb20424ec1f358a894747da1b8fbfbfd1d","before":"15d2a4cff83fb025703d1edd6680db78fe6d6347","commits":[{"sha":"646f4ceb20424ec1f358a894747da1b8fbfbfd1d","author":{"email":"70f8bb9a8a5393ef080507a89e4b98d139000d65@daniels-imac.home","name":"Dwillcocks"},"message":"build","distinct":true,"url":"https://api.github.com/repos/Dwillcocks/Dwillcocks.github.io/commits/646f4ceb20424ec1f358a894747da1b8fbfbfd1d"}]},"public":true,"created_at":"2015-01-01T15:07:50Z"} +,{"id":"2489654705","type":"IssuesEvent","actor":{"id":2767023,"login":"ajcowking","gravatar_id":"","url":"https://api.github.com/users/ajcowking","avatar_url":"https://avatars.githubusercontent.com/u/2767023?"},"repo":{"id":28688727,"name":"ajcowking/hello-world","url":"https://api.github.com/repos/ajcowking/hello-world"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/ajcowking/hello-world/issues/1","labels_url":"https://api.github.com/repos/ajcowking/hello-world/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/ajcowking/hello-world/issues/1/comments","events_url":"https://api.github.com/repos/ajcowking/hello-world/issues/1/events","html_url":"https://github.com/ajcowking/hello-world/issues/1","id":53221489,"number":1,"title":"Finish README","user":{"login":"ajcowking","id":2767023,"avatar_url":"https://avatars.githubusercontent.com/u/2767023?v=3","gravatar_id":"","url":"https://api.github.com/users/ajcowking","html_url":"https://github.com/ajcowking","followers_url":"https://api.github.com/users/ajcowking/followers","following_url":"https://api.github.com/users/ajcowking/following{/other_user}","gists_url":"https://api.github.com/users/ajcowking/gists{/gist_id}","starred_url":"https://api.github.com/users/ajcowking/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ajcowking/subscriptions","organizations_url":"https://api.github.com/users/ajcowking/orgs","repos_url":"https://api.github.com/users/ajcowking/repos","events_url":"https://api.github.com/users/ajcowking/events{/privacy}","received_events_url":"https://api.github.com/users/ajcowking/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:07:51Z","updated_at":"2015-01-01T15:07:51Z","closed_at":null,"body":"So that humans 'get' me."}},"public":true,"created_at":"2015-01-01T15:07:51Z"} +,{"id":"2489654706","type":"PushEvent","actor":{"id":2178916,"login":"tehnn","gravatar_id":"","url":"https://api.github.com/users/tehnn","avatar_url":"https://avatars.githubusercontent.com/u/2178916?"},"repo":{"id":27126356,"name":"tehnn/itobacco","url":"https://api.github.com/repos/tehnn/itobacco"},"payload":{"push_id":536865637,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3db2674918b563a3aad27323d14f95d51d9be69b","before":"dbd457aba0e590b48004bb21e72b4d1812198007","commits":[{"sha":"3db2674918b563a3aad27323d14f95d51d9be69b","author":{"email":"65c030e29a618580e27d73f4db6936b1c2af3b7a@UTEHN-NB","name":"UTEHN"},"message":"2015-01-01","distinct":true,"url":"https://api.github.com/repos/tehnn/itobacco/commits/3db2674918b563a3aad27323d14f95d51d9be69b"}]},"public":true,"created_at":"2015-01-01T15:07:51Z"} +,{"id":"2489654707","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":536865638,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"245c169151d4bdd239ab9b6de7306ce65318c6a6","before":"140afc4326f1d0fa2e55966e423664b8225a5d85","commits":[{"sha":"245c169151d4bdd239ab9b6de7306ce65318c6a6","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/245c169151d4bdd239ab9b6de7306ce65318c6a6"}]},"public":true,"created_at":"2015-01-01T15:07:51Z"} +,{"id":"2489654708","type":"ForkEvent","actor":{"id":6317772,"login":"bkerler","gravatar_id":"","url":"https://api.github.com/users/bkerler","avatar_url":"https://avatars.githubusercontent.com/u/6317772?"},"repo":{"id":28318384,"name":"Sec42/xfce-planet","url":"https://api.github.com/repos/Sec42/xfce-planet"},"payload":{"forkee":{"id":28688736,"name":"xfce-planet","full_name":"bkerler/xfce-planet","owner":{"login":"bkerler","id":6317772,"avatar_url":"https://avatars.githubusercontent.com/u/6317772?v=3","gravatar_id":"","url":"https://api.github.com/users/bkerler","html_url":"https://github.com/bkerler","followers_url":"https://api.github.com/users/bkerler/followers","following_url":"https://api.github.com/users/bkerler/following{/other_user}","gists_url":"https://api.github.com/users/bkerler/gists{/gist_id}","starred_url":"https://api.github.com/users/bkerler/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bkerler/subscriptions","organizations_url":"https://api.github.com/users/bkerler/orgs","repos_url":"https://api.github.com/users/bkerler/repos","events_url":"https://api.github.com/users/bkerler/events{/privacy}","received_events_url":"https://api.github.com/users/bkerler/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/bkerler/xfce-planet","description":"Resources and scripts to produce a nice backdrop with global, near realtime cloudmaps & live satellite/orbit prediction using xplanet","fork":true,"url":"https://api.github.com/repos/bkerler/xfce-planet","forks_url":"https://api.github.com/repos/bkerler/xfce-planet/forks","keys_url":"https://api.github.com/repos/bkerler/xfce-planet/keys{/key_id}","collaborators_url":"https://api.github.com/repos/bkerler/xfce-planet/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/bkerler/xfce-planet/teams","hooks_url":"https://api.github.com/repos/bkerler/xfce-planet/hooks","issue_events_url":"https://api.github.com/repos/bkerler/xfce-planet/issues/events{/number}","events_url":"https://api.github.com/repos/bkerler/xfce-planet/events","assignees_url":"https://api.github.com/repos/bkerler/xfce-planet/assignees{/user}","branches_url":"https://api.github.com/repos/bkerler/xfce-planet/branches{/branch}","tags_url":"https://api.github.com/repos/bkerler/xfce-planet/tags","blobs_url":"https://api.github.com/repos/bkerler/xfce-planet/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/bkerler/xfce-planet/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/bkerler/xfce-planet/git/refs{/sha}","trees_url":"https://api.github.com/repos/bkerler/xfce-planet/git/trees{/sha}","statuses_url":"https://api.github.com/repos/bkerler/xfce-planet/statuses/{sha}","languages_url":"https://api.github.com/repos/bkerler/xfce-planet/languages","stargazers_url":"https://api.github.com/repos/bkerler/xfce-planet/stargazers","contributors_url":"https://api.github.com/repos/bkerler/xfce-planet/contributors","subscribers_url":"https://api.github.com/repos/bkerler/xfce-planet/subscribers","subscription_url":"https://api.github.com/repos/bkerler/xfce-planet/subscription","commits_url":"https://api.github.com/repos/bkerler/xfce-planet/commits{/sha}","git_commits_url":"https://api.github.com/repos/bkerler/xfce-planet/git/commits{/sha}","comments_url":"https://api.github.com/repos/bkerler/xfce-planet/comments{/number}","issue_comment_url":"https://api.github.com/repos/bkerler/xfce-planet/issues/comments/{number}","contents_url":"https://api.github.com/repos/bkerler/xfce-planet/contents/{+path}","compare_url":"https://api.github.com/repos/bkerler/xfce-planet/compare/{base}...{head}","merges_url":"https://api.github.com/repos/bkerler/xfce-planet/merges","archive_url":"https://api.github.com/repos/bkerler/xfce-planet/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/bkerler/xfce-planet/downloads","issues_url":"https://api.github.com/repos/bkerler/xfce-planet/issues{/number}","pulls_url":"https://api.github.com/repos/bkerler/xfce-planet/pulls{/number}","milestones_url":"https://api.github.com/repos/bkerler/xfce-planet/milestones{/number}","notifications_url":"https://api.github.com/repos/bkerler/xfce-planet/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/bkerler/xfce-planet/labels{/name}","releases_url":"https://api.github.com/repos/bkerler/xfce-planet/releases{/id}","created_at":"2015-01-01T15:07:51Z","updated_at":"2014-12-22T00:12:16Z","pushed_at":"2014-12-22T10:29:16Z","git_url":"git://github.com/bkerler/xfce-planet.git","ssh_url":"git@github.com:bkerler/xfce-planet.git","clone_url":"https://github.com/bkerler/xfce-planet.git","svn_url":"https://github.com/bkerler/xfce-planet","homepage":"https://apollo.open-resource.org/","size":36437,"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:07:52Z"} +,{"id":"2489654715","type":"PushEvent","actor":{"id":10358424,"login":"RaoulV","gravatar_id":"","url":"https://api.github.com/users/RaoulV","avatar_url":"https://avatars.githubusercontent.com/u/10358424?"},"repo":{"id":28677890,"name":"RaoulV/StripyDog","url":"https://api.github.com/repos/RaoulV/StripyDog"},"payload":{"push_id":536865641,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"94adef2c64491445f23ba49a09f2c1b3671ef2fa","before":"171db59f025559f36545b4261c97bee38ac86e6b","commits":[{"sha":"94adef2c64491445f23ba49a09f2c1b3671ef2fa","author":{"email":"29a1e57328438b001640de0da621189de172721c@gmail.com","name":"U-RAOUL-PC\\Raoul"},"message":"Use bytebufutils to send owner","distinct":true,"url":"https://api.github.com/repos/RaoulV/StripyDog/commits/94adef2c64491445f23ba49a09f2c1b3671ef2fa"}]},"public":true,"created_at":"2015-01-01T15:07:53Z"} +,{"id":"2489654716","type":"WatchEvent","actor":{"id":170820,"login":"seyhunak","gravatar_id":"","url":"https://api.github.com/users/seyhunak","avatar_url":"https://avatars.githubusercontent.com/u/170820?"},"repo":{"id":21315049,"name":"dongri/OAuthSwift","url":"https://api.github.com/repos/dongri/OAuthSwift"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:07:54Z"} +,{"id":"2489654717","type":"PushEvent","actor":{"id":7752824,"login":"daimoniac","gravatar_id":"","url":"https://api.github.com/users/daimoniac","avatar_url":"https://avatars.githubusercontent.com/u/7752824?"},"repo":{"id":28688414,"name":"daimoniac/asprom","url":"https://api.github.com/repos/daimoniac/asprom"},"payload":{"push_id":536865643,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ed2a38d89d847f3d0753ad14556ade2f5bf6008a","before":"f9ca6479e1697894379e6cb40e8d6c9d0a09d86c","commits":[{"sha":"ed2a38d89d847f3d0753ad14556ade2f5bf6008a","author":{"email":"de2f72b421c5a6642b3711b3ed8cba9a5b60998c@turmair.de","name":"Stefan Knott"},"message":"initial","distinct":true,"url":"https://api.github.com/repos/daimoniac/asprom/commits/ed2a38d89d847f3d0753ad14556ade2f5bf6008a"}]},"public":true,"created_at":"2015-01-01T15:07:54Z"} +,{"id":"2489654718","type":"PushEvent","actor":{"id":249887,"login":"wa120","gravatar_id":"","url":"https://api.github.com/users/wa120","avatar_url":"https://avatars.githubusercontent.com/u/249887?"},"repo":{"id":623493,"name":"wa120/jquery-components","url":"https://api.github.com/repos/wa120/jquery-components"},"payload":{"push_id":536865642,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"6f4743ad134a691022940eaebcb14af2e5e3db8d","before":"62726017b76717987a9a5c1f61c1ecfad441b922","commits":[{"sha":"6f4743ad134a691022940eaebcb14af2e5e3db8d","author":{"email":"0af64bc9c12b91b32bbcbca216b97355aaeda1da@gmail.com","name":"wa120"},"message":"Create README.md","distinct":true,"url":"https://api.github.com/repos/wa120/jquery-components/commits/6f4743ad134a691022940eaebcb14af2e5e3db8d"}]},"public":true,"created_at":"2015-01-01T15:07:54Z"} +,{"id":"2489654719","type":"PushEvent","actor":{"id":1324396,"login":"eblondel","gravatar_id":"","url":"https://api.github.com/users/eblondel","avatar_url":"https://avatars.githubusercontent.com/u/1324396?"},"repo":{"id":27925150,"name":"gradesystem/grade-glue","url":"https://api.github.com/repos/gradesystem/grade-glue"},"payload":{"push_id":536865644,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f0971cbbfb20d5a0c14af1a4617c04b1fd8225c6","before":"552fe348014eed40faed1ad3647442e247895e53","commits":[{"sha":"f0971cbbfb20d5a0c14af1a4617c04b1fd8225c6","author":{"email":"29fdb710ff7f4d7c679826c01fd7d49a7ef38d56@gmail.com","name":"eblondel"},"message":"#6 feeding Grade with georefs - species / species distributions","distinct":true,"url":"https://api.github.com/repos/gradesystem/grade-glue/commits/f0971cbbfb20d5a0c14af1a4617c04b1fd8225c6"}]},"public":true,"created_at":"2015-01-01T15:07:54Z","org":{"id":8547439,"login":"gradesystem","gravatar_id":"","url":"https://api.github.com/orgs/gradesystem","avatar_url":"https://avatars.githubusercontent.com/u/8547439?"}} +,{"id":"2489654721","type":"PushEvent","actor":{"id":4846457,"login":"xbili","gravatar_id":"","url":"https://api.github.com/users/xbili","avatar_url":"https://avatars.githubusercontent.com/u/4846457?"},"repo":{"id":27328449,"name":"xbili/xbili-showtrackr","url":"https://api.github.com/repos/xbili/xbili-showtrackr"},"payload":{"push_id":536865646,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8af44f36299389fc0e160e1356295f15696ad201","before":"0fbcb28a90c48f0d223b4aa683617400638a2815","commits":[{"sha":"8af44f36299389fc0e160e1356295f15696ad201","author":{"email":"6efaa595148c1c65e3f07f84b611ae62997aebeb@gmail.com","name":"xbili"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/xbili/xbili-showtrackr/commits/8af44f36299389fc0e160e1356295f15696ad201"}]},"public":true,"created_at":"2015-01-01T15:07:55Z"} +,{"id":"2489654722","type":"PushEvent","actor":{"id":3218527,"login":"LeonGuo1988","gravatar_id":"","url":"https://api.github.com/users/LeonGuo1988","avatar_url":"https://avatars.githubusercontent.com/u/3218527?"},"repo":{"id":28260161,"name":"LeonGuo1988/RemainingUsefulLife","url":"https://api.github.com/repos/LeonGuo1988/RemainingUsefulLife"},"payload":{"push_id":536865647,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"01befd7e472fd127d994b1e7bcc3e65f80211a20","before":"265eafafa98b6f1e5eead1cdef59bc4232a36df3","commits":[{"sha":"01befd7e472fd127d994b1e7bcc3e65f80211a20","author":{"email":"34d218bdf0ec7ee74040ea78f4331c8b59131332@gmail.com","name":"guoliang"},"message":"Decesion Trees\n\nThis is the code of decesion trees algorihtm.","distinct":true,"url":"https://api.github.com/repos/LeonGuo1988/RemainingUsefulLife/commits/01befd7e472fd127d994b1e7bcc3e65f80211a20"}]},"public":true,"created_at":"2015-01-01T15:07:55Z"} +,{"id":"2489654723","type":"ForkEvent","actor":{"id":1572750,"login":"bhurtelashish","gravatar_id":"","url":"https://api.github.com/users/bhurtelashish","avatar_url":"https://avatars.githubusercontent.com/u/1572750?"},"repo":{"id":185460,"name":"gregkh/usbutils","url":"https://api.github.com/repos/gregkh/usbutils"},"payload":{"forkee":{"id":28688737,"name":"usbutils","full_name":"bhurtelashish/usbutils","owner":{"login":"bhurtelashish","id":1572750,"avatar_url":"https://avatars.githubusercontent.com/u/1572750?v=3","gravatar_id":"","url":"https://api.github.com/users/bhurtelashish","html_url":"https://github.com/bhurtelashish","followers_url":"https://api.github.com/users/bhurtelashish/followers","following_url":"https://api.github.com/users/bhurtelashish/following{/other_user}","gists_url":"https://api.github.com/users/bhurtelashish/gists{/gist_id}","starred_url":"https://api.github.com/users/bhurtelashish/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhurtelashish/subscriptions","organizations_url":"https://api.github.com/users/bhurtelashish/orgs","repos_url":"https://api.github.com/users/bhurtelashish/repos","events_url":"https://api.github.com/users/bhurtelashish/events{/privacy}","received_events_url":"https://api.github.com/users/bhurtelashish/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/bhurtelashish/usbutils","description":"USB utilities for Linux, includes the usb.ids file and lsusb","fork":true,"url":"https://api.github.com/repos/bhurtelashish/usbutils","forks_url":"https://api.github.com/repos/bhurtelashish/usbutils/forks","keys_url":"https://api.github.com/repos/bhurtelashish/usbutils/keys{/key_id}","collaborators_url":"https://api.github.com/repos/bhurtelashish/usbutils/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/bhurtelashish/usbutils/teams","hooks_url":"https://api.github.com/repos/bhurtelashish/usbutils/hooks","issue_events_url":"https://api.github.com/repos/bhurtelashish/usbutils/issues/events{/number}","events_url":"https://api.github.com/repos/bhurtelashish/usbutils/events","assignees_url":"https://api.github.com/repos/bhurtelashish/usbutils/assignees{/user}","branches_url":"https://api.github.com/repos/bhurtelashish/usbutils/branches{/branch}","tags_url":"https://api.github.com/repos/bhurtelashish/usbutils/tags","blobs_url":"https://api.github.com/repos/bhurtelashish/usbutils/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/bhurtelashish/usbutils/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/bhurtelashish/usbutils/git/refs{/sha}","trees_url":"https://api.github.com/repos/bhurtelashish/usbutils/git/trees{/sha}","statuses_url":"https://api.github.com/repos/bhurtelashish/usbutils/statuses/{sha}","languages_url":"https://api.github.com/repos/bhurtelashish/usbutils/languages","stargazers_url":"https://api.github.com/repos/bhurtelashish/usbutils/stargazers","contributors_url":"https://api.github.com/repos/bhurtelashish/usbutils/contributors","subscribers_url":"https://api.github.com/repos/bhurtelashish/usbutils/subscribers","subscription_url":"https://api.github.com/repos/bhurtelashish/usbutils/subscription","commits_url":"https://api.github.com/repos/bhurtelashish/usbutils/commits{/sha}","git_commits_url":"https://api.github.com/repos/bhurtelashish/usbutils/git/commits{/sha}","comments_url":"https://api.github.com/repos/bhurtelashish/usbutils/comments{/number}","issue_comment_url":"https://api.github.com/repos/bhurtelashish/usbutils/issues/comments/{number}","contents_url":"https://api.github.com/repos/bhurtelashish/usbutils/contents/{+path}","compare_url":"https://api.github.com/repos/bhurtelashish/usbutils/compare/{base}...{head}","merges_url":"https://api.github.com/repos/bhurtelashish/usbutils/merges","archive_url":"https://api.github.com/repos/bhurtelashish/usbutils/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/bhurtelashish/usbutils/downloads","issues_url":"https://api.github.com/repos/bhurtelashish/usbutils/issues{/number}","pulls_url":"https://api.github.com/repos/bhurtelashish/usbutils/pulls{/number}","milestones_url":"https://api.github.com/repos/bhurtelashish/usbutils/milestones{/number}","notifications_url":"https://api.github.com/repos/bhurtelashish/usbutils/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/bhurtelashish/usbutils/labels{/name}","releases_url":"https://api.github.com/repos/bhurtelashish/usbutils/releases{/id}","created_at":"2015-01-01T15:07:55Z","updated_at":"2014-12-14T03:21:35Z","pushed_at":"2014-11-15T20:43:59Z","git_url":"git://github.com/bhurtelashish/usbutils.git","ssh_url":"git@github.com:bhurtelashish/usbutils.git","clone_url":"https://github.com/bhurtelashish/usbutils.git","svn_url":"https://github.com/bhurtelashish/usbutils","homepage":"www.linux-usb.org","size":1348,"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:07:55Z"} +,{"id":"2489654724","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":536865648,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2e9bcd6343be8f509b199495aa33a852a76cbab5","before":"3bf1190101083c43f623cb0d7b65eb196d451df3","commits":[{"sha":"2e9bcd6343be8f509b199495aa33a852a76cbab5","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420124873758\n\n6hTSo5P/zWyNX7cnv5JDRlTYEbFqV7hbaRBPrRp0uY8=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/2e9bcd6343be8f509b199495aa33a852a76cbab5"}]},"public":true,"created_at":"2015-01-01T15:07:55Z"} +,{"id":"2489654727","type":"PushEvent","actor":{"id":1361258,"login":"r-brown","gravatar_id":"","url":"https://api.github.com/users/r-brown","avatar_url":"https://avatars.githubusercontent.com/u/1361258?"},"repo":{"id":27335510,"name":"Labs64/swid-generator","url":"https://api.github.com/repos/Labs64/swid-generator"},"payload":{"push_id":536865649,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"91e04d3b9de44c95f88e2dff667dd92820f9490c","before":"f0926a045837a977c72f717a9e826bba29bada87","commits":[{"sha":"399e29308a0ac69248d9548315a852c870889e71","author":{"email":"05c58c24734128cab7de5d556d131aa7fffac8ec@hotmail.de","name":"R.Brown"},"message":"- introduce SequentialIdGenerator","distinct":true,"url":"https://api.github.com/repos/Labs64/swid-generator/commits/399e29308a0ac69248d9548315a852c870889e71"},{"sha":"91e04d3b9de44c95f88e2dff667dd92820f9490c","author":{"email":"05c58c24734128cab7de5d556d131aa7fffac8ec@hotmail.de","name":"R.Brown"},"message":"- fix generator setter","distinct":true,"url":"https://api.github.com/repos/Labs64/swid-generator/commits/91e04d3b9de44c95f88e2dff667dd92820f9490c"}]},"public":true,"created_at":"2015-01-01T15:07:55Z","org":{"id":1461983,"login":"Labs64","gravatar_id":"","url":"https://api.github.com/orgs/Labs64","avatar_url":"https://avatars.githubusercontent.com/u/1461983?"}} +,{"id":"2489654728","type":"PullRequestReviewCommentEvent","actor":{"id":20167,"login":"ohadlevy","gravatar_id":"","url":"https://api.github.com/users/ohadlevy","avatar_url":"https://avatars.githubusercontent.com/u/20167?"},"repo":{"id":27426416,"name":"shlomizadok/foreman_openscap","url":"https://api.github.com/repos/shlomizadok/foreman_openscap"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/comments/22400111","id":22400111,"diff_hunk":"@@ -80,39 +91,49 @@ def used_organization_ids\n 'taxable_taxonomies.taxable_id' => id).pluck(\"#{Location.arel_table.name}.id\")\n end\n \n+ # override to not query join with hostgroups.\n+ def hostgroup_ids\n+ policy_hostgroups.pluck(\"DISTINCT hostgroup_id\")\n+ end\n+\n+ def used_hostgroup_ids\n+ Scaptimony::PolicyHostgroup.where(['policy_id <> ?', id]).pluck('DISTINCT hostgroup_id')\n+ end\n+\n def assign_hosts(hosts)\n assign_assets hosts.map &:get_asset\n end\n \n private\n \n+ def ensure_needed_puppetclasses\n+ unless Puppetclass.find_by_name(SCAP_PUPPET_CLASS)\n+ errors[:base] << _(\"Required Puppet class %{class} is not found, please ensure it imported first.\") % {:class => SCAP_PUPPET_CLASS}\n+ end\n+ end\n+\n def assign_policy_to_hostgroups\n- puppetclass = Puppetclass.find('openscap::xccdf::foreman_audit')\n- ## @TODO: Handle puppetclass not found\n- hostgroups.each do |hostgroup|\n- hostgroup.puppetclasses << puppetclass unless hostgroup.puppetclasses.include? puppetclass\n- populate_overrides(puppetclass, hostgroup)\n+ if hostgroups\n+ puppetclass = Puppetclass.find_by_name(SCAP_PUPPET_CLASS)\n+ hostgroups.each do |hostgroup|\n+ hostgroup.puppetclasses << puppetclass unless hostgroup.puppetclasses.include? puppetclass\n+ populate_overrides(puppetclass, hostgroup)\n+ end\n end\n end\n \n def populate_overrides(puppetclass, hostgroup)\n overrides = puppetclass.class_params.where(:override => true)\n overrides.each do |override|\n- if override.key == 'foreman_proxy'\n- # override_value = hostgroup.puppet_proxy.url\n- next\n- else\n- override_value = self.send(override.key)\n- end\n- p \"############## #{override_value}\"\n- unless override_value.blank?\n- p \"OVERRIDE ID #{override.id}\"\n- p \"HG:::::::::::::: #{hostgroup.to_label}\"\n- lookup_value = LookupValue.where(:match => \"hostgroup=#{hostgroup.to_label}\", :lookup_key_id => override.id).first_or_create\n+ override_value = if override.key == 'foreman_proxy'\n+ hostgroup.puppet_proxy.url if hostgroup.puppet_proxy\n+ else\n+ self.send(override.key)\n+ end\n+ if override_value.present?\n+ lookup_value = LookupValue.where(:match => hostgroup.lookup_value_match, :lookup_key_id => override.id).first_or_create","path":"app/models/concerns/foreman_openscap/policy_extensions.rb","position":102,"original_position":102,"commit_id":"7d9e161019a3f17b7ed003f306b41a61d0a3260e","original_commit_id":"7d9e161019a3f17b7ed003f306b41a61d0a3260e","user":{"login":"ohadlevy","id":20167,"avatar_url":"https://avatars.githubusercontent.com/u/20167?v=3","gravatar_id":"","url":"https://api.github.com/users/ohadlevy","html_url":"https://github.com/ohadlevy","followers_url":"https://api.github.com/users/ohadlevy/followers","following_url":"https://api.github.com/users/ohadlevy/following{/other_user}","gists_url":"https://api.github.com/users/ohadlevy/gists{/gist_id}","starred_url":"https://api.github.com/users/ohadlevy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ohadlevy/subscriptions","organizations_url":"https://api.github.com/users/ohadlevy/orgs","repos_url":"https://api.github.com/users/ohadlevy/repos","events_url":"https://api.github.com/users/ohadlevy/events{/privacy}","received_events_url":"https://api.github.com/users/ohadlevy/received_events","type":"User","site_admin":false},"body":"note lookup_value_match is a private method, which returns the matcher","created_at":"2015-01-01T15:07:55Z","updated_at":"2015-01-01T15:07:55Z","html_url":"https://github.com/shlomizadok/foreman_openscap/pull/1#discussion_r22400111","pull_request_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/1","_links":{"self":{"href":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/comments/22400111"},"html":{"href":"https://github.com/shlomizadok/foreman_openscap/pull/1#discussion_r22400111"},"pull_request":{"href":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/1"}}},"pull_request":{"url":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/1","id":26743660,"html_url":"https://github.com/shlomizadok/foreman_openscap/pull/1","diff_url":"https://github.com/shlomizadok/foreman_openscap/pull/1.diff","patch_url":"https://github.com/shlomizadok/foreman_openscap/pull/1.patch","issue_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/issues/1","number":1,"state":"closed","locked":false,"title":"Policy ui","user":{"login":"ohadlevy","id":20167,"avatar_url":"https://avatars.githubusercontent.com/u/20167?v=3","gravatar_id":"","url":"https://api.github.com/users/ohadlevy","html_url":"https://github.com/ohadlevy","followers_url":"https://api.github.com/users/ohadlevy/followers","following_url":"https://api.github.com/users/ohadlevy/following{/other_user}","gists_url":"https://api.github.com/users/ohadlevy/gists{/gist_id}","starred_url":"https://api.github.com/users/ohadlevy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ohadlevy/subscriptions","organizations_url":"https://api.github.com/users/ohadlevy/orgs","repos_url":"https://api.github.com/users/ohadlevy/repos","events_url":"https://api.github.com/users/ohadlevy/events{/privacy}","received_events_url":"https://api.github.com/users/ohadlevy/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T14:46:56Z","updated_at":"2015-01-01T15:07:55Z","closed_at":"2015-01-01T15:05:29Z","merged_at":"2015-01-01T15:05:29Z","merge_commit_sha":"955303fe7d8046774b96a5fc0f718be18d833b46","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/1/commits","review_comments_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/1/comments","review_comment_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/comments/{number}","comments_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/issues/1/comments","statuses_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/statuses/7d9e161019a3f17b7ed003f306b41a61d0a3260e","head":{"label":"ohadlevy:policy-ui","ref":"policy-ui","sha":"7d9e161019a3f17b7ed003f306b41a61d0a3260e","user":{"login":"ohadlevy","id":20167,"avatar_url":"https://avatars.githubusercontent.com/u/20167?v=3","gravatar_id":"","url":"https://api.github.com/users/ohadlevy","html_url":"https://github.com/ohadlevy","followers_url":"https://api.github.com/users/ohadlevy/followers","following_url":"https://api.github.com/users/ohadlevy/following{/other_user}","gists_url":"https://api.github.com/users/ohadlevy/gists{/gist_id}","starred_url":"https://api.github.com/users/ohadlevy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ohadlevy/subscriptions","organizations_url":"https://api.github.com/users/ohadlevy/orgs","repos_url":"https://api.github.com/users/ohadlevy/repos","events_url":"https://api.github.com/users/ohadlevy/events{/privacy}","received_events_url":"https://api.github.com/users/ohadlevy/received_events","type":"User","site_admin":false},"repo":{"id":27348763,"name":"foreman_openscap","full_name":"ohadlevy/foreman_openscap","owner":{"login":"ohadlevy","id":20167,"avatar_url":"https://avatars.githubusercontent.com/u/20167?v=3","gravatar_id":"","url":"https://api.github.com/users/ohadlevy","html_url":"https://github.com/ohadlevy","followers_url":"https://api.github.com/users/ohadlevy/followers","following_url":"https://api.github.com/users/ohadlevy/following{/other_user}","gists_url":"https://api.github.com/users/ohadlevy/gists{/gist_id}","starred_url":"https://api.github.com/users/ohadlevy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ohadlevy/subscriptions","organizations_url":"https://api.github.com/users/ohadlevy/orgs","repos_url":"https://api.github.com/users/ohadlevy/repos","events_url":"https://api.github.com/users/ohadlevy/events{/privacy}","received_events_url":"https://api.github.com/users/ohadlevy/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ohadlevy/foreman_openscap","description":"Foreman plug-in for displaying OpenSCAP audit reports","fork":true,"url":"https://api.github.com/repos/ohadlevy/foreman_openscap","forks_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/forks","keys_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/teams","hooks_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/hooks","issue_events_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/issues/events{/number}","events_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/events","assignees_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/assignees{/user}","branches_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/branches{/branch}","tags_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/tags","blobs_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/git/refs{/sha}","trees_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/statuses/{sha}","languages_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/languages","stargazers_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/stargazers","contributors_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/contributors","subscribers_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/subscribers","subscription_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/subscription","commits_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/commits{/sha}","git_commits_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/git/commits{/sha}","comments_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/comments{/number}","issue_comment_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/issues/comments/{number}","contents_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/contents/{+path}","compare_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/merges","archive_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/downloads","issues_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/issues{/number}","pulls_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/pulls{/number}","milestones_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/milestones{/number}","notifications_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/labels{/name}","releases_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/releases{/id}","created_at":"2014-11-30T20:22:33Z","updated_at":"2014-11-30T20:22:33Z","pushed_at":"2015-01-01T14:48:10Z","git_url":"git://github.com/ohadlevy/foreman_openscap.git","ssh_url":"git@github.com:ohadlevy/foreman_openscap.git","clone_url":"https://github.com/ohadlevy/foreman_openscap.git","svn_url":"https://github.com/ohadlevy/foreman_openscap","homepage":null,"size":257,"stargazers_count":0,"watchers_count":0,"language":"Ruby","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":"shlomizadok:policy_ui","ref":"policy_ui","sha":"db4f1d5c3f0dcc249e73e6ef82998c6cd3d18a2e","user":{"login":"shlomizadok","id":433583,"avatar_url":"https://avatars.githubusercontent.com/u/433583?v=3","gravatar_id":"","url":"https://api.github.com/users/shlomizadok","html_url":"https://github.com/shlomizadok","followers_url":"https://api.github.com/users/shlomizadok/followers","following_url":"https://api.github.com/users/shlomizadok/following{/other_user}","gists_url":"https://api.github.com/users/shlomizadok/gists{/gist_id}","starred_url":"https://api.github.com/users/shlomizadok/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shlomizadok/subscriptions","organizations_url":"https://api.github.com/users/shlomizadok/orgs","repos_url":"https://api.github.com/users/shlomizadok/repos","events_url":"https://api.github.com/users/shlomizadok/events{/privacy}","received_events_url":"https://api.github.com/users/shlomizadok/received_events","type":"User","site_admin":false},"repo":{"id":27426416,"name":"foreman_openscap","full_name":"shlomizadok/foreman_openscap","owner":{"login":"shlomizadok","id":433583,"avatar_url":"https://avatars.githubusercontent.com/u/433583?v=3","gravatar_id":"","url":"https://api.github.com/users/shlomizadok","html_url":"https://github.com/shlomizadok","followers_url":"https://api.github.com/users/shlomizadok/followers","following_url":"https://api.github.com/users/shlomizadok/following{/other_user}","gists_url":"https://api.github.com/users/shlomizadok/gists{/gist_id}","starred_url":"https://api.github.com/users/shlomizadok/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shlomizadok/subscriptions","organizations_url":"https://api.github.com/users/shlomizadok/orgs","repos_url":"https://api.github.com/users/shlomizadok/repos","events_url":"https://api.github.com/users/shlomizadok/events{/privacy}","received_events_url":"https://api.github.com/users/shlomizadok/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/shlomizadok/foreman_openscap","description":"Foreman plug-in for displaying OpenSCAP audit reports","fork":true,"url":"https://api.github.com/repos/shlomizadok/foreman_openscap","forks_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/forks","keys_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/keys{/key_id}","collaborators_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/teams","hooks_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/hooks","issue_events_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/issues/events{/number}","events_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/events","assignees_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/assignees{/user}","branches_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/branches{/branch}","tags_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/tags","blobs_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/git/refs{/sha}","trees_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/git/trees{/sha}","statuses_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/statuses/{sha}","languages_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/languages","stargazers_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/stargazers","contributors_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/contributors","subscribers_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/subscribers","subscription_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/subscription","commits_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/commits{/sha}","git_commits_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/git/commits{/sha}","comments_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/comments{/number}","issue_comment_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/issues/comments/{number}","contents_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/contents/{+path}","compare_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/compare/{base}...{head}","merges_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/merges","archive_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/downloads","issues_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/issues{/number}","pulls_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls{/number}","milestones_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/milestones{/number}","notifications_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/labels{/name}","releases_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/releases{/id}","created_at":"2014-12-02T10:04:02Z","updated_at":"2014-12-15T07:08:17Z","pushed_at":"2015-01-01T15:05:29Z","git_url":"git://github.com/shlomizadok/foreman_openscap.git","ssh_url":"git@github.com:shlomizadok/foreman_openscap.git","clone_url":"https://github.com/shlomizadok/foreman_openscap.git","svn_url":"https://github.com/shlomizadok/foreman_openscap","homepage":null,"size":364,"stargazers_count":0,"watchers_count":0,"language":"Ruby","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/shlomizadok/foreman_openscap/pulls/1"},"html":{"href":"https://github.com/shlomizadok/foreman_openscap/pull/1"},"issue":{"href":"https://api.github.com/repos/shlomizadok/foreman_openscap/issues/1"},"comments":{"href":"https://api.github.com/repos/shlomizadok/foreman_openscap/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/shlomizadok/foreman_openscap/statuses/7d9e161019a3f17b7ed003f306b41a61d0a3260e"}}}},"public":true,"created_at":"2015-01-01T15:07:55Z"} +,{"id":"2489654734","type":"CreateEvent","actor":{"id":3888578,"login":"natzim","gravatar_id":"","url":"https://api.github.com/users/natzim","avatar_url":"https://avatars.githubusercontent.com/u/3888578?"},"repo":{"id":28688730,"name":"natzim/Journal","url":"https://api.github.com/repos/natzim/Journal"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:07:56Z"} +,{"id":"2489654738","type":"PushEvent","actor":{"id":6213717,"login":"Thundzz","gravatar_id":"","url":"https://api.github.com/users/Thundzz","avatar_url":"https://avatars.githubusercontent.com/u/6213717?"},"repo":{"id":25167189,"name":"Thundzz/LangagesDuParallelisme","url":"https://api.github.com/repos/Thundzz/LangagesDuParallelisme"},"payload":{"push_id":536865652,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"06dab769f63d084c4b0007ce7ab239bfa0a6795b","before":"8acf1a00ebcf39758badb389f1d9e4da4a961eaf","commits":[{"sha":"06dab769f63d084c4b0007ce7ab239bfa0a6795b","author":{"email":"0844a69646d19be80966425cfde0265bf11e529e@gmail.com","name":"Thundzz"},"message":"Add acknowledgment protocol: slaves must say that they have finished.","distinct":true,"url":"https://api.github.com/repos/Thundzz/LangagesDuParallelisme/commits/06dab769f63d084c4b0007ce7ab239bfa0a6795b"}]},"public":true,"created_at":"2015-01-01T15:07:56Z"} +,{"id":"2489654752","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":536865655,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fc9a9ad66ef2350a43c92cfefabf8dc9385ade98","before":"fcb3b327ad4f32ed17b82fc23036bb8e1e619ccc","commits":[{"sha":"fc9a9ad66ef2350a43c92cfefabf8dc9385ade98","author":{"email":"ef472836fe800ec78173ee4bff753e52ff094e51@gmail.com","name":"root"},"message":"a","distinct":true,"url":"https://api.github.com/repos/superlucky84/superlucky/commits/fc9a9ad66ef2350a43c92cfefabf8dc9385ade98"}]},"public":true,"created_at":"2015-01-01T15:07:58Z"} +,{"id":"2489654755","type":"PushEvent","actor":{"id":7838445,"login":"ogaksk","gravatar_id":"","url":"https://api.github.com/users/ogaksk","avatar_url":"https://avatars.githubusercontent.com/u/7838445?"},"repo":{"id":27595297,"name":"ogaksk/ogaksk.org","url":"https://api.github.com/repos/ogaksk/ogaksk.org"},"payload":{"push_id":536865656,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e7ff8c2d4a6c5e46e6c4c4a944fbfd6ade384a43","before":"c993e4db7ffd113c34021d80d2a98917699e78bb","commits":[{"sha":"e7ff8c2d4a6c5e46e6c4c4a944fbfd6ade384a43","author":{"email":"d6f456124ae10a7532a852f24b9b0217c7f293e7@ogawa-air.local","name":"ogaksk"},"message":"npmアップデートしたら行った こわ","distinct":true,"url":"https://api.github.com/repos/ogaksk/ogaksk.org/commits/e7ff8c2d4a6c5e46e6c4c4a944fbfd6ade384a43"}]},"public":true,"created_at":"2015-01-01T15:07:59Z"} +,{"id":"2489654756","type":"PushEvent","actor":{"id":4393706,"login":"rsnair2","gravatar_id":"","url":"https://api.github.com/users/rsnair2","avatar_url":"https://avatars.githubusercontent.com/u/4393706?"},"repo":{"id":28567275,"name":"rsnair2/psocket","url":"https://api.github.com/repos/rsnair2/psocket"},"payload":{"push_id":536865657,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"5342fd584eedde8cb11a446477d07c5c7e839169","before":"13e866a341629f1fbd31fa3b325b917cc0049509","commits":[{"sha":"a106a6d3d979c5d72cfda4694abc45c1e40edfed","author":{"email":"8fe517ce88286b81ea48112102f543172b40c300@gmail.com","name":"Rajiv Nair"},"message":"fixed bug: prevented connections from being added after psocket.close is called","distinct":true,"url":"https://api.github.com/repos/rsnair2/psocket/commits/a106a6d3d979c5d72cfda4694abc45c1e40edfed"},{"sha":"5342fd584eedde8cb11a446477d07c5c7e839169","author":{"email":"8fe517ce88286b81ea48112102f543172b40c300@gmail.com","name":"Rajiv Nair"},"message":"merged with head","distinct":true,"url":"https://api.github.com/repos/rsnair2/psocket/commits/5342fd584eedde8cb11a446477d07c5c7e839169"}]},"public":true,"created_at":"2015-01-01T15:07:59Z"} +,{"id":"2489654766","type":"PushEvent","actor":{"id":6229503,"login":"divingteng","gravatar_id":"","url":"https://api.github.com/users/divingteng","avatar_url":"https://avatars.githubusercontent.com/u/6229503?"},"repo":{"id":24402101,"name":"divingteng/divingteng.github.io","url":"https://api.github.com/repos/divingteng/divingteng.github.io"},"payload":{"push_id":536865661,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"58be3af854b623f4cf3a893103fef55898c6bd40","before":"6bae03ee51cf01572012128f822c4b2d68a274e8","commits":[{"sha":"58be3af854b623f4cf3a893103fef55898c6bd40","author":{"email":"6300585194b05b18f92030355740c498c19577f1@gmail.com","name":"tengyue"},"message":"改为fafafa","distinct":true,"url":"https://api.github.com/repos/divingteng/divingteng.github.io/commits/58be3af854b623f4cf3a893103fef55898c6bd40"}]},"public":true,"created_at":"2015-01-01T15:08:00Z"} +,{"id":"2489654769","type":"WatchEvent","actor":{"id":4433156,"login":"Ulov888","gravatar_id":"","url":"https://api.github.com/users/Ulov888","avatar_url":"https://avatars.githubusercontent.com/u/4433156?"},"repo":{"id":20557685,"name":"vikmeup/SCLAlertView-Swift","url":"https://api.github.com/repos/vikmeup/SCLAlertView-Swift"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:00Z"} +,{"id":"2489654770","type":"IssueCommentEvent","actor":{"id":532414,"login":"piranna","gravatar_id":"","url":"https://api.github.com/users/piranna","avatar_url":"https://avatars.githubusercontent.com/u/532414?"},"repo":{"id":11572519,"name":"NodeOS/NodeOS","url":"https://api.github.com/repos/NodeOS/NodeOS"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/NodeOS/NodeOS/issues/89","labels_url":"https://api.github.com/repos/NodeOS/NodeOS/issues/89/labels{/name}","comments_url":"https://api.github.com/repos/NodeOS/NodeOS/issues/89/comments","events_url":"https://api.github.com/repos/NodeOS/NodeOS/issues/89/events","html_url":"https://github.com/NodeOS/NodeOS/pull/89","id":52872528,"number":89,"title":"Cross compiler musl","user":{"login":"piranna","id":532414,"avatar_url":"https://avatars.githubusercontent.com/u/532414?v=3","gravatar_id":"","url":"https://api.github.com/users/piranna","html_url":"https://github.com/piranna","followers_url":"https://api.github.com/users/piranna/followers","following_url":"https://api.github.com/users/piranna/following{/other_user}","gists_url":"https://api.github.com/users/piranna/gists{/gist_id}","starred_url":"https://api.github.com/users/piranna/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/piranna/subscriptions","organizations_url":"https://api.github.com/users/piranna/orgs","repos_url":"https://api.github.com/users/piranna/repos","events_url":"https://api.github.com/users/piranna/events{/privacy}","received_events_url":"https://api.github.com/users/piranna/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":53,"created_at":"2014-12-25T21:15:53Z","updated_at":"2015-01-01T15:08:00Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/NodeOS/NodeOS/pulls/89","html_url":"https://github.com/NodeOS/NodeOS/pull/89","diff_url":"https://github.com/NodeOS/NodeOS/pull/89.diff","patch_url":"https://github.com/NodeOS/NodeOS/pull/89.patch"},"body":"This is a work-in-progress pull-request just so we can comment on it.\r\n\r\nFinally I've managed to create a cross-toolchain and use it to compile a runnable NodeOS instance (i386-glibc -> i686-musl, I need to test x86_64 -> i386). After some tries, I got it to work using as basis [Cross Linux From Scratch - Embedded](http://clfs.org/view/clfs-embedded), that uses [musl](http://www.musl-libc.org/) as C lib instead of standard glibc. I wanted to use a glibc based system, but this is the only one I've managed to make it to work, since using the plain [Linux From Scratch](http://www.linuxfromscratch.org/) or also the standard [Compressed Linux From Scratch](http://www.clfs.org/view/CLFS-3.0.0-SYSVINIT/) (both based on glibc) was fairly overcomplicated and gave a lot of compilation problems.\r\n\r\nThis has some drawbacks that needs improvement (or not :-) ):\r\n\r\n* it's a musl based system, so compiled modules that use non-standard extensions of GNU glibc will not compile. It's a fail of the developers, so this could help to improve their code to be C standard compliant (win-win for all :-) ).\r\n* OpenSSL doesn't work well with musl (due to the use of that non-standard extensions...) and needs to be patched since [nobody](https://rt.openssl.org/Ticket/Display.html?id=2823&user=guest&pass=guest) [fix](https://rt.openssl.org/Ticket/Display.html?id=3526&user=guest&pass=guest) [it](https://rt.openssl.org/Ticket/Display.html?id=3123) :-( Luckily [it's an easy one](https://raw.githubusercontent.com/maximeh/buildroot/master/package/openssl/openssl-004-musl-termios.patch)...\r\n* GCC is not aware of musl so [it needs to be patched](http://patches.clfs.org/embedded-dev/gcc-4.7.3-musl-1.patch), too. This leads us to use a fixed GCC version, but since it's somewhat new (April 2014) and probably we'll move to [llvm](http://llvm.org/) when [Linux could be compiled with it](http://llvm.linuxfoundation.org/) so we can use one of the llvm [Javascript](http://badassjs.com/post/39573969361/llvm-js-llvm-itself-compiled-to-javascript-via) [flavours](http://leaningtech.com/cheerp/) on the userspace, then it's a fair trade by this moment.\r\n* I was not be able to use a dynamically linked Node.js executable, so I'm using a [fully-statically linked](https://github.com/joyent/node/pull/8274) one. This should be fixed in the future for loading of compiled modules and specially to exec binaries, but if we don't allow binaries at all and since now ```require()``` of modules works because musl now include the required ```dl_``` functions (at least native ones does while it was not working before, I need to test external ones), this could help to enforce a pure-Javascript environment :-) On the other hand, this also has the advantage that the memory foot-print is smaller since now the only required files on the initramfs are the console device and the Node.js executable (impossible to make it simpler!!! :-D )\r\n\r\nIt's still unstable and needs some more work and testing (please test it! :-D ), but when it's finished, NodeOS build system will be self-contained and will be easier to port it to other platforms just by updating the cross-compiler :-) Also I've been developing it as a NPM package, so when it's ready in the future we could be able to move it to be an independent project (I would love to see NodeOS self-hosted... :-D )."},"comment":{"url":"https://api.github.com/repos/NodeOS/NodeOS/issues/comments/68488644","html_url":"https://github.com/NodeOS/NodeOS/pull/89#issuecomment-68488644","issue_url":"https://api.github.com/repos/NodeOS/NodeOS/issues/89","id":68488644,"user":{"login":"piranna","id":532414,"avatar_url":"https://avatars.githubusercontent.com/u/532414?v=3","gravatar_id":"","url":"https://api.github.com/users/piranna","html_url":"https://github.com/piranna","followers_url":"https://api.github.com/users/piranna/followers","following_url":"https://api.github.com/users/piranna/following{/other_user}","gists_url":"https://api.github.com/users/piranna/gists{/gist_id}","starred_url":"https://api.github.com/users/piranna/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/piranna/subscriptions","organizations_url":"https://api.github.com/users/piranna/orgs","repos_url":"https://api.github.com/users/piranna/repos","events_url":"https://api.github.com/users/piranna/events{/privacy}","received_events_url":"https://api.github.com/users/piranna/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:08:00Z","updated_at":"2015-01-01T15:08:00Z","body":"Ok, great :-)\r\nEl 01/01/2015 15:37, \"Csaba Szabo\" escribió:\r\n\r\n> I uncommented that. Otherwise there would be no rootfs.img. I'm still\r\n> testing it, but will upload it in a few hours.\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:08:00Z","org":{"id":5056162,"login":"NodeOS","gravatar_id":"","url":"https://api.github.com/orgs/NodeOS","avatar_url":"https://avatars.githubusercontent.com/u/5056162?"}} +,{"id":"2489654771","type":"PushEvent","actor":{"id":16649,"login":"Kazade","gravatar_id":"","url":"https://api.github.com/users/Kazade","avatar_url":"https://avatars.githubusercontent.com/u/16649?"},"repo":{"id":2963310,"name":"Kazade/KGLT","url":"https://api.github.com/repos/Kazade/KGLT"},"payload":{"push_id":536865663,"size":4,"distinct_size":4,"ref":"refs/heads/master","head":"8eeebc69754b7805d1ee53bc5a3c56d2eebace29","before":"7fadcba1eed6e706873a2ab959d31710d98bca63","commits":[{"sha":"862be1c42f65462e835a3caf8748750b532b3404","author":{"email":"5989861705a530cf854c7404b1b20cb2c4160fcc@gmail.com","name":"Luke Benstead"},"message":"Add support for box emitters to the particle system","distinct":true,"url":"https://api.github.com/repos/Kazade/KGLT/commits/862be1c42f65462e835a3caf8748750b532b3404"},{"sha":"2e56296b12af05c47da4bdc47ea658e4ced90e4e","author":{"email":"5989861705a530cf854c7404b1b20cb2c4160fcc@gmail.com","name":"Luke Benstead"},"message":"Optimization of particle insertion","distinct":true,"url":"https://api.github.com/repos/Kazade/KGLT/commits/2e56296b12af05c47da4bdc47ea658e4ced90e4e"},{"sha":"d82af37bf7d7b6ce017b7f3f44c0c31bbdded5e4","author":{"email":"5989861705a530cf854c7404b1b20cb2c4160fcc@gmail.com","name":"Luke Benstead"},"message":"Tweak the virtual gamepad button positions","distinct":true,"url":"https://api.github.com/repos/Kazade/KGLT/commits/d82af37bf7d7b6ce017b7f3f44c0c31bbdded5e4"},{"sha":"8eeebc69754b7805d1ee53bc5a3c56d2eebace29","author":{"email":"5989861705a530cf854c7404b1b20cb2c4160fcc@gmail.com","name":"Luke Benstead"},"message":"Replace the arrow shaped buttons with circular ones, and add labels","distinct":true,"url":"https://api.github.com/repos/Kazade/KGLT/commits/8eeebc69754b7805d1ee53bc5a3c56d2eebace29"}]},"public":true,"created_at":"2015-01-01T15:08:00Z"} +,{"id":"2489654772","type":"PullRequestEvent","actor":{"id":44209,"login":"nahi","gravatar_id":"","url":"https://api.github.com/users/nahi","avatar_url":"https://avatars.githubusercontent.com/u/44209?"},"repo":{"id":354875,"name":"nahi/httpclient","url":"https://api.github.com/repos/nahi/httpclient"},"payload":{"action":"opened","number":239,"pull_request":{"url":"https://api.github.com/repos/nahi/httpclient/pulls/239","id":26743831,"html_url":"https://github.com/nahi/httpclient/pull/239","diff_url":"https://github.com/nahi/httpclient/pull/239.diff","patch_url":"https://github.com/nahi/httpclient/pull/239.patch","issue_url":"https://api.github.com/repos/nahi/httpclient/issues/239","number":239,"state":"open","locked":false,"title":"[WIP] SSL session reuse","user":{"login":"nahi","id":44209,"avatar_url":"https://avatars.githubusercontent.com/u/44209?v=3","gravatar_id":"","url":"https://api.github.com/users/nahi","html_url":"https://github.com/nahi","followers_url":"https://api.github.com/users/nahi/followers","following_url":"https://api.github.com/users/nahi/following{/other_user}","gists_url":"https://api.github.com/users/nahi/gists{/gist_id}","starred_url":"https://api.github.com/users/nahi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nahi/subscriptions","organizations_url":"https://api.github.com/users/nahi/orgs","repos_url":"https://api.github.com/users/nahi/repos","events_url":"https://api.github.com/users/nahi/events{/privacy}","received_events_url":"https://api.github.com/users/nahi/received_events","type":"User","site_admin":false},"body":"Should have tests.","created_at":"2015-01-01T15:08:00Z","updated_at":"2015-01-01T15:08:00Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/nahi/httpclient/pulls/239/commits","review_comments_url":"https://api.github.com/repos/nahi/httpclient/pulls/239/comments","review_comment_url":"https://api.github.com/repos/nahi/httpclient/pulls/comments/{number}","comments_url":"https://api.github.com/repos/nahi/httpclient/issues/239/comments","statuses_url":"https://api.github.com/repos/nahi/httpclient/statuses/7fc04933961ea3ea5a2aa595172ca7cd29a718f5","head":{"label":"nahi:ssl_session_reuse","ref":"ssl_session_reuse","sha":"7fc04933961ea3ea5a2aa595172ca7cd29a718f5","user":{"login":"nahi","id":44209,"avatar_url":"https://avatars.githubusercontent.com/u/44209?v=3","gravatar_id":"","url":"https://api.github.com/users/nahi","html_url":"https://github.com/nahi","followers_url":"https://api.github.com/users/nahi/followers","following_url":"https://api.github.com/users/nahi/following{/other_user}","gists_url":"https://api.github.com/users/nahi/gists{/gist_id}","starred_url":"https://api.github.com/users/nahi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nahi/subscriptions","organizations_url":"https://api.github.com/users/nahi/orgs","repos_url":"https://api.github.com/users/nahi/repos","events_url":"https://api.github.com/users/nahi/events{/privacy}","received_events_url":"https://api.github.com/users/nahi/received_events","type":"User","site_admin":false},"repo":{"id":354875,"name":"httpclient","full_name":"nahi/httpclient","owner":{"login":"nahi","id":44209,"avatar_url":"https://avatars.githubusercontent.com/u/44209?v=3","gravatar_id":"","url":"https://api.github.com/users/nahi","html_url":"https://github.com/nahi","followers_url":"https://api.github.com/users/nahi/followers","following_url":"https://api.github.com/users/nahi/following{/other_user}","gists_url":"https://api.github.com/users/nahi/gists{/gist_id}","starred_url":"https://api.github.com/users/nahi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nahi/subscriptions","organizations_url":"https://api.github.com/users/nahi/orgs","repos_url":"https://api.github.com/users/nahi/repos","events_url":"https://api.github.com/users/nahi/events{/privacy}","received_events_url":"https://api.github.com/users/nahi/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/nahi/httpclient","description":"'httpclient' gives something like the functionality of libwww-perl (LWP) in Ruby.","fork":false,"url":"https://api.github.com/repos/nahi/httpclient","forks_url":"https://api.github.com/repos/nahi/httpclient/forks","keys_url":"https://api.github.com/repos/nahi/httpclient/keys{/key_id}","collaborators_url":"https://api.github.com/repos/nahi/httpclient/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/nahi/httpclient/teams","hooks_url":"https://api.github.com/repos/nahi/httpclient/hooks","issue_events_url":"https://api.github.com/repos/nahi/httpclient/issues/events{/number}","events_url":"https://api.github.com/repos/nahi/httpclient/events","assignees_url":"https://api.github.com/repos/nahi/httpclient/assignees{/user}","branches_url":"https://api.github.com/repos/nahi/httpclient/branches{/branch}","tags_url":"https://api.github.com/repos/nahi/httpclient/tags","blobs_url":"https://api.github.com/repos/nahi/httpclient/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/nahi/httpclient/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/nahi/httpclient/git/refs{/sha}","trees_url":"https://api.github.com/repos/nahi/httpclient/git/trees{/sha}","statuses_url":"https://api.github.com/repos/nahi/httpclient/statuses/{sha}","languages_url":"https://api.github.com/repos/nahi/httpclient/languages","stargazers_url":"https://api.github.com/repos/nahi/httpclient/stargazers","contributors_url":"https://api.github.com/repos/nahi/httpclient/contributors","subscribers_url":"https://api.github.com/repos/nahi/httpclient/subscribers","subscription_url":"https://api.github.com/repos/nahi/httpclient/subscription","commits_url":"https://api.github.com/repos/nahi/httpclient/commits{/sha}","git_commits_url":"https://api.github.com/repos/nahi/httpclient/git/commits{/sha}","comments_url":"https://api.github.com/repos/nahi/httpclient/comments{/number}","issue_comment_url":"https://api.github.com/repos/nahi/httpclient/issues/comments/{number}","contents_url":"https://api.github.com/repos/nahi/httpclient/contents/{+path}","compare_url":"https://api.github.com/repos/nahi/httpclient/compare/{base}...{head}","merges_url":"https://api.github.com/repos/nahi/httpclient/merges","archive_url":"https://api.github.com/repos/nahi/httpclient/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/nahi/httpclient/downloads","issues_url":"https://api.github.com/repos/nahi/httpclient/issues{/number}","pulls_url":"https://api.github.com/repos/nahi/httpclient/pulls{/number}","milestones_url":"https://api.github.com/repos/nahi/httpclient/milestones{/number}","notifications_url":"https://api.github.com/repos/nahi/httpclient/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/nahi/httpclient/labels{/name}","releases_url":"https://api.github.com/repos/nahi/httpclient/releases{/id}","created_at":"2009-10-30T02:23:41Z","updated_at":"2015-01-01T07:02:08Z","pushed_at":"2015-01-01T07:02:08Z","git_url":"git://github.com/nahi/httpclient.git","ssh_url":"git@github.com:nahi/httpclient.git","clone_url":"https://github.com/nahi/httpclient.git","svn_url":"https://github.com/nahi/httpclient","homepage":"https://github.com/nahi/httpclient","size":2988,"stargazers_count":409,"watchers_count":409,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":122,"mirror_url":null,"open_issues_count":24,"forks":122,"open_issues":24,"watchers":409,"default_branch":"master"}},"base":{"label":"nahi:master","ref":"master","sha":"45b1045976d3a09b6491c69668491295c2f6ff08","user":{"login":"nahi","id":44209,"avatar_url":"https://avatars.githubusercontent.com/u/44209?v=3","gravatar_id":"","url":"https://api.github.com/users/nahi","html_url":"https://github.com/nahi","followers_url":"https://api.github.com/users/nahi/followers","following_url":"https://api.github.com/users/nahi/following{/other_user}","gists_url":"https://api.github.com/users/nahi/gists{/gist_id}","starred_url":"https://api.github.com/users/nahi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nahi/subscriptions","organizations_url":"https://api.github.com/users/nahi/orgs","repos_url":"https://api.github.com/users/nahi/repos","events_url":"https://api.github.com/users/nahi/events{/privacy}","received_events_url":"https://api.github.com/users/nahi/received_events","type":"User","site_admin":false},"repo":{"id":354875,"name":"httpclient","full_name":"nahi/httpclient","owner":{"login":"nahi","id":44209,"avatar_url":"https://avatars.githubusercontent.com/u/44209?v=3","gravatar_id":"","url":"https://api.github.com/users/nahi","html_url":"https://github.com/nahi","followers_url":"https://api.github.com/users/nahi/followers","following_url":"https://api.github.com/users/nahi/following{/other_user}","gists_url":"https://api.github.com/users/nahi/gists{/gist_id}","starred_url":"https://api.github.com/users/nahi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nahi/subscriptions","organizations_url":"https://api.github.com/users/nahi/orgs","repos_url":"https://api.github.com/users/nahi/repos","events_url":"https://api.github.com/users/nahi/events{/privacy}","received_events_url":"https://api.github.com/users/nahi/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/nahi/httpclient","description":"'httpclient' gives something like the functionality of libwww-perl (LWP) in Ruby.","fork":false,"url":"https://api.github.com/repos/nahi/httpclient","forks_url":"https://api.github.com/repos/nahi/httpclient/forks","keys_url":"https://api.github.com/repos/nahi/httpclient/keys{/key_id}","collaborators_url":"https://api.github.com/repos/nahi/httpclient/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/nahi/httpclient/teams","hooks_url":"https://api.github.com/repos/nahi/httpclient/hooks","issue_events_url":"https://api.github.com/repos/nahi/httpclient/issues/events{/number}","events_url":"https://api.github.com/repos/nahi/httpclient/events","assignees_url":"https://api.github.com/repos/nahi/httpclient/assignees{/user}","branches_url":"https://api.github.com/repos/nahi/httpclient/branches{/branch}","tags_url":"https://api.github.com/repos/nahi/httpclient/tags","blobs_url":"https://api.github.com/repos/nahi/httpclient/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/nahi/httpclient/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/nahi/httpclient/git/refs{/sha}","trees_url":"https://api.github.com/repos/nahi/httpclient/git/trees{/sha}","statuses_url":"https://api.github.com/repos/nahi/httpclient/statuses/{sha}","languages_url":"https://api.github.com/repos/nahi/httpclient/languages","stargazers_url":"https://api.github.com/repos/nahi/httpclient/stargazers","contributors_url":"https://api.github.com/repos/nahi/httpclient/contributors","subscribers_url":"https://api.github.com/repos/nahi/httpclient/subscribers","subscription_url":"https://api.github.com/repos/nahi/httpclient/subscription","commits_url":"https://api.github.com/repos/nahi/httpclient/commits{/sha}","git_commits_url":"https://api.github.com/repos/nahi/httpclient/git/commits{/sha}","comments_url":"https://api.github.com/repos/nahi/httpclient/comments{/number}","issue_comment_url":"https://api.github.com/repos/nahi/httpclient/issues/comments/{number}","contents_url":"https://api.github.com/repos/nahi/httpclient/contents/{+path}","compare_url":"https://api.github.com/repos/nahi/httpclient/compare/{base}...{head}","merges_url":"https://api.github.com/repos/nahi/httpclient/merges","archive_url":"https://api.github.com/repos/nahi/httpclient/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/nahi/httpclient/downloads","issues_url":"https://api.github.com/repos/nahi/httpclient/issues{/number}","pulls_url":"https://api.github.com/repos/nahi/httpclient/pulls{/number}","milestones_url":"https://api.github.com/repos/nahi/httpclient/milestones{/number}","notifications_url":"https://api.github.com/repos/nahi/httpclient/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/nahi/httpclient/labels{/name}","releases_url":"https://api.github.com/repos/nahi/httpclient/releases{/id}","created_at":"2009-10-30T02:23:41Z","updated_at":"2015-01-01T07:02:08Z","pushed_at":"2015-01-01T07:02:08Z","git_url":"git://github.com/nahi/httpclient.git","ssh_url":"git@github.com:nahi/httpclient.git","clone_url":"https://github.com/nahi/httpclient.git","svn_url":"https://github.com/nahi/httpclient","homepage":"https://github.com/nahi/httpclient","size":2988,"stargazers_count":409,"watchers_count":409,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":122,"mirror_url":null,"open_issues_count":24,"forks":122,"open_issues":24,"watchers":409,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/nahi/httpclient/pulls/239"},"html":{"href":"https://github.com/nahi/httpclient/pull/239"},"issue":{"href":"https://api.github.com/repos/nahi/httpclient/issues/239"},"comments":{"href":"https://api.github.com/repos/nahi/httpclient/issues/239/comments"},"review_comments":{"href":"https://api.github.com/repos/nahi/httpclient/pulls/239/comments"},"review_comment":{"href":"https://api.github.com/repos/nahi/httpclient/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/nahi/httpclient/pulls/239/commits"},"statuses":{"href":"https://api.github.com/repos/nahi/httpclient/statuses/7fc04933961ea3ea5a2aa595172ca7cd29a718f5"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":74,"deletions":6,"changed_files":2}},"public":true,"created_at":"2015-01-01T15:08:00Z"} +,{"id":"2489654777","type":"WatchEvent","actor":{"id":1911620,"login":"wangrenjun","gravatar_id":"","url":"https://api.github.com/users/wangrenjun","avatar_url":"https://avatars.githubusercontent.com/u/1911620?"},"repo":{"id":12971523,"name":"Stono/redis-twemproxy-agent","url":"https://api.github.com/repos/Stono/redis-twemproxy-agent"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:02Z"} +,{"id":"2489654779","type":"PushEvent","actor":{"id":217463,"login":"agupta666","gravatar_id":"","url":"https://api.github.com/users/agupta666","avatar_url":"https://avatars.githubusercontent.com/u/217463?"},"repo":{"id":28625145,"name":"agupta666/holodeck","url":"https://api.github.com/repos/agupta666/holodeck"},"payload":{"push_id":536865666,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"68fe1febf4a99b24c87163a868adc6e58b834b1f","before":"084d3823cb4d37265b3c7c5dc5c32a9c0666ecd8","commits":[{"sha":"68fe1febf4a99b24c87163a868adc6e58b834b1f","author":{"email":"b2bf23bdd3c8d6ab29113959883f349e3e4276e2@gmail.com","name":"Anirban Gupta"},"message":"download image fix","distinct":true,"url":"https://api.github.com/repos/agupta666/holodeck/commits/68fe1febf4a99b24c87163a868adc6e58b834b1f"}]},"public":true,"created_at":"2015-01-01T15:08:02Z"} +,{"id":"2489654781","type":"DeleteEvent","actor":{"id":5406350,"login":"ruLait","gravatar_id":"","url":"https://api.github.com/users/ruLait","avatar_url":"https://avatars.githubusercontent.com/u/5406350?"},"repo":{"id":23067268,"name":"ap-fm/app-vk","url":"https://api.github.com/repos/ap-fm/app-vk"},"payload":{"ref":"gh-pages","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:02Z","org":{"id":8478174,"login":"ap-fm","gravatar_id":"","url":"https://api.github.com/orgs/ap-fm","avatar_url":"https://avatars.githubusercontent.com/u/8478174?"}} +,{"id":"2489654789","type":"WatchEvent","actor":{"id":4489328,"login":"raphw","gravatar_id":"","url":"https://api.github.com/users/raphw","avatar_url":"https://avatars.githubusercontent.com/u/4489328?"},"repo":{"id":27756767,"name":"keithamus/npm-scripts-example","url":"https://api.github.com/repos/keithamus/npm-scripts-example"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:03Z"} +,{"id":"2489654790","type":"PushEvent","actor":{"id":553214,"login":"Tomcc","gravatar_id":"","url":"https://api.github.com/users/Tomcc","avatar_url":"https://avatars.githubusercontent.com/u/553214?"},"repo":{"id":21649308,"name":"Tomcc/dojo","url":"https://api.github.com/repos/Tomcc/dojo"},"payload":{"push_id":536865670,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"40a4e8cd0e7a9a143f47728b7c82da0e069165f5","before":"ebe7d69bc473e4fbdfd5ee918f16348444ff6a70","commits":[{"sha":"40a4e8cd0e7a9a143f47728b7c82da0e069165f5","author":{"email":"4519620bc2bd96e5a3df3f09d374c45f8a55a19b@gmail.com","name":"Tommaso Checchi"},"message":"added Mesh::uv for Vector","distinct":true,"url":"https://api.github.com/repos/Tomcc/dojo/commits/40a4e8cd0e7a9a143f47728b7c82da0e069165f5"}]},"public":true,"created_at":"2015-01-01T15:08:03Z"} +,{"id":"2489654791","type":"PullRequestEvent","actor":{"id":6938729,"login":"imyouxia","gravatar_id":"","url":"https://api.github.com/users/imyouxia","avatar_url":"https://avatars.githubusercontent.com/u/6938729?"},"repo":{"id":17737067,"name":"imyouxia/v2ex-login","url":"https://api.github.com/repos/imyouxia/v2ex-login"},"payload":{"action":"closed","number":2,"pull_request":{"url":"https://api.github.com/repos/imyouxia/v2ex-login/pulls/2","id":26643717,"html_url":"https://github.com/imyouxia/v2ex-login/pull/2","diff_url":"https://github.com/imyouxia/v2ex-login/pull/2.diff","patch_url":"https://github.com/imyouxia/v2ex-login/pull/2.patch","issue_url":"https://api.github.com/repos/imyouxia/v2ex-login/issues/2","number":2,"state":"closed","locked":false,"title":"Update v2ex_auto_login.py","user":{"login":"jimmysun","id":3285378,"avatar_url":"https://avatars.githubusercontent.com/u/3285378?v=3","gravatar_id":"","url":"https://api.github.com/users/jimmysun","html_url":"https://github.com/jimmysun","followers_url":"https://api.github.com/users/jimmysun/followers","following_url":"https://api.github.com/users/jimmysun/following{/other_user}","gists_url":"https://api.github.com/users/jimmysun/gists{/gist_id}","starred_url":"https://api.github.com/users/jimmysun/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jimmysun/subscriptions","organizations_url":"https://api.github.com/users/jimmysun/orgs","repos_url":"https://api.github.com/users/jimmysun/repos","events_url":"https://api.github.com/users/jimmysun/events{/privacy}","received_events_url":"https://api.github.com/users/jimmysun/received_events","type":"User","site_admin":false},"body":"Update the key words in the received cookies!","created_at":"2014-12-29T13:20:56Z","updated_at":"2015-01-01T15:08:03Z","closed_at":"2015-01-01T15:08:03Z","merged_at":"2015-01-01T15:08:03Z","merge_commit_sha":"8f060ce7de6b0459b2d35b938e330720a163c56e","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/imyouxia/v2ex-login/pulls/2/commits","review_comments_url":"https://api.github.com/repos/imyouxia/v2ex-login/pulls/2/comments","review_comment_url":"https://api.github.com/repos/imyouxia/v2ex-login/pulls/comments/{number}","comments_url":"https://api.github.com/repos/imyouxia/v2ex-login/issues/2/comments","statuses_url":"https://api.github.com/repos/imyouxia/v2ex-login/statuses/955395c48371fd6f733c9ff8484b1d1e8746c4f4","head":{"label":"jimmysun:patch-1","ref":"patch-1","sha":"955395c48371fd6f733c9ff8484b1d1e8746c4f4","user":{"login":"jimmysun","id":3285378,"avatar_url":"https://avatars.githubusercontent.com/u/3285378?v=3","gravatar_id":"","url":"https://api.github.com/users/jimmysun","html_url":"https://github.com/jimmysun","followers_url":"https://api.github.com/users/jimmysun/followers","following_url":"https://api.github.com/users/jimmysun/following{/other_user}","gists_url":"https://api.github.com/users/jimmysun/gists{/gist_id}","starred_url":"https://api.github.com/users/jimmysun/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jimmysun/subscriptions","organizations_url":"https://api.github.com/users/jimmysun/orgs","repos_url":"https://api.github.com/users/jimmysun/repos","events_url":"https://api.github.com/users/jimmysun/events{/privacy}","received_events_url":"https://api.github.com/users/jimmysun/received_events","type":"User","site_admin":false},"repo":{"id":28592898,"name":"v2ex-login","full_name":"jimmysun/v2ex-login","owner":{"login":"jimmysun","id":3285378,"avatar_url":"https://avatars.githubusercontent.com/u/3285378?v=3","gravatar_id":"","url":"https://api.github.com/users/jimmysun","html_url":"https://github.com/jimmysun","followers_url":"https://api.github.com/users/jimmysun/followers","following_url":"https://api.github.com/users/jimmysun/following{/other_user}","gists_url":"https://api.github.com/users/jimmysun/gists{/gist_id}","starred_url":"https://api.github.com/users/jimmysun/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jimmysun/subscriptions","organizations_url":"https://api.github.com/users/jimmysun/orgs","repos_url":"https://api.github.com/users/jimmysun/repos","events_url":"https://api.github.com/users/jimmysun/events{/privacy}","received_events_url":"https://api.github.com/users/jimmysun/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/jimmysun/v2ex-login","description":"V2EX自动登录并签到领取每日奖励脚本。","fork":true,"url":"https://api.github.com/repos/jimmysun/v2ex-login","forks_url":"https://api.github.com/repos/jimmysun/v2ex-login/forks","keys_url":"https://api.github.com/repos/jimmysun/v2ex-login/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jimmysun/v2ex-login/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jimmysun/v2ex-login/teams","hooks_url":"https://api.github.com/repos/jimmysun/v2ex-login/hooks","issue_events_url":"https://api.github.com/repos/jimmysun/v2ex-login/issues/events{/number}","events_url":"https://api.github.com/repos/jimmysun/v2ex-login/events","assignees_url":"https://api.github.com/repos/jimmysun/v2ex-login/assignees{/user}","branches_url":"https://api.github.com/repos/jimmysun/v2ex-login/branches{/branch}","tags_url":"https://api.github.com/repos/jimmysun/v2ex-login/tags","blobs_url":"https://api.github.com/repos/jimmysun/v2ex-login/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jimmysun/v2ex-login/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jimmysun/v2ex-login/git/refs{/sha}","trees_url":"https://api.github.com/repos/jimmysun/v2ex-login/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jimmysun/v2ex-login/statuses/{sha}","languages_url":"https://api.github.com/repos/jimmysun/v2ex-login/languages","stargazers_url":"https://api.github.com/repos/jimmysun/v2ex-login/stargazers","contributors_url":"https://api.github.com/repos/jimmysun/v2ex-login/contributors","subscribers_url":"https://api.github.com/repos/jimmysun/v2ex-login/subscribers","subscription_url":"https://api.github.com/repos/jimmysun/v2ex-login/subscription","commits_url":"https://api.github.com/repos/jimmysun/v2ex-login/commits{/sha}","git_commits_url":"https://api.github.com/repos/jimmysun/v2ex-login/git/commits{/sha}","comments_url":"https://api.github.com/repos/jimmysun/v2ex-login/comments{/number}","issue_comment_url":"https://api.github.com/repos/jimmysun/v2ex-login/issues/comments/{number}","contents_url":"https://api.github.com/repos/jimmysun/v2ex-login/contents/{+path}","compare_url":"https://api.github.com/repos/jimmysun/v2ex-login/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jimmysun/v2ex-login/merges","archive_url":"https://api.github.com/repos/jimmysun/v2ex-login/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jimmysun/v2ex-login/downloads","issues_url":"https://api.github.com/repos/jimmysun/v2ex-login/issues{/number}","pulls_url":"https://api.github.com/repos/jimmysun/v2ex-login/pulls{/number}","milestones_url":"https://api.github.com/repos/jimmysun/v2ex-login/milestones{/number}","notifications_url":"https://api.github.com/repos/jimmysun/v2ex-login/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jimmysun/v2ex-login/labels{/name}","releases_url":"https://api.github.com/repos/jimmysun/v2ex-login/releases{/id}","created_at":"2014-12-29T13:20:02Z","updated_at":"2014-12-29T13:20:02Z","pushed_at":"2014-12-29T13:20:51Z","git_url":"git://github.com/jimmysun/v2ex-login.git","ssh_url":"git@github.com:jimmysun/v2ex-login.git","clone_url":"https://github.com/jimmysun/v2ex-login.git","svn_url":"https://github.com/jimmysun/v2ex-login","homepage":null,"size":128,"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":"imyouxia:master","ref":"master","sha":"2c13a706e4ca2ee2fd6778d9b2fc8c374f9d1e37","user":{"login":"imyouxia","id":6938729,"avatar_url":"https://avatars.githubusercontent.com/u/6938729?v=3","gravatar_id":"","url":"https://api.github.com/users/imyouxia","html_url":"https://github.com/imyouxia","followers_url":"https://api.github.com/users/imyouxia/followers","following_url":"https://api.github.com/users/imyouxia/following{/other_user}","gists_url":"https://api.github.com/users/imyouxia/gists{/gist_id}","starred_url":"https://api.github.com/users/imyouxia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/imyouxia/subscriptions","organizations_url":"https://api.github.com/users/imyouxia/orgs","repos_url":"https://api.github.com/users/imyouxia/repos","events_url":"https://api.github.com/users/imyouxia/events{/privacy}","received_events_url":"https://api.github.com/users/imyouxia/received_events","type":"User","site_admin":false},"repo":{"id":17737067,"name":"v2ex-login","full_name":"imyouxia/v2ex-login","owner":{"login":"imyouxia","id":6938729,"avatar_url":"https://avatars.githubusercontent.com/u/6938729?v=3","gravatar_id":"","url":"https://api.github.com/users/imyouxia","html_url":"https://github.com/imyouxia","followers_url":"https://api.github.com/users/imyouxia/followers","following_url":"https://api.github.com/users/imyouxia/following{/other_user}","gists_url":"https://api.github.com/users/imyouxia/gists{/gist_id}","starred_url":"https://api.github.com/users/imyouxia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/imyouxia/subscriptions","organizations_url":"https://api.github.com/users/imyouxia/orgs","repos_url":"https://api.github.com/users/imyouxia/repos","events_url":"https://api.github.com/users/imyouxia/events{/privacy}","received_events_url":"https://api.github.com/users/imyouxia/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/imyouxia/v2ex-login","description":"V2EX自动登录并签到领取每日奖励脚本。","fork":false,"url":"https://api.github.com/repos/imyouxia/v2ex-login","forks_url":"https://api.github.com/repos/imyouxia/v2ex-login/forks","keys_url":"https://api.github.com/repos/imyouxia/v2ex-login/keys{/key_id}","collaborators_url":"https://api.github.com/repos/imyouxia/v2ex-login/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/imyouxia/v2ex-login/teams","hooks_url":"https://api.github.com/repos/imyouxia/v2ex-login/hooks","issue_events_url":"https://api.github.com/repos/imyouxia/v2ex-login/issues/events{/number}","events_url":"https://api.github.com/repos/imyouxia/v2ex-login/events","assignees_url":"https://api.github.com/repos/imyouxia/v2ex-login/assignees{/user}","branches_url":"https://api.github.com/repos/imyouxia/v2ex-login/branches{/branch}","tags_url":"https://api.github.com/repos/imyouxia/v2ex-login/tags","blobs_url":"https://api.github.com/repos/imyouxia/v2ex-login/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/imyouxia/v2ex-login/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/imyouxia/v2ex-login/git/refs{/sha}","trees_url":"https://api.github.com/repos/imyouxia/v2ex-login/git/trees{/sha}","statuses_url":"https://api.github.com/repos/imyouxia/v2ex-login/statuses/{sha}","languages_url":"https://api.github.com/repos/imyouxia/v2ex-login/languages","stargazers_url":"https://api.github.com/repos/imyouxia/v2ex-login/stargazers","contributors_url":"https://api.github.com/repos/imyouxia/v2ex-login/contributors","subscribers_url":"https://api.github.com/repos/imyouxia/v2ex-login/subscribers","subscription_url":"https://api.github.com/repos/imyouxia/v2ex-login/subscription","commits_url":"https://api.github.com/repos/imyouxia/v2ex-login/commits{/sha}","git_commits_url":"https://api.github.com/repos/imyouxia/v2ex-login/git/commits{/sha}","comments_url":"https://api.github.com/repos/imyouxia/v2ex-login/comments{/number}","issue_comment_url":"https://api.github.com/repos/imyouxia/v2ex-login/issues/comments/{number}","contents_url":"https://api.github.com/repos/imyouxia/v2ex-login/contents/{+path}","compare_url":"https://api.github.com/repos/imyouxia/v2ex-login/compare/{base}...{head}","merges_url":"https://api.github.com/repos/imyouxia/v2ex-login/merges","archive_url":"https://api.github.com/repos/imyouxia/v2ex-login/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/imyouxia/v2ex-login/downloads","issues_url":"https://api.github.com/repos/imyouxia/v2ex-login/issues{/number}","pulls_url":"https://api.github.com/repos/imyouxia/v2ex-login/pulls{/number}","milestones_url":"https://api.github.com/repos/imyouxia/v2ex-login/milestones{/number}","notifications_url":"https://api.github.com/repos/imyouxia/v2ex-login/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/imyouxia/v2ex-login/labels{/name}","releases_url":"https://api.github.com/repos/imyouxia/v2ex-login/releases{/id}","created_at":"2014-03-14T06:07:43Z","updated_at":"2014-05-03T09:33:21Z","pushed_at":"2015-01-01T15:08:03Z","git_url":"git://github.com/imyouxia/v2ex-login.git","ssh_url":"git@github.com:imyouxia/v2ex-login.git","clone_url":"https://github.com/imyouxia/v2ex-login.git","svn_url":"https://github.com/imyouxia/v2ex-login","homepage":null,"size":155,"stargazers_count":2,"watchers_count":2,"language":"Python","has_issues":true,"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":2,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/imyouxia/v2ex-login/pulls/2"},"html":{"href":"https://github.com/imyouxia/v2ex-login/pull/2"},"issue":{"href":"https://api.github.com/repos/imyouxia/v2ex-login/issues/2"},"comments":{"href":"https://api.github.com/repos/imyouxia/v2ex-login/issues/2/comments"},"review_comments":{"href":"https://api.github.com/repos/imyouxia/v2ex-login/pulls/2/comments"},"review_comment":{"href":"https://api.github.com/repos/imyouxia/v2ex-login/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/imyouxia/v2ex-login/pulls/2/commits"},"statuses":{"href":"https://api.github.com/repos/imyouxia/v2ex-login/statuses/955395c48371fd6f733c9ff8484b1d1e8746c4f4"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"imyouxia","id":6938729,"avatar_url":"https://avatars.githubusercontent.com/u/6938729?v=3","gravatar_id":"","url":"https://api.github.com/users/imyouxia","html_url":"https://github.com/imyouxia","followers_url":"https://api.github.com/users/imyouxia/followers","following_url":"https://api.github.com/users/imyouxia/following{/other_user}","gists_url":"https://api.github.com/users/imyouxia/gists{/gist_id}","starred_url":"https://api.github.com/users/imyouxia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/imyouxia/subscriptions","organizations_url":"https://api.github.com/users/imyouxia/orgs","repos_url":"https://api.github.com/users/imyouxia/repos","events_url":"https://api.github.com/users/imyouxia/events{/privacy}","received_events_url":"https://api.github.com/users/imyouxia/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":2,"deletions":2,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:08:03Z"} +,{"id":"2489654792","type":"PushEvent","actor":{"id":151506,"login":"raichoo","gravatar_id":"","url":"https://api.github.com/users/raichoo","avatar_url":"https://avatars.githubusercontent.com/u/151506?"},"repo":{"id":28595089,"name":"raichoo/31C3Slides","url":"https://api.github.com/repos/raichoo/31C3Slides"},"payload":{"push_id":536865671,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d1f3fed729b1cdbcba86e64a2e96ec53d8d5674a","before":"e1d5676e8c3e127763dcfbf303e739477f5031da","commits":[{"sha":"d1f3fed729b1cdbcba86e64a2e96ec53d8d5674a","author":{"email":"4830843a384703eb357e6b15d0f708c808cd2adf@googlemail.com","name":"raichoo"},"message":"added missing slide","distinct":true,"url":"https://api.github.com/repos/raichoo/31C3Slides/commits/d1f3fed729b1cdbcba86e64a2e96ec53d8d5674a"}]},"public":true,"created_at":"2015-01-01T15:08:03Z"} +,{"id":"2489654794","type":"ForkEvent","actor":{"id":10218336,"login":"remixod","gravatar_id":"","url":"https://api.github.com/users/remixod","avatar_url":"https://avatars.githubusercontent.com/u/10218336?"},"repo":{"id":16907474,"name":"kbengine/kbengine","url":"https://api.github.com/repos/kbengine/kbengine"},"payload":{"forkee":{"id":28688740,"name":"kbengine","full_name":"remixod/kbengine","owner":{"login":"remixod","id":10218336,"avatar_url":"https://avatars.githubusercontent.com/u/10218336?v=3","gravatar_id":"","url":"https://api.github.com/users/remixod","html_url":"https://github.com/remixod","followers_url":"https://api.github.com/users/remixod/followers","following_url":"https://api.github.com/users/remixod/following{/other_user}","gists_url":"https://api.github.com/users/remixod/gists{/gist_id}","starred_url":"https://api.github.com/users/remixod/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/remixod/subscriptions","organizations_url":"https://api.github.com/users/remixod/orgs","repos_url":"https://api.github.com/users/remixod/repos","events_url":"https://api.github.com/users/remixod/events{/privacy}","received_events_url":"https://api.github.com/users/remixod/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/remixod/kbengine","description":"A MMOG engine of server.","fork":true,"url":"https://api.github.com/repos/remixod/kbengine","forks_url":"https://api.github.com/repos/remixod/kbengine/forks","keys_url":"https://api.github.com/repos/remixod/kbengine/keys{/key_id}","collaborators_url":"https://api.github.com/repos/remixod/kbengine/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/remixod/kbengine/teams","hooks_url":"https://api.github.com/repos/remixod/kbengine/hooks","issue_events_url":"https://api.github.com/repos/remixod/kbengine/issues/events{/number}","events_url":"https://api.github.com/repos/remixod/kbengine/events","assignees_url":"https://api.github.com/repos/remixod/kbengine/assignees{/user}","branches_url":"https://api.github.com/repos/remixod/kbengine/branches{/branch}","tags_url":"https://api.github.com/repos/remixod/kbengine/tags","blobs_url":"https://api.github.com/repos/remixod/kbengine/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/remixod/kbengine/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/remixod/kbengine/git/refs{/sha}","trees_url":"https://api.github.com/repos/remixod/kbengine/git/trees{/sha}","statuses_url":"https://api.github.com/repos/remixod/kbengine/statuses/{sha}","languages_url":"https://api.github.com/repos/remixod/kbengine/languages","stargazers_url":"https://api.github.com/repos/remixod/kbengine/stargazers","contributors_url":"https://api.github.com/repos/remixod/kbengine/contributors","subscribers_url":"https://api.github.com/repos/remixod/kbengine/subscribers","subscription_url":"https://api.github.com/repos/remixod/kbengine/subscription","commits_url":"https://api.github.com/repos/remixod/kbengine/commits{/sha}","git_commits_url":"https://api.github.com/repos/remixod/kbengine/git/commits{/sha}","comments_url":"https://api.github.com/repos/remixod/kbengine/comments{/number}","issue_comment_url":"https://api.github.com/repos/remixod/kbengine/issues/comments/{number}","contents_url":"https://api.github.com/repos/remixod/kbengine/contents/{+path}","compare_url":"https://api.github.com/repos/remixod/kbengine/compare/{base}...{head}","merges_url":"https://api.github.com/repos/remixod/kbengine/merges","archive_url":"https://api.github.com/repos/remixod/kbengine/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/remixod/kbengine/downloads","issues_url":"https://api.github.com/repos/remixod/kbengine/issues{/number}","pulls_url":"https://api.github.com/repos/remixod/kbengine/pulls{/number}","milestones_url":"https://api.github.com/repos/remixod/kbengine/milestones{/number}","notifications_url":"https://api.github.com/repos/remixod/kbengine/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/remixod/kbengine/labels{/name}","releases_url":"https://api.github.com/repos/remixod/kbengine/releases{/id}","created_at":"2015-01-01T15:08:03Z","updated_at":"2015-01-01T01:36:30Z","pushed_at":"2015-01-01T01:35:00Z","git_url":"git://github.com/remixod/kbengine.git","ssh_url":"git@github.com:remixod/kbengine.git","clone_url":"https://github.com/remixod/kbengine.git","svn_url":"https://github.com/remixod/kbengine","homepage":"http://www.kbengine.org","size":252278,"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:08:03Z"} +,{"id":"2489654797","type":"CreateEvent","actor":{"id":306280,"login":"mzungu","gravatar_id":"","url":"https://api.github.com/users/mzungu","avatar_url":"https://avatars.githubusercontent.com/u/306280?"},"repo":{"id":28688391,"name":"mzungu/hillhouseangaston","url":"https://api.github.com/repos/mzungu/hillhouseangaston"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:03Z"} +,{"id":"2489654799","type":"PushEvent","actor":{"id":6938729,"login":"imyouxia","gravatar_id":"","url":"https://api.github.com/users/imyouxia","avatar_url":"https://avatars.githubusercontent.com/u/6938729?"},"repo":{"id":17737067,"name":"imyouxia/v2ex-login","url":"https://api.github.com/repos/imyouxia/v2ex-login"},"payload":{"push_id":536865675,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"1a1e7f90fccde549bcb0e321015a6c64ce94adb2","before":"2c13a706e4ca2ee2fd6778d9b2fc8c374f9d1e37","commits":[{"sha":"955395c48371fd6f733c9ff8484b1d1e8746c4f4","author":{"email":"c0c26a68fd0d46824d59a1ea52b42d5a2821b311@users.noreply.github.com","name":"Jimmy"},"message":"Update v2ex_auto_login.py\n\nUpdate the key words in the received cookies!","distinct":true,"url":"https://api.github.com/repos/imyouxia/v2ex-login/commits/955395c48371fd6f733c9ff8484b1d1e8746c4f4"},{"sha":"1a1e7f90fccde549bcb0e321015a6c64ce94adb2","author":{"email":"0ce5cffd0e4a924be650f4b81d1e0c0989d99628@163.com","name":"imyouxia"},"message":"Merge pull request #2 from jimmysun/patch-1\n\nUpdate v2ex_auto_login.py","distinct":true,"url":"https://api.github.com/repos/imyouxia/v2ex-login/commits/1a1e7f90fccde549bcb0e321015a6c64ce94adb2"}]},"public":true,"created_at":"2015-01-01T15:08:03Z"} +,{"id":"2489654800","type":"PushEvent","actor":{"id":71073,"login":"saw303","gravatar_id":"","url":"https://api.github.com/users/saw303","avatar_url":"https://avatars.githubusercontent.com/u/71073?"},"repo":{"id":4883030,"name":"saw303/dox","url":"https://api.github.com/repos/saw303/dox"},"payload":{"push_id":536865674,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"33c97170e6983cfdf3d98e4a5927aa6c9ce1e60c","before":"df9f52d2bab161e4f4b2dd8580619482bc546f60","commits":[{"sha":"33c97170e6983cfdf3d98e4a5927aa6c9ce1e60c","author":{"email":"44b116d55893b98dd695d28e6afa06165dc194cf@gmail.com","name":"Silvio Wangler"},"message":"Upgraded deps","distinct":true,"url":"https://api.github.com/repos/saw303/dox/commits/33c97170e6983cfdf3d98e4a5927aa6c9ce1e60c"}]},"public":true,"created_at":"2015-01-01T15:08:03Z"} +,{"id":"2489654802","type":"WatchEvent","actor":{"id":1911620,"login":"wangrenjun","gravatar_id":"","url":"https://api.github.com/users/wangrenjun","avatar_url":"https://avatars.githubusercontent.com/u/1911620?"},"repo":{"id":8440090,"name":"matschaffer/redis_twemproxy_agent","url":"https://api.github.com/repos/matschaffer/redis_twemproxy_agent"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:04Z"} +,{"id":"2489654805","type":"IssueCommentEvent","actor":{"id":15074,"login":"dpw","gravatar_id":"","url":"https://api.github.com/users/dpw","avatar_url":"https://avatars.githubusercontent.com/u/15074?"},"repo":{"id":23059575,"name":"zettio/weave","url":"https://api.github.com/repos/zettio/weave"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/zettio/weave/issues/309","labels_url":"https://api.github.com/repos/zettio/weave/issues/309/labels{/name}","comments_url":"https://api.github.com/repos/zettio/weave/issues/309/comments","events_url":"https://api.github.com/repos/zettio/weave/issues/309/events","html_url":"https://github.com/zettio/weave/pull/309","id":53218940,"number":309,"title":"eliminate dependency on ethtool and conntrack on host","user":{"login":"rade","id":109109,"avatar_url":"https://avatars.githubusercontent.com/u/109109?v=3","gravatar_id":"","url":"https://api.github.com/users/rade","html_url":"https://github.com/rade","followers_url":"https://api.github.com/users/rade/followers","following_url":"https://api.github.com/users/rade/following{/other_user}","gists_url":"https://api.github.com/users/rade/gists{/gist_id}","starred_url":"https://api.github.com/users/rade/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rade/subscriptions","organizations_url":"https://api.github.com/users/rade/orgs","repos_url":"https://api.github.com/users/rade/repos","events_url":"https://api.github.com/users/rade/events{/privacy}","received_events_url":"https://api.github.com/users/rade/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/zettio/weave/labels/in+progress","name":"in progress","color":"ededed"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T12:38:50Z","updated_at":"2015-01-01T15:08:04Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/zettio/weave/pulls/309","html_url":"https://github.com/zettio/weave/pull/309","diff_url":"https://github.com/zettio/weave/pull/309.diff","patch_url":"https://github.com/zettio/weave/pull/309.patch"},"body":"We package ethtool and conntrack into a `weavetools` image and run that as a short-lived container with `--privileged` and `--net=host` (or, in one case `--net=container:`).\r\n\r\nWe use a plain ubuntu container as a build environment, so a) we don't require onerous tooling on the build host, and b) don't pollute the build host with build artefacts. The latter arise because building conntrack requires 'global' installation of its dependencies.\r\n\r\nCloses #101."},"comment":{"url":"https://api.github.com/repos/zettio/weave/issues/comments/68488645","html_url":"https://github.com/zettio/weave/pull/309#issuecomment-68488645","issue_url":"https://api.github.com/repos/zettio/weave/issues/309","id":68488645,"user":{"login":"dpw","id":15074,"avatar_url":"https://avatars.githubusercontent.com/u/15074?v=3","gravatar_id":"","url":"https://api.github.com/users/dpw","html_url":"https://github.com/dpw","followers_url":"https://api.github.com/users/dpw/followers","following_url":"https://api.github.com/users/dpw/following{/other_user}","gists_url":"https://api.github.com/users/dpw/gists{/gist_id}","starred_url":"https://api.github.com/users/dpw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dpw/subscriptions","organizations_url":"https://api.github.com/users/dpw/orgs","repos_url":"https://api.github.com/users/dpw/repos","events_url":"https://api.github.com/users/dpw/events{/privacy}","received_events_url":"https://api.github.com/users/dpw/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:08:04Z","updated_at":"2015-01-01T15:08:04Z","body":"> The main problem with the current approach is that the weavetools build is quite time-consuming - about 2m30s vs less than 1s for weave+weavedns.\r\n> \r\n> That price is usually only paid once though. Unless one does a lot of 'clean' builds. In which case moving the weavetools arefacts from the 'clean' target to a different target ('distclean'?) would be the easiest fix.\r\n\r\nDoes anyone do 'make clean' often enough to make this a problem? 'distclean' is probably not worth it unless/until someone screams.\r\n\r\n> There are some alternatives...\r\n> \r\n> The weavetools build is dominated by the setting up of the build environment. We could pay that price just once, in one of the following ways...\r\n> \r\n> Firstly, we could use the host as the build environment. The problem with that is twofold. Firstly, it creates some more build dependencies than we currently have. Nothing too onerous, but that may change if we add more stuff to weavetools. Secondly, I can only get conntrack to build by installing its dependencies 'globally', which is a showstopper. The conntrack build uses pkgconfig to locate dependencies. In theory it should be possible to perform a completely localised build even then, but poking that hideously complicated build tool chain for a few hours proved fruitless.\r\n\r\nBuilding weave on fedora is awkward, and I probably wouldn't recommend it to anyone else, but I do it. So I would not welcome anything that makes it harder than it already is.\r\n\r\n> Secondly, we could publish a weavetools-build image containing the build tool chain. We would then perform builds in that image rather than the current plain ubuntu image. We could have a separate github repo with the Dockerfile for that image and use Dockerhub's automatic builds to get it onto Dockerhub. The main issue I see with this approach is risk of the weavetools-build image getting out of sync with what the weavetool build needs, especially when attempting to rebuild an older weave release. I reckon the risk is quite low - changes we make to weavetools-build would likely be backward compatible - but it is non-zero. Also, any additions to weavetools that have new build dependencies would require commits across two repositories.\r\n\r\nSeems like overkill, at least for now. If we were to go down this route, maybe we could think about containerizing the whole weave build (of interest to me due to the issues building on fedora, but it would also help with build reproducibility).\r\n\r\n> ## duplication in Makefile\r\n> \r\n> There is some annoying duplication in the Makefile. The rules for building the three images are nearly identical. The main obstacle to refactoring them into one rule is that the image name cannot be derived from the directory name and vice versa, i.e. weave != weaver. We can't really change that. I am sure we could still remove the duplication, but it may not actually yield much a reduction in code.\r\n\r\nIt will be easier to use define/endef and $(eval $(call ...)) than to contort those into one rule.\r\n\r\n"}},"public":true,"created_at":"2015-01-01T15:08:04Z","org":{"id":8475709,"login":"zettio","gravatar_id":"","url":"https://api.github.com/orgs/zettio","avatar_url":"https://avatars.githubusercontent.com/u/8475709?"}} +,{"id":"2489654807","type":"PushEvent","actor":{"id":411562,"login":"lordbron","gravatar_id":"","url":"https://api.github.com/users/lordbron","avatar_url":"https://avatars.githubusercontent.com/u/411562?"},"repo":{"id":28399271,"name":"lordbron/montage-training","url":"https://api.github.com/repos/lordbron/montage-training"},"payload":{"push_id":536865678,"size":1,"distinct_size":1,"ref":"refs/heads/montagestudio/lordbron/master","head":"36f0e7654e35ba8c4b60450cca9f73f08b92ddb7","before":"a22b29e9ca2104994bfed5bda4e7bfaeb538ef12","commits":[{"sha":"36f0e7654e35ba8c4b60450cca9f73f08b92ddb7","author":{"email":"1505422b2465e9a84f6fdfaa161078890c593f06","name":"lordbron"},"message":"Update component ui/main.reel/","distinct":true,"url":"https://api.github.com/repos/lordbron/montage-training/commits/36f0e7654e35ba8c4b60450cca9f73f08b92ddb7"}]},"public":true,"created_at":"2015-01-01T15:08:04Z"} +,{"id":"2489654809","type":"PushEvent","actor":{"id":2964928,"login":"taylorhxu","gravatar_id":"","url":"https://api.github.com/users/taylorhxu","avatar_url":"https://avatars.githubusercontent.com/u/2964928?"},"repo":{"id":25008698,"name":"taylorhxu/taylorhxu.github.io","url":"https://api.github.com/repos/taylorhxu/taylorhxu.github.io"},"payload":{"push_id":536865679,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9c236a65ffc25a2cfcec92f97dc12cdcf57fb317","before":"a2853c0256efde79b82d18d874c836684be2da08","commits":[{"sha":"9c236a65ffc25a2cfcec92f97dc12cdcf57fb317","author":{"email":"bbaab3af5605ab26fe8b9502a6ab51a673b35a8b@gmail.com","name":"Taylor Xu"},"message":"br","distinct":true,"url":"https://api.github.com/repos/taylorhxu/taylorhxu.github.io/commits/9c236a65ffc25a2cfcec92f97dc12cdcf57fb317"}]},"public":true,"created_at":"2015-01-01T15:08:04Z"} +,{"id":"2489654810","type":"PushEvent","actor":{"id":451918,"login":"juniwalk","gravatar_id":"","url":"https://api.github.com/users/juniwalk","avatar_url":"https://avatars.githubusercontent.com/u/451918?"},"repo":{"id":28644183,"name":"juniwalk/OAuth","url":"https://api.github.com/repos/juniwalk/OAuth"},"payload":{"push_id":536865680,"size":4,"distinct_size":4,"ref":"refs/heads/master","head":"3666b5d5b8ee43153feb515ae7c6007399ceba5a","before":"cc877d299ab178a820faff03795d426ad457e11b","commits":[{"sha":"4e29966b8b7653a6ca147551772ba102a27491d6","author":{"email":"d5b9a5b2fc339c3b5f79cfadaedc4814b7ad2314@outlook.cz","name":"Martin Procházka"},"message":"MOD: Simplified IClient implementation\n\nCombined `ICLient::get( )` and `IClient::post( )` methods into\n`ICLient::execute( )`.","distinct":true,"url":"https://api.github.com/repos/juniwalk/OAuth/commits/4e29966b8b7653a6ca147551772ba102a27491d6"},{"sha":"c7e4f65f8ff4deaa0f736a1d7b85ad1a8f27f830","author":{"email":"d5b9a5b2fc339c3b5f79cfadaedc4814b7ad2314@outlook.cz","name":"Martin Procházka"},"message":"FIX: Documentation\n\nFixed documentation of IClient interface.","distinct":true,"url":"https://api.github.com/repos/juniwalk/OAuth/commits/c7e4f65f8ff4deaa0f736a1d7b85ad1a8f27f830"},{"sha":"33cbc33978298afd0886b1a8d7c90732e0c53c96","author":{"email":"d5b9a5b2fc339c3b5f79cfadaedc4814b7ad2314@outlook.cz","name":"Martin Procházka"},"message":"FIX: Fixed implementation of IClient in BaseClient","distinct":true,"url":"https://api.github.com/repos/juniwalk/OAuth/commits/33cbc33978298afd0886b1a8d7c90732e0c53c96"},{"sha":"3666b5d5b8ee43153feb515ae7c6007399ceba5a","author":{"email":"d5b9a5b2fc339c3b5f79cfadaedc4814b7ad2314@outlook.cz","name":"Martin Procházka"},"message":"FIX: Fixed implementation of IClient in Curl client","distinct":true,"url":"https://api.github.com/repos/juniwalk/OAuth/commits/3666b5d5b8ee43153feb515ae7c6007399ceba5a"}]},"public":true,"created_at":"2015-01-01T15:08:05Z"} +,{"id":"2489654811","type":"PushEvent","actor":{"id":4711226,"login":"masanori840816","gravatar_id":"","url":"https://api.github.com/users/masanori840816","avatar_url":"https://avatars.githubusercontent.com/u/4711226?"},"repo":{"id":28661584,"name":"masanori840816/sntVaguely","url":"https://api.github.com/repos/masanori840816/sntVaguely"},"payload":{"push_id":536865681,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"dc9fd300af7a9a1ec0f1a91cb43f43c4db297870","before":"889819766f0857fea5efffdd607417ef4faa9597","commits":[{"sha":"dc9fd300af7a9a1ec0f1a91cb43f43c4db297870","author":{"email":"715e23d7befa5b62c7c0ce76cd3501dbdd0ba7a4@gmail.com","name":"masanori_msl"},"message":"fixed a pager's bug about tag searching\n\n* Tag検索の結果で、投稿数にかかわらず全投稿数分のページャーが表示されていたバグを修正。\n* 結果が1ページ以内の場合はページャーからリンクを外すよう修正","distinct":true,"url":"https://api.github.com/repos/masanori840816/sntVaguely/commits/dc9fd300af7a9a1ec0f1a91cb43f43c4db297870"}]},"public":true,"created_at":"2015-01-01T15:08:05Z"} +,{"id":"2489654815","type":"PushEvent","actor":{"id":2560782,"login":"ericbusboom","gravatar_id":"","url":"https://api.github.com/users/ericbusboom","avatar_url":"https://avatars.githubusercontent.com/u/2560782?"},"repo":{"id":24311594,"name":"CivicKnowledge/ambry","url":"https://api.github.com/repos/CivicKnowledge/ambry"},"payload":{"push_id":536865684,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"d9f3940ef31f8324b93b6d1e92a489569d46c512","before":"a5a5da5f1e87ef7bcd43edb1f37f1fe187471e79","commits":[{"sha":"d9f3940ef31f8324b93b6d1e92a489569d46c512","author":{"email":"96f164ad4d9b2b0dacf8ebee2bb1eeb3aa69adf1@clarinova.com","name":"Eric Busboom"},"message":".","distinct":true,"url":"https://api.github.com/repos/CivicKnowledge/ambry/commits/d9f3940ef31f8324b93b6d1e92a489569d46c512"}]},"public":true,"created_at":"2015-01-01T15:08:05Z","org":{"id":6617988,"login":"CivicKnowledge","gravatar_id":"","url":"https://api.github.com/orgs/CivicKnowledge","avatar_url":"https://avatars.githubusercontent.com/u/6617988?"}} +,{"id":"2489654818","type":"WatchEvent","actor":{"id":5724842,"login":"robinwit","gravatar_id":"","url":"https://api.github.com/users/robinwit","avatar_url":"https://avatars.githubusercontent.com/u/5724842?"},"repo":{"id":15150300,"name":"tobiasahlin/SpinKit","url":"https://api.github.com/repos/tobiasahlin/SpinKit"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:06Z"} +,{"id":"2489654817","type":"PullRequestReviewCommentEvent","actor":{"id":459648,"login":"samsonasik","gravatar_id":"","url":"https://api.github.com/users/samsonasik","avatar_url":"https://avatars.githubusercontent.com/u/459648?"},"repo":{"id":702550,"name":"zendframework/zf2","url":"https://api.github.com/repos/zendframework/zf2"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/22400114","id":22400114,"diff_hunk":"@@ -0,0 +1,59 @@\n+\r\nwrote:\r\n\r\n> While we can easily utilize the modules, I'm a bit afraid of the new\r\n> mission makers, as they will most likely have the whole 31-39 thing happen\r\n> and people bitching in the AAR. We could update the mission.sqm to include\r\n> these preplaced, but I'm not sure if thats a good idea at all.\r\n>\r\n> Stick with what we got for now i guess?\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:08:14Z"} +,{"id":"2489654886","type":"IssueCommentEvent","actor":{"id":638940,"login":"srirams","gravatar_id":"","url":"https://api.github.com/users/srirams","avatar_url":"https://avatars.githubusercontent.com/u/638940?"},"repo":{"id":8659145,"name":"MizzleDK/Mizuu","url":"https://api.github.com/repos/MizzleDK/Mizuu"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/MizzleDK/Mizuu/issues/498","labels_url":"https://api.github.com/repos/MizzleDK/Mizuu/issues/498/labels{/name}","comments_url":"https://api.github.com/repos/MizzleDK/Mizuu/issues/498/comments","events_url":"https://api.github.com/repos/MizzleDK/Mizuu/issues/498/events","html_url":"https://github.com/MizzleDK/Mizuu/issues/498","id":53212201,"number":498,"title":"use smb poster / backdrop","user":{"login":"srirams","id":638940,"avatar_url":"https://avatars.githubusercontent.com/u/638940?v=3","gravatar_id":"","url":"https://api.github.com/users/srirams","html_url":"https://github.com/srirams","followers_url":"https://api.github.com/users/srirams/followers","following_url":"https://api.github.com/users/srirams/following{/other_user}","gists_url":"https://api.github.com/users/srirams/gists{/gist_id}","starred_url":"https://api.github.com/users/srirams/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/srirams/subscriptions","organizations_url":"https://api.github.com/users/srirams/orgs","repos_url":"https://api.github.com/users/srirams/repos","events_url":"https://api.github.com/users/srirams/events{/privacy}","received_events_url":"https://api.github.com/users/srirams/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2015-01-01T03:32:33Z","updated_at":"2015-01-01T15:08:14Z","closed_at":null,"body":"I have all my artwork stored locally (smb) and would rather like to use those. Is this possible? I took a quick look at the source but am not sure how the caching works (in addition the locally stored artwork is in a higher res and would probably need to be down scaled before caching...)"},"comment":{"url":"https://api.github.com/repos/MizzleDK/Mizuu/issues/comments/68488650","html_url":"https://github.com/MizzleDK/Mizuu/issues/498#issuecomment-68488650","issue_url":"https://api.github.com/repos/MizzleDK/Mizuu/issues/498","id":68488650,"user":{"login":"srirams","id":638940,"avatar_url":"https://avatars.githubusercontent.com/u/638940?v=3","gravatar_id":"","url":"https://api.github.com/users/srirams","html_url":"https://github.com/srirams","followers_url":"https://api.github.com/users/srirams/followers","following_url":"https://api.github.com/users/srirams/following{/other_user}","gists_url":"https://api.github.com/users/srirams/gists{/gist_id}","starred_url":"https://api.github.com/users/srirams/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/srirams/subscriptions","organizations_url":"https://api.github.com/users/srirams/orgs","repos_url":"https://api.github.com/users/srirams/repos","events_url":"https://api.github.com/users/srirams/events{/privacy}","received_events_url":"https://api.github.com/users/srirams/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:08:14Z","updated_at":"2015-01-01T15:08:14Z","body":"I can't seem to get that to work either. I have a folder.jpg in the movie folder in the correct size and ratio, but it's not used.\r\n\r\nI can't seem to find the code path for getting the image either."}},"public":true,"created_at":"2015-01-01T15:08:14Z"} +,{"id":"2489654887","type":"PullRequestEvent","actor":{"id":125978,"login":"hanw","gravatar_id":"","url":"https://api.github.com/users/hanw","avatar_url":"https://avatars.githubusercontent.com/u/125978?"},"repo":{"id":24153637,"name":"cambridgehackers/connectal","url":"https://api.github.com/repos/cambridgehackers/connectal"},"payload":{"action":"opened","number":13,"pull_request":{"url":"https://api.github.com/repos/cambridgehackers/connectal/pulls/13","id":26743833,"html_url":"https://github.com/cambridgehackers/connectal/pull/13","diff_url":"https://github.com/cambridgehackers/connectal/pull/13.diff","patch_url":"https://github.com/cambridgehackers/connectal/pull/13.patch","issue_url":"https://api.github.com/repos/cambridgehackers/connectal/issues/13","number":13,"state":"open","locked":false,"title":"Added PcieEndpoingS5.bsv","user":{"login":"hanw","id":125978,"avatar_url":"https://avatars.githubusercontent.com/u/125978?v=3","gravatar_id":"","url":"https://api.github.com/users/hanw","html_url":"https://github.com/hanw","followers_url":"https://api.github.com/users/hanw/followers","following_url":"https://api.github.com/users/hanw/following{/other_user}","gists_url":"https://api.github.com/users/hanw/gists{/gist_id}","starred_url":"https://api.github.com/users/hanw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hanw/subscriptions","organizations_url":"https://api.github.com/users/hanw/orgs","repos_url":"https://api.github.com/users/hanw/repos","events_url":"https://api.github.com/users/hanw/events{/privacy}","received_events_url":"https://api.github.com/users/hanw/received_events","type":"User","site_admin":false},"body":"- Connected Avalon_St interface to TLP#(16)\r\n- Connected Reset controller\r\n- Connected PcieWrapper\r\n- Delete PcieEndpointAlteraLib.bsv, merged code with PcieEndpointS5Lib.bsv","created_at":"2015-01-01T15:08:15Z","updated_at":"2015-01-01T15:08:15Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/cambridgehackers/connectal/pulls/13/commits","review_comments_url":"https://api.github.com/repos/cambridgehackers/connectal/pulls/13/comments","review_comment_url":"https://api.github.com/repos/cambridgehackers/connectal/pulls/comments/{number}","comments_url":"https://api.github.com/repos/cambridgehackers/connectal/issues/13/comments","statuses_url":"https://api.github.com/repos/cambridgehackers/connectal/statuses/5f00baca87c1f70eff9fc855a231ad50eb7ae4bc","head":{"label":"hanw:master","ref":"master","sha":"5f00baca87c1f70eff9fc855a231ad50eb7ae4bc","user":{"login":"hanw","id":125978,"avatar_url":"https://avatars.githubusercontent.com/u/125978?v=3","gravatar_id":"","url":"https://api.github.com/users/hanw","html_url":"https://github.com/hanw","followers_url":"https://api.github.com/users/hanw/followers","following_url":"https://api.github.com/users/hanw/following{/other_user}","gists_url":"https://api.github.com/users/hanw/gists{/gist_id}","starred_url":"https://api.github.com/users/hanw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hanw/subscriptions","organizations_url":"https://api.github.com/users/hanw/orgs","repos_url":"https://api.github.com/users/hanw/repos","events_url":"https://api.github.com/users/hanw/events{/privacy}","received_events_url":"https://api.github.com/users/hanw/received_events","type":"User","site_admin":false},"repo":{"id":28099055,"name":"connectal","full_name":"hanw/connectal","owner":{"login":"hanw","id":125978,"avatar_url":"https://avatars.githubusercontent.com/u/125978?v=3","gravatar_id":"","url":"https://api.github.com/users/hanw","html_url":"https://github.com/hanw","followers_url":"https://api.github.com/users/hanw/followers","following_url":"https://api.github.com/users/hanw/following{/other_user}","gists_url":"https://api.github.com/users/hanw/gists{/gist_id}","starred_url":"https://api.github.com/users/hanw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hanw/subscriptions","organizations_url":"https://api.github.com/users/hanw/orgs","repos_url":"https://api.github.com/users/hanw/repos","events_url":"https://api.github.com/users/hanw/events{/privacy}","received_events_url":"https://api.github.com/users/hanw/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/hanw/connectal","description":"Connectal is a framework for software-driven hardware development.","fork":true,"url":"https://api.github.com/repos/hanw/connectal","forks_url":"https://api.github.com/repos/hanw/connectal/forks","keys_url":"https://api.github.com/repos/hanw/connectal/keys{/key_id}","collaborators_url":"https://api.github.com/repos/hanw/connectal/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/hanw/connectal/teams","hooks_url":"https://api.github.com/repos/hanw/connectal/hooks","issue_events_url":"https://api.github.com/repos/hanw/connectal/issues/events{/number}","events_url":"https://api.github.com/repos/hanw/connectal/events","assignees_url":"https://api.github.com/repos/hanw/connectal/assignees{/user}","branches_url":"https://api.github.com/repos/hanw/connectal/branches{/branch}","tags_url":"https://api.github.com/repos/hanw/connectal/tags","blobs_url":"https://api.github.com/repos/hanw/connectal/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/hanw/connectal/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/hanw/connectal/git/refs{/sha}","trees_url":"https://api.github.com/repos/hanw/connectal/git/trees{/sha}","statuses_url":"https://api.github.com/repos/hanw/connectal/statuses/{sha}","languages_url":"https://api.github.com/repos/hanw/connectal/languages","stargazers_url":"https://api.github.com/repos/hanw/connectal/stargazers","contributors_url":"https://api.github.com/repos/hanw/connectal/contributors","subscribers_url":"https://api.github.com/repos/hanw/connectal/subscribers","subscription_url":"https://api.github.com/repos/hanw/connectal/subscription","commits_url":"https://api.github.com/repos/hanw/connectal/commits{/sha}","git_commits_url":"https://api.github.com/repos/hanw/connectal/git/commits{/sha}","comments_url":"https://api.github.com/repos/hanw/connectal/comments{/number}","issue_comment_url":"https://api.github.com/repos/hanw/connectal/issues/comments/{number}","contents_url":"https://api.github.com/repos/hanw/connectal/contents/{+path}","compare_url":"https://api.github.com/repos/hanw/connectal/compare/{base}...{head}","merges_url":"https://api.github.com/repos/hanw/connectal/merges","archive_url":"https://api.github.com/repos/hanw/connectal/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/hanw/connectal/downloads","issues_url":"https://api.github.com/repos/hanw/connectal/issues{/number}","pulls_url":"https://api.github.com/repos/hanw/connectal/pulls{/number}","milestones_url":"https://api.github.com/repos/hanw/connectal/milestones{/number}","notifications_url":"https://api.github.com/repos/hanw/connectal/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/hanw/connectal/labels{/name}","releases_url":"https://api.github.com/repos/hanw/connectal/releases{/id}","created_at":"2014-12-16T17:55:40Z","updated_at":"2015-01-01T07:02:13Z","pushed_at":"2015-01-01T07:02:13Z","git_url":"git://github.com/hanw/connectal.git","ssh_url":"git@github.com:hanw/connectal.git","clone_url":"https://github.com/hanw/connectal.git","svn_url":"https://github.com/hanw/connectal","homepage":"","size":8100,"stargazers_count":0,"watchers_count":0,"language":"Bluespec","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":"cambridgehackers:master","ref":"master","sha":"d5de1714e8891f40677d9e801bccb17a19e23fff","user":{"login":"cambridgehackers","id":2278850,"avatar_url":"https://avatars.githubusercontent.com/u/2278850?v=3","gravatar_id":"","url":"https://api.github.com/users/cambridgehackers","html_url":"https://github.com/cambridgehackers","followers_url":"https://api.github.com/users/cambridgehackers/followers","following_url":"https://api.github.com/users/cambridgehackers/following{/other_user}","gists_url":"https://api.github.com/users/cambridgehackers/gists{/gist_id}","starred_url":"https://api.github.com/users/cambridgehackers/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cambridgehackers/subscriptions","organizations_url":"https://api.github.com/users/cambridgehackers/orgs","repos_url":"https://api.github.com/users/cambridgehackers/repos","events_url":"https://api.github.com/users/cambridgehackers/events{/privacy}","received_events_url":"https://api.github.com/users/cambridgehackers/received_events","type":"Organization","site_admin":false},"repo":{"id":24153637,"name":"connectal","full_name":"cambridgehackers/connectal","owner":{"login":"cambridgehackers","id":2278850,"avatar_url":"https://avatars.githubusercontent.com/u/2278850?v=3","gravatar_id":"","url":"https://api.github.com/users/cambridgehackers","html_url":"https://github.com/cambridgehackers","followers_url":"https://api.github.com/users/cambridgehackers/followers","following_url":"https://api.github.com/users/cambridgehackers/following{/other_user}","gists_url":"https://api.github.com/users/cambridgehackers/gists{/gist_id}","starred_url":"https://api.github.com/users/cambridgehackers/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cambridgehackers/subscriptions","organizations_url":"https://api.github.com/users/cambridgehackers/orgs","repos_url":"https://api.github.com/users/cambridgehackers/repos","events_url":"https://api.github.com/users/cambridgehackers/events{/privacy}","received_events_url":"https://api.github.com/users/cambridgehackers/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/cambridgehackers/connectal","description":"Connectal is a framework for software-driven hardware development.","fork":false,"url":"https://api.github.com/repos/cambridgehackers/connectal","forks_url":"https://api.github.com/repos/cambridgehackers/connectal/forks","keys_url":"https://api.github.com/repos/cambridgehackers/connectal/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cambridgehackers/connectal/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cambridgehackers/connectal/teams","hooks_url":"https://api.github.com/repos/cambridgehackers/connectal/hooks","issue_events_url":"https://api.github.com/repos/cambridgehackers/connectal/issues/events{/number}","events_url":"https://api.github.com/repos/cambridgehackers/connectal/events","assignees_url":"https://api.github.com/repos/cambridgehackers/connectal/assignees{/user}","branches_url":"https://api.github.com/repos/cambridgehackers/connectal/branches{/branch}","tags_url":"https://api.github.com/repos/cambridgehackers/connectal/tags","blobs_url":"https://api.github.com/repos/cambridgehackers/connectal/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cambridgehackers/connectal/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cambridgehackers/connectal/git/refs{/sha}","trees_url":"https://api.github.com/repos/cambridgehackers/connectal/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cambridgehackers/connectal/statuses/{sha}","languages_url":"https://api.github.com/repos/cambridgehackers/connectal/languages","stargazers_url":"https://api.github.com/repos/cambridgehackers/connectal/stargazers","contributors_url":"https://api.github.com/repos/cambridgehackers/connectal/contributors","subscribers_url":"https://api.github.com/repos/cambridgehackers/connectal/subscribers","subscription_url":"https://api.github.com/repos/cambridgehackers/connectal/subscription","commits_url":"https://api.github.com/repos/cambridgehackers/connectal/commits{/sha}","git_commits_url":"https://api.github.com/repos/cambridgehackers/connectal/git/commits{/sha}","comments_url":"https://api.github.com/repos/cambridgehackers/connectal/comments{/number}","issue_comment_url":"https://api.github.com/repos/cambridgehackers/connectal/issues/comments/{number}","contents_url":"https://api.github.com/repos/cambridgehackers/connectal/contents/{+path}","compare_url":"https://api.github.com/repos/cambridgehackers/connectal/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cambridgehackers/connectal/merges","archive_url":"https://api.github.com/repos/cambridgehackers/connectal/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cambridgehackers/connectal/downloads","issues_url":"https://api.github.com/repos/cambridgehackers/connectal/issues{/number}","pulls_url":"https://api.github.com/repos/cambridgehackers/connectal/pulls{/number}","milestones_url":"https://api.github.com/repos/cambridgehackers/connectal/milestones{/number}","notifications_url":"https://api.github.com/repos/cambridgehackers/connectal/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cambridgehackers/connectal/labels{/name}","releases_url":"https://api.github.com/repos/cambridgehackers/connectal/releases{/id}","created_at":"2014-09-17T16:49:54Z","updated_at":"2014-12-31T19:10:30Z","pushed_at":"2014-12-31T19:10:28Z","git_url":"git://github.com/cambridgehackers/connectal.git","ssh_url":"git@github.com:cambridgehackers/connectal.git","clone_url":"https://github.com/cambridgehackers/connectal.git","svn_url":"https://github.com/cambridgehackers/connectal","homepage":"","size":9824,"stargazers_count":7,"watchers_count":7,"language":"Bluespec","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":7,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/cambridgehackers/connectal/pulls/13"},"html":{"href":"https://github.com/cambridgehackers/connectal/pull/13"},"issue":{"href":"https://api.github.com/repos/cambridgehackers/connectal/issues/13"},"comments":{"href":"https://api.github.com/repos/cambridgehackers/connectal/issues/13/comments"},"review_comments":{"href":"https://api.github.com/repos/cambridgehackers/connectal/pulls/13/comments"},"review_comment":{"href":"https://api.github.com/repos/cambridgehackers/connectal/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/cambridgehackers/connectal/pulls/13/commits"},"statuses":{"href":"https://api.github.com/repos/cambridgehackers/connectal/statuses/5f00baca87c1f70eff9fc855a231ad50eb7ae4bc"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":504,"deletions":569,"changed_files":7}},"public":true,"created_at":"2015-01-01T15:08:15Z","org":{"id":2278850,"login":"cambridgehackers","gravatar_id":"","url":"https://api.github.com/orgs/cambridgehackers","avatar_url":"https://avatars.githubusercontent.com/u/2278850?"}} +,{"id":"2489654890","type":"PushEvent","actor":{"id":10074264,"login":"DamonY","gravatar_id":"","url":"https://api.github.com/users/DamonY","avatar_url":"https://avatars.githubusercontent.com/u/10074264?"},"repo":{"id":28293846,"name":"ZhangboTeam/Adinnet.MQE","url":"https://api.github.com/repos/ZhangboTeam/Adinnet.MQE"},"payload":{"push_id":536865717,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cf2b4ddbf00a0d3610b946c466a41b5e5c2c8c46","before":"189e1138ad937214bca30379df75d5f960ccdc38","commits":[{"sha":"cf2b4ddbf00a0d3610b946c466a41b5e5c2c8c46","author":{"email":"de1f57f9acd14bb15fedd1d31467f4e857e48658@qq.com","name":"DamonY"},"message":"补�","distinct":true,"url":"https://api.github.com/repos/ZhangboTeam/Adinnet.MQE/commits/cf2b4ddbf00a0d3610b946c466a41b5e5c2c8c46"}]},"public":true,"created_at":"2015-01-01T15:08:15Z","org":{"id":10057771,"login":"ZhangboTeam","gravatar_id":"","url":"https://api.github.com/orgs/ZhangboTeam","avatar_url":"https://avatars.githubusercontent.com/u/10057771?"}} +,{"id":"2489654893","type":"CreateEvent","actor":{"id":4785356,"login":"loredanacirstea","gravatar_id":"","url":"https://api.github.com/users/loredanacirstea","avatar_url":"https://avatars.githubusercontent.com/u/4785356?"},"repo":{"id":28688743,"name":"loredanacirstea/js-design-patterns","url":"https://api.github.com/repos/loredanacirstea/js-design-patterns"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:17Z"} +,{"id":"2489654897","type":"PushEvent","actor":{"id":9212265,"login":"Igaleksus","gravatar_id":"","url":"https://api.github.com/users/Igaleksus","avatar_url":"https://avatars.githubusercontent.com/u/9212265?"},"repo":{"id":27645590,"name":"vldmalov/java2uml","url":"https://api.github.com/repos/vldmalov/java2uml"},"payload":{"push_id":536865720,"size":26,"distinct_size":6,"ref":"refs/heads/Igor_GUI","head":"bdf4152cce8f46143d6a846f9c194030075ce4b7","before":"3b18e74f4ce0089ea136698361cb978526054fc8","commits":[{"sha":"07f6748fe9b42ed4f2858954076da6377ecc3418","author":{"email":"90e9627c16bac7de3ea99970e42941fcefd33189@yandex.ru","name":"aiv67"},"message":"Добавил пропуск пустых параметров","distinct":false,"url":"https://api.github.com/repos/vldmalov/java2uml/commits/07f6748fe9b42ed4f2858954076da6377ecc3418"},{"sha":"b258d6d22204a9e8d065738195924ffdc8ca7253","author":{"email":"f40e4bdeae30befd0ec72f7776c8ef7db2c27a71@gmail.com","name":"DarkLab"},"message":"Merge commit '86e6450159f9a8d8da5256524ab1f37bd9d25e44' into r1_igor_akimov_integaration_main_to_reflection_and_parsing","distinct":false,"url":"https://api.github.com/repos/vldmalov/java2uml/commits/b258d6d22204a9e8d065738195924ffdc8ca7253"},{"sha":"7e6e792cf3e759cacdab98a93fd17bf3155fdff6","author":{"email":"90e9627c16bac7de3ea99970e42941fcefd33189@yandex.ru","name":"aiv67"},"message":"Исправил ошибку, если путь к исходным файлам задан некоррктно (не существует)","distinct":false,"url":"https://api.github.com/repos/vldmalov/java2uml/commits/7e6e792cf3e759cacdab98a93fd17bf3155fdff6"},{"sha":"f7eb4d837f1f93b05cbd31c2c891662ad24ac6ff","author":{"email":"2397a13bd109457f4fe0a7c7fe61952ffc8384f9@mail.ru","name":"affect205"},"message":"Удаление кода ветки master_r1_affect205 из master_r1","distinct":false,"url":"https://api.github.com/repos/vldmalov/java2uml/commits/f7eb4d837f1f93b05cbd31c2c891662ad24ac6ff"},{"sha":"87d7da605dbf9e5e9d3f424add60f8716f1f3285","author":{"email":"2397a13bd109457f4fe0a7c7fe61952ffc8384f9@mail.ru","name":"affect205"},"message":"Обновил master_r1 актуальной версией класса DataExtractor.java","distinct":false,"url":"https://api.github.com/repos/vldmalov/java2uml/commits/87d7da605dbf9e5e9d3f424add60f8716f1f3285"},{"sha":"4878e47ace120b44c1af43a3dc53437e50495fc8","author":{"email":"2397a13bd109457f4fe0a7c7fe61952ffc8384f9@mail.ru","name":"affect205"},"message":"Данная ветка используется для работы нал рефлексией.\nДобавлено:\n- core.reflection.Main.java: точка входа для тестирования собственной\nветки\n- core.reflection.Options.java: временный класс, эмулирующий реальный\ncore.Options - класс настроек приложения","distinct":false,"url":"https://api.github.com/repos/vldmalov/java2uml/commits/4878e47ace120b44c1af43a3dc53437e50495fc8"},{"sha":"7f8b4b56a91f0fae98232754b1955b86b9020bd3","author":{"email":"f40e4bdeae30befd0ec72f7776c8ef7db2c27a71@gmail.com","name":"DarkLab"},"message":"заменил условные операторы на тернарные","distinct":false,"url":"https://api.github.com/repos/vldmalov/java2uml/commits/7f8b4b56a91f0fae98232754b1955b86b9020bd3"},{"sha":"15b298a00001d97a1a38dca28f3012d76e595cad","author":{"email":"f40e4bdeae30befd0ec72f7776c8ef7db2c27a71@gmail.com","name":"DarkLab"},"message":"заменил null => \"\"","distinct":false,"url":"https://api.github.com/repos/vldmalov/java2uml/commits/15b298a00001d97a1a38dca28f3012d76e595cad"},{"sha":"eb2faf83eca7d2365e1fbd950a8fbc176715264a","author":{"email":"2397a13bd109457f4fe0a7c7fe61952ffc8384f9@mail.ru","name":"affect205"},"message":"Добавлено:\n- В целях интеграции с основной программой изменены классы:\n1.DataExtrator;\n2.Options;\n3.Reflection;\nИзменения необходимо перенести в master_r1","distinct":false,"url":"https://api.github.com/repos/vldmalov/java2uml/commits/eb2faf83eca7d2365e1fbd950a8fbc176715264a"},{"sha":"e368de899aaa0bef08fcc66290ec5e99823b38c4","author":{"email":"f40e4bdeae30befd0ec72f7776c8ef7db2c27a71@gmail.com","name":"DarkLab"},"message":"args[1] возвращен","distinct":false,"url":"https://api.github.com/repos/vldmalov/java2uml/commits/e368de899aaa0bef08fcc66290ec5e99823b38c4"},{"sha":"19a8e6793b869a712f207459e242f4d7d4121d80","author":{"email":"2397a13bd109457f4fe0a7c7fe61952ffc8384f9@mail.ru","name":"affect205"},"message":"Добавлено:\n- В целях интеграции с основной программой изменены классы:\n1.DataExtrator;\n2.Options;\n3.Reflection;\nИзмененные классы необходимо перенести в ветку master_r1","distinct":false,"url":"https://api.github.com/repos/vldmalov/java2uml/commits/19a8e6793b869a712f207459e242f4d7d4121d80"},{"sha":"5f9a79a6e87585da8981bdbdd23c6fcbcdef03bf","author":{"email":"2397a13bd109457f4fe0a7c7fe61952ffc8384f9@mail.ru","name":"affect205"},"message":"Добавлено:\n- В целях интеграции с основной программой изменены классы:\n1.DataExtrator;\n2.Options;\n3.Reflection;\nИзменения необходимо перенести в master_r1","distinct":false,"url":"https://api.github.com/repos/vldmalov/java2uml/commits/5f9a79a6e87585da8981bdbdd23c6fcbcdef03bf"},{"sha":"7ca4048450e5e2afa9538f686f84a61546569c95","author":{"email":"f40e4bdeae30befd0ec72f7776c8ef7db2c27a71@gmail.com","name":"DarkLab"},"message":"удалил reflection.Options и reflection.Main","distinct":false,"url":"https://api.github.com/repos/vldmalov/java2uml/commits/7ca4048450e5e2afa9538f686f84a61546569c95"},{"sha":"571170956763e2430c6323b8f90b616f57889ee5","author":{"email":"f40e4bdeae30befd0ec72f7776c8ef7db2c27a71@gmail.com","name":"DarkLab"},"message":"Merge branch 'r1_DarkLab_little_changes' into master_r1","distinct":false,"url":"https://api.github.com/repos/vldmalov/java2uml/commits/571170956763e2430c6323b8f90b616f57889ee5"},{"sha":"1f847d345073643405ab150d771453ef05a040c0","author":{"email":"f40e4bdeae30befd0ec72f7776c8ef7db2c27a71@gmail.com","name":"DarkLab"},"message":"Merge commit '3b18e74f4ce0089ea136698361cb978526054fc8' into master_r1\n\nConflicts:\n\tsrc/com/github/java2uml/gui/UIEntry.java","distinct":false,"url":"https://api.github.com/repos/vldmalov/java2uml/commits/1f847d345073643405ab150d771453ef05a040c0"},{"sha":"d9af192266a3b740d861029337d06e12100732d4","author":{"email":"90e9627c16bac7de3ea99970e42941fcefd33189@yandex.ru","name":"aiv67"},"message":"По просьбе Игоря Попова переделал класс Options на статические методы и поля","distinct":false,"url":"https://api.github.com/repos/vldmalov/java2uml/commits/d9af192266a3b740d861029337d06e12100732d4"},{"sha":"fc76d831ac5744ed0bc0ad33bbd19ac2114d2d10","author":{"email":"26c88129a6c9f2e7135d23fcddb47a0eed8c2fa2@yandex.ru","name":"Igor"},"message":"1","distinct":true,"url":"https://api.github.com/repos/vldmalov/java2uml/commits/fc76d831ac5744ed0bc0ad33bbd19ac2114d2d10"},{"sha":"b47e35ea4ae22a1b4159994347658f3b7d22420f","author":{"email":"90e9627c16bac7de3ea99970e42941fcefd33189@yandex.ru","name":"aiv67"},"message":"Убрал showExtention","distinct":false,"url":"https://api.github.com/repos/vldmalov/java2uml/commits/b47e35ea4ae22a1b4159994347658f3b7d22420f"},{"sha":"55b22fee2018acc4a53e92fcac7103ed6b4ba870","author":{"email":"2397a13bd109457f4fe0a7c7fe61952ffc8384f9@mail.ru","name":"affect205"},"message":"Добавлено:\n- core.Options - новый параметр showMethodArgs;\n- core.reflection.DataExtractor - адаптирован под статические настройки","distinct":false,"url":"https://api.github.com/repos/vldmalov/java2uml/commits/55b22fee2018acc4a53e92fcac7103ed6b4ba870"},{"sha":"854fb4544b295a9dcb2201733988c780d23884c3","author":{"email":"26c88129a6c9f2e7135d23fcddb47a0eed8c2fa2@yandex.ru","name":"Igor"},"message":"Merge branch 'master_r1' into Igor_GUI\n\nConflicts:\n\tsrc/com/github/java2uml/gui/UIEntry.java","distinct":true,"url":"https://api.github.com/repos/vldmalov/java2uml/commits/854fb4544b295a9dcb2201733988c780d23884c3"}]},"public":true,"created_at":"2015-01-01T15:08:17Z"} +,{"id":"2489654900","type":"WatchEvent","actor":{"id":27919,"login":"weiday","gravatar_id":"","url":"https://api.github.com/users/weiday","avatar_url":"https://avatars.githubusercontent.com/u/27919?"},"repo":{"id":1479355,"name":"Huuf/OV-mfoc-GUI","url":"https://api.github.com/repos/Huuf/OV-mfoc-GUI"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:17Z"} +,{"id":"2489654901","type":"PushEvent","actor":{"id":8945117,"login":"Jeffrey700","gravatar_id":"","url":"https://api.github.com/users/Jeffrey700","avatar_url":"https://avatars.githubusercontent.com/u/8945117?"},"repo":{"id":27719006,"name":"Jeffrey700/QR-code","url":"https://api.github.com/repos/Jeffrey700/QR-code"},"payload":{"push_id":536865721,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e2321067bd3480a1b506b467a593171bd3dc0fde","before":"6ea125709e7bb8f67437ca8e33cb2447d9850672","commits":[{"sha":"e2321067bd3480a1b506b467a593171bd3dc0fde","author":{"email":"4abe65a70399c797296f46d9a6f159363c17e5d4@me.com","name":"Jeffrey700"},"message":"加了一个 国内做的ego刷新 不好用","distinct":true,"url":"https://api.github.com/repos/Jeffrey700/QR-code/commits/e2321067bd3480a1b506b467a593171bd3dc0fde"}]},"public":true,"created_at":"2015-01-01T15:08:17Z"} +,{"id":"2489654902","type":"PushEvent","actor":{"id":111510,"login":"janlelis","gravatar_id":"","url":"https://api.github.com/users/janlelis","avatar_url":"https://avatars.githubusercontent.com/u/111510?"},"repo":{"id":3217545,"name":"janlelis/pws","url":"https://api.github.com/repos/janlelis/pws"},"payload":{"push_id":536865722,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"31c951f727e4f5943e8e6e4b8e03cd63837f5ba2","before":"d3e9b42c9e83b0b8c799122b29f08ddb2a23d189","commits":[{"sha":"31c951f727e4f5943e8e6e4b8e03cd63837f5ba2","author":{"email":"1d6e1cf70ec6f9ab28d3ea4b27a49a77654d370e@janlelis.de","name":"Jan Lelis"},"message":"release 1.0.6","distinct":true,"url":"https://api.github.com/repos/janlelis/pws/commits/31c951f727e4f5943e8e6e4b8e03cd63837f5ba2"}]},"public":true,"created_at":"2015-01-01T15:08:18Z"} +,{"id":"2489654906","type":"WatchEvent","actor":{"id":100441,"login":"Gummi","gravatar_id":"","url":"https://api.github.com/users/Gummi","avatar_url":"https://avatars.githubusercontent.com/u/100441?"},"repo":{"id":20415251,"name":"docker-java/docker-java","url":"https://api.github.com/repos/docker-java/docker-java"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:18Z","org":{"id":7772003,"login":"docker-java","gravatar_id":"","url":"https://api.github.com/orgs/docker-java","avatar_url":"https://avatars.githubusercontent.com/u/7772003?"}} +,{"id":"2489654909","type":"PushEvent","actor":{"id":718983,"login":"mhyfritz","gravatar_id":"","url":"https://api.github.com/users/mhyfritz","avatar_url":"https://avatars.githubusercontent.com/u/718983?"},"repo":{"id":27045536,"name":"mhyfritz/goontools","url":"https://api.github.com/repos/mhyfritz/goontools"},"payload":{"push_id":536865724,"size":13,"distinct_size":1,"ref":"refs/heads/master","head":"ee5888fc55c83b9e1b92fedd4c4c8d64931c0ba9","before":"1df39c96216cb40bdc15838cbe3690bf7882e188","commits":[{"sha":"4875aedd8a7cd36b709cb9969b8bd9e5c7f25659","author":{"email":"92e30aa2dcbfdfbee1d86c37a05f0abd25e11e3e@gmail.com","name":"Markus Hsi-Yang Fritz"},"message":"Add submodule 'klib'","distinct":false,"url":"https://api.github.com/repos/mhyfritz/goontools/commits/4875aedd8a7cd36b709cb9969b8bd9e5c7f25659"},{"sha":"bce4150a4a9276e8788819c39425442afe8568be","author":{"email":"92e30aa2dcbfdfbee1d86c37a05f0abd25e11e3e@gmail.com","name":"Markus Hsi-Yang Fritz"},"message":"Fix 'klib' header paths","distinct":false,"url":"https://api.github.com/repos/mhyfritz/goontools/commits/bce4150a4a9276e8788819c39425442afe8568be"},{"sha":"82855e7b31b55d7fb74f27ed1348d1295a8540e0","author":{"email":"92e30aa2dcbfdfbee1d86c37a05f0abd25e11e3e@gmail.com","name":"Markus Hsi-Yang Fritz"},"message":"First commit of","distinct":false,"url":"https://api.github.com/repos/mhyfritz/goontools/commits/82855e7b31b55d7fb74f27ed1348d1295a8540e0"},{"sha":"f3fb842a1bb72d24d23d292c6267294d153e439b","author":{"email":"92e30aa2dcbfdfbee1d86c37a05f0abd25e11e3e@gmail.com","name":"Markus Hsi-Yang Fritz"},"message":"Accommodate `goonextract`","distinct":false,"url":"https://api.github.com/repos/mhyfritz/goontools/commits/f3fb842a1bb72d24d23d292c6267294d153e439b"},{"sha":"a123ae3a95f60946a49f3e2fdb7f5a2b38b465e7","author":{"email":"92e30aa2dcbfdfbee1d86c37a05f0abd25e11e3e@gmail.com","name":"Markus Hsi-Yang Fritz"},"message":"Usage cosmetics","distinct":false,"url":"https://api.github.com/repos/mhyfritz/goontools/commits/a123ae3a95f60946a49f3e2fdb7f5a2b38b465e7"},{"sha":"bb0cfa5ac18d9f71717773c9958625eee21e6c8a","author":{"email":"92e30aa2dcbfdfbee1d86c37a05f0abd25e11e3e@gmail.com","name":"Markus Hsi-Yang Fritz"},"message":"Add option for NULL values","distinct":false,"url":"https://api.github.com/repos/mhyfritz/goontools/commits/bb0cfa5ac18d9f71717773c9958625eee21e6c8a"},{"sha":"0d9c1447378b1c7db846d954fcce086a26054ad2","author":{"email":"92e30aa2dcbfdfbee1d86c37a05f0abd25e11e3e@gmail.com","name":"Markus Hsi-Yang Fritz"},"message":"Usage cosmetics","distinct":false,"url":"https://api.github.com/repos/mhyfritz/goontools/commits/0d9c1447378b1c7db846d954fcce086a26054ad2"},{"sha":"cbfceebc2b24400748ee0ae183cd228bd30c4671","author":{"email":"92e30aa2dcbfdfbee1d86c37a05f0abd25e11e3e@gmail.com","name":"Markus Hsi-Yang Fritz"},"message":"Remove array.h","distinct":false,"url":"https://api.github.com/repos/mhyfritz/goontools/commits/cbfceebc2b24400748ee0ae183cd228bd30c4671"},{"sha":"cf3abe9a6f5c80ef217d9c22d5f8a04147e9d63d","author":{"email":"92e30aa2dcbfdfbee1d86c37a05f0abd25e11e3e@gmail.com","name":"Markus Hsi-Yang Fritz"},"message":"Add option for printing header","distinct":false,"url":"https://api.github.com/repos/mhyfritz/goontools/commits/cf3abe9a6f5c80ef217d9c22d5f8a04147e9d63d"},{"sha":"d4858243b4a0f73069305d2e7b59611abb87654f","author":{"email":"92e30aa2dcbfdfbee1d86c37a05f0abd25e11e3e@gmail.com","name":"Markus Hsi-Yang Fritz"},"message":"Resurrect array.h","distinct":false,"url":"https://api.github.com/repos/mhyfritz/goontools/commits/d4858243b4a0f73069305d2e7b59611abb87654f"},{"sha":"f16cec550893797d044b6e6280a5d227f41c7c52","author":{"email":"92e30aa2dcbfdfbee1d86c37a05f0abd25e11e3e@gmail.com","name":"Markus Hsi-Yang Fritz"},"message":"Allow arbitrary paths","distinct":false,"url":"https://api.github.com/repos/mhyfritz/goontools/commits/f16cec550893797d044b6e6280a5d227f41c7c52"},{"sha":"05bc512c153360d505ab423f617b960b415deed6","author":{"email":"92e30aa2dcbfdfbee1d86c37a05f0abd25e11e3e@gmail.com","name":"Markus Hsi-Yang Fritz"},"message":"Fix bugs getopt and json parse errors","distinct":false,"url":"https://api.github.com/repos/mhyfritz/goontools/commits/05bc512c153360d505ab423f617b960b415deed6"},{"sha":"ee5888fc55c83b9e1b92fedd4c4c8d64931c0ba9","author":{"email":"92e30aa2dcbfdfbee1d86c37a05f0abd25e11e3e@gmail.com","name":"Markus Hsi-Yang Fritz"},"message":"Merge branch 'dev'","distinct":true,"url":"https://api.github.com/repos/mhyfritz/goontools/commits/ee5888fc55c83b9e1b92fedd4c4c8d64931c0ba9"}]},"public":true,"created_at":"2015-01-01T15:08:18Z"} +,{"id":"2489654912","type":"PushEvent","actor":{"id":4487099,"login":"shahardo","gravatar_id":"","url":"https://api.github.com/users/shahardo","avatar_url":"https://avatars.githubusercontent.com/u/4487099?"},"repo":{"id":24016302,"name":"Gizra/negawatt-server","url":"https://api.github.com/repos/Gizra/negawatt-server"},"payload":{"push_id":536865726,"size":4,"distinct_size":1,"ref":"refs/heads/228","head":"7641381540cdd098ea87a7d71e0498e1f60b1dec","before":"916176393461f00863bb4a573b8c5de83e4e7ca3","commits":[{"sha":"419e75fcbee66e21cf19625880f01b29da731841","author":{"email":"c01921afbf16950519280679177f9f8bdc15d5a0@aliongroo.com","name":"Carlos Mantilla"},"message":"fix: update dependency.","distinct":false,"url":"https://api.github.com/repos/Gizra/negawatt-server/commits/419e75fcbee66e21cf19625880f01b29da731841"},{"sha":"01bbb4ce856c4b7c11e624532cd08c2024a15f8a","author":{"email":"c01921afbf16950519280679177f9f8bdc15d5a0@aliongroo.com","name":"Carlos Mantilla"},"message":"feat(category): keep category selection on marker selection.","distinct":false,"url":"https://api.github.com/repos/Gizra/negawatt-server/commits/01bbb4ce856c4b7c11e624532cd08c2024a15f8a"},{"sha":"e2641ac8a61b6bcff26bbb6b9b30984caa78fc17","author":{"email":"c01921afbf16950519280679177f9f8bdc15d5a0@aliongroo.com","name":"Carlos Mantilla"},"message":"Get all the meters, using restful pagination.","distinct":false,"url":"https://api.github.com/repos/Gizra/negawatt-server/commits/e2641ac8a61b6bcff26bbb6b9b30984caa78fc17"},{"sha":"7641381540cdd098ea87a7d71e0498e1f60b1dec","author":{"email":"0481d80a59c6e093614df2e036f7207800e4f6be@arava-ect.com","name":"Shahar"},"message":"Merge branch 'master' into 228","distinct":true,"url":"https://api.github.com/repos/Gizra/negawatt-server/commits/7641381540cdd098ea87a7d71e0498e1f60b1dec"}]},"public":true,"created_at":"2015-01-01T15:08:19Z","org":{"id":2484795,"login":"Gizra","gravatar_id":"","url":"https://api.github.com/orgs/Gizra","avatar_url":"https://avatars.githubusercontent.com/u/2484795?"}} +,{"id":"2489654913","type":"PushEvent","actor":{"id":3847021,"login":"wayerr","gravatar_id":"","url":"https://api.github.com/users/wayerr","avatar_url":"https://avatars.githubusercontent.com/u/3847021?"},"repo":{"id":27225689,"name":"wayerr/talkeeg","url":"https://api.github.com/repos/wayerr/talkeeg"},"payload":{"push_id":536865728,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"23fad92c155691450de1f57b6c14398d9e3b7462","before":"2564ccb106d06b3d197310f090ff5e677983ffa4","commits":[{"sha":"6615a514bfa01cecc3c15861fc790c6be8fb28d0","author":{"email":"6058a7fb1584936f46484c68a55edff0ef62db1f@ya.ru","name":"wayerr"},"message":"+ HKDF","distinct":true,"url":"https://api.github.com/repos/wayerr/talkeeg/commits/6615a514bfa01cecc3c15861fc790c6be8fb28d0"},{"sha":"23fad92c155691450de1f57b6c14398d9e3b7462","author":{"email":"6058a7fb1584936f46484c68a55edff0ef62db1f@ya.ru","name":"wayerr"},"message":"fix StreamHead","distinct":true,"url":"https://api.github.com/repos/wayerr/talkeeg/commits/23fad92c155691450de1f57b6c14398d9e3b7462"}]},"public":true,"created_at":"2015-01-01T15:08:19Z"} +,{"id":"2489654914","type":"PushEvent","actor":{"id":414010,"login":"simonbrandhof","gravatar_id":"","url":"https://api.github.com/users/simonbrandhof","avatar_url":"https://avatars.githubusercontent.com/u/414010?"},"repo":{"id":5686301,"name":"SonarSource/sonar-runner","url":"https://api.github.com/repos/SonarSource/sonar-runner"},"payload":{"push_id":536865727,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8e1bb3cceaaffb1de143c620dce45ebf37fee2ed","before":"8632a8cd838273b3946a7b4e79a86e2927b70d8d","commits":[{"sha":"8e1bb3cceaaffb1de143c620dce45ebf37fee2ed","author":{"email":"57fb90f096561797a678cefa73882c17749f17a1@sonarsource.com","name":"Simon Brandhof"},"message":"Create travis.yml\n\nExperimental","distinct":true,"url":"https://api.github.com/repos/SonarSource/sonar-runner/commits/8e1bb3cceaaffb1de143c620dce45ebf37fee2ed"}]},"public":true,"created_at":"2015-01-01T15:08:19Z","org":{"id":545988,"login":"SonarSource","gravatar_id":"","url":"https://api.github.com/orgs/SonarSource","avatar_url":"https://avatars.githubusercontent.com/u/545988?"}} +,{"id":"2489654916","type":"WatchEvent","actor":{"id":3137261,"login":"AiDirex","gravatar_id":"","url":"https://api.github.com/users/AiDirex","avatar_url":"https://avatars.githubusercontent.com/u/3137261?"},"repo":{"id":1450115,"name":"AsyncHttpClient/async-http-client","url":"https://api.github.com/repos/AsyncHttpClient/async-http-client"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:20Z","org":{"id":381412,"login":"AsyncHttpClient","gravatar_id":"","url":"https://api.github.com/orgs/AsyncHttpClient","avatar_url":"https://avatars.githubusercontent.com/u/381412?"}} +,{"id":"2489654917","type":"IssueCommentEvent","actor":{"id":63502,"login":"ferventcoder","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","avatar_url":"https://avatars.githubusercontent.com/u/63502?"},"repo":{"id":22735696,"name":"chocolatey/chocolatey-package-updater","url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7","labels_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7/comments","events_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7/events","html_url":"https://github.com/chocolatey/chocolatey-package-updater/issues/7","id":47026963,"number":7,"title":"Support for passing {{checksum}} variable","user":{"login":"dtgm","id":3309431,"avatar_url":"https://avatars.githubusercontent.com/u/3309431?v=3","gravatar_id":"","url":"https://api.github.com/users/dtgm","html_url":"https://github.com/dtgm","followers_url":"https://api.github.com/users/dtgm/followers","following_url":"https://api.github.com/users/dtgm/following{/other_user}","gists_url":"https://api.github.com/users/dtgm/gists{/gist_id}","starred_url":"https://api.github.com/users/dtgm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dtgm/subscriptions","organizations_url":"https://api.github.com/users/dtgm/orgs","repos_url":"https://api.github.com/users/dtgm/repos","events_url":"https://api.github.com/users/dtgm/events{/privacy}","received_events_url":"https://api.github.com/users/dtgm/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-10-28T13:44:42Z","updated_at":"2015-01-01T15:08:20Z","closed_at":null,"body":"Please add support for passing {{checksum}} with ChocoPkgUp.exe.\r\n\r\nSee: https://github.com/chocolatey/chocolatey/issues/427#issuecomment-60740928"},"comment":{"url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/comments/68488654","html_url":"https://github.com/chocolatey/chocolatey-package-updater/issues/7#issuecomment-68488654","issue_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7","id":68488654,"user":{"login":"ferventcoder","id":63502,"avatar_url":"https://avatars.githubusercontent.com/u/63502?v=3","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","html_url":"https://github.com/ferventcoder","followers_url":"https://api.github.com/users/ferventcoder/followers","following_url":"https://api.github.com/users/ferventcoder/following{/other_user}","gists_url":"https://api.github.com/users/ferventcoder/gists{/gist_id}","starred_url":"https://api.github.com/users/ferventcoder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ferventcoder/subscriptions","organizations_url":"https://api.github.com/users/ferventcoder/orgs","repos_url":"https://api.github.com/users/ferventcoder/repos","events_url":"https://api.github.com/users/ferventcoder/events{/privacy}","received_events_url":"https://api.github.com/users/ferventcoder/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:08:20Z","updated_at":"2015-01-01T15:08:20Z","body":"Done with 0.6.4."}},"public":true,"created_at":"2015-01-01T15:08:20Z","org":{"id":811025,"login":"chocolatey","gravatar_id":"","url":"https://api.github.com/orgs/chocolatey","avatar_url":"https://avatars.githubusercontent.com/u/811025?"}} +,{"id":"2489654920","type":"IssuesEvent","actor":{"id":151506,"login":"raichoo","gravatar_id":"","url":"https://api.github.com/users/raichoo","avatar_url":"https://avatars.githubusercontent.com/u/151506?"},"repo":{"id":28595089,"name":"raichoo/31C3Slides","url":"https://api.github.com/repos/raichoo/31C3Slides"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/raichoo/31C3Slides/issues/1","labels_url":"https://api.github.com/repos/raichoo/31C3Slides/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/raichoo/31C3Slides/issues/1/comments","events_url":"https://api.github.com/repos/raichoo/31C3Slides/issues/1/events","html_url":"https://github.com/raichoo/31C3Slides/issues/1","id":53156000,"number":1,"title":"missing Slides.Slide.AboutIdris","user":{"login":"liskin","id":300342,"avatar_url":"https://avatars.githubusercontent.com/u/300342?v=3","gravatar_id":"","url":"https://api.github.com/users/liskin","html_url":"https://github.com/liskin","followers_url":"https://api.github.com/users/liskin/followers","following_url":"https://api.github.com/users/liskin/following{/other_user}","gists_url":"https://api.github.com/users/liskin/gists{/gist_id}","starred_url":"https://api.github.com/users/liskin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/liskin/subscriptions","organizations_url":"https://api.github.com/users/liskin/orgs","repos_url":"https://api.github.com/users/liskin/repos","events_url":"https://api.github.com/users/liskin/events{/privacy}","received_events_url":"https://api.github.com/users/liskin/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-30T23:25:47Z","updated_at":"2015-01-01T15:08:20Z","closed_at":"2015-01-01T15:08:20Z","body":"Forgot to git add, perhaps?\r\n\r\n(Took me a while to figure out what all those\r\n\r\n Main.idr:92:8:When elaborating right hand side of slides:\r\n Can't unify\r\n Vect (fromInteger 5 + (fromInteger 6 + (fromInteger 11 + (fromInteger 1 + (fromInteger 1 + fromInteger 2))))) Slide\r\n with\r\n Vect (plus (length intro) 21) Slide\r\n\r\nmean, especially as I would expect idris to figure out that intro can't be `Vect 5 Slide` with only 4 list items. But I know nothing at all about it, I hope to learn on the train tomorrow. :-))"}},"public":true,"created_at":"2015-01-01T15:08:20Z"} +,{"id":"2489654921","type":"IssueCommentEvent","actor":{"id":151506,"login":"raichoo","gravatar_id":"","url":"https://api.github.com/users/raichoo","avatar_url":"https://avatars.githubusercontent.com/u/151506?"},"repo":{"id":28595089,"name":"raichoo/31C3Slides","url":"https://api.github.com/repos/raichoo/31C3Slides"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/raichoo/31C3Slides/issues/1","labels_url":"https://api.github.com/repos/raichoo/31C3Slides/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/raichoo/31C3Slides/issues/1/comments","events_url":"https://api.github.com/repos/raichoo/31C3Slides/issues/1/events","html_url":"https://github.com/raichoo/31C3Slides/issues/1","id":53156000,"number":1,"title":"missing Slides.Slide.AboutIdris","user":{"login":"liskin","id":300342,"avatar_url":"https://avatars.githubusercontent.com/u/300342?v=3","gravatar_id":"","url":"https://api.github.com/users/liskin","html_url":"https://github.com/liskin","followers_url":"https://api.github.com/users/liskin/followers","following_url":"https://api.github.com/users/liskin/following{/other_user}","gists_url":"https://api.github.com/users/liskin/gists{/gist_id}","starred_url":"https://api.github.com/users/liskin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/liskin/subscriptions","organizations_url":"https://api.github.com/users/liskin/orgs","repos_url":"https://api.github.com/users/liskin/repos","events_url":"https://api.github.com/users/liskin/events{/privacy}","received_events_url":"https://api.github.com/users/liskin/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-30T23:25:47Z","updated_at":"2015-01-01T15:08:20Z","closed_at":"2015-01-01T15:08:20Z","body":"Forgot to git add, perhaps?\r\n\r\n(Took me a while to figure out what all those\r\n\r\n Main.idr:92:8:When elaborating right hand side of slides:\r\n Can't unify\r\n Vect (fromInteger 5 + (fromInteger 6 + (fromInteger 11 + (fromInteger 1 + (fromInteger 1 + fromInteger 2))))) Slide\r\n with\r\n Vect (plus (length intro) 21) Slide\r\n\r\nmean, especially as I would expect idris to figure out that intro can't be `Vect 5 Slide` with only 4 list items. But I know nothing at all about it, I hope to learn on the train tomorrow. :-))"},"comment":{"url":"https://api.github.com/repos/raichoo/31C3Slides/issues/comments/68488655","html_url":"https://github.com/raichoo/31C3Slides/issues/1#issuecomment-68488655","issue_url":"https://api.github.com/repos/raichoo/31C3Slides/issues/1","id":68488655,"user":{"login":"raichoo","id":151506,"avatar_url":"https://avatars.githubusercontent.com/u/151506?v=3","gravatar_id":"","url":"https://api.github.com/users/raichoo","html_url":"https://github.com/raichoo","followers_url":"https://api.github.com/users/raichoo/followers","following_url":"https://api.github.com/users/raichoo/following{/other_user}","gists_url":"https://api.github.com/users/raichoo/gists{/gist_id}","starred_url":"https://api.github.com/users/raichoo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/raichoo/subscriptions","organizations_url":"https://api.github.com/users/raichoo/orgs","repos_url":"https://api.github.com/users/raichoo/repos","events_url":"https://api.github.com/users/raichoo/events{/privacy}","received_events_url":"https://api.github.com/users/raichoo/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:08:20Z","updated_at":"2015-01-01T15:08:20Z","body":"Should be fixed now :) Thanks for reporting"}},"public":true,"created_at":"2015-01-01T15:08:20Z"} +,{"id":"2489654922","type":"PushEvent","actor":{"id":1893224,"login":"tmek","gravatar_id":"","url":"https://api.github.com/users/tmek","avatar_url":"https://avatars.githubusercontent.com/u/1893224?"},"repo":{"id":28678709,"name":"tmek/HuskyPineapple","url":"https://api.github.com/repos/tmek/HuskyPineapple"},"payload":{"push_id":536865730,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b704ff2bd2ab84961d8c3eec2c4f17f01a87c93a","before":"c3559b69808457138e28e439ff26b3bbeb3a631c","commits":[{"sha":"b704ff2bd2ab84961d8c3eec2c4f17f01a87c93a","author":{"email":"8942291bb037f6d26d50b372f7078da8805691a2@gmail.com","name":"tmek"},"message":"Changed views from using Html Helpers to Tag Helpers. Updated asp.net dependencies to -rc1-*. Made related changes required from beta1 to rc1-*.","distinct":true,"url":"https://api.github.com/repos/tmek/HuskyPineapple/commits/b704ff2bd2ab84961d8c3eec2c4f17f01a87c93a"}]},"public":true,"created_at":"2015-01-01T15:08:20Z"} +,{"id":"2489654924","type":"PushEvent","actor":{"id":71073,"login":"saw303","gravatar_id":"","url":"https://api.github.com/users/saw303","avatar_url":"https://avatars.githubusercontent.com/u/71073?"},"repo":{"id":4883030,"name":"saw303/dox","url":"https://api.github.com/repos/saw303/dox"},"payload":{"push_id":536865732,"size":2,"distinct_size":1,"ref":"refs/heads/foundation","head":"a007163a9c9e06312a6db5ee7f73aba53defca8b","before":"273831bcd3bd872fa09fbd4c15a8d1017d91346e","commits":[{"sha":"33c97170e6983cfdf3d98e4a5927aa6c9ce1e60c","author":{"email":"44b116d55893b98dd695d28e6afa06165dc194cf@gmail.com","name":"Silvio Wangler"},"message":"Upgraded deps","distinct":false,"url":"https://api.github.com/repos/saw303/dox/commits/33c97170e6983cfdf3d98e4a5927aa6c9ce1e60c"},{"sha":"a007163a9c9e06312a6db5ee7f73aba53defca8b","author":{"email":"44b116d55893b98dd695d28e6afa06165dc194cf@gmail.com","name":"Silvio Wangler"},"message":"Merge branch 'master' into foundation","distinct":true,"url":"https://api.github.com/repos/saw303/dox/commits/a007163a9c9e06312a6db5ee7f73aba53defca8b"}]},"public":true,"created_at":"2015-01-01T15:08:21Z"} +,{"id":"2489654925","type":"CreateEvent","actor":{"id":10364788,"login":"hdj1123","gravatar_id":"","url":"https://api.github.com/users/hdj1123","avatar_url":"https://avatars.githubusercontent.com/u/10364788?"},"repo":{"id":28688744,"name":"hdj1123/hdj123","url":"https://api.github.com/repos/hdj1123/hdj123"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"studing","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:23Z"} +,{"id":"2489654926","type":"WatchEvent","actor":{"id":764088,"login":"alexhaller","gravatar_id":"","url":"https://api.github.com/users/alexhaller","avatar_url":"https://avatars.githubusercontent.com/u/764088?"},"repo":{"id":1362086,"name":"codebox/bitmeteros","url":"https://api.github.com/repos/codebox/bitmeteros"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:23Z"} +,{"id":"2489654930","type":"IssuesEvent","actor":{"id":63502,"login":"ferventcoder","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","avatar_url":"https://avatars.githubusercontent.com/u/63502?"},"repo":{"id":22735696,"name":"chocolatey/chocolatey-package-updater","url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7","labels_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7/comments","events_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7/events","html_url":"https://github.com/chocolatey/chocolatey-package-updater/issues/7","id":47026963,"number":7,"title":"Support for passing {{checksum}} variable","user":{"login":"dtgm","id":3309431,"avatar_url":"https://avatars.githubusercontent.com/u/3309431?v=3","gravatar_id":"","url":"https://api.github.com/users/dtgm","html_url":"https://github.com/dtgm","followers_url":"https://api.github.com/users/dtgm/followers","following_url":"https://api.github.com/users/dtgm/following{/other_user}","gists_url":"https://api.github.com/users/dtgm/gists{/gist_id}","starred_url":"https://api.github.com/users/dtgm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dtgm/subscriptions","organizations_url":"https://api.github.com/users/dtgm/orgs","repos_url":"https://api.github.com/users/dtgm/repos","events_url":"https://api.github.com/users/dtgm/events{/privacy}","received_events_url":"https://api.github.com/users/dtgm/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-10-28T13:44:42Z","updated_at":"2015-01-01T15:08:22Z","closed_at":"2015-01-01T15:08:22Z","body":"Please add support for passing {{checksum}} with ChocoPkgUp.exe.\r\n\r\nSee: https://github.com/chocolatey/chocolatey/issues/427#issuecomment-60740928"}},"public":true,"created_at":"2015-01-01T15:08:23Z","org":{"id":811025,"login":"chocolatey","gravatar_id":"","url":"https://api.github.com/orgs/chocolatey","avatar_url":"https://avatars.githubusercontent.com/u/811025?"}} +,{"id":"2489654933","type":"IssueCommentEvent","actor":{"id":3529110,"login":"ArcadEd","gravatar_id":"","url":"https://api.github.com/users/ArcadEd","avatar_url":"https://avatars.githubusercontent.com/u/3529110?"},"repo":{"id":14497712,"name":"ludei/Construct-2-plugin","url":"https://api.github.com/repos/ludei/Construct-2-plugin"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/ludei/Construct-2-plugin/issues/58","labels_url":"https://api.github.com/repos/ludei/Construct-2-plugin/issues/58/labels{/name}","comments_url":"https://api.github.com/repos/ludei/Construct-2-plugin/issues/58/comments","events_url":"https://api.github.com/repos/ludei/Construct-2-plugin/issues/58/events","html_url":"https://github.com/ludei/Construct-2-plugin/issues/58","id":53217191,"number":58,"title":"I can't get full screen ads to show up ever again after its closed.","user":{"login":"MichaelVParent","id":8163137,"avatar_url":"https://avatars.githubusercontent.com/u/8163137?v=3","gravatar_id":"","url":"https://api.github.com/users/MichaelVParent","html_url":"https://github.com/MichaelVParent","followers_url":"https://api.github.com/users/MichaelVParent/followers","following_url":"https://api.github.com/users/MichaelVParent/following{/other_user}","gists_url":"https://api.github.com/users/MichaelVParent/gists{/gist_id}","starred_url":"https://api.github.com/users/MichaelVParent/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MichaelVParent/subscriptions","organizations_url":"https://api.github.com/users/MichaelVParent/orgs","repos_url":"https://api.github.com/users/MichaelVParent/repos","events_url":"https://api.github.com/users/MichaelVParent/events{/privacy}","received_events_url":"https://api.github.com/users/MichaelVParent/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T10:32:21Z","updated_at":"2015-01-01T15:08:22Z","closed_at":null,"body":"I have events that should show full screen ads at the beginning of many frame, but after the initial display and close, one never reappears.\r\n\r\nIs there a very specific sequence of events per layout I need to get full screen ads to appear when I want, and not just once for the entire time the game is played?\r\nThanks,\r\nMike"},"comment":{"url":"https://api.github.com/repos/ludei/Construct-2-plugin/issues/comments/68488656","html_url":"https://github.com/ludei/Construct-2-plugin/issues/58#issuecomment-68488656","issue_url":"https://api.github.com/repos/ludei/Construct-2-plugin/issues/58","id":68488656,"user":{"login":"ArcadEd","id":3529110,"avatar_url":"https://avatars.githubusercontent.com/u/3529110?v=3","gravatar_id":"","url":"https://api.github.com/users/ArcadEd","html_url":"https://github.com/ArcadEd","followers_url":"https://api.github.com/users/ArcadEd/followers","following_url":"https://api.github.com/users/ArcadEd/following{/other_user}","gists_url":"https://api.github.com/users/ArcadEd/gists{/gist_id}","starred_url":"https://api.github.com/users/ArcadEd/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ArcadEd/subscriptions","organizations_url":"https://api.github.com/users/ArcadEd/orgs","repos_url":"https://api.github.com/users/ArcadEd/repos","events_url":"https://api.github.com/users/ArcadEd/events{/privacy}","received_events_url":"https://api.github.com/users/ArcadEd/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:08:22Z","updated_at":"2015-01-01T15:08:22Z","body":"This is most likely a mopub issue and now CJS. Did you check your debug log and see why they are not showing up? Usually it's because Mopub couldn't fetch an ad."}},"public":true,"created_at":"2015-01-01T15:08:23Z","org":{"id":5826752,"login":"ludei","gravatar_id":"","url":"https://api.github.com/orgs/ludei","avatar_url":"https://avatars.githubusercontent.com/u/5826752?"}} +,{"id":"2489654935","type":"IssueCommentEvent","actor":{"id":3438489,"login":"pylerSM","gravatar_id":"","url":"https://api.github.com/users/pylerSM","avatar_url":"https://avatars.githubusercontent.com/u/3438489?"},"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":9,"created_at":"2014-06-13T17:58:59Z","updated_at":"2015-01-01T15:08:22Z","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/68488657","html_url":"https://github.com/rovo89/XposedInstaller/issues/201#issuecomment-68488657","issue_url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/201","id":68488657,"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},"created_at":"2015-01-01T15:08:22Z","updated_at":"2015-01-01T15:08:22Z","body":"Yes, I understand. \r\n>there might be an Xposed module\r\n\r\nXposed yeah :)"}},"public":true,"created_at":"2015-01-01T15:08:23Z"} +,{"id":"2489654938","type":"CreateEvent","actor":{"id":111510,"login":"janlelis","gravatar_id":"","url":"https://api.github.com/users/janlelis","avatar_url":"https://avatars.githubusercontent.com/u/111510?"},"repo":{"id":3217545,"name":"janlelis/pws","url":"https://api.github.com/repos/janlelis/pws"},"payload":{"ref":"1.0.6","ref_type":"tag","master_branch":"master","description":"pws is a command-line password safe written in Ruby.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:23Z"} +,{"id":"2489654939","type":"PushEvent","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":2835584,"name":"shahzad-latif/HelloWorld","url":"https://api.github.com/repos/shahzad-latif/HelloWorld"},"payload":{"push_id":536865734,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ea3d619cbe6e0a6032f779b03b56fca95c3a98a6","before":"445b4b7c159a2184971d1fe11188257cbc611df4","commits":[{"sha":"ea3d619cbe6e0a6032f779b03b56fca95c3a98a6","author":{"email":"aec2a6abcd6176c05ffa5540cfb442d2a0aa0a89@aspose.com","name":"Shahzad Latif"},"message":"Update ReadMe.md","distinct":true,"url":"https://api.github.com/repos/shahzad-latif/HelloWorld/commits/ea3d619cbe6e0a6032f779b03b56fca95c3a98a6"}]},"public":true,"created_at":"2015-01-01T15:08:23Z"} +,{"id":"2489654941","type":"PushEvent","actor":{"id":7019216,"login":"tomigungun","gravatar_id":"","url":"https://api.github.com/users/tomigungun","avatar_url":"https://avatars.githubusercontent.com/u/7019216?"},"repo":{"id":28661203,"name":"tomigungun/demo_app","url":"https://api.github.com/repos/tomigungun/demo_app"},"payload":{"push_id":536865737,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9e95f1b532feaf4670ce0c52c91179caaf0ff284","before":"6ce1e6b2fffc266864088ea4a9e2b1d109c6f39a","commits":[{"sha":"9e95f1b532feaf4670ce0c52c91179caaf0ff284","author":{"email":"9d2010a815cbd7b33bf64df516d133a3dd2cefcc@gmail.com","name":"富岡勢斗"},"message":"Finish demo app","distinct":true,"url":"https://api.github.com/repos/tomigungun/demo_app/commits/9e95f1b532feaf4670ce0c52c91179caaf0ff284"}]},"public":true,"created_at":"2015-01-01T15:08:23Z"} +,{"id":"2489654943","type":"WatchEvent","actor":{"id":4319085,"login":"alisanalacam","gravatar_id":"","url":"https://api.github.com/users/alisanalacam","avatar_url":"https://avatars.githubusercontent.com/u/4319085?"},"repo":{"id":2738194,"name":"treeio/treeio","url":"https://api.github.com/repos/treeio/treeio"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:23Z","org":{"id":1128730,"login":"treeio","gravatar_id":"","url":"https://api.github.com/orgs/treeio","avatar_url":"https://avatars.githubusercontent.com/u/1128730?"}} +,{"id":"2489654944","type":"CreateEvent","actor":{"id":6883314,"login":"maoberlehner","gravatar_id":"","url":"https://api.github.com/users/maoberlehner","avatar_url":"https://avatars.githubusercontent.com/u/6883314?"},"repo":{"id":18462436,"name":"maoberlehner/avalanche","url":"https://api.github.com/repos/maoberlehner/avalanche"},"payload":{"ref":"styleguide-experiments","ref_type":"branch","master_branch":"master","description":"SASS / CSS Framework","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:24Z"} +,{"id":"2489654946","type":"PushEvent","actor":{"id":2931145,"login":"StefanRvO","gravatar_id":"","url":"https://api.github.com/users/StefanRvO","avatar_url":"https://avatars.githubusercontent.com/u/2931145?"},"repo":{"id":18478370,"name":"StefanRvO/BBB-Scope","url":"https://api.github.com/repos/StefanRvO/BBB-Scope"},"payload":{"push_id":536865739,"size":1,"distinct_size":1,"ref":"refs/heads/FFTdiplay","head":"16ea9e9f9cd2e543f97e1985c981282b4461dfae","before":"cb4df6760dfc6a420b273d3750b0f404c2019495","commits":[{"sha":"16ea9e9f9cd2e543f97e1985c981282b4461dfae","author":{"email":"eb0877843acc39f8ef6f7269937dee931c372d23@stefanrvo.dk","name":"Stefan Ravn van Overeem"},"message":"Forgot to add SampleRateControl","distinct":true,"url":"https://api.github.com/repos/StefanRvO/BBB-Scope/commits/16ea9e9f9cd2e543f97e1985c981282b4461dfae"}]},"public":true,"created_at":"2015-01-01T15:08:24Z"} +,{"id":"2489654948","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":536865741,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e597860839edd312d53d090c3401abcbb17e4c9a","before":"03580655615779dece8403902492c125a2b9ba3c","commits":[{"sha":"e597860839edd312d53d090c3401abcbb17e4c9a","author":{"email":"798520c19e899fb2be364efde581283231d48b6f@126.com","name":"quhezheng"},"message":"update","distinct":true,"url":"https://api.github.com/repos/quhezheng/HomeIP/commits/e597860839edd312d53d090c3401abcbb17e4c9a"}]},"public":true,"created_at":"2015-01-01T15:08:24Z"} +,{"id":"2489654951","type":"IssuesEvent","actor":{"id":3438489,"login":"pylerSM","gravatar_id":"","url":"https://api.github.com/users/pylerSM","avatar_url":"https://avatars.githubusercontent.com/u/3438489?"},"repo":{"id":3911317,"name":"rovo89/XposedInstaller","url":"https://api.github.com/repos/rovo89/XposedInstaller"},"payload":{"action":"closed","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":"closed","locked":false,"assignee":null,"milestone":null,"comments":9,"created_at":"2014-06-13T17:58:59Z","updated_at":"2015-01-01T15:08:24Z","closed_at":"2015-01-01T15:08:24Z","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?"}},"public":true,"created_at":"2015-01-01T15:08:24Z"} +,{"id":"2489654956","type":"WatchEvent","actor":{"id":9460420,"login":"ibd818","gravatar_id":"","url":"https://api.github.com/users/ibd818","avatar_url":"https://avatars.githubusercontent.com/u/9460420?"},"repo":{"id":23652091,"name":"Yixiaohan/show-me-the-code","url":"https://api.github.com/repos/Yixiaohan/show-me-the-code"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:25Z"} +,{"id":"2489654960","type":"CreateEvent","actor":{"id":1086194,"login":"adrai","gravatar_id":"","url":"https://api.github.com/users/adrai","avatar_url":"https://avatars.githubusercontent.com/u/1086194?"},"repo":{"id":28688745,"name":"adrai/sensortag-visualization","url":"https://api.github.com/repos/adrai/sensortag-visualization"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"playground","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:25Z"} +,{"id":"2489654962","type":"PushEvent","actor":{"id":2260430,"login":"vonavi","gravatar_id":"","url":"https://api.github.com/users/vonavi","avatar_url":"https://avatars.githubusercontent.com/u/2260430?"},"repo":{"id":7994698,"name":"fat0troll/lorchess","url":"https://api.github.com/repos/fat0troll/lorchess"},"payload":{"push_id":536865746,"size":4,"distinct_size":4,"ref":"refs/heads/master","head":"6050f7cfe6ad733d405cabb1225af7e438b735fd","before":"0d05d02806a78e454a3cedd9b9641e36bf8849b8","commits":[{"sha":"2b57870138173b320bf3025186df7cf3fc1163b9","author":{"email":"16801cc25cb786c8f54533c96a7ae09d392972c4@gmail.com","name":"vonavi"},"message":"Tournament 'Fallen Leaves': close unaccomplished games.","distinct":true,"url":"https://api.github.com/repos/fat0troll/lorchess/commits/2b57870138173b320bf3025186df7cf3fc1163b9"},{"sha":"8a85193ce3a2c020dcc05879b7fb02b46ce3093e","author":{"email":"16801cc25cb786c8f54533c96a7ae09d392972c4@gmail.com","name":"vonavi"},"message":"Allow to parse the result of an unaccomplished game.","distinct":true,"url":"https://api.github.com/repos/fat0troll/lorchess/commits/8a85193ce3a2c020dcc05879b7fb02b46ce3093e"},{"sha":"5be0d474f2c7e56f5e320f754d27ea08381fef35","author":{"email":"16801cc25cb786c8f54533c96a7ae09d392972c4@gmail.com","name":"vonavi"},"message":"Tournament 'Fallen Leaves': update games.ini.","distinct":true,"url":"https://api.github.com/repos/fat0troll/lorchess/commits/5be0d474f2c7e56f5e320f754d27ea08381fef35"},{"sha":"6050f7cfe6ad733d405cabb1225af7e438b735fd","author":{"email":"16801cc25cb786c8f54533c96a7ae09d392972c4@gmail.com","name":"vonavi"},"message":"Script 'game-add': version bump.","distinct":true,"url":"https://api.github.com/repos/fat0troll/lorchess/commits/6050f7cfe6ad733d405cabb1225af7e438b735fd"}]},"public":true,"created_at":"2015-01-01T15:08:25Z"} +,{"id":"2489654964","type":"CreateEvent","actor":{"id":1440092,"login":"mabh","gravatar_id":"","url":"https://api.github.com/users/mabh","avatar_url":"https://avatars.githubusercontent.com/u/1440092?"},"repo":{"id":28688127,"name":"mabh/StormProject","url":"https://api.github.com/repos/mabh/StormProject"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Document dequeing through Nirvana UM, processing and persistence in MongoDB via Apache Storm","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:26Z"} +,{"id":"2489654965","type":"CommitCommentEvent","actor":{"id":1370209,"login":"filfat","gravatar_id":"","url":"https://api.github.com/users/filfat","avatar_url":"https://avatars.githubusercontent.com/u/1370209?"},"repo":{"id":26833497,"name":"DownloadMii/DownloadMii-Website","url":"https://api.github.com/repos/DownloadMii/DownloadMii-Website"},"payload":{"comment":{"url":"https://api.github.com/repos/DownloadMii/DownloadMii-Website/comments/9132436","html_url":"https://github.com/DownloadMii/DownloadMii-Website/commit/0ad00e54467778282ab502574fb903eb5b2bbc82#commitcomment-9132436","id":9132436,"user":{"login":"filfat","id":1370209,"avatar_url":"https://avatars.githubusercontent.com/u/1370209?v=3","gravatar_id":"","url":"https://api.github.com/users/filfat","html_url":"https://github.com/filfat","followers_url":"https://api.github.com/users/filfat/followers","following_url":"https://api.github.com/users/filfat/following{/other_user}","gists_url":"https://api.github.com/users/filfat/gists{/gist_id}","starred_url":"https://api.github.com/users/filfat/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/filfat/subscriptions","organizations_url":"https://api.github.com/users/filfat/orgs","repos_url":"https://api.github.com/users/filfat/repos","events_url":"https://api.github.com/users/filfat/events{/privacy}","received_events_url":"https://api.github.com/users/filfat/received_events","type":"User","site_admin":false},"position":null,"line":null,"path":"","commit_id":"0ad00e54467778282ab502574fb903eb5b2bbc82","created_at":"2015-01-01T15:08:25Z","updated_at":"2015-01-01T15:08:25Z","body":"Hi, I just wanted to notify you that we use azure as our webhost. So in the future(when you look into implementing app uploading) remember to use the azure blob storage API :)"}},"public":true,"created_at":"2015-01-01T15:08:25Z","org":{"id":9831921,"login":"DownloadMii","gravatar_id":"","url":"https://api.github.com/orgs/DownloadMii","avatar_url":"https://avatars.githubusercontent.com/u/9831921?"}} +,{"id":"2489654966","type":"PushEvent","actor":{"id":4769989,"login":"ggaaooppeenngg","gravatar_id":"","url":"https://api.github.com/users/ggaaooppeenngg","avatar_url":"https://avatars.githubusercontent.com/u/4769989?"},"repo":{"id":19769727,"name":"ggaaooppeenngg/util","url":"https://api.github.com/repos/ggaaooppeenngg/util"},"payload":{"push_id":536865748,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"181e2bd9e1c1fbc0903adb9464f6877d96ccf14b","before":"35c1acbe4786b6bb777a3379b3e8a85d78c5e28d","commits":[{"sha":"181e2bd9e1c1fbc0903adb9464f6877d96ccf14b","author":{"email":"5caaeb7d0ed2b3307c829f0a2181e3014ce85319@qq.com","name":"ggaaooppeenngg"},"message":"rbtree","distinct":true,"url":"https://api.github.com/repos/ggaaooppeenngg/util/commits/181e2bd9e1c1fbc0903adb9464f6877d96ccf14b"}]},"public":true,"created_at":"2015-01-01T15:08:26Z"} +,{"id":"2489654967","type":"WatchEvent","actor":{"id":37095,"login":"htom78","gravatar_id":"","url":"https://api.github.com/users/htom78","avatar_url":"https://avatars.githubusercontent.com/u/37095?"},"repo":{"id":25901924,"name":"imifan/mifan","url":"https://api.github.com/repos/imifan/mifan"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:26Z","org":{"id":8529607,"login":"imifan","gravatar_id":"","url":"https://api.github.com/orgs/imifan","avatar_url":"https://avatars.githubusercontent.com/u/8529607?"}} +,{"id":"2489654970","type":"WatchEvent","actor":{"id":38193,"login":"edy555","gravatar_id":"","url":"https://api.github.com/users/edy555","avatar_url":"https://avatars.githubusercontent.com/u/38193?"},"repo":{"id":15739808,"name":"macoscope/QCConsole","url":"https://api.github.com/repos/macoscope/QCConsole"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:26Z","org":{"id":759101,"login":"macoscope","gravatar_id":"","url":"https://api.github.com/orgs/macoscope","avatar_url":"https://avatars.githubusercontent.com/u/759101?"}} +,{"id":"2489654971","type":"CreateEvent","actor":{"id":10364794,"login":"usbookmarket","gravatar_id":"","url":"https://api.github.com/users/usbookmarket","avatar_url":"https://avatars.githubusercontent.com/u/10364794?"},"repo":{"id":28688746,"name":"usbookmarket/books","url":"https://api.github.com/repos/usbookmarket/books"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"books on good","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:26Z"} +,{"id":"2489654975","type":"WatchEvent","actor":{"id":1447152,"login":"yoheiMune","gravatar_id":"","url":"https://api.github.com/users/yoheiMune","avatar_url":"https://avatars.githubusercontent.com/u/1447152?"},"repo":{"id":28688676,"name":"yoheiMune/analytics-playground","url":"https://api.github.com/repos/yoheiMune/analytics-playground"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:28Z"} +,{"id":"2489654976","type":"PushEvent","actor":{"id":3724388,"login":"cheyang","gravatar_id":"","url":"https://api.github.com/users/cheyang","avatar_url":"https://avatars.githubusercontent.com/u/3724388?"},"repo":{"id":27756669,"name":"cheyang/docker_brick","url":"https://api.github.com/repos/cheyang/docker_brick"},"payload":{"push_id":536865752,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ee9d9d5575c17d436d6f415dcedb3a940f747914","before":"796e2f27cbc854c8a3778928ad810679b8b213f6","commits":[{"sha":"ee9d9d5575c17d436d6f415dcedb3a940f747914","author":{"email":"a29c45cf07a273bd58fb05ec870d18d562d741a4@163.com","name":"cheyang"},"message":"commit 3","distinct":true,"url":"https://api.github.com/repos/cheyang/docker_brick/commits/ee9d9d5575c17d436d6f415dcedb3a940f747914"}]},"public":true,"created_at":"2015-01-01T15:08:28Z"} +,{"id":"2489654977","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":536865753,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c07652a8995f4d69b69f7fe003c285add253a73d","before":"6fdf755f303f142e018853deb7a95f080fe72613","commits":[{"sha":"c07652a8995f4d69b69f7fe003c285add253a73d","author":{"email":"87c01f2a11d6af298dcc61e432606186023760d0@gmail.com","name":"Eric Hartmann"},"message":"Add GA","distinct":true,"url":"https://api.github.com/repos/ElsaBonnaud/WebSite/commits/c07652a8995f4d69b69f7fe003c285add253a73d"}]},"public":true,"created_at":"2015-01-01T15:08:28Z"} +,{"id":"2489654978","type":"PushEvent","actor":{"id":3489246,"login":"sunwaylive","gravatar_id":"","url":"https://api.github.com/users/sunwaylive","avatar_url":"https://avatars.githubusercontent.com/u/3489246?"},"repo":{"id":28144063,"name":"sunwaylive/proactive-learning-on-scenes","url":"https://api.github.com/repos/sunwaylive/proactive-learning-on-scenes"},"payload":{"push_id":536865754,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0dfe53202953d5211d4ac75729ac24639cea6972","before":"7218cdd4f0d38d9f54275bb6374d566b7b9103b4","commits":[{"sha":"0dfe53202953d5211d4ac75729ac24639cea6972","author":{"email":"c908fc48ce91b9ac3695794fa2a3641558c47e28@gmail.com","name":"sunway"},"message":"added SparseICP","distinct":true,"url":"https://api.github.com/repos/sunwaylive/proactive-learning-on-scenes/commits/0dfe53202953d5211d4ac75729ac24639cea6972"}]},"public":true,"created_at":"2015-01-01T15:08:28Z"} +,{"id":"2489654979","type":"WatchEvent","actor":{"id":162986,"login":"1ed","gravatar_id":"","url":"https://api.github.com/users/1ed","avatar_url":"https://avatars.githubusercontent.com/u/162986?"},"repo":{"id":5598476,"name":"tchwork/jsqueeze","url":"https://api.github.com/repos/tchwork/jsqueeze"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:28Z","org":{"id":9595191,"login":"tchwork","gravatar_id":"","url":"https://api.github.com/orgs/tchwork","avatar_url":"https://avatars.githubusercontent.com/u/9595191?"}} +,{"id":"2489654984","type":"PushEvent","actor":{"id":1216372,"login":"mtth","gravatar_id":"","url":"https://api.github.com/users/mtth","avatar_url":"https://avatars.githubusercontent.com/u/1216372?"},"repo":{"id":28450629,"name":"mtth/dot11","url":"https://api.github.com/repos/mtth/dot11"},"payload":{"push_id":536865757,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"38d09fd83f716b4544eef4d3d5910c714b2b6f18","before":"cb64322e2e90ac0214fcc0a681663048a676eec0","commits":[{"sha":"38d09fd83f716b4544eef4d3d5910c714b2b6f18","author":{"email":"52b0ced463876a5234c8eb5f93b898c5cabd2024@alum.mit.edu","name":"Matthieu Monsch"},"message":"Restructure module.","distinct":true,"url":"https://api.github.com/repos/mtth/dot11/commits/38d09fd83f716b4544eef4d3d5910c714b2b6f18"}]},"public":true,"created_at":"2015-01-01T15:08:29Z"} +,{"id":"2489654986","type":"IssueCommentEvent","actor":{"id":77424,"login":"eddyb","gravatar_id":"","url":"https://api.github.com/users/eddyb","avatar_url":"https://avatars.githubusercontent.com/u/77424?"},"repo":{"id":724712,"name":"rust-lang/rust","url":"https://api.github.com/repos/rust-lang/rust"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/rust-lang/rust/issues/20179","labels_url":"https://api.github.com/repos/rust-lang/rust/issues/20179/labels{/name}","comments_url":"https://api.github.com/repos/rust-lang/rust/issues/20179/comments","events_url":"https://api.github.com/repos/rust-lang/rust/issues/20179/events","html_url":"https://github.com/rust-lang/rust/pull/20179","id":52769699,"number":20179,"title":"Turn `extern crate` and `use` into first-class items.","user":{"login":"eddyb","id":77424,"avatar_url":"https://avatars.githubusercontent.com/u/77424?v=3","gravatar_id":"","url":"https://api.github.com/users/eddyb","html_url":"https://github.com/eddyb","followers_url":"https://api.github.com/users/eddyb/followers","following_url":"https://api.github.com/users/eddyb/following{/other_user}","gists_url":"https://api.github.com/users/eddyb/gists{/gist_id}","starred_url":"https://api.github.com/users/eddyb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eddyb/subscriptions","organizations_url":"https://api.github.com/users/eddyb/orgs","repos_url":"https://api.github.com/users/eddyb/repos","events_url":"https://api.github.com/users/eddyb/events{/privacy}","received_events_url":"https://api.github.com/users/eddyb/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":{"login":"alexcrichton","id":64996,"avatar_url":"https://avatars.githubusercontent.com/u/64996?v=3","gravatar_id":"","url":"https://api.github.com/users/alexcrichton","html_url":"https://github.com/alexcrichton","followers_url":"https://api.github.com/users/alexcrichton/followers","following_url":"https://api.github.com/users/alexcrichton/following{/other_user}","gists_url":"https://api.github.com/users/alexcrichton/gists{/gist_id}","starred_url":"https://api.github.com/users/alexcrichton/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alexcrichton/subscriptions","organizations_url":"https://api.github.com/users/alexcrichton/orgs","repos_url":"https://api.github.com/users/alexcrichton/repos","events_url":"https://api.github.com/users/alexcrichton/events{/privacy}","received_events_url":"https://api.github.com/users/alexcrichton/received_events","type":"User","site_admin":false},"milestone":null,"comments":9,"created_at":"2014-12-23T19:52:30Z","updated_at":"2015-01-01T15:08:29Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/rust-lang/rust/pulls/20179","html_url":"https://github.com/rust-lang/rust/pull/20179","diff_url":"https://github.com/rust-lang/rust/pull/20179.diff","patch_url":"https://github.com/rust-lang/rust/pull/20179.patch"},"body":"This implements an important part of RFC PR 385 (see #18219).\r\n\r\n**NOTE**: this is a **work in progress**, missing new tests."},"comment":{"url":"https://api.github.com/repos/rust-lang/rust/issues/comments/68488658","html_url":"https://github.com/rust-lang/rust/pull/20179#issuecomment-68488658","issue_url":"https://api.github.com/repos/rust-lang/rust/issues/20179","id":68488658,"user":{"login":"eddyb","id":77424,"avatar_url":"https://avatars.githubusercontent.com/u/77424?v=3","gravatar_id":"","url":"https://api.github.com/users/eddyb","html_url":"https://github.com/eddyb","followers_url":"https://api.github.com/users/eddyb/followers","following_url":"https://api.github.com/users/eddyb/following{/other_user}","gists_url":"https://api.github.com/users/eddyb/gists{/gist_id}","starred_url":"https://api.github.com/users/eddyb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eddyb/subscriptions","organizations_url":"https://api.github.com/users/eddyb/orgs","repos_url":"https://api.github.com/users/eddyb/repos","events_url":"https://api.github.com/users/eddyb/events{/privacy}","received_events_url":"https://api.github.com/users/eddyb/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:08:28Z","updated_at":"2015-01-01T15:08:28Z","body":"Ah, this causes the weird \"only irrefutable patterns allowed here\" error (can we stop matching constants in irrefutable patterns already?):\r\n```rust\r\nfn main() {\r\n let foo = 5u;\r\n const foo: uint = 42;\r\n println!(\"{}\", foo);\r\n}\r\n```\r\nAnd when that is not an issue, it seems that local bindings shadow items:\r\n```rust\r\nfn main() {\r\n let foo = || 5u;\r\n fn foo() -> uint { 42 }\r\n println!(\"{}\", foo()); // prints 5\r\n}\r\n```"}},"public":true,"created_at":"2015-01-01T15:08:29Z","org":{"id":5430905,"login":"rust-lang","gravatar_id":"","url":"https://api.github.com/orgs/rust-lang","avatar_url":"https://avatars.githubusercontent.com/u/5430905?"}} +,{"id":"2489654990","type":"PushEvent","actor":{"id":1992248,"login":"d-torrance","gravatar_id":"","url":"https://api.github.com/users/d-torrance","avatar_url":"https://avatars.githubusercontent.com/u/1992248?"},"repo":{"id":23608419,"name":"d-torrance/wmaker","url":"https://api.github.com/repos/d-torrance/wmaker"},"payload":{"push_id":536865760,"size":9,"distinct_size":9,"ref":"refs/heads/next","head":"33d711ce6a66263f32b73b09a8ff52ddfb3d4c0f","before":"e3769a0b09a84577532901303aef4c20ea61cb75","commits":[{"sha":"a5a23f966e3d541d1d0bb126c87360f897edc6ab","author":{"email":"31c20e73fa29248cc7bf440ac9d720ff6d88fd3e@ziggo.nl","name":"Alwin"},"message":"WINGs: trivial fix in text string\n\nFix a typo in an error message.","distinct":true,"url":"https://api.github.com/repos/d-torrance/wmaker/commits/a5a23f966e3d541d1d0bb126c87360f897edc6ab"},{"sha":"a65536f5004dd3dbef8e71966ca22512c13f1584","author":{"email":"31c20e73fa29248cc7bf440ac9d720ff6d88fd3e@ziggo.nl","name":"Alwin"},"message":"WMaker: trivial fixes in text strings\n\nAdd missing spaces in balloons/error messages. Capitalize `Alt' in\nballoon. One report by the Italian translater.","distinct":true,"url":"https://api.github.com/repos/d-torrance/wmaker/commits/a65536f5004dd3dbef8e71966ca22512c13f1584"},{"sha":"94136ad29a2aa85ac612d47063921e954e42ede6","author":{"email":"31c20e73fa29248cc7bf440ac9d720ff6d88fd3e@ziggo.nl","name":"Alwin"},"message":"WPrefs: trivial fixes in text strings\n\nFix a typo in an error message. Remove an inconsistent dot on a\nbutton. Adds a missing dot in Expert preferences.","distinct":true,"url":"https://api.github.com/repos/d-torrance/wmaker/commits/94136ad29a2aa85ac612d47063921e954e42ede6"},{"sha":"7962bfa612958abb6d10421c6fa235c714b7f8cf","author":{"email":"5cdb077d9450aebad836d06fc0b94e46e51ec4a0@free.fr","name":"Christophe CURIS"},"message":"wmaker: removed global variable \"flags.nopolling\"\n\nAs found by Rodolfo García Peñas, this flag is never given a value; further\ninvestigations in the history of the project show that this flag have never\nbeen implemented because its action is totally redundant with the flag\n\"noupdate\".\n\nAs the later flag's name is more clear about what the behaviour for the\nuser is, as opposed to what is being done under the hood, its name is kept\nand the \"nopolling\" flag is removed.\n\nSigned-off-by: Christophe CURIS ","distinct":true,"url":"https://api.github.com/repos/d-torrance/wmaker/commits/7962bfa612958abb6d10421c6fa235c714b7f8cf"},{"sha":"e78e485fb3fe3e46870d874ed9bc78764b930fdd","author":{"email":"5cdb077d9450aebad836d06fc0b94e46e51ec4a0@free.fr","name":"Christophe CURIS"},"message":"make: do not compile stuff in the 'test' directory\n\nTo be consistent with the rest of the project's behaviour, do not try to\ncompile what is in the toplevel's \"test\" directory for a normal\ncompilation.\n\nThe content of this directory does not really test anything, so it is not\nuseful for users, and there is always the risk that it could break\ncompilation because it is not heavily maintained (and does not deserves to)\nso this patch just skips the directory, as already done for wrlib/tests/\nand WINGs/Tests.\n\nSigned-off-by: Christophe CURIS ","distinct":true,"url":"https://api.github.com/repos/d-torrance/wmaker/commits/e78e485fb3fe3e46870d874ed9bc78764b930fdd"},{"sha":"35fe34ac854237c5616fd39c799eead282658667","author":{"email":"5cdb077d9450aebad836d06fc0b94e46e51ec4a0@free.fr","name":"Christophe CURIS"},"message":"Renamed \"Aperçu\" into \"Mini-Preview\" in visible places\n\nHaving an thing whose name requires special UTF-8 character to be properly\ndisplayed is a source of portability problem (including xgettext issue\nreported by Alwin);\n\nConsidering also that this french word is only understood (sparesely) in\nGreat Britain, but not by international english speaking community;\n\nThis patch then replace it by the \"Mini-Preview\" suggested by Yuri\nTarasievich, which is more likely to be understood.\n\nSigned-off-by: Christophe CURIS ","distinct":true,"url":"https://api.github.com/repos/d-torrance/wmaker/commits/35fe34ac854237c5616fd39c799eead282658667"},{"sha":"67b4302ef8f4ac641f1c27a8423b33134bcbe063","author":{"email":"5cdb077d9450aebad836d06fc0b94e46e51ec4a0@free.fr","name":"Christophe CURIS"},"message":"Renamed \"apercu\" to \"minipreview\" in the source code\n\nTo be consistent, all place where the not-properly-written \"apercu\" was\nused in the source code (of wmaker and WPrefs) it has been replaced by an\nappropriate \"minipreview\" or similar, to be in line with the new name\nsuggested by Yuri Tarasievich.\n\nThis new name is better understood by contributors who speak usual english,\nbut not this word which comes From french but is sparsely understood by\nbritish people.\n\nSigned-off-by: Christophe CURIS ","distinct":true,"url":"https://api.github.com/repos/d-torrance/wmaker/commits/67b4302ef8f4ac641f1c27a8423b33134bcbe063"},{"sha":"5c9438115b478c6b15059f98873acb0f5cd9e1af","author":{"email":"5cdb077d9450aebad836d06fc0b94e46e51ec4a0@free.fr","name":"Christophe CURIS"},"message":"Renamed \"Apercu\" to \"MiniPreview\" in the configuration database\n\nThe name of the 2 settings have been changed:\n - enable: MiniwindowApercuBalloons -> MiniwindowPreviewBalloons\n - size: ApercuSize -> MiniPreviewSize\n\nThe old name is still supported to avoid breaking user's configuration, but\nWPrefs will update the setting to the new names when updating the\nconfiguration.\n\nSigned-off-by: Christophe CURIS ","distinct":true,"url":"https://api.github.com/repos/d-torrance/wmaker/commits/5c9438115b478c6b15059f98873acb0f5cd9e1af"},{"sha":"33d711ce6a66263f32b73b09a8ff52ddfb3d4c0f","author":{"email":"5cdb077d9450aebad836d06fc0b94e46e51ec4a0@free.fr","name":"Christophe CURIS"},"message":"wmaker: remove execute permissions on the source file 'wsmap.c'\n\nA source file is not supposed to have the 'execute' bit set, removing it to\navoid problems.\n\nSigned-off-by: Christophe CURIS ","distinct":true,"url":"https://api.github.com/repos/d-torrance/wmaker/commits/33d711ce6a66263f32b73b09a8ff52ddfb3d4c0f"}]},"public":true,"created_at":"2015-01-01T15:08:29Z"} +,{"id":"2489654991","type":"PushEvent","actor":{"id":2188119,"login":"svera","gravatar_id":"","url":"https://api.github.com/users/svera","avatar_url":"https://avatars.githubusercontent.com/u/2188119?"},"repo":{"id":27594758,"name":"svera/lemur","url":"https://api.github.com/repos/svera/lemur"},"payload":{"push_id":536865761,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fa3a1ac253fc1062c779ca196b0866936d3b74b7","before":"4db4225ad3741c46e715a90f07f2e9c7328f026d","commits":[{"sha":"fa3a1ac253fc1062c779ca196b0866936d3b74b7","author":{"email":"4f40033c44118107d3e33de4925e41cdae631eea@gmail.com","name":"Sergio Vera"},"message":"Upgraded oauth lib and added php codesniffer","distinct":true,"url":"https://api.github.com/repos/svera/lemur/commits/fa3a1ac253fc1062c779ca196b0866936d3b74b7"}]},"public":true,"created_at":"2015-01-01T15:08:30Z"} +,{"id":"2489654994","type":"WatchEvent","actor":{"id":1857554,"login":"visualcookie","gravatar_id":"","url":"https://api.github.com/users/visualcookie","avatar_url":"https://avatars.githubusercontent.com/u/1857554?"},"repo":{"id":3228505,"name":"atom/atom","url":"https://api.github.com/repos/atom/atom"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:30Z","org":{"id":1089146,"login":"atom","gravatar_id":"","url":"https://api.github.com/orgs/atom","avatar_url":"https://avatars.githubusercontent.com/u/1089146?"}} +,{"id":"2489654995","type":"CreateEvent","actor":{"id":1258053,"login":"Meumeu","gravatar_id":"","url":"https://api.github.com/users/Meumeu","avatar_url":"https://avatars.githubusercontent.com/u/1258053?"},"repo":{"id":28688747,"name":"Meumeu/mmp","url":"https://api.github.com/repos/Meumeu/mmp"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Marapin Music Player","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:30Z"} +,{"id":"2489654996","type":"PushEvent","actor":{"id":2266445,"login":"littleguy77","gravatar_id":"","url":"https://api.github.com/users/littleguy77","avatar_url":"https://avatars.githubusercontent.com/u/2266445?"},"repo":{"id":16059788,"name":"mupen64plus-ae/mupen64plus-audio-sdl","url":"https://api.github.com/repos/mupen64plus-ae/mupen64plus-audio-sdl"},"payload":{"push_id":536865763,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9d4422c7082a37065cf806f6fc4a8dfd5cefb84f","before":"863fb3c34a3fd1e2242510d63c802f8545bd5a55","commits":[{"sha":"9d4422c7082a37065cf806f6fc4a8dfd5cefb84f","author":{"email":"3284d2bbee488692d686f402dfa36007d3fba8b4@live.com","name":"littleguy77"},"message":"Create README.md\n\nThis fork is obsolete and should no longer be used.\r\n\r\nmupen64plus-ae is now using a completely vanilla implementation of mupen64plus-audio-sdl.","distinct":true,"url":"https://api.github.com/repos/mupen64plus-ae/mupen64plus-audio-sdl/commits/9d4422c7082a37065cf806f6fc4a8dfd5cefb84f"}]},"public":true,"created_at":"2015-01-01T15:08:30Z","org":{"id":6227843,"login":"mupen64plus-ae","gravatar_id":"","url":"https://api.github.com/orgs/mupen64plus-ae","avatar_url":"https://avatars.githubusercontent.com/u/6227843?"}} +,{"id":"2489654997","type":"PushEvent","actor":{"id":2197974,"login":"RoopeHakulinen","gravatar_id":"","url":"https://api.github.com/users/RoopeHakulinen","avatar_url":"https://avatars.githubusercontent.com/u/2197974?"},"repo":{"id":24994137,"name":"ActiverLtd/APIServer","url":"https://api.github.com/repos/ActiverLtd/APIServer"},"payload":{"push_id":536865764,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ced67553960875f0e7690f525973cf35d77bdc2d","before":"32dad9f578c79270f3ea823ea0b4bc6bc09c5366","commits":[{"sha":"ced67553960875f0e7690f525973cf35d77bdc2d","author":{"email":"81234c317d6d60ad2c5c18723e7b49d4d0d8015a@hotmail.com","name":"RoopeHakulinen"},"message":"Committed the default keys for development.","distinct":true,"url":"https://api.github.com/repos/ActiverLtd/APIServer/commits/ced67553960875f0e7690f525973cf35d77bdc2d"}]},"public":true,"created_at":"2015-01-01T15:08:30Z","org":{"id":9628420,"login":"ActiverLtd","gravatar_id":"","url":"https://api.github.com/orgs/ActiverLtd","avatar_url":"https://avatars.githubusercontent.com/u/9628420?"}} +,{"id":"2489654998","type":"WatchEvent","actor":{"id":2622837,"login":"petamoriken","gravatar_id":"","url":"https://api.github.com/users/petamoriken","avatar_url":"https://avatars.githubusercontent.com/u/2622837?"},"repo":{"id":15057328,"name":"bjornm/libvorbis-js","url":"https://api.github.com/repos/bjornm/libvorbis-js"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:30Z"} +,{"id":"2489654999","type":"IssueCommentEvent","actor":{"id":10350644,"login":"The-1-7-10-Pack","gravatar_id":"","url":"https://api.github.com/users/The-1-7-10-Pack","avatar_url":"https://avatars.githubusercontent.com/u/10350644?"},"repo":{"id":28636705,"name":"The-1-7-10-Pack/The-1.7.10-Pack","url":"https://api.github.com/repos/The-1-7-10-Pack/The-1.7.10-Pack"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/The-1-7-10-Pack/The-1.7.10-Pack/issues/13","labels_url":"https://api.github.com/repos/The-1-7-10-Pack/The-1.7.10-Pack/issues/13/labels{/name}","comments_url":"https://api.github.com/repos/The-1-7-10-Pack/The-1.7.10-Pack/issues/13/comments","events_url":"https://api.github.com/repos/The-1-7-10-Pack/The-1.7.10-Pack/issues/13/events","html_url":"https://github.com/The-1-7-10-Pack/The-1.7.10-Pack/issues/13","id":53221396,"number":13,"title":"Server crash when launch","user":{"login":"Liverkiller14","id":10364412,"avatar_url":"https://avatars.githubusercontent.com/u/10364412?v=3","gravatar_id":"","url":"https://api.github.com/users/Liverkiller14","html_url":"https://github.com/Liverkiller14","followers_url":"https://api.github.com/users/Liverkiller14/followers","following_url":"https://api.github.com/users/Liverkiller14/following{/other_user}","gists_url":"https://api.github.com/users/Liverkiller14/gists{/gist_id}","starred_url":"https://api.github.com/users/Liverkiller14/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Liverkiller14/subscriptions","organizations_url":"https://api.github.com/users/Liverkiller14/orgs","repos_url":"https://api.github.com/users/Liverkiller14/repos","events_url":"https://api.github.com/users/Liverkiller14/events{/privacy}","received_events_url":"https://api.github.com/users/Liverkiller14/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:03:18Z","updated_at":"2015-01-01T15:08:31Z","closed_at":null,"body":"Anytime i try launch my server for my friends to play on it crashes (Im using 0.6.1)"},"comment":{"url":"https://api.github.com/repos/The-1-7-10-Pack/The-1.7.10-Pack/issues/comments/68488659","html_url":"https://github.com/The-1-7-10-Pack/The-1.7.10-Pack/issues/13#issuecomment-68488659","issue_url":"https://api.github.com/repos/The-1-7-10-Pack/The-1.7.10-Pack/issues/13","id":68488659,"user":{"login":"The-1-7-10-Pack","id":10350644,"avatar_url":"https://avatars.githubusercontent.com/u/10350644?v=3","gravatar_id":"","url":"https://api.github.com/users/The-1-7-10-Pack","html_url":"https://github.com/The-1-7-10-Pack","followers_url":"https://api.github.com/users/The-1-7-10-Pack/followers","following_url":"https://api.github.com/users/The-1-7-10-Pack/following{/other_user}","gists_url":"https://api.github.com/users/The-1-7-10-Pack/gists{/gist_id}","starred_url":"https://api.github.com/users/The-1-7-10-Pack/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/The-1-7-10-Pack/subscriptions","organizations_url":"https://api.github.com/users/The-1-7-10-Pack/orgs","repos_url":"https://api.github.com/users/The-1-7-10-Pack/repos","events_url":"https://api.github.com/users/The-1-7-10-Pack/events{/privacy}","received_events_url":"https://api.github.com/users/The-1-7-10-Pack/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:08:31Z","updated_at":"2015-01-01T15:08:31Z","body":"It started since the update?\r\nPlease provide a crash report and more information.\r\nPost the crash report link through http://pastebin.com"}},"public":true,"created_at":"2015-01-01T15:08:31Z"} +,{"id":"2489655000","type":"PushEvent","actor":{"id":1473701,"login":"myarichuk","gravatar_id":"","url":"https://api.github.com/users/myarichuk","avatar_url":"https://avatars.githubusercontent.com/u/1473701?"},"repo":{"id":13218168,"name":"myarichuk/ravendb","url":"https://api.github.com/repos/myarichuk/ravendb"},"payload":{"push_id":536865765,"size":9,"distinct_size":9,"ref":"refs/heads/RavenDB-3025","head":"b5f08062a066d29285ab65afb0f8bf488dce5d6b","before":"0da88493bf2b0866cd6dde2cf866bbc0a39e1c79","commits":[{"sha":"6baf280068905553d4905fab18f62b413a8d5d8e","author":{"email":"94307de59ddf15aee41457b4cbff51483f8502d5@corvalius.com","name":"Federico Lois"},"message":"RavemDB-3092: Bulk insert from 2.5 client into 3.0 on esent fails with duplicate key even if CheckForUpdate=true","distinct":true,"url":"https://api.github.com/repos/myarichuk/ravendb/commits/6baf280068905553d4905fab18f62b413a8d5d8e"},{"sha":"7a83f2484e608c4f395c1fe5ff4e3249d8ebd0be","author":{"email":"b92f94d179fae96e46b2950d8ced1c17a099c0bd@ais.pl","name":"Arkadiusz Palinski"},"message":"RavenDB-3090 Don't count transient errors such as out of memory as bad index","distinct":true,"url":"https://api.github.com/repos/myarichuk/ravendb/commits/7a83f2484e608c4f395c1fe5ff4e3249d8ebd0be"},{"sha":"005d252af262595845a1f43e5dc96657c456216e","author":{"email":"6eb24f54eaf746d3a75dcf63a64261574d2f3aa0@ayende.com","name":"Tal Weiss"},"message":"Resolved an issue where ShardedStrategy.ModifyDocumentId would keep concatenating shardId to document id\nhttp://issues.hibernatingrhinos.com/issue/RavenDB-3075","distinct":true,"url":"https://api.github.com/repos/myarichuk/ravendb/commits/005d252af262595845a1f43e5dc96657c456216e"},{"sha":"f951fa09d89f2082cbaf0220e7293efdaad84ae1","author":{"email":"6eb24f54eaf746d3a75dcf63a64261574d2f3aa0@ayende.com","name":"Tal Weiss"},"message":"Merge branch 'master' of https://github.com/ayende/ravendb","distinct":true,"url":"https://api.github.com/repos/myarichuk/ravendb/commits/f951fa09d89f2082cbaf0220e7293efdaad84ae1"},{"sha":"e4c420f007466656bf9a1a9f2d0c4727ddb553e8","author":{"email":"72c47a07e3ac029696b4eff8a030dc2eb2263e95@ayende.com","name":"Ayende Rahien"},"message":"Merge branch 'master' of https://github.com/Corvalius/ravendb","distinct":true,"url":"https://api.github.com/repos/myarichuk/ravendb/commits/e4c420f007466656bf9a1a9f2d0c4727ddb553e8"},{"sha":"7fe9a88c3e9d87420b8c799f00ccf17edd19b6d6","author":{"email":"72c47a07e3ac029696b4eff8a030dc2eb2263e95@ayende.com","name":"Ayende Rahien"},"message":"Merge branch 'master' of https://github.com/talweiss1982/ravendb","distinct":true,"url":"https://api.github.com/repos/myarichuk/ravendb/commits/7fe9a88c3e9d87420b8c799f00ccf17edd19b6d6"},{"sha":"405afe9be6e354336f3488405d2cb7e433c2e608","author":{"email":"72c47a07e3ac029696b4eff8a030dc2eb2263e95@ayende.com","name":"Ayende Rahien"},"message":"Fixing file rename","distinct":true,"url":"https://api.github.com/repos/myarichuk/ravendb/commits/405afe9be6e354336f3488405d2cb7e433c2e608"},{"sha":"c5387833eb930eb0b754a66d4f00fc606290cb3a","author":{"email":"72c47a07e3ac029696b4eff8a030dc2eb2263e95@ayende.com","name":"Ayende Rahien"},"message":"Importing a fix for large decimal values from json.net","distinct":true,"url":"https://api.github.com/repos/myarichuk/ravendb/commits/c5387833eb930eb0b754a66d4f00fc606290cb3a"},{"sha":"b5f08062a066d29285ab65afb0f8bf488dce5d6b","author":{"email":"442479e538d65b5b2e24921828463c68c80368a6@gmail.com","name":"Michael Yarichuk"},"message":"Merge branch 'master' of github.com:ayende/ravendb into RavenDB-3025","distinct":true,"url":"https://api.github.com/repos/myarichuk/ravendb/commits/b5f08062a066d29285ab65afb0f8bf488dce5d6b"}]},"public":true,"created_at":"2015-01-01T15:08:31Z"} +,{"id":"2489655001","type":"PushEvent","actor":{"id":2664774,"login":"wheam","gravatar_id":"","url":"https://api.github.com/users/wheam","avatar_url":"https://avatars.githubusercontent.com/u/2664774?"},"repo":{"id":13536047,"name":"wheam/wheam.github.io","url":"https://api.github.com/repos/wheam/wheam.github.io"},"payload":{"push_id":536865766,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"614bda3336ba45f0be525211b04f20dec7afb63f","before":"df75b65703aee4bab5190d3a6ab07d7b11bed967","commits":[{"sha":"614bda3336ba45f0be525211b04f20dec7afb63f","author":{"email":"c6ac85a4320ded3eda694c32a731b2fa48dc57e8@gmail.com","name":"wheam"},"message":"Site updated: 2015-01-01 23:08:18","distinct":true,"url":"https://api.github.com/repos/wheam/wheam.github.io/commits/614bda3336ba45f0be525211b04f20dec7afb63f"}]},"public":true,"created_at":"2015-01-01T15:08:31Z"} +,{"id":"2489655004","type":"CreateEvent","actor":{"id":5897310,"login":"Inertar","gravatar_id":"","url":"https://api.github.com/users/Inertar","avatar_url":"https://avatars.githubusercontent.com/u/5897310?"},"repo":{"id":28688748,"name":"Inertar/mathlib","url":"https://api.github.com/repos/Inertar/mathlib"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:31Z"} +,{"id":"2489655005","type":"IssueCommentEvent","actor":{"id":413028,"login":"Type1J","gravatar_id":"","url":"https://api.github.com/users/Type1J","avatar_url":"https://avatars.githubusercontent.com/u/413028?"},"repo":{"id":10876724,"name":"openfl/lime","url":"https://api.github.com/repos/openfl/lime"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/openfl/lime/issues/222","labels_url":"https://api.github.com/repos/openfl/lime/issues/222/labels{/name}","comments_url":"https://api.github.com/repos/openfl/lime/issues/222/comments","events_url":"https://api.github.com/repos/openfl/lime/issues/222/events","html_url":"https://github.com/openfl/lime/issues/222","id":43138736,"number":222,"title":"Color channel order is inconstant across platforms.","user":{"login":"Type1J","id":413028,"avatar_url":"https://avatars.githubusercontent.com/u/413028?v=3","gravatar_id":"","url":"https://api.github.com/users/Type1J","html_url":"https://github.com/Type1J","followers_url":"https://api.github.com/users/Type1J/followers","following_url":"https://api.github.com/users/Type1J/following{/other_user}","gists_url":"https://api.github.com/users/Type1J/gists{/gist_id}","starred_url":"https://api.github.com/users/Type1J/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Type1J/subscriptions","organizations_url":"https://api.github.com/users/Type1J/orgs","repos_url":"https://api.github.com/users/Type1J/repos","events_url":"https://api.github.com/users/Type1J/events{/privacy}","received_events_url":"https://api.github.com/users/Type1J/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-09-18T14:27:01Z","updated_at":"2015-01-01T15:08:31Z","closed_at":"2014-12-31T23:10:43Z","body":"The order of the colors in OpenFL's BitmapData class should be ARGB, and set to big endian. However, the getPixels() call returns a ByteArray that has RGBA, and still set to big endian. Because the alpha channel is now on the other side of the color channels, it's not an endian problem. Although OpenFL displays what it loads through Lime correctly, the app's interpretation of the pixel will be incorrect for apps that directly manipulate or generate pixel information because they will expect it to be in ARGB."},"comment":{"url":"https://api.github.com/repos/openfl/lime/issues/comments/68488660","html_url":"https://github.com/openfl/lime/issues/222#issuecomment-68488660","issue_url":"https://api.github.com/repos/openfl/lime/issues/222","id":68488660,"user":{"login":"Type1J","id":413028,"avatar_url":"https://avatars.githubusercontent.com/u/413028?v=3","gravatar_id":"","url":"https://api.github.com/users/Type1J","html_url":"https://github.com/Type1J","followers_url":"https://api.github.com/users/Type1J/followers","following_url":"https://api.github.com/users/Type1J/following{/other_user}","gists_url":"https://api.github.com/users/Type1J/gists{/gist_id}","starred_url":"https://api.github.com/users/Type1J/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Type1J/subscriptions","organizations_url":"https://api.github.com/users/Type1J/orgs","repos_url":"https://api.github.com/users/Type1J/repos","events_url":"https://api.github.com/users/Type1J/events{/privacy}","received_events_url":"https://api.github.com/users/Type1J/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:08:31Z","updated_at":"2015-01-01T15:08:31Z","body":"Thanks!"}},"public":true,"created_at":"2015-01-01T15:08:31Z","org":{"id":4061208,"login":"openfl","gravatar_id":"","url":"https://api.github.com/orgs/openfl","avatar_url":"https://avatars.githubusercontent.com/u/4061208?"}} +,{"id":"2489655008","type":"PushEvent","actor":{"id":6860877,"login":"cpressey","gravatar_id":"","url":"https://api.github.com/users/cpressey","avatar_url":"https://avatars.githubusercontent.com/u/6860877?"},"repo":{"id":4767599,"name":"catseye/ALPACA","url":"https://api.github.com/repos/catseye/ALPACA"},"payload":{"push_id":536865769,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"a32e87253bb44683825ae693d516c9ff87427fc6","before":"3c92147b0353d0133ef5f5d7a104308a3b28143c","commits":[{"sha":"7d8ed21dccb1ac63c8dc9315d66c01ecc61aec78","author":{"email":"c7632e440b1c466d6ce6e3f0599fca74ae105873@catseye.tc","name":"Chris Pressey"},"message":"Propogate exitcode in test.sh.","distinct":true,"url":"https://api.github.com/repos/catseye/ALPACA/commits/7d8ed21dccb1ac63c8dc9315d66c01ecc61aec78"},{"sha":"a32e87253bb44683825ae693d516c9ff87427fc6","author":{"email":"c7632e440b1c466d6ce6e3f0599fca74ae105873@catseye.tc","name":"Chris Pressey"},"message":"Added tag rel_1_0_2015_0101 for changeset 6217e0569d5c","distinct":true,"url":"https://api.github.com/repos/catseye/ALPACA/commits/a32e87253bb44683825ae693d516c9ff87427fc6"}]},"public":true,"created_at":"2015-01-01T15:08:32Z","org":{"id":1134322,"login":"catseye","gravatar_id":"","url":"https://api.github.com/orgs/catseye","avatar_url":"https://avatars.githubusercontent.com/u/1134322?"}} +,{"id":"2489655009","type":"CreateEvent","actor":{"id":6860877,"login":"cpressey","gravatar_id":"","url":"https://api.github.com/users/cpressey","avatar_url":"https://avatars.githubusercontent.com/u/6860877?"},"repo":{"id":4767599,"name":"catseye/ALPACA","url":"https://api.github.com/repos/catseye/ALPACA"},"payload":{"ref":"rel_1_0_2015_0101","ref_type":"tag","master_branch":"master","description":"A Language for the Pithy Articulation of Cellular Automata [BSD license*]","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:32Z","org":{"id":1134322,"login":"catseye","gravatar_id":"","url":"https://api.github.com/orgs/catseye","avatar_url":"https://avatars.githubusercontent.com/u/1134322?"}} +,{"id":"2489655011","type":"PushEvent","actor":{"id":359286,"login":"aliva","gravatar_id":"","url":"https://api.github.com/users/aliva","avatar_url":"https://avatars.githubusercontent.com/u/359286?"},"repo":{"id":24457287,"name":"aliva/dotfiles","url":"https://api.github.com/repos/aliva/dotfiles"},"payload":{"push_id":536865771,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"0845f518736935fa5c0e4e32cfc8992f25adf4a4","before":"c9816535608695851ae960b8dbeef8c25d41e716","commits":[{"sha":"5c5d66472f17156488e9161430f23373b2564730","author":{"email":"b42a6d93d796915222f6ffb2ffdd6137d93c1cdb@vakilzade.ir","name":"Ali Vakilzade"},"message":"new method for any","distinct":true,"url":"https://api.github.com/repos/aliva/dotfiles/commits/5c5d66472f17156488e9161430f23373b2564730"},{"sha":"0845f518736935fa5c0e4e32cfc8992f25adf4a4","author":{"email":"b42a6d93d796915222f6ffb2ffdd6137d93c1cdb@vakilzade.ir","name":"Ali Vakilzade"},"message":"disable goldenview","distinct":true,"url":"https://api.github.com/repos/aliva/dotfiles/commits/0845f518736935fa5c0e4e32cfc8992f25adf4a4"}]},"public":true,"created_at":"2015-01-01T15:08:32Z"} +,{"id":"2489655012","type":"WatchEvent","actor":{"id":275211,"login":"DSB","gravatar_id":"","url":"https://api.github.com/users/DSB","avatar_url":"https://avatars.githubusercontent.com/u/275211?"},"repo":{"id":6711239,"name":"DSB/oTranCe","url":"https://api.github.com/repos/DSB/oTranCe"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:33Z"} +,{"id":"2489655018","type":"PushEvent","actor":{"id":5451787,"login":"jdeluyck","gravatar_id":"","url":"https://api.github.com/users/jdeluyck","avatar_url":"https://avatars.githubusercontent.com/u/5451787?"},"repo":{"id":14086397,"name":"jdeluyck/android","url":"https://api.github.com/repos/jdeluyck/android"},"payload":{"push_id":536865773,"size":1,"distinct_size":1,"ref":"refs/heads/cm-11.0","head":"54dc6720f491ef19afb6f56de3937d5c59194ab6","before":"46f8e99fff6891c142050f1d2be0e1d3043863f5","commits":[{"sha":"54dc6720f491ef19afb6f56de3937d5c59194ab6","author":{"email":"e816b4b5f2eede266db4d9a00415215d52e545d8@kcore.org","name":"Jan De Luyck"},"message":"bleh\n\nChange-Id: I93f513bb96b27afc3de2fdf886d3d9db746a1ac4","distinct":true,"url":"https://api.github.com/repos/jdeluyck/android/commits/54dc6720f491ef19afb6f56de3937d5c59194ab6"}]},"public":true,"created_at":"2015-01-01T15:08:33Z"} +,{"id":"2489655020","type":"CreateEvent","actor":{"id":2345334,"login":"menuitem","gravatar_id":"","url":"https://api.github.com/users/menuitem","avatar_url":"https://avatars.githubusercontent.com/u/2345334?"},"repo":{"id":28688749,"name":"menuitem/Pacific","url":"https://api.github.com/repos/menuitem/Pacific"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:34Z"} +,{"id":"2489655024","type":"PushEvent","actor":{"id":4030279,"login":"skvoz","gravatar_id":"","url":"https://api.github.com/users/skvoz","avatar_url":"https://avatars.githubusercontent.com/u/4030279?"},"repo":{"id":28687202,"name":"skvoz/book_code_complete_theses","url":"https://api.github.com/repos/skvoz/book_code_complete_theses"},"payload":{"push_id":536865775,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"26dc8a55a412a0a1f10d05dcf30e938e8f1c7ccd","before":"e6d8f44785f5668db9764298ae889e6d80566255","commits":[{"sha":"26dc8a55a412a0a1f10d05dcf30e938e8f1c7ccd","author":{"email":"8413da43b68ab092977e740de499eeaacbf25aef@mozidev.com","name":"skvoz"},"message":"add list theses","distinct":true,"url":"https://api.github.com/repos/skvoz/book_code_complete_theses/commits/26dc8a55a412a0a1f10d05dcf30e938e8f1c7ccd"}]},"public":true,"created_at":"2015-01-01T15:08:34Z"} +,{"id":"2489655025","type":"PushEvent","actor":{"id":4635095,"login":"arikwestbrook","gravatar_id":"","url":"https://api.github.com/users/arikwestbrook","avatar_url":"https://avatars.githubusercontent.com/u/4635095?"},"repo":{"id":28616651,"name":"arikwestbrook/mosemu","url":"https://api.github.com/repos/arikwestbrook/mosemu"},"payload":{"push_id":536865777,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"915a59d6808567d6a166650e5bdb9cb8d1a95a20","before":"0aedb84da8ee89bedbced7f5b13d2ad425427697","commits":[{"sha":"915a59d6808567d6a166650e5bdb9cb8d1a95a20","author":{"email":"4b08b29fe87907b35044d4afbdacd693712b87f2@gmail.com","name":"arikwestbrook"},"message":"Added CPX, CPY, and slightly simplified comparisons.\nComparisons now use a single '<' instead of a subtraction and a '<' for\nthe F_NEG case.","distinct":true,"url":"https://api.github.com/repos/arikwestbrook/mosemu/commits/915a59d6808567d6a166650e5bdb9cb8d1a95a20"}]},"public":true,"created_at":"2015-01-01T15:08:34Z"} +,{"id":"2489655026","type":"PushEvent","actor":{"id":272626,"login":"jcwoltz","gravatar_id":"","url":"https://api.github.com/users/jcwoltz","avatar_url":"https://avatars.githubusercontent.com/u/272626?"},"repo":{"id":22649500,"name":"jcwoltz/mrrapi","url":"https://api.github.com/repos/jcwoltz/mrrapi"},"payload":{"push_id":536865778,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"818b6687de33960499368f0499fd6976c2007ad5","before":"d1fbf9c278bf584a8708a8c98c743e678b667168","commits":[{"sha":"bf2c72ab4a577a9957e0f57778e1d7e81a1e1420","author":{"email":"8faaf40336f7e1b5184b98d8d549eddb37e62742@gmail.com","name":"J.C. Woltz"},"message":"move mrrapi into init","distinct":true,"url":"https://api.github.com/repos/jcwoltz/mrrapi/commits/bf2c72ab4a577a9957e0f57778e1d7e81a1e1420"},{"sha":"818b6687de33960499368f0499fd6976c2007ad5","author":{"email":"8faaf40336f7e1b5184b98d8d549eddb37e62742@gmail.com","name":"J.C. Woltz"},"message":"move script to tools","distinct":true,"url":"https://api.github.com/repos/jcwoltz/mrrapi/commits/818b6687de33960499368f0499fd6976c2007ad5"}]},"public":true,"created_at":"2015-01-01T15:08:34Z"} +,{"id":"2489655029","type":"ForkEvent","actor":{"id":6049993,"login":"zawsx","gravatar_id":"","url":"https://api.github.com/users/zawsx","avatar_url":"https://avatars.githubusercontent.com/u/6049993?"},"repo":{"id":6126775,"name":"ushahidi/platform","url":"https://api.github.com/repos/ushahidi/platform"},"payload":{"forkee":{"id":28688750,"name":"platform","full_name":"zawsx/platform","owner":{"login":"zawsx","id":6049993,"avatar_url":"https://avatars.githubusercontent.com/u/6049993?v=3","gravatar_id":"","url":"https://api.github.com/users/zawsx","html_url":"https://github.com/zawsx","followers_url":"https://api.github.com/users/zawsx/followers","following_url":"https://api.github.com/users/zawsx/following{/other_user}","gists_url":"https://api.github.com/users/zawsx/gists{/gist_id}","starred_url":"https://api.github.com/users/zawsx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zawsx/subscriptions","organizations_url":"https://api.github.com/users/zawsx/orgs","repos_url":"https://api.github.com/users/zawsx/repos","events_url":"https://api.github.com/users/zawsx/events{/privacy}","received_events_url":"https://api.github.com/users/zawsx/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/zawsx/platform","description":"Ushahidi Platform v3 – currently in BETA!","fork":true,"url":"https://api.github.com/repos/zawsx/platform","forks_url":"https://api.github.com/repos/zawsx/platform/forks","keys_url":"https://api.github.com/repos/zawsx/platform/keys{/key_id}","collaborators_url":"https://api.github.com/repos/zawsx/platform/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/zawsx/platform/teams","hooks_url":"https://api.github.com/repos/zawsx/platform/hooks","issue_events_url":"https://api.github.com/repos/zawsx/platform/issues/events{/number}","events_url":"https://api.github.com/repos/zawsx/platform/events","assignees_url":"https://api.github.com/repos/zawsx/platform/assignees{/user}","branches_url":"https://api.github.com/repos/zawsx/platform/branches{/branch}","tags_url":"https://api.github.com/repos/zawsx/platform/tags","blobs_url":"https://api.github.com/repos/zawsx/platform/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/zawsx/platform/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/zawsx/platform/git/refs{/sha}","trees_url":"https://api.github.com/repos/zawsx/platform/git/trees{/sha}","statuses_url":"https://api.github.com/repos/zawsx/platform/statuses/{sha}","languages_url":"https://api.github.com/repos/zawsx/platform/languages","stargazers_url":"https://api.github.com/repos/zawsx/platform/stargazers","contributors_url":"https://api.github.com/repos/zawsx/platform/contributors","subscribers_url":"https://api.github.com/repos/zawsx/platform/subscribers","subscription_url":"https://api.github.com/repos/zawsx/platform/subscription","commits_url":"https://api.github.com/repos/zawsx/platform/commits{/sha}","git_commits_url":"https://api.github.com/repos/zawsx/platform/git/commits{/sha}","comments_url":"https://api.github.com/repos/zawsx/platform/comments{/number}","issue_comment_url":"https://api.github.com/repos/zawsx/platform/issues/comments/{number}","contents_url":"https://api.github.com/repos/zawsx/platform/contents/{+path}","compare_url":"https://api.github.com/repos/zawsx/platform/compare/{base}...{head}","merges_url":"https://api.github.com/repos/zawsx/platform/merges","archive_url":"https://api.github.com/repos/zawsx/platform/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/zawsx/platform/downloads","issues_url":"https://api.github.com/repos/zawsx/platform/issues{/number}","pulls_url":"https://api.github.com/repos/zawsx/platform/pulls{/number}","milestones_url":"https://api.github.com/repos/zawsx/platform/milestones{/number}","notifications_url":"https://api.github.com/repos/zawsx/platform/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/zawsx/platform/labels{/name}","releases_url":"https://api.github.com/repos/zawsx/platform/releases{/id}","created_at":"2015-01-01T15:08:34Z","updated_at":"2014-12-28T09:49:49Z","pushed_at":"2014-12-18T19:54:38Z","git_url":"git://github.com/zawsx/platform.git","ssh_url":"git@github.com:zawsx/platform.git","clone_url":"https://github.com/zawsx/platform.git","svn_url":"https://github.com/zawsx/platform","homepage":"https://wiki.ushahidi.com/display/WIKI/Ushahidi%2C+v3.X","size":24532,"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:08:34Z","org":{"id":16959,"login":"ushahidi","gravatar_id":"","url":"https://api.github.com/orgs/ushahidi","avatar_url":"https://avatars.githubusercontent.com/u/16959?"}} +,{"id":"2489655035","type":"WatchEvent","actor":{"id":10364781,"login":"lrebola","gravatar_id":"","url":"https://api.github.com/users/lrebola","avatar_url":"https://avatars.githubusercontent.com/u/10364781?"},"repo":{"id":28428729,"name":"wasabeef/awesome-android-ui","url":"https://api.github.com/repos/wasabeef/awesome-android-ui"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:35Z"} +,{"id":"2489655036","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":536865783,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a7cd30e9de74ed562147c9948bed41b541790999","before":"a78bf575b7d648cbb870e3a7e94be77e2347c61c","commits":[{"sha":"a7cd30e9de74ed562147c9948bed41b541790999","author":{"email":"05c0269870804bada1f091d378fdd69482fe0000@yahoo.com","name":"Matthew Ye"},"message":"rektem\n\nddddddddd","distinct":true,"url":"https://api.github.com/repos/Blimeo/blimeo.github.io/commits/a7cd30e9de74ed562147c9948bed41b541790999"}]},"public":true,"created_at":"2015-01-01T15:08:35Z"} +,{"id":"2489655037","type":"PushEvent","actor":{"id":8104629,"login":"bokuno","gravatar_id":"","url":"https://api.github.com/users/bokuno","avatar_url":"https://avatars.githubusercontent.com/u/8104629?"},"repo":{"id":24809778,"name":"bokuno/My-Life-Guide","url":"https://api.github.com/repos/bokuno/My-Life-Guide"},"payload":{"push_id":536865784,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d099de3081fbe063e76bda538f94cd26eb7f679f","before":"b88bebb5e38d44fb4acec86db1890dbeaba163c6","commits":[{"sha":"d099de3081fbe063e76bda538f94cd26eb7f679f","author":{"email":"94de6783e3e0c5e9db564263a1559866d86cfb4c@yeah.net","name":"bokuno"},"message":"common commit","distinct":true,"url":"https://api.github.com/repos/bokuno/My-Life-Guide/commits/d099de3081fbe063e76bda538f94cd26eb7f679f"}]},"public":true,"created_at":"2015-01-01T15:08:35Z"} +,{"id":"2489655039","type":"CreateEvent","actor":{"id":10148466,"login":"mfrisby","gravatar_id":"","url":"https://api.github.com/users/mfrisby","avatar_url":"https://avatars.githubusercontent.com/u/10148466?"},"repo":{"id":28688751,"name":"mfrisby/fdf","url":"https://api.github.com/repos/mfrisby/fdf"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"work on fdf home to 42","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:36Z"} +,{"id":"2489655044","type":"IssueCommentEvent","actor":{"id":1024028,"login":"ramonsnir","gravatar_id":"","url":"https://api.github.com/users/ramonsnir","avatar_url":"https://avatars.githubusercontent.com/u/1024028?"},"repo":{"id":638870,"name":"ptarjan/node-cache","url":"https://api.github.com/repos/ptarjan/node-cache"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/ptarjan/node-cache/issues/29","labels_url":"https://api.github.com/repos/ptarjan/node-cache/issues/29/labels{/name}","comments_url":"https://api.github.com/repos/ptarjan/node-cache/issues/29/comments","events_url":"https://api.github.com/repos/ptarjan/node-cache/issues/29/events","html_url":"https://github.com/ptarjan/node-cache/issues/29","id":53220417,"number":29,"title":"expire","user":{"login":"kelchy","id":7106648,"avatar_url":"https://avatars.githubusercontent.com/u/7106648?v=3","gravatar_id":"","url":"https://api.github.com/users/kelchy","html_url":"https://github.com/kelchy","followers_url":"https://api.github.com/users/kelchy/followers","following_url":"https://api.github.com/users/kelchy/following{/other_user}","gists_url":"https://api.github.com/users/kelchy/gists{/gist_id}","starred_url":"https://api.github.com/users/kelchy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kelchy/subscriptions","organizations_url":"https://api.github.com/users/kelchy/orgs","repos_url":"https://api.github.com/users/kelchy/repos","events_url":"https://api.github.com/users/kelchy/events{/privacy}","received_events_url":"https://api.github.com/users/kelchy/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T14:11:01Z","updated_at":"2015-01-01T15:08:37Z","closed_at":null,"body":"can we set expire time or ttl?\r\nno mention in readme"},"comment":{"url":"https://api.github.com/repos/ptarjan/node-cache/issues/comments/68488661","html_url":"https://github.com/ptarjan/node-cache/issues/29#issuecomment-68488661","issue_url":"https://api.github.com/repos/ptarjan/node-cache/issues/29","id":68488661,"user":{"login":"ramonsnir","id":1024028,"avatar_url":"https://avatars.githubusercontent.com/u/1024028?v=3","gravatar_id":"","url":"https://api.github.com/users/ramonsnir","html_url":"https://github.com/ramonsnir","followers_url":"https://api.github.com/users/ramonsnir/followers","following_url":"https://api.github.com/users/ramonsnir/following{/other_user}","gists_url":"https://api.github.com/users/ramonsnir/gists{/gist_id}","starred_url":"https://api.github.com/users/ramonsnir/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ramonsnir/subscriptions","organizations_url":"https://api.github.com/users/ramonsnir/orgs","repos_url":"https://api.github.com/users/ramonsnir/repos","events_url":"https://api.github.com/users/ramonsnir/events{/privacy}","received_events_url":"https://api.github.com/users/ramonsnir/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:08:37Z","updated_at":"2015-01-01T15:08:37Z","body":"From the Usage section in README.md:\r\n\r\n```js\r\ncache.put('houdini', 'disapear', 100) // Time in ms\r\n```"}},"public":true,"created_at":"2015-01-01T15:08:38Z"} +,{"id":"2489655047","type":"PushEvent","actor":{"id":3422626,"login":"pelegm","gravatar_id":"","url":"https://api.github.com/users/pelegm","avatar_url":"https://avatars.githubusercontent.com/u/3422626?"},"repo":{"id":24494061,"name":"pelegm/sympy","url":"https://api.github.com/repos/pelegm/sympy"},"payload":{"push_id":536865787,"size":2,"distinct_size":0,"ref":"refs/heads/master","head":"7d7eb6731562f9a7cf25f92264613f0331f72119","before":"ed054cc55f714dab9e809036151f0ca136397604","commits":[{"sha":"ccddb9041a90e22906c648228bb7acb7dc58fb65","author":{"email":"3a21e192a559aa89255c7dc6c606bd7fa252d90c@gmail.com","name":"Sudhanshu Mishra"},"message":"Fix real assumption for gamma function. Fixes #8657.","distinct":false,"url":"https://api.github.com/repos/pelegm/sympy/commits/ccddb9041a90e22906c648228bb7acb7dc58fb65"},{"sha":"7d7eb6731562f9a7cf25f92264613f0331f72119","author":{"email":"6c6368f8f4cbabf33ffd2abfd270a2fcf839188a@gmail.com","name":"Sergey B Kirpichev"},"message":"Merge pull request #8707 from debugger22/gamma-assumption\n\nFix real assumption for gamma function.","distinct":false,"url":"https://api.github.com/repos/pelegm/sympy/commits/7d7eb6731562f9a7cf25f92264613f0331f72119"}]},"public":true,"created_at":"2015-01-01T15:08:38Z"} +,{"id":"2489655048","type":"IssueCommentEvent","actor":{"id":10178301,"login":"MarkusAV","gravatar_id":"","url":"https://api.github.com/users/MarkusAV","avatar_url":"https://avatars.githubusercontent.com/u/10178301?"},"repo":{"id":23853939,"name":"WorldCretornica/PlotMe-Core","url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core/issues/67","labels_url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core/issues/67/labels{/name}","comments_url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core/issues/67/comments","events_url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core/issues/67/events","html_url":"https://github.com/WorldCretornica/PlotMe-Core/issues/67","id":53220545,"number":67,"title":"plotme plots.db help pls","user":{"login":"Burockk","id":10358468,"avatar_url":"https://avatars.githubusercontent.com/u/10358468?v=3","gravatar_id":"","url":"https://api.github.com/users/Burockk","html_url":"https://github.com/Burockk","followers_url":"https://api.github.com/users/Burockk/followers","following_url":"https://api.github.com/users/Burockk/following{/other_user}","gists_url":"https://api.github.com/users/Burockk/gists{/gist_id}","starred_url":"https://api.github.com/users/Burockk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Burockk/subscriptions","organizations_url":"https://api.github.com/users/Burockk/orgs","repos_url":"https://api.github.com/users/Burockk/repos","events_url":"https://api.github.com/users/Burockk/events{/privacy}","received_events_url":"https://api.github.com/users/Burockk/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":8,"created_at":"2015-01-01T14:18:07Z","updated_at":"2015-01-01T15:08:37Z","closed_at":"2015-01-01T15:08:37Z","body":"hey \r\n\r\nI updated latest plotme ı m using old plots.db it works when ı type /plotme info it says old owner but when owner type /p home it says couldnt find your plot how can ı fix it pls help me pls."},"comment":{"url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core/issues/comments/68488662","html_url":"https://github.com/WorldCretornica/PlotMe-Core/issues/67#issuecomment-68488662","issue_url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core/issues/67","id":68488662,"user":{"login":"MarkusAV","id":10178301,"avatar_url":"https://avatars.githubusercontent.com/u/10178301?v=3","gravatar_id":"","url":"https://api.github.com/users/MarkusAV","html_url":"https://github.com/MarkusAV","followers_url":"https://api.github.com/users/MarkusAV/followers","following_url":"https://api.github.com/users/MarkusAV/following{/other_user}","gists_url":"https://api.github.com/users/MarkusAV/gists{/gist_id}","starred_url":"https://api.github.com/users/MarkusAV/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MarkusAV/subscriptions","organizations_url":"https://api.github.com/users/MarkusAV/orgs","repos_url":"https://api.github.com/users/MarkusAV/repos","events_url":"https://api.github.com/users/MarkusAV/events{/privacy}","received_events_url":"https://api.github.com/users/MarkusAV/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:08:37Z","updated_at":"2015-01-01T15:08:37Z","body":"Offline mode is not supported because cracked players do not have a mojang UUID."}},"public":true,"created_at":"2015-01-01T15:08:39Z","org":{"id":6457147,"login":"WorldCretornica","gravatar_id":"","url":"https://api.github.com/orgs/WorldCretornica","avatar_url":"https://avatars.githubusercontent.com/u/6457147?"}} +,{"id":"2489655049","type":"IssuesEvent","actor":{"id":10178301,"login":"MarkusAV","gravatar_id":"","url":"https://api.github.com/users/MarkusAV","avatar_url":"https://avatars.githubusercontent.com/u/10178301?"},"repo":{"id":23853939,"name":"WorldCretornica/PlotMe-Core","url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core/issues/67","labels_url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core/issues/67/labels{/name}","comments_url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core/issues/67/comments","events_url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core/issues/67/events","html_url":"https://github.com/WorldCretornica/PlotMe-Core/issues/67","id":53220545,"number":67,"title":"plotme plots.db help pls","user":{"login":"Burockk","id":10358468,"avatar_url":"https://avatars.githubusercontent.com/u/10358468?v=3","gravatar_id":"","url":"https://api.github.com/users/Burockk","html_url":"https://github.com/Burockk","followers_url":"https://api.github.com/users/Burockk/followers","following_url":"https://api.github.com/users/Burockk/following{/other_user}","gists_url":"https://api.github.com/users/Burockk/gists{/gist_id}","starred_url":"https://api.github.com/users/Burockk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Burockk/subscriptions","organizations_url":"https://api.github.com/users/Burockk/orgs","repos_url":"https://api.github.com/users/Burockk/repos","events_url":"https://api.github.com/users/Burockk/events{/privacy}","received_events_url":"https://api.github.com/users/Burockk/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":8,"created_at":"2015-01-01T14:18:07Z","updated_at":"2015-01-01T15:08:37Z","closed_at":"2015-01-01T15:08:37Z","body":"hey \r\n\r\nI updated latest plotme ı m using old plots.db it works when ı type /plotme info it says old owner but when owner type /p home it says couldnt find your plot how can ı fix it pls help me pls."}},"public":true,"created_at":"2015-01-01T15:08:39Z","org":{"id":6457147,"login":"WorldCretornica","gravatar_id":"","url":"https://api.github.com/orgs/WorldCretornica","avatar_url":"https://avatars.githubusercontent.com/u/6457147?"}} +,{"id":"2489655050","type":"IssuesEvent","actor":{"id":9809727,"login":"fire-eggs","gravatar_id":"","url":"https://api.github.com/users/fire-eggs","avatar_url":"https://avatars.githubusercontent.com/u/9809727?"},"repo":{"id":28404527,"name":"fire-eggs/DanbooruBrowser","url":"https://api.github.com/repos/fire-eggs/DanbooruBrowser"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/fire-eggs/DanbooruBrowser/issues/1","labels_url":"https://api.github.com/repos/fire-eggs/DanbooruBrowser/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/fire-eggs/DanbooruBrowser/issues/1/comments","events_url":"https://api.github.com/repos/fire-eggs/DanbooruBrowser/issues/1/events","html_url":"https://github.com/fire-eggs/DanbooruBrowser/issues/1","id":53221498,"number":1,"title":"Server switch stops thumbs","user":{"login":"fire-eggs","id":9809727,"avatar_url":"https://avatars.githubusercontent.com/u/9809727?v=3","gravatar_id":"","url":"https://api.github.com/users/fire-eggs","html_url":"https://github.com/fire-eggs","followers_url":"https://api.github.com/users/fire-eggs/followers","following_url":"https://api.github.com/users/fire-eggs/following{/other_user}","gists_url":"https://api.github.com/users/fire-eggs/gists{/gist_id}","starred_url":"https://api.github.com/users/fire-eggs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fire-eggs/subscriptions","organizations_url":"https://api.github.com/users/fire-eggs/orgs","repos_url":"https://api.github.com/users/fire-eggs/repos","events_url":"https://api.github.com/users/fire-eggs/events{/privacy}","received_events_url":"https://api.github.com/users/fire-eggs/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:08:37Z","updated_at":"2015-01-01T15:08:37Z","closed_at":null,"body":"1. Start thumbnail refresh esp. with slow server, multiple pages\r\n2. Go to settings, switch server\r\n3. Go back to main\r\n\r\nProgram doesn't find/fill any thumbs."}},"public":true,"created_at":"2015-01-01T15:08:39Z"} +,{"id":"2489655052","type":"PushEvent","actor":{"id":3718679,"login":"zhulingjun","gravatar_id":"","url":"https://api.github.com/users/zhulingjun","avatar_url":"https://avatars.githubusercontent.com/u/3718679?"},"repo":{"id":28685978,"name":"zhulingjun/zhulingjun.com","url":"https://api.github.com/repos/zhulingjun/zhulingjun.com"},"payload":{"push_id":536865788,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"27155b8091c8439a9e28cc4201f4ed4b962da4c8","before":"62093075b65f7479485025660744914b7d5113fb","commits":[{"sha":"27155b8091c8439a9e28cc4201f4ed4b962da4c8","author":{"email":"2916d81566d47603d5bf638f3b65047ca9d80b6b@muzhiwan.com","name":"zhulingjun"},"message":"Update default.html","distinct":true,"url":"https://api.github.com/repos/zhulingjun/zhulingjun.com/commits/27155b8091c8439a9e28cc4201f4ed4b962da4c8"}]},"public":true,"created_at":"2015-01-01T15:08:39Z"} +,{"id":"2489655054","type":"PushEvent","actor":{"id":324436,"login":"antirek","gravatar_id":"","url":"https://api.github.com/users/antirek","avatar_url":"https://avatars.githubusercontent.com/u/324436?"},"repo":{"id":28681166,"name":"antirek/voicer","url":"https://api.github.com/repos/antirek/voicer"},"payload":{"push_id":536865789,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"dd6c958a8e44edde3d8fa09cfec35b8c5a4e1e3a","before":"fa0a441f645af343248dae49974176ac138c9bd6","commits":[{"sha":"dd6c958a8e44edde3d8fa09cfec35b8c5a4e1e3a","author":{"email":"847549387eba198c388b256b0d43aa029d012005@gmail.com","name":"sergey"},"message":"add finder for lookup peers by name","distinct":true,"url":"https://api.github.com/repos/antirek/voicer/commits/dd6c958a8e44edde3d8fa09cfec35b8c5a4e1e3a"}]},"public":true,"created_at":"2015-01-01T15:08:39Z"} +,{"id":"2489655055","type":"PullRequestEvent","actor":{"id":1208763,"login":"ims21","gravatar_id":"","url":"https://api.github.com/users/ims21","avatar_url":"https://avatars.githubusercontent.com/u/1208763?"},"repo":{"id":2794457,"name":"littlesat/skin-PLiHD","url":"https://api.github.com/repos/littlesat/skin-PLiHD"},"payload":{"action":"opened","number":239,"pull_request":{"url":"https://api.github.com/repos/littlesat/skin-PLiHD/pulls/239","id":26743836,"html_url":"https://github.com/littlesat/skin-PLiHD/pull/239","diff_url":"https://github.com/littlesat/skin-PLiHD/pull/239.diff","patch_url":"https://github.com/littlesat/skin-PLiHD/pull/239.patch","issue_url":"https://api.github.com/repos/littlesat/skin-PLiHD/issues/239","number":239,"state":"open","locked":false,"title":"cosmetic in PLi-HD1","user":{"login":"ims21","id":1208763,"avatar_url":"https://avatars.githubusercontent.com/u/1208763?v=3","gravatar_id":"","url":"https://api.github.com/users/ims21","html_url":"https://github.com/ims21","followers_url":"https://api.github.com/users/ims21/followers","following_url":"https://api.github.com/users/ims21/following{/other_user}","gists_url":"https://api.github.com/users/ims21/gists{/gist_id}","starred_url":"https://api.github.com/users/ims21/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ims21/subscriptions","organizations_url":"https://api.github.com/users/ims21/orgs","repos_url":"https://api.github.com/users/ims21/repos","events_url":"https://api.github.com/users/ims21/events{/privacy}","received_events_url":"https://api.github.com/users/ims21/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:08:38Z","updated_at":"2015-01-01T15:08:38Z","closed_at":null,"merged_at":null,"merge_commit_sha":"56bc32ff2cf19e315b33af52b867a4bd9024ed6f","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/littlesat/skin-PLiHD/pulls/239/commits","review_comments_url":"https://api.github.com/repos/littlesat/skin-PLiHD/pulls/239/comments","review_comment_url":"https://api.github.com/repos/littlesat/skin-PLiHD/pulls/comments/{number}","comments_url":"https://api.github.com/repos/littlesat/skin-PLiHD/issues/239/comments","statuses_url":"https://api.github.com/repos/littlesat/skin-PLiHD/statuses/037e445caaa31474c9e84e3dddfaad45406772cb","head":{"label":"ims21:master","ref":"master","sha":"037e445caaa31474c9e84e3dddfaad45406772cb","user":{"login":"ims21","id":1208763,"avatar_url":"https://avatars.githubusercontent.com/u/1208763?v=3","gravatar_id":"","url":"https://api.github.com/users/ims21","html_url":"https://github.com/ims21","followers_url":"https://api.github.com/users/ims21/followers","following_url":"https://api.github.com/users/ims21/following{/other_user}","gists_url":"https://api.github.com/users/ims21/gists{/gist_id}","starred_url":"https://api.github.com/users/ims21/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ims21/subscriptions","organizations_url":"https://api.github.com/users/ims21/orgs","repos_url":"https://api.github.com/users/ims21/repos","events_url":"https://api.github.com/users/ims21/events{/privacy}","received_events_url":"https://api.github.com/users/ims21/received_events","type":"User","site_admin":false},"repo":{"id":5190632,"name":"skin-PLiHD","full_name":"ims21/skin-PLiHD","owner":{"login":"ims21","id":1208763,"avatar_url":"https://avatars.githubusercontent.com/u/1208763?v=3","gravatar_id":"","url":"https://api.github.com/users/ims21","html_url":"https://github.com/ims21","followers_url":"https://api.github.com/users/ims21/followers","following_url":"https://api.github.com/users/ims21/following{/other_user}","gists_url":"https://api.github.com/users/ims21/gists{/gist_id}","starred_url":"https://api.github.com/users/ims21/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ims21/subscriptions","organizations_url":"https://api.github.com/users/ims21/orgs","repos_url":"https://api.github.com/users/ims21/repos","events_url":"https://api.github.com/users/ims21/events{/privacy}","received_events_url":"https://api.github.com/users/ims21/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ims21/skin-PLiHD","description":"skin for the PLi image","fork":true,"url":"https://api.github.com/repos/ims21/skin-PLiHD","forks_url":"https://api.github.com/repos/ims21/skin-PLiHD/forks","keys_url":"https://api.github.com/repos/ims21/skin-PLiHD/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ims21/skin-PLiHD/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ims21/skin-PLiHD/teams","hooks_url":"https://api.github.com/repos/ims21/skin-PLiHD/hooks","issue_events_url":"https://api.github.com/repos/ims21/skin-PLiHD/issues/events{/number}","events_url":"https://api.github.com/repos/ims21/skin-PLiHD/events","assignees_url":"https://api.github.com/repos/ims21/skin-PLiHD/assignees{/user}","branches_url":"https://api.github.com/repos/ims21/skin-PLiHD/branches{/branch}","tags_url":"https://api.github.com/repos/ims21/skin-PLiHD/tags","blobs_url":"https://api.github.com/repos/ims21/skin-PLiHD/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ims21/skin-PLiHD/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ims21/skin-PLiHD/git/refs{/sha}","trees_url":"https://api.github.com/repos/ims21/skin-PLiHD/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ims21/skin-PLiHD/statuses/{sha}","languages_url":"https://api.github.com/repos/ims21/skin-PLiHD/languages","stargazers_url":"https://api.github.com/repos/ims21/skin-PLiHD/stargazers","contributors_url":"https://api.github.com/repos/ims21/skin-PLiHD/contributors","subscribers_url":"https://api.github.com/repos/ims21/skin-PLiHD/subscribers","subscription_url":"https://api.github.com/repos/ims21/skin-PLiHD/subscription","commits_url":"https://api.github.com/repos/ims21/skin-PLiHD/commits{/sha}","git_commits_url":"https://api.github.com/repos/ims21/skin-PLiHD/git/commits{/sha}","comments_url":"https://api.github.com/repos/ims21/skin-PLiHD/comments{/number}","issue_comment_url":"https://api.github.com/repos/ims21/skin-PLiHD/issues/comments/{number}","contents_url":"https://api.github.com/repos/ims21/skin-PLiHD/contents/{+path}","compare_url":"https://api.github.com/repos/ims21/skin-PLiHD/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ims21/skin-PLiHD/merges","archive_url":"https://api.github.com/repos/ims21/skin-PLiHD/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ims21/skin-PLiHD/downloads","issues_url":"https://api.github.com/repos/ims21/skin-PLiHD/issues{/number}","pulls_url":"https://api.github.com/repos/ims21/skin-PLiHD/pulls{/number}","milestones_url":"https://api.github.com/repos/ims21/skin-PLiHD/milestones{/number}","notifications_url":"https://api.github.com/repos/ims21/skin-PLiHD/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ims21/skin-PLiHD/labels{/name}","releases_url":"https://api.github.com/repos/ims21/skin-PLiHD/releases{/id}","created_at":"2012-07-26T10:11:11Z","updated_at":"2014-11-22T15:49:57Z","pushed_at":"2015-01-01T15:07:25Z","git_url":"git://github.com/ims21/skin-PLiHD.git","ssh_url":"git@github.com:ims21/skin-PLiHD.git","clone_url":"https://github.com/ims21/skin-PLiHD.git","svn_url":"https://github.com/ims21/skin-PLiHD","homepage":"","size":2160,"stargazers_count":1,"watchers_count":1,"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":1,"default_branch":"master"}},"base":{"label":"littlesat:master","ref":"master","sha":"a540a1107c5fb8c2655888e3e5ae768063dbc7a7","user":{"login":"littlesat","id":1200384,"avatar_url":"https://avatars.githubusercontent.com/u/1200384?v=3","gravatar_id":"","url":"https://api.github.com/users/littlesat","html_url":"https://github.com/littlesat","followers_url":"https://api.github.com/users/littlesat/followers","following_url":"https://api.github.com/users/littlesat/following{/other_user}","gists_url":"https://api.github.com/users/littlesat/gists{/gist_id}","starred_url":"https://api.github.com/users/littlesat/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/littlesat/subscriptions","organizations_url":"https://api.github.com/users/littlesat/orgs","repos_url":"https://api.github.com/users/littlesat/repos","events_url":"https://api.github.com/users/littlesat/events{/privacy}","received_events_url":"https://api.github.com/users/littlesat/received_events","type":"User","site_admin":false},"repo":{"id":2794457,"name":"skin-PLiHD","full_name":"littlesat/skin-PLiHD","owner":{"login":"littlesat","id":1200384,"avatar_url":"https://avatars.githubusercontent.com/u/1200384?v=3","gravatar_id":"","url":"https://api.github.com/users/littlesat","html_url":"https://github.com/littlesat","followers_url":"https://api.github.com/users/littlesat/followers","following_url":"https://api.github.com/users/littlesat/following{/other_user}","gists_url":"https://api.github.com/users/littlesat/gists{/gist_id}","starred_url":"https://api.github.com/users/littlesat/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/littlesat/subscriptions","organizations_url":"https://api.github.com/users/littlesat/orgs","repos_url":"https://api.github.com/users/littlesat/repos","events_url":"https://api.github.com/users/littlesat/events{/privacy}","received_events_url":"https://api.github.com/users/littlesat/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/littlesat/skin-PLiHD","description":"skin for the PLi image","fork":false,"url":"https://api.github.com/repos/littlesat/skin-PLiHD","forks_url":"https://api.github.com/repos/littlesat/skin-PLiHD/forks","keys_url":"https://api.github.com/repos/littlesat/skin-PLiHD/keys{/key_id}","collaborators_url":"https://api.github.com/repos/littlesat/skin-PLiHD/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/littlesat/skin-PLiHD/teams","hooks_url":"https://api.github.com/repos/littlesat/skin-PLiHD/hooks","issue_events_url":"https://api.github.com/repos/littlesat/skin-PLiHD/issues/events{/number}","events_url":"https://api.github.com/repos/littlesat/skin-PLiHD/events","assignees_url":"https://api.github.com/repos/littlesat/skin-PLiHD/assignees{/user}","branches_url":"https://api.github.com/repos/littlesat/skin-PLiHD/branches{/branch}","tags_url":"https://api.github.com/repos/littlesat/skin-PLiHD/tags","blobs_url":"https://api.github.com/repos/littlesat/skin-PLiHD/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/littlesat/skin-PLiHD/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/littlesat/skin-PLiHD/git/refs{/sha}","trees_url":"https://api.github.com/repos/littlesat/skin-PLiHD/git/trees{/sha}","statuses_url":"https://api.github.com/repos/littlesat/skin-PLiHD/statuses/{sha}","languages_url":"https://api.github.com/repos/littlesat/skin-PLiHD/languages","stargazers_url":"https://api.github.com/repos/littlesat/skin-PLiHD/stargazers","contributors_url":"https://api.github.com/repos/littlesat/skin-PLiHD/contributors","subscribers_url":"https://api.github.com/repos/littlesat/skin-PLiHD/subscribers","subscription_url":"https://api.github.com/repos/littlesat/skin-PLiHD/subscription","commits_url":"https://api.github.com/repos/littlesat/skin-PLiHD/commits{/sha}","git_commits_url":"https://api.github.com/repos/littlesat/skin-PLiHD/git/commits{/sha}","comments_url":"https://api.github.com/repos/littlesat/skin-PLiHD/comments{/number}","issue_comment_url":"https://api.github.com/repos/littlesat/skin-PLiHD/issues/comments/{number}","contents_url":"https://api.github.com/repos/littlesat/skin-PLiHD/contents/{+path}","compare_url":"https://api.github.com/repos/littlesat/skin-PLiHD/compare/{base}...{head}","merges_url":"https://api.github.com/repos/littlesat/skin-PLiHD/merges","archive_url":"https://api.github.com/repos/littlesat/skin-PLiHD/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/littlesat/skin-PLiHD/downloads","issues_url":"https://api.github.com/repos/littlesat/skin-PLiHD/issues{/number}","pulls_url":"https://api.github.com/repos/littlesat/skin-PLiHD/pulls{/number}","milestones_url":"https://api.github.com/repos/littlesat/skin-PLiHD/milestones{/number}","notifications_url":"https://api.github.com/repos/littlesat/skin-PLiHD/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/littlesat/skin-PLiHD/labels{/name}","releases_url":"https://api.github.com/repos/littlesat/skin-PLiHD/releases{/id}","created_at":"2011-11-17T09:51:48Z","updated_at":"2014-11-22T15:52:46Z","pushed_at":"2015-01-01T12:06:14Z","git_url":"git://github.com/littlesat/skin-PLiHD.git","ssh_url":"git@github.com:littlesat/skin-PLiHD.git","clone_url":"https://github.com/littlesat/skin-PLiHD.git","svn_url":"https://github.com/littlesat/skin-PLiHD","homepage":"","size":2804,"stargazers_count":10,"watchers_count":10,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":16,"mirror_url":null,"open_issues_count":3,"forks":16,"open_issues":3,"watchers":10,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/littlesat/skin-PLiHD/pulls/239"},"html":{"href":"https://github.com/littlesat/skin-PLiHD/pull/239"},"issue":{"href":"https://api.github.com/repos/littlesat/skin-PLiHD/issues/239"},"comments":{"href":"https://api.github.com/repos/littlesat/skin-PLiHD/issues/239/comments"},"review_comments":{"href":"https://api.github.com/repos/littlesat/skin-PLiHD/pulls/239/comments"},"review_comment":{"href":"https://api.github.com/repos/littlesat/skin-PLiHD/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/littlesat/skin-PLiHD/pulls/239/commits"},"statuses":{"href":"https://api.github.com/repos/littlesat/skin-PLiHD/statuses/037e445caaa31474c9e84e3dddfaad45406772cb"}},"merged":false,"mergeable":true,"mergeable_state":"clean","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":82,"deletions":82,"changed_files":5}},"public":true,"created_at":"2015-01-01T15:08:39Z"} +,{"id":"2489655056","type":"PushEvent","actor":{"id":10062233,"login":"wangyang602117818","gravatar_id":"","url":"https://api.github.com/users/wangyang602117818","avatar_url":"https://avatars.githubusercontent.com/u/10062233?"},"repo":{"id":27633570,"name":"wangyang602117818/learngit","url":"https://api.github.com/repos/wangyang602117818/learngit"},"payload":{"push_id":536865791,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"9e34900689f6354ee62c167320994891d45f24ad","before":"f6240668b694a248ad9c782a2d0d4da43208317d","commits":[{"sha":"e0bd3dc20ed50d6fc59209f409fc38e1bbbb984f","author":{"email":"520d1ff391263bbb0b12e42fca375ce882dd50a4@qq.com","name":"wangyanghome"},"message":"update 1111","distinct":true,"url":"https://api.github.com/repos/wangyang602117818/learngit/commits/e0bd3dc20ed50d6fc59209f409fc38e1bbbb984f"},{"sha":"9e34900689f6354ee62c167320994891d45f24ad","author":{"email":"520d1ff391263bbb0b12e42fca375ce882dd50a4@qq.com","name":"wangyanghome"},"message":"0000","distinct":true,"url":"https://api.github.com/repos/wangyang602117818/learngit/commits/9e34900689f6354ee62c167320994891d45f24ad"}]},"public":true,"created_at":"2015-01-01T15:08:39Z"} +,{"id":"2489655059","type":"WatchEvent","actor":{"id":27919,"login":"weiday","gravatar_id":"","url":"https://api.github.com/users/weiday","avatar_url":"https://avatars.githubusercontent.com/u/27919?"},"repo":{"id":1290704,"name":"codebutler/farebot","url":"https://api.github.com/repos/codebutler/farebot"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:39Z"} +,{"id":"2489655060","type":"CreateEvent","actor":{"id":2767023,"login":"ajcowking","gravatar_id":"","url":"https://api.github.com/users/ajcowking","avatar_url":"https://avatars.githubusercontent.com/u/2767023?"},"repo":{"id":28688727,"name":"ajcowking/hello-world","url":"https://api.github.com/repos/ajcowking/hello-world"},"payload":{"ref":"readme-edits","ref_type":"branch","master_branch":"master","description":"Just another repository","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:39Z"} +,{"id":"2489655061","type":"IssuesEvent","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":{"action":"closed","issue":{"url":"https://api.github.com/repos/autarky/framework/issues/49","labels_url":"https://api.github.com/repos/autarky/framework/issues/49/labels{/name}","comments_url":"https://api.github.com/repos/autarky/framework/issues/49/comments","events_url":"https://api.github.com/repos/autarky/framework/issues/49/events","html_url":"https://github.com/autarky/framework/issues/49","id":47503151,"number":49,"title":"Multiple logging channels","user":{"login":"anlutro","id":163093,"avatar_url":"https://avatars.githubusercontent.com/u/163093?v=3","gravatar_id":"","url":"https://api.github.com/users/anlutro","html_url":"https://github.com/anlutro","followers_url":"https://api.github.com/users/anlutro/followers","following_url":"https://api.github.com/users/anlutro/following{/other_user}","gists_url":"https://api.github.com/users/anlutro/gists{/gist_id}","starred_url":"https://api.github.com/users/anlutro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anlutro/subscriptions","organizations_url":"https://api.github.com/users/anlutro/orgs","repos_url":"https://api.github.com/users/anlutro/repos","events_url":"https://api.github.com/users/anlutro/events{/privacy}","received_events_url":"https://api.github.com/users/anlutro/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/autarky/framework/labels/feature","name":"feature","color":"006b75"}],"state":"closed","locked":false,"assignee":null,"milestone":{"url":"https://api.github.com/repos/autarky/framework/milestones/4","labels_url":"https://api.github.com/repos/autarky/framework/milestones/4/labels","id":822735,"number":4,"title":"0.7","description":"","creator":{"login":"anlutro","id":163093,"avatar_url":"https://avatars.githubusercontent.com/u/163093?v=3","gravatar_id":"","url":"https://api.github.com/users/anlutro","html_url":"https://github.com/anlutro","followers_url":"https://api.github.com/users/anlutro/followers","following_url":"https://api.github.com/users/anlutro/following{/other_user}","gists_url":"https://api.github.com/users/anlutro/gists{/gist_id}","starred_url":"https://api.github.com/users/anlutro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anlutro/subscriptions","organizations_url":"https://api.github.com/users/anlutro/orgs","repos_url":"https://api.github.com/users/anlutro/repos","events_url":"https://api.github.com/users/anlutro/events{/privacy}","received_events_url":"https://api.github.com/users/anlutro/received_events","type":"User","site_admin":false},"open_issues":1,"closed_issues":8,"state":"open","created_at":"2014-10-12T11:17:13Z","updated_at":"2015-01-01T15:08:38Z","due_on":null,"closed_at":null},"comments":1,"created_at":"2014-11-01T10:55:09Z","updated_at":"2015-01-01T15:08:38Z","closed_at":"2015-01-01T15:08:38Z","body":"Add a config file named logging.yml, syntax very similar to that of Symfony 2.\r\n\r\n```yml\r\nchannels:\r\n default:\r\n handlers: [main, syslog]\r\n\r\nhandlers:\r\n main:\r\n type: fingers_crossed\r\n level: warning\r\n handler: debuglog\r\n errlog:\r\n type: stream\r\n path: /var/log/my_application.error.log\r\n level: error\r\n debuglog:\r\n type: stream\r\n path: /var/log/my_application.debug.log\r\n level: debug\r\n syslog:\r\n type: syslog\r\n level: error\r\n```\r\n\r\nWhen injecting a logger into your classes, you don't want to type-hint the class that contains all the different logging channels, you just want to type-hint Psr\\Log\\LoggerInterface. Need to come up with a way to easily tell the container what channel you want without having to re-define the entire class factory - see #50"}},"public":true,"created_at":"2015-01-01T15:08:39Z","org":{"id":7142032,"login":"autarky","gravatar_id":"","url":"https://api.github.com/orgs/autarky","avatar_url":"https://avatars.githubusercontent.com/u/7142032?"}} +,{"id":"2489655063","type":"IssueCommentEvent","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":{"action":"created","issue":{"url":"https://api.github.com/repos/autarky/framework/issues/49","labels_url":"https://api.github.com/repos/autarky/framework/issues/49/labels{/name}","comments_url":"https://api.github.com/repos/autarky/framework/issues/49/comments","events_url":"https://api.github.com/repos/autarky/framework/issues/49/events","html_url":"https://github.com/autarky/framework/issues/49","id":47503151,"number":49,"title":"Multiple logging channels","user":{"login":"anlutro","id":163093,"avatar_url":"https://avatars.githubusercontent.com/u/163093?v=3","gravatar_id":"","url":"https://api.github.com/users/anlutro","html_url":"https://github.com/anlutro","followers_url":"https://api.github.com/users/anlutro/followers","following_url":"https://api.github.com/users/anlutro/following{/other_user}","gists_url":"https://api.github.com/users/anlutro/gists{/gist_id}","starred_url":"https://api.github.com/users/anlutro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anlutro/subscriptions","organizations_url":"https://api.github.com/users/anlutro/orgs","repos_url":"https://api.github.com/users/anlutro/repos","events_url":"https://api.github.com/users/anlutro/events{/privacy}","received_events_url":"https://api.github.com/users/anlutro/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/autarky/framework/labels/feature","name":"feature","color":"006b75"}],"state":"closed","locked":false,"assignee":null,"milestone":{"url":"https://api.github.com/repos/autarky/framework/milestones/4","labels_url":"https://api.github.com/repos/autarky/framework/milestones/4/labels","id":822735,"number":4,"title":"0.7","description":"","creator":{"login":"anlutro","id":163093,"avatar_url":"https://avatars.githubusercontent.com/u/163093?v=3","gravatar_id":"","url":"https://api.github.com/users/anlutro","html_url":"https://github.com/anlutro","followers_url":"https://api.github.com/users/anlutro/followers","following_url":"https://api.github.com/users/anlutro/following{/other_user}","gists_url":"https://api.github.com/users/anlutro/gists{/gist_id}","starred_url":"https://api.github.com/users/anlutro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anlutro/subscriptions","organizations_url":"https://api.github.com/users/anlutro/orgs","repos_url":"https://api.github.com/users/anlutro/repos","events_url":"https://api.github.com/users/anlutro/events{/privacy}","received_events_url":"https://api.github.com/users/anlutro/received_events","type":"User","site_admin":false},"open_issues":1,"closed_issues":8,"state":"open","created_at":"2014-10-12T11:17:13Z","updated_at":"2015-01-01T15:08:38Z","due_on":null,"closed_at":null},"comments":1,"created_at":"2014-11-01T10:55:09Z","updated_at":"2015-01-01T15:08:38Z","closed_at":"2015-01-01T15:08:38Z","body":"Add a config file named logging.yml, syntax very similar to that of Symfony 2.\r\n\r\n```yml\r\nchannels:\r\n default:\r\n handlers: [main, syslog]\r\n\r\nhandlers:\r\n main:\r\n type: fingers_crossed\r\n level: warning\r\n handler: debuglog\r\n errlog:\r\n type: stream\r\n path: /var/log/my_application.error.log\r\n level: error\r\n debuglog:\r\n type: stream\r\n path: /var/log/my_application.debug.log\r\n level: debug\r\n syslog:\r\n type: syslog\r\n level: error\r\n```\r\n\r\nWhen injecting a logger into your classes, you don't want to type-hint the class that contains all the different logging channels, you just want to type-hint Psr\\Log\\LoggerInterface. Need to come up with a way to easily tell the container what channel you want without having to re-define the entire class factory - see #50"},"comment":{"url":"https://api.github.com/repos/autarky/framework/issues/comments/68488663","html_url":"https://github.com/autarky/framework/issues/49#issuecomment-68488663","issue_url":"https://api.github.com/repos/autarky/framework/issues/49","id":68488663,"user":{"login":"anlutro","id":163093,"avatar_url":"https://avatars.githubusercontent.com/u/163093?v=3","gravatar_id":"","url":"https://api.github.com/users/anlutro","html_url":"https://github.com/anlutro","followers_url":"https://api.github.com/users/anlutro/followers","following_url":"https://api.github.com/users/anlutro/following{/other_user}","gists_url":"https://api.github.com/users/anlutro/gists{/gist_id}","starred_url":"https://api.github.com/users/anlutro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anlutro/subscriptions","organizations_url":"https://api.github.com/users/anlutro/orgs","repos_url":"https://api.github.com/users/anlutro/repos","events_url":"https://api.github.com/users/anlutro/events{/privacy}","received_events_url":"https://api.github.com/users/anlutro/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:08:38Z","updated_at":"2015-01-01T15:08:38Z","body":"Drop the config file in favour of a LogConfigurator class that comes with the default skeleton. Much easier to let people instantiate the monolog classes themselves rather than me having to maintain a config mapping."}},"public":true,"created_at":"2015-01-01T15:08:39Z","org":{"id":7142032,"login":"autarky","gravatar_id":"","url":"https://api.github.com/orgs/autarky","avatar_url":"https://avatars.githubusercontent.com/u/7142032?"}} +,{"id":"2489655066","type":"ForkEvent","actor":{"id":1554889,"login":"lusv","gravatar_id":"","url":"https://api.github.com/users/lusv","avatar_url":"https://avatars.githubusercontent.com/u/1554889?"},"repo":{"id":24366614,"name":"udacity/frontend-nanodegree-mobile-portfolio","url":"https://api.github.com/repos/udacity/frontend-nanodegree-mobile-portfolio"},"payload":{"forkee":{"id":28688752,"name":"frontend-nanodegree-mobile-portfolio","full_name":"lusv/frontend-nanodegree-mobile-portfolio","owner":{"login":"lusv","id":1554889,"avatar_url":"https://avatars.githubusercontent.com/u/1554889?v=3","gravatar_id":"","url":"https://api.github.com/users/lusv","html_url":"https://github.com/lusv","followers_url":"https://api.github.com/users/lusv/followers","following_url":"https://api.github.com/users/lusv/following{/other_user}","gists_url":"https://api.github.com/users/lusv/gists{/gist_id}","starred_url":"https://api.github.com/users/lusv/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lusv/subscriptions","organizations_url":"https://api.github.com/users/lusv/orgs","repos_url":"https://api.github.com/users/lusv/repos","events_url":"https://api.github.com/users/lusv/events{/privacy}","received_events_url":"https://api.github.com/users/lusv/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/lusv/frontend-nanodegree-mobile-portfolio","description":"","fork":true,"url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio","forks_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/forks","keys_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/keys{/key_id}","collaborators_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/teams","hooks_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/hooks","issue_events_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/issues/events{/number}","events_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/events","assignees_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/assignees{/user}","branches_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/branches{/branch}","tags_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/tags","blobs_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/git/refs{/sha}","trees_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/git/trees{/sha}","statuses_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/statuses/{sha}","languages_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/languages","stargazers_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/stargazers","contributors_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/contributors","subscribers_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/subscribers","subscription_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/subscription","commits_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/commits{/sha}","git_commits_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/git/commits{/sha}","comments_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/comments{/number}","issue_comment_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/issues/comments/{number}","contents_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/contents/{+path}","compare_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/compare/{base}...{head}","merges_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/merges","archive_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/downloads","issues_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/issues{/number}","pulls_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/pulls{/number}","milestones_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/milestones{/number}","notifications_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/labels{/name}","releases_url":"https://api.github.com/repos/lusv/frontend-nanodegree-mobile-portfolio/releases{/id}","created_at":"2015-01-01T15:08:39Z","updated_at":"2014-10-14T18:35:20Z","pushed_at":"2014-09-23T19:58:28Z","git_url":"git://github.com/lusv/frontend-nanodegree-mobile-portfolio.git","ssh_url":"git@github.com:lusv/frontend-nanodegree-mobile-portfolio.git","clone_url":"https://github.com/lusv/frontend-nanodegree-mobile-portfolio.git","svn_url":"https://github.com/lusv/frontend-nanodegree-mobile-portfolio","homepage":null,"size":2982,"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:08:39Z","org":{"id":1916665,"login":"udacity","gravatar_id":"","url":"https://api.github.com/orgs/udacity","avatar_url":"https://avatars.githubusercontent.com/u/1916665?"}} +,{"id":"2489655068","type":"PushEvent","actor":{"id":10330069,"login":"riatreppo","gravatar_id":"","url":"https://api.github.com/users/riatreppo","avatar_url":"https://avatars.githubusercontent.com/u/10330069?"},"repo":{"id":28561569,"name":"riatreppo/riatreppo.github.io","url":"https://api.github.com/repos/riatreppo/riatreppo.github.io"},"payload":{"push_id":536865796,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"825f257ec6aff3cbbba072ef505c446db92f0045","before":"deb9006cad0b77ea293209490aeb95290d9ba0a9","commits":[{"sha":"825f257ec6aff3cbbba072ef505c446db92f0045","author":{"email":"2314b2e3a4a1f7db165be2aafbf1efd78f28cc97@treppo.org","name":"Christian Treppo"},"message":"Use CSS for styling, like it's 2010!","distinct":true,"url":"https://api.github.com/repos/riatreppo/riatreppo.github.io/commits/825f257ec6aff3cbbba072ef505c446db92f0045"}]},"public":true,"created_at":"2015-01-01T15:08:39Z"} +,{"id":"2489655069","type":"WatchEvent","actor":{"id":831962,"login":"bgruszka","gravatar_id":"","url":"https://api.github.com/users/bgruszka","avatar_url":"https://avatars.githubusercontent.com/u/831962?"},"repo":{"id":26742634,"name":"auchenberg/chrome-devtools-app","url":"https://api.github.com/repos/auchenberg/chrome-devtools-app"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:39Z"} +,{"id":"2489655074","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":536865798,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b304e83d34a58a40caadcdcd6be774fa73a36948","before":"2e9bcd6343be8f509b199495aa33a852a76cbab5","commits":[{"sha":"b304e83d34a58a40caadcdcd6be774fa73a36948","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420124918791\n\nU9Laghxrp90niUdoDkEY6P7zldCNoiNbnFWhCRoG8Yw=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/b304e83d34a58a40caadcdcd6be774fa73a36948"}]},"public":true,"created_at":"2015-01-01T15:08:40Z"} +,{"id":"2489655075","type":"PushEvent","actor":{"id":6811304,"login":"Khaon","gravatar_id":"","url":"https://api.github.com/users/Khaon","avatar_url":"https://avatars.githubusercontent.com/u/6811304?"},"repo":{"id":23437611,"name":"Khaon/android_kernel_samsung_manta","url":"https://api.github.com/repos/Khaon/android_kernel_samsung_manta"},"payload":{"push_id":536865799,"size":1,"distinct_size":1,"ref":"refs/heads/khaon-new","head":"0042bd31154563efdc9b6386142422e155c4ee52","before":"375db1046f82a66c55a874b2c1a9ee98d1a5fff0","commits":[{"sha":"0042bd31154563efdc9b6386142422e155c4ee52","author":{"email":"6de4a1b61708b558fa9bd165e9e132f4dd9c2b94@student.uclouvain.be","name":"Maxime Poulain"},"message":"cpufreq:interactive:switched to touchboost driver","distinct":true,"url":"https://api.github.com/repos/Khaon/android_kernel_samsung_manta/commits/0042bd31154563efdc9b6386142422e155c4ee52"}]},"public":true,"created_at":"2015-01-01T15:08:40Z"} +,{"id":"2489655076","type":"PullRequestEvent","actor":{"id":37621,"login":"lorenzo","gravatar_id":"","url":"https://api.github.com/users/lorenzo","avatar_url":"https://avatars.githubusercontent.com/u/37621?"},"repo":{"id":656494,"name":"cakephp/cakephp","url":"https://api.github.com/repos/cakephp/cakephp"},"payload":{"action":"opened","number":5528,"pull_request":{"url":"https://api.github.com/repos/cakephp/cakephp/pulls/5528","id":26743837,"html_url":"https://github.com/cakephp/cakephp/pull/5528","diff_url":"https://github.com/cakephp/cakephp/pull/5528.diff","patch_url":"https://github.com/cakephp/cakephp/pull/5528.patch","issue_url":"https://api.github.com/repos/cakephp/cakephp/issues/5528","number":5528,"state":"open","locked":false,"title":"Moved the Model namespace into ORM so it can be distributed easier","user":{"login":"lorenzo","id":37621,"avatar_url":"https://avatars.githubusercontent.com/u/37621?v=3","gravatar_id":"","url":"https://api.github.com/users/lorenzo","html_url":"https://github.com/lorenzo","followers_url":"https://api.github.com/users/lorenzo/followers","following_url":"https://api.github.com/users/lorenzo/following{/other_user}","gists_url":"https://api.github.com/users/lorenzo/gists{/gist_id}","starred_url":"https://api.github.com/users/lorenzo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lorenzo/subscriptions","organizations_url":"https://api.github.com/users/lorenzo/orgs","repos_url":"https://api.github.com/users/lorenzo/repos","events_url":"https://api.github.com/users/lorenzo/events{/privacy}","received_events_url":"https://api.github.com/users/lorenzo/received_events","type":"User","site_admin":false},"body":"Also moved ModelAwareTrait to Datasource it I think it makes more sense there","created_at":"2015-01-01T15:08:40Z","updated_at":"2015-01-01T15:08:40Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/cakephp/cakephp/pulls/5528/commits","review_comments_url":"https://api.github.com/repos/cakephp/cakephp/pulls/5528/comments","review_comment_url":"https://api.github.com/repos/cakephp/cakephp/pulls/comments/{number}","comments_url":"https://api.github.com/repos/cakephp/cakephp/issues/5528/comments","statuses_url":"https://api.github.com/repos/cakephp/cakephp/statuses/73fcf3109501c32d75b3de4eb6595a687582906e","head":{"label":"cakephp:3.0-move-model","ref":"3.0-move-model","sha":"73fcf3109501c32d75b3de4eb6595a687582906e","user":{"login":"cakephp","id":23666,"avatar_url":"https://avatars.githubusercontent.com/u/23666?v=3","gravatar_id":"","url":"https://api.github.com/users/cakephp","html_url":"https://github.com/cakephp","followers_url":"https://api.github.com/users/cakephp/followers","following_url":"https://api.github.com/users/cakephp/following{/other_user}","gists_url":"https://api.github.com/users/cakephp/gists{/gist_id}","starred_url":"https://api.github.com/users/cakephp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cakephp/subscriptions","organizations_url":"https://api.github.com/users/cakephp/orgs","repos_url":"https://api.github.com/users/cakephp/repos","events_url":"https://api.github.com/users/cakephp/events{/privacy}","received_events_url":"https://api.github.com/users/cakephp/received_events","type":"Organization","site_admin":false},"repo":{"id":656494,"name":"cakephp","full_name":"cakephp/cakephp","owner":{"login":"cakephp","id":23666,"avatar_url":"https://avatars.githubusercontent.com/u/23666?v=3","gravatar_id":"","url":"https://api.github.com/users/cakephp","html_url":"https://github.com/cakephp","followers_url":"https://api.github.com/users/cakephp/followers","following_url":"https://api.github.com/users/cakephp/following{/other_user}","gists_url":"https://api.github.com/users/cakephp/gists{/gist_id}","starred_url":"https://api.github.com/users/cakephp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cakephp/subscriptions","organizations_url":"https://api.github.com/users/cakephp/orgs","repos_url":"https://api.github.com/users/cakephp/repos","events_url":"https://api.github.com/users/cakephp/events{/privacy}","received_events_url":"https://api.github.com/users/cakephp/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/cakephp/cakephp","description":"CakePHP: The Rapid Development Framework for PHP - Official Repository","fork":false,"url":"https://api.github.com/repos/cakephp/cakephp","forks_url":"https://api.github.com/repos/cakephp/cakephp/forks","keys_url":"https://api.github.com/repos/cakephp/cakephp/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cakephp/cakephp/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cakephp/cakephp/teams","hooks_url":"https://api.github.com/repos/cakephp/cakephp/hooks","issue_events_url":"https://api.github.com/repos/cakephp/cakephp/issues/events{/number}","events_url":"https://api.github.com/repos/cakephp/cakephp/events","assignees_url":"https://api.github.com/repos/cakephp/cakephp/assignees{/user}","branches_url":"https://api.github.com/repos/cakephp/cakephp/branches{/branch}","tags_url":"https://api.github.com/repos/cakephp/cakephp/tags","blobs_url":"https://api.github.com/repos/cakephp/cakephp/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cakephp/cakephp/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cakephp/cakephp/git/refs{/sha}","trees_url":"https://api.github.com/repos/cakephp/cakephp/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cakephp/cakephp/statuses/{sha}","languages_url":"https://api.github.com/repos/cakephp/cakephp/languages","stargazers_url":"https://api.github.com/repos/cakephp/cakephp/stargazers","contributors_url":"https://api.github.com/repos/cakephp/cakephp/contributors","subscribers_url":"https://api.github.com/repos/cakephp/cakephp/subscribers","subscription_url":"https://api.github.com/repos/cakephp/cakephp/subscription","commits_url":"https://api.github.com/repos/cakephp/cakephp/commits{/sha}","git_commits_url":"https://api.github.com/repos/cakephp/cakephp/git/commits{/sha}","comments_url":"https://api.github.com/repos/cakephp/cakephp/comments{/number}","issue_comment_url":"https://api.github.com/repos/cakephp/cakephp/issues/comments/{number}","contents_url":"https://api.github.com/repos/cakephp/cakephp/contents/{+path}","compare_url":"https://api.github.com/repos/cakephp/cakephp/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cakephp/cakephp/merges","archive_url":"https://api.github.com/repos/cakephp/cakephp/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cakephp/cakephp/downloads","issues_url":"https://api.github.com/repos/cakephp/cakephp/issues{/number}","pulls_url":"https://api.github.com/repos/cakephp/cakephp/pulls{/number}","milestones_url":"https://api.github.com/repos/cakephp/cakephp/milestones{/number}","notifications_url":"https://api.github.com/repos/cakephp/cakephp/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cakephp/cakephp/labels{/name}","releases_url":"https://api.github.com/repos/cakephp/cakephp/releases{/id}","created_at":"2010-05-08T14:38:22Z","updated_at":"2014-12-31T16:11:27Z","pushed_at":"2015-01-01T15:07:34Z","git_url":"git://github.com/cakephp/cakephp.git","ssh_url":"git@github.com:cakephp/cakephp.git","clone_url":"https://github.com/cakephp/cakephp.git","svn_url":"https://github.com/cakephp/cakephp","homepage":"http://cakephp.org","size":147087,"stargazers_count":5405,"watchers_count":5405,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":2386,"mirror_url":null,"open_issues_count":112,"forks":2386,"open_issues":112,"watchers":5405,"default_branch":"master"}},"base":{"label":"cakephp:3.0","ref":"3.0","sha":"ea19e9c0b52fb6b303a256a61d29cdf485b12548","user":{"login":"cakephp","id":23666,"avatar_url":"https://avatars.githubusercontent.com/u/23666?v=3","gravatar_id":"","url":"https://api.github.com/users/cakephp","html_url":"https://github.com/cakephp","followers_url":"https://api.github.com/users/cakephp/followers","following_url":"https://api.github.com/users/cakephp/following{/other_user}","gists_url":"https://api.github.com/users/cakephp/gists{/gist_id}","starred_url":"https://api.github.com/users/cakephp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cakephp/subscriptions","organizations_url":"https://api.github.com/users/cakephp/orgs","repos_url":"https://api.github.com/users/cakephp/repos","events_url":"https://api.github.com/users/cakephp/events{/privacy}","received_events_url":"https://api.github.com/users/cakephp/received_events","type":"Organization","site_admin":false},"repo":{"id":656494,"name":"cakephp","full_name":"cakephp/cakephp","owner":{"login":"cakephp","id":23666,"avatar_url":"https://avatars.githubusercontent.com/u/23666?v=3","gravatar_id":"","url":"https://api.github.com/users/cakephp","html_url":"https://github.com/cakephp","followers_url":"https://api.github.com/users/cakephp/followers","following_url":"https://api.github.com/users/cakephp/following{/other_user}","gists_url":"https://api.github.com/users/cakephp/gists{/gist_id}","starred_url":"https://api.github.com/users/cakephp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cakephp/subscriptions","organizations_url":"https://api.github.com/users/cakephp/orgs","repos_url":"https://api.github.com/users/cakephp/repos","events_url":"https://api.github.com/users/cakephp/events{/privacy}","received_events_url":"https://api.github.com/users/cakephp/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/cakephp/cakephp","description":"CakePHP: The Rapid Development Framework for PHP - Official Repository","fork":false,"url":"https://api.github.com/repos/cakephp/cakephp","forks_url":"https://api.github.com/repos/cakephp/cakephp/forks","keys_url":"https://api.github.com/repos/cakephp/cakephp/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cakephp/cakephp/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cakephp/cakephp/teams","hooks_url":"https://api.github.com/repos/cakephp/cakephp/hooks","issue_events_url":"https://api.github.com/repos/cakephp/cakephp/issues/events{/number}","events_url":"https://api.github.com/repos/cakephp/cakephp/events","assignees_url":"https://api.github.com/repos/cakephp/cakephp/assignees{/user}","branches_url":"https://api.github.com/repos/cakephp/cakephp/branches{/branch}","tags_url":"https://api.github.com/repos/cakephp/cakephp/tags","blobs_url":"https://api.github.com/repos/cakephp/cakephp/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cakephp/cakephp/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cakephp/cakephp/git/refs{/sha}","trees_url":"https://api.github.com/repos/cakephp/cakephp/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cakephp/cakephp/statuses/{sha}","languages_url":"https://api.github.com/repos/cakephp/cakephp/languages","stargazers_url":"https://api.github.com/repos/cakephp/cakephp/stargazers","contributors_url":"https://api.github.com/repos/cakephp/cakephp/contributors","subscribers_url":"https://api.github.com/repos/cakephp/cakephp/subscribers","subscription_url":"https://api.github.com/repos/cakephp/cakephp/subscription","commits_url":"https://api.github.com/repos/cakephp/cakephp/commits{/sha}","git_commits_url":"https://api.github.com/repos/cakephp/cakephp/git/commits{/sha}","comments_url":"https://api.github.com/repos/cakephp/cakephp/comments{/number}","issue_comment_url":"https://api.github.com/repos/cakephp/cakephp/issues/comments/{number}","contents_url":"https://api.github.com/repos/cakephp/cakephp/contents/{+path}","compare_url":"https://api.github.com/repos/cakephp/cakephp/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cakephp/cakephp/merges","archive_url":"https://api.github.com/repos/cakephp/cakephp/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cakephp/cakephp/downloads","issues_url":"https://api.github.com/repos/cakephp/cakephp/issues{/number}","pulls_url":"https://api.github.com/repos/cakephp/cakephp/pulls{/number}","milestones_url":"https://api.github.com/repos/cakephp/cakephp/milestones{/number}","notifications_url":"https://api.github.com/repos/cakephp/cakephp/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cakephp/cakephp/labels{/name}","releases_url":"https://api.github.com/repos/cakephp/cakephp/releases{/id}","created_at":"2010-05-08T14:38:22Z","updated_at":"2014-12-31T16:11:27Z","pushed_at":"2015-01-01T15:07:34Z","git_url":"git://github.com/cakephp/cakephp.git","ssh_url":"git@github.com:cakephp/cakephp.git","clone_url":"https://github.com/cakephp/cakephp.git","svn_url":"https://github.com/cakephp/cakephp","homepage":"http://cakephp.org","size":147087,"stargazers_count":5405,"watchers_count":5405,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":2386,"mirror_url":null,"open_issues_count":112,"forks":2386,"open_issues":112,"watchers":5405,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/cakephp/cakephp/pulls/5528"},"html":{"href":"https://github.com/cakephp/cakephp/pull/5528"},"issue":{"href":"https://api.github.com/repos/cakephp/cakephp/issues/5528"},"comments":{"href":"https://api.github.com/repos/cakephp/cakephp/issues/5528/comments"},"review_comments":{"href":"https://api.github.com/repos/cakephp/cakephp/pulls/5528/comments"},"review_comment":{"href":"https://api.github.com/repos/cakephp/cakephp/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/cakephp/cakephp/pulls/5528/commits"},"statuses":{"href":"https://api.github.com/repos/cakephp/cakephp/statuses/73fcf3109501c32d75b3de4eb6595a687582906e"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":29,"deletions":27,"changed_files":19}},"public":true,"created_at":"2015-01-01T15:08:41Z","org":{"id":23666,"login":"cakephp","gravatar_id":"","url":"https://api.github.com/orgs/cakephp","avatar_url":"https://avatars.githubusercontent.com/u/23666?"}} +,{"id":"2489655079","type":"PushEvent","actor":{"id":1779473,"login":"kylephillips","gravatar_id":"","url":"https://api.github.com/users/kylephillips","avatar_url":"https://avatars.githubusercontent.com/u/1779473?"},"repo":{"id":24962727,"name":"kylephillips/wp-nested-pages","url":"https://api.github.com/repos/kylephillips/wp-nested-pages"},"payload":{"push_id":536865802,"size":1,"distinct_size":1,"ref":"refs/heads/datefield","head":"89bb9438a0aafbd049b403c04878fc9592d4f218","before":"d87f3c383a6be7a275ee702fa65ee3afdcb9c217","commits":[{"sha":"89bb9438a0aafbd049b403c04878fc9592d4f218","author":{"email":"c205337a268205d4fba6c2b1c7f0f1cd4595d5fb@gmail.com","name":"Kyle Phillips"},"message":"Date picker population added to new child pages.","distinct":true,"url":"https://api.github.com/repos/kylephillips/wp-nested-pages/commits/89bb9438a0aafbd049b403c04878fc9592d4f218"}]},"public":true,"created_at":"2015-01-01T15:08:42Z"} +,{"id":"2489655082","type":"CreateEvent","actor":{"id":306280,"login":"mzungu","gravatar_id":"","url":"https://api.github.com/users/mzungu","avatar_url":"https://avatars.githubusercontent.com/u/306280?"},"repo":{"id":28688391,"name":"mzungu/hillhouseangaston","url":"https://api.github.com/repos/mzungu/hillhouseangaston"},"payload":{"ref":"gh-pages","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:42Z"} +,{"id":"2489655083","type":"PushEvent","actor":{"id":433707,"login":"ile","gravatar_id":"","url":"https://api.github.com/users/ile","avatar_url":"https://avatars.githubusercontent.com/u/433707?"},"repo":{"id":13599170,"name":"ile/ile.github.io","url":"https://api.github.com/repos/ile/ile.github.io"},"payload":{"push_id":536865804,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"67750d260e1c4f8121c865d4c72ec289afb96faf","before":"a809d20359964bffc98c6b9b7de20634d75e9c6e","commits":[{"sha":"67750d260e1c4f8121c865d4c72ec289afb96faf","author":{"email":"587176f59bd66462892fd96dcec0acd2c8acf8c1@gmail.com","name":"Ilkka Huotari"},"message":"Update index.html","distinct":true,"url":"https://api.github.com/repos/ile/ile.github.io/commits/67750d260e1c4f8121c865d4c72ec289afb96faf"}]},"public":true,"created_at":"2015-01-01T15:08:42Z"} +,{"id":"2489655086","type":"PushEvent","actor":{"id":1563559,"login":"jaswsinc","gravatar_id":"","url":"https://api.github.com/users/jaswsinc","avatar_url":"https://avatars.githubusercontent.com/u/1563559?"},"repo":{"id":26142240,"name":"websharks/zencache","url":"https://api.github.com/repos/websharks/zencache"},"payload":{"push_id":536865805,"size":1,"distinct_size":1,"ref":"refs/heads/feature/5-deactivate","head":"493c9d22394d16ddd10f39f8004d0ee613ded309","before":"46f08fe96ad6b8dba7ebb94dd778f59082ec2d00","commits":[{"sha":"493c9d22394d16ddd10f39f8004d0ee613ded309","author":{"email":"6201de23c7ceb366b024d639ec160438de89ccc1@wsharks.com","name":"JasWSInc"},"message":"Auto-deactivate QC and QCP. See: websharks/zencache#5\n\n- Switching to the `init` hook to ensure it is always deactivated automatically at runtime; no matter the context.","distinct":true,"url":"https://api.github.com/repos/websharks/zencache/commits/493c9d22394d16ddd10f39f8004d0ee613ded309"}]},"public":true,"created_at":"2015-01-01T15:08:44Z","org":{"id":1563690,"login":"websharks","gravatar_id":"","url":"https://api.github.com/orgs/websharks","avatar_url":"https://avatars.githubusercontent.com/u/1563690?"}} +,{"id":"2489655088","type":"CreateEvent","actor":{"id":1086194,"login":"adrai","gravatar_id":"","url":"https://api.github.com/users/adrai","avatar_url":"https://avatars.githubusercontent.com/u/1086194?"},"repo":{"id":28688745,"name":"adrai/sensortag-visualization","url":"https://api.github.com/repos/adrai/sensortag-visualization"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"playground","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:44Z"} +,{"id":"2489655089","type":"IssueCommentEvent","actor":{"id":841788,"login":"finnp","gravatar_id":"","url":"https://api.github.com/users/finnp","avatar_url":"https://avatars.githubusercontent.com/u/841788?"},"repo":{"id":23203674,"name":"nodeschool/organizers","url":"https://api.github.com/repos/nodeschool/organizers"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/nodeschool/organizers/issues/107","labels_url":"https://api.github.com/repos/nodeschool/organizers/issues/107/labels{/name}","comments_url":"https://api.github.com/repos/nodeschool/organizers/issues/107/comments","events_url":"https://api.github.com/repos/nodeschool/organizers/issues/107/events","html_url":"https://github.com/nodeschool/organizers/issues/107","id":53220406,"number":107,"title":"NodeSchool at Kirovohrad, Ukraine","user":{"login":"ghaiklor","id":3625244,"avatar_url":"https://avatars.githubusercontent.com/u/3625244?v=3","gravatar_id":"","url":"https://api.github.com/users/ghaiklor","html_url":"https://github.com/ghaiklor","followers_url":"https://api.github.com/users/ghaiklor/followers","following_url":"https://api.github.com/users/ghaiklor/following{/other_user}","gists_url":"https://api.github.com/users/ghaiklor/gists{/gist_id}","starred_url":"https://api.github.com/users/ghaiklor/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ghaiklor/subscriptions","organizations_url":"https://api.github.com/users/ghaiklor/orgs","repos_url":"https://api.github.com/users/ghaiklor/repos","events_url":"https://api.github.com/users/ghaiklor/events{/privacy}","received_events_url":"https://api.github.com/users/ghaiklor/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T14:10:22Z","updated_at":"2015-01-01T15:08:43Z","closed_at":"2015-01-01T15:08:43Z","body":"Hi, I would like to start a nodeschool chapter for Kirovohrad, Ukraine. I am @ghaiklor on twitter and work at [Onix-Systems](http://onix-systems.com). I will organize this chapter myself (Kirovohrad is small town). I have been using JavaScript more than 4 years and Node.js more than 1 year. I would like to help others learn as well."},"comment":{"url":"https://api.github.com/repos/nodeschool/organizers/issues/comments/68488664","html_url":"https://github.com/nodeschool/organizers/issues/107#issuecomment-68488664","issue_url":"https://api.github.com/repos/nodeschool/organizers/issues/107","id":68488664,"user":{"login":"finnp","id":841788,"avatar_url":"https://avatars.githubusercontent.com/u/841788?v=3","gravatar_id":"","url":"https://api.github.com/users/finnp","html_url":"https://github.com/finnp","followers_url":"https://api.github.com/users/finnp/followers","following_url":"https://api.github.com/users/finnp/following{/other_user}","gists_url":"https://api.github.com/users/finnp/gists{/gist_id}","starred_url":"https://api.github.com/users/finnp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/finnp/subscriptions","organizations_url":"https://api.github.com/users/finnp/orgs","repos_url":"https://api.github.com/users/finnp/repos","events_url":"https://api.github.com/users/finnp/events{/privacy}","received_events_url":"https://api.github.com/users/finnp/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:08:43Z","updated_at":"2015-01-01T15:08:43Z","body":"Awesome :tada: I invited you to the organisation. Go ahead and follow these steps next: https://github.com/nodeschool/organizers#1"}},"public":true,"created_at":"2015-01-01T15:08:44Z","org":{"id":5437587,"login":"nodeschool","gravatar_id":"","url":"https://api.github.com/orgs/nodeschool","avatar_url":"https://avatars.githubusercontent.com/u/5437587?"}} +,{"id":"2489655091","type":"IssuesEvent","actor":{"id":841788,"login":"finnp","gravatar_id":"","url":"https://api.github.com/users/finnp","avatar_url":"https://avatars.githubusercontent.com/u/841788?"},"repo":{"id":23203674,"name":"nodeschool/organizers","url":"https://api.github.com/repos/nodeschool/organizers"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/nodeschool/organizers/issues/107","labels_url":"https://api.github.com/repos/nodeschool/organizers/issues/107/labels{/name}","comments_url":"https://api.github.com/repos/nodeschool/organizers/issues/107/comments","events_url":"https://api.github.com/repos/nodeschool/organizers/issues/107/events","html_url":"https://github.com/nodeschool/organizers/issues/107","id":53220406,"number":107,"title":"NodeSchool at Kirovohrad, Ukraine","user":{"login":"ghaiklor","id":3625244,"avatar_url":"https://avatars.githubusercontent.com/u/3625244?v=3","gravatar_id":"","url":"https://api.github.com/users/ghaiklor","html_url":"https://github.com/ghaiklor","followers_url":"https://api.github.com/users/ghaiklor/followers","following_url":"https://api.github.com/users/ghaiklor/following{/other_user}","gists_url":"https://api.github.com/users/ghaiklor/gists{/gist_id}","starred_url":"https://api.github.com/users/ghaiklor/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ghaiklor/subscriptions","organizations_url":"https://api.github.com/users/ghaiklor/orgs","repos_url":"https://api.github.com/users/ghaiklor/repos","events_url":"https://api.github.com/users/ghaiklor/events{/privacy}","received_events_url":"https://api.github.com/users/ghaiklor/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T14:10:22Z","updated_at":"2015-01-01T15:08:43Z","closed_at":"2015-01-01T15:08:43Z","body":"Hi, I would like to start a nodeschool chapter for Kirovohrad, Ukraine. I am @ghaiklor on twitter and work at [Onix-Systems](http://onix-systems.com). I will organize this chapter myself (Kirovohrad is small town). I have been using JavaScript more than 4 years and Node.js more than 1 year. I would like to help others learn as well."}},"public":true,"created_at":"2015-01-01T15:08:44Z","org":{"id":5437587,"login":"nodeschool","gravatar_id":"","url":"https://api.github.com/orgs/nodeschool","avatar_url":"https://avatars.githubusercontent.com/u/5437587?"}} +,{"id":"2489655099","type":"PushEvent","actor":{"id":1172536,"login":"emrahday","gravatar_id":"","url":"https://api.github.com/users/emrahday","avatar_url":"https://avatars.githubusercontent.com/u/1172536?"},"repo":{"id":27871828,"name":"emrahday/Fotoly","url":"https://api.github.com/repos/emrahday/Fotoly"},"payload":{"push_id":536865812,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a2fbc3e96368d72ba25ed0f32376ff4a95f13ab1","before":"0d3bf92a3c435658738520f014863449d8ff1f41","commits":[{"sha":"a2fbc3e96368d72ba25ed0f32376ff4a95f13ab1","author":{"email":"1a73af9e7ae00182733b2292511b814be66f065f@emrahdayioglu.com","name":"emrah"},"message":"ignores","distinct":true,"url":"https://api.github.com/repos/emrahday/Fotoly/commits/a2fbc3e96368d72ba25ed0f32376ff4a95f13ab1"}]},"public":true,"created_at":"2015-01-01T15:08:44Z"} +,{"id":"2489655101","type":"PushEvent","actor":{"id":557961,"login":"e-jigsaw","gravatar_id":"","url":"https://api.github.com/users/e-jigsaw","avatar_url":"https://avatars.githubusercontent.com/u/557961?"},"repo":{"id":28375418,"name":"e-jigsaw/tmpl","url":"https://api.github.com/repos/e-jigsaw/tmpl"},"payload":{"push_id":536865813,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"34699fddd247424677321367723d47c527246c1b","before":"478ea720fbce3d00a6b86559abd37432e9d609cb","commits":[{"sha":"eb572a49b39fa054e3876419c99e41804f534aea","author":{"email":"565b824397aa4296737cf3c505776243d38bd1bb@live.jp","name":"jigsaw"},"message":"fix article tmpl title","distinct":true,"url":"https://api.github.com/repos/e-jigsaw/tmpl/commits/eb572a49b39fa054e3876419c99e41804f534aea"},{"sha":"34699fddd247424677321367723d47c527246c1b","author":{"email":"565b824397aa4296737cf3c505776243d38bd1bb@live.jp","name":"jigsaw"},"message":"0.0.12","distinct":true,"url":"https://api.github.com/repos/e-jigsaw/tmpl/commits/34699fddd247424677321367723d47c527246c1b"}]},"public":true,"created_at":"2015-01-01T15:08:44Z"} +,{"id":"2489655102","type":"CreateEvent","actor":{"id":1287170,"login":"wahhid","gravatar_id":"","url":"https://api.github.com/users/wahhid","avatar_url":"https://avatars.githubusercontent.com/u/1287170?"},"repo":{"id":28688753,"name":"wahhid/php_rdm_web_access_ec","url":"https://api.github.com/repos/wahhid/php_rdm_web_access_ec"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:44Z"} +,{"id":"2489655104","type":"PushEvent","actor":{"id":6861956,"login":"emreay-","gravatar_id":"","url":"https://api.github.com/users/emreay-","avatar_url":"https://avatars.githubusercontent.com/u/6861956?"},"repo":{"id":27684316,"name":"emreay-/agv","url":"https://api.github.com/repos/emreay-/agv"},"payload":{"push_id":536865816,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2b9104dc6761f710f79e6f57aa2faee753b7db23","before":"722d68770b9a9511a7df744a58d297d4478cdc29","commits":[{"sha":"2b9104dc6761f710f79e6f57aa2faee753b7db23","author":{"email":"329053c86586dfab3facb0478d574a5c888d3ad7@itu.edu.tr","name":"Emre Ay"},"message":"rectangular trajectory files","distinct":true,"url":"https://api.github.com/repos/emreay-/agv/commits/2b9104dc6761f710f79e6f57aa2faee753b7db23"}]},"public":true,"created_at":"2015-01-01T15:08:44Z"} +,{"id":"2489655106","type":"PushEvent","actor":{"id":1490443,"login":"finbar-crago","gravatar_id":"","url":"https://api.github.com/users/finbar-crago","avatar_url":"https://avatars.githubusercontent.com/u/1490443?"},"repo":{"id":24129115,"name":"finbar-crago/enqueue","url":"https://api.github.com/repos/finbar-crago/enqueue"},"payload":{"push_id":536865817,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"33cc7acc3067df20bbc85f0ce5293a12ae555863","before":"5ac08d57e7e7d93e0d091c2213f5933dedd52a61","commits":[{"sha":"33cc7acc3067df20bbc85f0ce5293a12ae555863","author":{"email":"9b9997dca2786cd566983a68e5923eb50e444684@gmail.com","name":"Finbar Crago"},"message":"start restruct top","distinct":true,"url":"https://api.github.com/repos/finbar-crago/enqueue/commits/33cc7acc3067df20bbc85f0ce5293a12ae555863"}]},"public":true,"created_at":"2015-01-01T15:08:44Z"} +,{"id":"2489655108","type":"PullRequestEvent","actor":{"id":1208763,"login":"ims21","gravatar_id":"","url":"https://api.github.com/users/ims21","avatar_url":"https://avatars.githubusercontent.com/u/1208763?"},"repo":{"id":2794457,"name":"littlesat/skin-PLiHD","url":"https://api.github.com/repos/littlesat/skin-PLiHD"},"payload":{"action":"closed","number":239,"pull_request":{"url":"https://api.github.com/repos/littlesat/skin-PLiHD/pulls/239","id":26743836,"html_url":"https://github.com/littlesat/skin-PLiHD/pull/239","diff_url":"https://github.com/littlesat/skin-PLiHD/pull/239.diff","patch_url":"https://github.com/littlesat/skin-PLiHD/pull/239.patch","issue_url":"https://api.github.com/repos/littlesat/skin-PLiHD/issues/239","number":239,"state":"closed","locked":false,"title":"cosmetic in PLi-HD1","user":{"login":"ims21","id":1208763,"avatar_url":"https://avatars.githubusercontent.com/u/1208763?v=3","gravatar_id":"","url":"https://api.github.com/users/ims21","html_url":"https://github.com/ims21","followers_url":"https://api.github.com/users/ims21/followers","following_url":"https://api.github.com/users/ims21/following{/other_user}","gists_url":"https://api.github.com/users/ims21/gists{/gist_id}","starred_url":"https://api.github.com/users/ims21/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ims21/subscriptions","organizations_url":"https://api.github.com/users/ims21/orgs","repos_url":"https://api.github.com/users/ims21/repos","events_url":"https://api.github.com/users/ims21/events{/privacy}","received_events_url":"https://api.github.com/users/ims21/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:08:38Z","updated_at":"2015-01-01T15:08:45Z","closed_at":"2015-01-01T15:08:45Z","merged_at":"2015-01-01T15:08:45Z","merge_commit_sha":"56bc32ff2cf19e315b33af52b867a4bd9024ed6f","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/littlesat/skin-PLiHD/pulls/239/commits","review_comments_url":"https://api.github.com/repos/littlesat/skin-PLiHD/pulls/239/comments","review_comment_url":"https://api.github.com/repos/littlesat/skin-PLiHD/pulls/comments/{number}","comments_url":"https://api.github.com/repos/littlesat/skin-PLiHD/issues/239/comments","statuses_url":"https://api.github.com/repos/littlesat/skin-PLiHD/statuses/037e445caaa31474c9e84e3dddfaad45406772cb","head":{"label":"ims21:master","ref":"master","sha":"037e445caaa31474c9e84e3dddfaad45406772cb","user":{"login":"ims21","id":1208763,"avatar_url":"https://avatars.githubusercontent.com/u/1208763?v=3","gravatar_id":"","url":"https://api.github.com/users/ims21","html_url":"https://github.com/ims21","followers_url":"https://api.github.com/users/ims21/followers","following_url":"https://api.github.com/users/ims21/following{/other_user}","gists_url":"https://api.github.com/users/ims21/gists{/gist_id}","starred_url":"https://api.github.com/users/ims21/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ims21/subscriptions","organizations_url":"https://api.github.com/users/ims21/orgs","repos_url":"https://api.github.com/users/ims21/repos","events_url":"https://api.github.com/users/ims21/events{/privacy}","received_events_url":"https://api.github.com/users/ims21/received_events","type":"User","site_admin":false},"repo":{"id":5190632,"name":"skin-PLiHD","full_name":"ims21/skin-PLiHD","owner":{"login":"ims21","id":1208763,"avatar_url":"https://avatars.githubusercontent.com/u/1208763?v=3","gravatar_id":"","url":"https://api.github.com/users/ims21","html_url":"https://github.com/ims21","followers_url":"https://api.github.com/users/ims21/followers","following_url":"https://api.github.com/users/ims21/following{/other_user}","gists_url":"https://api.github.com/users/ims21/gists{/gist_id}","starred_url":"https://api.github.com/users/ims21/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ims21/subscriptions","organizations_url":"https://api.github.com/users/ims21/orgs","repos_url":"https://api.github.com/users/ims21/repos","events_url":"https://api.github.com/users/ims21/events{/privacy}","received_events_url":"https://api.github.com/users/ims21/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ims21/skin-PLiHD","description":"skin for the PLi image","fork":true,"url":"https://api.github.com/repos/ims21/skin-PLiHD","forks_url":"https://api.github.com/repos/ims21/skin-PLiHD/forks","keys_url":"https://api.github.com/repos/ims21/skin-PLiHD/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ims21/skin-PLiHD/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ims21/skin-PLiHD/teams","hooks_url":"https://api.github.com/repos/ims21/skin-PLiHD/hooks","issue_events_url":"https://api.github.com/repos/ims21/skin-PLiHD/issues/events{/number}","events_url":"https://api.github.com/repos/ims21/skin-PLiHD/events","assignees_url":"https://api.github.com/repos/ims21/skin-PLiHD/assignees{/user}","branches_url":"https://api.github.com/repos/ims21/skin-PLiHD/branches{/branch}","tags_url":"https://api.github.com/repos/ims21/skin-PLiHD/tags","blobs_url":"https://api.github.com/repos/ims21/skin-PLiHD/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ims21/skin-PLiHD/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ims21/skin-PLiHD/git/refs{/sha}","trees_url":"https://api.github.com/repos/ims21/skin-PLiHD/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ims21/skin-PLiHD/statuses/{sha}","languages_url":"https://api.github.com/repos/ims21/skin-PLiHD/languages","stargazers_url":"https://api.github.com/repos/ims21/skin-PLiHD/stargazers","contributors_url":"https://api.github.com/repos/ims21/skin-PLiHD/contributors","subscribers_url":"https://api.github.com/repos/ims21/skin-PLiHD/subscribers","subscription_url":"https://api.github.com/repos/ims21/skin-PLiHD/subscription","commits_url":"https://api.github.com/repos/ims21/skin-PLiHD/commits{/sha}","git_commits_url":"https://api.github.com/repos/ims21/skin-PLiHD/git/commits{/sha}","comments_url":"https://api.github.com/repos/ims21/skin-PLiHD/comments{/number}","issue_comment_url":"https://api.github.com/repos/ims21/skin-PLiHD/issues/comments/{number}","contents_url":"https://api.github.com/repos/ims21/skin-PLiHD/contents/{+path}","compare_url":"https://api.github.com/repos/ims21/skin-PLiHD/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ims21/skin-PLiHD/merges","archive_url":"https://api.github.com/repos/ims21/skin-PLiHD/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ims21/skin-PLiHD/downloads","issues_url":"https://api.github.com/repos/ims21/skin-PLiHD/issues{/number}","pulls_url":"https://api.github.com/repos/ims21/skin-PLiHD/pulls{/number}","milestones_url":"https://api.github.com/repos/ims21/skin-PLiHD/milestones{/number}","notifications_url":"https://api.github.com/repos/ims21/skin-PLiHD/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ims21/skin-PLiHD/labels{/name}","releases_url":"https://api.github.com/repos/ims21/skin-PLiHD/releases{/id}","created_at":"2012-07-26T10:11:11Z","updated_at":"2014-11-22T15:49:57Z","pushed_at":"2015-01-01T15:07:25Z","git_url":"git://github.com/ims21/skin-PLiHD.git","ssh_url":"git@github.com:ims21/skin-PLiHD.git","clone_url":"https://github.com/ims21/skin-PLiHD.git","svn_url":"https://github.com/ims21/skin-PLiHD","homepage":"","size":2160,"stargazers_count":1,"watchers_count":1,"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":1,"default_branch":"master"}},"base":{"label":"littlesat:master","ref":"master","sha":"a540a1107c5fb8c2655888e3e5ae768063dbc7a7","user":{"login":"littlesat","id":1200384,"avatar_url":"https://avatars.githubusercontent.com/u/1200384?v=3","gravatar_id":"","url":"https://api.github.com/users/littlesat","html_url":"https://github.com/littlesat","followers_url":"https://api.github.com/users/littlesat/followers","following_url":"https://api.github.com/users/littlesat/following{/other_user}","gists_url":"https://api.github.com/users/littlesat/gists{/gist_id}","starred_url":"https://api.github.com/users/littlesat/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/littlesat/subscriptions","organizations_url":"https://api.github.com/users/littlesat/orgs","repos_url":"https://api.github.com/users/littlesat/repos","events_url":"https://api.github.com/users/littlesat/events{/privacy}","received_events_url":"https://api.github.com/users/littlesat/received_events","type":"User","site_admin":false},"repo":{"id":2794457,"name":"skin-PLiHD","full_name":"littlesat/skin-PLiHD","owner":{"login":"littlesat","id":1200384,"avatar_url":"https://avatars.githubusercontent.com/u/1200384?v=3","gravatar_id":"","url":"https://api.github.com/users/littlesat","html_url":"https://github.com/littlesat","followers_url":"https://api.github.com/users/littlesat/followers","following_url":"https://api.github.com/users/littlesat/following{/other_user}","gists_url":"https://api.github.com/users/littlesat/gists{/gist_id}","starred_url":"https://api.github.com/users/littlesat/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/littlesat/subscriptions","organizations_url":"https://api.github.com/users/littlesat/orgs","repos_url":"https://api.github.com/users/littlesat/repos","events_url":"https://api.github.com/users/littlesat/events{/privacy}","received_events_url":"https://api.github.com/users/littlesat/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/littlesat/skin-PLiHD","description":"skin for the PLi image","fork":false,"url":"https://api.github.com/repos/littlesat/skin-PLiHD","forks_url":"https://api.github.com/repos/littlesat/skin-PLiHD/forks","keys_url":"https://api.github.com/repos/littlesat/skin-PLiHD/keys{/key_id}","collaborators_url":"https://api.github.com/repos/littlesat/skin-PLiHD/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/littlesat/skin-PLiHD/teams","hooks_url":"https://api.github.com/repos/littlesat/skin-PLiHD/hooks","issue_events_url":"https://api.github.com/repos/littlesat/skin-PLiHD/issues/events{/number}","events_url":"https://api.github.com/repos/littlesat/skin-PLiHD/events","assignees_url":"https://api.github.com/repos/littlesat/skin-PLiHD/assignees{/user}","branches_url":"https://api.github.com/repos/littlesat/skin-PLiHD/branches{/branch}","tags_url":"https://api.github.com/repos/littlesat/skin-PLiHD/tags","blobs_url":"https://api.github.com/repos/littlesat/skin-PLiHD/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/littlesat/skin-PLiHD/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/littlesat/skin-PLiHD/git/refs{/sha}","trees_url":"https://api.github.com/repos/littlesat/skin-PLiHD/git/trees{/sha}","statuses_url":"https://api.github.com/repos/littlesat/skin-PLiHD/statuses/{sha}","languages_url":"https://api.github.com/repos/littlesat/skin-PLiHD/languages","stargazers_url":"https://api.github.com/repos/littlesat/skin-PLiHD/stargazers","contributors_url":"https://api.github.com/repos/littlesat/skin-PLiHD/contributors","subscribers_url":"https://api.github.com/repos/littlesat/skin-PLiHD/subscribers","subscription_url":"https://api.github.com/repos/littlesat/skin-PLiHD/subscription","commits_url":"https://api.github.com/repos/littlesat/skin-PLiHD/commits{/sha}","git_commits_url":"https://api.github.com/repos/littlesat/skin-PLiHD/git/commits{/sha}","comments_url":"https://api.github.com/repos/littlesat/skin-PLiHD/comments{/number}","issue_comment_url":"https://api.github.com/repos/littlesat/skin-PLiHD/issues/comments/{number}","contents_url":"https://api.github.com/repos/littlesat/skin-PLiHD/contents/{+path}","compare_url":"https://api.github.com/repos/littlesat/skin-PLiHD/compare/{base}...{head}","merges_url":"https://api.github.com/repos/littlesat/skin-PLiHD/merges","archive_url":"https://api.github.com/repos/littlesat/skin-PLiHD/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/littlesat/skin-PLiHD/downloads","issues_url":"https://api.github.com/repos/littlesat/skin-PLiHD/issues{/number}","pulls_url":"https://api.github.com/repos/littlesat/skin-PLiHD/pulls{/number}","milestones_url":"https://api.github.com/repos/littlesat/skin-PLiHD/milestones{/number}","notifications_url":"https://api.github.com/repos/littlesat/skin-PLiHD/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/littlesat/skin-PLiHD/labels{/name}","releases_url":"https://api.github.com/repos/littlesat/skin-PLiHD/releases{/id}","created_at":"2011-11-17T09:51:48Z","updated_at":"2014-11-22T15:52:46Z","pushed_at":"2015-01-01T15:08:45Z","git_url":"git://github.com/littlesat/skin-PLiHD.git","ssh_url":"git@github.com:littlesat/skin-PLiHD.git","clone_url":"https://github.com/littlesat/skin-PLiHD.git","svn_url":"https://github.com/littlesat/skin-PLiHD","homepage":"","size":2804,"stargazers_count":10,"watchers_count":10,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":16,"mirror_url":null,"open_issues_count":2,"forks":16,"open_issues":2,"watchers":10,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/littlesat/skin-PLiHD/pulls/239"},"html":{"href":"https://github.com/littlesat/skin-PLiHD/pull/239"},"issue":{"href":"https://api.github.com/repos/littlesat/skin-PLiHD/issues/239"},"comments":{"href":"https://api.github.com/repos/littlesat/skin-PLiHD/issues/239/comments"},"review_comments":{"href":"https://api.github.com/repos/littlesat/skin-PLiHD/pulls/239/comments"},"review_comment":{"href":"https://api.github.com/repos/littlesat/skin-PLiHD/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/littlesat/skin-PLiHD/pulls/239/commits"},"statuses":{"href":"https://api.github.com/repos/littlesat/skin-PLiHD/statuses/037e445caaa31474c9e84e3dddfaad45406772cb"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"ims21","id":1208763,"avatar_url":"https://avatars.githubusercontent.com/u/1208763?v=3","gravatar_id":"","url":"https://api.github.com/users/ims21","html_url":"https://github.com/ims21","followers_url":"https://api.github.com/users/ims21/followers","following_url":"https://api.github.com/users/ims21/following{/other_user}","gists_url":"https://api.github.com/users/ims21/gists{/gist_id}","starred_url":"https://api.github.com/users/ims21/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ims21/subscriptions","organizations_url":"https://api.github.com/users/ims21/orgs","repos_url":"https://api.github.com/users/ims21/repos","events_url":"https://api.github.com/users/ims21/events{/privacy}","received_events_url":"https://api.github.com/users/ims21/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":82,"deletions":82,"changed_files":5}},"public":true,"created_at":"2015-01-01T15:08:45Z"} +,{"id":"2489655110","type":"PushEvent","actor":{"id":1208763,"login":"ims21","gravatar_id":"","url":"https://api.github.com/users/ims21","avatar_url":"https://avatars.githubusercontent.com/u/1208763?"},"repo":{"id":2794457,"name":"littlesat/skin-PLiHD","url":"https://api.github.com/repos/littlesat/skin-PLiHD"},"payload":{"push_id":536865818,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"8715d6d7895dbb682e1c4912ebc9bc61cb191d8b","before":"a540a1107c5fb8c2655888e3e5ae768063dbc7a7","commits":[{"sha":"037e445caaa31474c9e84e3dddfaad45406772cb","author":{"email":"fda17d13645199c8d769037ec1a7a195ca8842f2@users.sourceforge.net","name":"ims"},"message":"cosmetic in PLi-HD1","distinct":true,"url":"https://api.github.com/repos/littlesat/skin-PLiHD/commits/037e445caaa31474c9e84e3dddfaad45406772cb"},{"sha":"8715d6d7895dbb682e1c4912ebc9bc61cb191d8b","author":{"email":"54669547a225ff20cba8b75a4adca540eef25858@volyne.cz","name":"ims21"},"message":"Merge pull request #239 from ims21/master\n\ncosmetic in PLi-HD1","distinct":true,"url":"https://api.github.com/repos/littlesat/skin-PLiHD/commits/8715d6d7895dbb682e1c4912ebc9bc61cb191d8b"}]},"public":true,"created_at":"2015-01-01T15:08:45Z"} +,{"id":"2489655112","type":"PushEvent","actor":{"id":5820,"login":"gaustin","gravatar_id":"","url":"https://api.github.com/users/gaustin","avatar_url":"https://avatars.githubusercontent.com/u/5820?"},"repo":{"id":2948585,"name":"gaustin/Custer","url":"https://api.github.com/repos/gaustin/Custer"},"payload":{"push_id":536865819,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7fdb6c154b7da60aef3f2318f8be4f933c058038","before":"1c7fcf1e48a444109d8c0a05b2c904c85b8dfa9c","commits":[{"sha":"7fdb6c154b7da60aef3f2318f8be4f933c058038","author":{"email":"e6df6e8fcb8da9da80b3df2c45a0da7e37d9558c@gmail.com","name":"Grant Austin"},"message":"Remove extraneous println.","distinct":true,"url":"https://api.github.com/repos/gaustin/Custer/commits/7fdb6c154b7da60aef3f2318f8be4f933c058038"}]},"public":true,"created_at":"2015-01-01T15:08:45Z"} +,{"id":"2489655119","type":"IssueCommentEvent","actor":{"id":53005,"login":"raamdev","gravatar_id":"","url":"https://api.github.com/users/raamdev","avatar_url":"https://avatars.githubusercontent.com/u/53005?"},"repo":{"id":26142240,"name":"websharks/zencache","url":"https://api.github.com/repos/websharks/zencache"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/websharks/zencache/issues/19","labels_url":"https://api.github.com/repos/websharks/zencache/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/websharks/zencache/issues/19/comments","events_url":"https://api.github.com/repos/websharks/zencache/issues/19/events","html_url":"https://github.com/websharks/zencache/issues/19","id":53216775,"number":19,"title":"Throughput Graph (powered by waffle.io)","user":{"login":"jaswsinc","id":1563559,"avatar_url":"https://avatars.githubusercontent.com/u/1563559?v=3","gravatar_id":"","url":"https://api.github.com/users/jaswsinc","html_url":"https://github.com/jaswsinc","followers_url":"https://api.github.com/users/jaswsinc/followers","following_url":"https://api.github.com/users/jaswsinc/following{/other_user}","gists_url":"https://api.github.com/users/jaswsinc/gists{/gist_id}","starred_url":"https://api.github.com/users/jaswsinc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jaswsinc/subscriptions","organizations_url":"https://api.github.com/users/jaswsinc/orgs","repos_url":"https://api.github.com/users/jaswsinc/repos","events_url":"https://api.github.com/users/jaswsinc/events{/privacy}","received_events_url":"https://api.github.com/users/jaswsinc/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/websharks/zencache/labels/ready+to+merge","name":"ready to merge","color":"ededed"},{"url":"https://api.github.com/repos/websharks/zencache/labels/todo","name":"todo","color":"bfd4f2"}],"state":"closed","locked":false,"assignee":{"login":"jaswsinc","id":1563559,"avatar_url":"https://avatars.githubusercontent.com/u/1563559?v=3","gravatar_id":"","url":"https://api.github.com/users/jaswsinc","html_url":"https://github.com/jaswsinc","followers_url":"https://api.github.com/users/jaswsinc/followers","following_url":"https://api.github.com/users/jaswsinc/following{/other_user}","gists_url":"https://api.github.com/users/jaswsinc/gists{/gist_id}","starred_url":"https://api.github.com/users/jaswsinc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jaswsinc/subscriptions","organizations_url":"https://api.github.com/users/jaswsinc/orgs","repos_url":"https://api.github.com/users/jaswsinc/repos","events_url":"https://api.github.com/users/jaswsinc/events{/privacy}","received_events_url":"https://api.github.com/users/jaswsinc/received_events","type":"User","site_admin":false},"milestone":null,"comments":1,"created_at":"2015-01-01T10:01:27Z","updated_at":"2015-01-01T15:08:46Z","closed_at":"2015-01-01T15:08:46Z","body":"Attach our Throughput Graph, provided by waffle.io to the README.md.\r\n\r\n---\r\n\r\n### Throughput Graph (powered by waffle.io)\r\n\r\n[![Throughput Graph](https://graphs.waffle.io/websharks/zencache/throughput.svg)](https://waffle.io/websharks/zencache/metrics)"},"comment":{"url":"https://api.github.com/repos/websharks/zencache/issues/comments/68488667","html_url":"https://github.com/websharks/zencache/issues/19#issuecomment-68488667","issue_url":"https://api.github.com/repos/websharks/zencache/issues/19","id":68488667,"user":{"login":"raamdev","id":53005,"avatar_url":"https://avatars.githubusercontent.com/u/53005?v=3","gravatar_id":"","url":"https://api.github.com/users/raamdev","html_url":"https://github.com/raamdev","followers_url":"https://api.github.com/users/raamdev/followers","following_url":"https://api.github.com/users/raamdev/following{/other_user}","gists_url":"https://api.github.com/users/raamdev/gists{/gist_id}","starred_url":"https://api.github.com/users/raamdev/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/raamdev/subscriptions","organizations_url":"https://api.github.com/users/raamdev/orgs","repos_url":"https://api.github.com/users/raamdev/repos","events_url":"https://api.github.com/users/raamdev/events{/privacy}","received_events_url":"https://api.github.com/users/raamdev/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:08:46Z","updated_at":"2015-01-01T15:08:46Z","body":"Merged PRs. Thanks! :)"}},"public":true,"created_at":"2015-01-01T15:08:46Z","org":{"id":1563690,"login":"websharks","gravatar_id":"","url":"https://api.github.com/orgs/websharks","avatar_url":"https://avatars.githubusercontent.com/u/1563690?"}} +,{"id":"2489655120","type":"IssuesEvent","actor":{"id":53005,"login":"raamdev","gravatar_id":"","url":"https://api.github.com/users/raamdev","avatar_url":"https://avatars.githubusercontent.com/u/53005?"},"repo":{"id":26142240,"name":"websharks/zencache","url":"https://api.github.com/repos/websharks/zencache"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/websharks/zencache/issues/19","labels_url":"https://api.github.com/repos/websharks/zencache/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/websharks/zencache/issues/19/comments","events_url":"https://api.github.com/repos/websharks/zencache/issues/19/events","html_url":"https://github.com/websharks/zencache/issues/19","id":53216775,"number":19,"title":"Throughput Graph (powered by waffle.io)","user":{"login":"jaswsinc","id":1563559,"avatar_url":"https://avatars.githubusercontent.com/u/1563559?v=3","gravatar_id":"","url":"https://api.github.com/users/jaswsinc","html_url":"https://github.com/jaswsinc","followers_url":"https://api.github.com/users/jaswsinc/followers","following_url":"https://api.github.com/users/jaswsinc/following{/other_user}","gists_url":"https://api.github.com/users/jaswsinc/gists{/gist_id}","starred_url":"https://api.github.com/users/jaswsinc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jaswsinc/subscriptions","organizations_url":"https://api.github.com/users/jaswsinc/orgs","repos_url":"https://api.github.com/users/jaswsinc/repos","events_url":"https://api.github.com/users/jaswsinc/events{/privacy}","received_events_url":"https://api.github.com/users/jaswsinc/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/websharks/zencache/labels/ready+to+merge","name":"ready to merge","color":"ededed"},{"url":"https://api.github.com/repos/websharks/zencache/labels/todo","name":"todo","color":"bfd4f2"}],"state":"closed","locked":false,"assignee":{"login":"jaswsinc","id":1563559,"avatar_url":"https://avatars.githubusercontent.com/u/1563559?v=3","gravatar_id":"","url":"https://api.github.com/users/jaswsinc","html_url":"https://github.com/jaswsinc","followers_url":"https://api.github.com/users/jaswsinc/followers","following_url":"https://api.github.com/users/jaswsinc/following{/other_user}","gists_url":"https://api.github.com/users/jaswsinc/gists{/gist_id}","starred_url":"https://api.github.com/users/jaswsinc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jaswsinc/subscriptions","organizations_url":"https://api.github.com/users/jaswsinc/orgs","repos_url":"https://api.github.com/users/jaswsinc/repos","events_url":"https://api.github.com/users/jaswsinc/events{/privacy}","received_events_url":"https://api.github.com/users/jaswsinc/received_events","type":"User","site_admin":false},"milestone":null,"comments":1,"created_at":"2015-01-01T10:01:27Z","updated_at":"2015-01-01T15:08:46Z","closed_at":"2015-01-01T15:08:46Z","body":"Attach our Throughput Graph, provided by waffle.io to the README.md.\r\n\r\n---\r\n\r\n### Throughput Graph (powered by waffle.io)\r\n\r\n[![Throughput Graph](https://graphs.waffle.io/websharks/zencache/throughput.svg)](https://waffle.io/websharks/zencache/metrics)"}},"public":true,"created_at":"2015-01-01T15:08:46Z","org":{"id":1563690,"login":"websharks","gravatar_id":"","url":"https://api.github.com/orgs/websharks","avatar_url":"https://avatars.githubusercontent.com/u/1563690?"}} +,{"id":"2489655126","type":"IssuesEvent","actor":{"id":3776081,"login":"fosterlynn","gravatar_id":"","url":"https://api.github.com/users/fosterlynn","avatar_url":"https://avatars.githubusercontent.com/u/3776081?"},"repo":{"id":6568554,"name":"valnet/valuenetwork","url":"https://api.github.com/repos/valnet/valuenetwork"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/valnet/valuenetwork/issues/302","labels_url":"https://api.github.com/repos/valnet/valuenetwork/issues/302/labels{/name}","comments_url":"https://api.github.com/repos/valnet/valuenetwork/issues/302/comments","events_url":"https://api.github.com/repos/valnet/valuenetwork/issues/302/events","html_url":"https://github.com/valnet/valuenetwork/issues/302","id":53221501,"number":302,"title":"Doesn't save zero purchase receipt value","user":{"login":"fosterlynn","id":3776081,"avatar_url":"https://avatars.githubusercontent.com/u/3776081?v=3","gravatar_id":"","url":"https://api.github.com/users/fosterlynn","html_url":"https://github.com/fosterlynn","followers_url":"https://api.github.com/users/fosterlynn/followers","following_url":"https://api.github.com/users/fosterlynn/following{/other_user}","gists_url":"https://api.github.com/users/fosterlynn/gists{/gist_id}","starred_url":"https://api.github.com/users/fosterlynn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fosterlynn/subscriptions","organizations_url":"https://api.github.com/users/fosterlynn/orgs","repos_url":"https://api.github.com/users/fosterlynn/repos","events_url":"https://api.github.com/users/fosterlynn/events{/privacy}","received_events_url":"https://api.github.com/users/fosterlynn/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/valnet/valuenetwork/labels/bug","name":"bug","color":"fc2929"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:08:47Z","updated_at":"2015-01-01T15:08:47Z","closed_at":null,"body":"On receipt of goods in a purchase, the value field is required. Not sure this is necessary. It will take zero, but then does not save the receipt, and no error message."}},"public":true,"created_at":"2015-01-01T15:08:49Z","org":{"id":2737866,"login":"valnet","gravatar_id":"","url":"https://api.github.com/orgs/valnet","avatar_url":"https://avatars.githubusercontent.com/u/2737866?"}} +,{"id":"2489655130","type":"ForkEvent","actor":{"id":1671848,"login":"wuhongjun","gravatar_id":"","url":"https://api.github.com/users/wuhongjun","avatar_url":"https://avatars.githubusercontent.com/u/1671848?"},"repo":{"id":14882941,"name":"NovaS/spring-database","url":"https://api.github.com/repos/NovaS/spring-database"},"payload":{"forkee":{"id":28688754,"name":"spring-database","full_name":"wuhongjun/spring-database","owner":{"login":"wuhongjun","id":1671848,"avatar_url":"https://avatars.githubusercontent.com/u/1671848?v=3","gravatar_id":"","url":"https://api.github.com/users/wuhongjun","html_url":"https://github.com/wuhongjun","followers_url":"https://api.github.com/users/wuhongjun/followers","following_url":"https://api.github.com/users/wuhongjun/following{/other_user}","gists_url":"https://api.github.com/users/wuhongjun/gists{/gist_id}","starred_url":"https://api.github.com/users/wuhongjun/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wuhongjun/subscriptions","organizations_url":"https://api.github.com/users/wuhongjun/orgs","repos_url":"https://api.github.com/users/wuhongjun/repos","events_url":"https://api.github.com/users/wuhongjun/events{/privacy}","received_events_url":"https://api.github.com/users/wuhongjun/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/wuhongjun/spring-database","description":"sample application using spring framework with spring jdbctemplate","fork":true,"url":"https://api.github.com/repos/wuhongjun/spring-database","forks_url":"https://api.github.com/repos/wuhongjun/spring-database/forks","keys_url":"https://api.github.com/repos/wuhongjun/spring-database/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wuhongjun/spring-database/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wuhongjun/spring-database/teams","hooks_url":"https://api.github.com/repos/wuhongjun/spring-database/hooks","issue_events_url":"https://api.github.com/repos/wuhongjun/spring-database/issues/events{/number}","events_url":"https://api.github.com/repos/wuhongjun/spring-database/events","assignees_url":"https://api.github.com/repos/wuhongjun/spring-database/assignees{/user}","branches_url":"https://api.github.com/repos/wuhongjun/spring-database/branches{/branch}","tags_url":"https://api.github.com/repos/wuhongjun/spring-database/tags","blobs_url":"https://api.github.com/repos/wuhongjun/spring-database/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wuhongjun/spring-database/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wuhongjun/spring-database/git/refs{/sha}","trees_url":"https://api.github.com/repos/wuhongjun/spring-database/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wuhongjun/spring-database/statuses/{sha}","languages_url":"https://api.github.com/repos/wuhongjun/spring-database/languages","stargazers_url":"https://api.github.com/repos/wuhongjun/spring-database/stargazers","contributors_url":"https://api.github.com/repos/wuhongjun/spring-database/contributors","subscribers_url":"https://api.github.com/repos/wuhongjun/spring-database/subscribers","subscription_url":"https://api.github.com/repos/wuhongjun/spring-database/subscription","commits_url":"https://api.github.com/repos/wuhongjun/spring-database/commits{/sha}","git_commits_url":"https://api.github.com/repos/wuhongjun/spring-database/git/commits{/sha}","comments_url":"https://api.github.com/repos/wuhongjun/spring-database/comments{/number}","issue_comment_url":"https://api.github.com/repos/wuhongjun/spring-database/issues/comments/{number}","contents_url":"https://api.github.com/repos/wuhongjun/spring-database/contents/{+path}","compare_url":"https://api.github.com/repos/wuhongjun/spring-database/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wuhongjun/spring-database/merges","archive_url":"https://api.github.com/repos/wuhongjun/spring-database/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wuhongjun/spring-database/downloads","issues_url":"https://api.github.com/repos/wuhongjun/spring-database/issues{/number}","pulls_url":"https://api.github.com/repos/wuhongjun/spring-database/pulls{/number}","milestones_url":"https://api.github.com/repos/wuhongjun/spring-database/milestones{/number}","notifications_url":"https://api.github.com/repos/wuhongjun/spring-database/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wuhongjun/spring-database/labels{/name}","releases_url":"https://api.github.com/repos/wuhongjun/spring-database/releases{/id}","created_at":"2015-01-01T15:08:47Z","updated_at":"2013-12-10T09:50:09Z","pushed_at":"2013-12-10T09:50:08Z","git_url":"git://github.com/wuhongjun/spring-database.git","ssh_url":"git@github.com:wuhongjun/spring-database.git","clone_url":"https://github.com/wuhongjun/spring-database.git","svn_url":"https://github.com/wuhongjun/spring-database","homepage":null,"size":128,"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:08:49Z"} +,{"id":"2489655133","type":"WatchEvent","actor":{"id":3761240,"login":"tacumai","gravatar_id":"","url":"https://api.github.com/users/tacumai","avatar_url":"https://avatars.githubusercontent.com/u/3761240?"},"repo":{"id":9215661,"name":"mixi-inc/iOSTraining","url":"https://api.github.com/repos/mixi-inc/iOSTraining"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:49Z","org":{"id":1089312,"login":"mixi-inc","gravatar_id":"","url":"https://api.github.com/orgs/mixi-inc","avatar_url":"https://avatars.githubusercontent.com/u/1089312?"}} +,{"id":"2489655134","type":"CreateEvent","actor":{"id":4078208,"login":"itsvenkis","gravatar_id":"","url":"https://api.github.com/users/itsvenkis","avatar_url":"https://avatars.githubusercontent.com/u/4078208?"},"repo":{"id":28688755,"name":"itsvenkis/scala","url":"https://api.github.com/repos/itsvenkis/scala"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Scala Tutorials","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:49Z"} +,{"id":"2489655138","type":"PushEvent","actor":{"id":2316989,"login":"tdg5","gravatar_id":"","url":"https://api.github.com/users/tdg5","avatar_url":"https://avatars.githubusercontent.com/u/2316989?"},"repo":{"id":28665608,"name":"tdg5/heroku-buildpack-apache","url":"https://api.github.com/repos/tdg5/heroku-buildpack-apache"},"payload":{"push_id":536865824,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fd4926a7f47d35a867d2191763a46e02b92e3e2f","before":"b3c7d066b52f762202dab3df66a7eaecee3652d2","commits":[{"sha":"fd4926a7f47d35a867d2191763a46e02b92e3e2f","author":{"email":"bb9a1eadfa69e9dee64cfe3e7d7508685564dab1@gmail.com","name":"Danny Guinther"},"message":"Try tyler's php build","distinct":true,"url":"https://api.github.com/repos/tdg5/heroku-buildpack-apache/commits/fd4926a7f47d35a867d2191763a46e02b92e3e2f"}]},"public":true,"created_at":"2015-01-01T15:08:49Z"} +,{"id":"2489655142","type":"PushEvent","actor":{"id":2964928,"login":"taylorhxu","gravatar_id":"","url":"https://api.github.com/users/taylorhxu","avatar_url":"https://avatars.githubusercontent.com/u/2964928?"},"repo":{"id":25008698,"name":"taylorhxu/taylorhxu.github.io","url":"https://api.github.com/repos/taylorhxu/taylorhxu.github.io"},"payload":{"push_id":536865827,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fbedfb81546384ddda9a6e86ebdf16696f3e32a0","before":"9c236a65ffc25a2cfcec92f97dc12cdcf57fb317","commits":[{"sha":"fbedfb81546384ddda9a6e86ebdf16696f3e32a0","author":{"email":"bbaab3af5605ab26fe8b9502a6ab51a673b35a8b@gmail.com","name":"Taylor Xu"},"message":"br fix","distinct":true,"url":"https://api.github.com/repos/taylorhxu/taylorhxu.github.io/commits/fbedfb81546384ddda9a6e86ebdf16696f3e32a0"}]},"public":true,"created_at":"2015-01-01T15:08:50Z"} +,{"id":"2489655143","type":"CreateEvent","actor":{"id":4527182,"login":"SamuelWang","gravatar_id":"","url":"https://api.github.com/users/SamuelWang","avatar_url":"https://avatars.githubusercontent.com/u/4527182?"},"repo":{"id":28686883,"name":"SamuelWang/Doraemon","url":"https://api.github.com/repos/SamuelWang/Doraemon"},"payload":{"ref":"gh-pages","ref_type":"branch","master_branch":"master","description":"Create a Doraemon by pure CSS","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:50Z"} +,{"id":"2489655144","type":"CreateEvent","actor":{"id":7752475,"login":"p1ch-jp","gravatar_id":"","url":"https://api.github.com/users/p1ch-jp","avatar_url":"https://avatars.githubusercontent.com/u/7752475?"},"repo":{"id":28688714,"name":"p1ch-jp/chiraura","url":"https://api.github.com/repos/p1ch-jp/chiraura"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"blogging.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:50Z"} +,{"id":"2489655149","type":"PushEvent","actor":{"id":433707,"login":"ile","gravatar_id":"","url":"https://api.github.com/users/ile","avatar_url":"https://avatars.githubusercontent.com/u/433707?"},"repo":{"id":13599170,"name":"ile/ile.github.io","url":"https://api.github.com/repos/ile/ile.github.io"},"payload":{"push_id":536865833,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"34c4b3b1ccdf80a848b4e4693c7173702c6a185a","before":"67750d260e1c4f8121c865d4c72ec289afb96faf","commits":[{"sha":"34c4b3b1ccdf80a848b4e4693c7173702c6a185a","author":{"email":"587176f59bd66462892fd96dcec0acd2c8acf8c1@gmail.com","name":"Ilkka Huotari"},"message":"Update index.html","distinct":true,"url":"https://api.github.com/repos/ile/ile.github.io/commits/34c4b3b1ccdf80a848b4e4693c7173702c6a185a"}]},"public":true,"created_at":"2015-01-01T15:08:50Z"} +,{"id":"2489655151","type":"PushEvent","actor":{"id":5789093,"login":"mengqigu","gravatar_id":"","url":"https://api.github.com/users/mengqigu","avatar_url":"https://avatars.githubusercontent.com/u/5789093?"},"repo":{"id":24736812,"name":"august782/performance-testing-tools","url":"https://api.github.com/repos/august782/performance-testing-tools"},"payload":{"push_id":536865835,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a8a0b88d95d854da9495197265731d9cc4ff6120","before":"d222f7d0c707a5bb7d8f0c8c8f44e712b2b8bdb0","commits":[{"sha":"a8a0b88d95d854da9495197265731d9cc4ff6120","author":{"email":"a3d84dc0e65a8fd4f7a0a6d2801f4d2dc9dab200@gmail.com","name":"Mengqi Gu"},"message":"investigating openmrs","distinct":true,"url":"https://api.github.com/repos/august782/performance-testing-tools/commits/a8a0b88d95d854da9495197265731d9cc4ff6120"}]},"public":true,"created_at":"2015-01-01T15:08:51Z"} +,{"id":"2489655156","type":"PullRequestEvent","actor":{"id":2534060,"login":"herpiko","gravatar_id":"","url":"https://api.github.com/users/herpiko","avatar_url":"https://avatars.githubusercontent.com/u/2534060?"},"repo":{"id":22704261,"name":"mdamt/simaya","url":"https://api.github.com/repos/mdamt/simaya"},"payload":{"action":"opened","number":108,"pull_request":{"url":"https://api.github.com/repos/mdamt/simaya/pulls/108","id":26743838,"html_url":"https://github.com/mdamt/simaya/pull/108","diff_url":"https://github.com/mdamt/simaya/pull/108.diff","patch_url":"https://github.com/mdamt/simaya/pull/108.patch","issue_url":"https://api.github.com/repos/mdamt/simaya/issues/108","number":108,"state":"open","locked":false,"title":"Fixes #274 reorder unit tests","user":{"login":"herpiko","id":2534060,"avatar_url":"https://avatars.githubusercontent.com/u/2534060?v=3","gravatar_id":"","url":"https://api.github.com/users/herpiko","html_url":"https://github.com/herpiko","followers_url":"https://api.github.com/users/herpiko/followers","following_url":"https://api.github.com/users/herpiko/following{/other_user}","gists_url":"https://api.github.com/users/herpiko/gists{/gist_id}","starred_url":"https://api.github.com/users/herpiko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/herpiko/subscriptions","organizations_url":"https://api.github.com/users/herpiko/orgs","repos_url":"https://api.github.com/users/herpiko/repos","events_url":"https://api.github.com/users/herpiko/events{/privacy}","received_events_url":"https://api.github.com/users/herpiko/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:08:51Z","updated_at":"2015-01-01T15:08:51Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/mdamt/simaya/pulls/108/commits","review_comments_url":"https://api.github.com/repos/mdamt/simaya/pulls/108/comments","review_comment_url":"https://api.github.com/repos/mdamt/simaya/pulls/comments/{number}","comments_url":"https://api.github.com/repos/mdamt/simaya/issues/108/comments","statuses_url":"https://api.github.com/repos/mdamt/simaya/statuses/8526007d312084fe876bc3464a4f632852e80c20","head":{"label":"herpiko:fixes274_1","ref":"fixes274_1","sha":"8526007d312084fe876bc3464a4f632852e80c20","user":{"login":"herpiko","id":2534060,"avatar_url":"https://avatars.githubusercontent.com/u/2534060?v=3","gravatar_id":"","url":"https://api.github.com/users/herpiko","html_url":"https://github.com/herpiko","followers_url":"https://api.github.com/users/herpiko/followers","following_url":"https://api.github.com/users/herpiko/following{/other_user}","gists_url":"https://api.github.com/users/herpiko/gists{/gist_id}","starred_url":"https://api.github.com/users/herpiko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/herpiko/subscriptions","organizations_url":"https://api.github.com/users/herpiko/orgs","repos_url":"https://api.github.com/users/herpiko/repos","events_url":"https://api.github.com/users/herpiko/events{/privacy}","received_events_url":"https://api.github.com/users/herpiko/received_events","type":"User","site_admin":false},"repo":{"id":26988297,"name":"simaya","full_name":"herpiko/simaya","owner":{"login":"herpiko","id":2534060,"avatar_url":"https://avatars.githubusercontent.com/u/2534060?v=3","gravatar_id":"","url":"https://api.github.com/users/herpiko","html_url":"https://github.com/herpiko","followers_url":"https://api.github.com/users/herpiko/followers","following_url":"https://api.github.com/users/herpiko/following{/other_user}","gists_url":"https://api.github.com/users/herpiko/gists{/gist_id}","starred_url":"https://api.github.com/users/herpiko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/herpiko/subscriptions","organizations_url":"https://api.github.com/users/herpiko/orgs","repos_url":"https://api.github.com/users/herpiko/repos","events_url":"https://api.github.com/users/herpiko/events{/privacy}","received_events_url":"https://api.github.com/users/herpiko/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/herpiko/simaya","description":"","fork":true,"url":"https://api.github.com/repos/herpiko/simaya","forks_url":"https://api.github.com/repos/herpiko/simaya/forks","keys_url":"https://api.github.com/repos/herpiko/simaya/keys{/key_id}","collaborators_url":"https://api.github.com/repos/herpiko/simaya/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/herpiko/simaya/teams","hooks_url":"https://api.github.com/repos/herpiko/simaya/hooks","issue_events_url":"https://api.github.com/repos/herpiko/simaya/issues/events{/number}","events_url":"https://api.github.com/repos/herpiko/simaya/events","assignees_url":"https://api.github.com/repos/herpiko/simaya/assignees{/user}","branches_url":"https://api.github.com/repos/herpiko/simaya/branches{/branch}","tags_url":"https://api.github.com/repos/herpiko/simaya/tags","blobs_url":"https://api.github.com/repos/herpiko/simaya/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/herpiko/simaya/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/herpiko/simaya/git/refs{/sha}","trees_url":"https://api.github.com/repos/herpiko/simaya/git/trees{/sha}","statuses_url":"https://api.github.com/repos/herpiko/simaya/statuses/{sha}","languages_url":"https://api.github.com/repos/herpiko/simaya/languages","stargazers_url":"https://api.github.com/repos/herpiko/simaya/stargazers","contributors_url":"https://api.github.com/repos/herpiko/simaya/contributors","subscribers_url":"https://api.github.com/repos/herpiko/simaya/subscribers","subscription_url":"https://api.github.com/repos/herpiko/simaya/subscription","commits_url":"https://api.github.com/repos/herpiko/simaya/commits{/sha}","git_commits_url":"https://api.github.com/repos/herpiko/simaya/git/commits{/sha}","comments_url":"https://api.github.com/repos/herpiko/simaya/comments{/number}","issue_comment_url":"https://api.github.com/repos/herpiko/simaya/issues/comments/{number}","contents_url":"https://api.github.com/repos/herpiko/simaya/contents/{+path}","compare_url":"https://api.github.com/repos/herpiko/simaya/compare/{base}...{head}","merges_url":"https://api.github.com/repos/herpiko/simaya/merges","archive_url":"https://api.github.com/repos/herpiko/simaya/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/herpiko/simaya/downloads","issues_url":"https://api.github.com/repos/herpiko/simaya/issues{/number}","pulls_url":"https://api.github.com/repos/herpiko/simaya/pulls{/number}","milestones_url":"https://api.github.com/repos/herpiko/simaya/milestones{/number}","notifications_url":"https://api.github.com/repos/herpiko/simaya/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/herpiko/simaya/labels{/name}","releases_url":"https://api.github.com/repos/herpiko/simaya/releases{/id}","created_at":"2014-11-22T04:15:29Z","updated_at":"2015-01-01T14:38:25Z","pushed_at":"2015-01-01T15:06:18Z","git_url":"git://github.com/herpiko/simaya.git","ssh_url":"git@github.com:herpiko/simaya.git","clone_url":"https://github.com/herpiko/simaya.git","svn_url":"https://github.com/herpiko/simaya","homepage":null,"size":7832,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","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":"mdamt:newProcessMustFix4","ref":"newProcessMustFix4","sha":"a40bc7ac71be4ebcb99bd950d94c3a0628eafb54","user":{"login":"mdamt","id":641261,"avatar_url":"https://avatars.githubusercontent.com/u/641261?v=3","gravatar_id":"","url":"https://api.github.com/users/mdamt","html_url":"https://github.com/mdamt","followers_url":"https://api.github.com/users/mdamt/followers","following_url":"https://api.github.com/users/mdamt/following{/other_user}","gists_url":"https://api.github.com/users/mdamt/gists{/gist_id}","starred_url":"https://api.github.com/users/mdamt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mdamt/subscriptions","organizations_url":"https://api.github.com/users/mdamt/orgs","repos_url":"https://api.github.com/users/mdamt/repos","events_url":"https://api.github.com/users/mdamt/events{/privacy}","received_events_url":"https://api.github.com/users/mdamt/received_events","type":"User","site_admin":false},"repo":{"id":22704261,"name":"simaya","full_name":"mdamt/simaya","owner":{"login":"mdamt","id":641261,"avatar_url":"https://avatars.githubusercontent.com/u/641261?v=3","gravatar_id":"","url":"https://api.github.com/users/mdamt","html_url":"https://github.com/mdamt","followers_url":"https://api.github.com/users/mdamt/followers","following_url":"https://api.github.com/users/mdamt/following{/other_user}","gists_url":"https://api.github.com/users/mdamt/gists{/gist_id}","starred_url":"https://api.github.com/users/mdamt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mdamt/subscriptions","organizations_url":"https://api.github.com/users/mdamt/orgs","repos_url":"https://api.github.com/users/mdamt/repos","events_url":"https://api.github.com/users/mdamt/events{/privacy}","received_events_url":"https://api.github.com/users/mdamt/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mdamt/simaya","description":"","fork":true,"url":"https://api.github.com/repos/mdamt/simaya","forks_url":"https://api.github.com/repos/mdamt/simaya/forks","keys_url":"https://api.github.com/repos/mdamt/simaya/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mdamt/simaya/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mdamt/simaya/teams","hooks_url":"https://api.github.com/repos/mdamt/simaya/hooks","issue_events_url":"https://api.github.com/repos/mdamt/simaya/issues/events{/number}","events_url":"https://api.github.com/repos/mdamt/simaya/events","assignees_url":"https://api.github.com/repos/mdamt/simaya/assignees{/user}","branches_url":"https://api.github.com/repos/mdamt/simaya/branches{/branch}","tags_url":"https://api.github.com/repos/mdamt/simaya/tags","blobs_url":"https://api.github.com/repos/mdamt/simaya/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mdamt/simaya/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mdamt/simaya/git/refs{/sha}","trees_url":"https://api.github.com/repos/mdamt/simaya/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mdamt/simaya/statuses/{sha}","languages_url":"https://api.github.com/repos/mdamt/simaya/languages","stargazers_url":"https://api.github.com/repos/mdamt/simaya/stargazers","contributors_url":"https://api.github.com/repos/mdamt/simaya/contributors","subscribers_url":"https://api.github.com/repos/mdamt/simaya/subscribers","subscription_url":"https://api.github.com/repos/mdamt/simaya/subscription","commits_url":"https://api.github.com/repos/mdamt/simaya/commits{/sha}","git_commits_url":"https://api.github.com/repos/mdamt/simaya/git/commits{/sha}","comments_url":"https://api.github.com/repos/mdamt/simaya/comments{/number}","issue_comment_url":"https://api.github.com/repos/mdamt/simaya/issues/comments/{number}","contents_url":"https://api.github.com/repos/mdamt/simaya/contents/{+path}","compare_url":"https://api.github.com/repos/mdamt/simaya/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mdamt/simaya/merges","archive_url":"https://api.github.com/repos/mdamt/simaya/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mdamt/simaya/downloads","issues_url":"https://api.github.com/repos/mdamt/simaya/issues{/number}","pulls_url":"https://api.github.com/repos/mdamt/simaya/pulls{/number}","milestones_url":"https://api.github.com/repos/mdamt/simaya/milestones{/number}","notifications_url":"https://api.github.com/repos/mdamt/simaya/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mdamt/simaya/labels{/name}","releases_url":"https://api.github.com/repos/mdamt/simaya/releases{/id}","created_at":"2014-08-07T01:37:55Z","updated_at":"2014-12-20T15:10:20Z","pushed_at":"2015-01-01T00:44:54Z","git_url":"git://github.com/mdamt/simaya.git","ssh_url":"git@github.com:mdamt/simaya.git","clone_url":"https://github.com/mdamt/simaya.git","svn_url":"https://github.com/mdamt/simaya","homepage":null,"size":8452,"stargazers_count":1,"watchers_count":1,"language":"JavaScript","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":3,"mirror_url":null,"open_issues_count":2,"forks":3,"open_issues":2,"watchers":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/mdamt/simaya/pulls/108"},"html":{"href":"https://github.com/mdamt/simaya/pull/108"},"issue":{"href":"https://api.github.com/repos/mdamt/simaya/issues/108"},"comments":{"href":"https://api.github.com/repos/mdamt/simaya/issues/108/comments"},"review_comments":{"href":"https://api.github.com/repos/mdamt/simaya/pulls/108/comments"},"review_comment":{"href":"https://api.github.com/repos/mdamt/simaya/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/mdamt/simaya/pulls/108/commits"},"statuses":{"href":"https://api.github.com/repos/mdamt/simaya/statuses/8526007d312084fe876bc3464a4f632852e80c20"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":2,"deletions":2,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:08:51Z"} +,{"id":"2489655157","type":"PushEvent","actor":{"id":356209,"login":"timof","gravatar_id":"","url":"https://api.github.com/users/timof","avatar_url":"https://avatars.githubusercontent.com/u/356209?"},"repo":{"id":1214007,"name":"timof/jlf","url":"https://api.github.com/repos/timof/jlf"},"payload":{"push_id":536865839,"size":1,"distinct_size":1,"ref":"refs/heads/testing","head":"1c859953d376e554811e4ce32770675d560ba563","before":"acad662bde1e759774c4f20bf91625ac8dd6b29a","commits":[{"sha":"1c859953d376e554811e4ce32770675d560ba563","author":{"email":"fc6a36c2798d453228494fcb4cd13f69df8387f6@qipc.org","name":"Timo Felbinger"},"message":"delete!","distinct":true,"url":"https://api.github.com/repos/timof/jlf/commits/1c859953d376e554811e4ce32770675d560ba563"}]},"public":true,"created_at":"2015-01-01T15:08:51Z"} +,{"id":"2489655158","type":"PushEvent","actor":{"id":126033,"login":"Sanuch","gravatar_id":"","url":"https://api.github.com/users/Sanuch","avatar_url":"https://avatars.githubusercontent.com/u/126033?"},"repo":{"id":26536687,"name":"Sanuch/magento2","url":"https://api.github.com/repos/Sanuch/magento2"},"payload":{"push_id":536865840,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"4a4e8ee29ee894bfb7e9a8f766a3008a4f3b3276","before":"863446db2f3560e1ce8d64e0c467ab0403b0d1e8","commits":[{"sha":"4a4e8ee29ee894bfb7e9a8f766a3008a4f3b3276","author":{"email":"6d511d4f24ee64f7c1180f900655540729e4499b@ebay.com","name":"Oleksandr Ivashchenko"},"message":"Support HHVM","distinct":true,"url":"https://api.github.com/repos/Sanuch/magento2/commits/4a4e8ee29ee894bfb7e9a8f766a3008a4f3b3276"}]},"public":true,"created_at":"2015-01-01T15:08:51Z"} +,{"id":"2489655159","type":"ForkEvent","actor":{"id":7609376,"login":"TheRealLoris","gravatar_id":"","url":"https://api.github.com/users/TheRealLoris","avatar_url":"https://avatars.githubusercontent.com/u/7609376?"},"repo":{"id":9916598,"name":"logicminds/hpilo","url":"https://api.github.com/repos/logicminds/hpilo"},"payload":{"forkee":{"id":28688756,"name":"hpilo","full_name":"TheRealLoris/hpilo","owner":{"login":"TheRealLoris","id":7609376,"avatar_url":"https://avatars.githubusercontent.com/u/7609376?v=3","gravatar_id":"","url":"https://api.github.com/users/TheRealLoris","html_url":"https://github.com/TheRealLoris","followers_url":"https://api.github.com/users/TheRealLoris/followers","following_url":"https://api.github.com/users/TheRealLoris/following{/other_user}","gists_url":"https://api.github.com/users/TheRealLoris/gists{/gist_id}","starred_url":"https://api.github.com/users/TheRealLoris/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TheRealLoris/subscriptions","organizations_url":"https://api.github.com/users/TheRealLoris/orgs","repos_url":"https://api.github.com/users/TheRealLoris/repos","events_url":"https://api.github.com/users/TheRealLoris/events{/privacy}","received_events_url":"https://api.github.com/users/TheRealLoris/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/TheRealLoris/hpilo","description":"hpilo puppet module for configuring hp ilo cards","fork":true,"url":"https://api.github.com/repos/TheRealLoris/hpilo","forks_url":"https://api.github.com/repos/TheRealLoris/hpilo/forks","keys_url":"https://api.github.com/repos/TheRealLoris/hpilo/keys{/key_id}","collaborators_url":"https://api.github.com/repos/TheRealLoris/hpilo/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/TheRealLoris/hpilo/teams","hooks_url":"https://api.github.com/repos/TheRealLoris/hpilo/hooks","issue_events_url":"https://api.github.com/repos/TheRealLoris/hpilo/issues/events{/number}","events_url":"https://api.github.com/repos/TheRealLoris/hpilo/events","assignees_url":"https://api.github.com/repos/TheRealLoris/hpilo/assignees{/user}","branches_url":"https://api.github.com/repos/TheRealLoris/hpilo/branches{/branch}","tags_url":"https://api.github.com/repos/TheRealLoris/hpilo/tags","blobs_url":"https://api.github.com/repos/TheRealLoris/hpilo/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/TheRealLoris/hpilo/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/TheRealLoris/hpilo/git/refs{/sha}","trees_url":"https://api.github.com/repos/TheRealLoris/hpilo/git/trees{/sha}","statuses_url":"https://api.github.com/repos/TheRealLoris/hpilo/statuses/{sha}","languages_url":"https://api.github.com/repos/TheRealLoris/hpilo/languages","stargazers_url":"https://api.github.com/repos/TheRealLoris/hpilo/stargazers","contributors_url":"https://api.github.com/repos/TheRealLoris/hpilo/contributors","subscribers_url":"https://api.github.com/repos/TheRealLoris/hpilo/subscribers","subscription_url":"https://api.github.com/repos/TheRealLoris/hpilo/subscription","commits_url":"https://api.github.com/repos/TheRealLoris/hpilo/commits{/sha}","git_commits_url":"https://api.github.com/repos/TheRealLoris/hpilo/git/commits{/sha}","comments_url":"https://api.github.com/repos/TheRealLoris/hpilo/comments{/number}","issue_comment_url":"https://api.github.com/repos/TheRealLoris/hpilo/issues/comments/{number}","contents_url":"https://api.github.com/repos/TheRealLoris/hpilo/contents/{+path}","compare_url":"https://api.github.com/repos/TheRealLoris/hpilo/compare/{base}...{head}","merges_url":"https://api.github.com/repos/TheRealLoris/hpilo/merges","archive_url":"https://api.github.com/repos/TheRealLoris/hpilo/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/TheRealLoris/hpilo/downloads","issues_url":"https://api.github.com/repos/TheRealLoris/hpilo/issues{/number}","pulls_url":"https://api.github.com/repos/TheRealLoris/hpilo/pulls{/number}","milestones_url":"https://api.github.com/repos/TheRealLoris/hpilo/milestones{/number}","notifications_url":"https://api.github.com/repos/TheRealLoris/hpilo/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/TheRealLoris/hpilo/labels{/name}","releases_url":"https://api.github.com/repos/TheRealLoris/hpilo/releases{/id}","created_at":"2015-01-01T15:08:51Z","updated_at":"2014-11-14T17:27:50Z","pushed_at":"2014-10-24T22:29:37Z","git_url":"git://github.com/TheRealLoris/hpilo.git","ssh_url":"git@github.com:TheRealLoris/hpilo.git","clone_url":"https://github.com/TheRealLoris/hpilo.git","svn_url":"https://github.com/TheRealLoris/hpilo","homepage":null,"size":135,"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:08:52Z"} +,{"id":"2489655161","type":"PushEvent","actor":{"id":4066616,"login":"cim--","gravatar_id":"","url":"https://api.github.com/users/cim--","avatar_url":"https://avatars.githubusercontent.com/u/4066616?"},"repo":{"id":10004412,"name":"OoliteProject/oolite","url":"https://api.github.com/repos/OoliteProject/oolite"},"payload":{"push_id":536865841,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"346c3e0dfdd199d43c49db335bcf5d7a49f29135","before":"2bac7ae95438e8bed9cdb1ecc95848fd5a322413","commits":[{"sha":"c8fa6cb7fa916882b3a680169f3b1551d7aeb2b0","author":{"email":"3a5e2f520b038d308f4486613a6a6bbd3ab3c860@oolite.org","name":"cim"},"message":"model_scale_factor shipdata property\n\nRescales:\n - mesh\n - subentities and positions\n - view positions\n - weapon positions\n - custom views\nAllows easy introduction of size variations with like_ship without having\nto make several separate Models files and recalculate other properties. May\nalso be useful to the rescaling experiments.","distinct":true,"url":"https://api.github.com/repos/OoliteProject/oolite/commits/c8fa6cb7fa916882b3a680169f3b1551d7aeb2b0"},{"sha":"ac08b0ace89eff265799423803114c5dd0c07f2a","author":{"email":"3a5e2f520b038d308f4486613a6a6bbd3ab3c860@oolite.org","name":"cim"},"message":"Adjust specification of JS external view positions","distinct":true,"url":"https://api.github.com/repos/OoliteProject/oolite/commits/ac08b0ace89eff265799423803114c5dd0c07f2a"},{"sha":"346c3e0dfdd199d43c49db335bcf5d7a49f29135","author":{"email":"3a5e2f520b038d308f4486613a6a6bbd3ab3c860@oolite.org","name":"cim"},"message":"Merge branch 'model_scale_parameter'","distinct":true,"url":"https://api.github.com/repos/OoliteProject/oolite/commits/346c3e0dfdd199d43c49db335bcf5d7a49f29135"}]},"public":true,"created_at":"2015-01-01T15:08:52Z","org":{"id":4068060,"login":"OoliteProject","gravatar_id":"","url":"https://api.github.com/orgs/OoliteProject","avatar_url":"https://avatars.githubusercontent.com/u/4068060?"}} +,{"id":"2489655162","type":"PushEvent","actor":{"id":4006693,"login":"Korilakkuma","gravatar_id":"","url":"https://api.github.com/users/Korilakkuma","avatar_url":"https://avatars.githubusercontent.com/u/4006693?"},"repo":{"id":15871314,"name":"Korilakkuma/XSound","url":"https://api.github.com/repos/Korilakkuma/XSound"},"payload":{"push_id":536865842,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7fbee69246048076523e973162f55df61a0f528c","before":"5553f50f130e6c4099a7d7bfcc796996dc448d83","commits":[{"sha":"7fbee69246048076523e973162f55df61a0f528c","author":{"email":"c6dc6f82f323890c3b864a37d7509ba3c27bff3f@gmail.com","name":"Tomohiro IKEDA"},"message":"Modify inline comment format\n\nIn the case of inline comment, a space is prepended.","distinct":true,"url":"https://api.github.com/repos/Korilakkuma/XSound/commits/7fbee69246048076523e973162f55df61a0f528c"}]},"public":true,"created_at":"2015-01-01T15:08:52Z"} +,{"id":"2489655164","type":"ForkEvent","actor":{"id":8195973,"login":"ViroCMN","gravatar_id":"","url":"https://api.github.com/users/ViroCMN","avatar_url":"https://avatars.githubusercontent.com/u/8195973?"},"repo":{"id":8328240,"name":"TechnicPack/TechnicSolder","url":"https://api.github.com/repos/TechnicPack/TechnicSolder"},"payload":{"forkee":{"id":28688757,"name":"TechnicSolder","full_name":"ViroCMN/TechnicSolder","owner":{"login":"ViroCMN","id":8195973,"avatar_url":"https://avatars.githubusercontent.com/u/8195973?v=3","gravatar_id":"","url":"https://api.github.com/users/ViroCMN","html_url":"https://github.com/ViroCMN","followers_url":"https://api.github.com/users/ViroCMN/followers","following_url":"https://api.github.com/users/ViroCMN/following{/other_user}","gists_url":"https://api.github.com/users/ViroCMN/gists{/gist_id}","starred_url":"https://api.github.com/users/ViroCMN/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ViroCMN/subscriptions","organizations_url":"https://api.github.com/users/ViroCMN/orgs","repos_url":"https://api.github.com/users/ViroCMN/repos","events_url":"https://api.github.com/users/ViroCMN/events{/privacy}","received_events_url":"https://api.github.com/users/ViroCMN/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ViroCMN/TechnicSolder","description":"","fork":true,"url":"https://api.github.com/repos/ViroCMN/TechnicSolder","forks_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/forks","keys_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/teams","hooks_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/hooks","issue_events_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/issues/events{/number}","events_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/events","assignees_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/assignees{/user}","branches_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/branches{/branch}","tags_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/tags","blobs_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/git/refs{/sha}","trees_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/statuses/{sha}","languages_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/languages","stargazers_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/stargazers","contributors_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/contributors","subscribers_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/subscribers","subscription_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/subscription","commits_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/commits{/sha}","git_commits_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/git/commits{/sha}","comments_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/comments{/number}","issue_comment_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/issues/comments/{number}","contents_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/contents/{+path}","compare_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/merges","archive_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/downloads","issues_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/issues{/number}","pulls_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/pulls{/number}","milestones_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/milestones{/number}","notifications_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/labels{/name}","releases_url":"https://api.github.com/repos/ViroCMN/TechnicSolder/releases{/id}","created_at":"2015-01-01T15:08:52Z","updated_at":"2014-12-31T07:43:33Z","pushed_at":"2014-12-31T07:43:32Z","git_url":"git://github.com/ViroCMN/TechnicSolder.git","ssh_url":"git@github.com:ViroCMN/TechnicSolder.git","clone_url":"https://github.com/ViroCMN/TechnicSolder.git","svn_url":"https://github.com/ViroCMN/TechnicSolder","homepage":null,"size":4466,"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:08:53Z","org":{"id":1264449,"login":"TechnicPack","gravatar_id":"","url":"https://api.github.com/orgs/TechnicPack","avatar_url":"https://avatars.githubusercontent.com/u/1264449?"}} +,{"id":"2489655165","type":"WatchEvent","actor":{"id":22510,"login":"born2snipe","gravatar_id":"","url":"https://api.github.com/users/born2snipe","avatar_url":"https://avatars.githubusercontent.com/u/22510?"},"repo":{"id":24452618,"name":"cristobaldobranco/GdxOutrun","url":"https://api.github.com/repos/cristobaldobranco/GdxOutrun"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:53Z"} +,{"id":"2489655169","type":"PullRequestReviewCommentEvent","actor":{"id":459648,"login":"samsonasik","gravatar_id":"","url":"https://api.github.com/users/samsonasik","avatar_url":"https://avatars.githubusercontent.com/u/459648?"},"repo":{"id":702550,"name":"zendframework/zf2","url":"https://api.github.com/repos/zendframework/zf2"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/22400116","id":22400116,"diff_hunk":"@@ -0,0 +1,148 @@\n+` tag of a web page, to which some custom attributes can be added dynamically.\r\n\r\n## Intent\r\nIdea is to have ability to dynamically attach some attributes to the opening HTML tag in a layout. For example:\r\n``````\r\n\r\n## Usage\r\nRendering tag in a layout:\r\n```php\r\necho $this->html()->openTag(); \r\n//...\r\necho $this->html()->closeTag();\r\n```\r\n\r\nAdding attributes:\r\n```php\r\n//single\r\n$this->html()->setAttribute('xmlns', 'http://www.w3.org/1999/xhtml');\r\n\r\n//multiple\r\n$this->html()->setAttributes(array(\r\n 'xmlns' => 'http://www.w3.org/1999/xhtml',\r\n 'prefix' => 'og: http://ogp.me/ns#'\r\n));\r\n\r\n//shortcut method\r\n$this->html(array(\r\n 'xmlns' => 'http://www.w3.org/1999/xhtml',\r\n 'prefix' => 'og: http://ogp.me/ns#'\r\n));\r\n```\r\n\r\nThere is also option to automatically pre-set appropriate namespace attributes, based on currently set DOCTYPE (`Doctype` helper):\r\n```php\r\n//At some point:\r\n$this->doctype('xhtml');\r\n\r\n$this->html()\r\n ->setUseNamespaces(true) //'xmlns' attribute will be automatically set to 'http://www.w3.org/1999/xhtml'\r\n ->setAttributes(array(\r\n 'prefix' => 'og: http://ogp.me/ns#'\r\n ));\r\n```","created_at":"2014-09-27T18:45:32Z","updated_at":"2015-01-01T15:08:53Z","closed_at":null,"merged_at":null,"merge_commit_sha":"5bfd77f33679fe9ee7b29fb05730e6cfc45cdff3","assignee":{"login":"Ocramius","id":154256,"avatar_url":"https://avatars.githubusercontent.com/u/154256?v=3","gravatar_id":"","url":"https://api.github.com/users/Ocramius","html_url":"https://github.com/Ocramius","followers_url":"https://api.github.com/users/Ocramius/followers","following_url":"https://api.github.com/users/Ocramius/following{/other_user}","gists_url":"https://api.github.com/users/Ocramius/gists{/gist_id}","starred_url":"https://api.github.com/users/Ocramius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Ocramius/subscriptions","organizations_url":"https://api.github.com/users/Ocramius/orgs","repos_url":"https://api.github.com/users/Ocramius/repos","events_url":"https://api.github.com/users/Ocramius/events{/privacy}","received_events_url":"https://api.github.com/users/Ocramius/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/zendframework/zf2/milestones/26","labels_url":"https://api.github.com/repos/zendframework/zf2/milestones/26/labels","id":593244,"number":26,"title":"2.4.0","description":null,"creator":{"login":"weierophinney","id":25943,"avatar_url":"https://avatars.githubusercontent.com/u/25943?v=3","gravatar_id":"","url":"https://api.github.com/users/weierophinney","html_url":"https://github.com/weierophinney","followers_url":"https://api.github.com/users/weierophinney/followers","following_url":"https://api.github.com/users/weierophinney/following{/other_user}","gists_url":"https://api.github.com/users/weierophinney/gists{/gist_id}","starred_url":"https://api.github.com/users/weierophinney/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/weierophinney/subscriptions","organizations_url":"https://api.github.com/users/weierophinney/orgs","repos_url":"https://api.github.com/users/weierophinney/repos","events_url":"https://api.github.com/users/weierophinney/events{/privacy}","received_events_url":"https://api.github.com/users/weierophinney/received_events","type":"User","site_admin":false},"open_issues":34,"closed_issues":163,"state":"open","created_at":"2014-03-10T21:38:11Z","updated_at":"2014-12-31T09:55:26Z","due_on":null,"closed_at":null},"commits_url":"https://api.github.com/repos/zendframework/zf2/pulls/6709/commits","review_comments_url":"https://api.github.com/repos/zendframework/zf2/pulls/6709/comments","review_comment_url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/{number}","comments_url":"https://api.github.com/repos/zendframework/zf2/issues/6709/comments","statuses_url":"https://api.github.com/repos/zendframework/zf2/statuses/5bdee524783763d2a644752a657ea6a7a8d6c4ff","head":{"label":"nikolaposa:feature/html_tag_helper","ref":"feature/html_tag_helper","sha":"5bdee524783763d2a644752a657ea6a7a8d6c4ff","user":{"login":"nikolaposa","id":6012807,"avatar_url":"https://avatars.githubusercontent.com/u/6012807?v=3","gravatar_id":"","url":"https://api.github.com/users/nikolaposa","html_url":"https://github.com/nikolaposa","followers_url":"https://api.github.com/users/nikolaposa/followers","following_url":"https://api.github.com/users/nikolaposa/following{/other_user}","gists_url":"https://api.github.com/users/nikolaposa/gists{/gist_id}","starred_url":"https://api.github.com/users/nikolaposa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nikolaposa/subscriptions","organizations_url":"https://api.github.com/users/nikolaposa/orgs","repos_url":"https://api.github.com/users/nikolaposa/repos","events_url":"https://api.github.com/users/nikolaposa/events{/privacy}","received_events_url":"https://api.github.com/users/nikolaposa/received_events","type":"User","site_admin":false},"repo":{"id":17823748,"name":"zf2","full_name":"nikolaposa/zf2","owner":{"login":"nikolaposa","id":6012807,"avatar_url":"https://avatars.githubusercontent.com/u/6012807?v=3","gravatar_id":"","url":"https://api.github.com/users/nikolaposa","html_url":"https://github.com/nikolaposa","followers_url":"https://api.github.com/users/nikolaposa/followers","following_url":"https://api.github.com/users/nikolaposa/following{/other_user}","gists_url":"https://api.github.com/users/nikolaposa/gists{/gist_id}","starred_url":"https://api.github.com/users/nikolaposa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nikolaposa/subscriptions","organizations_url":"https://api.github.com/users/nikolaposa/orgs","repos_url":"https://api.github.com/users/nikolaposa/repos","events_url":"https://api.github.com/users/nikolaposa/events{/privacy}","received_events_url":"https://api.github.com/users/nikolaposa/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/nikolaposa/zf2","description":"Official Zend Framework 2 git repository","fork":true,"url":"https://api.github.com/repos/nikolaposa/zf2","forks_url":"https://api.github.com/repos/nikolaposa/zf2/forks","keys_url":"https://api.github.com/repos/nikolaposa/zf2/keys{/key_id}","collaborators_url":"https://api.github.com/repos/nikolaposa/zf2/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/nikolaposa/zf2/teams","hooks_url":"https://api.github.com/repos/nikolaposa/zf2/hooks","issue_events_url":"https://api.github.com/repos/nikolaposa/zf2/issues/events{/number}","events_url":"https://api.github.com/repos/nikolaposa/zf2/events","assignees_url":"https://api.github.com/repos/nikolaposa/zf2/assignees{/user}","branches_url":"https://api.github.com/repos/nikolaposa/zf2/branches{/branch}","tags_url":"https://api.github.com/repos/nikolaposa/zf2/tags","blobs_url":"https://api.github.com/repos/nikolaposa/zf2/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/nikolaposa/zf2/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/nikolaposa/zf2/git/refs{/sha}","trees_url":"https://api.github.com/repos/nikolaposa/zf2/git/trees{/sha}","statuses_url":"https://api.github.com/repos/nikolaposa/zf2/statuses/{sha}","languages_url":"https://api.github.com/repos/nikolaposa/zf2/languages","stargazers_url":"https://api.github.com/repos/nikolaposa/zf2/stargazers","contributors_url":"https://api.github.com/repos/nikolaposa/zf2/contributors","subscribers_url":"https://api.github.com/repos/nikolaposa/zf2/subscribers","subscription_url":"https://api.github.com/repos/nikolaposa/zf2/subscription","commits_url":"https://api.github.com/repos/nikolaposa/zf2/commits{/sha}","git_commits_url":"https://api.github.com/repos/nikolaposa/zf2/git/commits{/sha}","comments_url":"https://api.github.com/repos/nikolaposa/zf2/comments{/number}","issue_comment_url":"https://api.github.com/repos/nikolaposa/zf2/issues/comments/{number}","contents_url":"https://api.github.com/repos/nikolaposa/zf2/contents/{+path}","compare_url":"https://api.github.com/repos/nikolaposa/zf2/compare/{base}...{head}","merges_url":"https://api.github.com/repos/nikolaposa/zf2/merges","archive_url":"https://api.github.com/repos/nikolaposa/zf2/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/nikolaposa/zf2/downloads","issues_url":"https://api.github.com/repos/nikolaposa/zf2/issues{/number}","pulls_url":"https://api.github.com/repos/nikolaposa/zf2/pulls{/number}","milestones_url":"https://api.github.com/repos/nikolaposa/zf2/milestones{/number}","notifications_url":"https://api.github.com/repos/nikolaposa/zf2/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/nikolaposa/zf2/labels{/name}","releases_url":"https://api.github.com/repos/nikolaposa/zf2/releases{/id}","created_at":"2014-03-17T10:02:16Z","updated_at":"2014-12-05T18:40:49Z","pushed_at":"2014-12-05T20:08:02Z","git_url":"git://github.com/nikolaposa/zf2.git","ssh_url":"git@github.com:nikolaposa/zf2.git","clone_url":"https://github.com/nikolaposa/zf2.git","svn_url":"https://github.com/nikolaposa/zf2","homepage":"http://framework.zend.com/","size":91865,"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":"zendframework:master","ref":"master","sha":"c9b2eb14e52f5b7bf8e777522a9e7a981b10fec0","user":{"login":"zendframework","id":296074,"avatar_url":"https://avatars.githubusercontent.com/u/296074?v=3","gravatar_id":"","url":"https://api.github.com/users/zendframework","html_url":"https://github.com/zendframework","followers_url":"https://api.github.com/users/zendframework/followers","following_url":"https://api.github.com/users/zendframework/following{/other_user}","gists_url":"https://api.github.com/users/zendframework/gists{/gist_id}","starred_url":"https://api.github.com/users/zendframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zendframework/subscriptions","organizations_url":"https://api.github.com/users/zendframework/orgs","repos_url":"https://api.github.com/users/zendframework/repos","events_url":"https://api.github.com/users/zendframework/events{/privacy}","received_events_url":"https://api.github.com/users/zendframework/received_events","type":"Organization","site_admin":false},"repo":{"id":702550,"name":"zf2","full_name":"zendframework/zf2","owner":{"login":"zendframework","id":296074,"avatar_url":"https://avatars.githubusercontent.com/u/296074?v=3","gravatar_id":"","url":"https://api.github.com/users/zendframework","html_url":"https://github.com/zendframework","followers_url":"https://api.github.com/users/zendframework/followers","following_url":"https://api.github.com/users/zendframework/following{/other_user}","gists_url":"https://api.github.com/users/zendframework/gists{/gist_id}","starred_url":"https://api.github.com/users/zendframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zendframework/subscriptions","organizations_url":"https://api.github.com/users/zendframework/orgs","repos_url":"https://api.github.com/users/zendframework/repos","events_url":"https://api.github.com/users/zendframework/events{/privacy}","received_events_url":"https://api.github.com/users/zendframework/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/zendframework/zf2","description":"Official Zend Framework 2 git repository","fork":false,"url":"https://api.github.com/repos/zendframework/zf2","forks_url":"https://api.github.com/repos/zendframework/zf2/forks","keys_url":"https://api.github.com/repos/zendframework/zf2/keys{/key_id}","collaborators_url":"https://api.github.com/repos/zendframework/zf2/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/zendframework/zf2/teams","hooks_url":"https://api.github.com/repos/zendframework/zf2/hooks","issue_events_url":"https://api.github.com/repos/zendframework/zf2/issues/events{/number}","events_url":"https://api.github.com/repos/zendframework/zf2/events","assignees_url":"https://api.github.com/repos/zendframework/zf2/assignees{/user}","branches_url":"https://api.github.com/repos/zendframework/zf2/branches{/branch}","tags_url":"https://api.github.com/repos/zendframework/zf2/tags","blobs_url":"https://api.github.com/repos/zendframework/zf2/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/zendframework/zf2/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/zendframework/zf2/git/refs{/sha}","trees_url":"https://api.github.com/repos/zendframework/zf2/git/trees{/sha}","statuses_url":"https://api.github.com/repos/zendframework/zf2/statuses/{sha}","languages_url":"https://api.github.com/repos/zendframework/zf2/languages","stargazers_url":"https://api.github.com/repos/zendframework/zf2/stargazers","contributors_url":"https://api.github.com/repos/zendframework/zf2/contributors","subscribers_url":"https://api.github.com/repos/zendframework/zf2/subscribers","subscription_url":"https://api.github.com/repos/zendframework/zf2/subscription","commits_url":"https://api.github.com/repos/zendframework/zf2/commits{/sha}","git_commits_url":"https://api.github.com/repos/zendframework/zf2/git/commits{/sha}","comments_url":"https://api.github.com/repos/zendframework/zf2/comments{/number}","issue_comment_url":"https://api.github.com/repos/zendframework/zf2/issues/comments/{number}","contents_url":"https://api.github.com/repos/zendframework/zf2/contents/{+path}","compare_url":"https://api.github.com/repos/zendframework/zf2/compare/{base}...{head}","merges_url":"https://api.github.com/repos/zendframework/zf2/merges","archive_url":"https://api.github.com/repos/zendframework/zf2/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/zendframework/zf2/downloads","issues_url":"https://api.github.com/repos/zendframework/zf2/issues{/number}","pulls_url":"https://api.github.com/repos/zendframework/zf2/pulls{/number}","milestones_url":"https://api.github.com/repos/zendframework/zf2/milestones{/number}","notifications_url":"https://api.github.com/repos/zendframework/zf2/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/zendframework/zf2/labels{/name}","releases_url":"https://api.github.com/repos/zendframework/zf2/releases{/id}","created_at":"2010-06-04T02:42:05Z","updated_at":"2014-12-31T13:29:16Z","pushed_at":"2014-12-31T10:44:38Z","git_url":"git://github.com/zendframework/zf2.git","ssh_url":"git@github.com:zendframework/zf2.git","clone_url":"https://github.com/zendframework/zf2.git","svn_url":"https://github.com/zendframework/zf2","homepage":"http://framework.zend.com/","size":217086,"stargazers_count":4972,"watchers_count":4972,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":3016,"mirror_url":null,"open_issues_count":601,"forks":3016,"open_issues":601,"watchers":4972,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6709"},"html":{"href":"https://github.com/zendframework/zf2/pull/6709"},"issue":{"href":"https://api.github.com/repos/zendframework/zf2/issues/6709"},"comments":{"href":"https://api.github.com/repos/zendframework/zf2/issues/6709/comments"},"review_comments":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6709/comments"},"review_comment":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6709/commits"},"statuses":{"href":"https://api.github.com/repos/zendframework/zf2/statuses/5bdee524783763d2a644752a657ea6a7a8d6c4ff"}}}},"public":true,"created_at":"2015-01-01T15:08:53Z","org":{"id":296074,"login":"zendframework","gravatar_id":"","url":"https://api.github.com/orgs/zendframework","avatar_url":"https://avatars.githubusercontent.com/u/296074?"}} +,{"id":"2489655172","type":"WatchEvent","actor":{"id":43347,"login":"Bogdanp","gravatar_id":"","url":"https://api.github.com/users/Bogdanp","avatar_url":"https://avatars.githubusercontent.com/u/43347?"},"repo":{"id":842037,"name":"Araq/Nim","url":"https://api.github.com/repos/Araq/Nim"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:54Z"} +,{"id":"2489655174","type":"PushEvent","actor":{"id":3797972,"login":"oceanjack","gravatar_id":"","url":"https://api.github.com/users/oceanjack","avatar_url":"https://avatars.githubusercontent.com/u/3797972?"},"repo":{"id":27213484,"name":"oceanjack/oceanjack.github.io","url":"https://api.github.com/repos/oceanjack/oceanjack.github.io"},"payload":{"push_id":536865846,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"76afe92bca551fcc4a6c7c5aa79ca2771f74df30","before":"1210edf75dc6c2c48bdc121b4de4e11bd46d4479","commits":[{"sha":"76afe92bca551fcc4a6c7c5aa79ca2771f74df30","author":{"email":"e7962a36105d0ad4343dd588376fafc81e75f2e2@gmail.com","name":"oceanjack"},"message":"update","distinct":true,"url":"https://api.github.com/repos/oceanjack/oceanjack.github.io/commits/76afe92bca551fcc4a6c7c5aa79ca2771f74df30"}]},"public":true,"created_at":"2015-01-01T15:08:54Z"} +,{"id":"2489655177","type":"PullRequestEvent","actor":{"id":6568110,"login":"dostodabsi","gravatar_id":"","url":"https://api.github.com/users/dostodabsi","avatar_url":"https://avatars.githubusercontent.com/u/6568110?"},"repo":{"id":6106340,"name":"JuliaLang/METADATA.jl","url":"https://api.github.com/repos/JuliaLang/METADATA.jl"},"payload":{"action":"opened","number":1933,"pull_request":{"url":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/1933","id":26743839,"html_url":"https://github.com/JuliaLang/METADATA.jl/pull/1933","diff_url":"https://github.com/JuliaLang/METADATA.jl/pull/1933.diff","patch_url":"https://github.com/JuliaLang/METADATA.jl/pull/1933.patch","issue_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/1933","number":1933,"state":"open","locked":false,"title":"Pull request/9f37988e","user":{"login":"dostodabsi","id":6568110,"avatar_url":"https://avatars.githubusercontent.com/u/6568110?v=3","gravatar_id":"","url":"https://api.github.com/users/dostodabsi","html_url":"https://github.com/dostodabsi","followers_url":"https://api.github.com/users/dostodabsi/followers","following_url":"https://api.github.com/users/dostodabsi/following{/other_user}","gists_url":"https://api.github.com/users/dostodabsi/gists{/gist_id}","starred_url":"https://api.github.com/users/dostodabsi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dostodabsi/subscriptions","organizations_url":"https://api.github.com/users/dostodabsi/orgs","repos_url":"https://api.github.com/users/dostodabsi/repos","events_url":"https://api.github.com/users/dostodabsi/events{/privacy}","received_events_url":"https://api.github.com/users/dostodabsi/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:08:54Z","updated_at":"2015-01-01T15:08:54Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/1933/commits","review_comments_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/1933/comments","review_comment_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/comments/{number}","comments_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/1933/comments","statuses_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/statuses/9f37988ecdf5cfc9e7427d3eeab90e6bc67a382d","head":{"label":"dostodabsi:pull-request/9f37988e","ref":"pull-request/9f37988e","sha":"9f37988ecdf5cfc9e7427d3eeab90e6bc67a382d","user":{"login":"dostodabsi","id":6568110,"avatar_url":"https://avatars.githubusercontent.com/u/6568110?v=3","gravatar_id":"","url":"https://api.github.com/users/dostodabsi","html_url":"https://github.com/dostodabsi","followers_url":"https://api.github.com/users/dostodabsi/followers","following_url":"https://api.github.com/users/dostodabsi/following{/other_user}","gists_url":"https://api.github.com/users/dostodabsi/gists{/gist_id}","starred_url":"https://api.github.com/users/dostodabsi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dostodabsi/subscriptions","organizations_url":"https://api.github.com/users/dostodabsi/orgs","repos_url":"https://api.github.com/users/dostodabsi/repos","events_url":"https://api.github.com/users/dostodabsi/events{/privacy}","received_events_url":"https://api.github.com/users/dostodabsi/received_events","type":"User","site_admin":false},"repo":{"id":28687059,"name":"METADATA.jl","full_name":"dostodabsi/METADATA.jl","owner":{"login":"dostodabsi","id":6568110,"avatar_url":"https://avatars.githubusercontent.com/u/6568110?v=3","gravatar_id":"","url":"https://api.github.com/users/dostodabsi","html_url":"https://github.com/dostodabsi","followers_url":"https://api.github.com/users/dostodabsi/followers","following_url":"https://api.github.com/users/dostodabsi/following{/other_user}","gists_url":"https://api.github.com/users/dostodabsi/gists{/gist_id}","starred_url":"https://api.github.com/users/dostodabsi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dostodabsi/subscriptions","organizations_url":"https://api.github.com/users/dostodabsi/orgs","repos_url":"https://api.github.com/users/dostodabsi/repos","events_url":"https://api.github.com/users/dostodabsi/events{/privacy}","received_events_url":"https://api.github.com/users/dostodabsi/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/dostodabsi/METADATA.jl","description":"Metadata for registered Julia packages.","fork":true,"url":"https://api.github.com/repos/dostodabsi/METADATA.jl","forks_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/forks","keys_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/keys{/key_id}","collaborators_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/teams","hooks_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/hooks","issue_events_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/issues/events{/number}","events_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/events","assignees_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/assignees{/user}","branches_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/branches{/branch}","tags_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/tags","blobs_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/git/refs{/sha}","trees_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/git/trees{/sha}","statuses_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/statuses/{sha}","languages_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/languages","stargazers_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/stargazers","contributors_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/contributors","subscribers_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/subscribers","subscription_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/subscription","commits_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/commits{/sha}","git_commits_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/git/commits{/sha}","comments_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/comments{/number}","issue_comment_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/issues/comments/{number}","contents_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/contents/{+path}","compare_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/compare/{base}...{head}","merges_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/merges","archive_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/downloads","issues_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/issues{/number}","pulls_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/pulls{/number}","milestones_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/milestones{/number}","notifications_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/labels{/name}","releases_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/releases{/id}","created_at":"2015-01-01T13:31:57Z","updated_at":"2015-01-01T13:31:59Z","pushed_at":"2015-01-01T13:31:59Z","git_url":"git://github.com/dostodabsi/METADATA.jl.git","ssh_url":"git@github.com:dostodabsi/METADATA.jl.git","clone_url":"https://github.com/dostodabsi/METADATA.jl.git","svn_url":"https://github.com/dostodabsi/METADATA.jl","homepage":"pkg.julialang.org","size":18835,"stargazers_count":0,"watchers_count":0,"language":"Julia","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":"metadata-v2"}},"base":{"label":"JuliaLang:metadata-v2","ref":"metadata-v2","sha":"1a89d75acaea54be8659afeb482057af88fd7ab8","user":{"login":"JuliaLang","id":743164,"avatar_url":"https://avatars.githubusercontent.com/u/743164?v=3","gravatar_id":"","url":"https://api.github.com/users/JuliaLang","html_url":"https://github.com/JuliaLang","followers_url":"https://api.github.com/users/JuliaLang/followers","following_url":"https://api.github.com/users/JuliaLang/following{/other_user}","gists_url":"https://api.github.com/users/JuliaLang/gists{/gist_id}","starred_url":"https://api.github.com/users/JuliaLang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JuliaLang/subscriptions","organizations_url":"https://api.github.com/users/JuliaLang/orgs","repos_url":"https://api.github.com/users/JuliaLang/repos","events_url":"https://api.github.com/users/JuliaLang/events{/privacy}","received_events_url":"https://api.github.com/users/JuliaLang/received_events","type":"Organization","site_admin":false},"repo":{"id":6106340,"name":"METADATA.jl","full_name":"JuliaLang/METADATA.jl","owner":{"login":"JuliaLang","id":743164,"avatar_url":"https://avatars.githubusercontent.com/u/743164?v=3","gravatar_id":"","url":"https://api.github.com/users/JuliaLang","html_url":"https://github.com/JuliaLang","followers_url":"https://api.github.com/users/JuliaLang/followers","following_url":"https://api.github.com/users/JuliaLang/following{/other_user}","gists_url":"https://api.github.com/users/JuliaLang/gists{/gist_id}","starred_url":"https://api.github.com/users/JuliaLang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JuliaLang/subscriptions","organizations_url":"https://api.github.com/users/JuliaLang/orgs","repos_url":"https://api.github.com/users/JuliaLang/repos","events_url":"https://api.github.com/users/JuliaLang/events{/privacy}","received_events_url":"https://api.github.com/users/JuliaLang/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/JuliaLang/METADATA.jl","description":"Metadata for registered Julia packages.","fork":false,"url":"https://api.github.com/repos/JuliaLang/METADATA.jl","forks_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/forks","keys_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/keys{/key_id}","collaborators_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/teams","hooks_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/hooks","issue_events_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/events{/number}","events_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/events","assignees_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/assignees{/user}","branches_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/branches{/branch}","tags_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/tags","blobs_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/git/refs{/sha}","trees_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/git/trees{/sha}","statuses_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/statuses/{sha}","languages_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/languages","stargazers_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/stargazers","contributors_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/contributors","subscribers_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/subscribers","subscription_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/subscription","commits_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/commits{/sha}","git_commits_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/git/commits{/sha}","comments_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/comments{/number}","issue_comment_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/comments/{number}","contents_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/contents/{+path}","compare_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/compare/{base}...{head}","merges_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/merges","archive_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/downloads","issues_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues{/number}","pulls_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls{/number}","milestones_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/milestones{/number}","notifications_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/labels{/name}","releases_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/releases{/id}","created_at":"2012-10-06T20:05:51Z","updated_at":"2015-01-01T04:31:52Z","pushed_at":"2015-01-01T04:31:52Z","git_url":"git://github.com/JuliaLang/METADATA.jl.git","ssh_url":"git@github.com:JuliaLang/METADATA.jl.git","clone_url":"https://github.com/JuliaLang/METADATA.jl.git","svn_url":"https://github.com/JuliaLang/METADATA.jl","homepage":"pkg.julialang.org","size":18835,"stargazers_count":59,"watchers_count":59,"language":"Julia","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":239,"mirror_url":null,"open_issues_count":5,"forks":239,"open_issues":5,"watchers":59,"default_branch":"metadata-v2"}},"_links":{"self":{"href":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/1933"},"html":{"href":"https://github.com/JuliaLang/METADATA.jl/pull/1933"},"issue":{"href":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/1933"},"comments":{"href":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/1933/comments"},"review_comments":{"href":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/1933/comments"},"review_comment":{"href":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/1933/commits"},"statuses":{"href":"https://api.github.com/repos/JuliaLang/METADATA.jl/statuses/9f37988ecdf5cfc9e7427d3eeab90e6bc67a382d"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":2,"additions":1,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:08:54Z","org":{"id":743164,"login":"JuliaLang","gravatar_id":"","url":"https://api.github.com/orgs/JuliaLang","avatar_url":"https://avatars.githubusercontent.com/u/743164?"}} +,{"id":"2489655178","type":"PushEvent","actor":{"id":56868,"login":"unhammer","gravatar_id":"","url":"https://api.github.com/users/unhammer","avatar_url":"https://avatars.githubusercontent.com/u/56868?"},"repo":{"id":27762568,"name":"unhammer/gt-CorpusTools","url":"https://api.github.com/repos/unhammer/gt-CorpusTools"},"payload":{"push_id":536865848,"size":1,"distinct_size":1,"ref":"refs/heads/ngram-abs-max-fixes","head":"98d9088c661fa13ffc031b724c799dc33ca6523c","before":"d2a093a957c805eb99872e50c09d352fc0dfd7fa","commits":[{"sha":"98d9088c661fa13ffc031b724c799dc33ca6523c","author":{"email":"5aa370712a3e8ee40e71a085d1a105e824066db2@fsfe.org","name":"Kevin Brubeck Unhammer"},"message":"works with writing wm's as well (not sure why these are in the opposite order but meh)","distinct":true,"url":"https://api.github.com/repos/unhammer/gt-CorpusTools/commits/98d9088c661fa13ffc031b724c799dc33ca6523c"}]},"public":true,"created_at":"2015-01-01T15:08:54Z"} +,{"id":"2489655180","type":"PushEvent","actor":{"id":1047421,"login":"SindreSvendby","gravatar_id":"","url":"https://api.github.com/users/SindreSvendby","avatar_url":"https://avatars.githubusercontent.com/u/1047421?"},"repo":{"id":23949114,"name":"nvbf/beachvolleyball-scoreboard","url":"https://api.github.com/repos/nvbf/beachvolleyball-scoreboard"},"payload":{"push_id":536865850,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"48b9cbd62820622a8bb4997aaec3bf5897d7181f","before":"7cb860bb3d6e7ce8c98248828e51b387d7e4c511","commits":[{"sha":"047f259830034799b72b76abc664226621fe2143","author":{"email":"2d323daae73f3e422c6efb263e760df0ef72d102@gmail.com","name":"sisve"},"message":"Starting on scoreboard for volleyball","distinct":true,"url":"https://api.github.com/repos/nvbf/beachvolleyball-scoreboard/commits/047f259830034799b72b76abc664226621fe2143"},{"sha":"48b9cbd62820622a8bb4997aaec3bf5897d7181f","author":{"email":"2d323daae73f3e422c6efb263e760df0ef72d102@gmail.com","name":"sisve"},"message":"Fixing repo refs after changing to nvbf org.","distinct":true,"url":"https://api.github.com/repos/nvbf/beachvolleyball-scoreboard/commits/48b9cbd62820622a8bb4997aaec3bf5897d7181f"}]},"public":true,"created_at":"2015-01-01T15:08:54Z","org":{"id":10353603,"login":"nvbf","gravatar_id":"","url":"https://api.github.com/orgs/nvbf","avatar_url":"https://avatars.githubusercontent.com/u/10353603?"}} +,{"id":"2489655181","type":"PushEvent","actor":{"id":5451875,"login":"kyean16","gravatar_id":"","url":"https://api.github.com/users/kyean16","avatar_url":"https://avatars.githubusercontent.com/u/5451875?"},"repo":{"id":26980230,"name":"kyean16/AI","url":"https://api.github.com/repos/kyean16/AI"},"payload":{"push_id":536865851,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ccf35c048bb9b99dd6ed79e06857b7215f8b1aa2","before":"894f7d8a7503ebe1fd7725852b493824692c175f","commits":[{"sha":"ccf35c048bb9b99dd6ed79e06857b7215f8b1aa2","author":{"email":"e66412b7a0054d7fac6a5dbf8b44ba172afc5ae4@depauw.edu","name":"Kevin Yean"},"message":"GUI of the Nim using SceneBuilder and NetBean. Need to figure out the\nproper way to commit from GitHub.","distinct":true,"url":"https://api.github.com/repos/kyean16/AI/commits/ccf35c048bb9b99dd6ed79e06857b7215f8b1aa2"}]},"public":true,"created_at":"2015-01-01T15:08:55Z"} +,{"id":"2489655183","type":"IssuesEvent","actor":{"id":289960,"login":"Blaisorblade","gravatar_id":"","url":"https://api.github.com/users/Blaisorblade","avatar_url":"https://avatars.githubusercontent.com/u/289960?"},"repo":{"id":20581297,"name":"inc-lc/ilc-scala","url":"https://api.github.com/repos/inc-lc/ilc-scala"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/inc-lc/ilc-scala/issues/12","labels_url":"https://api.github.com/repos/inc-lc/ilc-scala/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/inc-lc/ilc-scala/issues/12/comments","events_url":"https://api.github.com/repos/inc-lc/ilc-scala/issues/12/events","html_url":"https://github.com/inc-lc/ilc-scala/issues/12","id":53221504,"number":12,"title":"Implement pretty-printing for types","user":{"login":"Blaisorblade","id":289960,"avatar_url":"https://avatars.githubusercontent.com/u/289960?v=3","gravatar_id":"","url":"https://api.github.com/users/Blaisorblade","html_url":"https://github.com/Blaisorblade","followers_url":"https://api.github.com/users/Blaisorblade/followers","following_url":"https://api.github.com/users/Blaisorblade/following{/other_user}","gists_url":"https://api.github.com/users/Blaisorblade/gists{/gist_id}","starred_url":"https://api.github.com/users/Blaisorblade/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blaisorblade/subscriptions","organizations_url":"https://api.github.com/users/Blaisorblade/orgs","repos_url":"https://api.github.com/users/Blaisorblade/repos","events_url":"https://api.github.com/users/Blaisorblade/events{/privacy}","received_events_url":"https://api.github.com/users/Blaisorblade/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:08:55Z","updated_at":"2015-01-01T15:08:55Z","closed_at":null,"body":"Like for terms, we need both toString and pretty-printing."}},"public":true,"created_at":"2015-01-01T15:08:55Z","org":{"id":7059607,"login":"inc-lc","gravatar_id":"","url":"https://api.github.com/orgs/inc-lc","avatar_url":"https://avatars.githubusercontent.com/u/7059607?"}} +,{"id":"2489655187","type":"CreateEvent","actor":{"id":7752475,"login":"p1ch-jp","gravatar_id":"","url":"https://api.github.com/users/p1ch-jp","avatar_url":"https://avatars.githubusercontent.com/u/7752475?"},"repo":{"id":28688714,"name":"p1ch-jp/chiraura","url":"https://api.github.com/repos/p1ch-jp/chiraura"},"payload":{"ref":"gh-pages","ref_type":"branch","master_branch":"master","description":"blogging.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:55Z"} +,{"id":"2489655189","type":"IssuesEvent","actor":{"id":5632357,"login":"markuskiller","gravatar_id":"","url":"https://api.github.com/users/markuskiller","avatar_url":"https://avatars.githubusercontent.com/u/5632357?"},"repo":{"id":11075275,"name":"sloria/TextBlob","url":"https://api.github.com/repos/sloria/TextBlob"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/sloria/TextBlob/issues/75","labels_url":"https://api.github.com/repos/sloria/TextBlob/issues/75/labels{/name}","comments_url":"https://api.github.com/repos/sloria/TextBlob/issues/75/comments","events_url":"https://api.github.com/repos/sloria/TextBlob/issues/75/events","html_url":"https://github.com/sloria/TextBlob/issues/75","id":53221505,"number":75,"title":"pip install fails with latest setuptools version","user":{"login":"markuskiller","id":5632357,"avatar_url":"https://avatars.githubusercontent.com/u/5632357?v=3","gravatar_id":"","url":"https://api.github.com/users/markuskiller","html_url":"https://github.com/markuskiller","followers_url":"https://api.github.com/users/markuskiller/followers","following_url":"https://api.github.com/users/markuskiller/following{/other_user}","gists_url":"https://api.github.com/users/markuskiller/gists{/gist_id}","starred_url":"https://api.github.com/users/markuskiller/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/markuskiller/subscriptions","organizations_url":"https://api.github.com/users/markuskiller/orgs","repos_url":"https://api.github.com/users/markuskiller/repos","events_url":"https://api.github.com/users/markuskiller/events{/privacy}","received_events_url":"https://api.github.com/users/markuskiller/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:08:55Z","updated_at":"2015-01-01T15:08:55Z","closed_at":null,"body":"A recent change in `setuptools` causes `nltk` install to fail (see https://github.com/nltk/nltk/issues/824).\r\n\r\nTemporary workaround for users who have `setuptools>=10.0` installed in their python environment (default for all newly created environments using `get_pip.py`):\r\n\r\n```\r\npip uninstall setuptools\r\n# confirm with 'yes'\r\npip install setuptools==9.1\r\n\r\npip install -U textblob\r\n```\r\n\r\nCheck for `setuptools version` in clean virtual environment:\r\n\r\n```\r\npip list\r\npip (6.0.3)\r\nsetuptools (10.1)\r\n```"}},"public":true,"created_at":"2015-01-01T15:08:55Z"} +,{"id":"2489655190","type":"PushEvent","actor":{"id":10322234,"login":"gerigjylbegu","gravatar_id":"","url":"https://api.github.com/users/gerigjylbegu","avatar_url":"https://avatars.githubusercontent.com/u/10322234?"},"repo":{"id":28588564,"name":"gerigjylbegu/gerigjylbegu.github.io","url":"https://api.github.com/repos/gerigjylbegu/gerigjylbegu.github.io"},"payload":{"push_id":536865854,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"df2007fac41f3d2853c735452a2ef9d42c29dc8b","before":"bc28ec1ef9eb4b319ded68da3b85a9414af2df05","commits":[{"sha":"df2007fac41f3d2853c735452a2ef9d42c29dc8b","author":{"email":"5d364efc371fe3cf76badc72842740c09acb86f6@gmail.com","name":"gerigjylbegu"},"message":"Update _config.yml","distinct":true,"url":"https://api.github.com/repos/gerigjylbegu/gerigjylbegu.github.io/commits/df2007fac41f3d2853c735452a2ef9d42c29dc8b"}]},"public":true,"created_at":"2015-01-01T15:08:55Z"} +,{"id":"2489655192","type":"PullRequestReviewCommentEvent","actor":{"id":459648,"login":"samsonasik","gravatar_id":"","url":"https://api.github.com/users/samsonasik","avatar_url":"https://avatars.githubusercontent.com/u/459648?"},"repo":{"id":702550,"name":"zendframework/zf2","url":"https://api.github.com/repos/zendframework/zf2"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/22400117","id":22400117,"diff_hunk":"@@ -0,0 +1,136 @@\n+` tag of a web page, to which some custom attributes can be added dynamically.\r\n\r\n## Intent\r\nIdea is to have ability to dynamically attach some attributes to the opening HTML tag in a layout. For example:\r\n``````\r\n\r\n## Usage\r\nRendering tag in a layout:\r\n```php\r\necho $this->html()->openTag(); \r\n//...\r\necho $this->html()->closeTag();\r\n```\r\n\r\nAdding attributes:\r\n```php\r\n//single\r\n$this->html()->setAttribute('xmlns', 'http://www.w3.org/1999/xhtml');\r\n\r\n//multiple\r\n$this->html()->setAttributes(array(\r\n 'xmlns' => 'http://www.w3.org/1999/xhtml',\r\n 'prefix' => 'og: http://ogp.me/ns#'\r\n));\r\n\r\n//shortcut method\r\n$this->html(array(\r\n 'xmlns' => 'http://www.w3.org/1999/xhtml',\r\n 'prefix' => 'og: http://ogp.me/ns#'\r\n));\r\n```\r\n\r\nThere is also option to automatically pre-set appropriate namespace attributes, based on currently set DOCTYPE (`Doctype` helper):\r\n```php\r\n//At some point:\r\n$this->doctype('xhtml');\r\n\r\n$this->html()\r\n ->setUseNamespaces(true) //'xmlns' attribute will be automatically set to 'http://www.w3.org/1999/xhtml'\r\n ->setAttributes(array(\r\n 'prefix' => 'og: http://ogp.me/ns#'\r\n ));\r\n```","created_at":"2014-09-27T18:45:32Z","updated_at":"2015-01-01T15:08:55Z","closed_at":null,"merged_at":null,"merge_commit_sha":"5bfd77f33679fe9ee7b29fb05730e6cfc45cdff3","assignee":{"login":"Ocramius","id":154256,"avatar_url":"https://avatars.githubusercontent.com/u/154256?v=3","gravatar_id":"","url":"https://api.github.com/users/Ocramius","html_url":"https://github.com/Ocramius","followers_url":"https://api.github.com/users/Ocramius/followers","following_url":"https://api.github.com/users/Ocramius/following{/other_user}","gists_url":"https://api.github.com/users/Ocramius/gists{/gist_id}","starred_url":"https://api.github.com/users/Ocramius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Ocramius/subscriptions","organizations_url":"https://api.github.com/users/Ocramius/orgs","repos_url":"https://api.github.com/users/Ocramius/repos","events_url":"https://api.github.com/users/Ocramius/events{/privacy}","received_events_url":"https://api.github.com/users/Ocramius/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/zendframework/zf2/milestones/26","labels_url":"https://api.github.com/repos/zendframework/zf2/milestones/26/labels","id":593244,"number":26,"title":"2.4.0","description":null,"creator":{"login":"weierophinney","id":25943,"avatar_url":"https://avatars.githubusercontent.com/u/25943?v=3","gravatar_id":"","url":"https://api.github.com/users/weierophinney","html_url":"https://github.com/weierophinney","followers_url":"https://api.github.com/users/weierophinney/followers","following_url":"https://api.github.com/users/weierophinney/following{/other_user}","gists_url":"https://api.github.com/users/weierophinney/gists{/gist_id}","starred_url":"https://api.github.com/users/weierophinney/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/weierophinney/subscriptions","organizations_url":"https://api.github.com/users/weierophinney/orgs","repos_url":"https://api.github.com/users/weierophinney/repos","events_url":"https://api.github.com/users/weierophinney/events{/privacy}","received_events_url":"https://api.github.com/users/weierophinney/received_events","type":"User","site_admin":false},"open_issues":34,"closed_issues":163,"state":"open","created_at":"2014-03-10T21:38:11Z","updated_at":"2014-12-31T09:55:26Z","due_on":null,"closed_at":null},"commits_url":"https://api.github.com/repos/zendframework/zf2/pulls/6709/commits","review_comments_url":"https://api.github.com/repos/zendframework/zf2/pulls/6709/comments","review_comment_url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/{number}","comments_url":"https://api.github.com/repos/zendframework/zf2/issues/6709/comments","statuses_url":"https://api.github.com/repos/zendframework/zf2/statuses/5bdee524783763d2a644752a657ea6a7a8d6c4ff","head":{"label":"nikolaposa:feature/html_tag_helper","ref":"feature/html_tag_helper","sha":"5bdee524783763d2a644752a657ea6a7a8d6c4ff","user":{"login":"nikolaposa","id":6012807,"avatar_url":"https://avatars.githubusercontent.com/u/6012807?v=3","gravatar_id":"","url":"https://api.github.com/users/nikolaposa","html_url":"https://github.com/nikolaposa","followers_url":"https://api.github.com/users/nikolaposa/followers","following_url":"https://api.github.com/users/nikolaposa/following{/other_user}","gists_url":"https://api.github.com/users/nikolaposa/gists{/gist_id}","starred_url":"https://api.github.com/users/nikolaposa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nikolaposa/subscriptions","organizations_url":"https://api.github.com/users/nikolaposa/orgs","repos_url":"https://api.github.com/users/nikolaposa/repos","events_url":"https://api.github.com/users/nikolaposa/events{/privacy}","received_events_url":"https://api.github.com/users/nikolaposa/received_events","type":"User","site_admin":false},"repo":{"id":17823748,"name":"zf2","full_name":"nikolaposa/zf2","owner":{"login":"nikolaposa","id":6012807,"avatar_url":"https://avatars.githubusercontent.com/u/6012807?v=3","gravatar_id":"","url":"https://api.github.com/users/nikolaposa","html_url":"https://github.com/nikolaposa","followers_url":"https://api.github.com/users/nikolaposa/followers","following_url":"https://api.github.com/users/nikolaposa/following{/other_user}","gists_url":"https://api.github.com/users/nikolaposa/gists{/gist_id}","starred_url":"https://api.github.com/users/nikolaposa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nikolaposa/subscriptions","organizations_url":"https://api.github.com/users/nikolaposa/orgs","repos_url":"https://api.github.com/users/nikolaposa/repos","events_url":"https://api.github.com/users/nikolaposa/events{/privacy}","received_events_url":"https://api.github.com/users/nikolaposa/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/nikolaposa/zf2","description":"Official Zend Framework 2 git repository","fork":true,"url":"https://api.github.com/repos/nikolaposa/zf2","forks_url":"https://api.github.com/repos/nikolaposa/zf2/forks","keys_url":"https://api.github.com/repos/nikolaposa/zf2/keys{/key_id}","collaborators_url":"https://api.github.com/repos/nikolaposa/zf2/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/nikolaposa/zf2/teams","hooks_url":"https://api.github.com/repos/nikolaposa/zf2/hooks","issue_events_url":"https://api.github.com/repos/nikolaposa/zf2/issues/events{/number}","events_url":"https://api.github.com/repos/nikolaposa/zf2/events","assignees_url":"https://api.github.com/repos/nikolaposa/zf2/assignees{/user}","branches_url":"https://api.github.com/repos/nikolaposa/zf2/branches{/branch}","tags_url":"https://api.github.com/repos/nikolaposa/zf2/tags","blobs_url":"https://api.github.com/repos/nikolaposa/zf2/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/nikolaposa/zf2/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/nikolaposa/zf2/git/refs{/sha}","trees_url":"https://api.github.com/repos/nikolaposa/zf2/git/trees{/sha}","statuses_url":"https://api.github.com/repos/nikolaposa/zf2/statuses/{sha}","languages_url":"https://api.github.com/repos/nikolaposa/zf2/languages","stargazers_url":"https://api.github.com/repos/nikolaposa/zf2/stargazers","contributors_url":"https://api.github.com/repos/nikolaposa/zf2/contributors","subscribers_url":"https://api.github.com/repos/nikolaposa/zf2/subscribers","subscription_url":"https://api.github.com/repos/nikolaposa/zf2/subscription","commits_url":"https://api.github.com/repos/nikolaposa/zf2/commits{/sha}","git_commits_url":"https://api.github.com/repos/nikolaposa/zf2/git/commits{/sha}","comments_url":"https://api.github.com/repos/nikolaposa/zf2/comments{/number}","issue_comment_url":"https://api.github.com/repos/nikolaposa/zf2/issues/comments/{number}","contents_url":"https://api.github.com/repos/nikolaposa/zf2/contents/{+path}","compare_url":"https://api.github.com/repos/nikolaposa/zf2/compare/{base}...{head}","merges_url":"https://api.github.com/repos/nikolaposa/zf2/merges","archive_url":"https://api.github.com/repos/nikolaposa/zf2/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/nikolaposa/zf2/downloads","issues_url":"https://api.github.com/repos/nikolaposa/zf2/issues{/number}","pulls_url":"https://api.github.com/repos/nikolaposa/zf2/pulls{/number}","milestones_url":"https://api.github.com/repos/nikolaposa/zf2/milestones{/number}","notifications_url":"https://api.github.com/repos/nikolaposa/zf2/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/nikolaposa/zf2/labels{/name}","releases_url":"https://api.github.com/repos/nikolaposa/zf2/releases{/id}","created_at":"2014-03-17T10:02:16Z","updated_at":"2014-12-05T18:40:49Z","pushed_at":"2014-12-05T20:08:02Z","git_url":"git://github.com/nikolaposa/zf2.git","ssh_url":"git@github.com:nikolaposa/zf2.git","clone_url":"https://github.com/nikolaposa/zf2.git","svn_url":"https://github.com/nikolaposa/zf2","homepage":"http://framework.zend.com/","size":91865,"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":"zendframework:master","ref":"master","sha":"c9b2eb14e52f5b7bf8e777522a9e7a981b10fec0","user":{"login":"zendframework","id":296074,"avatar_url":"https://avatars.githubusercontent.com/u/296074?v=3","gravatar_id":"","url":"https://api.github.com/users/zendframework","html_url":"https://github.com/zendframework","followers_url":"https://api.github.com/users/zendframework/followers","following_url":"https://api.github.com/users/zendframework/following{/other_user}","gists_url":"https://api.github.com/users/zendframework/gists{/gist_id}","starred_url":"https://api.github.com/users/zendframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zendframework/subscriptions","organizations_url":"https://api.github.com/users/zendframework/orgs","repos_url":"https://api.github.com/users/zendframework/repos","events_url":"https://api.github.com/users/zendframework/events{/privacy}","received_events_url":"https://api.github.com/users/zendframework/received_events","type":"Organization","site_admin":false},"repo":{"id":702550,"name":"zf2","full_name":"zendframework/zf2","owner":{"login":"zendframework","id":296074,"avatar_url":"https://avatars.githubusercontent.com/u/296074?v=3","gravatar_id":"","url":"https://api.github.com/users/zendframework","html_url":"https://github.com/zendframework","followers_url":"https://api.github.com/users/zendframework/followers","following_url":"https://api.github.com/users/zendframework/following{/other_user}","gists_url":"https://api.github.com/users/zendframework/gists{/gist_id}","starred_url":"https://api.github.com/users/zendframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zendframework/subscriptions","organizations_url":"https://api.github.com/users/zendframework/orgs","repos_url":"https://api.github.com/users/zendframework/repos","events_url":"https://api.github.com/users/zendframework/events{/privacy}","received_events_url":"https://api.github.com/users/zendframework/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/zendframework/zf2","description":"Official Zend Framework 2 git repository","fork":false,"url":"https://api.github.com/repos/zendframework/zf2","forks_url":"https://api.github.com/repos/zendframework/zf2/forks","keys_url":"https://api.github.com/repos/zendframework/zf2/keys{/key_id}","collaborators_url":"https://api.github.com/repos/zendframework/zf2/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/zendframework/zf2/teams","hooks_url":"https://api.github.com/repos/zendframework/zf2/hooks","issue_events_url":"https://api.github.com/repos/zendframework/zf2/issues/events{/number}","events_url":"https://api.github.com/repos/zendframework/zf2/events","assignees_url":"https://api.github.com/repos/zendframework/zf2/assignees{/user}","branches_url":"https://api.github.com/repos/zendframework/zf2/branches{/branch}","tags_url":"https://api.github.com/repos/zendframework/zf2/tags","blobs_url":"https://api.github.com/repos/zendframework/zf2/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/zendframework/zf2/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/zendframework/zf2/git/refs{/sha}","trees_url":"https://api.github.com/repos/zendframework/zf2/git/trees{/sha}","statuses_url":"https://api.github.com/repos/zendframework/zf2/statuses/{sha}","languages_url":"https://api.github.com/repos/zendframework/zf2/languages","stargazers_url":"https://api.github.com/repos/zendframework/zf2/stargazers","contributors_url":"https://api.github.com/repos/zendframework/zf2/contributors","subscribers_url":"https://api.github.com/repos/zendframework/zf2/subscribers","subscription_url":"https://api.github.com/repos/zendframework/zf2/subscription","commits_url":"https://api.github.com/repos/zendframework/zf2/commits{/sha}","git_commits_url":"https://api.github.com/repos/zendframework/zf2/git/commits{/sha}","comments_url":"https://api.github.com/repos/zendframework/zf2/comments{/number}","issue_comment_url":"https://api.github.com/repos/zendframework/zf2/issues/comments/{number}","contents_url":"https://api.github.com/repos/zendframework/zf2/contents/{+path}","compare_url":"https://api.github.com/repos/zendframework/zf2/compare/{base}...{head}","merges_url":"https://api.github.com/repos/zendframework/zf2/merges","archive_url":"https://api.github.com/repos/zendframework/zf2/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/zendframework/zf2/downloads","issues_url":"https://api.github.com/repos/zendframework/zf2/issues{/number}","pulls_url":"https://api.github.com/repos/zendframework/zf2/pulls{/number}","milestones_url":"https://api.github.com/repos/zendframework/zf2/milestones{/number}","notifications_url":"https://api.github.com/repos/zendframework/zf2/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/zendframework/zf2/labels{/name}","releases_url":"https://api.github.com/repos/zendframework/zf2/releases{/id}","created_at":"2010-06-04T02:42:05Z","updated_at":"2014-12-31T13:29:16Z","pushed_at":"2014-12-31T10:44:38Z","git_url":"git://github.com/zendframework/zf2.git","ssh_url":"git@github.com:zendframework/zf2.git","clone_url":"https://github.com/zendframework/zf2.git","svn_url":"https://github.com/zendframework/zf2","homepage":"http://framework.zend.com/","size":217086,"stargazers_count":4972,"watchers_count":4972,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":3016,"mirror_url":null,"open_issues_count":601,"forks":3016,"open_issues":601,"watchers":4972,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6709"},"html":{"href":"https://github.com/zendframework/zf2/pull/6709"},"issue":{"href":"https://api.github.com/repos/zendframework/zf2/issues/6709"},"comments":{"href":"https://api.github.com/repos/zendframework/zf2/issues/6709/comments"},"review_comments":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6709/comments"},"review_comment":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6709/commits"},"statuses":{"href":"https://api.github.com/repos/zendframework/zf2/statuses/5bdee524783763d2a644752a657ea6a7a8d6c4ff"}}}},"public":true,"created_at":"2015-01-01T15:08:55Z","org":{"id":296074,"login":"zendframework","gravatar_id":"","url":"https://api.github.com/orgs/zendframework","avatar_url":"https://avatars.githubusercontent.com/u/296074?"}} +,{"id":"2489655196","type":"PushEvent","actor":{"id":414010,"login":"simonbrandhof","gravatar_id":"","url":"https://api.github.com/users/simonbrandhof","avatar_url":"https://avatars.githubusercontent.com/u/414010?"},"repo":{"id":5686301,"name":"SonarSource/sonar-runner","url":"https://api.github.com/repos/SonarSource/sonar-runner"},"payload":{"push_id":536865857,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"38adc017219128b40d982a82c38c8291a62f8b2d","before":"8e1bb3cceaaffb1de143c620dce45ebf37fee2ed","commits":[{"sha":"38adc017219128b40d982a82c38c8291a62f8b2d","author":{"email":"57fb90f096561797a678cefa73882c17749f17a1@sonarsource.com","name":"Simon Brandhof"},"message":"Rename travis.yml to .travis.yml","distinct":true,"url":"https://api.github.com/repos/SonarSource/sonar-runner/commits/38adc017219128b40d982a82c38c8291a62f8b2d"}]},"public":true,"created_at":"2015-01-01T15:08:56Z","org":{"id":545988,"login":"SonarSource","gravatar_id":"","url":"https://api.github.com/orgs/SonarSource","avatar_url":"https://avatars.githubusercontent.com/u/545988?"}} +,{"id":"2489655198","type":"CreateEvent","actor":{"id":3336166,"login":"Angelfirenze","gravatar_id":"","url":"https://api.github.com/users/Angelfirenze","avatar_url":"https://avatars.githubusercontent.com/u/3336166?"},"repo":{"id":28203649,"name":"Angelfirenze/dojo_rules","url":"https://api.github.com/repos/Angelfirenze/dojo_rules"},"payload":{"ref":"v1.0.1","ref_type":"tag","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:56Z"} +,{"id":"2489655199","type":"WatchEvent","actor":{"id":10364781,"login":"lrebola","gravatar_id":"","url":"https://api.github.com/users/lrebola","avatar_url":"https://avatars.githubusercontent.com/u/10364781?"},"repo":{"id":8860322,"name":"ccoenraets/PageSlider","url":"https://api.github.com/repos/ccoenraets/PageSlider"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:56Z"} +,{"id":"2489655205","type":"PushEvent","actor":{"id":2890171,"login":"uckhandla","gravatar_id":"","url":"https://api.github.com/users/uckhandla","avatar_url":"https://avatars.githubusercontent.com/u/2890171?"},"repo":{"id":24111172,"name":"uckhandla/PhoneGap-DropBox-Workflow","url":"https://api.github.com/repos/uckhandla/PhoneGap-DropBox-Workflow"},"payload":{"push_id":536865859,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3b4c5410004abce203dcd1cf203a5bbab6ab45f2","before":"fc70c83421fd52c2fa5b62115e46d74805c2d715","commits":[{"sha":"3b4c5410004abce203dcd1cf203a5bbab6ab45f2","author":{"email":"0be3aef5e08fcc7ad4fc97a9c9a821f0c3fa3f4f@gmail.com","name":"Ujamshi Khandla"},"message":"Update config.xml","distinct":true,"url":"https://api.github.com/repos/uckhandla/PhoneGap-DropBox-Workflow/commits/3b4c5410004abce203dcd1cf203a5bbab6ab45f2"}]},"public":true,"created_at":"2015-01-01T15:08:57Z"} +,{"id":"2489655211","type":"CreateEvent","actor":{"id":3806695,"login":"aaaaalbert","gravatar_id":"","url":"https://api.github.com/users/aaaaalbert","avatar_url":"https://avatars.githubusercontent.com/u/3806695?"},"repo":{"id":20314870,"name":"SeattleTestbed/SeattleOnAndroid","url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid"},"payload":{"ref":"fix-https","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:08:57Z","org":{"id":7329722,"login":"SeattleTestbed","gravatar_id":"","url":"https://api.github.com/orgs/SeattleTestbed","avatar_url":"https://avatars.githubusercontent.com/u/7329722?"}} +,{"id":"2489655214","type":"PushEvent","actor":{"id":2566854,"login":"ilya-lavrenov","gravatar_id":"","url":"https://api.github.com/users/ilya-lavrenov","avatar_url":"https://avatars.githubusercontent.com/u/2566854?"},"repo":{"id":6454003,"name":"ilya-lavrenov/opencv","url":"https://api.github.com/repos/ilya-lavrenov/opencv"},"payload":{"push_id":536865861,"size":1,"distinct_size":1,"ref":"refs/heads/sse_avx","head":"8070d178e8ff6cc005932f415da618c15b412e85","before":"52ae0e6e024c3032b26140f18dad0b0a1976802a","commits":[{"sha":"8070d178e8ff6cc005932f415da618c15b412e85","author":{"email":"fc84f87846d95521c92ca9a980b8455bda23ab12@itseez.com","name":"Ilya Lavrenov"},"message":"convertTo AVX2","distinct":true,"url":"https://api.github.com/repos/ilya-lavrenov/opencv/commits/8070d178e8ff6cc005932f415da618c15b412e85"}]},"public":true,"created_at":"2015-01-01T15:08:57Z"} +,{"id":"2489655215","type":"WatchEvent","actor":{"id":631586,"login":"guolijun","gravatar_id":"","url":"https://api.github.com/users/guolijun","avatar_url":"https://avatars.githubusercontent.com/u/631586?"},"repo":{"id":28666884,"name":"mohamedattahri/rst","url":"https://api.github.com/repos/mohamedattahri/rst"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:57Z"} +,{"id":"2489655221","type":"IssuesEvent","actor":{"id":4558008,"login":"muranava","gravatar_id":"","url":"https://api.github.com/users/muranava","avatar_url":"https://avatars.githubusercontent.com/u/4558008?"},"repo":{"id":7593685,"name":"markolson/storyboard","url":"https://api.github.com/repos/markolson/storyboard"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/markolson/storyboard/issues/16","labels_url":"https://api.github.com/repos/markolson/storyboard/issues/16/labels{/name}","comments_url":"https://api.github.com/repos/markolson/storyboard/issues/16/comments","events_url":"https://api.github.com/repos/markolson/storyboard/issues/16/events","html_url":"https://github.com/markolson/storyboard/issues/16","id":45584665,"number":16,"title":"afm error message","user":{"login":"muranava","id":4558008,"avatar_url":"https://avatars.githubusercontent.com/u/4558008?v=3","gravatar_id":"","url":"https://api.github.com/users/muranava","html_url":"https://github.com/muranava","followers_url":"https://api.github.com/users/muranava/followers","following_url":"https://api.github.com/users/muranava/following{/other_user}","gists_url":"https://api.github.com/users/muranava/gists{/gist_id}","starred_url":"https://api.github.com/users/muranava/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/muranava/subscriptions","organizations_url":"https://api.github.com/users/muranava/orgs","repos_url":"https://api.github.com/users/muranava/repos","events_url":"https://api.github.com/users/muranava/events{/privacy}","received_events_url":"https://api.github.com/users/muranava/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-10-12T16:11:58Z","updated_at":"2015-01-01T15:08:59Z","closed_at":"2015-01-01T15:08:59Z","body":"hi getting the following error message:\r\n\r\n \"Could not find afm-0.2.0 in any of the sources\""}},"public":true,"created_at":"2015-01-01T15:08:59Z"} +,{"id":"2489655220","type":"IssueCommentEvent","actor":{"id":4558008,"login":"muranava","gravatar_id":"","url":"https://api.github.com/users/muranava","avatar_url":"https://avatars.githubusercontent.com/u/4558008?"},"repo":{"id":7593685,"name":"markolson/storyboard","url":"https://api.github.com/repos/markolson/storyboard"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/markolson/storyboard/issues/16","labels_url":"https://api.github.com/repos/markolson/storyboard/issues/16/labels{/name}","comments_url":"https://api.github.com/repos/markolson/storyboard/issues/16/comments","events_url":"https://api.github.com/repos/markolson/storyboard/issues/16/events","html_url":"https://github.com/markolson/storyboard/issues/16","id":45584665,"number":16,"title":"afm error message","user":{"login":"muranava","id":4558008,"avatar_url":"https://avatars.githubusercontent.com/u/4558008?v=3","gravatar_id":"","url":"https://api.github.com/users/muranava","html_url":"https://github.com/muranava","followers_url":"https://api.github.com/users/muranava/followers","following_url":"https://api.github.com/users/muranava/following{/other_user}","gists_url":"https://api.github.com/users/muranava/gists{/gist_id}","starred_url":"https://api.github.com/users/muranava/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/muranava/subscriptions","organizations_url":"https://api.github.com/users/muranava/orgs","repos_url":"https://api.github.com/users/muranava/repos","events_url":"https://api.github.com/users/muranava/events{/privacy}","received_events_url":"https://api.github.com/users/muranava/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-10-12T16:11:58Z","updated_at":"2015-01-01T15:08:59Z","closed_at":"2015-01-01T15:08:59Z","body":"hi getting the following error message:\r\n\r\n \"Could not find afm-0.2.0 in any of the sources\""},"comment":{"url":"https://api.github.com/repos/markolson/storyboard/issues/comments/68488670","html_url":"https://github.com/markolson/storyboard/issues/16#issuecomment-68488670","issue_url":"https://api.github.com/repos/markolson/storyboard/issues/16","id":68488670,"user":{"login":"muranava","id":4558008,"avatar_url":"https://avatars.githubusercontent.com/u/4558008?v=3","gravatar_id":"","url":"https://api.github.com/users/muranava","html_url":"https://github.com/muranava","followers_url":"https://api.github.com/users/muranava/followers","following_url":"https://api.github.com/users/muranava/following{/other_user}","gists_url":"https://api.github.com/users/muranava/gists{/gist_id}","starred_url":"https://api.github.com/users/muranava/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/muranava/subscriptions","organizations_url":"https://api.github.com/users/muranava/orgs","repos_url":"https://api.github.com/users/muranava/repos","events_url":"https://api.github.com/users/muranava/events{/privacy}","received_events_url":"https://api.github.com/users/muranava/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:08:59Z","updated_at":"2015-01-01T15:08:59Z","body":"no getting this issue now, not sure what i did to get this!"}},"public":true,"created_at":"2015-01-01T15:08:59Z"} +,{"id":"2489655223","type":"PushEvent","actor":{"id":10358010,"login":"geekCarnegie","gravatar_id":"","url":"https://api.github.com/users/geekCarnegie","avatar_url":"https://avatars.githubusercontent.com/u/10358010?"},"repo":{"id":28685246,"name":"geekCarnegie/SoilbiotaUI","url":"https://api.github.com/repos/geekCarnegie/SoilbiotaUI"},"payload":{"push_id":536865863,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9818a77d32d5b0e0674193ff5b452ab7e1516383","before":"44fc4f90d32daa0b1fc848f9341b2593c74e3dd2","commits":[{"sha":"9818a77d32d5b0e0674193ff5b452ab7e1516383","author":{"email":"08eb056e28e4fa22fe9f16146424c5191f07e771@163.com","name":"geekCarnegie"},"message":"Revert \"Create README.md\"\n\nThis reverts commit 44fc4f90d32daa0b1fc848f9341b2593c74e3dd2.","distinct":true,"url":"https://api.github.com/repos/geekCarnegie/SoilbiotaUI/commits/9818a77d32d5b0e0674193ff5b452ab7e1516383"}]},"public":true,"created_at":"2015-01-01T15:08:59Z"} +,{"id":"2489655226","type":"WatchEvent","actor":{"id":22510,"login":"born2snipe","gravatar_id":"","url":"https://api.github.com/users/born2snipe","avatar_url":"https://avatars.githubusercontent.com/u/22510?"},"repo":{"id":20005337,"name":"untra/gdxhex","url":"https://api.github.com/repos/untra/gdxhex"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:08:59Z"} +,{"id":"2489655227","type":"PushEvent","actor":{"id":1423378,"login":"CraZySacX","gravatar_id":"","url":"https://api.github.com/users/CraZySacX","avatar_url":"https://avatars.githubusercontent.com/u/1423378?"},"repo":{"id":26056009,"name":"CraZySacX/rust","url":"https://api.github.com/repos/CraZySacX/rust"},"payload":{"push_id":536865865,"size":40,"distinct_size":40,"ref":"refs/heads/master","head":"2c49212783ecb11940bda737e08985de4aa6fa43","before":"fabc5df8cdfe1ec66a27ace30d32d05796a2cc5e","commits":[{"sha":"4f05ec7d2c487c2e48f8753a4426ac6940d6be9a","author":{"email":"4cc33a8ae3d9bb448f90bf63a1d4018698b1fb94@alum.mit.edu","name":"Niko Matsakis"},"message":"Patch projection to not be so eager to unify type variables. This code\nis still probably wrong since it fails to incorporate the ambiguity\nresolution measures that `select` uses. Also, made more complicated by\nthe fact that trait object types do not impl their own traits yet.","distinct":true,"url":"https://api.github.com/repos/CraZySacX/rust/commits/4f05ec7d2c487c2e48f8753a4426ac6940d6be9a"},{"sha":"23eec0c955c3573c0132f81a40ea7c210995a862","author":{"email":"4cc33a8ae3d9bb448f90bf63a1d4018698b1fb94@alum.mit.edu","name":"Niko Matsakis"},"message":"Incorporate fix from japaric for cross-crate ICE","distinct":true,"url":"https://api.github.com/repos/CraZySacX/rust/commits/23eec0c955c3573c0132f81a40ea7c210995a862"},{"sha":"90252b8ddb439a538765ef85532f4caa029b5e8e","author":{"email":"4cc33a8ae3d9bb448f90bf63a1d4018698b1fb94@alum.mit.edu","name":"Niko Matsakis"},"message":"Add ignore pretty.","distinct":true,"url":"https://api.github.com/repos/CraZySacX/rust/commits/90252b8ddb439a538765ef85532f4caa029b5e8e"},{"sha":"0aa7ba9f5e9882c63a8f4bf4397ba8cd558b33ab","author":{"email":"4cc33a8ae3d9bb448f90bf63a1d4018698b1fb94@alum.mit.edu","name":"Niko Matsakis"},"message":"Normalize bounds also in the UFCS cases (and get more systematic about it)","distinct":true,"url":"https://api.github.com/repos/CraZySacX/rust/commits/0aa7ba9f5e9882c63a8f4bf4397ba8cd558b33ab"},{"sha":"6cb425d964637da3ffa99cac902bf8fe696baf08","author":{"email":"4cc33a8ae3d9bb448f90bf63a1d4018698b1fb94@alum.mit.edu","name":"Niko Matsakis"},"message":"Rework normalization so that it works recursively, since the types extracted from an impl are potentially in need of normalization. This also lays groundwork for further cleanup in other areas by disconnecting normalization from the fulfillment context.","distinct":true,"url":"https://api.github.com/repos/CraZySacX/rust/commits/6cb425d964637da3ffa99cac902bf8fe696baf08"},{"sha":"9675488ef9480365c2d26e23bfd649128037880f","author":{"email":"4cc33a8ae3d9bb448f90bf63a1d4018698b1fb94@alum.mit.edu","name":"Niko Matsakis"},"message":"Add tests for two random issues that seem to be fixed on this branch.\n\nFixes #20346.\nFixes #20371.","distinct":true,"url":"https://api.github.com/repos/CraZySacX/rust/commits/9675488ef9480365c2d26e23bfd649128037880f"},{"sha":"67dab2af81ba64023c526dc96315863a9f7e9e40","author":{"email":"4cc33a8ae3d9bb448f90bf63a1d4018698b1fb94@alum.mit.edu","name":"Niko Matsakis"},"message":"Include projection bounds in superpredicates.\n\nFixes #19451.\nFixes #20345.","distinct":true,"url":"https://api.github.com/repos/CraZySacX/rust/commits/67dab2af81ba64023c526dc96315863a9f7e9e40"},{"sha":"0a2d531b94f4c49ecc0b190b1feb438e27c3e882","author":{"email":"4cc33a8ae3d9bb448f90bf63a1d4018698b1fb94@alum.mit.edu","name":"Niko Matsakis"},"message":"Teach trans to drain fulfillment context. japaric encountered problems\ndue to this but we were not able to isolate a smaller test case.","distinct":true,"url":"https://api.github.com/repos/CraZySacX/rust/commits/0a2d531b94f4c49ecc0b190b1feb438e27c3e882"},{"sha":"cadd4335b4150f94b573eb3c87235d653cfba6d2","author":{"email":"4cc33a8ae3d9bb448f90bf63a1d4018698b1fb94@alum.mit.edu","name":"Niko Matsakis"},"message":"Fix whitespace.","distinct":true,"url":"https://api.github.com/repos/CraZySacX/rust/commits/cadd4335b4150f94b573eb3c87235d653cfba6d2"},{"sha":"7ae1c6bc269cd0fddb45590a91d77e39b47a4965","author":{"email":"4cc33a8ae3d9bb448f90bf63a1d4018698b1fb94@alum.mit.edu","name":"Niko Matsakis"},"message":"Remove a TODO now that we handle normalization-derived bounds properly.","distinct":true,"url":"https://api.github.com/repos/CraZySacX/rust/commits/7ae1c6bc269cd0fddb45590a91d77e39b47a4965"},{"sha":"004a567de3d885e72d4053aeb91798749685a030","author":{"email":"4cc33a8ae3d9bb448f90bf63a1d4018698b1fb94@alum.mit.edu","name":"Niko Matsakis"},"message":"Convert TODO to FIXME for now","distinct":true,"url":"https://api.github.com/repos/CraZySacX/rust/commits/004a567de3d885e72d4053aeb91798749685a030"},{"sha":"ea94a90488e6b4701581079339de3595389e5b15","author":{"email":"550518ab9d14bd32155907315f74849d7b5c2b36@gmail.com","name":"Jorge Aparicio"},"message":"unicode: unbox closures used in function arguments","distinct":true,"url":"https://api.github.com/repos/CraZySacX/rust/commits/ea94a90488e6b4701581079339de3595389e5b15"},{"sha":"a17c2b60e1c32e950b011296025a9f88f4d3c4e4","author":{"email":"550518ab9d14bd32155907315f74849d7b5c2b36@gmail.com","name":"Jorge Aparicio"},"message":"collections: fix fallout","distinct":true,"url":"https://api.github.com/repos/CraZySacX/rust/commits/a17c2b60e1c32e950b011296025a9f88f4d3c4e4"},{"sha":"7d4f4876d65bddf101784230c0347adcb01e5c21","author":{"email":"3a2c29237f73c7cf88424b80e427b1884f346b35@rust-lang.org","name":"bors"},"message":"auto merge of #20374 : nikomatsakis/rust/assoc-types, r=nikomatsakis\n\nThese mostly derive from problems that @japaric encountered.\r\n\r\nr? @pcwalton","distinct":true,"url":"https://api.github.com/repos/CraZySacX/rust/commits/7d4f4876d65bddf101784230c0347adcb01e5c21"},{"sha":"371f04d4330f70cfab5fa2a5fdb65df7ccd0604c","author":{"email":"550518ab9d14bd32155907315f74849d7b5c2b36@gmail.com","name":"Jorge Aparicio"},"message":"std: unbox closures used in function arguments","distinct":true,"url":"https://api.github.com/repos/CraZySacX/rust/commits/371f04d4330f70cfab5fa2a5fdb65df7ccd0604c"},{"sha":"70ce68eed4f81ff90cf3710e3fdb7b04de71a388","author":{"email":"550518ab9d14bd32155907315f74849d7b5c2b36@gmail.com","name":"Jorge Aparicio"},"message":"syntax: unbox closures used in function arguments","distinct":true,"url":"https://api.github.com/repos/CraZySacX/rust/commits/70ce68eed4f81ff90cf3710e3fdb7b04de71a388"},{"sha":"5de9f47e49200f1e9e367144d184446ddde9105b","author":{"email":"550518ab9d14bd32155907315f74849d7b5c2b36@gmail.com","name":"Jorge Aparicio"},"message":"rustc: unbox closures used in function arguments","distinct":true,"url":"https://api.github.com/repos/CraZySacX/rust/commits/5de9f47e49200f1e9e367144d184446ddde9105b"},{"sha":"24b49228f0dbd5a4b59a5297532f4b9cb4dfdc6a","author":{"email":"550518ab9d14bd32155907315f74849d7b5c2b36@gmail.com","name":"Jorge Aparicio"},"message":"rustc_trans: unbox closures used in function arguments","distinct":true,"url":"https://api.github.com/repos/CraZySacX/rust/commits/24b49228f0dbd5a4b59a5297532f4b9cb4dfdc6a"},{"sha":"bcc2120c2134cd4359d160e55ebbc3c3bcb72f16","author":{"email":"550518ab9d14bd32155907315f74849d7b5c2b36@gmail.com","name":"Jorge Aparicio"},"message":"rustc_borrowck: unbox closures used in function arguments","distinct":true,"url":"https://api.github.com/repos/CraZySacX/rust/commits/bcc2120c2134cd4359d160e55ebbc3c3bcb72f16"},{"sha":"ddb4e43fa51de0186b6bab12353cb25f5e785a4f","author":{"email":"550518ab9d14bd32155907315f74849d7b5c2b36@gmail.com","name":"Jorge Aparicio"},"message":"core: unbox closures used in let bindings","distinct":true,"url":"https://api.github.com/repos/CraZySacX/rust/commits/ddb4e43fa51de0186b6bab12353cb25f5e785a4f"}]},"public":true,"created_at":"2015-01-01T15:09:00Z"} +,{"id":"2489655230","type":"WatchEvent","actor":{"id":3865573,"login":"Ryozo","gravatar_id":"","url":"https://api.github.com/users/Ryozo","avatar_url":"https://avatars.githubusercontent.com/u/3865573?"},"repo":{"id":3250434,"name":"DozerMapper/dozer","url":"https://api.github.com/repos/DozerMapper/dozer"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:09:00Z","org":{"id":1372459,"login":"DozerMapper","gravatar_id":"","url":"https://api.github.com/orgs/DozerMapper","avatar_url":"https://avatars.githubusercontent.com/u/1372459?"}} +,{"id":"2489655233","type":"PullRequestEvent","actor":{"id":299901,"login":"dankempster","gravatar_id":"","url":"https://api.github.com/users/dankempster","avatar_url":"https://avatars.githubusercontent.com/u/299901?"},"repo":{"id":28648383,"name":"dankempster/axstrad-filesystem","url":"https://api.github.com/repos/dankempster/axstrad-filesystem"},"payload":{"action":"closed","number":3,"pull_request":{"url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/3","id":26743795,"html_url":"https://github.com/dankempster/axstrad-filesystem/pull/3","diff_url":"https://github.com/dankempster/axstrad-filesystem/pull/3.diff","patch_url":"https://github.com/dankempster/axstrad-filesystem/pull/3.patch","issue_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/3","number":3,"state":"closed","locked":false,"title":"Set Travis builds to push code coverage to Coveralls.","user":{"login":"dankempster","id":299901,"avatar_url":"https://avatars.githubusercontent.com/u/299901?v=3","gravatar_id":"","url":"https://api.github.com/users/dankempster","html_url":"https://github.com/dankempster","followers_url":"https://api.github.com/users/dankempster/followers","following_url":"https://api.github.com/users/dankempster/following{/other_user}","gists_url":"https://api.github.com/users/dankempster/gists{/gist_id}","starred_url":"https://api.github.com/users/dankempster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dankempster/subscriptions","organizations_url":"https://api.github.com/users/dankempster/orgs","repos_url":"https://api.github.com/users/dankempster/repos","events_url":"https://api.github.com/users/dankempster/events{/privacy}","received_events_url":"https://api.github.com/users/dankempster/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:03:45Z","updated_at":"2015-01-01T15:09:00Z","closed_at":"2015-01-01T15:09:00Z","merged_at":"2015-01-01T15:09:00Z","merge_commit_sha":"469a419f996af36c2ab8362ce17de6b2de2bb731","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/3/commits","review_comments_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/3/comments","review_comment_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/comments/{number}","comments_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/3/comments","statuses_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/statuses/1c6534408ae63ce8b18d28eb47ce83dbf0af31bb","head":{"label":"dankempster:add-coveralls","ref":"add-coveralls","sha":"1c6534408ae63ce8b18d28eb47ce83dbf0af31bb","user":{"login":"dankempster","id":299901,"avatar_url":"https://avatars.githubusercontent.com/u/299901?v=3","gravatar_id":"","url":"https://api.github.com/users/dankempster","html_url":"https://github.com/dankempster","followers_url":"https://api.github.com/users/dankempster/followers","following_url":"https://api.github.com/users/dankempster/following{/other_user}","gists_url":"https://api.github.com/users/dankempster/gists{/gist_id}","starred_url":"https://api.github.com/users/dankempster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dankempster/subscriptions","organizations_url":"https://api.github.com/users/dankempster/orgs","repos_url":"https://api.github.com/users/dankempster/repos","events_url":"https://api.github.com/users/dankempster/events{/privacy}","received_events_url":"https://api.github.com/users/dankempster/received_events","type":"User","site_admin":false},"repo":{"id":28648383,"name":"axstrad-filesystem","full_name":"dankempster/axstrad-filesystem","owner":{"login":"dankempster","id":299901,"avatar_url":"https://avatars.githubusercontent.com/u/299901?v=3","gravatar_id":"","url":"https://api.github.com/users/dankempster","html_url":"https://github.com/dankempster","followers_url":"https://api.github.com/users/dankempster/followers","following_url":"https://api.github.com/users/dankempster/following{/other_user}","gists_url":"https://api.github.com/users/dankempster/gists{/gist_id}","starred_url":"https://api.github.com/users/dankempster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dankempster/subscriptions","organizations_url":"https://api.github.com/users/dankempster/orgs","repos_url":"https://api.github.com/users/dankempster/repos","events_url":"https://api.github.com/users/dankempster/events{/privacy}","received_events_url":"https://api.github.com/users/dankempster/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/dankempster/axstrad-filesystem","description":"","fork":false,"url":"https://api.github.com/repos/dankempster/axstrad-filesystem","forks_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/forks","keys_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/keys{/key_id}","collaborators_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/teams","hooks_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/hooks","issue_events_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/events{/number}","events_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/events","assignees_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/assignees{/user}","branches_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/branches{/branch}","tags_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/tags","blobs_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/refs{/sha}","trees_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/trees{/sha}","statuses_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/statuses/{sha}","languages_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/languages","stargazers_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/stargazers","contributors_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/contributors","subscribers_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/subscribers","subscription_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/subscription","commits_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/commits{/sha}","git_commits_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/commits{/sha}","comments_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/comments{/number}","issue_comment_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/comments/{number}","contents_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/contents/{+path}","compare_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/compare/{base}...{head}","merges_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/merges","archive_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/downloads","issues_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues{/number}","pulls_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls{/number}","milestones_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/milestones{/number}","notifications_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/labels{/name}","releases_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/releases{/id}","created_at":"2014-12-30T22:56:17Z","updated_at":"2014-12-31T01:11:17Z","pushed_at":"2015-01-01T15:09:00Z","git_url":"git://github.com/dankempster/axstrad-filesystem.git","ssh_url":"git@github.com:dankempster/axstrad-filesystem.git","clone_url":"https://github.com/dankempster/axstrad-filesystem.git","svn_url":"https://github.com/dankempster/axstrad-filesystem","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"PHP","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":"develop"}},"base":{"label":"dankempster:develop","ref":"develop","sha":"d2707adf8fb6309152905cb36666b74f5df6e513","user":{"login":"dankempster","id":299901,"avatar_url":"https://avatars.githubusercontent.com/u/299901?v=3","gravatar_id":"","url":"https://api.github.com/users/dankempster","html_url":"https://github.com/dankempster","followers_url":"https://api.github.com/users/dankempster/followers","following_url":"https://api.github.com/users/dankempster/following{/other_user}","gists_url":"https://api.github.com/users/dankempster/gists{/gist_id}","starred_url":"https://api.github.com/users/dankempster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dankempster/subscriptions","organizations_url":"https://api.github.com/users/dankempster/orgs","repos_url":"https://api.github.com/users/dankempster/repos","events_url":"https://api.github.com/users/dankempster/events{/privacy}","received_events_url":"https://api.github.com/users/dankempster/received_events","type":"User","site_admin":false},"repo":{"id":28648383,"name":"axstrad-filesystem","full_name":"dankempster/axstrad-filesystem","owner":{"login":"dankempster","id":299901,"avatar_url":"https://avatars.githubusercontent.com/u/299901?v=3","gravatar_id":"","url":"https://api.github.com/users/dankempster","html_url":"https://github.com/dankempster","followers_url":"https://api.github.com/users/dankempster/followers","following_url":"https://api.github.com/users/dankempster/following{/other_user}","gists_url":"https://api.github.com/users/dankempster/gists{/gist_id}","starred_url":"https://api.github.com/users/dankempster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dankempster/subscriptions","organizations_url":"https://api.github.com/users/dankempster/orgs","repos_url":"https://api.github.com/users/dankempster/repos","events_url":"https://api.github.com/users/dankempster/events{/privacy}","received_events_url":"https://api.github.com/users/dankempster/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/dankempster/axstrad-filesystem","description":"","fork":false,"url":"https://api.github.com/repos/dankempster/axstrad-filesystem","forks_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/forks","keys_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/keys{/key_id}","collaborators_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/teams","hooks_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/hooks","issue_events_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/events{/number}","events_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/events","assignees_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/assignees{/user}","branches_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/branches{/branch}","tags_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/tags","blobs_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/refs{/sha}","trees_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/trees{/sha}","statuses_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/statuses/{sha}","languages_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/languages","stargazers_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/stargazers","contributors_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/contributors","subscribers_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/subscribers","subscription_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/subscription","commits_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/commits{/sha}","git_commits_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/commits{/sha}","comments_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/comments{/number}","issue_comment_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/comments/{number}","contents_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/contents/{+path}","compare_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/compare/{base}...{head}","merges_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/merges","archive_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/downloads","issues_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues{/number}","pulls_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls{/number}","milestones_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/milestones{/number}","notifications_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/labels{/name}","releases_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/releases{/id}","created_at":"2014-12-30T22:56:17Z","updated_at":"2014-12-31T01:11:17Z","pushed_at":"2015-01-01T15:09:00Z","git_url":"git://github.com/dankempster/axstrad-filesystem.git","ssh_url":"git@github.com:dankempster/axstrad-filesystem.git","clone_url":"https://github.com/dankempster/axstrad-filesystem.git","svn_url":"https://github.com/dankempster/axstrad-filesystem","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"PHP","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":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/3"},"html":{"href":"https://github.com/dankempster/axstrad-filesystem/pull/3"},"issue":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/3"},"comments":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/3/comments"},"review_comments":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/3/comments"},"review_comment":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/3/commits"},"statuses":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/statuses/1c6534408ae63ce8b18d28eb47ce83dbf0af31bb"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"dankempster","id":299901,"avatar_url":"https://avatars.githubusercontent.com/u/299901?v=3","gravatar_id":"","url":"https://api.github.com/users/dankempster","html_url":"https://github.com/dankempster","followers_url":"https://api.github.com/users/dankempster/followers","following_url":"https://api.github.com/users/dankempster/following{/other_user}","gists_url":"https://api.github.com/users/dankempster/gists{/gist_id}","starred_url":"https://api.github.com/users/dankempster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dankempster/subscriptions","organizations_url":"https://api.github.com/users/dankempster/orgs","repos_url":"https://api.github.com/users/dankempster/repos","events_url":"https://api.github.com/users/dankempster/events{/privacy}","received_events_url":"https://api.github.com/users/dankempster/received_events","type":"User","site_admin":false},"comments":2,"review_comments":0,"commits":1,"additions":436,"deletions":10,"changed_files":4}},"public":true,"created_at":"2015-01-01T15:09:00Z"} +,{"id":"2489655234","type":"WatchEvent","actor":{"id":3362147,"login":"skiy","gravatar_id":"","url":"https://api.github.com/users/skiy","avatar_url":"https://avatars.githubusercontent.com/u/3362147?"},"repo":{"id":9117329,"name":"lj2007331/lnmp","url":"https://api.github.com/repos/lj2007331/lnmp"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:09:00Z"} +,{"id":"2489655235","type":"PushEvent","actor":{"id":299901,"login":"dankempster","gravatar_id":"","url":"https://api.github.com/users/dankempster","avatar_url":"https://avatars.githubusercontent.com/u/299901?"},"repo":{"id":28648383,"name":"dankempster/axstrad-filesystem","url":"https://api.github.com/repos/dankempster/axstrad-filesystem"},"payload":{"push_id":536865868,"size":2,"distinct_size":1,"ref":"refs/heads/develop","head":"9e4889c0903406b13365585ecf9b473f8eda4695","before":"d2707adf8fb6309152905cb36666b74f5df6e513","commits":[{"sha":"1c6534408ae63ce8b18d28eb47ce83dbf0af31bb","author":{"email":"34c6fceca75e456f25e7e99531e2425c6c1de443@dankempster.co.uk","name":"Dan Kempster"},"message":"Set Travis builds to push code coverage to Coveralls.","distinct":false,"url":"https://api.github.com/repos/dankempster/axstrad-filesystem/commits/1c6534408ae63ce8b18d28eb47ce83dbf0af31bb"},{"sha":"9e4889c0903406b13365585ecf9b473f8eda4695","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@dankempster.co.uk","name":"Dan Kempster"},"message":"Merge pull request #3 from dankempster/add-coveralls\n\nSet Travis builds to push code coverage to Coveralls.","distinct":true,"url":"https://api.github.com/repos/dankempster/axstrad-filesystem/commits/9e4889c0903406b13365585ecf9b473f8eda4695"}]},"public":true,"created_at":"2015-01-01T15:09:01Z"} +,{"id":"2489655236","type":"IssueCommentEvent","actor":{"id":111510,"login":"janlelis","gravatar_id":"","url":"https://api.github.com/users/janlelis","avatar_url":"https://avatars.githubusercontent.com/u/111510?"},"repo":{"id":3217545,"name":"janlelis/pws","url":"https://api.github.com/repos/janlelis/pws"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/janlelis/pws/issues/17","labels_url":"https://api.github.com/repos/janlelis/pws/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/janlelis/pws/issues/17/comments","events_url":"https://api.github.com/repos/janlelis/pws/issues/17/events","html_url":"https://github.com/janlelis/pws/issues/17","id":53054066,"number":17,"title":"pws doesn't work with ruby 2.2 because of cannot load such file -- digest/hmac (LoadError)","user":{"login":"paneq","id":65587,"avatar_url":"https://avatars.githubusercontent.com/u/65587?v=3","gravatar_id":"","url":"https://api.github.com/users/paneq","html_url":"https://github.com/paneq","followers_url":"https://api.github.com/users/paneq/followers","following_url":"https://api.github.com/users/paneq/following{/other_user}","gists_url":"https://api.github.com/users/paneq/gists{/gist_id}","starred_url":"https://api.github.com/users/paneq/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/paneq/subscriptions","organizations_url":"https://api.github.com/users/paneq/orgs","repos_url":"https://api.github.com/users/paneq/repos","events_url":"https://api.github.com/users/paneq/events{/privacy}","received_events_url":"https://api.github.com/users/paneq/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-29T16:55:19Z","updated_at":"2015-01-01T15:09:01Z","closed_at":"2015-01-01T13:46:38Z","body":"```/home/rupert/.rvm/rubies/ruby-2.2.0/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require': cannot load such file -- digest/hmac (LoadError)```"},"comment":{"url":"https://api.github.com/repos/janlelis/pws/issues/comments/68488672","html_url":"https://github.com/janlelis/pws/issues/17#issuecomment-68488672","issue_url":"https://api.github.com/repos/janlelis/pws/issues/17","id":68488672,"user":{"login":"janlelis","id":111510,"avatar_url":"https://avatars.githubusercontent.com/u/111510?v=3","gravatar_id":"","url":"https://api.github.com/users/janlelis","html_url":"https://github.com/janlelis","followers_url":"https://api.github.com/users/janlelis/followers","following_url":"https://api.github.com/users/janlelis/following{/other_user}","gists_url":"https://api.github.com/users/janlelis/gists{/gist_id}","starred_url":"https://api.github.com/users/janlelis/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/janlelis/subscriptions","organizations_url":"https://api.github.com/users/janlelis/orgs","repos_url":"https://api.github.com/users/janlelis/repos","events_url":"https://api.github.com/users/janlelis/events{/privacy}","received_events_url":"https://api.github.com/users/janlelis/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:09:01Z","updated_at":"2015-01-01T15:09:01Z","body":"Thanks, fixed in 1.0.6"}},"public":true,"created_at":"2015-01-01T15:09:01Z"} +,{"id":"2489655239","type":"IssuesEvent","actor":{"id":62250,"login":"saturnboy","gravatar_id":"","url":"https://api.github.com/users/saturnboy","avatar_url":"https://avatars.githubusercontent.com/u/62250?"},"repo":{"id":28056948,"name":"ActivisionGameScience/assertpy","url":"https://api.github.com/repos/ActivisionGameScience/assertpy"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/ActivisionGameScience/assertpy/issues/5","labels_url":"https://api.github.com/repos/ActivisionGameScience/assertpy/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/ActivisionGameScience/assertpy/issues/5/comments","events_url":"https://api.github.com/repos/ActivisionGameScience/assertpy/issues/5/events","html_url":"https://github.com/ActivisionGameScience/assertpy/issues/5","id":53221506,"number":5,"title":"add is_unicode","user":{"login":"saturnboy","id":62250,"avatar_url":"https://avatars.githubusercontent.com/u/62250?v=3","gravatar_id":"","url":"https://api.github.com/users/saturnboy","html_url":"https://github.com/saturnboy","followers_url":"https://api.github.com/users/saturnboy/followers","following_url":"https://api.github.com/users/saturnboy/following{/other_user}","gists_url":"https://api.github.com/users/saturnboy/gists{/gist_id}","starred_url":"https://api.github.com/users/saturnboy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/saturnboy/subscriptions","organizations_url":"https://api.github.com/users/saturnboy/orgs","repos_url":"https://api.github.com/users/saturnboy/repos","events_url":"https://api.github.com/users/saturnboy/events{/privacy}","received_events_url":"https://api.github.com/users/saturnboy/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/ActivisionGameScience/assertpy/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":{"login":"saturnboy","id":62250,"avatar_url":"https://avatars.githubusercontent.com/u/62250?v=3","gravatar_id":"","url":"https://api.github.com/users/saturnboy","html_url":"https://github.com/saturnboy","followers_url":"https://api.github.com/users/saturnboy/followers","following_url":"https://api.github.com/users/saturnboy/following{/other_user}","gists_url":"https://api.github.com/users/saturnboy/gists{/gist_id}","starred_url":"https://api.github.com/users/saturnboy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/saturnboy/subscriptions","organizations_url":"https://api.github.com/users/saturnboy/orgs","repos_url":"https://api.github.com/users/saturnboy/repos","events_url":"https://api.github.com/users/saturnboy/events{/privacy}","received_events_url":"https://api.github.com/users/saturnboy/received_events","type":"User","site_admin":false},"milestone":null,"comments":0,"created_at":"2015-01-01T15:09:01Z","updated_at":"2015-01-01T15:09:01Z","closed_at":null,"body":"Since `assertpy` does not support Python 3.x there is not much to do with unicode yet. Add `is_unicode()` assertion so we can do something in 2.7.x:\r\n\r\n```py\r\nassert_that(u'fred').is_unicode()\r\n```"}},"public":true,"created_at":"2015-01-01T15:09:01Z","org":{"id":10093627,"login":"ActivisionGameScience","gravatar_id":"","url":"https://api.github.com/orgs/ActivisionGameScience","avatar_url":"https://avatars.githubusercontent.com/u/10093627?"}} +,{"id":"2489655247","type":"PushEvent","actor":{"id":433707,"login":"ile","gravatar_id":"","url":"https://api.github.com/users/ile","avatar_url":"https://avatars.githubusercontent.com/u/433707?"},"repo":{"id":13599170,"name":"ile/ile.github.io","url":"https://api.github.com/repos/ile/ile.github.io"},"payload":{"push_id":536865872,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ccfa94ad297240ed7691a9a5c344a7182717d91c","before":"34c4b3b1ccdf80a848b4e4693c7173702c6a185a","commits":[{"sha":"ccfa94ad297240ed7691a9a5c344a7182717d91c","author":{"email":"587176f59bd66462892fd96dcec0acd2c8acf8c1@gmail.com","name":"Ilkka Huotari"},"message":"Update index.html","distinct":true,"url":"https://api.github.com/repos/ile/ile.github.io/commits/ccfa94ad297240ed7691a9a5c344a7182717d91c"}]},"public":true,"created_at":"2015-01-01T15:09:02Z"} +,{"id":"2489655249","type":"PushEvent","actor":{"id":10180062,"login":"mjn33","gravatar_id":"","url":"https://api.github.com/users/mjn33","avatar_url":"https://avatars.githubusercontent.com/u/10180062?"},"repo":{"id":27975145,"name":"mjn33/Pilot-Assistant","url":"https://api.github.com/repos/mjn33/Pilot-Assistant"},"payload":{"push_id":536865873,"size":16,"distinct_size":2,"ref":"refs/heads/master","head":"fbddc15b0b0d6721f3c04043e3acd89c5dce9d38","before":"fbd8b431675b06ae105cf1f6852df68f1ef387df","commits":[{"sha":"0d8eadae7a8ba301434891b69382ea06f2d58241","author":{"email":"215d4c85ac2c710a61ce4a50d04dec9227e7e09f@kent.ac.uk","name":"Matthew Nicholls"},"message":"New experimental SSAS pause manager code\n\nShould also provide compatibility with joysticks/non-keyboard controls.","distinct":false,"url":"https://api.github.com/repos/mjn33/Pilot-Assistant/commits/0d8eadae7a8ba301434891b69382ea06f2d58241"},{"sha":"3c9eafb8150bc5c87a11bfc90e516efe4649b185","author":{"email":"215d4c85ac2c710a61ce4a50d04dec9227e7e09f@kent.ac.uk","name":"Matthew Nicholls"},"message":"Remove unnecessary duplicate functions of Clamp() and Lerp()","distinct":false,"url":"https://api.github.com/repos/mjn33/Pilot-Assistant/commits/3c9eafb8150bc5c87a11bfc90e516efe4649b185"},{"sha":"2f4eb6b1b8260996c20968484a86d606a1e31c51","author":{"email":"215d4c85ac2c710a61ce4a50d04dec9227e7e09f@kent.ac.uk","name":"Matthew Nicholls"},"message":"Fix SSAS not handling vessel switch properly\n\nFlightData changed from static to non-static so vessel switching should work for both PA and SSAS, otherwise one switching first would break the other.","distinct":false,"url":"https://api.github.com/repos/mjn33/Pilot-Assistant/commits/2f4eb6b1b8260996c20968484a86d606a1e31c51"},{"sha":"2ecd89f66bfefe232f7d5049c59d85e28bedbc6d","author":{"email":"215d4c85ac2c710a61ce4a50d04dec9227e7e09f@kent.ac.uk","name":"Matthew Nicholls"},"message":"Make stock SAS preset code consistent with the rest of the preset code","distinct":false,"url":"https://api.github.com/repos/mjn33/Pilot-Assistant/commits/2ecd89f66bfefe232f7d5049c59d85e28bedbc6d"},{"sha":"8e7b583e024e6ec3d11e5686bb9e37f95c22c50e","author":{"email":"215d4c85ac2c710a61ce4a50d04dec9227e7e09f@kent.ac.uk","name":"Matthew Nicholls"},"message":"Replace unnecessary use of List with arrays in PAPreset and SASPreset","distinct":false,"url":"https://api.github.com/repos/mjn33/Pilot-Assistant/commits/8e7b583e024e6ec3d11e5686bb9e37f95c22c50e"},{"sha":"c9c23d8b195c91bb4caade21a5d1e285b5653e9d","author":{"email":"215d4c85ac2c710a61ce4a50d04dec9227e7e09f@kent.ac.uk","name":"Matthew Nicholls"},"message":"Various bugfixes and changes\n\n* VesselSwitch now non-static, as it will not work if made static.\n* From looking at KSP's behaviour, replaced Initialize() with Start() for consistency.\n* PA OnDestory removes OnAutopilotUpdate event handler.\n* flightData.UpdateAttitude() now always called in SSAS VesselController()","distinct":false,"url":"https://api.github.com/repos/mjn33/Pilot-Assistant/commits/c9c23d8b195c91bb4caade21a5d1e285b5653e9d"},{"sha":"6cf7ecdc976d9010195c7daee5b1438dafc17dac","author":{"email":"215d4c85ac2c710a61ce4a50d04dec9227e7e09f@kent.ac.uk","name":"Matthew Nicholls"},"message":"Use fixed-point format for values in GUI","distinct":false,"url":"https://api.github.com/repos/mjn33/Pilot-Assistant/commits/6cf7ecdc976d9010195c7daee5b1438dafc17dac"},{"sha":"c3fb856db6892625211f4933919074e09aa289a8","author":{"email":"215d4c85ac2c710a61ce4a50d04dec9227e7e09f@kent.ac.uk","name":"Matthew Nicholls"},"message":"Bin InputModerator and ModeratorMainWindow","distinct":false,"url":"https://api.github.com/repos/mjn33/Pilot-Assistant/commits/c3fb856db6892625211f4933919074e09aa289a8"},{"sha":"79cb5f3f52acddcae18b089ccffc6be4294f0207","author":{"email":"215d4c85ac2c710a61ce4a50d04dec9227e7e09f@kent.ac.uk","name":"Matthew Nicholls"},"message":"Small improvements to PID_Controller\n\n* skipDerivative made private, setter SkipDerivative added\n* bShow removed, controller display logic only in GUI code","distinct":false,"url":"https://api.github.com/repos/mjn33/Pilot-Assistant/commits/79cb5f3f52acddcae18b089ccffc6be4294f0207"},{"sha":"cd8708fd5890d7a76193446280986ecfc1fd2294","author":{"email":"215d4c85ac2c710a61ce4a50d04dec9227e7e09f@kent.ac.uk","name":"Matthew Nicholls"},"message":"Use properties for access to global styles in GeneralUI\n\nAlso changes some \"internal\" modifiers to \"public\" or \"private\".","distinct":false,"url":"https://api.github.com/repos/mjn33/Pilot-Assistant/commits/cd8708fd5890d7a76193446280986ecfc1fd2294"},{"sha":"c60f6f516f88e958cd0f61d666aceee51ec24370","author":{"email":"215d4c85ac2c710a61ce4a50d04dec9227e7e09f@kent.ac.uk","name":"Matthew Nicholls"},"message":"Many consistency fixes, small minor changes","distinct":false,"url":"https://api.github.com/repos/mjn33/Pilot-Assistant/commits/c60f6f516f88e958cd0f61d666aceee51ec24370"},{"sha":"c27e7508409b76bef5858abe5cc9a0ccb05a1e36","author":{"email":"215d4c85ac2c710a61ce4a50d04dec9227e7e09f@kent.ac.uk","name":"Matthew Nicholls"},"message":"Joystick/controller support for PilotAssistant","distinct":false,"url":"https://api.github.com/repos/mjn33/Pilot-Assistant/commits/c27e7508409b76bef5858abe5cc9a0ccb05a1e36"},{"sha":"1ba96dd18205390c9136413d1249b3c2d307e0a8","author":{"email":"215d4c85ac2c710a61ce4a50d04dec9227e7e09f@kent.ac.uk","name":"Matthew Nicholls"},"message":"Minor GUI changes and consistency fixes","distinct":false,"url":"https://api.github.com/repos/mjn33/Pilot-Assistant/commits/1ba96dd18205390c9136413d1249b3c2d307e0a8"},{"sha":"1223f7749d34b211fc4e5ed3ccb1ea4a91c88b30","author":{"email":"215d4c85ac2c710a61ce4a50d04dec9227e7e09f@kent.ac.uk","name":"Matthew Nicholls"},"message":"Bin Monitor.cs","distinct":false,"url":"https://api.github.com/repos/mjn33/Pilot-Assistant/commits/1223f7749d34b211fc4e5ed3ccb1ea4a91c88b30"},{"sha":"7e0a7611d87c6dfa1c0fa2beeaf23d0b029f5d2e","author":{"email":"215d4c85ac2c710a61ce4a50d04dec9227e7e09f@kent.ac.uk","name":"Matthew Nicholls"},"message":"Merge branch 'testing'","distinct":true,"url":"https://api.github.com/repos/mjn33/Pilot-Assistant/commits/7e0a7611d87c6dfa1c0fa2beeaf23d0b029f5d2e"},{"sha":"fbddc15b0b0d6721f3c04043e3acd89c5dce9d38","author":{"email":"215d4c85ac2c710a61ce4a50d04dec9227e7e09f@kent.ac.uk","name":"Matthew Nicholls"},"message":"Small PID_Controller change, recompiled","distinct":true,"url":"https://api.github.com/repos/mjn33/Pilot-Assistant/commits/fbddc15b0b0d6721f3c04043e3acd89c5dce9d38"}]},"public":true,"created_at":"2015-01-01T15:09:03Z"} +,{"id":"2489655252","type":"MemberEvent","actor":{"id":1086194,"login":"adrai","gravatar_id":"","url":"https://api.github.com/users/adrai","avatar_url":"https://avatars.githubusercontent.com/u/1086194?"},"repo":{"id":28688745,"name":"adrai/sensortag-visualization","url":"https://api.github.com/repos/adrai/sensortag-visualization"},"payload":{"member":{"login":"jamuhl","id":977772,"avatar_url":"https://avatars.githubusercontent.com/u/977772?v=3","gravatar_id":"","url":"https://api.github.com/users/jamuhl","html_url":"https://github.com/jamuhl","followers_url":"https://api.github.com/users/jamuhl/followers","following_url":"https://api.github.com/users/jamuhl/following{/other_user}","gists_url":"https://api.github.com/users/jamuhl/gists{/gist_id}","starred_url":"https://api.github.com/users/jamuhl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jamuhl/subscriptions","organizations_url":"https://api.github.com/users/jamuhl/orgs","repos_url":"https://api.github.com/users/jamuhl/repos","events_url":"https://api.github.com/users/jamuhl/events{/privacy}","received_events_url":"https://api.github.com/users/jamuhl/received_events","type":"User","site_admin":false},"action":"added"},"public":true,"created_at":"2015-01-01T15:09:04Z"} +,{"id":"2489655253","type":"DeleteEvent","actor":{"id":299901,"login":"dankempster","gravatar_id":"","url":"https://api.github.com/users/dankempster","avatar_url":"https://avatars.githubusercontent.com/u/299901?"},"repo":{"id":28648383,"name":"dankempster/axstrad-filesystem","url":"https://api.github.com/repos/dankempster/axstrad-filesystem"},"payload":{"ref":"add-coveralls","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:09:04Z"} +,{"id":"2489655256","type":"PushEvent","actor":{"id":6078139,"login":"michaelschramek","gravatar_id":"","url":"https://api.github.com/users/michaelschramek","avatar_url":"https://avatars.githubusercontent.com/u/6078139?"},"repo":{"id":14840449,"name":"michaelschramek/michaelschramek.github.io","url":"https://api.github.com/repos/michaelschramek/michaelschramek.github.io"},"payload":{"push_id":536865875,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"147b106e9f5f099d8c4ab821853ce2cbed0f39a6","before":"0820183a90f06c7d241691ae7e4be4d842050780","commits":[{"sha":"147b106e9f5f099d8c4ab821853ce2cbed0f39a6","author":{"email":"cbb917d8822f90277fa23ba1952bea927937bb5a@users.noreply.github.com","name":"Michael Schramek"},"message":"Update README.md\n\nchanged to michaelschramek.github.io","distinct":true,"url":"https://api.github.com/repos/michaelschramek/michaelschramek.github.io/commits/147b106e9f5f099d8c4ab821853ce2cbed0f39a6"}]},"public":true,"created_at":"2015-01-01T15:09:04Z"} +,{"id":"2489655261","type":"PullRequestEvent","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":{"action":"closed","number":2,"pull_request":{"url":"https://api.github.com/repos/zordius/gulp-github/pulls/2","id":26743805,"html_url":"https://github.com/zordius/gulp-github/pull/2","diff_url":"https://github.com/zordius/gulp-github/pull/2.diff","patch_url":"https://github.com/zordius/gulp-github/pull/2.patch","issue_url":"https://api.github.com/repos/zordius/gulp-github/issues/2","number":2,"state":"closed","locked":false,"title":"test","user":{"login":"zordius","id":1201409,"avatar_url":"https://avatars.githubusercontent.com/u/1201409?v=3","gravatar_id":"","url":"https://api.github.com/users/zordius","html_url":"https://github.com/zordius","followers_url":"https://api.github.com/users/zordius/followers","following_url":"https://api.github.com/users/zordius/following{/other_user}","gists_url":"https://api.github.com/users/zordius/gists{/gist_id}","starred_url":"https://api.github.com/users/zordius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zordius/subscriptions","organizations_url":"https://api.github.com/users/zordius/orgs","repos_url":"https://api.github.com/users/zordius/repos","events_url":"https://api.github.com/users/zordius/events{/privacy}","received_events_url":"https://api.github.com/users/zordius/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:05:03Z","updated_at":"2015-01-01T15:09:05Z","closed_at":"2015-01-01T15:09:05Z","merged_at":"2015-01-01T15:09:05Z","merge_commit_sha":"2c11ca3ec5d6d04dd2d9de6a4d2f740e579d07f4","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/zordius/gulp-github/pulls/2/commits","review_comments_url":"https://api.github.com/repos/zordius/gulp-github/pulls/2/comments","review_comment_url":"https://api.github.com/repos/zordius/gulp-github/pulls/comments/{number}","comments_url":"https://api.github.com/repos/zordius/gulp-github/issues/2/comments","statuses_url":"https://api.github.com/repos/zordius/gulp-github/statuses/18b1e5de29c49fd47e50d7803b51ce99729139fd","head":{"label":"zordius:test_pr","ref":"test_pr","sha":"18b1e5de29c49fd47e50d7803b51ce99729139fd","user":{"login":"zordius","id":1201409,"avatar_url":"https://avatars.githubusercontent.com/u/1201409?v=3","gravatar_id":"","url":"https://api.github.com/users/zordius","html_url":"https://github.com/zordius","followers_url":"https://api.github.com/users/zordius/followers","following_url":"https://api.github.com/users/zordius/following{/other_user}","gists_url":"https://api.github.com/users/zordius/gists{/gist_id}","starred_url":"https://api.github.com/users/zordius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zordius/subscriptions","organizations_url":"https://api.github.com/users/zordius/orgs","repos_url":"https://api.github.com/users/zordius/repos","events_url":"https://api.github.com/users/zordius/events{/privacy}","received_events_url":"https://api.github.com/users/zordius/received_events","type":"User","site_admin":false},"repo":{"id":28685419,"name":"gulp-github","full_name":"zordius/gulp-github","owner":{"login":"zordius","id":1201409,"avatar_url":"https://avatars.githubusercontent.com/u/1201409?v=3","gravatar_id":"","url":"https://api.github.com/users/zordius","html_url":"https://github.com/zordius","followers_url":"https://api.github.com/users/zordius/followers","following_url":"https://api.github.com/users/zordius/following{/other_user}","gists_url":"https://api.github.com/users/zordius/gists{/gist_id}","starred_url":"https://api.github.com/users/zordius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zordius/subscriptions","organizations_url":"https://api.github.com/users/zordius/orgs","repos_url":"https://api.github.com/users/zordius/repos","events_url":"https://api.github.com/users/zordius/events{/privacy}","received_events_url":"https://api.github.com/users/zordius/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/zordius/gulp-github","description":"A gulp plugin to pipe contents to github pull request comments.","fork":false,"url":"https://api.github.com/repos/zordius/gulp-github","forks_url":"https://api.github.com/repos/zordius/gulp-github/forks","keys_url":"https://api.github.com/repos/zordius/gulp-github/keys{/key_id}","collaborators_url":"https://api.github.com/repos/zordius/gulp-github/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/zordius/gulp-github/teams","hooks_url":"https://api.github.com/repos/zordius/gulp-github/hooks","issue_events_url":"https://api.github.com/repos/zordius/gulp-github/issues/events{/number}","events_url":"https://api.github.com/repos/zordius/gulp-github/events","assignees_url":"https://api.github.com/repos/zordius/gulp-github/assignees{/user}","branches_url":"https://api.github.com/repos/zordius/gulp-github/branches{/branch}","tags_url":"https://api.github.com/repos/zordius/gulp-github/tags","blobs_url":"https://api.github.com/repos/zordius/gulp-github/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/zordius/gulp-github/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/zordius/gulp-github/git/refs{/sha}","trees_url":"https://api.github.com/repos/zordius/gulp-github/git/trees{/sha}","statuses_url":"https://api.github.com/repos/zordius/gulp-github/statuses/{sha}","languages_url":"https://api.github.com/repos/zordius/gulp-github/languages","stargazers_url":"https://api.github.com/repos/zordius/gulp-github/stargazers","contributors_url":"https://api.github.com/repos/zordius/gulp-github/contributors","subscribers_url":"https://api.github.com/repos/zordius/gulp-github/subscribers","subscription_url":"https://api.github.com/repos/zordius/gulp-github/subscription","commits_url":"https://api.github.com/repos/zordius/gulp-github/commits{/sha}","git_commits_url":"https://api.github.com/repos/zordius/gulp-github/git/commits{/sha}","comments_url":"https://api.github.com/repos/zordius/gulp-github/comments{/number}","issue_comment_url":"https://api.github.com/repos/zordius/gulp-github/issues/comments/{number}","contents_url":"https://api.github.com/repos/zordius/gulp-github/contents/{+path}","compare_url":"https://api.github.com/repos/zordius/gulp-github/compare/{base}...{head}","merges_url":"https://api.github.com/repos/zordius/gulp-github/merges","archive_url":"https://api.github.com/repos/zordius/gulp-github/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/zordius/gulp-github/downloads","issues_url":"https://api.github.com/repos/zordius/gulp-github/issues{/number}","pulls_url":"https://api.github.com/repos/zordius/gulp-github/pulls{/number}","milestones_url":"https://api.github.com/repos/zordius/gulp-github/milestones{/number}","notifications_url":"https://api.github.com/repos/zordius/gulp-github/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/zordius/gulp-github/labels{/name}","releases_url":"https://api.github.com/repos/zordius/gulp-github/releases{/id}","created_at":"2015-01-01T11:28:34Z","updated_at":"2015-01-01T15:01:34Z","pushed_at":"2015-01-01T15:09:05Z","git_url":"git://github.com/zordius/gulp-github.git","ssh_url":"git@github.com:zordius/gulp-github.git","clone_url":"https://github.com/zordius/gulp-github.git","svn_url":"https://github.com/zordius/gulp-github","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","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":"zordius:master","ref":"master","sha":"25e76bca2086e73d43a7259f089b0b7ca568ee4a","user":{"login":"zordius","id":1201409,"avatar_url":"https://avatars.githubusercontent.com/u/1201409?v=3","gravatar_id":"","url":"https://api.github.com/users/zordius","html_url":"https://github.com/zordius","followers_url":"https://api.github.com/users/zordius/followers","following_url":"https://api.github.com/users/zordius/following{/other_user}","gists_url":"https://api.github.com/users/zordius/gists{/gist_id}","starred_url":"https://api.github.com/users/zordius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zordius/subscriptions","organizations_url":"https://api.github.com/users/zordius/orgs","repos_url":"https://api.github.com/users/zordius/repos","events_url":"https://api.github.com/users/zordius/events{/privacy}","received_events_url":"https://api.github.com/users/zordius/received_events","type":"User","site_admin":false},"repo":{"id":28685419,"name":"gulp-github","full_name":"zordius/gulp-github","owner":{"login":"zordius","id":1201409,"avatar_url":"https://avatars.githubusercontent.com/u/1201409?v=3","gravatar_id":"","url":"https://api.github.com/users/zordius","html_url":"https://github.com/zordius","followers_url":"https://api.github.com/users/zordius/followers","following_url":"https://api.github.com/users/zordius/following{/other_user}","gists_url":"https://api.github.com/users/zordius/gists{/gist_id}","starred_url":"https://api.github.com/users/zordius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zordius/subscriptions","organizations_url":"https://api.github.com/users/zordius/orgs","repos_url":"https://api.github.com/users/zordius/repos","events_url":"https://api.github.com/users/zordius/events{/privacy}","received_events_url":"https://api.github.com/users/zordius/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/zordius/gulp-github","description":"A gulp plugin to pipe contents to github pull request comments.","fork":false,"url":"https://api.github.com/repos/zordius/gulp-github","forks_url":"https://api.github.com/repos/zordius/gulp-github/forks","keys_url":"https://api.github.com/repos/zordius/gulp-github/keys{/key_id}","collaborators_url":"https://api.github.com/repos/zordius/gulp-github/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/zordius/gulp-github/teams","hooks_url":"https://api.github.com/repos/zordius/gulp-github/hooks","issue_events_url":"https://api.github.com/repos/zordius/gulp-github/issues/events{/number}","events_url":"https://api.github.com/repos/zordius/gulp-github/events","assignees_url":"https://api.github.com/repos/zordius/gulp-github/assignees{/user}","branches_url":"https://api.github.com/repos/zordius/gulp-github/branches{/branch}","tags_url":"https://api.github.com/repos/zordius/gulp-github/tags","blobs_url":"https://api.github.com/repos/zordius/gulp-github/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/zordius/gulp-github/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/zordius/gulp-github/git/refs{/sha}","trees_url":"https://api.github.com/repos/zordius/gulp-github/git/trees{/sha}","statuses_url":"https://api.github.com/repos/zordius/gulp-github/statuses/{sha}","languages_url":"https://api.github.com/repos/zordius/gulp-github/languages","stargazers_url":"https://api.github.com/repos/zordius/gulp-github/stargazers","contributors_url":"https://api.github.com/repos/zordius/gulp-github/contributors","subscribers_url":"https://api.github.com/repos/zordius/gulp-github/subscribers","subscription_url":"https://api.github.com/repos/zordius/gulp-github/subscription","commits_url":"https://api.github.com/repos/zordius/gulp-github/commits{/sha}","git_commits_url":"https://api.github.com/repos/zordius/gulp-github/git/commits{/sha}","comments_url":"https://api.github.com/repos/zordius/gulp-github/comments{/number}","issue_comment_url":"https://api.github.com/repos/zordius/gulp-github/issues/comments/{number}","contents_url":"https://api.github.com/repos/zordius/gulp-github/contents/{+path}","compare_url":"https://api.github.com/repos/zordius/gulp-github/compare/{base}...{head}","merges_url":"https://api.github.com/repos/zordius/gulp-github/merges","archive_url":"https://api.github.com/repos/zordius/gulp-github/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/zordius/gulp-github/downloads","issues_url":"https://api.github.com/repos/zordius/gulp-github/issues{/number}","pulls_url":"https://api.github.com/repos/zordius/gulp-github/pulls{/number}","milestones_url":"https://api.github.com/repos/zordius/gulp-github/milestones{/number}","notifications_url":"https://api.github.com/repos/zordius/gulp-github/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/zordius/gulp-github/labels{/name}","releases_url":"https://api.github.com/repos/zordius/gulp-github/releases{/id}","created_at":"2015-01-01T11:28:34Z","updated_at":"2015-01-01T15:01:34Z","pushed_at":"2015-01-01T15:09:05Z","git_url":"git://github.com/zordius/gulp-github.git","ssh_url":"git@github.com:zordius/gulp-github.git","clone_url":"https://github.com/zordius/gulp-github.git","svn_url":"https://github.com/zordius/gulp-github","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","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/zordius/gulp-github/pulls/2"},"html":{"href":"https://github.com/zordius/gulp-github/pull/2"},"issue":{"href":"https://api.github.com/repos/zordius/gulp-github/issues/2"},"comments":{"href":"https://api.github.com/repos/zordius/gulp-github/issues/2/comments"},"review_comments":{"href":"https://api.github.com/repos/zordius/gulp-github/pulls/2/comments"},"review_comment":{"href":"https://api.github.com/repos/zordius/gulp-github/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/zordius/gulp-github/pulls/2/commits"},"statuses":{"href":"https://api.github.com/repos/zordius/gulp-github/statuses/18b1e5de29c49fd47e50d7803b51ce99729139fd"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"zordius","id":1201409,"avatar_url":"https://avatars.githubusercontent.com/u/1201409?v=3","gravatar_id":"","url":"https://api.github.com/users/zordius","html_url":"https://github.com/zordius","followers_url":"https://api.github.com/users/zordius/followers","following_url":"https://api.github.com/users/zordius/following{/other_user}","gists_url":"https://api.github.com/users/zordius/gists{/gist_id}","starred_url":"https://api.github.com/users/zordius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zordius/subscriptions","organizations_url":"https://api.github.com/users/zordius/orgs","repos_url":"https://api.github.com/users/zordius/repos","events_url":"https://api.github.com/users/zordius/events{/privacy}","received_events_url":"https://api.github.com/users/zordius/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":2,"additions":3,"deletions":2,"changed_files":2}},"public":true,"created_at":"2015-01-01T15:09:05Z"} +,{"id":"2489655262","type":"PushEvent","actor":{"id":905746,"login":"kaj80","gravatar_id":"","url":"https://api.github.com/users/kaj80","avatar_url":"https://avatars.githubusercontent.com/u/905746?"},"repo":{"id":17941804,"name":"kaj80/ibssa2","url":"https://api.github.com/repos/kaj80/ibssa2"},"payload":{"push_id":536865878,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"1ccfcd5f6c7c97c8b3d49ac643b3659b660c0075","before":"b21080d3db0f33acc12b7a1e35efa8ddbd947e52","commits":[{"sha":"755573801fef48313561346680a8809002eb15bb","author":{"email":"427bbddc5f580579d9bb9a63c19f4e757da89016@mellanox.com","name":"Sasha Kotchubievsky"},"message":"[acm,ssa].c: Use underscore char rather than space in thread names.\n\n The thread name could be used in core dump naming pattern.","distinct":true,"url":"https://api.github.com/repos/kaj80/ibssa2/commits/755573801fef48313561346680a8809002eb15bb"},{"sha":"1ccfcd5f6c7c97c8b3d49ac643b3659b660c0075","author":{"email":"260b68a1a9b9c30477995bcbe46ddb686bd128dc@mellanox.com","name":"Ilya Nelkenbaum"},"message":"core.c: Issue rerequest in case of ssa mad received with bad status\n\nSigned-off-by: Ilya Nelkenbaum ","distinct":true,"url":"https://api.github.com/repos/kaj80/ibssa2/commits/1ccfcd5f6c7c97c8b3d49ac643b3659b660c0075"}]},"public":true,"created_at":"2015-01-01T15:09:05Z"} +,{"id":"2489655264","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":536865879,"size":3,"distinct_size":1,"ref":"refs/heads/master","head":"3efba9026fe530f848f18b298ece2f158f233b94","before":"25e76bca2086e73d43a7259f089b0b7ca568ee4a","commits":[{"sha":"7e5a80a0e5483cb9df1b571dccc031dcb45f7d50","author":{"email":"29ce3600a8a0aaa041e680f5a3675553360fe867@yahoo-inc.com","name":"Zordius Chen"},"message":"test","distinct":false,"url":"https://api.github.com/repos/zordius/gulp-github/commits/7e5a80a0e5483cb9df1b571dccc031dcb45f7d50"},{"sha":"18b1e5de29c49fd47e50d7803b51ce99729139fd","author":{"email":"29ce3600a8a0aaa041e680f5a3675553360fe867@yahoo-inc.com","name":"Zordius Chen"},"message":"use travis variable","distinct":false,"url":"https://api.github.com/repos/zordius/gulp-github/commits/18b1e5de29c49fd47e50d7803b51ce99729139fd"},{"sha":"3efba9026fe530f848f18b298ece2f158f233b94","author":{"email":"29ce3600a8a0aaa041e680f5a3675553360fe867@yahoo-inc.com","name":"Zordius Chen"},"message":"remove dump","distinct":true,"url":"https://api.github.com/repos/zordius/gulp-github/commits/3efba9026fe530f848f18b298ece2f158f233b94"}]},"public":true,"created_at":"2015-01-01T15:09:05Z"} +,{"id":"2489655265","type":"IssueCommentEvent","actor":{"id":619390,"login":"impaktor","gravatar_id":"","url":"https://api.github.com/users/impaktor","avatar_url":"https://avatars.githubusercontent.com/u/619390?"},"repo":{"id":1593053,"name":"pioneerspacesim/pioneer","url":"https://api.github.com/repos/pioneerspacesim/pioneer"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/pioneerspacesim/pioneer/issues/3295","labels_url":"https://api.github.com/repos/pioneerspacesim/pioneer/issues/3295/labels{/name}","comments_url":"https://api.github.com/repos/pioneerspacesim/pioneer/issues/3295/comments","events_url":"https://api.github.com/repos/pioneerspacesim/pioneer/issues/3295/events","html_url":"https://github.com/pioneerspacesim/pioneer/pull/3295","id":53104046,"number":3295,"title":"Cleanup equip strings","user":{"login":"impaktor","id":619390,"avatar_url":"https://avatars.githubusercontent.com/u/619390?v=3","gravatar_id":"","url":"https://api.github.com/users/impaktor","html_url":"https://github.com/impaktor","followers_url":"https://api.github.com/users/impaktor/followers","following_url":"https://api.github.com/users/impaktor/following{/other_user}","gists_url":"https://api.github.com/users/impaktor/gists{/gist_id}","starred_url":"https://api.github.com/users/impaktor/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/impaktor/subscriptions","organizations_url":"https://api.github.com/users/impaktor/orgs","repos_url":"https://api.github.com/users/impaktor/repos","events_url":"https://api.github.com/users/impaktor/events{/privacy}","received_events_url":"https://api.github.com/users/impaktor/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/pioneerspacesim/pioneer/labels/Cleanup","name":"Cleanup","color":"446eff"},{"url":"https://api.github.com/repos/pioneerspacesim/pioneer/labels/in+progress","name":"in progress","color":"ededed"},{"url":"https://api.github.com/repos/pioneerspacesim/pioneer/labels/Language","name":"Language","color":"7F3F00"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-12-30T09:42:38Z","updated_at":"2015-01-01T15:09:06Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/pioneerspacesim/pioneer/pulls/3295","html_url":"https://github.com/pioneerspacesim/pioneer/pull/3295","diff_url":"https://github.com/pioneerspacesim/pioneer/pull/3295.diff","patch_url":"https://github.com/pioneerspacesim/pioneer/pull/3295.patch"},"body":"This is the second part of #3294, so it must be merged first.\r\n\r\n### First commit\r\n\r\nIf the flight mode is called \"Manual Control\", I guess it should be \"Autopilot Control\" when in Autopilot, either way: don't reuse the equipment string, for indicating the flight mode.\r\n\r\n### Second commit\r\n\r\nI think pioneer cheated by reusing equipment strings for showing equipment mounts. Now we can have \"Atmospheric __s__ hielding yes/no\" and \"Atmospheric __S__ hielding\" for the equipment, which is consistent with how we write equipment, and their respective slots.\r\n\r\n### Third commit\r\n\r\nThis might be the controversial one, and I'm only arguing for it if, as I remember @robn (ping!) saying, that transifex allows moving of strings, so no re-translation should be needed. I hope my memory of him saying that is right.\r\n\r\nSo, my arguments for moving equipment strings from core to its own module are:\r\n\r\n1. `core` is for C++ / `src/` strings.\r\n\r\n2. It is easier for translators when each module/file to translate is used in a specific context. Like equipment market, and mission `lang/module-`s.\r\n\r\n3. Conversely, translating `core` strings is very difficult since the strings are just piled on top of each other and often you have no idea where the strings are used. Example: `HAT` (is not worn on the head), `JOY` (is not an emotion), `X`, (is not an in game coordinate nor location, but a `JOY`stick axis).\r\n\r\n4. `core` is a behemoth and overwhelmingly long, possibly being intimidating for a translator to start working on.\r\n\r\n__Question:__ I don't know if the name of the new module should be `equipment-core`? Once the rest of the UI is in lua, also the commodities aught to be moved out from core, but into the same `equipment-core` module, or into another one?"},"comment":{"url":"https://api.github.com/repos/pioneerspacesim/pioneer/issues/comments/68488673","html_url":"https://github.com/pioneerspacesim/pioneer/pull/3295#issuecomment-68488673","issue_url":"https://api.github.com/repos/pioneerspacesim/pioneer/issues/3295","id":68488673,"user":{"login":"impaktor","id":619390,"avatar_url":"https://avatars.githubusercontent.com/u/619390?v=3","gravatar_id":"","url":"https://api.github.com/users/impaktor","html_url":"https://github.com/impaktor","followers_url":"https://api.github.com/users/impaktor/followers","following_url":"https://api.github.com/users/impaktor/following{/other_user}","gists_url":"https://api.github.com/users/impaktor/gists{/gist_id}","starred_url":"https://api.github.com/users/impaktor/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/impaktor/subscriptions","organizations_url":"https://api.github.com/users/impaktor/orgs","repos_url":"https://api.github.com/users/impaktor/repos","events_url":"https://api.github.com/users/impaktor/events{/privacy}","received_events_url":"https://api.github.com/users/impaktor/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:09:06Z","updated_at":"2015-01-01T15:09:06Z","body":"I don't dare merge this until @robn gives thumbs up that transifex is smart enough to see when strings have moved from one module to a new one, since I'm moving quite a bunch of them in the last commit, and I don't want our translators to be forced to re-translate the same strings one more time, at least not if it can be avoided in some way.\r\n\r\n_Also a reminder to me/rob/jpab: a new module needs to be added on the transifex side._"}},"public":true,"created_at":"2015-01-01T15:09:06Z","org":{"id":719820,"login":"pioneerspacesim","gravatar_id":"","url":"https://api.github.com/orgs/pioneerspacesim","avatar_url":"https://avatars.githubusercontent.com/u/719820?"}} +,{"id":"2489655266","type":"IssuesEvent","actor":{"id":179111,"login":"bong0","gravatar_id":"","url":"https://api.github.com/users/bong0","avatar_url":"https://avatars.githubusercontent.com/u/179111?"},"repo":{"id":16438233,"name":"mapillary/mapillary_issues","url":"https://api.github.com/repos/mapillary/mapillary_issues"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/mapillary/mapillary_issues/issues/527","labels_url":"https://api.github.com/repos/mapillary/mapillary_issues/issues/527/labels{/name}","comments_url":"https://api.github.com/repos/mapillary/mapillary_issues/issues/527/comments","events_url":"https://api.github.com/repos/mapillary/mapillary_issues/issues/527/events","html_url":"https://github.com/mapillary/mapillary_issues/issues/527","id":53221507,"number":527,"title":"App fails to upload specific set of images","user":{"login":"bong0","id":179111,"avatar_url":"https://avatars.githubusercontent.com/u/179111?v=3","gravatar_id":"","url":"https://api.github.com/users/bong0","html_url":"https://github.com/bong0","followers_url":"https://api.github.com/users/bong0/followers","following_url":"https://api.github.com/users/bong0/following{/other_user}","gists_url":"https://api.github.com/users/bong0/gists{/gist_id}","starred_url":"https://api.github.com/users/bong0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bong0/subscriptions","organizations_url":"https://api.github.com/users/bong0/orgs","repos_url":"https://api.github.com/users/bong0/repos","events_url":"https://api.github.com/users/bong0/events{/privacy}","received_events_url":"https://api.github.com/users/bong0/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:09:06Z","updated_at":"2015-01-01T15:09:06Z","closed_at":null,"body":"I have this issue since months now that some specific images cannot be uploaded. After a long time the app cancels the upload and reports it's got a 400 though it hasn't oviously...\r\n\r\nI cannot upload the images to github since they are slightly bigger than 10MB so here's a zip: http://docs.juliankessel.de/mapillary_failedqueue.zip\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n"}},"public":true,"created_at":"2015-01-01T15:09:06Z","org":{"id":5332499,"login":"mapillary","gravatar_id":"","url":"https://api.github.com/orgs/mapillary","avatar_url":"https://avatars.githubusercontent.com/u/5332499?"}} +,{"id":"2489655272","type":"PushEvent","actor":{"id":9612599,"login":"rocketraceheroes","gravatar_id":"","url":"https://api.github.com/users/rocketraceheroes","avatar_url":"https://avatars.githubusercontent.com/u/9612599?"},"repo":{"id":26330000,"name":"rocketraceheroes/clan-site","url":"https://api.github.com/repos/rocketraceheroes/clan-site"},"payload":{"push_id":536865881,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"9d98c0acd5eb9c83c3b5db122c066be6247ee54d","before":"c11607fdeefda33e179bf833519733a537aa0fc2","commits":[{"sha":"9d98c0acd5eb9c83c3b5db122c066be6247ee54d","author":{"email":"98be7db3301a24a53495a8dd72473a84a1d5edff@gmail.com","name":"rocketraceheroes"},"message":"Rename 2014-11-08-member12.markdown to 2014-11-08-Vermillion33.markdown","distinct":true,"url":"https://api.github.com/repos/rocketraceheroes/clan-site/commits/9d98c0acd5eb9c83c3b5db122c066be6247ee54d"}]},"public":true,"created_at":"2015-01-01T15:09:07Z"} +,{"id":"2489655273","type":"CreateEvent","actor":{"id":3422626,"login":"pelegm","gravatar_id":"","url":"https://api.github.com/users/pelegm","avatar_url":"https://avatars.githubusercontent.com/u/3422626?"},"repo":{"id":24494061,"name":"pelegm/sympy","url":"https://api.github.com/repos/pelegm/sympy"},"payload":{"ref":"factorial2_negative","ref_type":"branch","master_branch":"master","description":"A computer algebra system written in pure Python","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:09:07Z"} +,{"id":"2489655276","type":"PullRequestReviewCommentEvent","actor":{"id":459648,"login":"samsonasik","gravatar_id":"","url":"https://api.github.com/users/samsonasik","avatar_url":"https://avatars.githubusercontent.com/u/459648?"},"repo":{"id":702550,"name":"zendframework/zf2","url":"https://api.github.com/repos/zendframework/zf2"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/22400119","id":22400119,"diff_hunk":"@@ -0,0 +1,103 @@\n+\r\nfunction onBlur(el) {if (el.value == '') { el.value = el.defaultValue; }}\r\nfunction onFocus(el) {if (el.value == el.defaultValue) {el.value = '';}}\r\n\r\n\r\nAnd change line (oryginal) 649 from:\r\n\" id=\"\" placeholder=\"\" />\r\n\r\nto:\r\n\" id=\"\" placeholder=\"\"onblur=\"onBlur(this)\" onfocus=\"onFocus(this)\" />","distinct":true,"url":"https://api.github.com/repos/Elmister/jetpack/commits/2dfbf595782ad4c2b57be5cad77b0acc4ad48d8e"}]},"public":true,"created_at":"2015-01-01T15:09:14Z"} +,{"id":"2489655325","type":"PullRequestReviewCommentEvent","actor":{"id":459648,"login":"samsonasik","gravatar_id":"","url":"https://api.github.com/users/samsonasik","avatar_url":"https://avatars.githubusercontent.com/u/459648?"},"repo":{"id":702550,"name":"zendframework/zf2","url":"https://api.github.com/repos/zendframework/zf2"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/22400120","id":22400120,"diff_hunk":"@@ -0,0 +1,63 @@\n+\r\n\t\r\n\t\r\n\t\r\n\r\n\t
\r\n\t\r\n\r\n\t
\r\n\t
Login\r\n\r\n\r\n```"}},"public":true,"created_at":"2015-01-01T15:09:16Z"} +,{"id":"2489655350","type":"PushEvent","actor":{"id":5975070,"login":"marcellodibello","gravatar_id":"","url":"https://api.github.com/users/marcellodibello","avatar_url":"https://avatars.githubusercontent.com/u/5975070?"},"repo":{"id":17580814,"name":"marcellodibello/marcellodibello.github.io","url":"https://api.github.com/repos/marcellodibello/marcellodibello.github.io"},"payload":{"push_id":536865916,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9b4bbb2d849781eeb88ea226f6648ff09ad74d10","before":"b9266d67cea134c1fd7644271af5cbf99a9f8792","commits":[{"sha":"9b4bbb2d849781eeb88ea226f6648ff09ad74d10","author":{"email":"babd00909fb78351e79d40af26c77fc37bb4ed59@gmail.com","name":"marcellodibello"},"message":"Update index.html","distinct":true,"url":"https://api.github.com/repos/marcellodibello/marcellodibello.github.io/commits/9b4bbb2d849781eeb88ea226f6648ff09ad74d10"}]},"public":true,"created_at":"2015-01-01T15:09:16Z"} +,{"id":"2489655351","type":"PullRequestEvent","actor":{"id":624632,"login":"gusennan","gravatar_id":"","url":"https://api.github.com/users/gusennan","avatar_url":"https://avatars.githubusercontent.com/u/624632?"},"repo":{"id":19216825,"name":"xamarin/xamarin-forms-samples","url":"https://api.github.com/repos/xamarin/xamarin-forms-samples"},"payload":{"action":"opened","number":37,"pull_request":{"url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/pulls/37","id":26743841,"html_url":"https://github.com/xamarin/xamarin-forms-samples/pull/37","diff_url":"https://github.com/xamarin/xamarin-forms-samples/pull/37.diff","patch_url":"https://github.com/xamarin/xamarin-forms-samples/pull/37.patch","issue_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/issues/37","number":37,"state":"open","locked":false,"title":"Add Unit Tests for Deck & Package restore","user":{"login":"gusennan","id":624632,"avatar_url":"https://avatars.githubusercontent.com/u/624632?v=3","gravatar_id":"","url":"https://api.github.com/users/gusennan","html_url":"https://github.com/gusennan","followers_url":"https://api.github.com/users/gusennan/followers","following_url":"https://api.github.com/users/gusennan/following{/other_user}","gists_url":"https://api.github.com/users/gusennan/gists{/gist_id}","starred_url":"https://api.github.com/users/gusennan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gusennan/subscriptions","organizations_url":"https://api.github.com/users/gusennan/orgs","repos_url":"https://api.github.com/users/gusennan/repos","events_url":"https://api.github.com/users/gusennan/events{/privacy}","received_events_url":"https://api.github.com/users/gusennan/received_events","type":"User","site_admin":false},"body":"The first commit adds unit tests for Deck.cs for each of the methods. \nThe second commit adds package restore to the project so that sol-test\ncan be built via mono command line and nunit-console can execute the unit tests.\n\nNote: original formatting kept in Deck.cs @conceptdev","created_at":"2015-01-01T15:09:16Z","updated_at":"2015-01-01T15:09:16Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/pulls/37/commits","review_comments_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/pulls/37/comments","review_comment_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/pulls/comments/{number}","comments_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/issues/37/comments","statuses_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/statuses/09d9493fd429a3c3577791564610b3d868011cc5","head":{"label":"gusennan:deck_unittests","ref":"deck_unittests","sha":"09d9493fd429a3c3577791564610b3d868011cc5","user":{"login":"gusennan","id":624632,"avatar_url":"https://avatars.githubusercontent.com/u/624632?v=3","gravatar_id":"","url":"https://api.github.com/users/gusennan","html_url":"https://github.com/gusennan","followers_url":"https://api.github.com/users/gusennan/followers","following_url":"https://api.github.com/users/gusennan/following{/other_user}","gists_url":"https://api.github.com/users/gusennan/gists{/gist_id}","starred_url":"https://api.github.com/users/gusennan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gusennan/subscriptions","organizations_url":"https://api.github.com/users/gusennan/orgs","repos_url":"https://api.github.com/users/gusennan/repos","events_url":"https://api.github.com/users/gusennan/events{/privacy}","received_events_url":"https://api.github.com/users/gusennan/received_events","type":"User","site_admin":false},"repo":{"id":28673499,"name":"xamarin-forms-samples","full_name":"gusennan/xamarin-forms-samples","owner":{"login":"gusennan","id":624632,"avatar_url":"https://avatars.githubusercontent.com/u/624632?v=3","gravatar_id":"","url":"https://api.github.com/users/gusennan","html_url":"https://github.com/gusennan","followers_url":"https://api.github.com/users/gusennan/followers","following_url":"https://api.github.com/users/gusennan/following{/other_user}","gists_url":"https://api.github.com/users/gusennan/gists{/gist_id}","starred_url":"https://api.github.com/users/gusennan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gusennan/subscriptions","organizations_url":"https://api.github.com/users/gusennan/orgs","repos_url":"https://api.github.com/users/gusennan/repos","events_url":"https://api.github.com/users/gusennan/events{/privacy}","received_events_url":"https://api.github.com/users/gusennan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/gusennan/xamarin-forms-samples","description":"Sample apps built using the Xamarin.Forms framework","fork":true,"url":"https://api.github.com/repos/gusennan/xamarin-forms-samples","forks_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/forks","keys_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/teams","hooks_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/hooks","issue_events_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/issues/events{/number}","events_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/events","assignees_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/assignees{/user}","branches_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/branches{/branch}","tags_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/tags","blobs_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/git/refs{/sha}","trees_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/statuses/{sha}","languages_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/languages","stargazers_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/stargazers","contributors_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/contributors","subscribers_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/subscribers","subscription_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/subscription","commits_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/commits{/sha}","git_commits_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/git/commits{/sha}","comments_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/comments{/number}","issue_comment_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/issues/comments/{number}","contents_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/contents/{+path}","compare_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/merges","archive_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/downloads","issues_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/issues{/number}","pulls_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/pulls{/number}","milestones_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/labels{/name}","releases_url":"https://api.github.com/repos/gusennan/xamarin-forms-samples/releases{/id}","created_at":"2014-12-31T19:32:29Z","updated_at":"2015-01-01T01:00:25Z","pushed_at":"2015-01-01T15:06:30Z","git_url":"git://github.com/gusennan/xamarin-forms-samples.git","ssh_url":"git@github.com:gusennan/xamarin-forms-samples.git","clone_url":"https://github.com/gusennan/xamarin-forms-samples.git","svn_url":"https://github.com/gusennan/xamarin-forms-samples","homepage":null,"size":48155,"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":"xamarin:master","ref":"master","sha":"5cb2c332de32bef171f230d786d5dfeef8bfe346","user":{"login":"xamarin","id":790012,"avatar_url":"https://avatars.githubusercontent.com/u/790012?v=3","gravatar_id":"","url":"https://api.github.com/users/xamarin","html_url":"https://github.com/xamarin","followers_url":"https://api.github.com/users/xamarin/followers","following_url":"https://api.github.com/users/xamarin/following{/other_user}","gists_url":"https://api.github.com/users/xamarin/gists{/gist_id}","starred_url":"https://api.github.com/users/xamarin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xamarin/subscriptions","organizations_url":"https://api.github.com/users/xamarin/orgs","repos_url":"https://api.github.com/users/xamarin/repos","events_url":"https://api.github.com/users/xamarin/events{/privacy}","received_events_url":"https://api.github.com/users/xamarin/received_events","type":"Organization","site_admin":false},"repo":{"id":19216825,"name":"xamarin-forms-samples","full_name":"xamarin/xamarin-forms-samples","owner":{"login":"xamarin","id":790012,"avatar_url":"https://avatars.githubusercontent.com/u/790012?v=3","gravatar_id":"","url":"https://api.github.com/users/xamarin","html_url":"https://github.com/xamarin","followers_url":"https://api.github.com/users/xamarin/followers","following_url":"https://api.github.com/users/xamarin/following{/other_user}","gists_url":"https://api.github.com/users/xamarin/gists{/gist_id}","starred_url":"https://api.github.com/users/xamarin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xamarin/subscriptions","organizations_url":"https://api.github.com/users/xamarin/orgs","repos_url":"https://api.github.com/users/xamarin/repos","events_url":"https://api.github.com/users/xamarin/events{/privacy}","received_events_url":"https://api.github.com/users/xamarin/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/xamarin/xamarin-forms-samples","description":"Sample apps built using the Xamarin.Forms framework","fork":false,"url":"https://api.github.com/repos/xamarin/xamarin-forms-samples","forks_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/forks","keys_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/keys{/key_id}","collaborators_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/teams","hooks_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/hooks","issue_events_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/issues/events{/number}","events_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/events","assignees_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/assignees{/user}","branches_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/branches{/branch}","tags_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/tags","blobs_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/git/refs{/sha}","trees_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/git/trees{/sha}","statuses_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/statuses/{sha}","languages_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/languages","stargazers_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/stargazers","contributors_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/contributors","subscribers_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/subscribers","subscription_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/subscription","commits_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/commits{/sha}","git_commits_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/git/commits{/sha}","comments_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/comments{/number}","issue_comment_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/issues/comments/{number}","contents_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/contents/{+path}","compare_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/compare/{base}...{head}","merges_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/merges","archive_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/downloads","issues_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/issues{/number}","pulls_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/pulls{/number}","milestones_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/labels{/name}","releases_url":"https://api.github.com/repos/xamarin/xamarin-forms-samples/releases{/id}","created_at":"2014-04-27T20:42:11Z","updated_at":"2014-12-31T14:28:54Z","pushed_at":"2014-12-19T22:36:17Z","git_url":"git://github.com/xamarin/xamarin-forms-samples.git","ssh_url":"git@github.com:xamarin/xamarin-forms-samples.git","clone_url":"https://github.com/xamarin/xamarin-forms-samples.git","svn_url":"https://github.com/xamarin/xamarin-forms-samples","homepage":null,"size":51276,"stargazers_count":280,"watchers_count":280,"language":"C#","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":377,"mirror_url":null,"open_issues_count":22,"forks":377,"open_issues":22,"watchers":280,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/xamarin/xamarin-forms-samples/pulls/37"},"html":{"href":"https://github.com/xamarin/xamarin-forms-samples/pull/37"},"issue":{"href":"https://api.github.com/repos/xamarin/xamarin-forms-samples/issues/37"},"comments":{"href":"https://api.github.com/repos/xamarin/xamarin-forms-samples/issues/37/comments"},"review_comments":{"href":"https://api.github.com/repos/xamarin/xamarin-forms-samples/pulls/37/comments"},"review_comment":{"href":"https://api.github.com/repos/xamarin/xamarin-forms-samples/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/xamarin/xamarin-forms-samples/pulls/37/commits"},"statuses":{"href":"https://api.github.com/repos/xamarin/xamarin-forms-samples/statuses/09d9493fd429a3c3577791564610b3d868011cc5"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":2,"additions":535,"deletions":81,"changed_files":11}},"public":true,"created_at":"2015-01-01T15:09:17Z","org":{"id":790012,"login":"xamarin","gravatar_id":"","url":"https://api.github.com/orgs/xamarin","avatar_url":"https://avatars.githubusercontent.com/u/790012?"}} +,{"id":"2489655352","type":"PushEvent","actor":{"id":869950,"login":"KrauseFx","gravatar_id":"","url":"https://api.github.com/users/KrauseFx","avatar_url":"https://avatars.githubusercontent.com/u/869950?"},"repo":{"id":23831045,"name":"KrauseFx/deliver","url":"https://api.github.com/repos/KrauseFx/deliver"},"payload":{"push_id":536865917,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"865f4a2932d604f81535d6009f02d73f4b8dbb7e","before":"f0f4ead4b3b907074bc05ddcefb6b14c6793fa62","commits":[{"sha":"865f4a2932d604f81535d6009f02d73f4b8dbb7e","author":{"email":"69a758d55d9cd18d1289a7e19d9f698f866a9bac@users.noreply.github.com","name":"Felix Krause"},"message":"Updated credentials description in README","distinct":true,"url":"https://api.github.com/repos/KrauseFx/deliver/commits/865f4a2932d604f81535d6009f02d73f4b8dbb7e"}]},"public":true,"created_at":"2015-01-01T15:09:17Z"} +,{"id":"2489655357","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":22869551,"name":"pumadong/cl-picture","url":"https://api.github.com/repos/pumadong/cl-picture"},"payload":{"forkee":{"id":28688764,"name":"cl-picture","full_name":"weiguo21/cl-picture","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/cl-picture","description":"图片管理系统:相应图片的上传、删除等操作,作为CDN的图片源站。","fork":true,"url":"https://api.github.com/repos/weiguo21/cl-picture","forks_url":"https://api.github.com/repos/weiguo21/cl-picture/forks","keys_url":"https://api.github.com/repos/weiguo21/cl-picture/keys{/key_id}","collaborators_url":"https://api.github.com/repos/weiguo21/cl-picture/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/weiguo21/cl-picture/teams","hooks_url":"https://api.github.com/repos/weiguo21/cl-picture/hooks","issue_events_url":"https://api.github.com/repos/weiguo21/cl-picture/issues/events{/number}","events_url":"https://api.github.com/repos/weiguo21/cl-picture/events","assignees_url":"https://api.github.com/repos/weiguo21/cl-picture/assignees{/user}","branches_url":"https://api.github.com/repos/weiguo21/cl-picture/branches{/branch}","tags_url":"https://api.github.com/repos/weiguo21/cl-picture/tags","blobs_url":"https://api.github.com/repos/weiguo21/cl-picture/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/weiguo21/cl-picture/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/weiguo21/cl-picture/git/refs{/sha}","trees_url":"https://api.github.com/repos/weiguo21/cl-picture/git/trees{/sha}","statuses_url":"https://api.github.com/repos/weiguo21/cl-picture/statuses/{sha}","languages_url":"https://api.github.com/repos/weiguo21/cl-picture/languages","stargazers_url":"https://api.github.com/repos/weiguo21/cl-picture/stargazers","contributors_url":"https://api.github.com/repos/weiguo21/cl-picture/contributors","subscribers_url":"https://api.github.com/repos/weiguo21/cl-picture/subscribers","subscription_url":"https://api.github.com/repos/weiguo21/cl-picture/subscription","commits_url":"https://api.github.com/repos/weiguo21/cl-picture/commits{/sha}","git_commits_url":"https://api.github.com/repos/weiguo21/cl-picture/git/commits{/sha}","comments_url":"https://api.github.com/repos/weiguo21/cl-picture/comments{/number}","issue_comment_url":"https://api.github.com/repos/weiguo21/cl-picture/issues/comments/{number}","contents_url":"https://api.github.com/repos/weiguo21/cl-picture/contents/{+path}","compare_url":"https://api.github.com/repos/weiguo21/cl-picture/compare/{base}...{head}","merges_url":"https://api.github.com/repos/weiguo21/cl-picture/merges","archive_url":"https://api.github.com/repos/weiguo21/cl-picture/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/weiguo21/cl-picture/downloads","issues_url":"https://api.github.com/repos/weiguo21/cl-picture/issues{/number}","pulls_url":"https://api.github.com/repos/weiguo21/cl-picture/pulls{/number}","milestones_url":"https://api.github.com/repos/weiguo21/cl-picture/milestones{/number}","notifications_url":"https://api.github.com/repos/weiguo21/cl-picture/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/weiguo21/cl-picture/labels{/name}","releases_url":"https://api.github.com/repos/weiguo21/cl-picture/releases{/id}","created_at":"2015-01-01T15:09:17Z","updated_at":"2014-10-26T11:58:57Z","pushed_at":"2014-09-22T08:46:52Z","git_url":"git://github.com/weiguo21/cl-picture.git","ssh_url":"git@github.com:weiguo21/cl-picture.git","clone_url":"https://github.com/weiguo21/cl-picture.git","svn_url":"https://github.com/weiguo21/cl-picture","homepage":"","size":227,"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:09:18Z"} +,{"id":"2489655360","type":"PushEvent","actor":{"id":6662768,"login":"litmon","gravatar_id":"","url":"https://api.github.com/users/litmon","avatar_url":"https://avatars.githubusercontent.com/u/6662768?"},"repo":{"id":27604549,"name":"litmon/css-puzzle","url":"https://api.github.com/repos/litmon/css-puzzle"},"payload":{"push_id":536865920,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"58dd0a9bd2050299cc536db23da0136d38e54eaa","before":"798fac13f631b5fb2978c3032f9f031df4696f66","commits":[{"sha":"58dd0a9bd2050299cc536db23da0136d38e54eaa","author":{"email":"1dd5f95515b9fb283cbfd7db8ec1fc5604dcd588@gmail.com","name":"Fukuo Kadota"},"message":"Update README","distinct":true,"url":"https://api.github.com/repos/litmon/css-puzzle/commits/58dd0a9bd2050299cc536db23da0136d38e54eaa"}]},"public":true,"created_at":"2015-01-01T15:09:18Z"} +,{"id":"2489655361","type":"PushEvent","actor":{"id":1595215,"login":"addsict","gravatar_id":"","url":"https://api.github.com/users/addsict","avatar_url":"https://avatars.githubusercontent.com/u/1595215?"},"repo":{"id":28685061,"name":"addsict/swift-hal","url":"https://api.github.com/repos/addsict/swift-hal"},"payload":{"push_id":536865921,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"31afb976990d9205a0d91908f8754841a466ad09","before":"fa4a0d77ecac256b5917e9e72d56d38e386d63e6","commits":[{"sha":"31afb976990d9205a0d91908f8754841a466ad09","author":{"email":"a806f7c457c6968dc6db7e95cd3863047591a722@gmail.com","name":"Yuuki Furuyama"},"message":"Add README","distinct":true,"url":"https://api.github.com/repos/addsict/swift-hal/commits/31afb976990d9205a0d91908f8754841a466ad09"}]},"public":true,"created_at":"2015-01-01T15:09:18Z"} +,{"id":"2489655362","type":"PushEvent","actor":{"id":4635095,"login":"arikwestbrook","gravatar_id":"","url":"https://api.github.com/users/arikwestbrook","avatar_url":"https://avatars.githubusercontent.com/u/4635095?"},"repo":{"id":28616651,"name":"arikwestbrook/mosemu","url":"https://api.github.com/repos/arikwestbrook/mosemu"},"payload":{"push_id":536865922,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"185ed2e5762406d2add8bb8a3db96be88c55cae1","before":"915a59d6808567d6a166650e5bdb9cb8d1a95a20","commits":[{"sha":"185ed2e5762406d2add8bb8a3db96be88c55cae1","author":{"email":"4b08b29fe87907b35044d4afbdacd693712b87f2@gmail.com","name":"arikwestbrook"},"message":"Missed a '>' character in one of the CPY instructions.","distinct":true,"url":"https://api.github.com/repos/arikwestbrook/mosemu/commits/185ed2e5762406d2add8bb8a3db96be88c55cae1"}]},"public":true,"created_at":"2015-01-01T15:09:18Z"} +,{"id":"2489655363","type":"PushEvent","actor":{"id":1780689,"login":"TassLehoff","gravatar_id":"","url":"https://api.github.com/users/TassLehoff","avatar_url":"https://avatars.githubusercontent.com/u/1780689?"},"repo":{"id":21202472,"name":"TassLehoff/AGoT-OCTGN","url":"https://api.github.com/repos/TassLehoff/AGoT-OCTGN"},"payload":{"push_id":536865923,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"15637b963cf53b174c24323392d3dc8aa2274f73","before":"ca46fa9fa9ba2d6d7fb8e34922ac26a4d56ae3d7","commits":[{"sha":"15637b963cf53b174c24323392d3dc8aa2274f73","author":{"email":"35529c8f9c2a4a7bec2e97cc5a25a23734305ea4@gmail.com","name":"TassLehoff"},"message":"Add New Set - Wardens","distinct":true,"url":"https://api.github.com/repos/TassLehoff/AGoT-OCTGN/commits/15637b963cf53b174c24323392d3dc8aa2274f73"}]},"public":true,"created_at":"2015-01-01T15:09:18Z"} +,{"id":"2489655364","type":"PushEvent","actor":{"id":3384565,"login":"dayok","gravatar_id":"","url":"https://api.github.com/users/dayok","avatar_url":"https://avatars.githubusercontent.com/u/3384565?"},"repo":{"id":27044610,"name":"dayok/myreactions","url":"https://api.github.com/repos/dayok/myreactions"},"payload":{"push_id":536865924,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"926920c5c1197f0e02a8280a526c6cbb8d2bc988","before":"131846012dfdc4d9b57c46fa5c011bcfe856e207","commits":[{"sha":"926920c5c1197f0e02a8280a526c6cbb8d2bc988","author":{"email":"7774f3ffabbbd8cb1fa558b551d4593fab09ef43@gmail.com","name":"Denys Zaiats"},"message":"Bug fixing from kanban list.","distinct":true,"url":"https://api.github.com/repos/dayok/myreactions/commits/926920c5c1197f0e02a8280a526c6cbb8d2bc988"}]},"public":true,"created_at":"2015-01-01T15:09:18Z"} +,{"id":"2489655365","type":"PushEvent","actor":{"id":50665,"login":"gvvaughan","gravatar_id":"","url":"https://api.github.com/users/gvvaughan","avatar_url":"https://avatars.githubusercontent.com/u/50665?"},"repo":{"id":9725153,"name":"gvvaughan/slingshot","url":"https://api.github.com/repos/gvvaughan/slingshot"},"payload":{"push_id":536865925,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"31035c4de260998c87f95a5f55b2f55062edd678","before":"8d31c139a2040f02b4a35232a0bb53dbee453fa6","commits":[{"sha":"31035c4de260998c87f95a5f55b2f55062edd678","author":{"email":"f9023000f29773649f3850298becb9544b5fd6a9@gnu.org","name":"Gary V. Vaughan"},"message":"travis: bump Lua 5.3 sources to rc2 prerelease.\n\n* travis.yml.in (before_install): Bump Lua 5.3 source tarball to\n5.3.0(rc2) prerelease.\n* .travis.yml: Regenerate.\n\nSigned-off-by: Gary V. Vaughan ","distinct":true,"url":"https://api.github.com/repos/gvvaughan/slingshot/commits/31035c4de260998c87f95a5f55b2f55062edd678"}]},"public":true,"created_at":"2015-01-01T15:09:18Z"} +,{"id":"2489655366","type":"IssuesEvent","actor":{"id":2717002,"login":"thetobby","gravatar_id":"","url":"https://api.github.com/users/thetobby","avatar_url":"https://avatars.githubusercontent.com/u/2717002?"},"repo":{"id":28650025,"name":"thetobby/Tmal","url":"https://api.github.com/repos/thetobby/Tmal"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/thetobby/Tmal/issues/3","labels_url":"https://api.github.com/repos/thetobby/Tmal/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/thetobby/Tmal/issues/3/comments","events_url":"https://api.github.com/repos/thetobby/Tmal/issues/3/events","html_url":"https://github.com/thetobby/Tmal/issues/3","id":53221514,"number":3,"title":"Limit string $url to only allow url","user":{"login":"thetobby","id":2717002,"avatar_url":"https://avatars.githubusercontent.com/u/2717002?v=3","gravatar_id":"","url":"https://api.github.com/users/thetobby","html_url":"https://github.com/thetobby","followers_url":"https://api.github.com/users/thetobby/followers","following_url":"https://api.github.com/users/thetobby/following{/other_user}","gists_url":"https://api.github.com/users/thetobby/gists{/gist_id}","starred_url":"https://api.github.com/users/thetobby/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thetobby/subscriptions","organizations_url":"https://api.github.com/users/thetobby/orgs","repos_url":"https://api.github.com/users/thetobby/repos","events_url":"https://api.github.com/users/thetobby/events{/privacy}","received_events_url":"https://api.github.com/users/thetobby/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/thetobby/Tmal/labels/enhancement","name":"enhancement","color":"84b6eb"},{"url":"https://api.github.com/repos/thetobby/Tmal/labels/help+wanted","name":"help wanted","color":"159818"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:09:18Z","updated_at":"2015-01-01T15:09:18Z","closed_at":null,"body":"To stop the func to be run with words opening multitple tabs."}},"public":true,"created_at":"2015-01-01T15:09:19Z"} +,{"id":"2489655370","type":"PushEvent","actor":{"id":2221227,"login":"iismd17","gravatar_id":"","url":"https://api.github.com/users/iismd17","avatar_url":"https://avatars.githubusercontent.com/u/2221227?"},"repo":{"id":28688449,"name":"iismd17/tutorial","url":"https://api.github.com/repos/iismd17/tutorial"},"payload":{"push_id":536865927,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0456448898b1cb469cae68598b650bf2f7824d55","before":"05c93f08fd92dad0eace819630d20e0aa40fdd91","commits":[{"sha":"0456448898b1cb469cae68598b650bf2f7824d55","author":{"email":"5e1e4742e27ca3e64c27b4556c3ff68ba3a14ea3@gmail.com","name":"iismd17"},"message":"added first file","distinct":true,"url":"https://api.github.com/repos/iismd17/tutorial/commits/0456448898b1cb469cae68598b650bf2f7824d55"}]},"public":true,"created_at":"2015-01-01T15:09:19Z"} +,{"id":"2489655371","type":"IssueCommentEvent","actor":{"id":216398,"login":"yixuan","gravatar_id":"","url":"https://api.github.com/users/yixuan","avatar_url":"https://avatars.githubusercontent.com/u/216398?"},"repo":{"id":9120967,"name":"yixuan/rARPACK","url":"https://api.github.com/repos/yixuan/rARPACK"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/yixuan/rARPACK/issues/6","labels_url":"https://api.github.com/repos/yixuan/rARPACK/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/yixuan/rARPACK/issues/6/comments","events_url":"https://api.github.com/repos/yixuan/rARPACK/issues/6/events","html_url":"https://github.com/yixuan/rARPACK/issues/6","id":53098797,"number":6,"title":"Difference between eigs() and eigen()","user":{"login":"pbruneau","id":4252621,"avatar_url":"https://avatars.githubusercontent.com/u/4252621?v=3","gravatar_id":"","url":"https://api.github.com/users/pbruneau","html_url":"https://github.com/pbruneau","followers_url":"https://api.github.com/users/pbruneau/followers","following_url":"https://api.github.com/users/pbruneau/following{/other_user}","gists_url":"https://api.github.com/users/pbruneau/gists{/gist_id}","starred_url":"https://api.github.com/users/pbruneau/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pbruneau/subscriptions","organizations_url":"https://api.github.com/users/pbruneau/orgs","repos_url":"https://api.github.com/users/pbruneau/repos","events_url":"https://api.github.com/users/pbruneau/events{/privacy}","received_events_url":"https://api.github.com/users/pbruneau/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-30T07:37:42Z","updated_at":"2015-01-01T15:09:19Z","closed_at":null,"body":"I recently observed a difference between the outputs of the classic eigen() function, and your Arnoldi variant eigs() that extracts only the few first eigenpairs. Here is some sample code illustrating the problem:\r\n\r\n```\r\nlibrary(rARPACK)\r\nlibrary(speccalt)\r\n\r\n# compute kernel matrix from rows of 'synth5' data set\r\n# then its Laplacian\r\nkern <- local.rbfdot(synth5)\r\ndiag(kern) <- 0\r\ndeg <- sapply(1:(dim(synth5)[1]), function(i) {\r\nreturn(sum(kern[i,]))\r\n})\r\nL <- diag(1/sqrt(deg)) %*% kern %*% diag(1/sqrt(deg))\r\n\r\neig1 <- eigs(L, 6)\r\neig2 <- eigen(L, symmetric=TRUE)\r\n```\r\n\r\neig1$values then reads:\r\n1.0000000 1.0000000 0.9993805 0.9992561 0.9985084 0.9975311\r\n\r\nwhereas eig2$values reads:\r\n1.0000000 1.0000000 1.0000000 1.0000000 0.9993805 0.9992561\r\nwhich is the correct result (eigenvalue 1 has multiplicity 4 in that example).\r\n\r\nI guess there is an issue between Arnoldi methods and eigenvalues with multiplicities greater than 1 (indeed at the end of the series the unique eigenvals look identical)... The Matlab version of eigs() does not seem affected though - I tried to csvwrite and read the L matrix from R to Matlab, run:\r\n```\r\neig1 = eigs(L, 6)\r\n````\r\n\r\nand the eigen() result was output then.\r\n\r\nI would gladly use and quote your package, as the speedup is very useful to me, but this issue is blocking in my case...\r\nPlease feel free to ask any supplementary information, and best regards,\r\nPierrick"},"comment":{"url":"https://api.github.com/repos/yixuan/rARPACK/issues/comments/68488680","html_url":"https://github.com/yixuan/rARPACK/issues/6#issuecomment-68488680","issue_url":"https://api.github.com/repos/yixuan/rARPACK/issues/6","id":68488680,"user":{"login":"yixuan","id":216398,"avatar_url":"https://avatars.githubusercontent.com/u/216398?v=3","gravatar_id":"","url":"https://api.github.com/users/yixuan","html_url":"https://github.com/yixuan","followers_url":"https://api.github.com/users/yixuan/followers","following_url":"https://api.github.com/users/yixuan/following{/other_user}","gists_url":"https://api.github.com/users/yixuan/gists{/gist_id}","starred_url":"https://api.github.com/users/yixuan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yixuan/subscriptions","organizations_url":"https://api.github.com/users/yixuan/orgs","repos_url":"https://api.github.com/users/yixuan/repos","events_url":"https://api.github.com/users/yixuan/events{/privacy}","received_events_url":"https://api.github.com/users/yixuan/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:09:19Z","updated_at":"2015-01-01T15:09:19Z","body":"Hello @pbruneau ,\r\nThanks for reporting this. I think you are correct. In general eigen solvers are hard to detect eigenvalues with multiplicity more than 1. This is even harder for Arnoldi method since it only calculates and sorts part of the eigenvalues.\r\nAlso, the results are subject to precision tolarence. For your example, you can get the same results as `eigen()` by specifying a smaller `tol` parameter, as the example below shows:\r\n```\r\neigs(L, 6, opts = list(tol = 1e-17))\r\n```\r\nHowever, it greatly increases computation time, and I don't have a criterion to tell how small `tol` is enough."}},"public":true,"created_at":"2015-01-01T15:09:19Z"} +,{"id":"2489655373","type":"PushEvent","actor":{"id":6078139,"login":"michaelschramek","gravatar_id":"","url":"https://api.github.com/users/michaelschramek","avatar_url":"https://avatars.githubusercontent.com/u/6078139?"},"repo":{"id":14840449,"name":"michaelschramek/michaelschramek.github.io","url":"https://api.github.com/repos/michaelschramek/michaelschramek.github.io"},"payload":{"push_id":536865928,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d7c8dda6fb28a86a6f13d7274d40fbbc74da99dc","before":"147b106e9f5f099d8c4ab821853ce2cbed0f39a6","commits":[{"sha":"d7c8dda6fb28a86a6f13d7274d40fbbc74da99dc","author":{"email":"cbb917d8822f90277fa23ba1952bea927937bb5a@users.noreply.github.com","name":"Michael Schramek"},"message":"Update CNAME","distinct":true,"url":"https://api.github.com/repos/michaelschramek/michaelschramek.github.io/commits/d7c8dda6fb28a86a6f13d7274d40fbbc74da99dc"}]},"public":true,"created_at":"2015-01-01T15:09:20Z"} +,{"id":"2489655375","type":"PushEvent","actor":{"id":10152921,"login":"Antidelay","gravatar_id":"","url":"https://api.github.com/users/Antidelay","avatar_url":"https://avatars.githubusercontent.com/u/10152921?"},"repo":{"id":28637715,"name":"Antidelay/antidelay.github.io","url":"https://api.github.com/repos/Antidelay/antidelay.github.io"},"payload":{"push_id":536865930,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7b67b51f27ae166fb314e2c7285544a313c33191","before":"60116a8a001671c70532298795fe1ff04c67fccb","commits":[{"sha":"7b67b51f27ae166fb314e2c7285544a313c33191","author":{"email":"881baaede9ab674cbb97cddae8bfda41d8ad51c3@example.com","name":"ep"},"message":"Site updated at 2015-01-01 15:09:16 UTC","distinct":true,"url":"https://api.github.com/repos/Antidelay/antidelay.github.io/commits/7b67b51f27ae166fb314e2c7285544a313c33191"}]},"public":true,"created_at":"2015-01-01T15:09:20Z"} +,{"id":"2489655376","type":"CreateEvent","actor":{"id":3806695,"login":"aaaaalbert","gravatar_id":"","url":"https://api.github.com/users/aaaaalbert","avatar_url":"https://avatars.githubusercontent.com/u/3806695?"},"repo":{"id":20314870,"name":"SeattleTestbed/SeattleOnAndroid","url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid"},"payload":{"ref":"fix-https-download","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:09:21Z","org":{"id":7329722,"login":"SeattleTestbed","gravatar_id":"","url":"https://api.github.com/orgs/SeattleTestbed","avatar_url":"https://avatars.githubusercontent.com/u/7329722?"}} +,{"id":"2489655377","type":"PushEvent","actor":{"id":1281320,"login":"joyjy","gravatar_id":"","url":"https://api.github.com/users/joyjy","avatar_url":"https://avatars.githubusercontent.com/u/1281320?"},"repo":{"id":28553075,"name":"joyjy/accounting","url":"https://api.github.com/repos/joyjy/accounting"},"payload":{"push_id":536865931,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"31cf6a1406344066cf39f8dd83b91891df5c7ab0","before":"3ef15c67b4b49c20bf7ebc64c59d6b6dc8d0b03a","commits":[{"sha":"31cf6a1406344066cf39f8dd83b91891df5c7ab0","author":{"email":"42d669c21cca18f7ba0d0222795cd9d2b80b055b@gmail.com","name":"joyjy"},"message":"newBudget","distinct":true,"url":"https://api.github.com/repos/joyjy/accounting/commits/31cf6a1406344066cf39f8dd83b91891df5c7ab0"}]},"public":true,"created_at":"2015-01-01T15:09:21Z"} +,{"id":"2489655378","type":"PushEvent","actor":{"id":3627986,"login":"anthann","gravatar_id":"","url":"https://api.github.com/users/anthann","avatar_url":"https://avatars.githubusercontent.com/u/3627986?"},"repo":{"id":28687423,"name":"anthann/newWind","url":"https://api.github.com/repos/anthann/newWind"},"payload":{"push_id":536865933,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8eab34d4e74253cca55f8a5f3a2db10501dfa326","before":"e686dc1c892e95c6380845964b12dceed1f230f7","commits":[{"sha":"8eab34d4e74253cca55f8a5f3a2db10501dfa326","author":{"email":"5fa9da620647f115065cce385020fd595367fb35@gmail.com","name":"anthann"},"message":"添加三个view\n\nlogin, register, find password","distinct":true,"url":"https://api.github.com/repos/anthann/newWind/commits/8eab34d4e74253cca55f8a5f3a2db10501dfa326"}]},"public":true,"created_at":"2015-01-01T15:09:21Z"} +,{"id":"2489655379","type":"IssueCommentEvent","actor":{"id":10218896,"login":"rostyslav-m","gravatar_id":"","url":"https://api.github.com/users/rostyslav-m","avatar_url":"https://avatars.githubusercontent.com/u/10218896?"},"repo":{"id":28321297,"name":"FrozenCrash/come2us","url":"https://api.github.com/repos/FrozenCrash/come2us"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/FrozenCrash/come2us/issues/10","labels_url":"https://api.github.com/repos/FrozenCrash/come2us/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/FrozenCrash/come2us/issues/10/comments","events_url":"https://api.github.com/repos/FrozenCrash/come2us/issues/10/events","html_url":"https://github.com/FrozenCrash/come2us/issues/10","id":53006765,"number":10,"title":"add travis","user":{"login":"rostyslav-m","id":10218896,"avatar_url":"https://avatars.githubusercontent.com/u/10218896?v=3","gravatar_id":"","url":"https://api.github.com/users/rostyslav-m","html_url":"https://github.com/rostyslav-m","followers_url":"https://api.github.com/users/rostyslav-m/followers","following_url":"https://api.github.com/users/rostyslav-m/following{/other_user}","gists_url":"https://api.github.com/users/rostyslav-m/gists{/gist_id}","starred_url":"https://api.github.com/users/rostyslav-m/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rostyslav-m/subscriptions","organizations_url":"https://api.github.com/users/rostyslav-m/orgs","repos_url":"https://api.github.com/users/rostyslav-m/repos","events_url":"https://api.github.com/users/rostyslav-m/events{/privacy}","received_events_url":"https://api.github.com/users/rostyslav-m/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":{"login":"rostyslav-m","id":10218896,"avatar_url":"https://avatars.githubusercontent.com/u/10218896?v=3","gravatar_id":"","url":"https://api.github.com/users/rostyslav-m","html_url":"https://github.com/rostyslav-m","followers_url":"https://api.github.com/users/rostyslav-m/followers","following_url":"https://api.github.com/users/rostyslav-m/following{/other_user}","gists_url":"https://api.github.com/users/rostyslav-m/gists{/gist_id}","starred_url":"https://api.github.com/users/rostyslav-m/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rostyslav-m/subscriptions","organizations_url":"https://api.github.com/users/rostyslav-m/orgs","repos_url":"https://api.github.com/users/rostyslav-m/repos","events_url":"https://api.github.com/users/rostyslav-m/events{/privacy}","received_events_url":"https://api.github.com/users/rostyslav-m/received_events","type":"User","site_admin":false},"milestone":null,"comments":1,"created_at":"2014-12-28T18:43:23Z","updated_at":"2015-01-01T15:09:21Z","closed_at":"2015-01-01T15:09:21Z","body":"Добавить Travis в проект"},"comment":{"url":"https://api.github.com/repos/FrozenCrash/come2us/issues/comments/68488681","html_url":"https://github.com/FrozenCrash/come2us/issues/10#issuecomment-68488681","issue_url":"https://api.github.com/repos/FrozenCrash/come2us/issues/10","id":68488681,"user":{"login":"rostyslav-m","id":10218896,"avatar_url":"https://avatars.githubusercontent.com/u/10218896?v=3","gravatar_id":"","url":"https://api.github.com/users/rostyslav-m","html_url":"https://github.com/rostyslav-m","followers_url":"https://api.github.com/users/rostyslav-m/followers","following_url":"https://api.github.com/users/rostyslav-m/following{/other_user}","gists_url":"https://api.github.com/users/rostyslav-m/gists{/gist_id}","starred_url":"https://api.github.com/users/rostyslav-m/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rostyslav-m/subscriptions","organizations_url":"https://api.github.com/users/rostyslav-m/orgs","repos_url":"https://api.github.com/users/rostyslav-m/repos","events_url":"https://api.github.com/users/rostyslav-m/events{/privacy}","received_events_url":"https://api.github.com/users/rostyslav-m/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:09:21Z","updated_at":"2015-01-01T15:09:21Z","body":"добавил, залил в ветку dev"}},"public":true,"created_at":"2015-01-01T15:09:21Z"} +,{"id":"2489655380","type":"IssuesEvent","actor":{"id":10218896,"login":"rostyslav-m","gravatar_id":"","url":"https://api.github.com/users/rostyslav-m","avatar_url":"https://avatars.githubusercontent.com/u/10218896?"},"repo":{"id":28321297,"name":"FrozenCrash/come2us","url":"https://api.github.com/repos/FrozenCrash/come2us"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/FrozenCrash/come2us/issues/10","labels_url":"https://api.github.com/repos/FrozenCrash/come2us/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/FrozenCrash/come2us/issues/10/comments","events_url":"https://api.github.com/repos/FrozenCrash/come2us/issues/10/events","html_url":"https://github.com/FrozenCrash/come2us/issues/10","id":53006765,"number":10,"title":"add travis","user":{"login":"rostyslav-m","id":10218896,"avatar_url":"https://avatars.githubusercontent.com/u/10218896?v=3","gravatar_id":"","url":"https://api.github.com/users/rostyslav-m","html_url":"https://github.com/rostyslav-m","followers_url":"https://api.github.com/users/rostyslav-m/followers","following_url":"https://api.github.com/users/rostyslav-m/following{/other_user}","gists_url":"https://api.github.com/users/rostyslav-m/gists{/gist_id}","starred_url":"https://api.github.com/users/rostyslav-m/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rostyslav-m/subscriptions","organizations_url":"https://api.github.com/users/rostyslav-m/orgs","repos_url":"https://api.github.com/users/rostyslav-m/repos","events_url":"https://api.github.com/users/rostyslav-m/events{/privacy}","received_events_url":"https://api.github.com/users/rostyslav-m/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":{"login":"rostyslav-m","id":10218896,"avatar_url":"https://avatars.githubusercontent.com/u/10218896?v=3","gravatar_id":"","url":"https://api.github.com/users/rostyslav-m","html_url":"https://github.com/rostyslav-m","followers_url":"https://api.github.com/users/rostyslav-m/followers","following_url":"https://api.github.com/users/rostyslav-m/following{/other_user}","gists_url":"https://api.github.com/users/rostyslav-m/gists{/gist_id}","starred_url":"https://api.github.com/users/rostyslav-m/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rostyslav-m/subscriptions","organizations_url":"https://api.github.com/users/rostyslav-m/orgs","repos_url":"https://api.github.com/users/rostyslav-m/repos","events_url":"https://api.github.com/users/rostyslav-m/events{/privacy}","received_events_url":"https://api.github.com/users/rostyslav-m/received_events","type":"User","site_admin":false},"milestone":null,"comments":1,"created_at":"2014-12-28T18:43:23Z","updated_at":"2015-01-01T15:09:21Z","closed_at":"2015-01-01T15:09:21Z","body":"Добавить Travis в проект"}},"public":true,"created_at":"2015-01-01T15:09:21Z"} +,{"id":"2489655381","type":"CreateEvent","actor":{"id":10364468,"login":"lovetoken","gravatar_id":"","url":"https://api.github.com/users/lovetoken","avatar_url":"https://avatars.githubusercontent.com/u/10364468?"},"repo":{"id":28688765,"name":"lovetoken/Newton_Raphson_Method-in-R","url":"https://api.github.com/repos/lovetoken/Newton_Raphson_Method-in-R"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:09:23Z"} +,{"id":"2489655387","type":"PushEvent","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":{"push_id":536865934,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e571c0ce30328623fd612d9159cdf6aed354bed1","before":"19a02cf8878380ac93510df83d5e810d41896cdf","commits":[{"sha":"e571c0ce30328623fd612d9159cdf6aed354bed1","author":{"email":"a5f15167a4b2753646a1928271cd70624dd40c3f@qq.com","name":"master"},"message":"建立项目","distinct":true,"url":"https://api.github.com/repos/StartEnd/codeDemo/commits/e571c0ce30328623fd612d9159cdf6aed354bed1"}]},"public":true,"created_at":"2015-01-01T15:09:23Z"} +,{"id":"2489655390","type":"PushEvent","actor":{"id":1978138,"login":"ujhgj","gravatar_id":"","url":"https://api.github.com/users/ujhgj","avatar_url":"https://avatars.githubusercontent.com/u/1978138?"},"repo":{"id":16023330,"name":"ujhgj/moremest_sf2","url":"https://api.github.com/repos/ujhgj/moremest_sf2"},"payload":{"push_id":536865937,"size":1,"distinct_size":1,"ref":"refs/heads/mailing","head":"b12f2f6fa4bbc5380faa30b587a096f7c4de4143","before":"451b8b9df992bb298a6a6a53b280762dfee3b3b2","commits":[{"sha":"b12f2f6fa4bbc5380faa30b587a096f7c4de4143","author":{"email":"4b10eecff0b8480357c3a52a7bf0ff1effb947cd@gmail.com","name":"alex"},"message":"mailing service","distinct":true,"url":"https://api.github.com/repos/ujhgj/moremest_sf2/commits/b12f2f6fa4bbc5380faa30b587a096f7c4de4143"}]},"public":true,"created_at":"2015-01-01T15:09:23Z"} +,{"id":"2489655392","type":"WatchEvent","actor":{"id":426400,"login":"altmer","gravatar_id":"","url":"https://api.github.com/users/altmer","avatar_url":"https://avatars.githubusercontent.com/u/426400?"},"repo":{"id":927442,"name":"postgres/postgres","url":"https://api.github.com/repos/postgres/postgres"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:09:24Z","org":{"id":177543,"login":"postgres","gravatar_id":"","url":"https://api.github.com/orgs/postgres","avatar_url":"https://avatars.githubusercontent.com/u/177543?"}} +,{"id":"2489655399","type":"ForkEvent","actor":{"id":2669197,"login":"leemalmac","gravatar_id":"","url":"https://api.github.com/users/leemalmac","avatar_url":"https://avatars.githubusercontent.com/u/2669197?"},"repo":{"id":9047427,"name":"jesseXu/xcode-theme-Darcula","url":"https://api.github.com/repos/jesseXu/xcode-theme-Darcula"},"payload":{"forkee":{"id":28688766,"name":"xcode-theme-Darcula","full_name":"leemalmac/xcode-theme-Darcula","owner":{"login":"leemalmac","id":2669197,"avatar_url":"https://avatars.githubusercontent.com/u/2669197?v=3","gravatar_id":"","url":"https://api.github.com/users/leemalmac","html_url":"https://github.com/leemalmac","followers_url":"https://api.github.com/users/leemalmac/followers","following_url":"https://api.github.com/users/leemalmac/following{/other_user}","gists_url":"https://api.github.com/users/leemalmac/gists{/gist_id}","starred_url":"https://api.github.com/users/leemalmac/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/leemalmac/subscriptions","organizations_url":"https://api.github.com/users/leemalmac/orgs","repos_url":"https://api.github.com/users/leemalmac/repos","events_url":"https://api.github.com/users/leemalmac/events{/privacy}","received_events_url":"https://api.github.com/users/leemalmac/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/leemalmac/xcode-theme-Darcula","description":"Darcula theme for xcode","fork":true,"url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula","forks_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/forks","keys_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/keys{/key_id}","collaborators_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/teams","hooks_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/hooks","issue_events_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/issues/events{/number}","events_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/events","assignees_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/assignees{/user}","branches_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/branches{/branch}","tags_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/tags","blobs_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/git/refs{/sha}","trees_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/git/trees{/sha}","statuses_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/statuses/{sha}","languages_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/languages","stargazers_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/stargazers","contributors_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/contributors","subscribers_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/subscribers","subscription_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/subscription","commits_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/commits{/sha}","git_commits_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/git/commits{/sha}","comments_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/comments{/number}","issue_comment_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/issues/comments/{number}","contents_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/contents/{+path}","compare_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/compare/{base}...{head}","merges_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/merges","archive_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/downloads","issues_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/issues{/number}","pulls_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/pulls{/number}","milestones_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/milestones{/number}","notifications_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/labels{/name}","releases_url":"https://api.github.com/repos/leemalmac/xcode-theme-Darcula/releases{/id}","created_at":"2015-01-01T15:09:24Z","updated_at":"2014-12-23T18:17:36Z","pushed_at":"2014-07-23T05:12:36Z","git_url":"git://github.com/leemalmac/xcode-theme-Darcula.git","ssh_url":"git@github.com:leemalmac/xcode-theme-Darcula.git","clone_url":"https://github.com/leemalmac/xcode-theme-Darcula.git","svn_url":"https://github.com/leemalmac/xcode-theme-Darcula","homepage":null,"size":403,"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:09:24Z"} +,{"id":"2489655404","type":"IssueCommentEvent","actor":{"id":9904364,"login":"githubertus","gravatar_id":"","url":"https://api.github.com/users/githubertus","avatar_url":"https://avatars.githubusercontent.com/u/9904364?"},"repo":{"id":23487773,"name":"opensource-socialnetwork/opensource-socialnetwork","url":"https://api.github.com/repos/opensource-socialnetwork/opensource-socialnetwork"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/opensource-socialnetwork/opensource-socialnetwork/issues/158","labels_url":"https://api.github.com/repos/opensource-socialnetwork/opensource-socialnetwork/issues/158/labels{/name}","comments_url":"https://api.github.com/repos/opensource-socialnetwork/opensource-socialnetwork/issues/158/comments","events_url":"https://api.github.com/repos/opensource-socialnetwork/opensource-socialnetwork/issues/158/events","html_url":"https://github.com/opensource-socialnetwork/opensource-socialnetwork/issues/158","id":53206977,"number":158,"title":"After login redirect user to referrer link?","user":{"login":"lianglee","id":805066,"avatar_url":"https://avatars.githubusercontent.com/u/805066?v=3","gravatar_id":"","url":"https://api.github.com/users/lianglee","html_url":"https://github.com/lianglee","followers_url":"https://api.github.com/users/lianglee/followers","following_url":"https://api.github.com/users/lianglee/following{/other_user}","gists_url":"https://api.github.com/users/lianglee/gists{/gist_id}","starred_url":"https://api.github.com/users/lianglee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lianglee/subscriptions","organizations_url":"https://api.github.com/users/lianglee/orgs","repos_url":"https://api.github.com/users/lianglee/repos","events_url":"https://api.github.com/users/lianglee/events{/privacy}","received_events_url":"https://api.github.com/users/lianglee/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/opensource-socialnetwork/opensource-socialnetwork/labels/question","name":"question","color":"cc317c"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-31T22:45:41Z","updated_at":"2015-01-01T15:09:25Z","closed_at":null,"body":"I was browsing discussion community and found some question that wanted to answer it, i loggedin to community but after login ossn system takes me to home page instead of discussion page. \r\n\r\nWhat you think? \r\n\r\n@githubertus , @sathish4fri "},"comment":{"url":"https://api.github.com/repos/opensource-socialnetwork/opensource-socialnetwork/issues/comments/68488682","html_url":"https://github.com/opensource-socialnetwork/opensource-socialnetwork/issues/158#issuecomment-68488682","issue_url":"https://api.github.com/repos/opensource-socialnetwork/opensource-socialnetwork/issues/158","id":68488682,"user":{"login":"githubertus","id":9904364,"avatar_url":"https://avatars.githubusercontent.com/u/9904364?v=3","gravatar_id":"","url":"https://api.github.com/users/githubertus","html_url":"https://github.com/githubertus","followers_url":"https://api.github.com/users/githubertus/followers","following_url":"https://api.github.com/users/githubertus/following{/other_user}","gists_url":"https://api.github.com/users/githubertus/gists{/gist_id}","starred_url":"https://api.github.com/users/githubertus/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/githubertus/subscriptions","organizations_url":"https://api.github.com/users/githubertus/orgs","repos_url":"https://api.github.com/users/githubertus/repos","events_url":"https://api.github.com/users/githubertus/events{/privacy}","received_events_url":"https://api.github.com/users/githubertus/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:09:25Z","updated_at":"2015-01-01T15:09:25Z","body":"Can't quite follow. Are you talking about http://community.opensource-socialnetwork.org/?\r\nEven on http://community.opensource-socialnetwork.org/home I CAN see the latest discussions, where else should I be lead to? With http://community.opensource-socialnetwork.org/discussion I'm just getting a blank page..."}},"public":true,"created_at":"2015-01-01T15:09:25Z","org":{"id":8578892,"login":"opensource-socialnetwork","gravatar_id":"","url":"https://api.github.com/orgs/opensource-socialnetwork","avatar_url":"https://avatars.githubusercontent.com/u/8578892?"}} +,{"id":"2489655405","type":"WatchEvent","actor":{"id":37095,"login":"htom78","gravatar_id":"","url":"https://api.github.com/users/htom78","avatar_url":"https://avatars.githubusercontent.com/u/37095?"},"repo":{"id":19737924,"name":"zhaozhiming/department-blogs-analyser","url":"https://api.github.com/repos/zhaozhiming/department-blogs-analyser"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:09:25Z"} +,{"id":"2489655409","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":536865944,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"84346219e85d8ae001eb8ba340ba88aa36c83385","before":"b304e83d34a58a40caadcdcd6be774fa73a36948","commits":[{"sha":"84346219e85d8ae001eb8ba340ba88aa36c83385","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420124964079\n\nmXYLPz5bBgHPwGGVp6C4ngJy6C4B/uDJnCFR1HxQYdg=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/84346219e85d8ae001eb8ba340ba88aa36c83385"}]},"public":true,"created_at":"2015-01-01T15:09:25Z"} +,{"id":"2489655410","type":"PushEvent","actor":{"id":6378485,"login":"rforge","gravatar_id":"","url":"https://api.github.com/users/rforge","avatar_url":"https://avatars.githubusercontent.com/u/6378485?"},"repo":{"id":15866086,"name":"rforge/r2mlwin","url":"https://api.github.com/repos/rforge/r2mlwin"},"payload":{"push_id":536865945,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b175d56f1f4a56b494fd1c7cb27b486a1ec43bc4","before":"499e4fca1f482afbd7cbe2e8df55a63f0ea794c7","commits":[{"sha":"b175d56f1f4a56b494fd1c7cb27b486a1ec43bc4","author":{"email":"9833ddfd6caa9d7758016d3c50b28250f46690de@edb9625f-4e0d-4859-8d74-9fd3b1da38cb","name":"zhengzheng"},"message":"fixed a bug(common coefficients for a categorical variable)\n\ngit-svn-id: svn://svn.r-forge.r-project.org/svnroot/r2mlwin@318 edb9625f-4e0d-4859-8d74-9fd3b1da38cb","distinct":true,"url":"https://api.github.com/repos/rforge/r2mlwin/commits/b175d56f1f4a56b494fd1c7cb27b486a1ec43bc4"}]},"public":true,"created_at":"2015-01-01T15:09:25Z"} +,{"id":"2489655411","type":"PushEvent","actor":{"id":546675,"login":"okbob","gravatar_id":"","url":"https://api.github.com/users/okbob","avatar_url":"https://avatars.githubusercontent.com/u/546675?"},"repo":{"id":7939844,"name":"orafce/orafce","url":"https://api.github.com/repos/orafce/orafce"},"payload":{"push_id":536865946,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3edf286a68e16fc7ac2695e580350de92ab57095","before":"d25b5b84b781dbb61db774e4d9dba359dcf97eb5","commits":[{"sha":"3edf286a68e16fc7ac2695e580350de92ab57095","author":{"email":"353412ad039bd39989ae539fc17c65823cd1e6a9@gooddata.com","name":"Pavel Stehule"},"message":"fix regress tests for 9.1 and older - wrong using 9.2 feature in common code","distinct":true,"url":"https://api.github.com/repos/orafce/orafce/commits/3edf286a68e16fc7ac2695e580350de92ab57095"}]},"public":true,"created_at":"2015-01-01T15:09:25Z","org":{"id":3082967,"login":"orafce","gravatar_id":"","url":"https://api.github.com/orgs/orafce","avatar_url":"https://avatars.githubusercontent.com/u/3082967?"}} +,{"id":"2489655413","type":"IssueCommentEvent","actor":{"id":3517879,"login":"Lemongrass3110","gravatar_id":"","url":"https://api.github.com/users/Lemongrass3110","avatar_url":"https://avatars.githubusercontent.com/u/3517879?"},"repo":{"id":11489037,"name":"rathena/rathena","url":"https://api.github.com/repos/rathena/rathena"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/rathena/rathena/issues/189","labels_url":"https://api.github.com/repos/rathena/rathena/issues/189/labels{/name}","comments_url":"https://api.github.com/repos/rathena/rathena/issues/189/comments","events_url":"https://api.github.com/repos/rathena/rathena/issues/189/events","html_url":"https://github.com/rathena/rathena/issues/189","id":53144242,"number":189,"title":"Char-Server Addon: Character Move","user":{"login":"Lemongrass3110","id":3517879,"avatar_url":"https://avatars.githubusercontent.com/u/3517879?v=3","gravatar_id":"","url":"https://api.github.com/users/Lemongrass3110","html_url":"https://github.com/Lemongrass3110","followers_url":"https://api.github.com/users/Lemongrass3110/followers","following_url":"https://api.github.com/users/Lemongrass3110/following{/other_user}","gists_url":"https://api.github.com/users/Lemongrass3110/gists{/gist_id}","starred_url":"https://api.github.com/users/Lemongrass3110/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Lemongrass3110/subscriptions","organizations_url":"https://api.github.com/users/Lemongrass3110/orgs","repos_url":"https://api.github.com/users/Lemongrass3110/repos","events_url":"https://api.github.com/users/Lemongrass3110/events{/privacy}","received_events_url":"https://api.github.com/users/Lemongrass3110/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/rathena/rathena/labels/bug%3Acore","name":"bug:core","color":"008000"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-12-30T20:26:08Z","updated_at":"2015-01-01T15:09:26Z","closed_at":null,"body":"Character Movement System seems to be broken on 2013 clients(tested with 20130807).\r\n\r\nA screenshot says more than 1000 words. This picture was taken after moving the character successfully.\r\n![screenrathena002](https://cloud.githubusercontent.com/assets/3517879/5582431/d584bee8-9069-11e4-954a-23967b1e9d95.jpg)\r\n\r\nI tried to change the packets the way hercules sends them(chclif_mmo_send099d instead of chclif_mmo_char_send) but that also does not work. I was to lazy to set up a running hercules and try if it really works with their version."},"comment":{"url":"https://api.github.com/repos/rathena/rathena/issues/comments/68488683","html_url":"https://github.com/rathena/rathena/issues/189#issuecomment-68488683","issue_url":"https://api.github.com/repos/rathena/rathena/issues/189","id":68488683,"user":{"login":"Lemongrass3110","id":3517879,"avatar_url":"https://avatars.githubusercontent.com/u/3517879?v=3","gravatar_id":"","url":"https://api.github.com/users/Lemongrass3110","html_url":"https://github.com/Lemongrass3110","followers_url":"https://api.github.com/users/Lemongrass3110/followers","following_url":"https://api.github.com/users/Lemongrass3110/following{/other_user}","gists_url":"https://api.github.com/users/Lemongrass3110/gists{/gist_id}","starred_url":"https://api.github.com/users/Lemongrass3110/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Lemongrass3110/subscriptions","organizations_url":"https://api.github.com/users/Lemongrass3110/orgs","repos_url":"https://api.github.com/users/Lemongrass3110/repos","events_url":"https://api.github.com/users/Lemongrass3110/events{/privacy}","received_events_url":"https://api.github.com/users/Lemongrass3110/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:09:26Z","updated_at":"2015-01-01T15:09:26Z","body":"You log in to a character and use the item Character Position Change Coupon(12786). Now you are allowed to move the character where you used the item once(or as often as you used the item) in the char select. So go back into char select menu. Now the character should have the symbol \"Addons available\" in the background. If you rightclick him you now have the possibility to move him. Afterwards right click on the slot where you want to move the character and thats it. Hope that helps. ;)\r\n\r\n![screenrathena003](https://cloud.githubusercontent.com/assets/3517879/5592454/87d24586-91d0-11e4-8995-2c865023e450.jpg)\r\n![screenrathena004](https://cloud.githubusercontent.com/assets/3517879/5592455/87d230f0-91d0-11e4-95a6-220bc2d1fb82.jpg)\r\n![screenrathena005](https://cloud.githubusercontent.com/assets/3517879/5592456/87d3c532-91d0-11e4-8702-1c7e08f23085.jpg)\r\n"}},"public":true,"created_at":"2015-01-01T15:09:27Z","org":{"id":1776606,"login":"rathena","gravatar_id":"","url":"https://api.github.com/orgs/rathena","avatar_url":"https://avatars.githubusercontent.com/u/1776606?"}} +,{"id":"2489655414","type":"ForkEvent","actor":{"id":37095,"login":"htom78","gravatar_id":"","url":"https://api.github.com/users/htom78","avatar_url":"https://avatars.githubusercontent.com/u/37095?"},"repo":{"id":19737924,"name":"zhaozhiming/department-blogs-analyser","url":"https://api.github.com/repos/zhaozhiming/department-blogs-analyser"},"payload":{"forkee":{"id":28688767,"name":"department-blogs-analyser","full_name":"htom78/department-blogs-analyser","owner":{"login":"htom78","id":37095,"avatar_url":"https://avatars.githubusercontent.com/u/37095?v=3","gravatar_id":"","url":"https://api.github.com/users/htom78","html_url":"https://github.com/htom78","followers_url":"https://api.github.com/users/htom78/followers","following_url":"https://api.github.com/users/htom78/following{/other_user}","gists_url":"https://api.github.com/users/htom78/gists{/gist_id}","starred_url":"https://api.github.com/users/htom78/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/htom78/subscriptions","organizations_url":"https://api.github.com/users/htom78/orgs","repos_url":"https://api.github.com/users/htom78/repos","events_url":"https://api.github.com/users/htom78/events{/privacy}","received_events_url":"https://api.github.com/users/htom78/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/htom78/department-blogs-analyser","description":"","fork":true,"url":"https://api.github.com/repos/htom78/department-blogs-analyser","forks_url":"https://api.github.com/repos/htom78/department-blogs-analyser/forks","keys_url":"https://api.github.com/repos/htom78/department-blogs-analyser/keys{/key_id}","collaborators_url":"https://api.github.com/repos/htom78/department-blogs-analyser/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/htom78/department-blogs-analyser/teams","hooks_url":"https://api.github.com/repos/htom78/department-blogs-analyser/hooks","issue_events_url":"https://api.github.com/repos/htom78/department-blogs-analyser/issues/events{/number}","events_url":"https://api.github.com/repos/htom78/department-blogs-analyser/events","assignees_url":"https://api.github.com/repos/htom78/department-blogs-analyser/assignees{/user}","branches_url":"https://api.github.com/repos/htom78/department-blogs-analyser/branches{/branch}","tags_url":"https://api.github.com/repos/htom78/department-blogs-analyser/tags","blobs_url":"https://api.github.com/repos/htom78/department-blogs-analyser/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/htom78/department-blogs-analyser/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/htom78/department-blogs-analyser/git/refs{/sha}","trees_url":"https://api.github.com/repos/htom78/department-blogs-analyser/git/trees{/sha}","statuses_url":"https://api.github.com/repos/htom78/department-blogs-analyser/statuses/{sha}","languages_url":"https://api.github.com/repos/htom78/department-blogs-analyser/languages","stargazers_url":"https://api.github.com/repos/htom78/department-blogs-analyser/stargazers","contributors_url":"https://api.github.com/repos/htom78/department-blogs-analyser/contributors","subscribers_url":"https://api.github.com/repos/htom78/department-blogs-analyser/subscribers","subscription_url":"https://api.github.com/repos/htom78/department-blogs-analyser/subscription","commits_url":"https://api.github.com/repos/htom78/department-blogs-analyser/commits{/sha}","git_commits_url":"https://api.github.com/repos/htom78/department-blogs-analyser/git/commits{/sha}","comments_url":"https://api.github.com/repos/htom78/department-blogs-analyser/comments{/number}","issue_comment_url":"https://api.github.com/repos/htom78/department-blogs-analyser/issues/comments/{number}","contents_url":"https://api.github.com/repos/htom78/department-blogs-analyser/contents/{+path}","compare_url":"https://api.github.com/repos/htom78/department-blogs-analyser/compare/{base}...{head}","merges_url":"https://api.github.com/repos/htom78/department-blogs-analyser/merges","archive_url":"https://api.github.com/repos/htom78/department-blogs-analyser/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/htom78/department-blogs-analyser/downloads","issues_url":"https://api.github.com/repos/htom78/department-blogs-analyser/issues{/number}","pulls_url":"https://api.github.com/repos/htom78/department-blogs-analyser/pulls{/number}","milestones_url":"https://api.github.com/repos/htom78/department-blogs-analyser/milestones{/number}","notifications_url":"https://api.github.com/repos/htom78/department-blogs-analyser/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/htom78/department-blogs-analyser/labels{/name}","releases_url":"https://api.github.com/repos/htom78/department-blogs-analyser/releases{/id}","created_at":"2015-01-01T15:09:26Z","updated_at":"2015-01-01T15:09:25Z","pushed_at":"2014-07-07T12:22:57Z","git_url":"git://github.com/htom78/department-blogs-analyser.git","ssh_url":"git@github.com:htom78/department-blogs-analyser.git","clone_url":"https://github.com/htom78/department-blogs-analyser.git","svn_url":"https://github.com/htom78/department-blogs-analyser","homepage":null,"size":3519,"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:09:27Z"} +,{"id":"2489655415","type":"WatchEvent","actor":{"id":2308863,"login":"perezkarjee","gravatar_id":"","url":"https://api.github.com/users/perezkarjee","avatar_url":"https://avatars.githubusercontent.com/u/2308863?"},"repo":{"id":211666,"name":"joyent/node","url":"https://api.github.com/repos/joyent/node"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:09:27Z","org":{"id":10161,"login":"joyent","gravatar_id":"","url":"https://api.github.com/orgs/joyent","avatar_url":"https://avatars.githubusercontent.com/u/10161?"}} +,{"id":"2489655416","type":"CreateEvent","actor":{"id":7351259,"login":"rsahani","gravatar_id":"","url":"https://api.github.com/users/rsahani","avatar_url":"https://avatars.githubusercontent.com/u/7351259?"},"repo":{"id":28688768,"name":"rsahani/High-performance-DB-test","url":"https://api.github.com/repos/rsahani/High-performance-DB-test"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:09:27Z"} +,{"id":"2489655423","type":"WatchEvent","actor":{"id":611980,"login":"lujiacn","gravatar_id":"","url":"https://api.github.com/users/lujiacn","avatar_url":"https://avatars.githubusercontent.com/u/611980?"},"repo":{"id":6965987,"name":"tgulacsi/goracle","url":"https://api.github.com/repos/tgulacsi/goracle"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:09:28Z"} +,{"id":"2489655425","type":"PushEvent","actor":{"id":8569109,"login":"flyingdeep","gravatar_id":"","url":"https://api.github.com/users/flyingdeep","avatar_url":"https://avatars.githubusercontent.com/u/8569109?"},"repo":{"id":23616156,"name":"flyingdeep/StarFire","url":"https://api.github.com/repos/flyingdeep/StarFire"},"payload":{"push_id":536865953,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f0d37b9372839278b8a2063afe9b577993ed6bf7","before":"ce7130c42db408484391c5216ca792645dbceb63","commits":[{"sha":"f0d37b9372839278b8a2063afe9b577993ed6bf7","author":{"email":"75c310c043634d56e1664a5156e9a360471f7b1f@163.com","name":"flyingdeep"},"message":"Client JS update","distinct":true,"url":"https://api.github.com/repos/flyingdeep/StarFire/commits/f0d37b9372839278b8a2063afe9b577993ed6bf7"}]},"public":true,"created_at":"2015-01-01T15:09:28Z"} +,{"id":"2489655426","type":"IssueCommentEvent","actor":{"id":5859829,"login":"xsivart","gravatar_id":"","url":"https://api.github.com/users/xsivart","avatar_url":"https://avatars.githubusercontent.com/u/5859829?"},"repo":{"id":13205020,"name":"Murodese/pynab","url":"https://api.github.com/repos/Murodese/pynab"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/Murodese/pynab/issues/111","labels_url":"https://api.github.com/repos/Murodese/pynab/issues/111/labels{/name}","comments_url":"https://api.github.com/repos/Murodese/pynab/issues/111/comments","events_url":"https://api.github.com/repos/Murodese/pynab/issues/111/events","html_url":"https://github.com/Murodese/pynab/issues/111","id":53220155,"number":111,"title":"length field in RSS","user":{"login":"xsivart","id":5859829,"avatar_url":"https://avatars.githubusercontent.com/u/5859829?v=3","gravatar_id":"","url":"https://api.github.com/users/xsivart","html_url":"https://github.com/xsivart","followers_url":"https://api.github.com/users/xsivart/followers","following_url":"https://api.github.com/users/xsivart/following{/other_user}","gists_url":"https://api.github.com/users/xsivart/gists{/gist_id}","starred_url":"https://api.github.com/users/xsivart/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xsivart/subscriptions","organizations_url":"https://api.github.com/users/xsivart/orgs","repos_url":"https://api.github.com/users/xsivart/repos","events_url":"https://api.github.com/users/xsivart/events{/privacy}","received_events_url":"https://api.github.com/users/xsivart/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":8,"created_at":"2015-01-01T13:56:28Z","updated_at":"2015-01-01T15:09:28Z","closed_at":null,"body":"A friend was using nzbmegasearch and it was never returning results properly against pynab. After adding some code to megasearch's scripts I was able to make it display results but it was more of a work around.\r\n\r\nThe issue with those scripts was that the RSS for pynab is returning **length=\"None\"** and nzbmegasearch didn't have error handling for that.\r\n\r\nExample from the RSS feed (Right Click -> View Source)\r\n```\r\n alt.binaries.multimedia\r\n \r\n 0\r\n```\r\nThis doesn't happen for all results but some/most of the recent content indexed (last ~400 days) doesn't have a \"length\" value associated with it.\r\n\r\nIf I pick something older it has a length value associated with it:\r\n```\r\n alt.binaries.movies.divx\r\n \r\n 0\r\n```\r\n\r\nThe download itself works perfectly fine for the 'length=\"None\"' results but I'm just wondering how the length is calculated and if maybe something is broken.\r\n\r\nEnjoy your holiday :)"},"comment":{"url":"https://api.github.com/repos/Murodese/pynab/issues/comments/68488684","html_url":"https://github.com/Murodese/pynab/issues/111#issuecomment-68488684","issue_url":"https://api.github.com/repos/Murodese/pynab/issues/111","id":68488684,"user":{"login":"xsivart","id":5859829,"avatar_url":"https://avatars.githubusercontent.com/u/5859829?v=3","gravatar_id":"","url":"https://api.github.com/users/xsivart","html_url":"https://github.com/xsivart","followers_url":"https://api.github.com/users/xsivart/followers","following_url":"https://api.github.com/users/xsivart/following{/other_user}","gists_url":"https://api.github.com/users/xsivart/gists{/gist_id}","starred_url":"https://api.github.com/users/xsivart/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xsivart/subscriptions","organizations_url":"https://api.github.com/users/xsivart/orgs","repos_url":"https://api.github.com/users/xsivart/repos","events_url":"https://api.github.com/users/xsivart/events{/privacy}","received_events_url":"https://api.github.com/users/xsivart/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:09:28Z","updated_at":"2015-01-01T15:09:28Z","body":"I've noticed there were no sizes associated with the releases in the RSS feed in the past and just ignored it. Just recently started looking into the issue with nzbmegasearch but based off of the queries I'm guessing it's been happening for awhile:\r\n\r\n```\r\npynab=> select count(*) from releases where size is null and passworded='UNKNOWN';\r\n count \r\n---------\r\n 1595623\r\n```\r\n\r\nAnd just to have the opposite of that...\r\n```\r\npynab=> select count(*) from releases where size is not null and passworded='UNKNOWN';\r\n count \r\n-------\r\n 74094\r\n```"}},"public":true,"created_at":"2015-01-01T15:09:28Z"} +,{"id":"2489655427","type":"PushEvent","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":{"push_id":536865954,"size":1,"distinct_size":1,"ref":"refs/heads/PLMd947b4e6a13377b40991666c05e75a358bade38c","head":"f586cfb093998eed4fca7f1f865c79057229e5e4","before":"d81613601d09b278af1cebcf21f648e0a7ac1b4f","commits":[{"sha":"f586cfb093998eed4fca7f1f865c79057229e5e4","author":{"email":"af0188f34285ce3b31574866070b9a5066df7355@plm.net","name":"John Doe"},"message":"{\"kind\":\"executed\",\"exo\":\"welcome.lessons.welcome.methods.picture.PictureMono1\",\"course\":\"\",\"totaltests\":\"1\",\"exoInterest\":\"(please choose)\",\"passedtests\":\"1\",\"outcome\":\"pass\",\"lang\":\"Python\"}","distinct":true,"url":"https://api.github.com/repos/mquinson/PLM-data/commits/f586cfb093998eed4fca7f1f865c79057229e5e4"}]},"public":true,"created_at":"2015-01-01T15:09:28Z"} +,{"id":"2489655429","type":"PushEvent","actor":{"id":6792362,"login":"teddy-hoo","gravatar_id":"","url":"https://api.github.com/users/teddy-hoo","avatar_url":"https://avatars.githubusercontent.com/u/6792362?"},"repo":{"id":17579300,"name":"teddy-hoo/leetcode","url":"https://api.github.com/repos/teddy-hoo/leetcode"},"payload":{"push_id":536865955,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d640f3477a33c1e4de0dc68c93b5963ae1d842e0","before":"41e2d9a5e2083a1968feb537b9a24dc7dc5064f9","commits":[{"sha":"d640f3477a33c1e4de0dc68c93b5963ae1d842e0","author":{"email":"9269924f36aa3592246cd91e04f9da2bfdf20913@hotmail.com","name":"teddy-hoo"},"message":"atoi","distinct":true,"url":"https://api.github.com/repos/teddy-hoo/leetcode/commits/d640f3477a33c1e4de0dc68c93b5963ae1d842e0"}]},"public":true,"created_at":"2015-01-01T15:09:28Z"} +,{"id":"2489655433","type":"PushEvent","actor":{"id":14596,"login":"jimm","gravatar_id":"","url":"https://api.github.com/users/jimm","avatar_url":"https://avatars.githubusercontent.com/u/14596?"},"repo":{"id":91419,"name":"jimm/elisp","url":"https://api.github.com/repos/jimm/elisp"},"payload":{"push_id":536865957,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c76ddc930b9ff1e52d695490722dfc40a7d25889","before":"7a489d88ef9d8048494ffd0cbd337cb430f1ba58","commits":[{"sha":"c76ddc930b9ff1e52d695490722dfc40a7d25889","author":{"email":"5adedd522b515f04f2e3fd08c3c32e1fcf9d5af1@io.com","name":"Jim Menard"},"message":"fixed interactive arg type","distinct":true,"url":"https://api.github.com/repos/jimm/elisp/commits/c76ddc930b9ff1e52d695490722dfc40a7d25889"}]},"public":true,"created_at":"2015-01-01T15:09:29Z"} +,{"id":"2489655437","type":"WatchEvent","actor":{"id":1230048,"login":"aloasut","gravatar_id":"","url":"https://api.github.com/users/aloasut","avatar_url":"https://avatars.githubusercontent.com/u/1230048?"},"repo":{"id":28081156,"name":"lexrus/VPNOn","url":"https://api.github.com/repos/lexrus/VPNOn"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:09:29Z"} +,{"id":"2489655441","type":"PushEvent","actor":{"id":750396,"login":"Enelar","gravatar_id":"","url":"https://api.github.com/users/Enelar","avatar_url":"https://avatars.githubusercontent.com/u/750396?"},"repo":{"id":10178731,"name":"Enelar/phoxy","url":"https://api.github.com/repos/Enelar/phoxy"},"payload":{"push_id":536865959,"size":1,"distinct_size":1,"ref":"refs/heads/unstable","head":"f70dc463abe63112db39c5bf5cb3a30c8682a046","before":"2aa0bef6445e595fc3343c0a39fefc20304f4a71","commits":[{"sha":"f70dc463abe63112db39c5bf5cb3a30c8682a046","author":{"email":"7e3cb8e770bf9525e927d8fb3666d16fda632f5e@develop-project.ru","name":"Kirill Berezin"},"message":"Experemental feature: every module load by default expect simple value","distinct":true,"url":"https://api.github.com/repos/Enelar/phoxy/commits/f70dc463abe63112db39c5bf5cb3a30c8682a046"}]},"public":true,"created_at":"2015-01-01T15:09:29Z"} +,{"id":"2489655442","type":"WatchEvent","actor":{"id":1075708,"login":"GIANTCRAB","gravatar_id":"","url":"https://api.github.com/users/GIANTCRAB","avatar_url":"https://avatars.githubusercontent.com/u/1075708?"},"repo":{"id":8670073,"name":"g2p/bcache-tools","url":"https://api.github.com/repos/g2p/bcache-tools"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:09:29Z"} +,{"id":"2489655445","type":"IssueCommentEvent","actor":{"id":585534,"login":"gorhill","gravatar_id":"","url":"https://api.github.com/users/gorhill","avatar_url":"https://avatars.githubusercontent.com/u/585534?"},"repo":{"id":21108956,"name":"gorhill/uBlock","url":"https://api.github.com/repos/gorhill/uBlock"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/gorhill/uBlock/issues/433","labels_url":"https://api.github.com/repos/gorhill/uBlock/issues/433/labels{/name}","comments_url":"https://api.github.com/repos/gorhill/uBlock/issues/433/comments","events_url":"https://api.github.com/repos/gorhill/uBlock/issues/433/events","html_url":"https://github.com/gorhill/uBlock/issues/433","id":52654805,"number":433,"title":"Expand/refactor dynamic filtering","user":{"login":"gorhill","id":585534,"avatar_url":"https://avatars.githubusercontent.com/u/585534?v=3","gravatar_id":"","url":"https://api.github.com/users/gorhill","html_url":"https://github.com/gorhill","followers_url":"https://api.github.com/users/gorhill/followers","following_url":"https://api.github.com/users/gorhill/following{/other_user}","gists_url":"https://api.github.com/users/gorhill/gists{/gist_id}","starred_url":"https://api.github.com/users/gorhill/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gorhill/subscriptions","organizations_url":"https://api.github.com/users/gorhill/orgs","repos_url":"https://api.github.com/users/gorhill/repos","events_url":"https://api.github.com/users/gorhill/events{/privacy}","received_events_url":"https://api.github.com/users/gorhill/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/gorhill/uBlock/labels/fixing","name":"fixing","color":"bfe5bf"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2014-12-22T14:38:51Z","updated_at":"2015-01-01T15:09:30Z","closed_at":null,"body":"To address one way or another various filed issues: #361, #358, #331, #282, #236, #68.\r\n\r\nDefinitions:\r\n- \"Static filtering\" = filters based on ABP net filters syntax, or hosts file entries\r\n - Disadvantage: Adding/removing filter(s) is CPU/short-term memory expensive\r\n - Advantage: Can be very fine-grained\r\n- \"Dynamic filtering\"\r\n - Advantage: Adding/removing filter(s) is virtually CPU/memory noop relative to static filters\r\n - Advantage: Very useful to unbreak (or further restrict) web sites without the overhead of static filters\r\n - Disadvantage: Coarse-grained\r\n\r\nFiltering:\r\n- Whitelisting override all dynamic and static filters\r\n- Dynamic exception filters override static and dynamic block filters\r\n- Dynamic block filters override static exception filters and default behavior\r\n- Static exception filters override static block filters\r\n- Static block filters override default behavior\r\n- Default behavior: all net requests are allowed\r\n\r\nFiltering precedence inside dynamic filtering -- most specific to least specific:\r\n- Hostname - hostname - any type (new)\r\n- Any - hostname - any type (new)\r\n- Hostname - any - specific type (these already exist)\r\n- Any - any - specific type (these already exist)\r\n\r\nUI:\r\n- The default UI will always be minimalist -- just as it is now\r\n- Optionally expand panel to unveil dynamic filtering\r\n- It is not feature bloat, it just expands on the current dynamic filtering (`script`, `iframe`) to address the issues enumerated above.\r\n- Just as now, it is optional, tucked away by default\r\n- But readily available as a very useful tool to help users help themselves"},"comment":{"url":"https://api.github.com/repos/gorhill/uBlock/issues/comments/68488686","html_url":"https://github.com/gorhill/uBlock/issues/433#issuecomment-68488686","issue_url":"https://api.github.com/repos/gorhill/uBlock/issues/433","id":68488686,"user":{"login":"gorhill","id":585534,"avatar_url":"https://avatars.githubusercontent.com/u/585534?v=3","gravatar_id":"","url":"https://api.github.com/users/gorhill","html_url":"https://github.com/gorhill","followers_url":"https://api.github.com/users/gorhill/followers","following_url":"https://api.github.com/users/gorhill/following{/other_user}","gists_url":"https://api.github.com/users/gorhill/gists{/gist_id}","starred_url":"https://api.github.com/users/gorhill/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gorhill/subscriptions","organizations_url":"https://api.github.com/users/gorhill/orgs","repos_url":"https://api.github.com/users/gorhill/repos","events_url":"https://api.github.com/users/gorhill/events{/privacy}","received_events_url":"https://api.github.com/users/gorhill/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:09:30Z","updated_at":"2015-01-01T15:09:30Z","body":"Case: take control of your privacy in your own hands\r\n\r\n1. Does _EasyPrivacy_, _\"Fanboy's Social Blocking List\"_ and _\"Anti-ThirdpartySocial‎\"_ all together prevent your browsing history from leaking?\r\n2. Not necessarily\r\n3. Go to [wired.com](http://wired.com)\r\n4. See that `twitter.com` now knows you went to wired.com
![a](https://cloud.githubusercontent.com/assets/585534/5592439/1deca7b6-919d-11e4-8b66-a28ec35d8599.png)\r\n5. Another benefit of dynamic filtering: full disclosure of remote connections as a result of loading a web page\r\n6. Do not want your browsing history to be leaked to omnipresent twitter.com? Block twitter.com everywhere by default:
![b](https://cloud.githubusercontent.com/assets/585534/5592441/7337e14a-919d-11e4-9c98-de8b93bda2e5.png)\r\n7. However, when you visit [twitter.com](https://twitter.com), it's not very practical to have requests to `twitter.com` blocked
![c](https://cloud.githubusercontent.com/assets/585534/5592445/e945c992-919d-11e4-8e7c-be3fe1cad97e.png)\r\n8. No problem, just create an exception for `twitter.com` when on [twitter.com](https://twitter.com)
![d](https://cloud.githubusercontent.com/assets/585534/5592447/09cb856c-919e-11e4-963a-258fc97b5379.png)\r\n9. The \"dark gray\" exception above means: do not dynamically filter requests to `twitter.com` when on [twitter.com](https://twitter.com) -- static network filtering will still take place"}},"public":true,"created_at":"2015-01-01T15:09:30Z"} +,{"id":"2489655448","type":"PushEvent","actor":{"id":6588994,"login":"christopherhealy","gravatar_id":"","url":"https://api.github.com/users/christopherhealy","avatar_url":"https://avatars.githubusercontent.com/u/6588994?"},"repo":{"id":28562593,"name":"christopherhealy/Dec28","url":"https://api.github.com/repos/christopherhealy/Dec28"},"payload":{"push_id":536865962,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"937af335f20f1e8251833df3ee91c46c2ab4e724","before":"71b6465bb53f792d6e7d66245d2f1c110ce77c29","commits":[{"sha":"937af335f20f1e8251833df3ee91c46c2ab4e724","author":{"email":"e0a3000c47a302c1fc9e7e3843aba60bdf39df76@outlook.com","name":"christopherhealy"},"message":"Jan1","distinct":true,"url":"https://api.github.com/repos/christopherhealy/Dec28/commits/937af335f20f1e8251833df3ee91c46c2ab4e724"}]},"public":true,"created_at":"2015-01-01T15:09:30Z"} +,{"id":"2489655449","type":"PushEvent","actor":{"id":1148410,"login":"gan74","gravatar_id":"","url":"https://api.github.com/users/gan74","avatar_url":"https://avatars.githubusercontent.com/u/1148410?"},"repo":{"id":28596328,"name":"gan74/TaskMgr","url":"https://api.github.com/repos/gan74/TaskMgr"},"payload":{"push_id":536865963,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bf2e83834ae56f700149fcca79418d7abb2459f7","before":"2d8d55687c2e3427ba76af94ad84d0750f434cb4","commits":[{"sha":"bf2e83834ae56f700149fcca79418d7abb2459f7","author":{"email":"66a6ea77e1653ddf543bfb2493b4a728bc483442@epfl.ch","name":"gan_"},"message":"Fixed compact graph color being always like 100% and added basic labels for compact graphs.","distinct":true,"url":"https://api.github.com/repos/gan74/TaskMgr/commits/bf2e83834ae56f700149fcca79418d7abb2459f7"}]},"public":true,"created_at":"2015-01-01T15:09:32Z"} +,{"id":"2489655451","type":"PushEvent","actor":{"id":345826,"login":"danidemi","gravatar_id":"","url":"https://api.github.com/users/danidemi","avatar_url":"https://avatars.githubusercontent.com/u/345826?"},"repo":{"id":21310202,"name":"danidemi/europrices","url":"https://api.github.com/repos/danidemi/europrices"},"payload":{"push_id":536865964,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e2c7628890125ee91222bbbe2407f28dfadb237d","before":"4c0faa740322f9afb183981a3bd491b16fcc3d24","commits":[{"sha":"e2c7628890125ee91222bbbe2407f28dfadb237d","author":{"email":"43745c759649ef54f835ede6e1c7aab702e81f17@danidemi.com","name":"danidemi"},"message":"Tests pass with key / api key","distinct":true,"url":"https://api.github.com/repos/danidemi/europrices/commits/e2c7628890125ee91222bbbe2407f28dfadb237d"}]},"public":true,"created_at":"2015-01-01T15:09:32Z"} +,{"id":"2489655459","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":536865967,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d85c9fcd2378a466a6721e4f0ab50894f2bce612","before":"87a3658a73bd1c5ff737d72a3aac38c082c6a93c","commits":[{"sha":"d85c9fcd2378a466a6721e4f0ab50894f2bce612","author":{"email":"6b83eded995a0663a8581c4317a76bfbfaf34437@xiaoshitou1","name":"xiaoshitou"},"message":"Translated by 土妹子","distinct":true,"url":"https://api.github.com/repos/gnenbu/gn_enbu_chs/commits/d85c9fcd2378a466a6721e4f0ab50894f2bce612"}]},"public":true,"created_at":"2015-01-01T15:09:34Z"} +,{"id":"2489655460","type":"CreateEvent","actor":{"id":10364721,"login":"mahir163","gravatar_id":"","url":"https://api.github.com/users/mahir163","avatar_url":"https://avatars.githubusercontent.com/u/10364721?"},"repo":{"id":28688581,"name":"mahir163/technion_events","url":"https://api.github.com/repos/mahir163/technion_events"},"payload":{"ref":"112","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:09:34Z"} +,{"id":"2489655464","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":536865970,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5aabad82007e7175390a64eae290f97b5fcbe765","before":"ef0b4eca7b8f09ae9da6036dc30059c138c4f64e","commits":[{"sha":"5aabad82007e7175390a64eae290f97b5fcbe765","author":{"email":"de163e90d3aeef9f404d1de71c48e234a211e3c3@gmail.com","name":"KT"},"message":"Update","distinct":true,"url":"https://api.github.com/repos/qdm/qdm.github.io/commits/5aabad82007e7175390a64eae290f97b5fcbe765"}]},"public":true,"created_at":"2015-01-01T15:09:34Z"} +,{"id":"2489655465","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":21481710,"name":"SlexAxton/css-colorguard","url":"https://api.github.com/repos/SlexAxton/css-colorguard"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:09:34Z"} +,{"id":"2489655467","type":"IssuesEvent","actor":{"id":6314440,"login":"AegisLesha","gravatar_id":"","url":"https://api.github.com/users/AegisLesha","avatar_url":"https://avatars.githubusercontent.com/u/6314440?"},"repo":{"id":18502440,"name":"Flaxbeard/Flaxbeards-Steam-Power","url":"https://api.github.com/repos/Flaxbeard/Flaxbeards-Steam-Power"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/Flaxbeard/Flaxbeards-Steam-Power/issues/176","labels_url":"https://api.github.com/repos/Flaxbeard/Flaxbeards-Steam-Power/issues/176/labels{/name}","comments_url":"https://api.github.com/repos/Flaxbeard/Flaxbeards-Steam-Power/issues/176/comments","events_url":"https://api.github.com/repos/Flaxbeard/Flaxbeards-Steam-Power/issues/176/events","html_url":"https://github.com/Flaxbeard/Flaxbeards-Steam-Power/issues/176","id":53221517,"number":176,"title":"AOBD Support","user":{"login":"AegisLesha","id":6314440,"avatar_url":"https://avatars.githubusercontent.com/u/6314440?v=3","gravatar_id":"","url":"https://api.github.com/users/AegisLesha","html_url":"https://github.com/AegisLesha","followers_url":"https://api.github.com/users/AegisLesha/followers","following_url":"https://api.github.com/users/AegisLesha/following{/other_user}","gists_url":"https://api.github.com/users/AegisLesha/gists{/gist_id}","starred_url":"https://api.github.com/users/AegisLesha/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AegisLesha/subscriptions","organizations_url":"https://api.github.com/users/AegisLesha/orgs","repos_url":"https://api.github.com/users/AegisLesha/repos","events_url":"https://api.github.com/users/AegisLesha/events{/privacy}","received_events_url":"https://api.github.com/users/AegisLesha/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:09:33Z","updated_at":"2015-01-01T15:09:33Z","closed_at":null,"body":"Not really a new request, as I already asked @satanicsanta and @ganymedes01 about it (https://twitter.com/ModdingAegisSrx/status/539452989187317760), but it's just to make an \"official\" request here and more or less shout to people interested in AOBD that support may come\r\n\r\nBecause it's basically changing the API so mods like AOBD can add ores to FSP's ore processing"}},"public":true,"created_at":"2015-01-01T15:09:34Z"} +,{"id":"2489655468","type":"WatchEvent","actor":{"id":787389,"login":"eurekasfray","gravatar_id":"","url":"https://api.github.com/users/eurekasfray","avatar_url":"https://avatars.githubusercontent.com/u/787389?"},"repo":{"id":623998,"name":"cslarsen/stack-machine","url":"https://api.github.com/repos/cslarsen/stack-machine"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:09:34Z"} +,{"id":"2489655469","type":"WatchEvent","actor":{"id":2716274,"login":"iceoton","gravatar_id":"","url":"https://api.github.com/users/iceoton","avatar_url":"https://avatars.githubusercontent.com/u/2716274?"},"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:09:34Z","org":{"id":1342004,"login":"google","gravatar_id":"","url":"https://api.github.com/orgs/google","avatar_url":"https://avatars.githubusercontent.com/u/1342004?"}} +,{"id":"2489655470","type":"CreateEvent","actor":{"id":62835,"login":"pafcu","gravatar_id":"","url":"https://api.github.com/users/pafcu","avatar_url":"https://avatars.githubusercontent.com/u/62835?"},"repo":{"id":27721611,"name":"pafcu/red","url":"https://api.github.com/repos/pafcu/red"},"payload":{"ref":"moretpl","ref_type":"branch","master_branch":"master","description":"The Red Matrix","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:09:34Z"} +,{"id":"2489655472","type":"DeleteEvent","actor":{"id":3806695,"login":"aaaaalbert","gravatar_id":"","url":"https://api.github.com/users/aaaaalbert","avatar_url":"https://avatars.githubusercontent.com/u/3806695?"},"repo":{"id":20314870,"name":"SeattleTestbed/SeattleOnAndroid","url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid"},"payload":{"ref":"fix-https","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:09:34Z","org":{"id":7329722,"login":"SeattleTestbed","gravatar_id":"","url":"https://api.github.com/orgs/SeattleTestbed","avatar_url":"https://avatars.githubusercontent.com/u/7329722?"}} +,{"id":"2489655473","type":"CreateEvent","actor":{"id":92577,"login":"upsilon","gravatar_id":"","url":"https://api.github.com/users/upsilon","avatar_url":"https://avatars.githubusercontent.com/u/92577?"},"repo":{"id":28688725,"name":"upsilon/yacq","url":"https://api.github.com/repos/upsilon/yacq"},"payload":{"ref":"fix-dotinvoke","ref_type":"branch","master_branch":"develop","description":"Yet Another Compilable Query Language for .NET, based on Expression Trees API","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:09:34Z"} +,{"id":"2489655474","type":"PushEvent","actor":{"id":9979168,"login":"PromGames","gravatar_id":"","url":"https://api.github.com/users/PromGames","avatar_url":"https://avatars.githubusercontent.com/u/9979168?"},"repo":{"id":28622975,"name":"PromGames/Coursedrawer","url":"https://api.github.com/repos/PromGames/Coursedrawer"},"payload":{"push_id":536865974,"size":0,"distinct_size":0,"ref":"refs/heads/master","head":"e88a1d5f0e99f484979e544f82c855d6dd578a7f","before":"e88a1d5f0e99f484979e544f82c855d6dd578a7f","commits":[]},"public":true,"created_at":"2015-01-01T15:09:34Z"} +,{"id":"2489655479","type":"IssuesEvent","actor":{"id":934401,"login":"genodeftest","gravatar_id":"","url":"https://api.github.com/users/genodeftest","avatar_url":"https://avatars.githubusercontent.com/u/934401?"},"repo":{"id":7001805,"name":"OpenSecurityResearch/ciphertest","url":"https://api.github.com/repos/OpenSecurityResearch/ciphertest"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/OpenSecurityResearch/ciphertest/issues/6","labels_url":"https://api.github.com/repos/OpenSecurityResearch/ciphertest/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/OpenSecurityResearch/ciphertest/issues/6/comments","events_url":"https://api.github.com/repos/OpenSecurityResearch/ciphertest/issues/6/events","html_url":"https://github.com/OpenSecurityResearch/ciphertest/issues/6","id":53221518,"number":6,"title":"Forward security connections are ignored (don't even get tested)","user":{"login":"genodeftest","id":934401,"avatar_url":"https://avatars.githubusercontent.com/u/934401?v=3","gravatar_id":"","url":"https://api.github.com/users/genodeftest","html_url":"https://github.com/genodeftest","followers_url":"https://api.github.com/users/genodeftest/followers","following_url":"https://api.github.com/users/genodeftest/following{/other_user}","gists_url":"https://api.github.com/users/genodeftest/gists{/gist_id}","starred_url":"https://api.github.com/users/genodeftest/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/genodeftest/subscriptions","organizations_url":"https://api.github.com/users/genodeftest/orgs","repos_url":"https://api.github.com/users/genodeftest/repos","events_url":"https://api.github.com/users/genodeftest/events{/privacy}","received_events_url":"https://api.github.com/users/genodeftest/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:09:35Z","updated_at":"2015-01-01T15:09:35Z","closed_at":null,"body":"I wondered why ciphertest didn't display any Diffie-Hellman ciphers. My installed version of GNUtls tells me that it does support them (just run `gnutls-cli -l`).\r\nComparing the outputs of https://www.ssllabs.com/ssltest/analyze.html?d=github.com with `ciphertest github.com 443` won't show any DH, only some AES- and ARCFOUR- ciphers.\r\n"}},"public":true,"created_at":"2015-01-01T15:09:35Z","org":{"id":1873076,"login":"OpenSecurityResearch","gravatar_id":"","url":"https://api.github.com/orgs/OpenSecurityResearch","avatar_url":"https://avatars.githubusercontent.com/u/1873076?"}} +,{"id":"2489655480","type":"PushEvent","actor":{"id":8278290,"login":"azat385","gravatar_id":"","url":"https://api.github.com/users/azat385","avatar_url":"https://avatars.githubusercontent.com/u/8278290?"},"repo":{"id":25000895,"name":"azat385/db","url":"https://api.github.com/repos/azat385/db"},"payload":{"push_id":536865981,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"15843a0883e88c06a0cf13128f70ec5d35d1a06e","before":"c7aa6dc71057fe15077784d1c4608e9eb4ecd17c","commits":[{"sha":"15843a0883e88c06a0cf13128f70ec5d35d1a06e","author":{"email":"dc76e9f0c0006e8f919e0c515c66dbba3982f785@rpiplc00.(none)","name":"root"},"message":"autoupdate 2015-01-01-18:09:01","distinct":true,"url":"https://api.github.com/repos/azat385/db/commits/15843a0883e88c06a0cf13128f70ec5d35d1a06e"}]},"public":true,"created_at":"2015-01-01T15:09:35Z"} +,{"id":"2489655481","type":"PushEvent","actor":{"id":2335377,"login":"def-","gravatar_id":"","url":"https://api.github.com/users/def-","avatar_url":"https://avatars.githubusercontent.com/u/2335377?"},"repo":{"id":21067069,"name":"def-/Nimrod","url":"https://api.github.com/repos/def-/Nimrod"},"payload":{"push_id":536865980,"size":2,"distinct_size":2,"ref":"refs/heads/devel","head":"e751a0af573a5a65eaaabf15fecb1f1c010b6bf6","before":"13e07f5d667c569355470a56e8a730ca8a1862e5","commits":[{"sha":"2ee24013360649d9ec3749e5dcdce37716900854","author":{"email":"135dcb83a9ab360d374a6872197bb8d57db605a4@web.de","name":"Araq"},"message":"fixes #1774","distinct":true,"url":"https://api.github.com/repos/def-/Nimrod/commits/2ee24013360649d9ec3749e5dcdce37716900854"},{"sha":"e751a0af573a5a65eaaabf15fecb1f1c010b6bf6","author":{"email":"135dcb83a9ab360d374a6872197bb8d57db605a4@web.de","name":"Araq"},"message":"Merge branch 'devel' of https://github.com/Araq/Nim into devel","distinct":true,"url":"https://api.github.com/repos/def-/Nimrod/commits/e751a0af573a5a65eaaabf15fecb1f1c010b6bf6"}]},"public":true,"created_at":"2015-01-01T15:09:35Z"} +,{"id":"2489655484","type":"PushEvent","actor":{"id":2266445,"login":"littleguy77","gravatar_id":"","url":"https://api.github.com/users/littleguy77","avatar_url":"https://avatars.githubusercontent.com/u/2266445?"},"repo":{"id":16059800,"name":"mupen64plus-ae/mupen64plus-rsp-hle","url":"https://api.github.com/repos/mupen64plus-ae/mupen64plus-rsp-hle"},"payload":{"push_id":536865982,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"06dcda465ed5f7d90e34aafe8a1ea9e075a132a6","before":"8fc144d9c31d5e09b04ec6b83e92c9762cf041ba","commits":[{"sha":"06dcda465ed5f7d90e34aafe8a1ea9e075a132a6","author":{"email":"3284d2bbee488692d686f402dfa36007d3fba8b4@live.com","name":"littleguy77"},"message":"Create README.md\n\nThis fork is obsolete and should no longer be used.\r\n\r\nmupen64plus-ae is now using a completely vanilla implementation of mupen64plus-rsp-hle.","distinct":true,"url":"https://api.github.com/repos/mupen64plus-ae/mupen64plus-rsp-hle/commits/06dcda465ed5f7d90e34aafe8a1ea9e075a132a6"}]},"public":true,"created_at":"2015-01-01T15:09:35Z","org":{"id":6227843,"login":"mupen64plus-ae","gravatar_id":"","url":"https://api.github.com/orgs/mupen64plus-ae","avatar_url":"https://avatars.githubusercontent.com/u/6227843?"}} +,{"id":"2489655486","type":"IssueCommentEvent","actor":{"id":1369274,"login":"hanneskod","gravatar_id":"","url":"https://api.github.com/users/hanneskod","avatar_url":"https://avatars.githubusercontent.com/u/1369274?"},"repo":{"id":26334899,"name":"psecio/parse","url":"https://api.github.com/repos/psecio/parse"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/psecio/parse/issues/23","labels_url":"https://api.github.com/repos/psecio/parse/issues/23/labels{/name}","comments_url":"https://api.github.com/repos/psecio/parse/issues/23/comments","events_url":"https://api.github.com/repos/psecio/parse/issues/23/events","html_url":"https://github.com/psecio/parse/pull/23","id":53080688,"number":23,"title":"Add \"unit\" tests that test against parsed code","user":{"login":"redbeardcreator","id":375927,"avatar_url":"https://avatars.githubusercontent.com/u/375927?v=3","gravatar_id":"","url":"https://api.github.com/users/redbeardcreator","html_url":"https://github.com/redbeardcreator","followers_url":"https://api.github.com/users/redbeardcreator/followers","following_url":"https://api.github.com/users/redbeardcreator/following{/other_user}","gists_url":"https://api.github.com/users/redbeardcreator/gists{/gist_id}","starred_url":"https://api.github.com/users/redbeardcreator/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/redbeardcreator/subscriptions","organizations_url":"https://api.github.com/users/redbeardcreator/orgs","repos_url":"https://api.github.com/users/redbeardcreator/repos","events_url":"https://api.github.com/users/redbeardcreator/events{/privacy}","received_events_url":"https://api.github.com/users/redbeardcreator/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":5,"created_at":"2014-12-29T23:25:05Z","updated_at":"2015-01-01T15:09:35Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/psecio/parse/pulls/23","html_url":"https://github.com/psecio/parse/pull/23","diff_url":"https://github.com/psecio/parse/pull/23.diff","patch_url":"https://github.com/psecio/parse/pull/23.patch"},"body":"Implements Issue #22.\r\n\r\nUnder `tests/Psecio/Parse`, implemented `ParseTest.php`,\r\n`ParseTestVisitor.php` and `Tests/TestSessionRegenFalse_ParseTest.php` (yeah,\r\ncrazy name there. May need to figure out a better naming convention).\r\n\r\n* `ParseTest.php` implements an abstract base class for all the parsing-based\r\n tests.\r\n* `ParseTestVisitor.php` implements a simple parse tree visitor for use in\r\n testing.\r\n* `Tests/TestSessionRegenFalse_ParseTest.php` implements several parse string\r\n tests for `TestSessionRegenFalse`, including one for the problem I found and\r\n fixed in PR #15.\r\n* `Tests/TestAvoidGlobalsUse_ParseTest.php` implements parse string tests for\r\n `TestAvoidGlobalsUse`.\r\n\r\nImplementing a test is as simple as creating a test case that extends\r\n`\\tests\\Psecio\\Parse\\ParseTest`. It must implement `parseSampleProvider()` and\r\n`buildTest()`. The `buildTest()` method should return an instance of the unit\r\nunder test (e.g. `TestSessionRegenFalse`). Then `parseSampleProvider()` should\r\nreturn a list of PHP code string (with initial `\nSigned-off-by: Rafael J. Wysocki \nSigned-off-by: Greg Kroah-Hartman \nSigned-off-by: Pranav Vashi ","distinct":true,"url":"https://api.github.com/repos/DerRomtester/one_plus_one/commits/41afe8e92cd99d62bc165c1ec89a7db434bd9f44"},{"sha":"010c3095c5f5cfb84b71a7073717e91a55fabf77","author":{"email":"3ded2f39a78f0d7044839546f95841842b4d7c96@ideasonboard.com","name":"Laurent Pinchart"},"message":"drivers: dma-contiguous: Don't redefine SZ_1M\n\nUse the definition from linux/sizes.h instead.\n\nSigned-off-by: Laurent Pinchart \nSigned-off-by: Marek Szyprowski \nSigned-off-by: Pranav Vashi ","distinct":true,"url":"https://api.github.com/repos/DerRomtester/one_plus_one/commits/010c3095c5f5cfb84b71a7073717e91a55fabf77"}]},"public":true,"created_at":"2015-01-01T15:09:49Z"} +,{"id":"2489655577","type":"ForkEvent","actor":{"id":37095,"login":"htom78","gravatar_id":"","url":"https://api.github.com/users/htom78","avatar_url":"https://avatars.githubusercontent.com/u/37095?"},"repo":{"id":28370606,"name":"monw3c/angularjs_pingan","url":"https://api.github.com/repos/monw3c/angularjs_pingan"},"payload":{"forkee":{"id":28688774,"name":"angularjs_pingan","full_name":"htom78/angularjs_pingan","owner":{"login":"htom78","id":37095,"avatar_url":"https://avatars.githubusercontent.com/u/37095?v=3","gravatar_id":"","url":"https://api.github.com/users/htom78","html_url":"https://github.com/htom78","followers_url":"https://api.github.com/users/htom78/followers","following_url":"https://api.github.com/users/htom78/following{/other_user}","gists_url":"https://api.github.com/users/htom78/gists{/gist_id}","starred_url":"https://api.github.com/users/htom78/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/htom78/subscriptions","organizations_url":"https://api.github.com/users/htom78/orgs","repos_url":"https://api.github.com/users/htom78/repos","events_url":"https://api.github.com/users/htom78/events{/privacy}","received_events_url":"https://api.github.com/users/htom78/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/htom78/angularjs_pingan","description":"平安银行社区微信端angularjs版","fork":true,"url":"https://api.github.com/repos/htom78/angularjs_pingan","forks_url":"https://api.github.com/repos/htom78/angularjs_pingan/forks","keys_url":"https://api.github.com/repos/htom78/angularjs_pingan/keys{/key_id}","collaborators_url":"https://api.github.com/repos/htom78/angularjs_pingan/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/htom78/angularjs_pingan/teams","hooks_url":"https://api.github.com/repos/htom78/angularjs_pingan/hooks","issue_events_url":"https://api.github.com/repos/htom78/angularjs_pingan/issues/events{/number}","events_url":"https://api.github.com/repos/htom78/angularjs_pingan/events","assignees_url":"https://api.github.com/repos/htom78/angularjs_pingan/assignees{/user}","branches_url":"https://api.github.com/repos/htom78/angularjs_pingan/branches{/branch}","tags_url":"https://api.github.com/repos/htom78/angularjs_pingan/tags","blobs_url":"https://api.github.com/repos/htom78/angularjs_pingan/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/htom78/angularjs_pingan/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/htom78/angularjs_pingan/git/refs{/sha}","trees_url":"https://api.github.com/repos/htom78/angularjs_pingan/git/trees{/sha}","statuses_url":"https://api.github.com/repos/htom78/angularjs_pingan/statuses/{sha}","languages_url":"https://api.github.com/repos/htom78/angularjs_pingan/languages","stargazers_url":"https://api.github.com/repos/htom78/angularjs_pingan/stargazers","contributors_url":"https://api.github.com/repos/htom78/angularjs_pingan/contributors","subscribers_url":"https://api.github.com/repos/htom78/angularjs_pingan/subscribers","subscription_url":"https://api.github.com/repos/htom78/angularjs_pingan/subscription","commits_url":"https://api.github.com/repos/htom78/angularjs_pingan/commits{/sha}","git_commits_url":"https://api.github.com/repos/htom78/angularjs_pingan/git/commits{/sha}","comments_url":"https://api.github.com/repos/htom78/angularjs_pingan/comments{/number}","issue_comment_url":"https://api.github.com/repos/htom78/angularjs_pingan/issues/comments/{number}","contents_url":"https://api.github.com/repos/htom78/angularjs_pingan/contents/{+path}","compare_url":"https://api.github.com/repos/htom78/angularjs_pingan/compare/{base}...{head}","merges_url":"https://api.github.com/repos/htom78/angularjs_pingan/merges","archive_url":"https://api.github.com/repos/htom78/angularjs_pingan/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/htom78/angularjs_pingan/downloads","issues_url":"https://api.github.com/repos/htom78/angularjs_pingan/issues{/number}","pulls_url":"https://api.github.com/repos/htom78/angularjs_pingan/pulls{/number}","milestones_url":"https://api.github.com/repos/htom78/angularjs_pingan/milestones{/number}","notifications_url":"https://api.github.com/repos/htom78/angularjs_pingan/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/htom78/angularjs_pingan/labels{/name}","releases_url":"https://api.github.com/repos/htom78/angularjs_pingan/releases{/id}","created_at":"2015-01-01T15:09:48Z","updated_at":"2015-01-01T15:09:45Z","pushed_at":"2014-12-31T07:33:52Z","git_url":"git://github.com/htom78/angularjs_pingan.git","ssh_url":"git@github.com:htom78/angularjs_pingan.git","clone_url":"https://github.com/htom78/angularjs_pingan.git","svn_url":"https://github.com/htom78/angularjs_pingan","homepage":null,"size":908,"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:09:49Z"} +,{"id":"2489655578","type":"PushEvent","actor":{"id":3173564,"login":"noelslevin","gravatar_id":"","url":"https://api.github.com/users/noelslevin","avatar_url":"https://avatars.githubusercontent.com/u/3173564?"},"repo":{"id":18819592,"name":"noelslevin/fantasyf1-site","url":"https://api.github.com/repos/noelslevin/fantasyf1-site"},"payload":{"push_id":536866030,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"730580d48b5700c16a73baf700860c5e86bdf17c","before":"fd50730b1f33baf53d1f0c0202fe2f59955150b2","commits":[{"sha":"730580d48b5700c16a73baf700860c5e86bdf17c","author":{"email":"c77e20340d29f24134b11c1433c9ffe3fc1a6c71@gmail.com","name":"Noel Slevin"},"message":"Added SASS / Gulp / source files\n\nAdded the files required by Gulp and SASS, along with all other source\nfiles, which will compile to the assets/ folder.","distinct":true,"url":"https://api.github.com/repos/noelslevin/fantasyf1-site/commits/730580d48b5700c16a73baf700860c5e86bdf17c"}]},"public":true,"created_at":"2015-01-01T15:09:49Z"} +,{"id":"2489655579","type":"IssuesEvent","actor":{"id":864627,"login":"Lunatrius","gravatar_id":"","url":"https://api.github.com/users/Lunatrius","avatar_url":"https://avatars.githubusercontent.com/u/864627?"},"repo":{"id":6422358,"name":"Lunatrius/Schematica","url":"https://api.github.com/repos/Lunatrius/Schematica"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/Lunatrius/Schematica/issues/66","labels_url":"https://api.github.com/repos/Lunatrius/Schematica/issues/66/labels{/name}","comments_url":"https://api.github.com/repos/Lunatrius/Schematica/issues/66/comments","events_url":"https://api.github.com/repos/Lunatrius/Schematica/issues/66/events","html_url":"https://github.com/Lunatrius/Schematica/issues/66","id":53071526,"number":66,"title":"When i load any schematic, minecraft crashes","user":{"login":"drummerboy1449","id":10343115,"avatar_url":"https://avatars.githubusercontent.com/u/10343115?v=3","gravatar_id":"","url":"https://api.github.com/users/drummerboy1449","html_url":"https://github.com/drummerboy1449","followers_url":"https://api.github.com/users/drummerboy1449/followers","following_url":"https://api.github.com/users/drummerboy1449/following{/other_user}","gists_url":"https://api.github.com/users/drummerboy1449/gists{/gist_id}","starred_url":"https://api.github.com/users/drummerboy1449/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/drummerboy1449/subscriptions","organizations_url":"https://api.github.com/users/drummerboy1449/orgs","repos_url":"https://api.github.com/users/drummerboy1449/repos","events_url":"https://api.github.com/users/drummerboy1449/events{/privacy}","received_events_url":"https://api.github.com/users/drummerboy1449/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/Lunatrius/Schematica/labels/duplicate","name":"duplicate","color":"cccccc"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-12-29T21:03:09Z","updated_at":"2015-01-01T15:09:49Z","closed_at":"2015-01-01T15:09:49Z","body":"```\r\n---- Minecraft Crash Report ----\r\n// I just don't know what went wrong :(\r\n\r\nTime: 12/29/14 2:52 PM\r\nDescription: Unexpected error\r\n\r\njava.lang.IllegalAccessError: tried to access field net.minecraft.client.renderer.RenderGlobal.field_72768_k from class com.github.lunatrius.schematica.handler.client.TickHandler\r\n\tat com.github.lunatrius.schematica.handler.client.TickHandler.checkDirty(TickHandler.java:72)\r\n\tat com.github.lunatrius.schematica.handler.client.TickHandler.onClientTick(TickHandler.java:54)\r\n\tat cpw.mods.fml.common.eventhandler.ASMEventHandler_80_TickHandler_onClientTick_ClientTickEvent.invoke(.dynamic)\r\n\tat cpw.mods.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:54)\r\n\tat cpw.mods.fml.common.eventhandler.EventBus.post(EventBus.java:138)\r\n\tat cpw.mods.fml.common.FMLCommonHandler.onPostClientTick(FMLCommonHandler.java:330)\r\n\tat net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:2053)\r\n\tat net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:962)\r\n\tat net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:887)\r\n\tat net.minecraft.client.main.Main.main(SourceFile:148)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)\r\n\tat java.lang.reflect.Method.invoke(Unknown Source)\r\n\tat net.minecraft.launchwrapper.Launch.launch(Launch.java:135)\r\n\tat net.minecraft.launchwrapper.Launch.main(Launch.java:28)\r\n\r\n\r\nA detailed walkthrough of the error, its code path and all known details is as follows:\r\n---------------------------------------------------------------------------------------\r\n\r\n-- Head --\r\nStacktrace:\r\n\tat com.github.lunatrius.schematica.handler.client.TickHandler.checkDirty(TickHandler.java:72)\r\n\tat com.github.lunatrius.schematica.handler.client.TickHandler.onClientTick(TickHandler.java:54)\r\n\tat cpw.mods.fml.common.eventhandler.ASMEventHandler_80_TickHandler_onClientTick_ClientTickEvent.invoke(.dynamic)\r\n\tat cpw.mods.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:54)\r\n\tat cpw.mods.fml.common.eventhandler.EventBus.post(EventBus.java:138)\r\n\tat cpw.mods.fml.common.FMLCommonHandler.onPostClientTick(FMLCommonHandler.java:330)\r\n\r\n-- Affected level --\r\nDetails:\r\n\tLevel name: MpServer\r\n\tAll players: 2 total; [EntityClientPlayerMP['drummerboy1449'/29, l='MpServer', x=841.06, y=70.62, z=736.93], MCH_ViewEntityDummy['MissingName'/116, l='MpServer', x=881.28, y=63.34, z=763.89]]\r\n\tChunk stats: MultiplayerChunkCache: 589, 598\r\n\tLevel seed: 0\r\n\tLevel generator: ID 00 - default, ver 1. Features enabled: false\r\n\tLevel generator options: \r\n\tLevel spawn location: World: (192,64,208), Chunk: (at 0,4,0 in 12,13; contains blocks 192,0,208 to 207,255,223), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)\r\n\tLevel time: 76855 game time, 35775 day time\r\n\tLevel dimension: 0\r\n\tLevel storage version: 0x00000 - Unknown?\r\n\tLevel weather: Rain time: 0 (now: false), thunder time: 0 (now: false)\r\n\tLevel game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false\r\n\tForced entities: 94 total; [EntitySquid['Squid'/51771, l='MpServer', x=902.50, y=58.88, z=774.19], MCP_EntityPlane['entity.mcheli.MCH.E.Plane.name'/275, l='MpServer', x=880.00, y=63.34, z=761.03], EntitySpider['Spider'/52304, l='MpServer', x=867.50, y=22.00, z=661.50], EntitySquid['Squid'/51770, l='MpServer', x=898.75, y=55.84, z=788.94], EntitySquid['Squid'/51773, l='MpServer', x=905.31, y=57.75, z=775.50], MCH_EntitySeat['entity.mcheli.MCH.E.Seat.name'/277, l='MpServer', x=880.19, y=63.68, z=760.25], EntitySquid['Squid'/51772, l='MpServer', x=900.59, y=59.38, z=792.69], EntitySkeleton['Skeleton'/51463, l='MpServer', x=917.50, y=32.00, z=743.50], EntityWitch['Witch'/51459, l='MpServer', x=915.50, y=26.00, z=715.50], EntityItem['item.tile.mushroom'/51183, l='MpServer', x=901.72, y=26.13, z=750.84], EntitySkeleton['Skeleton'/51208, l='MpServer', x=854.66, y=33.00, z=682.88], EntitySkeleton['Skeleton'/52293, l='MpServer', x=852.69, y=34.00, z=684.22], EntitySkeleton['Skeleton'/52294, l='MpServer', x=855.50, y=32.00, z=676.50], EntityBat['Bat'/51200, l='MpServer', x=852.59, y=40.82, z=694.70], EntityPig['Pig'/51254, l='MpServer', x=825.50, y=74.00, z=787.97], EntityPig['Pig'/51253, l='MpServer', x=825.84, y=74.00, z=786.47], EntityPig['Pig'/51252, l='MpServer', x=824.22, y=74.00, z=785.22], EntityPig['Pig'/51251, l='MpServer', x=826.50, y=68.00, z=783.50], EntityCreeper['Creeper'/51488, l='MpServer', x=912.50, y=32.00, z=733.50], EntitySheep['Sheep'/51250, l='MpServer', x=819.47, y=75.00, z=780.50], EntitySheep['Sheep'/51249, l='MpServer', x=816.50, y=68.00, z=778.50], EntityClientPlayerMP['drummerboy1449'/29, l='MpServer', x=841.06, y=70.62, z=736.93], EntitySheep['Sheep'/51248, l='MpServer', x=817.50, y=75.00, z=777.50], EntityZombie['Zombie'/51995, l='MpServer', x=842.72, y=59.00, z=758.16], EntitySkeleton['Skeleton'/51994, l='MpServer', x=851.50, y=35.00, z=688.50], EntitySheep['Sheep'/51247, l='MpServer', x=820.53, y=75.00, z=780.50], EntityCreeper['Creeper'/51514, l='MpServer', x=890.50, y=60.00, z=663.50], EntityZombie['Zombie'/51996, l='MpServer', x=859.66, y=17.00, z=685.47], EntityPig['Pig'/51238, l='MpServer', x=850.88, y=69.00, z=764.22], EntityPig['Pig'/51237, l='MpServer', x=847.56, y=68.00, z=757.25], EntitySpider['Spider'/51989, l='MpServer', x=857.94, y=38.00, z=682.66], EntityPig['Pig'/50862, l='MpServer', x=781.50, y=70.00, z=692.50], EntityPig['Pig'/50861, l='MpServer', x=783.50, y=69.00, z=688.50], EntitySheep['Sheep'/51122, l='MpServer', x=877.50, y=74.00, z=730.50], EntitySheep['Sheep'/51123, l='MpServer', x=879.50, y=65.00, z=729.47], EntitySheep['Sheep'/51124, l='MpServer', x=879.50, y=65.00, z=730.81], EntitySheep['Sheep'/51125, l='MpServer', x=881.63, y=63.00, z=741.47], EntityCreeper['Creeper'/51536, l='MpServer', x=850.50, y=57.00, z=761.50], EntitySkeleton['Skeleton'/52277, l='MpServer', x=855.50, y=32.00, z=678.50], EntityZombie['Zombie'/52274, l='MpServer', x=849.50, y=38.00, z=688.50], EntitySquid['Squid'/51791, l='MpServer', x=872.88, y=55.38, z=795.75], MCH_ViewEntityDummy['MissingName'/116, l='MpServer', x=881.28, y=63.34, z=763.89], EntityBat['Bat'/51582, l='MpServer', x=900.94, y=37.80, z=756.03], EntitySquid['Squid'/51783, l='MpServer', x=894.50, y=46.34, z=798.31], EntityZombie['Zombie'/52266, l='MpServer', x=850.50, y=38.00, z=693.50], EntityPig['Pig'/51061, l='MpServer', x=811.50, y=67.00, z=727.50], EntitySkeleton['Skeleton'/52682, l='MpServer', x=834.11, y=58.00, z=757.50], EntityPig['Pig'/51060, l='MpServer', x=811.50, y=67.00, z=723.50], EntitySkeleton['Skeleton'/52681, l='MpServer', x=839.56, y=59.00, z=758.66], EntityPig['Pig'/51063, l='MpServer', x=811.50, y=67.00, z=719.50], EntitySkeleton['Skeleton'/52680, l='MpServer', x=841.06, y=59.00, z=758.56], EntityPig['Pig'/51062, l='MpServer', x=815.94, y=66.00, z=717.75], EntitySkeleton['Skeleton'/52676, l='MpServer', x=841.91, y=59.00, z=759.63], EntityBat['Bat'/51334, l='MpServer', x=907.61, y=28.53, z=718.14], EntityZombie['Zombie'/52703, l='MpServer', x=874.50, y=22.00, z=660.50], EntitySkeleton['Skeleton'/51340, l='MpServer', x=906.50, y=27.00, z=704.50], EntityBat['Bat'/52694, l='MpServer', x=892.50, y=45.25, z=756.36], EntityBat['Bat'/52695, l='MpServer', x=898.22, y=49.78, z=755.09], EntityBat['Bat'/51336, l='MpServer', x=903.28, y=36.52, z=753.72], EntityBat['Bat'/52692, l='MpServer', x=888.25, y=50.38, z=755.34], EntityPig['Pig'/50809, l='MpServer', x=785.50, y=68.00, z=687.50], EntityBat['Bat'/52693, l='MpServer', x=898.38, y=45.03, z=755.00], EntityPig['Pig'/50808, l='MpServer', x=784.50, y=69.00, z=685.50], EntityZombie['Zombie'/51383, l='MpServer', x=863.44, y=36.00, z=704.09], EntityZombie['Zombie'/52704, l='MpServer', x=873.50, y=22.00, z=661.50], EntityPig['Pig'/50763, l='MpServer', x=893.63, y=79.00, z=658.53], EntitySkeleton['Skeleton'/52114, l='MpServer', x=916.50, y=24.00, z=717.50], EntityItem['item.item.seeds'/52458, l='MpServer', x=877.44, y=64.13, z=691.94], EntitySkeleton['Skeleton'/52112, l='MpServer', x=844.53, y=13.00, z=682.94], EntityPig['Pig'/51012, l='MpServer', x=818.50, y=64.00, z=711.50], EntityZombie['Zombie'/52113, l='MpServer', x=854.34, y=15.00, z=684.34], EntityPig['Pig'/51010, l='MpServer', x=821.53, y=64.00, z=710.78], EntityZombie['Zombie'/51632, l='MpServer', x=920.50, y=14.00, z=763.50], EntityPig['Pig'/51011, l='MpServer', x=822.78, y=64.00, z=709.19], EntityZombie['Zombie'/51633, l='MpServer', x=920.50, y=14.00, z=762.50], EntityPig['Pig'/51008, l='MpServer', x=770.50, y=77.00, z=706.50], EntityItem['item.item.seeds'/52460, l='MpServer', x=821.19, y=63.13, z=718.19], EntityPig['Pig'/51009, l='MpServer', x=820.22, y=64.00, z=710.50], EntityZombie['Zombie'/51644, l='MpServer', x=854.59, y=46.00, z=713.88], EntitySkeleton['Skeleton'/51645, l='MpServer', x=844.66, y=59.00, z=757.69], EntityZombie['Zombie'/51374, l='MpServer', x=874.31, y=47.00, z=703.30], EntityBat['Bat'/51373, l='MpServer', x=901.03, y=38.61, z=754.78], EntityBat['Bat'/51372, l='MpServer', x=905.38, y=39.89, z=751.63], EntityZombie['Zombie'/51370, l='MpServer', x=918.50, y=29.00, z=709.50], EntityZombie['Zombie'/51650, l='MpServer', x=887.50, y=53.00, z=759.50], EntityPig['Pig'/51005, l='MpServer', x=771.50, y=77.00, z=708.50], EntityPig['Pig'/51007, l='MpServer', x=771.50, y=77.00, z=708.50], EntityPig['Pig'/51006, l='MpServer', x=773.50, y=76.00, z=709.50], EntityBat['Bat'/51392, l='MpServer', x=921.00, y=32.14, z=720.03], EntityCreeper['Creeper'/51401, l='MpServer', x=894.50, y=52.00, z=759.50], EntityBat['Bat'/51443, l='MpServer', x=840.92, y=47.61, z=770.15], EntityZombie['Zombie'/52666, l='MpServer', x=867.50, y=41.00, z=681.50], EntityCreeper['Creeper'/52667, l='MpServer', x=904.50, y=32.00, z=748.50], EntityBat['Bat'/51919, l='MpServer', x=876.63, y=26.00, z=793.78]]\r\n\tRetry entities: 0 total; []\r\n\tServer brand: fml,forge\r\n\tServer type: Integrated singleplayer server\r\nStacktrace:\r\n\tat net.minecraft.client.multiplayer.WorldClient.func_72914_a(WorldClient.java:373)\r\n\tat net.minecraft.client.Minecraft.func_71396_d(Minecraft.java:2433)\r\n\tat net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:916)\r\n\tat net.minecraft.client.main.Main.main(SourceFile:148)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)\r\n\tat java.lang.reflect.Method.invoke(Unknown Source)\r\n\tat net.minecraft.launchwrapper.Launch.launch(Launch.java:135)\r\n\tat net.minecraft.launchwrapper.Launch.main(Launch.java:28)\r\n\r\n-- System Details --\r\nDetails:\r\n\tMinecraft Version: 1.7.10\r\n\tOperating System: Windows 8 (amd64) version 6.2\r\n\tJava Version: 1.7.0_10, Oracle Corporation\r\n\tJava VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation\r\n\tMemory: 441383416 bytes (420 MB) / 914587648 bytes (872 MB) up to 1060372480 bytes (1011 MB)\r\n\tJVM Flags: 6 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx1G -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:-UseAdaptiveSizePolicy -Xmn128M\r\n\tAABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used\r\n\tIntCache: cache: 0, tcache: 0, allocated: 13, tallocated: 95\r\n\tFML: MCP v9.05 FML v7.10.85.1277 Minecraft Forge 10.13.2.1277 Optifine OptiFine_1.7.10_HD_B4 12 mods loaded, 12 mods active\r\n\tmcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tFML{7.10.85.1277} [Forge Mod Loader] (forge-1.7.10-10.13.2.1277.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tForge{10.13.2.1277} [Minecraft Forge] (forge-1.7.10-10.13.2.1277.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\t{000} [CoFH ASM Data Initialization] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tCoFHCore{1.7.10R3.0.0B9} [CoFH Core] (CoFHCore-[1.7.10]3.0.0B9-70.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tArtifice{1.7.10R1.1.4} [Artifice] (Artifice-1.7.10-1.1.4-310.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tflansmod{4.9.0} [Flan's Mod] (Flans Mod-1.7.10-4.9.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tinventorytweaks{1.58-147-645ca10} [Inventory Tweaks] (InventoryTweaks-1.58-147.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tjourneymap{5.0.1} [JourneyMap] (JourneyMap5.0.1_Unlimited_MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tLunatriusCore{1.1.2.18} [LunatriusCore] (LunatriusCore-1.7.10-1.1.2.18-universal.jar.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tmcheli{0.10.4} [MC Helicopter] (mcheli) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tSchematica{1.7.4.106} [Schematica] (Schematica-1.7.10-1.7.4.106-universal.jar.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tLaunched Version: 1.7.10-Forge10.13.2.1277\r\n\tLWJGL: 2.9.1\r\n\tOpenGL: AMD Radeon HD 7560D GL version 4.2.12422 Compatibility Profile Context 13.152.1.1000, ATI Technologies Inc.\r\n\tGL Caps: Using GL 1.3 multitexturing.\r\nUsing framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.\r\nAnisotropic filtering is supported and maximum anisotropy is 16.\r\nShaders are available because OpenGL 2.1 is supported.\r\n\r\n\tIs Modded: Definitely; Client brand changed to 'fml,forge'\r\n\tType: Client (map_client.txt)\r\n\tResource Packs: []\r\n\tCurrent Language: English (US)\r\n\tProfiler Position: N/A (disabled)\r\n\tVec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used\r\n\tAnisotropic Filtering: Off (1)\r\n```"}},"public":true,"created_at":"2015-01-01T15:09:49Z"} +,{"id":"2489655580","type":"PushEvent","actor":{"id":398496,"login":"LudovicRousseau","gravatar_id":"","url":"https://api.github.com/users/LudovicRousseau","avatar_url":"https://avatars.githubusercontent.com/u/398496?"},"repo":{"id":6838904,"name":"OpenSC/engine_pkcs11","url":"https://api.github.com/repos/OpenSC/engine_pkcs11"},"payload":{"push_id":536866031,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0c93ddba34ada2393c6776dc3736e4c5bd35eecc","before":"3f8af6823ec2f9a093a4ff282f3546cf42a46a0e","commits":[{"sha":"0c93ddba34ada2393c6776dc3736e4c5bd35eecc","author":{"email":"4d37b5b136fbbc441e77a9794302478fef70bb5a@gmail.com","name":"Ludovic Rousseau"},"message":"Add OpenSSL Configuration\n\nAgain thanks to Petr Pisar email http://sourceforge.net/p/opensc/mailman/message/33195530/","distinct":true,"url":"https://api.github.com/repos/OpenSC/engine_pkcs11/commits/0c93ddba34ada2393c6776dc3736e4c5bd35eecc"}]},"public":true,"created_at":"2015-01-01T15:09:49Z","org":{"id":895249,"login":"OpenSC","gravatar_id":"","url":"https://api.github.com/orgs/OpenSC","avatar_url":"https://avatars.githubusercontent.com/u/895249?"}} +,{"id":"2489655581","type":"PushEvent","actor":{"id":1088217,"login":"NSElvis","gravatar_id":"","url":"https://api.github.com/users/NSElvis","avatar_url":"https://avatars.githubusercontent.com/u/1088217?"},"repo":{"id":25025210,"name":"hyperoslo/NSManagedObject-HYPPropertyMapper","url":"https://api.github.com/repos/hyperoslo/NSManagedObject-HYPPropertyMapper"},"payload":{"push_id":536866032,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ed938e6de11d9f14464ed899f8d0b44ab7dd41d1","before":"84174bfe9c1031c84261ee4c30fb996639a36780","commits":[{"sha":"ed938e6de11d9f14464ed899f8d0b44ab7dd41d1","author":{"email":"df9a0a899c73ca190349c65d43feb34d3cc01b04@users.noreply.github.com","name":"Elvis Nuñez"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/hyperoslo/NSManagedObject-HYPPropertyMapper/commits/ed938e6de11d9f14464ed899f8d0b44ab7dd41d1"}]},"public":true,"created_at":"2015-01-01T15:09:49Z","org":{"id":1340892,"login":"hyperoslo","gravatar_id":"","url":"https://api.github.com/orgs/hyperoslo","avatar_url":"https://avatars.githubusercontent.com/u/1340892?"}} +,{"id":"2489655582","type":"PushEvent","actor":{"id":564941,"login":"kimsama","gravatar_id":"","url":"https://api.github.com/users/kimsama","avatar_url":"https://avatars.githubusercontent.com/u/564941?"},"repo":{"id":27857842,"name":"kimsama/Unity-SpreadsheetPro","url":"https://api.github.com/repos/kimsama/Unity-SpreadsheetPro"},"payload":{"push_id":536866033,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"8fae71b9cae8910da367c295b9beeaea6bdb42e6","before":"3fd2795670213601b117cbd972c3d856ff56a114","commits":[{"sha":"f301e21dd57a7a757699d597691c855eba87d184","author":{"email":"ff1230a337cf2c09d6bde50879a4d13ae997b25e@gmail.com","name":"kimsama"},"message":"fixed not to pass null path to the GUILayout.TextField.","distinct":true,"url":"https://api.github.com/repos/kimsama/Unity-SpreadsheetPro/commits/f301e21dd57a7a757699d597691c855eba87d184"},{"sha":"8fae71b9cae8910da367c295b9beeaea6bdb42e6","author":{"email":"ff1230a337cf2c09d6bde50879a4d13ae997b25e@gmail.com","name":"kimsama"},"message":"- added DataFile path to BaseMachine class which contains the created asset file path.\n- modified to select sheet from popup editor control not by directly typing it.\n- changed inspector setting for intuitive way.\n- fixed several bugs.","distinct":true,"url":"https://api.github.com/repos/kimsama/Unity-SpreadsheetPro/commits/8fae71b9cae8910da367c295b9beeaea6bdb42e6"}]},"public":true,"created_at":"2015-01-01T15:09:49Z"} +,{"id":"2489655590","type":"IssueCommentEvent","actor":{"id":86065,"login":"YorickPeterse","gravatar_id":"","url":"https://api.github.com/users/YorickPeterse","avatar_url":"https://avatars.githubusercontent.com/u/86065?"},"repo":{"id":27,"name":"rubinius/rubinius","url":"https://api.github.com/repos/rubinius/rubinius"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/rubinius/rubinius/issues/3230","labels_url":"https://api.github.com/repos/rubinius/rubinius/issues/3230/labels{/name}","comments_url":"https://api.github.com/repos/rubinius/rubinius/issues/3230/comments","events_url":"https://api.github.com/repos/rubinius/rubinius/issues/3230/events","html_url":"https://github.com/rubinius/rubinius/issues/3230","id":51092093,"number":3230,"title":"Some format pattern of String#% causes SEGV when to jit","user":{"login":"ryoqun","id":117807,"avatar_url":"https://avatars.githubusercontent.com/u/117807?v=3","gravatar_id":"","url":"https://api.github.com/users/ryoqun","html_url":"https://github.com/ryoqun","followers_url":"https://api.github.com/users/ryoqun/followers","following_url":"https://api.github.com/users/ryoqun/following{/other_user}","gists_url":"https://api.github.com/users/ryoqun/gists{/gist_id}","starred_url":"https://api.github.com/users/ryoqun/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ryoqun/subscriptions","organizations_url":"https://api.github.com/users/ryoqun/orgs","repos_url":"https://api.github.com/users/ryoqun/repos","events_url":"https://api.github.com/users/ryoqun/events{/privacy}","received_events_url":"https://api.github.com/users/ryoqun/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/rubinius/rubinius/labels/crash","name":"crash","color":"ff0000"},{"url":"https://api.github.com/repos/rubinius/rubinius/labels/JIT","name":"JIT","color":"a6d18e"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-12-05T12:09:44Z","updated_at":"2015-01-01T15:09:50Z","closed_at":null,"body":"Maybe sprinter generates illegal bytecode sequence.\r\n\r\nI got busy recently. No further digging... I'd like to fix this if time allows me... ;)\r\n\r\nThis is the one-liner\r\n\r\n```\r\n./bin/mspec --repeat 100000 spec/ruby/core/string/modulo_spec.rb\r\n```\r\n\r\n```\r\nAssertion failed: (Val && \"isa<> used on a null pointer\"), function doit, file /usr/local/Cellar/llvm/3.5.0/include/llvm/Support/Casting.h, line 95.\r\nThe Rubinius process is aborting with signal: SIGABRT\r\n--- begin system info ---\r\nsysname: Darwin\r\nnodename: foobar\r\nrelease: 13.3.0\r\nversion: Darwin Kernel Version 13.3.0: Tue Jun 3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64\r\nmachine: x86_64\r\n--- end system info ---\r\n--- begin system backtrace ---\r\n0 rbx 0x000000010905cb48 _ZN8rubiniusL12segv_handlerEi + 248\r\n1 libsystem_platform.dylib 0x00007fff8d3065aa _sigtramp + 26\r\n2 ??? 0x0000000000000000 0x0 + 0\r\n3 rbx 0x000000010997ed2b abort + 22\r\n4 rbx 0x000000010997ed15 abort + 0\r\n5 rbx 0x000000010912e8e7 _ZN4llvm9IRBuilderILb1ENS_14ConstantFolderEN8rubinius26IRBuilderInserterWithDebugEE10CreateICmpENS_7CmpInst9PredicateEPNS_5ValueES8_RKNS_5TwineE + 247\r\n6 rbx 0x000000010915da39 _ZN8rubinius8JITVisit24check_for_exception_thenEPN4llvm5ValueEPNS1_10BasicBlockEb + 217\r\n7 rbx 0x0000000109165a87 _ZN8rubinius8JITVisit19check_for_exceptionEPN4llvm5ValueEb + 119\r\n8 rbx 0x0000000109153192 _ZN8rubinius8JITVisit16visit_send_stackERmm + 1298\r\n9 rbx 0x00000001091487bd _ZN8rubinius17VisitInstructionsINS_8JITVisitEE8dispatchEi + 1917\r\n10 rbx 0x0000000109147fc3 _ZN8rubinius3jit6Walker4callERNS_14OpcodeIteratorE + 131\r\n11 rbx 0x0000000109147d3e _ZN8rubinius3jit17ControlFlowWalker3runINS0_6WalkerEEEvRT_ + 446\r\n12 rbx 0x0000000109145f7e _ZN8rubinius3jit7Builder13generate_bodyEv + 590\r\n13 rbx 0x00000001091676a0 _ZN8rubinius3jit8Compiler13compile_blockEPNS_17JITCompileRequestE + 624\r\n14 rbx 0x000000010917dbeb _ZN8rubinius9LLVMState7performEPNS_5StateE + 1083\r\n15 rbx 0x000000010917d78c _ZN8rubinius19jit_llvm_trampolineEPNS_5StateE + 28\r\n16 rbx 0x00000001090ed97b _ZN8rubinius6Thread13in_new_threadEPv + 747\r\n17 libsystem_pthread.dylib 0x00007fff9744e899 _pthread_body + 138\r\n18 libsystem_pthread.dylib 0x00007fff9744e72a _pthread_struct_init + 0\r\n19 libsystem_pthread.dylib 0x00007fff97452fc9 thread_start + 13\r\n--- end system backtrace ---\r\n--- begin Ruby backtraces ---\r\n--- Thread 1 backtrace ---\r\nRubinius::Mirror.reflect in kernel/bootstrap/mirror.rb:12 (+0 jit)\r\nRubinius::Mirror::Array.reflect in kernel/bootstrap/array_mirror.rb:7 (+3 jit)\r\nArray#initialize_copy in kernel/common/array.rb:85 (+31 inline)\r\nKernel#initialize_dup in kernel/common/kernel.rb:358 (+0 jit)\r\nRubinius::Type.object_initialize_dup in kernel/common/type.rb:493 (+0 jit)\r\nKernel#dup in kernel/alpha.rb:207 (+22 inline)\r\n__block__ in kernel/common/enumerable.rb:328 (+0 jit)\r\nArray#each in kernel/bootstrap/array.rb:76 (+51 jit)\r\nEnumerable#all? in kernel/common/enumerable.rb:328 (+7 inline)\r\nContextState#protect in /Users/ryo-onodera/rubinius-central/mspec/lib/mspec/runner/context.rb:178 (+18 inline)\r\n__block__ in /Users/ryo-onodera/rubinius-central/mspec/lib/mspec/runner/context.rb:210 (+79 jit)\r\n__block__ in /Users/ryo-onodera/rubinius-central/mspec/lib/mspec/runner/mspec.rb:239 (+0 jit)\r\nInteger#times in kernel/common/integer.rb:196 (+31)\r\nMSpec.repeat in /Users/ryo-onodera/rubinius-central/mspec/lib/mspec/runner/mspec.rb:238 (+12)\r\n__block__ in /Users/ryo-onodera/rubinius-central/mspec/lib/mspec/runner/context.rb:200 (+7)\r\nArray#each in kernel/bootstrap/array.rb:76 (+51 jit)\r\nContextState#process in /Users/ryo-onodera/rubinius-central/mspec/lib/mspec/runner/context.rb:199 (+71)\r\nMSpec.describe in /Users/ryo-onodera/rubinius-central/mspec/lib/mspec/runner/mspec.rb:0 (+108)\r\nObject#describe in /Users/ryo-onodera/rubinius-central/mspec/lib/mspec/runner/object.rb:11 (+42)\r\nObject#__script__ in /Users/ryo-onodera/rubinius-central/spec/ruby/core/string/modulo_spec.rb:4 (+46)\r\nKernel.load in kernel/common/kernel.rb:497 (+58)\r\n__block__ in /Users/ryo-onodera/rubinius-central/mspec/lib/mspec/runner/mspec.rb:57 (+8)\r\nBasicObject#instance_eval in kernel/common/eval.rb:43 (+120)\r\nMSpec.protect in /Users/ryo-onodera/rubinius-central/mspec/lib/mspec/runner/mspec.rb:69 (+29)\r\n__block__ in /Users/ryo-onodera/rubinius-central/mspec/lib/mspec/runner/mspec.rb:57 (+68)\r\nArray#each in kernel/bootstrap/array.rb:76 (+51 jit)\r\nMSpec.files in /Users/ryo-onodera/rubinius-central/mspec/lib/mspec/runner/mspec.rb:51 (+42)\r\nMSpec.process in /Users/ryo-onodera/rubinius-central/mspec/lib/mspec/runner/mspec.rb:43 (+11)\r\nMSpecRun#run in /Users/ryo-onodera/rubinius-central/mspec/lib/mspec/commands/mspec-run.rb:94 (+35)\r\nMSpecScript.main in /Users/ryo-onodera/rubinius-central/mspec/lib/mspec/utils/script.rb:218 (+67)\r\nObject#__script__ in /Users/ryo-onodera/rubinius-central/mspec/bin/mspec-run:8 (+47)\r\nRubinius::CodeLoader#load_script in kernel/delta/code_loader.rb:66 (+52)\r\nRubinius::CodeLoader.load_script in kernel/delta/code_loader.rb:152 (+40)\r\nRubinius::Loader#script in kernel/loader.rb:645 (+214)\r\nRubinius::Loader#main in kernel/loader.rb:799 (+77)\r\n```"},"comment":{"url":"https://api.github.com/repos/rubinius/rubinius/issues/comments/68488688","html_url":"https://github.com/rubinius/rubinius/issues/3230#issuecomment-68488688","issue_url":"https://api.github.com/repos/rubinius/rubinius/issues/3230","id":68488688,"user":{"login":"YorickPeterse","id":86065,"avatar_url":"https://avatars.githubusercontent.com/u/86065?v=3","gravatar_id":"","url":"https://api.github.com/users/YorickPeterse","html_url":"https://github.com/YorickPeterse","followers_url":"https://api.github.com/users/YorickPeterse/followers","following_url":"https://api.github.com/users/YorickPeterse/following{/other_user}","gists_url":"https://api.github.com/users/YorickPeterse/gists{/gist_id}","starred_url":"https://api.github.com/users/YorickPeterse/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/YorickPeterse/subscriptions","organizations_url":"https://api.github.com/users/YorickPeterse/orgs","repos_url":"https://api.github.com/users/YorickPeterse/repos","events_url":"https://api.github.com/users/YorickPeterse/events{/privacy}","received_events_url":"https://api.github.com/users/YorickPeterse/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:09:50Z","updated_at":"2015-01-01T15:09:50Z","body":"@ryoqun I can't seem to reproduce this on Linux, can you provide the _full_ GDB stacktrace (`thread apply all bt` in GDB) so I can have a look where it fails?"}},"public":true,"created_at":"2015-01-01T15:09:50Z","org":{"id":317747,"login":"rubinius","gravatar_id":"","url":"https://api.github.com/orgs/rubinius","avatar_url":"https://avatars.githubusercontent.com/u/317747?"}} +,{"id":"2489655591","type":"PushEvent","actor":{"id":6587210,"login":"EmilAleksandrov","gravatar_id":"","url":"https://api.github.com/users/EmilAleksandrov","avatar_url":"https://avatars.githubusercontent.com/u/6587210?"},"repo":{"id":28593309,"name":"EmilAleksandrov/PracticalProject-OnlineAds","url":"https://api.github.com/repos/EmilAleksandrov/PracticalProject-OnlineAds"},"payload":{"push_id":536866039,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"799f9bb8e9ae710bf845f74e1d7238e7c87c76ca","before":"b6429f884d5f33288af857e36937bbe66e2a3a5d","commits":[{"sha":"799f9bb8e9ae710bf845f74e1d7238e7c87c76ca","author":{"email":"5a18d12f372cb890f7a3930223687493602f3246@gmail.com","name":"Aleksandrov"},"message":"Set town sorting functionalities","distinct":true,"url":"https://api.github.com/repos/EmilAleksandrov/PracticalProject-OnlineAds/commits/799f9bb8e9ae710bf845f74e1d7238e7c87c76ca"}]},"public":true,"created_at":"2015-01-01T15:09:51Z"} +,{"id":"2489655594","type":"PushEvent","actor":{"id":1275914,"login":"paulgibbs","gravatar_id":"","url":"https://api.github.com/users/paulgibbs","avatar_url":"https://avatars.githubusercontent.com/u/1275914?"},"repo":{"id":21067831,"name":"paulgibbs/BuddyPress","url":"https://api.github.com/repos/paulgibbs/BuddyPress"},"payload":{"push_id":536866043,"size":1,"distinct_size":1,"ref":"refs/heads/media-extractor","head":"6f3da5713993f8cceb697c8056ae05c8ef10251e","before":"21c42065881807f34680681bbee22a0e34523e47","commits":[{"sha":"6f3da5713993f8cceb697c8056ae05c8ef10251e","author":{"email":"a027184a55211cd23e3f3094f1fdc728df5e0500@byotos.com","name":"Paul Gibbs"},"message":"First pass at shortcodes.","distinct":true,"url":"https://api.github.com/repos/paulgibbs/BuddyPress/commits/6f3da5713993f8cceb697c8056ae05c8ef10251e"}]},"public":true,"created_at":"2015-01-01T15:09:51Z"} +,{"id":"2489655602","type":"IssueCommentEvent","actor":{"id":910419,"login":"darkdiplomat","gravatar_id":"","url":"https://api.github.com/users/darkdiplomat","avatar_url":"https://avatars.githubusercontent.com/u/910419?"},"repo":{"id":14273258,"name":"CanaryModTeam/CanaryMod","url":"https://api.github.com/repos/CanaryModTeam/CanaryMod"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/CanaryModTeam/CanaryMod/issues/159","labels_url":"https://api.github.com/repos/CanaryModTeam/CanaryMod/issues/159/labels{/name}","comments_url":"https://api.github.com/repos/CanaryModTeam/CanaryMod/issues/159/comments","events_url":"https://api.github.com/repos/CanaryModTeam/CanaryMod/issues/159/events","html_url":"https://github.com/CanaryModTeam/CanaryMod/issues/159","id":53217554,"number":159,"title":"[Bleeding] ItemPickupHook doesn't fire","user":{"login":"mikeboers","id":130470,"avatar_url":"https://avatars.githubusercontent.com/u/130470?v=3","gravatar_id":"","url":"https://api.github.com/users/mikeboers","html_url":"https://github.com/mikeboers","followers_url":"https://api.github.com/users/mikeboers/followers","following_url":"https://api.github.com/users/mikeboers/following{/other_user}","gists_url":"https://api.github.com/users/mikeboers/gists{/gist_id}","starred_url":"https://api.github.com/users/mikeboers/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mikeboers/subscriptions","organizations_url":"https://api.github.com/users/mikeboers/orgs","repos_url":"https://api.github.com/users/mikeboers/repos","events_url":"https://api.github.com/users/mikeboers/events{/privacy}","received_events_url":"https://api.github.com/users/mikeboers/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/CanaryModTeam/CanaryMod/labels/invalid","name":"invalid","color":"e6e6e6"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T11:00:30Z","updated_at":"2015-01-01T15:09:54Z","closed_at":null,"body":"I'm not 100% on this one, but it seems like the code to fire ItemPickupHook exists in `InventoryPlayer.canPickup(EntityItem)`, but not in `InventoryPlayer.a(ItemStack)` (which, according to the comments, is the real deal)."},"comment":{"url":"https://api.github.com/repos/CanaryModTeam/CanaryMod/issues/comments/68488690","html_url":"https://github.com/CanaryModTeam/CanaryMod/issues/159#issuecomment-68488690","issue_url":"https://api.github.com/repos/CanaryModTeam/CanaryMod/issues/159","id":68488690,"user":{"login":"darkdiplomat","id":910419,"avatar_url":"https://avatars.githubusercontent.com/u/910419?v=3","gravatar_id":"","url":"https://api.github.com/users/darkdiplomat","html_url":"https://github.com/darkdiplomat","followers_url":"https://api.github.com/users/darkdiplomat/followers","following_url":"https://api.github.com/users/darkdiplomat/following{/other_user}","gists_url":"https://api.github.com/users/darkdiplomat/gists{/gist_id}","starred_url":"https://api.github.com/users/darkdiplomat/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/darkdiplomat/subscriptions","organizations_url":"https://api.github.com/users/darkdiplomat/orgs","repos_url":"https://api.github.com/users/darkdiplomat/repos","events_url":"https://api.github.com/users/darkdiplomat/events{/privacy}","received_events_url":"https://api.github.com/users/darkdiplomat/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:09:54Z","updated_at":"2015-01-01T15:09:54Z","body":"This has already been address https://github.com/CanaryModTeam/CanaryMod/commit/5aa56827cf28039c6f9c859aba140624382e547e"}},"public":true,"created_at":"2015-01-01T15:09:54Z","org":{"id":5757946,"login":"CanaryModTeam","gravatar_id":"","url":"https://api.github.com/orgs/CanaryModTeam","avatar_url":"https://avatars.githubusercontent.com/u/5757946?"}} +,{"id":"2489655603","type":"WatchEvent","actor":{"id":374604,"login":"ofus","gravatar_id":"","url":"https://api.github.com/users/ofus","avatar_url":"https://avatars.githubusercontent.com/u/374604?"},"repo":{"id":1060945,"name":"adoxa/ansicon","url":"https://api.github.com/repos/adoxa/ansicon"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:09:54Z"} +,{"id":"2489655604","type":"PushEvent","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":{"push_id":536866044,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"56a89344b4d1a21df6b23d853dc62dfa1ee6ac2b","before":"81a6c84110f6158b76d42f15b747f599919aac5e","commits":[{"sha":"56a89344b4d1a21df6b23d853dc62dfa1ee6ac2b","author":{"email":"2ccc17987c73fc834fd934a2b3338c718ccc8d8a@qq.com","name":"maybezi"},"message":"add the 2nd file","distinct":true,"url":"https://api.github.com/repos/maybezi/project/commits/56a89344b4d1a21df6b23d853dc62dfa1ee6ac2b"}]},"public":true,"created_at":"2015-01-01T15:09:54Z"} +,{"id":"2489655606","type":"PushEvent","actor":{"id":10245296,"login":"smnicolas","gravatar_id":"","url":"https://api.github.com/users/smnicolas","avatar_url":"https://avatars.githubusercontent.com/u/10245296?"},"repo":{"id":28431341,"name":"smnicolas/elisp-functions","url":"https://api.github.com/repos/smnicolas/elisp-functions"},"payload":{"push_id":536866046,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ab78c8af392df36efa0caeee72e911a8685ca0bf","before":"a214cfb94fd0140b9a2f151ae261924047e043ce","commits":[{"sha":"ab78c8af392df36efa0caeee72e911a8685ca0bf","author":{"email":"a6971160dadf390a2e57fa4eb71a0685b312b8c1@gmail.com","name":"smnicolas"},"message":"agrego func concat-with-strings-whithin-list","distinct":true,"url":"https://api.github.com/repos/smnicolas/elisp-functions/commits/ab78c8af392df36efa0caeee72e911a8685ca0bf"}]},"public":true,"created_at":"2015-01-01T15:09:54Z"} +,{"id":"2489655607","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":24326265,"name":"hex7c0/nodejs-hash-performance","url":"https://api.github.com/repos/hex7c0/nodejs-hash-performance"},"payload":{"push_id":536866048,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c8647306719b3b3384b79f616ca833aa8f7fe30e","before":"e5d1edadfc56d9196678b057baa91cbc7b13eb5b","commits":[{"sha":"c8647306719b3b3384b79f616ca833aa8f7fe30e","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"travis docker","distinct":true,"url":"https://api.github.com/repos/hex7c0/nodejs-hash-performance/commits/c8647306719b3b3384b79f616ca833aa8f7fe30e"}]},"public":true,"created_at":"2015-01-01T15:09:54Z"} +,{"id":"2489655608","type":"PushEvent","actor":{"id":1324396,"login":"eblondel","gravatar_id":"","url":"https://api.github.com/users/eblondel","avatar_url":"https://avatars.githubusercontent.com/u/1324396?"},"repo":{"id":27925150,"name":"gradesystem/grade-glue","url":"https://api.github.com/repos/gradesystem/grade-glue"},"payload":{"push_id":536866047,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0117555dca834dd76984dff849d4e38f0543fd8b","before":"f0971cbbfb20d5a0c14af1a4617c04b1fd8225c6","commits":[{"sha":"0117555dca834dd76984dff849d4e38f0543fd8b","author":{"email":"29fdb710ff7f4d7c679826c01fd7d49a7ef38d56@gmail.com","name":"eblondel"},"message":"jaxb serial ids","distinct":true,"url":"https://api.github.com/repos/gradesystem/grade-glue/commits/0117555dca834dd76984dff849d4e38f0543fd8b"}]},"public":true,"created_at":"2015-01-01T15:09:54Z","org":{"id":8547439,"login":"gradesystem","gravatar_id":"","url":"https://api.github.com/orgs/gradesystem","avatar_url":"https://avatars.githubusercontent.com/u/8547439?"}} +,{"id":"2489655613","type":"PushEvent","actor":{"id":2767023,"login":"ajcowking","gravatar_id":"","url":"https://api.github.com/users/ajcowking","avatar_url":"https://avatars.githubusercontent.com/u/2767023?"},"repo":{"id":28688727,"name":"ajcowking/hello-world","url":"https://api.github.com/repos/ajcowking/hello-world"},"payload":{"push_id":536866052,"size":1,"distinct_size":1,"ref":"refs/heads/readme-edits","head":"e92444c129135b12d41b310d6ca029dad300cdbc","before":"83dc45814451d7b7ef044fa5339809f377e65a85","commits":[{"sha":"e92444c129135b12d41b310d6ca029dad300cdbc","author":{"email":"b7ae4ef9faf575da064a5c0b89ebd128a325d2db@users.noreply.github.com","name":"Adam Cowking"},"message":"Finish README\n\nAnd mention moon tacos","distinct":true,"url":"https://api.github.com/repos/ajcowking/hello-world/commits/e92444c129135b12d41b310d6ca029dad300cdbc"}]},"public":true,"created_at":"2015-01-01T15:09:55Z"} +,{"id":"2489655616","type":"PushEvent","actor":{"id":9542232,"login":"irrigator","gravatar_id":"","url":"https://api.github.com/users/irrigator","avatar_url":"https://avatars.githubusercontent.com/u/9542232?"},"repo":{"id":28683832,"name":"irrigator/microscope","url":"https://api.github.com/repos/irrigator/microscope"},"payload":{"push_id":536866055,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"98347f0996e9c0625ce5c0eec5fb8e6420b1653e","before":"af84f861d3f7bdffe3905da5d7df9cb76973f59f","commits":[{"sha":"98347f0996e9c0625ce5c0eec5fb8e6420b1653e","author":{"email":"f94118b113b0d177d1be13a7820565f4be358060@yeah.net","name":"Junyu Zhan"},"message":"add basic structure","distinct":true,"url":"https://api.github.com/repos/irrigator/microscope/commits/98347f0996e9c0625ce5c0eec5fb8e6420b1653e"}]},"public":true,"created_at":"2015-01-01T15:09:55Z"} +,{"id":"2489655619","type":"IssuesEvent","actor":{"id":910419,"login":"darkdiplomat","gravatar_id":"","url":"https://api.github.com/users/darkdiplomat","avatar_url":"https://avatars.githubusercontent.com/u/910419?"},"repo":{"id":14273258,"name":"CanaryModTeam/CanaryMod","url":"https://api.github.com/repos/CanaryModTeam/CanaryMod"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/CanaryModTeam/CanaryMod/issues/159","labels_url":"https://api.github.com/repos/CanaryModTeam/CanaryMod/issues/159/labels{/name}","comments_url":"https://api.github.com/repos/CanaryModTeam/CanaryMod/issues/159/comments","events_url":"https://api.github.com/repos/CanaryModTeam/CanaryMod/issues/159/events","html_url":"https://github.com/CanaryModTeam/CanaryMod/issues/159","id":53217554,"number":159,"title":"[Bleeding] ItemPickupHook doesn't fire","user":{"login":"mikeboers","id":130470,"avatar_url":"https://avatars.githubusercontent.com/u/130470?v=3","gravatar_id":"","url":"https://api.github.com/users/mikeboers","html_url":"https://github.com/mikeboers","followers_url":"https://api.github.com/users/mikeboers/followers","following_url":"https://api.github.com/users/mikeboers/following{/other_user}","gists_url":"https://api.github.com/users/mikeboers/gists{/gist_id}","starred_url":"https://api.github.com/users/mikeboers/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mikeboers/subscriptions","organizations_url":"https://api.github.com/users/mikeboers/orgs","repos_url":"https://api.github.com/users/mikeboers/repos","events_url":"https://api.github.com/users/mikeboers/events{/privacy}","received_events_url":"https://api.github.com/users/mikeboers/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/CanaryModTeam/CanaryMod/labels/invalid","name":"invalid","color":"e6e6e6"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T11:00:30Z","updated_at":"2015-01-01T15:09:56Z","closed_at":"2015-01-01T15:09:56Z","body":"I'm not 100% on this one, but it seems like the code to fire ItemPickupHook exists in `InventoryPlayer.canPickup(EntityItem)`, but not in `InventoryPlayer.a(ItemStack)` (which, according to the comments, is the real deal)."}},"public":true,"created_at":"2015-01-01T15:09:56Z","org":{"id":5757946,"login":"CanaryModTeam","gravatar_id":"","url":"https://api.github.com/orgs/CanaryModTeam","avatar_url":"https://avatars.githubusercontent.com/u/5757946?"}} +,{"id":"2489655620","type":"PushEvent","actor":{"id":287491,"login":"ummels","gravatar_id":"","url":"https://api.github.com/users/ummels","avatar_url":"https://avatars.githubusercontent.com/u/287491?"},"repo":{"id":27677770,"name":"ummels/scala-prioritymap","url":"https://api.github.com/repos/ummels/scala-prioritymap"},"payload":{"push_id":536866057,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d020082c4b4984c1199deeaf936daa8b8e7df294","before":"be16fd5b9d0d5494092a66502cfba1abe8419f3b","commits":[{"sha":"d020082c4b4984c1199deeaf936daa8b8e7df294","author":{"email":"17b9e1c64588c7fa6419b4d29dc1f4426279ba01@ummels.de","name":"Michael Ummels"},"message":"Simplified build definition","distinct":true,"url":"https://api.github.com/repos/ummels/scala-prioritymap/commits/d020082c4b4984c1199deeaf936daa8b8e7df294"}]},"public":true,"created_at":"2015-01-01T15:09:56Z"} +,{"id":"2489655622","type":"PushEvent","actor":{"id":385172,"login":"scige","gravatar_id":"","url":"https://api.github.com/users/scige","avatar_url":"https://avatars.githubusercontent.com/u/385172?"},"repo":{"id":24279495,"name":"scige/crystal","url":"https://api.github.com/repos/scige/crystal"},"payload":{"push_id":536866058,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"16cd07c2385c9dc2ffadcbc83115702fa3f9573b","before":"cd2121f8ff8ed49b46263574b7db925e9ed7257d","commits":[{"sha":"16cd07c2385c9dc2ffadcbc83115702fa3f9573b","author":{"email":"6258d135121af297bcc853939601b6b058bd7925@gmail.com","name":"scige"},"message":"fix a bug and add an order button","distinct":true,"url":"https://api.github.com/repos/scige/crystal/commits/16cd07c2385c9dc2ffadcbc83115702fa3f9573b"}]},"public":true,"created_at":"2015-01-01T15:09:56Z"} +,{"id":"2489655623","type":"IssueCommentEvent","actor":{"id":1525481,"login":"timholy","gravatar_id":"","url":"https://api.github.com/users/timholy","avatar_url":"https://avatars.githubusercontent.com/u/1525481?"},"repo":{"id":1644196,"name":"JuliaLang/julia","url":"https://api.github.com/repos/JuliaLang/julia"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/JuliaLang/julia/issues/9536","labels_url":"https://api.github.com/repos/JuliaLang/julia/issues/9536/labels{/name}","comments_url":"https://api.github.com/repos/JuliaLang/julia/issues/9536/comments","events_url":"https://api.github.com/repos/JuliaLang/julia/issues/9536/events","html_url":"https://github.com/JuliaLang/julia/issues/9536","id":53220829,"number":9536,"title":"Presumed dispatch error on tuple types","user":{"login":"timholy","id":1525481,"avatar_url":"https://avatars.githubusercontent.com/u/1525481?v=3","gravatar_id":"","url":"https://api.github.com/users/timholy","html_url":"https://github.com/timholy","followers_url":"https://api.github.com/users/timholy/followers","following_url":"https://api.github.com/users/timholy/following{/other_user}","gists_url":"https://api.github.com/users/timholy/gists{/gist_id}","starred_url":"https://api.github.com/users/timholy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timholy/subscriptions","organizations_url":"https://api.github.com/users/timholy/orgs","repos_url":"https://api.github.com/users/timholy/repos","events_url":"https://api.github.com/users/timholy/events{/privacy}","received_events_url":"https://api.github.com/users/timholy/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T14:33:00Z","updated_at":"2015-01-01T15:09:56Z","closed_at":null,"body":"I have no idea how reproducible this is, but I'm filing it while I have all the output.\r\n\r\nI was testing #9493 and starting julia as `JULIA_CPU_CORES=1 julia --code-coverage=all --inline=no`, after deleting `sys.so`, and then `include(\"runtests.jl\")` in the `test/` folder. Tests completed successfully up to `resolve.jl`, which gave the following error:\r\n```\r\n...\r\n * version\r\n * resolve\r\nexception on 1: ERROR: test error in expression: sanity_tst(deps_data)\r\nBoundsError()\r\n in getindex at tuple.jl:6\r\n in hash at tuple.jl:90\r\n in hash at tuple.jl:88\r\n in hash at version.jl:159\r\n in ht_keyindex at dict.jl:501\r\n in haskey at dict.jl:657\r\n in deps_from_data at resolve.jl:65\r\n in sanity_tst at resolve.jl:88\r\n in sanity_tst at resolve.jl:98\r\n in anonymous at test.jl:85\r\n in do_test at test.jl:47\r\n in include at boot.jl:242\r\n in runtests at /home/tim/src/julia/test/testdefs.jl:5\r\n in anonymous at multi.jl:642\r\n in run_work_thunk at multi.jl:603\r\n in remotecall_fetch at multi.jl:676\r\n in remotecall_fetch at multi.jl:691\r\n in anonymous at task.jl:1614\r\nwhile loading resolve.jl, in expression starting on line 436\r\nERROR: test error in expression: sanity_tst(deps_data)\r\nBoundsError()\r\n in getindex at tuple.jl:6\r\n in hash at tuple.jl:90\r\n in hash at tuple.jl:88\r\n in hash at version.jl:159\r\n in ht_keyindex at dict.jl:501\r\n in haskey at dict.jl:657\r\n in deps_from_data at resolve.jl:65\r\n in sanity_tst at resolve.jl:88\r\n in sanity_tst at resolve.jl:98\r\n in anonymous at test.jl:85\r\n in do_test at test.jl:47\r\n in include at boot.jl:242\r\n in runtests at /home/tim/src/julia/test/testdefs.jl:5\r\n in anonymous at multi.jl:642\r\n in run_work_thunk at multi.jl:603\r\n in remotecall_fetch at multi.jl:676\r\n in remotecall_fetch at multi.jl:691\r\n in anonymous at task.jl:1614\r\nwhile loading resolve.jl, in expression starting on line 436\r\nwhile loading /home/tim/src/julia/test/runtests.jl, in expression starting on line 42\r\n```\r\n[Here are the key lines](https://github.com/JuliaLang/julia/blob/29bfd0eef439fe6279f95e4a684ca24677e5691a/base/tuple.jl#L88-L90). I infer that it must have called line 90 when the tuple did not have sufficient length. (Looking forward to #9534!)"},"comment":{"url":"https://api.github.com/repos/JuliaLang/julia/issues/comments/68488691","html_url":"https://github.com/JuliaLang/julia/issues/9536#issuecomment-68488691","issue_url":"https://api.github.com/repos/JuliaLang/julia/issues/9536","id":68488691,"user":{"login":"timholy","id":1525481,"avatar_url":"https://avatars.githubusercontent.com/u/1525481?v=3","gravatar_id":"","url":"https://api.github.com/users/timholy","html_url":"https://github.com/timholy","followers_url":"https://api.github.com/users/timholy/followers","following_url":"https://api.github.com/users/timholy/following{/other_user}","gists_url":"https://api.github.com/users/timholy/gists{/gist_id}","starred_url":"https://api.github.com/users/timholy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timholy/subscriptions","organizations_url":"https://api.github.com/users/timholy/orgs","repos_url":"https://api.github.com/users/timholy/repos","events_url":"https://api.github.com/users/timholy/events{/privacy}","received_events_url":"https://api.github.com/users/timholy/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:09:56Z","updated_at":"2015-01-01T15:09:56Z","body":"I got it to fail again the same way, as long as I ran the whole sequence; just doing `using Base.Test; include(\"resolve.jl\")` does not trigger the error. I also inserted a `@show vn` in the test, and it turns out the version number that's triggering the problem is `v\"2.0.0-rc.1+bld\"`. To me that suggests `tuple.jl: 88` should be calling the hash method for the empty tuple (line 87) rather than the one for tuples longer than 2 elements (line 90).\r\n\r\nI wonder if this could be #8631?\r\n"}},"public":true,"created_at":"2015-01-01T15:09:56Z","org":{"id":743164,"login":"JuliaLang","gravatar_id":"","url":"https://api.github.com/orgs/JuliaLang","avatar_url":"https://avatars.githubusercontent.com/u/743164?"}} +,{"id":"2489655624","type":"CreateEvent","actor":{"id":1821081,"login":"ajschmaltz","gravatar_id":"","url":"https://api.github.com/users/ajschmaltz","avatar_url":"https://avatars.githubusercontent.com/u/1821081?"},"repo":{"id":28688661,"name":"ajschmaltz/TapQuote","url":"https://api.github.com/repos/ajschmaltz/TapQuote"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:09:56Z"} +,{"id":"2489655625","type":"PushEvent","actor":{"id":1029874,"login":"pommedeterresautee","gravatar_id":"","url":"https://api.github.com/users/pommedeterresautee","avatar_url":"https://avatars.githubusercontent.com/u/1029874?"},"repo":{"id":28487586,"name":"pommedeterresautee/xgboost","url":"https://api.github.com/repos/pommedeterresautee/xgboost"},"payload":{"push_id":536866059,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"8bbe45eed26f3a8fd87b574dd7c5eb4fce6c3fc1","before":"5e5500d6d3234f1d4ff8d61275df2afd7fbf894a","commits":[{"sha":"34aaeff3d9199c2fcf1b281e818a39e0cf185825","author":{"email":"174c368a77c7ad532d7e0bf19cd9c7fef4513b94@msn.com","name":"El Potaeto"},"message":"small documentation change","distinct":true,"url":"https://api.github.com/repos/pommedeterresautee/xgboost/commits/34aaeff3d9199c2fcf1b281e818a39e0cf185825"},{"sha":"a524a51a06f979e5ea4d6a14e5c6368c88549dd0","author":{"email":"174c368a77c7ad532d7e0bf19cd9c7fef4513b94@msn.com","name":"El Potaeto"},"message":"return history as data.table for cross validation + documentation","distinct":true,"url":"https://api.github.com/repos/pommedeterresautee/xgboost/commits/a524a51a06f979e5ea4d6a14e5c6368c88549dd0"},{"sha":"8bbe45eed26f3a8fd87b574dd7c5eb4fce6c3fc1","author":{"email":"174c368a77c7ad532d7e0bf19cd9c7fef4513b94@msn.com","name":"El Potaeto"},"message":"fix some missing imports","distinct":true,"url":"https://api.github.com/repos/pommedeterresautee/xgboost/commits/8bbe45eed26f3a8fd87b574dd7c5eb4fce6c3fc1"}]},"public":true,"created_at":"2015-01-01T15:09:56Z"} +,{"id":"2489655630","type":"PushEvent","actor":{"id":490356,"login":"srinivasmangipudi","gravatar_id":"","url":"https://api.github.com/users/srinivasmangipudi","avatar_url":"https://avatars.githubusercontent.com/u/490356?"},"repo":{"id":27528637,"name":"srinivasmangipudi/ethicsmonitor","url":"https://api.github.com/repos/srinivasmangipudi/ethicsmonitor"},"payload":{"push_id":536866064,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"97270db5df9b5705de0d8c0c23a2df0567004d65","before":"66b4e4cc3535481cd4e33bfbb3f077d37c8a34bc","commits":[{"sha":"97270db5df9b5705de0d8c0c23a2df0567004d65","author":{"email":"cc7bee3ff9cfe917c8e13cf20a34357c255723de@gmail.com","name":"Srinivas Mangipudi"},"message":"resized all responsive wrappers to 992 res. added user card responsive wrapper","distinct":true,"url":"https://api.github.com/repos/srinivasmangipudi/ethicsmonitor/commits/97270db5df9b5705de0d8c0c23a2df0567004d65"}]},"public":true,"created_at":"2015-01-01T15:09:56Z"} +,{"id":"2489655633","type":"IssueCommentEvent","actor":{"id":86403,"login":"arademaker","gravatar_id":"","url":"https://api.github.com/users/arademaker","avatar_url":"https://avatars.githubusercontent.com/u/86403?"},"repo":{"id":2924708,"name":"arademaker/openWordnet-PT","url":"https://api.github.com/repos/arademaker/openWordnet-PT"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/arademaker/openWordnet-PT/issues/53","labels_url":"https://api.github.com/repos/arademaker/openWordnet-PT/issues/53/labels{/name}","comments_url":"https://api.github.com/repos/arademaker/openWordnet-PT/issues/53/comments","events_url":"https://api.github.com/repos/arademaker/openWordnet-PT/issues/53/events","html_url":"https://github.com/arademaker/openWordnet-PT/issues/53","id":53202948,"number":53,"title":"pressentimento","user":{"login":"vcvpaiva","id":1154463,"avatar_url":"https://avatars.githubusercontent.com/u/1154463?v=3","gravatar_id":"","url":"https://api.github.com/users/vcvpaiva","html_url":"https://github.com/vcvpaiva","followers_url":"https://api.github.com/users/vcvpaiva/followers","following_url":"https://api.github.com/users/vcvpaiva/following{/other_user}","gists_url":"https://api.github.com/users/vcvpaiva/gists{/gist_id}","starred_url":"https://api.github.com/users/vcvpaiva/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vcvpaiva/subscriptions","organizations_url":"https://api.github.com/users/vcvpaiva/orgs","repos_url":"https://api.github.com/users/vcvpaiva/repos","events_url":"https://api.github.com/users/vcvpaiva/events{/privacy}","received_events_url":"https://api.github.com/users/vcvpaiva/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-12-31T20:52:57Z","updated_at":"2015-01-01T15:09:58Z","closed_at":null,"body":"(with-synset XXXXX\r\n(add \"...\")\r\n(remove \"...\"))\r\n\r\n(with-synset 07522128-n\r\n(add \"pressentimento\")\r\n)"},"comment":{"url":"https://api.github.com/repos/arademaker/openWordnet-PT/issues/comments/68488693","html_url":"https://github.com/arademaker/openWordnet-PT/issues/53#issuecomment-68488693","issue_url":"https://api.github.com/repos/arademaker/openWordnet-PT/issues/53","id":68488693,"user":{"login":"arademaker","id":86403,"avatar_url":"https://avatars.githubusercontent.com/u/86403?v=3","gravatar_id":"","url":"https://api.github.com/users/arademaker","html_url":"https://github.com/arademaker","followers_url":"https://api.github.com/users/arademaker/followers","following_url":"https://api.github.com/users/arademaker/following{/other_user}","gists_url":"https://api.github.com/users/arademaker/gists{/gist_id}","starred_url":"https://api.github.com/users/arademaker/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arademaker/subscriptions","organizations_url":"https://api.github.com/users/arademaker/orgs","repos_url":"https://api.github.com/users/arademaker/repos","events_url":"https://api.github.com/users/arademaker/events{/privacy}","received_events_url":"https://api.github.com/users/arademaker/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:09:58Z","updated_at":"2015-01-01T15:09:58Z","body":"Que tal também \r\n\r\n```\r\n(with-synset 07522128-n\r\n\t (add \"premonição\"))\r\n```\r\n??"}},"public":true,"created_at":"2015-01-01T15:09:59Z"} +,{"id":"2489655635","type":"IssueCommentEvent","actor":{"id":513512,"login":"sorlok","gravatar_id":"","url":"https://api.github.com/users/sorlok","avatar_url":"https://avatars.githubusercontent.com/u/513512?"},"repo":{"id":3319723,"name":"enigma-dev/enigma-dev","url":"https://api.github.com/repos/enigma-dev/enigma-dev"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/enigma-dev/enigma-dev/issues/866","labels_url":"https://api.github.com/repos/enigma-dev/enigma-dev/issues/866/labels{/name}","comments_url":"https://api.github.com/repos/enigma-dev/enigma-dev/issues/866/comments","events_url":"https://api.github.com/repos/enigma-dev/enigma-dev/issues/866/events","html_url":"https://github.com/enigma-dev/enigma-dev/issues/866","id":48995781,"number":866,"title":"Constants don't always play right with loading/reloading.","user":{"login":"sorlok","id":513512,"avatar_url":"https://avatars.githubusercontent.com/u/513512?v=3","gravatar_id":"","url":"https://api.github.com/users/sorlok","html_url":"https://github.com/sorlok","followers_url":"https://api.github.com/users/sorlok/followers","following_url":"https://api.github.com/users/sorlok/following{/other_user}","gists_url":"https://api.github.com/users/sorlok/gists{/gist_id}","starred_url":"https://api.github.com/users/sorlok/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sorlok/subscriptions","organizations_url":"https://api.github.com/users/sorlok/orgs","repos_url":"https://api.github.com/users/sorlok/repos","events_url":"https://api.github.com/users/sorlok/events{/privacy}","received_events_url":"https://api.github.com/users/sorlok/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/enigma-dev/enigma-dev/labels/Compiler","name":"Compiler","color":"444444"},{"url":"https://api.github.com/repos/enigma-dev/enigma-dev/labels/Confirmed","name":"Confirmed","color":"bfe5bf"},{"url":"https://api.github.com/repos/enigma-dev/enigma-dev/labels/Reproducible","name":"Reproducible","color":"009800"},{"url":"https://api.github.com/repos/enigma-dev/enigma-dev/labels/Task","name":"Task","color":"207de5"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":8,"created_at":"2014-11-16T16:12:37Z","updated_at":"2015-01-01T15:09:57Z","closed_at":null,"body":"First reported here: https://github.com/enigma-dev/enigma-dev/pull/864\r\n\r\nIf you are working on a new file and you edit constants, they work fine:\r\nhttps://www.youtube.com/watch?v=RTRMchiFzCg&feature=youtu.be\r\n\r\nHowever, if you are editing an existing file, the constants will never sync right. For example:\r\n1. Make a new, empty game. Save it as something.egm.\r\n2. Close, then re-open LGM. Open something.egm.\r\n3. Add some constants. They will not be reflected to the output file.\r\n\r\n*Edit:* I should add that this works regardless of format. Say, if you open an existing .gmd file with constants."},"comment":{"url":"https://api.github.com/repos/enigma-dev/enigma-dev/issues/comments/68488692","html_url":"https://github.com/enigma-dev/enigma-dev/issues/866#issuecomment-68488692","issue_url":"https://api.github.com/repos/enigma-dev/enigma-dev/issues/866","id":68488692,"user":{"login":"sorlok","id":513512,"avatar_url":"https://avatars.githubusercontent.com/u/513512?v=3","gravatar_id":"","url":"https://api.github.com/users/sorlok","html_url":"https://github.com/sorlok","followers_url":"https://api.github.com/users/sorlok/followers","following_url":"https://api.github.com/users/sorlok/following{/other_user}","gists_url":"https://api.github.com/users/sorlok/gists{/gist_id}","starred_url":"https://api.github.com/users/sorlok/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sorlok/subscriptions","organizations_url":"https://api.github.com/users/sorlok/orgs","repos_url":"https://api.github.com/users/sorlok/repos","events_url":"https://api.github.com/users/sorlok/events{/privacy}","received_events_url":"https://api.github.com/users/sorlok/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:09:57Z","updated_at":"2015-01-01T15:09:57Z","body":"@RobertBColton Really excited about this! Let me know when you have something to test. I can think of at least 3 games that depend on constants that this will fix!"}},"public":true,"created_at":"2015-01-01T15:09:59Z","org":{"id":332607,"login":"enigma-dev","gravatar_id":"","url":"https://api.github.com/orgs/enigma-dev","avatar_url":"https://avatars.githubusercontent.com/u/332607?"}} +,{"id":"2489655638","type":"CreateEvent","actor":{"id":1292469,"login":"simax","gravatar_id":"","url":"https://api.github.com/users/simax","avatar_url":"https://avatars.githubusercontent.com/u/1292469?"},"repo":{"id":24269406,"name":"simax/metime","url":"https://api.github.com/repos/simax/metime"},"payload":{"ref":"employee-maintenance","ref_type":"branch","master_branch":"master","description":"Collection of components that make up the holiday booking app \"MeTime\" ","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:09:59Z"} +,{"id":"2489655639","type":"CreateEvent","actor":{"id":7681448,"login":"mariten","gravatar_id":"","url":"https://api.github.com/users/mariten","avatar_url":"https://avatars.githubusercontent.com/u/7681448?"},"repo":{"id":20103894,"name":"mariten/kanatools-java","url":"https://api.github.com/repos/mariten/kanatools-java"},"payload":{"ref":"pages/add-ignore-chars","ref_type":"branch","master_branch":"master","description":"Utilities to simplify working with Japanese kana text in Java","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:09:59Z"} +,{"id":"2489655640","type":"CreateEvent","actor":{"id":10364468,"login":"lovetoken","gravatar_id":"","url":"https://api.github.com/users/lovetoken","avatar_url":"https://avatars.githubusercontent.com/u/10364468?"},"repo":{"id":28688765,"name":"lovetoken/Newton_Raphson_Method-in-R","url":"https://api.github.com/repos/lovetoken/Newton_Raphson_Method-in-R"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:09:59Z"} +,{"id":"2489655642","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":24338357,"name":"hex7c0/nodejs-cipher-performance","url":"https://api.github.com/repos/hex7c0/nodejs-cipher-performance"},"payload":{"push_id":536866067,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7ca8f5db66915c3422995459c2c462dcfc2a8833","before":"35dd76e7dd33603dfdf56ce7411733be715e05cf","commits":[{"sha":"7ca8f5db66915c3422995459c2c462dcfc2a8833","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"travis docker","distinct":true,"url":"https://api.github.com/repos/hex7c0/nodejs-cipher-performance/commits/7ca8f5db66915c3422995459c2c462dcfc2a8833"}]},"public":true,"created_at":"2015-01-01T15:09:59Z"} +,{"id":"2489655643","type":"PushEvent","actor":{"id":10319667,"login":"JustCameron","gravatar_id":"","url":"https://api.github.com/users/JustCameron","avatar_url":"https://avatars.githubusercontent.com/u/10319667?"},"repo":{"id":28651188,"name":"JustCameron/Resource_Game","url":"https://api.github.com/repos/JustCameron/Resource_Game"},"payload":{"push_id":536866068,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"f42d7c4c0f84385a569e602ab1be17b7837f7606","before":"c18ef5195b29ee8c36d3c2e8bef0821c9a9c1dd5","commits":[{"sha":"f42d7c4c0f84385a569e602ab1be17b7837f7606","author":{"email":"a7fef588e060ecdc4e0a0aca537c3b984f7fb2d3@gmail.com","name":"Cameron Boyt"},"message":"Semi-colons, save fix and more!\n\nRemoved a bunch of semicolons and fitted others where they should be. Added an if statement inside the for loop for loading save games (line 201) and fixed all for loops removing the \"var\" in \"var i = x\".","distinct":true,"url":"https://api.github.com/repos/JustCameron/Resource_Game/commits/f42d7c4c0f84385a569e602ab1be17b7837f7606"}]},"public":true,"created_at":"2015-01-01T15:09:59Z"} +,{"id":"2489655644","type":"PushEvent","actor":{"id":1395990,"login":"caioaao","gravatar_id":"","url":"https://api.github.com/users/caioaao","avatar_url":"https://avatars.githubusercontent.com/u/1395990?"},"repo":{"id":27147053,"name":"caioaao/xmonad","url":"https://api.github.com/repos/caioaao/xmonad"},"payload":{"push_id":536866069,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fdf88a94a54bffd5752a7ac3bb0b742536fb7e47","before":"c8a02e9136e6b931367e6dfeae40255ae32900eb","commits":[{"sha":"fdf88a94a54bffd5752a7ac3bb0b742536fb7e47","author":{"email":"4dff8b4630768fc333d4c4a84b8385a622e05e1c@gmail.com","name":"Caio"},"message":"urxvt é melhor msm","distinct":true,"url":"https://api.github.com/repos/caioaao/xmonad/commits/fdf88a94a54bffd5752a7ac3bb0b742536fb7e47"}]},"public":true,"created_at":"2015-01-01T15:09:59Z"} +,{"id":"2489655645","type":"PullRequestEvent","actor":{"id":5018213,"login":"japaric","gravatar_id":"","url":"https://api.github.com/users/japaric","avatar_url":"https://avatars.githubusercontent.com/u/5018213?"},"repo":{"id":724712,"name":"rust-lang/rust","url":"https://api.github.com/repos/rust-lang/rust"},"payload":{"action":"opened","number":20398,"pull_request":{"url":"https://api.github.com/repos/rust-lang/rust/pulls/20398","id":26743844,"html_url":"https://github.com/rust-lang/rust/pull/20398","diff_url":"https://github.com/rust-lang/rust/pull/20398.diff","patch_url":"https://github.com/rust-lang/rust/pull/20398.patch","issue_url":"https://api.github.com/repos/rust-lang/rust/issues/20398","number":20398,"state":"open","locked":false,"title":"Merge `*SliceExt` traits, use assoc types in `SliceExt`, `Neg` and `Not`","user":{"login":"japaric","id":5018213,"avatar_url":"https://avatars.githubusercontent.com/u/5018213?v=3","gravatar_id":"","url":"https://api.github.com/users/japaric","html_url":"https://github.com/japaric","followers_url":"https://api.github.com/users/japaric/followers","following_url":"https://api.github.com/users/japaric/following{/other_user}","gists_url":"https://api.github.com/users/japaric/gists{/gist_id}","starred_url":"https://api.github.com/users/japaric/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/japaric/subscriptions","organizations_url":"https://api.github.com/users/japaric/orgs","repos_url":"https://api.github.com/users/japaric/repos","events_url":"https://api.github.com/users/japaric/events{/privacy}","received_events_url":"https://api.github.com/users/japaric/received_events","type":"User","site_admin":false},"body":"The following traits have been removed:\r\n\r\n- `ClonedSliceExt`\r\n- `PartialEqSliceExt`\r\n- `OrdSliceExt`\r\n- `BoxedSliceExt`\r\n\r\nAll their methods have been moved into the `SliceExt` trait using `where` clauses.\r\n\r\nThe `Neg` and `Not` traits now have an associated type for their return type. This breaks all existing implementations.\r\n\r\n[breaking-change]\r\n\r\n---\r\n\r\nr? @aturon \r\ncc @nikomatsakis ","created_at":"2015-01-01T15:09:58Z","updated_at":"2015-01-01T15:09:58Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/rust-lang/rust/pulls/20398/commits","review_comments_url":"https://api.github.com/repos/rust-lang/rust/pulls/20398/comments","review_comment_url":"https://api.github.com/repos/rust-lang/rust/pulls/comments/{number}","comments_url":"https://api.github.com/repos/rust-lang/rust/issues/20398/comments","statuses_url":"https://api.github.com/repos/rust-lang/rust/statuses/f8abe191e3049538613131ac9e6d650b7f9c3de2","head":{"label":"japaric:at","ref":"at","sha":"f8abe191e3049538613131ac9e6d650b7f9c3de2","user":{"login":"japaric","id":5018213,"avatar_url":"https://avatars.githubusercontent.com/u/5018213?v=3","gravatar_id":"","url":"https://api.github.com/users/japaric","html_url":"https://github.com/japaric","followers_url":"https://api.github.com/users/japaric/followers","following_url":"https://api.github.com/users/japaric/following{/other_user}","gists_url":"https://api.github.com/users/japaric/gists{/gist_id}","starred_url":"https://api.github.com/users/japaric/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/japaric/subscriptions","organizations_url":"https://api.github.com/users/japaric/orgs","repos_url":"https://api.github.com/users/japaric/repos","events_url":"https://api.github.com/users/japaric/events{/privacy}","received_events_url":"https://api.github.com/users/japaric/received_events","type":"User","site_admin":false},"repo":{"id":17873870,"name":"rust","full_name":"japaric/rust","owner":{"login":"japaric","id":5018213,"avatar_url":"https://avatars.githubusercontent.com/u/5018213?v=3","gravatar_id":"","url":"https://api.github.com/users/japaric","html_url":"https://github.com/japaric","followers_url":"https://api.github.com/users/japaric/followers","following_url":"https://api.github.com/users/japaric/following{/other_user}","gists_url":"https://api.github.com/users/japaric/gists{/gist_id}","starred_url":"https://api.github.com/users/japaric/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/japaric/subscriptions","organizations_url":"https://api.github.com/users/japaric/orgs","repos_url":"https://api.github.com/users/japaric/repos","events_url":"https://api.github.com/users/japaric/events{/privacy}","received_events_url":"https://api.github.com/users/japaric/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/japaric/rust","description":"a safe, concurrent, practical language","fork":true,"url":"https://api.github.com/repos/japaric/rust","forks_url":"https://api.github.com/repos/japaric/rust/forks","keys_url":"https://api.github.com/repos/japaric/rust/keys{/key_id}","collaborators_url":"https://api.github.com/repos/japaric/rust/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/japaric/rust/teams","hooks_url":"https://api.github.com/repos/japaric/rust/hooks","issue_events_url":"https://api.github.com/repos/japaric/rust/issues/events{/number}","events_url":"https://api.github.com/repos/japaric/rust/events","assignees_url":"https://api.github.com/repos/japaric/rust/assignees{/user}","branches_url":"https://api.github.com/repos/japaric/rust/branches{/branch}","tags_url":"https://api.github.com/repos/japaric/rust/tags","blobs_url":"https://api.github.com/repos/japaric/rust/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/japaric/rust/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/japaric/rust/git/refs{/sha}","trees_url":"https://api.github.com/repos/japaric/rust/git/trees{/sha}","statuses_url":"https://api.github.com/repos/japaric/rust/statuses/{sha}","languages_url":"https://api.github.com/repos/japaric/rust/languages","stargazers_url":"https://api.github.com/repos/japaric/rust/stargazers","contributors_url":"https://api.github.com/repos/japaric/rust/contributors","subscribers_url":"https://api.github.com/repos/japaric/rust/subscribers","subscription_url":"https://api.github.com/repos/japaric/rust/subscription","commits_url":"https://api.github.com/repos/japaric/rust/commits{/sha}","git_commits_url":"https://api.github.com/repos/japaric/rust/git/commits{/sha}","comments_url":"https://api.github.com/repos/japaric/rust/comments{/number}","issue_comment_url":"https://api.github.com/repos/japaric/rust/issues/comments/{number}","contents_url":"https://api.github.com/repos/japaric/rust/contents/{+path}","compare_url":"https://api.github.com/repos/japaric/rust/compare/{base}...{head}","merges_url":"https://api.github.com/repos/japaric/rust/merges","archive_url":"https://api.github.com/repos/japaric/rust/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/japaric/rust/downloads","issues_url":"https://api.github.com/repos/japaric/rust/issues{/number}","pulls_url":"https://api.github.com/repos/japaric/rust/pulls{/number}","milestones_url":"https://api.github.com/repos/japaric/rust/milestones{/number}","notifications_url":"https://api.github.com/repos/japaric/rust/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/japaric/rust/labels{/name}","releases_url":"https://api.github.com/repos/japaric/rust/releases{/id}","created_at":"2014-03-18T16:51:45Z","updated_at":"2015-01-01T03:56:45Z","pushed_at":"2015-01-01T15:05:55Z","git_url":"git://github.com/japaric/rust.git","ssh_url":"git@github.com:japaric/rust.git","clone_url":"https://github.com/japaric/rust.git","svn_url":"https://github.com/japaric/rust","homepage":"http://www.rust-lang.org","size":204666,"stargazers_count":0,"watchers_count":0,"language":"Rust","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":"rust-lang:master","ref":"master","sha":"c594959cdff07b5545747809bb045bfa2868ebcc","user":{"login":"rust-lang","id":5430905,"avatar_url":"https://avatars.githubusercontent.com/u/5430905?v=3","gravatar_id":"","url":"https://api.github.com/users/rust-lang","html_url":"https://github.com/rust-lang","followers_url":"https://api.github.com/users/rust-lang/followers","following_url":"https://api.github.com/users/rust-lang/following{/other_user}","gists_url":"https://api.github.com/users/rust-lang/gists{/gist_id}","starred_url":"https://api.github.com/users/rust-lang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rust-lang/subscriptions","organizations_url":"https://api.github.com/users/rust-lang/orgs","repos_url":"https://api.github.com/users/rust-lang/repos","events_url":"https://api.github.com/users/rust-lang/events{/privacy}","received_events_url":"https://api.github.com/users/rust-lang/received_events","type":"Organization","site_admin":false},"repo":{"id":724712,"name":"rust","full_name":"rust-lang/rust","owner":{"login":"rust-lang","id":5430905,"avatar_url":"https://avatars.githubusercontent.com/u/5430905?v=3","gravatar_id":"","url":"https://api.github.com/users/rust-lang","html_url":"https://github.com/rust-lang","followers_url":"https://api.github.com/users/rust-lang/followers","following_url":"https://api.github.com/users/rust-lang/following{/other_user}","gists_url":"https://api.github.com/users/rust-lang/gists{/gist_id}","starred_url":"https://api.github.com/users/rust-lang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rust-lang/subscriptions","organizations_url":"https://api.github.com/users/rust-lang/orgs","repos_url":"https://api.github.com/users/rust-lang/repos","events_url":"https://api.github.com/users/rust-lang/events{/privacy}","received_events_url":"https://api.github.com/users/rust-lang/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/rust-lang/rust","description":"a safe, concurrent, practical language","fork":false,"url":"https://api.github.com/repos/rust-lang/rust","forks_url":"https://api.github.com/repos/rust-lang/rust/forks","keys_url":"https://api.github.com/repos/rust-lang/rust/keys{/key_id}","collaborators_url":"https://api.github.com/repos/rust-lang/rust/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/rust-lang/rust/teams","hooks_url":"https://api.github.com/repos/rust-lang/rust/hooks","issue_events_url":"https://api.github.com/repos/rust-lang/rust/issues/events{/number}","events_url":"https://api.github.com/repos/rust-lang/rust/events","assignees_url":"https://api.github.com/repos/rust-lang/rust/assignees{/user}","branches_url":"https://api.github.com/repos/rust-lang/rust/branches{/branch}","tags_url":"https://api.github.com/repos/rust-lang/rust/tags","blobs_url":"https://api.github.com/repos/rust-lang/rust/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/rust-lang/rust/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/rust-lang/rust/git/refs{/sha}","trees_url":"https://api.github.com/repos/rust-lang/rust/git/trees{/sha}","statuses_url":"https://api.github.com/repos/rust-lang/rust/statuses/{sha}","languages_url":"https://api.github.com/repos/rust-lang/rust/languages","stargazers_url":"https://api.github.com/repos/rust-lang/rust/stargazers","contributors_url":"https://api.github.com/repos/rust-lang/rust/contributors","subscribers_url":"https://api.github.com/repos/rust-lang/rust/subscribers","subscription_url":"https://api.github.com/repos/rust-lang/rust/subscription","commits_url":"https://api.github.com/repos/rust-lang/rust/commits{/sha}","git_commits_url":"https://api.github.com/repos/rust-lang/rust/git/commits{/sha}","comments_url":"https://api.github.com/repos/rust-lang/rust/comments{/number}","issue_comment_url":"https://api.github.com/repos/rust-lang/rust/issues/comments/{number}","contents_url":"https://api.github.com/repos/rust-lang/rust/contents/{+path}","compare_url":"https://api.github.com/repos/rust-lang/rust/compare/{base}...{head}","merges_url":"https://api.github.com/repos/rust-lang/rust/merges","archive_url":"https://api.github.com/repos/rust-lang/rust/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/rust-lang/rust/downloads","issues_url":"https://api.github.com/repos/rust-lang/rust/issues{/number}","pulls_url":"https://api.github.com/repos/rust-lang/rust/pulls{/number}","milestones_url":"https://api.github.com/repos/rust-lang/rust/milestones{/number}","notifications_url":"https://api.github.com/repos/rust-lang/rust/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/rust-lang/rust/labels{/name}","releases_url":"https://api.github.com/repos/rust-lang/rust/releases{/id}","created_at":"2010-06-16T20:39:03Z","updated_at":"2015-01-01T14:44:11Z","pushed_at":"2015-01-01T14:21:08Z","git_url":"git://github.com/rust-lang/rust.git","ssh_url":"git@github.com:rust-lang/rust.git","clone_url":"https://github.com/rust-lang/rust.git","svn_url":"https://github.com/rust-lang/rust","homepage":"http://www.rust-lang.org","size":408154,"stargazers_count":8218,"watchers_count":8218,"language":"Rust","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1590,"mirror_url":null,"open_issues_count":2300,"forks":1590,"open_issues":2300,"watchers":8218,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/rust-lang/rust/pulls/20398"},"html":{"href":"https://github.com/rust-lang/rust/pull/20398"},"issue":{"href":"https://api.github.com/repos/rust-lang/rust/issues/20398"},"comments":{"href":"https://api.github.com/repos/rust-lang/rust/issues/20398/comments"},"review_comments":{"href":"https://api.github.com/repos/rust-lang/rust/pulls/20398/comments"},"review_comment":{"href":"https://api.github.com/repos/rust-lang/rust/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/rust-lang/rust/pulls/20398/commits"},"statuses":{"href":"https://api.github.com/repos/rust-lang/rust/statuses/f8abe191e3049538613131ac9e6d650b7f9c3de2"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":12,"additions":485,"deletions":464,"changed_files":26}},"public":true,"created_at":"2015-01-01T15:10:00Z","org":{"id":5430905,"login":"rust-lang","gravatar_id":"","url":"https://api.github.com/orgs/rust-lang","avatar_url":"https://avatars.githubusercontent.com/u/5430905?"}} +,{"id":"2489655647","type":"IssueCommentEvent","actor":{"id":111510,"login":"janlelis","gravatar_id":"","url":"https://api.github.com/users/janlelis","avatar_url":"https://avatars.githubusercontent.com/u/111510?"},"repo":{"id":3217545,"name":"janlelis/pws","url":"https://api.github.com/repos/janlelis/pws"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/janlelis/pws/issues/14","labels_url":"https://api.github.com/repos/janlelis/pws/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/janlelis/pws/issues/14/comments","events_url":"https://api.github.com/repos/janlelis/pws/issues/14/events","html_url":"https://github.com/janlelis/pws/issues/14","id":26276014,"number":14,"title":"Add username support","user":{"login":"Qu4tro","id":3855652,"avatar_url":"https://avatars.githubusercontent.com/u/3855652?v=3","gravatar_id":"","url":"https://api.github.com/users/Qu4tro","html_url":"https://github.com/Qu4tro","followers_url":"https://api.github.com/users/Qu4tro/followers","following_url":"https://api.github.com/users/Qu4tro/following{/other_user}","gists_url":"https://api.github.com/users/Qu4tro/gists{/gist_id}","starred_url":"https://api.github.com/users/Qu4tro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Qu4tro/subscriptions","organizations_url":"https://api.github.com/users/Qu4tro/orgs","repos_url":"https://api.github.com/users/Qu4tro/repos","events_url":"https://api.github.com/users/Qu4tro/events{/privacy}","received_events_url":"https://api.github.com/users/Qu4tro/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-01-24T22:26:50Z","updated_at":"2015-01-01T15:10:00Z","closed_at":"2015-01-01T15:10:00Z","body":"How about adding support for saving usernames as well? "},"comment":{"url":"https://api.github.com/repos/janlelis/pws/issues/comments/68488694","html_url":"https://github.com/janlelis/pws/issues/14#issuecomment-68488694","issue_url":"https://api.github.com/repos/janlelis/pws/issues/14","id":68488694,"user":{"login":"janlelis","id":111510,"avatar_url":"https://avatars.githubusercontent.com/u/111510?v=3","gravatar_id":"","url":"https://api.github.com/users/janlelis","html_url":"https://github.com/janlelis","followers_url":"https://api.github.com/users/janlelis/followers","following_url":"https://api.github.com/users/janlelis/following{/other_user}","gists_url":"https://api.github.com/users/janlelis/gists{/gist_id}","starred_url":"https://api.github.com/users/janlelis/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/janlelis/subscriptions","organizations_url":"https://api.github.com/users/janlelis/orgs","repos_url":"https://api.github.com/users/janlelis/repos","events_url":"https://api.github.com/users/janlelis/events{/privacy}","received_events_url":"https://api.github.com/users/janlelis/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:10:00Z","updated_at":"2015-01-01T15:10:00Z","body":"Closing. Feel free to send a PR or reopen with more thoughts on this."}},"public":true,"created_at":"2015-01-01T15:10:00Z"} +,{"id":"2489655648","type":"IssuesEvent","actor":{"id":111510,"login":"janlelis","gravatar_id":"","url":"https://api.github.com/users/janlelis","avatar_url":"https://avatars.githubusercontent.com/u/111510?"},"repo":{"id":3217545,"name":"janlelis/pws","url":"https://api.github.com/repos/janlelis/pws"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/janlelis/pws/issues/14","labels_url":"https://api.github.com/repos/janlelis/pws/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/janlelis/pws/issues/14/comments","events_url":"https://api.github.com/repos/janlelis/pws/issues/14/events","html_url":"https://github.com/janlelis/pws/issues/14","id":26276014,"number":14,"title":"Add username support","user":{"login":"Qu4tro","id":3855652,"avatar_url":"https://avatars.githubusercontent.com/u/3855652?v=3","gravatar_id":"","url":"https://api.github.com/users/Qu4tro","html_url":"https://github.com/Qu4tro","followers_url":"https://api.github.com/users/Qu4tro/followers","following_url":"https://api.github.com/users/Qu4tro/following{/other_user}","gists_url":"https://api.github.com/users/Qu4tro/gists{/gist_id}","starred_url":"https://api.github.com/users/Qu4tro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Qu4tro/subscriptions","organizations_url":"https://api.github.com/users/Qu4tro/orgs","repos_url":"https://api.github.com/users/Qu4tro/repos","events_url":"https://api.github.com/users/Qu4tro/events{/privacy}","received_events_url":"https://api.github.com/users/Qu4tro/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-01-24T22:26:50Z","updated_at":"2015-01-01T15:10:00Z","closed_at":"2015-01-01T15:10:00Z","body":"How about adding support for saving usernames as well? "}},"public":true,"created_at":"2015-01-01T15:10:00Z"} +,{"id":"2489655650","type":"ReleaseEvent","actor":{"id":1646422,"login":"brunocarvalhodearaujo","gravatar_id":"","url":"https://api.github.com/users/brunocarvalhodearaujo","avatar_url":"https://avatars.githubusercontent.com/u/1646422?"},"repo":{"id":28688435,"name":"brunocarvalhodearaujo/api","url":"https://api.github.com/repos/brunocarvalhodearaujo/api"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/brunocarvalhodearaujo/api/releases/818693","assets_url":"https://api.github.com/repos/brunocarvalhodearaujo/api/releases/818693/assets","upload_url":"https://uploads.github.com/repos/brunocarvalhodearaujo/api/releases/818693/assets{?name}","html_url":"https://github.com/brunocarvalhodearaujo/api/releases/tag/0.2","id":818693,"tag_name":"0.2","target_commitish":"master","name":"","draft":false,"author":{"login":"brunocarvalhodearaujo","id":1646422,"avatar_url":"https://avatars.githubusercontent.com/u/1646422?v=3","gravatar_id":"","url":"https://api.github.com/users/brunocarvalhodearaujo","html_url":"https://github.com/brunocarvalhodearaujo","followers_url":"https://api.github.com/users/brunocarvalhodearaujo/followers","following_url":"https://api.github.com/users/brunocarvalhodearaujo/following{/other_user}","gists_url":"https://api.github.com/users/brunocarvalhodearaujo/gists{/gist_id}","starred_url":"https://api.github.com/users/brunocarvalhodearaujo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/brunocarvalhodearaujo/subscriptions","organizations_url":"https://api.github.com/users/brunocarvalhodearaujo/orgs","repos_url":"https://api.github.com/users/brunocarvalhodearaujo/repos","events_url":"https://api.github.com/users/brunocarvalhodearaujo/events{/privacy}","received_events_url":"https://api.github.com/users/brunocarvalhodearaujo/received_events","type":"User","site_admin":false},"prerelease":false,"created_at":"2014-12-27T02:16:59Z","published_at":"2015-01-01T15:10:00Z","assets":[],"tarball_url":"https://api.github.com/repos/brunocarvalhodearaujo/api/tarball/0.2","zipball_url":"https://api.github.com/repos/brunocarvalhodearaujo/api/zipball/0.2","body":""}},"public":true,"created_at":"2015-01-01T15:10:00Z"} +,{"id":"2489655652","type":"IssueCommentEvent","actor":{"id":3684796,"login":"lminiero","gravatar_id":"","url":"https://api.github.com/users/lminiero","avatar_url":"https://avatars.githubusercontent.com/u/3684796?"},"repo":{"id":16734696,"name":"meetecho/janus-gateway","url":"https://api.github.com/repos/meetecho/janus-gateway"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/meetecho/janus-gateway/issues/126","labels_url":"https://api.github.com/repos/meetecho/janus-gateway/issues/126/labels{/name}","comments_url":"https://api.github.com/repos/meetecho/janus-gateway/issues/126/comments","events_url":"https://api.github.com/repos/meetecho/janus-gateway/issues/126/events","html_url":"https://github.com/meetecho/janus-gateway/issues/126","id":53114445,"number":126,"title":"Waiting for candidates-done callback","user":{"login":"Will-I4M","id":10349266,"avatar_url":"https://avatars.githubusercontent.com/u/10349266?v=3","gravatar_id":"","url":"https://api.github.com/users/Will-I4M","html_url":"https://github.com/Will-I4M","followers_url":"https://api.github.com/users/Will-I4M/followers","following_url":"https://api.github.com/users/Will-I4M/following{/other_user}","gists_url":"https://api.github.com/users/Will-I4M/gists{/gist_id}","starred_url":"https://api.github.com/users/Will-I4M/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Will-I4M/subscriptions","organizations_url":"https://api.github.com/users/Will-I4M/orgs","repos_url":"https://api.github.com/users/Will-I4M/repos","events_url":"https://api.github.com/users/Will-I4M/events{/privacy}","received_events_url":"https://api.github.com/users/Will-I4M/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-12-30T13:08:10Z","updated_at":"2015-01-01T15:10:00Z","closed_at":null,"body":"Hi ! First of all, thanks for the great job you did on Janus, it is a very interesting project. \r\nI notice that sometimes, if client connect/disconnect quickly without following the entiere neg. process, \r\nJanus can be trapped in an infinite loop : \r\n\r\n[139824874914120] Waiting for candidates-done callback...\r\n[139824874914120] Waiting for candidates-done callback...\r\n[139824874914120] Waiting for candidates-done callback...\r\n[139824874914120] Waiting for candidates-done callback...\r\n[139824874914120] Waiting for candidates-done callback...\r\n[139824874914120] Waiting for candidates-done callback...\r\n\r\nin janus.c line 3250 -> while ..... \r\nmaybe adding a counter or something like that will fix this issue. \r\neg \r\n```\r\nint max_time = 0 ; \r\n\t\twhile(ice_handle->cdone < ice_handle->streams_num && (max_time < SESSION_TIMEOUT/10) ) \r\n\t\t{\r\n\t\t\tJANUS_LOG(LOG_INFO, \"[%\"SCNu64\"] Waiting for candidates-done callback...\\n\", ice_handle->handle_id);\r\n\t\t\tg_usleep(100000);\r\n\t\t\tif(ice_handle->cdone < 0) {\r\n\t\t\t\tJANUS_LOG(LOG_ERR, \"[%\"SCNu64\"] Error gathering candidates!\\n\", ice_handle->handle_id);\r\n\t\t\t\treturn NULL;\r\n\t\t\t}\r\n\t\t\tmax_time++; \r\n\t\t}\r\n```\r\nnot tested yet. \r\n\r\n"},"comment":{"url":"https://api.github.com/repos/meetecho/janus-gateway/issues/comments/68488695","html_url":"https://github.com/meetecho/janus-gateway/issues/126#issuecomment-68488695","issue_url":"https://api.github.com/repos/meetecho/janus-gateway/issues/126","id":68488695,"user":{"login":"lminiero","id":3684796,"avatar_url":"https://avatars.githubusercontent.com/u/3684796?v=3","gravatar_id":"","url":"https://api.github.com/users/lminiero","html_url":"https://github.com/lminiero","followers_url":"https://api.github.com/users/lminiero/followers","following_url":"https://api.github.com/users/lminiero/following{/other_user}","gists_url":"https://api.github.com/users/lminiero/gists{/gist_id}","starred_url":"https://api.github.com/users/lminiero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lminiero/subscriptions","organizations_url":"https://api.github.com/users/lminiero/orgs","repos_url":"https://api.github.com/users/lminiero/repos","events_url":"https://api.github.com/users/lminiero/events{/privacy}","received_events_url":"https://api.github.com/users/lminiero/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:10:00Z","updated_at":"2015-01-01T15:10:00Z","body":"Yes I'll work on a fix, as soon as I get back to work after the holidays. I'll probably start working from home either tomorrow or the day after that, so before I get to the lab."}},"public":true,"created_at":"2015-01-01T15:10:01Z","org":{"id":4520545,"login":"meetecho","gravatar_id":"","url":"https://api.github.com/orgs/meetecho","avatar_url":"https://avatars.githubusercontent.com/u/4520545?"}} +,{"id":"2489655653","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":28688435,"name":"brunocarvalhodearaujo/api","url":"https://api.github.com/repos/brunocarvalhodearaujo/api"},"payload":{"ref":"0.2","ref_type":"tag","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:10:01Z"} +,{"id":"2489655658","type":"PushEvent","actor":{"id":494304,"login":"rkuo","gravatar_id":"","url":"https://api.github.com/users/rkuo","avatar_url":"https://avatars.githubusercontent.com/u/494304?"},"repo":{"id":28136522,"name":"rkuo/LearningSpark","url":"https://api.github.com/repos/rkuo/LearningSpark"},"payload":{"push_id":536866075,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a49f0e35aa486b8c4ce8136e3a35905c124129ab","before":"0ff9e50b6e804185be0f635b979698cf6058f371","commits":[{"sha":"a49f0e35aa486b8c4ce8136e3a35905c124129ab","author":{"email":"761ffb94e011b3f1bf6391f95690eff4e5b6217c@gmail.com","name":"Richard Kuo"},"message":"setup SBT and Scala in Idea, worked","distinct":true,"url":"https://api.github.com/repos/rkuo/LearningSpark/commits/a49f0e35aa486b8c4ce8136e3a35905c124129ab"}]},"public":true,"created_at":"2015-01-01T15:10:01Z"} +,{"id":"2489655660","type":"IssueCommentEvent","actor":{"id":1544922,"login":"masterX244","gravatar_id":"","url":"https://api.github.com/users/masterX244","avatar_url":"https://avatars.githubusercontent.com/u/1544922?"},"repo":{"id":3289298,"name":"caprica/vlcj","url":"https://api.github.com/repos/caprica/vlcj"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/caprica/vlcj/issues/284","labels_url":"https://api.github.com/repos/caprica/vlcj/issues/284/labels{/name}","comments_url":"https://api.github.com/repos/caprica/vlcj/issues/284/comments","events_url":"https://api.github.com/repos/caprica/vlcj/issues/284/events","html_url":"https://github.com/caprica/vlcj/issues/284","id":53221183,"number":284,"title":"Github-pages not linking to 3.1.0 javadoc","user":{"login":"masterX244","id":1544922,"avatar_url":"https://avatars.githubusercontent.com/u/1544922?v=3","gravatar_id":"","url":"https://api.github.com/users/masterX244","html_url":"https://github.com/masterX244","followers_url":"https://api.github.com/users/masterX244/followers","following_url":"https://api.github.com/users/masterX244/following{/other_user}","gists_url":"https://api.github.com/users/masterX244/gists{/gist_id}","starred_url":"https://api.github.com/users/masterX244/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/masterX244/subscriptions","organizations_url":"https://api.github.com/users/masterX244/orgs","repos_url":"https://api.github.com/users/masterX244/repos","events_url":"https://api.github.com/users/masterX244/events{/privacy}","received_events_url":"https://api.github.com/users/masterX244/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T14:52:05Z","updated_at":"2015-01-01T15:10:01Z","closed_at":null,"body":"the LInk to the docs doesnt show the 3.1.0 javadoc link even though it exists already"},"comment":{"url":"https://api.github.com/repos/caprica/vlcj/issues/comments/68488696","html_url":"https://github.com/caprica/vlcj/issues/284#issuecomment-68488696","issue_url":"https://api.github.com/repos/caprica/vlcj/issues/284","id":68488696,"user":{"login":"masterX244","id":1544922,"avatar_url":"https://avatars.githubusercontent.com/u/1544922?v=3","gravatar_id":"","url":"https://api.github.com/users/masterX244","html_url":"https://github.com/masterX244","followers_url":"https://api.github.com/users/masterX244/followers","following_url":"https://api.github.com/users/masterX244/following{/other_user}","gists_url":"https://api.github.com/users/masterX244/gists{/gist_id}","starred_url":"https://api.github.com/users/masterX244/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/masterX244/subscriptions","organizations_url":"https://api.github.com/users/masterX244/orgs","repos_url":"https://api.github.com/users/masterX244/repos","events_url":"https://api.github.com/users/masterX244/events{/privacy}","received_events_url":"https://api.github.com/users/masterX244/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:10:01Z","updated_at":"2015-01-01T15:10:01Z","body":"http://caprica.github.io/vlcj/\r\nyou tell that VLCJ 3.0.0 is latest while the readme tells VLCJ 3.1.0 is latest"}},"public":true,"created_at":"2015-01-01T15:10:01Z"} +,{"id":"2489655661","type":"WatchEvent","actor":{"id":1792574,"login":"IanLuo","gravatar_id":"","url":"https://api.github.com/users/IanLuo","avatar_url":"https://avatars.githubusercontent.com/u/1792574?"},"repo":{"id":25587159,"name":"krzysztofzablocki/KZPlayground","url":"https://api.github.com/repos/krzysztofzablocki/KZPlayground"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:10:01Z"} +,{"id":"2489655664","type":"WatchEvent","actor":{"id":1440684,"login":"Sully73","gravatar_id":"","url":"https://api.github.com/users/Sully73","avatar_url":"https://avatars.githubusercontent.com/u/1440684?"},"repo":{"id":6938875,"name":"th-in-gs/THObserversAndBinders","url":"https://api.github.com/repos/th-in-gs/THObserversAndBinders"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:10:04Z"} +,{"id":"2489655665","type":"CreateEvent","actor":{"id":10364798,"login":"team1310","gravatar_id":"","url":"https://api.github.com/users/team1310","avatar_url":"https://avatars.githubusercontent.com/u/10364798?"},"repo":{"id":28688775,"name":"team1310/robot2014","url":"https://api.github.com/repos/team1310/robot2014"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Fork of the 2014 codebase","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:10:04Z"} +,{"id":"2489655667","type":"WatchEvent","actor":{"id":5022872,"login":"lzwjava","gravatar_id":"","url":"https://api.github.com/users/lzwjava","avatar_url":"https://avatars.githubusercontent.com/u/5022872?"},"repo":{"id":8575137,"name":"JakeWharton/butterknife","url":"https://api.github.com/repos/JakeWharton/butterknife"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:10:04Z"} +,{"id":"2489655670","type":"IssueCommentEvent","actor":{"id":194392,"login":"E3V3A","gravatar_id":"","url":"https://api.github.com/users/E3V3A","avatar_url":"https://avatars.githubusercontent.com/u/194392?"},"repo":{"id":14640193,"name":"SecUpwN/Android-IMSI-Catcher-Detector","url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector/issues/251","labels_url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector/issues/251/labels{/name}","comments_url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector/issues/251/comments","events_url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector/issues/251/events","html_url":"https://github.com/SecUpwN/Android-IMSI-Catcher-Detector/issues/251","id":53220939,"number":251,"title":"Suppress multiple Notifications","user":{"login":"SecUpwN","id":6000299,"avatar_url":"https://avatars.githubusercontent.com/u/6000299?v=3","gravatar_id":"","url":"https://api.github.com/users/SecUpwN","html_url":"https://github.com/SecUpwN","followers_url":"https://api.github.com/users/SecUpwN/followers","following_url":"https://api.github.com/users/SecUpwN/following{/other_user}","gists_url":"https://api.github.com/users/SecUpwN/gists{/gist_id}","starred_url":"https://api.github.com/users/SecUpwN/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SecUpwN/subscriptions","organizations_url":"https://api.github.com/users/SecUpwN/orgs","repos_url":"https://api.github.com/users/SecUpwN/repos","events_url":"https://api.github.com/users/SecUpwN/events{/privacy}","received_events_url":"https://api.github.com/users/SecUpwN/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector/labels/ENHANCEMENT","name":"ENHANCEMENT","color":"c7def8"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T14:39:21Z","updated_at":"2015-01-01T15:10:03Z","closed_at":null,"body":"Hey folks! A few of my friends recently reported that our App displays notifications too often, especially the one with disabled `Location Services`. This makes the impression our App wants to \"call home\":\r\n\r\n[![Location Services Disabled](https://github.com/SecUpwN/Android-IMSI-Catcher-Detector/raw/master/SCREENSHOTS/LocationServices_Disabled.png)](https://github.com/SecUpwN/Android-IMSI-Catcher-Detector/issues/251)\r\n\r\nThe best thing would be if our App would only notify the user **once**. Feel free to propose any other solution for this, but I noticed myself that it is pretty annoying having to click `CANCEL` every single time.."},"comment":{"url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector/issues/comments/68488697","html_url":"https://github.com/SecUpwN/Android-IMSI-Catcher-Detector/issues/251#issuecomment-68488697","issue_url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector/issues/251","id":68488697,"user":{"login":"E3V3A","id":194392,"avatar_url":"https://avatars.githubusercontent.com/u/194392?v=3","gravatar_id":"","url":"https://api.github.com/users/E3V3A","html_url":"https://github.com/E3V3A","followers_url":"https://api.github.com/users/E3V3A/followers","following_url":"https://api.github.com/users/E3V3A/following{/other_user}","gists_url":"https://api.github.com/users/E3V3A/gists{/gist_id}","starred_url":"https://api.github.com/users/E3V3A/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/E3V3A/subscriptions","organizations_url":"https://api.github.com/users/E3V3A/orgs","repos_url":"https://api.github.com/users/E3V3A/repos","events_url":"https://api.github.com/users/E3V3A/events{/privacy}","received_events_url":"https://api.github.com/users/E3V3A/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:10:03Z","updated_at":"2015-01-01T15:10:03Z","body":"Yes, this is indeed very annoying, but is related to the GPS use and issue #246. It is Google location services pushing that message, then following with another message from Google. But second message you should select \"Cancel\"... @SecUpwN Can you get screenshot also of second message?\r\n\r\n\r\n"}},"public":true,"created_at":"2015-01-01T15:10:04Z"} +,{"id":"2489655671","type":"PushEvent","actor":{"id":1068824,"login":"Torrib","gravatar_id":"","url":"https://api.github.com/users/Torrib","avatar_url":"https://avatars.githubusercontent.com/u/1068824?"},"repo":{"id":27922077,"name":"larserikgk/studlan","url":"https://api.github.com/repos/larserikgk/studlan"},"payload":{"push_id":536866078,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cc329eac89c79a07f3974231e5b4e10a618910be","before":"81aa4c96c47903cdfeac43c891d7fce3b57cacab","commits":[{"sha":"cc329eac89c79a07f3974231e5b4e10a618910be","author":{"email":"fcc6bb725d73f63649cea0cc8d08ca3233f9a890@gmail.com","name":"Tor Håkon Bonsaksen"},"message":"Fixed bootstrap for register form","distinct":true,"url":"https://api.github.com/repos/larserikgk/studlan/commits/cc329eac89c79a07f3974231e5b4e10a618910be"}]},"public":true,"created_at":"2015-01-01T15:10:04Z"} +,{"id":"2489655673","type":"PushEvent","actor":{"id":139396,"login":"wojons","gravatar_id":"","url":"https://api.github.com/users/wojons","avatar_url":"https://avatars.githubusercontent.com/u/139396?"},"repo":{"id":14596817,"name":"wojons/PHP-ReQL","url":"https://api.github.com/repos/wojons/PHP-ReQL"},"payload":{"push_id":536866080,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2aa0ec0a700fd43cca1001c449a190c1c254629b","before":"7dbd923125be85d537bff18c8bced63dfdd4a1c2","commits":[{"sha":"2aa0ec0a700fd43cca1001c449a190c1c254629b","author":{"email":"948358020127ebcc85509893966377cb076ac949@gmail.com","name":"Alexis Okuwa"},"message":"one line was missing","distinct":true,"url":"https://api.github.com/repos/wojons/PHP-ReQL/commits/2aa0ec0a700fd43cca1001c449a190c1c254629b"}]},"public":true,"created_at":"2015-01-01T15:10:04Z"} +,{"id":"2489655674","type":"PushEvent","actor":{"id":1370209,"login":"filfat","gravatar_id":"","url":"https://api.github.com/users/filfat","avatar_url":"https://avatars.githubusercontent.com/u/1370209?"},"repo":{"id":26833497,"name":"DownloadMii/DownloadMii-Website","url":"https://api.github.com/repos/DownloadMii/DownloadMii-Website"},"payload":{"push_id":536866081,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"50dc38f1994b2b9625bad7cb7c1cefdd8978ba3c","before":"0ad00e54467778282ab502574fb903eb5b2bbc82","commits":[{"sha":"50dc38f1994b2b9625bad7cb7c1cefdd8978ba3c","author":{"email":"b66032b25135812b5296adc85b43c011cdadb170@hotmail.se","name":"Filiph Sandström"},"message":"Create .user.ini","distinct":true,"url":"https://api.github.com/repos/DownloadMii/DownloadMii-Website/commits/50dc38f1994b2b9625bad7cb7c1cefdd8978ba3c"}]},"public":true,"created_at":"2015-01-01T15:10:04Z","org":{"id":9831921,"login":"DownloadMii","gravatar_id":"","url":"https://api.github.com/orgs/DownloadMii","avatar_url":"https://avatars.githubusercontent.com/u/9831921?"}} +,{"id":"2489655677","type":"PushEvent","actor":{"id":1490827,"login":"net900621","gravatar_id":"","url":"https://api.github.com/users/net900621","avatar_url":"https://avatars.githubusercontent.com/u/1490827?"},"repo":{"id":28477310,"name":"net900621/thrush","url":"https://api.github.com/repos/net900621/thrush"},"payload":{"push_id":536866084,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"551b9a4cd58c37563e893a6f712b28177dc214f8","before":"93eeaafb99ceabe284c8f0b8bf3a368f8b7acdc8","commits":[{"sha":"551b9a4cd58c37563e893a6f712b28177dc214f8","author":{"email":"36670c970b0161c8e05b7d0476aaa5cceb8f8813@163.com","name":"yaoyao"},"message":"yaoyao","distinct":true,"url":"https://api.github.com/repos/net900621/thrush/commits/551b9a4cd58c37563e893a6f712b28177dc214f8"}]},"public":true,"created_at":"2015-01-01T15:10:04Z"} +,{"id":"2489655682","type":"CreateEvent","actor":{"id":1287170,"login":"wahhid","gravatar_id":"","url":"https://api.github.com/users/wahhid","avatar_url":"https://avatars.githubusercontent.com/u/1287170?"},"repo":{"id":28688753,"name":"wahhid/php_rdm_web_access_ec","url":"https://api.github.com/repos/wahhid/php_rdm_web_access_ec"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:10:05Z"} +,{"id":"2489655685","type":"PushEvent","actor":{"id":4627837,"login":"jessemillar","gravatar_id":"","url":"https://api.github.com/users/jessemillar","avatar_url":"https://avatars.githubusercontent.com/u/4627837?"},"repo":{"id":28636475,"name":"jessemillar/Half-and-Half","url":"https://api.github.com/repos/jessemillar/Half-and-Half"},"payload":{"push_id":536866088,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"42990116c0f2483dfdc409aae28369fb65919594","before":"c7edc83d47583d4005a5c7befe579127a935e831","commits":[{"sha":"42990116c0f2483dfdc409aae28369fb65919594","author":{"email":"0ba40b71986250aad0903c7ebcfd76a410af35fb@gmail.com","name":"Jesse Millar"},"message":"Update LICENSE.md","distinct":true,"url":"https://api.github.com/repos/jessemillar/Half-and-Half/commits/42990116c0f2483dfdc409aae28369fb65919594"}]},"public":true,"created_at":"2015-01-01T15:10:06Z"} +,{"id":"2489655691","type":"PushEvent","actor":{"id":8079942,"login":"avnash","gravatar_id":"","url":"https://api.github.com/users/avnash","avatar_url":"https://avatars.githubusercontent.com/u/8079942?"},"repo":{"id":28472487,"name":"avnash/students","url":"https://api.github.com/repos/avnash/students"},"payload":{"push_id":536866092,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"58d14378f844b9bbf86b97d1ea94444987cfc408","before":"3e5da7117e2f65a45f58267d8f52f8c92001d686","commits":[{"sha":"58d14378f844b9bbf86b97d1ea94444987cfc408","author":{"email":"be2ffd277d2a8b60f94b8da1bec68882a65300fe@gmail.com","name":"avnash"},"message":"pyc files removed and ignored","distinct":true,"url":"https://api.github.com/repos/avnash/students/commits/58d14378f844b9bbf86b97d1ea94444987cfc408"}]},"public":true,"created_at":"2015-01-01T15:10:06Z"} +,{"id":"2489655696","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":536866094,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"99f52e25ca5044abee350c15515d245f25c10932","before":"bf468aab3a56fb824f2c5881cb92105b6d454084","commits":[{"sha":"99f52e25ca5044abee350c15515d245f25c10932","author":{"email":"c7f2353e77fbd59227c091422ca81210965ba01d","name":"selloggingbot"},"message":"updating logs","distinct":true,"url":"https://api.github.com/repos/SeleniumHQ/irc-logs/commits/99f52e25ca5044abee350c15515d245f25c10932"}]},"public":true,"created_at":"2015-01-01T15:10:07Z","org":{"id":983927,"login":"SeleniumHQ","gravatar_id":"","url":"https://api.github.com/orgs/SeleniumHQ","avatar_url":"https://avatars.githubusercontent.com/u/983927?"}} +,{"id":"2489655697","type":"CreateEvent","actor":{"id":34588,"login":"okuryu","gravatar_id":"","url":"https://api.github.com/users/okuryu","avatar_url":"https://avatars.githubusercontent.com/u/34588?"},"repo":{"id":9270183,"name":"okuryu/yuidoc","url":"https://api.github.com/repos/okuryu/yuidoc"},"payload":{"ref":"throws","ref_type":"branch","master_branch":"master","description":"YUI Javascript Documentation Tool","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:10:07Z"} +,{"id":"2489655701","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":536866098,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cb0acce6de98b3f82a86716c42c56daff5c4795e","before":"88f262e09f7d3b1681c952961985083cfd48bc41","commits":[{"sha":"cb0acce6de98b3f82a86716c42c56daff5c4795e","author":{"email":"24bf68e341ce0fbd9259a5d51feed79682ea4eba@greatfire.org","name":"Ubuntu"},"message":"a","distinct":true,"url":"https://api.github.com/repos/greatfire/z/commits/cb0acce6de98b3f82a86716c42c56daff5c4795e"}]},"public":true,"created_at":"2015-01-01T15:10:08Z"} +,{"id":"2489655702","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":536866099,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"48816dc95161b8ccea2559749a822dafa92388c4","before":"6fe11207c60e9f0762c51e41f0c305a75d8b3523","commits":[{"sha":"48816dc95161b8ccea2559749a822dafa92388c4","author":{"email":"aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d@lyftclothing.com","name":"Jacob Gibbs"},"message":"Site updated at 2015-01-01 15:09:56 UTC","distinct":true,"url":"https://api.github.com/repos/lyftclothing/lyftclothing.github.io/commits/48816dc95161b8ccea2559749a822dafa92388c4"}]},"public":true,"created_at":"2015-01-01T15:10:08Z"} +,{"id":"2489655704","type":"PushEvent","actor":{"id":7752475,"login":"p1ch-jp","gravatar_id":"","url":"https://api.github.com/users/p1ch-jp","avatar_url":"https://avatars.githubusercontent.com/u/7752475?"},"repo":{"id":28688714,"name":"p1ch-jp/chiraura","url":"https://api.github.com/repos/p1ch-jp/chiraura"},"payload":{"push_id":536866100,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"81bc9cb7101660b38b64c22ec33566f686ba9393","before":"bf8e1f796eef747b6e9adefa65e9f78b5f68a003","commits":[{"sha":"81bc9cb7101660b38b64c22ec33566f686ba9393","author":{"email":"a52a11aef0dc7d33a2662863777bb09b6bd698c0@gmail.com","name":"p1ch-jp"},"message":"Automated commit by inari.","distinct":true,"url":"https://api.github.com/repos/p1ch-jp/chiraura/commits/81bc9cb7101660b38b64c22ec33566f686ba9393"}]},"public":true,"created_at":"2015-01-01T15:10:08Z"} +,{"id":"2489655707","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":536866101,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"62b0197d5fca99e1e1c4f9699767d91a377c40aa","before":"fc8fa23156b2f8e0324c2b1ccc31eded475ab640","commits":[{"sha":"62b0197d5fca99e1e1c4f9699767d91a377c40aa","author":{"email":"24bf68e341ce0fbd9259a5d51feed79682ea4eba@greatfire.org","name":"Ubuntu"},"message":"a","distinct":true,"url":"https://api.github.com/repos/greatfire/wiki/commits/62b0197d5fca99e1e1c4f9699767d91a377c40aa"}]},"public":true,"created_at":"2015-01-01T15:10:08Z"} +,{"id":"2489655708","type":"CreateEvent","actor":{"id":8651475,"login":"583132460","gravatar_id":"","url":"https://api.github.com/users/583132460","avatar_url":"https://avatars.githubusercontent.com/u/8651475?"},"repo":{"id":28688776,"name":"583132460/Temp","url":"https://api.github.com/repos/583132460/Temp"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"first demo","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:10:09Z"} +,{"id":"2489655710","type":"WatchEvent","actor":{"id":6242139,"login":"Mignari","gravatar_id":"","url":"https://api.github.com/users/Mignari","avatar_url":"https://avatars.githubusercontent.com/u/6242139?"},"repo":{"id":16157746,"name":"aspnet/EntityFramework","url":"https://api.github.com/repos/aspnet/EntityFramework"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:10:09Z","org":{"id":6476660,"login":"aspnet","gravatar_id":"","url":"https://api.github.com/orgs/aspnet","avatar_url":"https://avatars.githubusercontent.com/u/6476660?"}} +,{"id":"2489655715","type":"PushEvent","actor":{"id":1761650,"login":"keep94","gravatar_id":"","url":"https://api.github.com/users/keep94","avatar_url":"https://avatars.githubusercontent.com/u/1761650?"},"repo":{"id":27384777,"name":"keep94/finance","url":"https://api.github.com/repos/keep94/finance"},"payload":{"push_id":536866104,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6c0be2508c8dca7ae2f757abcfe70d22f0827b9a","before":"4cf5850dbd9254e9cd6e31800ef1a70f29637166","commits":[{"sha":"6c0be2508c8dca7ae2f757abcfe70d22f0827b9a","author":{"email":"ebc8ebf6ee3e71f824b78cf24fbd35a7aea2ee60@gmail.com","name":"Travis Keep"},"message":"Make code in reconcile.pairBankEntries more readable.","distinct":true,"url":"https://api.github.com/repos/keep94/finance/commits/6c0be2508c8dca7ae2f757abcfe70d22f0827b9a"}]},"public":true,"created_at":"2015-01-01T15:10:09Z"} +,{"id":"2489655717","type":"PullRequestReviewCommentEvent","actor":{"id":459648,"login":"samsonasik","gravatar_id":"","url":"https://api.github.com/users/samsonasik","avatar_url":"https://avatars.githubusercontent.com/u/459648?"},"repo":{"id":702550,"name":"zendframework/zf2","url":"https://api.github.com/repos/zendframework/zf2"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/22400124","id":22400124,"diff_hunk":"@@ -0,0 +1,183 @@\n+ indent with spaces","distinct":true,"url":"https://api.github.com/repos/mitthu/dotfiles/commits/d994dd27ff205b32e9f7c9a073f832b8d5ddcfea"}]},"public":true,"created_at":"2015-01-01T15:10:10Z"} +,{"id":"2489655725","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":536866112,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"167c344393d31a544c6f8d7a094adccff8408020","before":"84346219e85d8ae001eb8ba340ba88aa36c83385","commits":[{"sha":"167c344393d31a544c6f8d7a094adccff8408020","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420125009175\n\nIrJko2fM5yDUZM3PyqLCZxpraHCB8yv0yEKoVdcUlrg=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/167c344393d31a544c6f8d7a094adccff8408020"}]},"public":true,"created_at":"2015-01-01T15:10:10Z"} +,{"id":"2489655726","type":"PushEvent","actor":{"id":250019,"login":"tarekziade","gravatar_id":"","url":"https://api.github.com/users/tarekziade","avatar_url":"https://avatars.githubusercontent.com/u/250019?"},"repo":{"id":24676502,"name":"tarekziade/foule.es","url":"https://api.github.com/repos/tarekziade/foule.es"},"payload":{"push_id":536866113,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"84ef2e3eed79b953f533d34831de322758d8af07","before":"3d3bac7484b922980ee69b783338e21b75d5e1b0","commits":[{"sha":"84ef2e3eed79b953f533d34831de322758d8af07","author":{"email":"da0b52b0ab43721cda3399320ca940a5a0e571ee@ziade.org","name":"Tarek Ziade"},"message":"ajout alvarum","distinct":true,"url":"https://api.github.com/repos/tarekziade/foule.es/commits/84ef2e3eed79b953f533d34831de322758d8af07"}]},"public":true,"created_at":"2015-01-01T15:10:11Z"} +,{"id":"2489655727","type":"DeleteEvent","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":{"ref":"patch-1","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:10:11Z"} +,{"id":"2489655728","type":"PushEvent","actor":{"id":2971225,"login":"sebastienadam","gravatar_id":"","url":"https://api.github.com/users/sebastienadam","avatar_url":"https://avatars.githubusercontent.com/u/2971225?"},"repo":{"id":26865394,"name":"sebastienadam/ephec_projet_analyse_conception","url":"https://api.github.com/repos/sebastienadam/ephec_projet_analyse_conception"},"payload":{"push_id":536866114,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"821fd18012fecee552ad33fa37dafcb12a8c6a9d","before":"71dcd778480b8c556726bf8072387d7826c07ab3","commits":[{"sha":"4982be55730f708ebbb4dbbb590ba773b1c8bcaf","author":{"email":"52e0d9f86338fa25e4a9f685e321e891f295af57@gmail.com","name":"sebastienadam"},"message":"EA - Biens immobiliers\n\nRéarrangement des descendants des biens immobiliers.","distinct":true,"url":"https://api.github.com/repos/sebastienadam/ephec_projet_analyse_conception/commits/4982be55730f708ebbb4dbbb590ba773b1c8bcaf"},{"sha":"821fd18012fecee552ad33fa37dafcb12a8c6a9d","author":{"email":"52e0d9f86338fa25e4a9f685e321e891f295af57@gmail.com","name":"sebastienadam"},"message":"EA - Cométique","distinct":true,"url":"https://api.github.com/repos/sebastienadam/ephec_projet_analyse_conception/commits/821fd18012fecee552ad33fa37dafcb12a8c6a9d"}]},"public":true,"created_at":"2015-01-01T15:10:11Z"} +,{"id":"2489655729","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":"closed","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":"closed","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:10:11Z","closed_at":"2015-01-01T15:10:11Z","merged_at":null,"merge_commit_sha":"9de6523ef70d502300c4ff03f9fc056fd388af96","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/1da21441840cb96e1fdbc0b759ae96d9d9012a58","head":{"label":"Derathir:patch-1","ref":"patch-1","sha":"1da21441840cb96e1fdbc0b759ae96d9d9012a58","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:10:11Z","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":0,"forks":2,"open_issues":0,"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/1da21441840cb96e1fdbc0b759ae96d9d9012a58"}},"merged":false,"mergeable":true,"mergeable_state":"clean","merged_by":null,"comments":0,"review_comments":0,"commits":2,"additions":28,"deletions":16,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:10:11Z"} +,{"id":"2489655730","type":"PushEvent","actor":{"id":3960243,"login":"wp-plugins-user","gravatar_id":"","url":"https://api.github.com/users/wp-plugins-user","avatar_url":"https://avatars.githubusercontent.com/u/3960243?"},"repo":{"id":21070471,"name":"wp-plugins/exit-pop","url":"https://api.github.com/repos/wp-plugins/exit-pop"},"payload":{"push_id":536866116,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"eebd8bceebfb7464e1100e1fba45f1eac6f9e3d9","before":"4980f5395b177e2920f490ed61ba0bafcccca214","commits":[{"sha":"eebd8bceebfb7464e1100e1fba45f1eac6f9e3d9","author":{"email":"cf5eff68259743117794c79751d45858624793a1@b8457f37-d9ea-0310-8a92-e5e31aec5664","name":"storeya"},"message":"Minor bug fixes\n\ngit-svn-id: https://plugins.svn.wordpress.org/exit-pop/trunk@1057920 b8457f37-d9ea-0310-8a92-e5e31aec5664","distinct":true,"url":"https://api.github.com/repos/wp-plugins/exit-pop/commits/eebd8bceebfb7464e1100e1fba45f1eac6f9e3d9"}]},"public":true,"created_at":"2015-01-01T15:10:11Z","org":{"id":2996849,"login":"wp-plugins","gravatar_id":"","url":"https://api.github.com/orgs/wp-plugins","avatar_url":"https://avatars.githubusercontent.com/u/2996849?"}} +,{"id":"2489655731","type":"PushEvent","actor":{"id":7752475,"login":"p1ch-jp","gravatar_id":"","url":"https://api.github.com/users/p1ch-jp","avatar_url":"https://avatars.githubusercontent.com/u/7752475?"},"repo":{"id":28688714,"name":"p1ch-jp/chiraura","url":"https://api.github.com/repos/p1ch-jp/chiraura"},"payload":{"push_id":536866117,"size":2,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"36b3144872f68f93043598b1eab161154e6185f6","before":"bcb7eeaae53274b518c8228183857fda26b3c6ca","commits":[{"sha":"81bc9cb7101660b38b64c22ec33566f686ba9393","author":{"email":"a52a11aef0dc7d33a2662863777bb09b6bd698c0@gmail.com","name":"p1ch-jp"},"message":"Automated commit by inari.","distinct":false,"url":"https://api.github.com/repos/p1ch-jp/chiraura/commits/81bc9cb7101660b38b64c22ec33566f686ba9393"},{"sha":"36b3144872f68f93043598b1eab161154e6185f6","author":{"email":"a52a11aef0dc7d33a2662863777bb09b6bd698c0@gmail.com","name":"p1ch-jp"},"message":"Automated commit by inari.","distinct":true,"url":"https://api.github.com/repos/p1ch-jp/chiraura/commits/36b3144872f68f93043598b1eab161154e6185f6"}]},"public":true,"created_at":"2015-01-01T15:10:11Z"} +,{"id":"2489655734","type":"PushEvent","actor":{"id":17514,"login":"skaes","gravatar_id":"","url":"https://api.github.com/users/skaes","avatar_url":"https://avatars.githubusercontent.com/u/17514?"},"repo":{"id":322185,"name":"skaes/logjam_core","url":"https://api.github.com/repos/skaes/logjam_core"},"payload":{"push_id":536866119,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c1d13163ed2a8a23a0fa2d97e7155c6aa344e55b","before":"e17961795251e2fe549b6a0f11f7b87a42d15834","commits":[{"sha":"c1d13163ed2a8a23a0fa2d97e7155c6aa344e55b","author":{"email":"fd8fbf2dc24ffb7daee55f6f100092a752516d9d@xing.com","name":"Stefan Kaes"},"message":"protect against negative free slots","distinct":true,"url":"https://api.github.com/repos/skaes/logjam_core/commits/c1d13163ed2a8a23a0fa2d97e7155c6aa344e55b"}]},"public":true,"created_at":"2015-01-01T15:10:12Z"} +,{"id":"2489655735","type":"WatchEvent","actor":{"id":4119857,"login":"sorceresslulu","gravatar_id":"","url":"https://api.github.com/users/sorceresslulu","avatar_url":"https://avatars.githubusercontent.com/u/4119857?"},"repo":{"id":5923215,"name":"hexojs/hexo","url":"https://api.github.com/repos/hexojs/hexo"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:10:12Z","org":{"id":6375567,"login":"hexojs","gravatar_id":"","url":"https://api.github.com/orgs/hexojs","avatar_url":"https://avatars.githubusercontent.com/u/6375567?"}} +,{"id":"2489655736","type":"WatchEvent","actor":{"id":157936,"login":"freeocs","gravatar_id":"","url":"https://api.github.com/users/freeocs","avatar_url":"https://avatars.githubusercontent.com/u/157936?"},"repo":{"id":1028706,"name":"mcpat/gcf","url":"https://api.github.com/repos/mcpat/gcf"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:10:12Z"} +,{"id":"2489655744","type":"DeleteEvent","actor":{"id":2281588,"login":"sdimitro","gravatar_id":"","url":"https://api.github.com/users/sdimitro","avatar_url":"https://avatars.githubusercontent.com/u/2281588?"},"repo":{"id":28663320,"name":"sdimitro/illumetrics","url":"https://api.github.com/repos/sdimitro/illumetrics"},"payload":{"ref":"cleanup_dirs","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:10:14Z"} +,{"id":"2489655745","type":"PushEvent","actor":{"id":1834049,"login":"isaacseymour","gravatar_id":"","url":"https://api.github.com/users/isaacseymour","avatar_url":"https://avatars.githubusercontent.com/u/1834049?"},"repo":{"id":28648149,"name":"gocardless/activejob-retry","url":"https://api.github.com/repos/gocardless/activejob-retry"},"payload":{"push_id":536866122,"size":11,"distinct_size":1,"ref":"refs/heads/drop-sidekiq","head":"6db68f041b34d5d924ed4b21c0608165c29cccf3","before":"90cb9a6c584103ab1872f63f5e14265f1e03fc65","commits":[{"sha":"3a2e490cefab4d747270e5482d6834708a212057","author":{"email":"b94ddd941335d400b73cc82065f083528f99eb9f@gmail.com","name":"Grey Baker"},"message":"Minor documentation cleanup","distinct":false,"url":"https://api.github.com/repos/gocardless/activejob-retry/commits/3a2e490cefab4d747270e5482d6834708a212057"},{"sha":"9190e88d3fbc601e28902f706b1f12703e01e21c","author":{"email":"6229a3e4f86172a005a6eaab5029d1bd13acce1f@gocardless.com","name":"Isaac Seymour"},"message":"Merge pull request #1 from gocardless/minor-cleanup\n\nMinor documentation cleanup","distinct":false,"url":"https://api.github.com/repos/gocardless/activejob-retry/commits/9190e88d3fbc601e28902f706b1f12703e01e21c"},{"sha":"ad5c0ec27269b2ce49ec63f26dfbe35b874f1280","author":{"email":"b94ddd941335d400b73cc82065f083528f99eb9f@gmail.com","name":"Grey Baker"},"message":"Clean up gemspec","distinct":false,"url":"https://api.github.com/repos/gocardless/activejob-retry/commits/ad5c0ec27269b2ce49ec63f26dfbe35b874f1280"},{"sha":"21f210dbe68046119040a1cab3fd7bcb796e8fc1","author":{"email":"6229a3e4f86172a005a6eaab5029d1bd13acce1f@gocardless.com","name":"Isaac Seymour"},"message":"Merge pull request #2 from gocardless/clean-up-gemspec\n\nClean up gemspec","distinct":false,"url":"https://api.github.com/repos/gocardless/activejob-retry/commits/21f210dbe68046119040a1cab3fd7bcb796e8fc1"},{"sha":"3a4cab1ba6d1478e3df0e99a068bae33ad71d448","author":{"email":"b94ddd941335d400b73cc82065f083528f99eb9f@gmail.com","name":"Grey Baker"},"message":"Minor cleanup of retry class","distinct":false,"url":"https://api.github.com/repos/gocardless/activejob-retry/commits/3a4cab1ba6d1478e3df0e99a068bae33ad71d448"},{"sha":"707d6eba4bc64b5a71a5b22e2bf77c50d451bc1f","author":{"email":"6229a3e4f86172a005a6eaab5029d1bd13acce1f@gocardless.com","name":"Isaac Seymour"},"message":"Copy across activejob tests and get them running","distinct":false,"url":"https://api.github.com/repos/gocardless/activejob-retry/commits/707d6eba4bc64b5a71a5b22e2bf77c50d451bc1f"},{"sha":"27c3eb138ff1c11c0306acecf5ae6244ae95fc80","author":{"email":"6229a3e4f86172a005a6eaab5029d1bd13acce1f@gocardless.com","name":"Isaac Seymour"},"message":"Merge pull request #3 from gocardless/clean-up-retry-class\n\nMinor cleanup of retry class","distinct":false,"url":"https://api.github.com/repos/gocardless/activejob-retry/commits/27c3eb138ff1c11c0306acecf5ae6244ae95fc80"},{"sha":"26f1f1fb98b689a9c72f62ab81fbd86b555e9650","author":{"email":"6229a3e4f86172a005a6eaab5029d1bd13acce1f@gocardless.com","name":"Isaac Seymour"},"message":"Merge pull request #4 from gocardless/activejob-tests\n\nCopy across ActiveJob tests and get them running","distinct":false,"url":"https://api.github.com/repos/gocardless/activejob-retry/commits/26f1f1fb98b689a9c72f62ab81fbd86b555e9650"},{"sha":"f95beaa7e5f3ed25a33798ca90dacc9d6dc21c51","author":{"email":"b94ddd941335d400b73cc82065f083528f99eb9f@gmail.com","name":"Grey Baker"},"message":"Check adapter is supported","distinct":false,"url":"https://api.github.com/repos/gocardless/activejob-retry/commits/f95beaa7e5f3ed25a33798ca90dacc9d6dc21c51"},{"sha":"e9b24cedeff29821abafb6bfa6c5833f5c2256da","author":{"email":"6229a3e4f86172a005a6eaab5029d1bd13acce1f@gocardless.com","name":"Isaac Seymour"},"message":"Merge pull request #5 from gocardless/check-adapter-supported\n\nCheck adapter is supported","distinct":false,"url":"https://api.github.com/repos/gocardless/activejob-retry/commits/e9b24cedeff29821abafb6bfa6c5833f5c2256da"},{"sha":"6db68f041b34d5d924ed4b21c0608165c29cccf3","author":{"email":"6229a3e4f86172a005a6eaab5029d1bd13acce1f@gocardless.com","name":"Isaac Seymour"},"message":"Drop sidekiq from integration tests","distinct":true,"url":"https://api.github.com/repos/gocardless/activejob-retry/commits/6db68f041b34d5d924ed4b21c0608165c29cccf3"}]},"public":true,"created_at":"2015-01-01T15:10:14Z","org":{"id":790629,"login":"gocardless","gravatar_id":"","url":"https://api.github.com/orgs/gocardless","avatar_url":"https://avatars.githubusercontent.com/u/790629?"}} +,{"id":"2489655747","type":"PushEvent","actor":{"id":4627837,"login":"jessemillar","gravatar_id":"","url":"https://api.github.com/users/jessemillar","avatar_url":"https://avatars.githubusercontent.com/u/4627837?"},"repo":{"id":27888713,"name":"jessemillar/Hail-Hydra","url":"https://api.github.com/repos/jessemillar/Hail-Hydra"},"payload":{"push_id":536866124,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"948ef62602a542a80eac962f9bbf0d5674fc85c6","before":"63625e294555db39cb6e24ea4f2bc2f6b21ac912","commits":[{"sha":"948ef62602a542a80eac962f9bbf0d5674fc85c6","author":{"email":"0ba40b71986250aad0903c7ebcfd76a410af35fb@gmail.com","name":"Jesse Millar"},"message":"Update LICENSE.md","distinct":true,"url":"https://api.github.com/repos/jessemillar/Hail-Hydra/commits/948ef62602a542a80eac962f9bbf0d5674fc85c6"}]},"public":true,"created_at":"2015-01-01T15:10:14Z"} +,{"id":"2489655748","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":536866125,"size":1,"distinct_size":1,"ref":"refs/heads/br_herman","head":"45237c52c8d6850e9edf39ebd88e6a32ef0419eb","before":"2cc65211dc2c6dcd7a383120d758cb64650ff404","commits":[{"sha":"45237c52c8d6850e9edf39ebd88e6a32ef0419eb","author":{"email":"2bb20d8a71fb7adbc1d6239cc9ff4130f26819dc@gmail.com","name":"Herman"},"message":"Coba lagi","distinct":true,"url":"https://api.github.com/repos/hermanwahyudi/selenium/commits/45237c52c8d6850e9edf39ebd88e6a32ef0419eb"}]},"public":true,"created_at":"2015-01-01T15:10:14Z"} +,{"id":"2489655750","type":"IssueCommentEvent","actor":{"id":165599,"login":"timoschilling","gravatar_id":"","url":"https://api.github.com/users/timoschilling","avatar_url":"https://avatars.githubusercontent.com/u/165599?"},"repo":{"id":611921,"name":"activeadmin/activeadmin","url":"https://api.github.com/repos/activeadmin/activeadmin"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/activeadmin/activeadmin/issues/3728","labels_url":"https://api.github.com/repos/activeadmin/activeadmin/issues/3728/labels{/name}","comments_url":"https://api.github.com/repos/activeadmin/activeadmin/issues/3728/comments","events_url":"https://api.github.com/repos/activeadmin/activeadmin/issues/3728/events","html_url":"https://github.com/activeadmin/activeadmin/issues/3728","id":53218296,"number":3728,"title":"Inline editing in index and show pages","user":{"login":"eshaiju","id":2918256,"avatar_url":"https://avatars.githubusercontent.com/u/2918256?v=3","gravatar_id":"","url":"https://api.github.com/users/eshaiju","html_url":"https://github.com/eshaiju","followers_url":"https://api.github.com/users/eshaiju/followers","following_url":"https://api.github.com/users/eshaiju/following{/other_user}","gists_url":"https://api.github.com/users/eshaiju/gists{/gist_id}","starred_url":"https://api.github.com/users/eshaiju/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eshaiju/subscriptions","organizations_url":"https://api.github.com/users/eshaiju/orgs","repos_url":"https://api.github.com/users/eshaiju/repos","events_url":"https://api.github.com/users/eshaiju/events{/privacy}","received_events_url":"https://api.github.com/users/eshaiju/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2015-01-01T11:55:32Z","updated_at":"2015-01-01T15:10:14Z","closed_at":null,"body":"Hi @seanlinsley, @timoschilling \r\nWhat about adding inline editing as a built in feature to active admin?.\r\nI achived this using gem best_in_place \r\nhttp://tech.eshaiju.in/blog/2014/04/30/in-page-editing-in-rails-active-admin-using-gem-best-in-place/"},"comment":{"url":"https://api.github.com/repos/activeadmin/activeadmin/issues/comments/68488698","html_url":"https://github.com/activeadmin/activeadmin/issues/3728#issuecomment-68488698","issue_url":"https://api.github.com/repos/activeadmin/activeadmin/issues/3728","id":68488698,"user":{"login":"timoschilling","id":165599,"avatar_url":"https://avatars.githubusercontent.com/u/165599?v=3","gravatar_id":"","url":"https://api.github.com/users/timoschilling","html_url":"https://github.com/timoschilling","followers_url":"https://api.github.com/users/timoschilling/followers","following_url":"https://api.github.com/users/timoschilling/following{/other_user}","gists_url":"https://api.github.com/users/timoschilling/gists{/gist_id}","starred_url":"https://api.github.com/users/timoschilling/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timoschilling/subscriptions","organizations_url":"https://api.github.com/users/timoschilling/orgs","repos_url":"https://api.github.com/users/timoschilling/repos","events_url":"https://api.github.com/users/timoschilling/events{/privacy}","received_events_url":"https://api.github.com/users/timoschilling/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:10:14Z","updated_at":"2015-01-01T15:10:14Z","body":"You can write a article in the Wiki"}},"public":true,"created_at":"2015-01-01T15:10:14Z","org":{"id":814570,"login":"activeadmin","gravatar_id":"","url":"https://api.github.com/orgs/activeadmin","avatar_url":"https://avatars.githubusercontent.com/u/814570?"}} +,{"id":"2489655751","type":"IssuesEvent","actor":{"id":10249189,"login":"PHPerWu","gravatar_id":"","url":"https://api.github.com/users/PHPerWu","avatar_url":"https://avatars.githubusercontent.com/u/10249189?"},"repo":{"id":28688434,"name":"PHPerWu/Student","url":"https://api.github.com/repos/PHPerWu/Student"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/PHPerWu/Student/issues/1","labels_url":"https://api.github.com/repos/PHPerWu/Student/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/PHPerWu/Student/issues/1/comments","events_url":"https://api.github.com/repos/PHPerWu/Student/issues/1/events","html_url":"https://github.com/PHPerWu/Student/issues/1","id":53221525,"number":1,"title":"XFCY","user":{"login":"PHPerWu","id":10249189,"avatar_url":"https://avatars.githubusercontent.com/u/10249189?v=3","gravatar_id":"","url":"https://api.github.com/users/PHPerWu","html_url":"https://github.com/PHPerWu","followers_url":"https://api.github.com/users/PHPerWu/followers","following_url":"https://api.github.com/users/PHPerWu/following{/other_user}","gists_url":"https://api.github.com/users/PHPerWu/gists{/gist_id}","starred_url":"https://api.github.com/users/PHPerWu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/PHPerWu/subscriptions","organizations_url":"https://api.github.com/users/PHPerWu/orgs","repos_url":"https://api.github.com/users/PHPerWu/repos","events_url":"https://api.github.com/users/PHPerWu/events{/privacy}","received_events_url":"https://api.github.com/users/PHPerWu/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:10:14Z","updated_at":"2015-01-01T15:10:14Z","closed_at":null,"body":"晓风残月"}},"public":true,"created_at":"2015-01-01T15:10:14Z"} +,{"id":"2489655752","type":"PushEvent","actor":{"id":723165,"login":"JulienMoumne","gravatar_id":"","url":"https://api.github.com/users/JulienMoumne","avatar_url":"https://avatars.githubusercontent.com/u/723165?"},"repo":{"id":8464183,"name":"piwik/piwik-dotnet-tracker","url":"https://api.github.com/repos/piwik/piwik-dotnet-tracker"},"payload":{"push_id":536866127,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fc83be245ed75f4c6e1b1dcb1a4635bca8e846b8","before":"1f15774282c14d4b0c02f6b3489b9328d7003aee","commits":[{"sha":"fc83be245ed75f4c6e1b1dcb1a4635bca8e846b8","author":{"email":"5c682c2d1ec4073e277f9ba9f4bdf07e5794dabe@piwik.org","name":"Julien Moumné"},"message":"typo in ContentType header","distinct":true,"url":"https://api.github.com/repos/piwik/piwik-dotnet-tracker/commits/fc83be245ed75f4c6e1b1dcb1a4635bca8e846b8"}]},"public":true,"created_at":"2015-01-01T15:10:14Z","org":{"id":698038,"login":"piwik","gravatar_id":"","url":"https://api.github.com/orgs/piwik","avatar_url":"https://avatars.githubusercontent.com/u/698038?"}} +,{"id":"2489655753","type":"WatchEvent","actor":{"id":1017620,"login":"BartoszJarocki","gravatar_id":"","url":"https://api.github.com/users/BartoszJarocki","avatar_url":"https://avatars.githubusercontent.com/u/1017620?"},"repo":{"id":25823250,"name":"xiprox/ErrorView","url":"https://api.github.com/repos/xiprox/ErrorView"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:10:15Z"} +,{"id":"2489655757","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":536866130,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"3b86edad084b6c24a0fc950cb7a5e02c29720174","before":"ca63a6bdd496e45647e6ff7b4bdaf5e3d9423e21","commits":[{"sha":"3b86edad084b6c24a0fc950cb7a5e02c29720174","author":{"email":"141a748f5c0795fdf68eaad85b65480c92abbe5f@internetdevels.com","name":"mula"},"message":"Update bump.","distinct":true,"url":"https://api.github.com/repos/InternetDevels/drupalcores/commits/3b86edad084b6c24a0fc950cb7a5e02c29720174"}]},"public":true,"created_at":"2015-01-01T15:10:15Z"} +,{"id":"2489655761","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":28487280,"name":"mmattel/core","url":"https://api.github.com/repos/mmattel/core"},"payload":{"push_id":536866131,"size":25,"distinct_size":3,"ref":"refs/heads/master","head":"ec6e70889a190844ee15784ec3d3138953dfd480","before":"e0fc26a5cb5349a028aa971ece4c643124056d55","commits":[{"sha":"8c48be453ec39f7a6283c7087229ed76fe128d0a","author":{"email":"00fda5d171062f4cf1a70d0331ae6885630e4c2a@owncloud.com","name":"Bjoern Schiessle"},"message":"only send activity if we have a valid path and the file is readable","distinct":false,"url":"https://api.github.com/repos/mmattel/core/commits/8c48be453ec39f7a6283c7087229ed76fe128d0a"},{"sha":"5a00b33a90a35cd8f54ba1b8c966608525205cf6","author":{"email":"ccbe98003f1cf0230fc266a4454ecd220d828993@ezix.org","name":"Lyonel Vincent"},"message":"Be less verbose when disabling SSL cert validation\n\nchange log level from WARN to DEBUG","distinct":false,"url":"https://api.github.com/repos/mmattel/core/commits/5a00b33a90a35cd8f54ba1b8c966608525205cf6"},{"sha":"f94b30060272eee8e3b092661be6f5e2dc61b209","author":{"email":"ccbe98003f1cf0230fc266a4454ecd220d828993@ezix.org","name":"Lyonel Vincent"},"message":"Be less verbose when using a paged search\n\nLower the priority from INFO to DEBUG","distinct":false,"url":"https://api.github.com/repos/mmattel/core/commits/f94b30060272eee8e3b092661be6f5e2dc61b209"},{"sha":"dc85c20b1834e0691d8f642d79028b60c94eff30","author":{"email":"96835dd8bfa718bd6447ccc87af89ae1675daeca@owncloud.com","name":"Tom Needham"},"message":"Add provisioning_api app\n\nenable unit tests for provisioning api\n\nfix admin docu key","distinct":false,"url":"https://api.github.com/repos/mmattel/core/commits/dc85c20b1834e0691d8f642d79028b60c94eff30"},{"sha":"3dea2b95c67adfeaf8b9af062b6b586d2d845300","author":{"email":"86a8c2da8527a1c6978bdca6d7986fe14ae147fe@owncloud.org","name":"Frank Karlitschek"},"message":"Automatically detect the edition based on the enterprise_key app.","distinct":false,"url":"https://api.github.com/repos/mmattel/core/commits/3dea2b95c67adfeaf8b9af062b6b586d2d845300"},{"sha":"4a40e5699c27a4aee11205232e71e0b6b8fc8c96","author":{"email":"86a8c2da8527a1c6978bdca6d7986fe14ae147fe@owncloud.org","name":"Frank Karlitschek"},"message":"remove Edition","distinct":false,"url":"https://api.github.com/repos/mmattel/core/commits/4a40e5699c27a4aee11205232e71e0b6b8fc8c96"},{"sha":"0836ce9cd83aac7a6cd2a6396632f6ddd8b09f3a","author":{"email":"4751712426bbecfda99947034b6176c396757e74@tmit.eu","name":"Jenkins for ownCloud"},"message":"[tx-robot] updated from transifex","distinct":false,"url":"https://api.github.com/repos/mmattel/core/commits/0836ce9cd83aac7a6cd2a6396632f6ddd8b09f3a"},{"sha":"d2e53d1022ac4977739d3f159008e652115ed1b5","author":{"email":"4751712426bbecfda99947034b6176c396757e74@tmit.eu","name":"Jenkins for ownCloud"},"message":"[tx-robot] updated from transifex","distinct":false,"url":"https://api.github.com/repos/mmattel/core/commits/d2e53d1022ac4977739d3f159008e652115ed1b5"},{"sha":"688a4022df1978b87be1720424c4507f3db79e39","author":{"email":"cfd42f3b0bf19c6e35e778ede1fa394bf5d63c15@tmit.eu","name":"Thomas Müller"},"message":"Merge pull request #13012 from owncloud/small_fix\n\nonly send activity if we have a valid path and the file is readable","distinct":false,"url":"https://api.github.com/repos/mmattel/core/commits/688a4022df1978b87be1720424c4507f3db79e39"},{"sha":"85e02460c85e6fb0268ff3929023cbb308cfeeeb","author":{"email":"cfd42f3b0bf19c6e35e778ede1fa394bf5d63c15@tmit.eu","name":"Thomas Müller"},"message":"Merge pull request #13025 from lyonel/master\n\nuser_ldap is too verbose by default","distinct":false,"url":"https://api.github.com/repos/mmattel/core/commits/85e02460c85e6fb0268ff3929023cbb308cfeeeb"},{"sha":"1785ca484bb7ab40168f6413addbb7939d16b1b3","author":{"email":"4751712426bbecfda99947034b6176c396757e74@tmit.eu","name":"Jenkins for ownCloud"},"message":"[tx-robot] updated from transifex","distinct":false,"url":"https://api.github.com/repos/mmattel/core/commits/1785ca484bb7ab40168f6413addbb7939d16b1b3"},{"sha":"222e4a0762b4e2ea8cb5ddb57ac08b273220e631","author":{"email":"65adda4326914576405c9e3a62f4904d96573863@owncloud.com","name":"Lukas Reschke"},"message":"Check for hash\n\nSee https://github.com/owncloud/core/pull/13042","distinct":false,"url":"https://api.github.com/repos/mmattel/core/commits/222e4a0762b4e2ea8cb5ddb57ac08b273220e631"},{"sha":"2711863220e452a4132766cbd1836cb453e0616b","author":{"email":"65adda4326914576405c9e3a62f4904d96573863@owncloud.com","name":"Lukas Reschke"},"message":"Merge pull request #13035 from owncloud/new_edition_detection\n\nAutomatically detect the edition based on the enterprise_key app.","distinct":false,"url":"https://api.github.com/repos/mmattel/core/commits/2711863220e452a4132766cbd1836cb453e0616b"},{"sha":"aec79b0c0ec7a6520a99261ed426d7ac621d2d2e","author":{"email":"cfd42f3b0bf19c6e35e778ede1fa394bf5d63c15@tmit.eu","name":"Thomas Müller"},"message":"Merge pull request #13043 from owncloud/check-for-hash\n\nCheck for hash","distinct":false,"url":"https://api.github.com/repos/mmattel/core/commits/aec79b0c0ec7a6520a99261ed426d7ac621d2d2e"},{"sha":"9f327457dc74f3e8fc4df17b0d44a99b86c22384","author":{"email":"cfd42f3b0bf19c6e35e778ede1fa394bf5d63c15@tmit.eu","name":"Thomas Müller"},"message":"Merge pull request #13023 from owncloud/provisioning_api-2\n\n[jenkins] Add provisioning_api app","distinct":false,"url":"https://api.github.com/repos/mmattel/core/commits/9f327457dc74f3e8fc4df17b0d44a99b86c22384"},{"sha":"5b00bc1d6e36bb81aee02da612195a048e90a8b4","author":{"email":"cfd42f3b0bf19c6e35e778ede1fa394bf5d63c15@tmit.eu","name":"Thomas Müller"},"message":"Adding basement for the direct download url","distinct":false,"url":"https://api.github.com/repos/mmattel/core/commits/5b00bc1d6e36bb81aee02da612195a048e90a8b4"},{"sha":"81243b0f5dafb89accaf01a3358226dcec6b2e00","author":{"email":"cfd42f3b0bf19c6e35e778ede1fa394bf5d63c15@tmit.eu","name":"Thomas Müller"},"message":"adding getDirectDownload() to Wrapper","distinct":false,"url":"https://api.github.com/repos/mmattel/core/commits/81243b0f5dafb89accaf01a3358226dcec6b2e00"},{"sha":"c8e946f63361f86feee4c8c3e7bb6b7b0cb191fc","author":{"email":"4751712426bbecfda99947034b6176c396757e74@tmit.eu","name":"Jenkins for ownCloud"},"message":"[tx-robot] updated from transifex","distinct":false,"url":"https://api.github.com/repos/mmattel/core/commits/c8e946f63361f86feee4c8c3e7bb6b7b0cb191fc"},{"sha":"cd53da43c072fb08ab4add5c464ffea205e20756","author":{"email":"6023401cb58266d82f48161e6a0e617c0ad4f936@gmx.de","name":"Frank Karlitschek"},"message":"Merge pull request #12854 from owncloud/add-direct-download-link\n\nAdding foundation for the direct download url","distinct":false,"url":"https://api.github.com/repos/mmattel/core/commits/cd53da43c072fb08ab4add5c464ffea205e20756"},{"sha":"01374ab6b54091a8ade4a48f8a67d42c928502e8","author":{"email":"4751712426bbecfda99947034b6176c396757e74@tmit.eu","name":"Jenkins for ownCloud"},"message":"[tx-robot] updated from transifex","distinct":false,"url":"https://api.github.com/repos/mmattel/core/commits/01374ab6b54091a8ade4a48f8a67d42c928502e8"}]},"public":true,"created_at":"2015-01-01T15:10:15Z"} +,{"id":"2489655763","type":"GollumEvent","actor":{"id":8036795,"login":"lilutanya","gravatar_id":"","url":"https://api.github.com/users/lilutanya","avatar_url":"https://avatars.githubusercontent.com/u/8036795?"},"repo":{"id":28629261,"name":"lilutanya/dojo_rules","url":"https://api.github.com/repos/lilutanya/dojo_rules"},"payload":{"pages":[{"page_name":"Home","title":"Home","summary":null,"action":"edited","sha":"2ad93cc70bd8629086fb06f252ba49af34baea42","html_url":"https://github.com/lilutanya/dojo_rules/wiki/Home"}]},"public":true,"created_at":"2015-01-01T15:10:15Z"} +,{"id":"2489655764","type":"IssueCommentEvent","actor":{"id":31533,"login":"chocolateboy","gravatar_id":"","url":"https://api.github.com/users/chocolateboy","avatar_url":"https://avatars.githubusercontent.com/u/31533?"},"repo":{"id":14935921,"name":"mozilla/jpm","url":"https://api.github.com/repos/mozilla/jpm"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/mozilla/jpm/issues/178","labels_url":"https://api.github.com/repos/mozilla/jpm/issues/178/labels{/name}","comments_url":"https://api.github.com/repos/mozilla/jpm/issues/178/comments","events_url":"https://api.github.com/repos/mozilla/jpm/issues/178/events","html_url":"https://github.com/mozilla/jpm/issues/178","id":43697761,"number":178,"title":"Default Firefox path for jpm doesn't work on Ubuntu","user":{"login":"ericschultz","id":94169,"avatar_url":"https://avatars.githubusercontent.com/u/94169?v=3","gravatar_id":"","url":"https://api.github.com/users/ericschultz","html_url":"https://github.com/ericschultz","followers_url":"https://api.github.com/users/ericschultz/followers","following_url":"https://api.github.com/users/ericschultz/following{/other_user}","gists_url":"https://api.github.com/users/ericschultz/gists{/gist_id}","starred_url":"https://api.github.com/users/ericschultz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ericschultz/subscriptions","organizations_url":"https://api.github.com/users/ericschultz/orgs","repos_url":"https://api.github.com/users/ericschultz/repos","events_url":"https://api.github.com/users/ericschultz/events{/privacy}","received_events_url":"https://api.github.com/users/ericschultz/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/mozilla/jpm/labels/bug","name":"bug","color":"fc2929"},{"url":"https://api.github.com/repos/mozilla/jpm/labels/good+first+bug","name":"good first bug","color":"bfe5bf"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-09-23T23:35:03Z","updated_at":"2015-01-01T15:10:15Z","closed_at":null,"body":"I'm running Ubuntu 14.04 with Firefox 34.0a2 (2014-09-22)\r\n----\r\nWhile trying to run 'jpm test' on a new add-in created with 'jpm init,' I receive the following output (minus formatting and JPM header at the beginning):\r\n\r\n```bash\r\nRunning test on Desktop\r\nThe `version` entry must be specified, and it should follow semantic\r\nversioning rules.\r\n\r\nhttp://semver.org\r\n\r\nXPI created at /tmp/jid1-5RUIvXqVSOhnMw@jetpack.xpi (13605ms)\r\nError: spawn ENOENT\r\n[object Object]\r\n```\r\nI couldn't figure out what was going on at first. I eventually ran 'jpm test -v' and noticed something: the path being used by jpm test was /usr/lib64/firefox. /usr/lib64/firefox is not where the Firefox binary is on Ubuntu; instead it's in /usr/bin/firefox (might be symlinked elsewhere too).\r\n\r\nIdeally jpm should figure out where the firefox installation is on the system and use that for tests. How we could handle cases where there are multiple versions installed is not entirely clear to me.\r\n\r\nAs a mitigation, it would be nice if jpm checked for the firefox installation and provided a useful error message so people would know what the problem actually is. I just stumbled on this by running jpm test -v but that shouldn't be necessary."},"comment":{"url":"https://api.github.com/repos/mozilla/jpm/issues/comments/68488699","html_url":"https://github.com/mozilla/jpm/issues/178#issuecomment-68488699","issue_url":"https://api.github.com/repos/mozilla/jpm/issues/178","id":68488699,"user":{"login":"chocolateboy","id":31533,"avatar_url":"https://avatars.githubusercontent.com/u/31533?v=3","gravatar_id":"","url":"https://api.github.com/users/chocolateboy","html_url":"https://github.com/chocolateboy","followers_url":"https://api.github.com/users/chocolateboy/followers","following_url":"https://api.github.com/users/chocolateboy/following{/other_user}","gists_url":"https://api.github.com/users/chocolateboy/gists{/gist_id}","starred_url":"https://api.github.com/users/chocolateboy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chocolateboy/subscriptions","organizations_url":"https://api.github.com/users/chocolateboy/orgs","repos_url":"https://api.github.com/users/chocolateboy/repos","events_url":"https://api.github.com/users/chocolateboy/events{/privacy}","received_events_url":"https://api.github.com/users/chocolateboy/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:10:15Z","updated_at":"2015-01-01T15:10:15Z","body":"I didn't spot the [failing tests](https://travis-ci.org/mozilla/jpm/jobs/45609360) because I have so many failing (in master) I assumed my environment isn't set up correctly to run them and I didn't fancy trying to build/install Firefox from source.\r\n\r\nNot sure how to fix the tests and and get them passing on Ubuntu since they seem to expect the x86_64 binaries to be in /usr/lib64/firefox/ :-/"}},"public":true,"created_at":"2015-01-01T15:10:15Z","org":{"id":131524,"login":"mozilla","gravatar_id":"","url":"https://api.github.com/orgs/mozilla","avatar_url":"https://avatars.githubusercontent.com/u/131524?"}} +,{"id":"2489655765","type":"PushEvent","actor":{"id":5175132,"login":"Switchsama","gravatar_id":"","url":"https://api.github.com/users/Switchsama","avatar_url":"https://avatars.githubusercontent.com/u/5175132?"},"repo":{"id":28685123,"name":"Switchsama/githubpage","url":"https://api.github.com/repos/Switchsama/githubpage"},"payload":{"push_id":536866133,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"11e5064d788f1b49e5defe3cd50b4fc59eebbf66","before":"2a75b9883f8bbaf38cd02d7ffce897aed364b4d7","commits":[{"sha":"11e5064d788f1b49e5defe3cd50b4fc59eebbf66","author":{"email":"4839d1732a5be6a2779a307bf0f67349e8ac5fa8@gmail.com","name":"Switchsama"},"message":"third post","distinct":true,"url":"https://api.github.com/repos/Switchsama/githubpage/commits/11e5064d788f1b49e5defe3cd50b4fc59eebbf66"}]},"public":true,"created_at":"2015-01-01T15:10:16Z"} +,{"id":"2489655769","type":"WatchEvent","actor":{"id":6755852,"login":"kaittodesk","gravatar_id":"","url":"https://api.github.com/users/kaittodesk","avatar_url":"https://avatars.githubusercontent.com/u/6755852?"},"repo":{"id":26730195,"name":"cachethq/Cachet","url":"https://api.github.com/repos/cachethq/Cachet"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:10:16Z","org":{"id":9951502,"login":"cachethq","gravatar_id":"","url":"https://api.github.com/orgs/cachethq","avatar_url":"https://avatars.githubusercontent.com/u/9951502?"}} +,{"id":"2489655770","type":"WatchEvent","actor":{"id":6462268,"login":"aadel112","gravatar_id":"","url":"https://api.github.com/users/aadel112","avatar_url":"https://avatars.githubusercontent.com/u/6462268?"},"repo":{"id":28538501,"name":"STRML/react-grid-layout","url":"https://api.github.com/repos/STRML/react-grid-layout"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:10:16Z"} +,{"id":"2489655777","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":536866137,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6d6f7054f05cce7b4ede0ee9456b9373d250c080","before":"e597860839edd312d53d090c3401abcbb17e4c9a","commits":[{"sha":"6d6f7054f05cce7b4ede0ee9456b9373d250c080","author":{"email":"798520c19e899fb2be364efde581283231d48b6f@126.com","name":"quhezheng"},"message":"update","distinct":true,"url":"https://api.github.com/repos/quhezheng/HomeIP/commits/6d6f7054f05cce7b4ede0ee9456b9373d250c080"}]},"public":true,"created_at":"2015-01-01T15:10:17Z"} +,{"id":"2489655779","type":"PushEvent","actor":{"id":1259250,"login":"muniere","gravatar_id":"","url":"https://api.github.com/users/muniere","avatar_url":"https://avatars.githubusercontent.com/u/1259250?"},"repo":{"id":28688681,"name":"muniere/hipchat-history","url":"https://api.github.com/repos/muniere/hipchat-history"},"payload":{"push_id":536866139,"size":6,"distinct_size":6,"ref":"refs/heads/master","head":"99bc6e38454906dfc055f1cc0d26f1a75c1b70bd","before":"fdee85b1797d525259720c358340790317aac453","commits":[{"sha":"13f32962b413ad85d354af3d37dcd343df310710","author":{"email":"031e3536a6f8d25babc86cb32cff8cbaeb0c16c7@gmail.com","name":"Hiromune Ikeda"},"message":"First commit","distinct":true,"url":"https://api.github.com/repos/muniere/hipchat-history/commits/13f32962b413ad85d354af3d37dcd343df310710"},{"sha":"380007f98f87427b6da8b8a1f5c3e6cbeaa128b4","author":{"email":"031e3536a6f8d25babc86cb32cff8cbaeb0c16c7@gmail.com","name":"Hiromune Ikeda"},"message":"Support to collect messages in specific date","distinct":true,"url":"https://api.github.com/repos/muniere/hipchat-history/commits/380007f98f87427b6da8b8a1f5c3e6cbeaa128b4"},{"sha":"ad4b13ca8b710ea50a1197a8caad57c789def394","author":{"email":"031e3536a6f8d25babc86cb32cff8cbaeb0c16c7@gmail.com","name":"Hiromune Ikeda"},"message":"Refactor methods for room history","distinct":true,"url":"https://api.github.com/repos/muniere/hipchat-history/commits/ad4b13ca8b710ea50a1197a8caad57c789def394"},{"sha":"37f4058e063587b4d3e2e2f495815c9cce02fecf","author":{"email":"031e3536a6f8d25babc86cb32cff8cbaeb0c16c7@gmail.com","name":"Hiromune Ikeda"},"message":"Support to select messages only from owner of token","distinct":true,"url":"https://api.github.com/repos/muniere/hipchat-history/commits/37f4058e063587b4d3e2e2f495815c9cce02fecf"},{"sha":"b67165dbf0430ebb188044465c19822726828058","author":{"email":"031e3536a6f8d25babc86cb32cff8cbaeb0c16c7@gmail.com","name":"Hiromune Ikeda"},"message":"Indent multiple line messages","distinct":true,"url":"https://api.github.com/repos/muniere/hipchat-history/commits/b67165dbf0430ebb188044465c19822726828058"},{"sha":"99bc6e38454906dfc055f1cc0d26f1a75c1b70bd","author":{"email":"031e3536a6f8d25babc86cb32cff8cbaeb0c16c7@gmail.com","name":"Hiromune Ikeda"},"message":"Do not colorize except for tty","distinct":true,"url":"https://api.github.com/repos/muniere/hipchat-history/commits/99bc6e38454906dfc055f1cc0d26f1a75c1b70bd"}]},"public":true,"created_at":"2015-01-01T15:10:17Z"} +,{"id":"2489655782","type":"ForkEvent","actor":{"id":2088258,"login":"RandomHandle","gravatar_id":"","url":"https://api.github.com/users/RandomHandle","avatar_url":"https://avatars.githubusercontent.com/u/2088258?"},"repo":{"id":24246283,"name":"trydis/FIFA-Ultimate-Team-2015-Toolkit","url":"https://api.github.com/repos/trydis/FIFA-Ultimate-Team-2015-Toolkit"},"payload":{"forkee":{"id":28688779,"name":"FIFA-Ultimate-Team-2015-Toolkit","full_name":"RandomHandle/FIFA-Ultimate-Team-2015-Toolkit","owner":{"login":"RandomHandle","id":2088258,"avatar_url":"https://avatars.githubusercontent.com/u/2088258?v=3","gravatar_id":"","url":"https://api.github.com/users/RandomHandle","html_url":"https://github.com/RandomHandle","followers_url":"https://api.github.com/users/RandomHandle/followers","following_url":"https://api.github.com/users/RandomHandle/following{/other_user}","gists_url":"https://api.github.com/users/RandomHandle/gists{/gist_id}","starred_url":"https://api.github.com/users/RandomHandle/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RandomHandle/subscriptions","organizations_url":"https://api.github.com/users/RandomHandle/orgs","repos_url":"https://api.github.com/users/RandomHandle/repos","events_url":"https://api.github.com/users/RandomHandle/events{/privacy}","received_events_url":"https://api.github.com/users/RandomHandle/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit","description":"FIFA Ultimate Team 2015 Toolkit","fork":true,"url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit","forks_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/forks","keys_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/teams","hooks_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/hooks","issue_events_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/issues/events{/number}","events_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/events","assignees_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/assignees{/user}","branches_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/branches{/branch}","tags_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/tags","blobs_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/git/refs{/sha}","trees_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/statuses/{sha}","languages_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/languages","stargazers_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/stargazers","contributors_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/contributors","subscribers_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/subscribers","subscription_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/subscription","commits_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/commits{/sha}","git_commits_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/git/commits{/sha}","comments_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/comments{/number}","issue_comment_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/issues/comments/{number}","contents_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/contents/{+path}","compare_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/merges","archive_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/downloads","issues_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/issues{/number}","pulls_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/pulls{/number}","milestones_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/milestones{/number}","notifications_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/labels{/name}","releases_url":"https://api.github.com/repos/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit/releases{/id}","created_at":"2015-01-01T15:10:17Z","updated_at":"2014-12-30T11:21:48Z","pushed_at":"2014-12-28T11:51:47Z","git_url":"git://github.com/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit.git","ssh_url":"git@github.com:RandomHandle/FIFA-Ultimate-Team-2015-Toolkit.git","clone_url":"https://github.com/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit.git","svn_url":"https://github.com/RandomHandle/FIFA-Ultimate-Team-2015-Toolkit","homepage":null,"size":7773,"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:10:18Z"} +,{"id":"2489655783","type":"PushEvent","actor":{"id":380756,"login":"krisajenkins","gravatar_id":"","url":"https://api.github.com/users/krisajenkins","avatar_url":"https://avatars.githubusercontent.com/u/380756?"},"repo":{"id":11638952,"name":"krisajenkins/ob-browser","url":"https://api.github.com/repos/krisajenkins/ob-browser"},"payload":{"push_id":536866140,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"da7bc4fc88a3d35e8f98c68ffe9f30ebb596d56e","before":"f76f0a58b2dae62d145f7d06c4917d4fe771e79e","commits":[{"sha":"da7bc4fc88a3d35e8f98c68ffe9f30ebb596d56e","author":{"email":"30ce90ed7baf2cb34cc9c3d7b0f0c2939de51a22@gmail.com","name":"Kris Jenkins"},"message":"Correcting the package description.\n\nAddressed issue #1.","distinct":true,"url":"https://api.github.com/repos/krisajenkins/ob-browser/commits/da7bc4fc88a3d35e8f98c68ffe9f30ebb596d56e"}]},"public":true,"created_at":"2015-01-01T15:10:18Z"} +,{"id":"2489655785","type":"PullRequestReviewCommentEvent","actor":{"id":459648,"login":"samsonasik","gravatar_id":"","url":"https://api.github.com/users/samsonasik","avatar_url":"https://avatars.githubusercontent.com/u/459648?"},"repo":{"id":702550,"name":"zendframework/zf2","url":"https://api.github.com/repos/zendframework/zf2"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/22400125","id":22400125,"diff_hunk":"@@ -0,0 +1,136 @@\n+\r\nACCESS GRANTED\r\nThe password for \r\n is now available in your clipboard for 10 seconds\r\n```\r\n\r\n![Klipper output when 10s period is on](https://f.cloud.github.com/assets/1869833/1084485/b0e9bd44-15af-11e3-8c8e-b9e62c8af032.jpg)\r\n\r\nIt's a really great tool and I want to use it right now. I hope you'll read this issue and at least try to help me ;).\r\n\r\nYours,\r\nMarcin"}},"public":true,"created_at":"2015-01-01T15:10:22Z"} +,{"id":"2489655833","type":"PushEvent","actor":{"id":356209,"login":"timof","gravatar_id":"","url":"https://api.github.com/users/timof","avatar_url":"https://avatars.githubusercontent.com/u/356209?"},"repo":{"id":1214007,"name":"timof/jlf","url":"https://api.github.com/repos/timof/jlf"},"payload":{"push_id":536866159,"size":2,"distinct_size":1,"ref":"refs/heads/beta","head":"6a39ff3ef5cf07f47ff31951ea31ae75316896c0","before":"110555fee8d01a6e7d97d297e7e185fe782f0294","commits":[{"sha":"1c859953d376e554811e4ce32770675d560ba563","author":{"email":"fc6a36c2798d453228494fcb4cd13f69df8387f6@qipc.org","name":"Timo Felbinger"},"message":"delete!","distinct":false,"url":"https://api.github.com/repos/timof/jlf/commits/1c859953d376e554811e4ce32770675d560ba563"},{"sha":"6a39ff3ef5cf07f47ff31951ea31ae75316896c0","author":{"email":"fc6a36c2798d453228494fcb4cd13f69df8387f6@qipc.org","name":"Timo Felbinger"},"message":"Merge commit 'github/testing' into beta","distinct":true,"url":"https://api.github.com/repos/timof/jlf/commits/6a39ff3ef5cf07f47ff31951ea31ae75316896c0"}]},"public":true,"created_at":"2015-01-01T15:10:22Z"} +,{"id":"2489655836","type":"IssueCommentEvent","actor":{"id":4178729,"login":"WhatAKitty","gravatar_id":"","url":"https://api.github.com/users/WhatAKitty","avatar_url":"https://avatars.githubusercontent.com/u/4178729?"},"repo":{"id":9467592,"name":"niceue/validator","url":"https://api.github.com/repos/niceue/validator"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/niceue/validator/issues/174","labels_url":"https://api.github.com/repos/niceue/validator/issues/174/labels{/name}","comments_url":"https://api.github.com/repos/niceue/validator/issues/174/comments","events_url":"https://api.github.com/repos/niceue/validator/issues/174/events","html_url":"https://github.com/niceue/validator/issues/174","id":53164667,"number":174,"title":"match的问题","user":{"login":"WhatAKitty","id":4178729,"avatar_url":"https://avatars.githubusercontent.com/u/4178729?v=3","gravatar_id":"","url":"https://api.github.com/users/WhatAKitty","html_url":"https://github.com/WhatAKitty","followers_url":"https://api.github.com/users/WhatAKitty/followers","following_url":"https://api.github.com/users/WhatAKitty/following{/other_user}","gists_url":"https://api.github.com/users/WhatAKitty/gists{/gist_id}","starred_url":"https://api.github.com/users/WhatAKitty/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/WhatAKitty/subscriptions","organizations_url":"https://api.github.com/users/WhatAKitty/orgs","repos_url":"https://api.github.com/users/WhatAKitty/repos","events_url":"https://api.github.com/users/WhatAKitty/events{/privacy}","received_events_url":"https://api.github.com/users/WhatAKitty/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":5,"created_at":"2014-12-31T03:15:34Z","updated_at":"2015-01-01T15:10:22Z","closed_at":null,"body":"A字段不存在任何校验,B字段存在一个校验为与A字段是否一致的匹配,会出现A字段必须为fied的情况。是否可以解决一下?"},"comment":{"url":"https://api.github.com/repos/niceue/validator/issues/comments/68488702","html_url":"https://github.com/niceue/validator/issues/174#issuecomment-68488702","issue_url":"https://api.github.com/repos/niceue/validator/issues/174","id":68488702,"user":{"login":"WhatAKitty","id":4178729,"avatar_url":"https://avatars.githubusercontent.com/u/4178729?v=3","gravatar_id":"","url":"https://api.github.com/users/WhatAKitty","html_url":"https://github.com/WhatAKitty","followers_url":"https://api.github.com/users/WhatAKitty/followers","following_url":"https://api.github.com/users/WhatAKitty/following{/other_user}","gists_url":"https://api.github.com/users/WhatAKitty/gists{/gist_id}","starred_url":"https://api.github.com/users/WhatAKitty/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/WhatAKitty/subscriptions","organizations_url":"https://api.github.com/users/WhatAKitty/orgs","repos_url":"https://api.github.com/users/WhatAKitty/repos","events_url":"https://api.github.com/users/WhatAKitty/events{/privacy}","received_events_url":"https://api.github.com/users/WhatAKitty/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:10:22Z","updated_at":"2015-01-01T15:10:22Z","body":"@niceue \r\n好的,那我试试"}},"public":true,"created_at":"2015-01-01T15:10:22Z"} +,{"id":"2489655845","type":"PushEvent","actor":{"id":223235,"login":"elmasse","gravatar_id":"","url":"https://api.github.com/users/elmasse","avatar_url":"https://avatars.githubusercontent.com/u/223235?"},"repo":{"id":28545100,"name":"elmasse/elmasse.github.io","url":"https://api.github.com/repos/elmasse/elmasse.github.io"},"payload":{"push_id":536866164,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fd9e75afba8d94269929d990d17cf637f154a737","before":"a7f678e69206b77e646043ee8d517b19499ec7f4","commits":[{"sha":"fd9e75afba8d94269929d990d17cf637f154a737","author":{"email":"2cfd5618fdddec238b0217fd18a78c34381d473d@gmail.com","name":"Maximiliano Fierro"},"message":"fixing typos","distinct":true,"url":"https://api.github.com/repos/elmasse/elmasse.github.io/commits/fd9e75afba8d94269929d990d17cf637f154a737"}]},"public":true,"created_at":"2015-01-01T15:10:24Z"} +,{"id":"2489655846","type":"PushEvent","actor":{"id":472854,"login":"adamvaughan","gravatar_id":"","url":"https://api.github.com/users/adamvaughan","avatar_url":"https://avatars.githubusercontent.com/u/472854?"},"repo":{"id":23626547,"name":"adamvaughan/cookbook","url":"https://api.github.com/repos/adamvaughan/cookbook"},"payload":{"push_id":536866165,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"04c2df9181f8cf324cedbaf552839751fd15aae4","before":"ba54342fa9f719d806273e61c139a543e94a4045","commits":[{"sha":"04c2df9181f8cf324cedbaf552839751fd15aae4","author":{"email":"bfa33a92807914ffd450bb126e9365186482dd3b@gmail.com","name":"Adam Vaughan"},"message":"Fix pluralization of medium.","distinct":true,"url":"https://api.github.com/repos/adamvaughan/cookbook/commits/04c2df9181f8cf324cedbaf552839751fd15aae4"}]},"public":true,"created_at":"2015-01-01T15:10:24Z"} +,{"id":"2489655850","type":"PushEvent","actor":{"id":9294836,"login":"YuriyIvon","gravatar_id":"","url":"https://api.github.com/users/YuriyIvon","avatar_url":"https://avatars.githubusercontent.com/u/9294836?"},"repo":{"id":25402145,"name":"pamidur/aspect-injector","url":"https://api.github.com/repos/pamidur/aspect-injector"},"payload":{"push_id":536866167,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a954663024522f1d38677b6bd8d9eb43b9c34931","before":"68c21df73d548942114697c187290f8d7a89a7c4","commits":[{"sha":"a954663024522f1d38677b6bd8d9eb43b9c34931","author":{"email":"d68c88b98cb20bf9440e5fd2980550e4a7e0cca5@yandex.ru","name":"Yuriy Ivon"},"message":"Properly implemented aspect scopes, improved code","distinct":true,"url":"https://api.github.com/repos/pamidur/aspect-injector/commits/a954663024522f1d38677b6bd8d9eb43b9c34931"}]},"public":true,"created_at":"2015-01-01T15:10:24Z"} +,{"id":"2489655851","type":"PushEvent","actor":{"id":800043,"login":"06wj","gravatar_id":"","url":"https://api.github.com/users/06wj","avatar_url":"https://avatars.githubusercontent.com/u/800043?"},"repo":{"id":28091401,"name":"06wj/lego","url":"https://api.github.com/repos/06wj/lego"},"payload":{"push_id":536866168,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f2376a9253ee238f71679a1846f1ada98d429c36","before":"68867c7354f15fc3a6f4030791983ddbb6147790","commits":[{"sha":"f2376a9253ee238f71679a1846f1ada98d429c36","author":{"email":"0192e97bcb18f9671e23c39bc8c1a979ea9e4047@alibaba-inc.com","name":"墨水"},"message":"add vector","distinct":true,"url":"https://api.github.com/repos/06wj/lego/commits/f2376a9253ee238f71679a1846f1ada98d429c36"}]},"public":true,"created_at":"2015-01-01T15:10:24Z"} +,{"id":"2489655852","type":"PushEvent","actor":{"id":648406,"login":"qx","gravatar_id":"","url":"https://api.github.com/users/qx","avatar_url":"https://avatars.githubusercontent.com/u/648406?"},"repo":{"id":20314887,"name":"qx/MacRailsSample","url":"https://api.github.com/repos/qx/MacRailsSample"},"payload":{"push_id":536866169,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9cd3d60d33b51275952a3417c20e699ff0c4999d","before":"3c14f2f4c3832fcea774f32719d6e75008be0589","commits":[{"sha":"9cd3d60d33b51275952a3417c20e699ff0c4999d","author":{"email":"752357a88c5027cdabb2c87ca4561f05f6dc2b41@gmail.com","name":"ok"},"message":"Thu Jan 1 23:09:30 CST 2015\n\n Content:update version.","distinct":true,"url":"https://api.github.com/repos/qx/MacRailsSample/commits/9cd3d60d33b51275952a3417c20e699ff0c4999d"}]},"public":true,"created_at":"2015-01-01T15:10:25Z"} +,{"id":"2489655853","type":"PushEvent","actor":{"id":220405,"login":"atk","gravatar_id":"","url":"https://api.github.com/users/atk","avatar_url":"https://avatars.githubusercontent.com/u/220405?"},"repo":{"id":26156411,"name":"Rythal/Carbonite","url":"https://api.github.com/repos/Rythal/Carbonite"},"payload":{"push_id":536866170,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c4cb4bfb49abb5fa6a1d8ece042622ff16dc8f1e","before":"8fd7b72c9bc5f327ac89be5ed980e124e2833560","commits":[{"sha":"c4cb4bfb49abb5fa6a1d8ece042622ff16dc8f1e","author":{"email":"383c18695e0ff879782ecb61c760b49541b63995@web.de","name":"atk"},"message":"Missing translation \"Show Warehouse\"","distinct":true,"url":"https://api.github.com/repos/Rythal/Carbonite/commits/c4cb4bfb49abb5fa6a1d8ece042622ff16dc8f1e"}]},"public":true,"created_at":"2015-01-01T15:10:25Z"} +,{"id":"2489655855","type":"PullRequestReviewCommentEvent","actor":{"id":459648,"login":"samsonasik","gravatar_id":"","url":"https://api.github.com/users/samsonasik","avatar_url":"https://avatars.githubusercontent.com/u/459648?"},"repo":{"id":702550,"name":"zendframework/zf2","url":"https://api.github.com/repos/zendframework/zf2"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/22400128","id":22400128,"diff_hunk":"@@ -0,0 +1,108 @@\n+\r\nwrote:\r\n\r\n> Desingated marksman? Good idea i was considering doing it for my Us\r\n> platoon, but wasn't really that hot on it.\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:10:50Z"} +,{"id":"2489656031","type":"IssuesEvent","actor":{"id":9809727,"login":"fire-eggs","gravatar_id":"","url":"https://api.github.com/users/fire-eggs","avatar_url":"https://avatars.githubusercontent.com/u/9809727?"},"repo":{"id":28404527,"name":"fire-eggs/DanbooruBrowser","url":"https://api.github.com/repos/fire-eggs/DanbooruBrowser"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/fire-eggs/DanbooruBrowser/issues/2","labels_url":"https://api.github.com/repos/fire-eggs/DanbooruBrowser/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/fire-eggs/DanbooruBrowser/issues/2/comments","events_url":"https://api.github.com/repos/fire-eggs/DanbooruBrowser/issues/2/events","html_url":"https://github.com/fire-eggs/DanbooruBrowser/issues/2","id":53221539,"number":2,"title":"Server switch causes duplicate downloads","user":{"login":"fire-eggs","id":9809727,"avatar_url":"https://avatars.githubusercontent.com/u/9809727?v=3","gravatar_id":"","url":"https://api.github.com/users/fire-eggs","html_url":"https://github.com/fire-eggs","followers_url":"https://api.github.com/users/fire-eggs/followers","following_url":"https://api.github.com/users/fire-eggs/following{/other_user}","gists_url":"https://api.github.com/users/fire-eggs/gists{/gist_id}","starred_url":"https://api.github.com/users/fire-eggs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fire-eggs/subscriptions","organizations_url":"https://api.github.com/users/fire-eggs/orgs","repos_url":"https://api.github.com/users/fire-eggs/repos","events_url":"https://api.github.com/users/fire-eggs/events{/privacy}","received_events_url":"https://api.github.com/users/fire-eggs/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:10:50Z","updated_at":"2015-01-01T15:10:50Z","closed_at":null,"body":"Every server switch seems to re-download images.\r\n1. Start with server A.\r\n2. Select in thumb browser, use \"download selected images\".\r\n3. Switch to server B.\r\n4. Repeat step 2 (with different images)\r\n\r\nEvery image downloaded in step 2 has been duplicated, but the server name has been set to \"server b\"."}},"public":true,"created_at":"2015-01-01T15:10:50Z"} +,{"id":"2489656035","type":"PushEvent","actor":{"id":564941,"login":"kimsama","gravatar_id":"","url":"https://api.github.com/users/kimsama","avatar_url":"https://avatars.githubusercontent.com/u/564941?"},"repo":{"id":27857842,"name":"kimsama/Unity-SpreadsheetPro","url":"https://api.github.com/repos/kimsama/Unity-SpreadsheetPro"},"payload":{"push_id":536866255,"size":3,"distinct_size":0,"ref":"refs/heads/excel-plugin","head":"8fae71b9cae8910da367c295b9beeaea6bdb42e6","before":"6844cdc4adcabcb2f2b6956467208d25851d740f","commits":[{"sha":"3fd2795670213601b117cbd972c3d856ff56a114","author":{"email":"ff1230a337cf2c09d6bde50879a4d13ae997b25e@gmail.com","name":"kimsama"},"message":"updated.","distinct":false,"url":"https://api.github.com/repos/kimsama/Unity-SpreadsheetPro/commits/3fd2795670213601b117cbd972c3d856ff56a114"},{"sha":"f301e21dd57a7a757699d597691c855eba87d184","author":{"email":"ff1230a337cf2c09d6bde50879a4d13ae997b25e@gmail.com","name":"kimsama"},"message":"fixed not to pass null path to the GUILayout.TextField.","distinct":false,"url":"https://api.github.com/repos/kimsama/Unity-SpreadsheetPro/commits/f301e21dd57a7a757699d597691c855eba87d184"},{"sha":"8fae71b9cae8910da367c295b9beeaea6bdb42e6","author":{"email":"ff1230a337cf2c09d6bde50879a4d13ae997b25e@gmail.com","name":"kimsama"},"message":"- added DataFile path to BaseMachine class which contains the created asset file path.\n- modified to select sheet from popup editor control not by directly typing it.\n- changed inspector setting for intuitive way.\n- fixed several bugs.","distinct":false,"url":"https://api.github.com/repos/kimsama/Unity-SpreadsheetPro/commits/8fae71b9cae8910da367c295b9beeaea6bdb42e6"}]},"public":true,"created_at":"2015-01-01T15:10:50Z"} +,{"id":"2489656039","type":"PushEvent","actor":{"id":2161941,"login":"TsudaKageyu","gravatar_id":"","url":"https://api.github.com/users/TsudaKageyu","avatar_url":"https://avatars.githubusercontent.com/u/2161941?"},"repo":{"id":9453798,"name":"TsudaKageyu/taglib","url":"https://api.github.com/repos/TsudaKageyu/taglib"},"payload":{"push_id":536866256,"size":1,"distinct_size":1,"ref":"refs/heads/oga-segfault","head":"bc9bbfe3fa3f396bffb951c8f5681edea2c03b44","before":"5ebb2ece80387e60abca5bec0dc65f02391ee5f9","commits":[{"sha":"bc9bbfe3fa3f396bffb951c8f5681edea2c03b44","author":{"email":"86d0714f9e8c58bd2a89fc5ef53ed305c52b3e8c@gmail.com","name":"Tsuda Kageyu"},"message":"Add a check for faulty Ogg/FLAC files.","distinct":true,"url":"https://api.github.com/repos/TsudaKageyu/taglib/commits/bc9bbfe3fa3f396bffb951c8f5681edea2c03b44"}]},"public":true,"created_at":"2015-01-01T15:10:50Z"} +,{"id":"2489656041","type":"IssueCommentEvent","actor":{"id":464848,"login":"cschramm","gravatar_id":"","url":"https://api.github.com/users/cschramm","avatar_url":"https://avatars.githubusercontent.com/u/464848?"},"repo":{"id":12678311,"name":"blueman-project/blueman","url":"https://api.github.com/repos/blueman-project/blueman"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/blueman-project/blueman/issues/89","labels_url":"https://api.github.com/repos/blueman-project/blueman/issues/89/labels{/name}","comments_url":"https://api.github.com/repos/blueman-project/blueman/issues/89/comments","events_url":"https://api.github.com/repos/blueman-project/blueman/issues/89/events","html_url":"https://github.com/blueman-project/blueman/issues/89","id":41890398,"number":89,"title":"Pairing Passphrase Prompt Broken","user":{"login":"Teknocrat","id":2731786,"avatar_url":"https://avatars.githubusercontent.com/u/2731786?v=3","gravatar_id":"","url":"https://api.github.com/users/Teknocrat","html_url":"https://github.com/Teknocrat","followers_url":"https://api.github.com/users/Teknocrat/followers","following_url":"https://api.github.com/users/Teknocrat/following{/other_user}","gists_url":"https://api.github.com/users/Teknocrat/gists{/gist_id}","starred_url":"https://api.github.com/users/Teknocrat/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Teknocrat/subscriptions","organizations_url":"https://api.github.com/users/Teknocrat/orgs","repos_url":"https://api.github.com/users/Teknocrat/repos","events_url":"https://api.github.com/users/Teknocrat/events{/privacy}","received_events_url":"https://api.github.com/users/Teknocrat/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/blueman-project/blueman/labels/bug","name":"bug","color":"fc2929"}],"state":"open","locked":false,"assignee":null,"milestone":{"url":"https://api.github.com/repos/blueman-project/blueman/milestones/1","labels_url":"https://api.github.com/repos/blueman-project/blueman/milestones/1/labels","id":477715,"number":1,"title":"2.0","description":"","creator":{"login":"cschramm","id":464848,"avatar_url":"https://avatars.githubusercontent.com/u/464848?v=3","gravatar_id":"","url":"https://api.github.com/users/cschramm","html_url":"https://github.com/cschramm","followers_url":"https://api.github.com/users/cschramm/followers","following_url":"https://api.github.com/users/cschramm/following{/other_user}","gists_url":"https://api.github.com/users/cschramm/gists{/gist_id}","starred_url":"https://api.github.com/users/cschramm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cschramm/subscriptions","organizations_url":"https://api.github.com/users/cschramm/orgs","repos_url":"https://api.github.com/users/cschramm/repos","events_url":"https://api.github.com/users/cschramm/events{/privacy}","received_events_url":"https://api.github.com/users/cschramm/received_events","type":"User","site_admin":false},"open_issues":9,"closed_issues":28,"state":"open","created_at":"2013-11-07T16:22:04Z","updated_at":"2014-12-31T16:41:03Z","due_on":null,"closed_at":null},"comments":7,"created_at":"2014-09-04T03:10:19Z","updated_at":"2015-01-01T15:10:50Z","closed_at":null,"body":"When I attempt to pair my phone with my laptop the prompt for passphrase matching never appears..\r\n\r\n```\r\n(blueman-manager:29175): GLib-GIO-CRITICAL **: g_loadable_icon_load: assertion 'G_IS_LOADABLE_ICON (icon)' failed\r\nTraceback (most recent call last):\r\n File \"/usr/lib64/python2.7/site-packages/blueman/main/PluginManager.py\", line 206, in Run\r\n ret = getattr(inst, function)(*args, **kwargs)\r\n File \"/usr/lib64/python2.7/site-packages/blueman/plugins/manager/Services.py\", line 39, in on_request_menu_items\r\n manager_menu.Signals.Handle(\"bluez\", device, manager_menu.service_property_changed, \"PropertyChanged\")\r\n File \"/usr/lib64/python2.7/site-packages/blueman/main/SignalTracker.py\", line 36, in Handle\r\n obj.handle_signal(*args, **kwargs)\r\n File \"/usr/lib64/python2.7/site-packages/blueman/bluez/PropertiesBlueZInterface.py\", line 57, in handle_signal\r\n self._handle_signal(wrapper, 'PropertiesChanged', interface, self.get_object_path(), **kwargs)\r\n File \"/usr/lib64/python2.7/site-packages/blueman/bluez/PropertiesBlueZInterface.py\", line 33, in _handle_signal\r\n self.get_bus().add_signal_receiver(handler, signal, interface, 'org.bluez', obj_path, **kwargs)\r\n File \"/usr/lib64/python2.7/site-packages/dbus/bus.py\", line 157, in add_signal_receiver\r\n watch = self.watch_name_owner(bus_name, callback)\r\n File \"/usr/lib64/python2.7/site-packages/dbus/bus.py\", line 373, in watch_name_owner\r\n return NameOwnerWatch(self, bus_name, callback)\r\n File \"/usr/lib64/python2.7/site-packages/dbus/bus.py\", line 80, in __init__\r\n arg0=bus_name)\r\n File \"/usr/lib64/python2.7/site-packages/dbus/bus.py\", line 160, in add_signal_receiver\r\n self.add_match_string(str(match))\r\n```"},"comment":{"url":"https://api.github.com/repos/blueman-project/blueman/issues/comments/68488721","html_url":"https://github.com/blueman-project/blueman/issues/89#issuecomment-68488721","issue_url":"https://api.github.com/repos/blueman-project/blueman/issues/89","id":68488721,"user":{"login":"cschramm","id":464848,"avatar_url":"https://avatars.githubusercontent.com/u/464848?v=3","gravatar_id":"","url":"https://api.github.com/users/cschramm","html_url":"https://github.com/cschramm","followers_url":"https://api.github.com/users/cschramm/followers","following_url":"https://api.github.com/users/cschramm/following{/other_user}","gists_url":"https://api.github.com/users/cschramm/gists{/gist_id}","starred_url":"https://api.github.com/users/cschramm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cschramm/subscriptions","organizations_url":"https://api.github.com/users/cschramm/orgs","repos_url":"https://api.github.com/users/cschramm/repos","events_url":"https://api.github.com/users/cschramm/events{/privacy}","received_events_url":"https://api.github.com/users/cschramm/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:10:50Z","updated_at":"2015-01-01T15:10:50Z","body":"I think the relevant data we have is this:\r\n\r\n````\r\nRequestConfirmation (/usr/lib64/python2.7/site-packages/blueman/main/applet/BluezAgent.py:185)\r\nAgent.RequestConfirmation \r\norg.bluez.Error.AuthenticationFailed: Authentication Failed\r\n````\r\n\r\nI guess it takes some time before the last line appears as it's probably triggered by some timeout, right?\r\n\r\nWhat notification daemon are you using?\r\n\r\nPlease open a python shell and type\r\n\r\n````\r\nfrom blueman.gui.Notification import Notification\r\nNotification(\"Bluetooth\", \"Message\", actions=[[\"test\", \"Test\"]])\r\n````\r\n\r\nto see what happens."}},"public":true,"created_at":"2015-01-01T15:10:50Z","org":{"id":6680802,"login":"blueman-project","gravatar_id":"","url":"https://api.github.com/orgs/blueman-project","avatar_url":"https://avatars.githubusercontent.com/u/6680802?"}} +,{"id":"2489656045","type":"CreateEvent","actor":{"id":7718668,"login":"InvyJulia","gravatar_id":"","url":"https://api.github.com/users/InvyJulia","avatar_url":"https://avatars.githubusercontent.com/u/7718668?"},"repo":{"id":20239329,"name":"InvyJulia/Syric","url":"https://api.github.com/repos/InvyJulia/Syric"},"payload":{"ref":"#7","ref_type":"branch","master_branch":"master","description":"Base automation framework for Selenium","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:10:51Z"} +,{"id":"2489656046","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":"9a77596bebf0b357d49ccea1093e529b34f79e11","html_url":"https://github.com/pyqt/python-qt5/wiki/Compiling-PyQt5-on-Ubuntu-12.04"}]},"public":true,"created_at":"2015-01-01T15:10:51Z","org":{"id":8809976,"login":"pyqt","gravatar_id":"","url":"https://api.github.com/orgs/pyqt","avatar_url":"https://avatars.githubusercontent.com/u/8809976?"}} +,{"id":"2489656050","type":"IssueCommentEvent","actor":{"id":841788,"login":"finnp","gravatar_id":"","url":"https://api.github.com/users/finnp","avatar_url":"https://avatars.githubusercontent.com/u/841788?"},"repo":{"id":23203674,"name":"nodeschool/organizers","url":"https://api.github.com/repos/nodeschool/organizers"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/nodeschool/organizers/issues/105","labels_url":"https://api.github.com/repos/nodeschool/organizers/issues/105/labels{/name}","comments_url":"https://api.github.com/repos/nodeschool/organizers/issues/105/comments","events_url":"https://api.github.com/repos/nodeschool/organizers/issues/105/events","html_url":"https://github.com/nodeschool/organizers/issues/105","id":53061506,"number":105,"title":"Add as an Owner","user":{"login":"nitins-optimus","id":9604119,"avatar_url":"https://avatars.githubusercontent.com/u/9604119?v=3","gravatar_id":"","url":"https://api.github.com/users/nitins-optimus","html_url":"https://github.com/nitins-optimus","followers_url":"https://api.github.com/users/nitins-optimus/followers","following_url":"https://api.github.com/users/nitins-optimus/following{/other_user}","gists_url":"https://api.github.com/users/nitins-optimus/gists{/gist_id}","starred_url":"https://api.github.com/users/nitins-optimus/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nitins-optimus/subscriptions","organizations_url":"https://api.github.com/users/nitins-optimus/orgs","repos_url":"https://api.github.com/users/nitins-optimus/repos","events_url":"https://api.github.com/users/nitins-optimus/events{/privacy}","received_events_url":"https://api.github.com/users/nitins-optimus/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-29T18:49:47Z","updated_at":"2015-01-01T15:10:51Z","closed_at":null,"body":"Hie, Add me as an owner in this repo."},"comment":{"url":"https://api.github.com/repos/nodeschool/organizers/issues/comments/68488722","html_url":"https://github.com/nodeschool/organizers/issues/105#issuecomment-68488722","issue_url":"https://api.github.com/repos/nodeschool/organizers/issues/105","id":68488722,"user":{"login":"finnp","id":841788,"avatar_url":"https://avatars.githubusercontent.com/u/841788?v=3","gravatar_id":"","url":"https://api.github.com/users/finnp","html_url":"https://github.com/finnp","followers_url":"https://api.github.com/users/finnp/followers","following_url":"https://api.github.com/users/finnp/following{/other_user}","gists_url":"https://api.github.com/users/finnp/gists{/gist_id}","starred_url":"https://api.github.com/users/finnp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/finnp/subscriptions","organizations_url":"https://api.github.com/users/finnp/orgs","repos_url":"https://api.github.com/users/finnp/repos","events_url":"https://api.github.com/users/finnp/events{/privacy}","received_events_url":"https://api.github.com/users/finnp/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:10:51Z","updated_at":"2015-01-01T15:10:51Z","body":"@nitins-optimus Hey! Where and why do you want to be added as an owner? Can you tell us more about you and what you are planning?"}},"public":true,"created_at":"2015-01-01T15:10:51Z","org":{"id":5437587,"login":"nodeschool","gravatar_id":"","url":"https://api.github.com/orgs/nodeschool","avatar_url":"https://avatars.githubusercontent.com/u/5437587?"}} +,{"id":"2489656052","type":"PullRequestEvent","actor":{"id":920462,"login":"matsumo1001","gravatar_id":"","url":"https://api.github.com/users/matsumo1001","avatar_url":"https://avatars.githubusercontent.com/u/920462?"},"repo":{"id":28406037,"name":"TEAM-SAT/tabinotane","url":"https://api.github.com/repos/TEAM-SAT/tabinotane"},"payload":{"action":"opened","number":26,"pull_request":{"url":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls/26","id":26743850,"html_url":"https://github.com/TEAM-SAT/tabinotane/pull/26","diff_url":"https://github.com/TEAM-SAT/tabinotane/pull/26.diff","patch_url":"https://github.com/TEAM-SAT/tabinotane/pull/26.patch","issue_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/issues/26","number":26,"state":"open","locked":false,"title":"観光地取得の効率化案","user":{"login":"matsumo1001","id":920462,"avatar_url":"https://avatars.githubusercontent.com/u/920462?v=3","gravatar_id":"","url":"https://api.github.com/users/matsumo1001","html_url":"https://github.com/matsumo1001","followers_url":"https://api.github.com/users/matsumo1001/followers","following_url":"https://api.github.com/users/matsumo1001/following{/other_user}","gists_url":"https://api.github.com/users/matsumo1001/gists{/gist_id}","starred_url":"https://api.github.com/users/matsumo1001/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matsumo1001/subscriptions","organizations_url":"https://api.github.com/users/matsumo1001/orgs","repos_url":"https://api.github.com/users/matsumo1001/repos","events_url":"https://api.github.com/users/matsumo1001/events{/privacy}","received_events_url":"https://api.github.com/users/matsumo1001/received_events","type":"User","site_admin":false},"body":"現状、目的地ごとにAPIを実行しているが、複数の都市をまとめて取得することができるため、試しに実装してみました。\r\n10回実行するよりは速そうですね。","created_at":"2015-01-01T15:10:51Z","updated_at":"2015-01-01T15:10:51Z","closed_at":null,"merged_at":null,"merge_commit_sha":"a889f6f0a1f8f27d54b1e4aadc62b5415f36c958","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls/26/commits","review_comments_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls/26/comments","review_comment_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls/comments/{number}","comments_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/issues/26/comments","statuses_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/statuses/1ea7751c93c8f47c93c58248c7f3c57e27d43464","head":{"label":"TEAM-SAT:improve_performance","ref":"improve_performance","sha":"1ea7751c93c8f47c93c58248c7f3c57e27d43464","user":{"login":"TEAM-SAT","id":10265827,"avatar_url":"https://avatars.githubusercontent.com/u/10265827?v=3","gravatar_id":"","url":"https://api.github.com/users/TEAM-SAT","html_url":"https://github.com/TEAM-SAT","followers_url":"https://api.github.com/users/TEAM-SAT/followers","following_url":"https://api.github.com/users/TEAM-SAT/following{/other_user}","gists_url":"https://api.github.com/users/TEAM-SAT/gists{/gist_id}","starred_url":"https://api.github.com/users/TEAM-SAT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TEAM-SAT/subscriptions","organizations_url":"https://api.github.com/users/TEAM-SAT/orgs","repos_url":"https://api.github.com/users/TEAM-SAT/repos","events_url":"https://api.github.com/users/TEAM-SAT/events{/privacy}","received_events_url":"https://api.github.com/users/TEAM-SAT/received_events","type":"Organization","site_admin":false},"repo":{"id":28406037,"name":"tabinotane","full_name":"TEAM-SAT/tabinotane","owner":{"login":"TEAM-SAT","id":10265827,"avatar_url":"https://avatars.githubusercontent.com/u/10265827?v=3","gravatar_id":"","url":"https://api.github.com/users/TEAM-SAT","html_url":"https://github.com/TEAM-SAT","followers_url":"https://api.github.com/users/TEAM-SAT/followers","following_url":"https://api.github.com/users/TEAM-SAT/following{/other_user}","gists_url":"https://api.github.com/users/TEAM-SAT/gists{/gist_id}","starred_url":"https://api.github.com/users/TEAM-SAT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TEAM-SAT/subscriptions","organizations_url":"https://api.github.com/users/TEAM-SAT/orgs","repos_url":"https://api.github.com/users/TEAM-SAT/repos","events_url":"https://api.github.com/users/TEAM-SAT/events{/privacy}","received_events_url":"https://api.github.com/users/TEAM-SAT/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/TEAM-SAT/tabinotane","description":"タビノタネ − 旅行目的地レコメンドサービス","fork":false,"url":"https://api.github.com/repos/TEAM-SAT/tabinotane","forks_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/forks","keys_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/teams","hooks_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/hooks","issue_events_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/issues/events{/number}","events_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/events","assignees_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/assignees{/user}","branches_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/branches{/branch}","tags_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/tags","blobs_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/git/refs{/sha}","trees_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/statuses/{sha}","languages_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/languages","stargazers_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/stargazers","contributors_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/contributors","subscribers_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/subscribers","subscription_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/subscription","commits_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/commits{/sha}","git_commits_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/git/commits{/sha}","comments_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/comments{/number}","issue_comment_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/issues/comments/{number}","contents_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/contents/{+path}","compare_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/merges","archive_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/downloads","issues_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/issues{/number}","pulls_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls{/number}","milestones_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/milestones{/number}","notifications_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/labels{/name}","releases_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/releases{/id}","created_at":"2014-12-23T15:50:26Z","updated_at":"2014-12-29T16:03:56Z","pushed_at":"2015-01-01T15:07:42Z","git_url":"git://github.com/TEAM-SAT/tabinotane.git","ssh_url":"git@github.com:TEAM-SAT/tabinotane.git","clone_url":"https://github.com/TEAM-SAT/tabinotane.git","svn_url":"https://github.com/TEAM-SAT/tabinotane","homepage":"http://www.tabinotane.com/","size":63608,"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":18,"forks":0,"open_issues":18,"watchers":0,"default_branch":"master"}},"base":{"label":"TEAM-SAT:master","ref":"master","sha":"6ad27328516c183baa16d10e2ab38def5238f78c","user":{"login":"TEAM-SAT","id":10265827,"avatar_url":"https://avatars.githubusercontent.com/u/10265827?v=3","gravatar_id":"","url":"https://api.github.com/users/TEAM-SAT","html_url":"https://github.com/TEAM-SAT","followers_url":"https://api.github.com/users/TEAM-SAT/followers","following_url":"https://api.github.com/users/TEAM-SAT/following{/other_user}","gists_url":"https://api.github.com/users/TEAM-SAT/gists{/gist_id}","starred_url":"https://api.github.com/users/TEAM-SAT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TEAM-SAT/subscriptions","organizations_url":"https://api.github.com/users/TEAM-SAT/orgs","repos_url":"https://api.github.com/users/TEAM-SAT/repos","events_url":"https://api.github.com/users/TEAM-SAT/events{/privacy}","received_events_url":"https://api.github.com/users/TEAM-SAT/received_events","type":"Organization","site_admin":false},"repo":{"id":28406037,"name":"tabinotane","full_name":"TEAM-SAT/tabinotane","owner":{"login":"TEAM-SAT","id":10265827,"avatar_url":"https://avatars.githubusercontent.com/u/10265827?v=3","gravatar_id":"","url":"https://api.github.com/users/TEAM-SAT","html_url":"https://github.com/TEAM-SAT","followers_url":"https://api.github.com/users/TEAM-SAT/followers","following_url":"https://api.github.com/users/TEAM-SAT/following{/other_user}","gists_url":"https://api.github.com/users/TEAM-SAT/gists{/gist_id}","starred_url":"https://api.github.com/users/TEAM-SAT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TEAM-SAT/subscriptions","organizations_url":"https://api.github.com/users/TEAM-SAT/orgs","repos_url":"https://api.github.com/users/TEAM-SAT/repos","events_url":"https://api.github.com/users/TEAM-SAT/events{/privacy}","received_events_url":"https://api.github.com/users/TEAM-SAT/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/TEAM-SAT/tabinotane","description":"タビノタネ − 旅行目的地レコメンドサービス","fork":false,"url":"https://api.github.com/repos/TEAM-SAT/tabinotane","forks_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/forks","keys_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/teams","hooks_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/hooks","issue_events_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/issues/events{/number}","events_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/events","assignees_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/assignees{/user}","branches_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/branches{/branch}","tags_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/tags","blobs_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/git/refs{/sha}","trees_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/statuses/{sha}","languages_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/languages","stargazers_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/stargazers","contributors_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/contributors","subscribers_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/subscribers","subscription_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/subscription","commits_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/commits{/sha}","git_commits_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/git/commits{/sha}","comments_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/comments{/number}","issue_comment_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/issues/comments/{number}","contents_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/contents/{+path}","compare_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/merges","archive_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/downloads","issues_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/issues{/number}","pulls_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls{/number}","milestones_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/milestones{/number}","notifications_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/labels{/name}","releases_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/releases{/id}","created_at":"2014-12-23T15:50:26Z","updated_at":"2014-12-29T16:03:56Z","pushed_at":"2015-01-01T15:07:42Z","git_url":"git://github.com/TEAM-SAT/tabinotane.git","ssh_url":"git@github.com:TEAM-SAT/tabinotane.git","clone_url":"https://github.com/TEAM-SAT/tabinotane.git","svn_url":"https://github.com/TEAM-SAT/tabinotane","homepage":"http://www.tabinotane.com/","size":63608,"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":18,"forks":0,"open_issues":18,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls/26"},"html":{"href":"https://github.com/TEAM-SAT/tabinotane/pull/26"},"issue":{"href":"https://api.github.com/repos/TEAM-SAT/tabinotane/issues/26"},"comments":{"href":"https://api.github.com/repos/TEAM-SAT/tabinotane/issues/26/comments"},"review_comments":{"href":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls/26/comments"},"review_comment":{"href":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls/26/commits"},"statuses":{"href":"https://api.github.com/repos/TEAM-SAT/tabinotane/statuses/1ea7751c93c8f47c93c58248c7f3c57e27d43464"}},"merged":false,"mergeable":true,"mergeable_state":"clean","merged_by":null,"comments":0,"review_comments":0,"commits":4,"additions":109,"deletions":6,"changed_files":11}},"public":true,"created_at":"2015-01-01T15:10:51Z","org":{"id":10265827,"login":"TEAM-SAT","gravatar_id":"","url":"https://api.github.com/orgs/TEAM-SAT","avatar_url":"https://avatars.githubusercontent.com/u/10265827?"}} +,{"id":"2489656054","type":"IssueCommentEvent","actor":{"id":1045063,"login":"Tibor17","gravatar_id":"","url":"https://api.github.com/users/Tibor17","avatar_url":"https://avatars.githubusercontent.com/u/1045063?"},"repo":{"id":832680,"name":"apache/maven-surefire","url":"https://api.github.com/repos/apache/maven-surefire"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/apache/maven-surefire/issues/75","labels_url":"https://api.github.com/repos/apache/maven-surefire/issues/75/labels{/name}","comments_url":"https://api.github.com/repos/apache/maven-surefire/issues/75/comments","events_url":"https://api.github.com/repos/apache/maven-surefire/issues/75/events","html_url":"https://github.com/apache/maven-surefire/pull/75","id":52085032,"number":75,"title":"Run individual methods with junit48","user":{"login":"jhorstmann","id":689138,"avatar_url":"https://avatars.githubusercontent.com/u/689138?v=3","gravatar_id":"","url":"https://api.github.com/users/jhorstmann","html_url":"https://github.com/jhorstmann","followers_url":"https://api.github.com/users/jhorstmann/followers","following_url":"https://api.github.com/users/jhorstmann/following{/other_user}","gists_url":"https://api.github.com/users/jhorstmann/gists{/gist_id}","starred_url":"https://api.github.com/users/jhorstmann/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jhorstmann/subscriptions","organizations_url":"https://api.github.com/users/jhorstmann/orgs","repos_url":"https://api.github.com/users/jhorstmann/repos","events_url":"https://api.github.com/users/jhorstmann/events{/privacy}","received_events_url":"https://api.github.com/users/jhorstmann/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":12,"created_at":"2014-12-16T08:24:38Z","updated_at":"2015-01-01T15:10:52Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/apache/maven-surefire/pulls/75","html_url":"https://github.com/apache/maven-surefire/pull/75","diff_url":"https://github.com/apache/maven-surefire/pull/75.diff","patch_url":"https://github.com/apache/maven-surefire/pull/75.patch"},"body":"This implements a method filter for the junit 4.8 provider that supports the same syntax as discussed in and documented in . That ticket apparently only contained an implementation for the junit 4.0 provider and only handled one or two methodss per class.\r\n\r\nI still have to add tests for this functionality. Would unit tests just for the method filter, using mocked Descriptions, be enough or do you also require integration tests? If so I would need some pointers to how the setup of integration tests inside surefire itself would work.\r\n\r\nLet me know what you think of this approach."},"comment":{"url":"https://api.github.com/repos/apache/maven-surefire/issues/comments/68488723","html_url":"https://github.com/apache/maven-surefire/pull/75#issuecomment-68488723","issue_url":"https://api.github.com/repos/apache/maven-surefire/issues/75","id":68488723,"user":{"login":"Tibor17","id":1045063,"avatar_url":"https://avatars.githubusercontent.com/u/1045063?v=3","gravatar_id":"","url":"https://api.github.com/users/Tibor17","html_url":"https://github.com/Tibor17","followers_url":"https://api.github.com/users/Tibor17/followers","following_url":"https://api.github.com/users/Tibor17/following{/other_user}","gists_url":"https://api.github.com/users/Tibor17/gists{/gist_id}","starred_url":"https://api.github.com/users/Tibor17/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Tibor17/subscriptions","organizations_url":"https://api.github.com/users/Tibor17/orgs","repos_url":"https://api.github.com/users/Tibor17/repos","events_url":"https://api.github.com/users/Tibor17/events{/privacy}","received_events_url":"https://api.github.com/users/Tibor17/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:10:52Z","updated_at":"2015-01-01T15:10:52Z","body":"@agudian \r\n@Jacobus2k \r\nI am not sure, but maybe we can fix SUREFIRE-131 ( -Dtest=!testToSkip) in another PR since we are fixing test param. What's you opinion?"}},"public":true,"created_at":"2015-01-01T15:10:52Z","org":{"id":47359,"login":"apache","gravatar_id":"","url":"https://api.github.com/orgs/apache","avatar_url":"https://avatars.githubusercontent.com/u/47359?"}} +,{"id":"2489656058","type":"CreateEvent","actor":{"id":6982260,"login":"rickpeyton","gravatar_id":"","url":"https://api.github.com/users/rickpeyton","avatar_url":"https://avatars.githubusercontent.com/u/6982260?"},"repo":{"id":28688788,"name":"rickpeyton/C01L01_Calculator_Tealeaf","url":"https://api.github.com/repos/rickpeyton/C01L01_Calculator_Tealeaf"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:10:52Z"} +,{"id":"2489656060","type":"CreateEvent","actor":{"id":7039227,"login":"caph4","gravatar_id":"","url":"https://api.github.com/users/caph4","avatar_url":"https://avatars.githubusercontent.com/u/7039227?"},"repo":{"id":28688789,"name":"caph4/cs","url":"https://api.github.com/repos/caph4/cs"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"angularjs","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:10:52Z"} +,{"id":"2489656067","type":"IssuesEvent","actor":{"id":1015465,"login":"commel","gravatar_id":"","url":"https://api.github.com/users/commel","avatar_url":"https://avatars.githubusercontent.com/u/1015465?"},"repo":{"id":20897043,"name":"Holarse-Linuxgaming/website","url":"https://api.github.com/repos/Holarse-Linuxgaming/website"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/Holarse-Linuxgaming/website/issues/39","labels_url":"https://api.github.com/repos/Holarse-Linuxgaming/website/issues/39/labels{/name}","comments_url":"https://api.github.com/repos/Holarse-Linuxgaming/website/issues/39/comments","events_url":"https://api.github.com/repos/Holarse-Linuxgaming/website/issues/39/events","html_url":"https://github.com/Holarse-Linuxgaming/website/issues/39","id":53221542,"number":39,"title":"Ingos Linuxspiele-Kanal mit aufnehmen","user":{"login":"commel","id":1015465,"avatar_url":"https://avatars.githubusercontent.com/u/1015465?v=3","gravatar_id":"","url":"https://api.github.com/users/commel","html_url":"https://github.com/commel","followers_url":"https://api.github.com/users/commel/followers","following_url":"https://api.github.com/users/commel/following{/other_user}","gists_url":"https://api.github.com/users/commel/gists{/gist_id}","starred_url":"https://api.github.com/users/commel/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/commel/subscriptions","organizations_url":"https://api.github.com/users/commel/orgs","repos_url":"https://api.github.com/users/commel/repos","events_url":"https://api.github.com/users/commel/events{/privacy}","received_events_url":"https://api.github.com/users/commel/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:10:53Z","updated_at":"2015-01-01T15:10:53Z","closed_at":null,"body":"https://www.youtube.com/playlist?list=PL1WByg4QiAf068NPscIkGqbr7Bxxv4_Gz"}},"public":true,"created_at":"2015-01-01T15:10:55Z","org":{"id":8254546,"login":"Holarse-Linuxgaming","gravatar_id":"","url":"https://api.github.com/orgs/Holarse-Linuxgaming","avatar_url":"https://avatars.githubusercontent.com/u/8254546?"}} +,{"id":"2489656068","type":"CreateEvent","actor":{"id":8283768,"login":"evelynting610","gravatar_id":"","url":"https://api.github.com/users/evelynting610","avatar_url":"https://avatars.githubusercontent.com/u/8283768?"},"repo":{"id":28688790,"name":"evelynting610/sudoku","url":"https://api.github.com/repos/evelynting610/sudoku"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:10:55Z"} +,{"id":"2489656070","type":"IssuesEvent","actor":{"id":3899,"login":"davidhq","gravatar_id":"","url":"https://api.github.com/users/davidhq","avatar_url":"https://avatars.githubusercontent.com/u/3899?"},"repo":{"id":12648582,"name":"pixelb/ps_mem","url":"https://api.github.com/repos/pixelb/ps_mem"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/pixelb/ps_mem/issues/14","labels_url":"https://api.github.com/repos/pixelb/ps_mem/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/pixelb/ps_mem/issues/14/comments","events_url":"https://api.github.com/repos/pixelb/ps_mem/issues/14/events","html_url":"https://github.com/pixelb/ps_mem/issues/14","id":53221543,"number":14,"title":"Incorrect number of processes","user":{"login":"davidhq","id":3899,"avatar_url":"https://avatars.githubusercontent.com/u/3899?v=3","gravatar_id":"","url":"https://api.github.com/users/davidhq","html_url":"https://github.com/davidhq","followers_url":"https://api.github.com/users/davidhq/followers","following_url":"https://api.github.com/users/davidhq/following{/other_user}","gists_url":"https://api.github.com/users/davidhq/gists{/gist_id}","starred_url":"https://api.github.com/users/davidhq/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/davidhq/subscriptions","organizations_url":"https://api.github.com/users/davidhq/orgs","repos_url":"https://api.github.com/users/davidhq/repos","events_url":"https://api.github.com/users/davidhq/events{/privacy}","received_events_url":"https://api.github.com/users/davidhq/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:10:53Z","updated_at":"2015-01-01T15:10:53Z","closed_at":null,"body":"Hi, I get this:\r\n\r\n 1.9 GiB + 16.0 MiB = 1.9 GiB\truby (40)\r\n\r\nfor my ruby processes but when I run `ps aux | grep ruby | wc -l`, I get 24... also it looks like this (a lot of defunct processes)\r\n\r\n $ ps aux | grep ruby\r\n david 3084 0.0 0.0 0 0 ? Zs 2014 0:00 [ruby] \r\n david 5114 0.0 0.0 0 0 ? Zs 2014 0:00 [ruby] \r\n david 10469 0.0 0.0 0 0 ? Zs 2014 0:00 [ruby] \r\n david 10484 0.0 0.0 0 0 ? Zs 2014 0:00 [ruby] \r\n david 11420 0.0 0.0 0 0 ? Zs 2014 0:00 [ruby] \r\n david 13612 0.0 0.0 0 0 ? Zs 2014 0:00 [ruby] \r\n david 15320 0.0 0.0 0 0 ? Zs 2014 0:00 [ruby] \r\n david 17353 0.0 1.1 242052 47500 pts/18 Sl+ 2014 52:41 ruby /home/david/.rbenv/versions/2.1.2/bin/rackup faye.ru -E production\r\n david 17801 0.0 0.0 0 0 ? Zs 2014 0:00 [ruby] \r\n david 17859 0.0 0.0 0 0 ? Zs 2014 0:00 [ruby] \r\n david 22542 0.0 0.0 0 0 ? Zs 2014 0:00 [ruby] \r\n david 22876 0.0 0.0 0 0 ? Zs 2014 0:00 [ruby] \r\n david 23697 0.0 0.0 0 0 ? Zs 2014 0:00 [ruby] \r\n david 24419 0.0 0.0 0 0 ? Zs 2014 0:00 [ruby] \r\n david 24507 0.0 0.0 0 0 ? Zs 2014 0:00 [ruby] \r\n david 26512 0.0 0.0 0 0 ? Zs 2014 0:00 [ruby] \r\n david 26653 0.0 0.0 0 0 ? Zs 2014 0:00 [ruby] \r\n david 27051 0.0 0.0 0 0 ? Zs 2014 0:00 [ruby] \r\n david 27057 0.0 0.0 0 0 ? Zs 2014 0:00 [ruby] \r\n david 27655 0.0 0.0 0 0 ? Zs 2014 0:00 [ruby] \r\n david 28428 0.0 0.0 0 0 ? Zs 2014 0:00 [ruby] \r\n david 28987 0.0 1.9 256912 77896 ? Sl 2014 0:03 ruby update_db.rb\r\n david 29409 0.0 0.0 0 0 ? Zs 2014 0:00 [ruby] \r\n david 30525 0.0 0.0 7836 836 pts/4 S+ 15:10 0:00 grep ruby\r\n\r\nwhat gives?"}},"public":true,"created_at":"2015-01-01T15:10:55Z"} +,{"id":"2489656072","type":"PushEvent","actor":{"id":10176385,"login":"Ti4goc","gravatar_id":"","url":"https://api.github.com/users/Ti4goc","avatar_url":"https://avatars.githubusercontent.com/u/10176385?"},"repo":{"id":27960934,"name":"Ti4goc/translate","url":"https://api.github.com/repos/Ti4goc/translate"},"payload":{"push_id":536866266,"size":1,"distinct_size":1,"ref":"refs/heads/patch-15","head":"02dfc2aa608fc49ba01c321010efdf30b8e1d681","before":"8e0c213ea72cecd8dda28dcc230f8b89f4947b49","commits":[{"sha":"02dfc2aa608fc49ba01c321010efdf30b8e1d681","author":{"email":"c15bf53395d628eacc732e092ac91e441a33a9d3@outlook.pt","name":"Tiago Correia"},"message":"Update tr_pt.json","distinct":true,"url":"https://api.github.com/repos/Ti4goc/translate/commits/02dfc2aa608fc49ba01c321010efdf30b8e1d681"}]},"public":true,"created_at":"2015-01-01T15:10:55Z"} +,{"id":"2489656074","type":"CreateEvent","actor":{"id":875284,"login":"jason2506","gravatar_id":"","url":"https://api.github.com/users/jason2506","avatar_url":"https://avatars.githubusercontent.com/u/875284?"},"repo":{"id":28688791,"name":"jason2506/feedeater","url":"https://api.github.com/repos/jason2506/feedeater"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:10:55Z"} +,{"id":"2489656076","type":"PushEvent","actor":{"id":10160833,"login":"iamtanki","gravatar_id":"","url":"https://api.github.com/users/iamtanki","avatar_url":"https://avatars.githubusercontent.com/u/10160833?"},"repo":{"id":28559485,"name":"iamtanki/test","url":"https://api.github.com/repos/iamtanki/test"},"payload":{"push_id":536866267,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"70703080a692c43d0aade958f442a51e5fca918c","before":"18297d895aba2b2c6386b5b22f2a567c4996a2f4","commits":[{"sha":"70703080a692c43d0aade958f442a51e5fca918c","author":{"email":"e0e19826024672fcbbbc2387fe7b3c4c884f1907@hotmail.com","name":"woailuo"},"message":"update","distinct":true,"url":"https://api.github.com/repos/iamtanki/test/commits/70703080a692c43d0aade958f442a51e5fca918c"}]},"public":true,"created_at":"2015-01-01T15:10:55Z"} +,{"id":"2489656077","type":"PushEvent","actor":{"id":10766,"login":"morgoth","gravatar_id":"","url":"https://api.github.com/users/morgoth","avatar_url":"https://avatars.githubusercontent.com/u/10766?"},"repo":{"id":28687439,"name":"morgoth/rom-rails","url":"https://api.github.com/repos/morgoth/rom-rails"},"payload":{"push_id":536866268,"size":1,"distinct_size":1,"ref":"refs/heads/delete-command-bug","head":"0f202373316e3e28848c1836542f331a1286d5c6","before":"76623a8a6e608c2270e32a9c9b79a9d49d34073a","commits":[{"sha":"0f202373316e3e28848c1836542f331a1286d5c6","author":{"email":"4ead02cf0cb3a8d605a95e0d403040663a4b9561@gmail.com","name":"Wojciech Wnętrzak"},"message":"cleanup database on each spec run","distinct":true,"url":"https://api.github.com/repos/morgoth/rom-rails/commits/0f202373316e3e28848c1836542f331a1286d5c6"}]},"public":true,"created_at":"2015-01-01T15:10:55Z"} +,{"id":"2489656079","type":"PushEvent","actor":{"id":5975070,"login":"marcellodibello","gravatar_id":"","url":"https://api.github.com/users/marcellodibello","avatar_url":"https://avatars.githubusercontent.com/u/5975070?"},"repo":{"id":17580814,"name":"marcellodibello/marcellodibello.github.io","url":"https://api.github.com/repos/marcellodibello/marcellodibello.github.io"},"payload":{"push_id":536866270,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8f8f837da7798a930fe227ac0f75146d76013da6","before":"9b4bbb2d849781eeb88ea226f6648ff09ad74d10","commits":[{"sha":"8f8f837da7798a930fe227ac0f75146d76013da6","author":{"email":"babd00909fb78351e79d40af26c77fc37bb4ed59@gmail.com","name":"marcellodibello"},"message":"Update index.html","distinct":true,"url":"https://api.github.com/repos/marcellodibello/marcellodibello.github.io/commits/8f8f837da7798a930fe227ac0f75146d76013da6"}]},"public":true,"created_at":"2015-01-01T15:10:55Z"} +,{"id":"2489656082","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":536866271,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3d5ebe132488bec4e83c3ef69d14ad6d9c044dad","before":"167c344393d31a544c6f8d7a094adccff8408020","commits":[{"sha":"3d5ebe132488bec4e83c3ef69d14ad6d9c044dad","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420125054555\n\ncWHvzuiE4WDpy2EJ0SLuVqC9T2rrApxuX1Qi2YQECbg=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/3d5ebe132488bec4e83c3ef69d14ad6d9c044dad"}]},"public":true,"created_at":"2015-01-01T15:10:56Z"} +,{"id":"2489656083","type":"PushEvent","actor":{"id":9393265,"login":"durcheinandr","gravatar_id":"","url":"https://api.github.com/users/durcheinandr","avatar_url":"https://avatars.githubusercontent.com/u/9393265?"},"repo":{"id":25735284,"name":"durcheinandr/dotfiles","url":"https://api.github.com/repos/durcheinandr/dotfiles"},"payload":{"push_id":536866272,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cc5c5f1e6084f01c1ae401a1a044b60a7a85eb72","before":"86613117983be1f2d6d5e8f9a186ca6027a1f071","commits":[{"sha":"cc5c5f1e6084f01c1ae401a1a044b60a7a85eb72","author":{"email":"a43c420013ca055cc92ab03cc74d6f3bd5524c38@durcheinandr.de","name":"durcheinandr"},"message":"Some Ultisnips configuration","distinct":true,"url":"https://api.github.com/repos/durcheinandr/dotfiles/commits/cc5c5f1e6084f01c1ae401a1a044b60a7a85eb72"}]},"public":true,"created_at":"2015-01-01T15:10:56Z"} +,{"id":"2489656085","type":"PushEvent","actor":{"id":16649,"login":"Kazade","gravatar_id":"","url":"https://api.github.com/users/Kazade","avatar_url":"https://avatars.githubusercontent.com/u/16649?"},"repo":{"id":2963310,"name":"Kazade/KGLT","url":"https://api.github.com/repos/Kazade/KGLT"},"payload":{"push_id":536866273,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"529a8e95ee3e2c5fb9611ee93aab08b29c7a8c4f","before":"8eeebc69754b7805d1ee53bc5a3c56d2eebace29","commits":[{"sha":"2686dd2880d12c2822f80312a10a415b631e8b58","author":{"email":"5989861705a530cf854c7404b1b20cb2c4160fcc@gmail.com","name":"Luke Benstead"},"message":"Improve the button texture","distinct":true,"url":"https://api.github.com/repos/Kazade/KGLT/commits/2686dd2880d12c2822f80312a10a415b631e8b58"},{"sha":"529a8e95ee3e2c5fb9611ee93aab08b29c7a8c4f","author":{"email":"5989861705a530cf854c7404b1b20cb2c4160fcc@gmail.com","name":"Luke Benstead"},"message":"Delete now unused button textures","distinct":true,"url":"https://api.github.com/repos/Kazade/KGLT/commits/529a8e95ee3e2c5fb9611ee93aab08b29c7a8c4f"}]},"public":true,"created_at":"2015-01-01T15:10:56Z"} +,{"id":"2489656092","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":536866275,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8a474e01a2621fdb9874b5a1f69aab0eac5c2032","before":"1b82057e348062f7c5ee4d025cb336bf2cd39e13","commits":[{"sha":"8a474e01a2621fdb9874b5a1f69aab0eac5c2032","author":{"email":"2497d761a8fe182513acbb1aafe37a7278b43d72@otrs.com","name":"Manuel Hecht"},"message":"Updated copyright date.","distinct":true,"url":"https://api.github.com/repos/OTRS/otrs/commits/8a474e01a2621fdb9874b5a1f69aab0eac5c2032"}]},"public":true,"created_at":"2015-01-01T15:10:57Z","org":{"id":3065906,"login":"OTRS","gravatar_id":"","url":"https://api.github.com/orgs/OTRS","avatar_url":"https://avatars.githubusercontent.com/u/3065906?"}} +,{"id":"2489656093","type":"PushEvent","actor":{"id":8167066,"login":"dirindon","gravatar_id":"","url":"https://api.github.com/users/dirindon","avatar_url":"https://avatars.githubusercontent.com/u/8167066?"},"repo":{"id":24790629,"name":"kordiak/simpleGame","url":"https://api.github.com/repos/kordiak/simpleGame"},"payload":{"push_id":536866277,"size":1,"distinct_size":1,"ref":"refs/heads/objectVersionHexV2","head":"28f31fecc04746a3091c56f719b3640e7320b61a","before":"aa162909584c8bceef4b19eee483001f09252344","commits":[{"sha":"28f31fecc04746a3091c56f719b3640e7320b61a","author":{"email":"3d3176604085cc5f3a3abf784a832da44adf7aa1@gmail.com","name":"Bartosz"},"message":"Almost Final Version","distinct":true,"url":"https://api.github.com/repos/kordiak/simpleGame/commits/28f31fecc04746a3091c56f719b3640e7320b61a"}]},"public":true,"created_at":"2015-01-01T15:10:57Z"} +,{"id":"2489656094","type":"WatchEvent","actor":{"id":121977,"login":"josephjang","gravatar_id":"","url":"https://api.github.com/users/josephjang","avatar_url":"https://avatars.githubusercontent.com/u/121977?"},"repo":{"id":20580498,"name":"GoogleCloudPlatform/kubernetes","url":"https://api.github.com/repos/GoogleCloudPlatform/kubernetes"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:10:57Z","org":{"id":2810941,"login":"GoogleCloudPlatform","gravatar_id":"","url":"https://api.github.com/orgs/GoogleCloudPlatform","avatar_url":"https://avatars.githubusercontent.com/u/2810941?"}} +,{"id":"2489656096","type":"CreateEvent","actor":{"id":7039227,"login":"caph4","gravatar_id":"","url":"https://api.github.com/users/caph4","avatar_url":"https://avatars.githubusercontent.com/u/7039227?"},"repo":{"id":28688789,"name":"caph4/cs","url":"https://api.github.com/repos/caph4/cs"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"angularjs","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:10:57Z"} +,{"id":"2489656102","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":536866281,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"af7e991e7886f3339126d2593814c57ec1ad114f","before":"8717c51de474688a7a79710f22f6b33d9925a4fd","commits":[{"sha":"af7e991e7886f3339126d2593814c57ec1ad114f","author":{"email":"87e1f221a672a14a323e57bb65eaea19d3ed3804@snarc.org","name":"Vincent Hanquez"},"message":"add module header","distinct":true,"url":"https://api.github.com/repos/vincenthz/hs-scraps/commits/af7e991e7886f3339126d2593814c57ec1ad114f"}]},"public":true,"created_at":"2015-01-01T15:11:00Z"} +,{"id":"2489656110","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":26607065,"name":"hex7c0/protect","url":"https://api.github.com/repos/hex7c0/protect"},"payload":{"push_id":536866283,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"3578b87b9b41112cbb3cd6453c65d01134a95ab2","before":"47551359f86ca44fd708eaae4267a1a04dad01d4","commits":[{"sha":"a64c5726fe2d7f1fe1e545123cea8b094eeec028","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"travis docker","distinct":true,"url":"https://api.github.com/repos/hex7c0/protect/commits/a64c5726fe2d7f1fe1e545123cea8b094eeec028"},{"sha":"3578b87b9b41112cbb3cd6453c65d01134a95ab2","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"update devDependencies","distinct":true,"url":"https://api.github.com/repos/hex7c0/protect/commits/3578b87b9b41112cbb3cd6453c65d01134a95ab2"}]},"public":true,"created_at":"2015-01-01T15:11:00Z"} +,{"id":"2489656113","type":"PushEvent","actor":{"id":8495935,"login":"gemem","gravatar_id":"","url":"https://api.github.com/users/gemem","avatar_url":"https://avatars.githubusercontent.com/u/8495935?"},"repo":{"id":27145978,"name":"gemem/code-dot-org-python","url":"https://api.github.com/repos/gemem/code-dot-org-python"},"payload":{"push_id":536866285,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2b9531a9dfbbe445d04002132b9997d5a256a115","before":"8815587e636d7b136ef537dad5b6fc724487294f","commits":[{"sha":"2b9531a9dfbbe445d04002132b9997d5a256a115","author":{"email":"fa44b6b493fbba2dc9130354372c276891232dac@gmail.com","name":"Kevin"},"message":"w\n\njkdkdkdkdkdkdkdkdkdkddkkddkdkkddkdkkdkdkdkdkdkdkdkdd","distinct":true,"url":"https://api.github.com/repos/gemem/code-dot-org-python/commits/2b9531a9dfbbe445d04002132b9997d5a256a115"}]},"public":true,"created_at":"2015-01-01T15:11:00Z"} +,{"id":"2489656114","type":"PushEvent","actor":{"id":9547742,"login":"adlpzrmn","gravatar_id":"","url":"https://api.github.com/users/adlpzrmn","avatar_url":"https://avatars.githubusercontent.com/u/9547742?"},"repo":{"id":26164184,"name":"adlpzrmn/adlpzrmn.github.io","url":"https://api.github.com/repos/adlpzrmn/adlpzrmn.github.io"},"payload":{"push_id":536866286,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"eb8ab7e4b27dee13f1ffff417a5e0bf8e6038b26","before":"752a21bebc8817ff655c14730571ec6e1c862cf8","commits":[{"sha":"eb8ab7e4b27dee13f1ffff417a5e0bf8e6038b26","author":{"email":"909227e65a07389f2f74ddd2ac8f9d538341fdbf@yahoo.es","name":"adlpzrmn"},"message":"[HTML5 MOOC] [Módulo 10] [Ejercicios P2P]\n\nCorrección de version del manifest que es 5.0, en ambios manifest","distinct":true,"url":"https://api.github.com/repos/adlpzrmn/adlpzrmn.github.io/commits/eb8ab7e4b27dee13f1ffff417a5e0bf8e6038b26"}]},"public":true,"created_at":"2015-01-01T15:11:00Z"} +,{"id":"2489656115","type":"PushEvent","actor":{"id":1961699,"login":"rumpelsepp","gravatar_id":"","url":"https://api.github.com/users/rumpelsepp","avatar_url":"https://avatars.githubusercontent.com/u/1961699?"},"repo":{"id":27492294,"name":"rumpelsepp/rouge","url":"https://api.github.com/repos/rumpelsepp/rouge"},"payload":{"push_id":536866287,"size":1,"distinct_size":1,"ref":"refs/heads/rugments","head":"659cbc8d539dee4d09d00a12064ab49aabc7938b","before":"73bfa5daa03ae61f1eeeea54ef90b25f35346950","commits":[{"sha":"659cbc8d539dee4d09d00a12064ab49aabc7938b","author":{"email":"eb0877843acc39f8ef6f7269937dee931c372d23@sevenbyte.org","name":"Stefan Tatschner"},"message":"Implemented inline linenos","distinct":true,"url":"https://api.github.com/repos/rumpelsepp/rouge/commits/659cbc8d539dee4d09d00a12064ab49aabc7938b"}]},"public":true,"created_at":"2015-01-01T15:11:00Z"} +,{"id":"2489656118","type":"PullRequestReviewCommentEvent","actor":{"id":459648,"login":"samsonasik","gravatar_id":"","url":"https://api.github.com/users/samsonasik","avatar_url":"https://avatars.githubusercontent.com/u/459648?"},"repo":{"id":702550,"name":"zendframework/zf2","url":"https://api.github.com/repos/zendframework/zf2"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/22400131","id":22400131,"diff_hunk":"@@ -0,0 +1,21 @@\n+ array(\r\n 'factories' => array(\r\n 'my_new_loader' => 'ZendI18nDoctrineLoader\\Factory\\LoaderFactory',\r\n )\r\n),\r\n```\r\nBefore there was no way to add translation loaders without defining your own new translator service. See the ticket for more details: https://github.com/zendframework/zf2/issues/6244","created_at":"2014-05-08T20:17:38Z","updated_at":"2015-01-01T15:10:58Z","closed_at":null,"merged_at":null,"merge_commit_sha":"0df2b1a0db8803f4892d0156296a37a8a15b41cb","assignee":{"login":"DASPRiD","id":233300,"avatar_url":"https://avatars.githubusercontent.com/u/233300?v=3","gravatar_id":"","url":"https://api.github.com/users/DASPRiD","html_url":"https://github.com/DASPRiD","followers_url":"https://api.github.com/users/DASPRiD/followers","following_url":"https://api.github.com/users/DASPRiD/following{/other_user}","gists_url":"https://api.github.com/users/DASPRiD/gists{/gist_id}","starred_url":"https://api.github.com/users/DASPRiD/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DASPRiD/subscriptions","organizations_url":"https://api.github.com/users/DASPRiD/orgs","repos_url":"https://api.github.com/users/DASPRiD/repos","events_url":"https://api.github.com/users/DASPRiD/events{/privacy}","received_events_url":"https://api.github.com/users/DASPRiD/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/zendframework/zf2/milestones/26","labels_url":"https://api.github.com/repos/zendframework/zf2/milestones/26/labels","id":593244,"number":26,"title":"2.4.0","description":null,"creator":{"login":"weierophinney","id":25943,"avatar_url":"https://avatars.githubusercontent.com/u/25943?v=3","gravatar_id":"","url":"https://api.github.com/users/weierophinney","html_url":"https://github.com/weierophinney","followers_url":"https://api.github.com/users/weierophinney/followers","following_url":"https://api.github.com/users/weierophinney/following{/other_user}","gists_url":"https://api.github.com/users/weierophinney/gists{/gist_id}","starred_url":"https://api.github.com/users/weierophinney/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/weierophinney/subscriptions","organizations_url":"https://api.github.com/users/weierophinney/orgs","repos_url":"https://api.github.com/users/weierophinney/repos","events_url":"https://api.github.com/users/weierophinney/events{/privacy}","received_events_url":"https://api.github.com/users/weierophinney/received_events","type":"User","site_admin":false},"open_issues":34,"closed_issues":163,"state":"open","created_at":"2014-03-10T21:38:11Z","updated_at":"2014-12-31T09:55:26Z","due_on":null,"closed_at":null},"commits_url":"https://api.github.com/repos/zendframework/zf2/pulls/6246/commits","review_comments_url":"https://api.github.com/repos/zendframework/zf2/pulls/6246/comments","review_comment_url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/{number}","comments_url":"https://api.github.com/repos/zendframework/zf2/issues/6246/comments","statuses_url":"https://api.github.com/repos/zendframework/zf2/statuses/b8d61058fff74b60751deb879607d9d6b12f24e9","head":{"label":"rodmcnew:6244-translation-loaders-from-config","ref":"6244-translation-loaders-from-config","sha":"b8d61058fff74b60751deb879607d9d6b12f24e9","user":{"login":"rodmcnew","id":1828506,"avatar_url":"https://avatars.githubusercontent.com/u/1828506?v=3","gravatar_id":"","url":"https://api.github.com/users/rodmcnew","html_url":"https://github.com/rodmcnew","followers_url":"https://api.github.com/users/rodmcnew/followers","following_url":"https://api.github.com/users/rodmcnew/following{/other_user}","gists_url":"https://api.github.com/users/rodmcnew/gists{/gist_id}","starred_url":"https://api.github.com/users/rodmcnew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rodmcnew/subscriptions","organizations_url":"https://api.github.com/users/rodmcnew/orgs","repos_url":"https://api.github.com/users/rodmcnew/repos","events_url":"https://api.github.com/users/rodmcnew/events{/privacy}","received_events_url":"https://api.github.com/users/rodmcnew/received_events","type":"User","site_admin":false},"repo":{"id":19581770,"name":"zf2","full_name":"rodmcnew/zf2","owner":{"login":"rodmcnew","id":1828506,"avatar_url":"https://avatars.githubusercontent.com/u/1828506?v=3","gravatar_id":"","url":"https://api.github.com/users/rodmcnew","html_url":"https://github.com/rodmcnew","followers_url":"https://api.github.com/users/rodmcnew/followers","following_url":"https://api.github.com/users/rodmcnew/following{/other_user}","gists_url":"https://api.github.com/users/rodmcnew/gists{/gist_id}","starred_url":"https://api.github.com/users/rodmcnew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rodmcnew/subscriptions","organizations_url":"https://api.github.com/users/rodmcnew/orgs","repos_url":"https://api.github.com/users/rodmcnew/repos","events_url":"https://api.github.com/users/rodmcnew/events{/privacy}","received_events_url":"https://api.github.com/users/rodmcnew/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/rodmcnew/zf2","description":"Official Zend Framework 2 git repository","fork":true,"url":"https://api.github.com/repos/rodmcnew/zf2","forks_url":"https://api.github.com/repos/rodmcnew/zf2/forks","keys_url":"https://api.github.com/repos/rodmcnew/zf2/keys{/key_id}","collaborators_url":"https://api.github.com/repos/rodmcnew/zf2/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/rodmcnew/zf2/teams","hooks_url":"https://api.github.com/repos/rodmcnew/zf2/hooks","issue_events_url":"https://api.github.com/repos/rodmcnew/zf2/issues/events{/number}","events_url":"https://api.github.com/repos/rodmcnew/zf2/events","assignees_url":"https://api.github.com/repos/rodmcnew/zf2/assignees{/user}","branches_url":"https://api.github.com/repos/rodmcnew/zf2/branches{/branch}","tags_url":"https://api.github.com/repos/rodmcnew/zf2/tags","blobs_url":"https://api.github.com/repos/rodmcnew/zf2/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/rodmcnew/zf2/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/rodmcnew/zf2/git/refs{/sha}","trees_url":"https://api.github.com/repos/rodmcnew/zf2/git/trees{/sha}","statuses_url":"https://api.github.com/repos/rodmcnew/zf2/statuses/{sha}","languages_url":"https://api.github.com/repos/rodmcnew/zf2/languages","stargazers_url":"https://api.github.com/repos/rodmcnew/zf2/stargazers","contributors_url":"https://api.github.com/repos/rodmcnew/zf2/contributors","subscribers_url":"https://api.github.com/repos/rodmcnew/zf2/subscribers","subscription_url":"https://api.github.com/repos/rodmcnew/zf2/subscription","commits_url":"https://api.github.com/repos/rodmcnew/zf2/commits{/sha}","git_commits_url":"https://api.github.com/repos/rodmcnew/zf2/git/commits{/sha}","comments_url":"https://api.github.com/repos/rodmcnew/zf2/comments{/number}","issue_comment_url":"https://api.github.com/repos/rodmcnew/zf2/issues/comments/{number}","contents_url":"https://api.github.com/repos/rodmcnew/zf2/contents/{+path}","compare_url":"https://api.github.com/repos/rodmcnew/zf2/compare/{base}...{head}","merges_url":"https://api.github.com/repos/rodmcnew/zf2/merges","archive_url":"https://api.github.com/repos/rodmcnew/zf2/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/rodmcnew/zf2/downloads","issues_url":"https://api.github.com/repos/rodmcnew/zf2/issues{/number}","pulls_url":"https://api.github.com/repos/rodmcnew/zf2/pulls{/number}","milestones_url":"https://api.github.com/repos/rodmcnew/zf2/milestones{/number}","notifications_url":"https://api.github.com/repos/rodmcnew/zf2/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/rodmcnew/zf2/labels{/name}","releases_url":"https://api.github.com/repos/rodmcnew/zf2/releases{/id}","created_at":"2014-05-08T17:09:02Z","updated_at":"2014-05-22T16:49:57Z","pushed_at":"2014-12-04T17:16:31Z","git_url":"git://github.com/rodmcnew/zf2.git","ssh_url":"git@github.com:rodmcnew/zf2.git","clone_url":"https://github.com/rodmcnew/zf2.git","svn_url":"https://github.com/rodmcnew/zf2","homepage":"http://framework.zend.com/","size":90447,"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":"zendframework:master","ref":"master","sha":"d8158b4d2c54a36749b2ea2a33e791540e7d0c17","user":{"login":"zendframework","id":296074,"avatar_url":"https://avatars.githubusercontent.com/u/296074?v=3","gravatar_id":"","url":"https://api.github.com/users/zendframework","html_url":"https://github.com/zendframework","followers_url":"https://api.github.com/users/zendframework/followers","following_url":"https://api.github.com/users/zendframework/following{/other_user}","gists_url":"https://api.github.com/users/zendframework/gists{/gist_id}","starred_url":"https://api.github.com/users/zendframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zendframework/subscriptions","organizations_url":"https://api.github.com/users/zendframework/orgs","repos_url":"https://api.github.com/users/zendframework/repos","events_url":"https://api.github.com/users/zendframework/events{/privacy}","received_events_url":"https://api.github.com/users/zendframework/received_events","type":"Organization","site_admin":false},"repo":{"id":702550,"name":"zf2","full_name":"zendframework/zf2","owner":{"login":"zendframework","id":296074,"avatar_url":"https://avatars.githubusercontent.com/u/296074?v=3","gravatar_id":"","url":"https://api.github.com/users/zendframework","html_url":"https://github.com/zendframework","followers_url":"https://api.github.com/users/zendframework/followers","following_url":"https://api.github.com/users/zendframework/following{/other_user}","gists_url":"https://api.github.com/users/zendframework/gists{/gist_id}","starred_url":"https://api.github.com/users/zendframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zendframework/subscriptions","organizations_url":"https://api.github.com/users/zendframework/orgs","repos_url":"https://api.github.com/users/zendframework/repos","events_url":"https://api.github.com/users/zendframework/events{/privacy}","received_events_url":"https://api.github.com/users/zendframework/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/zendframework/zf2","description":"Official Zend Framework 2 git repository","fork":false,"url":"https://api.github.com/repos/zendframework/zf2","forks_url":"https://api.github.com/repos/zendframework/zf2/forks","keys_url":"https://api.github.com/repos/zendframework/zf2/keys{/key_id}","collaborators_url":"https://api.github.com/repos/zendframework/zf2/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/zendframework/zf2/teams","hooks_url":"https://api.github.com/repos/zendframework/zf2/hooks","issue_events_url":"https://api.github.com/repos/zendframework/zf2/issues/events{/number}","events_url":"https://api.github.com/repos/zendframework/zf2/events","assignees_url":"https://api.github.com/repos/zendframework/zf2/assignees{/user}","branches_url":"https://api.github.com/repos/zendframework/zf2/branches{/branch}","tags_url":"https://api.github.com/repos/zendframework/zf2/tags","blobs_url":"https://api.github.com/repos/zendframework/zf2/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/zendframework/zf2/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/zendframework/zf2/git/refs{/sha}","trees_url":"https://api.github.com/repos/zendframework/zf2/git/trees{/sha}","statuses_url":"https://api.github.com/repos/zendframework/zf2/statuses/{sha}","languages_url":"https://api.github.com/repos/zendframework/zf2/languages","stargazers_url":"https://api.github.com/repos/zendframework/zf2/stargazers","contributors_url":"https://api.github.com/repos/zendframework/zf2/contributors","subscribers_url":"https://api.github.com/repos/zendframework/zf2/subscribers","subscription_url":"https://api.github.com/repos/zendframework/zf2/subscription","commits_url":"https://api.github.com/repos/zendframework/zf2/commits{/sha}","git_commits_url":"https://api.github.com/repos/zendframework/zf2/git/commits{/sha}","comments_url":"https://api.github.com/repos/zendframework/zf2/comments{/number}","issue_comment_url":"https://api.github.com/repos/zendframework/zf2/issues/comments/{number}","contents_url":"https://api.github.com/repos/zendframework/zf2/contents/{+path}","compare_url":"https://api.github.com/repos/zendframework/zf2/compare/{base}...{head}","merges_url":"https://api.github.com/repos/zendframework/zf2/merges","archive_url":"https://api.github.com/repos/zendframework/zf2/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/zendframework/zf2/downloads","issues_url":"https://api.github.com/repos/zendframework/zf2/issues{/number}","pulls_url":"https://api.github.com/repos/zendframework/zf2/pulls{/number}","milestones_url":"https://api.github.com/repos/zendframework/zf2/milestones{/number}","notifications_url":"https://api.github.com/repos/zendframework/zf2/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/zendframework/zf2/labels{/name}","releases_url":"https://api.github.com/repos/zendframework/zf2/releases{/id}","created_at":"2010-06-04T02:42:05Z","updated_at":"2014-12-31T13:29:16Z","pushed_at":"2014-12-31T10:44:38Z","git_url":"git://github.com/zendframework/zf2.git","ssh_url":"git@github.com:zendframework/zf2.git","clone_url":"https://github.com/zendframework/zf2.git","svn_url":"https://github.com/zendframework/zf2","homepage":"http://framework.zend.com/","size":217086,"stargazers_count":4972,"watchers_count":4972,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":3016,"mirror_url":null,"open_issues_count":601,"forks":3016,"open_issues":601,"watchers":4972,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6246"},"html":{"href":"https://github.com/zendframework/zf2/pull/6246"},"issue":{"href":"https://api.github.com/repos/zendframework/zf2/issues/6246"},"comments":{"href":"https://api.github.com/repos/zendframework/zf2/issues/6246/comments"},"review_comments":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6246/comments"},"review_comment":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6246/commits"},"statuses":{"href":"https://api.github.com/repos/zendframework/zf2/statuses/b8d61058fff74b60751deb879607d9d6b12f24e9"}}}},"public":true,"created_at":"2015-01-01T15:10:58Z","org":{"id":296074,"login":"zendframework","gravatar_id":"","url":"https://api.github.com/orgs/zendframework","avatar_url":"https://avatars.githubusercontent.com/u/296074?"}} +,{"id":"2489656126","type":"DeleteEvent","actor":{"id":1986000,"login":"wilsonge","gravatar_id":"","url":"https://api.github.com/users/wilsonge","avatar_url":"https://avatars.githubusercontent.com/u/1986000?"},"repo":{"id":9136608,"name":"wilsonge/joomla-cms","url":"https://api.github.com/repos/wilsonge/joomla-cms"},"payload":{"ref":"configconsistency","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:11:01Z"} +,{"id":"2489656131","type":"IssuesEvent","actor":{"id":2717002,"login":"thetobby","gravatar_id":"","url":"https://api.github.com/users/thetobby","avatar_url":"https://avatars.githubusercontent.com/u/2717002?"},"repo":{"id":28650025,"name":"thetobby/Tmal","url":"https://api.github.com/repos/thetobby/Tmal"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/thetobby/Tmal/issues/5","labels_url":"https://api.github.com/repos/thetobby/Tmal/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/thetobby/Tmal/issues/5/comments","events_url":"https://api.github.com/repos/thetobby/Tmal/issues/5/events","html_url":"https://github.com/thetobby/Tmal/issues/5","id":53221545,"number":5,"title":"More buttons","user":{"login":"thetobby","id":2717002,"avatar_url":"https://avatars.githubusercontent.com/u/2717002?v=3","gravatar_id":"","url":"https://api.github.com/users/thetobby","html_url":"https://github.com/thetobby","followers_url":"https://api.github.com/users/thetobby/followers","following_url":"https://api.github.com/users/thetobby/following{/other_user}","gists_url":"https://api.github.com/users/thetobby/gists{/gist_id}","starred_url":"https://api.github.com/users/thetobby/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thetobby/subscriptions","organizations_url":"https://api.github.com/users/thetobby/orgs","repos_url":"https://api.github.com/users/thetobby/repos","events_url":"https://api.github.com/users/thetobby/events{/privacy}","received_events_url":"https://api.github.com/users/thetobby/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/thetobby/Tmal/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:11:03Z","updated_at":"2015-01-01T15:11:03Z","closed_at":null,"body":"More is better"}},"public":true,"created_at":"2015-01-01T15:11:05Z"} +,{"id":"2489656130","type":"WatchEvent","actor":{"id":6476362,"login":"codingdrone","gravatar_id":"","url":"https://api.github.com/users/codingdrone","avatar_url":"https://avatars.githubusercontent.com/u/6476362?"},"repo":{"id":22383418,"name":"cloudspokes/tech-core","url":"https://api.github.com/repos/cloudspokes/tech-core"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:11:05Z","org":{"id":684980,"login":"cloudspokes","gravatar_id":"","url":"https://api.github.com/orgs/cloudspokes","avatar_url":"https://avatars.githubusercontent.com/u/684980?"}} +,{"id":"2489656134","type":"CreateEvent","actor":{"id":6982260,"login":"rickpeyton","gravatar_id":"","url":"https://api.github.com/users/rickpeyton","avatar_url":"https://avatars.githubusercontent.com/u/6982260?"},"repo":{"id":28688788,"name":"rickpeyton/C01L01_Calculator_Tealeaf","url":"https://api.github.com/repos/rickpeyton/C01L01_Calculator_Tealeaf"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:11:05Z"} +,{"id":"2489656135","type":"PushEvent","actor":{"id":6392429,"login":"jakesyl","gravatar_id":"","url":"https://api.github.com/users/jakesyl","avatar_url":"https://avatars.githubusercontent.com/u/6392429?"},"repo":{"id":26197772,"name":"jakesyl/mail","url":"https://api.github.com/repos/jakesyl/mail"},"payload":{"push_id":536866295,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"da33fb02d7f3e989b2be10e4473e946e65ac85b3","before":"5bc62214b4b2bb847ae0e5385746942b9a33af24","commits":[{"sha":"da33fb02d7f3e989b2be10e4473e946e65ac85b3","author":{"email":"cc1d6f2181d61a4071e797ec1611fa422aa1cd35@gmail.com","name":"Jake Sylvestre"},"message":"added update","distinct":true,"url":"https://api.github.com/repos/jakesyl/mail/commits/da33fb02d7f3e989b2be10e4473e946e65ac85b3"}]},"public":true,"created_at":"2015-01-01T15:11:05Z"} +,{"id":"2489656136","type":"PushEvent","actor":{"id":6825362,"login":"Aymenworks","gravatar_id":"","url":"https://api.github.com/users/Aymenworks","avatar_url":"https://avatars.githubusercontent.com/u/6825362?"},"repo":{"id":28316236,"name":"Aymenworks/EmptyApp","url":"https://api.github.com/repos/Aymenworks/EmptyApp"},"payload":{"push_id":536866296,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"587d12f9524a05fca4656f5fcdb117f8dff3aabb","before":"ef1f55cd0f445afbd489fd061ed5d728eff2d37b","commits":[{"sha":"587d12f9524a05fca4656f5fcdb117f8dff3aabb","author":{"email":"c4ef171a48d78f662bcce391783b9132c95d617d@gmail.com","name":"Rebouh Aymen"},"message":"fix circle.yml","distinct":true,"url":"https://api.github.com/repos/Aymenworks/EmptyApp/commits/587d12f9524a05fca4656f5fcdb117f8dff3aabb"}]},"public":true,"created_at":"2015-01-01T15:11:05Z"} +,{"id":"2489656137","type":"PushEvent","actor":{"id":8781446,"login":"schum30","gravatar_id":"","url":"https://api.github.com/users/schum30","avatar_url":"https://avatars.githubusercontent.com/u/8781446?"},"repo":{"id":24425084,"name":"liecj3/sokoban","url":"https://api.github.com/repos/liecj3/sokoban"},"payload":{"push_id":536866298,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ae79439f5bc8da263c8bcc3e696c232b13f89a8c","before":"2ff0ab285b144b95009301d0113cb2e12c1ba949","commits":[{"sha":"ae79439f5bc8da263c8bcc3e696c232b13f89a8c","author":{"email":"16e61c267c2822827cc1745dc3af37190ad027d2@bfh.ch","name":"Michael Schuler"},"message":"Added SplashScreen (Use launcher in Sokoban Folder!)","distinct":true,"url":"https://api.github.com/repos/liecj3/sokoban/commits/ae79439f5bc8da263c8bcc3e696c232b13f89a8c"}]},"public":true,"created_at":"2015-01-01T15:11:05Z"} +,{"id":"2489656138","type":"CreateEvent","actor":{"id":1163662,"login":"robertpanzer","gravatar_id":"","url":"https://api.github.com/users/robertpanzer","avatar_url":"https://avatars.githubusercontent.com/u/1163662?"},"repo":{"id":27998582,"name":"robertpanzer/asciidoctorj","url":"https://api.github.com/repos/robertpanzer/asciidoctorj"},"payload":{"ref":"AST_alignment","ref_type":"branch","master_branch":"master","description":"Java bindings for Asciidoctor. Asciidoctor on the JVM!","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:11:05Z"} +,{"id":"2489656139","type":"PushEvent","actor":{"id":9969712,"login":"vbsql7","gravatar_id":"","url":"https://api.github.com/users/vbsql7","avatar_url":"https://avatars.githubusercontent.com/u/9969712?"},"repo":{"id":27154002,"name":"asm-products/wait-killer","url":"https://api.github.com/repos/asm-products/wait-killer"},"payload":{"push_id":536866299,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e262044588e48b9e70a98afbd1acb5e6e99de9c6","before":"00abb389e6abbad3789d966926d75fa65c6481b9","commits":[{"sha":"e262044588e48b9e70a98afbd1acb5e6e99de9c6","author":{"email":"17b9e1c64588c7fa6419b4d29dc1f4426279ba01@disambiguator.com","name":"Michael"},"message":"trim Procfile; Remove unicorn from Gemfile","distinct":true,"url":"https://api.github.com/repos/asm-products/wait-killer/commits/e262044588e48b9e70a98afbd1acb5e6e99de9c6"}]},"public":true,"created_at":"2015-01-01T15:11:05Z","org":{"id":6548361,"login":"asm-products","gravatar_id":"","url":"https://api.github.com/orgs/asm-products","avatar_url":"https://avatars.githubusercontent.com/u/6548361?"}} +,{"id":"2489656140","type":"PushEvent","actor":{"id":1406184,"login":"jshafton","gravatar_id":"","url":"https://api.github.com/users/jshafton","avatar_url":"https://avatars.githubusercontent.com/u/1406184?"},"repo":{"id":28618563,"name":"jshafton/laptop","url":"https://api.github.com/repos/jshafton/laptop"},"payload":{"push_id":536866300,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"62b73e1aafa21d14d53bee0ba424fbcb583f2b5f","before":"938aa59ef9bab5f1d4b417efb618600b9224afc0","commits":[{"sha":"62b73e1aafa21d14d53bee0ba424fbcb583f2b5f","author":{"email":"f862f167b85d41b225785c70d70808bc7337c1fe@shafton.com","name":"Jacob Shafton"},"message":"Fix OSX defaults configuration\n\nThis was failing because the ansible yaml file was being called from the\nmain directory, and then ansible was going up a directory to look for a\n`files` folder.\n\nThis commit makes the structure more inline with ansible by putting\ntasks in a `tasks` folder.","distinct":true,"url":"https://api.github.com/repos/jshafton/laptop/commits/62b73e1aafa21d14d53bee0ba424fbcb583f2b5f"}]},"public":true,"created_at":"2015-01-01T15:11:05Z"} +,{"id":"2489656141","type":"IssueCommentEvent","actor":{"id":199592,"login":"methane","gravatar_id":"","url":"https://api.github.com/users/methane","avatar_url":"https://avatars.githubusercontent.com/u/199592?"},"repo":{"id":23096959,"name":"golang/go","url":"https://api.github.com/repos/golang/go"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/golang/go/issues/9484","labels_url":"https://api.github.com/repos/golang/go/issues/9484/labels{/name}","comments_url":"https://api.github.com/repos/golang/go/issues/9484/comments","events_url":"https://api.github.com/repos/golang/go/issues/9484/events","html_url":"https://github.com/golang/go/issues/9484","id":53213237,"number":9484,"title":"database/sql: lock contentions in DB, Stmt","user":{"login":"methane","id":199592,"avatar_url":"https://avatars.githubusercontent.com/u/199592?v=3","gravatar_id":"","url":"https://api.github.com/users/methane","html_url":"https://github.com/methane","followers_url":"https://api.github.com/users/methane/followers","following_url":"https://api.github.com/users/methane/following{/other_user}","gists_url":"https://api.github.com/users/methane/gists{/gist_id}","starred_url":"https://api.github.com/users/methane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/methane/subscriptions","organizations_url":"https://api.github.com/users/methane/orgs","repos_url":"https://api.github.com/users/methane/repos","events_url":"https://api.github.com/users/methane/events{/privacy}","received_events_url":"https://api.github.com/users/methane/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/golang/go/labels/performance","name":"performance","color":"ededed"},{"url":"https://api.github.com/repos/golang/go/labels/repo-main","name":"repo-main","color":"ededed"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2015-01-01T05:17:26Z","updated_at":"2015-01-01T15:11:03Z","closed_at":null,"body":"When using same prepared statement in concurrently. I confirmed with 128 concurrent http access.\r\n\r\nIssue happened here: https://github.com/TechEmpower/FrameworkBenchmarks/pull/1164\r\nAnd stackdump: https://gist.github.com/methane/dd3c3f8de8128730bd63\r\n\r\nThere are some issues:\r\n\r\n## 1. db.mu contention\r\nstmt.Query() uses addDep and removeDep. It locks db.mu.\r\nstmt.connStmt() calls db.connIfFree() multiple times. Each call lock and unlock db.mu.\r\n\r\n## 2. stmt.connStmt() hold stmt.mu long\r\nStmt.css may be bit long (e.g. 128).\r\nhttps://github.com/golang/go/blob/master/src/database/sql/sql.go#L1375-L1388\r\nThis loop take bit long time.\r\nMoving db.mu from DB.connIfFree to before the loop makes bit faster.\r\n\r\nBut I think moving Stmt.css to driverConn is more better."},"comment":{"url":"https://api.github.com/repos/golang/go/issues/comments/68488727","html_url":"https://github.com/golang/go/issues/9484#issuecomment-68488727","issue_url":"https://api.github.com/repos/golang/go/issues/9484","id":68488727,"user":{"login":"methane","id":199592,"avatar_url":"https://avatars.githubusercontent.com/u/199592?v=3","gravatar_id":"","url":"https://api.github.com/users/methane","html_url":"https://github.com/methane","followers_url":"https://api.github.com/users/methane/followers","following_url":"https://api.github.com/users/methane/following{/other_user}","gists_url":"https://api.github.com/users/methane/gists{/gist_id}","starred_url":"https://api.github.com/users/methane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/methane/subscriptions","organizations_url":"https://api.github.com/users/methane/orgs","repos_url":"https://api.github.com/users/methane/repos","events_url":"https://api.github.com/users/methane/events{/privacy}","received_events_url":"https://api.github.com/users/methane/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:11:03Z","updated_at":"2015-01-01T15:11:03Z","body":"> How would that work? The point of the css slice is to know which connections already have the statement prepared in order to reuse it. If you put it in the driverConn, how do you find out which connection to use?\r\n\r\nI said about changing `driverConn.openStmt` from `map[driver.Stmt]bool` to `map[*Stmt]driver.Stmt`.\r\nhttps://github.com/golang/go/blob/master/src/database/sql/sql.go#L244\r\n\r\nBut I couldn't remove `Stmt.css` simply because `Stmt.finalClose()` uses it.\r\nI'll try changing `Stmt.css` from `[]connStmt` to `map[*driverConn]driver.Stmt`."}},"public":true,"created_at":"2015-01-01T15:11:05Z","org":{"id":4314092,"login":"golang","gravatar_id":"","url":"https://api.github.com/orgs/golang","avatar_url":"https://avatars.githubusercontent.com/u/4314092?"}} +,{"id":"2489656143","type":"PushEvent","actor":{"id":378235,"login":"timkurvers","gravatar_id":"","url":"https://api.github.com/users/timkurvers","avatar_url":"https://avatars.githubusercontent.com/u/378235?"},"repo":{"id":4462191,"name":"timkurvers/wowser","url":"https://api.github.com/repos/timkurvers/wowser"},"payload":{"push_id":536866302,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8fd0fafed3c7a802b0940b502d2199e53c4b7b76","before":"c3d934ab892835ce512eebc1d60372d71e17b005","commits":[{"sha":"8fd0fafed3c7a802b0940b502d2199e53c4b7b76","author":{"email":"5ee0edb9e2229c0838f1959779f1949031de0123@moonsphere.net","name":"Tim Kurvers"},"message":"Find skin case-insensitively","distinct":true,"url":"https://api.github.com/repos/timkurvers/wowser/commits/8fd0fafed3c7a802b0940b502d2199e53c4b7b76"}]},"public":true,"created_at":"2015-01-01T15:11:05Z"} +,{"id":"2489656144","type":"PullRequestReviewCommentEvent","actor":{"id":459648,"login":"samsonasik","gravatar_id":"","url":"https://api.github.com/users/samsonasik","avatar_url":"https://avatars.githubusercontent.com/u/459648?"},"repo":{"id":702550,"name":"zendframework/zf2","url":"https://api.github.com/repos/zendframework/zf2"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/22400133","id":22400133,"diff_hunk":"@@ -0,0 +1,16 @@\n+ array(\r\n 'factories' => array(\r\n 'my_new_loader' => 'ZendI18nDoctrineLoader\\Factory\\LoaderFactory',\r\n )\r\n),\r\n```\r\nBefore there was no way to add translation loaders without defining your own new translator service. See the ticket for more details: https://github.com/zendframework/zf2/issues/6244","created_at":"2014-05-08T20:17:38Z","updated_at":"2015-01-01T15:11:04Z","closed_at":null,"merged_at":null,"merge_commit_sha":"0df2b1a0db8803f4892d0156296a37a8a15b41cb","assignee":{"login":"DASPRiD","id":233300,"avatar_url":"https://avatars.githubusercontent.com/u/233300?v=3","gravatar_id":"","url":"https://api.github.com/users/DASPRiD","html_url":"https://github.com/DASPRiD","followers_url":"https://api.github.com/users/DASPRiD/followers","following_url":"https://api.github.com/users/DASPRiD/following{/other_user}","gists_url":"https://api.github.com/users/DASPRiD/gists{/gist_id}","starred_url":"https://api.github.com/users/DASPRiD/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DASPRiD/subscriptions","organizations_url":"https://api.github.com/users/DASPRiD/orgs","repos_url":"https://api.github.com/users/DASPRiD/repos","events_url":"https://api.github.com/users/DASPRiD/events{/privacy}","received_events_url":"https://api.github.com/users/DASPRiD/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/zendframework/zf2/milestones/26","labels_url":"https://api.github.com/repos/zendframework/zf2/milestones/26/labels","id":593244,"number":26,"title":"2.4.0","description":null,"creator":{"login":"weierophinney","id":25943,"avatar_url":"https://avatars.githubusercontent.com/u/25943?v=3","gravatar_id":"","url":"https://api.github.com/users/weierophinney","html_url":"https://github.com/weierophinney","followers_url":"https://api.github.com/users/weierophinney/followers","following_url":"https://api.github.com/users/weierophinney/following{/other_user}","gists_url":"https://api.github.com/users/weierophinney/gists{/gist_id}","starred_url":"https://api.github.com/users/weierophinney/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/weierophinney/subscriptions","organizations_url":"https://api.github.com/users/weierophinney/orgs","repos_url":"https://api.github.com/users/weierophinney/repos","events_url":"https://api.github.com/users/weierophinney/events{/privacy}","received_events_url":"https://api.github.com/users/weierophinney/received_events","type":"User","site_admin":false},"open_issues":34,"closed_issues":163,"state":"open","created_at":"2014-03-10T21:38:11Z","updated_at":"2014-12-31T09:55:26Z","due_on":null,"closed_at":null},"commits_url":"https://api.github.com/repos/zendframework/zf2/pulls/6246/commits","review_comments_url":"https://api.github.com/repos/zendframework/zf2/pulls/6246/comments","review_comment_url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/{number}","comments_url":"https://api.github.com/repos/zendframework/zf2/issues/6246/comments","statuses_url":"https://api.github.com/repos/zendframework/zf2/statuses/b8d61058fff74b60751deb879607d9d6b12f24e9","head":{"label":"rodmcnew:6244-translation-loaders-from-config","ref":"6244-translation-loaders-from-config","sha":"b8d61058fff74b60751deb879607d9d6b12f24e9","user":{"login":"rodmcnew","id":1828506,"avatar_url":"https://avatars.githubusercontent.com/u/1828506?v=3","gravatar_id":"","url":"https://api.github.com/users/rodmcnew","html_url":"https://github.com/rodmcnew","followers_url":"https://api.github.com/users/rodmcnew/followers","following_url":"https://api.github.com/users/rodmcnew/following{/other_user}","gists_url":"https://api.github.com/users/rodmcnew/gists{/gist_id}","starred_url":"https://api.github.com/users/rodmcnew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rodmcnew/subscriptions","organizations_url":"https://api.github.com/users/rodmcnew/orgs","repos_url":"https://api.github.com/users/rodmcnew/repos","events_url":"https://api.github.com/users/rodmcnew/events{/privacy}","received_events_url":"https://api.github.com/users/rodmcnew/received_events","type":"User","site_admin":false},"repo":{"id":19581770,"name":"zf2","full_name":"rodmcnew/zf2","owner":{"login":"rodmcnew","id":1828506,"avatar_url":"https://avatars.githubusercontent.com/u/1828506?v=3","gravatar_id":"","url":"https://api.github.com/users/rodmcnew","html_url":"https://github.com/rodmcnew","followers_url":"https://api.github.com/users/rodmcnew/followers","following_url":"https://api.github.com/users/rodmcnew/following{/other_user}","gists_url":"https://api.github.com/users/rodmcnew/gists{/gist_id}","starred_url":"https://api.github.com/users/rodmcnew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rodmcnew/subscriptions","organizations_url":"https://api.github.com/users/rodmcnew/orgs","repos_url":"https://api.github.com/users/rodmcnew/repos","events_url":"https://api.github.com/users/rodmcnew/events{/privacy}","received_events_url":"https://api.github.com/users/rodmcnew/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/rodmcnew/zf2","description":"Official Zend Framework 2 git repository","fork":true,"url":"https://api.github.com/repos/rodmcnew/zf2","forks_url":"https://api.github.com/repos/rodmcnew/zf2/forks","keys_url":"https://api.github.com/repos/rodmcnew/zf2/keys{/key_id}","collaborators_url":"https://api.github.com/repos/rodmcnew/zf2/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/rodmcnew/zf2/teams","hooks_url":"https://api.github.com/repos/rodmcnew/zf2/hooks","issue_events_url":"https://api.github.com/repos/rodmcnew/zf2/issues/events{/number}","events_url":"https://api.github.com/repos/rodmcnew/zf2/events","assignees_url":"https://api.github.com/repos/rodmcnew/zf2/assignees{/user}","branches_url":"https://api.github.com/repos/rodmcnew/zf2/branches{/branch}","tags_url":"https://api.github.com/repos/rodmcnew/zf2/tags","blobs_url":"https://api.github.com/repos/rodmcnew/zf2/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/rodmcnew/zf2/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/rodmcnew/zf2/git/refs{/sha}","trees_url":"https://api.github.com/repos/rodmcnew/zf2/git/trees{/sha}","statuses_url":"https://api.github.com/repos/rodmcnew/zf2/statuses/{sha}","languages_url":"https://api.github.com/repos/rodmcnew/zf2/languages","stargazers_url":"https://api.github.com/repos/rodmcnew/zf2/stargazers","contributors_url":"https://api.github.com/repos/rodmcnew/zf2/contributors","subscribers_url":"https://api.github.com/repos/rodmcnew/zf2/subscribers","subscription_url":"https://api.github.com/repos/rodmcnew/zf2/subscription","commits_url":"https://api.github.com/repos/rodmcnew/zf2/commits{/sha}","git_commits_url":"https://api.github.com/repos/rodmcnew/zf2/git/commits{/sha}","comments_url":"https://api.github.com/repos/rodmcnew/zf2/comments{/number}","issue_comment_url":"https://api.github.com/repos/rodmcnew/zf2/issues/comments/{number}","contents_url":"https://api.github.com/repos/rodmcnew/zf2/contents/{+path}","compare_url":"https://api.github.com/repos/rodmcnew/zf2/compare/{base}...{head}","merges_url":"https://api.github.com/repos/rodmcnew/zf2/merges","archive_url":"https://api.github.com/repos/rodmcnew/zf2/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/rodmcnew/zf2/downloads","issues_url":"https://api.github.com/repos/rodmcnew/zf2/issues{/number}","pulls_url":"https://api.github.com/repos/rodmcnew/zf2/pulls{/number}","milestones_url":"https://api.github.com/repos/rodmcnew/zf2/milestones{/number}","notifications_url":"https://api.github.com/repos/rodmcnew/zf2/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/rodmcnew/zf2/labels{/name}","releases_url":"https://api.github.com/repos/rodmcnew/zf2/releases{/id}","created_at":"2014-05-08T17:09:02Z","updated_at":"2014-05-22T16:49:57Z","pushed_at":"2014-12-04T17:16:31Z","git_url":"git://github.com/rodmcnew/zf2.git","ssh_url":"git@github.com:rodmcnew/zf2.git","clone_url":"https://github.com/rodmcnew/zf2.git","svn_url":"https://github.com/rodmcnew/zf2","homepage":"http://framework.zend.com/","size":90447,"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":"zendframework:master","ref":"master","sha":"d8158b4d2c54a36749b2ea2a33e791540e7d0c17","user":{"login":"zendframework","id":296074,"avatar_url":"https://avatars.githubusercontent.com/u/296074?v=3","gravatar_id":"","url":"https://api.github.com/users/zendframework","html_url":"https://github.com/zendframework","followers_url":"https://api.github.com/users/zendframework/followers","following_url":"https://api.github.com/users/zendframework/following{/other_user}","gists_url":"https://api.github.com/users/zendframework/gists{/gist_id}","starred_url":"https://api.github.com/users/zendframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zendframework/subscriptions","organizations_url":"https://api.github.com/users/zendframework/orgs","repos_url":"https://api.github.com/users/zendframework/repos","events_url":"https://api.github.com/users/zendframework/events{/privacy}","received_events_url":"https://api.github.com/users/zendframework/received_events","type":"Organization","site_admin":false},"repo":{"id":702550,"name":"zf2","full_name":"zendframework/zf2","owner":{"login":"zendframework","id":296074,"avatar_url":"https://avatars.githubusercontent.com/u/296074?v=3","gravatar_id":"","url":"https://api.github.com/users/zendframework","html_url":"https://github.com/zendframework","followers_url":"https://api.github.com/users/zendframework/followers","following_url":"https://api.github.com/users/zendframework/following{/other_user}","gists_url":"https://api.github.com/users/zendframework/gists{/gist_id}","starred_url":"https://api.github.com/users/zendframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zendframework/subscriptions","organizations_url":"https://api.github.com/users/zendframework/orgs","repos_url":"https://api.github.com/users/zendframework/repos","events_url":"https://api.github.com/users/zendframework/events{/privacy}","received_events_url":"https://api.github.com/users/zendframework/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/zendframework/zf2","description":"Official Zend Framework 2 git repository","fork":false,"url":"https://api.github.com/repos/zendframework/zf2","forks_url":"https://api.github.com/repos/zendframework/zf2/forks","keys_url":"https://api.github.com/repos/zendframework/zf2/keys{/key_id}","collaborators_url":"https://api.github.com/repos/zendframework/zf2/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/zendframework/zf2/teams","hooks_url":"https://api.github.com/repos/zendframework/zf2/hooks","issue_events_url":"https://api.github.com/repos/zendframework/zf2/issues/events{/number}","events_url":"https://api.github.com/repos/zendframework/zf2/events","assignees_url":"https://api.github.com/repos/zendframework/zf2/assignees{/user}","branches_url":"https://api.github.com/repos/zendframework/zf2/branches{/branch}","tags_url":"https://api.github.com/repos/zendframework/zf2/tags","blobs_url":"https://api.github.com/repos/zendframework/zf2/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/zendframework/zf2/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/zendframework/zf2/git/refs{/sha}","trees_url":"https://api.github.com/repos/zendframework/zf2/git/trees{/sha}","statuses_url":"https://api.github.com/repos/zendframework/zf2/statuses/{sha}","languages_url":"https://api.github.com/repos/zendframework/zf2/languages","stargazers_url":"https://api.github.com/repos/zendframework/zf2/stargazers","contributors_url":"https://api.github.com/repos/zendframework/zf2/contributors","subscribers_url":"https://api.github.com/repos/zendframework/zf2/subscribers","subscription_url":"https://api.github.com/repos/zendframework/zf2/subscription","commits_url":"https://api.github.com/repos/zendframework/zf2/commits{/sha}","git_commits_url":"https://api.github.com/repos/zendframework/zf2/git/commits{/sha}","comments_url":"https://api.github.com/repos/zendframework/zf2/comments{/number}","issue_comment_url":"https://api.github.com/repos/zendframework/zf2/issues/comments/{number}","contents_url":"https://api.github.com/repos/zendframework/zf2/contents/{+path}","compare_url":"https://api.github.com/repos/zendframework/zf2/compare/{base}...{head}","merges_url":"https://api.github.com/repos/zendframework/zf2/merges","archive_url":"https://api.github.com/repos/zendframework/zf2/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/zendframework/zf2/downloads","issues_url":"https://api.github.com/repos/zendframework/zf2/issues{/number}","pulls_url":"https://api.github.com/repos/zendframework/zf2/pulls{/number}","milestones_url":"https://api.github.com/repos/zendframework/zf2/milestones{/number}","notifications_url":"https://api.github.com/repos/zendframework/zf2/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/zendframework/zf2/labels{/name}","releases_url":"https://api.github.com/repos/zendframework/zf2/releases{/id}","created_at":"2010-06-04T02:42:05Z","updated_at":"2014-12-31T13:29:16Z","pushed_at":"2014-12-31T10:44:38Z","git_url":"git://github.com/zendframework/zf2.git","ssh_url":"git@github.com:zendframework/zf2.git","clone_url":"https://github.com/zendframework/zf2.git","svn_url":"https://github.com/zendframework/zf2","homepage":"http://framework.zend.com/","size":217086,"stargazers_count":4972,"watchers_count":4972,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":3016,"mirror_url":null,"open_issues_count":601,"forks":3016,"open_issues":601,"watchers":4972,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6246"},"html":{"href":"https://github.com/zendframework/zf2/pull/6246"},"issue":{"href":"https://api.github.com/repos/zendframework/zf2/issues/6246"},"comments":{"href":"https://api.github.com/repos/zendframework/zf2/issues/6246/comments"},"review_comments":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6246/comments"},"review_comment":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/zendframework/zf2/pulls/6246/commits"},"statuses":{"href":"https://api.github.com/repos/zendframework/zf2/statuses/b8d61058fff74b60751deb879607d9d6b12f24e9"}}}},"public":true,"created_at":"2015-01-01T15:11:04Z","org":{"id":296074,"login":"zendframework","gravatar_id":"","url":"https://api.github.com/orgs/zendframework","avatar_url":"https://avatars.githubusercontent.com/u/296074?"}} +,{"id":"2489656146","type":"PushEvent","actor":{"id":896184,"login":"Xianic","gravatar_id":"","url":"https://api.github.com/users/Xianic","avatar_url":"https://avatars.githubusercontent.com/u/896184?"},"repo":{"id":27046783,"name":"Xianic/PiFn","url":"https://api.github.com/repos/Xianic/PiFn"},"payload":{"push_id":536866304,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"39754074d388fccfa664c49356a058e0995b6783","before":"7528f9b61e301e926d55e0e2cd30fc441c2efb21","commits":[{"sha":"39754074d388fccfa664c49356a058e0995b6783","author":{"email":"147db7ee3f901dbc2f9581d6a50ea77dc12434e5@xianic.net","name":"Xian Stannard"},"message":"Driveshell is installed","distinct":true,"url":"https://api.github.com/repos/Xianic/PiFn/commits/39754074d388fccfa664c49356a058e0995b6783"}]},"public":true,"created_at":"2015-01-01T15:11:05Z"} +,{"id":"2489656149","type":"IssuesEvent","actor":{"id":1220476,"login":"shuaishuai","gravatar_id":"","url":"https://api.github.com/users/shuaishuai","avatar_url":"https://avatars.githubusercontent.com/u/1220476?"},"repo":{"id":14138115,"name":"aterreno/activemq-dockerfile","url":"https://api.github.com/repos/aterreno/activemq-dockerfile"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/aterreno/activemq-dockerfile/issues/3","labels_url":"https://api.github.com/repos/aterreno/activemq-dockerfile/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/aterreno/activemq-dockerfile/issues/3/comments","events_url":"https://api.github.com/repos/aterreno/activemq-dockerfile/issues/3/events","html_url":"https://github.com/aterreno/activemq-dockerfile/issues/3","id":53221546,"number":3,"title":"Can you explain more about the `awk` line?","user":{"login":"shuaishuai","id":1220476,"avatar_url":"https://avatars.githubusercontent.com/u/1220476?v=3","gravatar_id":"","url":"https://api.github.com/users/shuaishuai","html_url":"https://github.com/shuaishuai","followers_url":"https://api.github.com/users/shuaishuai/followers","following_url":"https://api.github.com/users/shuaishuai/following{/other_user}","gists_url":"https://api.github.com/users/shuaishuai/gists{/gist_id}","starred_url":"https://api.github.com/users/shuaishuai/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shuaishuai/subscriptions","organizations_url":"https://api.github.com/users/shuaishuai/orgs","repos_url":"https://api.github.com/users/shuaishuai/repos","events_url":"https://api.github.com/users/shuaishuai/events{/privacy}","received_events_url":"https://api.github.com/users/shuaishuai/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:11:06Z","updated_at":"2015-01-01T15:11:06Z","closed_at":null,"body":"That saves my life. Thanks a lot! However, I still want to know why."}},"public":true,"created_at":"2015-01-01T15:11:06Z"} +,{"id":"2489656150","type":"WatchEvent","actor":{"id":586380,"login":"AndreyAntipov","gravatar_id":"","url":"https://api.github.com/users/AndreyAntipov","avatar_url":"https://avatars.githubusercontent.com/u/586380?"},"repo":{"id":21399598,"name":"angular/material","url":"https://api.github.com/repos/angular/material"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:11:06Z","org":{"id":139426,"login":"angular","gravatar_id":"","url":"https://api.github.com/orgs/angular","avatar_url":"https://avatars.githubusercontent.com/u/139426?"}} +,{"id":"2489656152","type":"WatchEvent","actor":{"id":891829,"login":"danielbaak","gravatar_id":"","url":"https://api.github.com/users/danielbaak","avatar_url":"https://avatars.githubusercontent.com/u/891829?"},"repo":{"id":8464357,"name":"Wolfy87/dotfiles","url":"https://api.github.com/repos/Wolfy87/dotfiles"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:11:06Z"} +,{"id":"2489656153","type":"PushEvent","actor":{"id":1311964,"login":"Jeija","gravatar_id":"","url":"https://api.github.com/users/Jeija","avatar_url":"https://avatars.githubusercontent.com/u/1311964?"},"repo":{"id":28002060,"name":"Jeija/schulealsstaat","url":"https://api.github.com/repos/Jeija/schulealsstaat"},"payload":{"push_id":536866307,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"71cd0fa33bb982b21224e7040571b49cb2b4a64f","before":"ec026986c8addbae90fb311622c2269f608ff32c","commits":[{"sha":"71cd0fa33bb982b21224e7040571b49cb2b4a64f","author":{"email":"e55e1b75c63841272ebb9aa31ab5c64aeb882e65@gmail.com","name":"Jeija"},"message":"Update all QR-IDs in transactions DB if QR-ID of student is edited\n(which really shouldn't happen, but anyways)","distinct":true,"url":"https://api.github.com/repos/Jeija/schulealsstaat/commits/71cd0fa33bb982b21224e7040571b49cb2b4a64f"}]},"public":true,"created_at":"2015-01-01T15:11:06Z"} +,{"id":"2489656156","type":"CommitCommentEvent","actor":{"id":3585743,"login":"jomo","gravatar_id":"","url":"https://api.github.com/users/jomo","avatar_url":"https://avatars.githubusercontent.com/u/3585743?"},"repo":{"id":16747408,"name":"TechnicPack/LauncherV3","url":"https://api.github.com/repos/TechnicPack/LauncherV3"},"payload":{"comment":{"url":"https://api.github.com/repos/TechnicPack/LauncherV3/comments/9132438","html_url":"https://github.com/TechnicPack/LauncherV3/commit/8d1b72a7b44d1f59c95f66726c58f620861b999c#commitcomment-9132438","id":9132438,"user":{"login":"jomo","id":3585743,"avatar_url":"https://avatars.githubusercontent.com/u/3585743?v=3","gravatar_id":"","url":"https://api.github.com/users/jomo","html_url":"https://github.com/jomo","followers_url":"https://api.github.com/users/jomo/followers","following_url":"https://api.github.com/users/jomo/following{/other_user}","gists_url":"https://api.github.com/users/jomo/gists{/gist_id}","starred_url":"https://api.github.com/users/jomo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jomo/subscriptions","organizations_url":"https://api.github.com/users/jomo/orgs","repos_url":"https://api.github.com/users/jomo/repos","events_url":"https://api.github.com/users/jomo/events{/privacy}","received_events_url":"https://api.github.com/users/jomo/received_events","type":"User","site_admin":false},"position":null,"line":null,"path":"","commit_id":"8d1b72a7b44d1f59c95f66726c58f620861b999c","created_at":"2015-01-01T15:11:07Z","updated_at":"2015-01-01T15:11:07Z","body":"As far as i can tell [the SSL problems](https://www.irccloud.com/pastebin/946ittrP) are caused due to lack of [SNI](https://en.wikipedia.org/wiki/Server_Name_Indication) support (I believe Java <= 6).\r\n\r\nSNI \"allows multiple secure (HTTPS) websites [...] to be served off the same IP address without requiring all those sites to use the same certificate\"\r\n\r\nWe're running Crafatar behind CloudFlare and since they proxy quite a few sites they have to use SNI.\r\n\r\nI [found this](http://jafag.blogspot.de/2008/12/java-ssl-no-subject-alternative-matched.html), maybe that workaround could work? I don't know if this makes it insecure, though.\r\n\r\n"}},"public":true,"created_at":"2015-01-01T15:11:07Z","org":{"id":1264449,"login":"TechnicPack","gravatar_id":"","url":"https://api.github.com/orgs/TechnicPack","avatar_url":"https://avatars.githubusercontent.com/u/1264449?"}} +,{"id":"2489656161","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":536866310,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0a322eecb4765ef54c01bfb2cfb4e1b5431b4270","before":"fadd3e9936ea6872c9206a0b3fbff10ec81a031f","commits":[{"sha":"0a322eecb4765ef54c01bfb2cfb4e1b5431b4270","author":{"email":"1d6e1cf70ec6f9ab28d3ea4b27a49a77654d370e@qinwenfeng.com","name":"qinwf"},"message":"add Base","distinct":true,"url":"https://api.github.com/repos/qinwf/Chinese.jl/commits/0a322eecb4765ef54c01bfb2cfb4e1b5431b4270"}]},"public":true,"created_at":"2015-01-01T15:11:07Z"} +,{"id":"2489656162","type":"PushEvent","actor":{"id":785941,"login":"cenotaph","gravatar_id":"","url":"https://api.github.com/users/cenotaph","avatar_url":"https://avatars.githubusercontent.com/u/785941?"},"repo":{"id":28541151,"name":"cenotaph/version","url":"https://api.github.com/repos/cenotaph/version"},"payload":{"push_id":536866311,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2820e35af780572ab75769ed0a14a8c2b730c4b9","before":"80a8801f1c39c2f4563f7024c223046760f2d9e0","commits":[{"sha":"2820e35af780572ab75769ed0a14a8c2b730c4b9","author":{"email":"a602e216eb44a3ac5e096036eeaaef6bb9159677@cenotaph.org","name":"John W. Fail"},"message":"back to assets in pathname","distinct":true,"url":"https://api.github.com/repos/cenotaph/version/commits/2820e35af780572ab75769ed0a14a8c2b730c4b9"}]},"public":true,"created_at":"2015-01-01T15:11:07Z"} +,{"id":"2489656164","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":536866312,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b4fcf2f1ddd7c6899cec2f91e82080a901dde475","before":"19bc34d6abecb35447a9c4ac8e2a73dbeb57d6ec","commits":[{"sha":"b4fcf2f1ddd7c6899cec2f91e82080a901dde475","author":{"email":"59bd0a3ff43b32849b319e645d4798d8a5d1e889@reclaimhosting.com","name":"Reclaim Hosting"},"message":"Recent Changes","distinct":true,"url":"https://api.github.com/repos/reclaimhosting/federated-wiki/commits/b4fcf2f1ddd7c6899cec2f91e82080a901dde475"}]},"public":true,"created_at":"2015-01-01T15:11:07Z","org":{"id":6590468,"login":"reclaimhosting","gravatar_id":"","url":"https://api.github.com/orgs/reclaimhosting","avatar_url":"https://avatars.githubusercontent.com/u/6590468?"}} +,{"id":"2489656165","type":"WatchEvent","actor":{"id":349828,"login":"ARoiD","gravatar_id":"","url":"https://api.github.com/users/ARoiD","avatar_url":"https://avatars.githubusercontent.com/u/349828?"},"repo":{"id":14806709,"name":"cernekee/ics-openconnect","url":"https://api.github.com/repos/cernekee/ics-openconnect"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:11:07Z"} +,{"id":"2489656166","type":"PushEvent","actor":{"id":4454447,"login":"Cabris","gravatar_id":"","url":"https://api.github.com/users/Cabris","avatar_url":"https://avatars.githubusercontent.com/u/4454447?"},"repo":{"id":15488341,"name":"Cabris/unity_lab","url":"https://api.github.com/repos/Cabris/unity_lab"},"payload":{"push_id":536866313,"size":1,"distinct_size":1,"ref":"refs/heads/remove-network","head":"fcf3111997c166cb8bc6c8debe4eaea7632be96f","before":"e0c9c4b73f27d925cd078240238b1993eefed983","commits":[{"sha":"fcf3111997c166cb8bc6c8debe4eaea7632be96f","author":{"email":"fb5847516252d69ec6ddee826dbd74d8af311980@gmail.com","name":"Cabris"},"message":"1d motion","distinct":true,"url":"https://api.github.com/repos/Cabris/unity_lab/commits/fcf3111997c166cb8bc6c8debe4eaea7632be96f"}]},"public":true,"created_at":"2015-01-01T15:11:08Z"} +,{"id":"2489656167","type":"IssueCommentEvent","actor":{"id":10364656,"login":"lorenzobjero","gravatar_id":"","url":"https://api.github.com/users/lorenzobjero","avatar_url":"https://avatars.githubusercontent.com/u/10364656?"},"repo":{"id":28688588,"name":"lorenzobjero/hello-world","url":"https://api.github.com/repos/lorenzobjero/hello-world"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/lorenzobjero/hello-world/issues/1","labels_url":"https://api.github.com/repos/lorenzobjero/hello-world/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/lorenzobjero/hello-world/issues/1/comments","events_url":"https://api.github.com/repos/lorenzobjero/hello-world/issues/1/events","html_url":"https://github.com/lorenzobjero/hello-world/issues/1","id":53221478,"number":1,"title":"Finish README","user":{"login":"lorenzobjero","id":10364656,"avatar_url":"https://avatars.githubusercontent.com/u/10364656?v=3","gravatar_id":"","url":"https://api.github.com/users/lorenzobjero","html_url":"https://github.com/lorenzobjero","followers_url":"https://api.github.com/users/lorenzobjero/followers","following_url":"https://api.github.com/users/lorenzobjero/following{/other_user}","gists_url":"https://api.github.com/users/lorenzobjero/gists{/gist_id}","starred_url":"https://api.github.com/users/lorenzobjero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lorenzobjero/subscriptions","organizations_url":"https://api.github.com/users/lorenzobjero/orgs","repos_url":"https://api.github.com/users/lorenzobjero/repos","events_url":"https://api.github.com/users/lorenzobjero/events{/privacy}","received_events_url":"https://api.github.com/users/lorenzobjero/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T15:07:20Z","updated_at":"2015-01-01T15:11:08Z","closed_at":"2015-01-01T15:11:08Z","body":"Provide description and full understanding of the repository"},"comment":{"url":"https://api.github.com/repos/lorenzobjero/hello-world/issues/comments/68488730","html_url":"https://github.com/lorenzobjero/hello-world/issues/1#issuecomment-68488730","issue_url":"https://api.github.com/repos/lorenzobjero/hello-world/issues/1","id":68488730,"user":{"login":"lorenzobjero","id":10364656,"avatar_url":"https://avatars.githubusercontent.com/u/10364656?v=3","gravatar_id":"","url":"https://api.github.com/users/lorenzobjero","html_url":"https://github.com/lorenzobjero","followers_url":"https://api.github.com/users/lorenzobjero/followers","following_url":"https://api.github.com/users/lorenzobjero/following{/other_user}","gists_url":"https://api.github.com/users/lorenzobjero/gists{/gist_id}","starred_url":"https://api.github.com/users/lorenzobjero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lorenzobjero/subscriptions","organizations_url":"https://api.github.com/users/lorenzobjero/orgs","repos_url":"https://api.github.com/users/lorenzobjero/repos","events_url":"https://api.github.com/users/lorenzobjero/events{/privacy}","received_events_url":"https://api.github.com/users/lorenzobjero/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:11:08Z","updated_at":"2015-01-01T15:11:08Z","body":"Finally finished"}},"public":true,"created_at":"2015-01-01T15:11:10Z"} +,{"id":"2489656168","type":"IssuesEvent","actor":{"id":10364656,"login":"lorenzobjero","gravatar_id":"","url":"https://api.github.com/users/lorenzobjero","avatar_url":"https://avatars.githubusercontent.com/u/10364656?"},"repo":{"id":28688588,"name":"lorenzobjero/hello-world","url":"https://api.github.com/repos/lorenzobjero/hello-world"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/lorenzobjero/hello-world/issues/1","labels_url":"https://api.github.com/repos/lorenzobjero/hello-world/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/lorenzobjero/hello-world/issues/1/comments","events_url":"https://api.github.com/repos/lorenzobjero/hello-world/issues/1/events","html_url":"https://github.com/lorenzobjero/hello-world/issues/1","id":53221478,"number":1,"title":"Finish README","user":{"login":"lorenzobjero","id":10364656,"avatar_url":"https://avatars.githubusercontent.com/u/10364656?v=3","gravatar_id":"","url":"https://api.github.com/users/lorenzobjero","html_url":"https://github.com/lorenzobjero","followers_url":"https://api.github.com/users/lorenzobjero/followers","following_url":"https://api.github.com/users/lorenzobjero/following{/other_user}","gists_url":"https://api.github.com/users/lorenzobjero/gists{/gist_id}","starred_url":"https://api.github.com/users/lorenzobjero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lorenzobjero/subscriptions","organizations_url":"https://api.github.com/users/lorenzobjero/orgs","repos_url":"https://api.github.com/users/lorenzobjero/repos","events_url":"https://api.github.com/users/lorenzobjero/events{/privacy}","received_events_url":"https://api.github.com/users/lorenzobjero/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T15:07:20Z","updated_at":"2015-01-01T15:11:08Z","closed_at":"2015-01-01T15:11:08Z","body":"Provide description and full understanding of the repository"}},"public":true,"created_at":"2015-01-01T15:11:10Z"} +,{"id":"2489656170","type":"CreateEvent","actor":{"id":1303626,"login":"lunarok","gravatar_id":"","url":"https://api.github.com/users/lunarok","avatar_url":"https://avatars.githubusercontent.com/u/1303626?"},"repo":{"id":28688793,"name":"lunarok/jeedom_hijrah","url":"https://api.github.com/repos/lunarok/jeedom_hijrah"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"jeedom_hijrah","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:11:10Z"} +,{"id":"2489656169","type":"IssueCommentEvent","actor":{"id":95194,"login":"mausch","gravatar_id":"","url":"https://api.github.com/users/mausch","avatar_url":"https://avatars.githubusercontent.com/u/95194?"},"repo":{"id":545751,"name":"mausch/SolrNet","url":"https://api.github.com/repos/mausch/SolrNet"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/mausch/SolrNet/issues/175","labels_url":"https://api.github.com/repos/mausch/SolrNet/issues/175/labels{/name}","comments_url":"https://api.github.com/repos/mausch/SolrNet/issues/175/comments","events_url":"https://api.github.com/repos/mausch/SolrNet/issues/175/events","html_url":"https://github.com/mausch/SolrNet/issues/175","id":53182317,"number":175,"title":"Upgrade to modern unit test framework","user":{"login":"AlexeyKozhemiakin","id":1774537,"avatar_url":"https://avatars.githubusercontent.com/u/1774537?v=3","gravatar_id":"","url":"https://api.github.com/users/AlexeyKozhemiakin","html_url":"https://github.com/AlexeyKozhemiakin","followers_url":"https://api.github.com/users/AlexeyKozhemiakin/followers","following_url":"https://api.github.com/users/AlexeyKozhemiakin/following{/other_user}","gists_url":"https://api.github.com/users/AlexeyKozhemiakin/gists{/gist_id}","starred_url":"https://api.github.com/users/AlexeyKozhemiakin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AlexeyKozhemiakin/subscriptions","organizations_url":"https://api.github.com/users/AlexeyKozhemiakin/orgs","repos_url":"https://api.github.com/users/AlexeyKozhemiakin/repos","events_url":"https://api.github.com/users/AlexeyKozhemiakin/events{/privacy}","received_events_url":"https://api.github.com/users/AlexeyKozhemiakin/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":5,"created_at":"2014-12-31T12:43:19Z","updated_at":"2015-01-01T15:11:08Z","closed_at":null,"body":"(discussion moved from twitter https://twitter.com/AlexKozhemiakin/status/550071605888835584) \r\n\r\nMbUnit\\Gallio are quite outdated and not supported by modern IDEs, which makes the process of preparing new contributions rather difficult(annoying). The ultimate goal of this issues - is to facilitate this process in terms of easy test running.\r\n\r\nLet's agree on strategy where to migrate. I spent (just) 30 minutes to migrate 600+ tests to NUnit (90% was AutoReplace) which had a huge immediate result - I can run and debug tests in VS2012\\2013.\r\n\r\nSuch fast migration suggests that tests use-cases are quite straightforward and can be migrated to any test framework relatively easy. \r\n\r\nI dont have a bias towards NUnit, anything that is up-todate and requires minimal efforts to migrate is fine. XUnit? ^)\r\n\r\n@mausch any thoughts?"},"comment":{"url":"https://api.github.com/repos/mausch/SolrNet/issues/comments/68488729","html_url":"https://github.com/mausch/SolrNet/issues/175#issuecomment-68488729","issue_url":"https://api.github.com/repos/mausch/SolrNet/issues/175","id":68488729,"user":{"login":"mausch","id":95194,"avatar_url":"https://avatars.githubusercontent.com/u/95194?v=3","gravatar_id":"","url":"https://api.github.com/users/mausch","html_url":"https://github.com/mausch","followers_url":"https://api.github.com/users/mausch/followers","following_url":"https://api.github.com/users/mausch/following{/other_user}","gists_url":"https://api.github.com/users/mausch/gists{/gist_id}","starred_url":"https://api.github.com/users/mausch/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mausch/subscriptions","organizations_url":"https://api.github.com/users/mausch/orgs","repos_url":"https://api.github.com/users/mausch/repos","events_url":"https://api.github.com/users/mausch/events{/privacy}","received_events_url":"https://api.github.com/users/mausch/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:11:08Z","updated_at":"2015-01-01T15:11:08Z","body":"Just a few hours ago I answered a question on Stackoverflow about [how broken Xunit and the R# test runner is](http://stackoverflow.com/questions/27726058/passing-discriminated-unions-to-inlinedata-attributes). \r\nJust a couple of weeks ago I upgraded to ReSharper 9 at work and couldn't run MSpec tests any more.\r\nI will not make this mistake again as long as I have a say about the matter. This is a waste of everyone's time and not the way to go.\r\n\r\nAbout https://www.nuget.org/packages/Solr.NET/0.4.0.2004-alpha I'd say it's more likely that this person wanted a more recent build than the one currently published on nuget.org but we're really both guessing, let's not do that.\r\n\r\nMaking things \"easy\" for new contributions is terribly subjective. Someone could say that me trying to enforce immutability now is making things harder. Or that using FAKE for the build makes it harder for people to add things there because they don't know F#. Dumbing things down to the lowest common denominator doesn't work long-term. Instead, we have to keep raising the bar. And NUnit, being utterly broken (the code you show is a tiny sample of this), is a *downgrade* from MbUnit.\r\n\r\nIf something is unclear about running tests or anything else, then we should simply document it. And in fact, if the project looks abandoned it's because it needs documentation, but nobody ever wants to contribute that, and this being just a few markdown files on github it's as easy as it can be. I'm even considering now to enforce that anyone contributing some code should not only contribute also the corresponding tests but the documentation as well. But again this might make things \"harder\" for new contributors (see my point now?).\r\n\r\nCommitting the library binary or not is also [up for discussion](https://twitter.com/jeffreypalermo/status/534907671049404418), not necessarily 100% a bad thing. But I agree that updating the nuget package is important, which leads again to the issue of documentation.\r\n"}},"public":true,"created_at":"2015-01-01T15:11:10Z"} +,{"id":"2489656173","type":"DeleteEvent","actor":{"id":8438680,"login":"Sheleng","gravatar_id":"","url":"https://api.github.com/users/Sheleng","avatar_url":"https://avatars.githubusercontent.com/u/8438680?"},"repo":{"id":28622930,"name":"Sheleng/sheleng.github.io","url":"https://api.github.com/repos/Sheleng/sheleng.github.io"},"payload":{"ref":"gh-pages","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:11:10Z"} +,{"id":"2489656174","type":"CreateEvent","actor":{"id":1163662,"login":"robertpanzer","gravatar_id":"","url":"https://api.github.com/users/robertpanzer","avatar_url":"https://avatars.githubusercontent.com/u/1163662?"},"repo":{"id":27998582,"name":"robertpanzer/asciidoctorj","url":"https://api.github.com/repos/robertpanzer/asciidoctorj"},"payload":{"ref":"JavaConverter","ref_type":"branch","master_branch":"master","description":"Java bindings for Asciidoctor. Asciidoctor on the JVM!","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:11:10Z"} +,{"id":"2489656176","type":"PullRequestEvent","actor":{"id":10322602,"login":"ejaasaari","gravatar_id":"","url":"https://api.github.com/users/ejaasaari","avatar_url":"https://avatars.githubusercontent.com/u/10322602?"},"repo":{"id":6336224,"name":"iloveponies/one-function-to-rule-them-all","url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all"},"payload":{"action":"opened","number":198,"pull_request":{"url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/pulls/198","id":26743851,"html_url":"https://github.com/iloveponies/one-function-to-rule-them-all/pull/198","diff_url":"https://github.com/iloveponies/one-function-to-rule-them-all/pull/198.diff","patch_url":"https://github.com/iloveponies/one-function-to-rule-them-all/pull/198.patch","issue_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/issues/198","number":198,"state":"open","locked":false,"title":"Submit one-function","user":{"login":"ejaasaari","id":10322602,"avatar_url":"https://avatars.githubusercontent.com/u/10322602?v=3","gravatar_id":"","url":"https://api.github.com/users/ejaasaari","html_url":"https://github.com/ejaasaari","followers_url":"https://api.github.com/users/ejaasaari/followers","following_url":"https://api.github.com/users/ejaasaari/following{/other_user}","gists_url":"https://api.github.com/users/ejaasaari/gists{/gist_id}","starred_url":"https://api.github.com/users/ejaasaari/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ejaasaari/subscriptions","organizations_url":"https://api.github.com/users/ejaasaari/orgs","repos_url":"https://api.github.com/users/ejaasaari/repos","events_url":"https://api.github.com/users/ejaasaari/events{/privacy}","received_events_url":"https://api.github.com/users/ejaasaari/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:11:10Z","updated_at":"2015-01-01T15:11:10Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/pulls/198/commits","review_comments_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/pulls/198/comments","review_comment_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/pulls/comments/{number}","comments_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/issues/198/comments","statuses_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/statuses/c7e55cbaf5218b3d7d1d9c990e74385b2eebbee4","head":{"label":"ejaasaari:master","ref":"master","sha":"c7e55cbaf5218b3d7d1d9c990e74385b2eebbee4","user":{"login":"ejaasaari","id":10322602,"avatar_url":"https://avatars.githubusercontent.com/u/10322602?v=3","gravatar_id":"","url":"https://api.github.com/users/ejaasaari","html_url":"https://github.com/ejaasaari","followers_url":"https://api.github.com/users/ejaasaari/followers","following_url":"https://api.github.com/users/ejaasaari/following{/other_user}","gists_url":"https://api.github.com/users/ejaasaari/gists{/gist_id}","starred_url":"https://api.github.com/users/ejaasaari/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ejaasaari/subscriptions","organizations_url":"https://api.github.com/users/ejaasaari/orgs","repos_url":"https://api.github.com/users/ejaasaari/repos","events_url":"https://api.github.com/users/ejaasaari/events{/privacy}","received_events_url":"https://api.github.com/users/ejaasaari/received_events","type":"User","site_admin":false},"repo":{"id":28686194,"name":"one-function-to-rule-them-all","full_name":"ejaasaari/one-function-to-rule-them-all","owner":{"login":"ejaasaari","id":10322602,"avatar_url":"https://avatars.githubusercontent.com/u/10322602?v=3","gravatar_id":"","url":"https://api.github.com/users/ejaasaari","html_url":"https://github.com/ejaasaari","followers_url":"https://api.github.com/users/ejaasaari/followers","following_url":"https://api.github.com/users/ejaasaari/following{/other_user}","gists_url":"https://api.github.com/users/ejaasaari/gists{/gist_id}","starred_url":"https://api.github.com/users/ejaasaari/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ejaasaari/subscriptions","organizations_url":"https://api.github.com/users/ejaasaari/orgs","repos_url":"https://api.github.com/users/ejaasaari/repos","events_url":"https://api.github.com/users/ejaasaari/events{/privacy}","received_events_url":"https://api.github.com/users/ejaasaari/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ejaasaari/one-function-to-rule-them-all","description":"","fork":true,"url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all","forks_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/forks","keys_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/teams","hooks_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/hooks","issue_events_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/issues/events{/number}","events_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/events","assignees_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/assignees{/user}","branches_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/branches{/branch}","tags_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/tags","blobs_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/git/refs{/sha}","trees_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/statuses/{sha}","languages_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/languages","stargazers_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/stargazers","contributors_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/contributors","subscribers_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/subscribers","subscription_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/subscription","commits_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/commits{/sha}","git_commits_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/git/commits{/sha}","comments_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/comments{/number}","issue_comment_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/issues/comments/{number}","contents_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/contents/{+path}","compare_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/merges","archive_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/downloads","issues_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/issues{/number}","pulls_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/pulls{/number}","milestones_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/milestones{/number}","notifications_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/labels{/name}","releases_url":"https://api.github.com/repos/ejaasaari/one-function-to-rule-them-all/releases{/id}","created_at":"2015-01-01T12:29:20Z","updated_at":"2015-01-01T15:10:31Z","pushed_at":"2015-01-01T15:10:30Z","git_url":"git://github.com/ejaasaari/one-function-to-rule-them-all.git","ssh_url":"git@github.com:ejaasaari/one-function-to-rule-them-all.git","clone_url":"https://github.com/ejaasaari/one-function-to-rule-them-all.git","svn_url":"https://github.com/ejaasaari/one-function-to-rule-them-all","homepage":null,"size":313,"stargazers_count":0,"watchers_count":0,"language":"Clojure","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":"iloveponies:master","ref":"master","sha":"b3e4dc5c12acf5474cf2f119aa73cb96b2bfb5c9","user":{"login":"iloveponies","id":1577007,"avatar_url":"https://avatars.githubusercontent.com/u/1577007?v=3","gravatar_id":"","url":"https://api.github.com/users/iloveponies","html_url":"https://github.com/iloveponies","followers_url":"https://api.github.com/users/iloveponies/followers","following_url":"https://api.github.com/users/iloveponies/following{/other_user}","gists_url":"https://api.github.com/users/iloveponies/gists{/gist_id}","starred_url":"https://api.github.com/users/iloveponies/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iloveponies/subscriptions","organizations_url":"https://api.github.com/users/iloveponies/orgs","repos_url":"https://api.github.com/users/iloveponies/repos","events_url":"https://api.github.com/users/iloveponies/events{/privacy}","received_events_url":"https://api.github.com/users/iloveponies/received_events","type":"Organization","site_admin":false},"repo":{"id":6336224,"name":"one-function-to-rule-them-all","full_name":"iloveponies/one-function-to-rule-them-all","owner":{"login":"iloveponies","id":1577007,"avatar_url":"https://avatars.githubusercontent.com/u/1577007?v=3","gravatar_id":"","url":"https://api.github.com/users/iloveponies","html_url":"https://github.com/iloveponies","followers_url":"https://api.github.com/users/iloveponies/followers","following_url":"https://api.github.com/users/iloveponies/following{/other_user}","gists_url":"https://api.github.com/users/iloveponies/gists{/gist_id}","starred_url":"https://api.github.com/users/iloveponies/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iloveponies/subscriptions","organizations_url":"https://api.github.com/users/iloveponies/orgs","repos_url":"https://api.github.com/users/iloveponies/repos","events_url":"https://api.github.com/users/iloveponies/events{/privacy}","received_events_url":"https://api.github.com/users/iloveponies/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/iloveponies/one-function-to-rule-them-all","description":"","fork":false,"url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all","forks_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/forks","keys_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/teams","hooks_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/hooks","issue_events_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/issues/events{/number}","events_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/events","assignees_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/assignees{/user}","branches_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/branches{/branch}","tags_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/tags","blobs_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/git/refs{/sha}","trees_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/statuses/{sha}","languages_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/languages","stargazers_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/stargazers","contributors_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/contributors","subscribers_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/subscribers","subscription_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/subscription","commits_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/commits{/sha}","git_commits_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/git/commits{/sha}","comments_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/comments{/number}","issue_comment_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/issues/comments/{number}","contents_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/contents/{+path}","compare_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/merges","archive_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/downloads","issues_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/issues{/number}","pulls_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/pulls{/number}","milestones_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/milestones{/number}","notifications_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/labels{/name}","releases_url":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/releases{/id}","created_at":"2012-10-22T14:17:05Z","updated_at":"2014-12-13T11:49:20Z","pushed_at":"2013-11-11T09:51:51Z","git_url":"git://github.com/iloveponies/one-function-to-rule-them-all.git","ssh_url":"git@github.com:iloveponies/one-function-to-rule-them-all.git","clone_url":"https://github.com/iloveponies/one-function-to-rule-them-all.git","svn_url":"https://github.com/iloveponies/one-function-to-rule-them-all","homepage":null,"size":313,"stargazers_count":3,"watchers_count":3,"language":"Clojure","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":240,"mirror_url":null,"open_issues_count":115,"forks":240,"open_issues":115,"watchers":3,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/pulls/198"},"html":{"href":"https://github.com/iloveponies/one-function-to-rule-them-all/pull/198"},"issue":{"href":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/issues/198"},"comments":{"href":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/issues/198/comments"},"review_comments":{"href":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/pulls/198/comments"},"review_comment":{"href":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/pulls/198/commits"},"statuses":{"href":"https://api.github.com/repos/iloveponies/one-function-to-rule-them-all/statuses/c7e55cbaf5218b3d7d1d9c990e74385b2eebbee4"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":42,"deletions":19,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:11:10Z","org":{"id":1577007,"login":"iloveponies","gravatar_id":"","url":"https://api.github.com/orgs/iloveponies","avatar_url":"https://avatars.githubusercontent.com/u/1577007?"}} +,{"id":"2489656178","type":"PushEvent","actor":{"id":4438295,"login":"ezzye","gravatar_id":"","url":"https://api.github.com/users/ezzye","avatar_url":"https://avatars.githubusercontent.com/u/4438295?"},"repo":{"id":28522532,"name":"ezzye/mean_example1","url":"https://api.github.com/repos/ezzye/mean_example1"},"payload":{"push_id":536866315,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"88ccd8013c456389e48dcb34a659d8af733912bd","before":"4839e287abba974af8fa625460a25e57fe060915","commits":[{"sha":"88ccd8013c456389e48dcb34a659d8af733912bd","author":{"email":"60004a400d96d28036d21c59f517f0e3e3a6150f@gmail.com","name":"ezzye"},"message":"move static out of server","distinct":true,"url":"https://api.github.com/repos/ezzye/mean_example1/commits/88ccd8013c456389e48dcb34a659d8af733912bd"}]},"public":true,"created_at":"2015-01-01T15:11:10Z"} +,{"id":"2489656180","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":536866317,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"448c4034b57d61419f916bbe5b7bff7c302f1600","before":"3b3ee511299e853c7ff26a549d96a408a3810711","commits":[{"sha":"448c4034b57d61419f916bbe5b7bff7c302f1600","author":{"email":"b433cf2733348698e7263ccfc3f315729d23acc5@rocketnews.de","name":"Benjamin Borbe"},"message":"improve","distinct":true,"url":"https://api.github.com/repos/bborbe/prototype/commits/448c4034b57d61419f916bbe5b7bff7c302f1600"}]},"public":true,"created_at":"2015-01-01T15:11:10Z"} +,{"id":"2489656183","type":"PushEvent","actor":{"id":1809093,"login":"florpor","gravatar_id":"","url":"https://api.github.com/users/florpor","avatar_url":"https://avatars.githubusercontent.com/u/1809093?"},"repo":{"id":7504595,"name":"niryariv/opentaba-server","url":"https://api.github.com/repos/niryariv/opentaba-server"},"payload":{"push_id":536866320,"size":1,"distinct_size":1,"ref":"refs/heads/social_poster","head":"17cd2330b1b2152cfc3dcd487e66f80ca86f7c8e","before":"4140562aa05829febb89c525f934222b2611e5f7","commits":[{"sha":"17cd2330b1b2152cfc3dcd487e66f80ca86f7c8e","author":{"email":"d7f0e72e1f27c5895e1d0d0f8f982320809d9337@gmail.com","name":"florpor"},"message":"POSTER_SERVICE_URL shouldn't have the /post part, then we can properly query /status","distinct":true,"url":"https://api.github.com/repos/niryariv/opentaba-server/commits/17cd2330b1b2152cfc3dcd487e66f80ca86f7c8e"}]},"public":true,"created_at":"2015-01-01T15:11:10Z"} +,{"id":"2489656184","type":"PushEvent","actor":{"id":6548530,"login":"PrusekC","gravatar_id":"","url":"https://api.github.com/users/PrusekC","avatar_url":"https://avatars.githubusercontent.com/u/6548530?"},"repo":{"id":27317504,"name":"PrusekC/PsychoPath","url":"https://api.github.com/repos/PrusekC/PsychoPath"},"payload":{"push_id":536866321,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1273304c6c27107be06a70bd9566f534d8c15926","before":"f4fd07b94b7146ad1d1e2a88958817043138e17e","commits":[{"sha":"1273304c6c27107be06a70bd9566f534d8c15926","author":{"email":"6d6fb1f00302601e814bce378d67c50f6da87e0e@gmail.com","name":"Patryk Cysarz"},"message":"Weapons can now be loaded from config file","distinct":true,"url":"https://api.github.com/repos/PrusekC/PsychoPath/commits/1273304c6c27107be06a70bd9566f534d8c15926"}]},"public":true,"created_at":"2015-01-01T15:11:10Z"} +,{"id":"2489656185","type":"WatchEvent","actor":{"id":7189950,"login":"wuhp","gravatar_id":"","url":"https://api.github.com/users/wuhp","avatar_url":"https://avatars.githubusercontent.com/u/7189950?"},"repo":{"id":21540759,"name":"avelino/awesome-go","url":"https://api.github.com/repos/avelino/awesome-go"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:11:10Z"} +,{"id":"2489656187","type":"PushEvent","actor":{"id":1163662,"login":"robertpanzer","gravatar_id":"","url":"https://api.github.com/users/robertpanzer","avatar_url":"https://avatars.githubusercontent.com/u/1163662?"},"repo":{"id":27998582,"name":"robertpanzer/asciidoctorj","url":"https://api.github.com/repos/robertpanzer/asciidoctorj"},"payload":{"push_id":536866322,"size":2,"distinct_size":0,"ref":"refs/heads/converters","head":"6d954d5e9ac6621ca753696420f3fe0fc85ca996","before":"a0cb12a4a55e7a97674b42c7f661bf3a7e5bc15b","commits":[{"sha":"0f5fed4ba37177e9dafd1d4ca3a285dedb0c76ff","author":{"email":"e30faeaaa8708c7906d2c994d001adac36ba78de@me.com","name":"Robert Panzer"},"message":"Fix ConverterRegistry.converters()\nAdditionally:\n- added Javadoc to Converter\n- Correctly reflect that second argument to Converter.initialize is optional","distinct":false,"url":"https://api.github.com/repos/robertpanzer/asciidoctorj/commits/0f5fed4ba37177e9dafd1d4ca3a285dedb0c76ff"},{"sha":"6d954d5e9ac6621ca753696420f3fe0fc85ca996","author":{"email":"0789f574d8e9005dfc3db29e697611064357461b@gmail.com","name":"Alex Soto"},"message":"Merge pull request #256 from robertpanzer/FixConverterRegistryConverters\n\nFix ConverterRegistry.converters()","distinct":false,"url":"https://api.github.com/repos/robertpanzer/asciidoctorj/commits/6d954d5e9ac6621ca753696420f3fe0fc85ca996"}]},"public":true,"created_at":"2015-01-01T15:11:10Z"} +,{"id":"2489656191","type":"WatchEvent","actor":{"id":831962,"login":"bgruszka","gravatar_id":"","url":"https://api.github.com/users/bgruszka","avatar_url":"https://avatars.githubusercontent.com/u/831962?"},"repo":{"id":11221326,"name":"SamyPesse/tv.js","url":"https://api.github.com/repos/SamyPesse/tv.js"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:11:10Z"} +,{"id":"2489656194","type":"PushEvent","actor":{"id":6023509,"login":"trommler","gravatar_id":"","url":"https://api.github.com/users/trommler","avatar_url":"https://avatars.githubusercontent.com/u/6023509?"},"repo":{"id":14661741,"name":"trommler/ghc","url":"https://api.github.com/repos/trommler/ghc"},"payload":{"push_id":536866323,"size":1,"distinct_size":1,"ref":"refs/heads/native","head":"96bf149eb8c7b9692fe2ab9e5b5b1abda78b061a","before":"87678ab84989e6254a69e64025f53037187fe103","commits":[{"sha":"96bf149eb8c7b9692fe2ab9e5b5b1abda78b061a","author":{"email":"98c88225be7d8ecbeada7d12e193acfb4ffef32e@acm.org","name":"Peter Trommler"},"message":"fix coerceFP2Int on 64 bit","distinct":true,"url":"https://api.github.com/repos/trommler/ghc/commits/96bf149eb8c7b9692fe2ab9e5b5b1abda78b061a"}]},"public":true,"created_at":"2015-01-01T15:11:10Z"} +,{"id":"2489656195","type":"PushEvent","actor":{"id":4627837,"login":"jessemillar","gravatar_id":"","url":"https://api.github.com/users/jessemillar","avatar_url":"https://avatars.githubusercontent.com/u/4627837?"},"repo":{"id":18088608,"name":"jessemillar/Yummy-GBA4iOS","url":"https://api.github.com/repos/jessemillar/Yummy-GBA4iOS"},"payload":{"push_id":536866324,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ce8b5d54ee040f049fe1c642c63fc961a094fcee","before":"91adbf0951755e8144cc0b131e791df79166e3a5","commits":[{"sha":"ce8b5d54ee040f049fe1c642c63fc961a094fcee","author":{"email":"0ba40b71986250aad0903c7ebcfd76a410af35fb@gmail.com","name":"Jesse Millar"},"message":"Update LICENSE.md","distinct":true,"url":"https://api.github.com/repos/jessemillar/Yummy-GBA4iOS/commits/ce8b5d54ee040f049fe1c642c63fc961a094fcee"}]},"public":true,"created_at":"2015-01-01T15:11:11Z"} +,{"id":"2489656196","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":3451238,"name":"yiisoft/yii","url":"https://api.github.com/repos/yiisoft/yii"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/yiisoft/yii/issues/3686","labels_url":"https://api.github.com/repos/yiisoft/yii/issues/3686/labels{/name}","comments_url":"https://api.github.com/repos/yiisoft/yii/issues/3686/comments","events_url":"https://api.github.com/repos/yiisoft/yii/issues/3686/events","html_url":"https://github.com/yiisoft/yii/issues/3686","id":53185746,"number":3686,"title":"Remove inline style in CForm.php","user":{"login":"alaabadran","id":1215589,"avatar_url":"https://avatars.githubusercontent.com/u/1215589?v=3","gravatar_id":"","url":"https://api.github.com/users/alaabadran","html_url":"https://github.com/alaabadran","followers_url":"https://api.github.com/users/alaabadran/followers","following_url":"https://api.github.com/users/alaabadran/following{/other_user}","gists_url":"https://api.github.com/users/alaabadran/gists{/gist_id}","starred_url":"https://api.github.com/users/alaabadran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alaabadran/subscriptions","organizations_url":"https://api.github.com/users/alaabadran/orgs","repos_url":"https://api.github.com/users/alaabadran/repos","events_url":"https://api.github.com/users/alaabadran/events{/privacy}","received_events_url":"https://api.github.com/users/alaabadran/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/yiisoft/yii/labels/severity%3Aminor","name":"severity:minor","color":"444444"},{"url":"https://api.github.com/repos/yiisoft/yii/labels/type%3Aenhancement","name":"type:enhancement","color":"d7e102"}],"state":"closed","locked":false,"assignee":{"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},"milestone":{"url":"https://api.github.com/repos/yiisoft/yii/milestones/9","labels_url":"https://api.github.com/repos/yiisoft/yii/milestones/9/labels","id":399649,"number":9,"title":"1.1.17","description":"","creator":{"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},"open_issues":170,"closed_issues":2,"state":"open","created_at":"2013-08-12T10:14:01Z","updated_at":"2015-01-01T15:10:33Z","due_on":null,"closed_at":null},"comments":5,"created_at":"2014-12-31T14:19:15Z","updated_at":"2015-01-01T15:11:10Z","closed_at":"2015-01-01T15:10:33Z","body":"Using \r\n` style=\"visibility:hidden\" ` in both\r\nrenderElement() and renderBegin() is wrong. \r\nThey should be replaced at least with ` style=\"display:none\"` \r\nor removed completely (recommended)"},"comment":{"url":"https://api.github.com/repos/yiisoft/yii/issues/comments/68488733","html_url":"https://github.com/yiisoft/yii/issues/3686#issuecomment-68488733","issue_url":"https://api.github.com/repos/yiisoft/yii/issues/3686","id":68488733,"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:11:10Z","updated_at":"2015-01-01T15:11:10Z","body":"For reference: http://stackoverflow.com/questions/5439078/why-is-an-input-tag-not-allowed-directly-within-a-form-tag"}},"public":true,"created_at":"2015-01-01T15:11:11Z","org":{"id":993323,"login":"yiisoft","gravatar_id":"","url":"https://api.github.com/orgs/yiisoft","avatar_url":"https://avatars.githubusercontent.com/u/993323?"}} +,{"id":"2489656197","type":"PushEvent","actor":{"id":1780689,"login":"TassLehoff","gravatar_id":"","url":"https://api.github.com/users/TassLehoff","avatar_url":"https://avatars.githubusercontent.com/u/1780689?"},"repo":{"id":21202472,"name":"TassLehoff/AGoT-OCTGN","url":"https://api.github.com/repos/TassLehoff/AGoT-OCTGN"},"payload":{"push_id":536866325,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d9179f83781515bbf82d2f0d3d1cd827fc22b1bb","before":"15637b963cf53b174c24323392d3dc8aa2274f73","commits":[{"sha":"d9179f83781515bbf82d2f0d3d1cd827fc22b1bb","author":{"email":"35529c8f9c2a4a7bec2e97cc5a25a23734305ea4@gmail.com","name":"TassLehoff"},"message":"Update","distinct":true,"url":"https://api.github.com/repos/TassLehoff/AGoT-OCTGN/commits/d9179f83781515bbf82d2f0d3d1cd827fc22b1bb"}]},"public":true,"created_at":"2015-01-01T15:11:11Z"} +,{"id":"2489656199","type":"WatchEvent","actor":{"id":7117097,"login":"alouanemed","gravatar_id":"","url":"https://api.github.com/users/alouanemed","avatar_url":"https://avatars.githubusercontent.com/u/7117097?"},"repo":{"id":6673802,"name":"24pullrequests/24pullrequests","url":"https://api.github.com/repos/24pullrequests/24pullrequests"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:11:11Z","org":{"id":7920922,"login":"24pullrequests","gravatar_id":"","url":"https://api.github.com/orgs/24pullrequests","avatar_url":"https://avatars.githubusercontent.com/u/7920922?"}} +,{"id":"2489656202","type":"ForkEvent","actor":{"id":7189950,"login":"wuhp","gravatar_id":"","url":"https://api.github.com/users/wuhp","avatar_url":"https://avatars.githubusercontent.com/u/7189950?"},"repo":{"id":21540759,"name":"avelino/awesome-go","url":"https://api.github.com/repos/avelino/awesome-go"},"payload":{"forkee":{"id":28688794,"name":"awesome-go","full_name":"wuhp/awesome-go","owner":{"login":"wuhp","id":7189950,"avatar_url":"https://avatars.githubusercontent.com/u/7189950?v=3","gravatar_id":"","url":"https://api.github.com/users/wuhp","html_url":"https://github.com/wuhp","followers_url":"https://api.github.com/users/wuhp/followers","following_url":"https://api.github.com/users/wuhp/following{/other_user}","gists_url":"https://api.github.com/users/wuhp/gists{/gist_id}","starred_url":"https://api.github.com/users/wuhp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wuhp/subscriptions","organizations_url":"https://api.github.com/users/wuhp/orgs","repos_url":"https://api.github.com/users/wuhp/repos","events_url":"https://api.github.com/users/wuhp/events{/privacy}","received_events_url":"https://api.github.com/users/wuhp/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/wuhp/awesome-go","description":"A curated list of awesome Go frameworks, libraries and software","fork":true,"url":"https://api.github.com/repos/wuhp/awesome-go","forks_url":"https://api.github.com/repos/wuhp/awesome-go/forks","keys_url":"https://api.github.com/repos/wuhp/awesome-go/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wuhp/awesome-go/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wuhp/awesome-go/teams","hooks_url":"https://api.github.com/repos/wuhp/awesome-go/hooks","issue_events_url":"https://api.github.com/repos/wuhp/awesome-go/issues/events{/number}","events_url":"https://api.github.com/repos/wuhp/awesome-go/events","assignees_url":"https://api.github.com/repos/wuhp/awesome-go/assignees{/user}","branches_url":"https://api.github.com/repos/wuhp/awesome-go/branches{/branch}","tags_url":"https://api.github.com/repos/wuhp/awesome-go/tags","blobs_url":"https://api.github.com/repos/wuhp/awesome-go/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wuhp/awesome-go/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wuhp/awesome-go/git/refs{/sha}","trees_url":"https://api.github.com/repos/wuhp/awesome-go/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wuhp/awesome-go/statuses/{sha}","languages_url":"https://api.github.com/repos/wuhp/awesome-go/languages","stargazers_url":"https://api.github.com/repos/wuhp/awesome-go/stargazers","contributors_url":"https://api.github.com/repos/wuhp/awesome-go/contributors","subscribers_url":"https://api.github.com/repos/wuhp/awesome-go/subscribers","subscription_url":"https://api.github.com/repos/wuhp/awesome-go/subscription","commits_url":"https://api.github.com/repos/wuhp/awesome-go/commits{/sha}","git_commits_url":"https://api.github.com/repos/wuhp/awesome-go/git/commits{/sha}","comments_url":"https://api.github.com/repos/wuhp/awesome-go/comments{/number}","issue_comment_url":"https://api.github.com/repos/wuhp/awesome-go/issues/comments/{number}","contents_url":"https://api.github.com/repos/wuhp/awesome-go/contents/{+path}","compare_url":"https://api.github.com/repos/wuhp/awesome-go/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wuhp/awesome-go/merges","archive_url":"https://api.github.com/repos/wuhp/awesome-go/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wuhp/awesome-go/downloads","issues_url":"https://api.github.com/repos/wuhp/awesome-go/issues{/number}","pulls_url":"https://api.github.com/repos/wuhp/awesome-go/pulls{/number}","milestones_url":"https://api.github.com/repos/wuhp/awesome-go/milestones{/number}","notifications_url":"https://api.github.com/repos/wuhp/awesome-go/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wuhp/awesome-go/labels{/name}","releases_url":"https://api.github.com/repos/wuhp/awesome-go/releases{/id}","created_at":"2015-01-01T15:11:11Z","updated_at":"2015-01-01T15:11:10Z","pushed_at":"2014-12-30T19:30:49Z","git_url":"git://github.com/wuhp/awesome-go.git","ssh_url":"git@github.com:wuhp/awesome-go.git","clone_url":"https://github.com/wuhp/awesome-go.git","svn_url":"https://github.com/wuhp/awesome-go","homepage":"http://awesome-go.com/","size":2000,"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:11:11Z"} +,{"id":"2489656206","type":"PushEvent","actor":{"id":3824082,"login":"lcyan","gravatar_id":"","url":"https://api.github.com/users/lcyan","avatar_url":"https://avatars.githubusercontent.com/u/3824082?"},"repo":{"id":27821925,"name":"lcyan/commonp","url":"https://api.github.com/repos/lcyan/commonp"},"payload":{"push_id":536866329,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fe4d0dfb9a5c40c01428c61d0f75ba516d7b0be8","before":"0b4e1913cc2c6ab3bc6d49688cb7c8e2b3810bd0","commits":[{"sha":"fe4d0dfb9a5c40c01428c61d0f75ba516d7b0be8","author":{"email":"e058ce6c476effe38cd81f253901bafcf8c1cf71@qq.com","name":"cherry"},"message":"添加git clone bare的场景.\n\nSigned-off-by: cherry <290236573@qq.com>","distinct":true,"url":"https://api.github.com/repos/lcyan/commonp/commits/fe4d0dfb9a5c40c01428c61d0f75ba516d7b0be8"}]},"public":true,"created_at":"2015-01-01T15:11:12Z"} +,{"id":"2489656207","type":"PushEvent","actor":{"id":186016,"login":"blurpy","gravatar_id":"","url":"https://api.github.com/users/blurpy","avatar_url":"https://avatars.githubusercontent.com/u/186016?"},"repo":{"id":27989930,"name":"blurpy/kouchat.net","url":"https://api.github.com/repos/blurpy/kouchat.net"},"payload":{"push_id":536866330,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"d917866dce5b2995f5babe84a0ee5409ff70e61e","before":"9b65c97adee1919187e6c68228e9ce2d299777c4","commits":[{"sha":"d917866dce5b2995f5babe84a0ee5409ff70e61e","author":{"email":"21684e15db8a017fa7488daf6780ffddcbc85c97@gmail.com","name":"Christian Ihle"},"message":"Trying to use root as baseurl, as all urls are wrong on the domain site","distinct":true,"url":"https://api.github.com/repos/blurpy/kouchat.net/commits/d917866dce5b2995f5babe84a0ee5409ff70e61e"}]},"public":true,"created_at":"2015-01-01T15:11:12Z"} +,{"id":"2489656209","type":"PushEvent","actor":{"id":3438489,"login":"pylerSM","gravatar_id":"","url":"https://api.github.com/users/pylerSM","avatar_url":"https://avatars.githubusercontent.com/u/3438489?"},"repo":{"id":28664344,"name":"pylerSM/XposedInstaller","url":"https://api.github.com/repos/pylerSM/XposedInstaller"},"payload":{"push_id":536866331,"size":1,"distinct_size":1,"ref":"refs/heads/patch-3","head":"3bb8206e90f57689c8828395d8c0aa1a37a111f9","before":"ae520431ebe7f12df6c3f2bd1c3f01f5e61c6831","commits":[{"sha":"3bb8206e90f57689c8828395d8c0aa1a37a111f9","author":{"email":"f28f61748478a92ddea08216af0ae080bbd92ea9@azet.sk","name":"pyler"},"message":"We dont need this permison on Lollipop and later","distinct":true,"url":"https://api.github.com/repos/pylerSM/XposedInstaller/commits/3bb8206e90f57689c8828395d8c0aa1a37a111f9"}]},"public":true,"created_at":"2015-01-01T15:11:12Z"} +,{"id":"2489656214","type":"WatchEvent","actor":{"id":1254399,"login":"jdorleans","gravatar_id":"","url":"https://api.github.com/users/jdorleans","avatar_url":"https://avatars.githubusercontent.com/u/1254399?"},"repo":{"id":19353783,"name":"graphaware/neo4j-timetree","url":"https://api.github.com/repos/graphaware/neo4j-timetree"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:11:13Z","org":{"id":4264299,"login":"graphaware","gravatar_id":"","url":"https://api.github.com/orgs/graphaware","avatar_url":"https://avatars.githubusercontent.com/u/4264299?"}} +,{"id":"2489656216","type":"PushEvent","actor":{"id":4998607,"login":"belph","gravatar_id":"","url":"https://api.github.com/users/belph","avatar_url":"https://avatars.githubusercontent.com/u/4998607?"},"repo":{"id":27969739,"name":"belph/c-dds","url":"https://api.github.com/repos/belph/c-dds"},"payload":{"push_id":536866334,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3daf98975de26fe662f7dd329404740840437631","before":"82533b598aae670e1373b8ae4aab65b86693c05b","commits":[{"sha":"3daf98975de26fe662f7dd329404740840437631","author":{"email":"a3f51ef80cddf139c78015c9af26b24c7ccc43e4@gmail.com","name":"belph"},"message":"Removed commented out old code and fixed a small bug in the tests/run-tests bash script","distinct":true,"url":"https://api.github.com/repos/belph/c-dds/commits/3daf98975de26fe662f7dd329404740840437631"}]},"public":true,"created_at":"2015-01-01T15:11:13Z"} +,{"id":"2489656218","type":"PushEvent","actor":{"id":1159983,"login":"maskas","gravatar_id":"","url":"https://api.github.com/users/maskas","avatar_url":"https://avatars.githubusercontent.com/u/1159983?"},"repo":{"id":471883,"name":"impresspages/ImpressPages","url":"https://api.github.com/repos/impresspages/ImpressPages"},"payload":{"push_id":536866335,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2cee08ffcade9756fb9416df0dfd09b95d69658c","before":"0c22c2a585c58f6a88ef682aa5f3f14b4ae2e159","commits":[{"sha":"2cee08ffcade9756fb9416df0dfd09b95d69658c","author":{"email":"8866a0348671323c4937de7daed56ccef70d8b71@impresspages.org","name":"Mangirdas Skripka"},"message":"Multilingual fields in GRID","distinct":true,"url":"https://api.github.com/repos/impresspages/ImpressPages/commits/2cee08ffcade9756fb9416df0dfd09b95d69658c"}]},"public":true,"created_at":"2015-01-01T15:11:13Z","org":{"id":175242,"login":"impresspages","gravatar_id":"","url":"https://api.github.com/orgs/impresspages","avatar_url":"https://avatars.githubusercontent.com/u/175242?"}} +,{"id":"2489656221","type":"CreateEvent","actor":{"id":2580896,"login":"Safatullah","gravatar_id":"","url":"https://api.github.com/users/Safatullah","avatar_url":"https://avatars.githubusercontent.com/u/2580896?"},"repo":{"id":28688795,"name":"Safatullah/hello-world","url":"https://api.github.com/repos/Safatullah/hello-world"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"my first repo","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:11:15Z"} +,{"id":"2489656230","type":"PullRequestEvent","actor":{"id":2767023,"login":"ajcowking","gravatar_id":"","url":"https://api.github.com/users/ajcowking","avatar_url":"https://avatars.githubusercontent.com/u/2767023?"},"repo":{"id":28688727,"name":"ajcowking/hello-world","url":"https://api.github.com/repos/ajcowking/hello-world"},"payload":{"action":"opened","number":2,"pull_request":{"url":"https://api.github.com/repos/ajcowking/hello-world/pulls/2","id":26743852,"html_url":"https://github.com/ajcowking/hello-world/pull/2","diff_url":"https://github.com/ajcowking/hello-world/pull/2.diff","patch_url":"https://github.com/ajcowking/hello-world/pull/2.patch","issue_url":"https://api.github.com/repos/ajcowking/hello-world/issues/2","number":2,"state":"open","locked":false,"title":"Readme edits, fixes #1","user":{"login":"ajcowking","id":2767023,"avatar_url":"https://avatars.githubusercontent.com/u/2767023?v=3","gravatar_id":"","url":"https://api.github.com/users/ajcowking","html_url":"https://github.com/ajcowking","followers_url":"https://api.github.com/users/ajcowking/followers","following_url":"https://api.github.com/users/ajcowking/following{/other_user}","gists_url":"https://api.github.com/users/ajcowking/gists{/gist_id}","starred_url":"https://api.github.com/users/ajcowking/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ajcowking/subscriptions","organizations_url":"https://api.github.com/users/ajcowking/orgs","repos_url":"https://api.github.com/users/ajcowking/repos","events_url":"https://api.github.com/users/ajcowking/events{/privacy}","received_events_url":"https://api.github.com/users/ajcowking/received_events","type":"User","site_admin":false},"body":"Content for non-telepathic humans.","created_at":"2015-01-01T15:11:13Z","updated_at":"2015-01-01T15:11:14Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/ajcowking/hello-world/pulls/2/commits","review_comments_url":"https://api.github.com/repos/ajcowking/hello-world/pulls/2/comments","review_comment_url":"https://api.github.com/repos/ajcowking/hello-world/pulls/comments/{number}","comments_url":"https://api.github.com/repos/ajcowking/hello-world/issues/2/comments","statuses_url":"https://api.github.com/repos/ajcowking/hello-world/statuses/e92444c129135b12d41b310d6ca029dad300cdbc","head":{"label":"ajcowking:readme-edits","ref":"readme-edits","sha":"e92444c129135b12d41b310d6ca029dad300cdbc","user":{"login":"ajcowking","id":2767023,"avatar_url":"https://avatars.githubusercontent.com/u/2767023?v=3","gravatar_id":"","url":"https://api.github.com/users/ajcowking","html_url":"https://github.com/ajcowking","followers_url":"https://api.github.com/users/ajcowking/followers","following_url":"https://api.github.com/users/ajcowking/following{/other_user}","gists_url":"https://api.github.com/users/ajcowking/gists{/gist_id}","starred_url":"https://api.github.com/users/ajcowking/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ajcowking/subscriptions","organizations_url":"https://api.github.com/users/ajcowking/orgs","repos_url":"https://api.github.com/users/ajcowking/repos","events_url":"https://api.github.com/users/ajcowking/events{/privacy}","received_events_url":"https://api.github.com/users/ajcowking/received_events","type":"User","site_admin":false},"repo":{"id":28688727,"name":"hello-world","full_name":"ajcowking/hello-world","owner":{"login":"ajcowking","id":2767023,"avatar_url":"https://avatars.githubusercontent.com/u/2767023?v=3","gravatar_id":"","url":"https://api.github.com/users/ajcowking","html_url":"https://github.com/ajcowking","followers_url":"https://api.github.com/users/ajcowking/followers","following_url":"https://api.github.com/users/ajcowking/following{/other_user}","gists_url":"https://api.github.com/users/ajcowking/gists{/gist_id}","starred_url":"https://api.github.com/users/ajcowking/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ajcowking/subscriptions","organizations_url":"https://api.github.com/users/ajcowking/orgs","repos_url":"https://api.github.com/users/ajcowking/repos","events_url":"https://api.github.com/users/ajcowking/events{/privacy}","received_events_url":"https://api.github.com/users/ajcowking/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ajcowking/hello-world","description":"Just another repository","fork":false,"url":"https://api.github.com/repos/ajcowking/hello-world","forks_url":"https://api.github.com/repos/ajcowking/hello-world/forks","keys_url":"https://api.github.com/repos/ajcowking/hello-world/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ajcowking/hello-world/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ajcowking/hello-world/teams","hooks_url":"https://api.github.com/repos/ajcowking/hello-world/hooks","issue_events_url":"https://api.github.com/repos/ajcowking/hello-world/issues/events{/number}","events_url":"https://api.github.com/repos/ajcowking/hello-world/events","assignees_url":"https://api.github.com/repos/ajcowking/hello-world/assignees{/user}","branches_url":"https://api.github.com/repos/ajcowking/hello-world/branches{/branch}","tags_url":"https://api.github.com/repos/ajcowking/hello-world/tags","blobs_url":"https://api.github.com/repos/ajcowking/hello-world/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ajcowking/hello-world/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ajcowking/hello-world/git/refs{/sha}","trees_url":"https://api.github.com/repos/ajcowking/hello-world/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ajcowking/hello-world/statuses/{sha}","languages_url":"https://api.github.com/repos/ajcowking/hello-world/languages","stargazers_url":"https://api.github.com/repos/ajcowking/hello-world/stargazers","contributors_url":"https://api.github.com/repos/ajcowking/hello-world/contributors","subscribers_url":"https://api.github.com/repos/ajcowking/hello-world/subscribers","subscription_url":"https://api.github.com/repos/ajcowking/hello-world/subscription","commits_url":"https://api.github.com/repos/ajcowking/hello-world/commits{/sha}","git_commits_url":"https://api.github.com/repos/ajcowking/hello-world/git/commits{/sha}","comments_url":"https://api.github.com/repos/ajcowking/hello-world/comments{/number}","issue_comment_url":"https://api.github.com/repos/ajcowking/hello-world/issues/comments/{number}","contents_url":"https://api.github.com/repos/ajcowking/hello-world/contents/{+path}","compare_url":"https://api.github.com/repos/ajcowking/hello-world/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ajcowking/hello-world/merges","archive_url":"https://api.github.com/repos/ajcowking/hello-world/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ajcowking/hello-world/downloads","issues_url":"https://api.github.com/repos/ajcowking/hello-world/issues{/number}","pulls_url":"https://api.github.com/repos/ajcowking/hello-world/pulls{/number}","milestones_url":"https://api.github.com/repos/ajcowking/hello-world/milestones{/number}","notifications_url":"https://api.github.com/repos/ajcowking/hello-world/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ajcowking/hello-world/labels{/name}","releases_url":"https://api.github.com/repos/ajcowking/hello-world/releases{/id}","created_at":"2015-01-01T15:07:21Z","updated_at":"2015-01-01T15:07:21Z","pushed_at":"2015-01-01T15:09:55Z","git_url":"git://github.com/ajcowking/hello-world.git","ssh_url":"git@github.com:ajcowking/hello-world.git","clone_url":"https://github.com/ajcowking/hello-world.git","svn_url":"https://github.com/ajcowking/hello-world","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":2,"forks":0,"open_issues":2,"watchers":0,"default_branch":"master"}},"base":{"label":"ajcowking:master","ref":"master","sha":"83dc45814451d7b7ef044fa5339809f377e65a85","user":{"login":"ajcowking","id":2767023,"avatar_url":"https://avatars.githubusercontent.com/u/2767023?v=3","gravatar_id":"","url":"https://api.github.com/users/ajcowking","html_url":"https://github.com/ajcowking","followers_url":"https://api.github.com/users/ajcowking/followers","following_url":"https://api.github.com/users/ajcowking/following{/other_user}","gists_url":"https://api.github.com/users/ajcowking/gists{/gist_id}","starred_url":"https://api.github.com/users/ajcowking/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ajcowking/subscriptions","organizations_url":"https://api.github.com/users/ajcowking/orgs","repos_url":"https://api.github.com/users/ajcowking/repos","events_url":"https://api.github.com/users/ajcowking/events{/privacy}","received_events_url":"https://api.github.com/users/ajcowking/received_events","type":"User","site_admin":false},"repo":{"id":28688727,"name":"hello-world","full_name":"ajcowking/hello-world","owner":{"login":"ajcowking","id":2767023,"avatar_url":"https://avatars.githubusercontent.com/u/2767023?v=3","gravatar_id":"","url":"https://api.github.com/users/ajcowking","html_url":"https://github.com/ajcowking","followers_url":"https://api.github.com/users/ajcowking/followers","following_url":"https://api.github.com/users/ajcowking/following{/other_user}","gists_url":"https://api.github.com/users/ajcowking/gists{/gist_id}","starred_url":"https://api.github.com/users/ajcowking/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ajcowking/subscriptions","organizations_url":"https://api.github.com/users/ajcowking/orgs","repos_url":"https://api.github.com/users/ajcowking/repos","events_url":"https://api.github.com/users/ajcowking/events{/privacy}","received_events_url":"https://api.github.com/users/ajcowking/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ajcowking/hello-world","description":"Just another repository","fork":false,"url":"https://api.github.com/repos/ajcowking/hello-world","forks_url":"https://api.github.com/repos/ajcowking/hello-world/forks","keys_url":"https://api.github.com/repos/ajcowking/hello-world/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ajcowking/hello-world/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ajcowking/hello-world/teams","hooks_url":"https://api.github.com/repos/ajcowking/hello-world/hooks","issue_events_url":"https://api.github.com/repos/ajcowking/hello-world/issues/events{/number}","events_url":"https://api.github.com/repos/ajcowking/hello-world/events","assignees_url":"https://api.github.com/repos/ajcowking/hello-world/assignees{/user}","branches_url":"https://api.github.com/repos/ajcowking/hello-world/branches{/branch}","tags_url":"https://api.github.com/repos/ajcowking/hello-world/tags","blobs_url":"https://api.github.com/repos/ajcowking/hello-world/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ajcowking/hello-world/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ajcowking/hello-world/git/refs{/sha}","trees_url":"https://api.github.com/repos/ajcowking/hello-world/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ajcowking/hello-world/statuses/{sha}","languages_url":"https://api.github.com/repos/ajcowking/hello-world/languages","stargazers_url":"https://api.github.com/repos/ajcowking/hello-world/stargazers","contributors_url":"https://api.github.com/repos/ajcowking/hello-world/contributors","subscribers_url":"https://api.github.com/repos/ajcowking/hello-world/subscribers","subscription_url":"https://api.github.com/repos/ajcowking/hello-world/subscription","commits_url":"https://api.github.com/repos/ajcowking/hello-world/commits{/sha}","git_commits_url":"https://api.github.com/repos/ajcowking/hello-world/git/commits{/sha}","comments_url":"https://api.github.com/repos/ajcowking/hello-world/comments{/number}","issue_comment_url":"https://api.github.com/repos/ajcowking/hello-world/issues/comments/{number}","contents_url":"https://api.github.com/repos/ajcowking/hello-world/contents/{+path}","compare_url":"https://api.github.com/repos/ajcowking/hello-world/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ajcowking/hello-world/merges","archive_url":"https://api.github.com/repos/ajcowking/hello-world/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ajcowking/hello-world/downloads","issues_url":"https://api.github.com/repos/ajcowking/hello-world/issues{/number}","pulls_url":"https://api.github.com/repos/ajcowking/hello-world/pulls{/number}","milestones_url":"https://api.github.com/repos/ajcowking/hello-world/milestones{/number}","notifications_url":"https://api.github.com/repos/ajcowking/hello-world/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ajcowking/hello-world/labels{/name}","releases_url":"https://api.github.com/repos/ajcowking/hello-world/releases{/id}","created_at":"2015-01-01T15:07:21Z","updated_at":"2015-01-01T15:07:21Z","pushed_at":"2015-01-01T15:09:55Z","git_url":"git://github.com/ajcowking/hello-world.git","ssh_url":"git@github.com:ajcowking/hello-world.git","clone_url":"https://github.com/ajcowking/hello-world.git","svn_url":"https://github.com/ajcowking/hello-world","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"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/ajcowking/hello-world/pulls/2"},"html":{"href":"https://github.com/ajcowking/hello-world/pull/2"},"issue":{"href":"https://api.github.com/repos/ajcowking/hello-world/issues/2"},"comments":{"href":"https://api.github.com/repos/ajcowking/hello-world/issues/2/comments"},"review_comments":{"href":"https://api.github.com/repos/ajcowking/hello-world/pulls/2/comments"},"review_comment":{"href":"https://api.github.com/repos/ajcowking/hello-world/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/ajcowking/hello-world/pulls/2/commits"},"statuses":{"href":"https://api.github.com/repos/ajcowking/hello-world/statuses/e92444c129135b12d41b310d6ca029dad300cdbc"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":4,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:11:15Z"} +,{"id":"2489656231","type":"IssueCommentEvent","actor":{"id":2477888,"login":"0ryn","gravatar_id":"","url":"https://api.github.com/users/0ryn","avatar_url":"https://avatars.githubusercontent.com/u/2477888?"},"repo":{"id":17978065,"name":"seanbright/asterisk-opus","url":"https://api.github.com/repos/seanbright/asterisk-opus"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/seanbright/asterisk-opus/issues/2","labels_url":"https://api.github.com/repos/seanbright/asterisk-opus/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/seanbright/asterisk-opus/issues/2/comments","events_url":"https://api.github.com/repos/seanbright/asterisk-opus/issues/2/events","html_url":"https://github.com/seanbright/asterisk-opus/issues/2","id":49090656,"number":2,"title":"asterisk 13","user":{"login":"celevra","id":232437,"avatar_url":"https://avatars.githubusercontent.com/u/232437?v=3","gravatar_id":"","url":"https://api.github.com/users/celevra","html_url":"https://github.com/celevra","followers_url":"https://api.github.com/users/celevra/followers","following_url":"https://api.github.com/users/celevra/following{/other_user}","gists_url":"https://api.github.com/users/celevra/gists{/gist_id}","starred_url":"https://api.github.com/users/celevra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/celevra/subscriptions","organizations_url":"https://api.github.com/users/celevra/orgs","repos_url":"https://api.github.com/users/celevra/repos","events_url":"https://api.github.com/users/celevra/events{/privacy}","received_events_url":"https://api.github.com/users/celevra/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-11-17T13:43:10Z","updated_at":"2015-01-01T15:11:14Z","closed_at":null,"body":"thank you for this nice patch, helped me a lot of times, but now we want to use asterisk 13.\r\ndo you have the time to get the patch working again?\r\ni get these failures\r\nHunk #1 FAILED at 1029.\r\nHunk #2 FAILED at 1111.\r\n2 out of 2 hunks FAILED -- saving rejects to file main/frame.c.rej\r\n\r\nregards\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/seanbright/asterisk-opus/issues/comments/68488735","html_url":"https://github.com/seanbright/asterisk-opus/issues/2#issuecomment-68488735","issue_url":"https://api.github.com/repos/seanbright/asterisk-opus/issues/2","id":68488735,"user":{"login":"0ryn","id":2477888,"avatar_url":"https://avatars.githubusercontent.com/u/2477888?v=3","gravatar_id":"","url":"https://api.github.com/users/0ryn","html_url":"https://github.com/0ryn","followers_url":"https://api.github.com/users/0ryn/followers","following_url":"https://api.github.com/users/0ryn/following{/other_user}","gists_url":"https://api.github.com/users/0ryn/gists{/gist_id}","starred_url":"https://api.github.com/users/0ryn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/0ryn/subscriptions","organizations_url":"https://api.github.com/users/0ryn/orgs","repos_url":"https://api.github.com/users/0ryn/repos","events_url":"https://api.github.com/users/0ryn/events{/privacy}","received_events_url":"https://api.github.com/users/0ryn/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:11:14Z","updated_at":"2015-01-01T15:11:14Z","body":"Looks like the formating of codecs is changed. \r\nast_format_set is nolonger available\r\ndst_format and src_format are nolonger available"}},"public":true,"created_at":"2015-01-01T15:11:15Z"} +,{"id":"2489656235","type":"IssuesEvent","actor":{"id":1385879,"login":"caprica","gravatar_id":"","url":"https://api.github.com/users/caprica","avatar_url":"https://avatars.githubusercontent.com/u/1385879?"},"repo":{"id":3289298,"name":"caprica/vlcj","url":"https://api.github.com/repos/caprica/vlcj"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/caprica/vlcj/issues/284","labels_url":"https://api.github.com/repos/caprica/vlcj/issues/284/labels{/name}","comments_url":"https://api.github.com/repos/caprica/vlcj/issues/284/comments","events_url":"https://api.github.com/repos/caprica/vlcj/issues/284/events","html_url":"https://github.com/caprica/vlcj/issues/284","id":53221183,"number":284,"title":"Github-pages not linking to 3.1.0 javadoc","user":{"login":"masterX244","id":1544922,"avatar_url":"https://avatars.githubusercontent.com/u/1544922?v=3","gravatar_id":"","url":"https://api.github.com/users/masterX244","html_url":"https://github.com/masterX244","followers_url":"https://api.github.com/users/masterX244/followers","following_url":"https://api.github.com/users/masterX244/following{/other_user}","gists_url":"https://api.github.com/users/masterX244/gists{/gist_id}","starred_url":"https://api.github.com/users/masterX244/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/masterX244/subscriptions","organizations_url":"https://api.github.com/users/masterX244/orgs","repos_url":"https://api.github.com/users/masterX244/repos","events_url":"https://api.github.com/users/masterX244/events{/privacy}","received_events_url":"https://api.github.com/users/masterX244/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/caprica/vlcj/labels/Task","name":"Task","color":"444444"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2015-01-01T14:52:05Z","updated_at":"2015-01-01T15:11:14Z","closed_at":"2015-01-01T15:11:14Z","body":"the LInk to the docs doesnt show the 3.1.0 javadoc link even though it exists already"}},"public":true,"created_at":"2015-01-01T15:11:15Z"} +,{"id":"2489656236","type":"IssueCommentEvent","actor":{"id":1385879,"login":"caprica","gravatar_id":"","url":"https://api.github.com/users/caprica","avatar_url":"https://avatars.githubusercontent.com/u/1385879?"},"repo":{"id":3289298,"name":"caprica/vlcj","url":"https://api.github.com/repos/caprica/vlcj"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/caprica/vlcj/issues/284","labels_url":"https://api.github.com/repos/caprica/vlcj/issues/284/labels{/name}","comments_url":"https://api.github.com/repos/caprica/vlcj/issues/284/comments","events_url":"https://api.github.com/repos/caprica/vlcj/issues/284/events","html_url":"https://github.com/caprica/vlcj/issues/284","id":53221183,"number":284,"title":"Github-pages not linking to 3.1.0 javadoc","user":{"login":"masterX244","id":1544922,"avatar_url":"https://avatars.githubusercontent.com/u/1544922?v=3","gravatar_id":"","url":"https://api.github.com/users/masterX244","html_url":"https://github.com/masterX244","followers_url":"https://api.github.com/users/masterX244/followers","following_url":"https://api.github.com/users/masterX244/following{/other_user}","gists_url":"https://api.github.com/users/masterX244/gists{/gist_id}","starred_url":"https://api.github.com/users/masterX244/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/masterX244/subscriptions","organizations_url":"https://api.github.com/users/masterX244/orgs","repos_url":"https://api.github.com/users/masterX244/repos","events_url":"https://api.github.com/users/masterX244/events{/privacy}","received_events_url":"https://api.github.com/users/masterX244/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/caprica/vlcj/labels/Task","name":"Task","color":"444444"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2015-01-01T14:52:05Z","updated_at":"2015-01-01T15:11:14Z","closed_at":"2015-01-01T15:11:14Z","body":"the LInk to the docs doesnt show the 3.1.0 javadoc link even though it exists already"},"comment":{"url":"https://api.github.com/repos/caprica/vlcj/issues/comments/68488736","html_url":"https://github.com/caprica/vlcj/issues/284#issuecomment-68488736","issue_url":"https://api.github.com/repos/caprica/vlcj/issues/284","id":68488736,"user":{"login":"caprica","id":1385879,"avatar_url":"https://avatars.githubusercontent.com/u/1385879?v=3","gravatar_id":"","url":"https://api.github.com/users/caprica","html_url":"https://github.com/caprica","followers_url":"https://api.github.com/users/caprica/followers","following_url":"https://api.github.com/users/caprica/following{/other_user}","gists_url":"https://api.github.com/users/caprica/gists{/gist_id}","starred_url":"https://api.github.com/users/caprica/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/caprica/subscriptions","organizations_url":"https://api.github.com/users/caprica/orgs","repos_url":"https://api.github.com/users/caprica/repos","events_url":"https://api.github.com/users/caprica/events{/privacy}","received_events_url":"https://api.github.com/users/caprica/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:11:14Z","updated_at":"2015-01-01T15:11:14Z","body":"I just spotted it.\r\n\r\nThanks for reporting it.\r\n\r\nShould be OK now."}},"public":true,"created_at":"2015-01-01T15:11:15Z"} +,{"id":"2489656238","type":"PushEvent","actor":{"id":7752475,"login":"p1ch-jp","gravatar_id":"","url":"https://api.github.com/users/p1ch-jp","avatar_url":"https://avatars.githubusercontent.com/u/7752475?"},"repo":{"id":28688714,"name":"p1ch-jp/chiraura","url":"https://api.github.com/repos/p1ch-jp/chiraura"},"payload":{"push_id":536866337,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"edebecc7012bb31de0649a65a13d7fadbdb3e58d","before":"81bc9cb7101660b38b64c22ec33566f686ba9393","commits":[{"sha":"edebecc7012bb31de0649a65a13d7fadbdb3e58d","author":{"email":"a52a11aef0dc7d33a2662863777bb09b6bd698c0@gmail.com","name":"p1ch-jp"},"message":"Automated commit by inari.","distinct":true,"url":"https://api.github.com/repos/p1ch-jp/chiraura/commits/edebecc7012bb31de0649a65a13d7fadbdb3e58d"}]},"public":true,"created_at":"2015-01-01T15:11:15Z"} +,{"id":"2489656239","type":"PushEvent","actor":{"id":3170981,"login":"kulmala","gravatar_id":"","url":"https://api.github.com/users/kulmala","avatar_url":"https://avatars.githubusercontent.com/u/3170981?"},"repo":{"id":23549741,"name":"kulmala/metrics","url":"https://api.github.com/repos/kulmala/metrics"},"payload":{"push_id":536866338,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cda78c5ec7d8d90838e2fabc82e0528620a5771d","before":"ccf6a10a5cd39f584543cf59aa5578226853b62a","commits":[{"sha":"cda78c5ec7d8d90838e2fabc82e0528620a5771d","author":{"email":"5b062d619528ca2f7b39794d12e1c305a7a4b0e8@gmail.com","name":"Jaana Kulmala"},"message":"a small note added","distinct":true,"url":"https://api.github.com/repos/kulmala/metrics/commits/cda78c5ec7d8d90838e2fabc82e0528620a5771d"}]},"public":true,"created_at":"2015-01-01T15:11:15Z"} +,{"id":"2489656241","type":"PushEvent","actor":{"id":451918,"login":"juniwalk","gravatar_id":"","url":"https://api.github.com/users/juniwalk","avatar_url":"https://avatars.githubusercontent.com/u/451918?"},"repo":{"id":28644183,"name":"juniwalk/OAuth","url":"https://api.github.com/repos/juniwalk/OAuth"},"payload":{"push_id":536866339,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0c1db01f80aed6b7d168502f3416844f096b0bb8","before":"3666b5d5b8ee43153feb515ae7c6007399ceba5a","commits":[{"sha":"0c1db01f80aed6b7d168502f3416844f096b0bb8","author":{"email":"d5b9a5b2fc339c3b5f79cfadaedc4814b7ad2314@outlook.cz","name":"Martin Procházka"},"message":"MOD: Changed return type of IClient::execute( )","distinct":true,"url":"https://api.github.com/repos/juniwalk/OAuth/commits/0c1db01f80aed6b7d168502f3416844f096b0bb8"}]},"public":true,"created_at":"2015-01-01T15:11:15Z"} +,{"id":"2489656242","type":"PullRequestReviewCommentEvent","actor":{"id":459648,"login":"samsonasik","gravatar_id":"","url":"https://api.github.com/users/samsonasik","avatar_url":"https://avatars.githubusercontent.com/u/459648?"},"repo":{"id":702550,"name":"zendframework/zf2","url":"https://api.github.com/repos/zendframework/zf2"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/22400134","id":22400134,"diff_hunk":"@@ -0,0 +1,14 @@\n+ pf(wavelengths,irradiance);\r\n\r\n... stuff to know what is the index of the photo reaction ...\r\n\r\nKineticsConditions kin_cond(T);\r\nkin_cond.add_particle_flux(pf,index_of_concerned_photo_reaction);\r\n```\r\nor automatically generated by the _KineticsEvaluator_ to ensure backward compatibility. I've found a not too expensive way: it either copies a reference or initializes the _KineticsConditions_ object. Thus the changes in the _kinetics_evaluator.h_ file.\r\nthe meta funny structure _constructor_or_reference_ does very exactly what its name implies: if the two templates arguments are the same, it sends back a reference to the type, if not it sends back the type:\r\n```\r\ntemplate\r\nstruct constructor_or_reference\r\n{\r\n typedef T1 type;\r\n};\r\n\r\ntemplate \r\nstruct constructor_or_reference\r\n {\r\n typedef T & type;\r\n };\r\n```\r\n\r\nThe biggest part of the changes are the photochemistry handling, in particular the rebinning phase. Things to be aware are the new utilities functions _conjunction_, _disjunction_ and _eval_index_, I expect them to be slow for anything other than Eigen, I haven't found a proper method for VexCl and metaphysicL (maybe I haven't been looking hard enough, I'm not sure).\r\n\r\nThis rebinning part is fully vectorized, sadly slow and I still consider as an almost bug that it recomputes the rate constant whatever happens, even if it does not change. Good news is I have a few ideas playing with the _KineticsConditions_, though it needs better testing.\r\n\r\nAs photochemistry is not really essential right now, I think it's ok to proceed."},"comment":{"url":"https://api.github.com/repos/libantioch/antioch/issues/comments/68488737","html_url":"https://github.com/libantioch/antioch/pull/74#issuecomment-68488737","issue_url":"https://api.github.com/repos/libantioch/antioch/issues/74","id":68488737,"user":{"login":"SylvainPlessis","id":4761614,"avatar_url":"https://avatars.githubusercontent.com/u/4761614?v=3","gravatar_id":"","url":"https://api.github.com/users/SylvainPlessis","html_url":"https://github.com/SylvainPlessis","followers_url":"https://api.github.com/users/SylvainPlessis/followers","following_url":"https://api.github.com/users/SylvainPlessis/following{/other_user}","gists_url":"https://api.github.com/users/SylvainPlessis/gists{/gist_id}","starred_url":"https://api.github.com/users/SylvainPlessis/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SylvainPlessis/subscriptions","organizations_url":"https://api.github.com/users/SylvainPlessis/orgs","repos_url":"https://api.github.com/users/SylvainPlessis/repos","events_url":"https://api.github.com/users/SylvainPlessis/events{/privacy}","received_events_url":"https://api.github.com/users/SylvainPlessis/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:11:15Z","updated_at":"2015-01-01T15:11:15Z","body":"The copy constructor is a legacy of my ignorance of defaults for those. I need to dig up a little bit to remember why the default constructor is not private (though the primal reason may have disappeared), and this is a pointer and not a reference to enable temperature change without rebuilding the whole thing."}},"public":true,"created_at":"2015-01-01T15:11:15Z","org":{"id":4841271,"login":"libantioch","gravatar_id":"","url":"https://api.github.com/orgs/libantioch","avatar_url":"https://avatars.githubusercontent.com/u/4841271?"}} +,{"id":"2489656247","type":"PushEvent","actor":{"id":22603,"login":"jonasoreland","gravatar_id":"","url":"https://api.github.com/users/jonasoreland","avatar_url":"https://avatars.githubusercontent.com/u/22603?"},"repo":{"id":6888841,"name":"jonasoreland/runnerup","url":"https://api.github.com/repos/jonasoreland/runnerup"},"payload":{"push_id":536866341,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b2d2fcad2569f6e6b16c58b898007a270c0eba3a","before":"20b48c4d968f0d1639971ccb0f90330cedcb0b5a","commits":[{"sha":"b2d2fcad2569f6e6b16c58b898007a270c0eba3a","author":{"email":"7b85628d76bfac93cec7b8a17a2d40875e6e8967@gmail.com","name":"Jonas Oreland"},"message":"fix resource leak in AntPlus HRM","distinct":true,"url":"https://api.github.com/repos/jonasoreland/runnerup/commits/b2d2fcad2569f6e6b16c58b898007a270c0eba3a"}]},"public":true,"created_at":"2015-01-01T15:11:15Z"} +,{"id":"2489656248","type":"IssueCommentEvent","actor":{"id":1454075,"login":"leastprivilege","gravatar_id":"","url":"https://api.github.com/users/leastprivilege","avatar_url":"https://avatars.githubusercontent.com/u/1454075?"},"repo":{"id":15714062,"name":"thinktecture/Thinktecture.IdentityServer.v3","url":"https://api.github.com/repos/thinktecture/Thinktecture.IdentityServer.v3"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/thinktecture/Thinktecture.IdentityServer.v3/issues/702","labels_url":"https://api.github.com/repos/thinktecture/Thinktecture.IdentityServer.v3/issues/702/labels{/name}","comments_url":"https://api.github.com/repos/thinktecture/Thinktecture.IdentityServer.v3/issues/702/comments","events_url":"https://api.github.com/repos/thinktecture/Thinktecture.IdentityServer.v3/issues/702/events","html_url":"https://github.com/thinktecture/Thinktecture.IdentityServer.v3/issues/702","id":53219667,"number":702,"title":"No consent view displayed in mvc step by step sample","user":{"login":"plaksina","id":3428725,"avatar_url":"https://avatars.githubusercontent.com/u/3428725?v=3","gravatar_id":"","url":"https://api.github.com/users/plaksina","html_url":"https://github.com/plaksina","followers_url":"https://api.github.com/users/plaksina/followers","following_url":"https://api.github.com/users/plaksina/following{/other_user}","gists_url":"https://api.github.com/users/plaksina/gists{/gist_id}","starred_url":"https://api.github.com/users/plaksina/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/plaksina/subscriptions","organizations_url":"https://api.github.com/users/plaksina/orgs","repos_url":"https://api.github.com/users/plaksina/repos","events_url":"https://api.github.com/users/plaksina/events{/privacy}","received_events_url":"https://api.github.com/users/plaksina/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T13:26:22Z","updated_at":"2015-01-01T15:11:15Z","closed_at":null,"body":"Hi \r\n\r\nWhy is no consent view displayed in this scenario, after login the request is redirected back to the client without user consent on the requested scope"},"comment":{"url":"https://api.github.com/repos/thinktecture/Thinktecture.IdentityServer.v3/issues/comments/68488738","html_url":"https://github.com/thinktecture/Thinktecture.IdentityServer.v3/issues/702#issuecomment-68488738","issue_url":"https://api.github.com/repos/thinktecture/Thinktecture.IdentityServer.v3/issues/702","id":68488738,"user":{"login":"leastprivilege","id":1454075,"avatar_url":"https://avatars.githubusercontent.com/u/1454075?v=3","gravatar_id":"","url":"https://api.github.com/users/leastprivilege","html_url":"https://github.com/leastprivilege","followers_url":"https://api.github.com/users/leastprivilege/followers","following_url":"https://api.github.com/users/leastprivilege/following{/other_user}","gists_url":"https://api.github.com/users/leastprivilege/gists{/gist_id}","starred_url":"https://api.github.com/users/leastprivilege/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/leastprivilege/subscriptions","organizations_url":"https://api.github.com/users/leastprivilege/orgs","repos_url":"https://api.github.com/users/leastprivilege/repos","events_url":"https://api.github.com/users/leastprivilege/events{/privacy}","received_events_url":"https://api.github.com/users/leastprivilege/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:11:15Z","updated_at":"2015-01-01T15:11:15Z","body":"Because it is not enabled for the client - there's a switch on the client class - check the wiki."}},"public":true,"created_at":"2015-01-01T15:11:16Z","org":{"id":1458091,"login":"thinktecture","gravatar_id":"","url":"https://api.github.com/orgs/thinktecture","avatar_url":"https://avatars.githubusercontent.com/u/1458091?"}} +,{"id":"2489656250","type":"PushEvent","actor":{"id":540890,"login":"syphar","gravatar_id":"","url":"https://api.github.com/users/syphar","avatar_url":"https://avatars.githubusercontent.com/u/540890?"},"repo":{"id":28646999,"name":"Thermondo/pytest-translations","url":"https://api.github.com/repos/Thermondo/pytest-translations"},"payload":{"push_id":536866342,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"3a0d4efab6f1dc506802adfd947414dae35f9c95","before":"318d193ff6700ed899bde2b9a5e5e18972eb07bf","commits":[{"sha":"609ffd9d711267d26ecec9f80e22fcd26f3d7317","author":{"email":"53e3fd5a93ecfcd3f5464cab876fcf3b18df16c5@fastmail.fm","name":"Denis Cornehl"},"message":"fix wrong license","distinct":true,"url":"https://api.github.com/repos/Thermondo/pytest-translations/commits/609ffd9d711267d26ecec9f80e22fcd26f3d7317"},{"sha":"f600481036607a69dd1b0d04c511c256b60db64b","author":{"email":"53e3fd5a93ecfcd3f5464cab876fcf3b18df16c5@fastmail.fm","name":"Denis Cornehl"},"message":"add long description from readme","distinct":true,"url":"https://api.github.com/repos/Thermondo/pytest-translations/commits/f600481036607a69dd1b0d04c511c256b60db64b"},{"sha":"3a0d4efab6f1dc506802adfd947414dae35f9c95","author":{"email":"53e3fd5a93ecfcd3f5464cab876fcf3b18df16c5@fastmail.fm","name":"Denis Cornehl"},"message":"add tests","distinct":true,"url":"https://api.github.com/repos/Thermondo/pytest-translations/commits/3a0d4efab6f1dc506802adfd947414dae35f9c95"}]},"public":true,"created_at":"2015-01-01T15:11:16Z","org":{"id":2737160,"login":"Thermondo","gravatar_id":"","url":"https://api.github.com/orgs/Thermondo","avatar_url":"https://avatars.githubusercontent.com/u/2737160?"}} +,{"id":"2489656260","type":"PushEvent","actor":{"id":9136765,"login":"tomhsu1990","gravatar_id":"","url":"https://api.github.com/users/tomhsu1990","avatar_url":"https://avatars.githubusercontent.com/u/9136765?"},"repo":{"id":28275358,"name":"tomhsu1990/tomhsu1990.github.io","url":"https://api.github.com/repos/tomhsu1990/tomhsu1990.github.io"},"payload":{"push_id":536866345,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"56a6d35e3650464cc1fe69858597124b15dd2a7a","before":"6aa52934b4b9d60e5336c8f98c8639b44a6a6aaf","commits":[{"sha":"56a6d35e3650464cc1fe69858597124b15dd2a7a","author":{"email":"297aa0df807ae5160d307bfea3c7597ceeb45f93@gmail.com","name":"tomhsu1990"},"message":"section -> article","distinct":true,"url":"https://api.github.com/repos/tomhsu1990/tomhsu1990.github.io/commits/56a6d35e3650464cc1fe69858597124b15dd2a7a"}]},"public":true,"created_at":"2015-01-01T15:11:16Z"} +,{"id":"2489656261","type":"IssuesEvent","actor":{"id":1406184,"login":"jshafton","gravatar_id":"","url":"https://api.github.com/users/jshafton","avatar_url":"https://avatars.githubusercontent.com/u/1406184?"},"repo":{"id":28618563,"name":"jshafton/laptop","url":"https://api.github.com/repos/jshafton/laptop"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/jshafton/laptop/issues/4","labels_url":"https://api.github.com/repos/jshafton/laptop/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/jshafton/laptop/issues/4/comments","events_url":"https://api.github.com/repos/jshafton/laptop/issues/4/events","html_url":"https://github.com/jshafton/laptop/issues/4","id":53221508,"number":4,"title":"Fix OSX defaults setup","user":{"login":"jshafton","id":1406184,"avatar_url":"https://avatars.githubusercontent.com/u/1406184?v=3","gravatar_id":"","url":"https://api.github.com/users/jshafton","html_url":"https://github.com/jshafton","followers_url":"https://api.github.com/users/jshafton/followers","following_url":"https://api.github.com/users/jshafton/following{/other_user}","gists_url":"https://api.github.com/users/jshafton/gists{/gist_id}","starred_url":"https://api.github.com/users/jshafton/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jshafton/subscriptions","organizations_url":"https://api.github.com/users/jshafton/orgs","repos_url":"https://api.github.com/users/jshafton/repos","events_url":"https://api.github.com/users/jshafton/events{/privacy}","received_events_url":"https://api.github.com/users/jshafton/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:09:14Z","updated_at":"2015-01-01T15:11:16Z","closed_at":"2015-01-01T15:11:16Z","body":"Script path isn't working"}},"public":true,"created_at":"2015-01-01T15:11:16Z"} +,{"id":"2489656264","type":"PushEvent","actor":{"id":6255300,"login":"AsdFinal","gravatar_id":"","url":"https://api.github.com/users/AsdFinal","avatar_url":"https://avatars.githubusercontent.com/u/6255300?"},"repo":{"id":27955001,"name":"AsdFinal/videoDownloader","url":"https://api.github.com/repos/AsdFinal/videoDownloader"},"payload":{"push_id":536866346,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"65fe7cf6a483d82aed8091729fb107aaf23c4d5d","before":"22af3681a647e620f65c9aef415bc3a80bca53b4","commits":[{"sha":"65fe7cf6a483d82aed8091729fb107aaf23c4d5d","author":{"email":"74a46636ab5d8c0b243b023f9316f6d5b1e6efa7@gmail.com","name":"ms519093175@gmail.com"},"message":"1.修改应用名,版本号\n 2.使支持短链接\n 3.修复分享截取","distinct":true,"url":"https://api.github.com/repos/AsdFinal/videoDownloader/commits/65fe7cf6a483d82aed8091729fb107aaf23c4d5d"}]},"public":true,"created_at":"2015-01-01T15:11:16Z"} +,{"id":"2489656287","type":"WatchEvent","actor":{"id":6481921,"login":"zys58","gravatar_id":"","url":"https://api.github.com/users/zys58","avatar_url":"https://avatars.githubusercontent.com/u/6481921?"},"repo":{"id":20317404,"name":"muyehub/pigcms","url":"https://api.github.com/repos/muyehub/pigcms"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:11:19Z"} +,{"id":"2489656288","type":"PullRequestReviewCommentEvent","actor":{"id":459648,"login":"samsonasik","gravatar_id":"","url":"https://api.github.com/users/samsonasik","avatar_url":"https://avatars.githubusercontent.com/u/459648?"},"repo":{"id":702550,"name":"zendframework/zf2","url":"https://api.github.com/repos/zendframework/zf2"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/22400135","id":22400135,"diff_hunk":"@@ -0,0 +1,125 @@\n+<86><92> current limit 150.6M\r\nJan 01 15:48:23 coreos0 systemd-journal[400]: Permanent journal is using 34.2M (max allowed 632.0M, trying to leave 948.0M free of 5.9G available <86><92> current limit 632\r\nJan 01 15:48:23 coreos0 systemd-journal[400]: Time spent on flushing to /var is 786us for 2 entries.\r\nJan 01 15:48:23 coreos0 systemd-journald[88]: Received SIGTERM from PID 1 (systemd).\r\nJan 01 15:48:23 coreos0 systemd[1]: Breaking ordering cycle by deleting job sockets.target/start\r\nJan 01 15:48:23 coreos0 systemd[1]: Job sockets.target/start deleted to break ordering cycle starting with basic.target/start\r\n```\r\n*(see below for output of `journalctl -b _PID=1`)*\r\n\r\n```bash\r\ncoreos0 ~ $ systemctl --version\r\nsystemd 218\r\n-PAM -AUDIT -SELINUX +IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP -GCRYPT -GNUTLS -ACL -XZ -LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD -IDN\r\n```\r\n```bash\r\ncoreos0 ~ $ cat /etc/lsb-release\r\nDISTRIB_ID=CoreOS\r\nDISTRIB_RELEASE=547.0.0\r\nDISTRIB_CODENAME=\"Red Dog\"\r\nDISTRIB_DESCRIPTION=\"CoreOS 547.0.0\"\r\n```\r\n\r\n```bash\r\ncoreos0 ~ $ sudo journalctl -b _PID=1\r\n-- Logs begin at Thu 2015-01-01 15:45:33 CET, end at Thu 2015-01-01 16:10:05 CET. --\r\nJan 01 16:09:06 coreos0 systemd[1]: systemd 218 running in system mode. (-PAM -AUDIT -SELINUX +IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP -GCRYPT -GNUTLS -ACL -XZ -LZ4\r\nJan 01 16:09:06 coreos0 systemd[1]: Detected virtualization 'vmware'.\r\nJan 01 16:09:06 coreos0 systemd[1]: Detected architecture 'x86-64'.\r\nJan 01 16:09:06 coreos0 systemd[1]: Set hostname to .\r\nJan 01 16:09:06 coreos0 systemd[1]: Found ordering cycle on basic.target/start\r\nJan 01 16:09:06 coreos0 systemd[1]: Found dependency on sockets.target/start\r\nJan 01 16:09:06 coreos0 systemd[1]: Found dependency on docker-tcp.socket/start\r\nJan 01 16:09:06 coreos0 systemd[1]: Found dependency on network.target/start\r\nJan 01 16:09:06 coreos0 systemd[1]: Found dependency on systemd-networkd.service/start\r\nJan 01 16:09:06 coreos0 systemd[1]: Found dependency on dbus.service/start\r\nJan 01 16:09:06 coreos0 systemd[1]: Found dependency on basic.target/start\r\nJan 01 16:09:07 coreos0 systemd[1]: Started Create list of required static device nodes for the current kernel.\r\nJan 01 16:09:07 coreos0 systemd[1]: Started Load/Save Random Seed.\r\nJan 01 16:09:07 coreos0 systemd[1]: Started Apply Kernel Variables.\r\nJan 01 16:09:07 coreos0 systemd[1]: Started Setup Virtual Console.\r\nJan 01 16:09:07 coreos0 systemd[1]: Started udev Coldplug all Devices.\r\nJan 01 16:09:07 coreos0 systemd[1]: Starting udev Wait for Complete Device Initialization...\r\nJan 01 16:09:07 coreos0 systemd[1]: Starting Create Static Device Nodes in /dev...\r\nJan 01 16:09:07 coreos0 systemd[1]: Starting Flush Journal to Persistent Storage...\r\nJan 01 16:09:07 coreos0 systemd[1]: Started Create Static Device Nodes in /dev.\r\nJan 01 16:09:07 coreos0 systemd[1]: Starting udev Kernel Device Manager...\r\nJan 01 16:09:07 coreos0 systemd[1]: Starting Local File Systems (Pre).\r\nJan 01 16:09:07 coreos0 systemd[1]: Reached target Local File Systems (Pre).\r\nJan 01 16:09:07 coreos0 systemd[1]: Started udev Kernel Device Manager.\r\nJan 01 16:09:07 coreos0 systemd[1]: Started Flush Journal to Persistent Storage.\r\nJan 01 16:09:07 coreos0 systemd[1]: Found ordering cycle on basic.target/start\r\nJan 01 16:09:07 coreos0 systemd[1]: Found dependency on sockets.target/start\r\nJan 01 16:09:07 coreos0 systemd[1]: Found dependency on docker-tcp.socket/start\r\nJan 01 16:09:07 coreos0 systemd[1]: Found dependency on network.target/start\r\nJan 01 16:09:07 coreos0 systemd[1]: Found dependency on systemd-networkd.service/start\r\nJan 01 16:09:07 coreos0 systemd[1]: Found dependency on dbus.service/start\r\nJan 01 16:09:07 coreos0 systemd[1]: Found dependency on basic.target/start\r\nJan 01 16:09:07 coreos0 systemd[1]: Breaking ordering cycle by deleting job sockets.target/start\r\nJan 01 16:09:07 coreos0 systemd[1]: Job sockets.target/start deleted to break ordering cycle starting with basic.target/start\r\n```"}},"public":true,"created_at":"2015-01-01T15:11:28Z","org":{"id":3730757,"login":"coreos","gravatar_id":"","url":"https://api.github.com/orgs/coreos","avatar_url":"https://avatars.githubusercontent.com/u/3730757?"}} +,{"id":"2489656355","type":"ForkEvent","actor":{"id":682580,"login":"kellogs","gravatar_id":"","url":"https://api.github.com/users/kellogs","avatar_url":"https://avatars.githubusercontent.com/u/682580?"},"repo":{"id":10048750,"name":"jbreizh/actimaths","url":"https://api.github.com/repos/jbreizh/actimaths"},"payload":{"forkee":{"id":28688797,"name":"actimaths","full_name":"kellogs/actimaths","owner":{"login":"kellogs","id":682580,"avatar_url":"https://avatars.githubusercontent.com/u/682580?v=3","gravatar_id":"","url":"https://api.github.com/users/kellogs","html_url":"https://github.com/kellogs","followers_url":"https://api.github.com/users/kellogs/followers","following_url":"https://api.github.com/users/kellogs/following{/other_user}","gists_url":"https://api.github.com/users/kellogs/gists{/gist_id}","starred_url":"https://api.github.com/users/kellogs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kellogs/subscriptions","organizations_url":"https://api.github.com/users/kellogs/orgs","repos_url":"https://api.github.com/users/kellogs/repos","events_url":"https://api.github.com/users/kellogs/events{/privacy}","received_events_url":"https://api.github.com/users/kellogs/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/kellogs/actimaths","description":"créateur d'activité mentale (fork de pyromaths)","fork":true,"url":"https://api.github.com/repos/kellogs/actimaths","forks_url":"https://api.github.com/repos/kellogs/actimaths/forks","keys_url":"https://api.github.com/repos/kellogs/actimaths/keys{/key_id}","collaborators_url":"https://api.github.com/repos/kellogs/actimaths/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/kellogs/actimaths/teams","hooks_url":"https://api.github.com/repos/kellogs/actimaths/hooks","issue_events_url":"https://api.github.com/repos/kellogs/actimaths/issues/events{/number}","events_url":"https://api.github.com/repos/kellogs/actimaths/events","assignees_url":"https://api.github.com/repos/kellogs/actimaths/assignees{/user}","branches_url":"https://api.github.com/repos/kellogs/actimaths/branches{/branch}","tags_url":"https://api.github.com/repos/kellogs/actimaths/tags","blobs_url":"https://api.github.com/repos/kellogs/actimaths/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/kellogs/actimaths/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/kellogs/actimaths/git/refs{/sha}","trees_url":"https://api.github.com/repos/kellogs/actimaths/git/trees{/sha}","statuses_url":"https://api.github.com/repos/kellogs/actimaths/statuses/{sha}","languages_url":"https://api.github.com/repos/kellogs/actimaths/languages","stargazers_url":"https://api.github.com/repos/kellogs/actimaths/stargazers","contributors_url":"https://api.github.com/repos/kellogs/actimaths/contributors","subscribers_url":"https://api.github.com/repos/kellogs/actimaths/subscribers","subscription_url":"https://api.github.com/repos/kellogs/actimaths/subscription","commits_url":"https://api.github.com/repos/kellogs/actimaths/commits{/sha}","git_commits_url":"https://api.github.com/repos/kellogs/actimaths/git/commits{/sha}","comments_url":"https://api.github.com/repos/kellogs/actimaths/comments{/number}","issue_comment_url":"https://api.github.com/repos/kellogs/actimaths/issues/comments/{number}","contents_url":"https://api.github.com/repos/kellogs/actimaths/contents/{+path}","compare_url":"https://api.github.com/repos/kellogs/actimaths/compare/{base}...{head}","merges_url":"https://api.github.com/repos/kellogs/actimaths/merges","archive_url":"https://api.github.com/repos/kellogs/actimaths/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/kellogs/actimaths/downloads","issues_url":"https://api.github.com/repos/kellogs/actimaths/issues{/number}","pulls_url":"https://api.github.com/repos/kellogs/actimaths/pulls{/number}","milestones_url":"https://api.github.com/repos/kellogs/actimaths/milestones{/number}","notifications_url":"https://api.github.com/repos/kellogs/actimaths/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/kellogs/actimaths/labels{/name}","releases_url":"https://api.github.com/repos/kellogs/actimaths/releases{/id}","created_at":"2015-01-01T15:11:28Z","updated_at":"2015-01-01T15:10:49Z","pushed_at":"2013-07-23T13:19:28Z","git_url":"git://github.com/kellogs/actimaths.git","ssh_url":"git@github.com:kellogs/actimaths.git","clone_url":"https://github.com/kellogs/actimaths.git","svn_url":"https://github.com/kellogs/actimaths","homepage":null,"size":19784,"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:11:28Z"} +,{"id":"2489656356","type":"PushEvent","actor":{"id":8926158,"login":"xonyne","gravatar_id":"","url":"https://api.github.com/users/xonyne","avatar_url":"https://avatars.githubusercontent.com/u/8926158?"},"repo":{"id":24491360,"name":"pvbergen/ch.bfh.bti7054.w2014.p.ShareShop","url":"https://api.github.com/repos/pvbergen/ch.bfh.bti7054.w2014.p.ShareShop"},"payload":{"push_id":536866378,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e6816f598a6beb9e924dca1182692fcec448d482","before":"d75d4142600a4eca5d29c77b5b141d869eabe5d7","commits":[{"sha":"e6816f598a6beb9e924dca1182692fcec448d482","author":{"email":"4d802bb8f5242391583f324ae44c548f49bc6edb@bluewin.ch","name":"xonyne"},"message":"Google Maps Einbindung bei Registrierung","distinct":true,"url":"https://api.github.com/repos/pvbergen/ch.bfh.bti7054.w2014.p.ShareShop/commits/e6816f598a6beb9e924dca1182692fcec448d482"}]},"public":true,"created_at":"2015-01-01T15:11:28Z"} +,{"id":"2489656357","type":"PushEvent","actor":{"id":5805893,"login":"rebelos","gravatar_id":"","url":"https://api.github.com/users/rebelos","avatar_url":"https://avatars.githubusercontent.com/u/5805893?"},"repo":{"id":28681799,"name":"rebelos/msm8226_caf","url":"https://api.github.com/repos/rebelos/msm8226_caf"},"payload":{"push_id":536866379,"size":1,"distinct_size":1,"ref":"refs/heads/lp_1.0_armani","head":"77143f9b4a81c8bf49ee9d2f854916e2167d1b1b","before":"531c33bf3f0658b1849fe54ae015ecf60c78b735","commits":[{"sha":"77143f9b4a81c8bf49ee9d2f854916e2167d1b1b","author":{"email":"406070e35f487f7590f0182b1e66cc5beda8a939@gmail.com","name":"rebelos"},"message":"drivers: update leds from xiaomi\n\nChange-Id: I99771938e81140c79a76df790dd38e3b086f9271\nSigned-off-by: rebelos ","distinct":true,"url":"https://api.github.com/repos/rebelos/msm8226_caf/commits/77143f9b4a81c8bf49ee9d2f854916e2167d1b1b"}]},"public":true,"created_at":"2015-01-01T15:11:28Z"} +,{"id":"2489656362","type":"PushEvent","actor":{"id":300059,"login":"ferentchak","gravatar_id":"","url":"https://api.github.com/users/ferentchak","avatar_url":"https://avatars.githubusercontent.com/u/300059?"},"repo":{"id":28543893,"name":"ferentchak/Dinero","url":"https://api.github.com/repos/ferentchak/Dinero"},"payload":{"push_id":536866382,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8e90c7c2ad4404e89df7af696c37e0e860ab8f2b","before":"6a53316686dd14c5c50867ebd7a9ba229f6b45f3","commits":[{"sha":"8e90c7c2ad4404e89df7af696c37e0e860ab8f2b","author":{"email":"cbdb0cc7f3f5b4be81a75fa7242590e3e9882e1e@rallydev.com","name":"Charles Ferentchak"},"message":"Splitting files into components","distinct":true,"url":"https://api.github.com/repos/ferentchak/Dinero/commits/8e90c7c2ad4404e89df7af696c37e0e860ab8f2b"}]},"public":true,"created_at":"2015-01-01T15:11:29Z"} +,{"id":"2489656363","type":"CreateEvent","actor":{"id":5006518,"login":"marcusbirkin","gravatar_id":"","url":"https://api.github.com/users/marcusbirkin","avatar_url":"https://avatars.githubusercontent.com/u/5006518?"},"repo":{"id":28668016,"name":"marcusbirkin/BGT3xxx","url":"https://api.github.com/repos/marcusbirkin/BGT3xxx"},"payload":{"ref":"dkms","ref_type":"branch","master_branch":"master","description":"Blackgold 3xxx Linux Drivers","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:11:30Z"} +,{"id":"2489656365","type":"IssuesEvent","actor":{"id":2717002,"login":"thetobby","gravatar_id":"","url":"https://api.github.com/users/thetobby","avatar_url":"https://avatars.githubusercontent.com/u/2717002?"},"repo":{"id":28650025,"name":"thetobby/Tmal","url":"https://api.github.com/repos/thetobby/Tmal"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/thetobby/Tmal/issues/6","labels_url":"https://api.github.com/repos/thetobby/Tmal/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/thetobby/Tmal/issues/6/comments","events_url":"https://api.github.com/repos/thetobby/Tmal/issues/6/events","html_url":"https://github.com/thetobby/Tmal/issues/6","id":53221570,"number":6,"title":"Tooltip","user":{"login":"thetobby","id":2717002,"avatar_url":"https://avatars.githubusercontent.com/u/2717002?v=3","gravatar_id":"","url":"https://api.github.com/users/thetobby","html_url":"https://github.com/thetobby","followers_url":"https://api.github.com/users/thetobby/followers","following_url":"https://api.github.com/users/thetobby/following{/other_user}","gists_url":"https://api.github.com/users/thetobby/gists{/gist_id}","starred_url":"https://api.github.com/users/thetobby/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thetobby/subscriptions","organizations_url":"https://api.github.com/users/thetobby/orgs","repos_url":"https://api.github.com/users/thetobby/repos","events_url":"https://api.github.com/users/thetobby/events{/privacy}","received_events_url":"https://api.github.com/users/thetobby/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/thetobby/Tmal/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:11:30Z","updated_at":"2015-01-01T15:11:30Z","closed_at":null,"body":"Enhance the usability"}},"public":true,"created_at":"2015-01-01T15:11:30Z"} +,{"id":"2489656366","type":"WatchEvent","actor":{"id":2748262,"login":"Prefinem","gravatar_id":"","url":"https://api.github.com/users/Prefinem","avatar_url":"https://avatars.githubusercontent.com/u/2748262?"},"repo":{"id":26730195,"name":"cachethq/Cachet","url":"https://api.github.com/repos/cachethq/Cachet"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:11:30Z","org":{"id":9951502,"login":"cachethq","gravatar_id":"","url":"https://api.github.com/orgs/cachethq","avatar_url":"https://avatars.githubusercontent.com/u/9951502?"}} +,{"id":"2489656368","type":"PullRequestEvent","actor":{"id":1029874,"login":"pommedeterresautee","gravatar_id":"","url":"https://api.github.com/users/pommedeterresautee","avatar_url":"https://avatars.githubusercontent.com/u/1029874?"},"repo":{"id":16587283,"name":"tqchen/xgboost","url":"https://api.github.com/repos/tqchen/xgboost"},"payload":{"action":"opened","number":131,"pull_request":{"url":"https://api.github.com/repos/tqchen/xgboost/pulls/131","id":26743856,"html_url":"https://github.com/tqchen/xgboost/pull/131","diff_url":"https://github.com/tqchen/xgboost/pull/131.diff","patch_url":"https://github.com/tqchen/xgboost/pull/131.patch","issue_url":"https://api.github.com/repos/tqchen/xgboost/issues/131","number":131,"state":"open","locked":false,"title":"Return history as data.table for cross validation + other fixes","user":{"login":"pommedeterresautee","id":1029874,"avatar_url":"https://avatars.githubusercontent.com/u/1029874?v=3","gravatar_id":"","url":"https://api.github.com/users/pommedeterresautee","html_url":"https://github.com/pommedeterresautee","followers_url":"https://api.github.com/users/pommedeterresautee/followers","following_url":"https://api.github.com/users/pommedeterresautee/following{/other_user}","gists_url":"https://api.github.com/users/pommedeterresautee/gists{/gist_id}","starred_url":"https://api.github.com/users/pommedeterresautee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pommedeterresautee/subscriptions","organizations_url":"https://api.github.com/users/pommedeterresautee/orgs","repos_url":"https://api.github.com/users/pommedeterresautee/repos","events_url":"https://api.github.com/users/pommedeterresautee/events{/privacy}","received_events_url":"https://api.github.com/users/pommedeterresautee/received_events","type":"User","site_admin":false},"body":"link to https://github.com/tqchen/xgboost/issues/123 and https://github.com/tqchen/xgboost/issues/114","created_at":"2015-01-01T15:11:30Z","updated_at":"2015-01-01T15:11:30Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/tqchen/xgboost/pulls/131/commits","review_comments_url":"https://api.github.com/repos/tqchen/xgboost/pulls/131/comments","review_comment_url":"https://api.github.com/repos/tqchen/xgboost/pulls/comments/{number}","comments_url":"https://api.github.com/repos/tqchen/xgboost/issues/131/comments","statuses_url":"https://api.github.com/repos/tqchen/xgboost/statuses/8bbe45eed26f3a8fd87b574dd7c5eb4fce6c3fc1","head":{"label":"pommedeterresautee:master","ref":"master","sha":"8bbe45eed26f3a8fd87b574dd7c5eb4fce6c3fc1","user":{"login":"pommedeterresautee","id":1029874,"avatar_url":"https://avatars.githubusercontent.com/u/1029874?v=3","gravatar_id":"","url":"https://api.github.com/users/pommedeterresautee","html_url":"https://github.com/pommedeterresautee","followers_url":"https://api.github.com/users/pommedeterresautee/followers","following_url":"https://api.github.com/users/pommedeterresautee/following{/other_user}","gists_url":"https://api.github.com/users/pommedeterresautee/gists{/gist_id}","starred_url":"https://api.github.com/users/pommedeterresautee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pommedeterresautee/subscriptions","organizations_url":"https://api.github.com/users/pommedeterresautee/orgs","repos_url":"https://api.github.com/users/pommedeterresautee/repos","events_url":"https://api.github.com/users/pommedeterresautee/events{/privacy}","received_events_url":"https://api.github.com/users/pommedeterresautee/received_events","type":"User","site_admin":false},"repo":{"id":28487586,"name":"xgboost","full_name":"pommedeterresautee/xgboost","owner":{"login":"pommedeterresautee","id":1029874,"avatar_url":"https://avatars.githubusercontent.com/u/1029874?v=3","gravatar_id":"","url":"https://api.github.com/users/pommedeterresautee","html_url":"https://github.com/pommedeterresautee","followers_url":"https://api.github.com/users/pommedeterresautee/followers","following_url":"https://api.github.com/users/pommedeterresautee/following{/other_user}","gists_url":"https://api.github.com/users/pommedeterresautee/gists{/gist_id}","starred_url":"https://api.github.com/users/pommedeterresautee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pommedeterresautee/subscriptions","organizations_url":"https://api.github.com/users/pommedeterresautee/orgs","repos_url":"https://api.github.com/users/pommedeterresautee/repos","events_url":"https://api.github.com/users/pommedeterresautee/events{/privacy}","received_events_url":"https://api.github.com/users/pommedeterresautee/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/pommedeterresautee/xgboost","description":"eXtreme Gradient Boosting (Tree) Library","fork":true,"url":"https://api.github.com/repos/pommedeterresautee/xgboost","forks_url":"https://api.github.com/repos/pommedeterresautee/xgboost/forks","keys_url":"https://api.github.com/repos/pommedeterresautee/xgboost/keys{/key_id}","collaborators_url":"https://api.github.com/repos/pommedeterresautee/xgboost/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/pommedeterresautee/xgboost/teams","hooks_url":"https://api.github.com/repos/pommedeterresautee/xgboost/hooks","issue_events_url":"https://api.github.com/repos/pommedeterresautee/xgboost/issues/events{/number}","events_url":"https://api.github.com/repos/pommedeterresautee/xgboost/events","assignees_url":"https://api.github.com/repos/pommedeterresautee/xgboost/assignees{/user}","branches_url":"https://api.github.com/repos/pommedeterresautee/xgboost/branches{/branch}","tags_url":"https://api.github.com/repos/pommedeterresautee/xgboost/tags","blobs_url":"https://api.github.com/repos/pommedeterresautee/xgboost/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/pommedeterresautee/xgboost/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/pommedeterresautee/xgboost/git/refs{/sha}","trees_url":"https://api.github.com/repos/pommedeterresautee/xgboost/git/trees{/sha}","statuses_url":"https://api.github.com/repos/pommedeterresautee/xgboost/statuses/{sha}","languages_url":"https://api.github.com/repos/pommedeterresautee/xgboost/languages","stargazers_url":"https://api.github.com/repos/pommedeterresautee/xgboost/stargazers","contributors_url":"https://api.github.com/repos/pommedeterresautee/xgboost/contributors","subscribers_url":"https://api.github.com/repos/pommedeterresautee/xgboost/subscribers","subscription_url":"https://api.github.com/repos/pommedeterresautee/xgboost/subscription","commits_url":"https://api.github.com/repos/pommedeterresautee/xgboost/commits{/sha}","git_commits_url":"https://api.github.com/repos/pommedeterresautee/xgboost/git/commits{/sha}","comments_url":"https://api.github.com/repos/pommedeterresautee/xgboost/comments{/number}","issue_comment_url":"https://api.github.com/repos/pommedeterresautee/xgboost/issues/comments/{number}","contents_url":"https://api.github.com/repos/pommedeterresautee/xgboost/contents/{+path}","compare_url":"https://api.github.com/repos/pommedeterresautee/xgboost/compare/{base}...{head}","merges_url":"https://api.github.com/repos/pommedeterresautee/xgboost/merges","archive_url":"https://api.github.com/repos/pommedeterresautee/xgboost/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/pommedeterresautee/xgboost/downloads","issues_url":"https://api.github.com/repos/pommedeterresautee/xgboost/issues{/number}","pulls_url":"https://api.github.com/repos/pommedeterresautee/xgboost/pulls{/number}","milestones_url":"https://api.github.com/repos/pommedeterresautee/xgboost/milestones{/number}","notifications_url":"https://api.github.com/repos/pommedeterresautee/xgboost/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/pommedeterresautee/xgboost/labels{/name}","releases_url":"https://api.github.com/repos/pommedeterresautee/xgboost/releases{/id}","created_at":"2014-12-25T17:42:00Z","updated_at":"2015-01-01T15:09:56Z","pushed_at":"2015-01-01T15:09:56Z","git_url":"git://github.com/pommedeterresautee/xgboost.git","ssh_url":"git@github.com:pommedeterresautee/xgboost.git","clone_url":"https://github.com/pommedeterresautee/xgboost.git","svn_url":"https://github.com/pommedeterresautee/xgboost","homepage":"","size":2070,"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":"tqchen:master","ref":"master","sha":"3974231440ad2d53a7ddb2f419e65fa9fd6d8b06","user":{"login":"tqchen","id":2577440,"avatar_url":"https://avatars.githubusercontent.com/u/2577440?v=3","gravatar_id":"","url":"https://api.github.com/users/tqchen","html_url":"https://github.com/tqchen","followers_url":"https://api.github.com/users/tqchen/followers","following_url":"https://api.github.com/users/tqchen/following{/other_user}","gists_url":"https://api.github.com/users/tqchen/gists{/gist_id}","starred_url":"https://api.github.com/users/tqchen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tqchen/subscriptions","organizations_url":"https://api.github.com/users/tqchen/orgs","repos_url":"https://api.github.com/users/tqchen/repos","events_url":"https://api.github.com/users/tqchen/events{/privacy}","received_events_url":"https://api.github.com/users/tqchen/received_events","type":"User","site_admin":false},"repo":{"id":16587283,"name":"xgboost","full_name":"tqchen/xgboost","owner":{"login":"tqchen","id":2577440,"avatar_url":"https://avatars.githubusercontent.com/u/2577440?v=3","gravatar_id":"","url":"https://api.github.com/users/tqchen","html_url":"https://github.com/tqchen","followers_url":"https://api.github.com/users/tqchen/followers","following_url":"https://api.github.com/users/tqchen/following{/other_user}","gists_url":"https://api.github.com/users/tqchen/gists{/gist_id}","starred_url":"https://api.github.com/users/tqchen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tqchen/subscriptions","organizations_url":"https://api.github.com/users/tqchen/orgs","repos_url":"https://api.github.com/users/tqchen/repos","events_url":"https://api.github.com/users/tqchen/events{/privacy}","received_events_url":"https://api.github.com/users/tqchen/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/tqchen/xgboost","description":"eXtreme Gradient Boosting (Tree) Library","fork":false,"url":"https://api.github.com/repos/tqchen/xgboost","forks_url":"https://api.github.com/repos/tqchen/xgboost/forks","keys_url":"https://api.github.com/repos/tqchen/xgboost/keys{/key_id}","collaborators_url":"https://api.github.com/repos/tqchen/xgboost/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/tqchen/xgboost/teams","hooks_url":"https://api.github.com/repos/tqchen/xgboost/hooks","issue_events_url":"https://api.github.com/repos/tqchen/xgboost/issues/events{/number}","events_url":"https://api.github.com/repos/tqchen/xgboost/events","assignees_url":"https://api.github.com/repos/tqchen/xgboost/assignees{/user}","branches_url":"https://api.github.com/repos/tqchen/xgboost/branches{/branch}","tags_url":"https://api.github.com/repos/tqchen/xgboost/tags","blobs_url":"https://api.github.com/repos/tqchen/xgboost/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/tqchen/xgboost/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/tqchen/xgboost/git/refs{/sha}","trees_url":"https://api.github.com/repos/tqchen/xgboost/git/trees{/sha}","statuses_url":"https://api.github.com/repos/tqchen/xgboost/statuses/{sha}","languages_url":"https://api.github.com/repos/tqchen/xgboost/languages","stargazers_url":"https://api.github.com/repos/tqchen/xgboost/stargazers","contributors_url":"https://api.github.com/repos/tqchen/xgboost/contributors","subscribers_url":"https://api.github.com/repos/tqchen/xgboost/subscribers","subscription_url":"https://api.github.com/repos/tqchen/xgboost/subscription","commits_url":"https://api.github.com/repos/tqchen/xgboost/commits{/sha}","git_commits_url":"https://api.github.com/repos/tqchen/xgboost/git/commits{/sha}","comments_url":"https://api.github.com/repos/tqchen/xgboost/comments{/number}","issue_comment_url":"https://api.github.com/repos/tqchen/xgboost/issues/comments/{number}","contents_url":"https://api.github.com/repos/tqchen/xgboost/contents/{+path}","compare_url":"https://api.github.com/repos/tqchen/xgboost/compare/{base}...{head}","merges_url":"https://api.github.com/repos/tqchen/xgboost/merges","archive_url":"https://api.github.com/repos/tqchen/xgboost/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/tqchen/xgboost/downloads","issues_url":"https://api.github.com/repos/tqchen/xgboost/issues{/number}","pulls_url":"https://api.github.com/repos/tqchen/xgboost/pulls{/number}","milestones_url":"https://api.github.com/repos/tqchen/xgboost/milestones{/number}","notifications_url":"https://api.github.com/repos/tqchen/xgboost/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/tqchen/xgboost/labels{/name}","releases_url":"https://api.github.com/repos/tqchen/xgboost/releases{/id}","created_at":"2014-02-06T17:28:03Z","updated_at":"2014-12-31T10:32:13Z","pushed_at":"2014-12-31T10:32:13Z","git_url":"git://github.com/tqchen/xgboost.git","ssh_url":"git@github.com:tqchen/xgboost.git","clone_url":"https://github.com/tqchen/xgboost.git","svn_url":"https://github.com/tqchen/xgboost","homepage":"","size":17203,"stargazers_count":396,"watchers_count":396,"language":"C++","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":172,"mirror_url":null,"open_issues_count":17,"forks":172,"open_issues":17,"watchers":396,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/tqchen/xgboost/pulls/131"},"html":{"href":"https://github.com/tqchen/xgboost/pull/131"},"issue":{"href":"https://api.github.com/repos/tqchen/xgboost/issues/131"},"comments":{"href":"https://api.github.com/repos/tqchen/xgboost/issues/131/comments"},"review_comments":{"href":"https://api.github.com/repos/tqchen/xgboost/pulls/131/comments"},"review_comment":{"href":"https://api.github.com/repos/tqchen/xgboost/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/tqchen/xgboost/pulls/131/commits"},"statuses":{"href":"https://api.github.com/repos/tqchen/xgboost/statuses/8bbe45eed26f3a8fd87b574dd7c5eb4fce6c3fc1"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":5,"additions":50,"deletions":12,"changed_files":7}},"public":true,"created_at":"2015-01-01T15:11:30Z"} +,{"id":"2489656369","type":"PushEvent","actor":{"id":3346407,"login":"carpedm20","gravatar_id":"","url":"https://api.github.com/users/carpedm20","avatar_url":"https://avatars.githubusercontent.com/u/3346407?"},"repo":{"id":28637149,"name":"carpedm20/i-crawl-news","url":"https://api.github.com/repos/carpedm20/i-crawl-news"},"payload":{"push_id":536866384,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0ec0c49eb30ee2a04a3d553710cc0191258ea158","before":"35db5e97e7e393a505df18ab3993b6ffe0daf628","commits":[{"sha":"0ec0c49eb30ee2a04a3d553710cc0191258ea158","author":{"email":"471df557d45ee16008544140858487a2f3bb2c39@gmail.com","name":"Taehoon Kim"},"message":"google parser finished","distinct":true,"url":"https://api.github.com/repos/carpedm20/i-crawl-news/commits/0ec0c49eb30ee2a04a3d553710cc0191258ea158"}]},"public":true,"created_at":"2015-01-01T15:11:30Z"} +,{"id":"2489656370","type":"PushEvent","actor":{"id":75190,"login":"derickbailey","gravatar_id":"","url":"https://api.github.com/users/derickbailey","avatar_url":"https://avatars.githubusercontent.com/u/75190?"},"repo":{"id":28672164,"name":"derickbailey/mongrate","url":"https://api.github.com/repos/derickbailey/mongrate"},"payload":{"push_id":536866385,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"14775c6b5ec2765e29eef665dc2ac0a0dafabeae","before":"b4d82206b30f36fa3a07b98fe361f3d40ac206be","commits":[{"sha":"14775c6b5ec2765e29eef665dc2ac0a0dafabeae","author":{"email":"c5ae6d2302ad0dc3d9f198d2056782b20f2a00b7@gmail.com","name":"Derick Bailey"},"message":"fixing issue with promises in step runner","distinct":true,"url":"https://api.github.com/repos/derickbailey/mongrate/commits/14775c6b5ec2765e29eef665dc2ac0a0dafabeae"}]},"public":true,"created_at":"2015-01-01T15:11:30Z"} +,{"id":"2489656371","type":"ForkEvent","actor":{"id":5447064,"login":"vipul-sharma20","gravatar_id":"","url":"https://api.github.com/users/vipul-sharma20","avatar_url":"https://avatars.githubusercontent.com/u/5447064?"},"repo":{"id":2776635,"name":"openhatch/oh-mainline","url":"https://api.github.com/repos/openhatch/oh-mainline"},"payload":{"forkee":{"id":28688798,"name":"oh-mainline","full_name":"vipul-sharma20/oh-mainline","owner":{"login":"vipul-sharma20","id":5447064,"avatar_url":"https://avatars.githubusercontent.com/u/5447064?v=3","gravatar_id":"","url":"https://api.github.com/users/vipul-sharma20","html_url":"https://github.com/vipul-sharma20","followers_url":"https://api.github.com/users/vipul-sharma20/followers","following_url":"https://api.github.com/users/vipul-sharma20/following{/other_user}","gists_url":"https://api.github.com/users/vipul-sharma20/gists{/gist_id}","starred_url":"https://api.github.com/users/vipul-sharma20/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vipul-sharma20/subscriptions","organizations_url":"https://api.github.com/users/vipul-sharma20/orgs","repos_url":"https://api.github.com/users/vipul-sharma20/repos","events_url":"https://api.github.com/users/vipul-sharma20/events{/privacy}","received_events_url":"https://api.github.com/users/vipul-sharma20/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/vipul-sharma20/oh-mainline","description":"The code that runs openhatch.org","fork":true,"url":"https://api.github.com/repos/vipul-sharma20/oh-mainline","forks_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/forks","keys_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/keys{/key_id}","collaborators_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/teams","hooks_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/hooks","issue_events_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/issues/events{/number}","events_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/events","assignees_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/assignees{/user}","branches_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/branches{/branch}","tags_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/tags","blobs_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/git/refs{/sha}","trees_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/git/trees{/sha}","statuses_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/statuses/{sha}","languages_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/languages","stargazers_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/stargazers","contributors_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/contributors","subscribers_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/subscribers","subscription_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/subscription","commits_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/commits{/sha}","git_commits_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/git/commits{/sha}","comments_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/comments{/number}","issue_comment_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/issues/comments/{number}","contents_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/contents/{+path}","compare_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/compare/{base}...{head}","merges_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/merges","archive_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/downloads","issues_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/issues{/number}","pulls_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/pulls{/number}","milestones_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/milestones{/number}","notifications_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/labels{/name}","releases_url":"https://api.github.com/repos/vipul-sharma20/oh-mainline/releases{/id}","created_at":"2015-01-01T15:11:30Z","updated_at":"2014-12-30T22:08:48Z","pushed_at":"2014-12-30T22:08:46Z","git_url":"git://github.com/vipul-sharma20/oh-mainline.git","ssh_url":"git@github.com:vipul-sharma20/oh-mainline.git","clone_url":"https://github.com/vipul-sharma20/oh-mainline.git","svn_url":"https://github.com/vipul-sharma20/oh-mainline","homepage":"http://openhatch.org","size":97152,"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:11:30Z","org":{"id":1191811,"login":"openhatch","gravatar_id":"","url":"https://api.github.com/orgs/openhatch","avatar_url":"https://avatars.githubusercontent.com/u/1191811?"}} +,{"id":"2489656372","type":"ForkEvent","actor":{"id":1719745,"login":"rwdownearth","gravatar_id":"","url":"https://api.github.com/users/rwdownearth","avatar_url":"https://avatars.githubusercontent.com/u/1719745?"},"repo":{"id":959908,"name":"OpenRA/OpenRA","url":"https://api.github.com/repos/OpenRA/OpenRA"},"payload":{"forkee":{"id":28688799,"name":"OpenRA","full_name":"rwdownearth/OpenRA","owner":{"login":"rwdownearth","id":1719745,"avatar_url":"https://avatars.githubusercontent.com/u/1719745?v=3","gravatar_id":"","url":"https://api.github.com/users/rwdownearth","html_url":"https://github.com/rwdownearth","followers_url":"https://api.github.com/users/rwdownearth/followers","following_url":"https://api.github.com/users/rwdownearth/following{/other_user}","gists_url":"https://api.github.com/users/rwdownearth/gists{/gist_id}","starred_url":"https://api.github.com/users/rwdownearth/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rwdownearth/subscriptions","organizations_url":"https://api.github.com/users/rwdownearth/orgs","repos_url":"https://api.github.com/users/rwdownearth/repos","events_url":"https://api.github.com/users/rwdownearth/events{/privacy}","received_events_url":"https://api.github.com/users/rwdownearth/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/rwdownearth/OpenRA","description":"An open-source implementation of the Command & Conquer: Red Alert engine using .NET/Mono and OpenGL. Runs on Windows, Linux and Mac OS X.","fork":true,"url":"https://api.github.com/repos/rwdownearth/OpenRA","forks_url":"https://api.github.com/repos/rwdownearth/OpenRA/forks","keys_url":"https://api.github.com/repos/rwdownearth/OpenRA/keys{/key_id}","collaborators_url":"https://api.github.com/repos/rwdownearth/OpenRA/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/rwdownearth/OpenRA/teams","hooks_url":"https://api.github.com/repos/rwdownearth/OpenRA/hooks","issue_events_url":"https://api.github.com/repos/rwdownearth/OpenRA/issues/events{/number}","events_url":"https://api.github.com/repos/rwdownearth/OpenRA/events","assignees_url":"https://api.github.com/repos/rwdownearth/OpenRA/assignees{/user}","branches_url":"https://api.github.com/repos/rwdownearth/OpenRA/branches{/branch}","tags_url":"https://api.github.com/repos/rwdownearth/OpenRA/tags","blobs_url":"https://api.github.com/repos/rwdownearth/OpenRA/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/rwdownearth/OpenRA/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/rwdownearth/OpenRA/git/refs{/sha}","trees_url":"https://api.github.com/repos/rwdownearth/OpenRA/git/trees{/sha}","statuses_url":"https://api.github.com/repos/rwdownearth/OpenRA/statuses/{sha}","languages_url":"https://api.github.com/repos/rwdownearth/OpenRA/languages","stargazers_url":"https://api.github.com/repos/rwdownearth/OpenRA/stargazers","contributors_url":"https://api.github.com/repos/rwdownearth/OpenRA/contributors","subscribers_url":"https://api.github.com/repos/rwdownearth/OpenRA/subscribers","subscription_url":"https://api.github.com/repos/rwdownearth/OpenRA/subscription","commits_url":"https://api.github.com/repos/rwdownearth/OpenRA/commits{/sha}","git_commits_url":"https://api.github.com/repos/rwdownearth/OpenRA/git/commits{/sha}","comments_url":"https://api.github.com/repos/rwdownearth/OpenRA/comments{/number}","issue_comment_url":"https://api.github.com/repos/rwdownearth/OpenRA/issues/comments/{number}","contents_url":"https://api.github.com/repos/rwdownearth/OpenRA/contents/{+path}","compare_url":"https://api.github.com/repos/rwdownearth/OpenRA/compare/{base}...{head}","merges_url":"https://api.github.com/repos/rwdownearth/OpenRA/merges","archive_url":"https://api.github.com/repos/rwdownearth/OpenRA/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/rwdownearth/OpenRA/downloads","issues_url":"https://api.github.com/repos/rwdownearth/OpenRA/issues{/number}","pulls_url":"https://api.github.com/repos/rwdownearth/OpenRA/pulls{/number}","milestones_url":"https://api.github.com/repos/rwdownearth/OpenRA/milestones{/number}","notifications_url":"https://api.github.com/repos/rwdownearth/OpenRA/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/rwdownearth/OpenRA/labels{/name}","releases_url":"https://api.github.com/repos/rwdownearth/OpenRA/releases{/id}","created_at":"2015-01-01T15:11:30Z","updated_at":"2015-01-01T14:38:42Z","pushed_at":"2015-01-01T14:38:42Z","git_url":"git://github.com/rwdownearth/OpenRA.git","ssh_url":"git@github.com:rwdownearth/OpenRA.git","clone_url":"https://github.com/rwdownearth/OpenRA.git","svn_url":"https://github.com/rwdownearth/OpenRA","homepage":"http://www.openra.net","size":146777,"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":"bleed","public":true}},"public":true,"created_at":"2015-01-01T15:11:31Z","org":{"id":409046,"login":"OpenRA","gravatar_id":"","url":"https://api.github.com/orgs/OpenRA","avatar_url":"https://avatars.githubusercontent.com/u/409046?"}} +,{"id":"2489656373","type":"IssueCommentEvent","actor":{"id":4788347,"login":"TheAnthonyNL","gravatar_id":"","url":"https://api.github.com/users/TheAnthonyNL","avatar_url":"https://avatars.githubusercontent.com/u/4788347?"},"repo":{"id":8165636,"name":"SteamDatabase/SteamDatabase","url":"https://api.github.com/repos/SteamDatabase/SteamDatabase"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/SteamDatabase/SteamDatabase/issues/295","labels_url":"https://api.github.com/repos/SteamDatabase/SteamDatabase/issues/295/labels{/name}","comments_url":"https://api.github.com/repos/SteamDatabase/SteamDatabase/issues/295/comments","events_url":"https://api.github.com/repos/SteamDatabase/SteamDatabase/issues/295/events","html_url":"https://github.com/SteamDatabase/SteamDatabase/issues/295","id":53220888,"number":295,"title":"SteamDatabaseBackend pooling issue","user":{"login":"TheAnthonyNL","id":4788347,"avatar_url":"https://avatars.githubusercontent.com/u/4788347?v=3","gravatar_id":"","url":"https://api.github.com/users/TheAnthonyNL","html_url":"https://github.com/TheAnthonyNL","followers_url":"https://api.github.com/users/TheAnthonyNL/followers","following_url":"https://api.github.com/users/TheAnthonyNL/following{/other_user}","gists_url":"https://api.github.com/users/TheAnthonyNL/gists{/gist_id}","starred_url":"https://api.github.com/users/TheAnthonyNL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TheAnthonyNL/subscriptions","organizations_url":"https://api.github.com/users/TheAnthonyNL/orgs","repos_url":"https://api.github.com/users/TheAnthonyNL/repos","events_url":"https://api.github.com/users/TheAnthonyNL/events{/privacy}","received_events_url":"https://api.github.com/users/TheAnthonyNL/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T14:36:20Z","updated_at":"2015-01-01T15:11:31Z","closed_at":null,"body":"The timeout period elapsed prior to obtaining a connection from the pool. \r\n\r\nThis may have occurred because all pooled connections were in use and max pool size was reached.\r\n\r\nAny idea how to solve this?"},"comment":{"url":"https://api.github.com/repos/SteamDatabase/SteamDatabase/issues/comments/68488743","html_url":"https://github.com/SteamDatabase/SteamDatabase/issues/295#issuecomment-68488743","issue_url":"https://api.github.com/repos/SteamDatabase/SteamDatabase/issues/295","id":68488743,"user":{"login":"TheAnthonyNL","id":4788347,"avatar_url":"https://avatars.githubusercontent.com/u/4788347?v=3","gravatar_id":"","url":"https://api.github.com/users/TheAnthonyNL","html_url":"https://github.com/TheAnthonyNL","followers_url":"https://api.github.com/users/TheAnthonyNL/followers","following_url":"https://api.github.com/users/TheAnthonyNL/following{/other_user}","gists_url":"https://api.github.com/users/TheAnthonyNL/gists{/gist_id}","starred_url":"https://api.github.com/users/TheAnthonyNL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TheAnthonyNL/subscriptions","organizations_url":"https://api.github.com/users/TheAnthonyNL/orgs","repos_url":"https://api.github.com/users/TheAnthonyNL/repos","events_url":"https://api.github.com/users/TheAnthonyNL/events{/privacy}","received_events_url":"https://api.github.com/users/TheAnthonyNL/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:11:31Z","updated_at":"2015-01-01T15:11:31Z","body":"Happens always on ::\r\n\r\npublic static MySqlDataReader ExecuteReader(string text, params MySqlParameter[] parameters)\r\n {\r\n return MySqlHelper.ExecuteReader(Settings.Current.ConnectionString, text, parameters);\r\n }\r\n\r\n public static int ExecuteNonQuery(string text, params MySqlParameter[] parameters)\r\n {\r\n return MySqlHelper.ExecuteNonQuery(Settings.Current.ConnectionString, text, parameters);\r\n }\r\n\r\nnote: im using xampp (couldn't find the pool or timeout settings yet in php/mysql or apache ini files)"}},"public":true,"created_at":"2015-01-01T15:11:31Z","org":{"id":3866120,"login":"SteamDatabase","gravatar_id":"","url":"https://api.github.com/orgs/SteamDatabase","avatar_url":"https://avatars.githubusercontent.com/u/3866120?"}} +,{"id":"2489656375","type":"WatchEvent","actor":{"id":5799774,"login":"jackkd","gravatar_id":"","url":"https://api.github.com/users/jackkd","avatar_url":"https://avatars.githubusercontent.com/u/5799774?"},"repo":{"id":10050890,"name":"aleax/openscada","url":"https://api.github.com/repos/aleax/openscada"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:11:31Z"} +,{"id":"2489656379","type":"PushEvent","actor":{"id":2964928,"login":"taylorhxu","gravatar_id":"","url":"https://api.github.com/users/taylorhxu","avatar_url":"https://avatars.githubusercontent.com/u/2964928?"},"repo":{"id":25008698,"name":"taylorhxu/taylorhxu.github.io","url":"https://api.github.com/repos/taylorhxu/taylorhxu.github.io"},"payload":{"push_id":536866388,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fea49bc4368da20979ceb39a74a564673d3a09f2","before":"fbc77765a4d854c57a0b32a4324df45e74c07b93","commits":[{"sha":"fea49bc4368da20979ceb39a74a564673d3a09f2","author":{"email":"bbaab3af5605ab26fe8b9502a6ab51a673b35a8b@gmail.com","name":"Taylor Xu"},"message":"delete archive.html archive h2 line","distinct":true,"url":"https://api.github.com/repos/taylorhxu/taylorhxu.github.io/commits/fea49bc4368da20979ceb39a74a564673d3a09f2"}]},"public":true,"created_at":"2015-01-01T15:11:32Z"} +,{"id":"2489656383","type":"PullRequestEvent","actor":{"id":8983142,"login":"Elmister","gravatar_id":"","url":"https://api.github.com/users/Elmister","avatar_url":"https://avatars.githubusercontent.com/u/8983142?"},"repo":{"id":15231212,"name":"Automattic/jetpack","url":"https://api.github.com/repos/Automattic/jetpack"},"payload":{"action":"opened","number":1470,"pull_request":{"url":"https://api.github.com/repos/Automattic/jetpack/pulls/1470","id":26743857,"html_url":"https://github.com/Automattic/jetpack/pull/1470","diff_url":"https://github.com/Automattic/jetpack/pull/1470.diff","patch_url":"https://github.com/Automattic/jetpack/pull/1470.patch","issue_url":"https://api.github.com/repos/Automattic/jetpack/issues/1470","number":1470,"state":"open","locked":false,"title":"Update subscriptions.php","user":{"login":"Elmister","id":8983142,"avatar_url":"https://avatars.githubusercontent.com/u/8983142?v=3","gravatar_id":"","url":"https://api.github.com/users/Elmister","html_url":"https://github.com/Elmister","followers_url":"https://api.github.com/users/Elmister/followers","following_url":"https://api.github.com/users/Elmister/following{/other_user}","gists_url":"https://api.github.com/users/Elmister/gists{/gist_id}","starred_url":"https://api.github.com/users/Elmister/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Elmister/subscriptions","organizations_url":"https://api.github.com/users/Elmister/orgs","repos_url":"https://api.github.com/users/Elmister/repos","events_url":"https://api.github.com/users/Elmister/events{/privacy}","received_events_url":"https://api.github.com/users/Elmister/received_events","type":"User","site_admin":false},"body":"I found answer in topic \r\nhttp://stackoverflow.com/questions/2984311/delete-default-value-of-an-input-text-on-click \r\nfrom (Jani).\r\nWith this modyfication user can click on input field and if it has default value it will be cleared. \r\nHandels click out element (inserted text remains).\r\n\r\nJust insert this script (after line 648):\r\n'script>\r\nfunction onBlur(el) {if (el.value == '') { el.value = el.defaultValue; }}\r\nfunction onFocus(el) {if (el.value == el.defaultValue) {el.value = '';}}\r\n\" id=\"\" placeholder=\"\" /'\r\n\r\nto:\r\n'input type=\"email\" name=\"email\" value=\"\" id=\"\" placeholder=\"\"onblur=\"onBlur(this)\" onfocus=\"onFocus(this)\" /'","created_at":"2015-01-01T15:11:32Z","updated_at":"2015-01-01T15:11:32Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/Automattic/jetpack/pulls/1470/commits","review_comments_url":"https://api.github.com/repos/Automattic/jetpack/pulls/1470/comments","review_comment_url":"https://api.github.com/repos/Automattic/jetpack/pulls/comments/{number}","comments_url":"https://api.github.com/repos/Automattic/jetpack/issues/1470/comments","statuses_url":"https://api.github.com/repos/Automattic/jetpack/statuses/2dfbf595782ad4c2b57be5cad77b0acc4ad48d8e","head":{"label":"Elmister:patch-1","ref":"patch-1","sha":"2dfbf595782ad4c2b57be5cad77b0acc4ad48d8e","user":{"login":"Elmister","id":8983142,"avatar_url":"https://avatars.githubusercontent.com/u/8983142?v=3","gravatar_id":"","url":"https://api.github.com/users/Elmister","html_url":"https://github.com/Elmister","followers_url":"https://api.github.com/users/Elmister/followers","following_url":"https://api.github.com/users/Elmister/following{/other_user}","gists_url":"https://api.github.com/users/Elmister/gists{/gist_id}","starred_url":"https://api.github.com/users/Elmister/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Elmister/subscriptions","organizations_url":"https://api.github.com/users/Elmister/orgs","repos_url":"https://api.github.com/users/Elmister/repos","events_url":"https://api.github.com/users/Elmister/events{/privacy}","received_events_url":"https://api.github.com/users/Elmister/received_events","type":"User","site_admin":false},"repo":{"id":28688522,"name":"jetpack","full_name":"Elmister/jetpack","owner":{"login":"Elmister","id":8983142,"avatar_url":"https://avatars.githubusercontent.com/u/8983142?v=3","gravatar_id":"","url":"https://api.github.com/users/Elmister","html_url":"https://github.com/Elmister","followers_url":"https://api.github.com/users/Elmister/followers","following_url":"https://api.github.com/users/Elmister/following{/other_user}","gists_url":"https://api.github.com/users/Elmister/gists{/gist_id}","starred_url":"https://api.github.com/users/Elmister/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Elmister/subscriptions","organizations_url":"https://api.github.com/users/Elmister/orgs","repos_url":"https://api.github.com/users/Elmister/repos","events_url":"https://api.github.com/users/Elmister/events{/privacy}","received_events_url":"https://api.github.com/users/Elmister/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Elmister/jetpack","description":"Your WordPress, Streamlined.","fork":true,"url":"https://api.github.com/repos/Elmister/jetpack","forks_url":"https://api.github.com/repos/Elmister/jetpack/forks","keys_url":"https://api.github.com/repos/Elmister/jetpack/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Elmister/jetpack/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Elmister/jetpack/teams","hooks_url":"https://api.github.com/repos/Elmister/jetpack/hooks","issue_events_url":"https://api.github.com/repos/Elmister/jetpack/issues/events{/number}","events_url":"https://api.github.com/repos/Elmister/jetpack/events","assignees_url":"https://api.github.com/repos/Elmister/jetpack/assignees{/user}","branches_url":"https://api.github.com/repos/Elmister/jetpack/branches{/branch}","tags_url":"https://api.github.com/repos/Elmister/jetpack/tags","blobs_url":"https://api.github.com/repos/Elmister/jetpack/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Elmister/jetpack/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Elmister/jetpack/git/refs{/sha}","trees_url":"https://api.github.com/repos/Elmister/jetpack/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Elmister/jetpack/statuses/{sha}","languages_url":"https://api.github.com/repos/Elmister/jetpack/languages","stargazers_url":"https://api.github.com/repos/Elmister/jetpack/stargazers","contributors_url":"https://api.github.com/repos/Elmister/jetpack/contributors","subscribers_url":"https://api.github.com/repos/Elmister/jetpack/subscribers","subscription_url":"https://api.github.com/repos/Elmister/jetpack/subscription","commits_url":"https://api.github.com/repos/Elmister/jetpack/commits{/sha}","git_commits_url":"https://api.github.com/repos/Elmister/jetpack/git/commits{/sha}","comments_url":"https://api.github.com/repos/Elmister/jetpack/comments{/number}","issue_comment_url":"https://api.github.com/repos/Elmister/jetpack/issues/comments/{number}","contents_url":"https://api.github.com/repos/Elmister/jetpack/contents/{+path}","compare_url":"https://api.github.com/repos/Elmister/jetpack/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Elmister/jetpack/merges","archive_url":"https://api.github.com/repos/Elmister/jetpack/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Elmister/jetpack/downloads","issues_url":"https://api.github.com/repos/Elmister/jetpack/issues{/number}","pulls_url":"https://api.github.com/repos/Elmister/jetpack/pulls{/number}","milestones_url":"https://api.github.com/repos/Elmister/jetpack/milestones{/number}","notifications_url":"https://api.github.com/repos/Elmister/jetpack/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Elmister/jetpack/labels{/name}","releases_url":"https://api.github.com/repos/Elmister/jetpack/releases{/id}","created_at":"2015-01-01T14:55:36Z","updated_at":"2015-01-01T14:55:39Z","pushed_at":"2015-01-01T15:09:14Z","git_url":"git://github.com/Elmister/jetpack.git","ssh_url":"git@github.com:Elmister/jetpack.git","clone_url":"https://github.com/Elmister/jetpack.git","svn_url":"https://github.com/Elmister/jetpack","homepage":"http://jetpack.me","size":60527,"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":"Automattic:master","ref":"master","sha":"dc5179cb2cab89ead7976c4afc632127683122c6","user":{"login":"Automattic","id":887802,"avatar_url":"https://avatars.githubusercontent.com/u/887802?v=3","gravatar_id":"","url":"https://api.github.com/users/Automattic","html_url":"https://github.com/Automattic","followers_url":"https://api.github.com/users/Automattic/followers","following_url":"https://api.github.com/users/Automattic/following{/other_user}","gists_url":"https://api.github.com/users/Automattic/gists{/gist_id}","starred_url":"https://api.github.com/users/Automattic/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Automattic/subscriptions","organizations_url":"https://api.github.com/users/Automattic/orgs","repos_url":"https://api.github.com/users/Automattic/repos","events_url":"https://api.github.com/users/Automattic/events{/privacy}","received_events_url":"https://api.github.com/users/Automattic/received_events","type":"Organization","site_admin":false},"repo":{"id":15231212,"name":"jetpack","full_name":"Automattic/jetpack","owner":{"login":"Automattic","id":887802,"avatar_url":"https://avatars.githubusercontent.com/u/887802?v=3","gravatar_id":"","url":"https://api.github.com/users/Automattic","html_url":"https://github.com/Automattic","followers_url":"https://api.github.com/users/Automattic/followers","following_url":"https://api.github.com/users/Automattic/following{/other_user}","gists_url":"https://api.github.com/users/Automattic/gists{/gist_id}","starred_url":"https://api.github.com/users/Automattic/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Automattic/subscriptions","organizations_url":"https://api.github.com/users/Automattic/orgs","repos_url":"https://api.github.com/users/Automattic/repos","events_url":"https://api.github.com/users/Automattic/events{/privacy}","received_events_url":"https://api.github.com/users/Automattic/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/Automattic/jetpack","description":"Your WordPress, Streamlined.","fork":false,"url":"https://api.github.com/repos/Automattic/jetpack","forks_url":"https://api.github.com/repos/Automattic/jetpack/forks","keys_url":"https://api.github.com/repos/Automattic/jetpack/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Automattic/jetpack/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Automattic/jetpack/teams","hooks_url":"https://api.github.com/repos/Automattic/jetpack/hooks","issue_events_url":"https://api.github.com/repos/Automattic/jetpack/issues/events{/number}","events_url":"https://api.github.com/repos/Automattic/jetpack/events","assignees_url":"https://api.github.com/repos/Automattic/jetpack/assignees{/user}","branches_url":"https://api.github.com/repos/Automattic/jetpack/branches{/branch}","tags_url":"https://api.github.com/repos/Automattic/jetpack/tags","blobs_url":"https://api.github.com/repos/Automattic/jetpack/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Automattic/jetpack/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Automattic/jetpack/git/refs{/sha}","trees_url":"https://api.github.com/repos/Automattic/jetpack/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Automattic/jetpack/statuses/{sha}","languages_url":"https://api.github.com/repos/Automattic/jetpack/languages","stargazers_url":"https://api.github.com/repos/Automattic/jetpack/stargazers","contributors_url":"https://api.github.com/repos/Automattic/jetpack/contributors","subscribers_url":"https://api.github.com/repos/Automattic/jetpack/subscribers","subscription_url":"https://api.github.com/repos/Automattic/jetpack/subscription","commits_url":"https://api.github.com/repos/Automattic/jetpack/commits{/sha}","git_commits_url":"https://api.github.com/repos/Automattic/jetpack/git/commits{/sha}","comments_url":"https://api.github.com/repos/Automattic/jetpack/comments{/number}","issue_comment_url":"https://api.github.com/repos/Automattic/jetpack/issues/comments/{number}","contents_url":"https://api.github.com/repos/Automattic/jetpack/contents/{+path}","compare_url":"https://api.github.com/repos/Automattic/jetpack/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Automattic/jetpack/merges","archive_url":"https://api.github.com/repos/Automattic/jetpack/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Automattic/jetpack/downloads","issues_url":"https://api.github.com/repos/Automattic/jetpack/issues{/number}","pulls_url":"https://api.github.com/repos/Automattic/jetpack/pulls{/number}","milestones_url":"https://api.github.com/repos/Automattic/jetpack/milestones{/number}","notifications_url":"https://api.github.com/repos/Automattic/jetpack/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Automattic/jetpack/labels{/name}","releases_url":"https://api.github.com/repos/Automattic/jetpack/releases{/id}","created_at":"2013-12-16T16:43:01Z","updated_at":"2014-12-31T14:27:58Z","pushed_at":"2014-12-30T22:27:49Z","git_url":"git://github.com/Automattic/jetpack.git","ssh_url":"git@github.com:Automattic/jetpack.git","clone_url":"https://github.com/Automattic/jetpack.git","svn_url":"https://github.com/Automattic/jetpack","homepage":"http://jetpack.me","size":60527,"stargazers_count":270,"watchers_count":270,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":192,"mirror_url":null,"open_issues_count":450,"forks":192,"open_issues":450,"watchers":270,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Automattic/jetpack/pulls/1470"},"html":{"href":"https://github.com/Automattic/jetpack/pull/1470"},"issue":{"href":"https://api.github.com/repos/Automattic/jetpack/issues/1470"},"comments":{"href":"https://api.github.com/repos/Automattic/jetpack/issues/1470/comments"},"review_comments":{"href":"https://api.github.com/repos/Automattic/jetpack/pulls/1470/comments"},"review_comment":{"href":"https://api.github.com/repos/Automattic/jetpack/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/Automattic/jetpack/pulls/1470/commits"},"statuses":{"href":"https://api.github.com/repos/Automattic/jetpack/statuses/2dfbf595782ad4c2b57be5cad77b0acc4ad48d8e"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":13,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:11:32Z","org":{"id":887802,"login":"Automattic","gravatar_id":"","url":"https://api.github.com/orgs/Automattic","avatar_url":"https://avatars.githubusercontent.com/u/887802?"}} +,{"id":"2489656385","type":"IssueCommentEvent","actor":{"id":199592,"login":"methane","gravatar_id":"","url":"https://api.github.com/users/methane","avatar_url":"https://avatars.githubusercontent.com/u/199592?"},"repo":{"id":23096959,"name":"golang/go","url":"https://api.github.com/repos/golang/go"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/golang/go/issues/9484","labels_url":"https://api.github.com/repos/golang/go/issues/9484/labels{/name}","comments_url":"https://api.github.com/repos/golang/go/issues/9484/comments","events_url":"https://api.github.com/repos/golang/go/issues/9484/events","html_url":"https://github.com/golang/go/issues/9484","id":53213237,"number":9484,"title":"database/sql: lock contentions in DB, Stmt","user":{"login":"methane","id":199592,"avatar_url":"https://avatars.githubusercontent.com/u/199592?v=3","gravatar_id":"","url":"https://api.github.com/users/methane","html_url":"https://github.com/methane","followers_url":"https://api.github.com/users/methane/followers","following_url":"https://api.github.com/users/methane/following{/other_user}","gists_url":"https://api.github.com/users/methane/gists{/gist_id}","starred_url":"https://api.github.com/users/methane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/methane/subscriptions","organizations_url":"https://api.github.com/users/methane/orgs","repos_url":"https://api.github.com/users/methane/repos","events_url":"https://api.github.com/users/methane/events{/privacy}","received_events_url":"https://api.github.com/users/methane/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/golang/go/labels/performance","name":"performance","color":"ededed"},{"url":"https://api.github.com/repos/golang/go/labels/repo-main","name":"repo-main","color":"ededed"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":5,"created_at":"2015-01-01T05:17:26Z","updated_at":"2015-01-01T15:11:32Z","closed_at":null,"body":"When using same prepared statement in concurrently. I confirmed with 128 concurrent http access.\r\n\r\nIssue happened here: https://github.com/TechEmpower/FrameworkBenchmarks/pull/1164\r\nAnd stackdump: https://gist.github.com/methane/dd3c3f8de8128730bd63\r\n\r\nThere are some issues:\r\n\r\n## 1. db.mu contention\r\nstmt.Query() uses addDep and removeDep. It locks db.mu.\r\nstmt.connStmt() calls db.connIfFree() multiple times. Each call lock and unlock db.mu.\r\n\r\n## 2. stmt.connStmt() hold stmt.mu long\r\nStmt.css may be bit long (e.g. 128).\r\nhttps://github.com/golang/go/blob/master/src/database/sql/sql.go#L1375-L1388\r\nThis loop take bit long time.\r\nMoving db.mu from DB.connIfFree to before the loop makes bit faster.\r\n\r\nBut I think moving Stmt.css to driverConn is more better."},"comment":{"url":"https://api.github.com/repos/golang/go/issues/comments/68488744","html_url":"https://github.com/golang/go/issues/9484#issuecomment-68488744","issue_url":"https://api.github.com/repos/golang/go/issues/9484","id":68488744,"user":{"login":"methane","id":199592,"avatar_url":"https://avatars.githubusercontent.com/u/199592?v=3","gravatar_id":"","url":"https://api.github.com/users/methane","html_url":"https://github.com/methane","followers_url":"https://api.github.com/users/methane/followers","following_url":"https://api.github.com/users/methane/following{/other_user}","gists_url":"https://api.github.com/users/methane/gists{/gist_id}","starred_url":"https://api.github.com/users/methane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/methane/subscriptions","organizations_url":"https://api.github.com/users/methane/orgs","repos_url":"https://api.github.com/users/methane/repos","events_url":"https://api.github.com/users/methane/events{/privacy}","received_events_url":"https://api.github.com/users/methane/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:11:32Z","updated_at":"2015-01-01T15:11:32Z","body":"https://go-review.googlesource.com/#/c/2206/\r\nThis is splitting mutex."}},"public":true,"created_at":"2015-01-01T15:11:33Z","org":{"id":4314092,"login":"golang","gravatar_id":"","url":"https://api.github.com/orgs/golang","avatar_url":"https://avatars.githubusercontent.com/u/4314092?"}} +,{"id":"2489656386","type":"PushEvent","actor":{"id":4627837,"login":"jessemillar","gravatar_id":"","url":"https://api.github.com/users/jessemillar","avatar_url":"https://avatars.githubusercontent.com/u/4627837?"},"repo":{"id":15463640,"name":"jessemillar/Zombits","url":"https://api.github.com/repos/jessemillar/Zombits"},"payload":{"push_id":536866391,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0b6bc65941a49c94c7d521c28526c02600638d7b","before":"29e001291f803fd9901c1511cfb8f4b5a7e4461c","commits":[{"sha":"0b6bc65941a49c94c7d521c28526c02600638d7b","author":{"email":"0ba40b71986250aad0903c7ebcfd76a410af35fb@gmail.com","name":"Jesse Millar"},"message":"Update LICENSE.md","distinct":true,"url":"https://api.github.com/repos/jessemillar/Zombits/commits/0b6bc65941a49c94c7d521c28526c02600638d7b"}]},"public":true,"created_at":"2015-01-01T15:11:33Z"} +,{"id":"2489656388","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":"2487e38366ee98acb6db51d166fd28c088c22ea7","html_url":"https://github.com/pyqt/python-qt5/wiki/Compiling-PyQt5-on-Ubuntu-12.04"}]},"public":true,"created_at":"2015-01-01T15:11:33Z","org":{"id":8809976,"login":"pyqt","gravatar_id":"","url":"https://api.github.com/orgs/pyqt","avatar_url":"https://avatars.githubusercontent.com/u/8809976?"}} +,{"id":"2489656389","type":"IssuesEvent","actor":{"id":7096212,"login":"FranGM","gravatar_id":"","url":"https://api.github.com/users/FranGM","avatar_url":"https://avatars.githubusercontent.com/u/7096212?"},"repo":{"id":14179252,"name":"kelseyhightower/envconfig","url":"https://api.github.com/repos/kelseyhightower/envconfig"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/kelseyhightower/envconfig/issues/14","labels_url":"https://api.github.com/repos/kelseyhightower/envconfig/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/kelseyhightower/envconfig/issues/14/comments","events_url":"https://api.github.com/repos/kelseyhightower/envconfig/issues/14/events","html_url":"https://github.com/kelseyhightower/envconfig/issues/14","id":53221572,"number":14,"title":"Unprefixed value is used if prefixed value is not available","user":{"login":"FranGM","id":7096212,"avatar_url":"https://avatars.githubusercontent.com/u/7096212?v=3","gravatar_id":"","url":"https://api.github.com/users/FranGM","html_url":"https://github.com/FranGM","followers_url":"https://api.github.com/users/FranGM/followers","following_url":"https://api.github.com/users/FranGM/following{/other_user}","gists_url":"https://api.github.com/users/FranGM/gists{/gist_id}","starred_url":"https://api.github.com/users/FranGM/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/FranGM/subscriptions","organizations_url":"https://api.github.com/users/FranGM/orgs","repos_url":"https://api.github.com/users/FranGM/repos","events_url":"https://api.github.com/users/FranGM/events{/privacy}","received_events_url":"https://api.github.com/users/FranGM/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:11:33Z","updated_at":"2015-01-01T15:11:33Z","closed_at":null,"body":"Hi,\r\n\r\nThe following playground link should highlight this issue: http://play.golang.org/p/XHSJ8ihZh-\r\n\r\nIf MYAPP_USER is not defined but USER is, the value of USER will be used instead. This seems to be a side effect of https://github.com/kelseyhightower/envconfig/pull/10 , in https://github.com/kelseyhightower/envconfig/blob/master/envconfig.go#L51 we use fieldName as key without actually checking if a struct tag was actually set.\r\n\r\nI can submit a PR for this but want to make sure the current behaviour is not intentional and this is not just a documentation issue."}},"public":true,"created_at":"2015-01-01T15:11:33Z"} +,{"id":"2489656391","type":"PushEvent","actor":{"id":5585146,"login":"PawPar","gravatar_id":"","url":"https://api.github.com/users/PawPar","avatar_url":"https://avatars.githubusercontent.com/u/5585146?"},"repo":{"id":28107342,"name":"kkachniarz/neural-net","url":"https://api.github.com/repos/kkachniarz/neural-net"},"payload":{"push_id":536866393,"size":0,"distinct_size":0,"ref":"refs/heads/master","head":"f99c0eca793ea5b47c7ae284d1a3df44bcb39d5e","before":"f99c0eca793ea5b47c7ae284d1a3df44bcb39d5e","commits":[]},"public":true,"created_at":"2015-01-01T15:11:33Z"} +,{"id":"2489656394","type":"PushEvent","actor":{"id":3170981,"login":"kulmala","gravatar_id":"","url":"https://api.github.com/users/kulmala","avatar_url":"https://avatars.githubusercontent.com/u/3170981?"},"repo":{"id":23549741,"name":"kulmala/metrics","url":"https://api.github.com/repos/kulmala/metrics"},"payload":{"push_id":536866395,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"c4a492172b39d83a510142c164cef5b9aab15f2e","before":"bb6c89ae0b72231f41108a8cf72fefb92076a4d2","commits":[{"sha":"c4a492172b39d83a510142c164cef5b9aab15f2e","author":{"email":"5b062d619528ca2f7b39794d12e1c305a7a4b0e8@gmail.com","name":"Jaana Kulmala"},"message":"Site updated to cda78c5","distinct":true,"url":"https://api.github.com/repos/kulmala/metrics/commits/c4a492172b39d83a510142c164cef5b9aab15f2e"}]},"public":true,"created_at":"2015-01-01T15:11:33Z"} +,{"id":"2489656396","type":"CreateEvent","actor":{"id":41445,"login":"minimoog","gravatar_id":"","url":"https://api.github.com/users/minimoog","avatar_url":"https://avatars.githubusercontent.com/u/41445?"},"repo":{"id":28688800,"name":"minimoog/mesh","url":"https://api.github.com/repos/minimoog/mesh"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:11:35Z"} +,{"id":"2489656397","type":"CreateEvent","actor":{"id":651797,"login":"foxx","gravatar_id":"","url":"https://api.github.com/users/foxx","avatar_url":"https://avatars.githubusercontent.com/u/651797?"},"repo":{"id":14074601,"name":"foxx/foxx.github.io","url":"https://api.github.com/repos/foxx/foxx.github.io"},"payload":{"ref":"feature/crossbarpost","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:11:35Z"} +,{"id":"2489656399","type":"IssuesEvent","actor":{"id":3280846,"login":"EvilSupahFly","gravatar_id":"","url":"https://api.github.com/users/EvilSupahFly","avatar_url":"https://avatars.githubusercontent.com/u/3280846?"},"repo":{"id":3019537,"name":"linuxmint/Cinnamon","url":"https://api.github.com/repos/linuxmint/Cinnamon"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/linuxmint/Cinnamon/issues/3797","labels_url":"https://api.github.com/repos/linuxmint/Cinnamon/issues/3797/labels{/name}","comments_url":"https://api.github.com/repos/linuxmint/Cinnamon/issues/3797/comments","events_url":"https://api.github.com/repos/linuxmint/Cinnamon/issues/3797/events","html_url":"https://github.com/linuxmint/Cinnamon/issues/3797","id":53221573,"number":3797,"title":"Cinnamon crashes on desktop load","user":{"login":"EvilSupahFly","id":3280846,"avatar_url":"https://avatars.githubusercontent.com/u/3280846?v=3","gravatar_id":"","url":"https://api.github.com/users/EvilSupahFly","html_url":"https://github.com/EvilSupahFly","followers_url":"https://api.github.com/users/EvilSupahFly/followers","following_url":"https://api.github.com/users/EvilSupahFly/following{/other_user}","gists_url":"https://api.github.com/users/EvilSupahFly/gists{/gist_id}","starred_url":"https://api.github.com/users/EvilSupahFly/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/EvilSupahFly/subscriptions","organizations_url":"https://api.github.com/users/EvilSupahFly/orgs","repos_url":"https://api.github.com/users/EvilSupahFly/repos","events_url":"https://api.github.com/users/EvilSupahFly/events{/privacy}","received_events_url":"https://api.github.com/users/EvilSupahFly/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:11:34Z","updated_at":"2015-01-01T15:11:34Z","closed_at":null,"body":"Running Cinnamon 2.4.5 over a clean Ubuntu 14.10 x64 install on kernel 3.18.1-031801-generic. Cinnamon crashes when the user logs in as the desktop loads. Attempting to run `cinnamon --replace` from the terminal yields the following error:\r\n```\r\n(cinnamon:23306): Cjs-WARNING **: JS ERROR: GLib.Error g-invoke-error-quark: Could not locate gnome_desktop_get_media_key_string: 'gnome_desktop_get_media_key_string': /usr/lib/x86_64-linux-gnu/libcinnamon-desktop.so.4: undefined symbol: gnome_desktop_get_media_key_string\r\nWindow manager warning: Log level 32: Execution of main.js threw exception: JS_EvaluateScript() failed\r\n```\r\nAttempts to remove then reinstall cinnamon have not yielded any positive results."}},"public":true,"created_at":"2015-01-01T15:11:35Z","org":{"id":107184,"login":"linuxmint","gravatar_id":"","url":"https://api.github.com/orgs/linuxmint","avatar_url":"https://avatars.githubusercontent.com/u/107184?"}} +,{"id":"2489656400","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":536866396,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"644a015cafe82b5b7fa3b243d3635fbf156e6648","before":"5aabad82007e7175390a64eae290f97b5fcbe765","commits":[{"sha":"644a015cafe82b5b7fa3b243d3635fbf156e6648","author":{"email":"de163e90d3aeef9f404d1de71c48e234a211e3c3@gmail.com","name":"KT"},"message":"Update","distinct":true,"url":"https://api.github.com/repos/qdm/qdm.github.io/commits/644a015cafe82b5b7fa3b243d3635fbf156e6648"}]},"public":true,"created_at":"2015-01-01T15:11:35Z"} +,{"id":"2489656403","type":"PushEvent","actor":{"id":749708,"login":"iruca3","gravatar_id":"","url":"https://api.github.com/users/iruca3","avatar_url":"https://avatars.githubusercontent.com/u/749708?"},"repo":{"id":28594761,"name":"iruca3/choicer","url":"https://api.github.com/repos/iruca3/choicer"},"payload":{"push_id":536866400,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4d6334bae4eb439e5d88e2725497a3039b9aadc6","before":"2895af3ff72f5ec7f2652a92efca4fe6012f2d90","commits":[{"sha":"4d6334bae4eb439e5d88e2725497a3039b9aadc6","author":{"email":"48801fea3ea60475dc7f9e774d0d2222df8c549c@icity-inc.jp","name":"Makoto NAKAYA"},"message":"画像のサムネイルを実装","distinct":true,"url":"https://api.github.com/repos/iruca3/choicer/commits/4d6334bae4eb439e5d88e2725497a3039b9aadc6"}]},"public":true,"created_at":"2015-01-01T15:11:36Z"} +,{"id":"2489656405","type":"CreateEvent","actor":{"id":1287170,"login":"wahhid","gravatar_id":"","url":"https://api.github.com/users/wahhid","avatar_url":"https://avatars.githubusercontent.com/u/1287170?"},"repo":{"id":28688781,"name":"wahhid/flask_rdm_web_service_ec","url":"https://api.github.com/repos/wahhid/flask_rdm_web_service_ec"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:11:36Z"} +,{"id":"2489656409","type":"PushEvent","actor":{"id":3596538,"login":"westcripp","gravatar_id":"","url":"https://api.github.com/users/westcripp","avatar_url":"https://avatars.githubusercontent.com/u/3596538?"},"repo":{"id":28688234,"name":"ResurrectionRemix/proprietary_vendor_lge","url":"https://api.github.com/repos/ResurrectionRemix/proprietary_vendor_lge"},"payload":{"push_id":536866405,"size":1,"distinct_size":1,"ref":"refs/heads/lollipop","head":"645905214909f468584a61504ababc9b4ac12470","before":"5343166f54a65c9540f81bfefd6f580e9b33c849","commits":[{"sha":"645905214909f468584a61504ababc9b4ac12470","author":{"email":"8204deefaa3818a0ee439421fcb19bcaac2d56b7@gmail.com","name":"westcripp"},"message":"update vendor lge","distinct":true,"url":"https://api.github.com/repos/ResurrectionRemix/proprietary_vendor_lge/commits/645905214909f468584a61504ababc9b4ac12470"}]},"public":true,"created_at":"2015-01-01T15:11:36Z","org":{"id":4931972,"login":"ResurrectionRemix","gravatar_id":"","url":"https://api.github.com/orgs/ResurrectionRemix","avatar_url":"https://avatars.githubusercontent.com/u/4931972?"}} +,{"id":"2489656410","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":22859859,"name":"hex7c0/server-signature","url":"https://api.github.com/repos/hex7c0/server-signature"},"payload":{"push_id":536866406,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"43ec49ad34adb68bf337bd287e32d1d5e2b60d06","before":"6234b9a02a7ebbabc84bfa72dc1b2af4cc94c646","commits":[{"sha":"4d72ae20f503607e93127147d618e84c11c9416f","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"travis docker","distinct":true,"url":"https://api.github.com/repos/hex7c0/server-signature/commits/4d72ae20f503607e93127147d618e84c11c9416f"},{"sha":"69be8de83f61aaf49ef0ee8a4af1b5d97684db2b","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"update devDependencies","distinct":true,"url":"https://api.github.com/repos/hex7c0/server-signature/commits/69be8de83f61aaf49ef0ee8a4af1b5d97684db2b"},{"sha":"43ec49ad34adb68bf337bd287e32d1d5e2b60d06","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"update Gruntfile","distinct":true,"url":"https://api.github.com/repos/hex7c0/server-signature/commits/43ec49ad34adb68bf337bd287e32d1d5e2b60d06"}]},"public":true,"created_at":"2015-01-01T15:11:36Z"} +,{"id":"2489656413","type":"PushEvent","actor":{"id":1744347,"login":"srijanshetty","gravatar_id":"","url":"https://api.github.com/users/srijanshetty","avatar_url":"https://avatars.githubusercontent.com/u/1744347?"},"repo":{"id":28383989,"name":"srijanshetty/vcsh-mr","url":"https://api.github.com/repos/srijanshetty/vcsh-mr"},"payload":{"push_id":536866407,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"49f3a161553fa821cb0b1ec022f5c88c23692f58","before":"b0fdd8583988f9f0efa23715ad2ccfc00c615c1a","commits":[{"sha":"d24aff278b5450f8e3b674d586397e741f571ebb","author":{"email":"84c21f33a16d8cc0912c7daf855e6d68785bb306@gmail.com","name":"Srijan R Shetty"},"message":"mrenv to be sourced","distinct":true,"url":"https://api.github.com/repos/srijanshetty/vcsh-mr/commits/d24aff278b5450f8e3b674d586397e741f571ebb"},{"sha":"febb3626e79198ce78097d47d7bd6438a2b1fcdd","author":{"email":"84c21f33a16d8cc0912c7daf855e6d68785bb306@gmail.com","name":"Srijan R Shetty"},"message":"Completed udacity-dl","distinct":true,"url":"https://api.github.com/repos/srijanshetty/vcsh-mr/commits/febb3626e79198ce78097d47d7bd6438a2b1fcdd"},{"sha":"49f3a161553fa821cb0b1ec022f5c88c23692f58","author":{"email":"84c21f33a16d8cc0912c7daf855e6d68785bb306@gmail.com","name":"Srijan R Shetty"},"message":"LOCAL_ROOT","distinct":true,"url":"https://api.github.com/repos/srijanshetty/vcsh-mr/commits/49f3a161553fa821cb0b1ec022f5c88c23692f58"}]},"public":true,"created_at":"2015-01-01T15:11:37Z"} +,{"id":"2489656415","type":"PushEvent","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":{"push_id":536866408,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cfe935e5ba29661e7a83697aed1f5ec27aa2a02e","before":"913be863f57466adb1a050e473d0ff99defc733b","commits":[{"sha":"cfe935e5ba29661e7a83697aed1f5ec27aa2a02e","author":{"email":"59bd0a3ff43b32849b319e645d4798d8a5d1e889@suprafly.com","name":"suprafly"},"message":"Readme Markdown","distinct":true,"url":"https://api.github.com/repos/suprafly/knodes/commits/cfe935e5ba29661e7a83697aed1f5ec27aa2a02e"}]},"public":true,"created_at":"2015-01-01T15:11:37Z"} +,{"id":"2489656418","type":"PushEvent","actor":{"id":3876790,"login":"jonsger","gravatar_id":"","url":"https://api.github.com/users/jonsger","avatar_url":"https://avatars.githubusercontent.com/u/3876790?"},"repo":{"id":27735697,"name":"jonsger/diaspora","url":"https://api.github.com/repos/jonsger/diaspora"},"payload":{"push_id":536866410,"size":1,"distinct_size":1,"ref":"refs/heads/invitation","head":"ee4039bb7d0b488c6520536aa2f3a531bd8df85d","before":"6a9ecd2b34c6e4188e433fb2a4d21a2aa2d27922","commits":[{"sha":"ee4039bb7d0b488c6520536aa2f3a531bd8df85d","author":{"email":"a32f459e873a851c669a85c08986469c13c86cff@web.de","name":"jonsger"},"message":"correct use of I18n","distinct":true,"url":"https://api.github.com/repos/jonsger/diaspora/commits/ee4039bb7d0b488c6520536aa2f3a531bd8df85d"}]},"public":true,"created_at":"2015-01-01T15:11:37Z"} +,{"id":"2489656422","type":"PushEvent","actor":{"id":4470696,"login":"adrian-bl-yuga","gravatar_id":"","url":"https://api.github.com/users/adrian-bl-yuga","avatar_url":"https://avatars.githubusercontent.com/u/4470696?"},"repo":{"id":28604391,"name":"adrian-bl-scorpion/device-sony-shinano","url":"https://api.github.com/repos/adrian-bl-scorpion/device-sony-shinano"},"payload":{"push_id":536866412,"size":1,"distinct_size":1,"ref":"refs/heads/lp50","head":"4eb992d2cb4038cdbd45769eecde2ed0f18aacdf","before":"6820e41ec605f83995ad04418161bef3c0258a33","commits":[{"sha":"4eb992d2cb4038cdbd45769eecde2ed0f18aacdf","author":{"email":"a1b909ec1cc11cce40c28d3640eab600e582f833@blinkenlights.ch","name":"Adrian Ulrich"},"message":"add CMs libaudioamp","distinct":true,"url":"https://api.github.com/repos/adrian-bl-scorpion/device-sony-shinano/commits/4eb992d2cb4038cdbd45769eecde2ed0f18aacdf"}]},"public":true,"created_at":"2015-01-01T15:11:37Z","org":{"id":10363657,"login":"adrian-bl-scorpion","gravatar_id":"","url":"https://api.github.com/orgs/adrian-bl-scorpion","avatar_url":"https://avatars.githubusercontent.com/u/10363657?"}} +,{"id":"2489656424","type":"PushEvent","actor":{"id":6240370,"login":"TheFive","gravatar_id":"","url":"https://api.github.com/users/TheFive","avatar_url":"https://avatars.githubusercontent.com/u/6240370?"},"repo":{"id":27332139,"name":"TheFive/osmcount","url":"https://api.github.com/repos/TheFive/osmcount"},"payload":{"push_id":536866413,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"506c0d7df1e3f2535f5d0fceb9d375bcce9d169b","before":"bcdc3a919a356b48b53d4bf5a79c766c5916b527","commits":[{"sha":"a0cd7465c4131082ba921537b962c3dbcfb4ecb6","author":{"email":"418df7233977baf0dbfc32e23679582060507394@gmail.com","name":"TheFive"},"message":"Umstellung HTML Files","distinct":true,"url":"https://api.github.com/repos/TheFive/osmcount/commits/a0cd7465c4131082ba921537b962c3dbcfb4ecb6"},{"sha":"506c0d7df1e3f2535f5d0fceb9d375bcce9d169b","author":{"email":"418df7233977baf0dbfc32e23679582060507394@gmail.com","name":"TheFive"},"message":"Umstellung HTML Files","distinct":true,"url":"https://api.github.com/repos/TheFive/osmcount/commits/506c0d7df1e3f2535f5d0fceb9d375bcce9d169b"}]},"public":true,"created_at":"2015-01-01T15:11:37Z"} +,{"id":"2489656425","type":"ReleaseEvent","actor":{"id":1395245,"login":"ogarbe","gravatar_id":"","url":"https://api.github.com/users/ogarbe","avatar_url":"https://avatars.githubusercontent.com/u/1395245?"},"repo":{"id":28688171,"name":"vpg/titon.common","url":"https://api.github.com/repos/vpg/titon.common"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/vpg/titon.common/releases/818694","assets_url":"https://api.github.com/repos/vpg/titon.common/releases/818694/assets","upload_url":"https://uploads.github.com/repos/vpg/titon.common/releases/818694/assets{?name}","html_url":"https://github.com/vpg/titon.common/releases/tag/v1.1","id":818694,"tag_name":"v1.1","target_commitish":"master","name":"","draft":false,"author":{"login":"ogarbe","id":1395245,"avatar_url":"https://avatars.githubusercontent.com/u/1395245?v=3","gravatar_id":"","url":"https://api.github.com/users/ogarbe","html_url":"https://github.com/ogarbe","followers_url":"https://api.github.com/users/ogarbe/followers","following_url":"https://api.github.com/users/ogarbe/following{/other_user}","gists_url":"https://api.github.com/users/ogarbe/gists{/gist_id}","starred_url":"https://api.github.com/users/ogarbe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ogarbe/subscriptions","organizations_url":"https://api.github.com/users/ogarbe/orgs","repos_url":"https://api.github.com/users/ogarbe/repos","events_url":"https://api.github.com/users/ogarbe/events{/privacy}","received_events_url":"https://api.github.com/users/ogarbe/received_events","type":"User","site_admin":false},"prerelease":false,"created_at":"2015-01-01T15:10:32Z","published_at":"2015-01-01T15:11:38Z","assets":[],"tarball_url":"https://api.github.com/repos/vpg/titon.common/tarball/v1.1","zipball_url":"https://api.github.com/repos/vpg/titon.common/zipball/v1.1","body":""}},"public":true,"created_at":"2015-01-01T15:11:38Z","org":{"id":1394283,"login":"vpg","gravatar_id":"","url":"https://api.github.com/orgs/vpg","avatar_url":"https://avatars.githubusercontent.com/u/1394283?"}} +,{"id":"2489656426","type":"CreateEvent","actor":{"id":1395245,"login":"ogarbe","gravatar_id":"","url":"https://api.github.com/users/ogarbe","avatar_url":"https://avatars.githubusercontent.com/u/1395245?"},"repo":{"id":28688171,"name":"vpg/titon.common","url":"https://api.github.com/repos/vpg/titon.common"},"payload":{"ref":"v1.1","ref_type":"tag","master_branch":"master","description":"duplicate old titon common","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:11:38Z","org":{"id":1394283,"login":"vpg","gravatar_id":"","url":"https://api.github.com/orgs/vpg","avatar_url":"https://avatars.githubusercontent.com/u/1394283?"}} +,{"id":"2489656427","type":"PushEvent","actor":{"id":18631,"login":"ngs","gravatar_id":"","url":"https://api.github.com/users/ngs","avatar_url":"https://avatars.githubusercontent.com/u/18631?"},"repo":{"id":18731492,"name":"ngs/ngs.io","url":"https://api.github.com/repos/ngs/ngs.io"},"payload":{"push_id":536866414,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"295b1f94f190309ab0915b0e1f45fbf55744327f","before":"5e94a6352932289b580fa426fef8c3941e74c497","commits":[{"sha":"295b1f94f190309ab0915b0e1f45fbf55744327f","author":{"email":"0a3eeb3184f37f053ff4475377e649d7ab7f2d06@ngs.io","name":"ngs@travis-ci"},"message":"Automated commit at 2015-01-01 15:11:27 UTC by middleman-deploy 0.2.4","distinct":true,"url":"https://api.github.com/repos/ngs/ngs.io/commits/295b1f94f190309ab0915b0e1f45fbf55744327f"}]},"public":true,"created_at":"2015-01-01T15:11:38Z"} +,{"id":"2489656430","type":"WatchEvent","actor":{"id":348945,"login":"dawnyesky","gravatar_id":"","url":"https://api.github.com/users/dawnyesky","avatar_url":"https://avatars.githubusercontent.com/u/348945?"},"repo":{"id":114857,"name":"ept/uploadr.py","url":"https://api.github.com/repos/ept/uploadr.py"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:11:40Z"} +,{"id":"2489656433","type":"PushEvent","actor":{"id":177360,"login":"egeerardyn","gravatar_id":"","url":"https://api.github.com/users/egeerardyn","avatar_url":"https://avatars.githubusercontent.com/u/177360?"},"repo":{"id":27400367,"name":"egeerardyn/matlab2tikz","url":"https://api.github.com/repos/egeerardyn/matlab2tikz"},"payload":{"push_id":536866417,"size":1,"distinct_size":1,"ref":"refs/heads/unify-test-harness","head":"fe81ac44a0e8a5ed94bb92040b6621c97f32ba6e","before":"a314f56c9f323982a769e1d9d3fdd513959ced25","commits":[{"sha":"fe81ac44a0e8a5ed94bb92040b6621c97f32ba6e","author":{"email":"97dfb3041bf8ec0d33a300a137ec7dd1e4ea176c@users.noreply.github.com","name":"PeterPablo"},"message":"fix horizontal concatenation (R2011b)","distinct":true,"url":"https://api.github.com/repos/egeerardyn/matlab2tikz/commits/fe81ac44a0e8a5ed94bb92040b6621c97f32ba6e"}]},"public":true,"created_at":"2015-01-01T15:11:40Z"} +,{"id":"2489656434","type":"PushEvent","actor":{"id":3392699,"login":"smurfpandey","gravatar_id":"","url":"https://api.github.com/users/smurfpandey","avatar_url":"https://avatars.githubusercontent.com/u/3392699?"},"repo":{"id":27304368,"name":"divyeshkharade/rasoii.com","url":"https://api.github.com/repos/divyeshkharade/rasoii.com"},"payload":{"push_id":536866418,"size":3,"distinct_size":3,"ref":"refs/heads/gh-pages","head":"b4b4c70164e7b9c5f225b7d1221e4238e614f1a2","before":"261682a99ddcb768d1cf458ea13878e20a77ad72","commits":[{"sha":"c2a250c8a88a3f0dd2016d963236a05bca4e6b1d","author":{"email":"bc7ef83dc942675d2255652d5442db01f88355dc@gmail.com","name":"Neeraj"},"message":"Images updated","distinct":true,"url":"https://api.github.com/repos/divyeshkharade/rasoii.com/commits/c2a250c8a88a3f0dd2016d963236a05bca4e6b1d"},{"sha":"9bfea6a6704c12d626ccbafb08de5edee50d39d7","author":{"email":"bc7ef83dc942675d2255652d5442db01f88355dc@gmail.com","name":"Neeraj"},"message":"More images update","distinct":true,"url":"https://api.github.com/repos/divyeshkharade/rasoii.com/commits/9bfea6a6704c12d626ccbafb08de5edee50d39d7"},{"sha":"b4b4c70164e7b9c5f225b7d1221e4238e614f1a2","author":{"email":"bc7ef83dc942675d2255652d5442db01f88355dc@gmail.com","name":"Neeraj"},"message":"And more","distinct":true,"url":"https://api.github.com/repos/divyeshkharade/rasoii.com/commits/b4b4c70164e7b9c5f225b7d1221e4238e614f1a2"}]},"public":true,"created_at":"2015-01-01T15:11:40Z"} +,{"id":"2489656435","type":"PullRequestEvent","actor":{"id":2767023,"login":"ajcowking","gravatar_id":"","url":"https://api.github.com/users/ajcowking","avatar_url":"https://avatars.githubusercontent.com/u/2767023?"},"repo":{"id":28688727,"name":"ajcowking/hello-world","url":"https://api.github.com/repos/ajcowking/hello-world"},"payload":{"action":"closed","number":2,"pull_request":{"url":"https://api.github.com/repos/ajcowking/hello-world/pulls/2","id":26743852,"html_url":"https://github.com/ajcowking/hello-world/pull/2","diff_url":"https://github.com/ajcowking/hello-world/pull/2.diff","patch_url":"https://github.com/ajcowking/hello-world/pull/2.patch","issue_url":"https://api.github.com/repos/ajcowking/hello-world/issues/2","number":2,"state":"closed","locked":false,"title":"Readme edits, fixes #1","user":{"login":"ajcowking","id":2767023,"avatar_url":"https://avatars.githubusercontent.com/u/2767023?v=3","gravatar_id":"","url":"https://api.github.com/users/ajcowking","html_url":"https://github.com/ajcowking","followers_url":"https://api.github.com/users/ajcowking/followers","following_url":"https://api.github.com/users/ajcowking/following{/other_user}","gists_url":"https://api.github.com/users/ajcowking/gists{/gist_id}","starred_url":"https://api.github.com/users/ajcowking/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ajcowking/subscriptions","organizations_url":"https://api.github.com/users/ajcowking/orgs","repos_url":"https://api.github.com/users/ajcowking/repos","events_url":"https://api.github.com/users/ajcowking/events{/privacy}","received_events_url":"https://api.github.com/users/ajcowking/received_events","type":"User","site_admin":false},"body":"Content for non-telepathic humans.","created_at":"2015-01-01T15:11:13Z","updated_at":"2015-01-01T15:11:40Z","closed_at":"2015-01-01T15:11:40Z","merged_at":"2015-01-01T15:11:40Z","merge_commit_sha":"2bbc36d6ee9a0ef3b79d70591d1b711bee72c988","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/ajcowking/hello-world/pulls/2/commits","review_comments_url":"https://api.github.com/repos/ajcowking/hello-world/pulls/2/comments","review_comment_url":"https://api.github.com/repos/ajcowking/hello-world/pulls/comments/{number}","comments_url":"https://api.github.com/repos/ajcowking/hello-world/issues/2/comments","statuses_url":"https://api.github.com/repos/ajcowking/hello-world/statuses/e92444c129135b12d41b310d6ca029dad300cdbc","head":{"label":"ajcowking:readme-edits","ref":"readme-edits","sha":"e92444c129135b12d41b310d6ca029dad300cdbc","user":{"login":"ajcowking","id":2767023,"avatar_url":"https://avatars.githubusercontent.com/u/2767023?v=3","gravatar_id":"","url":"https://api.github.com/users/ajcowking","html_url":"https://github.com/ajcowking","followers_url":"https://api.github.com/users/ajcowking/followers","following_url":"https://api.github.com/users/ajcowking/following{/other_user}","gists_url":"https://api.github.com/users/ajcowking/gists{/gist_id}","starred_url":"https://api.github.com/users/ajcowking/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ajcowking/subscriptions","organizations_url":"https://api.github.com/users/ajcowking/orgs","repos_url":"https://api.github.com/users/ajcowking/repos","events_url":"https://api.github.com/users/ajcowking/events{/privacy}","received_events_url":"https://api.github.com/users/ajcowking/received_events","type":"User","site_admin":false},"repo":{"id":28688727,"name":"hello-world","full_name":"ajcowking/hello-world","owner":{"login":"ajcowking","id":2767023,"avatar_url":"https://avatars.githubusercontent.com/u/2767023?v=3","gravatar_id":"","url":"https://api.github.com/users/ajcowking","html_url":"https://github.com/ajcowking","followers_url":"https://api.github.com/users/ajcowking/followers","following_url":"https://api.github.com/users/ajcowking/following{/other_user}","gists_url":"https://api.github.com/users/ajcowking/gists{/gist_id}","starred_url":"https://api.github.com/users/ajcowking/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ajcowking/subscriptions","organizations_url":"https://api.github.com/users/ajcowking/orgs","repos_url":"https://api.github.com/users/ajcowking/repos","events_url":"https://api.github.com/users/ajcowking/events{/privacy}","received_events_url":"https://api.github.com/users/ajcowking/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ajcowking/hello-world","description":"Just another repository","fork":false,"url":"https://api.github.com/repos/ajcowking/hello-world","forks_url":"https://api.github.com/repos/ajcowking/hello-world/forks","keys_url":"https://api.github.com/repos/ajcowking/hello-world/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ajcowking/hello-world/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ajcowking/hello-world/teams","hooks_url":"https://api.github.com/repos/ajcowking/hello-world/hooks","issue_events_url":"https://api.github.com/repos/ajcowking/hello-world/issues/events{/number}","events_url":"https://api.github.com/repos/ajcowking/hello-world/events","assignees_url":"https://api.github.com/repos/ajcowking/hello-world/assignees{/user}","branches_url":"https://api.github.com/repos/ajcowking/hello-world/branches{/branch}","tags_url":"https://api.github.com/repos/ajcowking/hello-world/tags","blobs_url":"https://api.github.com/repos/ajcowking/hello-world/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ajcowking/hello-world/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ajcowking/hello-world/git/refs{/sha}","trees_url":"https://api.github.com/repos/ajcowking/hello-world/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ajcowking/hello-world/statuses/{sha}","languages_url":"https://api.github.com/repos/ajcowking/hello-world/languages","stargazers_url":"https://api.github.com/repos/ajcowking/hello-world/stargazers","contributors_url":"https://api.github.com/repos/ajcowking/hello-world/contributors","subscribers_url":"https://api.github.com/repos/ajcowking/hello-world/subscribers","subscription_url":"https://api.github.com/repos/ajcowking/hello-world/subscription","commits_url":"https://api.github.com/repos/ajcowking/hello-world/commits{/sha}","git_commits_url":"https://api.github.com/repos/ajcowking/hello-world/git/commits{/sha}","comments_url":"https://api.github.com/repos/ajcowking/hello-world/comments{/number}","issue_comment_url":"https://api.github.com/repos/ajcowking/hello-world/issues/comments/{number}","contents_url":"https://api.github.com/repos/ajcowking/hello-world/contents/{+path}","compare_url":"https://api.github.com/repos/ajcowking/hello-world/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ajcowking/hello-world/merges","archive_url":"https://api.github.com/repos/ajcowking/hello-world/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ajcowking/hello-world/downloads","issues_url":"https://api.github.com/repos/ajcowking/hello-world/issues{/number}","pulls_url":"https://api.github.com/repos/ajcowking/hello-world/pulls{/number}","milestones_url":"https://api.github.com/repos/ajcowking/hello-world/milestones{/number}","notifications_url":"https://api.github.com/repos/ajcowking/hello-world/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ajcowking/hello-world/labels{/name}","releases_url":"https://api.github.com/repos/ajcowking/hello-world/releases{/id}","created_at":"2015-01-01T15:07:21Z","updated_at":"2015-01-01T15:07:21Z","pushed_at":"2015-01-01T15:11:40Z","git_url":"git://github.com/ajcowking/hello-world.git","ssh_url":"git@github.com:ajcowking/hello-world.git","clone_url":"https://github.com/ajcowking/hello-world.git","svn_url":"https://github.com/ajcowking/hello-world","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"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":"ajcowking:master","ref":"master","sha":"83dc45814451d7b7ef044fa5339809f377e65a85","user":{"login":"ajcowking","id":2767023,"avatar_url":"https://avatars.githubusercontent.com/u/2767023?v=3","gravatar_id":"","url":"https://api.github.com/users/ajcowking","html_url":"https://github.com/ajcowking","followers_url":"https://api.github.com/users/ajcowking/followers","following_url":"https://api.github.com/users/ajcowking/following{/other_user}","gists_url":"https://api.github.com/users/ajcowking/gists{/gist_id}","starred_url":"https://api.github.com/users/ajcowking/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ajcowking/subscriptions","organizations_url":"https://api.github.com/users/ajcowking/orgs","repos_url":"https://api.github.com/users/ajcowking/repos","events_url":"https://api.github.com/users/ajcowking/events{/privacy}","received_events_url":"https://api.github.com/users/ajcowking/received_events","type":"User","site_admin":false},"repo":{"id":28688727,"name":"hello-world","full_name":"ajcowking/hello-world","owner":{"login":"ajcowking","id":2767023,"avatar_url":"https://avatars.githubusercontent.com/u/2767023?v=3","gravatar_id":"","url":"https://api.github.com/users/ajcowking","html_url":"https://github.com/ajcowking","followers_url":"https://api.github.com/users/ajcowking/followers","following_url":"https://api.github.com/users/ajcowking/following{/other_user}","gists_url":"https://api.github.com/users/ajcowking/gists{/gist_id}","starred_url":"https://api.github.com/users/ajcowking/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ajcowking/subscriptions","organizations_url":"https://api.github.com/users/ajcowking/orgs","repos_url":"https://api.github.com/users/ajcowking/repos","events_url":"https://api.github.com/users/ajcowking/events{/privacy}","received_events_url":"https://api.github.com/users/ajcowking/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ajcowking/hello-world","description":"Just another repository","fork":false,"url":"https://api.github.com/repos/ajcowking/hello-world","forks_url":"https://api.github.com/repos/ajcowking/hello-world/forks","keys_url":"https://api.github.com/repos/ajcowking/hello-world/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ajcowking/hello-world/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ajcowking/hello-world/teams","hooks_url":"https://api.github.com/repos/ajcowking/hello-world/hooks","issue_events_url":"https://api.github.com/repos/ajcowking/hello-world/issues/events{/number}","events_url":"https://api.github.com/repos/ajcowking/hello-world/events","assignees_url":"https://api.github.com/repos/ajcowking/hello-world/assignees{/user}","branches_url":"https://api.github.com/repos/ajcowking/hello-world/branches{/branch}","tags_url":"https://api.github.com/repos/ajcowking/hello-world/tags","blobs_url":"https://api.github.com/repos/ajcowking/hello-world/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ajcowking/hello-world/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ajcowking/hello-world/git/refs{/sha}","trees_url":"https://api.github.com/repos/ajcowking/hello-world/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ajcowking/hello-world/statuses/{sha}","languages_url":"https://api.github.com/repos/ajcowking/hello-world/languages","stargazers_url":"https://api.github.com/repos/ajcowking/hello-world/stargazers","contributors_url":"https://api.github.com/repos/ajcowking/hello-world/contributors","subscribers_url":"https://api.github.com/repos/ajcowking/hello-world/subscribers","subscription_url":"https://api.github.com/repos/ajcowking/hello-world/subscription","commits_url":"https://api.github.com/repos/ajcowking/hello-world/commits{/sha}","git_commits_url":"https://api.github.com/repos/ajcowking/hello-world/git/commits{/sha}","comments_url":"https://api.github.com/repos/ajcowking/hello-world/comments{/number}","issue_comment_url":"https://api.github.com/repos/ajcowking/hello-world/issues/comments/{number}","contents_url":"https://api.github.com/repos/ajcowking/hello-world/contents/{+path}","compare_url":"https://api.github.com/repos/ajcowking/hello-world/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ajcowking/hello-world/merges","archive_url":"https://api.github.com/repos/ajcowking/hello-world/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ajcowking/hello-world/downloads","issues_url":"https://api.github.com/repos/ajcowking/hello-world/issues{/number}","pulls_url":"https://api.github.com/repos/ajcowking/hello-world/pulls{/number}","milestones_url":"https://api.github.com/repos/ajcowking/hello-world/milestones{/number}","notifications_url":"https://api.github.com/repos/ajcowking/hello-world/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ajcowking/hello-world/labels{/name}","releases_url":"https://api.github.com/repos/ajcowking/hello-world/releases{/id}","created_at":"2015-01-01T15:07:21Z","updated_at":"2015-01-01T15:07:21Z","pushed_at":"2015-01-01T15:11:40Z","git_url":"git://github.com/ajcowking/hello-world.git","ssh_url":"git@github.com:ajcowking/hello-world.git","clone_url":"https://github.com/ajcowking/hello-world.git","svn_url":"https://github.com/ajcowking/hello-world","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"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/ajcowking/hello-world/pulls/2"},"html":{"href":"https://github.com/ajcowking/hello-world/pull/2"},"issue":{"href":"https://api.github.com/repos/ajcowking/hello-world/issues/2"},"comments":{"href":"https://api.github.com/repos/ajcowking/hello-world/issues/2/comments"},"review_comments":{"href":"https://api.github.com/repos/ajcowking/hello-world/pulls/2/comments"},"review_comment":{"href":"https://api.github.com/repos/ajcowking/hello-world/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/ajcowking/hello-world/pulls/2/commits"},"statuses":{"href":"https://api.github.com/repos/ajcowking/hello-world/statuses/e92444c129135b12d41b310d6ca029dad300cdbc"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"ajcowking","id":2767023,"avatar_url":"https://avatars.githubusercontent.com/u/2767023?v=3","gravatar_id":"","url":"https://api.github.com/users/ajcowking","html_url":"https://github.com/ajcowking","followers_url":"https://api.github.com/users/ajcowking/followers","following_url":"https://api.github.com/users/ajcowking/following{/other_user}","gists_url":"https://api.github.com/users/ajcowking/gists{/gist_id}","starred_url":"https://api.github.com/users/ajcowking/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ajcowking/subscriptions","organizations_url":"https://api.github.com/users/ajcowking/orgs","repos_url":"https://api.github.com/users/ajcowking/repos","events_url":"https://api.github.com/users/ajcowking/events{/privacy}","received_events_url":"https://api.github.com/users/ajcowking/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":4,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:11:40Z"} +,{"id":"2489656436","type":"CreateEvent","actor":{"id":5105508,"login":"gioch","gravatar_id":"","url":"https://api.github.com/users/gioch","avatar_url":"https://avatars.githubusercontent.com/u/5105508?"},"repo":{"id":28078075,"name":"gioch/Goals","url":"https://api.github.com/repos/gioch/Goals"},"payload":{"ref":"dev","ref_type":"branch","master_branch":"master","description":"Simple web-app, developed with Ruby On Rails, for managing your goals","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:11:40Z"} +,{"id":"2489656440","type":"IssuesEvent","actor":{"id":2767023,"login":"ajcowking","gravatar_id":"","url":"https://api.github.com/users/ajcowking","avatar_url":"https://avatars.githubusercontent.com/u/2767023?"},"repo":{"id":28688727,"name":"ajcowking/hello-world","url":"https://api.github.com/repos/ajcowking/hello-world"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/ajcowking/hello-world/issues/1","labels_url":"https://api.github.com/repos/ajcowking/hello-world/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/ajcowking/hello-world/issues/1/comments","events_url":"https://api.github.com/repos/ajcowking/hello-world/issues/1/events","html_url":"https://github.com/ajcowking/hello-world/issues/1","id":53221489,"number":1,"title":"Finish README","user":{"login":"ajcowking","id":2767023,"avatar_url":"https://avatars.githubusercontent.com/u/2767023?v=3","gravatar_id":"","url":"https://api.github.com/users/ajcowking","html_url":"https://github.com/ajcowking","followers_url":"https://api.github.com/users/ajcowking/followers","following_url":"https://api.github.com/users/ajcowking/following{/other_user}","gists_url":"https://api.github.com/users/ajcowking/gists{/gist_id}","starred_url":"https://api.github.com/users/ajcowking/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ajcowking/subscriptions","organizations_url":"https://api.github.com/users/ajcowking/orgs","repos_url":"https://api.github.com/users/ajcowking/repos","events_url":"https://api.github.com/users/ajcowking/events{/privacy}","received_events_url":"https://api.github.com/users/ajcowking/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:07:51Z","updated_at":"2015-01-01T15:11:40Z","closed_at":"2015-01-01T15:11:40Z","body":"So that humans 'get' me."}},"public":true,"created_at":"2015-01-01T15:11:40Z"} +,{"id":"2489656442","type":"PushEvent","actor":{"id":8054511,"login":"xuhangyi","gravatar_id":"","url":"https://api.github.com/users/xuhangyi","avatar_url":"https://avatars.githubusercontent.com/u/8054511?"},"repo":{"id":28396372,"name":"xuhangyi/leetcode","url":"https://api.github.com/repos/xuhangyi/leetcode"},"payload":{"push_id":536866420,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"171289e5df588a25711d2423840c836e9a4926b5","before":"139ac153f2c20ed7c6487b7884a611be4b1942ec","commits":[{"sha":"171289e5df588a25711d2423840c836e9a4926b5","author":{"email":"f17af78d5db5498f5447c04e09608f01ea1c70fc@gmail.com","name":"xuhangyi"},"message":"learning","distinct":true,"url":"https://api.github.com/repos/xuhangyi/leetcode/commits/171289e5df588a25711d2423840c836e9a4926b5"}]},"public":true,"created_at":"2015-01-01T15:11:40Z"} +,{"id":"2489656443","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":536866421,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"509c2904c19d575c37ad68b42a9c0b5cc6c05738","before":"3d5ebe132488bec4e83c3ef69d14ad6d9c044dad","commits":[{"sha":"509c2904c19d575c37ad68b42a9c0b5cc6c05738","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420125099222\n\ndK7x6WSlKnKjDgsdsZhrdetaJwnB84m1SauomxmI980=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/509c2904c19d575c37ad68b42a9c0b5cc6c05738"}]},"public":true,"created_at":"2015-01-01T15:11:40Z"} +,{"id":"2489656444","type":"PushEvent","actor":{"id":2767023,"login":"ajcowking","gravatar_id":"","url":"https://api.github.com/users/ajcowking","avatar_url":"https://avatars.githubusercontent.com/u/2767023?"},"repo":{"id":28688727,"name":"ajcowking/hello-world","url":"https://api.github.com/repos/ajcowking/hello-world"},"payload":{"push_id":536866422,"size":2,"distinct_size":1,"ref":"refs/heads/master","head":"b8e3974809638294dea573b2f24ed893b48852b6","before":"83dc45814451d7b7ef044fa5339809f377e65a85","commits":[{"sha":"e92444c129135b12d41b310d6ca029dad300cdbc","author":{"email":"b7ae4ef9faf575da064a5c0b89ebd128a325d2db@users.noreply.github.com","name":"Adam Cowking"},"message":"Finish README\n\nAnd mention moon tacos","distinct":false,"url":"https://api.github.com/repos/ajcowking/hello-world/commits/e92444c129135b12d41b310d6ca029dad300cdbc"},{"sha":"b8e3974809638294dea573b2f24ed893b48852b6","author":{"email":"b7ae4ef9faf575da064a5c0b89ebd128a325d2db@users.noreply.github.com","name":"Adam Cowking"},"message":"Merge pull request #2 from ajcowking/readme-edits\n\nReadme edits, fixes #1","distinct":true,"url":"https://api.github.com/repos/ajcowking/hello-world/commits/b8e3974809638294dea573b2f24ed893b48852b6"}]},"public":true,"created_at":"2015-01-01T15:11:40Z"} +,{"id":"2489656445","type":"CreateEvent","actor":{"id":3283670,"login":"mohit1541990gmailcom","gravatar_id":"","url":"https://api.github.com/users/mohit1541990gmailcom","avatar_url":"https://avatars.githubusercontent.com/u/3283670?"},"repo":{"id":28688802,"name":"mohit1541990gmailcom/Everything","url":"https://api.github.com/repos/mohit1541990gmailcom/Everything"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:11:41Z"} +,{"id":"2489656450","type":"PushEvent","actor":{"id":4627837,"login":"jessemillar","gravatar_id":"","url":"https://api.github.com/users/jessemillar","avatar_url":"https://avatars.githubusercontent.com/u/4627837?"},"repo":{"id":20610678,"name":"jessemillar/Spreed","url":"https://api.github.com/repos/jessemillar/Spreed"},"payload":{"push_id":536866424,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c1f71550f419cd9a4bb632bff8afaf5c479f4db1","before":"5cafe8d69065989df33f23c2222fe17454c93993","commits":[{"sha":"c1f71550f419cd9a4bb632bff8afaf5c479f4db1","author":{"email":"0ba40b71986250aad0903c7ebcfd76a410af35fb@gmail.com","name":"Jesse Millar"},"message":"Update LICENSE.md","distinct":true,"url":"https://api.github.com/repos/jessemillar/Spreed/commits/c1f71550f419cd9a4bb632bff8afaf5c479f4db1"}]},"public":true,"created_at":"2015-01-01T15:11:41Z"} +,{"id":"2489656452","type":"PushEvent","actor":{"id":3244222,"login":"dan-lyn","gravatar_id":"","url":"https://api.github.com/users/dan-lyn","avatar_url":"https://avatars.githubusercontent.com/u/3244222?"},"repo":{"id":27088726,"name":"dan-lyn/ElasticsearchExplorerBundle","url":"https://api.github.com/repos/dan-lyn/ElasticsearchExplorerBundle"},"payload":{"push_id":536866425,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9fccc1329f01f455ede10afc585f3089e5448f7c","before":"1dbdcf46160b58e74d6afff599630a7f01a32b94","commits":[{"sha":"9fccc1329f01f455ede10afc585f3089e5448f7c","author":{"email":"0d33f17c2b21dd4853dfb85b73739048fa179b1d@hotmail.com","name":"dan-lyn"},"message":"refactoring search javascript","distinct":true,"url":"https://api.github.com/repos/dan-lyn/ElasticsearchExplorerBundle/commits/9fccc1329f01f455ede10afc585f3089e5448f7c"}]},"public":true,"created_at":"2015-01-01T15:11:41Z"} +,{"id":"2489656455","type":"CreateEvent","actor":{"id":7578991,"login":"guntarspuzulis","gravatar_id":"","url":"https://api.github.com/users/guntarspuzulis","avatar_url":"https://avatars.githubusercontent.com/u/7578991?"},"repo":{"id":28688803,"name":"guntarspuzulis/eskola","url":"https://api.github.com/repos/guntarspuzulis/eskola"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"DF pr.d eskola","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:11:41Z"} +,{"id":"2489656457","type":"WatchEvent","actor":{"id":76741,"login":"immaculate","gravatar_id":"","url":"https://api.github.com/users/immaculate","avatar_url":"https://avatars.githubusercontent.com/u/76741?"},"repo":{"id":13935431,"name":"smarty-gettext/smarty-gettext","url":"https://api.github.com/repos/smarty-gettext/smarty-gettext"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:11:42Z","org":{"id":6034511,"login":"smarty-gettext","gravatar_id":"","url":"https://api.github.com/orgs/smarty-gettext","avatar_url":"https://avatars.githubusercontent.com/u/6034511?"}} +,{"id":"2489656464","type":"PullRequestEvent","actor":{"id":5512433,"login":"Funbit","gravatar_id":"","url":"https://api.github.com/users/Funbit","avatar_url":"https://avatars.githubusercontent.com/u/5512433?"},"repo":{"id":28528325,"name":"Funbit/ets2-telemetry-server","url":"https://api.github.com/repos/Funbit/ets2-telemetry-server"},"payload":{"action":"closed","number":3,"pull_request":{"url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/pulls/3","id":26724443,"html_url":"https://github.com/Funbit/ets2-telemetry-server/pull/3","diff_url":"https://github.com/Funbit/ets2-telemetry-server/pull/3.diff","patch_url":"https://github.com/Funbit/ets2-telemetry-server/pull/3.patch","issue_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/issues/3","number":3,"state":"closed","locked":false,"title":"Add Application manifest to automatically request elevation","user":{"login":"thorerik","id":219796,"avatar_url":"https://avatars.githubusercontent.com/u/219796?v=3","gravatar_id":"","url":"https://api.github.com/users/thorerik","html_url":"https://github.com/thorerik","followers_url":"https://api.github.com/users/thorerik/followers","following_url":"https://api.github.com/users/thorerik/following{/other_user}","gists_url":"https://api.github.com/users/thorerik/gists{/gist_id}","starred_url":"https://api.github.com/users/thorerik/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thorerik/subscriptions","organizations_url":"https://api.github.com/users/thorerik/orgs","repos_url":"https://api.github.com/users/thorerik/repos","events_url":"https://api.github.com/users/thorerik/events{/privacy}","received_events_url":"https://api.github.com/users/thorerik/received_events","type":"User","site_admin":false},"body":"This should make the application request administrator access if possible, and if unavailable continue execution as invoker(default behaviour)\r\n\r\n\r\nDocumentation for app.manifest:\r\nhttp://msdn.microsoft.com/en-us/library/bb756929.aspx","created_at":"2014-12-31T13:40:58Z","updated_at":"2015-01-01T15:11:42Z","closed_at":"2015-01-01T15:11:42Z","merged_at":"2015-01-01T15:11:42Z","merge_commit_sha":"e05ec6e4f7a3a9cc84bc0ac822d795ba16452f29","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/pulls/3/commits","review_comments_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/pulls/3/comments","review_comment_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/pulls/comments/{number}","comments_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/issues/3/comments","statuses_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/statuses/389ff99182a8ab1b93f6d4452fa108c4f2df21fb","head":{"label":"thorerik:request-uac-elevation","ref":"request-uac-elevation","sha":"389ff99182a8ab1b93f6d4452fa108c4f2df21fb","user":{"login":"thorerik","id":219796,"avatar_url":"https://avatars.githubusercontent.com/u/219796?v=3","gravatar_id":"","url":"https://api.github.com/users/thorerik","html_url":"https://github.com/thorerik","followers_url":"https://api.github.com/users/thorerik/followers","following_url":"https://api.github.com/users/thorerik/following{/other_user}","gists_url":"https://api.github.com/users/thorerik/gists{/gist_id}","starred_url":"https://api.github.com/users/thorerik/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thorerik/subscriptions","organizations_url":"https://api.github.com/users/thorerik/orgs","repos_url":"https://api.github.com/users/thorerik/repos","events_url":"https://api.github.com/users/thorerik/events{/privacy}","received_events_url":"https://api.github.com/users/thorerik/received_events","type":"User","site_admin":false},"repo":{"id":28615383,"name":"ets2-telemetry-server","full_name":"thorerik/ets2-telemetry-server","owner":{"login":"thorerik","id":219796,"avatar_url":"https://avatars.githubusercontent.com/u/219796?v=3","gravatar_id":"","url":"https://api.github.com/users/thorerik","html_url":"https://github.com/thorerik","followers_url":"https://api.github.com/users/thorerik/followers","following_url":"https://api.github.com/users/thorerik/following{/other_user}","gists_url":"https://api.github.com/users/thorerik/gists{/gist_id}","starred_url":"https://api.github.com/users/thorerik/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thorerik/subscriptions","organizations_url":"https://api.github.com/users/thorerik/orgs","repos_url":"https://api.github.com/users/thorerik/repos","events_url":"https://api.github.com/users/thorerik/events{/privacy}","received_events_url":"https://api.github.com/users/thorerik/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/thorerik/ets2-telemetry-server","description":"ETS2 Telemetry Web Server","fork":true,"url":"https://api.github.com/repos/thorerik/ets2-telemetry-server","forks_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/forks","keys_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/keys{/key_id}","collaborators_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/teams","hooks_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/hooks","issue_events_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/issues/events{/number}","events_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/events","assignees_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/assignees{/user}","branches_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/branches{/branch}","tags_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/tags","blobs_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/git/refs{/sha}","trees_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/git/trees{/sha}","statuses_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/statuses/{sha}","languages_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/languages","stargazers_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/stargazers","contributors_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/contributors","subscribers_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/subscribers","subscription_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/subscription","commits_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/commits{/sha}","git_commits_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/git/commits{/sha}","comments_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/comments{/number}","issue_comment_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/issues/comments/{number}","contents_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/contents/{+path}","compare_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/compare/{base}...{head}","merges_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/merges","archive_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/downloads","issues_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/issues{/number}","pulls_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/pulls{/number}","milestones_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/milestones{/number}","notifications_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/labels{/name}","releases_url":"https://api.github.com/repos/thorerik/ets2-telemetry-server/releases{/id}","created_at":"2014-12-30T02:58:07Z","updated_at":"2014-12-30T02:58:07Z","pushed_at":"2014-12-31T13:39:34Z","git_url":"git://github.com/thorerik/ets2-telemetry-server.git","ssh_url":"git@github.com:thorerik/ets2-telemetry-server.git","clone_url":"https://github.com/thorerik/ets2-telemetry-server.git","svn_url":"https://github.com/thorerik/ets2-telemetry-server","homepage":null,"size":0,"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":"Funbit:master","ref":"master","sha":"e2441aa4e37a5e16086786bf99e7f759fd6b8ce3","user":{"login":"Funbit","id":5512433,"avatar_url":"https://avatars.githubusercontent.com/u/5512433?v=3","gravatar_id":"","url":"https://api.github.com/users/Funbit","html_url":"https://github.com/Funbit","followers_url":"https://api.github.com/users/Funbit/followers","following_url":"https://api.github.com/users/Funbit/following{/other_user}","gists_url":"https://api.github.com/users/Funbit/gists{/gist_id}","starred_url":"https://api.github.com/users/Funbit/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Funbit/subscriptions","organizations_url":"https://api.github.com/users/Funbit/orgs","repos_url":"https://api.github.com/users/Funbit/repos","events_url":"https://api.github.com/users/Funbit/events{/privacy}","received_events_url":"https://api.github.com/users/Funbit/received_events","type":"User","site_admin":false},"repo":{"id":28528325,"name":"ets2-telemetry-server","full_name":"Funbit/ets2-telemetry-server","owner":{"login":"Funbit","id":5512433,"avatar_url":"https://avatars.githubusercontent.com/u/5512433?v=3","gravatar_id":"","url":"https://api.github.com/users/Funbit","html_url":"https://github.com/Funbit","followers_url":"https://api.github.com/users/Funbit/followers","following_url":"https://api.github.com/users/Funbit/following{/other_user}","gists_url":"https://api.github.com/users/Funbit/gists{/gist_id}","starred_url":"https://api.github.com/users/Funbit/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Funbit/subscriptions","organizations_url":"https://api.github.com/users/Funbit/orgs","repos_url":"https://api.github.com/users/Funbit/repos","events_url":"https://api.github.com/users/Funbit/events{/privacy}","received_events_url":"https://api.github.com/users/Funbit/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Funbit/ets2-telemetry-server","description":"ETS2 Telemetry Web Server","fork":false,"url":"https://api.github.com/repos/Funbit/ets2-telemetry-server","forks_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/forks","keys_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/teams","hooks_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/hooks","issue_events_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/issues/events{/number}","events_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/events","assignees_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/assignees{/user}","branches_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/branches{/branch}","tags_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/tags","blobs_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/git/refs{/sha}","trees_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/statuses/{sha}","languages_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/languages","stargazers_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/stargazers","contributors_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/contributors","subscribers_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/subscribers","subscription_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/subscription","commits_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/commits{/sha}","git_commits_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/git/commits{/sha}","comments_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/comments{/number}","issue_comment_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/issues/comments/{number}","contents_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/contents/{+path}","compare_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/merges","archive_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/downloads","issues_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/issues{/number}","pulls_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/pulls{/number}","milestones_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/milestones{/number}","notifications_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/labels{/name}","releases_url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/releases{/id}","created_at":"2014-12-27T04:14:56Z","updated_at":"2015-01-01T15:11:42Z","pushed_at":"2015-01-01T15:11:42Z","git_url":"git://github.com/Funbit/ets2-telemetry-server.git","ssh_url":"git@github.com:Funbit/ets2-telemetry-server.git","clone_url":"https://github.com/Funbit/ets2-telemetry-server.git","svn_url":"https://github.com/Funbit/ets2-telemetry-server","homepage":null,"size":0,"stargazers_count":2,"watchers_count":2,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":1,"forks":1,"open_issues":1,"watchers":2,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Funbit/ets2-telemetry-server/pulls/3"},"html":{"href":"https://github.com/Funbit/ets2-telemetry-server/pull/3"},"issue":{"href":"https://api.github.com/repos/Funbit/ets2-telemetry-server/issues/3"},"comments":{"href":"https://api.github.com/repos/Funbit/ets2-telemetry-server/issues/3/comments"},"review_comments":{"href":"https://api.github.com/repos/Funbit/ets2-telemetry-server/pulls/3/comments"},"review_comment":{"href":"https://api.github.com/repos/Funbit/ets2-telemetry-server/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/Funbit/ets2-telemetry-server/pulls/3/commits"},"statuses":{"href":"https://api.github.com/repos/Funbit/ets2-telemetry-server/statuses/389ff99182a8ab1b93f6d4452fa108c4f2df21fb"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"Funbit","id":5512433,"avatar_url":"https://avatars.githubusercontent.com/u/5512433?v=3","gravatar_id":"","url":"https://api.github.com/users/Funbit","html_url":"https://github.com/Funbit","followers_url":"https://api.github.com/users/Funbit/followers","following_url":"https://api.github.com/users/Funbit/following{/other_user}","gists_url":"https://api.github.com/users/Funbit/gists{/gist_id}","starred_url":"https://api.github.com/users/Funbit/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Funbit/subscriptions","organizations_url":"https://api.github.com/users/Funbit/orgs","repos_url":"https://api.github.com/users/Funbit/repos","events_url":"https://api.github.com/users/Funbit/events{/privacy}","received_events_url":"https://api.github.com/users/Funbit/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":311,"deletions":255,"changed_files":2}},"public":true,"created_at":"2015-01-01T15:11:42Z"} +,{"id":"2489656465","type":"PushEvent","actor":{"id":5512433,"login":"Funbit","gravatar_id":"","url":"https://api.github.com/users/Funbit","avatar_url":"https://avatars.githubusercontent.com/u/5512433?"},"repo":{"id":28528325,"name":"Funbit/ets2-telemetry-server","url":"https://api.github.com/repos/Funbit/ets2-telemetry-server"},"payload":{"push_id":536866430,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"c8fca4508d14e1b47cca7378789c012a41cc1092","before":"52e33665ded8651b3ec6e58512513c00663c29b2","commits":[{"sha":"389ff99182a8ab1b93f6d4452fa108c4f2df21fb","author":{"email":"14051859736dd70525af7cbbbadfb687c175ca12@thorerik.com","name":"Thor Erik Lie"},"message":"Add Application manifest to automatically request elevation\n\nSet requested level to highestAvailable to allow non-admin invokation still","distinct":true,"url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/commits/389ff99182a8ab1b93f6d4452fa108c4f2df21fb"},{"sha":"c8fca4508d14e1b47cca7378789c012a41cc1092","author":{"email":"1a73af9e7ae00182733b2292511b814be66f065f@funbit.info","name":"Funbit"},"message":"Merge pull request #3 from thorerik/request-uac-elevation\n\nAdd Application manifest to automatically request elevation.","distinct":true,"url":"https://api.github.com/repos/Funbit/ets2-telemetry-server/commits/c8fca4508d14e1b47cca7378789c012a41cc1092"}]},"public":true,"created_at":"2015-01-01T15:11:42Z"} +,{"id":"2489656467","type":"ReleaseEvent","actor":{"id":9154981,"login":"demx8as6","gravatar_id":"","url":"https://api.github.com/users/demx8as6","avatar_url":"https://avatars.githubusercontent.com/u/9154981?"},"repo":{"id":28629341,"name":"demx8as6/geo-calculator","url":"https://api.github.com/repos/demx8as6/geo-calculator"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/demx8as6/geo-calculator/releases/818695","assets_url":"https://api.github.com/repos/demx8as6/geo-calculator/releases/818695/assets","upload_url":"https://uploads.github.com/repos/demx8as6/geo-calculator/releases/818695/assets{?name}","html_url":"https://github.com/demx8as6/geo-calculator/releases/tag/v0.1.1","id":818695,"tag_name":"v0.1.1","target_commitish":"master","name":"","draft":false,"author":{"login":"demx8as6","id":9154981,"avatar_url":"https://avatars.githubusercontent.com/u/9154981?v=3","gravatar_id":"","url":"https://api.github.com/users/demx8as6","html_url":"https://github.com/demx8as6","followers_url":"https://api.github.com/users/demx8as6/followers","following_url":"https://api.github.com/users/demx8as6/following{/other_user}","gists_url":"https://api.github.com/users/demx8as6/gists{/gist_id}","starred_url":"https://api.github.com/users/demx8as6/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/demx8as6/subscriptions","organizations_url":"https://api.github.com/users/demx8as6/orgs","repos_url":"https://api.github.com/users/demx8as6/repos","events_url":"https://api.github.com/users/demx8as6/events{/privacy}","received_events_url":"https://api.github.com/users/demx8as6/received_events","type":"User","site_admin":false},"prerelease":false,"created_at":"2015-01-01T14:02:34Z","published_at":"2015-01-01T15:11:43Z","assets":[],"tarball_url":"https://api.github.com/repos/demx8as6/geo-calculator/tarball/v0.1.1","zipball_url":"https://api.github.com/repos/demx8as6/geo-calculator/zipball/v0.1.1","body":""}},"public":true,"created_at":"2015-01-01T15:11:43Z"} +,{"id":"2489656468","type":"WatchEvent","actor":{"id":2639008,"login":"davedissian","gravatar_id":"","url":"https://api.github.com/users/davedissian","avatar_url":"https://avatars.githubusercontent.com/u/2639008?"},"repo":{"id":7550637,"name":"benvanik/xenia","url":"https://api.github.com/repos/benvanik/xenia"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:11:43Z"} +,{"id":"2489656469","type":"CreateEvent","actor":{"id":9154981,"login":"demx8as6","gravatar_id":"","url":"https://api.github.com/users/demx8as6","avatar_url":"https://avatars.githubusercontent.com/u/9154981?"},"repo":{"id":28629341,"name":"demx8as6/geo-calculator","url":"https://api.github.com/repos/demx8as6/geo-calculator"},"payload":{"ref":"v0.1.1","ref_type":"tag","master_branch":"master","description":"A small node application for geographic distance and azimuth calculations.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:11:43Z"} +,{"id":"2489656471","type":"PushEvent","actor":{"id":190363,"login":"andrewmcveigh","gravatar_id":"","url":"https://api.github.com/users/andrewmcveigh","avatar_url":"https://avatars.githubusercontent.com/u/190363?"},"repo":{"id":12434601,"name":"andrewmcveigh/cljs-time","url":"https://api.github.com/repos/andrewmcveigh/cljs-time"},"payload":{"push_id":536866432,"size":15,"distinct_size":2,"ref":"refs/heads/master","head":"4e4d903f169fffffa61b3664f0173f635fbd067e","before":"7582fef5a1164eb699a38fdd735ef0efafcb722f","commits":[{"sha":"c80a6e519e0b39b6f6f92875367aee77c7cf8de5","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@andrewmcveigh.com","name":"Andrew Mcveigh"},"message":"Version 0.2.5-SNAPSHOT","distinct":false,"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/commits/c80a6e519e0b39b6f6f92875367aee77c7cf8de5"},{"sha":"eb22b58a23778a81785099c2dd5b94bc22572299","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@andrewmcveigh.com","name":"Andrew Mcveigh"},"message":"Use js/Date setUTC* for to-default-time-zone","distinct":false,"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/commits/eb22b58a23778a81785099c2dd5b94bc22572299"},{"sha":"dbfcb0ea68654cba2e0f277474f281643ba6ddfd","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@andrewmcveigh.com","name":"Andrew Mcveigh"},"message":"Update cljs, bump version","distinct":false,"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/commits/dbfcb0ea68654cba2e0f277474f281643ba6ddfd"},{"sha":"484e77a74002e917256da958bb364fe259bd2236","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@andrewmcveigh.com","name":"Andrew Mcveigh"},"message":"Bugfix: coercion/DST correction","distinct":false,"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/commits/484e77a74002e917256da958bb364fe259bd2236"},{"sha":"9d49907cada55f5d6ff7610a8f62b7247a9552a6","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@andrewmcveigh.com","name":"Andrew Mcveigh"},"message":"Use built-in UTC->local, add from-default-time-zone","distinct":false,"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/commits/9d49907cada55f5d6ff7610a8f62b7247a9552a6"},{"sha":"6601ccc75ba3e661f4299686b4e331557aaa00f8","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@andrewmcveigh.com","name":"Andrew Mcveigh"},"message":"Implement Interval and Period with defrecord","distinct":false,"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/commits/6601ccc75ba3e661f4299686b4e331557aaa00f8"},{"sha":"b22c9c2e1bfcc85b26effc8a6c2e608e0465201c","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@andrewmcveigh.com","name":"Andrew Mcveigh"},"message":"Use data-oriented formatter impl, add with-default-year","distinct":false,"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/commits/b22c9c2e1bfcc85b26effc8a6c2e608e0465201c"},{"sha":"485ee6a4cc39d957f0101b327c6f68cf0daea4f7","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@andrewmcveigh.com","name":"Andrew Mcveigh"},"message":"Add v0.9.0 changes to core","distinct":false,"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/commits/485ee6a4cc39d957f0101b327c6f68cf0daea4f7"},{"sha":"355feeea742689c930310c3cbffb7e7d96d0db8a","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@andrewmcveigh.com","name":"Andrew Mcveigh"},"message":"Implement period in-xxxx, test","distinct":false,"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/commits/355feeea742689c930310c3cbffb7e7d96d0db8a"},{"sha":"faf31e0a5923a698cb6e9669579c9123f3a04c12","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@andrewmcveigh.com","name":"Andrew Mcveigh"},"message":"Add extra core-tests","distinct":false,"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/commits/faf31e0a5923a698cb6e9669579c9123f3a04c12"},{"sha":"ef45e68c13fa1fc633caf0efcee50945ba41e77f","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@andrewmcveigh.com","name":"Andrew Mcveigh"},"message":"Correct and test with-default-year impl","distinct":false,"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/commits/ef45e68c13fa1fc633caf0efcee50945ba41e77f"},{"sha":"c7ffc6624f2c86d532b1d33e03c56dd31eb89a40","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@andrewmcveigh.com","name":"Andrew Mcveigh"},"message":"Update periodic, fix plus months bug","distinct":false,"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/commits/c7ffc6624f2c86d532b1d33e03c56dd31eb89a40"},{"sha":"f7b5c526b9421de7b928181073c1c9acf8b44e5d","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@andrewmcveigh.com","name":"Andrew Mcveigh"},"message":"Prepare release: Update readme, plugins","distinct":false,"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/commits/f7b5c526b9421de7b928181073c1c9acf8b44e5d"},{"sha":"b8a80c66088f40bf5359deb4f1864fd8388433ba","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@andrewmcveigh.com","name":"Andrew Mcveigh"},"message":"Merge branch 'develop'","distinct":true,"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/commits/b8a80c66088f40bf5359deb4f1864fd8388433ba"},{"sha":"4e4d903f169fffffa61b3664f0173f635fbd067e","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@andrewmcveigh.com","name":"Andrew Mcveigh"},"message":"Version 0.3.0","distinct":true,"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/commits/4e4d903f169fffffa61b3664f0173f635fbd067e"}]},"public":true,"created_at":"2015-01-01T15:11:43Z"} +,{"id":"2489656472","type":"IssueCommentEvent","actor":{"id":1157917,"login":"alexis-via","gravatar_id":"","url":"https://api.github.com/users/alexis-via","avatar_url":"https://avatars.githubusercontent.com/u/1157917?"},"repo":{"id":20881761,"name":"OCA/account-financial-tools","url":"https://api.github.com/repos/OCA/account-financial-tools"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/OCA/account-financial-tools/issues/120","labels_url":"https://api.github.com/repos/OCA/account-financial-tools/issues/120/labels{/name}","comments_url":"https://api.github.com/repos/OCA/account-financial-tools/issues/120/comments","events_url":"https://api.github.com/repos/OCA/account-financial-tools/issues/120/events","html_url":"https://github.com/OCA/account-financial-tools/pull/120","id":53220410,"number":120,"title":"[FIX] Bug #119 account_auto_fy_sequence now works well with the POS","user":{"login":"alexis-via","id":1157917,"avatar_url":"https://avatars.githubusercontent.com/u/1157917?v=3","gravatar_id":"","url":"https://api.github.com/users/alexis-via","html_url":"https://github.com/alexis-via","followers_url":"https://api.github.com/users/alexis-via/followers","following_url":"https://api.github.com/users/alexis-via/following{/other_user}","gists_url":"https://api.github.com/users/alexis-via/gists{/gist_id}","starred_url":"https://api.github.com/users/alexis-via/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alexis-via/subscriptions","organizations_url":"https://api.github.com/users/alexis-via/orgs","repos_url":"https://api.github.com/users/alexis-via/repos","events_url":"https://api.github.com/users/alexis-via/events{/privacy}","received_events_url":"https://api.github.com/users/alexis-via/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T14:10:36Z","updated_at":"2015-01-01T15:11:43Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/OCA/account-financial-tools/pulls/120","html_url":"https://github.com/OCA/account-financial-tools/pull/120","diff_url":"https://github.com/OCA/account-financial-tools/pull/120.diff","patch_url":"https://github.com/OCA/account-financial-tools/pull/120.patch"},"body":"Please refer to the bug report #119 for a detailed scenario of the crash.\r\n\r\nDon't ask me why this fix solves the bug, I have no idea ! But it fixes the bug, that's the most important ! :) I hit this bug this morning (1/1/2015) when rolling out my first OpenERP POS in production... ARG !!!\r\nI \"copied\" this solution from odoo-80/addons/account/ir_sequence.py : this file also uses the old API like account_auto_fy_sequence, but uses the decorator \"@api.cr_uid_ids_context\" above the _next() method.\r\n\r\nAnother way to fix the bug is to modify the code of odoo-80/addons/point_of_sale/point_of_sale.py line 750 in the create() method:\r\nreplace:\r\n```\r\nvalues['name'] = session.config_id.sequence_id._next()\r\n```\r\nby \r\n```\r\nvalues['name'] = self.pool['ir.sequence']._next(cr, uid, [session.config_id.sequence_id.id], context=context)\r\n```"},"comment":{"url":"https://api.github.com/repos/OCA/account-financial-tools/issues/comments/68488746","html_url":"https://github.com/OCA/account-financial-tools/pull/120#issuecomment-68488746","issue_url":"https://api.github.com/repos/OCA/account-financial-tools/issues/120","id":68488746,"user":{"login":"alexis-via","id":1157917,"avatar_url":"https://avatars.githubusercontent.com/u/1157917?v=3","gravatar_id":"","url":"https://api.github.com/users/alexis-via","html_url":"https://github.com/alexis-via","followers_url":"https://api.github.com/users/alexis-via/followers","following_url":"https://api.github.com/users/alexis-via/following{/other_user}","gists_url":"https://api.github.com/users/alexis-via/gists{/gist_id}","starred_url":"https://api.github.com/users/alexis-via/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alexis-via/subscriptions","organizations_url":"https://api.github.com/users/alexis-via/orgs","repos_url":"https://api.github.com/users/alexis-via/repos","events_url":"https://api.github.com/users/alexis-via/events{/privacy}","received_events_url":"https://api.github.com/users/alexis-via/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:11:43Z","updated_at":"2015-01-01T15:11:43Z","body":"The travis error seems completely unrelated to the changes introduced by my fix."}},"public":true,"created_at":"2015-01-01T15:11:43Z","org":{"id":7600578,"login":"OCA","gravatar_id":"","url":"https://api.github.com/orgs/OCA","avatar_url":"https://avatars.githubusercontent.com/u/7600578?"}} +,{"id":"2489656474","type":"PushEvent","actor":{"id":10361002,"login":"amandaavasc","gravatar_id":"","url":"https://api.github.com/users/amandaavasc","avatar_url":"https://avatars.githubusercontent.com/u/10361002?"},"repo":{"id":28536403,"name":"OVER9K/SGAudiovisual","url":"https://api.github.com/repos/OVER9K/SGAudiovisual"},"payload":{"push_id":536866434,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"b4638099a5ee7c64cb8cc74bd8b89cd4ec17e772","before":"08fce403ac033780dc8219594d36eeb2f4b413e1","commits":[{"sha":"b4638099a5ee7c64cb8cc74bd8b89cd4ec17e772","author":{"email":"36a524e3b744331c4e654970105b73a1b63b02ca@gmail.com","name":"amandaavasc"},"message":"index1.html","distinct":true,"url":"https://api.github.com/repos/OVER9K/SGAudiovisual/commits/b4638099a5ee7c64cb8cc74bd8b89cd4ec17e772"}]},"public":true,"created_at":"2015-01-01T15:11:43Z"} +,{"id":"2489656476","type":"CreateEvent","actor":{"id":640179,"login":"jgmalcolm","gravatar_id":"","url":"https://api.github.com/users/jgmalcolm","avatar_url":"https://avatars.githubusercontent.com/u/640179?"},"repo":{"id":22471076,"name":"jgmalcolm/erikreinertsen.github.io","url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io"},"payload":{"ref":"related-posts","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:11:43Z"} +,{"id":"2489656477","type":"DeleteEvent","actor":{"id":4761614,"login":"SylvainPlessis","gravatar_id":"","url":"https://api.github.com/users/SylvainPlessis","avatar_url":"https://avatars.githubusercontent.com/u/4761614?"},"repo":{"id":11035035,"name":"SylvainPlessis/antioch","url":"https://api.github.com/repos/SylvainPlessis/antioch"},"payload":{"ref":"input_parsing_formats","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:11:43Z"} +,{"id":"2489656483","type":"PullRequestEvent","actor":{"id":6568110,"login":"dostodabsi","gravatar_id":"","url":"https://api.github.com/users/dostodabsi","avatar_url":"https://avatars.githubusercontent.com/u/6568110?"},"repo":{"id":6106340,"name":"JuliaLang/METADATA.jl","url":"https://api.github.com/repos/JuliaLang/METADATA.jl"},"payload":{"action":"closed","number":1933,"pull_request":{"url":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/1933","id":26743839,"html_url":"https://github.com/JuliaLang/METADATA.jl/pull/1933","diff_url":"https://github.com/JuliaLang/METADATA.jl/pull/1933.diff","patch_url":"https://github.com/JuliaLang/METADATA.jl/pull/1933.patch","issue_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/1933","number":1933,"state":"closed","locked":false,"title":"Pull request/9f37988e","user":{"login":"dostodabsi","id":6568110,"avatar_url":"https://avatars.githubusercontent.com/u/6568110?v=3","gravatar_id":"","url":"https://api.github.com/users/dostodabsi","html_url":"https://github.com/dostodabsi","followers_url":"https://api.github.com/users/dostodabsi/followers","following_url":"https://api.github.com/users/dostodabsi/following{/other_user}","gists_url":"https://api.github.com/users/dostodabsi/gists{/gist_id}","starred_url":"https://api.github.com/users/dostodabsi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dostodabsi/subscriptions","organizations_url":"https://api.github.com/users/dostodabsi/orgs","repos_url":"https://api.github.com/users/dostodabsi/repos","events_url":"https://api.github.com/users/dostodabsi/events{/privacy}","received_events_url":"https://api.github.com/users/dostodabsi/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:08:54Z","updated_at":"2015-01-01T15:11:44Z","closed_at":"2015-01-01T15:11:44Z","merged_at":null,"merge_commit_sha":"d478294a4c31886fc77999d97689bea9142f4c9c","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/1933/commits","review_comments_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/1933/comments","review_comment_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/comments/{number}","comments_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/1933/comments","statuses_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/statuses/9f37988ecdf5cfc9e7427d3eeab90e6bc67a382d","head":{"label":"dostodabsi:pull-request/9f37988e","ref":"pull-request/9f37988e","sha":"9f37988ecdf5cfc9e7427d3eeab90e6bc67a382d","user":{"login":"dostodabsi","id":6568110,"avatar_url":"https://avatars.githubusercontent.com/u/6568110?v=3","gravatar_id":"","url":"https://api.github.com/users/dostodabsi","html_url":"https://github.com/dostodabsi","followers_url":"https://api.github.com/users/dostodabsi/followers","following_url":"https://api.github.com/users/dostodabsi/following{/other_user}","gists_url":"https://api.github.com/users/dostodabsi/gists{/gist_id}","starred_url":"https://api.github.com/users/dostodabsi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dostodabsi/subscriptions","organizations_url":"https://api.github.com/users/dostodabsi/orgs","repos_url":"https://api.github.com/users/dostodabsi/repos","events_url":"https://api.github.com/users/dostodabsi/events{/privacy}","received_events_url":"https://api.github.com/users/dostodabsi/received_events","type":"User","site_admin":false},"repo":{"id":28687059,"name":"METADATA.jl","full_name":"dostodabsi/METADATA.jl","owner":{"login":"dostodabsi","id":6568110,"avatar_url":"https://avatars.githubusercontent.com/u/6568110?v=3","gravatar_id":"","url":"https://api.github.com/users/dostodabsi","html_url":"https://github.com/dostodabsi","followers_url":"https://api.github.com/users/dostodabsi/followers","following_url":"https://api.github.com/users/dostodabsi/following{/other_user}","gists_url":"https://api.github.com/users/dostodabsi/gists{/gist_id}","starred_url":"https://api.github.com/users/dostodabsi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dostodabsi/subscriptions","organizations_url":"https://api.github.com/users/dostodabsi/orgs","repos_url":"https://api.github.com/users/dostodabsi/repos","events_url":"https://api.github.com/users/dostodabsi/events{/privacy}","received_events_url":"https://api.github.com/users/dostodabsi/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/dostodabsi/METADATA.jl","description":"Metadata for registered Julia packages.","fork":true,"url":"https://api.github.com/repos/dostodabsi/METADATA.jl","forks_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/forks","keys_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/keys{/key_id}","collaborators_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/teams","hooks_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/hooks","issue_events_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/issues/events{/number}","events_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/events","assignees_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/assignees{/user}","branches_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/branches{/branch}","tags_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/tags","blobs_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/git/refs{/sha}","trees_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/git/trees{/sha}","statuses_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/statuses/{sha}","languages_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/languages","stargazers_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/stargazers","contributors_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/contributors","subscribers_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/subscribers","subscription_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/subscription","commits_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/commits{/sha}","git_commits_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/git/commits{/sha}","comments_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/comments{/number}","issue_comment_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/issues/comments/{number}","contents_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/contents/{+path}","compare_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/compare/{base}...{head}","merges_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/merges","archive_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/downloads","issues_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/issues{/number}","pulls_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/pulls{/number}","milestones_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/milestones{/number}","notifications_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/labels{/name}","releases_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/releases{/id}","created_at":"2015-01-01T13:31:57Z","updated_at":"2015-01-01T13:31:59Z","pushed_at":"2015-01-01T13:31:59Z","git_url":"git://github.com/dostodabsi/METADATA.jl.git","ssh_url":"git@github.com:dostodabsi/METADATA.jl.git","clone_url":"https://github.com/dostodabsi/METADATA.jl.git","svn_url":"https://github.com/dostodabsi/METADATA.jl","homepage":"pkg.julialang.org","size":18835,"stargazers_count":0,"watchers_count":0,"language":"Julia","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":"metadata-v2"}},"base":{"label":"JuliaLang:metadata-v2","ref":"metadata-v2","sha":"1a89d75acaea54be8659afeb482057af88fd7ab8","user":{"login":"JuliaLang","id":743164,"avatar_url":"https://avatars.githubusercontent.com/u/743164?v=3","gravatar_id":"","url":"https://api.github.com/users/JuliaLang","html_url":"https://github.com/JuliaLang","followers_url":"https://api.github.com/users/JuliaLang/followers","following_url":"https://api.github.com/users/JuliaLang/following{/other_user}","gists_url":"https://api.github.com/users/JuliaLang/gists{/gist_id}","starred_url":"https://api.github.com/users/JuliaLang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JuliaLang/subscriptions","organizations_url":"https://api.github.com/users/JuliaLang/orgs","repos_url":"https://api.github.com/users/JuliaLang/repos","events_url":"https://api.github.com/users/JuliaLang/events{/privacy}","received_events_url":"https://api.github.com/users/JuliaLang/received_events","type":"Organization","site_admin":false},"repo":{"id":6106340,"name":"METADATA.jl","full_name":"JuliaLang/METADATA.jl","owner":{"login":"JuliaLang","id":743164,"avatar_url":"https://avatars.githubusercontent.com/u/743164?v=3","gravatar_id":"","url":"https://api.github.com/users/JuliaLang","html_url":"https://github.com/JuliaLang","followers_url":"https://api.github.com/users/JuliaLang/followers","following_url":"https://api.github.com/users/JuliaLang/following{/other_user}","gists_url":"https://api.github.com/users/JuliaLang/gists{/gist_id}","starred_url":"https://api.github.com/users/JuliaLang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JuliaLang/subscriptions","organizations_url":"https://api.github.com/users/JuliaLang/orgs","repos_url":"https://api.github.com/users/JuliaLang/repos","events_url":"https://api.github.com/users/JuliaLang/events{/privacy}","received_events_url":"https://api.github.com/users/JuliaLang/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/JuliaLang/METADATA.jl","description":"Metadata for registered Julia packages.","fork":false,"url":"https://api.github.com/repos/JuliaLang/METADATA.jl","forks_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/forks","keys_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/keys{/key_id}","collaborators_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/teams","hooks_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/hooks","issue_events_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/events{/number}","events_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/events","assignees_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/assignees{/user}","branches_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/branches{/branch}","tags_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/tags","blobs_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/git/refs{/sha}","trees_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/git/trees{/sha}","statuses_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/statuses/{sha}","languages_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/languages","stargazers_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/stargazers","contributors_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/contributors","subscribers_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/subscribers","subscription_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/subscription","commits_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/commits{/sha}","git_commits_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/git/commits{/sha}","comments_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/comments{/number}","issue_comment_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/comments/{number}","contents_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/contents/{+path}","compare_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/compare/{base}...{head}","merges_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/merges","archive_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/downloads","issues_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues{/number}","pulls_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls{/number}","milestones_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/milestones{/number}","notifications_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/labels{/name}","releases_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/releases{/id}","created_at":"2012-10-06T20:05:51Z","updated_at":"2015-01-01T04:31:52Z","pushed_at":"2015-01-01T04:31:52Z","git_url":"git://github.com/JuliaLang/METADATA.jl.git","ssh_url":"git@github.com:JuliaLang/METADATA.jl.git","clone_url":"https://github.com/JuliaLang/METADATA.jl.git","svn_url":"https://github.com/JuliaLang/METADATA.jl","homepage":"pkg.julialang.org","size":18835,"stargazers_count":59,"watchers_count":59,"language":"Julia","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":239,"mirror_url":null,"open_issues_count":4,"forks":239,"open_issues":4,"watchers":59,"default_branch":"metadata-v2"}},"_links":{"self":{"href":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/1933"},"html":{"href":"https://github.com/JuliaLang/METADATA.jl/pull/1933"},"issue":{"href":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/1933"},"comments":{"href":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/1933/comments"},"review_comments":{"href":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/1933/comments"},"review_comment":{"href":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/1933/commits"},"statuses":{"href":"https://api.github.com/repos/JuliaLang/METADATA.jl/statuses/9f37988ecdf5cfc9e7427d3eeab90e6bc67a382d"}},"merged":false,"mergeable":true,"mergeable_state":"unstable","merged_by":null,"comments":0,"review_comments":0,"commits":2,"additions":1,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:11:45Z","org":{"id":743164,"login":"JuliaLang","gravatar_id":"","url":"https://api.github.com/orgs/JuliaLang","avatar_url":"https://avatars.githubusercontent.com/u/743164?"}} +,{"id":"2489656484","type":"CreateEvent","actor":{"id":190363,"login":"andrewmcveigh","gravatar_id":"","url":"https://api.github.com/users/andrewmcveigh","avatar_url":"https://avatars.githubusercontent.com/u/190363?"},"repo":{"id":12434601,"name":"andrewmcveigh/cljs-time","url":"https://api.github.com/repos/andrewmcveigh/cljs-time"},"payload":{"ref":"v0.3.0","ref_type":"tag","master_branch":"master","description":"A clj-time inspired date library for clojurescript.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:11:45Z"} +,{"id":"2489656486","type":"PushEvent","actor":{"id":1405160,"login":"npenin","gravatar_id":"","url":"https://api.github.com/users/npenin","avatar_url":"https://avatars.githubusercontent.com/u/1405160?"},"repo":{"id":18959207,"name":"npenin/node-mvc","url":"https://api.github.com/repos/npenin/node-mvc"},"payload":{"push_id":536866438,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8662864ff02597a2a4c82881ed01d6962f955aaa","before":"2b29cc7e11b1f849a70ef07a0d4d5e9b75b78009","commits":[{"sha":"8662864ff02597a2a4c82881ed01d6962f955aaa","author":{"email":"c08c1f735eba3b815ae35ee67a7efe08a09e0ce7@dragon-angel.fr","name":"npenin"},"message":"added package.json\nremoved useless require","distinct":true,"url":"https://api.github.com/repos/npenin/node-mvc/commits/8662864ff02597a2a4c82881ed01d6962f955aaa"}]},"public":true,"created_at":"2015-01-01T15:11:45Z"} +,{"id":"2489656487","type":"PushEvent","actor":{"id":9889333,"login":"helalyne","gravatar_id":"","url":"https://api.github.com/users/helalyne","avatar_url":"https://avatars.githubusercontent.com/u/9889333?"},"repo":{"id":28417617,"name":"helalyne/secret-wookie","url":"https://api.github.com/repos/helalyne/secret-wookie"},"payload":{"push_id":536866439,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1682ac97229a58d59bad4b3760582e6670a9ead7","before":"ec125477ae4644c2d93af711b571e17aebecb50e","commits":[{"sha":"1682ac97229a58d59bad4b3760582e6670a9ead7","author":{"email":"903e3d37c1727b6be48c362779ac5dc97a065b34@gmail.com","name":"Anastasia Kucherova"},"message":"Design experiments","distinct":true,"url":"https://api.github.com/repos/helalyne/secret-wookie/commits/1682ac97229a58d59bad4b3760582e6670a9ead7"}]},"public":true,"created_at":"2015-01-01T15:11:45Z"} +,{"id":"2489656488","type":"PushEvent","actor":{"id":9394044,"login":"pallavagarwal07","gravatar_id":"","url":"https://api.github.com/users/pallavagarwal07","avatar_url":"https://avatars.githubusercontent.com/u/9394044?"},"repo":{"id":28600255,"name":"pallavagarwal07/.vim","url":"https://api.github.com/repos/pallavagarwal07/.vim"},"payload":{"push_id":536866440,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"632c9b70f886a0c7890c19a707ba9f53d1fc8e4b","before":"7f17cad558a641c795937595d1aa6b7ec68acf8f","commits":[{"sha":"632c9b70f886a0c7890c19a707ba9f53d1fc8e4b","author":{"email":"cd264665da4bfeb0e7aa14997b1585e0b5058d85@iitk.ac.in","name":"Pallav"},"message":"01_01_2015-20:39","distinct":true,"url":"https://api.github.com/repos/pallavagarwal07/.vim/commits/632c9b70f886a0c7890c19a707ba9f53d1fc8e4b"}]},"public":true,"created_at":"2015-01-01T15:11:45Z"} +,{"id":"2489656489","type":"PushEvent","actor":{"id":91858,"login":"codebeige","gravatar_id":"","url":"https://api.github.com/users/codebeige","avatar_url":"https://avatars.githubusercontent.com/u/91858?"},"repo":{"id":1890581,"name":"codebeige/dotfiles","url":"https://api.github.com/repos/codebeige/dotfiles"},"payload":{"push_id":536866441,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"11057c6412a596c9cc79eaedf1785a41a1575dc5","before":"8d5b593bc20cf31bd9cdce69cc1aeba32676f7a5","commits":[{"sha":"11057c6412a596c9cc79eaedf1785a41a1575dc5","author":{"email":"3f1326dff4d85ad4ec938fb33f64575ace96db26@gmah.net","name":"Tibor Claassen"},"message":"Upcase current word in insert mode","distinct":true,"url":"https://api.github.com/repos/codebeige/dotfiles/commits/11057c6412a596c9cc79eaedf1785a41a1575dc5"}]},"public":true,"created_at":"2015-01-01T15:11:45Z"} +,{"id":"2489656491","type":"GollumEvent","actor":{"id":10333363,"login":"dougmeredith","gravatar_id":"","url":"https://api.github.com/users/dougmeredith","avatar_url":"https://avatars.githubusercontent.com/u/10333363?"},"repo":{"id":12983151,"name":"openhab/openhab","url":"https://api.github.com/repos/openhab/openhab"},"payload":{"pages":[{"page_name":"xPL-Binding","title":"xPL Binding","summary":null,"action":"edited","sha":"4770ead7cffa98e35b343c4c1fb51ec9ac699745","html_url":"https://github.com/openhab/openhab/wiki/xPL-Binding"}]},"public":true,"created_at":"2015-01-01T15:11:45Z","org":{"id":1007353,"login":"openhab","gravatar_id":"","url":"https://api.github.com/orgs/openhab","avatar_url":"https://avatars.githubusercontent.com/u/1007353?"}} +,{"id":"2489656494","type":"WatchEvent","actor":{"id":712896,"login":"JDevlieghere","gravatar_id":"","url":"https://api.github.com/users/JDevlieghere","avatar_url":"https://avatars.githubusercontent.com/u/712896?"},"repo":{"id":291137,"name":"robbyrussell/oh-my-zsh","url":"https://api.github.com/repos/robbyrussell/oh-my-zsh"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:11:46Z"} +,{"id":"2489656498","type":"ForkEvent","actor":{"id":3625244,"login":"ghaiklor","gravatar_id":"","url":"https://api.github.com/users/ghaiklor","avatar_url":"https://avatars.githubusercontent.com/u/3625244?"},"repo":{"id":15783450,"name":"jlord/patchwork","url":"https://api.github.com/repos/jlord/patchwork"},"payload":{"forkee":{"id":28688805,"name":"patchwork","full_name":"ghaiklor/patchwork","owner":{"login":"ghaiklor","id":3625244,"avatar_url":"https://avatars.githubusercontent.com/u/3625244?v=3","gravatar_id":"","url":"https://api.github.com/users/ghaiklor","html_url":"https://github.com/ghaiklor","followers_url":"https://api.github.com/users/ghaiklor/followers","following_url":"https://api.github.com/users/ghaiklor/following{/other_user}","gists_url":"https://api.github.com/users/ghaiklor/gists{/gist_id}","starred_url":"https://api.github.com/users/ghaiklor/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ghaiklor/subscriptions","organizations_url":"https://api.github.com/users/ghaiklor/orgs","repos_url":"https://api.github.com/users/ghaiklor/repos","events_url":"https://api.github.com/users/ghaiklor/events{/privacy}","received_events_url":"https://api.github.com/users/ghaiklor/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ghaiklor/patchwork","description":"All the Git-it Workshop completers! ","fork":true,"url":"https://api.github.com/repos/ghaiklor/patchwork","forks_url":"https://api.github.com/repos/ghaiklor/patchwork/forks","keys_url":"https://api.github.com/repos/ghaiklor/patchwork/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ghaiklor/patchwork/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ghaiklor/patchwork/teams","hooks_url":"https://api.github.com/repos/ghaiklor/patchwork/hooks","issue_events_url":"https://api.github.com/repos/ghaiklor/patchwork/issues/events{/number}","events_url":"https://api.github.com/repos/ghaiklor/patchwork/events","assignees_url":"https://api.github.com/repos/ghaiklor/patchwork/assignees{/user}","branches_url":"https://api.github.com/repos/ghaiklor/patchwork/branches{/branch}","tags_url":"https://api.github.com/repos/ghaiklor/patchwork/tags","blobs_url":"https://api.github.com/repos/ghaiklor/patchwork/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ghaiklor/patchwork/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ghaiklor/patchwork/git/refs{/sha}","trees_url":"https://api.github.com/repos/ghaiklor/patchwork/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ghaiklor/patchwork/statuses/{sha}","languages_url":"https://api.github.com/repos/ghaiklor/patchwork/languages","stargazers_url":"https://api.github.com/repos/ghaiklor/patchwork/stargazers","contributors_url":"https://api.github.com/repos/ghaiklor/patchwork/contributors","subscribers_url":"https://api.github.com/repos/ghaiklor/patchwork/subscribers","subscription_url":"https://api.github.com/repos/ghaiklor/patchwork/subscription","commits_url":"https://api.github.com/repos/ghaiklor/patchwork/commits{/sha}","git_commits_url":"https://api.github.com/repos/ghaiklor/patchwork/git/commits{/sha}","comments_url":"https://api.github.com/repos/ghaiklor/patchwork/comments{/number}","issue_comment_url":"https://api.github.com/repos/ghaiklor/patchwork/issues/comments/{number}","contents_url":"https://api.github.com/repos/ghaiklor/patchwork/contents/{+path}","compare_url":"https://api.github.com/repos/ghaiklor/patchwork/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ghaiklor/patchwork/merges","archive_url":"https://api.github.com/repos/ghaiklor/patchwork/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ghaiklor/patchwork/downloads","issues_url":"https://api.github.com/repos/ghaiklor/patchwork/issues{/number}","pulls_url":"https://api.github.com/repos/ghaiklor/patchwork/pulls{/number}","milestones_url":"https://api.github.com/repos/ghaiklor/patchwork/milestones{/number}","notifications_url":"https://api.github.com/repos/ghaiklor/patchwork/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ghaiklor/patchwork/labels{/name}","releases_url":"https://api.github.com/repos/ghaiklor/patchwork/releases{/id}","created_at":"2015-01-01T15:11:46Z","updated_at":"2015-01-01T12:42:10Z","pushed_at":"2015-01-01T12:42:08Z","git_url":"git://github.com/ghaiklor/patchwork.git","ssh_url":"git@github.com:ghaiklor/patchwork.git","clone_url":"https://github.com/ghaiklor/patchwork.git","svn_url":"https://github.com/ghaiklor/patchwork","homepage":"http://jlord.github.io/patchwork","size":27523,"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":"gh-pages","public":true}},"public":true,"created_at":"2015-01-01T15:11:47Z"} +,{"id":"2489656499","type":"PushEvent","actor":{"id":10152544,"login":"LeBalch-Virginie","gravatar_id":"","url":"https://api.github.com/users/LeBalch-Virginie","avatar_url":"https://avatars.githubusercontent.com/u/10152544?"},"repo":{"id":25916085,"name":"Chuck-Berry/ProjetIA_Quarto","url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto"},"payload":{"push_id":536866448,"size":1,"distinct_size":1,"ref":"refs/heads/heuristique","head":"e6851533f4a72b06d11f3f75763509e1abb7ac1c","before":"5a296a6efd9bdfd6d0fa4f1db98c35d8ae7d75bd","commits":[{"sha":"e6851533f4a72b06d11f3f75763509e1abb7ac1c","author":{"email":"f667fba3570bab126f2c36bef69c52c9a1d295bd@gmail.com","name":"unknown"},"message":"Prise en compte du niveau","distinct":true,"url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto/commits/e6851533f4a72b06d11f3f75763509e1abb7ac1c"}]},"public":true,"created_at":"2015-01-01T15:11:47Z"} +,{"id":"2489656502","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":28688435,"name":"brunocarvalhodearaujo/api","url":"https://api.github.com/repos/brunocarvalhodearaujo/api"},"payload":{"ref":"1.0","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:11:47Z"} +,{"id":"2489656505","type":"WatchEvent","actor":{"id":5082203,"login":"Totof34","gravatar_id":"","url":"https://api.github.com/users/Totof34","avatar_url":"https://avatars.githubusercontent.com/u/5082203?"},"repo":{"id":19574329,"name":"vapkse/diagnostic","url":"https://api.github.com/repos/vapkse/diagnostic"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:11:48Z"} +,{"id":"2489656507","type":"MemberEvent","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":{"member":{"login":"Schumi09","id":2833183,"avatar_url":"https://avatars.githubusercontent.com/u/2833183?v=3","gravatar_id":"","url":"https://api.github.com/users/Schumi09","html_url":"https://github.com/Schumi09","followers_url":"https://api.github.com/users/Schumi09/followers","following_url":"https://api.github.com/users/Schumi09/following{/other_user}","gists_url":"https://api.github.com/users/Schumi09/gists{/gist_id}","starred_url":"https://api.github.com/users/Schumi09/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Schumi09/subscriptions","organizations_url":"https://api.github.com/users/Schumi09/orgs","repos_url":"https://api.github.com/users/Schumi09/repos","events_url":"https://api.github.com/users/Schumi09/events{/privacy}","received_events_url":"https://api.github.com/users/Schumi09/received_events","type":"User","site_admin":false},"action":"added"},"public":true,"created_at":"2015-01-01T15:11:48Z"} +,{"id":"2489656515","type":"CreateEvent","actor":{"id":10267256,"login":"artisangang","gravatar_id":"","url":"https://api.github.com/users/artisangang","avatar_url":"https://avatars.githubusercontent.com/u/10267256?"},"repo":{"id":28688806,"name":"artisangang/slightjs","url":"https://api.github.com/repos/artisangang/slightjs"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Slightjs used for speed optimization using hashban routing ","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:11:48Z"} +,{"id":"2489656520","type":"ForkEvent","actor":{"id":998924,"login":"amytych","gravatar_id":"","url":"https://api.github.com/users/amytych","avatar_url":"https://avatars.githubusercontent.com/u/998924?"},"repo":{"id":25836035,"name":"postachio/theme-original","url":"https://api.github.com/repos/postachio/theme-original"},"payload":{"forkee":{"id":28688807,"name":"theme-original","full_name":"amytych/theme-original","owner":{"login":"amytych","id":998924,"avatar_url":"https://avatars.githubusercontent.com/u/998924?v=3","gravatar_id":"","url":"https://api.github.com/users/amytych","html_url":"https://github.com/amytych","followers_url":"https://api.github.com/users/amytych/followers","following_url":"https://api.github.com/users/amytych/following{/other_user}","gists_url":"https://api.github.com/users/amytych/gists{/gist_id}","starred_url":"https://api.github.com/users/amytych/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/amytych/subscriptions","organizations_url":"https://api.github.com/users/amytych/orgs","repos_url":"https://api.github.com/users/amytych/repos","events_url":"https://api.github.com/users/amytych/events{/privacy}","received_events_url":"https://api.github.com/users/amytych/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/amytych/theme-original","description":"The first theme ever created for Postach.io.","fork":true,"url":"https://api.github.com/repos/amytych/theme-original","forks_url":"https://api.github.com/repos/amytych/theme-original/forks","keys_url":"https://api.github.com/repos/amytych/theme-original/keys{/key_id}","collaborators_url":"https://api.github.com/repos/amytych/theme-original/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/amytych/theme-original/teams","hooks_url":"https://api.github.com/repos/amytych/theme-original/hooks","issue_events_url":"https://api.github.com/repos/amytych/theme-original/issues/events{/number}","events_url":"https://api.github.com/repos/amytych/theme-original/events","assignees_url":"https://api.github.com/repos/amytych/theme-original/assignees{/user}","branches_url":"https://api.github.com/repos/amytych/theme-original/branches{/branch}","tags_url":"https://api.github.com/repos/amytych/theme-original/tags","blobs_url":"https://api.github.com/repos/amytych/theme-original/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/amytych/theme-original/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/amytych/theme-original/git/refs{/sha}","trees_url":"https://api.github.com/repos/amytych/theme-original/git/trees{/sha}","statuses_url":"https://api.github.com/repos/amytych/theme-original/statuses/{sha}","languages_url":"https://api.github.com/repos/amytych/theme-original/languages","stargazers_url":"https://api.github.com/repos/amytych/theme-original/stargazers","contributors_url":"https://api.github.com/repos/amytych/theme-original/contributors","subscribers_url":"https://api.github.com/repos/amytych/theme-original/subscribers","subscription_url":"https://api.github.com/repos/amytych/theme-original/subscription","commits_url":"https://api.github.com/repos/amytych/theme-original/commits{/sha}","git_commits_url":"https://api.github.com/repos/amytych/theme-original/git/commits{/sha}","comments_url":"https://api.github.com/repos/amytych/theme-original/comments{/number}","issue_comment_url":"https://api.github.com/repos/amytych/theme-original/issues/comments/{number}","contents_url":"https://api.github.com/repos/amytych/theme-original/contents/{+path}","compare_url":"https://api.github.com/repos/amytych/theme-original/compare/{base}...{head}","merges_url":"https://api.github.com/repos/amytych/theme-original/merges","archive_url":"https://api.github.com/repos/amytych/theme-original/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/amytych/theme-original/downloads","issues_url":"https://api.github.com/repos/amytych/theme-original/issues{/number}","pulls_url":"https://api.github.com/repos/amytych/theme-original/pulls{/number}","milestones_url":"https://api.github.com/repos/amytych/theme-original/milestones{/number}","notifications_url":"https://api.github.com/repos/amytych/theme-original/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/amytych/theme-original/labels{/name}","releases_url":"https://api.github.com/repos/amytych/theme-original/releases{/id}","created_at":"2015-01-01T15:11:50Z","updated_at":"2014-12-16T16:49:48Z","pushed_at":"2014-10-27T19:54:33Z","git_url":"git://github.com/amytych/theme-original.git","ssh_url":"git@github.com:amytych/theme-original.git","clone_url":"https://github.com/amytych/theme-original.git","svn_url":"https://github.com/amytych/theme-original","homepage":null,"size":292,"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:11:50Z","org":{"id":6709460,"login":"postachio","gravatar_id":"","url":"https://api.github.com/orgs/postachio","avatar_url":"https://avatars.githubusercontent.com/u/6709460?"}} +,{"id":"2489656522","type":"PushEvent","actor":{"id":10324941,"login":"julijak","gravatar_id":"","url":"https://api.github.com/users/julijak","avatar_url":"https://avatars.githubusercontent.com/u/10324941?"},"repo":{"id":28543037,"name":"julijak/Study-Asm","url":"https://api.github.com/repos/julijak/Study-Asm"},"payload":{"push_id":536866454,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8e9d486d2d461028c09975d5f8cf7a3e6d448719","before":"7e3c6fbbefe464266f3a747771de53a256188cd5","commits":[{"sha":"8e9d486d2d461028c09975d5f8cf7a3e6d448719","author":{"email":"686c177cb861f8d76fcf5edc47cd9197a849c2d9@itechart-group.com","name":"Yuliya"},"message":"Added 30","distinct":true,"url":"https://api.github.com/repos/julijak/Study-Asm/commits/8e9d486d2d461028c09975d5f8cf7a3e6d448719"}]},"public":true,"created_at":"2015-01-01T15:11:50Z"} +,{"id":"2489656523","type":"PushEvent","actor":{"id":5619718,"login":"rolffokkens","gravatar_id":"","url":"https://api.github.com/users/rolffokkens","avatar_url":"https://avatars.githubusercontent.com/u/5619718?"},"repo":{"id":28648084,"name":"rolffokkens/rf-backup","url":"https://api.github.com/repos/rolffokkens/rf-backup"},"payload":{"push_id":536866455,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"dfba4d24a6b7e587732c6ea475ec364217f43a79","before":"cb8cdd36076938526ed84ad16d624dcb6c7c9b2c","commits":[{"sha":"dfba4d24a6b7e587732c6ea475ec364217f43a79","author":{"email":"0cd018c7538ed3e44e9a825de53681a62adf60d2@target-holding.nl","name":"Rolf Fokkens"},"message":"Better mount location","distinct":true,"url":"https://api.github.com/repos/rolffokkens/rf-backup/commits/dfba4d24a6b7e587732c6ea475ec364217f43a79"}]},"public":true,"created_at":"2015-01-01T15:11:50Z"} +,{"id":"2489656526","type":"PushEvent","actor":{"id":4627837,"login":"jessemillar","gravatar_id":"","url":"https://api.github.com/users/jessemillar","avatar_url":"https://avatars.githubusercontent.com/u/4627837?"},"repo":{"id":20690295,"name":"jessemillar/EHKMUH","url":"https://api.github.com/repos/jessemillar/EHKMUH"},"payload":{"push_id":536866456,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"252c5da1408f9d2181ce039ec98fc06d4f3152b7","before":"6dbfabde86548785fb40779197ea93c4d0fabe72","commits":[{"sha":"252c5da1408f9d2181ce039ec98fc06d4f3152b7","author":{"email":"0ba40b71986250aad0903c7ebcfd76a410af35fb@gmail.com","name":"Jesse Millar"},"message":"Update LICENSE.md","distinct":true,"url":"https://api.github.com/repos/jessemillar/EHKMUH/commits/252c5da1408f9d2181ce039ec98fc06d4f3152b7"}]},"public":true,"created_at":"2015-01-01T15:11:50Z"} +,{"id":"2489656527","type":"PushEvent","actor":{"id":190363,"login":"andrewmcveigh","gravatar_id":"","url":"https://api.github.com/users/andrewmcveigh","avatar_url":"https://avatars.githubusercontent.com/u/190363?"},"repo":{"id":12434601,"name":"andrewmcveigh/cljs-time","url":"https://api.github.com/repos/andrewmcveigh/cljs-time"},"payload":{"push_id":536866457,"size":3,"distinct_size":1,"ref":"refs/heads/develop","head":"02b8fe4f3b7860729a3adfe507d7e2ee34d726c0","before":"f7b5c526b9421de7b928181073c1c9acf8b44e5d","commits":[{"sha":"b8a80c66088f40bf5359deb4f1864fd8388433ba","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@andrewmcveigh.com","name":"Andrew Mcveigh"},"message":"Merge branch 'develop'","distinct":false,"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/commits/b8a80c66088f40bf5359deb4f1864fd8388433ba"},{"sha":"4e4d903f169fffffa61b3664f0173f635fbd067e","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@andrewmcveigh.com","name":"Andrew Mcveigh"},"message":"Version 0.3.0","distinct":false,"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/commits/4e4d903f169fffffa61b3664f0173f635fbd067e"},{"sha":"02b8fe4f3b7860729a3adfe507d7e2ee34d726c0","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@andrewmcveigh.com","name":"Andrew Mcveigh"},"message":"Version 0.3.1-SNAPSHOT","distinct":true,"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/commits/02b8fe4f3b7860729a3adfe507d7e2ee34d726c0"}]},"public":true,"created_at":"2015-01-01T15:11:50Z"} +,{"id":"2489656528","type":"PushEvent","actor":{"id":72712,"login":"blippy","gravatar_id":"","url":"https://api.github.com/users/blippy","avatar_url":"https://avatars.githubusercontent.com/u/72712?"},"repo":{"id":709131,"name":"blippy/pypms","url":"https://api.github.com/repos/blippy/pypms"},"payload":{"push_id":536866458,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"09b0a606946e06a98146fce260d0a94f432d4966","before":"a388a8a076ae553b4defa668088189c16cd8c297","commits":[{"sha":"09b0a606946e06a98146fce260d0a94f432d4966","author":{"email":"df66efc19837a6744447c6cd5a4e6ceaf291680f@yahoo.co.uk","name":"Mark Carter"},"message":"cleaned up old files.\nmodified: statements.py : IMA now reads SREL","distinct":true,"url":"https://api.github.com/repos/blippy/pypms/commits/09b0a606946e06a98146fce260d0a94f432d4966"}]},"public":true,"created_at":"2015-01-01T15:11:50Z"} +,{"id":"2489656529","type":"PullRequestReviewCommentEvent","actor":{"id":459648,"login":"samsonasik","gravatar_id":"","url":"https://api.github.com/users/samsonasik","avatar_url":"https://avatars.githubusercontent.com/u/459648?"},"repo":{"id":702550,"name":"zendframework/zf2","url":"https://api.github.com/repos/zendframework/zf2"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/22400138","id":22400138,"diff_hunk":"@@ -0,0 +1,14 @@\n+\r\n```\r\n\r\n这个文件中,editor-ninja已经被拆分开来了 - -\r\n我下载的这个默认的主题,按照上面的结构制作新主题,结果后台一直不加载输入框。。。。。。。。。\r\n\r\n然后下载了http://airpub.qiniudn.com/themes/chill/admin.html这个文件……发现\r\n\r\n```\r\n\r\n```\r\n\r\n。。。。。。。。。。。。。。。。。。。。"},"comment":{"url":"https://api.github.com/repos/duoshuo/airpub/issues/comments/68488750","html_url":"https://github.com/duoshuo/airpub/issues/22#issuecomment-68488750","issue_url":"https://api.github.com/repos/duoshuo/airpub/issues/22","id":68488750,"user":{"login":"banrikun","id":7817228,"avatar_url":"https://avatars.githubusercontent.com/u/7817228?v=3","gravatar_id":"","url":"https://api.github.com/users/banrikun","html_url":"https://github.com/banrikun","followers_url":"https://api.github.com/users/banrikun/followers","following_url":"https://api.github.com/users/banrikun/following{/other_user}","gists_url":"https://api.github.com/users/banrikun/gists{/gist_id}","starred_url":"https://api.github.com/users/banrikun/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/banrikun/subscriptions","organizations_url":"https://api.github.com/users/banrikun/orgs","repos_url":"https://api.github.com/users/banrikun/repos","events_url":"https://api.github.com/users/banrikun/events{/privacy}","received_events_url":"https://api.github.com/users/banrikun/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:12:03Z","updated_at":"2015-01-01T15:12:03Z","body":"还有几个疑问\r\n\r\n1.40行构建方式是否不支持更换主题路径,只会读取/chill/下的模板文件…哪怕不能改,也希望这个文件夹可以叫theme什么的……当然这只是细节问题\r\n\r\n2.已经实测40行方式不支持翻页,点翻页按钮无效。。。已经用云端默认主题,只改了id的index.html测试,均无法正常翻页\r\n\r\n3.多说评论数经常读不出,原因不知,我其它网站正常,唯独用airpub的不行。代码正确。\r\n\r\n4.在另一个帖子里提到的p标签输出问题(guoyu.me和airpub.io的差别)\r\n\r\n主题已经基本完工了,就差后台和正文部分的CSS了,伸手怒求拆分的,自己写好累的而且后台完全摸不透。loading和login样式貌似可玩性也不错,所以建议基础css文件有正文排版和后台部分就好了 ^^\r\n\r\n另外……丢个主题预览链接:http://www.brdev.org\r\n我已经删掉了基础css还有各种less……技术不足实在是只能用原始的方式。。。"}},"public":true,"created_at":"2015-01-01T15:12:03Z","org":{"id":1523455,"login":"duoshuo","gravatar_id":"","url":"https://api.github.com/orgs/duoshuo","avatar_url":"https://avatars.githubusercontent.com/u/1523455?"}} +,{"id":"2489656622","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":536866502,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d9775bba8859c60d32d404c14439575e2380f5f1","before":"2e8c17d3aef56256b908537e26885343a6ff5c90","commits":[{"sha":"d9775bba8859c60d32d404c14439575e2380f5f1","author":{"email":"cbb7353e6d953ef360baf960c122346276c6e320@hudson.bz","name":"Patrick Hudson"},"message":"Scripted auto-commit on change (2015-01-01 10:12:00) by gitwatch.sh","distinct":true,"url":"https://api.github.com/repos/patrick-hudson/EggDrop/commits/d9775bba8859c60d32d404c14439575e2380f5f1"}]},"public":true,"created_at":"2015-01-01T15:12:03Z"} +,{"id":"2489656624","type":"WatchEvent","actor":{"id":2009799,"login":"secondwtq","gravatar_id":"","url":"https://api.github.com/users/secondwtq","avatar_url":"https://avatars.githubusercontent.com/u/2009799?"},"repo":{"id":778981,"name":"livid/v2ex","url":"https://api.github.com/repos/livid/v2ex"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:12:04Z"} +,{"id":"2489656628","type":"WatchEvent","actor":{"id":6652550,"login":"cubicuboctahedron","gravatar_id":"","url":"https://api.github.com/users/cubicuboctahedron","avatar_url":"https://avatars.githubusercontent.com/u/6652550?"},"repo":{"id":1235616,"name":"vandersonmota/model_mommy","url":"https://api.github.com/repos/vandersonmota/model_mommy"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:12:05Z"} +,{"id":"2489656629","type":"PushEvent","actor":{"id":10176244,"login":"chinamobiler","gravatar_id":"","url":"https://api.github.com/users/chinamobiler","avatar_url":"https://avatars.githubusercontent.com/u/10176244?"},"repo":{"id":28341555,"name":"chinamobiler/chinamobiler.github.io","url":"https://api.github.com/repos/chinamobiler/chinamobiler.github.io"},"payload":{"push_id":536866505,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"aa96a6c40ad36d8133beba3999f9f2e809f410ed","before":"6ba0a5401befaf39d7374cd257010099be969d0a","commits":[{"sha":"aa96a6c40ad36d8133beba3999f9f2e809f410ed","author":{"email":"b16b81d513d95bdf1643cdfd83947a079dabffe6@gmail.com","name":"chinamobiler"},"message":"Site updated: 2015-01-01 23:08:15","distinct":true,"url":"https://api.github.com/repos/chinamobiler/chinamobiler.github.io/commits/aa96a6c40ad36d8133beba3999f9f2e809f410ed"}]},"public":true,"created_at":"2015-01-01T15:12:05Z"} +,{"id":"2489656631","type":"CreateEvent","actor":{"id":373331,"login":"korczis","gravatar_id":"","url":"https://api.github.com/users/korczis","avatar_url":"https://avatars.githubusercontent.com/u/373331?"},"repo":{"id":16419614,"name":"korczis/microscratch","url":"https://api.github.com/repos/korczis/microscratch"},"payload":{"ref":"old-master-grunt","ref_type":"branch","master_branch":"master","description":"Light Weight Web Framework using node.js, mongo, sockets, ember.js ...","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:12:05Z"} +,{"id":"2489656633","type":"WatchEvent","actor":{"id":1000216,"login":"jbuzz","gravatar_id":"","url":"https://api.github.com/users/jbuzz","avatar_url":"https://avatars.githubusercontent.com/u/1000216?"},"repo":{"id":17065530,"name":"facebook/chisel","url":"https://api.github.com/repos/facebook/chisel"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:12:05Z","org":{"id":69631,"login":"facebook","gravatar_id":"","url":"https://api.github.com/orgs/facebook","avatar_url":"https://avatars.githubusercontent.com/u/69631?"}} +,{"id":"2489656634","type":"DeleteEvent","actor":{"id":2767023,"login":"ajcowking","gravatar_id":"","url":"https://api.github.com/users/ajcowking","avatar_url":"https://avatars.githubusercontent.com/u/2767023?"},"repo":{"id":28688727,"name":"ajcowking/hello-world","url":"https://api.github.com/repos/ajcowking/hello-world"},"payload":{"ref":"readme-edits","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:12:05Z"} +,{"id":"2489656637","type":"IssueCommentEvent","actor":{"id":490654,"login":"joates","gravatar_id":"","url":"https://api.github.com/users/joates","avatar_url":"https://avatars.githubusercontent.com/u/490654?"},"repo":{"id":28010924,"name":"bigboringsystem/bigboringsystem","url":"https://api.github.com/repos/bigboringsystem/bigboringsystem"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/bigboringsystem/bigboringsystem/issues/83","labels_url":"https://api.github.com/repos/bigboringsystem/bigboringsystem/issues/83/labels{/name}","comments_url":"https://api.github.com/repos/bigboringsystem/bigboringsystem/issues/83/comments","events_url":"https://api.github.com/repos/bigboringsystem/bigboringsystem/issues/83/events","html_url":"https://github.com/bigboringsystem/bigboringsystem/issues/83","id":53221511,"number":83,"title":"can you provide details of the relationship with Twilio ?","user":{"login":"joates","id":490654,"avatar_url":"https://avatars.githubusercontent.com/u/490654?v=3","gravatar_id":"","url":"https://api.github.com/users/joates","html_url":"https://github.com/joates","followers_url":"https://api.github.com/users/joates/followers","following_url":"https://api.github.com/users/joates/following{/other_user}","gists_url":"https://api.github.com/users/joates/gists{/gist_id}","starred_url":"https://api.github.com/users/joates/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/joates/subscriptions","organizations_url":"https://api.github.com/users/joates/orgs","repos_url":"https://api.github.com/users/joates/repos","events_url":"https://api.github.com/users/joates/events{/privacy}","received_events_url":"https://api.github.com/users/joates/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:09:15Z","updated_at":"2015-01-01T15:12:06Z","closed_at":null,"body":"i'm just asking the question, it's not a \"concern\" of mine and i wouldn't be *too* bothered if that was a funding strategy, they provide a globally accessible infrastructure, they should get something for that i guess.\r\n\r\nso the main question is this..\r\nby using this service am i exposing my device as a potential SMS marketing target to Twilio or any other company that they have partnered with ?\r\n\r\ni looked on the Twilio.com website for details because i'm getting the login code SMS messages in London, UK and i'm not being charged for them (as far as i can tell) which is normal, but somebody must be paying for them to be sent.. i guess.\r\n\r\nagain.. this is not something that would prevent me from using this service i would just rather know to expect some SMS messages instead of them just start arriving (e.g. from Coca Cola or other companies) without any advance warning.\r\n\r\nthanks :-) "},"comment":{"url":"https://api.github.com/repos/bigboringsystem/bigboringsystem/issues/comments/68488751","html_url":"https://github.com/bigboringsystem/bigboringsystem/issues/83#issuecomment-68488751","issue_url":"https://api.github.com/repos/bigboringsystem/bigboringsystem/issues/83","id":68488751,"user":{"login":"joates","id":490654,"avatar_url":"https://avatars.githubusercontent.com/u/490654?v=3","gravatar_id":"","url":"https://api.github.com/users/joates","html_url":"https://github.com/joates","followers_url":"https://api.github.com/users/joates/followers","following_url":"https://api.github.com/users/joates/following{/other_user}","gists_url":"https://api.github.com/users/joates/gists{/gist_id}","starred_url":"https://api.github.com/users/joates/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/joates/subscriptions","organizations_url":"https://api.github.com/users/joates/orgs","repos_url":"https://api.github.com/users/joates/repos","events_url":"https://api.github.com/users/joates/events{/privacy}","received_events_url":"https://api.github.com/users/joates/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:12:06Z","updated_at":"2015-01-01T15:12:06Z","body":"hmm, i just found this -> [sms pricing](https://www.twilio.com/sms/pricing)"}},"public":true,"created_at":"2015-01-01T15:12:06Z","org":{"id":10271504,"login":"bigboringsystem","gravatar_id":"","url":"https://api.github.com/orgs/bigboringsystem","avatar_url":"https://avatars.githubusercontent.com/u/10271504?"}} +,{"id":"2489656640","type":"CreateEvent","actor":{"id":875284,"login":"jason2506","gravatar_id":"","url":"https://api.github.com/users/jason2506","avatar_url":"https://avatars.githubusercontent.com/u/875284?"},"repo":{"id":28688791,"name":"jason2506/feedeater","url":"https://api.github.com/repos/jason2506/feedeater"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:12:07Z"} +,{"id":"2489656641","type":"PushEvent","actor":{"id":9716869,"login":"dorian-bar","gravatar_id":"","url":"https://api.github.com/users/dorian-bar","avatar_url":"https://avatars.githubusercontent.com/u/9716869?"},"repo":{"id":26643379,"name":"dorian-bar/agregator","url":"https://api.github.com/repos/dorian-bar/agregator"},"payload":{"push_id":536866509,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"ebb96adb06be9048a7d914e17c11f70d93f8650c","before":"2f5e0b9f833be73c18907f99495fc02641584ea8","commits":[{"sha":"ebb96adb06be9048a7d914e17c11f70d93f8650c","author":{"email":"860eceadd205fdab8d5325eccb44ed003748fb6f@gmail.com","name":"dorian-bar"},"message":"new data","distinct":true,"url":"https://api.github.com/repos/dorian-bar/agregator/commits/ebb96adb06be9048a7d914e17c11f70d93f8650c"}]},"public":true,"created_at":"2015-01-01T15:12:07Z"} +,{"id":"2489656646","type":"PushEvent","actor":{"id":314115,"login":"DavidPH","gravatar_id":"","url":"https://api.github.com/users/DavidPH","avatar_url":"https://avatars.githubusercontent.com/u/314115?"},"repo":{"id":10750737,"name":"DavidPH/GDCC","url":"https://api.github.com/repos/DavidPH/GDCC"},"payload":{"push_id":536866514,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"f5400b4429a332585e21f1659392a1f218377ef5","before":"042fd4904aac388bc1b361a5d90abcf16a7b574b","commits":[{"sha":"79f4cca7a8fa10d43d16f26e0ac623839c48a598","author":{"email":"a44610713957a7eb11611506726e3d84796464d5@verizon.net","name":"David Hill"},"message":"Bytecode::ZDACS: Cleaned up extra parameter handling.\n\nCodegen is now more generalized (and fixed for sync scripts), and the maximum native parameters is configurable.","distinct":true,"url":"https://api.github.com/repos/DavidPH/GDCC/commits/79f4cca7a8fa10d43d16f26e0ac623839c48a598"},{"sha":"f5400b4429a332585e21f1659392a1f218377ef5","author":{"email":"a44610713957a7eb11611506726e3d84796464d5@verizon.net","name":"David Hill"},"message":"CC: Fixed multiple compound literals in the same scope.","distinct":true,"url":"https://api.github.com/repos/DavidPH/GDCC/commits/f5400b4429a332585e21f1659392a1f218377ef5"}]},"public":true,"created_at":"2015-01-01T15:12:07Z"} +,{"id":"2489656648","type":"WatchEvent","actor":{"id":1178241,"login":"ctliu3","gravatar_id":"","url":"https://api.github.com/users/ctliu3","avatar_url":"https://avatars.githubusercontent.com/u/1178241?"},"repo":{"id":12502664,"name":"forhappy/A-Detailed-Cplusplus-Concurrency-Tutorial","url":"https://api.github.com/repos/forhappy/A-Detailed-Cplusplus-Concurrency-Tutorial"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:12:08Z"} +,{"id":"2489656650","type":"PushEvent","actor":{"id":337024,"login":"nabetama","gravatar_id":"","url":"https://api.github.com/users/nabetama","avatar_url":"https://avatars.githubusercontent.com/u/337024?"},"repo":{"id":27433708,"name":"nabetama/slacky","url":"https://api.github.com/repos/nabetama/slacky"},"payload":{"push_id":536866516,"size":1,"distinct_size":1,"ref":"refs/heads/timeline","head":"e06c00ac7561b1968703d7a8a9ef54edc5414d2f","before":"c7152154ea634dee6b2a82227dda5e5d72d602f5","commits":[{"sha":"e06c00ac7561b1968703d7a8a9ef54edc5414d2f","author":{"email":"2278e2e498cb2e11617fd57f8a62966011a6b306@gmail.com","name":"nabetama"},"message":"timeline method is returned message list.","distinct":true,"url":"https://api.github.com/repos/nabetama/slacky/commits/e06c00ac7561b1968703d7a8a9ef54edc5414d2f"}]},"public":true,"created_at":"2015-01-01T15:12:08Z"} +,{"id":"2489656652","type":"PushEvent","actor":{"id":10058965,"login":"ntrancha","gravatar_id":"","url":"https://api.github.com/users/ntrancha","avatar_url":"https://avatars.githubusercontent.com/u/10058965?"},"repo":{"id":27700778,"name":"ntrancha/libft","url":"https://api.github.com/repos/ntrancha/libft"},"payload":{"push_id":536866518,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ffc780f150bdd07f314440aeb07ea83858f152db","before":"5f4b0e0ffe8bc5d30f6a0009298ace7d0525fa8e","commits":[{"sha":"ffc780f150bdd07f314440aeb07ea83858f152db","author":{"email":"c306d8e7ab43ce60be146f7e09edffa41a16cd23@orange.fr","name":"nk"},"message":"ft_gnl_list ILLIMITY + FD_MAX","distinct":true,"url":"https://api.github.com/repos/ntrancha/libft/commits/ffc780f150bdd07f314440aeb07ea83858f152db"}]},"public":true,"created_at":"2015-01-01T15:12:08Z"} +,{"id":"2489656653","type":"IssueCommentEvent","actor":{"id":6563111,"login":"tkdrg","gravatar_id":"","url":"https://api.github.com/users/tkdrg","avatar_url":"https://avatars.githubusercontent.com/u/6563111?"},"repo":{"id":3234987,"name":"tgstation/-tg-station","url":"https://api.github.com/repos/tgstation/-tg-station"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/tgstation/-tg-station/issues/6639","labels_url":"https://api.github.com/repos/tgstation/-tg-station/issues/6639/labels{/name}","comments_url":"https://api.github.com/repos/tgstation/-tg-station/issues/6639/comments","events_url":"https://api.github.com/repos/tgstation/-tg-station/issues/6639/events","html_url":"https://github.com/tgstation/-tg-station/pull/6639","id":52979976,"number":6639,"title":"Fixes some window sizes","user":{"login":"paprka","id":7247232,"avatar_url":"https://avatars.githubusercontent.com/u/7247232?v=3","gravatar_id":"","url":"https://api.github.com/users/paprka","html_url":"https://github.com/paprka","followers_url":"https://api.github.com/users/paprka/followers","following_url":"https://api.github.com/users/paprka/following{/other_user}","gists_url":"https://api.github.com/users/paprka/gists{/gist_id}","starred_url":"https://api.github.com/users/paprka/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/paprka/subscriptions","organizations_url":"https://api.github.com/users/paprka/orgs","repos_url":"https://api.github.com/users/paprka/repos","events_url":"https://api.github.com/users/paprka/events{/privacy}","received_events_url":"https://api.github.com/users/paprka/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/tgstation/-tg-station/labels/Fix","name":"Fix","color":"00bbdd"},{"url":"https://api.github.com/repos/tgstation/-tg-station/labels/Merge+Conflict","name":"Merge Conflict","color":"006b75"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-12-28T12:25:58Z","updated_at":"2015-01-01T15:12:09Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/tgstation/-tg-station/pulls/6639","html_url":"https://github.com/tgstation/-tg-station/pull/6639","diff_url":"https://github.com/tgstation/-tg-station/pull/6639.diff","patch_url":"https://github.com/tgstation/-tg-station/pull/6639.patch"},"body":"Fixes the manifest having a horizontal scroll bar, which it shouldn't.\r\nFixes the new player setup window having a vertical scroll bar.\r\nFixes manifest not using paragraph tags instead of double breaks on the new player options.\r\n\r\nKinda new to this UI stuff, sorry.\r\n\r\n![ss 2014-12-28 at 04 22 41](https://cloud.githubusercontent.com/assets/7247232/5563827/7ab21316-8e49-11e4-8912-ee25417ac5d3.png)\r\n"},"comment":{"url":"https://api.github.com/repos/tgstation/-tg-station/issues/comments/68488752","html_url":"https://github.com/tgstation/-tg-station/pull/6639#issuecomment-68488752","issue_url":"https://api.github.com/repos/tgstation/-tg-station/issues/6639","id":68488752,"user":{"login":"tkdrg","id":6563111,"avatar_url":"https://avatars.githubusercontent.com/u/6563111?v=3","gravatar_id":"","url":"https://api.github.com/users/tkdrg","html_url":"https://github.com/tkdrg","followers_url":"https://api.github.com/users/tkdrg/followers","following_url":"https://api.github.com/users/tkdrg/following{/other_user}","gists_url":"https://api.github.com/users/tkdrg/gists{/gist_id}","starred_url":"https://api.github.com/users/tkdrg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tkdrg/subscriptions","organizations_url":"https://api.github.com/users/tkdrg/orgs","repos_url":"https://api.github.com/users/tkdrg/repos","events_url":"https://api.github.com/users/tkdrg/events{/privacy}","received_events_url":"https://api.github.com/users/tkdrg/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:12:09Z","updated_at":"2015-01-01T15:12:09Z","body":"Conflicts. Also this might conflict with carn's stuff, but i'm not sure."}},"public":true,"created_at":"2015-01-01T15:12:09Z","org":{"id":1363778,"login":"tgstation","gravatar_id":"","url":"https://api.github.com/orgs/tgstation","avatar_url":"https://avatars.githubusercontent.com/u/1363778?"}} +,{"id":"2489656656","type":"ForkEvent","actor":{"id":1688580,"login":"malexmave","gravatar_id":"","url":"https://api.github.com/users/malexmave","avatar_url":"https://avatars.githubusercontent.com/u/1688580?"},"repo":{"id":14877557,"name":"BetterCrypto/Applied-Crypto-Hardening","url":"https://api.github.com/repos/BetterCrypto/Applied-Crypto-Hardening"},"payload":{"forkee":{"id":28688812,"name":"Applied-Crypto-Hardening","full_name":"malexmave/Applied-Crypto-Hardening","owner":{"login":"malexmave","id":1688580,"avatar_url":"https://avatars.githubusercontent.com/u/1688580?v=3","gravatar_id":"","url":"https://api.github.com/users/malexmave","html_url":"https://github.com/malexmave","followers_url":"https://api.github.com/users/malexmave/followers","following_url":"https://api.github.com/users/malexmave/following{/other_user}","gists_url":"https://api.github.com/users/malexmave/gists{/gist_id}","starred_url":"https://api.github.com/users/malexmave/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/malexmave/subscriptions","organizations_url":"https://api.github.com/users/malexmave/orgs","repos_url":"https://api.github.com/users/malexmave/repos","events_url":"https://api.github.com/users/malexmave/events{/privacy}","received_events_url":"https://api.github.com/users/malexmave/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/malexmave/Applied-Crypto-Hardening","description":"Paper (DRAFT) on Best Current Practices regarding the configuration of cyptographic tools and online communication","fork":true,"url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening","forks_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/forks","keys_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/keys{/key_id}","collaborators_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/teams","hooks_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/hooks","issue_events_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/issues/events{/number}","events_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/events","assignees_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/assignees{/user}","branches_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/branches{/branch}","tags_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/tags","blobs_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/git/refs{/sha}","trees_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/git/trees{/sha}","statuses_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/statuses/{sha}","languages_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/languages","stargazers_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/stargazers","contributors_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/contributors","subscribers_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/subscribers","subscription_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/subscription","commits_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/commits{/sha}","git_commits_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/git/commits{/sha}","comments_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/comments{/number}","issue_comment_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/issues/comments/{number}","contents_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/contents/{+path}","compare_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/compare/{base}...{head}","merges_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/merges","archive_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/downloads","issues_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/issues{/number}","pulls_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/pulls{/number}","milestones_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/milestones{/number}","notifications_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/labels{/name}","releases_url":"https://api.github.com/repos/malexmave/Applied-Crypto-Hardening/releases{/id}","created_at":"2015-01-01T15:12:09Z","updated_at":"2014-12-31T18:21:03Z","pushed_at":"2014-12-12T20:25:54Z","git_url":"git://github.com/malexmave/Applied-Crypto-Hardening.git","ssh_url":"git@github.com:malexmave/Applied-Crypto-Hardening.git","clone_url":"https://github.com/malexmave/Applied-Crypto-Hardening.git","svn_url":"https://github.com/malexmave/Applied-Crypto-Hardening","homepage":"https://bettercrypto.org","size":114906,"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:12:10Z","org":{"id":6088859,"login":"BetterCrypto","gravatar_id":"","url":"https://api.github.com/orgs/BetterCrypto","avatar_url":"https://avatars.githubusercontent.com/u/6088859?"}} +,{"id":"2489656663","type":"PullRequestReviewCommentEvent","actor":{"id":459648,"login":"samsonasik","gravatar_id":"","url":"https://api.github.com/users/samsonasik","avatar_url":"https://avatars.githubusercontent.com/u/459648?"},"repo":{"id":702550,"name":"zendframework/zf2","url":"https://api.github.com/repos/zendframework/zf2"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/zendframework/zf2/pulls/comments/22400140","id":22400140,"diff_hunk":"@@ -0,0 +1,142 @@\n+ allpass_alpha and gamma -> glog_gamma to avoid name conflicts","distinct":true,"url":"https://api.github.com/repos/r9y9/SynthesisFilters.jl/commits/0de4fae7416f2b6d40509e387d0c8e47c7a6265a"}]},"public":true,"created_at":"2015-01-01T15:12:36Z"} +,{"id":"2489656848","type":"PushEvent","actor":{"id":10364203,"login":"gladwinbobby","gravatar_id":"","url":"https://api.github.com/users/gladwinbobby","avatar_url":"https://avatars.githubusercontent.com/u/10364203?"},"repo":{"id":28687073,"name":"gladwinbobby/Confession-App","url":"https://api.github.com/repos/gladwinbobby/Confession-App"},"payload":{"push_id":536866612,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"90255860cb1b8f690e4ec5e633019cce679d88cb","before":"8b9d76a1eb4fdf6c13c26476b60903e754d22341","commits":[{"sha":"90255860cb1b8f690e4ec5e633019cce679d88cb","author":{"email":"e292b451491da8bc716210e75644dde391673c71@gmail.com","name":"Gladwin Henald"},"message":"Update db_functions.php","distinct":true,"url":"https://api.github.com/repos/gladwinbobby/Confession-App/commits/90255860cb1b8f690e4ec5e633019cce679d88cb"}]},"public":true,"created_at":"2015-01-01T15:12:37Z"} +,{"id":"2489656849","type":"PushEvent","actor":{"id":1483000,"login":"perexg","gravatar_id":"","url":"https://api.github.com/users/perexg","avatar_url":"https://avatars.githubusercontent.com/u/1483000?"},"repo":{"id":1208360,"name":"tvheadend/tvheadend","url":"https://api.github.com/repos/tvheadend/tvheadend"},"payload":{"push_id":536866613,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1f62c46d7268042a40d03ec55f1067f50b985f37","before":"9aa0600b81e0229b3dbf920103b6c60a1dcc6f11","commits":[{"sha":"1f62c46d7268042a40d03ec55f1067f50b985f37","author":{"email":"72edd5e1a572f82f059ccbb83c92b74d6cb051ff@perex.cz","name":"Jaroslav Kysela"},"message":"mpegts scan: improve dead service detection (add SDT checks)","distinct":true,"url":"https://api.github.com/repos/tvheadend/tvheadend/commits/1f62c46d7268042a40d03ec55f1067f50b985f37"}]},"public":true,"created_at":"2015-01-01T15:12:37Z","org":{"id":1908588,"login":"tvheadend","gravatar_id":"","url":"https://api.github.com/orgs/tvheadend","avatar_url":"https://avatars.githubusercontent.com/u/1908588?"}} +,{"id":"2489656850","type":"PushEvent","actor":{"id":8433179,"login":"mathgarcia","gravatar_id":"","url":"https://api.github.com/users/mathgarcia","avatar_url":"https://avatars.githubusercontent.com/u/8433179?"},"repo":{"id":27985654,"name":"genezysg/ASPE","url":"https://api.github.com/repos/genezysg/ASPE"},"payload":{"push_id":536866614,"size":1,"distinct_size":1,"ref":"refs/heads/symfony","head":"34e109c6ed1eec30e16a7cc82bb5e2bf52e3f4be","before":"98dc3ca0648da0bcca9378d14ddb0ec418d33a41","commits":[{"sha":"34e109c6ed1eec30e16a7cc82bb5e2bf52e3f4be","author":{"email":"dc4b906efe3f96687dede6b6359d38eedcf308bb@gmail.com","name":"mathgarcia"},"message":"Testes com o Doctrine","distinct":true,"url":"https://api.github.com/repos/genezysg/ASPE/commits/34e109c6ed1eec30e16a7cc82bb5e2bf52e3f4be"}]},"public":true,"created_at":"2015-01-01T15:12:37Z"} +,{"id":"2489656856","type":"PushEvent","actor":{"id":1291671,"login":"Keno","gravatar_id":"","url":"https://api.github.com/users/Keno","avatar_url":"https://avatars.githubusercontent.com/u/1291671?"},"repo":{"id":1644196,"name":"JuliaLang/julia","url":"https://api.github.com/repos/JuliaLang/julia"},"payload":{"push_id":536866615,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"fb4aa7354491264b3220848974484f7599437595","before":"29bfd0eef439fe6279f95e4a684ca24677e5691a","commits":[{"sha":"784eeb13ae6651031aac3720f6b0de1c98b4c7fa","author":{"email":"850462ae8363f808281f9162a4267a29b0749a18@gmail.com","name":"Daniel Høegh"},"message":"Improve tests for the REPLCompletion","distinct":true,"url":"https://api.github.com/repos/JuliaLang/julia/commits/784eeb13ae6651031aac3720f6b0de1c98b4c7fa"},{"sha":"fb4aa7354491264b3220848974484f7599437595","author":{"email":"d501fcd13b48447b466d0a987b088e971e5bbca9@college.harvard.edu","name":"Keno Fischer"},"message":"Merge pull request #9518 from dhoegh/Improve_test_coverage\n\nImprove tests for the REPLCompletion","distinct":true,"url":"https://api.github.com/repos/JuliaLang/julia/commits/fb4aa7354491264b3220848974484f7599437595"}]},"public":true,"created_at":"2015-01-01T15:12:38Z","org":{"id":743164,"login":"JuliaLang","gravatar_id":"","url":"https://api.github.com/orgs/JuliaLang","avatar_url":"https://avatars.githubusercontent.com/u/743164?"}} +,{"id":"2489656858","type":"CreateEvent","actor":{"id":6860877,"login":"cpressey","gravatar_id":"","url":"https://api.github.com/users/cpressey","avatar_url":"https://avatars.githubusercontent.com/u/6860877?"},"repo":{"id":4665617,"name":"catseye/Emmental","url":"https://api.github.com/repos/catseye/Emmental"},"payload":{"ref":"rel_1_0_2015_0101","ref_type":"tag","master_branch":"master","description":"A language based on meta-circular interpreters, precursor to Mascarpone. [Public domain]","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:12:38Z","org":{"id":1134322,"login":"catseye","gravatar_id":"","url":"https://api.github.com/orgs/catseye","avatar_url":"https://avatars.githubusercontent.com/u/1134322?"}} +,{"id":"2489656859","type":"PushEvent","actor":{"id":6860877,"login":"cpressey","gravatar_id":"","url":"https://api.github.com/users/cpressey","avatar_url":"https://avatars.githubusercontent.com/u/6860877?"},"repo":{"id":4665617,"name":"catseye/Emmental","url":"https://api.github.com/repos/catseye/Emmental"},"payload":{"push_id":536866616,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0bb11ef2ff20d541d67dda8d96bc815c8a10e8c3","before":"7c5a4c8a5280c32b9153b193eae96e34e2468ad8","commits":[{"sha":"0bb11ef2ff20d541d67dda8d96bc815c8a10e8c3","author":{"email":"c7632e440b1c466d6ce6e3f0599fca74ae105873@catseye.tc","name":"Chris Pressey"},"message":"Added tag rel_1_0_2015_0101 for changeset 982794c8cc0e","distinct":true,"url":"https://api.github.com/repos/catseye/Emmental/commits/0bb11ef2ff20d541d67dda8d96bc815c8a10e8c3"}]},"public":true,"created_at":"2015-01-01T15:12:38Z","org":{"id":1134322,"login":"catseye","gravatar_id":"","url":"https://api.github.com/orgs/catseye","avatar_url":"https://avatars.githubusercontent.com/u/1134322?"}} +,{"id":"2489656860","type":"CreateEvent","actor":{"id":900894,"login":"jwaixs","gravatar_id":"","url":"https://api.github.com/users/jwaixs","avatar_url":"https://avatars.githubusercontent.com/u/900894?"},"repo":{"id":28688821,"name":"jwaixs/sportgenerator","url":"https://api.github.com/repos/jwaixs/sportgenerator"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"A generator for sport programs, focus mainly on swimming","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:12:38Z"} +,{"id":"2489656862","type":"PushEvent","actor":{"id":7744927,"login":"YusukeMorishita","gravatar_id":"","url":"https://api.github.com/users/YusukeMorishita","avatar_url":"https://avatars.githubusercontent.com/u/7744927?"},"repo":{"id":26791897,"name":"YusukeMorishita/myHP","url":"https://api.github.com/repos/YusukeMorishita/myHP"},"payload":{"push_id":536866617,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"54d13f437fc5c1bdda1fc002c4d72824e9f4706e","before":"fc1ae00f319a9634b3c4bfee1961cde912a0a7bb","commits":[{"sha":"54d13f437fc5c1bdda1fc002c4d72824e9f4706e","author":{"email":"c51581253c76b1a1d69cdbee47952c3de0ae0090@edu.osakafu-u.ac.jp","name":"YusukeMorishita"},"message":" Changes to be committed:\n\tmodified: .DS_Store\n\tnew file: css/bootstrap-theme.css\n\tnew file: css/bootstrap-theme.css.map\n\tnew file: css/bootstrap-theme.min.css\n\tnew file: css/bootstrap.css\n\tnew file: css/bootstrap.css.map\n\tnew file: css/bootstrap.min.css\n\tnew file: fonts/glyphicons-halflings-regular.eot\n\tnew file: fonts/glyphicons-halflings-regular.svg\n\tnew file: fonts/glyphicons-halflings-regular.ttf\n\tnew file: fonts/glyphicons-halflings-regular.woff\n\tmodified: index.html\n\tnew file: js/bootstrap.js\n\tnew file: js/bootstrap.min.js\n\tnew file: js/npm.js\n\tmodified: style.css","distinct":true,"url":"https://api.github.com/repos/YusukeMorishita/myHP/commits/54d13f437fc5c1bdda1fc002c4d72824e9f4706e"}]},"public":true,"created_at":"2015-01-01T15:12:38Z"} +,{"id":"2489656863","type":"PushEvent","actor":{"id":727013,"login":"stephennancekivell","gravatar_id":"","url":"https://api.github.com/users/stephennancekivell","avatar_url":"https://avatars.githubusercontent.com/u/727013?"},"repo":{"id":14997523,"name":"stephennancekivell/searchbrew","url":"https://api.github.com/repos/stephennancekivell/searchbrew"},"payload":{"push_id":536866618,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c3a89880ae85eebabbcb0a104bc859ce3b9b66d1","before":"d4e28481f262ba4611dbbaedc2bd5053d4ec4299","commits":[{"sha":"c3a89880ae85eebabbcb0a104bc859ce3b9b66d1","author":{"email":"06fa905d7f2aaced6dc72e9511c71a2a51e8aead@redballoon.com.au","name":"Stephen Nancekivell"},"message":"move from apache to nginx","distinct":true,"url":"https://api.github.com/repos/stephennancekivell/searchbrew/commits/c3a89880ae85eebabbcb0a104bc859ce3b9b66d1"}]},"public":true,"created_at":"2015-01-01T15:12:38Z"} +,{"id":"2489656864","type":"CreateEvent","actor":{"id":10351269,"login":"Passw0rm-HE","gravatar_id":"","url":"https://api.github.com/users/Passw0rm-HE","avatar_url":"https://avatars.githubusercontent.com/u/10351269?"},"repo":{"id":28688822,"name":"Passw0rm-HE/Xwaydah","url":"https://api.github.com/repos/Passw0rm-HE/Xwaydah"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:12:39Z"} +,{"id":"2489656867","type":"PushEvent","actor":{"id":4237699,"login":"Dwillcocks","gravatar_id":"","url":"https://api.github.com/users/Dwillcocks","avatar_url":"https://avatars.githubusercontent.com/u/4237699?"},"repo":{"id":27402795,"name":"Dwillcocks/Dwillcocks.github.io","url":"https://api.github.com/repos/Dwillcocks/Dwillcocks.github.io"},"payload":{"push_id":536866620,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3abca1e436a2c613ef7724c9743341f041045b09","before":"646f4ceb20424ec1f358a894747da1b8fbfbfd1d","commits":[{"sha":"3abca1e436a2c613ef7724c9743341f041045b09","author":{"email":"70f8bb9a8a5393ef080507a89e4b98d139000d65@daniels-imac.home","name":"Dwillcocks"},"message":"build","distinct":true,"url":"https://api.github.com/repos/Dwillcocks/Dwillcocks.github.io/commits/3abca1e436a2c613ef7724c9743341f041045b09"}]},"public":true,"created_at":"2015-01-01T15:12:39Z"} +,{"id":"2489656874","type":"IssuesEvent","actor":{"id":5950277,"login":"GavoTrav","gravatar_id":"","url":"https://api.github.com/users/GavoTrav","avatar_url":"https://avatars.githubusercontent.com/u/5950277?"},"repo":{"id":28541377,"name":"usandfriends/IRCLogger","url":"https://api.github.com/repos/usandfriends/IRCLogger"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/usandfriends/IRCLogger/issues/1","labels_url":"https://api.github.com/repos/usandfriends/IRCLogger/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/usandfriends/IRCLogger/issues/1/comments","events_url":"https://api.github.com/repos/usandfriends/IRCLogger/issues/1/events","html_url":"https://github.com/usandfriends/IRCLogger/issues/1","id":53221588,"number":1,"title":"Dependencies ","user":{"login":"GavoTrav","id":5950277,"avatar_url":"https://avatars.githubusercontent.com/u/5950277?v=3","gravatar_id":"","url":"https://api.github.com/users/GavoTrav","html_url":"https://github.com/GavoTrav","followers_url":"https://api.github.com/users/GavoTrav/followers","following_url":"https://api.github.com/users/GavoTrav/following{/other_user}","gists_url":"https://api.github.com/users/GavoTrav/gists{/gist_id}","starred_url":"https://api.github.com/users/GavoTrav/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GavoTrav/subscriptions","organizations_url":"https://api.github.com/users/GavoTrav/orgs","repos_url":"https://api.github.com/users/GavoTrav/repos","events_url":"https://api.github.com/users/GavoTrav/events{/privacy}","received_events_url":"https://api.github.com/users/GavoTrav/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:12:39Z","updated_at":"2015-01-01T15:12:39Z","closed_at":null,"body":"Error: Cannot find module 'moment'\r\nError: Cannot find module 'colors/safe'\r\n\r\nYou forgot to include them"}},"public":true,"created_at":"2015-01-01T15:12:39Z"} +,{"id":"2489656876","type":"DeleteEvent","actor":{"id":1163662,"login":"robertpanzer","gravatar_id":"","url":"https://api.github.com/users/robertpanzer","avatar_url":"https://avatars.githubusercontent.com/u/1163662?"},"repo":{"id":27998582,"name":"robertpanzer/asciidoctorj","url":"https://api.github.com/repos/robertpanzer/asciidoctorj"},"payload":{"ref":"FixConverterRegistryConverters","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:12:39Z"} +,{"id":"2489656877","type":"CreateEvent","actor":{"id":8042613,"login":"mts2","gravatar_id":"","url":"https://api.github.com/users/mts2","avatar_url":"https://avatars.githubusercontent.com/u/8042613?"},"repo":{"id":28688734,"name":"mts2/TestingThings","url":"https://api.github.com/repos/mts2/TestingThings"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:12:39Z"} +,{"id":"2489656881","type":"CreateEvent","actor":{"id":10249189,"login":"PHPerWu","gravatar_id":"","url":"https://api.github.com/users/PHPerWu","avatar_url":"https://avatars.githubusercontent.com/u/10249189?"},"repo":{"id":28688823,"name":"HubuXFCY/student","url":"https://api.github.com/repos/HubuXFCY/student"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:12:40Z","org":{"id":10249196,"login":"HubuXFCY","gravatar_id":"","url":"https://api.github.com/orgs/HubuXFCY","avatar_url":"https://avatars.githubusercontent.com/u/10249196?"}} +,{"id":"2489656883","type":"ForkEvent","actor":{"id":7296764,"login":"gary0121","gravatar_id":"","url":"https://api.github.com/users/gary0121","avatar_url":"https://avatars.githubusercontent.com/u/7296764?"},"repo":{"id":11846692,"name":"coreos/coreos-vagrant","url":"https://api.github.com/repos/coreos/coreos-vagrant"},"payload":{"forkee":{"id":28688824,"name":"coreos-vagrant","full_name":"gary0121/coreos-vagrant","owner":{"login":"gary0121","id":7296764,"avatar_url":"https://avatars.githubusercontent.com/u/7296764?v=3","gravatar_id":"","url":"https://api.github.com/users/gary0121","html_url":"https://github.com/gary0121","followers_url":"https://api.github.com/users/gary0121/followers","following_url":"https://api.github.com/users/gary0121/following{/other_user}","gists_url":"https://api.github.com/users/gary0121/gists{/gist_id}","starred_url":"https://api.github.com/users/gary0121/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gary0121/subscriptions","organizations_url":"https://api.github.com/users/gary0121/orgs","repos_url":"https://api.github.com/users/gary0121/repos","events_url":"https://api.github.com/users/gary0121/events{/privacy}","received_events_url":"https://api.github.com/users/gary0121/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/gary0121/coreos-vagrant","description":"Minimal Vagrantfile for CoreOS","fork":true,"url":"https://api.github.com/repos/gary0121/coreos-vagrant","forks_url":"https://api.github.com/repos/gary0121/coreos-vagrant/forks","keys_url":"https://api.github.com/repos/gary0121/coreos-vagrant/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gary0121/coreos-vagrant/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gary0121/coreos-vagrant/teams","hooks_url":"https://api.github.com/repos/gary0121/coreos-vagrant/hooks","issue_events_url":"https://api.github.com/repos/gary0121/coreos-vagrant/issues/events{/number}","events_url":"https://api.github.com/repos/gary0121/coreos-vagrant/events","assignees_url":"https://api.github.com/repos/gary0121/coreos-vagrant/assignees{/user}","branches_url":"https://api.github.com/repos/gary0121/coreos-vagrant/branches{/branch}","tags_url":"https://api.github.com/repos/gary0121/coreos-vagrant/tags","blobs_url":"https://api.github.com/repos/gary0121/coreos-vagrant/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gary0121/coreos-vagrant/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gary0121/coreos-vagrant/git/refs{/sha}","trees_url":"https://api.github.com/repos/gary0121/coreos-vagrant/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gary0121/coreos-vagrant/statuses/{sha}","languages_url":"https://api.github.com/repos/gary0121/coreos-vagrant/languages","stargazers_url":"https://api.github.com/repos/gary0121/coreos-vagrant/stargazers","contributors_url":"https://api.github.com/repos/gary0121/coreos-vagrant/contributors","subscribers_url":"https://api.github.com/repos/gary0121/coreos-vagrant/subscribers","subscription_url":"https://api.github.com/repos/gary0121/coreos-vagrant/subscription","commits_url":"https://api.github.com/repos/gary0121/coreos-vagrant/commits{/sha}","git_commits_url":"https://api.github.com/repos/gary0121/coreos-vagrant/git/commits{/sha}","comments_url":"https://api.github.com/repos/gary0121/coreos-vagrant/comments{/number}","issue_comment_url":"https://api.github.com/repos/gary0121/coreos-vagrant/issues/comments/{number}","contents_url":"https://api.github.com/repos/gary0121/coreos-vagrant/contents/{+path}","compare_url":"https://api.github.com/repos/gary0121/coreos-vagrant/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gary0121/coreos-vagrant/merges","archive_url":"https://api.github.com/repos/gary0121/coreos-vagrant/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gary0121/coreos-vagrant/downloads","issues_url":"https://api.github.com/repos/gary0121/coreos-vagrant/issues{/number}","pulls_url":"https://api.github.com/repos/gary0121/coreos-vagrant/pulls{/number}","milestones_url":"https://api.github.com/repos/gary0121/coreos-vagrant/milestones{/number}","notifications_url":"https://api.github.com/repos/gary0121/coreos-vagrant/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gary0121/coreos-vagrant/labels{/name}","releases_url":"https://api.github.com/repos/gary0121/coreos-vagrant/releases{/id}","created_at":"2015-01-01T15:12:40Z","updated_at":"2014-12-31T05:11:32Z","pushed_at":"2014-12-15T19:20:00Z","git_url":"git://github.com/gary0121/coreos-vagrant.git","ssh_url":"git@github.com:gary0121/coreos-vagrant.git","clone_url":"https://github.com/gary0121/coreos-vagrant.git","svn_url":"https://github.com/gary0121/coreos-vagrant","homepage":"","size":696,"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:12:40Z","org":{"id":3730757,"login":"coreos","gravatar_id":"","url":"https://api.github.com/orgs/coreos","avatar_url":"https://avatars.githubusercontent.com/u/3730757?"}} +,{"id":"2489656892","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/mednafi","url":"https://api.github.com/repos/FiLeVeR10/mednafi"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Terminal based user interface for Zenity","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:12:41Z"} +,{"id":"2489656896","type":"ForkEvent","actor":{"id":10142690,"login":"irbees2008","gravatar_id":"","url":"https://api.github.com/users/irbees2008","avatar_url":"https://avatars.githubusercontent.com/u/10142690?"},"repo":{"id":4722778,"name":"wbb/WysiBB","url":"https://api.github.com/repos/wbb/WysiBB"},"payload":{"forkee":{"id":28688825,"name":"WysiBB","full_name":"irbees2008/WysiBB","owner":{"login":"irbees2008","id":10142690,"avatar_url":"https://avatars.githubusercontent.com/u/10142690?v=3","gravatar_id":"","url":"https://api.github.com/users/irbees2008","html_url":"https://github.com/irbees2008","followers_url":"https://api.github.com/users/irbees2008/followers","following_url":"https://api.github.com/users/irbees2008/following{/other_user}","gists_url":"https://api.github.com/users/irbees2008/gists{/gist_id}","starred_url":"https://api.github.com/users/irbees2008/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/irbees2008/subscriptions","organizations_url":"https://api.github.com/users/irbees2008/orgs","repos_url":"https://api.github.com/users/irbees2008/repos","events_url":"https://api.github.com/users/irbees2008/events{/privacy}","received_events_url":"https://api.github.com/users/irbees2008/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/irbees2008/WysiBB","description":"WYSIWYG BBcode editor","fork":true,"url":"https://api.github.com/repos/irbees2008/WysiBB","forks_url":"https://api.github.com/repos/irbees2008/WysiBB/forks","keys_url":"https://api.github.com/repos/irbees2008/WysiBB/keys{/key_id}","collaborators_url":"https://api.github.com/repos/irbees2008/WysiBB/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/irbees2008/WysiBB/teams","hooks_url":"https://api.github.com/repos/irbees2008/WysiBB/hooks","issue_events_url":"https://api.github.com/repos/irbees2008/WysiBB/issues/events{/number}","events_url":"https://api.github.com/repos/irbees2008/WysiBB/events","assignees_url":"https://api.github.com/repos/irbees2008/WysiBB/assignees{/user}","branches_url":"https://api.github.com/repos/irbees2008/WysiBB/branches{/branch}","tags_url":"https://api.github.com/repos/irbees2008/WysiBB/tags","blobs_url":"https://api.github.com/repos/irbees2008/WysiBB/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/irbees2008/WysiBB/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/irbees2008/WysiBB/git/refs{/sha}","trees_url":"https://api.github.com/repos/irbees2008/WysiBB/git/trees{/sha}","statuses_url":"https://api.github.com/repos/irbees2008/WysiBB/statuses/{sha}","languages_url":"https://api.github.com/repos/irbees2008/WysiBB/languages","stargazers_url":"https://api.github.com/repos/irbees2008/WysiBB/stargazers","contributors_url":"https://api.github.com/repos/irbees2008/WysiBB/contributors","subscribers_url":"https://api.github.com/repos/irbees2008/WysiBB/subscribers","subscription_url":"https://api.github.com/repos/irbees2008/WysiBB/subscription","commits_url":"https://api.github.com/repos/irbees2008/WysiBB/commits{/sha}","git_commits_url":"https://api.github.com/repos/irbees2008/WysiBB/git/commits{/sha}","comments_url":"https://api.github.com/repos/irbees2008/WysiBB/comments{/number}","issue_comment_url":"https://api.github.com/repos/irbees2008/WysiBB/issues/comments/{number}","contents_url":"https://api.github.com/repos/irbees2008/WysiBB/contents/{+path}","compare_url":"https://api.github.com/repos/irbees2008/WysiBB/compare/{base}...{head}","merges_url":"https://api.github.com/repos/irbees2008/WysiBB/merges","archive_url":"https://api.github.com/repos/irbees2008/WysiBB/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/irbees2008/WysiBB/downloads","issues_url":"https://api.github.com/repos/irbees2008/WysiBB/issues{/number}","pulls_url":"https://api.github.com/repos/irbees2008/WysiBB/pulls{/number}","milestones_url":"https://api.github.com/repos/irbees2008/WysiBB/milestones{/number}","notifications_url":"https://api.github.com/repos/irbees2008/WysiBB/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/irbees2008/WysiBB/labels{/name}","releases_url":"https://api.github.com/repos/irbees2008/WysiBB/releases{/id}","created_at":"2015-01-01T15:12:41Z","updated_at":"2014-12-30T11:56:11Z","pushed_at":"2014-03-27T13:26:07Z","git_url":"git://github.com/irbees2008/WysiBB.git","ssh_url":"git@github.com:irbees2008/WysiBB.git","clone_url":"https://github.com/irbees2008/WysiBB.git","svn_url":"https://github.com/irbees2008/WysiBB","homepage":"http://www.wysibb.com","size":7131,"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:12:42Z"} +,{"id":"2489656902","type":"CommitCommentEvent","actor":{"id":1270024,"login":"jfoug","gravatar_id":"","url":"https://api.github.com/users/jfoug","avatar_url":"https://avatars.githubusercontent.com/u/1270024?"},"repo":{"id":4683915,"name":"magnumripper/jtrTestSuite","url":"https://api.github.com/repos/magnumripper/jtrTestSuite"},"payload":{"comment":{"url":"https://api.github.com/repos/magnumripper/jtrTestSuite/comments/9132443","html_url":"https://github.com/magnumripper/jtrTestSuite/commit/58382315980ecd8278909c9835b29a5c462d37d9#commitcomment-9132443","id":9132443,"user":{"login":"jfoug","id":1270024,"avatar_url":"https://avatars.githubusercontent.com/u/1270024?v=3","gravatar_id":"","url":"https://api.github.com/users/jfoug","html_url":"https://github.com/jfoug","followers_url":"https://api.github.com/users/jfoug/followers","following_url":"https://api.github.com/users/jfoug/following{/other_user}","gists_url":"https://api.github.com/users/jfoug/gists{/gist_id}","starred_url":"https://api.github.com/users/jfoug/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jfoug/subscriptions","organizations_url":"https://api.github.com/users/jfoug/orgs","repos_url":"https://api.github.com/users/jfoug/repos","events_url":"https://api.github.com/users/jfoug/events{/privacy}","received_events_url":"https://api.github.com/users/jfoug/received_events","type":"User","site_admin":false},"position":null,"line":null,"path":"","commit_id":"58382315980ecd8278909c9835b29a5c462d37d9","created_at":"2015-01-01T15:12:42Z","updated_at":"2015-01-01T15:12:42Z","body":"What is this? All this does is test dyna_0 again, but show dyna_2000 on the screen.\r\n\r\nYou CAN NOT test dyna_1 with dyna_2001. \r\n\r\n$ ../run/john -w=pw.dic -pot=test -form=dynamic_2001 dynamic_1_tst.in\r\nNo password hashes loaded (see FAQ)\r\n\r\n"}},"public":true,"created_at":"2015-01-01T15:12:42Z"} +,{"id":"2489656905","type":"GollumEvent","actor":{"id":10333363,"login":"dougmeredith","gravatar_id":"","url":"https://api.github.com/users/dougmeredith","avatar_url":"https://avatars.githubusercontent.com/u/10333363?"},"repo":{"id":12983151,"name":"openhab/openhab","url":"https://api.github.com/repos/openhab/openhab"},"payload":{"pages":[{"page_name":"xPL-Binding","title":"xPL Binding","summary":null,"action":"edited","sha":"106a4b646031011772f595f30bb4c353a1c24b66","html_url":"https://github.com/openhab/openhab/wiki/xPL-Binding"}]},"public":true,"created_at":"2015-01-01T15:12:43Z","org":{"id":1007353,"login":"openhab","gravatar_id":"","url":"https://api.github.com/orgs/openhab","avatar_url":"https://avatars.githubusercontent.com/u/1007353?"}} +,{"id":"2489656906","type":"CreateEvent","actor":{"id":10364822,"login":"Sidchivate53","gravatar_id":"","url":"https://api.github.com/users/Sidchivate53","avatar_url":"https://avatars.githubusercontent.com/u/10364822?"},"repo":{"id":28688826,"name":"Sidchivate53/helow-world","url":"https://api.github.com/repos/Sidchivate53/helow-world"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:12:43Z"} +,{"id":"2489656908","type":"ForkEvent","actor":{"id":8510192,"login":"invertego","gravatar_id":"","url":"https://api.github.com/users/invertego","avatar_url":"https://avatars.githubusercontent.com/u/8510192?"},"repo":{"id":4309519,"name":"libretro/libretro-prboom","url":"https://api.github.com/repos/libretro/libretro-prboom"},"payload":{"forkee":{"id":28688827,"name":"libretro-prboom","full_name":"invertego/libretro-prboom","owner":{"login":"invertego","id":8510192,"avatar_url":"https://avatars.githubusercontent.com/u/8510192?v=3","gravatar_id":"","url":"https://api.github.com/users/invertego","html_url":"https://github.com/invertego","followers_url":"https://api.github.com/users/invertego/followers","following_url":"https://api.github.com/users/invertego/following{/other_user}","gists_url":"https://api.github.com/users/invertego/gists{/gist_id}","starred_url":"https://api.github.com/users/invertego/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/invertego/subscriptions","organizations_url":"https://api.github.com/users/invertego/orgs","repos_url":"https://api.github.com/users/invertego/repos","events_url":"https://api.github.com/users/invertego/events{/privacy}","received_events_url":"https://api.github.com/users/invertego/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/invertego/libretro-prboom","description":"Port of prboom to libretro - plays Doom, Doom II, Final Doom and other Doom IWAD mods.","fork":true,"url":"https://api.github.com/repos/invertego/libretro-prboom","forks_url":"https://api.github.com/repos/invertego/libretro-prboom/forks","keys_url":"https://api.github.com/repos/invertego/libretro-prboom/keys{/key_id}","collaborators_url":"https://api.github.com/repos/invertego/libretro-prboom/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/invertego/libretro-prboom/teams","hooks_url":"https://api.github.com/repos/invertego/libretro-prboom/hooks","issue_events_url":"https://api.github.com/repos/invertego/libretro-prboom/issues/events{/number}","events_url":"https://api.github.com/repos/invertego/libretro-prboom/events","assignees_url":"https://api.github.com/repos/invertego/libretro-prboom/assignees{/user}","branches_url":"https://api.github.com/repos/invertego/libretro-prboom/branches{/branch}","tags_url":"https://api.github.com/repos/invertego/libretro-prboom/tags","blobs_url":"https://api.github.com/repos/invertego/libretro-prboom/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/invertego/libretro-prboom/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/invertego/libretro-prboom/git/refs{/sha}","trees_url":"https://api.github.com/repos/invertego/libretro-prboom/git/trees{/sha}","statuses_url":"https://api.github.com/repos/invertego/libretro-prboom/statuses/{sha}","languages_url":"https://api.github.com/repos/invertego/libretro-prboom/languages","stargazers_url":"https://api.github.com/repos/invertego/libretro-prboom/stargazers","contributors_url":"https://api.github.com/repos/invertego/libretro-prboom/contributors","subscribers_url":"https://api.github.com/repos/invertego/libretro-prboom/subscribers","subscription_url":"https://api.github.com/repos/invertego/libretro-prboom/subscription","commits_url":"https://api.github.com/repos/invertego/libretro-prboom/commits{/sha}","git_commits_url":"https://api.github.com/repos/invertego/libretro-prboom/git/commits{/sha}","comments_url":"https://api.github.com/repos/invertego/libretro-prboom/comments{/number}","issue_comment_url":"https://api.github.com/repos/invertego/libretro-prboom/issues/comments/{number}","contents_url":"https://api.github.com/repos/invertego/libretro-prboom/contents/{+path}","compare_url":"https://api.github.com/repos/invertego/libretro-prboom/compare/{base}...{head}","merges_url":"https://api.github.com/repos/invertego/libretro-prboom/merges","archive_url":"https://api.github.com/repos/invertego/libretro-prboom/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/invertego/libretro-prboom/downloads","issues_url":"https://api.github.com/repos/invertego/libretro-prboom/issues{/number}","pulls_url":"https://api.github.com/repos/invertego/libretro-prboom/pulls{/number}","milestones_url":"https://api.github.com/repos/invertego/libretro-prboom/milestones{/number}","notifications_url":"https://api.github.com/repos/invertego/libretro-prboom/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/invertego/libretro-prboom/labels{/name}","releases_url":"https://api.github.com/repos/invertego/libretro-prboom/releases{/id}","created_at":"2015-01-01T15:12:43Z","updated_at":"2014-12-30T22:39:35Z","pushed_at":"2014-12-30T22:39:35Z","git_url":"git://github.com/invertego/libretro-prboom.git","ssh_url":"git@github.com:invertego/libretro-prboom.git","clone_url":"https://github.com/invertego/libretro-prboom.git","svn_url":"https://github.com/invertego/libretro-prboom","homepage":"","size":2013,"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:12:43Z","org":{"id":1812827,"login":"libretro","gravatar_id":"","url":"https://api.github.com/orgs/libretro","avatar_url":"https://avatars.githubusercontent.com/u/1812827?"}} +,{"id":"2489656911","type":"CreateEvent","actor":{"id":6461778,"login":"zyanguml","gravatar_id":"","url":"https://api.github.com/users/zyanguml","avatar_url":"https://avatars.githubusercontent.com/u/6461778?"},"repo":{"id":28688828,"name":"zyanguml/FibonacciAsp","url":"https://api.github.com/repos/zyanguml/FibonacciAsp"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Fibonacci implementation on ASP.net.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:12:43Z"} +,{"id":"2489656916","type":"PushEvent","actor":{"id":3162246,"login":"FortuneZhang","gravatar_id":"","url":"https://api.github.com/users/FortuneZhang","avatar_url":"https://avatars.githubusercontent.com/u/3162246?"},"repo":{"id":26296934,"name":"FortuneZhang/wenkong","url":"https://api.github.com/repos/FortuneZhang/wenkong"},"payload":{"push_id":536866631,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"376546148e33c18bde3c563ed09178b449acb84b","before":"2a8e3fa54914cabc2c335af7634b5bef0ed94c49","commits":[{"sha":"2149b5d5957cc89c42671edc3a63bb958fda178f","author":{"email":"fe2607e703cfa4ffa7c60fb752b7770cc287d4c1@gmail.com","name":"FortuneZhang"},"message":"fortune-show wind speed and wind direction on chart","distinct":true,"url":"https://api.github.com/repos/FortuneZhang/wenkong/commits/2149b5d5957cc89c42671edc3a63bb958fda178f"},{"sha":"376546148e33c18bde3c563ed09178b449acb84b","author":{"email":"fe2607e703cfa4ffa7c60fb752b7770cc287d4c1@gmail.com","name":"FortuneZhang"},"message":"fortune-show tooltip","distinct":true,"url":"https://api.github.com/repos/FortuneZhang/wenkong/commits/376546148e33c18bde3c563ed09178b449acb84b"}]},"public":true,"created_at":"2015-01-01T15:12:44Z"} +,{"id":"2489656918","type":"PushEvent","actor":{"id":389861,"login":"ZoogieZork","gravatar_id":"","url":"https://api.github.com/users/ZoogieZork","avatar_url":"https://avatars.githubusercontent.com/u/389861?"},"repo":{"id":6660510,"name":"HoverRace/HoverRace","url":"https://api.github.com/repos/HoverRace/HoverRace"},"payload":{"push_id":536866632,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"1b537fb52be59cc43d912fe6e831aba2e7ae3bb5","before":"6cae6c3a49cfd1dd6dde7371e931e2f9ef8e62a9","commits":[{"sha":"3f8b88dac8eea426f0a33dee7b0b339ea1e8a6e5","author":{"email":"ad312012bb5f4f9d2a9d598fc62050de6dde1721@lugatgt.org","name":"Michael Imamura"},"message":"Clean up unused using decl.","distinct":true,"url":"https://api.github.com/repos/HoverRace/HoverRace/commits/3f8b88dac8eea426f0a33dee7b0b339ea1e8a6e5"},{"sha":"1b537fb52be59cc43d912fe6e831aba2e7ae3bb5","author":{"email":"ad312012bb5f4f9d2a9d598fc62050de6dde1721@lugatgt.org","name":"Michael Imamura"},"message":"Reformat.","distinct":true,"url":"https://api.github.com/repos/HoverRace/HoverRace/commits/1b537fb52be59cc43d912fe6e831aba2e7ae3bb5"}]},"public":true,"created_at":"2015-01-01T15:12:44Z","org":{"id":2780013,"login":"HoverRace","gravatar_id":"","url":"https://api.github.com/orgs/HoverRace","avatar_url":"https://avatars.githubusercontent.com/u/2780013?"}} +,{"id":"2489656922","type":"PushEvent","actor":{"id":2934017,"login":"basill","gravatar_id":"","url":"https://api.github.com/users/basill","avatar_url":"https://avatars.githubusercontent.com/u/2934017?"},"repo":{"id":6946296,"name":"basill/z-i","url":"https://api.github.com/repos/basill/z-i"},"payload":{"push_id":536866634,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"1cf047521d592812b6b7d82e677d4b65433fb1c6","before":"b7f20bf55d6902d67a2639487ebd71e7c4aa8f1c","commits":[{"sha":"ba88ebcea120a07993f93d0455ca20d980968e93","author":{"email":"638bb4d34e0e188f1532a6429737f4ed836d903b@gmail.com","name":"Zapret Info"},"message":"Updated: 2015-01-01 14:05:00 +0000","distinct":true,"url":"https://api.github.com/repos/basill/z-i/commits/ba88ebcea120a07993f93d0455ca20d980968e93"},{"sha":"725da3058a2132d390aa4ae03dfa5cc6f9a239ff","author":{"email":"6fa3beb996ca8fc2b8dc75e742253eaf839f257b@github.com","name":"basill"},"message":"update upstream","distinct":true,"url":"https://api.github.com/repos/basill/z-i/commits/725da3058a2132d390aa4ae03dfa5cc6f9a239ff"},{"sha":"1cf047521d592812b6b7d82e677d4b65433fb1c6","author":{"email":"6fa3beb996ca8fc2b8dc75e742253eaf839f257b@github.com","name":"basill"},"message":"update feed","distinct":true,"url":"https://api.github.com/repos/basill/z-i/commits/1cf047521d592812b6b7d82e677d4b65433fb1c6"}]},"public":true,"created_at":"2015-01-01T15:12:45Z"} +,{"id":"2489656925","type":"GollumEvent","actor":{"id":469989,"login":"bennyn","gravatar_id":"","url":"https://api.github.com/users/bennyn","avatar_url":"https://avatars.githubusercontent.com/u/469989?"},"repo":{"id":26399632,"name":"welovecoding/welovecoding.github.io","url":"https://api.github.com/repos/welovecoding/welovecoding.github.io"},"payload":{"pages":[{"page_name":"Hotkeys","title":"Hotkeys","summary":null,"action":"edited","sha":"870f1910a7881e4eca024dda1096d7c3757c5d47","html_url":"https://github.com/welovecoding/welovecoding.github.io/wiki/Hotkeys"}]},"public":true,"created_at":"2015-01-01T15:12:45Z","org":{"id":8947331,"login":"welovecoding","gravatar_id":"","url":"https://api.github.com/orgs/welovecoding","avatar_url":"https://avatars.githubusercontent.com/u/8947331?"}} +,{"id":"2489656926","type":"WatchEvent","actor":{"id":201664,"login":"aredo","gravatar_id":"","url":"https://api.github.com/users/aredo","avatar_url":"https://avatars.githubusercontent.com/u/201664?"},"repo":{"id":3516624,"name":"twitter/twemproxy","url":"https://api.github.com/repos/twitter/twemproxy"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:12:45Z","org":{"id":50278,"login":"twitter","gravatar_id":"","url":"https://api.github.com/orgs/twitter","avatar_url":"https://avatars.githubusercontent.com/u/50278?"}} +,{"id":"2489656931","type":"IssuesEvent","actor":{"id":63502,"login":"ferventcoder","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","avatar_url":"https://avatars.githubusercontent.com/u/63502?"},"repo":{"id":22735696,"name":"chocolatey/chocolatey-package-updater","url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/10","labels_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/10/comments","events_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/10/events","html_url":"https://github.com/chocolatey/chocolatey-package-updater/issues/10","id":53221591,"number":10,"title":"Use https://chocolatey.org/ instead of http://chocolatey.org/ for pushes","user":{"login":"ferventcoder","id":63502,"avatar_url":"https://avatars.githubusercontent.com/u/63502?v=3","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","html_url":"https://github.com/ferventcoder","followers_url":"https://api.github.com/users/ferventcoder/followers","following_url":"https://api.github.com/users/ferventcoder/following{/other_user}","gists_url":"https://api.github.com/users/ferventcoder/gists{/gist_id}","starred_url":"https://api.github.com/users/ferventcoder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ferventcoder/subscriptions","organizations_url":"https://api.github.com/users/ferventcoder/orgs","repos_url":"https://api.github.com/users/ferventcoder/repos","events_url":"https://api.github.com/users/ferventcoder/events{/privacy}","received_events_url":"https://api.github.com/users/ferventcoder/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/labels/bug","name":"bug","color":"fc2929"}],"state":"open","locked":false,"assignee":{"login":"ferventcoder","id":63502,"avatar_url":"https://avatars.githubusercontent.com/u/63502?v=3","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","html_url":"https://github.com/ferventcoder","followers_url":"https://api.github.com/users/ferventcoder/followers","following_url":"https://api.github.com/users/ferventcoder/following{/other_user}","gists_url":"https://api.github.com/users/ferventcoder/gists{/gist_id}","starred_url":"https://api.github.com/users/ferventcoder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ferventcoder/subscriptions","organizations_url":"https://api.github.com/users/ferventcoder/orgs","repos_url":"https://api.github.com/users/ferventcoder/repos","events_url":"https://api.github.com/users/ferventcoder/events{/privacy}","received_events_url":"https://api.github.com/users/ferventcoder/received_events","type":"User","site_admin":false},"milestone":null,"comments":0,"created_at":"2015-01-01T15:12:45Z","updated_at":"2015-01-01T15:12:45Z","closed_at":null,"body":""}},"public":true,"created_at":"2015-01-01T15:12:45Z","org":{"id":811025,"login":"chocolatey","gravatar_id":"","url":"https://api.github.com/orgs/chocolatey","avatar_url":"https://avatars.githubusercontent.com/u/811025?"}} +,{"id":"2489656933","type":"WatchEvent","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":"started"},"public":true,"created_at":"2015-01-01T15:12:45Z"} +,{"id":"2489656934","type":"DeleteEvent","actor":{"id":1163662,"login":"robertpanzer","gravatar_id":"","url":"https://api.github.com/users/robertpanzer","avatar_url":"https://avatars.githubusercontent.com/u/1163662?"},"repo":{"id":27998582,"name":"robertpanzer/asciidoctorj","url":"https://api.github.com/repos/robertpanzer/asciidoctorj"},"payload":{"ref":"JavaConverter","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:12:46Z"} +,{"id":"2489656940","type":"CreateEvent","actor":{"id":10364828,"login":"CladNKaos","gravatar_id":"","url":"https://api.github.com/users/CladNKaos","avatar_url":"https://avatars.githubusercontent.com/u/10364828?"},"repo":{"id":28688829,"name":"CladNKaos/Main-Branch","url":"https://api.github.com/repos/CladNKaos/Main-Branch"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:12:46Z"} +,{"id":"2489656942","type":"CommitCommentEvent","actor":{"id":220405,"login":"atk","gravatar_id":"","url":"https://api.github.com/users/atk","avatar_url":"https://avatars.githubusercontent.com/u/220405?"},"repo":{"id":28688670,"name":"deathcore01/Carbonite","url":"https://api.github.com/repos/deathcore01/Carbonite"},"payload":{"comment":{"url":"https://api.github.com/repos/deathcore01/Carbonite/comments/9132444","html_url":"https://github.com/deathcore01/Carbonite/commit/1a73fa1dc96ce3e9c816c872bb2dd70d558e2ba5#commitcomment-9132444","id":9132444,"user":{"login":"atk","id":220405,"avatar_url":"https://avatars.githubusercontent.com/u/220405?v=3","gravatar_id":"","url":"https://api.github.com/users/atk","html_url":"https://github.com/atk","followers_url":"https://api.github.com/users/atk/followers","following_url":"https://api.github.com/users/atk/following{/other_user}","gists_url":"https://api.github.com/users/atk/gists{/gist_id}","starred_url":"https://api.github.com/users/atk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/atk/subscriptions","organizations_url":"https://api.github.com/users/atk/orgs","repos_url":"https://api.github.com/users/atk/repos","events_url":"https://api.github.com/users/atk/events{/privacy}","received_events_url":"https://api.github.com/users/atk/received_events","type":"User","site_admin":false},"position":null,"line":null,"path":"","commit_id":"1a73fa1dc96ce3e9c816c872bb2dd70d558e2ba5","created_at":"2015-01-01T15:12:47Z","updated_at":"2015-01-01T15:12:47Z","body":"Looks good to me, but someone else (preferably Rythal) should confirm that this is indeed acceptable."}},"public":true,"created_at":"2015-01-01T15:12:47Z"} +,{"id":"2489656943","type":"IssueCommentEvent","actor":{"id":43438,"login":"timoxley","gravatar_id":"","url":"https://api.github.com/users/timoxley","avatar_url":"https://avatars.githubusercontent.com/u/43438?"},"repo":{"id":24239561,"name":"timoxley/linklocal","url":"https://api.github.com/repos/timoxley/linklocal"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/timoxley/linklocal/issues/14","labels_url":"https://api.github.com/repos/timoxley/linklocal/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/timoxley/linklocal/issues/14/comments","events_url":"https://api.github.com/repos/timoxley/linklocal/issues/14/events","html_url":"https://github.com/timoxley/linklocal/issues/14","id":53221277,"number":14,"title":"strategies for installing dependencies of local dependencies","user":{"login":"timoxley","id":43438,"avatar_url":"https://avatars.githubusercontent.com/u/43438?v=3","gravatar_id":"","url":"https://api.github.com/users/timoxley","html_url":"https://github.com/timoxley","followers_url":"https://api.github.com/users/timoxley/followers","following_url":"https://api.github.com/users/timoxley/following{/other_user}","gists_url":"https://api.github.com/users/timoxley/gists{/gist_id}","starred_url":"https://api.github.com/users/timoxley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timoxley/subscriptions","organizations_url":"https://api.github.com/users/timoxley/orgs","repos_url":"https://api.github.com/users/timoxley/repos","events_url":"https://api.github.com/users/timoxley/events{/privacy}","received_events_url":"https://api.github.com/users/timoxley/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T14:57:32Z","updated_at":"2015-01-01T15:12:47Z","closed_at":null,"body":"## Scenario\r\n* `parent-pkg` has local dependency: `file: ./local-pkg`.\r\n* `npm install` in `parent-pkg`.\r\n* `./local-pkg` is copied and installed into `parent_package/node_modules, along with the dependencies of `local-pkg`.\r\n* post-install, run `linklocal`.\r\n* `node_modules/local-pkg` is now replaced with a relative symlink to `../local-pkg`. Dependencies of `local-pkg` are not installed.\r\n* Use `linklocal list` to produce a list of all local dependencies, which we then pass to something like `xargs`, `find -exec` or [bulk](https://github.com/timoxley/bulk) to run `npm install --production` for us: `linklocal list | bulk -c \"npm install --production\"`.\r\n* Local dependencies have now got their dependencies installed.\r\n\r\n## Issues\r\n1. Dependencies of local dependencies were installed twice. First when the local dependencies were installed with the regular `npm install`, second during the bulk `npm install` in the local dependencies. This can lead to considerable increases in install time if you depend on anything that requires building.\r\n2. No deduplication occurs between local dependencies. If two local packages depend on the same thing, it will be installed twice.\r\n\r\n## Some Improvements\r\n\r\n### Don't hit remote registry\r\nDisable accessing the remote registry with `npm install --cache-min=Infinity` for the bulk install. You've already just installed everything you need so there's a good chance everything is already in the cache. This prevents overhead of hitting npm servers over and over for every local dependency. Doesn't solve rebuilding over and over again though.\r\n\r\n## Don't install local dependencies then symlink them away\r\nTo avoid the initial install of everything before symlinking it all away, I've been doing `linklocal` in the preinstall script. Of course this requires linklocal and bulk to be installed before starting, so my preinstall (Makefile) looks something like:\r\n\r\n```\r\npreinstall:\r\n npm install linklocal bulk # this unfortunately ignores the version specified in package.json\r\n linklocal link -r\r\n linklocal list -r --unique | bulk -c \"npm install --cache-min=Infinity\"\r\n```\r\n\r\nbut what's really killing install time is rebuilding dependencies over and over due to lack of deduplication.\r\n\r\ncc @hughsk @yoshuawuyts any ideas on what we can do to improve this?"},"comment":{"url":"https://api.github.com/repos/timoxley/linklocal/issues/comments/68488758","html_url":"https://github.com/timoxley/linklocal/issues/14#issuecomment-68488758","issue_url":"https://api.github.com/repos/timoxley/linklocal/issues/14","id":68488758,"user":{"login":"timoxley","id":43438,"avatar_url":"https://avatars.githubusercontent.com/u/43438?v=3","gravatar_id":"","url":"https://api.github.com/users/timoxley","html_url":"https://github.com/timoxley","followers_url":"https://api.github.com/users/timoxley/followers","following_url":"https://api.github.com/users/timoxley/following{/other_user}","gists_url":"https://api.github.com/users/timoxley/gists{/gist_id}","starred_url":"https://api.github.com/users/timoxley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timoxley/subscriptions","organizations_url":"https://api.github.com/users/timoxley/orgs","repos_url":"https://api.github.com/users/timoxley/repos","events_url":"https://api.github.com/users/timoxley/events{/privacy}","received_events_url":"https://api.github.com/users/timoxley/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:12:47Z","updated_at":"2015-01-01T15:12:47Z","body":"One option could be to optionally \"steal\" the `node_modules` folder if it exists in a directory we're about to symlink over. i.e. if symlinking `./local-pkg` into `node_modules/local-pkg` and `node_modules/local-pkg/node_modules` exists, optionally copy it into `./local-pkg`."}},"public":true,"created_at":"2015-01-01T15:12:47Z"} +,{"id":"2489656945","type":"CreateEvent","actor":{"id":112751,"login":"allain","gravatar_id":"","url":"https://api.github.com/users/allain","avatar_url":"https://avatars.githubusercontent.com/u/112751?"},"repo":{"id":28688830,"name":"allain/json-patch-stream","url":"https://api.github.com/repos/allain/json-patch-stream"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"JSON-patch utilities for transforming a stream of JSON documents into a stream of JSON patches and vice versa","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:12:47Z"} +,{"id":"2489656946","type":"GollumEvent","actor":{"id":7860796,"login":"Shad0wB1ade","gravatar_id":"","url":"https://api.github.com/users/Shad0wB1ade","avatar_url":"https://avatars.githubusercontent.com/u/7860796?"},"repo":{"id":23162413,"name":"Shad0wB1ade/Solar-Expansion-Lang","url":"https://api.github.com/repos/Shad0wB1ade/Solar-Expansion-Lang"},"payload":{"pages":[{"page_name":"Home","title":"Home","summary":null,"action":"edited","sha":"8f6887d2ab3aa2438eb0138850f33f80729b9e90","html_url":"https://github.com/Shad0wB1ade/Solar-Expansion-Lang/wiki/Home"}]},"public":true,"created_at":"2015-01-01T15:12:47Z"} +,{"id":"2489656949","type":"PushEvent","actor":{"id":1028755,"login":"lokedhs","gravatar_id":"","url":"https://api.github.com/users/lokedhs","avatar_url":"https://avatars.githubusercontent.com/u/1028755?"},"repo":{"id":12663894,"name":"lokedhs/lofn","url":"https://api.github.com/repos/lokedhs/lofn"},"payload":{"push_id":536866639,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e12d30f62a3ba71a5d1500b18519f84bff9b8eb7","before":"7ef535244ca2e1c4978cb390af0b6e0cfa9fc334","commits":[{"sha":"e12d30f62a3ba71a5d1500b18519f84bff9b8eb7","author":{"email":"85bc0d8266e15c2ee9210ba02a8e17cd25a77372@gmail.com","name":"Elias Martenson"},"message":"Split DEFINE-HANDLER-FN into two macros","distinct":true,"url":"https://api.github.com/repos/lokedhs/lofn/commits/e12d30f62a3ba71a5d1500b18519f84bff9b8eb7"}]},"public":true,"created_at":"2015-01-01T15:12:48Z"} +,{"id":"2489656950","type":"ForkEvent","actor":{"id":847179,"login":"PirosB3","gravatar_id":"","url":"https://api.github.com/users/PirosB3","avatar_url":"https://avatars.githubusercontent.com/u/847179?"},"repo":{"id":27890669,"name":"rust-lang/regex","url":"https://api.github.com/repos/rust-lang/regex"},"payload":{"forkee":{"id":28688831,"name":"regex","full_name":"PirosB3/regex","owner":{"login":"PirosB3","id":847179,"avatar_url":"https://avatars.githubusercontent.com/u/847179?v=3","gravatar_id":"","url":"https://api.github.com/users/PirosB3","html_url":"https://github.com/PirosB3","followers_url":"https://api.github.com/users/PirosB3/followers","following_url":"https://api.github.com/users/PirosB3/following{/other_user}","gists_url":"https://api.github.com/users/PirosB3/gists{/gist_id}","starred_url":"https://api.github.com/users/PirosB3/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/PirosB3/subscriptions","organizations_url":"https://api.github.com/users/PirosB3/orgs","repos_url":"https://api.github.com/users/PirosB3/repos","events_url":"https://api.github.com/users/PirosB3/events{/privacy}","received_events_url":"https://api.github.com/users/PirosB3/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/PirosB3/regex","description":"","fork":true,"url":"https://api.github.com/repos/PirosB3/regex","forks_url":"https://api.github.com/repos/PirosB3/regex/forks","keys_url":"https://api.github.com/repos/PirosB3/regex/keys{/key_id}","collaborators_url":"https://api.github.com/repos/PirosB3/regex/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/PirosB3/regex/teams","hooks_url":"https://api.github.com/repos/PirosB3/regex/hooks","issue_events_url":"https://api.github.com/repos/PirosB3/regex/issues/events{/number}","events_url":"https://api.github.com/repos/PirosB3/regex/events","assignees_url":"https://api.github.com/repos/PirosB3/regex/assignees{/user}","branches_url":"https://api.github.com/repos/PirosB3/regex/branches{/branch}","tags_url":"https://api.github.com/repos/PirosB3/regex/tags","blobs_url":"https://api.github.com/repos/PirosB3/regex/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/PirosB3/regex/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/PirosB3/regex/git/refs{/sha}","trees_url":"https://api.github.com/repos/PirosB3/regex/git/trees{/sha}","statuses_url":"https://api.github.com/repos/PirosB3/regex/statuses/{sha}","languages_url":"https://api.github.com/repos/PirosB3/regex/languages","stargazers_url":"https://api.github.com/repos/PirosB3/regex/stargazers","contributors_url":"https://api.github.com/repos/PirosB3/regex/contributors","subscribers_url":"https://api.github.com/repos/PirosB3/regex/subscribers","subscription_url":"https://api.github.com/repos/PirosB3/regex/subscription","commits_url":"https://api.github.com/repos/PirosB3/regex/commits{/sha}","git_commits_url":"https://api.github.com/repos/PirosB3/regex/git/commits{/sha}","comments_url":"https://api.github.com/repos/PirosB3/regex/comments{/number}","issue_comment_url":"https://api.github.com/repos/PirosB3/regex/issues/comments/{number}","contents_url":"https://api.github.com/repos/PirosB3/regex/contents/{+path}","compare_url":"https://api.github.com/repos/PirosB3/regex/compare/{base}...{head}","merges_url":"https://api.github.com/repos/PirosB3/regex/merges","archive_url":"https://api.github.com/repos/PirosB3/regex/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/PirosB3/regex/downloads","issues_url":"https://api.github.com/repos/PirosB3/regex/issues{/number}","pulls_url":"https://api.github.com/repos/PirosB3/regex/pulls{/number}","milestones_url":"https://api.github.com/repos/PirosB3/regex/milestones{/number}","notifications_url":"https://api.github.com/repos/PirosB3/regex/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/PirosB3/regex/labels{/name}","releases_url":"https://api.github.com/repos/PirosB3/regex/releases{/id}","created_at":"2015-01-01T15:12:48Z","updated_at":"2014-12-30T15:51:02Z","pushed_at":"2014-12-31T06:02:38Z","git_url":"git://github.com/PirosB3/regex.git","ssh_url":"git@github.com:PirosB3/regex.git","clone_url":"https://github.com/PirosB3/regex.git","svn_url":"https://github.com/PirosB3/regex","homepage":null,"size":1125,"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:12:48Z","org":{"id":5430905,"login":"rust-lang","gravatar_id":"","url":"https://api.github.com/orgs/rust-lang","avatar_url":"https://avatars.githubusercontent.com/u/5430905?"}} +,{"id":"2489656952","type":"IssueCommentEvent","actor":{"id":1132234,"login":"Dicebot","gravatar_id":"","url":"https://api.github.com/users/Dicebot","avatar_url":"https://avatars.githubusercontent.com/u/1132234?"},"repo":{"id":6470655,"name":"D-Programming-Language/dub","url":"https://api.github.com/repos/D-Programming-Language/dub"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/D-Programming-Language/dub/issues/474","labels_url":"https://api.github.com/repos/D-Programming-Language/dub/issues/474/labels{/name}","comments_url":"https://api.github.com/repos/D-Programming-Language/dub/issues/474/comments","events_url":"https://api.github.com/repos/D-Programming-Language/dub/issues/474/events","html_url":"https://github.com/D-Programming-Language/dub/pull/474","id":51783112,"number":474,"title":"Don't add executable dependencies to link ones","user":{"login":"Dicebot","id":1132234,"avatar_url":"https://avatars.githubusercontent.com/u/1132234?v=3","gravatar_id":"","url":"https://api.github.com/users/Dicebot","html_url":"https://github.com/Dicebot","followers_url":"https://api.github.com/users/Dicebot/followers","following_url":"https://api.github.com/users/Dicebot/following{/other_user}","gists_url":"https://api.github.com/users/Dicebot/gists{/gist_id}","starred_url":"https://api.github.com/users/Dicebot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Dicebot/subscriptions","organizations_url":"https://api.github.com/users/Dicebot/orgs","repos_url":"https://api.github.com/users/Dicebot/repos","events_url":"https://api.github.com/users/Dicebot/events{/privacy}","received_events_url":"https://api.github.com/users/Dicebot/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":6,"created_at":"2014-12-12T08:52:12Z","updated_at":"2015-01-01T15:12:48Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/D-Programming-Language/dub/pulls/474","html_url":"https://github.com/D-Programming-Language/dub/pull/474","diff_url":"https://github.com/D-Programming-Language/dub/pull/474.diff","patch_url":"https://github.com/D-Programming-Language/dub/pull/474.patch"},"body":"At some point executable dependencies will need dedicated \"pathDependency\"\nsupport. For now those better be ignored - no one is going to link against\nan executable.\n\nWithout this fix adding dependency with `targetType : executable` resulted\nin broken DFLAGS generated because binary name from dependency was added to\nthe linker flags as if it was a static library."},"comment":{"url":"https://api.github.com/repos/D-Programming-Language/dub/issues/comments/68488759","html_url":"https://github.com/D-Programming-Language/dub/pull/474#issuecomment-68488759","issue_url":"https://api.github.com/repos/D-Programming-Language/dub/issues/474","id":68488759,"user":{"login":"Dicebot","id":1132234,"avatar_url":"https://avatars.githubusercontent.com/u/1132234?v=3","gravatar_id":"","url":"https://api.github.com/users/Dicebot","html_url":"https://github.com/Dicebot","followers_url":"https://api.github.com/users/Dicebot/followers","following_url":"https://api.github.com/users/Dicebot/following{/other_user}","gists_url":"https://api.github.com/users/Dicebot/gists{/gist_id}","starred_url":"https://api.github.com/users/Dicebot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Dicebot/subscriptions","organizations_url":"https://api.github.com/users/Dicebot/orgs","repos_url":"https://api.github.com/users/Dicebot/repos","events_url":"https://api.github.com/users/Dicebot/events{/privacy}","received_events_url":"https://api.github.com/users/Dicebot/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:12:48Z","updated_at":"2015-01-01T15:12:48Z","body":"Is there anything wrong or uncertain with this?"}},"public":true,"created_at":"2015-01-01T15:12:48Z","org":{"id":565913,"login":"D-Programming-Language","gravatar_id":"","url":"https://api.github.com/orgs/D-Programming-Language","avatar_url":"https://avatars.githubusercontent.com/u/565913?"}} +,{"id":"2489656955","type":"PullRequestEvent","actor":{"id":214142,"login":"jaswilli","gravatar_id":"","url":"https://api.github.com/users/jaswilli","avatar_url":"https://avatars.githubusercontent.com/u/214142?"},"repo":{"id":9852918,"name":"TryGhost/Ghost","url":"https://api.github.com/repos/TryGhost/Ghost"},"payload":{"action":"closed","number":4743,"pull_request":{"url":"https://api.github.com/repos/TryGhost/Ghost/pulls/4743","id":26740328,"html_url":"https://github.com/TryGhost/Ghost/pull/4743","diff_url":"https://github.com/TryGhost/Ghost/pull/4743.diff","patch_url":"https://github.com/TryGhost/Ghost/pull/4743.patch","issue_url":"https://api.github.com/repos/TryGhost/Ghost/issues/4743","number":4743,"state":"closed","locked":false,"title":"Do not use static and {{bind-attr}} for the same attribute.","user":{"login":"rwjblue","id":12637,"avatar_url":"https://avatars.githubusercontent.com/u/12637?v=3","gravatar_id":"","url":"https://api.github.com/users/rwjblue","html_url":"https://github.com/rwjblue","followers_url":"https://api.github.com/users/rwjblue/followers","following_url":"https://api.github.com/users/rwjblue/following{/other_user}","gists_url":"https://api.github.com/users/rwjblue/gists{/gist_id}","starred_url":"https://api.github.com/users/rwjblue/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rwjblue/subscriptions","organizations_url":"https://api.github.com/users/rwjblue/orgs","repos_url":"https://api.github.com/users/rwjblue/repos","events_url":"https://api.github.com/users/rwjblue/events{/privacy}","received_events_url":"https://api.github.com/users/rwjblue/received_events","type":"User","site_admin":false},"body":"No issue.\n\nThis would work in pre-HTMLBars land for the initial render (but any rerenders would lose the static attribute name). Added https://github.com/emberjs/ember.js/pull/10096 to throw an assertion when this occurs.","created_at":"2015-01-01T03:34:53Z","updated_at":"2015-01-01T15:12:49Z","closed_at":"2015-01-01T15:12:49Z","merged_at":"2015-01-01T15:12:49Z","merge_commit_sha":"b8a4ce096567727344e040f9c5bb5df22865270a","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/TryGhost/Ghost/pulls/4743/commits","review_comments_url":"https://api.github.com/repos/TryGhost/Ghost/pulls/4743/comments","review_comment_url":"https://api.github.com/repos/TryGhost/Ghost/pulls/comments/{number}","comments_url":"https://api.github.com/repos/TryGhost/Ghost/issues/4743/comments","statuses_url":"https://api.github.com/repos/TryGhost/Ghost/statuses/b6676b38c733934b635c13bb97f2a6aaa6eb63b2","head":{"label":"rwjblue:remove-double-class-assignment","ref":"remove-double-class-assignment","sha":"b6676b38c733934b635c13bb97f2a6aaa6eb63b2","user":{"login":"rwjblue","id":12637,"avatar_url":"https://avatars.githubusercontent.com/u/12637?v=3","gravatar_id":"","url":"https://api.github.com/users/rwjblue","html_url":"https://github.com/rwjblue","followers_url":"https://api.github.com/users/rwjblue/followers","following_url":"https://api.github.com/users/rwjblue/following{/other_user}","gists_url":"https://api.github.com/users/rwjblue/gists{/gist_id}","starred_url":"https://api.github.com/users/rwjblue/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rwjblue/subscriptions","organizations_url":"https://api.github.com/users/rwjblue/orgs","repos_url":"https://api.github.com/users/rwjblue/repos","events_url":"https://api.github.com/users/rwjblue/events{/privacy}","received_events_url":"https://api.github.com/users/rwjblue/received_events","type":"User","site_admin":false},"repo":{"id":18351883,"name":"Ghost","full_name":"rwjblue/Ghost","owner":{"login":"rwjblue","id":12637,"avatar_url":"https://avatars.githubusercontent.com/u/12637?v=3","gravatar_id":"","url":"https://api.github.com/users/rwjblue","html_url":"https://github.com/rwjblue","followers_url":"https://api.github.com/users/rwjblue/followers","following_url":"https://api.github.com/users/rwjblue/following{/other_user}","gists_url":"https://api.github.com/users/rwjblue/gists{/gist_id}","starred_url":"https://api.github.com/users/rwjblue/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rwjblue/subscriptions","organizations_url":"https://api.github.com/users/rwjblue/orgs","repos_url":"https://api.github.com/users/rwjblue/repos","events_url":"https://api.github.com/users/rwjblue/events{/privacy}","received_events_url":"https://api.github.com/users/rwjblue/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/rwjblue/Ghost","description":"Just a blogging platform","fork":true,"url":"https://api.github.com/repos/rwjblue/Ghost","forks_url":"https://api.github.com/repos/rwjblue/Ghost/forks","keys_url":"https://api.github.com/repos/rwjblue/Ghost/keys{/key_id}","collaborators_url":"https://api.github.com/repos/rwjblue/Ghost/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/rwjblue/Ghost/teams","hooks_url":"https://api.github.com/repos/rwjblue/Ghost/hooks","issue_events_url":"https://api.github.com/repos/rwjblue/Ghost/issues/events{/number}","events_url":"https://api.github.com/repos/rwjblue/Ghost/events","assignees_url":"https://api.github.com/repos/rwjblue/Ghost/assignees{/user}","branches_url":"https://api.github.com/repos/rwjblue/Ghost/branches{/branch}","tags_url":"https://api.github.com/repos/rwjblue/Ghost/tags","blobs_url":"https://api.github.com/repos/rwjblue/Ghost/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/rwjblue/Ghost/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/rwjblue/Ghost/git/refs{/sha}","trees_url":"https://api.github.com/repos/rwjblue/Ghost/git/trees{/sha}","statuses_url":"https://api.github.com/repos/rwjblue/Ghost/statuses/{sha}","languages_url":"https://api.github.com/repos/rwjblue/Ghost/languages","stargazers_url":"https://api.github.com/repos/rwjblue/Ghost/stargazers","contributors_url":"https://api.github.com/repos/rwjblue/Ghost/contributors","subscribers_url":"https://api.github.com/repos/rwjblue/Ghost/subscribers","subscription_url":"https://api.github.com/repos/rwjblue/Ghost/subscription","commits_url":"https://api.github.com/repos/rwjblue/Ghost/commits{/sha}","git_commits_url":"https://api.github.com/repos/rwjblue/Ghost/git/commits{/sha}","comments_url":"https://api.github.com/repos/rwjblue/Ghost/comments{/number}","issue_comment_url":"https://api.github.com/repos/rwjblue/Ghost/issues/comments/{number}","contents_url":"https://api.github.com/repos/rwjblue/Ghost/contents/{+path}","compare_url":"https://api.github.com/repos/rwjblue/Ghost/compare/{base}...{head}","merges_url":"https://api.github.com/repos/rwjblue/Ghost/merges","archive_url":"https://api.github.com/repos/rwjblue/Ghost/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/rwjblue/Ghost/downloads","issues_url":"https://api.github.com/repos/rwjblue/Ghost/issues{/number}","pulls_url":"https://api.github.com/repos/rwjblue/Ghost/pulls{/number}","milestones_url":"https://api.github.com/repos/rwjblue/Ghost/milestones{/number}","notifications_url":"https://api.github.com/repos/rwjblue/Ghost/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/rwjblue/Ghost/labels{/name}","releases_url":"https://api.github.com/repos/rwjblue/Ghost/releases{/id}","created_at":"2014-04-02T02:17:56Z","updated_at":"2014-07-18T12:44:07Z","pushed_at":"2015-01-01T04:39:07Z","git_url":"git://github.com/rwjblue/Ghost.git","ssh_url":"git@github.com:rwjblue/Ghost.git","clone_url":"https://github.com/rwjblue/Ghost.git","svn_url":"https://github.com/rwjblue/Ghost","homepage":"https://ghost.org","size":15096,"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":"TryGhost:master","ref":"master","sha":"85a34f66c22bbd7496ac4bb70e095a6ac59dbb78","user":{"login":"TryGhost","id":2178663,"avatar_url":"https://avatars.githubusercontent.com/u/2178663?v=3","gravatar_id":"","url":"https://api.github.com/users/TryGhost","html_url":"https://github.com/TryGhost","followers_url":"https://api.github.com/users/TryGhost/followers","following_url":"https://api.github.com/users/TryGhost/following{/other_user}","gists_url":"https://api.github.com/users/TryGhost/gists{/gist_id}","starred_url":"https://api.github.com/users/TryGhost/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TryGhost/subscriptions","organizations_url":"https://api.github.com/users/TryGhost/orgs","repos_url":"https://api.github.com/users/TryGhost/repos","events_url":"https://api.github.com/users/TryGhost/events{/privacy}","received_events_url":"https://api.github.com/users/TryGhost/received_events","type":"Organization","site_admin":false},"repo":{"id":9852918,"name":"Ghost","full_name":"TryGhost/Ghost","owner":{"login":"TryGhost","id":2178663,"avatar_url":"https://avatars.githubusercontent.com/u/2178663?v=3","gravatar_id":"","url":"https://api.github.com/users/TryGhost","html_url":"https://github.com/TryGhost","followers_url":"https://api.github.com/users/TryGhost/followers","following_url":"https://api.github.com/users/TryGhost/following{/other_user}","gists_url":"https://api.github.com/users/TryGhost/gists{/gist_id}","starred_url":"https://api.github.com/users/TryGhost/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TryGhost/subscriptions","organizations_url":"https://api.github.com/users/TryGhost/orgs","repos_url":"https://api.github.com/users/TryGhost/repos","events_url":"https://api.github.com/users/TryGhost/events{/privacy}","received_events_url":"https://api.github.com/users/TryGhost/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/TryGhost/Ghost","description":"Just a blogging platform","fork":false,"url":"https://api.github.com/repos/TryGhost/Ghost","forks_url":"https://api.github.com/repos/TryGhost/Ghost/forks","keys_url":"https://api.github.com/repos/TryGhost/Ghost/keys{/key_id}","collaborators_url":"https://api.github.com/repos/TryGhost/Ghost/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/TryGhost/Ghost/teams","hooks_url":"https://api.github.com/repos/TryGhost/Ghost/hooks","issue_events_url":"https://api.github.com/repos/TryGhost/Ghost/issues/events{/number}","events_url":"https://api.github.com/repos/TryGhost/Ghost/events","assignees_url":"https://api.github.com/repos/TryGhost/Ghost/assignees{/user}","branches_url":"https://api.github.com/repos/TryGhost/Ghost/branches{/branch}","tags_url":"https://api.github.com/repos/TryGhost/Ghost/tags","blobs_url":"https://api.github.com/repos/TryGhost/Ghost/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/TryGhost/Ghost/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/TryGhost/Ghost/git/refs{/sha}","trees_url":"https://api.github.com/repos/TryGhost/Ghost/git/trees{/sha}","statuses_url":"https://api.github.com/repos/TryGhost/Ghost/statuses/{sha}","languages_url":"https://api.github.com/repos/TryGhost/Ghost/languages","stargazers_url":"https://api.github.com/repos/TryGhost/Ghost/stargazers","contributors_url":"https://api.github.com/repos/TryGhost/Ghost/contributors","subscribers_url":"https://api.github.com/repos/TryGhost/Ghost/subscribers","subscription_url":"https://api.github.com/repos/TryGhost/Ghost/subscription","commits_url":"https://api.github.com/repos/TryGhost/Ghost/commits{/sha}","git_commits_url":"https://api.github.com/repos/TryGhost/Ghost/git/commits{/sha}","comments_url":"https://api.github.com/repos/TryGhost/Ghost/comments{/number}","issue_comment_url":"https://api.github.com/repos/TryGhost/Ghost/issues/comments/{number}","contents_url":"https://api.github.com/repos/TryGhost/Ghost/contents/{+path}","compare_url":"https://api.github.com/repos/TryGhost/Ghost/compare/{base}...{head}","merges_url":"https://api.github.com/repos/TryGhost/Ghost/merges","archive_url":"https://api.github.com/repos/TryGhost/Ghost/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/TryGhost/Ghost/downloads","issues_url":"https://api.github.com/repos/TryGhost/Ghost/issues{/number}","pulls_url":"https://api.github.com/repos/TryGhost/Ghost/pulls{/number}","milestones_url":"https://api.github.com/repos/TryGhost/Ghost/milestones{/number}","notifications_url":"https://api.github.com/repos/TryGhost/Ghost/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/TryGhost/Ghost/labels{/name}","releases_url":"https://api.github.com/repos/TryGhost/Ghost/releases{/id}","created_at":"2013-05-04T11:09:13Z","updated_at":"2015-01-01T12:40:31Z","pushed_at":"2015-01-01T15:12:49Z","git_url":"git://github.com/TryGhost/Ghost.git","ssh_url":"git@github.com:TryGhost/Ghost.git","clone_url":"https://github.com/TryGhost/Ghost.git","svn_url":"https://github.com/TryGhost/Ghost","homepage":"https://ghost.org","size":52461,"stargazers_count":13487,"watchers_count":13487,"language":"JavaScript","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":3025,"mirror_url":null,"open_issues_count":216,"forks":3025,"open_issues":216,"watchers":13487,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/TryGhost/Ghost/pulls/4743"},"html":{"href":"https://github.com/TryGhost/Ghost/pull/4743"},"issue":{"href":"https://api.github.com/repos/TryGhost/Ghost/issues/4743"},"comments":{"href":"https://api.github.com/repos/TryGhost/Ghost/issues/4743/comments"},"review_comments":{"href":"https://api.github.com/repos/TryGhost/Ghost/pulls/4743/comments"},"review_comment":{"href":"https://api.github.com/repos/TryGhost/Ghost/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/TryGhost/Ghost/pulls/4743/commits"},"statuses":{"href":"https://api.github.com/repos/TryGhost/Ghost/statuses/b6676b38c733934b635c13bb97f2a6aaa6eb63b2"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"jaswilli","id":214142,"avatar_url":"https://avatars.githubusercontent.com/u/214142?v=3","gravatar_id":"","url":"https://api.github.com/users/jaswilli","html_url":"https://github.com/jaswilli","followers_url":"https://api.github.com/users/jaswilli/followers","following_url":"https://api.github.com/users/jaswilli/following{/other_user}","gists_url":"https://api.github.com/users/jaswilli/gists{/gist_id}","starred_url":"https://api.github.com/users/jaswilli/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jaswilli/subscriptions","organizations_url":"https://api.github.com/users/jaswilli/orgs","repos_url":"https://api.github.com/users/jaswilli/repos","events_url":"https://api.github.com/users/jaswilli/events{/privacy}","received_events_url":"https://api.github.com/users/jaswilli/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":2,"deletions":2,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:12:49Z","org":{"id":2178663,"login":"TryGhost","gravatar_id":"","url":"https://api.github.com/orgs/TryGhost","avatar_url":"https://avatars.githubusercontent.com/u/2178663?"}} +,{"id":"2489656956","type":"PushEvent","actor":{"id":18631,"login":"ngs","gravatar_id":"","url":"https://api.github.com/users/ngs","avatar_url":"https://avatars.githubusercontent.com/u/18631?"},"repo":{"id":18731484,"name":"ngs/ja.ngs.io","url":"https://api.github.com/repos/ngs/ja.ngs.io"},"payload":{"push_id":536866641,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"0e6b53c609dd73d192792ac1c60ca243546b1213","before":"194e371b1babd224d37c21f8520dbc10ae75f4b6","commits":[{"sha":"0e6b53c609dd73d192792ac1c60ca243546b1213","author":{"email":"0a3eeb3184f37f053ff4475377e649d7ab7f2d06@ngs.io","name":"ngs@travis-ci"},"message":"Automated commit at 2015-01-01 15:12:38 UTC by middleman-deploy 0.2.4","distinct":true,"url":"https://api.github.com/repos/ngs/ja.ngs.io/commits/0e6b53c609dd73d192792ac1c60ca243546b1213"}]},"public":true,"created_at":"2015-01-01T15:12:49Z"} +,{"id":"2489656964","type":"ForkEvent","actor":{"id":2672226,"login":"NsLib","gravatar_id":"","url":"https://api.github.com/users/NsLib","avatar_url":"https://avatars.githubusercontent.com/u/2672226?"},"repo":{"id":1117185,"name":"martinezjavier/ldd3","url":"https://api.github.com/repos/martinezjavier/ldd3"},"payload":{"forkee":{"id":28688832,"name":"ldd3","full_name":"NsLib/ldd3","owner":{"login":"NsLib","id":2672226,"avatar_url":"https://avatars.githubusercontent.com/u/2672226?v=3","gravatar_id":"","url":"https://api.github.com/users/NsLib","html_url":"https://github.com/NsLib","followers_url":"https://api.github.com/users/NsLib/followers","following_url":"https://api.github.com/users/NsLib/following{/other_user}","gists_url":"https://api.github.com/users/NsLib/gists{/gist_id}","starred_url":"https://api.github.com/users/NsLib/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/NsLib/subscriptions","organizations_url":"https://api.github.com/users/NsLib/orgs","repos_url":"https://api.github.com/users/NsLib/repos","events_url":"https://api.github.com/users/NsLib/events{/privacy}","received_events_url":"https://api.github.com/users/NsLib/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/NsLib/ldd3","description":"Linux Device Drivers 3 examples updated to work in recent kernels","fork":true,"url":"https://api.github.com/repos/NsLib/ldd3","forks_url":"https://api.github.com/repos/NsLib/ldd3/forks","keys_url":"https://api.github.com/repos/NsLib/ldd3/keys{/key_id}","collaborators_url":"https://api.github.com/repos/NsLib/ldd3/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/NsLib/ldd3/teams","hooks_url":"https://api.github.com/repos/NsLib/ldd3/hooks","issue_events_url":"https://api.github.com/repos/NsLib/ldd3/issues/events{/number}","events_url":"https://api.github.com/repos/NsLib/ldd3/events","assignees_url":"https://api.github.com/repos/NsLib/ldd3/assignees{/user}","branches_url":"https://api.github.com/repos/NsLib/ldd3/branches{/branch}","tags_url":"https://api.github.com/repos/NsLib/ldd3/tags","blobs_url":"https://api.github.com/repos/NsLib/ldd3/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/NsLib/ldd3/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/NsLib/ldd3/git/refs{/sha}","trees_url":"https://api.github.com/repos/NsLib/ldd3/git/trees{/sha}","statuses_url":"https://api.github.com/repos/NsLib/ldd3/statuses/{sha}","languages_url":"https://api.github.com/repos/NsLib/ldd3/languages","stargazers_url":"https://api.github.com/repos/NsLib/ldd3/stargazers","contributors_url":"https://api.github.com/repos/NsLib/ldd3/contributors","subscribers_url":"https://api.github.com/repos/NsLib/ldd3/subscribers","subscription_url":"https://api.github.com/repos/NsLib/ldd3/subscription","commits_url":"https://api.github.com/repos/NsLib/ldd3/commits{/sha}","git_commits_url":"https://api.github.com/repos/NsLib/ldd3/git/commits{/sha}","comments_url":"https://api.github.com/repos/NsLib/ldd3/comments{/number}","issue_comment_url":"https://api.github.com/repos/NsLib/ldd3/issues/comments/{number}","contents_url":"https://api.github.com/repos/NsLib/ldd3/contents/{+path}","compare_url":"https://api.github.com/repos/NsLib/ldd3/compare/{base}...{head}","merges_url":"https://api.github.com/repos/NsLib/ldd3/merges","archive_url":"https://api.github.com/repos/NsLib/ldd3/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/NsLib/ldd3/downloads","issues_url":"https://api.github.com/repos/NsLib/ldd3/issues{/number}","pulls_url":"https://api.github.com/repos/NsLib/ldd3/pulls{/number}","milestones_url":"https://api.github.com/repos/NsLib/ldd3/milestones{/number}","notifications_url":"https://api.github.com/repos/NsLib/ldd3/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/NsLib/ldd3/labels{/name}","releases_url":"https://api.github.com/repos/NsLib/ldd3/releases{/id}","created_at":"2015-01-01T15:12:50Z","updated_at":"2014-12-31T05:41:27Z","pushed_at":"2013-12-23T13:34:48Z","git_url":"git://github.com/NsLib/ldd3.git","ssh_url":"git@github.com:NsLib/ldd3.git","clone_url":"https://github.com/NsLib/ldd3.git","svn_url":"https://github.com/NsLib/ldd3","homepage":"http://examples.oreilly.com/9780596005900/","size":344,"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:12:50Z"} +,{"id":"2489656966","type":"WatchEvent","actor":{"id":4610828,"login":"enixdark","gravatar_id":"","url":"https://api.github.com/users/enixdark","avatar_url":"https://avatars.githubusercontent.com/u/4610828?"},"repo":{"id":9626741,"name":"kayhayen/Nuitka","url":"https://api.github.com/repos/kayhayen/Nuitka"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:12:50Z"} +,{"id":"2489656970","type":"CreateEvent","actor":{"id":1815841,"login":"luckistmaomao","gravatar_id":"","url":"https://api.github.com/users/luckistmaomao","avatar_url":"https://avatars.githubusercontent.com/u/1815841?"},"repo":{"id":28688834,"name":"luckistmaomao/KaggleCTR","url":"https://api.github.com/repos/luckistmaomao/KaggleCTR"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:12:51Z"} +,{"id":"2489656972","type":"PushEvent","actor":{"id":501642,"login":"plouc","gravatar_id":"","url":"https://api.github.com/users/plouc","avatar_url":"https://avatars.githubusercontent.com/u/501642?"},"repo":{"id":28498113,"name":"plouc/mozaik","url":"https://api.github.com/repos/plouc/mozaik"},"payload":{"push_id":536866648,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"faeb8f95a44ad209d8d14c33800507fa2389d85e","before":"fdcccf73eaab198de96b3b032c517b5a276f1e6a","commits":[{"sha":"faeb8f95a44ad209d8d14c33800507fa2389d85e","author":{"email":"7c5a0c567b5584a13fde407456875318a5bec977@gmail.com","name":"Raphaël Benitte"},"message":"Update travis repository component test","distinct":true,"url":"https://api.github.com/repos/plouc/mozaik/commits/faeb8f95a44ad209d8d14c33800507fa2389d85e"}]},"public":true,"created_at":"2015-01-01T15:12:51Z"} +,{"id":"2489656971","type":"PushEvent","actor":{"id":214142,"login":"jaswilli","gravatar_id":"","url":"https://api.github.com/users/jaswilli","avatar_url":"https://avatars.githubusercontent.com/u/214142?"},"repo":{"id":9852918,"name":"TryGhost/Ghost","url":"https://api.github.com/repos/TryGhost/Ghost"},"payload":{"push_id":536866647,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"959ebfcad7024c0cc3a5e4825b44af156afdd04d","before":"85a34f66c22bbd7496ac4bb70e095a6ac59dbb78","commits":[{"sha":"b6676b38c733934b635c13bb97f2a6aaa6eb63b2","author":{"email":"4737d94bfb8b7940843864fc531cf5f068ebec04@me.com","name":"Robert Jackson"},"message":"Do not use static and {{bind-attr}} for the same attribute.\n\nNo issue.","distinct":true,"url":"https://api.github.com/repos/TryGhost/Ghost/commits/b6676b38c733934b635c13bb97f2a6aaa6eb63b2"},{"sha":"959ebfcad7024c0cc3a5e4825b44af156afdd04d","author":{"email":"246f46d9ca7d56eb127b14ff8520979b29a3a6ca@users.noreply.github.com","name":"Jason Williams"},"message":"Merge pull request #4743 from rwjblue/remove-double-class-assignment\n\nDo not use static and {{bind-attr}} for the same attribute.","distinct":true,"url":"https://api.github.com/repos/TryGhost/Ghost/commits/959ebfcad7024c0cc3a5e4825b44af156afdd04d"}]},"public":true,"created_at":"2015-01-01T15:12:51Z","org":{"id":2178663,"login":"TryGhost","gravatar_id":"","url":"https://api.github.com/orgs/TryGhost","avatar_url":"https://avatars.githubusercontent.com/u/2178663?"}} +,{"id":"2489656973","type":"WatchEvent","actor":{"id":831962,"login":"bgruszka","gravatar_id":"","url":"https://api.github.com/users/bgruszka","avatar_url":"https://avatars.githubusercontent.com/u/831962?"},"repo":{"id":4507612,"name":"ddeboer/vatin","url":"https://api.github.com/repos/ddeboer/vatin"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:12:51Z"} +,{"id":"2489656974","type":"PushEvent","actor":{"id":3894084,"login":"TommyByrne","gravatar_id":"","url":"https://api.github.com/users/TommyByrne","avatar_url":"https://avatars.githubusercontent.com/u/3894084?"},"repo":{"id":28493043,"name":"TommyByrne/bloccit","url":"https://api.github.com/repos/TommyByrne/bloccit"},"payload":{"push_id":536866649,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2edf71d89510ca41a84979c083eca91033b3abec","before":"14342b41a88666cfc025e8f07d9632199d2c4400","commits":[{"sha":"2edf71d89510ca41a84979c083eca91033b3abec","author":{"email":"4e3169447bfaa3d1782a9b5d1d1b35cf8fbfd941@gmail.com","name":"tommybyrne"},"message":"Added Pundit gem for authorization","distinct":true,"url":"https://api.github.com/repos/TommyByrne/bloccit/commits/2edf71d89510ca41a84979c083eca91033b3abec"}]},"public":true,"created_at":"2015-01-01T15:12:51Z"} +,{"id":"2489656975","type":"PushEvent","actor":{"id":10364721,"login":"mahir163","gravatar_id":"","url":"https://api.github.com/users/mahir163","avatar_url":"https://avatars.githubusercontent.com/u/10364721?"},"repo":{"id":28688581,"name":"mahir163/technion_events","url":"https://api.github.com/repos/mahir163/technion_events"},"payload":{"push_id":536866650,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a12f750fbd7a693b50560a1a130bf647a2a3db1d","before":"77069d1abf6b31c64a044555b695cb09e82c2135","commits":[{"sha":"a12f750fbd7a693b50560a1a130bf647a2a3db1d","author":{"email":"44a3eec525bbe9d27bc07ca7a107d92518b2d837@users.noreply.github.com","name":"mahir163"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/mahir163/technion_events/commits/a12f750fbd7a693b50560a1a130bf647a2a3db1d"}]},"public":true,"created_at":"2015-01-01T15:12:51Z"} +,{"id":"2489656978","type":"CreateEvent","actor":{"id":2595532,"login":"clockfly","gravatar_id":"","url":"https://api.github.com/users/clockfly","avatar_url":"https://avatars.githubusercontent.com/u/2595532?"},"repo":{"id":23338500,"name":"clockfly/gearpump","url":"https://api.github.com/repos/clockfly/gearpump"},"payload":{"ref":"fix_sbt_package","ref_type":"branch","master_branch":"master","description":"gearpump","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:12:51Z"} +,{"id":"2489656979","type":"PushEvent","actor":{"id":5459062,"login":"kgoderis","gravatar_id":"","url":"https://api.github.com/users/kgoderis","avatar_url":"https://avatars.githubusercontent.com/u/5459062?"},"repo":{"id":23461615,"name":"kgoderis/openhab2","url":"https://api.github.com/repos/kgoderis/openhab2"},"payload":{"push_id":536866651,"size":1,"distinct_size":1,"ref":"refs/heads/knx","head":"3f1c0a4932e3ecae33e3cdfb0583030d82e07b74","before":"65f8b447e488953290c97834b8398b0f2553abf7","commits":[{"sha":"3f1c0a4932e3ecae33e3cdfb0583030d82e07b74","author":{"email":"8d6bef0d550bb9c83ed1a7381d474863f3994806@me.com","name":"Karel Goderis"},"message":"KNX : Add Rollershutter item support\n\n\nSigned-off-by: Karel Goderis ","distinct":true,"url":"https://api.github.com/repos/kgoderis/openhab2/commits/3f1c0a4932e3ecae33e3cdfb0583030d82e07b74"}]},"public":true,"created_at":"2015-01-01T15:12:51Z"} +,{"id":"2489656980","type":"PushEvent","actor":{"id":5930351,"login":"vkbansal","gravatar_id":"","url":"https://api.github.com/users/vkbansal","avatar_url":"https://avatars.githubusercontent.com/u/5930351?"},"repo":{"id":24586890,"name":"vkbansal/prism.php","url":"https://api.github.com/repos/vkbansal/prism.php"},"payload":{"push_id":536866652,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"85938c44ef4e5e8eeffcb6dee9c5763e8063a549","before":"142371fc620e6874f0bde83a2581a980d6bb931e","commits":[{"sha":"85938c44ef4e5e8eeffcb6dee9c5763e8063a549","author":{"email":"91302f41fb09cacb10697552b34e1eb4de70c9ee@gmail.com","name":"Vivek Kumar Bansal"},"message":"Update docs","distinct":true,"url":"https://api.github.com/repos/vkbansal/prism.php/commits/85938c44ef4e5e8eeffcb6dee9c5763e8063a549"}]},"public":true,"created_at":"2015-01-01T15:12:52Z"} +,{"id":"2489656981","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":536866654,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4acbcf0f70182bbe3df7f1fc411648c0fba39b4d","before":"6e280f6b6e45eb19af38b07b17dd9b7f97ff87ad","commits":[{"sha":"4acbcf0f70182bbe3df7f1fc411648c0fba39b4d","author":{"email":"9576f8760ba70773cbd6b2f7999c3b70fa9040cb@gmail.com","name":"Aleksandar Dezelin"},"message":"Added Travis build status image.","distinct":true,"url":"https://api.github.com/repos/dezelin/Timetable/commits/4acbcf0f70182bbe3df7f1fc411648c0fba39b4d"}]},"public":true,"created_at":"2015-01-01T15:12:52Z"} +,{"id":"2489656983","type":"PushEvent","actor":{"id":10322234,"login":"gerigjylbegu","gravatar_id":"","url":"https://api.github.com/users/gerigjylbegu","avatar_url":"https://avatars.githubusercontent.com/u/10322234?"},"repo":{"id":28596491,"name":"gerigjylbegu/Blog","url":"https://api.github.com/repos/gerigjylbegu/Blog"},"payload":{"push_id":536866655,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"fad973fe1ade768d1704efed7707dd5e0bf0be1a","before":"b434bee1aee36c82ef9dc63c0251968983628626","commits":[{"sha":"fad973fe1ade768d1704efed7707dd5e0bf0be1a","author":{"email":"5d364efc371fe3cf76badc72842740c09acb86f6@gmail.com","name":"gerigjylbegu"},"message":"Update 2014-12-31-linuxmint.md","distinct":true,"url":"https://api.github.com/repos/gerigjylbegu/Blog/commits/fad973fe1ade768d1704efed7707dd5e0bf0be1a"}]},"public":true,"created_at":"2015-01-01T15:12:52Z"} +,{"id":"2489656987","type":"WatchEvent","actor":{"id":5051197,"login":"fuycadw","gravatar_id":"","url":"https://api.github.com/users/fuycadw","avatar_url":"https://avatars.githubusercontent.com/u/5051197?"},"repo":{"id":16717141,"name":"crosslife/OpenBird","url":"https://api.github.com/repos/crosslife/OpenBird"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:12:53Z"} +,{"id":"2489656993","type":"PullRequestEvent","actor":{"id":9759756,"login":"kcovecarl","gravatar_id":"","url":"https://api.github.com/users/kcovecarl","avatar_url":"https://avatars.githubusercontent.com/u/9759756?"},"repo":{"id":26650913,"name":"Kindnesscove/kindnesscove","url":"https://api.github.com/repos/Kindnesscove/kindnesscove"},"payload":{"action":"opened","number":78,"pull_request":{"url":"https://api.github.com/repos/Kindnesscove/kindnesscove/pulls/78","id":26743868,"html_url":"https://github.com/Kindnesscove/kindnesscove/pull/78","diff_url":"https://github.com/Kindnesscove/kindnesscove/pull/78.diff","patch_url":"https://github.com/Kindnesscove/kindnesscove/pull/78.patch","issue_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/issues/78","number":78,"state":"open","locked":false,"title":"Issue 67: Revised page design","user":{"login":"kcovecarl","id":9759756,"avatar_url":"https://avatars.githubusercontent.com/u/9759756?v=3","gravatar_id":"","url":"https://api.github.com/users/kcovecarl","html_url":"https://github.com/kcovecarl","followers_url":"https://api.github.com/users/kcovecarl/followers","following_url":"https://api.github.com/users/kcovecarl/following{/other_user}","gists_url":"https://api.github.com/users/kcovecarl/gists{/gist_id}","starred_url":"https://api.github.com/users/kcovecarl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kcovecarl/subscriptions","organizations_url":"https://api.github.com/users/kcovecarl/orgs","repos_url":"https://api.github.com/users/kcovecarl/repos","events_url":"https://api.github.com/users/kcovecarl/events{/privacy}","received_events_url":"https://api.github.com/users/kcovecarl/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:12:53Z","updated_at":"2015-01-01T15:12:53Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/pulls/78/commits","review_comments_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/pulls/78/comments","review_comment_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/pulls/comments/{number}","comments_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/issues/78/comments","statuses_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/statuses/bb3dbf0ffab051d20b77616680075ec7fc552f44","head":{"label":"Kindnesscove:issue-67","ref":"issue-67","sha":"bb3dbf0ffab051d20b77616680075ec7fc552f44","user":{"login":"Kindnesscove","id":9749927,"avatar_url":"https://avatars.githubusercontent.com/u/9749927?v=3","gravatar_id":"","url":"https://api.github.com/users/Kindnesscove","html_url":"https://github.com/Kindnesscove","followers_url":"https://api.github.com/users/Kindnesscove/followers","following_url":"https://api.github.com/users/Kindnesscove/following{/other_user}","gists_url":"https://api.github.com/users/Kindnesscove/gists{/gist_id}","starred_url":"https://api.github.com/users/Kindnesscove/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kindnesscove/subscriptions","organizations_url":"https://api.github.com/users/Kindnesscove/orgs","repos_url":"https://api.github.com/users/Kindnesscove/repos","events_url":"https://api.github.com/users/Kindnesscove/events{/privacy}","received_events_url":"https://api.github.com/users/Kindnesscove/received_events","type":"Organization","site_admin":false},"repo":{"id":26650913,"name":"kindnesscove","full_name":"Kindnesscove/kindnesscove","owner":{"login":"Kindnesscove","id":9749927,"avatar_url":"https://avatars.githubusercontent.com/u/9749927?v=3","gravatar_id":"","url":"https://api.github.com/users/Kindnesscove","html_url":"https://github.com/Kindnesscove","followers_url":"https://api.github.com/users/Kindnesscove/followers","following_url":"https://api.github.com/users/Kindnesscove/following{/other_user}","gists_url":"https://api.github.com/users/Kindnesscove/gists{/gist_id}","starred_url":"https://api.github.com/users/Kindnesscove/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kindnesscove/subscriptions","organizations_url":"https://api.github.com/users/Kindnesscove/orgs","repos_url":"https://api.github.com/users/Kindnesscove/repos","events_url":"https://api.github.com/users/Kindnesscove/events{/privacy}","received_events_url":"https://api.github.com/users/Kindnesscove/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/Kindnesscove/kindnesscove","description":"KindnessCove","fork":false,"url":"https://api.github.com/repos/Kindnesscove/kindnesscove","forks_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/forks","keys_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/teams","hooks_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/hooks","issue_events_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/issues/events{/number}","events_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/events","assignees_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/assignees{/user}","branches_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/branches{/branch}","tags_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/tags","blobs_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/git/refs{/sha}","trees_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/statuses/{sha}","languages_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/languages","stargazers_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/stargazers","contributors_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/contributors","subscribers_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/subscribers","subscription_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/subscription","commits_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/commits{/sha}","git_commits_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/git/commits{/sha}","comments_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/comments{/number}","issue_comment_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/issues/comments/{number}","contents_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/contents/{+path}","compare_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/merges","archive_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/downloads","issues_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/issues{/number}","pulls_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/pulls{/number}","milestones_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/milestones{/number}","notifications_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/labels{/name}","releases_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/releases{/id}","created_at":"2014-11-14T18:05:17Z","updated_at":"2015-01-01T11:31:26Z","pushed_at":"2015-01-01T15:12:27Z","git_url":"git://github.com/Kindnesscove/kindnesscove.git","ssh_url":"git@github.com:Kindnesscove/kindnesscove.git","clone_url":"https://github.com/Kindnesscove/kindnesscove.git","svn_url":"https://github.com/Kindnesscove/kindnesscove","homepage":"http://www.kindnesscove.com","size":21232,"stargazers_count":0,"watchers_count":0,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":13,"forks":0,"open_issues":13,"watchers":0,"default_branch":"dev"}},"base":{"label":"Kindnesscove:dev","ref":"dev","sha":"d98a4a4b74229ce5b425223555aa98e65778849d","user":{"login":"Kindnesscove","id":9749927,"avatar_url":"https://avatars.githubusercontent.com/u/9749927?v=3","gravatar_id":"","url":"https://api.github.com/users/Kindnesscove","html_url":"https://github.com/Kindnesscove","followers_url":"https://api.github.com/users/Kindnesscove/followers","following_url":"https://api.github.com/users/Kindnesscove/following{/other_user}","gists_url":"https://api.github.com/users/Kindnesscove/gists{/gist_id}","starred_url":"https://api.github.com/users/Kindnesscove/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kindnesscove/subscriptions","organizations_url":"https://api.github.com/users/Kindnesscove/orgs","repos_url":"https://api.github.com/users/Kindnesscove/repos","events_url":"https://api.github.com/users/Kindnesscove/events{/privacy}","received_events_url":"https://api.github.com/users/Kindnesscove/received_events","type":"Organization","site_admin":false},"repo":{"id":26650913,"name":"kindnesscove","full_name":"Kindnesscove/kindnesscove","owner":{"login":"Kindnesscove","id":9749927,"avatar_url":"https://avatars.githubusercontent.com/u/9749927?v=3","gravatar_id":"","url":"https://api.github.com/users/Kindnesscove","html_url":"https://github.com/Kindnesscove","followers_url":"https://api.github.com/users/Kindnesscove/followers","following_url":"https://api.github.com/users/Kindnesscove/following{/other_user}","gists_url":"https://api.github.com/users/Kindnesscove/gists{/gist_id}","starred_url":"https://api.github.com/users/Kindnesscove/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kindnesscove/subscriptions","organizations_url":"https://api.github.com/users/Kindnesscove/orgs","repos_url":"https://api.github.com/users/Kindnesscove/repos","events_url":"https://api.github.com/users/Kindnesscove/events{/privacy}","received_events_url":"https://api.github.com/users/Kindnesscove/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/Kindnesscove/kindnesscove","description":"KindnessCove","fork":false,"url":"https://api.github.com/repos/Kindnesscove/kindnesscove","forks_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/forks","keys_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/teams","hooks_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/hooks","issue_events_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/issues/events{/number}","events_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/events","assignees_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/assignees{/user}","branches_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/branches{/branch}","tags_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/tags","blobs_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/git/refs{/sha}","trees_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/statuses/{sha}","languages_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/languages","stargazers_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/stargazers","contributors_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/contributors","subscribers_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/subscribers","subscription_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/subscription","commits_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/commits{/sha}","git_commits_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/git/commits{/sha}","comments_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/comments{/number}","issue_comment_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/issues/comments/{number}","contents_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/contents/{+path}","compare_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/merges","archive_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/downloads","issues_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/issues{/number}","pulls_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/pulls{/number}","milestones_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/milestones{/number}","notifications_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/labels{/name}","releases_url":"https://api.github.com/repos/Kindnesscove/kindnesscove/releases{/id}","created_at":"2014-11-14T18:05:17Z","updated_at":"2015-01-01T11:31:26Z","pushed_at":"2015-01-01T15:12:27Z","git_url":"git://github.com/Kindnesscove/kindnesscove.git","ssh_url":"git@github.com:Kindnesscove/kindnesscove.git","clone_url":"https://github.com/Kindnesscove/kindnesscove.git","svn_url":"https://github.com/Kindnesscove/kindnesscove","homepage":"http://www.kindnesscove.com","size":21232,"stargazers_count":0,"watchers_count":0,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":13,"forks":0,"open_issues":13,"watchers":0,"default_branch":"dev"}},"_links":{"self":{"href":"https://api.github.com/repos/Kindnesscove/kindnesscove/pulls/78"},"html":{"href":"https://github.com/Kindnesscove/kindnesscove/pull/78"},"issue":{"href":"https://api.github.com/repos/Kindnesscove/kindnesscove/issues/78"},"comments":{"href":"https://api.github.com/repos/Kindnesscove/kindnesscove/issues/78/comments"},"review_comments":{"href":"https://api.github.com/repos/Kindnesscove/kindnesscove/pulls/78/comments"},"review_comment":{"href":"https://api.github.com/repos/Kindnesscove/kindnesscove/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/Kindnesscove/kindnesscove/pulls/78/commits"},"statuses":{"href":"https://api.github.com/repos/Kindnesscove/kindnesscove/statuses/bb3dbf0ffab051d20b77616680075ec7fc552f44"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":48,"additions":1858,"deletions":636,"changed_files":34}},"public":true,"created_at":"2015-01-01T15:12:53Z","org":{"id":9749927,"login":"Kindnesscove","gravatar_id":"","url":"https://api.github.com/orgs/Kindnesscove","avatar_url":"https://avatars.githubusercontent.com/u/9749927?"}} +,{"id":"2489656995","type":"PushEvent","actor":{"id":5556420,"login":"llmmtt","gravatar_id":"","url":"https://api.github.com/users/llmmtt","avatar_url":"https://avatars.githubusercontent.com/u/5556420?"},"repo":{"id":28687533,"name":"llmmtt/llmmtt.github.io","url":"https://api.github.com/repos/llmmtt/llmmtt.github.io"},"payload":{"push_id":536866659,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b941231c5c5c4d42c19214901463179d3e588ffd","before":"57efde2defe7678fbe89243ed91d9ca73bdd96a6","commits":[{"sha":"b941231c5c5c4d42c19214901463179d3e588ffd","author":{"email":"604e6024c3d24b2994e0b5745dce85deefd3bd2d@vip.qq.com","name":"llmmtt"},"message":"2015 01 01","distinct":true,"url":"https://api.github.com/repos/llmmtt/llmmtt.github.io/commits/b941231c5c5c4d42c19214901463179d3e588ffd"}]},"public":true,"created_at":"2015-01-01T15:12:53Z"} +,{"id":"2489656996","type":"PushEvent","actor":{"id":718983,"login":"mhyfritz","gravatar_id":"","url":"https://api.github.com/users/mhyfritz","avatar_url":"https://avatars.githubusercontent.com/u/718983?"},"repo":{"id":27045536,"name":"mhyfritz/goontools","url":"https://api.github.com/repos/mhyfritz/goontools"},"payload":{"push_id":536866660,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1fa0415ac3fdbb19f4846f9f684419140e152334","before":"ee5888fc55c83b9e1b92fedd4c4c8d64931c0ba9","commits":[{"sha":"1fa0415ac3fdbb19f4846f9f684419140e152334","author":{"email":"92e30aa2dcbfdfbee1d86c37a05f0abd25e11e3e@gmail.com","name":"Markus Hsi-Yang Fritz"},"message":"Usage cosmetics","distinct":true,"url":"https://api.github.com/repos/mhyfritz/goontools/commits/1fa0415ac3fdbb19f4846f9f684419140e152334"}]},"public":true,"created_at":"2015-01-01T15:12:54Z"} +,{"id":"2489656997","type":"CreateEvent","actor":{"id":10364419,"login":"tinuxin","gravatar_id":"","url":"https://api.github.com/users/tinuxin","avatar_url":"https://avatars.githubusercontent.com/u/10364419?"},"repo":{"id":28688836,"name":"tinuxin/Whist","url":"https://api.github.com/repos/tinuxin/Whist"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:12:55Z"} +,{"id":"2489656998","type":"CreateEvent","actor":{"id":10364785,"login":"sepidnam","gravatar_id":"","url":"https://api.github.com/users/sepidnam","avatar_url":"https://avatars.githubusercontent.com/u/10364785?"},"repo":{"id":28688837,"name":"sepidnam/hello-world","url":"https://api.github.com/repos/sepidnam/hello-world"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Hello World","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:12:55Z"} +,{"id":"2489657000","type":"WatchEvent","actor":{"id":401263,"login":"simplyianm","gravatar_id":"","url":"https://api.github.com/users/simplyianm","avatar_url":"https://avatars.githubusercontent.com/u/401263?"},"repo":{"id":2160835,"name":"paularmstrong/swig","url":"https://api.github.com/repos/paularmstrong/swig"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:12:55Z"} +,{"id":"2489657001","type":"IssuesEvent","actor":{"id":5632357,"login":"markuskiller","gravatar_id":"","url":"https://api.github.com/users/markuskiller","avatar_url":"https://avatars.githubusercontent.com/u/5632357?"},"repo":{"id":21608591,"name":"markuskiller/textblob-de","url":"https://api.github.com/repos/markuskiller/textblob-de"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/markuskiller/textblob-de/issues/10","labels_url":"https://api.github.com/repos/markuskiller/textblob-de/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/markuskiller/textblob-de/issues/10/comments","events_url":"https://api.github.com/repos/markuskiller/textblob-de/issues/10/events","html_url":"https://github.com/markuskiller/textblob-de/issues/10","id":53221596,"number":10,"title":"pip install fails with latest setuptools version","user":{"login":"markuskiller","id":5632357,"avatar_url":"https://avatars.githubusercontent.com/u/5632357?v=3","gravatar_id":"","url":"https://api.github.com/users/markuskiller","html_url":"https://github.com/markuskiller","followers_url":"https://api.github.com/users/markuskiller/followers","following_url":"https://api.github.com/users/markuskiller/following{/other_user}","gists_url":"https://api.github.com/users/markuskiller/gists{/gist_id}","starred_url":"https://api.github.com/users/markuskiller/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/markuskiller/subscriptions","organizations_url":"https://api.github.com/users/markuskiller/orgs","repos_url":"https://api.github.com/users/markuskiller/repos","events_url":"https://api.github.com/users/markuskiller/events{/privacy}","received_events_url":"https://api.github.com/users/markuskiller/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:12:55Z","updated_at":"2015-01-01T15:12:55Z","closed_at":null,"body":"See https://github.com/sloria/TextBlob/issues/75 for temporary workaround."}},"public":true,"created_at":"2015-01-01T15:12:55Z"} +,{"id":"2489657012","type":"PushEvent","actor":{"id":7666055,"login":"sivir","gravatar_id":"","url":"https://api.github.com/users/sivir","avatar_url":"https://avatars.githubusercontent.com/u/7666055?"},"repo":{"id":27804731,"name":"sivir/baikal1","url":"https://api.github.com/repos/sivir/baikal1"},"payload":{"push_id":536866663,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0e6ad312b06237501d4816b31e1a67bd60bedb57","before":"5b4ca64525c3b7182658381520cf13e83c086f5a","commits":[{"sha":"0e6ad312b06237501d4816b31e1a67bd60bedb57","author":{"email":"1e2053d8b74af812877a9ba6f0caba8976b70fc7@gmail.com","name":"Egor Potiomkin"},"message":"music","distinct":true,"url":"https://api.github.com/repos/sivir/baikal1/commits/0e6ad312b06237501d4816b31e1a67bd60bedb57"}]},"public":true,"created_at":"2015-01-01T15:12:55Z"} +,{"id":"2489657032","type":"PushEvent","actor":{"id":4627837,"login":"jessemillar","gravatar_id":"","url":"https://api.github.com/users/jessemillar","avatar_url":"https://avatars.githubusercontent.com/u/4627837?"},"repo":{"id":26087395,"name":"jessemillar/Jean-Grey","url":"https://api.github.com/repos/jessemillar/Jean-Grey"},"payload":{"push_id":536866664,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"65b84bf429f0a70859d59d2f36edde59d435400a","before":"3e31db2debeadbfbf1e7a6cfc3311272d47b682a","commits":[{"sha":"65b84bf429f0a70859d59d2f36edde59d435400a","author":{"email":"0ba40b71986250aad0903c7ebcfd76a410af35fb@gmail.com","name":"Jesse Millar"},"message":"Update LICENSE.md","distinct":true,"url":"https://api.github.com/repos/jessemillar/Jean-Grey/commits/65b84bf429f0a70859d59d2f36edde59d435400a"}]},"public":true,"created_at":"2015-01-01T15:12:56Z"} +,{"id":"2489657040","type":"IssueCommentEvent","actor":{"id":1715206,"login":"MatthewVita","gravatar_id":"","url":"https://api.github.com/users/MatthewVita","avatar_url":"https://avatars.githubusercontent.com/u/1715206?"},"repo":{"id":25013482,"name":"RupertJS/rupert-grunt","url":"https://api.github.com/repos/RupertJS/rupert-grunt"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/RupertJS/rupert-grunt/issues/3","labels_url":"https://api.github.com/repos/RupertJS/rupert-grunt/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/RupertJS/rupert-grunt/issues/3/comments","events_url":"https://api.github.com/repos/RupertJS/rupert-grunt/issues/3/events","html_url":"https://github.com/RupertJS/rupert-grunt/issues/3","id":53211488,"number":3,"title":"Dependency Issue on NPM Init","user":{"login":"MatthewVita","id":1715206,"avatar_url":"https://avatars.githubusercontent.com/u/1715206?v=3","gravatar_id":"","url":"https://api.github.com/users/MatthewVita","html_url":"https://github.com/MatthewVita","followers_url":"https://api.github.com/users/MatthewVita/followers","following_url":"https://api.github.com/users/MatthewVita/following{/other_user}","gists_url":"https://api.github.com/users/MatthewVita/gists{/gist_id}","starred_url":"https://api.github.com/users/MatthewVita/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MatthewVita/subscriptions","organizations_url":"https://api.github.com/users/MatthewVita/orgs","repos_url":"https://api.github.com/users/MatthewVita/repos","events_url":"https://api.github.com/users/MatthewVita/events{/privacy}","received_events_url":"https://api.github.com/users/MatthewVita/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2015-01-01T02:28:07Z","updated_at":"2015-01-01T15:12:56Z","closed_at":null,"body":"David,\r\n\r\nnpm init has following deps:\r\n```\r\n \"dependencies\": {\r\n \"rupert\": \"^0.2.6\",\r\n \"rupert-config-angular\": \"^0.0.5\",\r\n \"rupert-config-bootstrap\": \"^0.0.2\"\r\n },\r\n```\r\n...should we treat the base project as vanilla js?"},"comment":{"url":"https://api.github.com/repos/RupertJS/rupert-grunt/issues/comments/68488760","html_url":"https://github.com/RupertJS/rupert-grunt/issues/3#issuecomment-68488760","issue_url":"https://api.github.com/repos/RupertJS/rupert-grunt/issues/3","id":68488760,"user":{"login":"MatthewVita","id":1715206,"avatar_url":"https://avatars.githubusercontent.com/u/1715206?v=3","gravatar_id":"","url":"https://api.github.com/users/MatthewVita","html_url":"https://github.com/MatthewVita","followers_url":"https://api.github.com/users/MatthewVita/followers","following_url":"https://api.github.com/users/MatthewVita/following{/other_user}","gists_url":"https://api.github.com/users/MatthewVita/gists{/gist_id}","starred_url":"https://api.github.com/users/MatthewVita/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MatthewVita/subscriptions","organizations_url":"https://api.github.com/users/MatthewVita/orgs","repos_url":"https://api.github.com/users/MatthewVita/repos","events_url":"https://api.github.com/users/MatthewVita/events{/privacy}","received_events_url":"https://api.github.com/users/MatthewVita/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:12:56Z","updated_at":"2015-01-01T15:12:56Z","body":"The sample app"}},"public":true,"created_at":"2015-01-01T15:12:56Z","org":{"id":9514323,"login":"RupertJS","gravatar_id":"","url":"https://api.github.com/orgs/RupertJS","avatar_url":"https://avatars.githubusercontent.com/u/9514323?"}} +,{"id":"2489657066","type":"PushEvent","actor":{"id":9267769,"login":"stazos","gravatar_id":"","url":"https://api.github.com/users/stazos","avatar_url":"https://avatars.githubusercontent.com/u/9267769?"},"repo":{"id":27874370,"name":"stazos/JWeb","url":"https://api.github.com/repos/stazos/JWeb"},"payload":{"push_id":536866665,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"48bf837296a59b8eacfed936f2e9a2cb4abde6de","before":"cc9e0d9f231bb58d7b5ba36d120658595402a1f5","commits":[{"sha":"48bf837296a59b8eacfed936f2e9a2cb4abde6de","author":{"email":"76e77168f100e92ad34f73535fca1f04f3fd4505@gmail.com","name":"Mathieu VESY"},"message":"ajout image","distinct":true,"url":"https://api.github.com/repos/stazos/JWeb/commits/48bf837296a59b8eacfed936f2e9a2cb4abde6de"}]},"public":true,"created_at":"2015-01-01T15:12:56Z"} +,{"id":"2489657074","type":"CreateEvent","actor":{"id":10364715,"login":"yousom","gravatar_id":"","url":"https://api.github.com/users/yousom","avatar_url":"https://avatars.githubusercontent.com/u/10364715?"},"repo":{"id":28688838,"name":"yousom/test1","url":"https://api.github.com/repos/yousom/test1"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"This is a test","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:12:58Z"} +,{"id":"2489657075","type":"PushEvent","actor":{"id":10296351,"login":"Ruiqi-Alipay","gravatar_id":"","url":"https://api.github.com/users/Ruiqi-Alipay","avatar_url":"https://avatars.githubusercontent.com/u/10296351?"},"repo":{"id":28634416,"name":"Ruiqi-Alipay/AutoTest","url":"https://api.github.com/repos/Ruiqi-Alipay/AutoTest"},"payload":{"push_id":536866669,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d3492889b6efdc5ecf6264fd9133aebbbd1f6b25","before":"740696dd586b28038ef1970cd8402c5a2eef302c","commits":[{"sha":"d3492889b6efdc5ecf6264fd9133aebbbd1f6b25","author":{"email":"7247bdeec529798228c4f82fa55b80c4aa7afe40@gmail.com","name":"Ruiqi-Alipay"},"message":"Developing: added mongo db","distinct":true,"url":"https://api.github.com/repos/Ruiqi-Alipay/AutoTest/commits/d3492889b6efdc5ecf6264fd9133aebbbd1f6b25"}]},"public":true,"created_at":"2015-01-01T15:12:58Z"} +,{"id":"2489657076","type":"IssueCommentEvent","actor":{"id":37787,"login":"daleharvey","gravatar_id":"","url":"https://api.github.com/users/daleharvey","avatar_url":"https://avatars.githubusercontent.com/u/37787?"},"repo":{"id":714074,"name":"pouchdb/pouchdb","url":"https://api.github.com/repos/pouchdb/pouchdb"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3307","labels_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3307/labels{/name}","comments_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3307/comments","events_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3307/events","html_url":"https://github.com/pouchdb/pouchdb/pull/3307","id":53115620,"number":3307,"title":"(#136) - Skip update_seq assertions in replication tests","user":{"login":"willholley","id":97787,"avatar_url":"https://avatars.githubusercontent.com/u/97787?v=3","gravatar_id":"","url":"https://api.github.com/users/willholley","html_url":"https://github.com/willholley","followers_url":"https://api.github.com/users/willholley/followers","following_url":"https://api.github.com/users/willholley/following{/other_user}","gists_url":"https://api.github.com/users/willholley/gists{/gist_id}","starred_url":"https://api.github.com/users/willholley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/willholley/subscriptions","organizations_url":"https://api.github.com/users/willholley/orgs","repos_url":"https://api.github.com/users/willholley/repos","events_url":"https://api.github.com/users/willholley/events{/privacy}","received_events_url":"https://api.github.com/users/willholley/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-30T13:31:26Z","updated_at":"2015-01-01T15:12:57Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3307","html_url":"https://github.com/pouchdb/pouchdb/pull/3307","diff_url":"https://github.com/pouchdb/pouchdb/pull/3307.diff","patch_url":"https://github.com/pouchdb/pouchdb/pull/3307.patch"},"body":"When testing against CouchDB 2.0, we cannot assume that the sequence number will be updated incrementally - skip the assertion.\r\n\r\nThis PR adds a helper function to consolidate the assertions against update_seq. In the helper, we skip the assertion if running against CouchDB master."},"comment":{"url":"https://api.github.com/repos/pouchdb/pouchdb/issues/comments/68488761","html_url":"https://github.com/pouchdb/pouchdb/pull/3307#issuecomment-68488761","issue_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3307","id":68488761,"user":{"login":"daleharvey","id":37787,"avatar_url":"https://avatars.githubusercontent.com/u/37787?v=3","gravatar_id":"","url":"https://api.github.com/users/daleharvey","html_url":"https://github.com/daleharvey","followers_url":"https://api.github.com/users/daleharvey/followers","following_url":"https://api.github.com/users/daleharvey/following{/other_user}","gists_url":"https://api.github.com/users/daleharvey/gists{/gist_id}","starred_url":"https://api.github.com/users/daleharvey/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/daleharvey/subscriptions","organizations_url":"https://api.github.com/users/daleharvey/orgs","repos_url":"https://api.github.com/users/daleharvey/repos","events_url":"https://api.github.com/users/daleharvey/events{/privacy}","received_events_url":"https://api.github.com/users/daleharvey/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:12:57Z","updated_at":"2015-01-01T15:12:57Z","body":"+1, but could you rebase and get a green run before merging please, thanks"}},"public":true,"created_at":"2015-01-01T15:12:58Z","org":{"id":3406112,"login":"pouchdb","gravatar_id":"","url":"https://api.github.com/orgs/pouchdb","avatar_url":"https://avatars.githubusercontent.com/u/3406112?"}} +,{"id":"2489657078","type":"WatchEvent","actor":{"id":370121,"login":"rsrose21","gravatar_id":"","url":"https://api.github.com/users/rsrose21","avatar_url":"https://avatars.githubusercontent.com/u/370121?"},"repo":{"id":9135204,"name":"djfarrelly/MailDev","url":"https://api.github.com/repos/djfarrelly/MailDev"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:12:58Z"} +,{"id":"2489657081","type":"CreateEvent","actor":{"id":1303626,"login":"lunarok","gravatar_id":"","url":"https://api.github.com/users/lunarok","avatar_url":"https://avatars.githubusercontent.com/u/1303626?"},"repo":{"id":28688793,"name":"lunarok/jeedom_hijrah","url":"https://api.github.com/repos/lunarok/jeedom_hijrah"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"jeedom_hijrah","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:12:58Z"} +,{"id":"2489657083","type":"PushEvent","actor":{"id":1475489,"login":"moldcraft","gravatar_id":"","url":"https://api.github.com/users/moldcraft","avatar_url":"https://avatars.githubusercontent.com/u/1475489?"},"repo":{"id":19216484,"name":"moldcraft/NotificationsBundle","url":"https://api.github.com/repos/moldcraft/NotificationsBundle"},"payload":{"push_id":536866672,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"038a9a4129261791336708ecf95e38b2b232eff6","before":"bc579d0ca20427925e92d8b7f6ee3a5589c85b04","commits":[{"sha":"038a9a4129261791336708ecf95e38b2b232eff6","author":{"email":"ca75e330fb3b73a476fbc2a7cb7daa1c10db421d@email.com","name":"moldcraft"},"message":"sort fixes","distinct":true,"url":"https://api.github.com/repos/moldcraft/NotificationsBundle/commits/038a9a4129261791336708ecf95e38b2b232eff6"}]},"public":true,"created_at":"2015-01-01T15:12:58Z"} +,{"id":"2489657086","type":"IssueCommentEvent","actor":{"id":613331,"login":"xPaw","gravatar_id":"","url":"https://api.github.com/users/xPaw","avatar_url":"https://avatars.githubusercontent.com/u/613331?"},"repo":{"id":8165636,"name":"SteamDatabase/SteamDatabase","url":"https://api.github.com/repos/SteamDatabase/SteamDatabase"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/SteamDatabase/SteamDatabase/issues/295","labels_url":"https://api.github.com/repos/SteamDatabase/SteamDatabase/issues/295/labels{/name}","comments_url":"https://api.github.com/repos/SteamDatabase/SteamDatabase/issues/295/comments","events_url":"https://api.github.com/repos/SteamDatabase/SteamDatabase/issues/295/events","html_url":"https://github.com/SteamDatabase/SteamDatabase/issues/295","id":53220888,"number":295,"title":"SteamDatabaseBackend pooling issue","user":{"login":"TheAnthonyNL","id":4788347,"avatar_url":"https://avatars.githubusercontent.com/u/4788347?v=3","gravatar_id":"","url":"https://api.github.com/users/TheAnthonyNL","html_url":"https://github.com/TheAnthonyNL","followers_url":"https://api.github.com/users/TheAnthonyNL/followers","following_url":"https://api.github.com/users/TheAnthonyNL/following{/other_user}","gists_url":"https://api.github.com/users/TheAnthonyNL/gists{/gist_id}","starred_url":"https://api.github.com/users/TheAnthonyNL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TheAnthonyNL/subscriptions","organizations_url":"https://api.github.com/users/TheAnthonyNL/orgs","repos_url":"https://api.github.com/users/TheAnthonyNL/repos","events_url":"https://api.github.com/users/TheAnthonyNL/events{/privacy}","received_events_url":"https://api.github.com/users/TheAnthonyNL/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2015-01-01T14:36:20Z","updated_at":"2015-01-01T15:13:00Z","closed_at":null,"body":"The timeout period elapsed prior to obtaining a connection from the pool. \r\n\r\nThis may have occurred because all pooled connections were in use and max pool size was reached.\r\n\r\nAny idea how to solve this?"},"comment":{"url":"https://api.github.com/repos/SteamDatabase/SteamDatabase/issues/comments/68488762","html_url":"https://github.com/SteamDatabase/SteamDatabase/issues/295#issuecomment-68488762","issue_url":"https://api.github.com/repos/SteamDatabase/SteamDatabase/issues/295","id":68488762,"user":{"login":"xPaw","id":613331,"avatar_url":"https://avatars.githubusercontent.com/u/613331?v=3","gravatar_id":"","url":"https://api.github.com/users/xPaw","html_url":"https://github.com/xPaw","followers_url":"https://api.github.com/users/xPaw/followers","following_url":"https://api.github.com/users/xPaw/following{/other_user}","gists_url":"https://api.github.com/users/xPaw/gists{/gist_id}","starred_url":"https://api.github.com/users/xPaw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xPaw/subscriptions","organizations_url":"https://api.github.com/users/xPaw/orgs","repos_url":"https://api.github.com/users/xPaw/repos","events_url":"https://api.github.com/users/xPaw/events{/privacy}","received_events_url":"https://api.github.com/users/xPaw/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:13:00Z","updated_at":"2015-01-01T15:13:00Z","body":"Can you get a proper stacktrace?"}},"public":true,"created_at":"2015-01-01T15:13:00Z","org":{"id":3866120,"login":"SteamDatabase","gravatar_id":"","url":"https://api.github.com/orgs/SteamDatabase","avatar_url":"https://avatars.githubusercontent.com/u/3866120?"}} +,{"id":"2489657088","type":"MemberEvent","actor":{"id":6651691,"login":"wildfire001","gravatar_id":"","url":"https://api.github.com/users/wildfire001","avatar_url":"https://avatars.githubusercontent.com/u/6651691?"},"repo":{"id":28684968,"name":"wildfire001/MAPit","url":"https://api.github.com/repos/wildfire001/MAPit"},"payload":{"member":{"login":"setu1421","id":8182937,"avatar_url":"https://avatars.githubusercontent.com/u/8182937?v=3","gravatar_id":"","url":"https://api.github.com/users/setu1421","html_url":"https://github.com/setu1421","followers_url":"https://api.github.com/users/setu1421/followers","following_url":"https://api.github.com/users/setu1421/following{/other_user}","gists_url":"https://api.github.com/users/setu1421/gists{/gist_id}","starred_url":"https://api.github.com/users/setu1421/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/setu1421/subscriptions","organizations_url":"https://api.github.com/users/setu1421/orgs","repos_url":"https://api.github.com/users/setu1421/repos","events_url":"https://api.github.com/users/setu1421/events{/privacy}","received_events_url":"https://api.github.com/users/setu1421/received_events","type":"User","site_admin":false},"action":"added"},"public":true,"created_at":"2015-01-01T15:13:01Z"} +,{"id":"2489657092","type":"PushEvent","actor":{"id":6705260,"login":"pavelski01","gravatar_id":"","url":"https://api.github.com/users/pavelski01","avatar_url":"https://avatars.githubusercontent.com/u/6705260?"},"repo":{"id":18387478,"name":"pavelski01/SKYskiProject","url":"https://api.github.com/repos/pavelski01/SKYskiProject"},"payload":{"push_id":536866675,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"34163220b9320a9ddb47af82618d083a74d30413","before":"1c6d4a9d090abaead9f53a609745081001fee0ae","commits":[{"sha":"34163220b9320a9ddb47af82618d083a74d30413","author":{"email":"1a8991163b5780e0c8a0decb3ba72d36e93351b2@gmail.com","name":"Pavel Ski"},"message":"Update pom.xml","distinct":true,"url":"https://api.github.com/repos/pavelski01/SKYskiProject/commits/34163220b9320a9ddb47af82618d083a74d30413"}]},"public":true,"created_at":"2015-01-01T15:13:01Z"} +,{"id":"2489657094","type":"GollumEvent","actor":{"id":10333363,"login":"dougmeredith","gravatar_id":"","url":"https://api.github.com/users/dougmeredith","avatar_url":"https://avatars.githubusercontent.com/u/10333363?"},"repo":{"id":12983151,"name":"openhab/openhab","url":"https://api.github.com/repos/openhab/openhab"},"payload":{"pages":[{"page_name":"xPL-Binding","title":"xPL Binding","summary":null,"action":"edited","sha":"35648cc08f301b7dafccb8a8b88d248c6b526f73","html_url":"https://github.com/openhab/openhab/wiki/xPL-Binding"}]},"public":true,"created_at":"2015-01-01T15:13:01Z","org":{"id":1007353,"login":"openhab","gravatar_id":"","url":"https://api.github.com/orgs/openhab","avatar_url":"https://avatars.githubusercontent.com/u/1007353?"}} +,{"id":"2489657097","type":"CreateEvent","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":{"ref":"gh-pages","ref_type":"branch","master_branch":"master","description":"A Groovy DSL for easy data loading, particularly suited to database unit-testing.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:02Z"} +,{"id":"2489657098","type":"CreateEvent","actor":{"id":6548646,"login":"R-OG","gravatar_id":"","url":"https://api.github.com/users/R-OG","avatar_url":"https://avatars.githubusercontent.com/u/6548646?"},"repo":{"id":28688839,"name":"R-OG/pvr.wmc","url":"https://api.github.com/repos/R-OG/pvr.wmc"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":null,"pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:02Z"} +,{"id":"2489657100","type":"PushEvent","actor":{"id":9654006,"login":"afzaledx","gravatar_id":"","url":"https://api.github.com/users/afzaledx","avatar_url":"https://avatars.githubusercontent.com/u/9654006?"},"repo":{"id":10391073,"name":"edx/edx-platform","url":"https://api.github.com/repos/edx/edx-platform"},"payload":{"push_id":536866678,"size":1,"distinct_size":1,"ref":"refs/heads/afzaledx/WL-173","head":"f8ca9481e242aeaf3c5e127cf02bbff415a9527f","before":"9911afb45320fab8bd213a9858fa2e6336d05a3d","commits":[{"sha":"f8ca9481e242aeaf3c5e127cf02bbff415a9527f","author":{"email":"ac57a849128968e2590be472c316dbde6dc0aea5@arbisoft.com","name":"Afzal Wali"},"message":"Cleanup. Docstrings.","distinct":true,"url":"https://api.github.com/repos/edx/edx-platform/commits/f8ca9481e242aeaf3c5e127cf02bbff415a9527f"}]},"public":true,"created_at":"2015-01-01T15:13:03Z","org":{"id":3179841,"login":"edx","gravatar_id":"","url":"https://api.github.com/orgs/edx","avatar_url":"https://avatars.githubusercontent.com/u/3179841?"}} +,{"id":"2489657106","type":"WatchEvent","actor":{"id":5082203,"login":"Totof34","gravatar_id":"","url":"https://api.github.com/users/Totof34","avatar_url":"https://avatars.githubusercontent.com/u/5082203?"},"repo":{"id":20126376,"name":"vapkse/libraries","url":"https://api.github.com/repos/vapkse/libraries"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:13:05Z"} +,{"id":"2489657108","type":"IssuesEvent","actor":{"id":2717002,"login":"thetobby","gravatar_id":"","url":"https://api.github.com/users/thetobby","avatar_url":"https://avatars.githubusercontent.com/u/2717002?"},"repo":{"id":28650025,"name":"thetobby/Tmal","url":"https://api.github.com/repos/thetobby/Tmal"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/thetobby/Tmal/issues/8","labels_url":"https://api.github.com/repos/thetobby/Tmal/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/thetobby/Tmal/issues/8/comments","events_url":"https://api.github.com/repos/thetobby/Tmal/issues/8/events","html_url":"https://github.com/thetobby/Tmal/issues/8","id":53221597,"number":8,"title":"Remove from taskbar","user":{"login":"thetobby","id":2717002,"avatar_url":"https://avatars.githubusercontent.com/u/2717002?v=3","gravatar_id":"","url":"https://api.github.com/users/thetobby","html_url":"https://github.com/thetobby","followers_url":"https://api.github.com/users/thetobby/followers","following_url":"https://api.github.com/users/thetobby/following{/other_user}","gists_url":"https://api.github.com/users/thetobby/gists{/gist_id}","starred_url":"https://api.github.com/users/thetobby/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thetobby/subscriptions","organizations_url":"https://api.github.com/users/thetobby/orgs","repos_url":"https://api.github.com/users/thetobby/repos","events_url":"https://api.github.com/users/thetobby/events{/privacy}","received_events_url":"https://api.github.com/users/thetobby/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/thetobby/Tmal/labels/bug","name":"bug","color":"fc2929"},{"url":"https://api.github.com/repos/thetobby/Tmal/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:13:04Z","updated_at":"2015-01-01T15:13:04Z","closed_at":null,"body":"When put in traybar"}},"public":true,"created_at":"2015-01-01T15:13:06Z"} +,{"id":"2489657112","type":"CreateEvent","actor":{"id":6641660,"login":"purnendu-roy","gravatar_id":"","url":"https://api.github.com/users/purnendu-roy","avatar_url":"https://avatars.githubusercontent.com/u/6641660?"},"repo":{"id":28688842,"name":"purnendu-roy/swe","url":"https://api.github.com/repos/purnendu-roy/swe"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"4th sem project","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:06Z"} +,{"id":"2489657115","type":"CreateEvent","actor":{"id":6548646,"login":"R-OG","gravatar_id":"","url":"https://api.github.com/users/R-OG","avatar_url":"https://avatars.githubusercontent.com/u/6548646?"},"repo":{"id":28688839,"name":"R-OG/pvr.wmc","url":"https://api.github.com/repos/R-OG/pvr.wmc"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":null,"pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:06Z"} +,{"id":"2489657116","type":"PushEvent","actor":{"id":4627837,"login":"jessemillar","gravatar_id":"","url":"https://api.github.com/users/jessemillar","avatar_url":"https://avatars.githubusercontent.com/u/4627837?"},"repo":{"id":25984801,"name":"jessemillar/Jake-the-Dog","url":"https://api.github.com/repos/jessemillar/Jake-the-Dog"},"payload":{"push_id":536866681,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bfa9c9abeb232d0fb67d38b777092c798a6f6e15","before":"cce3f8f355421215b9b5910a4443fcd8c58bacec","commits":[{"sha":"bfa9c9abeb232d0fb67d38b777092c798a6f6e15","author":{"email":"0ba40b71986250aad0903c7ebcfd76a410af35fb@gmail.com","name":"Jesse Millar"},"message":"Update LICENSE.md","distinct":true,"url":"https://api.github.com/repos/jessemillar/Jake-the-Dog/commits/bfa9c9abeb232d0fb67d38b777092c798a6f6e15"}]},"public":true,"created_at":"2015-01-01T15:13:06Z"} +,{"id":"2489657117","type":"PushEvent","actor":{"id":10224817,"login":"Tchaak","gravatar_id":"","url":"https://api.github.com/users/Tchaak","avatar_url":"https://avatars.githubusercontent.com/u/10224817?"},"repo":{"id":28627763,"name":"Tchaak/git1","url":"https://api.github.com/repos/Tchaak/git1"},"payload":{"push_id":536866683,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"547b2712423af969c6a8bdc9b26cc4fa1c7a7097","before":"cac0c9d1123fa5892983ded2a1db92c34858e854","commits":[{"sha":"547b2712423af969c6a8bdc9b26cc4fa1c7a7097","author":{"email":"f413df7971aecc2963ce2423a2109339e2828786@gmail.com","name":"Tchaak"},"message":"activité et contact\n\najout des activités et contact. Contenu à la première personne.","distinct":true,"url":"https://api.github.com/repos/Tchaak/git1/commits/547b2712423af969c6a8bdc9b26cc4fa1c7a7097"}]},"public":true,"created_at":"2015-01-01T15:13:06Z"} +,{"id":"2489657122","type":"PushEvent","actor":{"id":4288180,"login":"DylanMunyard","gravatar_id":"","url":"https://api.github.com/users/DylanMunyard","avatar_url":"https://avatars.githubusercontent.com/u/4288180?"},"repo":{"id":28535737,"name":"DylanMunyard/d3","url":"https://api.github.com/repos/DylanMunyard/d3"},"payload":{"push_id":536866687,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"da743503f1914431acc03b412d74215cbcb30c50","before":"def97db88605e166e498c07674d4ba436516ae61","commits":[{"sha":"da743503f1914431acc03b412d74215cbcb30c50","author":{"email":"c95e9280c4c96d693a3c36d9bd9987916ee2118b@gmail.com","name":"Dylan Munyard"},"message":"Try require_relative '../rails_helper' vs require 'rails_helper'","distinct":true,"url":"https://api.github.com/repos/DylanMunyard/d3/commits/da743503f1914431acc03b412d74215cbcb30c50"}]},"public":true,"created_at":"2015-01-01T15:13:06Z"} +,{"id":"2489657125","type":"PushEvent","actor":{"id":809314,"login":"janaz","gravatar_id":"","url":"https://api.github.com/users/janaz","avatar_url":"https://avatars.githubusercontent.com/u/809314?"},"repo":{"id":10958379,"name":"janaz/transmissionbt","url":"https://api.github.com/repos/janaz/transmissionbt"},"payload":{"push_id":536866690,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2d1781cabb997c7e229163be4c8d5c21869f52c9","before":"00728c485b5986e51393165e3671fa26d6f4be48","commits":[{"sha":"2d1781cabb997c7e229163be4c8d5c21869f52c9","author":{"email":"8ad902a5fac63217bd4ef0dd6cd757402f47cc75@f4695dd4-2c0a-0410-b89c-da849a56a58e","name":"mikedld"},"message":"#4400, #5462: Fix \"make check\" for po files\n\n\ngit-svn-id: svn://svn.transmissionbt.com/Transmission/trunk@14421 f4695dd4-2c0a-0410-b89c-da849a56a58e","distinct":true,"url":"https://api.github.com/repos/janaz/transmissionbt/commits/2d1781cabb997c7e229163be4c8d5c21869f52c9"}]},"public":true,"created_at":"2015-01-01T15:13:06Z"} +,{"id":"2489657131","type":"ForkEvent","actor":{"id":10095090,"login":"qq245451372","gravatar_id":"","url":"https://api.github.com/users/qq245451372","avatar_url":"https://avatars.githubusercontent.com/u/10095090?"},"repo":{"id":1093228,"name":"cocos2d/cocos2d-x","url":"https://api.github.com/repos/cocos2d/cocos2d-x"},"payload":{"forkee":{"id":28688843,"name":"cocos2d-x","full_name":"qq245451372/cocos2d-x","owner":{"login":"qq245451372","id":10095090,"avatar_url":"https://avatars.githubusercontent.com/u/10095090?v=3","gravatar_id":"","url":"https://api.github.com/users/qq245451372","html_url":"https://github.com/qq245451372","followers_url":"https://api.github.com/users/qq245451372/followers","following_url":"https://api.github.com/users/qq245451372/following{/other_user}","gists_url":"https://api.github.com/users/qq245451372/gists{/gist_id}","starred_url":"https://api.github.com/users/qq245451372/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/qq245451372/subscriptions","organizations_url":"https://api.github.com/users/qq245451372/orgs","repos_url":"https://api.github.com/users/qq245451372/repos","events_url":"https://api.github.com/users/qq245451372/events{/privacy}","received_events_url":"https://api.github.com/users/qq245451372/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/qq245451372/cocos2d-x","description":"cocos2d-x for C++","fork":true,"url":"https://api.github.com/repos/qq245451372/cocos2d-x","forks_url":"https://api.github.com/repos/qq245451372/cocos2d-x/forks","keys_url":"https://api.github.com/repos/qq245451372/cocos2d-x/keys{/key_id}","collaborators_url":"https://api.github.com/repos/qq245451372/cocos2d-x/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/qq245451372/cocos2d-x/teams","hooks_url":"https://api.github.com/repos/qq245451372/cocos2d-x/hooks","issue_events_url":"https://api.github.com/repos/qq245451372/cocos2d-x/issues/events{/number}","events_url":"https://api.github.com/repos/qq245451372/cocos2d-x/events","assignees_url":"https://api.github.com/repos/qq245451372/cocos2d-x/assignees{/user}","branches_url":"https://api.github.com/repos/qq245451372/cocos2d-x/branches{/branch}","tags_url":"https://api.github.com/repos/qq245451372/cocos2d-x/tags","blobs_url":"https://api.github.com/repos/qq245451372/cocos2d-x/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/qq245451372/cocos2d-x/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/qq245451372/cocos2d-x/git/refs{/sha}","trees_url":"https://api.github.com/repos/qq245451372/cocos2d-x/git/trees{/sha}","statuses_url":"https://api.github.com/repos/qq245451372/cocos2d-x/statuses/{sha}","languages_url":"https://api.github.com/repos/qq245451372/cocos2d-x/languages","stargazers_url":"https://api.github.com/repos/qq245451372/cocos2d-x/stargazers","contributors_url":"https://api.github.com/repos/qq245451372/cocos2d-x/contributors","subscribers_url":"https://api.github.com/repos/qq245451372/cocos2d-x/subscribers","subscription_url":"https://api.github.com/repos/qq245451372/cocos2d-x/subscription","commits_url":"https://api.github.com/repos/qq245451372/cocos2d-x/commits{/sha}","git_commits_url":"https://api.github.com/repos/qq245451372/cocos2d-x/git/commits{/sha}","comments_url":"https://api.github.com/repos/qq245451372/cocos2d-x/comments{/number}","issue_comment_url":"https://api.github.com/repos/qq245451372/cocos2d-x/issues/comments/{number}","contents_url":"https://api.github.com/repos/qq245451372/cocos2d-x/contents/{+path}","compare_url":"https://api.github.com/repos/qq245451372/cocos2d-x/compare/{base}...{head}","merges_url":"https://api.github.com/repos/qq245451372/cocos2d-x/merges","archive_url":"https://api.github.com/repos/qq245451372/cocos2d-x/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/qq245451372/cocos2d-x/downloads","issues_url":"https://api.github.com/repos/qq245451372/cocos2d-x/issues{/number}","pulls_url":"https://api.github.com/repos/qq245451372/cocos2d-x/pulls{/number}","milestones_url":"https://api.github.com/repos/qq245451372/cocos2d-x/milestones{/number}","notifications_url":"https://api.github.com/repos/qq245451372/cocos2d-x/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/qq245451372/cocos2d-x/labels{/name}","releases_url":"https://api.github.com/repos/qq245451372/cocos2d-x/releases{/id}","created_at":"2015-01-01T15:13:07Z","updated_at":"2015-01-01T13:42:27Z","pushed_at":"2014-12-31T14:34:44Z","git_url":"git://github.com/qq245451372/cocos2d-x.git","ssh_url":"git@github.com:qq245451372/cocos2d-x.git","clone_url":"https://github.com/qq245451372/cocos2d-x.git","svn_url":"https://github.com/qq245451372/cocos2d-x","homepage":"http://www.cocos2d-x.org","size":1314584,"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":"v3","public":true}},"public":true,"created_at":"2015-01-01T15:13:08Z","org":{"id":234324,"login":"cocos2d","gravatar_id":"","url":"https://api.github.com/orgs/cocos2d","avatar_url":"https://avatars.githubusercontent.com/u/234324?"}} +,{"id":"2489657132","type":"IssuesEvent","actor":{"id":8559428,"login":"Yulife","gravatar_id":"","url":"https://api.github.com/users/Yulife","avatar_url":"https://avatars.githubusercontent.com/u/8559428?"},"repo":{"id":25179549,"name":"Yulife/Wanderlust-Reloaded","url":"https://api.github.com/repos/Yulife/Wanderlust-Reloaded"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/Yulife/Wanderlust-Reloaded/issues/340","labels_url":"https://api.github.com/repos/Yulife/Wanderlust-Reloaded/issues/340/labels{/name}","comments_url":"https://api.github.com/repos/Yulife/Wanderlust-Reloaded/issues/340/comments","events_url":"https://api.github.com/repos/Yulife/Wanderlust-Reloaded/issues/340/events","html_url":"https://github.com/Yulife/Wanderlust-Reloaded/issues/340","id":52868933,"number":340,"title":"Weigh out Ruby/Peridot/Sapphire in comparison to BoP and PR","user":{"login":"Yulife","id":8559428,"avatar_url":"https://avatars.githubusercontent.com/u/8559428?v=3","gravatar_id":"","url":"https://api.github.com/users/Yulife","html_url":"https://github.com/Yulife","followers_url":"https://api.github.com/users/Yulife/followers","following_url":"https://api.github.com/users/Yulife/following{/other_user}","gists_url":"https://api.github.com/users/Yulife/gists{/gist_id}","starred_url":"https://api.github.com/users/Yulife/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Yulife/subscriptions","organizations_url":"https://api.github.com/users/Yulife/orgs","repos_url":"https://api.github.com/users/Yulife/repos","events_url":"https://api.github.com/users/Yulife/events{/privacy}","received_events_url":"https://api.github.com/users/Yulife/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/Yulife/Wanderlust-Reloaded/labels/2.0.0","name":"2.0.0","color":"197E00"},{"url":"https://api.github.com/repos/Yulife/Wanderlust-Reloaded/labels/Lots+of+effort","name":"Lots of effort","color":"961E24"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2014-12-25T17:52:11Z","updated_at":"2015-01-01T15:13:08Z","closed_at":"2015-01-01T15:13:08Z","body":""}},"public":true,"created_at":"2015-01-01T15:13:08Z"} +,{"id":"2489657136","type":"PushEvent","actor":{"id":50245,"login":"bkuhlmann","gravatar_id":"","url":"https://api.github.com/users/bkuhlmann","avatar_url":"https://avatars.githubusercontent.com/u/50245?"},"repo":{"id":15789823,"name":"bkuhlmann/auther","url":"https://api.github.com/repos/bkuhlmann/auther"},"payload":{"push_id":536866696,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"522e4636e51a07d8e393226fe8bfc3b30533d657","before":"dae7d22bf0602b36d804ba79875b9a0b136c6b20","commits":[{"sha":"522e4636e51a07d8e393226fe8bfc3b30533d657","author":{"email":"e3c3d31cd5aa58e7e8e4ffcf313c9e54154baee1@alchemists.io","name":"Brooke Kuhlmann"},"message":"Added JRuby 2.x.x syntax support to Travis CI builds. [ci skip]","distinct":true,"url":"https://api.github.com/repos/bkuhlmann/auther/commits/522e4636e51a07d8e393226fe8bfc3b30533d657"}]},"public":true,"created_at":"2015-01-01T15:13:09Z"} +,{"id":"2489657139","type":"PushEvent","actor":{"id":50245,"login":"bkuhlmann","gravatar_id":"","url":"https://api.github.com/users/bkuhlmann","avatar_url":"https://avatars.githubusercontent.com/u/50245?"},"repo":{"id":2004188,"name":"bkuhlmann/db","url":"https://api.github.com/repos/bkuhlmann/db"},"payload":{"push_id":536866697,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"47edc7f18bd1d2718ea31bcbcfbb870982301b7c","before":"7b768e9ea1cbbda280acc3623eac61fee02743d3","commits":[{"sha":"47edc7f18bd1d2718ea31bcbcfbb870982301b7c","author":{"email":"e3c3d31cd5aa58e7e8e4ffcf313c9e54154baee1@alchemists.io","name":"Brooke Kuhlmann"},"message":"Added JRuby 2.x.x syntax support to Travis CI builds. [ci skip]","distinct":true,"url":"https://api.github.com/repos/bkuhlmann/db/commits/47edc7f18bd1d2718ea31bcbcfbb870982301b7c"}]},"public":true,"created_at":"2015-01-01T15:13:09Z"} +,{"id":"2489657141","type":"GollumEvent","actor":{"id":469989,"login":"bennyn","gravatar_id":"","url":"https://api.github.com/users/bennyn","avatar_url":"https://avatars.githubusercontent.com/u/469989?"},"repo":{"id":26399632,"name":"welovecoding/welovecoding.github.io","url":"https://api.github.com/repos/welovecoding/welovecoding.github.io"},"payload":{"pages":[{"page_name":"Hotkeys","title":"Hotkeys","summary":null,"action":"edited","sha":"a549857bdab67741ad8d236b9cd19e0069ea42bf","html_url":"https://github.com/welovecoding/welovecoding.github.io/wiki/Hotkeys"}]},"public":true,"created_at":"2015-01-01T15:13:09Z","org":{"id":8947331,"login":"welovecoding","gravatar_id":"","url":"https://api.github.com/orgs/welovecoding","avatar_url":"https://avatars.githubusercontent.com/u/8947331?"}} +,{"id":"2489657142","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":536866700,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"13861394934b0ae2f7c990ffdbf24c9800be9fa7","before":"d85c9fcd2378a466a6721e4f0ab50894f2bce612","commits":[{"sha":"13861394934b0ae2f7c990ffdbf24c9800be9fa7","author":{"email":"6b83eded995a0663a8581c4317a76bfbfaf34437@xiaoshitou1","name":"xiaoshitou"},"message":"Translated by 土妹子","distinct":true,"url":"https://api.github.com/repos/gnenbu/gn_enbu_chs/commits/13861394934b0ae2f7c990ffdbf24c9800be9fa7"}]},"public":true,"created_at":"2015-01-01T15:13:09Z"} +,{"id":"2489657143","type":"PushEvent","actor":{"id":3170981,"login":"kulmala","gravatar_id":"","url":"https://api.github.com/users/kulmala","avatar_url":"https://avatars.githubusercontent.com/u/3170981?"},"repo":{"id":23549741,"name":"kulmala/metrics","url":"https://api.github.com/repos/kulmala/metrics"},"payload":{"push_id":536866701,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bdfecdbd5b2d694941331bb90bedc766381e7abe","before":"cda78c5ec7d8d90838e2fabc82e0528620a5771d","commits":[{"sha":"bdfecdbd5b2d694941331bb90bedc766381e7abe","author":{"email":"5b062d619528ca2f7b39794d12e1c305a7a4b0e8@gmail.com","name":"Jaana Kulmala"},"message":"little tweak","distinct":true,"url":"https://api.github.com/repos/kulmala/metrics/commits/bdfecdbd5b2d694941331bb90bedc766381e7abe"}]},"public":true,"created_at":"2015-01-01T15:13:09Z"} +,{"id":"2489657144","type":"PushEvent","actor":{"id":50245,"login":"bkuhlmann","gravatar_id":"","url":"https://api.github.com/users/bkuhlmann","avatar_url":"https://avatars.githubusercontent.com/u/50245?"},"repo":{"id":19005171,"name":"bkuhlmann/flacsmith","url":"https://api.github.com/repos/bkuhlmann/flacsmith"},"payload":{"push_id":536866702,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"28bda9bf8da7d7a76eb3cde70aefd8dd0910dd48","before":"3a0a5d85da3893298133cfce5b5cf869e84c557b","commits":[{"sha":"28bda9bf8da7d7a76eb3cde70aefd8dd0910dd48","author":{"email":"e3c3d31cd5aa58e7e8e4ffcf313c9e54154baee1@alchemists.io","name":"Brooke Kuhlmann"},"message":"Added JRuby 2.x.x syntax support to Travis CI builds. [ci skip]","distinct":true,"url":"https://api.github.com/repos/bkuhlmann/flacsmith/commits/28bda9bf8da7d7a76eb3cde70aefd8dd0910dd48"}]},"public":true,"created_at":"2015-01-01T15:13:09Z"} +,{"id":"2489657147","type":"MemberEvent","actor":{"id":1262317,"login":"ToOLs-PL","gravatar_id":"","url":"https://api.github.com/users/ToOLs-PL","avatar_url":"https://avatars.githubusercontent.com/u/1262317?"},"repo":{"id":28687496,"name":"ToOLs-PL/dojo_rules","url":"https://api.github.com/repos/ToOLs-PL/dojo_rules"},"payload":{"member":{"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},"action":"added"},"public":true,"created_at":"2015-01-01T15:13:09Z"} +,{"id":"2489657148","type":"CreateEvent","actor":{"id":10143634,"login":"KhoiNguyenTMA","gravatar_id":"","url":"https://api.github.com/users/KhoiNguyenTMA","avatar_url":"https://avatars.githubusercontent.com/u/10143634?"},"repo":{"id":28688844,"name":"KhoiNguyenTMA/MMS","url":"https://api.github.com/repos/KhoiNguyenTMA/MMS"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"learning_git","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:09Z"} +,{"id":"2489657152","type":"PushEvent","actor":{"id":2601132,"login":"AdrieanKhisbe","gravatar_id":"","url":"https://api.github.com/users/AdrieanKhisbe","avatar_url":"https://avatars.githubusercontent.com/u/2601132?"},"repo":{"id":28445696,"name":"AdrieanKhisbe/org4idea","url":"https://api.github.com/repos/AdrieanKhisbe/org4idea"},"payload":{"push_id":536866705,"size":16,"distinct_size":16,"ref":"refs/heads/master","head":"27e569ef8f87298fdcf809d01141c47136d68436","before":"abdc93159f0e5445aaacf1352cf197447e7c090a","commits":[{"sha":"06902b1f425afe12e9aa82674191ea62a364f1e2","author":{"email":"263fd393d30bc7e03828b9710564bff410512b39@live.fr","name":"AdrieanKhisbe"},"message":"refactor: move spelcheckying strategy in editor directory","distinct":true,"url":"https://api.github.com/repos/AdrieanKhisbe/org4idea/commits/06902b1f425afe12e9aa82674191ea62a364f1e2"},{"sha":"e2b569316593a2edee677a4ad60db9342dbf9c15","author":{"email":"263fd393d30bc7e03828b9710564bff410512b39@live.fr","name":"AdrieanKhisbe"},"message":"provide org easy template as live template","distinct":true,"url":"https://api.github.com/repos/AdrieanKhisbe/org4idea/commits/e2b569316593a2edee677a4ad60db9342dbf9c15"},{"sha":"045200349af6017d33a890ab4480cedd814c1275","author":{"email":"263fd393d30bc7e03828b9710564bff410512b39@live.fr","name":"AdrieanKhisbe"},"message":"add Org Context to only support lt in org files","distinct":true,"url":"https://api.github.com/repos/AdrieanKhisbe/org4idea/commits/045200349af6017d33a890ab4480cedd814c1275"},{"sha":"7456aafcd916e7e67df866d0525121393a204480","author":{"email":"263fd393d30bc7e03828b9710564bff410512b39@live.fr","name":"AdrieanKhisbe"},"message":"todo indexing in building","distinct":true,"url":"https://api.github.com/repos/AdrieanKhisbe/org4idea/commits/7456aafcd916e7e67df866d0525121393a204480"},{"sha":"d59ef28163ac4d7eb3ea0febb9c303dbef713897","author":{"email":"263fd393d30bc7e03828b9710564bff410512b39@live.fr","name":"AdrieanKhisbe"},"message":"refactor undeprevated Highlighter colors","distinct":true,"url":"https://api.github.com/repos/AdrieanKhisbe/org4idea/commits/d59ef28163ac4d7eb3ea0febb9c303dbef713897"},{"sha":"5d2a3bc7a9f1343d3b508f7abdeb01907c33f813","author":{"email":"263fd393d30bc7e03828b9710564bff410512b39@live.fr","name":"AdrieanKhisbe"},"message":"add new highlighter colors","distinct":true,"url":"https://api.github.com/repos/AdrieanKhisbe/org4idea/commits/5d2a3bc7a9f1343d3b508f7abdeb01907c33f813"},{"sha":"a544566356157cd102b0b3414a3a3e0d17a3fd9a","author":{"email":"263fd393d30bc7e03828b9710564bff410512b39@live.fr","name":"AdrieanKhisbe"},"message":"comment needs a space after the #\n(didn't manage so far to make a rule to permit leading whitespace)","distinct":true,"url":"https://api.github.com/repos/AdrieanKhisbe/org4idea/commits/a544566356157cd102b0b3414a3a3e0d17a3fd9a"},{"sha":"52928e42bb659ad42afdbad321588e7abd772b06","author":{"email":"263fd393d30bc7e03828b9710564bff410512b39@live.fr","name":"AdrieanKhisbe"},"message":"add support for \"affiliated keyword\" #+something","distinct":true,"url":"https://api.github.com/repos/AdrieanKhisbe/org4idea/commits/52928e42bb659ad42afdbad321588e7abd772b06"},{"sha":"c99f9baa86958850259215e55b58a5bd3a3b6c13","author":{"email":"263fd393d30bc7e03828b9710564bff410512b39@live.fr","name":"AdrieanKhisbe"},"message":"fix preview: set sample to LF (\\n)","distinct":true,"url":"https://api.github.com/repos/AdrieanKhisbe/org4idea/commits/c99f9baa86958850259215e55b58a5bd3a3b6c13"},{"sha":"77e38f4ee5fa8bbfcc48095389680f979abc628d","author":{"email":"263fd393d30bc7e03828b9710564bff410512b39@live.fr","name":"AdrieanKhisbe"},"message":"update doc to new features.\n\nbye bye 2014","distinct":true,"url":"https://api.github.com/repos/AdrieanKhisbe/org4idea/commits/77e38f4ee5fa8bbfcc48095389680f979abc628d"},{"sha":"253968a5bc2732d8bb2799326626905dbb6f43e1","author":{"email":"263fd393d30bc7e03828b9710564bff410512b39@live.fr","name":"AdrieanKhisbe"},"message":"add support for line code section","distinct":true,"url":"https://api.github.com/repos/AdrieanKhisbe/org4idea/commits/253968a5bc2732d8bb2799326626905dbb6f43e1"},{"sha":"9f3741331edd7205a2593e76c5ee8996caa62179","author":{"email":"263fd393d30bc7e03828b9710564bff410512b39@live.fr","name":"AdrieanKhisbe"},"message":"lex rule refactor","distinct":true,"url":"https://api.github.com/repos/AdrieanKhisbe/org4idea/commits/9f3741331edd7205a2593e76c5ee8996caa62179"},{"sha":"0734df4ceab1806d155abbe2b7702a485583c136","author":{"email":"263fd393d30bc7e03828b9710564bff410512b39@live.fr","name":"AdrieanKhisbe"},"message":"new Org sample with more syntax highlight example (some incoming)","distinct":true,"url":"https://api.github.com/repos/AdrieanKhisbe/org4idea/commits/0734df4ceab1806d155abbe2b7702a485583c136"},{"sha":"fd32241660616cadce5065d5fdd98e556a2405b2","author":{"email":"263fd393d30bc7e03828b9710564bff410512b39@live.fr","name":"AdrieanKhisbe"},"message":"dryly refactor Org Color setting page (will be more eeasy to scale :))","distinct":true,"url":"https://api.github.com/repos/AdrieanKhisbe/org4idea/commits/fd32241660616cadce5065d5fdd98e556a2405b2"},{"sha":"45d36ab5b69123650faf6f8b0585171ce7f8b8e5","author":{"email":"263fd393d30bc7e03828b9710564bff410512b39@live.fr","name":"AdrieanKhisbe"},"message":"add a commenter C-/ -> #","distinct":true,"url":"https://api.github.com/repos/AdrieanKhisbe/org4idea/commits/45d36ab5b69123650faf6f8b0585171ce7f8b8e5"},{"sha":"27e569ef8f87298fdcf809d01141c47136d68436","author":{"email":"263fd393d30bc7e03828b9710564bff410512b39@live.fr","name":"AdrieanKhisbe"},"message":"update plugin and readme with new introduced features","distinct":true,"url":"https://api.github.com/repos/AdrieanKhisbe/org4idea/commits/27e569ef8f87298fdcf809d01141c47136d68436"}]},"public":true,"created_at":"2015-01-01T15:13:10Z"} +,{"id":"2489657153","type":"PushEvent","actor":{"id":50245,"login":"bkuhlmann","gravatar_id":"","url":"https://api.github.com/users/bkuhlmann","avatar_url":"https://avatars.githubusercontent.com/u/50245?"},"repo":{"id":1848617,"name":"bkuhlmann/gemsmith","url":"https://api.github.com/repos/bkuhlmann/gemsmith"},"payload":{"push_id":536866706,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"20dc93d31555aecd79f46a9ac6f53b82e8c8f544","before":"901cfc5c11466117941ef8c07e52253732e17300","commits":[{"sha":"20dc93d31555aecd79f46a9ac6f53b82e8c8f544","author":{"email":"e3c3d31cd5aa58e7e8e4ffcf313c9e54154baee1@alchemists.io","name":"Brooke Kuhlmann"},"message":"Added JRuby 2.x.x syntax support to Travis CI builds. [ci skip]","distinct":true,"url":"https://api.github.com/repos/bkuhlmann/gemsmith/commits/20dc93d31555aecd79f46a9ac6f53b82e8c8f544"}]},"public":true,"created_at":"2015-01-01T15:13:10Z"} +,{"id":"2489657157","type":"PushEvent","actor":{"id":2631302,"login":"Wolfenswan","gravatar_id":"","url":"https://api.github.com/users/Wolfenswan","avatar_url":"https://avatars.githubusercontent.com/u/2631302?"},"repo":{"id":15589118,"name":"Wolfenswan/A3-Missions","url":"https://api.github.com/repos/Wolfenswan/A3-Missions"},"payload":{"push_id":536866709,"size":889,"distinct_size":3,"ref":"refs/heads/fa3_c64_bay","head":"e03a826d17f8b6e5011c64aeb0116c48f0465f58","before":"d4a55d7c29a203a85be751c374051db0cce4616e","commits":[{"sha":"e9bf66ab2c6d12827efa4cabda070bfd9876a228","author":{"email":"7068c63f083322f8a7860175f7c0e2873f530580@ferstaberinde.com","name":"ferstaberinde"},"message":"Merge pull request #113 from ferstaberinde/dev\n\nv3-0-8","distinct":false,"url":"https://api.github.com/repos/Wolfenswan/A3-Missions/commits/e9bf66ab2c6d12827efa4cabda070bfd9876a228"},{"sha":"9875f3256e45727bb5be7dcd4257a7b5dcdcce80","author":{"email":"7068c63f083322f8a7860175f7c0e2873f530580@ferstaberinde.com","name":"ferstaberinde"},"message":"Merge pull request #116 from ferstaberinde/dev\n\nv3-0-8 (more)","distinct":false,"url":"https://api.github.com/repos/Wolfenswan/A3-Missions/commits/9875f3256e45727bb5be7dcd4257a7b5dcdcce80"},{"sha":"a889c62f2ec0d364f47a904d74d342a864f38fd2","author":{"email":"7068c63f083322f8a7860175f7c0e2873f530580@ferstaberinde.com","name":"ferstaberinde"},"message":"Merge pull request #117 from headswe/dev\n\nUpdate f_cam_eventHandler.sqf","distinct":false,"url":"https://api.github.com/repos/Wolfenswan/A3-Missions/commits/a889c62f2ec0d364f47a904d74d342a864f38fd2"},{"sha":"391f791fb005d4b6763269bba549d293f97eb19b","author":{"email":"7068c63f083322f8a7860175f7c0e2873f530580@ferstaberinde.com","name":"ferstaberinde"},"message":"Merge pull request #118 from ferstaberinde/dev\n\nv3-0-8 (even more)","distinct":false,"url":"https://api.github.com/repos/Wolfenswan/A3-Missions/commits/391f791fb005d4b6763269bba549d293f97eb19b"},{"sha":"1c0835e95c5421eddb24115e10c358573ee8d656","author":{"email":"c1a8541db0f8b934c03ae9f85f17b97687cf6413@gmail.com","name":"Wolfenswan"},"message":"* mpEndBroadcast & mpEndReceiver are now functions\n* removed f_mpEndSetUp\n* ending is now broadcast via bis_fnc_mp","distinct":false,"url":"https://api.github.com/repos/Wolfenswan/A3-Missions/commits/1c0835e95c5421eddb24115e10c358573ee8d656"},{"sha":"3f4c54eac423aaa950635b0bb2b01fd6542b59b8","author":{"email":"c1a8541db0f8b934c03ae9f85f17b97687cf6413@gmail.com","name":"Wolfenswan"},"message":"* updated comments","distinct":false,"url":"https://api.github.com/repos/Wolfenswan/A3-Missions/commits/3f4c54eac423aaa950635b0bb2b01fd6542b59b8"},{"sha":"30196d02ca5a21ac05434449f90f300c1a142d06","author":{"email":"c1a8541db0f8b934c03ae9f85f17b97687cf6413@gmail.com","name":"Wolfenswan"},"message":"Merge branch 'master' of https://github.com/ferstaberinde/F3","distinct":false,"url":"https://api.github.com/repos/Wolfenswan/A3-Missions/commits/30196d02ca5a21ac05434449f90f300c1a142d06"},{"sha":"f0545b73346ba8f3a8d34a250a7dd34b714491e7","author":{"email":"c1a8541db0f8b934c03ae9f85f17b97687cf6413@gmail.com","name":"Wolfenswan"},"message":"Added gear for crew/\"c\" to all factions","distinct":false,"url":"https://api.github.com/repos/Wolfenswan/A3-Missions/commits/f0545b73346ba8f3a8d34a250a7dd34b714491e7"},{"sha":"d30b5829aa488dc098592e1b83dee31881d471e5","author":{"email":"c1a8541db0f8b934c03ae9f85f17b97687cf6413@gmail.com","name":"Wolfenswan"},"message":"no message","distinct":false,"url":"https://api.github.com/repos/Wolfenswan/A3-Missions/commits/d30b5829aa488dc098592e1b83dee31881d471e5"},{"sha":"afa23e5b07a02cfbeae0fa43893c984869c37542","author":{"email":"7068c63f083322f8a7860175f7c0e2873f530580@ferstaberinde.com","name":"ferstaberinde"},"message":"Merge pull request #170 from Wolfenswan/dev\n\nAdded gear for crew/\"c\" to all factions","distinct":false,"url":"https://api.github.com/repos/Wolfenswan/A3-Missions/commits/afa23e5b07a02cfbeae0fa43893c984869c37542"},{"sha":"1ea00c32b95847f29dbdc5dd04f8744f88ebb2f8","author":{"email":"7068c63f083322f8a7860175f7c0e2873f530580@ferstaberinde.com","name":"Alan A Richardson"},"message":"Fixes for #109\n\nAdded MBT and AH for AAF faction.","distinct":false,"url":"https://api.github.com/repos/Wolfenswan/A3-Missions/commits/1ea00c32b95847f29dbdc5dd04f8744f88ebb2f8"},{"sha":"9731e9a4793dc07a9b39819a1261274df987b4ad","author":{"email":"c1a8541db0f8b934c03ae9f85f17b97687cf6413@gmail.com","name":"Wolfenswan"},"message":"additional comments to fn_cInit","distinct":false,"url":"https://api.github.com/repos/Wolfenswan/A3-Missions/commits/9731e9a4793dc07a9b39819a1261274df987b4ad"},{"sha":"48db9b0b29f448ad8883d087c8b4a6070ebc8ff9","author":{"email":"7068c63f083322f8a7860175f7c0e2873f530580@ferstaberinde.com","name":"ferstaberinde"},"message":"Merge pull request #171 from Wolfenswan/dev-caching\n\nAdded F3 Caching Component","distinct":false,"url":"https://api.github.com/repos/Wolfenswan/A3-Missions/commits/48db9b0b29f448ad8883d087c8b4a6070ebc8ff9"},{"sha":"6af6d20de251cd52da29f46e4b5c5a863ee34982","author":{"email":"c1a8541db0f8b934c03ae9f85f17b97687cf6413@gmail.com","name":"Wolfenswan"},"message":"moved global vars to init.sqf\nremoved allcaps on most global vars","distinct":false,"url":"https://api.github.com/repos/Wolfenswan/A3-Missions/commits/6af6d20de251cd52da29f46e4b5c5a863ee34982"},{"sha":"96398bc93c760f41ae034df07bc4116df545d1d3","author":{"email":"7068c63f083322f8a7860175f7c0e2873f530580@ferstaberinde.com","name":"Alan A Richardson"},"message":"Re-worked engineer detachments\n\nEngineers now split into specialisms: demo and mines","distinct":false,"url":"https://api.github.com/repos/Wolfenswan/A3-Missions/commits/96398bc93c760f41ae034df07bc4116df545d1d3"},{"sha":"0e3b520a6500514a2294e02a633d45da14ca5a0d","author":{"email":"7068c63f083322f8a7860175f7c0e2873f530580@ferstaberinde.com","name":"ferstaberinde"},"message":"Merge pull request #172 from Wolfenswan/dev-nameTags\n\nTweaks to Nametag component","distinct":false,"url":"https://api.github.com/repos/Wolfenswan/A3-Missions/commits/0e3b520a6500514a2294e02a633d45da14ca5a0d"},{"sha":"21100d33a3fefa04e26ca15686063fe1e2f6180f","author":{"email":"7068c63f083322f8a7860175f7c0e2873f530580@ferstaberinde.com","name":"Alan A Richardson"},"message":"Updated README.md for v3-0-9","distinct":false,"url":"https://api.github.com/repos/Wolfenswan/A3-Missions/commits/21100d33a3fefa04e26ca15686063fe1e2f6180f"},{"sha":"07fc19faafa07ba3bf7aa5bbddce29ca5c2ea908","author":{"email":"7068c63f083322f8a7860175f7c0e2873f530580@ferstaberinde.com","name":"Alan A Richardson"},"message":"Minor tweaks","distinct":false,"url":"https://api.github.com/repos/Wolfenswan/A3-Missions/commits/07fc19faafa07ba3bf7aa5bbddce29ca5c2ea908"},{"sha":"ce404ab53bf0252e999346926f6894e324176d97","author":{"email":"7068c63f083322f8a7860175f7c0e2873f530580@ferstaberinde.com","name":"Alan A Richardson"},"message":"Tweaked fog values","distinct":false,"url":"https://api.github.com/repos/Wolfenswan/A3-Missions/commits/ce404ab53bf0252e999346926f6894e324176d97"},{"sha":"098f6db85e8812e104cac43c8d5c33127fdc4627","author":{"email":"c1a8541db0f8b934c03ae9f85f17b97687cf6413@gmail.com","name":"Wolfenswan"},"message":"FIA CO and DC had too many grenades.","distinct":false,"url":"https://api.github.com/repos/Wolfenswan/A3-Missions/commits/098f6db85e8812e104cac43c8d5c33127fdc4627"}]},"public":true,"created_at":"2015-01-01T15:13:10Z"} +,{"id":"2489657159","type":"PushEvent","actor":{"id":50245,"login":"bkuhlmann","gravatar_id":"","url":"https://api.github.com/users/bkuhlmann","avatar_url":"https://avatars.githubusercontent.com/u/50245?"},"repo":{"id":839892,"name":"bkuhlmann/heroku_plus","url":"https://api.github.com/repos/bkuhlmann/heroku_plus"},"payload":{"push_id":536866710,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7b86437b808d7a337ddb538ce36b5a24b56d1943","before":"99788ec6324badc68c1d5d195a4ef0618961dd36","commits":[{"sha":"7b86437b808d7a337ddb538ce36b5a24b56d1943","author":{"email":"e3c3d31cd5aa58e7e8e4ffcf313c9e54154baee1@alchemists.io","name":"Brooke Kuhlmann"},"message":"Added JRuby 2.x.x syntax support to Travis CI builds. [ci skip]","distinct":true,"url":"https://api.github.com/repos/bkuhlmann/heroku_plus/commits/7b86437b808d7a337ddb538ce36b5a24b56d1943"}]},"public":true,"created_at":"2015-01-01T15:13:11Z"} +,{"id":"2489657161","type":"PushEvent","actor":{"id":4627837,"login":"jessemillar","gravatar_id":"","url":"https://api.github.com/users/jessemillar","avatar_url":"https://avatars.githubusercontent.com/u/4627837?"},"repo":{"id":27015980,"name":"jessemillar/Pinion","url":"https://api.github.com/repos/jessemillar/Pinion"},"payload":{"push_id":536866711,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9e07a47180d7bc5def49d28fb779d6506acf78d3","before":"38fdc95d21347ecf6a8471190885bf5a8f2c1de0","commits":[{"sha":"9e07a47180d7bc5def49d28fb779d6506acf78d3","author":{"email":"0ba40b71986250aad0903c7ebcfd76a410af35fb@gmail.com","name":"Jesse Millar"},"message":"Update LICENSE.md","distinct":true,"url":"https://api.github.com/repos/jessemillar/Pinion/commits/9e07a47180d7bc5def49d28fb779d6506acf78d3"}]},"public":true,"created_at":"2015-01-01T15:13:11Z"} +,{"id":"2489657162","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":536866712,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9d7b28110545f6365d548b539a1f7b4d40cfc36e","before":"c6804739700a715cf2deadf558d4a30f8b4c6b6c","commits":[{"sha":"9d7b28110545f6365d548b539a1f7b4d40cfc36e","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420125189610\n\n5TF/6wRMyLTR4D4SBnBWJJ+L94rHeF3J3LoAGVk2cqQ=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/9d7b28110545f6365d548b539a1f7b4d40cfc36e"}]},"public":true,"created_at":"2015-01-01T15:13:11Z"} +,{"id":"2489657167","type":"PushEvent","actor":{"id":9401324,"login":"cuiyu2012","gravatar_id":"","url":"https://api.github.com/users/cuiyu2012","avatar_url":"https://avatars.githubusercontent.com/u/9401324?"},"repo":{"id":25760039,"name":"cuiyu2012/download_img_from_1000_for_ff","url":"https://api.github.com/repos/cuiyu2012/download_img_from_1000_for_ff"},"payload":{"push_id":536866715,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"39d072e05451937d41c5a723c70befe21039c74c","before":"66ba8e5def065a54545e98a8c6e9ea8076cfcd95","commits":[{"sha":"39d072e05451937d41c5a723c70befe21039c74c","author":{"email":"b713f050e1955e57935a1d51c449af59dcffafc2@qq.com","name":"cuiyu2012"},"message":"add a empty line","distinct":true,"url":"https://api.github.com/repos/cuiyu2012/download_img_from_1000_for_ff/commits/39d072e05451937d41c5a723c70befe21039c74c"}]},"public":true,"created_at":"2015-01-01T15:13:11Z"} +,{"id":"2489657168","type":"PushEvent","actor":{"id":50245,"login":"bkuhlmann","gravatar_id":"","url":"https://api.github.com/users/bkuhlmann","avatar_url":"https://avatars.githubusercontent.com/u/50245?"},"repo":{"id":962196,"name":"bkuhlmann/lineage","url":"https://api.github.com/repos/bkuhlmann/lineage"},"payload":{"push_id":536866716,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"560792a8af59311440ff33f7839fb60515ab77e8","before":"441d28f007ff954124ed5a82e63a4ba3194f3409","commits":[{"sha":"560792a8af59311440ff33f7839fb60515ab77e8","author":{"email":"e3c3d31cd5aa58e7e8e4ffcf313c9e54154baee1@alchemists.io","name":"Brooke Kuhlmann"},"message":"Added JRuby 2.x.x syntax support to Travis CI builds. [ci skip]","distinct":true,"url":"https://api.github.com/repos/bkuhlmann/lineage/commits/560792a8af59311440ff33f7839fb60515ab77e8"}]},"public":true,"created_at":"2015-01-01T15:13:11Z"} +,{"id":"2489657169","type":"WatchEvent","actor":{"id":830743,"login":"mr-v","gravatar_id":"","url":"https://api.github.com/users/mr-v","avatar_url":"https://avatars.githubusercontent.com/u/830743?"},"repo":{"id":13682829,"name":"repl-electric/cassiopeia","url":"https://api.github.com/repos/repl-electric/cassiopeia"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:13:12Z","org":{"id":5701570,"login":"repl-electric","gravatar_id":"","url":"https://api.github.com/orgs/repl-electric","avatar_url":"https://avatars.githubusercontent.com/u/5701570?"}} +,{"id":"2489657170","type":"PushEvent","actor":{"id":433707,"login":"ile","gravatar_id":"","url":"https://api.github.com/users/ile","avatar_url":"https://avatars.githubusercontent.com/u/433707?"},"repo":{"id":13599170,"name":"ile/ile.github.io","url":"https://api.github.com/repos/ile/ile.github.io"},"payload":{"push_id":536866717,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2aaf719d0cb35259655102a2ee2e0ab08329e923","before":"a9cced821ae7cdad2bd204c237cc92c1e2ab40d2","commits":[{"sha":"2aaf719d0cb35259655102a2ee2e0ab08329e923","author":{"email":"587176f59bd66462892fd96dcec0acd2c8acf8c1@gmail.com","name":"Ilkka Huotari"},"message":"Update 2014-12-06-how-to-name-a-baby.md","distinct":true,"url":"https://api.github.com/repos/ile/ile.github.io/commits/2aaf719d0cb35259655102a2ee2e0ab08329e923"}]},"public":true,"created_at":"2015-01-01T15:13:12Z"} +,{"id":"2489657171","type":"WatchEvent","actor":{"id":153937,"login":"Lax","gravatar_id":"","url":"https://api.github.com/users/Lax","avatar_url":"https://avatars.githubusercontent.com/u/153937?"},"repo":{"id":15111821,"name":"grafana/grafana","url":"https://api.github.com/repos/grafana/grafana"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:13:12Z","org":{"id":7195757,"login":"grafana","gravatar_id":"","url":"https://api.github.com/orgs/grafana","avatar_url":"https://avatars.githubusercontent.com/u/7195757?"}} +,{"id":"2489657172","type":"IssueCommentEvent","actor":{"id":1893117,"login":"treeowl","gravatar_id":"","url":"https://api.github.com/users/treeowl","avatar_url":"https://avatars.githubusercontent.com/u/1893117?"},"repo":{"id":1924888,"name":"haskell/containers","url":"https://api.github.com/repos/haskell/containers"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/haskell/containers/issues/126","labels_url":"https://api.github.com/repos/haskell/containers/issues/126/labels{/name}","comments_url":"https://api.github.com/repos/haskell/containers/issues/126/comments","events_url":"https://api.github.com/repos/haskell/containers/issues/126/events","html_url":"https://github.com/haskell/containers/pull/126","id":53211213,"number":126,"title":"Replace unfoldTreeM_BF and unfoldForestM_BF","user":{"login":"treeowl","id":1893117,"avatar_url":"https://avatars.githubusercontent.com/u/1893117?v=3","gravatar_id":"","url":"https://api.github.com/users/treeowl","html_url":"https://github.com/treeowl","followers_url":"https://api.github.com/users/treeowl/followers","following_url":"https://api.github.com/users/treeowl/following{/other_user}","gists_url":"https://api.github.com/users/treeowl/gists{/gist_id}","starred_url":"https://api.github.com/users/treeowl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/treeowl/subscriptions","organizations_url":"https://api.github.com/users/treeowl/orgs","repos_url":"https://api.github.com/users/treeowl/repos","events_url":"https://api.github.com/users/treeowl/events{/privacy}","received_events_url":"https://api.github.com/users/treeowl/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2015-01-01T02:03:37Z","updated_at":"2015-01-01T15:13:12Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/haskell/containers/pulls/126","html_url":"https://github.com/haskell/containers/pull/126","diff_url":"https://github.com/haskell/containers/pull/126.diff","patch_url":"https://github.com/haskell/containers/pull/126.patch"},"body":"Use radically simpler implementations that do not use\r\nData.Sequence."},"comment":{"url":"https://api.github.com/repos/haskell/containers/issues/comments/68488768","html_url":"https://github.com/haskell/containers/pull/126#issuecomment-68488768","issue_url":"https://api.github.com/repos/haskell/containers/issues/126","id":68488768,"user":{"login":"treeowl","id":1893117,"avatar_url":"https://avatars.githubusercontent.com/u/1893117?v=3","gravatar_id":"","url":"https://api.github.com/users/treeowl","html_url":"https://github.com/treeowl","followers_url":"https://api.github.com/users/treeowl/followers","following_url":"https://api.github.com/users/treeowl/following{/other_user}","gists_url":"https://api.github.com/users/treeowl/gists{/gist_id}","starred_url":"https://api.github.com/users/treeowl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/treeowl/subscriptions","organizations_url":"https://api.github.com/users/treeowl/orgs","repos_url":"https://api.github.com/users/treeowl/repos","events_url":"https://api.github.com/users/treeowl/events{/privacy}","received_events_url":"https://api.github.com/users/treeowl/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:13:12Z","updated_at":"2015-01-01T15:13:12Z","body":"It's morning, so I have a new idea that might get the laziness and the efficiency: in the `concatMap` \"stream\", insert markers indicating breaks at different levels. That way, rebuilding won't need lengths."}},"public":true,"created_at":"2015-01-01T15:13:12Z","org":{"id":450574,"login":"haskell","gravatar_id":"","url":"https://api.github.com/orgs/haskell","avatar_url":"https://avatars.githubusercontent.com/u/450574?"}} +,{"id":"2489657173","type":"PushEvent","actor":{"id":5207740,"login":"deavmi","gravatar_id":"","url":"https://api.github.com/users/deavmi","avatar_url":"https://avatars.githubusercontent.com/u/5207740?"},"repo":{"id":28594765,"name":"TermLang/TermLang","url":"https://api.github.com/repos/TermLang/TermLang"},"payload":{"push_id":536866718,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5d5b864455fb46663c114d22296d11138e831870","before":"3bc8fe4eb7f388e9d28ed9256e8b7c867f99477f","commits":[{"sha":"5d5b864455fb46663c114d22296d11138e831870","author":{"email":"fa6aee1990af62bf51cd97811e799a79793c3c18@gmail.com","name":"Tristan B. Kildaire"},"message":"Some code.","distinct":true,"url":"https://api.github.com/repos/TermLang/TermLang/commits/5d5b864455fb46663c114d22296d11138e831870"}]},"public":true,"created_at":"2015-01-01T15:13:12Z","org":{"id":10340174,"login":"TermLang","gravatar_id":"","url":"https://api.github.com/orgs/TermLang","avatar_url":"https://avatars.githubusercontent.com/u/10340174?"}} +,{"id":"2489657174","type":"PushEvent","actor":{"id":50245,"login":"bkuhlmann","gravatar_id":"","url":"https://api.github.com/users/bkuhlmann","avatar_url":"https://avatars.githubusercontent.com/u/50245?"},"repo":{"id":1335198,"name":"bkuhlmann/linguist","url":"https://api.github.com/repos/bkuhlmann/linguist"},"payload":{"push_id":536866719,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8bdbb47817b1b4fee5cc882d347632808fed0c5b","before":"7670d7d72de960c06465180134c33d101f858c18","commits":[{"sha":"8bdbb47817b1b4fee5cc882d347632808fed0c5b","author":{"email":"e3c3d31cd5aa58e7e8e4ffcf313c9e54154baee1@alchemists.io","name":"Brooke Kuhlmann"},"message":"Added JRuby 2.x.x syntax support to Travis CI builds. [ci skip]","distinct":true,"url":"https://api.github.com/repos/bkuhlmann/linguist/commits/8bdbb47817b1b4fee5cc882d347632808fed0c5b"}]},"public":true,"created_at":"2015-01-01T15:13:12Z"} +,{"id":"2489657177","type":"PushEvent","actor":{"id":50245,"login":"bkuhlmann","gravatar_id":"","url":"https://api.github.com/users/bkuhlmann","avatar_url":"https://avatars.githubusercontent.com/u/50245?"},"repo":{"id":4027975,"name":"bkuhlmann/log_plus","url":"https://api.github.com/repos/bkuhlmann/log_plus"},"payload":{"push_id":536866723,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c5198eb6909696678cd2d5061f9703d367d9ab4b","before":"644d83f2f64828e947d1b4f8ec1f6d871e038d35","commits":[{"sha":"c5198eb6909696678cd2d5061f9703d367d9ab4b","author":{"email":"e3c3d31cd5aa58e7e8e4ffcf313c9e54154baee1@alchemists.io","name":"Brooke Kuhlmann"},"message":"Added JRuby 2.x.x syntax support to Travis CI builds. [ci skip]","distinct":true,"url":"https://api.github.com/repos/bkuhlmann/log_plus/commits/c5198eb6909696678cd2d5061f9703d367d9ab4b"}]},"public":true,"created_at":"2015-01-01T15:13:13Z"} +,{"id":"2489657179","type":"PushEvent","actor":{"id":1145180,"login":"Happy0","gravatar_id":"","url":"https://api.github.com/users/Happy0","avatar_url":"https://avatars.githubusercontent.com/u/1145180?"},"repo":{"id":4350848,"name":"ornicar/scalachess","url":"https://api.github.com/repos/ornicar/scalachess"},"payload":{"push_id":536866721,"size":1,"distinct_size":1,"ref":"refs/heads/atomic_chess","head":"5cecb35850e80ce094898af3b01c2d07fdcfc51b","before":"0666b6d9d35e964b16696c6ca11f6d53cf0ae201","commits":[{"sha":"5cecb35850e80ce094898af3b01c2d07fdcfc51b","author":{"email":"955b4e6522621749e0e4054f4a46a4d6a64f636a@gmail.com","name":"Gordon Martin"},"message":"Adding atomic chess to the list of all variants.","distinct":true,"url":"https://api.github.com/repos/ornicar/scalachess/commits/5cecb35850e80ce094898af3b01c2d07fdcfc51b"}]},"public":true,"created_at":"2015-01-01T15:13:13Z"} +,{"id":"2489657180","type":"PushEvent","actor":{"id":2416396,"login":"Bowevil","gravatar_id":"","url":"https://api.github.com/users/Bowevil","avatar_url":"https://avatars.githubusercontent.com/u/2416396?"},"repo":{"id":26403734,"name":"Bowevil/oandg-website","url":"https://api.github.com/repos/Bowevil/oandg-website"},"payload":{"push_id":536866725,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ac6c9c7142b678c0e94aac36a3c6574630748504","before":"51c2e7e82f0d8fe3a06f5a66dd6fc72f524606c5","commits":[{"sha":"ac6c9c7142b678c0e94aac36a3c6574630748504","author":{"email":"4dff2641818cac1db4eae32a750b1484dd24ec02@mindspring.com","name":"Michael Tripp"},"message":"update to modules","distinct":true,"url":"https://api.github.com/repos/Bowevil/oandg-website/commits/ac6c9c7142b678c0e94aac36a3c6574630748504"}]},"public":true,"created_at":"2015-01-01T15:13:14Z"} +,{"id":"2489657181","type":"CreateEvent","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":{"ref":"EndOf#369","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:14Z","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":"2489657182","type":"WatchEvent","actor":{"id":4613916,"login":"guvarallo","gravatar_id":"","url":"https://api.github.com/users/guvarallo","avatar_url":"https://avatars.githubusercontent.com/u/4613916?"},"repo":{"id":4095287,"name":"bbatsov/rubocop","url":"https://api.github.com/repos/bbatsov/rubocop"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:13:14Z"} +,{"id":"2489657183","type":"PushEvent","actor":{"id":50245,"login":"bkuhlmann","gravatar_id":"","url":"https://api.github.com/users/bkuhlmann","avatar_url":"https://avatars.githubusercontent.com/u/50245?"},"repo":{"id":3756815,"name":"bkuhlmann/pennyworth","url":"https://api.github.com/repos/bkuhlmann/pennyworth"},"payload":{"push_id":536866726,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"514b92649419e6b65b3cdcdb7bc899bbb8457a35","before":"7ebb2514bffbc394383a090475a9a54100dea962","commits":[{"sha":"514b92649419e6b65b3cdcdb7bc899bbb8457a35","author":{"email":"e3c3d31cd5aa58e7e8e4ffcf313c9e54154baee1@alchemists.io","name":"Brooke Kuhlmann"},"message":"Added JRuby 2.x.x syntax support to Travis CI builds. [ci skip]","distinct":true,"url":"https://api.github.com/repos/bkuhlmann/pennyworth/commits/514b92649419e6b65b3cdcdb7bc899bbb8457a35"}]},"public":true,"created_at":"2015-01-01T15:13:14Z"} +,{"id":"2489657184","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":536866728,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"c320cc4f9c6f9ef891a59a807124e359ebfa1d2b","before":"bee80526d2ab633bff100700e3209eb6892aeed6","commits":[{"sha":"a47aff7de53f46a663915400dbf3ff414a63f01f","author":{"email":"d1b928b8d508e3f66cae7957e98afb6318e80cde@GMAIL.COM","name":"JORGE POLANCO"},"message":"check to see whether the item we’re rendering is the one that just changed","distinct":true,"url":"https://api.github.com/repos/drjorgepolanco/depot/commits/a47aff7de53f46a663915400dbf3ff414a63f01f"},{"sha":"c320cc4f9c6f9ef891a59a807124e359ebfa1d2b","author":{"email":"d1b928b8d508e3f66cae7957e98afb6318e80cde@GMAIL.COM","name":"JORGE POLANCO"},"message":"change the background color to one that will catch the eye and then to gradually change it back","distinct":true,"url":"https://api.github.com/repos/drjorgepolanco/depot/commits/c320cc4f9c6f9ef891a59a807124e359ebfa1d2b"}]},"public":true,"created_at":"2015-01-01T15:13:14Z"} +,{"id":"2489657186","type":"PushEvent","actor":{"id":50245,"login":"bkuhlmann","gravatar_id":"","url":"https://api.github.com/users/bkuhlmann","avatar_url":"https://avatars.githubusercontent.com/u/50245?"},"repo":{"id":16301820,"name":"bkuhlmann/sublime_text_kit","url":"https://api.github.com/repos/bkuhlmann/sublime_text_kit"},"payload":{"push_id":536866729,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"aaefb26cafd66b395fe1b66d9e4a1863f4dcdb49","before":"bd396cab73f4a6a4a050cb85d1b429a4c44a5e96","commits":[{"sha":"aaefb26cafd66b395fe1b66d9e4a1863f4dcdb49","author":{"email":"e3c3d31cd5aa58e7e8e4ffcf313c9e54154baee1@alchemists.io","name":"Brooke Kuhlmann"},"message":"Added JRuby 2.x.x syntax support to Travis CI builds. [ci skip]","distinct":true,"url":"https://api.github.com/repos/bkuhlmann/sublime_text_kit/commits/aaefb26cafd66b395fe1b66d9e4a1863f4dcdb49"}]},"public":true,"created_at":"2015-01-01T15:13:15Z"} +,{"id":"2489657188","type":"PushEvent","actor":{"id":50245,"login":"bkuhlmann","gravatar_id":"","url":"https://api.github.com/users/bkuhlmann","avatar_url":"https://avatars.githubusercontent.com/u/50245?"},"repo":{"id":2671645,"name":"bkuhlmann/thor_plus","url":"https://api.github.com/repos/bkuhlmann/thor_plus"},"payload":{"push_id":536866731,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9d011fec3594231700b7ccf46ea4d280cd379180","before":"c4480c148056460354dafda0ebf1cbcb12bdfe1a","commits":[{"sha":"9d011fec3594231700b7ccf46ea4d280cd379180","author":{"email":"e3c3d31cd5aa58e7e8e4ffcf313c9e54154baee1@alchemists.io","name":"Brooke Kuhlmann"},"message":"Added JRuby 2.x.x syntax support to Travis CI builds. [ci skip]","distinct":true,"url":"https://api.github.com/repos/bkuhlmann/thor_plus/commits/9d011fec3594231700b7ccf46ea4d280cd379180"}]},"public":true,"created_at":"2015-01-01T15:13:15Z"} +,{"id":"2489657189","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":28688435,"name":"brunocarvalhodearaujo/api","url":"https://api.github.com/repos/brunocarvalhodearaujo/api"},"payload":{"ref":"0.3","ref_type":"tag","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:16Z"} +,{"id":"2489657190","type":"ReleaseEvent","actor":{"id":1646422,"login":"brunocarvalhodearaujo","gravatar_id":"","url":"https://api.github.com/users/brunocarvalhodearaujo","avatar_url":"https://avatars.githubusercontent.com/u/1646422?"},"repo":{"id":28688435,"name":"brunocarvalhodearaujo/api","url":"https://api.github.com/repos/brunocarvalhodearaujo/api"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/brunocarvalhodearaujo/api/releases/818698","assets_url":"https://api.github.com/repos/brunocarvalhodearaujo/api/releases/818698/assets","upload_url":"https://uploads.github.com/repos/brunocarvalhodearaujo/api/releases/818698/assets{?name}","html_url":"https://github.com/brunocarvalhodearaujo/api/releases/tag/0.3","id":818698,"tag_name":"0.3","target_commitish":"master","name":"","draft":false,"author":{"login":"brunocarvalhodearaujo","id":1646422,"avatar_url":"https://avatars.githubusercontent.com/u/1646422?v=3","gravatar_id":"","url":"https://api.github.com/users/brunocarvalhodearaujo","html_url":"https://github.com/brunocarvalhodearaujo","followers_url":"https://api.github.com/users/brunocarvalhodearaujo/followers","following_url":"https://api.github.com/users/brunocarvalhodearaujo/following{/other_user}","gists_url":"https://api.github.com/users/brunocarvalhodearaujo/gists{/gist_id}","starred_url":"https://api.github.com/users/brunocarvalhodearaujo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/brunocarvalhodearaujo/subscriptions","organizations_url":"https://api.github.com/users/brunocarvalhodearaujo/orgs","repos_url":"https://api.github.com/users/brunocarvalhodearaujo/repos","events_url":"https://api.github.com/users/brunocarvalhodearaujo/events{/privacy}","received_events_url":"https://api.github.com/users/brunocarvalhodearaujo/received_events","type":"User","site_admin":false},"prerelease":false,"created_at":"2014-12-27T02:16:59Z","published_at":"2015-01-01T15:13:15Z","assets":[],"tarball_url":"https://api.github.com/repos/brunocarvalhodearaujo/api/tarball/0.3","zipball_url":"https://api.github.com/repos/brunocarvalhodearaujo/api/zipball/0.3","body":""}},"public":true,"created_at":"2015-01-01T15:13:16Z"} +,{"id":"2489657192","type":"IssueCommentEvent","actor":{"id":2983714,"login":"RichOliver","gravatar_id":"","url":"https://api.github.com/users/RichOliver","avatar_url":"https://avatars.githubusercontent.com/u/2983714?"},"repo":{"id":5636552,"name":"runarorama/runarorama.github.com","url":"https://api.github.com/repos/runarorama/runarorama.github.com"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/runarorama/runarorama.github.com/issues/12","labels_url":"https://api.github.com/repos/runarorama/runarorama.github.com/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/runarorama/runarorama.github.com/issues/12/comments","events_url":"https://api.github.com/repos/runarorama/runarorama.github.com/issues/12/events","html_url":"https://github.com/runarorama/runarorama.github.com/issues/12","id":52619033,"number":12,"title":"Maximally Powerful, Minimally Useful","user":{"login":"runarorama","id":130916,"avatar_url":"https://avatars.githubusercontent.com/u/130916?v=3","gravatar_id":"","url":"https://api.github.com/users/runarorama","html_url":"https://github.com/runarorama","followers_url":"https://api.github.com/users/runarorama/followers","following_url":"https://api.github.com/users/runarorama/following{/other_user}","gists_url":"https://api.github.com/users/runarorama/gists{/gist_id}","starred_url":"https://api.github.com/users/runarorama/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/runarorama/subscriptions","organizations_url":"https://api.github.com/users/runarorama/orgs","repos_url":"https://api.github.com/users/runarorama/repos","events_url":"https://api.github.com/users/runarorama/events{/privacy}","received_events_url":"https://api.github.com/users/runarorama/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":15,"created_at":"2014-12-22T04:26:54Z","updated_at":"2015-01-01T15:13:16Z","closed_at":null,"body":"This issue is for comments on http://blog.higher-order.com/blog/2014/12/21/maximally-powerful/\r\n\r\nLeave your comments here and they will automatically show up on the post's page."},"comment":{"url":"https://api.github.com/repos/runarorama/runarorama.github.com/issues/comments/68488769","html_url":"https://github.com/runarorama/runarorama.github.com/issues/12#issuecomment-68488769","issue_url":"https://api.github.com/repos/runarorama/runarorama.github.com/issues/12","id":68488769,"user":{"login":"RichOliver","id":2983714,"avatar_url":"https://avatars.githubusercontent.com/u/2983714?v=3","gravatar_id":"","url":"https://api.github.com/users/RichOliver","html_url":"https://github.com/RichOliver","followers_url":"https://api.github.com/users/RichOliver/followers","following_url":"https://api.github.com/users/RichOliver/following{/other_user}","gists_url":"https://api.github.com/users/RichOliver/gists{/gist_id}","starred_url":"https://api.github.com/users/RichOliver/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RichOliver/subscriptions","organizations_url":"https://api.github.com/users/RichOliver/orgs","repos_url":"https://api.github.com/users/RichOliver/repos","events_url":"https://api.github.com/users/RichOliver/events{/privacy}","received_events_url":"https://api.github.com/users/RichOliver/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:13:16Z","updated_at":"2015-01-01T15:13:16Z","body":"\"Some might notice an analogy between the Principle of Least Privilege and the idea of a constitutionally limited government. An absolute dictatorship or pure democracy will have absolute power to enact whatever whim strikes the ruler or majority at the moment. But the overall stability, security, and freedom of the people is greatly enhanced by the presence of legal limits on the power of the government. A limited constitutional republic also makes for a better neighbor to other states.\"\r\n\r\nI'm not sure exactly what you mean here but the United States and Canada spring to mind as a a real life experiment of the virtues of a limited Constitutional Republic. Given their starting points at separation. Canada, with its constitutionally less limited government, has been an overwhelming success. Remember so little valued was Canada that the British government would have preferred to give Canada back to France and keep Guadeloupe at the conclusion of the Seven Years War. Australia and New Zealand are other examples of the virtue of unlimited government. The Iranian Islamic Republic is another example of the defectiveness of constitutionally limited democracy.\r\n\r\nThe United States was gifted with an immense inherited stability. It had a huge yeomanry class, unlike land hungry Europe and Asia, with its ensuing high levels of inequality and class division. It had immense potential for prosperity and growth, given its English cultural inheritance, its low population density, its vast natural resources and its lack of powerful continental competitors. Its dysfunctional constitution managed to make it highly unstable, leading to a civil war within seventy years of its creation. Bleeding Kansas is another example of this highly unstable dysfunctional form of government. So unstable was the political system that the death of one man: Abraham Lincoln allowed the institution of the Jim Crow system. Itself leading to Constitutional crisis and political instability in the nineteen fifties and sixties, and riots in major cities on a scale unseen in Canada or most of western Europe.\r\n\r\nOne could also look at the deleterious effect of America's constitution on the their disastrous intervention in European great power conflict in the first half of the twentieth century up to the government shut downs or threatened shut-downs of budget negotiations of recent years. Not to mention thinking through what it would mean if America actually followed its constitution: do you really want private citizens to be able to own shoulder launched anti aircraft weapon as is their entitlement under the Second Amendment.\r\n\r\nI was rather split on posting this, because on the one hand I don't wish to bring tiresome political arguments into a potentially educational programming discussion, but on the other hand I don't like to see Libertarian tropes go unchallenged. "}},"public":true,"created_at":"2015-01-01T15:13:16Z"} +,{"id":"2489657193","type":"WatchEvent","actor":{"id":531569,"login":"ahmetunal","gravatar_id":"","url":"https://api.github.com/users/ahmetunal","avatar_url":"https://avatars.githubusercontent.com/u/531569?"},"repo":{"id":943149,"name":"mbostock/d3","url":"https://api.github.com/repos/mbostock/d3"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:13:16Z"} +,{"id":"2489657194","type":"ForkEvent","actor":{"id":3026597,"login":"duralog","gravatar_id":"","url":"https://api.github.com/users/duralog","avatar_url":"https://avatars.githubusercontent.com/u/3026597?"},"repo":{"id":5801248,"name":"bcle/fuse4js","url":"https://api.github.com/repos/bcle/fuse4js"},"payload":{"forkee":{"id":28688845,"name":"fuse4js","full_name":"duralog/fuse4js","owner":{"login":"duralog","id":3026597,"avatar_url":"https://avatars.githubusercontent.com/u/3026597?v=3","gravatar_id":"","url":"https://api.github.com/users/duralog","html_url":"https://github.com/duralog","followers_url":"https://api.github.com/users/duralog/followers","following_url":"https://api.github.com/users/duralog/following{/other_user}","gists_url":"https://api.github.com/users/duralog/gists{/gist_id}","starred_url":"https://api.github.com/users/duralog/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/duralog/subscriptions","organizations_url":"https://api.github.com/users/duralog/orgs","repos_url":"https://api.github.com/users/duralog/repos","events_url":"https://api.github.com/users/duralog/events{/privacy}","received_events_url":"https://api.github.com/users/duralog/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/duralog/fuse4js","description":"FUSE bindings for Javascript and node.js","fork":true,"url":"https://api.github.com/repos/duralog/fuse4js","forks_url":"https://api.github.com/repos/duralog/fuse4js/forks","keys_url":"https://api.github.com/repos/duralog/fuse4js/keys{/key_id}","collaborators_url":"https://api.github.com/repos/duralog/fuse4js/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/duralog/fuse4js/teams","hooks_url":"https://api.github.com/repos/duralog/fuse4js/hooks","issue_events_url":"https://api.github.com/repos/duralog/fuse4js/issues/events{/number}","events_url":"https://api.github.com/repos/duralog/fuse4js/events","assignees_url":"https://api.github.com/repos/duralog/fuse4js/assignees{/user}","branches_url":"https://api.github.com/repos/duralog/fuse4js/branches{/branch}","tags_url":"https://api.github.com/repos/duralog/fuse4js/tags","blobs_url":"https://api.github.com/repos/duralog/fuse4js/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/duralog/fuse4js/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/duralog/fuse4js/git/refs{/sha}","trees_url":"https://api.github.com/repos/duralog/fuse4js/git/trees{/sha}","statuses_url":"https://api.github.com/repos/duralog/fuse4js/statuses/{sha}","languages_url":"https://api.github.com/repos/duralog/fuse4js/languages","stargazers_url":"https://api.github.com/repos/duralog/fuse4js/stargazers","contributors_url":"https://api.github.com/repos/duralog/fuse4js/contributors","subscribers_url":"https://api.github.com/repos/duralog/fuse4js/subscribers","subscription_url":"https://api.github.com/repos/duralog/fuse4js/subscription","commits_url":"https://api.github.com/repos/duralog/fuse4js/commits{/sha}","git_commits_url":"https://api.github.com/repos/duralog/fuse4js/git/commits{/sha}","comments_url":"https://api.github.com/repos/duralog/fuse4js/comments{/number}","issue_comment_url":"https://api.github.com/repos/duralog/fuse4js/issues/comments/{number}","contents_url":"https://api.github.com/repos/duralog/fuse4js/contents/{+path}","compare_url":"https://api.github.com/repos/duralog/fuse4js/compare/{base}...{head}","merges_url":"https://api.github.com/repos/duralog/fuse4js/merges","archive_url":"https://api.github.com/repos/duralog/fuse4js/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/duralog/fuse4js/downloads","issues_url":"https://api.github.com/repos/duralog/fuse4js/issues{/number}","pulls_url":"https://api.github.com/repos/duralog/fuse4js/pulls{/number}","milestones_url":"https://api.github.com/repos/duralog/fuse4js/milestones{/number}","notifications_url":"https://api.github.com/repos/duralog/fuse4js/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/duralog/fuse4js/labels{/name}","releases_url":"https://api.github.com/repos/duralog/fuse4js/releases{/id}","created_at":"2015-01-01T15:13:16Z","updated_at":"2014-12-31T05:53:48Z","pushed_at":"2014-12-23T08:02:23Z","git_url":"git://github.com/duralog/fuse4js.git","ssh_url":"git@github.com:duralog/fuse4js.git","clone_url":"https://github.com/duralog/fuse4js.git","svn_url":"https://github.com/duralog/fuse4js","homepage":null,"size":440,"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:13:16Z"} +,{"id":"2489657196","type":"GollumEvent","actor":{"id":10333363,"login":"dougmeredith","gravatar_id":"","url":"https://api.github.com/users/dougmeredith","avatar_url":"https://avatars.githubusercontent.com/u/10333363?"},"repo":{"id":12983151,"name":"openhab/openhab","url":"https://api.github.com/repos/openhab/openhab"},"payload":{"pages":[{"page_name":"xPL-Binding","title":"xPL Binding","summary":null,"action":"edited","sha":"42bad0b02f4082d5c34faddf3f7cbcb5585f5b81","html_url":"https://github.com/openhab/openhab/wiki/xPL-Binding"}]},"public":true,"created_at":"2015-01-01T15:13:16Z","org":{"id":1007353,"login":"openhab","gravatar_id":"","url":"https://api.github.com/orgs/openhab","avatar_url":"https://avatars.githubusercontent.com/u/1007353?"}} +,{"id":"2489657198","type":"CreateEvent","actor":{"id":5458742,"login":"GuiCarneiro","gravatar_id":"","url":"https://api.github.com/users/GuiCarneiro","avatar_url":"https://avatars.githubusercontent.com/u/5458742?"},"repo":{"id":22294779,"name":"GTi-Jr/CRM","url":"https://api.github.com/repos/GTi-Jr/CRM"},"payload":{"ref":"design","ref_type":"branch","master_branch":"master","description":"GTi's Customer Relationship Manager","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:17Z","org":{"id":6828491,"login":"GTi-Jr","gravatar_id":"","url":"https://api.github.com/orgs/GTi-Jr","avatar_url":"https://avatars.githubusercontent.com/u/6828491?"}} +,{"id":"2489657200","type":"PushEvent","actor":{"id":373331,"login":"korczis","gravatar_id":"","url":"https://api.github.com/users/korczis","avatar_url":"https://avatars.githubusercontent.com/u/373331?"},"repo":{"id":16419614,"name":"korczis/microscratch","url":"https://api.github.com/repos/korczis/microscratch"},"payload":{"push_id":536866735,"size":78,"distinct_size":2,"ref":"refs/heads/master","head":"7ebc4f7caf9316216afdbd4ad775c1b2fc81158e","before":"ab20cbea366ffd1cbc0a867e38909604e4f207ae","commits":[{"sha":"fc45bfd7ba7de938f18a3e760bd4ebdff8268408","author":{"email":"076096d1622bc2db3fc9f531fc39438bf9d13ed0@gmail.com","name":"Tomas Korcak"},"message":"Initial commit","distinct":false,"url":"https://api.github.com/repos/korczis/microscratch/commits/fc45bfd7ba7de938f18a3e760bd4ebdff8268408"},{"sha":"82264ae88d3d553dc2d5b0bfdf336d3efd15afd0","author":{"email":"076096d1622bc2db3fc9f531fc39438bf9d13ed0@gmail.com","name":"Tomas Korcak"},"message":"Prototype","distinct":false,"url":"https://api.github.com/repos/korczis/microscratch/commits/82264ae88d3d553dc2d5b0bfdf336d3efd15afd0"},{"sha":"aed1f9beadbdf7708a1ef472a0e2672c1ee0c974","author":{"email":"076096d1622bc2db3fc9f531fc39438bf9d13ed0@gmail.com","name":"Tomas Korcak"},"message":"Prototype ...","distinct":false,"url":"https://api.github.com/repos/korczis/microscratch/commits/aed1f9beadbdf7708a1ef472a0e2672c1ee0c974"},{"sha":"2753eca7f364e12874ba999f5688dccc917bd4ae","author":{"email":"076096d1622bc2db3fc9f531fc39438bf9d13ed0@gmail.com","name":"Tomas Korcak"},"message":"Still prototype","distinct":false,"url":"https://api.github.com/repos/korczis/microscratch/commits/2753eca7f364e12874ba999f5688dccc917bd4ae"},{"sha":"76e0bf0508a258acc90454b7a4a71cca205cd73e","author":{"email":"076096d1622bc2db3fc9f531fc39438bf9d13ed0@gmail.com","name":"Tomas Korcak"},"message":"Added .travis.yml","distinct":false,"url":"https://api.github.com/repos/korczis/microscratch/commits/76e0bf0508a258acc90454b7a4a71cca205cd73e"},{"sha":"687b19f022cbcf56c2cb11132fb1d9ccae356373","author":{"email":"076096d1622bc2db3fc9f531fc39438bf9d13ed0@gmail.com","name":"Tomas Korcak"},"message":"Show better title","distinct":false,"url":"https://api.github.com/repos/korczis/microscratch/commits/687b19f022cbcf56c2cb11132fb1d9ccae356373"},{"sha":"3a046ee346f9b82db6cc791dc5058e15cf68d4fc","author":{"email":"076096d1622bc2db3fc9f531fc39438bf9d13ed0@gmail.com","name":"Tomas Korcak"},"message":"Use faster builds\n\nSee http://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/","distinct":false,"url":"https://api.github.com/repos/korczis/microscratch/commits/3a046ee346f9b82db6cc791dc5058e15cf68d4fc"},{"sha":"1e5379fa12dbbcb9f96e6b0b7b0e500530a8592d","author":{"email":"076096d1622bc2db3fc9f531fc39438bf9d13ed0@gmail.com","name":"Tomas Korcak"},"message":"Ignore IntelliJ IDEA project","distinct":false,"url":"https://api.github.com/repos/korczis/microscratch/commits/1e5379fa12dbbcb9f96e6b0b7b0e500530a8592d"},{"sha":"54895a200d431ae41f28137bc91c5399c4a93d2d","author":{"email":"076096d1622bc2db3fc9f531fc39438bf9d13ed0@gmail.com","name":"Tomas Korcak"},"message":"Empty test to test Travis CI","distinct":false,"url":"https://api.github.com/repos/korczis/microscratch/commits/54895a200d431ae41f28137bc91c5399c4a93d2d"},{"sha":"a4b7271ba61d2de247eaf12c7b84f9ae62253ae4","author":{"email":"076096d1622bc2db3fc9f531fc39438bf9d13ed0@gmail.com","name":"Tomas Korcak"},"message":"Prototype","distinct":false,"url":"https://api.github.com/repos/korczis/microscratch/commits/a4b7271ba61d2de247eaf12c7b84f9ae62253ae4"},{"sha":"8dddacd2a57e90aed9e31267ceab6617fd14a25e","author":{"email":"076096d1622bc2db3fc9f531fc39438bf9d13ed0@gmail.com","name":"Tomas Korcak"},"message":"Test","distinct":false,"url":"https://api.github.com/repos/korczis/microscratch/commits/8dddacd2a57e90aed9e31267ceab6617fd14a25e"},{"sha":"7d011c1bb0a8ce7c71cac5f6660e4101f2774392","author":{"email":"076096d1622bc2db3fc9f531fc39438bf9d13ed0@gmail.com","name":"Tomas Korcak"},"message":"Cosmetics of prototype","distinct":false,"url":"https://api.github.com/repos/korczis/microscratch/commits/7d011c1bb0a8ce7c71cac5f6660e4101f2774392"},{"sha":"20c9d67dafa887334b5864c4bb7498eaf6e93fb2","author":{"email":"076096d1622bc2db3fc9f531fc39438bf9d13ed0@gmail.com","name":"Tomas Korcak"},"message":"Prototype","distinct":false,"url":"https://api.github.com/repos/korczis/microscratch/commits/20c9d67dafa887334b5864c4bb7498eaf6e93fb2"},{"sha":"ec508aeac294cc6ca3ef296dae9c5554ad89bdbc","author":{"email":"076096d1622bc2db3fc9f531fc39438bf9d13ed0@gmail.com","name":"Tomas Korcak"},"message":"Main div","distinct":false,"url":"https://api.github.com/repos/korczis/microscratch/commits/ec508aeac294cc6ca3ef296dae9c5554ad89bdbc"},{"sha":"99cee9efd108c429192b73dd6cfd2cc4f8e50c06","author":{"email":"076096d1622bc2db3fc9f531fc39438bf9d13ed0@gmail.com","name":"Tomas Korcak"},"message":"Fix case","distinct":false,"url":"https://api.github.com/repos/korczis/microscratch/commits/99cee9efd108c429192b73dd6cfd2cc4f8e50c06"},{"sha":"eaadc8e230df8de249c7d8e10b7280f6bfa0091a","author":{"email":"076096d1622bc2db3fc9f531fc39438bf9d13ed0@gmail.com","name":"Tomas Korcak"},"message":"Working fetch users","distinct":false,"url":"https://api.github.com/repos/korczis/microscratch/commits/eaadc8e230df8de249c7d8e10b7280f6bfa0091a"},{"sha":"99a30571965414c0a9f80b248d57dc8396aa9d63","author":{"email":"076096d1622bc2db3fc9f531fc39438bf9d13ed0@gmail.com","name":"Tomas Korcak"},"message":"Fix","distinct":false,"url":"https://api.github.com/repos/korczis/microscratch/commits/99a30571965414c0a9f80b248d57dc8396aa9d63"},{"sha":"0493cdb8bdd5eca9200dfdd54fc3b43987550bcd","author":{"email":"076096d1622bc2db3fc9f531fc39438bf9d13ed0@gmail.com","name":"Tomas Korcak"},"message":"Cosmetics","distinct":false,"url":"https://api.github.com/repos/korczis/microscratch/commits/0493cdb8bdd5eca9200dfdd54fc3b43987550bcd"},{"sha":"ad391013eb0b0fa4b78074feb40cb84ed109dfe0","author":{"email":"076096d1622bc2db3fc9f531fc39438bf9d13ed0@gmail.com","name":"Tomas Korcak"},"message":"Debug output","distinct":false,"url":"https://api.github.com/repos/korczis/microscratch/commits/ad391013eb0b0fa4b78074feb40cb84ed109dfe0"},{"sha":"4e7f73f319232d87f67ea3e691b8934b2643a822","author":{"email":"076096d1622bc2db3fc9f531fc39438bf9d13ed0@gmail.com","name":"Tomas Korcak"},"message":"Attempt to fix crash on remote domain","distinct":false,"url":"https://api.github.com/repos/korczis/microscratch/commits/4e7f73f319232d87f67ea3e691b8934b2643a822"}]},"public":true,"created_at":"2015-01-01T15:13:17Z"} +,{"id":"2489657205","type":"PullRequestEvent","actor":{"id":6568110,"login":"dostodabsi","gravatar_id":"","url":"https://api.github.com/users/dostodabsi","avatar_url":"https://avatars.githubusercontent.com/u/6568110?"},"repo":{"id":6106340,"name":"JuliaLang/METADATA.jl","url":"https://api.github.com/repos/JuliaLang/METADATA.jl"},"payload":{"action":"reopened","number":1933,"pull_request":{"url":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/1933","id":26743839,"html_url":"https://github.com/JuliaLang/METADATA.jl/pull/1933","diff_url":"https://github.com/JuliaLang/METADATA.jl/pull/1933.diff","patch_url":"https://github.com/JuliaLang/METADATA.jl/pull/1933.patch","issue_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/1933","number":1933,"state":"open","locked":false,"title":"Pull request/9f37988e","user":{"login":"dostodabsi","id":6568110,"avatar_url":"https://avatars.githubusercontent.com/u/6568110?v=3","gravatar_id":"","url":"https://api.github.com/users/dostodabsi","html_url":"https://github.com/dostodabsi","followers_url":"https://api.github.com/users/dostodabsi/followers","following_url":"https://api.github.com/users/dostodabsi/following{/other_user}","gists_url":"https://api.github.com/users/dostodabsi/gists{/gist_id}","starred_url":"https://api.github.com/users/dostodabsi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dostodabsi/subscriptions","organizations_url":"https://api.github.com/users/dostodabsi/orgs","repos_url":"https://api.github.com/users/dostodabsi/repos","events_url":"https://api.github.com/users/dostodabsi/events{/privacy}","received_events_url":"https://api.github.com/users/dostodabsi/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:08:54Z","updated_at":"2015-01-01T15:13:17Z","closed_at":null,"merged_at":null,"merge_commit_sha":"d478294a4c31886fc77999d97689bea9142f4c9c","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/1933/commits","review_comments_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/1933/comments","review_comment_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/comments/{number}","comments_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/1933/comments","statuses_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/statuses/9f37988ecdf5cfc9e7427d3eeab90e6bc67a382d","head":{"label":"dostodabsi:pull-request/9f37988e","ref":"pull-request/9f37988e","sha":"9f37988ecdf5cfc9e7427d3eeab90e6bc67a382d","user":{"login":"dostodabsi","id":6568110,"avatar_url":"https://avatars.githubusercontent.com/u/6568110?v=3","gravatar_id":"","url":"https://api.github.com/users/dostodabsi","html_url":"https://github.com/dostodabsi","followers_url":"https://api.github.com/users/dostodabsi/followers","following_url":"https://api.github.com/users/dostodabsi/following{/other_user}","gists_url":"https://api.github.com/users/dostodabsi/gists{/gist_id}","starred_url":"https://api.github.com/users/dostodabsi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dostodabsi/subscriptions","organizations_url":"https://api.github.com/users/dostodabsi/orgs","repos_url":"https://api.github.com/users/dostodabsi/repos","events_url":"https://api.github.com/users/dostodabsi/events{/privacy}","received_events_url":"https://api.github.com/users/dostodabsi/received_events","type":"User","site_admin":false},"repo":{"id":28687059,"name":"METADATA.jl","full_name":"dostodabsi/METADATA.jl","owner":{"login":"dostodabsi","id":6568110,"avatar_url":"https://avatars.githubusercontent.com/u/6568110?v=3","gravatar_id":"","url":"https://api.github.com/users/dostodabsi","html_url":"https://github.com/dostodabsi","followers_url":"https://api.github.com/users/dostodabsi/followers","following_url":"https://api.github.com/users/dostodabsi/following{/other_user}","gists_url":"https://api.github.com/users/dostodabsi/gists{/gist_id}","starred_url":"https://api.github.com/users/dostodabsi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dostodabsi/subscriptions","organizations_url":"https://api.github.com/users/dostodabsi/orgs","repos_url":"https://api.github.com/users/dostodabsi/repos","events_url":"https://api.github.com/users/dostodabsi/events{/privacy}","received_events_url":"https://api.github.com/users/dostodabsi/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/dostodabsi/METADATA.jl","description":"Metadata for registered Julia packages.","fork":true,"url":"https://api.github.com/repos/dostodabsi/METADATA.jl","forks_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/forks","keys_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/keys{/key_id}","collaborators_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/teams","hooks_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/hooks","issue_events_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/issues/events{/number}","events_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/events","assignees_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/assignees{/user}","branches_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/branches{/branch}","tags_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/tags","blobs_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/git/refs{/sha}","trees_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/git/trees{/sha}","statuses_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/statuses/{sha}","languages_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/languages","stargazers_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/stargazers","contributors_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/contributors","subscribers_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/subscribers","subscription_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/subscription","commits_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/commits{/sha}","git_commits_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/git/commits{/sha}","comments_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/comments{/number}","issue_comment_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/issues/comments/{number}","contents_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/contents/{+path}","compare_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/compare/{base}...{head}","merges_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/merges","archive_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/downloads","issues_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/issues{/number}","pulls_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/pulls{/number}","milestones_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/milestones{/number}","notifications_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/labels{/name}","releases_url":"https://api.github.com/repos/dostodabsi/METADATA.jl/releases{/id}","created_at":"2015-01-01T13:31:57Z","updated_at":"2015-01-01T13:31:59Z","pushed_at":"2015-01-01T13:31:59Z","git_url":"git://github.com/dostodabsi/METADATA.jl.git","ssh_url":"git@github.com:dostodabsi/METADATA.jl.git","clone_url":"https://github.com/dostodabsi/METADATA.jl.git","svn_url":"https://github.com/dostodabsi/METADATA.jl","homepage":"pkg.julialang.org","size":18835,"stargazers_count":0,"watchers_count":0,"language":"Julia","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":"metadata-v2"}},"base":{"label":"JuliaLang:metadata-v2","ref":"metadata-v2","sha":"1a89d75acaea54be8659afeb482057af88fd7ab8","user":{"login":"JuliaLang","id":743164,"avatar_url":"https://avatars.githubusercontent.com/u/743164?v=3","gravatar_id":"","url":"https://api.github.com/users/JuliaLang","html_url":"https://github.com/JuliaLang","followers_url":"https://api.github.com/users/JuliaLang/followers","following_url":"https://api.github.com/users/JuliaLang/following{/other_user}","gists_url":"https://api.github.com/users/JuliaLang/gists{/gist_id}","starred_url":"https://api.github.com/users/JuliaLang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JuliaLang/subscriptions","organizations_url":"https://api.github.com/users/JuliaLang/orgs","repos_url":"https://api.github.com/users/JuliaLang/repos","events_url":"https://api.github.com/users/JuliaLang/events{/privacy}","received_events_url":"https://api.github.com/users/JuliaLang/received_events","type":"Organization","site_admin":false},"repo":{"id":6106340,"name":"METADATA.jl","full_name":"JuliaLang/METADATA.jl","owner":{"login":"JuliaLang","id":743164,"avatar_url":"https://avatars.githubusercontent.com/u/743164?v=3","gravatar_id":"","url":"https://api.github.com/users/JuliaLang","html_url":"https://github.com/JuliaLang","followers_url":"https://api.github.com/users/JuliaLang/followers","following_url":"https://api.github.com/users/JuliaLang/following{/other_user}","gists_url":"https://api.github.com/users/JuliaLang/gists{/gist_id}","starred_url":"https://api.github.com/users/JuliaLang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JuliaLang/subscriptions","organizations_url":"https://api.github.com/users/JuliaLang/orgs","repos_url":"https://api.github.com/users/JuliaLang/repos","events_url":"https://api.github.com/users/JuliaLang/events{/privacy}","received_events_url":"https://api.github.com/users/JuliaLang/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/JuliaLang/METADATA.jl","description":"Metadata for registered Julia packages.","fork":false,"url":"https://api.github.com/repos/JuliaLang/METADATA.jl","forks_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/forks","keys_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/keys{/key_id}","collaborators_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/teams","hooks_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/hooks","issue_events_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/events{/number}","events_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/events","assignees_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/assignees{/user}","branches_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/branches{/branch}","tags_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/tags","blobs_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/git/refs{/sha}","trees_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/git/trees{/sha}","statuses_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/statuses/{sha}","languages_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/languages","stargazers_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/stargazers","contributors_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/contributors","subscribers_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/subscribers","subscription_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/subscription","commits_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/commits{/sha}","git_commits_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/git/commits{/sha}","comments_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/comments{/number}","issue_comment_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/comments/{number}","contents_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/contents/{+path}","compare_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/compare/{base}...{head}","merges_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/merges","archive_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/downloads","issues_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues{/number}","pulls_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls{/number}","milestones_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/milestones{/number}","notifications_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/labels{/name}","releases_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/releases{/id}","created_at":"2012-10-06T20:05:51Z","updated_at":"2015-01-01T04:31:52Z","pushed_at":"2015-01-01T04:31:52Z","git_url":"git://github.com/JuliaLang/METADATA.jl.git","ssh_url":"git@github.com:JuliaLang/METADATA.jl.git","clone_url":"https://github.com/JuliaLang/METADATA.jl.git","svn_url":"https://github.com/JuliaLang/METADATA.jl","homepage":"pkg.julialang.org","size":18835,"stargazers_count":59,"watchers_count":59,"language":"Julia","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":239,"mirror_url":null,"open_issues_count":5,"forks":239,"open_issues":5,"watchers":59,"default_branch":"metadata-v2"}},"_links":{"self":{"href":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/1933"},"html":{"href":"https://github.com/JuliaLang/METADATA.jl/pull/1933"},"issue":{"href":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/1933"},"comments":{"href":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/1933/comments"},"review_comments":{"href":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/1933/comments"},"review_comment":{"href":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/1933/commits"},"statuses":{"href":"https://api.github.com/repos/JuliaLang/METADATA.jl/statuses/9f37988ecdf5cfc9e7427d3eeab90e6bc67a382d"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":2,"additions":1,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:13:17Z","org":{"id":743164,"login":"JuliaLang","gravatar_id":"","url":"https://api.github.com/orgs/JuliaLang","avatar_url":"https://avatars.githubusercontent.com/u/743164?"}} +,{"id":"2489657207","type":"PushEvent","actor":{"id":8818241,"login":"webermarci","gravatar_id":"","url":"https://api.github.com/users/webermarci","avatar_url":"https://avatars.githubusercontent.com/u/8818241?"},"repo":{"id":27641258,"name":"Dominykasrr/Logic-Circuit-Sim","url":"https://api.github.com/repos/Dominykasrr/Logic-Circuit-Sim"},"payload":{"push_id":536866738,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"96dfcf2b0535436b3656548c53e401d06f773ff8","before":"95ea5ada7a62ac09ff6586c514d6812fdb5c1bb3","commits":[{"sha":"96dfcf2b0535436b3656548c53e401d06f773ff8","author":{"email":"81e8c79ca4b38f33dddb35382e9327613394103e@gmail.com","name":"Wéber Márton"},"message":"AND Gate, OR Gate\n\nCalculateOutput()s are implemented","distinct":true,"url":"https://api.github.com/repos/Dominykasrr/Logic-Circuit-Sim/commits/96dfcf2b0535436b3656548c53e401d06f773ff8"}]},"public":true,"created_at":"2015-01-01T15:13:18Z"} +,{"id":"2489657209","type":"PushEvent","actor":{"id":4627837,"login":"jessemillar","gravatar_id":"","url":"https://api.github.com/users/jessemillar","avatar_url":"https://avatars.githubusercontent.com/u/4627837?"},"repo":{"id":27008279,"name":"jessemillar/Gimbatul","url":"https://api.github.com/repos/jessemillar/Gimbatul"},"payload":{"push_id":536866740,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1fa860d9ac6f609d888e63ecfa95fd8b8635b0a5","before":"3b839899a3d3a5055602e8af1be6e4a087c14c83","commits":[{"sha":"1fa860d9ac6f609d888e63ecfa95fd8b8635b0a5","author":{"email":"0ba40b71986250aad0903c7ebcfd76a410af35fb@gmail.com","name":"Jesse Millar"},"message":"Update LICENSE.md","distinct":true,"url":"https://api.github.com/repos/jessemillar/Gimbatul/commits/1fa860d9ac6f609d888e63ecfa95fd8b8635b0a5"}]},"public":true,"created_at":"2015-01-01T15:13:18Z"} +,{"id":"2489657210","type":"ForkEvent","actor":{"id":10234913,"login":"Nephroid1","gravatar_id":"","url":"https://api.github.com/users/Nephroid1","avatar_url":"https://avatars.githubusercontent.com/u/10234913?"},"repo":{"id":3301400,"name":"MinecraftForge/MinecraftForge","url":"https://api.github.com/repos/MinecraftForge/MinecraftForge"},"payload":{"forkee":{"id":28688846,"name":"MinecraftForge","full_name":"Nephroid1/MinecraftForge","owner":{"login":"Nephroid1","id":10234913,"avatar_url":"https://avatars.githubusercontent.com/u/10234913?v=3","gravatar_id":"","url":"https://api.github.com/users/Nephroid1","html_url":"https://github.com/Nephroid1","followers_url":"https://api.github.com/users/Nephroid1/followers","following_url":"https://api.github.com/users/Nephroid1/following{/other_user}","gists_url":"https://api.github.com/users/Nephroid1/gists{/gist_id}","starred_url":"https://api.github.com/users/Nephroid1/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Nephroid1/subscriptions","organizations_url":"https://api.github.com/users/Nephroid1/orgs","repos_url":"https://api.github.com/users/Nephroid1/repos","events_url":"https://api.github.com/users/Nephroid1/events{/privacy}","received_events_url":"https://api.github.com/users/Nephroid1/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Nephroid1/MinecraftForge","description":"Modifications to the Minecraft base files to assist in compatibility between mods.","fork":true,"url":"https://api.github.com/repos/Nephroid1/MinecraftForge","forks_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/forks","keys_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/teams","hooks_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/hooks","issue_events_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/issues/events{/number}","events_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/events","assignees_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/assignees{/user}","branches_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/branches{/branch}","tags_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/tags","blobs_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/git/refs{/sha}","trees_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/statuses/{sha}","languages_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/languages","stargazers_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/stargazers","contributors_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/contributors","subscribers_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/subscribers","subscription_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/subscription","commits_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/commits{/sha}","git_commits_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/git/commits{/sha}","comments_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/comments{/number}","issue_comment_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/issues/comments/{number}","contents_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/contents/{+path}","compare_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/merges","archive_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/downloads","issues_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/issues{/number}","pulls_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/pulls{/number}","milestones_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/milestones{/number}","notifications_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/labels{/name}","releases_url":"https://api.github.com/repos/Nephroid1/MinecraftForge/releases{/id}","created_at":"2015-01-01T15:13:18Z","updated_at":"2015-01-01T15:00:36Z","pushed_at":"2014-12-28T22:28:51Z","git_url":"git://github.com/Nephroid1/MinecraftForge.git","ssh_url":"git@github.com:Nephroid1/MinecraftForge.git","clone_url":"https://github.com/Nephroid1/MinecraftForge.git","svn_url":"https://github.com/Nephroid1/MinecraftForge","homepage":"","size":125216,"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:13:18Z","org":{"id":1390178,"login":"MinecraftForge","gravatar_id":"","url":"https://api.github.com/orgs/MinecraftForge","avatar_url":"https://avatars.githubusercontent.com/u/1390178?"}} +,{"id":"2489657212","type":"WatchEvent","actor":{"id":9262619,"login":"includenaneve","gravatar_id":"","url":"https://api.github.com/users/includenaneve","avatar_url":"https://avatars.githubusercontent.com/u/9262619?"},"repo":{"id":20381491,"name":"aoapc-book/aoapc-bac2nd","url":"https://api.github.com/repos/aoapc-book/aoapc-bac2nd"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:13:19Z"} +,{"id":"2489657213","type":"PushEvent","actor":{"id":8651475,"login":"583132460","gravatar_id":"","url":"https://api.github.com/users/583132460","avatar_url":"https://avatars.githubusercontent.com/u/8651475?"},"repo":{"id":28688776,"name":"583132460/Temp","url":"https://api.github.com/repos/583132460/Temp"},"payload":{"push_id":536866741,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"51279bbfa0ea0d40aaeaf5c4abedc26df2743386","before":"def4182889531aa9a7ae7733d5d67e7d253d68fe","commits":[{"sha":"51279bbfa0ea0d40aaeaf5c4abedc26df2743386","author":{"email":"3f2a00d487dc1f4f49f99af8133e647bc631a0c9@qq.com","name":"583132460"},"message":"first\n\nfirst demo","distinct":true,"url":"https://api.github.com/repos/583132460/Temp/commits/51279bbfa0ea0d40aaeaf5c4abedc26df2743386"}]},"public":true,"created_at":"2015-01-01T15:13:19Z"} +,{"id":"2489657216","type":"PushEvent","actor":{"id":1452352,"login":"yundream","gravatar_id":"","url":"https://api.github.com/users/yundream","avatar_url":"https://avatars.githubusercontent.com/u/1452352?"},"repo":{"id":3489582,"name":"yundream/Joinc-wiki-documents","url":"https://api.github.com/repos/yundream/Joinc-wiki-documents"},"payload":{"push_id":536866742,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0ff53eb3dc80d5c7c79bd3f03ae0145de665c9b2","before":"401a8374f529123a1f4dcd1669a61313a3992026","commits":[{"sha":"0ff53eb3dc80d5c7c79bd3f03ae0145de665c9b2","author":{"email":"52fa26a8d828b15fe2080e8fef9c5e677d2c8e6f@gmail.com","name":"yundream"},"message":"정기 백업","distinct":true,"url":"https://api.github.com/repos/yundream/Joinc-wiki-documents/commits/0ff53eb3dc80d5c7c79bd3f03ae0145de665c9b2"}]},"public":true,"created_at":"2015-01-01T15:13:19Z"} +,{"id":"2489657218","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":536866743,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5919dffd979a8a93fcf4d2e5b16f048250a9e57f","before":"456e518e0b48e87c7137e40d7bba03823e173caa","commits":[{"sha":"5919dffd979a8a93fcf4d2e5b16f048250a9e57f","author":{"email":"bc8b4c28eff55b2f78fad6f180c722f27abee02f@gmail.com","name":"Meir Kriheli"},"message":"Document Bill embedding","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/5919dffd979a8a93fcf4d2e5b16f048250a9e57f"}]},"public":true,"created_at":"2015-01-01T15:13:20Z"} +,{"id":"2489657221","type":"WatchEvent","actor":{"id":7368588,"login":"wasdchenhao","gravatar_id":"","url":"https://api.github.com/users/wasdchenhao","avatar_url":"https://avatars.githubusercontent.com/u/7368588?"},"repo":{"id":4967487,"name":"cobub/razor","url":"https://api.github.com/repos/cobub/razor"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:13:20Z"} +,{"id":"2489657223","type":"CreateEvent","actor":{"id":373331,"login":"korczis","gravatar_id":"","url":"https://api.github.com/users/korczis","avatar_url":"https://avatars.githubusercontent.com/u/373331?"},"repo":{"id":16419614,"name":"korczis/microscratch","url":"https://api.github.com/repos/korczis/microscratch"},"payload":{"ref":"new-version","ref_type":"tag","master_branch":"master","description":"Light Weight Web Framework using node.js, mongo, sockets, ember.js ...","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:20Z"} +,{"id":"2489657224","type":"PushEvent","actor":{"id":1067238,"login":"descent","gravatar_id":"","url":"https://api.github.com/users/descent","avatar_url":"https://avatars.githubusercontent.com/u/1067238?"},"repo":{"id":13286995,"name":"descent/blog_articles","url":"https://api.github.com/repos/descent/blog_articles"},"payload":{"push_id":536866745,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5cf4a7ee5e407ef76220441ef33dd309c3004960","before":"50a4ad85a5ff7564ac0b1564be0c308b8e4c7dbd","commits":[{"sha":"5cf4a7ee5e407ef76220441ef33dd309c3004960","author":{"email":"66b27417d37e024c46526c2f6d358a754fc552f3@abc","name":"dd"},"message":"add 4.4 review","distinct":true,"url":"https://api.github.com/repos/descent/blog_articles/commits/5cf4a7ee5e407ef76220441ef33dd309c3004960"}]},"public":true,"created_at":"2015-01-01T15:13:20Z"} +,{"id":"2489657225","type":"CreateEvent","actor":{"id":847179,"login":"PirosB3","gravatar_id":"","url":"https://api.github.com/users/PirosB3","avatar_url":"https://avatars.githubusercontent.com/u/847179?"},"repo":{"id":28688831,"name":"PirosB3/regex","url":"https://api.github.com/repos/PirosB3/regex"},"payload":{"ref":"my_fixes","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:20Z"} +,{"id":"2489657226","type":"PushEvent","actor":{"id":4743083,"login":"skittles1","gravatar_id":"","url":"https://api.github.com/users/skittles1","avatar_url":"https://avatars.githubusercontent.com/u/4743083?"},"repo":{"id":16250474,"name":"skittles1/Meridian59_103","url":"https://api.github.com/repos/skittles1/Meridian59_103"},"payload":{"push_id":536866746,"size":1,"distinct_size":1,"ref":"refs/heads/qormaschecks","head":"379eb2058c55dbf05fffc3d4bb44ba4f7e1b001f","before":"1d5b5dfd47f1014466327e75b719d47ddfa60d85","commits":[{"sha":"379eb2058c55dbf05fffc3d4bb44ba4f7e1b001f","author":{"email":"adfda3fed6234c726745b004cf88000c119f8601@gmail.com","name":"skittles1"},"message":"poOwner check before checking flagpole in ResignFaction.\n\nOnly need to check flagpoles if a player is logged on. Players can be\nbooted from factions while offline (i.e. start loyalty quest and log off\nbefore completion).","distinct":true,"url":"https://api.github.com/repos/skittles1/Meridian59_103/commits/379eb2058c55dbf05fffc3d4bb44ba4f7e1b001f"}]},"public":true,"created_at":"2015-01-01T15:13:20Z"} +,{"id":"2489657227","type":"PushEvent","actor":{"id":9889333,"login":"helalyne","gravatar_id":"","url":"https://api.github.com/users/helalyne","avatar_url":"https://avatars.githubusercontent.com/u/9889333?"},"repo":{"id":28417617,"name":"helalyne/secret-wookie","url":"https://api.github.com/repos/helalyne/secret-wookie"},"payload":{"push_id":536866747,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3a5c8094ca6e35d4154ae742141a2a03c49ad8cd","before":"1682ac97229a58d59bad4b3760582e6670a9ead7","commits":[{"sha":"3a5c8094ca6e35d4154ae742141a2a03c49ad8cd","author":{"email":"903e3d37c1727b6be48c362779ac5dc97a065b34@gmail.com","name":"Anastasia Kucherova"},"message":"Design experiments","distinct":true,"url":"https://api.github.com/repos/helalyne/secret-wookie/commits/3a5c8094ca6e35d4154ae742141a2a03c49ad8cd"}]},"public":true,"created_at":"2015-01-01T15:13:20Z"} +,{"id":"2489657228","type":"CreateEvent","actor":{"id":1687443,"login":"hit9","gravatar_id":"","url":"https://api.github.com/users/hit9","avatar_url":"https://avatars.githubusercontent.com/u/1687443?"},"repo":{"id":28688847,"name":"hit9/c","url":"https://api.github.com/repos/hit9/c"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"My C Practice","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:20Z"} +,{"id":"2489657231","type":"IssueCommentEvent","actor":{"id":2607556,"login":"SteveyPugs","gravatar_id":"","url":"https://api.github.com/users/SteveyPugs","avatar_url":"https://avatars.githubusercontent.com/u/2607556?"},"repo":{"id":17224108,"name":"EOL-Labs/mely","url":"https://api.github.com/repos/EOL-Labs/mely"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/EOL-Labs/mely/issues/64","labels_url":"https://api.github.com/repos/EOL-Labs/mely/issues/64/labels{/name}","comments_url":"https://api.github.com/repos/EOL-Labs/mely/issues/64/comments","events_url":"https://api.github.com/repos/EOL-Labs/mely/issues/64/events","html_url":"https://github.com/EOL-Labs/mely/issues/64","id":53195181,"number":64,"title":"Refactor Admin Functions","user":{"login":"SteveyPugs","id":2607556,"avatar_url":"https://avatars.githubusercontent.com/u/2607556?v=3","gravatar_id":"","url":"https://api.github.com/users/SteveyPugs","html_url":"https://github.com/SteveyPugs","followers_url":"https://api.github.com/users/SteveyPugs/followers","following_url":"https://api.github.com/users/SteveyPugs/following{/other_user}","gists_url":"https://api.github.com/users/SteveyPugs/gists{/gist_id}","starred_url":"https://api.github.com/users/SteveyPugs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SteveyPugs/subscriptions","organizations_url":"https://api.github.com/users/SteveyPugs/orgs","repos_url":"https://api.github.com/users/SteveyPugs/repos","events_url":"https://api.github.com/users/SteveyPugs/events{/privacy}","received_events_url":"https://api.github.com/users/SteveyPugs/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/EOL-Labs/mely/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":{"login":"SteveyPugs","id":2607556,"avatar_url":"https://avatars.githubusercontent.com/u/2607556?v=3","gravatar_id":"","url":"https://api.github.com/users/SteveyPugs","html_url":"https://github.com/SteveyPugs","followers_url":"https://api.github.com/users/SteveyPugs/followers","following_url":"https://api.github.com/users/SteveyPugs/following{/other_user}","gists_url":"https://api.github.com/users/SteveyPugs/gists{/gist_id}","starred_url":"https://api.github.com/users/SteveyPugs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SteveyPugs/subscriptions","organizations_url":"https://api.github.com/users/SteveyPugs/orgs","repos_url":"https://api.github.com/users/SteveyPugs/repos","events_url":"https://api.github.com/users/SteveyPugs/events{/privacy}","received_events_url":"https://api.github.com/users/SteveyPugs/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/EOL-Labs/mely/milestones/6","labels_url":"https://api.github.com/repos/EOL-Labs/mely/milestones/6/labels","id":918574,"number":6,"title":"v0.3.2","description":null,"creator":{"login":"SteveyPugs","id":2607556,"avatar_url":"https://avatars.githubusercontent.com/u/2607556?v=3","gravatar_id":"","url":"https://api.github.com/users/SteveyPugs","html_url":"https://github.com/SteveyPugs","followers_url":"https://api.github.com/users/SteveyPugs/followers","following_url":"https://api.github.com/users/SteveyPugs/following{/other_user}","gists_url":"https://api.github.com/users/SteveyPugs/gists{/gist_id}","starred_url":"https://api.github.com/users/SteveyPugs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SteveyPugs/subscriptions","organizations_url":"https://api.github.com/users/SteveyPugs/orgs","repos_url":"https://api.github.com/users/SteveyPugs/repos","events_url":"https://api.github.com/users/SteveyPugs/events{/privacy}","received_events_url":"https://api.github.com/users/SteveyPugs/received_events","type":"User","site_admin":false},"open_issues":5,"closed_issues":0,"state":"open","created_at":"2014-12-31T18:21:48Z","updated_at":"2014-12-31T23:07:14Z","due_on":null,"closed_at":null},"comments":1,"created_at":"2014-12-31T17:52:59Z","updated_at":"2015-01-01T15:13:21Z","closed_at":null,"body":"Break each piece out in to posts, comments, front end, etc..."},"comment":{"url":"https://api.github.com/repos/EOL-Labs/mely/issues/comments/68488770","html_url":"https://github.com/EOL-Labs/mely/issues/64#issuecomment-68488770","issue_url":"https://api.github.com/repos/EOL-Labs/mely/issues/64","id":68488770,"user":{"login":"SteveyPugs","id":2607556,"avatar_url":"https://avatars.githubusercontent.com/u/2607556?v=3","gravatar_id":"","url":"https://api.github.com/users/SteveyPugs","html_url":"https://github.com/SteveyPugs","followers_url":"https://api.github.com/users/SteveyPugs/followers","following_url":"https://api.github.com/users/SteveyPugs/following{/other_user}","gists_url":"https://api.github.com/users/SteveyPugs/gists{/gist_id}","starred_url":"https://api.github.com/users/SteveyPugs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SteveyPugs/subscriptions","organizations_url":"https://api.github.com/users/SteveyPugs/orgs","repos_url":"https://api.github.com/users/SteveyPugs/repos","events_url":"https://api.github.com/users/SteveyPugs/events{/privacy}","received_events_url":"https://api.github.com/users/SteveyPugs/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:13:21Z","updated_at":"2015-01-01T15:13:21Z","body":"This goes along with adding unit testing so separate the tests out as well"}},"public":true,"created_at":"2015-01-01T15:13:21Z","org":{"id":6797840,"login":"EOL-Labs","gravatar_id":"","url":"https://api.github.com/orgs/EOL-Labs","avatar_url":"https://avatars.githubusercontent.com/u/6797840?"}} +,{"id":"2489657232","type":"WatchEvent","actor":{"id":1063549,"login":"lokeshj","gravatar_id":"","url":"https://api.github.com/users/lokeshj","avatar_url":"https://avatars.githubusercontent.com/u/1063549?"},"repo":{"id":3602123,"name":"hammerjs/hammer.js","url":"https://api.github.com/repos/hammerjs/hammer.js"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:13:21Z","org":{"id":7997161,"login":"hammerjs","gravatar_id":"","url":"https://api.github.com/orgs/hammerjs","avatar_url":"https://avatars.githubusercontent.com/u/7997161?"}} +,{"id":"2489657233","type":"PushEvent","actor":{"id":8243415,"login":"lmis","gravatar_id":"","url":"https://api.github.com/users/lmis","avatar_url":"https://avatars.githubusercontent.com/u/8243415?"},"repo":{"id":26398659,"name":"lmis/GeneticProgramming","url":"https://api.github.com/repos/lmis/GeneticProgramming"},"payload":{"push_id":536866749,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"38de138bb1de715e09ac0826eb3b5876db8cc47b","before":"70aa403fa855d56a05af8dd16f9df223a4ade4c5","commits":[{"sha":"38de138bb1de715e09ac0826eb3b5876db8cc47b","author":{"email":"9ba8ab558f7a387cd57ffb68730c647184a7f923@student.ethz.ch","name":"lmis"},"message":"minor;","distinct":true,"url":"https://api.github.com/repos/lmis/GeneticProgramming/commits/38de138bb1de715e09ac0826eb3b5876db8cc47b"}]},"public":true,"created_at":"2015-01-01T15:13:21Z"} +,{"id":"2489657236","type":"PushEvent","actor":{"id":656861,"login":"4what","gravatar_id":"","url":"https://api.github.com/users/4what","avatar_url":"https://avatars.githubusercontent.com/u/656861?"},"repo":{"id":21267644,"name":"4what/4what.github.com","url":"https://api.github.com/repos/4what/4what.github.com"},"payload":{"push_id":536866751,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"126e3b54cf92f5123acbad13bb628b0781d56fca","before":"1a35bbf19eb0db32fe74e71e570c824fb2e3d3d5","commits":[{"sha":"126e3b54cf92f5123acbad13bb628b0781d56fca","author":{"email":"52670d809c25f471e0489d3181a7dee4cd57e9c6@163.com","name":"4what"},"message":"Test","distinct":true,"url":"https://api.github.com/repos/4what/4what.github.com/commits/126e3b54cf92f5123acbad13bb628b0781d56fca"}]},"public":true,"created_at":"2015-01-01T15:13:22Z"} +,{"id":"2489657238","type":"WatchEvent","actor":{"id":696939,"login":"JoZ3","gravatar_id":"","url":"https://api.github.com/users/JoZ3","avatar_url":"https://avatars.githubusercontent.com/u/696939?"},"repo":{"id":28516129,"name":"Brijendrasial/Steamtrades.com-Automated-Bump","url":"https://api.github.com/repos/Brijendrasial/Steamtrades.com-Automated-Bump"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:13:22Z"} +,{"id":"2489657242","type":"PushEvent","actor":{"id":985912,"login":"jfaneca","gravatar_id":"","url":"https://api.github.com/users/jfaneca","avatar_url":"https://avatars.githubusercontent.com/u/985912?"},"repo":{"id":28424092,"name":"jfaneca/Electuga","url":"https://api.github.com/repos/jfaneca/Electuga"},"payload":{"push_id":536866754,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2cc682b388410b0603681d89efbcf5dbb0926eb7","before":"d2200804aeeac17c4c82fedbf6a9faa4e6ede002","commits":[{"sha":"2cc682b388410b0603681d89efbcf5dbb0926eb7","author":{"email":"88162c37ae7690caeda20f7219bb640073c4d187@hotmail.com","name":"jfaneca"},"message":"Adding location heading + refactoring on the location functions","distinct":true,"url":"https://api.github.com/repos/jfaneca/Electuga/commits/2cc682b388410b0603681d89efbcf5dbb0926eb7"}]},"public":true,"created_at":"2015-01-01T15:13:23Z"} +,{"id":"2489657244","type":"IssueCommentEvent","actor":{"id":9248239,"login":"phuongdlsl","gravatar_id":"","url":"https://api.github.com/users/phuongdlsl","avatar_url":"https://avatars.githubusercontent.com/u/9248239?"},"repo":{"id":28678195,"name":"TTMTT/iCL0udin","url":"https://api.github.com/repos/TTMTT/iCL0udin"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/TTMTT/iCL0udin/issues/1","labels_url":"https://api.github.com/repos/TTMTT/iCL0udin/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/TTMTT/iCL0udin/issues/1/comments","events_url":"https://api.github.com/repos/TTMTT/iCL0udin/issues/1/events","html_url":"https://github.com/TTMTT/iCL0udin/issues/1","id":53210206,"number":1,"title":"Discuss1","user":{"login":"TTMTT","id":6964047,"avatar_url":"https://avatars.githubusercontent.com/u/6964047?v=3","gravatar_id":"","url":"https://api.github.com/users/TTMTT","html_url":"https://github.com/TTMTT","followers_url":"https://api.github.com/users/TTMTT/followers","following_url":"https://api.github.com/users/TTMTT/following{/other_user}","gists_url":"https://api.github.com/users/TTMTT/gists{/gist_id}","starred_url":"https://api.github.com/users/TTMTT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TTMTT/subscriptions","organizations_url":"https://api.github.com/users/TTMTT/orgs","repos_url":"https://api.github.com/users/TTMTT/repos","events_url":"https://api.github.com/users/TTMTT/events{/privacy}","received_events_url":"https://api.github.com/users/TTMTT/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":55,"created_at":"2015-01-01T01:02:34Z","updated_at":"2015-01-01T15:13:23Z","closed_at":null,"body":"Now you can download vresion 1.0 from :\r\n---------------------------------------------------\r\nhttp://www.icloudin.net\r\n-----------------------------\r\nWow, ipod touch 5G (8.1) - iCL0udin v1.0 bypass activation (icloud)\r\n-------------------------------------------------------------------------------------\r\nhttp://youtu.be/tZmEdlDGNu4\r\n--------------------------------------\r\niCL0udin v1.0 bypass activation (icloud) - ipad mini 2G (7.1.1)\r\n-------------------------------------------------------------------------------------\r\nhttp://youtu.be/tevYyBN2QCQ\r\n---------------------------------------\r\nVideo for bypass icloud (iCL0udin v1.0) for iphone 4 CDMA ..\r\n-------------------------------------------------------------------------------------\r\nhttp://youtu.be/i85-D6N2YLk\r\n-------------------------------------\r\nNew video for iCL0udin v1.0 bypass icloud (3 iphones 7.1.2):\r\n-------------------------------------------------------------------------------------\r\nhttp://youtu.be/p51TNlCr7ug\r\n-------------------------------------\r\niCL0udin v1.0 -> %100\r\n----------------------------\r\nRemaining: %3 testing with some people..\r\n-----------------------------------------------------\r\nLast Method:\r\n-----------------\r\n\r\nmethod 1 : via (other xml not to deviceservices - exploit)\r\nmethod 2 : via (apple cert & key and i can downgrade to any ios)\r\nmethod 3 : via (change some string by hex on ELF file << some times i got error)\r\nmethod 4 : via (use apple ssl cert or real ssl in server and change some string in iphone)\r\niCL0udin v1.0 have this method:\r\n-----------------------------------------\r\n\r\nmethod 1 : via (other xml not to deviceservices - exploit)\r\nmethod 2 : via (apple cert & key and i can downgrade to any ios)"},"comment":{"url":"https://api.github.com/repos/TTMTT/iCL0udin/issues/comments/68488771","html_url":"https://github.com/TTMTT/iCL0udin/issues/1#issuecomment-68488771","issue_url":"https://api.github.com/repos/TTMTT/iCL0udin/issues/1","id":68488771,"user":{"login":"phuongdlsl","id":9248239,"avatar_url":"https://avatars.githubusercontent.com/u/9248239?v=3","gravatar_id":"","url":"https://api.github.com/users/phuongdlsl","html_url":"https://github.com/phuongdlsl","followers_url":"https://api.github.com/users/phuongdlsl/followers","following_url":"https://api.github.com/users/phuongdlsl/following{/other_user}","gists_url":"https://api.github.com/users/phuongdlsl/gists{/gist_id}","starred_url":"https://api.github.com/users/phuongdlsl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/phuongdlsl/subscriptions","organizations_url":"https://api.github.com/users/phuongdlsl/orgs","repos_url":"https://api.github.com/users/phuongdlsl/repos","events_url":"https://api.github.com/users/phuongdlsl/events{/privacy}","received_events_url":"https://api.github.com/users/phuongdlsl/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:13:23Z","updated_at":"2015-01-01T15:13:23Z","body":"@TTMTT what time you open server today?"}},"public":true,"created_at":"2015-01-01T15:13:23Z"} +,{"id":"2489657245","type":"PushEvent","actor":{"id":2958379,"login":"andrewrapp","gravatar_id":"","url":"https://api.github.com/users/andrewrapp","avatar_url":"https://avatars.githubusercontent.com/u/2958379?"},"repo":{"id":28688483,"name":"andrewrapp/xbee-api","url":"https://api.github.com/repos/andrewrapp/xbee-api"},"payload":{"push_id":536866755,"size":78,"distinct_size":78,"ref":"refs/heads/master","head":"6a8fad3f15089495934855e21391abbe80c67599","before":"bfecf42b377fc2eaaddc35a3e33a2a892bf1c317","commits":[{"sha":"62a453e3de5e3340a25732f775b0d1d4f7ce0ec9","author":{"email":"31de22dfef3dac788982f2bb8c2160589830a766@e138a6d8-124a-0410-b381-050080eecf1f","name":"(no author)"},"message":"Initial directory structure.\n\ngit-svn-id: http://xbee-api.googlecode.com/svn/trunk@1 e138a6d8-124a-0410-b381-050080eecf1f","distinct":true,"url":"https://api.github.com/repos/andrewrapp/xbee-api/commits/62a453e3de5e3340a25732f775b0d1d4f7ce0ec9"},{"sha":"a4ac78007ad9629c9110270ad4c1c2ceeb9a6ed8","author":{"email":"3a91465a4f66790628b581929e5ffbfda32fc92c@e138a6d8-124a-0410-b381-050080eecf1f","name":"andrew.rapp"},"message":"Import of Existing Code at Rev. 254\n\ngit-svn-id: http://xbee-api.googlecode.com/svn/trunk@2 e138a6d8-124a-0410-b381-050080eecf1f","distinct":true,"url":"https://api.github.com/repos/andrewrapp/xbee-api/commits/a4ac78007ad9629c9110270ad4c1c2ceeb9a6ed8"},{"sha":"4f0a2cb10788ea75e0f5b831082b554fc4578c21","author":{"email":"3a91465a4f66790628b581929e5ffbfda32fc92c@e138a6d8-124a-0410-b381-050080eecf1f","name":"andrew.rapp"},"message":"I'm calling this the 0.3.1 release\n\n- Added GPL header\n- Fixed bug with receiving 16-bit IO samples with series 1 XBees. Apparently I broke this when adding series 2 support.\n\ngit-svn-id: http://xbee-api.googlecode.com/svn/trunk@3 e138a6d8-124a-0410-b381-050080eecf1f","distinct":true,"url":"https://api.github.com/repos/andrewrapp/xbee-api/commits/4f0a2cb10788ea75e0f5b831082b554fc4578c21"},{"sha":"7c606055c3b43bdf2d2bd48e600a62eba240cafd","author":{"email":"3a91465a4f66790628b581929e5ffbfda32fc92c@e138a6d8-124a-0410-b381-050080eecf1f","name":"andrew.rapp"},"message":"added Ant build.xml, modified to include eclipse files to dist\nadded GPL file\nadded Linux RXTX\n\ngit-svn-id: http://xbee-api.googlecode.com/svn/trunk@60 e138a6d8-124a-0410-b381-050080eecf1f","distinct":true,"url":"https://api.github.com/repos/andrewrapp/xbee-api/commits/7c606055c3b43bdf2d2bd48e600a62eba240cafd"},{"sha":"252816c6f1231a69a773cc039c72f069a9c782df","author":{"email":"3a91465a4f66790628b581929e5ffbfda32fc92c@e138a6d8-124a-0410-b381-050080eecf1f","name":"andrew.rapp"},"message":"added detection for java 1.5\n\ngit-svn-id: http://xbee-api.googlecode.com/svn/trunk@61 e138a6d8-124a-0410-b381-050080eecf1f","distinct":true,"url":"https://api.github.com/repos/andrewrapp/xbee-api/commits/252816c6f1231a69a773cc039c72f069a9c782df"},{"sha":"dcba310c102abec07cd67f7cf3c80e1bf99f65d1","author":{"email":"3a91465a4f66790628b581929e5ffbfda32fc92c@e138a6d8-124a-0410-b381-050080eecf1f","name":"andrew.rapp"},"message":"clarified the applyChanges parameter, based on user feedback\n\ngit-svn-id: http://xbee-api.googlecode.com/svn/trunk@62 e138a6d8-124a-0410-b381-050080eecf1f","distinct":true,"url":"https://api.github.com/repos/andrewrapp/xbee-api/commits/dcba310c102abec07cd67f7cf3c80e1bf99f65d1"},{"sha":"32a1afbcc3376c5a7d253d1fc55ea872032373e2","author":{"email":"3a91465a4f66790628b581929e5ffbfda32fc92c@e138a6d8-124a-0410-b381-050080eecf1f","name":"andrew.rapp"},"message":"added gpl header\n\ngit-svn-id: http://xbee-api.googlecode.com/svn/trunk@63 e138a6d8-124a-0410-b381-050080eecf1f","distinct":true,"url":"https://api.github.com/repos/andrewrapp/xbee-api/commits/32a1afbcc3376c5a7d253d1fc55ea872032373e2"},{"sha":"19fdf83f9a58bf88ae37fec12ae59b1286ab7a1c","author":{"email":"3a91465a4f66790628b581929e5ffbfda32fc92c@e138a6d8-124a-0410-b381-050080eecf1f","name":"andrew.rapp"},"message":"repositioned gpl header\n\ngit-svn-id: http://xbee-api.googlecode.com/svn/trunk@64 e138a6d8-124a-0410-b381-050080eecf1f","distinct":true,"url":"https://api.github.com/repos/andrewrapp/xbee-api/commits/19fdf83f9a58bf88ae37fec12ae59b1286ab7a1c"},{"sha":"514b81db6a5886a848b5663159aa329515d6d628","author":{"email":"3a91465a4f66790628b581929e5ffbfda32fc92c@e138a6d8-124a-0410-b381-050080eecf1f","name":"andrew.rapp"},"message":"Summary of Release 0.4\n\nFixed bug where the default option for TxRequests was incorrectly set to the disble ACK option. Because of this bug you were not getting ACK errors. Thanks to Terrence at UVA for reporting this.\n\nImproved error handling: All software errors related to parsing response packets are now returned as an ErrorResponse. \nAs a result of this change I removed the getErrorList method in the XBee class\n\nwaitForResponse(long timeout) now throws a XBeeTimeoutException if timeout is reached\n\nAdded new and clarified existing JavaDoc documentation\n\nRenamed the setTimeout method in the XBee class to setSendSynchronousTimeout, to indicate it only applies to the synchronousSend method.\n\ngit-svn-id: http://xbee-api.googlecode.com/svn/trunk@65 e138a6d8-124a-0410-b381-050080eecf1f","distinct":true,"url":"https://api.github.com/repos/andrewrapp/xbee-api/commits/514b81db6a5886a848b5663159aa329515d6d628"},{"sha":"2e7c793df567ea0ec3fbceeb6d33a548431b6209","author":{"email":"3a91465a4f66790628b581929e5ffbfda32fc92c@e138a6d8-124a-0410-b381-050080eecf1f","name":"andrew.rapp"},"message":"This release (0.4.1) includes the following items:\n\n- Improved several of the examples and added ZNetApiAtTest class. Hopefully they are more clear now.\n- Added Ant JavaDoc target and included JavaDoc in the ZIP distribution\n- Set max payload sizes for ZNet/wpan, according to manual\n- Improved documentation\n- Other misc. improvements\n\ngit-svn-id: http://xbee-api.googlecode.com/svn/trunk@74 e138a6d8-124a-0410-b381-050080eecf1f","distinct":true,"url":"https://api.github.com/repos/andrewrapp/xbee-api/commits/2e7c793df567ea0ec3fbceeb6d33a548431b6209"},{"sha":"8d77536992a7c14b4876f299d7dbf35abfbebf8d","author":{"email":"3a91465a4f66790628b581929e5ffbfda32fc92c@e138a6d8-124a-0410-b381-050080eecf1f","name":"andrew.rapp"},"message":"This release (0.4.2) includes support for Explicit ZNet Requests/Responses. While testing, I was able to send an Explicit Tx Request (0x11) but the receiving XBee got a 0x90 (Rx Request), instead of the expected 0x91 (Explicit Rx Request). I used arbitrary values for source/dest endpoint and cluster id.\n\n\ngit-svn-id: http://xbee-api.googlecode.com/svn/trunk@76 e138a6d8-124a-0410-b381-050080eecf1f","distinct":true,"url":"https://api.github.com/repos/andrewrapp/xbee-api/commits/8d77536992a7c14b4876f299d7dbf35abfbebf8d"},{"sha":"21f9554ed089fb316a2012ddc33e219b43fd4702","author":{"email":"3a91465a4f66790628b581929e5ffbfda32fc92c@e138a6d8-124a-0410-b381-050080eecf1f","name":"andrew.rapp"},"message":"This release (0.4.3) involved refactoring the ApiId from a primitive int constant to an enum type and consolidating all api types. \n\nThis will require changes in your code if you access the api constants. So instead of \n\nresponse.getApiId() == XBeeResponse.ZNET_RX_RESPONSE\n\nyou would do \n\nresponse.getApiId() == ApiId.ZNET_RX_RESPONSE\n\nUse ApiId.ZNET_RX_RESPONSE.getValue() to access the int type\n\ngit-svn-id: http://xbee-api.googlecode.com/svn/trunk@77 e138a6d8-124a-0410-b381-050080eecf1f","distinct":true,"url":"https://api.github.com/repos/andrewrapp/xbee-api/commits/21f9554ed089fb316a2012ddc33e219b43fd4702"},{"sha":"c5721988b6314346a98f284abaefd0c3184c3108","author":{"email":"3a91465a4f66790628b581929e5ffbfda32fc92c@e138a6d8-124a-0410-b381-050080eecf1f","name":"andrew.rapp"},"message":"added endpoint/clusterid enums and test classes. tested with ZB firmware with AO=1\n\ngit-svn-id: http://xbee-api.googlecode.com/svn/trunk@80 e138a6d8-124a-0410-b381-050080eecf1f","distinct":true,"url":"https://api.github.com/repos/andrewrapp/xbee-api/commits/c5721988b6314346a98f284abaefd0c3184c3108"},{"sha":"58924bc719ba1e18db0c7f3dcfd16b17cc03670d","author":{"email":"3a91465a4f66790628b581929e5ffbfda32fc92c@e138a6d8-124a-0410-b381-050080eecf1f","name":"andrew.rapp"},"message":"accidently deleted the trunk\n\ngit-svn-id: http://xbee-api.googlecode.com/svn/trunk@82 e138a6d8-124a-0410-b381-050080eecf1f","distinct":true,"url":"https://api.github.com/repos/andrewrapp/xbee-api/commits/58924bc719ba1e18db0c7f3dcfd16b17cc03670d"},{"sha":"a9fbba92e674332f47ad498aed7cd957c9aca905","author":{"email":"3a91465a4f66790628b581929e5ffbfda32fc92c@e138a6d8-124a-0410-b381-050080eecf1f","name":"andrew.rapp"},"message":"- added a packet listener for notification of packets\n- rewrote and improved synchronousSend method\n- added synchronousSend example\n- improved documentation (javadoc)\n- added toString for i/o samples\n- updated i/o sample classes to return Integer (analog) and Boolean (digital) instead of a primitive to distinguish a I/0 pin that is not enabled and one that is.\n- added manual for ZB firmware\n\n\ngit-svn-id: http://xbee-api.googlecode.com/svn/trunk@85 e138a6d8-124a-0410-b381-050080eecf1f","distinct":true,"url":"https://api.github.com/repos/andrewrapp/xbee-api/commits/a9fbba92e674332f47ad498aed7cd957c9aca905"},{"sha":"53cfe85331282f7dc58f904dfe12455bacec0805","author":{"email":"3a91465a4f66790628b581929e5ffbfda32fc92c@e138a6d8-124a-0410-b381-050080eecf1f","name":"andrew.rapp"},"message":"- fixed bug in packet listener\n- updated ant to specify version in jar file\n- updated TODO statements\n\ngit-svn-id: http://xbee-api.googlecode.com/svn/trunk@86 e138a6d8-124a-0410-b381-050080eecf1f","distinct":true,"url":"https://api.github.com/repos/andrewrapp/xbee-api/commits/53cfe85331282f7dc58f904dfe12455bacec0805"},{"sha":"7b631279f2328abd6be74ccfb62385bdbf8c4dae","author":{"email":"3a91465a4f66790628b581929e5ffbfda32fc92c@e138a6d8-124a-0410-b381-050080eecf1f","name":"andrew.rapp"},"message":"- fixed issue where source address was not correctly set. only affects series 1 XBee with RX 64bit API\n- fixed stackoverflow issue with isD7On. only affects series 1 XBee\n\ngit-svn-id: http://xbee-api.googlecode.com/svn/trunk@90 e138a6d8-124a-0410-b381-050080eecf1f","distinct":true,"url":"https://api.github.com/repos/andrewrapp/xbee-api/commits/7b631279f2328abd6be74ccfb62385bdbf8c4dae"},{"sha":"7a1d30fa307d0aef5c8587cb62229da6f24dddbc","author":{"email":"3a91465a4f66790628b581929e5ffbfda32fc92c@e138a6d8-124a-0410-b381-050080eecf1f","name":"andrew.rapp"},"message":"- test class for verifying i/o pins\n- list of wpan and zigbee pins\n\ngit-svn-id: http://xbee-api.googlecode.com/svn/trunk@91 e138a6d8-124a-0410-b381-050080eecf1f","distinct":true,"url":"https://api.github.com/repos/andrewrapp/xbee-api/commits/7a1d30fa307d0aef5c8587cb62229da6f24dddbc"},{"sha":"1a98561a74262cf4589c5e9b6692174b357ce892","author":{"email":"3a91465a4f66790628b581929e5ffbfda32fc92c@e138a6d8-124a-0410-b381-050080eecf1f","name":"andrew.rapp"},"message":"updated ant for release 0.5.1\n\ngit-svn-id: http://xbee-api.googlecode.com/svn/trunk@93 e138a6d8-124a-0410-b381-050080eecf1f","distinct":true,"url":"https://api.github.com/repos/andrewrapp/xbee-api/commits/1a98561a74262cf4589c5e9b6692174b357ce892"},{"sha":"c7f288a8506a5b32db400abd39e98bdfa129416a","author":{"email":"3a91465a4f66790628b581929e5ffbfda32fc92c@e138a6d8-124a-0410-b381-050080eecf1f","name":"andrew.rapp"},"message":"git-svn-id: http://xbee-api.googlecode.com/svn/trunk@99 e138a6d8-124a-0410-b381-050080eecf1f","distinct":true,"url":"https://api.github.com/repos/andrewrapp/xbee-api/commits/c7f288a8506a5b32db400abd39e98bdfa129416a"}]},"public":true,"created_at":"2015-01-01T15:13:23Z"} +,{"id":"2489657248","type":"CreateEvent","actor":{"id":10143634,"login":"KhoiNguyenTMA","gravatar_id":"","url":"https://api.github.com/users/KhoiNguyenTMA","avatar_url":"https://avatars.githubusercontent.com/u/10143634?"},"repo":{"id":28688844,"name":"KhoiNguyenTMA/MMS","url":"https://api.github.com/repos/KhoiNguyenTMA/MMS"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"learning_git","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:24Z"} +,{"id":"2489657249","type":"PullRequestReviewCommentEvent","actor":{"id":8816755,"login":"nbouteme","gravatar_id":"","url":"https://api.github.com/users/nbouteme","avatar_url":"https://avatars.githubusercontent.com/u/8816755?"},"repo":{"id":28026599,"name":"nbouteme/AFK","url":"https://api.github.com/repos/nbouteme/AFK"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/nbouteme/AFK/pulls/comments/22400145","id":22400145,"diff_hunk":"@@ -0,0 +1,58 @@\n+\nJanuary 01, 2015 at 03:54PM"}},"public":true,"created_at":"2015-01-01T15:13:24Z"} +,{"id":"2489657251","type":"CreateEvent","actor":{"id":63622,"login":"Byron","gravatar_id":"","url":"https://api.github.com/users/Byron","avatar_url":"https://avatars.githubusercontent.com/u/63622?"},"repo":{"id":1126093,"name":"gitpython-developers/gitdb","url":"https://api.github.com/repos/gitpython-developers/gitdb"},"payload":{"ref":"0.6.1","ref_type":"tag","master_branch":"master","description":"IO of git-style object databases - Phased out and merged into GitPython","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:24Z","org":{"id":503709,"login":"gitpython-developers","gravatar_id":"","url":"https://api.github.com/orgs/gitpython-developers","avatar_url":"https://avatars.githubusercontent.com/u/503709?"}} +,{"id":"2489657256","type":"IssuesEvent","actor":{"id":9343331,"login":"No-CQRT","gravatar_id":"","url":"https://api.github.com/users/No-CQRT","avatar_url":"https://avatars.githubusercontent.com/u/9343331?"},"repo":{"id":25600089,"name":"No-CQRT/GooGuns","url":"https://api.github.com/repos/No-CQRT/GooGuns"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/No-CQRT/GooGuns/issues/20332","labels_url":"https://api.github.com/repos/No-CQRT/GooGuns/issues/20332/labels{/name}","comments_url":"https://api.github.com/repos/No-CQRT/GooGuns/issues/20332/comments","events_url":"https://api.github.com/repos/No-CQRT/GooGuns/issues/20332/events","html_url":"https://github.com/No-CQRT/GooGuns/issues/20332","id":53221601,"number":20332,"title":"@googuns_prod: ca9d4e622e000000","user":{"login":"No-CQRT","id":9343331,"avatar_url":"https://avatars.githubusercontent.com/u/9343331?v=3","gravatar_id":"","url":"https://api.github.com/users/No-CQRT","html_url":"https://github.com/No-CQRT","followers_url":"https://api.github.com/users/No-CQRT/followers","following_url":"https://api.github.com/users/No-CQRT/following{/other_user}","gists_url":"https://api.github.com/users/No-CQRT/gists{/gist_id}","starred_url":"https://api.github.com/users/No-CQRT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/No-CQRT/subscriptions","organizations_url":"https://api.github.com/users/No-CQRT/orgs","repos_url":"https://api.github.com/users/No-CQRT/repos","events_url":"https://api.github.com/users/No-CQRT/events{/privacy}","received_events_url":"https://api.github.com/users/No-CQRT/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:13:25Z","updated_at":"2015-01-01T15:13:25Z","closed_at":null,"body":"@googuns_prod: ca9d4e622e000000
\nJanuary 01, 2015 at 03:59PM"}},"public":true,"created_at":"2015-01-01T15:13:25Z"} +,{"id":"2489657257","type":"PushEvent","actor":{"id":3170981,"login":"kulmala","gravatar_id":"","url":"https://api.github.com/users/kulmala","avatar_url":"https://avatars.githubusercontent.com/u/3170981?"},"repo":{"id":23549741,"name":"kulmala/metrics","url":"https://api.github.com/repos/kulmala/metrics"},"payload":{"push_id":536866759,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"c1345d8d6ee6b1fcbb4bf98df5381b83a2d1d6c7","before":"c4a492172b39d83a510142c164cef5b9aab15f2e","commits":[{"sha":"c1345d8d6ee6b1fcbb4bf98df5381b83a2d1d6c7","author":{"email":"5b062d619528ca2f7b39794d12e1c305a7a4b0e8@gmail.com","name":"Jaana Kulmala"},"message":"Site updated to bdfecdb","distinct":true,"url":"https://api.github.com/repos/kulmala/metrics/commits/c1345d8d6ee6b1fcbb4bf98df5381b83a2d1d6c7"}]},"public":true,"created_at":"2015-01-01T15:13:25Z"} +,{"id":"2489657260","type":"PushEvent","actor":{"id":4627837,"login":"jessemillar","gravatar_id":"","url":"https://api.github.com/users/jessemillar","avatar_url":"https://avatars.githubusercontent.com/u/4627837?"},"repo":{"id":27785287,"name":"jessemillar/CS-236-Projects","url":"https://api.github.com/repos/jessemillar/CS-236-Projects"},"payload":{"push_id":536866761,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"78400e6519e5c4b371b0a7037d13bc46bf81458a","before":"d32215bfef540e64945216e8da5c65e713019bd9","commits":[{"sha":"78400e6519e5c4b371b0a7037d13bc46bf81458a","author":{"email":"0ba40b71986250aad0903c7ebcfd76a410af35fb@gmail.com","name":"Jesse Millar"},"message":"Update LICENSE.md","distinct":true,"url":"https://api.github.com/repos/jessemillar/CS-236-Projects/commits/78400e6519e5c4b371b0a7037d13bc46bf81458a"}]},"public":true,"created_at":"2015-01-01T15:13:25Z"} +,{"id":"2489657261","type":"WatchEvent","actor":{"id":289743,"login":"himdel","gravatar_id":"","url":"https://api.github.com/users/himdel","avatar_url":"https://avatars.githubusercontent.com/u/289743?"},"repo":{"id":27339405,"name":"QBCo/akemi","url":"https://api.github.com/repos/QBCo/akemi"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:13:25Z","org":{"id":10001822,"login":"QBCo","gravatar_id":"","url":"https://api.github.com/orgs/QBCo","avatar_url":"https://avatars.githubusercontent.com/u/10001822?"}} +,{"id":"2489657262","type":"IssuesEvent","actor":{"id":9343331,"login":"No-CQRT","gravatar_id":"","url":"https://api.github.com/users/No-CQRT","avatar_url":"https://avatars.githubusercontent.com/u/9343331?"},"repo":{"id":25600089,"name":"No-CQRT/GooGuns","url":"https://api.github.com/repos/No-CQRT/GooGuns"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/No-CQRT/GooGuns/issues/20333","labels_url":"https://api.github.com/repos/No-CQRT/GooGuns/issues/20333/labels{/name}","comments_url":"https://api.github.com/repos/No-CQRT/GooGuns/issues/20333/comments","events_url":"https://api.github.com/repos/No-CQRT/GooGuns/issues/20333/events","html_url":"https://github.com/No-CQRT/GooGuns/issues/20333","id":53221602,"number":20333,"title":"@googuns_prod: 32cd7e622e000000","user":{"login":"No-CQRT","id":9343331,"avatar_url":"https://avatars.githubusercontent.com/u/9343331?v=3","gravatar_id":"","url":"https://api.github.com/users/No-CQRT","html_url":"https://github.com/No-CQRT","followers_url":"https://api.github.com/users/No-CQRT/followers","following_url":"https://api.github.com/users/No-CQRT/following{/other_user}","gists_url":"https://api.github.com/users/No-CQRT/gists{/gist_id}","starred_url":"https://api.github.com/users/No-CQRT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/No-CQRT/subscriptions","organizations_url":"https://api.github.com/users/No-CQRT/orgs","repos_url":"https://api.github.com/users/No-CQRT/repos","events_url":"https://api.github.com/users/No-CQRT/events{/privacy}","received_events_url":"https://api.github.com/users/No-CQRT/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:13:25Z","updated_at":"2015-01-01T15:13:25Z","closed_at":null,"body":"@googuns_prod: 32cd7e622e000000
\nJanuary 01, 2015 at 04:04PM"}},"public":true,"created_at":"2015-01-01T15:13:25Z"} +,{"id":"2489657264","type":"PushEvent","actor":{"id":6860877,"login":"cpressey","gravatar_id":"","url":"https://api.github.com/users/cpressey","avatar_url":"https://avatars.githubusercontent.com/u/6860877?"},"repo":{"id":3722667,"name":"catseye/Mascarpone","url":"https://api.github.com/repos/catseye/Mascarpone"},"payload":{"push_id":536866762,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"3f8f8418f27729dd061d6ea5ff93801c0b6c934b","before":"c46dc6d1e54e3e091810713de3157a443453153e","commits":[{"sha":"281d97d72247e466a34b198b0d8f02ff53f183ee","author":{"email":"c7632e440b1c466d6ce6e3f0599fca74ae105873@catseye.tc","name":"Chris Pressey"},"message":"Note non-normativeness of one test; prettier Markdown.","distinct":true,"url":"https://api.github.com/repos/catseye/Mascarpone/commits/281d97d72247e466a34b198b0d8f02ff53f183ee"},{"sha":"3f8f8418f27729dd061d6ea5ff93801c0b6c934b","author":{"email":"c7632e440b1c466d6ce6e3f0599fca74ae105873@catseye.tc","name":"Chris Pressey"},"message":"Added tag rel_1_0_2015_0101 for changeset 4891bb82bd2e","distinct":true,"url":"https://api.github.com/repos/catseye/Mascarpone/commits/3f8f8418f27729dd061d6ea5ff93801c0b6c934b"}]},"public":true,"created_at":"2015-01-01T15:13:26Z","org":{"id":1134322,"login":"catseye","gravatar_id":"","url":"https://api.github.com/orgs/catseye","avatar_url":"https://avatars.githubusercontent.com/u/1134322?"}} +,{"id":"2489657265","type":"CreateEvent","actor":{"id":6860877,"login":"cpressey","gravatar_id":"","url":"https://api.github.com/users/cpressey","avatar_url":"https://avatars.githubusercontent.com/u/6860877?"},"repo":{"id":3722667,"name":"catseye/Mascarpone","url":"https://api.github.com/repos/catseye/Mascarpone"},"payload":{"ref":"rel_1_0_2015_0101","ref_type":"tag","master_branch":"master","description":"You are lost in a twisty maze of meta-circular interpreters, all alike. [BSD license]","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:26Z","org":{"id":1134322,"login":"catseye","gravatar_id":"","url":"https://api.github.com/orgs/catseye","avatar_url":"https://avatars.githubusercontent.com/u/1134322?"}} +,{"id":"2489657266","type":"PushEvent","actor":{"id":71317,"login":"demsey","gravatar_id":"","url":"https://api.github.com/users/demsey","avatar_url":"https://avatars.githubusercontent.com/u/71317?"},"repo":{"id":16833966,"name":"demsey/jPOS","url":"https://api.github.com/repos/demsey/jPOS"},"payload":{"push_id":536866764,"size":4,"distinct_size":3,"ref":"refs/heads/master","head":"39f58ca2446c68dabe4cc49153fbc6476d0573f1","before":"20f701b543fe58a784ff1eecb32629c69101fa98","commits":[{"sha":"980c1a4c06f93ba109962a90a980c3c8dd41fd48","author":{"email":"1ddb9470c5576313304c50a17125af639c462d99@gmail.com","name":"Robert Demski"},"message":"Improve LogEvent timestamp logging\n\nIn log events tiestamps look like at=\"Fri Dec 19 14:47:44 CET 2014.86\"\nAfter the change it will look like at=\"Fri Dec 19 14:47:44.086 CET 2014\"","distinct":false,"url":"https://api.github.com/repos/demsey/jPOS/commits/980c1a4c06f93ba109962a90a980c3c8dd41fd48"},{"sha":"dd3390827ee51d66c3c50d7d6fb327449970d96d","author":{"email":"a16438e84d07a18fa74422c6e6953b3e72ac8a44@jpos.org","name":"Alejandro Revilla"},"message":"Merge pull request #78 from demsey/logging\n\nImprove LogEvent timestamp logging","distinct":true,"url":"https://api.github.com/repos/demsey/jPOS/commits/dd3390827ee51d66c3c50d7d6fb327449970d96d"},{"sha":"23f6dd11a5a7fb8b49b3c383f335aa3ed1dafc52","author":{"email":"a16438e84d07a18fa74422c6e6953b3e72ac8a44@jpos.org","name":"Alejandro Revilla"},"message":"use static DateFormat","distinct":true,"url":"https://api.github.com/repos/demsey/jPOS/commits/23f6dd11a5a7fb8b49b3c383f335aa3ed1dafc52"},{"sha":"39f58ca2446c68dabe4cc49153fbc6476d0573f1","author":{"email":"a16438e84d07a18fa74422c6e6953b3e72ac8a44@jpos.org","name":"Alejandro Revilla"},"message":"2015!","distinct":true,"url":"https://api.github.com/repos/demsey/jPOS/commits/39f58ca2446c68dabe4cc49153fbc6476d0573f1"}]},"public":true,"created_at":"2015-01-01T15:13:26Z"} +,{"id":"2489657267","type":"IssuesEvent","actor":{"id":9343331,"login":"No-CQRT","gravatar_id":"","url":"https://api.github.com/users/No-CQRT","avatar_url":"https://avatars.githubusercontent.com/u/9343331?"},"repo":{"id":25600089,"name":"No-CQRT/GooGuns","url":"https://api.github.com/repos/No-CQRT/GooGuns"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/No-CQRT/GooGuns/issues/20334","labels_url":"https://api.github.com/repos/No-CQRT/GooGuns/issues/20334/labels{/name}","comments_url":"https://api.github.com/repos/No-CQRT/GooGuns/issues/20334/comments","events_url":"https://api.github.com/repos/No-CQRT/GooGuns/issues/20334/events","html_url":"https://github.com/No-CQRT/GooGuns/issues/20334","id":53221603,"number":20334,"title":"@googuns_prod: 2e87d5622e000000","user":{"login":"No-CQRT","id":9343331,"avatar_url":"https://avatars.githubusercontent.com/u/9343331?v=3","gravatar_id":"","url":"https://api.github.com/users/No-CQRT","html_url":"https://github.com/No-CQRT","followers_url":"https://api.github.com/users/No-CQRT/followers","following_url":"https://api.github.com/users/No-CQRT/following{/other_user}","gists_url":"https://api.github.com/users/No-CQRT/gists{/gist_id}","starred_url":"https://api.github.com/users/No-CQRT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/No-CQRT/subscriptions","organizations_url":"https://api.github.com/users/No-CQRT/orgs","repos_url":"https://api.github.com/users/No-CQRT/repos","events_url":"https://api.github.com/users/No-CQRT/events{/privacy}","received_events_url":"https://api.github.com/users/No-CQRT/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:13:26Z","updated_at":"2015-01-01T15:13:26Z","closed_at":null,"body":"@googuns_prod: 2e87d5622e000000
\nJanuary 01, 2015 at 04:08PM"}},"public":true,"created_at":"2015-01-01T15:13:26Z"} +,{"id":"2489657274","type":"PushEvent","actor":{"id":1965195,"login":"risatrix","gravatar_id":"","url":"https://api.github.com/users/risatrix","avatar_url":"https://avatars.githubusercontent.com/u/1965195?"},"repo":{"id":28572079,"name":"risatrix/yourdailyvergil","url":"https://api.github.com/repos/risatrix/yourdailyvergil"},"payload":{"push_id":536866768,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"15e0b09c6d93a884da2a21bc9fefc515b150f774","before":"bdb81eb6a7e3c882f43df613130cf4f798b6a13f","commits":[{"sha":"15e0b09c6d93a884da2a21bc9fefc515b150f774","author":{"email":"52e3266c5077194ff7c3e0afcb27f8887bbb38c3@gmail.com","name":"Amanda"},"message":"update README","distinct":true,"url":"https://api.github.com/repos/risatrix/yourdailyvergil/commits/15e0b09c6d93a884da2a21bc9fefc515b150f774"}]},"public":true,"created_at":"2015-01-01T15:13:27Z"} +,{"id":"2489657275","type":"WatchEvent","actor":{"id":831962,"login":"bgruszka","gravatar_id":"","url":"https://api.github.com/users/bgruszka","avatar_url":"https://avatars.githubusercontent.com/u/831962?"},"repo":{"id":28288326,"name":"indragiek/DominantColor","url":"https://api.github.com/repos/indragiek/DominantColor"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:13:27Z"} +,{"id":"2489657279","type":"IssuesEvent","actor":{"id":8559428,"login":"Yulife","gravatar_id":"","url":"https://api.github.com/users/Yulife","avatar_url":"https://avatars.githubusercontent.com/u/8559428?"},"repo":{"id":25179549,"name":"Yulife/Wanderlust-Reloaded","url":"https://api.github.com/repos/Yulife/Wanderlust-Reloaded"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/Yulife/Wanderlust-Reloaded/issues/330","labels_url":"https://api.github.com/repos/Yulife/Wanderlust-Reloaded/issues/330/labels{/name}","comments_url":"https://api.github.com/repos/Yulife/Wanderlust-Reloaded/issues/330/comments","events_url":"https://api.github.com/repos/Yulife/Wanderlust-Reloaded/issues/330/events","html_url":"https://github.com/Yulife/Wanderlust-Reloaded/issues/330","id":52817691,"number":330,"title":"Rebalance the amount and type of seeds you get with the hoe","user":{"login":"cHaOZZoNE","id":6075069,"avatar_url":"https://avatars.githubusercontent.com/u/6075069?v=3","gravatar_id":"","url":"https://api.github.com/users/cHaOZZoNE","html_url":"https://github.com/cHaOZZoNE","followers_url":"https://api.github.com/users/cHaOZZoNE/followers","following_url":"https://api.github.com/users/cHaOZZoNE/following{/other_user}","gists_url":"https://api.github.com/users/cHaOZZoNE/gists{/gist_id}","starred_url":"https://api.github.com/users/cHaOZZoNE/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cHaOZZoNE/subscriptions","organizations_url":"https://api.github.com/users/cHaOZZoNE/orgs","repos_url":"https://api.github.com/users/cHaOZZoNE/repos","events_url":"https://api.github.com/users/cHaOZZoNE/events{/privacy}","received_events_url":"https://api.github.com/users/cHaOZZoNE/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2014-12-24T12:57:17Z","updated_at":"2015-01-01T15:13:28Z","closed_at":"2015-01-01T15:13:28Z","body":"The balancing of what you get from right clicking the ground with the hoe seems to be off. Especially it seems that there is a overly large percentage of getting either witchery seeds or AM2 flowers. I think this needs to be re balanced so that you mainly get regular seeds and/ or Harvestcraft/Growthcraft ones."}},"public":true,"created_at":"2015-01-01T15:13:28Z"} +,{"id":"2489657282","type":"ForkEvent","actor":{"id":531569,"login":"ahmetunal","gravatar_id":"","url":"https://api.github.com/users/ahmetunal","avatar_url":"https://avatars.githubusercontent.com/u/531569?"},"repo":{"id":943149,"name":"mbostock/d3","url":"https://api.github.com/repos/mbostock/d3"},"payload":{"forkee":{"id":28688849,"name":"d3","full_name":"ahmetunal/d3","owner":{"login":"ahmetunal","id":531569,"avatar_url":"https://avatars.githubusercontent.com/u/531569?v=3","gravatar_id":"","url":"https://api.github.com/users/ahmetunal","html_url":"https://github.com/ahmetunal","followers_url":"https://api.github.com/users/ahmetunal/followers","following_url":"https://api.github.com/users/ahmetunal/following{/other_user}","gists_url":"https://api.github.com/users/ahmetunal/gists{/gist_id}","starred_url":"https://api.github.com/users/ahmetunal/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ahmetunal/subscriptions","organizations_url":"https://api.github.com/users/ahmetunal/orgs","repos_url":"https://api.github.com/users/ahmetunal/repos","events_url":"https://api.github.com/users/ahmetunal/events{/privacy}","received_events_url":"https://api.github.com/users/ahmetunal/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ahmetunal/d3","description":"A JavaScript visualization library for HTML and SVG.","fork":true,"url":"https://api.github.com/repos/ahmetunal/d3","forks_url":"https://api.github.com/repos/ahmetunal/d3/forks","keys_url":"https://api.github.com/repos/ahmetunal/d3/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ahmetunal/d3/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ahmetunal/d3/teams","hooks_url":"https://api.github.com/repos/ahmetunal/d3/hooks","issue_events_url":"https://api.github.com/repos/ahmetunal/d3/issues/events{/number}","events_url":"https://api.github.com/repos/ahmetunal/d3/events","assignees_url":"https://api.github.com/repos/ahmetunal/d3/assignees{/user}","branches_url":"https://api.github.com/repos/ahmetunal/d3/branches{/branch}","tags_url":"https://api.github.com/repos/ahmetunal/d3/tags","blobs_url":"https://api.github.com/repos/ahmetunal/d3/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ahmetunal/d3/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ahmetunal/d3/git/refs{/sha}","trees_url":"https://api.github.com/repos/ahmetunal/d3/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ahmetunal/d3/statuses/{sha}","languages_url":"https://api.github.com/repos/ahmetunal/d3/languages","stargazers_url":"https://api.github.com/repos/ahmetunal/d3/stargazers","contributors_url":"https://api.github.com/repos/ahmetunal/d3/contributors","subscribers_url":"https://api.github.com/repos/ahmetunal/d3/subscribers","subscription_url":"https://api.github.com/repos/ahmetunal/d3/subscription","commits_url":"https://api.github.com/repos/ahmetunal/d3/commits{/sha}","git_commits_url":"https://api.github.com/repos/ahmetunal/d3/git/commits{/sha}","comments_url":"https://api.github.com/repos/ahmetunal/d3/comments{/number}","issue_comment_url":"https://api.github.com/repos/ahmetunal/d3/issues/comments/{number}","contents_url":"https://api.github.com/repos/ahmetunal/d3/contents/{+path}","compare_url":"https://api.github.com/repos/ahmetunal/d3/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ahmetunal/d3/merges","archive_url":"https://api.github.com/repos/ahmetunal/d3/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ahmetunal/d3/downloads","issues_url":"https://api.github.com/repos/ahmetunal/d3/issues{/number}","pulls_url":"https://api.github.com/repos/ahmetunal/d3/pulls{/number}","milestones_url":"https://api.github.com/repos/ahmetunal/d3/milestones{/number}","notifications_url":"https://api.github.com/repos/ahmetunal/d3/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ahmetunal/d3/labels{/name}","releases_url":"https://api.github.com/repos/ahmetunal/d3/releases{/id}","created_at":"2015-01-01T15:13:28Z","updated_at":"2015-01-01T15:13:16Z","pushed_at":"2014-12-30T17:06:00Z","git_url":"git://github.com/ahmetunal/d3.git","ssh_url":"git@github.com:ahmetunal/d3.git","clone_url":"https://github.com/ahmetunal/d3.git","svn_url":"https://github.com/ahmetunal/d3","homepage":"http://d3js.org","size":72147,"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:13:28Z"} +,{"id":"2489657284","type":"WatchEvent","actor":{"id":825219,"login":"daynin","gravatar_id":"","url":"https://api.github.com/users/daynin","avatar_url":"https://avatars.githubusercontent.com/u/825219?"},"repo":{"id":11597120,"name":"coreos/docs","url":"https://api.github.com/repos/coreos/docs"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:13:29Z","org":{"id":3730757,"login":"coreos","gravatar_id":"","url":"https://api.github.com/orgs/coreos","avatar_url":"https://avatars.githubusercontent.com/u/3730757?"}} +,{"id":"2489657288","type":"PushEvent","actor":{"id":540890,"login":"syphar","gravatar_id":"","url":"https://api.github.com/users/syphar","avatar_url":"https://avatars.githubusercontent.com/u/540890?"},"repo":{"id":28646999,"name":"Thermondo/pytest-translations","url":"https://api.github.com/repos/Thermondo/pytest-translations"},"payload":{"push_id":536866771,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8422bd315a9339be8ecc5234db80aa8ba3f2cb11","before":"3a0d4efab6f1dc506802adfd947414dae35f9c95","commits":[{"sha":"8422bd315a9339be8ecc5234db80aa8ba3f2cb11","author":{"email":"53e3fd5a93ecfcd3f5464cab876fcf3b18df16c5@fastmail.fm","name":"Denis Cornehl"},"message":"add tests","distinct":true,"url":"https://api.github.com/repos/Thermondo/pytest-translations/commits/8422bd315a9339be8ecc5234db80aa8ba3f2cb11"}]},"public":true,"created_at":"2015-01-01T15:13:29Z","org":{"id":2737160,"login":"Thermondo","gravatar_id":"","url":"https://api.github.com/orgs/Thermondo","avatar_url":"https://avatars.githubusercontent.com/u/2737160?"}} +,{"id":"2489657289","type":"PushEvent","actor":{"id":1365953,"login":"weichsem","gravatar_id":"","url":"https://api.github.com/users/weichsem","avatar_url":"https://avatars.githubusercontent.com/u/1365953?"},"repo":{"id":28678626,"name":"weichsem/shift_parser","url":"https://api.github.com/repos/weichsem/shift_parser"},"payload":{"push_id":536866772,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"081e6ffc8e39c9b364610c4d4b29b63dc9d83aca","before":"a8568d98f8500f1c5538e139a04517d8221a0e3c","commits":[{"sha":"e9373d8fb6b057fce2066f04c209da5ab2baa21a","author":{"email":"b282295e5a78231eeeedc59986acbf097e3570b5@pillpack.com","name":"Matt Weichselbaum"},"message":"removed unused module","distinct":true,"url":"https://api.github.com/repos/weichsem/shift_parser/commits/e9373d8fb6b057fce2066f04c209da5ab2baa21a"},{"sha":"081e6ffc8e39c9b364610c4d4b29b63dc9d83aca","author":{"email":"b282295e5a78231eeeedc59986acbf097e3570b5@pillpack.com","name":"Matt Weichselbaum"},"message":"working on block functions","distinct":true,"url":"https://api.github.com/repos/weichsem/shift_parser/commits/081e6ffc8e39c9b364610c4d4b29b63dc9d83aca"}]},"public":true,"created_at":"2015-01-01T15:13:29Z"} +,{"id":"2489657290","type":"PushEvent","actor":{"id":3071881,"login":"xuanskyer","gravatar_id":"","url":"https://api.github.com/users/xuanskyer","avatar_url":"https://avatars.githubusercontent.com/u/3071881?"},"repo":{"id":28685288,"name":"xuanskyer/varnish-docs","url":"https://api.github.com/repos/xuanskyer/varnish-docs"},"payload":{"push_id":536866773,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"2fbf73ae59d3343347945c319a2ecbecebf53d64","before":"19fe5e7d00b29e85676374b46a528c16ba3af394","commits":[{"sha":"f72c6733a6e7999ce2af0e2f98e16c385135ae12","author":{"email":"34e4968eee2bfeb8184343eca9f17a24f7027883@anjuke.com","name":"张鹏玄"},"message":"更新","distinct":true,"url":"https://api.github.com/repos/xuanskyer/varnish-docs/commits/f72c6733a6e7999ce2af0e2f98e16c385135ae12"},{"sha":"2fbf73ae59d3343347945c319a2ecbecebf53d64","author":{"email":"34e4968eee2bfeb8184343eca9f17a24f7027883@anjuke.com","name":"张鹏玄"},"message":"更新varnish教程","distinct":true,"url":"https://api.github.com/repos/xuanskyer/varnish-docs/commits/2fbf73ae59d3343347945c319a2ecbecebf53d64"}]},"public":true,"created_at":"2015-01-01T15:13:29Z"} +,{"id":"2489657293","type":"PushEvent","actor":{"id":800043,"login":"06wj","gravatar_id":"","url":"https://api.github.com/users/06wj","avatar_url":"https://avatars.githubusercontent.com/u/800043?"},"repo":{"id":28091401,"name":"06wj/lego","url":"https://api.github.com/repos/06wj/lego"},"payload":{"push_id":536866776,"size":1,"distinct_size":0,"ref":"refs/heads/gh-pages","head":"f2376a9253ee238f71679a1846f1ada98d429c36","before":"68867c7354f15fc3a6f4030791983ddbb6147790","commits":[{"sha":"f2376a9253ee238f71679a1846f1ada98d429c36","author":{"email":"0192e97bcb18f9671e23c39bc8c1a979ea9e4047@alibaba-inc.com","name":"墨水"},"message":"add vector","distinct":false,"url":"https://api.github.com/repos/06wj/lego/commits/f2376a9253ee238f71679a1846f1ada98d429c36"}]},"public":true,"created_at":"2015-01-01T15:13:30Z"} +,{"id":"2489657294","type":"PushEvent","actor":{"id":339540,"login":"Medo42","gravatar_id":"","url":"https://api.github.com/users/Medo42","avatar_url":"https://avatars.githubusercontent.com/u/339540?"},"repo":{"id":811170,"name":"Medo42/Gang-Garrison-2","url":"https://api.github.com/repos/Medo42/Gang-Garrison-2"},"payload":{"push_id":536866777,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1bc617dddf58a84a029a0ed0335416452780ea9d","before":"af5c48c73ac21b30dd3fc3ba838e4cf3745d1f97","commits":[{"sha":"1bc617dddf58a84a029a0ed0335416452780ea9d","author":{"email":"d190718d34c87b6f172a00e3075401114ecc1a0f@googlemail.com","name":"Medo"},"message":"Removed old colliders which predated the wallmask approach and which are no longer in use","distinct":true,"url":"https://api.github.com/repos/Medo42/Gang-Garrison-2/commits/1bc617dddf58a84a029a0ed0335416452780ea9d"}]},"public":true,"created_at":"2015-01-01T15:13:30Z"} +,{"id":"2489657295","type":"IssueCommentEvent","actor":{"id":8317250,"login":"bucaran","gravatar_id":"","url":"https://api.github.com/users/bucaran","avatar_url":"https://avatars.githubusercontent.com/u/8317250?"},"repo":{"id":5152538,"name":"bpinto/oh-my-fish","url":"https://api.github.com/repos/bpinto/oh-my-fish"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/bpinto/oh-my-fish/issues/88","labels_url":"https://api.github.com/repos/bpinto/oh-my-fish/issues/88/labels{/name}","comments_url":"https://api.github.com/repos/bpinto/oh-my-fish/issues/88/comments","events_url":"https://api.github.com/repos/bpinto/oh-my-fish/issues/88/events","html_url":"https://github.com/bpinto/oh-my-fish/issues/88","id":22437293,"number":88,"title":"Dependency between plugins","user":{"login":"leira","id":39118,"avatar_url":"https://avatars.githubusercontent.com/u/39118?v=3","gravatar_id":"","url":"https://api.github.com/users/leira","html_url":"https://github.com/leira","followers_url":"https://api.github.com/users/leira/followers","following_url":"https://api.github.com/users/leira/following{/other_user}","gists_url":"https://api.github.com/users/leira/gists{/gist_id}","starred_url":"https://api.github.com/users/leira/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/leira/subscriptions","organizations_url":"https://api.github.com/users/leira/orgs","repos_url":"https://api.github.com/users/leira/repos","events_url":"https://api.github.com/users/leira/events{/privacy}","received_events_url":"https://api.github.com/users/leira/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/bpinto/oh-my-fish/labels/idea","name":"idea","color":"d7e102"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":5,"created_at":"2013-11-11T09:31:13Z","updated_at":"2015-01-01T15:13:30Z","closed_at":null,"body":"To import a dependent plugin from another plugin is useful sometimes, oh-my-zsh has this feature, seems oh-my-fish has not implemented it yet."},"comment":{"url":"https://api.github.com/repos/bpinto/oh-my-fish/issues/comments/68488773","html_url":"https://github.com/bpinto/oh-my-fish/issues/88#issuecomment-68488773","issue_url":"https://api.github.com/repos/bpinto/oh-my-fish/issues/88","id":68488773,"user":{"login":"bucaran","id":8317250,"avatar_url":"https://avatars.githubusercontent.com/u/8317250?v=3","gravatar_id":"","url":"https://api.github.com/users/bucaran","html_url":"https://github.com/bucaran","followers_url":"https://api.github.com/users/bucaran/followers","following_url":"https://api.github.com/users/bucaran/following{/other_user}","gists_url":"https://api.github.com/users/bucaran/gists{/gist_id}","starred_url":"https://api.github.com/users/bucaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bucaran/subscriptions","organizations_url":"https://api.github.com/users/bucaran/orgs","repos_url":"https://api.github.com/users/bucaran/repos","events_url":"https://api.github.com/users/bucaran/events{/privacy}","received_events_url":"https://api.github.com/users/bucaran/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:13:30Z","updated_at":"2015-01-01T15:13:30Z","body":"#280 and #284 should fix and allow simple plugin interdependency.\r\n\r\n#280: Adds `prepend_tree` that basically traverses a source path and prepends each directory matching a list of glob patterns to a destination path (leave out to to add them to `fish_function_path`.\r\n\r\n#284: Automatically sources completion and `load` files when `_fish_add_plugin` is called.\r\n\r\n_prepend_tree (dirname $argv) # Source dependencies inside current plugin.\r\n_fish_add_plugin # Adds plugin and calls that plugins `plugin.load`.\r\n\r\n`_fish_add_plugin` calls `_prepend_tree` behind the scenes which checks whether the path to add already exists in the destination path, saving you the trouble to check for conflicting imports."}},"public":true,"created_at":"2015-01-01T15:13:30Z"} +,{"id":"2489657299","type":"PushEvent","actor":{"id":4123896,"login":"slingzor","gravatar_id":"","url":"https://api.github.com/users/slingzor","avatar_url":"https://avatars.githubusercontent.com/u/4123896?"},"repo":{"id":28688510,"name":"slingzor/Spoon-Knife","url":"https://api.github.com/repos/slingzor/Spoon-Knife"},"payload":{"push_id":536866778,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4bda9ecdba12878919d9af40a4344d363ad1d2ba","before":"d0dd1f61b33d64e29d8bc1372a94ef6a2fee76a9","commits":[{"sha":"4bda9ecdba12878919d9af40a4344d363ad1d2ba","author":{"email":"7c81373a9122306757ae4d37a6353a0209aaf502@gmail.com","name":"SIDDHARTH SINGH"},"message":"Test 1","distinct":true,"url":"https://api.github.com/repos/slingzor/Spoon-Knife/commits/4bda9ecdba12878919d9af40a4344d363ad1d2ba"}]},"public":true,"created_at":"2015-01-01T15:13:30Z"} +,{"id":"2489657301","type":"GollumEvent","actor":{"id":469989,"login":"bennyn","gravatar_id":"","url":"https://api.github.com/users/bennyn","avatar_url":"https://avatars.githubusercontent.com/u/469989?"},"repo":{"id":26399632,"name":"welovecoding/welovecoding.github.io","url":"https://api.github.com/repos/welovecoding/welovecoding.github.io"},"payload":{"pages":[{"page_name":"Hotkeys","title":"Hotkeys","summary":null,"action":"edited","sha":"a2d686e2214858dcd7bf25f7244ac147a56e7fff","html_url":"https://github.com/welovecoding/welovecoding.github.io/wiki/Hotkeys"}]},"public":true,"created_at":"2015-01-01T15:13:30Z","org":{"id":8947331,"login":"welovecoding","gravatar_id":"","url":"https://api.github.com/orgs/welovecoding","avatar_url":"https://avatars.githubusercontent.com/u/8947331?"}} +,{"id":"2489657302","type":"PullRequestEvent","actor":{"id":9070606,"login":"FrozenWay","gravatar_id":"","url":"https://api.github.com/users/FrozenWay","avatar_url":"https://avatars.githubusercontent.com/u/9070606?"},"repo":{"id":27275821,"name":"bcit-ci/codeigniter3-translations","url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations"},"payload":{"action":"opened","number":61,"pull_request":{"url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/pulls/61","id":26743870,"html_url":"https://github.com/bcit-ci/codeigniter3-translations/pull/61","diff_url":"https://github.com/bcit-ci/codeigniter3-translations/pull/61.diff","patch_url":"https://github.com/bcit-ci/codeigniter3-translations/pull/61.patch","issue_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/issues/61","number":61,"state":"open","locked":false,"title":"[Fr] Fixes","user":{"login":"FrozenWay","id":9070606,"avatar_url":"https://avatars.githubusercontent.com/u/9070606?v=3","gravatar_id":"","url":"https://api.github.com/users/FrozenWay","html_url":"https://github.com/FrozenWay","followers_url":"https://api.github.com/users/FrozenWay/followers","following_url":"https://api.github.com/users/FrozenWay/following{/other_user}","gists_url":"https://api.github.com/users/FrozenWay/gists{/gist_id}","starred_url":"https://api.github.com/users/FrozenWay/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/FrozenWay/subscriptions","organizations_url":"https://api.github.com/users/FrozenWay/orgs","repos_url":"https://api.github.com/users/FrozenWay/repos","events_url":"https://api.github.com/users/FrozenWay/events{/privacy}","received_events_url":"https://api.github.com/users/FrozenWay/received_events","type":"User","site_admin":false},"body":"Hello,\r\n\r\nI'm a French-Italian student in an engineering school, web developer for 5 years and I use CI on my personal and professional projects.\r\nI wanted to check the progression of the French translation and I noticed some tiny mistakes, so I figured I had to help you with that.\r\n\r\nHere are the explanations for the fixes. They don't include typos (Accents, wrong letters). Some are debatable, and new ones can be found this way.\r\n\r\ndate_: \r\n- 42. The string is the same as the next one, so I linked both ;\r\n- Aligned \"=\" chars ;\r\n- Used the same quote format for each string (double) ;\r\n- Aligned UTC hours for consistence purposes.\r\n\r\ndb_: \r\n- \"fournir\", \"passer en paramètre\", \"indiquer\" are sometimes better, contextually speaking, than \"soumettre\", which is usually employed for form submission ;\r\n- \"supporter\" is better than \"soumettre\", when the meaning is related to feature support ;\r\n- We don't say \"colonne\" that much in French, when talking about a table field. \"Champ\" is more accurate.\r\n\r\nemail_:\r\n- In French typography, you have to put spaces before and after complex punctuation (colon, semicolon, exclamation mark, interrogation mark, etc.).\r\n\r\nform_validation_:\r\n- \"Integer\" is not user-friendly. \"Nombre entier\" is more likely to be understood.\r\n\r\nmigration_:\r\n- Zero is considered singular. Plural forms are not justified here.\r\n\r\nnumber_:\r\n- French translation for [KMGT]B is [KMGT]o.\r\n\r\nupload_:\r\n- Talking about possibility is better than capability for a non-human/physical object.\r\n\r\n\r\nRemember that these fixes are totally debatable, and my pull request is just a suggestion.\r\n\r\nThank you.\r\n- Vincenzo S.","created_at":"2015-01-01T15:13:30Z","updated_at":"2015-01-01T15:13:30Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/pulls/61/commits","review_comments_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/pulls/61/comments","review_comment_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/pulls/comments/{number}","comments_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/issues/61/comments","statuses_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/statuses/1c7f6c1697d362aaaf55f15393039ff6cf5411d6","head":{"label":"FrozenWay:fr_corr_FW","ref":"fr_corr_FW","sha":"1c7f6c1697d362aaaf55f15393039ff6cf5411d6","user":{"login":"FrozenWay","id":9070606,"avatar_url":"https://avatars.githubusercontent.com/u/9070606?v=3","gravatar_id":"","url":"https://api.github.com/users/FrozenWay","html_url":"https://github.com/FrozenWay","followers_url":"https://api.github.com/users/FrozenWay/followers","following_url":"https://api.github.com/users/FrozenWay/following{/other_user}","gists_url":"https://api.github.com/users/FrozenWay/gists{/gist_id}","starred_url":"https://api.github.com/users/FrozenWay/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/FrozenWay/subscriptions","organizations_url":"https://api.github.com/users/FrozenWay/orgs","repos_url":"https://api.github.com/users/FrozenWay/repos","events_url":"https://api.github.com/users/FrozenWay/events{/privacy}","received_events_url":"https://api.github.com/users/FrozenWay/received_events","type":"User","site_admin":false},"repo":{"id":28685635,"name":"codeigniter3-translations","full_name":"FrozenWay/codeigniter3-translations","owner":{"login":"FrozenWay","id":9070606,"avatar_url":"https://avatars.githubusercontent.com/u/9070606?v=3","gravatar_id":"","url":"https://api.github.com/users/FrozenWay","html_url":"https://github.com/FrozenWay","followers_url":"https://api.github.com/users/FrozenWay/followers","following_url":"https://api.github.com/users/FrozenWay/following{/other_user}","gists_url":"https://api.github.com/users/FrozenWay/gists{/gist_id}","starred_url":"https://api.github.com/users/FrozenWay/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/FrozenWay/subscriptions","organizations_url":"https://api.github.com/users/FrozenWay/orgs","repos_url":"https://api.github.com/users/FrozenWay/repos","events_url":"https://api.github.com/users/FrozenWay/events{/privacy}","received_events_url":"https://api.github.com/users/FrozenWay/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/FrozenWay/codeigniter3-translations","description":"Translations of the CodeIgniter system messages","fork":true,"url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations","forks_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/forks","keys_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/keys{/key_id}","collaborators_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/teams","hooks_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/hooks","issue_events_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/issues/events{/number}","events_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/events","assignees_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/assignees{/user}","branches_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/branches{/branch}","tags_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/tags","blobs_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/git/refs{/sha}","trees_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/git/trees{/sha}","statuses_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/statuses/{sha}","languages_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/languages","stargazers_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/stargazers","contributors_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/contributors","subscribers_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/subscribers","subscription_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/subscription","commits_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/commits{/sha}","git_commits_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/git/commits{/sha}","comments_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/comments{/number}","issue_comment_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/issues/comments/{number}","contents_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/contents/{+path}","compare_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/compare/{base}...{head}","merges_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/merges","archive_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/downloads","issues_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/issues{/number}","pulls_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/pulls{/number}","milestones_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/milestones{/number}","notifications_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/labels{/name}","releases_url":"https://api.github.com/repos/FrozenWay/codeigniter3-translations/releases{/id}","created_at":"2015-01-01T11:45:24Z","updated_at":"2015-01-01T11:45:25Z","pushed_at":"2015-01-01T14:50:01Z","git_url":"git://github.com/FrozenWay/codeigniter3-translations.git","ssh_url":"git@github.com:FrozenWay/codeigniter3-translations.git","clone_url":"https://github.com/FrozenWay/codeigniter3-translations.git","svn_url":"https://github.com/FrozenWay/codeigniter3-translations","homepage":null,"size":1097,"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":"bcit-ci:master","ref":"master","sha":"fd7df6090d5c40d68258c8c685ed9f7cb70b3585","user":{"login":"bcit-ci","id":8863432,"avatar_url":"https://avatars.githubusercontent.com/u/8863432?v=3","gravatar_id":"","url":"https://api.github.com/users/bcit-ci","html_url":"https://github.com/bcit-ci","followers_url":"https://api.github.com/users/bcit-ci/followers","following_url":"https://api.github.com/users/bcit-ci/following{/other_user}","gists_url":"https://api.github.com/users/bcit-ci/gists{/gist_id}","starred_url":"https://api.github.com/users/bcit-ci/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bcit-ci/subscriptions","organizations_url":"https://api.github.com/users/bcit-ci/orgs","repos_url":"https://api.github.com/users/bcit-ci/repos","events_url":"https://api.github.com/users/bcit-ci/events{/privacy}","received_events_url":"https://api.github.com/users/bcit-ci/received_events","type":"Organization","site_admin":false},"repo":{"id":27275821,"name":"codeigniter3-translations","full_name":"bcit-ci/codeigniter3-translations","owner":{"login":"bcit-ci","id":8863432,"avatar_url":"https://avatars.githubusercontent.com/u/8863432?v=3","gravatar_id":"","url":"https://api.github.com/users/bcit-ci","html_url":"https://github.com/bcit-ci","followers_url":"https://api.github.com/users/bcit-ci/followers","following_url":"https://api.github.com/users/bcit-ci/following{/other_user}","gists_url":"https://api.github.com/users/bcit-ci/gists{/gist_id}","starred_url":"https://api.github.com/users/bcit-ci/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bcit-ci/subscriptions","organizations_url":"https://api.github.com/users/bcit-ci/orgs","repos_url":"https://api.github.com/users/bcit-ci/repos","events_url":"https://api.github.com/users/bcit-ci/events{/privacy}","received_events_url":"https://api.github.com/users/bcit-ci/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/bcit-ci/codeigniter3-translations","description":"Translations of the CodeIgniter system messages","fork":false,"url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations","forks_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/forks","keys_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/keys{/key_id}","collaborators_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/teams","hooks_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/hooks","issue_events_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/issues/events{/number}","events_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/events","assignees_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/assignees{/user}","branches_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/branches{/branch}","tags_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/tags","blobs_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/git/refs{/sha}","trees_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/git/trees{/sha}","statuses_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/statuses/{sha}","languages_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/languages","stargazers_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/stargazers","contributors_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/contributors","subscribers_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/subscribers","subscription_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/subscription","commits_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/commits{/sha}","git_commits_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/git/commits{/sha}","comments_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/comments{/number}","issue_comment_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/issues/comments/{number}","contents_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/contents/{+path}","compare_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/compare/{base}...{head}","merges_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/merges","archive_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/downloads","issues_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/issues{/number}","pulls_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/pulls{/number}","milestones_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/milestones{/number}","notifications_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/labels{/name}","releases_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/releases{/id}","created_at":"2014-11-28T17:10:51Z","updated_at":"2015-01-01T10:06:33Z","pushed_at":"2015-01-01T10:06:33Z","git_url":"git://github.com/bcit-ci/codeigniter3-translations.git","ssh_url":"git@github.com:bcit-ci/codeigniter3-translations.git","clone_url":"https://github.com/bcit-ci/codeigniter3-translations.git","svn_url":"https://github.com/bcit-ci/codeigniter3-translations","homepage":null,"size":1097,"stargazers_count":23,"watchers_count":23,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":38,"mirror_url":null,"open_issues_count":1,"forks":38,"open_issues":1,"watchers":23,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/pulls/61"},"html":{"href":"https://github.com/bcit-ci/codeigniter3-translations/pull/61"},"issue":{"href":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/issues/61"},"comments":{"href":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/issues/61/comments"},"review_comments":{"href":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/pulls/61/comments"},"review_comment":{"href":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/pulls/61/commits"},"statuses":{"href":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/statuses/1c7f6c1697d362aaaf55f15393039ff6cf5411d6"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":3,"additions":47,"deletions":48,"changed_files":10}},"public":true,"created_at":"2015-01-01T15:13:31Z","org":{"id":8863432,"login":"bcit-ci","gravatar_id":"","url":"https://api.github.com/orgs/bcit-ci","avatar_url":"https://avatars.githubusercontent.com/u/8863432?"}} +,{"id":"2489657304","type":"WatchEvent","actor":{"id":1756675,"login":"nijou","gravatar_id":"","url":"https://api.github.com/users/nijou","avatar_url":"https://avatars.githubusercontent.com/u/1756675?"},"repo":{"id":28428729,"name":"wasabeef/awesome-android-ui","url":"https://api.github.com/repos/wasabeef/awesome-android-ui"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:13:31Z"} +,{"id":"2489657308","type":"IssueCommentEvent","actor":{"id":815976,"login":"basilfx","gravatar_id":"","url":"https://api.github.com/users/basilfx","avatar_url":"https://avatars.githubusercontent.com/u/815976?"},"repo":{"id":1779181,"name":"rembo10/headphones","url":"https://api.github.com/repos/rembo10/headphones"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/rembo10/headphones/issues/2058","labels_url":"https://api.github.com/repos/rembo10/headphones/issues/2058/labels{/name}","comments_url":"https://api.github.com/repos/rembo10/headphones/issues/2058/comments","events_url":"https://api.github.com/repos/rembo10/headphones/issues/2058/events","html_url":"https://github.com/rembo10/headphones/issues/2058","id":53080068,"number":2058,"title":"Search provider SSL","user":{"login":"abrenoch","id":2146139,"avatar_url":"https://avatars.githubusercontent.com/u/2146139?v=3","gravatar_id":"","url":"https://api.github.com/users/abrenoch","html_url":"https://github.com/abrenoch","followers_url":"https://api.github.com/users/abrenoch/followers","following_url":"https://api.github.com/users/abrenoch/following{/other_user}","gists_url":"https://api.github.com/users/abrenoch/gists{/gist_id}","starred_url":"https://api.github.com/users/abrenoch/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/abrenoch/subscriptions","organizations_url":"https://api.github.com/users/abrenoch/orgs","repos_url":"https://api.github.com/users/abrenoch/repos","events_url":"https://api.github.com/users/abrenoch/events{/privacy}","received_events_url":"https://api.github.com/users/abrenoch/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/rembo10/headphones/labels/Develop+Branch","name":"Develop Branch","color":"bfe5bf"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":9,"created_at":"2014-12-29T23:13:19Z","updated_at":"2015-01-01T15:13:31Z","closed_at":null,"body":"I am seeing a new error as of recent:\r\n\r\n> Unable to connect to remote host because of a SSL error. It's likely the remote certificate is untrusted by your system. This check can be disabled (advanced users only).\r\n\r\nI looked around for this option, but an unable to find it.. could anybody enlighten me on how to disable this check?"},"comment":{"url":"https://api.github.com/repos/rembo10/headphones/issues/comments/68488774","html_url":"https://github.com/rembo10/headphones/issues/2058#issuecomment-68488774","issue_url":"https://api.github.com/repos/rembo10/headphones/issues/2058","id":68488774,"user":{"login":"basilfx","id":815976,"avatar_url":"https://avatars.githubusercontent.com/u/815976?v=3","gravatar_id":"","url":"https://api.github.com/users/basilfx","html_url":"https://github.com/basilfx","followers_url":"https://api.github.com/users/basilfx/followers","following_url":"https://api.github.com/users/basilfx/following{/other_user}","gists_url":"https://api.github.com/users/basilfx/gists{/gist_id}","starred_url":"https://api.github.com/users/basilfx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/basilfx/subscriptions","organizations_url":"https://api.github.com/users/basilfx/orgs","repos_url":"https://api.github.com/users/basilfx/repos","events_url":"https://api.github.com/users/basilfx/events{/privacy}","received_events_url":"https://api.github.com/users/basilfx/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:13:31Z","updated_at":"2015-01-01T15:13:31Z","body":"It can be in another directory, depending on how you start headphones. \n\nThere is no other way to change it."}},"public":true,"created_at":"2015-01-01T15:13:31Z"} +,{"id":"2489657309","type":"CreateEvent","actor":{"id":1907976,"login":"Mashpy","gravatar_id":"","url":"https://api.github.com/users/Mashpy","avatar_url":"https://avatars.githubusercontent.com/u/1907976?"},"repo":{"id":28688850,"name":"Mashpy/flv-player","url":"https://api.github.com/repos/Mashpy/flv-player"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:31Z"} +,{"id":"2489657310","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":536866780,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2b512c84144d7d27e8c4ffcdd4b4a6caddca7670","before":"0a322eecb4765ef54c01bfb2cfb4e1b5431b4270","commits":[{"sha":"2b512c84144d7d27e8c4ffcdd4b4a6caddca7670","author":{"email":"1d6e1cf70ec6f9ab28d3ea4b27a49a77654d370e@qinwenfeng.com","name":"qinwf"},"message":"remove now","distinct":true,"url":"https://api.github.com/repos/qinwf/Chinese.jl/commits/2b512c84144d7d27e8c4ffcdd4b4a6caddca7670"}]},"public":true,"created_at":"2015-01-01T15:13:32Z"} +,{"id":"2489657311","type":"IssuesEvent","actor":{"id":2611161,"login":"iu2fish","gravatar_id":"","url":"https://api.github.com/users/iu2fish","avatar_url":"https://avatars.githubusercontent.com/u/2611161?"},"repo":{"id":22577486,"name":"iu2fish/iu2fish.github.com","url":"https://api.github.com/repos/iu2fish/iu2fish.github.com"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/iu2fish/iu2fish.github.com/issues/28","labels_url":"https://api.github.com/repos/iu2fish/iu2fish.github.com/issues/28/labels{/name}","comments_url":"https://api.github.com/repos/iu2fish/iu2fish.github.com/issues/28/comments","events_url":"https://api.github.com/repos/iu2fish/iu2fish.github.com/issues/28/events","html_url":"https://github.com/iu2fish/iu2fish.github.com/issues/28","id":53221606,"number":28,"title":"新年第一天,第一个issue","user":{"login":"iu2fish","id":2611161,"avatar_url":"https://avatars.githubusercontent.com/u/2611161?v=3","gravatar_id":"","url":"https://api.github.com/users/iu2fish","html_url":"https://github.com/iu2fish","followers_url":"https://api.github.com/users/iu2fish/followers","following_url":"https://api.github.com/users/iu2fish/following{/other_user}","gists_url":"https://api.github.com/users/iu2fish/gists{/gist_id}","starred_url":"https://api.github.com/users/iu2fish/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iu2fish/subscriptions","organizations_url":"https://api.github.com/users/iu2fish/orgs","repos_url":"https://api.github.com/users/iu2fish/repos","events_url":"https://api.github.com/users/iu2fish/events{/privacy}","received_events_url":"https://api.github.com/users/iu2fish/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:13:32Z","updated_at":"2015-01-01T15:13:32Z","closed_at":null,"body":"看了一些文章,总觉得之前对自己不够狠。2015加油!"}},"public":true,"created_at":"2015-01-01T15:13:32Z"} +,{"id":"2489657313","type":"ForkEvent","actor":{"id":3400200,"login":"yann-morin-1998","gravatar_id":"","url":"https://api.github.com/users/yann-morin-1998","avatar_url":"https://avatars.githubusercontent.com/u/3400200?"},"repo":{"id":3329740,"name":"raspberrypi/tools","url":"https://api.github.com/repos/raspberrypi/tools"},"payload":{"forkee":{"id":28688851,"name":"tools","full_name":"yann-morin-1998/tools","owner":{"login":"yann-morin-1998","id":3400200,"avatar_url":"https://avatars.githubusercontent.com/u/3400200?v=3","gravatar_id":"","url":"https://api.github.com/users/yann-morin-1998","html_url":"https://github.com/yann-morin-1998","followers_url":"https://api.github.com/users/yann-morin-1998/followers","following_url":"https://api.github.com/users/yann-morin-1998/following{/other_user}","gists_url":"https://api.github.com/users/yann-morin-1998/gists{/gist_id}","starred_url":"https://api.github.com/users/yann-morin-1998/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yann-morin-1998/subscriptions","organizations_url":"https://api.github.com/users/yann-morin-1998/orgs","repos_url":"https://api.github.com/users/yann-morin-1998/repos","events_url":"https://api.github.com/users/yann-morin-1998/events{/privacy}","received_events_url":"https://api.github.com/users/yann-morin-1998/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/yann-morin-1998/tools","description":"","fork":true,"url":"https://api.github.com/repos/yann-morin-1998/tools","forks_url":"https://api.github.com/repos/yann-morin-1998/tools/forks","keys_url":"https://api.github.com/repos/yann-morin-1998/tools/keys{/key_id}","collaborators_url":"https://api.github.com/repos/yann-morin-1998/tools/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/yann-morin-1998/tools/teams","hooks_url":"https://api.github.com/repos/yann-morin-1998/tools/hooks","issue_events_url":"https://api.github.com/repos/yann-morin-1998/tools/issues/events{/number}","events_url":"https://api.github.com/repos/yann-morin-1998/tools/events","assignees_url":"https://api.github.com/repos/yann-morin-1998/tools/assignees{/user}","branches_url":"https://api.github.com/repos/yann-morin-1998/tools/branches{/branch}","tags_url":"https://api.github.com/repos/yann-morin-1998/tools/tags","blobs_url":"https://api.github.com/repos/yann-morin-1998/tools/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/yann-morin-1998/tools/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/yann-morin-1998/tools/git/refs{/sha}","trees_url":"https://api.github.com/repos/yann-morin-1998/tools/git/trees{/sha}","statuses_url":"https://api.github.com/repos/yann-morin-1998/tools/statuses/{sha}","languages_url":"https://api.github.com/repos/yann-morin-1998/tools/languages","stargazers_url":"https://api.github.com/repos/yann-morin-1998/tools/stargazers","contributors_url":"https://api.github.com/repos/yann-morin-1998/tools/contributors","subscribers_url":"https://api.github.com/repos/yann-morin-1998/tools/subscribers","subscription_url":"https://api.github.com/repos/yann-morin-1998/tools/subscription","commits_url":"https://api.github.com/repos/yann-morin-1998/tools/commits{/sha}","git_commits_url":"https://api.github.com/repos/yann-morin-1998/tools/git/commits{/sha}","comments_url":"https://api.github.com/repos/yann-morin-1998/tools/comments{/number}","issue_comment_url":"https://api.github.com/repos/yann-morin-1998/tools/issues/comments/{number}","contents_url":"https://api.github.com/repos/yann-morin-1998/tools/contents/{+path}","compare_url":"https://api.github.com/repos/yann-morin-1998/tools/compare/{base}...{head}","merges_url":"https://api.github.com/repos/yann-morin-1998/tools/merges","archive_url":"https://api.github.com/repos/yann-morin-1998/tools/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/yann-morin-1998/tools/downloads","issues_url":"https://api.github.com/repos/yann-morin-1998/tools/issues{/number}","pulls_url":"https://api.github.com/repos/yann-morin-1998/tools/pulls{/number}","milestones_url":"https://api.github.com/repos/yann-morin-1998/tools/milestones{/number}","notifications_url":"https://api.github.com/repos/yann-morin-1998/tools/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/yann-morin-1998/tools/labels{/name}","releases_url":"https://api.github.com/repos/yann-morin-1998/tools/releases{/id}","created_at":"2015-01-01T15:13:32Z","updated_at":"2015-01-01T04:19:52Z","pushed_at":"2014-12-03T15:51:15Z","git_url":"git://github.com/yann-morin-1998/tools.git","ssh_url":"git@github.com:yann-morin-1998/tools.git","clone_url":"https://github.com/yann-morin-1998/tools.git","svn_url":"https://github.com/yann-morin-1998/tools","homepage":"","size":337075,"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:13:32Z","org":{"id":1294177,"login":"raspberrypi","gravatar_id":"","url":"https://api.github.com/orgs/raspberrypi","avatar_url":"https://avatars.githubusercontent.com/u/1294177?"}} +,{"id":"2489657314","type":"IssueCommentEvent","actor":{"id":3618217,"login":"Dynious","gravatar_id":"","url":"https://api.github.com/users/Dynious","avatar_url":"https://avatars.githubusercontent.com/u/3618217?"},"repo":{"id":15116871,"name":"Dynious/RefinedRelocation","url":"https://api.github.com/repos/Dynious/RefinedRelocation"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/Dynious/RefinedRelocation/issues/255","labels_url":"https://api.github.com/repos/Dynious/RefinedRelocation/issues/255/labels{/name}","comments_url":"https://api.github.com/repos/Dynious/RefinedRelocation/issues/255/comments","events_url":"https://api.github.com/repos/Dynious/RefinedRelocation/issues/255/events","html_url":"https://github.com/Dynious/RefinedRelocation/issues/255","id":53220999,"number":255,"title":"WBE should have a button to open the linked blocks interface (if there is one).","user":{"login":"Micky2506","id":7824732,"avatar_url":"https://avatars.githubusercontent.com/u/7824732?v=3","gravatar_id":"","url":"https://api.github.com/users/Micky2506","html_url":"https://github.com/Micky2506","followers_url":"https://api.github.com/users/Micky2506/followers","following_url":"https://api.github.com/users/Micky2506/following{/other_user}","gists_url":"https://api.github.com/users/Micky2506/gists{/gist_id}","starred_url":"https://api.github.com/users/Micky2506/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Micky2506/subscriptions","organizations_url":"https://api.github.com/users/Micky2506/orgs","repos_url":"https://api.github.com/users/Micky2506/repos","events_url":"https://api.github.com/users/Micky2506/events{/privacy}","received_events_url":"https://api.github.com/users/Micky2506/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T14:42:14Z","updated_at":"2015-01-01T15:13:32Z","closed_at":null,"body":"This would probably be done by simply right clicking on the linked block."},"comment":{"url":"https://api.github.com/repos/Dynious/RefinedRelocation/issues/comments/68488775","html_url":"https://github.com/Dynious/RefinedRelocation/issues/255#issuecomment-68488775","issue_url":"https://api.github.com/repos/Dynious/RefinedRelocation/issues/255","id":68488775,"user":{"login":"Dynious","id":3618217,"avatar_url":"https://avatars.githubusercontent.com/u/3618217?v=3","gravatar_id":"","url":"https://api.github.com/users/Dynious","html_url":"https://github.com/Dynious","followers_url":"https://api.github.com/users/Dynious/followers","following_url":"https://api.github.com/users/Dynious/following{/other_user}","gists_url":"https://api.github.com/users/Dynious/gists{/gist_id}","starred_url":"https://api.github.com/users/Dynious/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Dynious/subscriptions","organizations_url":"https://api.github.com/users/Dynious/orgs","repos_url":"https://api.github.com/users/Dynious/repos","events_url":"https://api.github.com/users/Dynious/events{/privacy}","received_events_url":"https://api.github.com/users/Dynious/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:13:32Z","updated_at":"2015-01-01T15:13:32Z","body":"I tried to add this feature when making the WBE, but some GUIs (at least vanilla ones) check the distance to a player and close the GUI when the distance is too large. I tried to work around this, but I couldn't get it working right."}},"public":true,"created_at":"2015-01-01T15:13:32Z"} +,{"id":"2489657320","type":"PushEvent","actor":{"id":5096753,"login":"Iryaz","gravatar_id":"","url":"https://api.github.com/users/Iryaz","avatar_url":"https://avatars.githubusercontent.com/u/5096753?"},"repo":{"id":27878315,"name":"Iryaz/leso6","url":"https://api.github.com/repos/Iryaz/leso6"},"payload":{"push_id":536866781,"size":5,"distinct_size":5,"ref":"refs/heads/master","head":"7ded9daf0ddcbcbdab246478213e4bcb71c84810","before":"7443bc7c8c6c2685539ff05d0e7bb65c55af09ae","commits":[{"sha":"7ce49320cfd9df315af96b6314ace465669fdaab","author":{"email":"25cda388a057ed97ac9ae22a4fc1e91c09cb8b76@gmail.com","name":"Ilya"},"message":"Merge pull request #1 from Iryaz/master\n\n\tnew file: platform/adc.c","distinct":true,"url":"https://api.github.com/repos/Iryaz/leso6/commits/7ce49320cfd9df315af96b6314ace465669fdaab"},{"sha":"f75b19b1f0937cda5ec1324ef1b832c7f7589108","author":{"email":"6ac4e9492f085755ddd29d944448b283404bea2b@yandex.ru","name":"Shamrel"},"message":"Добавил bootloader","distinct":true,"url":"https://api.github.com/repos/Iryaz/leso6/commits/f75b19b1f0937cda5ec1324ef1b832c7f7589108"},{"sha":"3b91685daee849372d16de9b0d4ea977f4ec29af","author":{"email":"6ac4e9492f085755ddd29d944448b283404bea2b@yandex.ru","name":"Shamrel"},"message":"edit bootloader","distinct":true,"url":"https://api.github.com/repos/Iryaz/leso6/commits/3b91685daee849372d16de9b0d4ea977f4ec29af"},{"sha":"2551c3623a46bacd2e762a446372c82fc2f1471a","author":{"email":"6ac4e9492f085755ddd29d944448b283404bea2b@yandex.ru","name":"Shamrel"},"message":"Клавиатура не требует внешних подтягивающих резистров.","distinct":true,"url":"https://api.github.com/repos/Iryaz/leso6/commits/2551c3623a46bacd2e762a446372c82fc2f1471a"},{"sha":"7ded9daf0ddcbcbdab246478213e4bcb71c84810","author":{"email":"6ac4e9492f085755ddd29d944448b283404bea2b@yandex.ru","name":"Shamrel"},"message":"Исправлены include в Makefile","distinct":true,"url":"https://api.github.com/repos/Iryaz/leso6/commits/7ded9daf0ddcbcbdab246478213e4bcb71c84810"}]},"public":true,"created_at":"2015-01-01T15:13:33Z"} +,{"id":"2489657322","type":"PushEvent","actor":{"id":4627837,"login":"jessemillar","gravatar_id":"","url":"https://api.github.com/users/jessemillar","avatar_url":"https://avatars.githubusercontent.com/u/4627837?"},"repo":{"id":26350569,"name":"jessemillar/Baymax","url":"https://api.github.com/repos/jessemillar/Baymax"},"payload":{"push_id":536866782,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6bac07c3c784de6c61d9bca51ca86b11134eb533","before":"9cbd7535f647c2807ad9701816b67b2de05bd4eb","commits":[{"sha":"6bac07c3c784de6c61d9bca51ca86b11134eb533","author":{"email":"0ba40b71986250aad0903c7ebcfd76a410af35fb@gmail.com","name":"Jesse Millar"},"message":"Update LICENSE.md","distinct":true,"url":"https://api.github.com/repos/jessemillar/Baymax/commits/6bac07c3c784de6c61d9bca51ca86b11134eb533"}]},"public":true,"created_at":"2015-01-01T15:13:34Z"} +,{"id":"2489657324","type":"WatchEvent","actor":{"id":3486950,"login":"cristopher-rodrigues","gravatar_id":"","url":"https://api.github.com/users/cristopher-rodrigues","avatar_url":"https://avatars.githubusercontent.com/u/3486950?"},"repo":{"id":914985,"name":"silexphp/Silex","url":"https://api.github.com/repos/silexphp/Silex"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:13:34Z","org":{"id":3840103,"login":"silexphp","gravatar_id":"","url":"https://api.github.com/orgs/silexphp","avatar_url":"https://avatars.githubusercontent.com/u/3840103?"}} +,{"id":"2489657327","type":"CreateEvent","actor":{"id":5313274,"login":"tejitak","gravatar_id":"","url":"https://api.github.com/users/tejitak","avatar_url":"https://avatars.githubusercontent.com/u/5313274?"},"repo":{"id":27321497,"name":"tejitak/company_map","url":"https://api.github.com/repos/tejitak/company_map"},"payload":{"ref":"r_0.2","ref_type":"branch","master_branch":"master","description":"START MAPS front-end repository","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:35Z"} +,{"id":"2489657329","type":"WatchEvent","actor":{"id":3621496,"login":"badwtg1111","gravatar_id":"","url":"https://api.github.com/users/badwtg1111","avatar_url":"https://avatars.githubusercontent.com/u/3621496?"},"repo":{"id":20906410,"name":"dragondjf/QFramer","url":"https://api.github.com/repos/dragondjf/QFramer"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:13:36Z"} +,{"id":"2489657333","type":"PushEvent","actor":{"id":4319913,"login":"vanvught","gravatar_id":"","url":"https://api.github.com/users/vanvught","avatar_url":"https://avatars.githubusercontent.com/u/4319913?"},"repo":{"id":15496962,"name":"vanvught/OpenDMX","url":"https://api.github.com/repos/vanvught/OpenDMX"},"payload":{"push_id":536866786,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f2e25c647034be64528e3a21bde67b9d39324f44","before":"90adba67572bc2b9c22ceb07f6d267f7231283ed","commits":[{"sha":"f2e25c647034be64528e3a21bde67b9d39324f44","author":{"email":"dfa9b7f1d536e394c44db1b2fc16dbbb4b30f283@gmail.com","name":"Arjan"},"message":"Deleted","distinct":true,"url":"https://api.github.com/repos/vanvught/OpenDMX/commits/f2e25c647034be64528e3a21bde67b9d39324f44"}]},"public":true,"created_at":"2015-01-01T15:13:36Z"} +,{"id":"2489657334","type":"CreateEvent","actor":{"id":5594,"login":"commondream","gravatar_id":"","url":"https://api.github.com/users/commondream","avatar_url":"https://avatars.githubusercontent.com/u/5594?"},"repo":{"id":28688852,"name":"commondream/dotvim","url":"https://api.github.com/repos/commondream/dotvim"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"My VIM Config","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:36Z"} +,{"id":"2489657336","type":"PushEvent","actor":{"id":7347035,"login":"kdcc","gravatar_id":"","url":"https://api.github.com/users/kdcc","avatar_url":"https://avatars.githubusercontent.com/u/7347035?"},"repo":{"id":24135610,"name":"kdcc/kdcc.github.io","url":"https://api.github.com/repos/kdcc/kdcc.github.io"},"payload":{"push_id":536866787,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5b37240f640928d6d88a7ffb68f9134a332ff1af","before":"88053ff5b71fca55c151cce5d3efa993a828abfc","commits":[{"sha":"5b37240f640928d6d88a7ffb68f9134a332ff1af","author":{"email":"cf58c95806d748e850b98b9e690088e0ae004ba3@qq.com","name":"kdcc"},"message":"Site updated at 2015-01-01 15:12:57 UTC","distinct":true,"url":"https://api.github.com/repos/kdcc/kdcc.github.io/commits/5b37240f640928d6d88a7ffb68f9134a332ff1af"}]},"public":true,"created_at":"2015-01-01T15:13:36Z"} +,{"id":"2489657337","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":536866788,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"53535336307b9141973a50fb42c9523ea79a075d","before":"644a015cafe82b5b7fa3b243d3635fbf156e6648","commits":[{"sha":"53535336307b9141973a50fb42c9523ea79a075d","author":{"email":"de163e90d3aeef9f404d1de71c48e234a211e3c3@gmail.com","name":"KT"},"message":"Update","distinct":true,"url":"https://api.github.com/repos/qdm/qdm.github.io/commits/53535336307b9141973a50fb42c9523ea79a075d"}]},"public":true,"created_at":"2015-01-01T15:13:36Z"} +,{"id":"2489657343","type":"CreateEvent","actor":{"id":42865,"login":"rail","gravatar_id":"","url":"https://api.github.com/users/rail","avatar_url":"https://avatars.githubusercontent.com/u/42865?"},"repo":{"id":16970836,"name":"rail/build-cloud-tools","url":"https://api.github.com/repos/rail/build-cloud-tools"},"payload":{"ref":"spot_from_instance","ref_type":"branch","master_branch":"master","description":"Git mirror of http://hg.mozilla.org/build/cloud-tools/","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:37Z"} +,{"id":"2489657345","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":536866790,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6468eecccc0396c2b7126338334eeba0ba037b9e","before":"d688ef6cd80e2bed4b23e1d7e7e55f9b80f46d91","commits":[{"sha":"6468eecccc0396c2b7126338334eeba0ba037b9e","author":{"email":"1a73af9e7ae00182733b2292511b814be66f065f@jeffquast.com","name":"jquast"},"message":"document shroo-ms enabled=yes","distinct":true,"url":"https://api.github.com/repos/jquast/x84/commits/6468eecccc0396c2b7126338334eeba0ba037b9e"}]},"public":true,"created_at":"2015-01-01T15:13:37Z"} +,{"id":"2489657346","type":"PushEvent","actor":{"id":553618,"login":"wshobson","gravatar_id":"","url":"https://api.github.com/users/wshobson","avatar_url":"https://avatars.githubusercontent.com/u/553618?"},"repo":{"id":26023781,"name":"alanarnholt/PASWR2E-Book","url":"https://api.github.com/repos/alanarnholt/PASWR2E-Book"},"payload":{"push_id":536866791,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"237f14aaf2320a5e36cdef1aae9e692b30d5be43","before":"24502293998758d7542dd7e8a0f8a67237d85271","commits":[{"sha":"237f14aaf2320a5e36cdef1aae9e692b30d5be43","author":{"email":"bb51713a1ebb3b1b976d7c634203fbcefee0bb63@gmail.com","name":"Seth Hobson"},"message":"added table of contents page and link to pdf","distinct":true,"url":"https://api.github.com/repos/alanarnholt/PASWR2E-Book/commits/237f14aaf2320a5e36cdef1aae9e692b30d5be43"}]},"public":true,"created_at":"2015-01-01T15:13:37Z"} +,{"id":"2489657350","type":"CreateEvent","actor":{"id":10110526,"login":"beckypdata","gravatar_id":"","url":"https://api.github.com/users/beckypdata","avatar_url":"https://avatars.githubusercontent.com/u/10110526?"},"repo":{"id":28688658,"name":"beckypdata/WorkbenchGUI","url":"https://api.github.com/repos/beckypdata/WorkbenchGUI"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:38Z"} +,{"id":"2489657351","type":"DeleteEvent","actor":{"id":3888750,"login":"joachimmetz","gravatar_id":"","url":"https://api.github.com/users/joachimmetz","avatar_url":"https://avatars.githubusercontent.com/u/3888750?"},"repo":{"id":24666110,"name":"libyal/libcsystem","url":"https://api.github.com/repos/libyal/libcsystem"},"payload":{"ref":"20141019","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:38Z","org":{"id":8692283,"login":"libyal","gravatar_id":"","url":"https://api.github.com/orgs/libyal","avatar_url":"https://avatars.githubusercontent.com/u/8692283?"}} +,{"id":"2489657353","type":"WatchEvent","actor":{"id":2715385,"login":"gclover","gravatar_id":"","url":"https://api.github.com/users/gclover","avatar_url":"https://avatars.githubusercontent.com/u/2715385?"},"repo":{"id":9553526,"name":"twitter/jsr166e","url":"https://api.github.com/repos/twitter/jsr166e"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:13:38Z","org":{"id":50278,"login":"twitter","gravatar_id":"","url":"https://api.github.com/orgs/twitter","avatar_url":"https://avatars.githubusercontent.com/u/50278?"}} +,{"id":"2489657355","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":536866798,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5919dffd979a8a93fcf4d2e5b16f048250a9e57f","before":"456e518e0b48e87c7137e40d7bba03823e173caa","commits":[{"sha":"5919dffd979a8a93fcf4d2e5b16f048250a9e57f","author":{"email":"bc8b4c28eff55b2f78fad6f180c722f27abee02f@gmail.com","name":"Meir Kriheli"},"message":"Document Bill embedding","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/5919dffd979a8a93fcf4d2e5b16f048250a9e57f"}]},"public":true,"created_at":"2015-01-01T15:13:38Z","org":{"id":503639,"login":"hasadna","gravatar_id":"","url":"https://api.github.com/orgs/hasadna","avatar_url":"https://avatars.githubusercontent.com/u/503639?"}} +,{"id":"2489657358","type":"PushEvent","actor":{"id":6262577,"login":"xuyue531","gravatar_id":"","url":"https://api.github.com/users/xuyue531","avatar_url":"https://avatars.githubusercontent.com/u/6262577?"},"repo":{"id":28687463,"name":"xuyue531/xuyue.github.io","url":"https://api.github.com/repos/xuyue531/xuyue.github.io"},"payload":{"push_id":536866800,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f1069059263d2a2cb3c95c04aabd463851a4a35f","before":"46f08986e728fa1d3596cea259cd9b9145b8fc3f","commits":[{"sha":"f1069059263d2a2cb3c95c04aabd463851a4a35f","author":{"email":"09c9fc8d26df404d1c46fe4271c638757e516926@gmial.com","name":"xuyue"},"message":"myBlog","distinct":true,"url":"https://api.github.com/repos/xuyue531/xuyue.github.io/commits/f1069059263d2a2cb3c95c04aabd463851a4a35f"}]},"public":true,"created_at":"2015-01-01T15:13:39Z"} +,{"id":"2489657359","type":"PullRequestEvent","actor":{"id":5458742,"login":"GuiCarneiro","gravatar_id":"","url":"https://api.github.com/users/GuiCarneiro","avatar_url":"https://avatars.githubusercontent.com/u/5458742?"},"repo":{"id":22294779,"name":"GTi-Jr/CRM","url":"https://api.github.com/repos/GTi-Jr/CRM"},"payload":{"action":"opened","number":11,"pull_request":{"url":"https://api.github.com/repos/GTi-Jr/CRM/pulls/11","id":26743871,"html_url":"https://github.com/GTi-Jr/CRM/pull/11","diff_url":"https://github.com/GTi-Jr/CRM/pull/11.diff","patch_url":"https://github.com/GTi-Jr/CRM/pull/11.patch","issue_url":"https://api.github.com/repos/GTi-Jr/CRM/issues/11","number":11,"state":"open","locked":false,"title":"Design","user":{"login":"GuiCarneiro","id":5458742,"avatar_url":"https://avatars.githubusercontent.com/u/5458742?v=3","gravatar_id":"","url":"https://api.github.com/users/GuiCarneiro","html_url":"https://github.com/GuiCarneiro","followers_url":"https://api.github.com/users/GuiCarneiro/followers","following_url":"https://api.github.com/users/GuiCarneiro/following{/other_user}","gists_url":"https://api.github.com/users/GuiCarneiro/gists{/gist_id}","starred_url":"https://api.github.com/users/GuiCarneiro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GuiCarneiro/subscriptions","organizations_url":"https://api.github.com/users/GuiCarneiro/orgs","repos_url":"https://api.github.com/users/GuiCarneiro/repos","events_url":"https://api.github.com/users/GuiCarneiro/events{/privacy}","received_events_url":"https://api.github.com/users/GuiCarneiro/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:13:39Z","updated_at":"2015-01-01T15:13:39Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/GTi-Jr/CRM/pulls/11/commits","review_comments_url":"https://api.github.com/repos/GTi-Jr/CRM/pulls/11/comments","review_comment_url":"https://api.github.com/repos/GTi-Jr/CRM/pulls/comments/{number}","comments_url":"https://api.github.com/repos/GTi-Jr/CRM/issues/11/comments","statuses_url":"https://api.github.com/repos/GTi-Jr/CRM/statuses/e2a29dde62f3b91389ddaa4d1e41251cb7e911e4","head":{"label":"GTi-Jr:design","ref":"design","sha":"e2a29dde62f3b91389ddaa4d1e41251cb7e911e4","user":{"login":"GTi-Jr","id":6828491,"avatar_url":"https://avatars.githubusercontent.com/u/6828491?v=3","gravatar_id":"","url":"https://api.github.com/users/GTi-Jr","html_url":"https://github.com/GTi-Jr","followers_url":"https://api.github.com/users/GTi-Jr/followers","following_url":"https://api.github.com/users/GTi-Jr/following{/other_user}","gists_url":"https://api.github.com/users/GTi-Jr/gists{/gist_id}","starred_url":"https://api.github.com/users/GTi-Jr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GTi-Jr/subscriptions","organizations_url":"https://api.github.com/users/GTi-Jr/orgs","repos_url":"https://api.github.com/users/GTi-Jr/repos","events_url":"https://api.github.com/users/GTi-Jr/events{/privacy}","received_events_url":"https://api.github.com/users/GTi-Jr/received_events","type":"Organization","site_admin":false},"repo":{"id":22294779,"name":"CRM","full_name":"GTi-Jr/CRM","owner":{"login":"GTi-Jr","id":6828491,"avatar_url":"https://avatars.githubusercontent.com/u/6828491?v=3","gravatar_id":"","url":"https://api.github.com/users/GTi-Jr","html_url":"https://github.com/GTi-Jr","followers_url":"https://api.github.com/users/GTi-Jr/followers","following_url":"https://api.github.com/users/GTi-Jr/following{/other_user}","gists_url":"https://api.github.com/users/GTi-Jr/gists{/gist_id}","starred_url":"https://api.github.com/users/GTi-Jr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GTi-Jr/subscriptions","organizations_url":"https://api.github.com/users/GTi-Jr/orgs","repos_url":"https://api.github.com/users/GTi-Jr/repos","events_url":"https://api.github.com/users/GTi-Jr/events{/privacy}","received_events_url":"https://api.github.com/users/GTi-Jr/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/GTi-Jr/CRM","description":"GTi's Customer Relationship Manager","fork":false,"url":"https://api.github.com/repos/GTi-Jr/CRM","forks_url":"https://api.github.com/repos/GTi-Jr/CRM/forks","keys_url":"https://api.github.com/repos/GTi-Jr/CRM/keys{/key_id}","collaborators_url":"https://api.github.com/repos/GTi-Jr/CRM/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/GTi-Jr/CRM/teams","hooks_url":"https://api.github.com/repos/GTi-Jr/CRM/hooks","issue_events_url":"https://api.github.com/repos/GTi-Jr/CRM/issues/events{/number}","events_url":"https://api.github.com/repos/GTi-Jr/CRM/events","assignees_url":"https://api.github.com/repos/GTi-Jr/CRM/assignees{/user}","branches_url":"https://api.github.com/repos/GTi-Jr/CRM/branches{/branch}","tags_url":"https://api.github.com/repos/GTi-Jr/CRM/tags","blobs_url":"https://api.github.com/repos/GTi-Jr/CRM/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/GTi-Jr/CRM/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/GTi-Jr/CRM/git/refs{/sha}","trees_url":"https://api.github.com/repos/GTi-Jr/CRM/git/trees{/sha}","statuses_url":"https://api.github.com/repos/GTi-Jr/CRM/statuses/{sha}","languages_url":"https://api.github.com/repos/GTi-Jr/CRM/languages","stargazers_url":"https://api.github.com/repos/GTi-Jr/CRM/stargazers","contributors_url":"https://api.github.com/repos/GTi-Jr/CRM/contributors","subscribers_url":"https://api.github.com/repos/GTi-Jr/CRM/subscribers","subscription_url":"https://api.github.com/repos/GTi-Jr/CRM/subscription","commits_url":"https://api.github.com/repos/GTi-Jr/CRM/commits{/sha}","git_commits_url":"https://api.github.com/repos/GTi-Jr/CRM/git/commits{/sha}","comments_url":"https://api.github.com/repos/GTi-Jr/CRM/comments{/number}","issue_comment_url":"https://api.github.com/repos/GTi-Jr/CRM/issues/comments/{number}","contents_url":"https://api.github.com/repos/GTi-Jr/CRM/contents/{+path}","compare_url":"https://api.github.com/repos/GTi-Jr/CRM/compare/{base}...{head}","merges_url":"https://api.github.com/repos/GTi-Jr/CRM/merges","archive_url":"https://api.github.com/repos/GTi-Jr/CRM/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/GTi-Jr/CRM/downloads","issues_url":"https://api.github.com/repos/GTi-Jr/CRM/issues{/number}","pulls_url":"https://api.github.com/repos/GTi-Jr/CRM/pulls{/number}","milestones_url":"https://api.github.com/repos/GTi-Jr/CRM/milestones{/number}","notifications_url":"https://api.github.com/repos/GTi-Jr/CRM/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/GTi-Jr/CRM/labels{/name}","releases_url":"https://api.github.com/repos/GTi-Jr/CRM/releases{/id}","created_at":"2014-07-26T19:35:37Z","updated_at":"2014-07-26T19:36:33Z","pushed_at":"2015-01-01T15:13:16Z","git_url":"git://github.com/GTi-Jr/CRM.git","ssh_url":"git@github.com:GTi-Jr/CRM.git","clone_url":"https://github.com/GTi-Jr/CRM.git","svn_url":"https://github.com/GTi-Jr/CRM","homepage":null,"size":488,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":10,"forks":0,"open_issues":10,"watchers":0,"default_branch":"master"}},"base":{"label":"GTi-Jr:master","ref":"master","sha":"fc2e2cf3f84c491be81a3e91f57a6366f4cca031","user":{"login":"GTi-Jr","id":6828491,"avatar_url":"https://avatars.githubusercontent.com/u/6828491?v=3","gravatar_id":"","url":"https://api.github.com/users/GTi-Jr","html_url":"https://github.com/GTi-Jr","followers_url":"https://api.github.com/users/GTi-Jr/followers","following_url":"https://api.github.com/users/GTi-Jr/following{/other_user}","gists_url":"https://api.github.com/users/GTi-Jr/gists{/gist_id}","starred_url":"https://api.github.com/users/GTi-Jr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GTi-Jr/subscriptions","organizations_url":"https://api.github.com/users/GTi-Jr/orgs","repos_url":"https://api.github.com/users/GTi-Jr/repos","events_url":"https://api.github.com/users/GTi-Jr/events{/privacy}","received_events_url":"https://api.github.com/users/GTi-Jr/received_events","type":"Organization","site_admin":false},"repo":{"id":22294779,"name":"CRM","full_name":"GTi-Jr/CRM","owner":{"login":"GTi-Jr","id":6828491,"avatar_url":"https://avatars.githubusercontent.com/u/6828491?v=3","gravatar_id":"","url":"https://api.github.com/users/GTi-Jr","html_url":"https://github.com/GTi-Jr","followers_url":"https://api.github.com/users/GTi-Jr/followers","following_url":"https://api.github.com/users/GTi-Jr/following{/other_user}","gists_url":"https://api.github.com/users/GTi-Jr/gists{/gist_id}","starred_url":"https://api.github.com/users/GTi-Jr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GTi-Jr/subscriptions","organizations_url":"https://api.github.com/users/GTi-Jr/orgs","repos_url":"https://api.github.com/users/GTi-Jr/repos","events_url":"https://api.github.com/users/GTi-Jr/events{/privacy}","received_events_url":"https://api.github.com/users/GTi-Jr/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/GTi-Jr/CRM","description":"GTi's Customer Relationship Manager","fork":false,"url":"https://api.github.com/repos/GTi-Jr/CRM","forks_url":"https://api.github.com/repos/GTi-Jr/CRM/forks","keys_url":"https://api.github.com/repos/GTi-Jr/CRM/keys{/key_id}","collaborators_url":"https://api.github.com/repos/GTi-Jr/CRM/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/GTi-Jr/CRM/teams","hooks_url":"https://api.github.com/repos/GTi-Jr/CRM/hooks","issue_events_url":"https://api.github.com/repos/GTi-Jr/CRM/issues/events{/number}","events_url":"https://api.github.com/repos/GTi-Jr/CRM/events","assignees_url":"https://api.github.com/repos/GTi-Jr/CRM/assignees{/user}","branches_url":"https://api.github.com/repos/GTi-Jr/CRM/branches{/branch}","tags_url":"https://api.github.com/repos/GTi-Jr/CRM/tags","blobs_url":"https://api.github.com/repos/GTi-Jr/CRM/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/GTi-Jr/CRM/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/GTi-Jr/CRM/git/refs{/sha}","trees_url":"https://api.github.com/repos/GTi-Jr/CRM/git/trees{/sha}","statuses_url":"https://api.github.com/repos/GTi-Jr/CRM/statuses/{sha}","languages_url":"https://api.github.com/repos/GTi-Jr/CRM/languages","stargazers_url":"https://api.github.com/repos/GTi-Jr/CRM/stargazers","contributors_url":"https://api.github.com/repos/GTi-Jr/CRM/contributors","subscribers_url":"https://api.github.com/repos/GTi-Jr/CRM/subscribers","subscription_url":"https://api.github.com/repos/GTi-Jr/CRM/subscription","commits_url":"https://api.github.com/repos/GTi-Jr/CRM/commits{/sha}","git_commits_url":"https://api.github.com/repos/GTi-Jr/CRM/git/commits{/sha}","comments_url":"https://api.github.com/repos/GTi-Jr/CRM/comments{/number}","issue_comment_url":"https://api.github.com/repos/GTi-Jr/CRM/issues/comments/{number}","contents_url":"https://api.github.com/repos/GTi-Jr/CRM/contents/{+path}","compare_url":"https://api.github.com/repos/GTi-Jr/CRM/compare/{base}...{head}","merges_url":"https://api.github.com/repos/GTi-Jr/CRM/merges","archive_url":"https://api.github.com/repos/GTi-Jr/CRM/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/GTi-Jr/CRM/downloads","issues_url":"https://api.github.com/repos/GTi-Jr/CRM/issues{/number}","pulls_url":"https://api.github.com/repos/GTi-Jr/CRM/pulls{/number}","milestones_url":"https://api.github.com/repos/GTi-Jr/CRM/milestones{/number}","notifications_url":"https://api.github.com/repos/GTi-Jr/CRM/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/GTi-Jr/CRM/labels{/name}","releases_url":"https://api.github.com/repos/GTi-Jr/CRM/releases{/id}","created_at":"2014-07-26T19:35:37Z","updated_at":"2014-07-26T19:36:33Z","pushed_at":"2015-01-01T15:13:16Z","git_url":"git://github.com/GTi-Jr/CRM.git","ssh_url":"git@github.com:GTi-Jr/CRM.git","clone_url":"https://github.com/GTi-Jr/CRM.git","svn_url":"https://github.com/GTi-Jr/CRM","homepage":null,"size":488,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":10,"forks":0,"open_issues":10,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/GTi-Jr/CRM/pulls/11"},"html":{"href":"https://github.com/GTi-Jr/CRM/pull/11"},"issue":{"href":"https://api.github.com/repos/GTi-Jr/CRM/issues/11"},"comments":{"href":"https://api.github.com/repos/GTi-Jr/CRM/issues/11/comments"},"review_comments":{"href":"https://api.github.com/repos/GTi-Jr/CRM/pulls/11/comments"},"review_comment":{"href":"https://api.github.com/repos/GTi-Jr/CRM/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/GTi-Jr/CRM/pulls/11/commits"},"statuses":{"href":"https://api.github.com/repos/GTi-Jr/CRM/statuses/e2a29dde62f3b91389ddaa4d1e41251cb7e911e4"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":5,"additions":2176,"deletions":164,"changed_files":21}},"public":true,"created_at":"2015-01-01T15:13:39Z","org":{"id":6828491,"login":"GTi-Jr","gravatar_id":"","url":"https://api.github.com/orgs/GTi-Jr","avatar_url":"https://avatars.githubusercontent.com/u/6828491?"}} +,{"id":"2489657362","type":"PushEvent","actor":{"id":5105508,"login":"gioch","gravatar_id":"","url":"https://api.github.com/users/gioch","avatar_url":"https://avatars.githubusercontent.com/u/5105508?"},"repo":{"id":28078075,"name":"gioch/Goals","url":"https://api.github.com/repos/gioch/Goals"},"payload":{"push_id":536866802,"size":1,"distinct_size":1,"ref":"refs/heads/dev","head":"d36704346022c6ea7227199d5789500ea670eddd","before":"6829117977ce8e104b6643e240eb07a5a2a8b0ed","commits":[{"sha":"d36704346022c6ea7227199d5789500ea670eddd","author":{"email":"048416ae763ca1bcef5bb7f33682e6a69d1a1506@gmail.com","name":"gioch"},"message":"Erased comment from app controller","distinct":true,"url":"https://api.github.com/repos/gioch/Goals/commits/d36704346022c6ea7227199d5789500ea670eddd"}]},"public":true,"created_at":"2015-01-01T15:13:40Z"} +,{"id":"2489657363","type":"PushEvent","actor":{"id":1830563,"login":"imhyo","gravatar_id":"","url":"https://api.github.com/users/imhyo","avatar_url":"https://avatars.githubusercontent.com/u/1830563?"},"repo":{"id":28679563,"name":"imhyo/lg-foss-timestamp","url":"https://api.github.com/repos/imhyo/lg-foss-timestamp"},"payload":{"push_id":536866801,"size":7,"distinct_size":7,"ref":"refs/heads/master","head":"d277e609187242240a79d09d2fb0a2acc140d339","before":"f12c934d40ccea65005a3e3c006117c3efd2e97d","commits":[{"sha":"547235b22ded02a59b11ccaccd33554703374add","author":{"email":"a49c64b30a332b2c95339a4ed786bcd21b81192b@gmail.com","name":"Im, HyoJun"},"message":"This implements the basic features of the application:\n - front page with the text box and submit button.\n - Data store to record working history.\n - Clinking the 'Check-in' button adds a new log into the data store.","distinct":true,"url":"https://api.github.com/repos/imhyo/lg-foss-timestamp/commits/547235b22ded02a59b11ccaccd33554703374add"},{"sha":"6d50e69a245988dddaf21936bc009850b887bbbd","author":{"email":"a49c64b30a332b2c95339a4ed786bcd21b81192b@gmail.com","name":"Im, HyoJun"},"message":"This implements Checkout feature.","distinct":true,"url":"https://api.github.com/repos/imhyo/lg-foss-timestamp/commits/6d50e69a245988dddaf21936bc009850b887bbbd"},{"sha":"c4449d8f6fb6cb4d21c44f52d53394adfe6007d1","author":{"email":"a49c64b30a332b2c95339a4ed786bcd21b81192b@gmail.com","name":"Im, HyoJun"},"message":"With this patch, the date/times are displayed based on the KST timezone.\nThis uses pytz python library.","distinct":true,"url":"https://api.github.com/repos/imhyo/lg-foss-timestamp/commits/c4449d8f6fb6cb4d21c44f52d53394adfe6007d1"},{"sha":"adad904314cc61fc71603d6bb437e5e22e55c0b0","author":{"email":"a49c64b30a332b2c95339a4ed786bcd21b81192b@gmail.com","name":"Im, HyoJun"},"message":"This fixes the bug of incorrectly displying minutes of the time.\nThis also improves the starting time display.\n\nSigned-off-by: Im, HyoJun ","distinct":true,"url":"https://api.github.com/repos/imhyo/lg-foss-timestamp/commits/adad904314cc61fc71603d6bb437e5e22e55c0b0"},{"sha":"2a1426e9c700de9644f66ffb9ee21f557cf9c9cf","author":{"email":"a49c64b30a332b2c95339a4ed786bcd21b81192b@gmail.com","name":"Im, HyoJun"},"message":"This adds a 'Cancel' feature, which removes the latest Check-in request.","distinct":true,"url":"https://api.github.com/repos/imhyo/lg-foss-timestamp/commits/2a1426e9c700de9644f66ffb9ee21f557cf9c9cf"},{"sha":"8c409a79c3c610667b4f46a0653365df49fd528d","author":{"email":"a49c64b30a332b2c95339a4ed786bcd21b81192b@gmail.com","name":"Im, HyoJun"},"message":"This changes application id to lg-foss.\nThis adds logout link at the end of the web page.\n\nSigned-off-by: Im, HyoJun ","distinct":true,"url":"https://api.github.com/repos/imhyo/lg-foss-timestamp/commits/8c409a79c3c610667b4f46a0653365df49fd528d"},{"sha":"d277e609187242240a79d09d2fb0a2acc140d339","author":{"email":"a49c64b30a332b2c95339a4ed786bcd21b81192b@gmail.com","name":"Im, HyoJun"},"message":"This adds 'user' field into the data store.\nWith this field, the administrator can easily identify the user names of the the entities in the data store.\n\nSigned-off-by: Im, HyoJun ","distinct":true,"url":"https://api.github.com/repos/imhyo/lg-foss-timestamp/commits/d277e609187242240a79d09d2fb0a2acc140d339"}]},"public":true,"created_at":"2015-01-01T15:13:40Z"} +,{"id":"2489657364","type":"PushEvent","actor":{"id":2298444,"login":"iChun","gravatar_id":"","url":"https://api.github.com/users/iChun","avatar_url":"https://avatars.githubusercontent.com/u/2298444?"},"repo":{"id":26553224,"name":"iChun/Tabula","url":"https://api.github.com/repos/iChun/Tabula"},"payload":{"push_id":536866803,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"535d87bd8329428f36b3a0a6de2eca9f0ad3e561","before":"03930eb96f32f39b0b3c0bd852f2fdae7f7f231e","commits":[{"sha":"535d87bd8329428f36b3a0a6de2eca9f0ad3e561","author":{"email":"5f66eb3bda4ccd1a4772ab95e2cbaa53628de24d@gmail.com","name":"iChun"},"message":"Add support for importing projects.","distinct":true,"url":"https://api.github.com/repos/iChun/Tabula/commits/535d87bd8329428f36b3a0a6de2eca9f0ad3e561"}]},"public":true,"created_at":"2015-01-01T15:13:40Z"} +,{"id":"2489657365","type":"PushEvent","actor":{"id":2957658,"login":"alaingoldman","gravatar_id":"","url":"https://api.github.com/users/alaingoldman","avatar_url":"https://avatars.githubusercontent.com/u/2957658?"},"repo":{"id":27238783,"name":"alaingoldman/message","url":"https://api.github.com/repos/alaingoldman/message"},"payload":{"push_id":536866804,"size":2,"distinct_size":2,"ref":"refs/heads/lootfly","head":"df06b1cba7728ddd3c00868d2eed71d515e9576d","before":"3dda627e41ce9c56e14b82869678b2d00440fe0e","commits":[{"sha":"c19e3c59a00b150497887d66a59aee82822857d3","author":{"email":"5e6474cb126127e9798cca5817ebe7cef038938c@gmail.com","name":"alain Goldman"},"message":"Changed Product model, defaults and validations","distinct":true,"url":"https://api.github.com/repos/alaingoldman/message/commits/c19e3c59a00b150497887d66a59aee82822857d3"},{"sha":"df06b1cba7728ddd3c00868d2eed71d515e9576d","author":{"email":"5e6474cb126127e9798cca5817ebe7cef038938c@gmail.com","name":"alain Goldman"},"message":"Re-added jQuery image preview css","distinct":true,"url":"https://api.github.com/repos/alaingoldman/message/commits/df06b1cba7728ddd3c00868d2eed71d515e9576d"}]},"public":true,"created_at":"2015-01-01T15:13:40Z"} +,{"id":"2489657369","type":"PushEvent","actor":{"id":4627837,"login":"jessemillar","gravatar_id":"","url":"https://api.github.com/users/jessemillar","avatar_url":"https://avatars.githubusercontent.com/u/4627837?"},"repo":{"id":10947001,"name":"jessemillar/Lorina","url":"https://api.github.com/repos/jessemillar/Lorina"},"payload":{"push_id":536866809,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5b153287f4cce44ccb5539e59854bc921b096f00","before":"3cef0fac7f032594cdfb9329fc76ecece534dda8","commits":[{"sha":"5b153287f4cce44ccb5539e59854bc921b096f00","author":{"email":"0ba40b71986250aad0903c7ebcfd76a410af35fb@gmail.com","name":"Jesse Millar"},"message":"Update LICENSE.md","distinct":true,"url":"https://api.github.com/repos/jessemillar/Lorina/commits/5b153287f4cce44ccb5539e59854bc921b096f00"}]},"public":true,"created_at":"2015-01-01T15:13:41Z"} +,{"id":"2489657372","type":"DeleteEvent","actor":{"id":56868,"login":"unhammer","gravatar_id":"","url":"https://api.github.com/users/unhammer","avatar_url":"https://avatars.githubusercontent.com/u/56868?"},"repo":{"id":27762568,"name":"unhammer/gt-CorpusTools","url":"https://api.github.com/repos/unhammer/gt-CorpusTools"},"payload":{"ref":"ngram-working","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:42Z"} +,{"id":"2489657373","type":"PushEvent","actor":{"id":7744927,"login":"YusukeMorishita","gravatar_id":"","url":"https://api.github.com/users/YusukeMorishita","avatar_url":"https://avatars.githubusercontent.com/u/7744927?"},"repo":{"id":27163378,"name":"YusukeMorishita/Tabisapo","url":"https://api.github.com/repos/YusukeMorishita/Tabisapo"},"payload":{"push_id":536866812,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c627497312a988f2ca1611bfa3655ba6c153165a","before":"7fb4e144be942bea722a0a1d5fc42b29f4173812","commits":[{"sha":"c627497312a988f2ca1611bfa3655ba6c153165a","author":{"email":"c51581253c76b1a1d69cdbee47952c3de0ae0090@edu.osakafu-u.ac.jp","name":"YusukeMorishita"},"message":" On branch master\n Your branch is up-to-date with 'origin/master'.\n\n Changes to be committed:\n\tdeleted: index.html\n\tdeleted: style.css\n\n Untracked files:\n\t\"assets_\\343\\201\\237\\343\\201\\263\\343\\201\\225\\343\\201\\275/\"\n\tbootstrap/\n\thead.psd\n\tmain.psd","distinct":true,"url":"https://api.github.com/repos/YusukeMorishita/Tabisapo/commits/c627497312a988f2ca1611bfa3655ba6c153165a"}]},"public":true,"created_at":"2015-01-01T15:13:42Z"} +,{"id":"2489657376","type":"PushEvent","actor":{"id":2277443,"login":"kjellberg","gravatar_id":"","url":"https://api.github.com/users/kjellberg","avatar_url":"https://avatars.githubusercontent.com/u/2277443?"},"repo":{"id":28686530,"name":"kjellberg/document-printing-service","url":"https://api.github.com/repos/kjellberg/document-printing-service"},"payload":{"push_id":536866815,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9812c421f191e302947dc03896c957201b883976","before":"cedef2dbd406e9654514e989817335d6ce5cee95","commits":[{"sha":"9812c421f191e302947dc03896c957201b883976","author":{"email":"6265a4a07968a7c1df16a61004fb7191177cafd4@youngmedia.se","name":"Rasmus Kjellberg"},"message":"sessions support","distinct":true,"url":"https://api.github.com/repos/kjellberg/document-printing-service/commits/9812c421f191e302947dc03896c957201b883976"}]},"public":true,"created_at":"2015-01-01T15:13:42Z"} +,{"id":"2489657377","type":"GollumEvent","actor":{"id":10333363,"login":"dougmeredith","gravatar_id":"","url":"https://api.github.com/users/dougmeredith","avatar_url":"https://avatars.githubusercontent.com/u/10333363?"},"repo":{"id":12983151,"name":"openhab/openhab","url":"https://api.github.com/repos/openhab/openhab"},"payload":{"pages":[{"page_name":"xPL-Binding","title":"xPL Binding","summary":null,"action":"edited","sha":"5e83daed845ec1e4bda0721b608504804bc64f14","html_url":"https://github.com/openhab/openhab/wiki/xPL-Binding"}]},"public":true,"created_at":"2015-01-01T15:13:42Z","org":{"id":1007353,"login":"openhab","gravatar_id":"","url":"https://api.github.com/orgs/openhab","avatar_url":"https://avatars.githubusercontent.com/u/1007353?"}} +,{"id":"2489657384","type":"PushEvent","actor":{"id":186016,"login":"blurpy","gravatar_id":"","url":"https://api.github.com/users/blurpy","avatar_url":"https://avatars.githubusercontent.com/u/186016?"},"repo":{"id":27989930,"name":"blurpy/kouchat.net","url":"https://api.github.com/repos/blurpy/kouchat.net"},"payload":{"push_id":536866817,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"e4b2502f75e7e8db65c5310fa03a59ab74a0a845","before":"d917866dce5b2995f5babe84a0ee5409ff70e61e","commits":[{"sha":"e4b2502f75e7e8db65c5310fa03a59ab74a0a845","author":{"email":"21684e15db8a017fa7488daf6780ffddcbc85c97@gmail.com","name":"Christian Ihle"},"message":"Trying to use empty baseurl, as all urls are wrong on the domain site","distinct":true,"url":"https://api.github.com/repos/blurpy/kouchat.net/commits/e4b2502f75e7e8db65c5310fa03a59ab74a0a845"}]},"public":true,"created_at":"2015-01-01T15:13:43Z"} +,{"id":"2489657385","type":"IssuesEvent","actor":{"id":2717002,"login":"thetobby","gravatar_id":"","url":"https://api.github.com/users/thetobby","avatar_url":"https://avatars.githubusercontent.com/u/2717002?"},"repo":{"id":28650025,"name":"thetobby/Tmal","url":"https://api.github.com/repos/thetobby/Tmal"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/thetobby/Tmal/issues/9","labels_url":"https://api.github.com/repos/thetobby/Tmal/issues/9/labels{/name}","comments_url":"https://api.github.com/repos/thetobby/Tmal/issues/9/comments","events_url":"https://api.github.com/repos/thetobby/Tmal/issues/9/events","html_url":"https://github.com/thetobby/Tmal/issues/9","id":53221609,"number":9,"title":"Updater","user":{"login":"thetobby","id":2717002,"avatar_url":"https://avatars.githubusercontent.com/u/2717002?v=3","gravatar_id":"","url":"https://api.github.com/users/thetobby","html_url":"https://github.com/thetobby","followers_url":"https://api.github.com/users/thetobby/followers","following_url":"https://api.github.com/users/thetobby/following{/other_user}","gists_url":"https://api.github.com/users/thetobby/gists{/gist_id}","starred_url":"https://api.github.com/users/thetobby/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thetobby/subscriptions","organizations_url":"https://api.github.com/users/thetobby/orgs","repos_url":"https://api.github.com/users/thetobby/repos","events_url":"https://api.github.com/users/thetobby/events{/privacy}","received_events_url":"https://api.github.com/users/thetobby/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/thetobby/Tmal/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:13:43Z","updated_at":"2015-01-01T15:13:43Z","closed_at":null,"body":"Create a updater built into the script"}},"public":true,"created_at":"2015-01-01T15:13:43Z"} +,{"id":"2489657389","type":"PushEvent","actor":{"id":2806664,"login":"shines77","gravatar_id":"","url":"https://api.github.com/users/shines77","avatar_url":"https://avatars.githubusercontent.com/u/2806664?"},"repo":{"id":28340662,"name":"shines77/RingQueue","url":"https://api.github.com/repos/shines77/RingQueue"},"payload":{"push_id":536866819,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f0eb25dd43605c0b93f9eb4c7ccb8e08a34f2907","before":"35a0672141fa9199db23cbf93d222e4164a28fbd","commits":[{"sha":"f0eb25dd43605c0b93f9eb4c7ccb8e08a34f2907","author":{"email":"c816ee361b8bcaf7cf19d627e3bc89a63016b2b4@msn.com","name":"shines77"},"message":"修改PUSH_CNT和POP_CNT为2, 2, 方便网友测试.\n\nSigned-off-by: shines77 ","distinct":true,"url":"https://api.github.com/repos/shines77/RingQueue/commits/f0eb25dd43605c0b93f9eb4c7ccb8e08a34f2907"}]},"public":true,"created_at":"2015-01-01T15:13:43Z"} +,{"id":"2489657390","type":"CreateEvent","actor":{"id":4571971,"login":"Traklon","gravatar_id":"","url":"https://api.github.com/users/Traklon","avatar_url":"https://avatars.githubusercontent.com/u/4571971?"},"repo":{"id":28688854,"name":"Traklon/Mastermind","url":"https://api.github.com/repos/Traklon/Mastermind"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Playable Mastermind, with an AI that can hint the player the best possible guess.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:45Z"} +,{"id":"2489657392","type":"CreateEvent","actor":{"id":7487312,"login":"lina1812","gravatar_id":"","url":"https://api.github.com/users/lina1812","avatar_url":"https://avatars.githubusercontent.com/u/7487312?"},"repo":{"id":28688855,"name":"lina1812/dive","url":"https://api.github.com/repos/lina1812/dive"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:45Z"} +,{"id":"2489657395","type":"CreateEvent","actor":{"id":10358624,"login":"Aliusman050","gravatar_id":"","url":"https://api.github.com/users/Aliusman050","avatar_url":"https://avatars.githubusercontent.com/u/10358624?"},"repo":{"id":28688856,"name":"Aliusman050/Master","url":"https://api.github.com/repos/Aliusman050/Master"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"I Am Web Desiginer, HTML, SEO Expert","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:45Z"} +,{"id":"2489657396","type":"IssueCommentEvent","actor":{"id":779184,"login":"boonya","gravatar_id":"","url":"https://api.github.com/users/boonya","avatar_url":"https://avatars.githubusercontent.com/u/779184?"},"repo":{"id":26176988,"name":"yadsn-developers/yadsn","url":"https://api.github.com/repos/yadsn-developers/yadsn"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/yadsn-developers/yadsn/issues/8","labels_url":"https://api.github.com/repos/yadsn-developers/yadsn/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/yadsn-developers/yadsn/issues/8/comments","events_url":"https://api.github.com/repos/yadsn-developers/yadsn/issues/8/events","html_url":"https://github.com/yadsn-developers/yadsn/pull/8","id":53206162,"number":8,"title":"new year commit :)","user":{"login":"rmk135","id":1742049,"avatar_url":"https://avatars.githubusercontent.com/u/1742049?v=3","gravatar_id":"","url":"https://api.github.com/users/rmk135","html_url":"https://github.com/rmk135","followers_url":"https://api.github.com/users/rmk135/followers","following_url":"https://api.github.com/users/rmk135/following{/other_user}","gists_url":"https://api.github.com/users/rmk135/gists{/gist_id}","starred_url":"https://api.github.com/users/rmk135/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rmk135/subscriptions","organizations_url":"https://api.github.com/users/rmk135/orgs","repos_url":"https://api.github.com/users/rmk135/repos","events_url":"https://api.github.com/users/rmk135/events{/privacy}","received_events_url":"https://api.github.com/users/rmk135/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-12-31T22:18:15Z","updated_at":"2015-01-01T15:13:45Z","closed_at":"2014-12-31T22:18:22Z","pull_request":{"url":"https://api.github.com/repos/yadsn-developers/yadsn/pulls/8","html_url":"https://github.com/yadsn-developers/yadsn/pull/8","diff_url":"https://github.com/yadsn-developers/yadsn/pull/8.diff","patch_url":"https://github.com/yadsn-developers/yadsn/pull/8.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/yadsn-developers/yadsn/issues/comments/68488778","html_url":"https://github.com/yadsn-developers/yadsn/pull/8#issuecomment-68488778","issue_url":"https://api.github.com/repos/yadsn-developers/yadsn/issues/8","id":68488778,"user":{"login":"boonya","id":779184,"avatar_url":"https://avatars.githubusercontent.com/u/779184?v=3","gravatar_id":"","url":"https://api.github.com/users/boonya","html_url":"https://github.com/boonya","followers_url":"https://api.github.com/users/boonya/followers","following_url":"https://api.github.com/users/boonya/following{/other_user}","gists_url":"https://api.github.com/users/boonya/gists{/gist_id}","starred_url":"https://api.github.com/users/boonya/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/boonya/subscriptions","organizations_url":"https://api.github.com/users/boonya/orgs","repos_url":"https://api.github.com/users/boonya/repos","events_url":"https://api.github.com/users/boonya/events{/privacy}","received_events_url":"https://api.github.com/users/boonya/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:13:45Z","updated_at":"2015-01-01T15:13:45Z","body":"Wow, guys, you are crazy ) Happy New year!"}},"public":true,"created_at":"2015-01-01T15:13:45Z","org":{"id":9555119,"login":"yadsn-developers","gravatar_id":"","url":"https://api.github.com/orgs/yadsn-developers","avatar_url":"https://avatars.githubusercontent.com/u/9555119?"}} +,{"id":"2489657401","type":"PushEvent","actor":{"id":10340717,"login":"reuove","gravatar_id":"","url":"https://api.github.com/users/reuove","avatar_url":"https://avatars.githubusercontent.com/u/10340717?"},"repo":{"id":28664492,"name":"reuove/dotfiles","url":"https://api.github.com/repos/reuove/dotfiles"},"payload":{"push_id":536866824,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8f3178ee66ec40673524f90ef0467d12af4368d0","before":"0f52859d15380455575ac965086c857b920b240e","commits":[{"sha":"8f3178ee66ec40673524f90ef0467d12af4368d0","author":{"email":"1093e3418b931e9d48e67dc3cab8b78560dc3bdf@gmail.com","name":"reuove"},"message":"ultimate vimrc","distinct":true,"url":"https://api.github.com/repos/reuove/dotfiles/commits/8f3178ee66ec40673524f90ef0467d12af4368d0"}]},"public":true,"created_at":"2015-01-01T15:13:45Z"} +,{"id":"2489657402","type":"PushEvent","actor":{"id":3797111,"login":"leCradle","gravatar_id":"","url":"https://api.github.com/users/leCradle","avatar_url":"https://avatars.githubusercontent.com/u/3797111?"},"repo":{"id":8241538,"name":"jonatkins/ingress-intel-total-conversion","url":"https://api.github.com/repos/jonatkins/ingress-intel-total-conversion"},"payload":{"push_id":536866825,"size":1,"distinct_size":1,"ref":"refs/heads/gradle","head":"a35c0225832997b1e9eb09ca67b571c303e82bfc","before":"6f951b73c19196d0e185d2b975a9e047dacbfc77","commits":[{"sha":"a35c0225832997b1e9eb09ca67b571c303e82bfc","author":{"email":"eb845d66d7ac8dc114da8d5cbaa38312f7f6ca27@gmail.com","name":"Philipp Schaefer"},"message":"added back privacy plugin for mobile desktop mode","distinct":true,"url":"https://api.github.com/repos/jonatkins/ingress-intel-total-conversion/commits/a35c0225832997b1e9eb09ca67b571c303e82bfc"}]},"public":true,"created_at":"2015-01-01T15:13:45Z"} +,{"id":"2489657405","type":"PushEvent","actor":{"id":356209,"login":"timof","gravatar_id":"","url":"https://api.github.com/users/timof","avatar_url":"https://avatars.githubusercontent.com/u/356209?"},"repo":{"id":1214007,"name":"timof/jlf","url":"https://api.github.com/repos/timof/jlf"},"payload":{"push_id":536866827,"size":1,"distinct_size":1,"ref":"refs/heads/beta","head":"1692f3c3dcead819a7fc8d534a142d91183af2e4","before":"6a39ff3ef5cf07f47ff31951ea31ae75316896c0","commits":[{"sha":"1692f3c3dcead819a7fc8d534a142d91183af2e4","author":{"email":"fc6a36c2798d453228494fcb4cd13f69df8387f6@qipc.org","name":"Timo Felbinger"},"message":"autogenerated","distinct":true,"url":"https://api.github.com/repos/timof/jlf/commits/1692f3c3dcead819a7fc8d534a142d91183af2e4"}]},"public":true,"created_at":"2015-01-01T15:13:46Z"} +,{"id":"2489657407","type":"PushEvent","actor":{"id":3759444,"login":"bb2qqq","gravatar_id":"","url":"https://api.github.com/users/bb2qqq","avatar_url":"https://avatars.githubusercontent.com/u/3759444?"},"repo":{"id":23866660,"name":"bb2qqq/pythonstudy","url":"https://api.github.com/repos/bb2qqq/pythonstudy"},"payload":{"push_id":536866828,"size":1,"distinct_size":1,"ref":"refs/heads/loquita","head":"5a04c70618b73439839f87acb871a2bd1c4ca4d7","before":"57d6448f3b5b62f6df613623a36488c144296981","commits":[{"sha":"5a04c70618b73439839f87acb871a2bd1c4ca4d7","author":{"email":"8af56de68279cb6f5ed022f31af18b9fcdcc2e92@example.com","name":"MarioLuisGarcia"},"message":"add my zen note_book","distinct":true,"url":"https://api.github.com/repos/bb2qqq/pythonstudy/commits/5a04c70618b73439839f87acb871a2bd1c4ca4d7"}]},"public":true,"created_at":"2015-01-01T15:13:47Z"} +,{"id":"2489657409","type":"PushEvent","actor":{"id":3797111,"login":"leCradle","gravatar_id":"","url":"https://api.github.com/users/leCradle","avatar_url":"https://avatars.githubusercontent.com/u/3797111?"},"repo":{"id":8241538,"name":"jonatkins/ingress-intel-total-conversion","url":"https://api.github.com/repos/jonatkins/ingress-intel-total-conversion"},"payload":{"push_id":536866829,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"128dca8daec9b512db38344c9f146dad3f95a3ba","before":"90871774c34c209fd8fa8ca4cc9b1b1a20471151","commits":[{"sha":"128dca8daec9b512db38344c9f146dad3f95a3ba","author":{"email":"eb845d66d7ac8dc114da8d5cbaa38312f7f6ca27@gmail.com","name":"Philipp Schaefer"},"message":"added back privacy plugin for mobile desktop mode","distinct":true,"url":"https://api.github.com/repos/jonatkins/ingress-intel-total-conversion/commits/128dca8daec9b512db38344c9f146dad3f95a3ba"}]},"public":true,"created_at":"2015-01-01T15:13:47Z"} +,{"id":"2489657410","type":"PushEvent","actor":{"id":2310588,"login":"RasPat1","gravatar_id":"","url":"https://api.github.com/users/RasPat1","avatar_url":"https://avatars.githubusercontent.com/u/2310588?"},"repo":{"id":28673876,"name":"RasPat1/factorial-webservice","url":"https://api.github.com/repos/RasPat1/factorial-webservice"},"payload":{"push_id":536866830,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0a0305b03d624b2d4ff9f34725b1d523e6f710c8","before":"f3939b84ef5fbf15494bce4fd1e09fe3c6a4d33f","commits":[{"sha":"0a0305b03d624b2d4ff9f34725b1d523e6f710c8","author":{"email":"c730d1489d1a99eb05cf6fd1c2e434c8dd0eae2e@gmail.com","name":"Rasesh Guam Patel"},"message":"Instructions for accessing api","distinct":true,"url":"https://api.github.com/repos/RasPat1/factorial-webservice/commits/0a0305b03d624b2d4ff9f34725b1d523e6f710c8"}]},"public":true,"created_at":"2015-01-01T15:13:47Z"} +,{"id":"2489657418","type":"IssuesEvent","actor":{"id":853712,"login":"sebmck","gravatar_id":"","url":"https://api.github.com/users/sebmck","avatar_url":"https://avatars.githubusercontent.com/u/853712?"},"repo":{"id":24560307,"name":"6to5/6to5","url":"https://api.github.com/repos/6to5/6to5"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/6to5/6to5/issues/252","labels_url":"https://api.github.com/repos/6to5/6to5/issues/252/labels{/name}","comments_url":"https://api.github.com/repos/6to5/6to5/issues/252/comments","events_url":"https://api.github.com/repos/6to5/6to5/issues/252/events","html_url":"https://github.com/6to5/6to5/issues/252","id":51095019,"number":252,"title":"await/yield in list comprehension generates invalid ES5 code","user":{"login":"michaelstephendavies","id":1212291,"avatar_url":"https://avatars.githubusercontent.com/u/1212291?v=3","gravatar_id":"","url":"https://api.github.com/users/michaelstephendavies","html_url":"https://github.com/michaelstephendavies","followers_url":"https://api.github.com/users/michaelstephendavies/followers","following_url":"https://api.github.com/users/michaelstephendavies/following{/other_user}","gists_url":"https://api.github.com/users/michaelstephendavies/gists{/gist_id}","starred_url":"https://api.github.com/users/michaelstephendavies/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/michaelstephendavies/subscriptions","organizations_url":"https://api.github.com/users/michaelstephendavies/orgs","repos_url":"https://api.github.com/users/michaelstephendavies/repos","events_url":"https://api.github.com/users/michaelstephendavies/events{/privacy}","received_events_url":"https://api.github.com/users/michaelstephendavies/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/6to5/6to5/labels/bug","name":"bug","color":"fc2929"},{"url":"https://api.github.com/repos/6to5/6to5/labels/experimental","name":"experimental","color":"006b75"},{"url":"https://api.github.com/repos/6to5/6to5/labels/transformation","name":"transformation","color":"e11d21"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-12-05T12:46:06Z","updated_at":"2015-01-01T15:13:47Z","closed_at":"2015-01-01T15:13:47Z","body":"`to5.transform(\"function* f(xs) {return [for (x of xs) yield x] }\", {experimental: true})` generates code involving:\r\n\r\n _toArray(xs).map(function (x) {\r\n return yield x;\r\n })\r\n\r\nwhich is not valid ES5 since the `yield` is still there. The same is true of `await`. Using `[for (x of xs) for (y of ys) yield (x+y)]` no longer uses `map`, but still leaves the `yield` in there.\r\n\r\nI don't know if `await`/`yield` in list comprehensions is allowed. If it isn't, it should give a compile error rather than generating invalid code."}},"public":true,"created_at":"2015-01-01T15:13:47Z","org":{"id":9637642,"login":"6to5","gravatar_id":"","url":"https://api.github.com/orgs/6to5","avatar_url":"https://avatars.githubusercontent.com/u/9637642?"}} +,{"id":"2489657422","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":536866837,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"c2ee786fd4fd123ade866af45713e065ca0dad72","before":"99ca91e46acb76316e16b294d69ecd9d1c8787e2","commits":[{"sha":"c2ee786fd4fd123ade866af45713e065ca0dad72","author":{"email":"dab4293f93c7233f547c2dcfbe48efb5ac3ee2f4@mozilla.com","name":"Andreas Tolfsen"},"message":"Only upper-case h1 and h2","distinct":true,"url":"https://api.github.com/repos/SeleniumHQ/docs/commits/c2ee786fd4fd123ade866af45713e065ca0dad72"}]},"public":true,"created_at":"2015-01-01T15:13:47Z","org":{"id":983927,"login":"SeleniumHQ","gravatar_id":"","url":"https://api.github.com/orgs/SeleniumHQ","avatar_url":"https://avatars.githubusercontent.com/u/983927?"}} +,{"id":"2489657423","type":"PushEvent","actor":{"id":853712,"login":"sebmck","gravatar_id":"","url":"https://api.github.com/users/sebmck","avatar_url":"https://avatars.githubusercontent.com/u/853712?"},"repo":{"id":24560307,"name":"6to5/6to5","url":"https://api.github.com/repos/6to5/6to5"},"payload":{"push_id":536866836,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ba67f57c1e7448d5bc60149a60f47a5e768bd666","before":"f1a178f8f9b2ffb5d208e1139597ba576b554f16","commits":[{"sha":"ba67f57c1e7448d5bc60149a60f47a5e768bd666","author":{"email":"39766812240b7532a705aeb9ede9de6ce834ddc6@gmail.com","name":"Sebastian McKenzie"},"message":"use simple loops always in array comprehensions, support yield inside of array comprehensions - closes #325, fixes #252","distinct":true,"url":"https://api.github.com/repos/6to5/6to5/commits/ba67f57c1e7448d5bc60149a60f47a5e768bd666"}]},"public":true,"created_at":"2015-01-01T15:13:47Z","org":{"id":9637642,"login":"6to5","gravatar_id":"","url":"https://api.github.com/orgs/6to5","avatar_url":"https://avatars.githubusercontent.com/u/9637642?"}} +,{"id":"2489657424","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":21606526,"name":"hex7c0/startline","url":"https://api.github.com/repos/hex7c0/startline"},"payload":{"push_id":536866835,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"fd5eddbf197ba3b1dd0f08962eb178257c8a0c00","before":"c5df614dd0cf5d6af496657be8300377f8837fd7","commits":[{"sha":"5c1d1b1263b6f1ab13224555dfbbbf95e80627b7","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"travis docker","distinct":true,"url":"https://api.github.com/repos/hex7c0/startline/commits/5c1d1b1263b6f1ab13224555dfbbbf95e80627b7"},{"sha":"2785137e957d0ccb48a3e139f173371415a1f9cb","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"update devDependencies","distinct":true,"url":"https://api.github.com/repos/hex7c0/startline/commits/2785137e957d0ccb48a3e139f173371415a1f9cb"},{"sha":"fd5eddbf197ba3b1dd0f08962eb178257c8a0c00","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"update Gruntfile","distinct":true,"url":"https://api.github.com/repos/hex7c0/startline/commits/fd5eddbf197ba3b1dd0f08962eb178257c8a0c00"}]},"public":true,"created_at":"2015-01-01T15:13:47Z"} +,{"id":"2489657425","type":"PushEvent","actor":{"id":8042613,"login":"mts2","gravatar_id":"","url":"https://api.github.com/users/mts2","avatar_url":"https://avatars.githubusercontent.com/u/8042613?"},"repo":{"id":28688734,"name":"mts2/TestingThings","url":"https://api.github.com/repos/mts2/TestingThings"},"payload":{"push_id":536866838,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"dc28da2f6ad139a9e44e1ee7d28b9f7fa7ad0af5","before":"77b890cef8d9d366bcd8774aeed9eec950972e63","commits":[{"sha":"dc28da2f6ad139a9e44e1ee7d28b9f7fa7ad0af5","author":{"email":"607e5ef392376dc7903cadab7b1e345e27f315d5@hotmail.ca","name":"Michael Socha"},"message":"After edits","distinct":true,"url":"https://api.github.com/repos/mts2/TestingThings/commits/dc28da2f6ad139a9e44e1ee7d28b9f7fa7ad0af5"}]},"public":true,"created_at":"2015-01-01T15:13:47Z"} +,{"id":"2489657426","type":"IssuesEvent","actor":{"id":853712,"login":"sebmck","gravatar_id":"","url":"https://api.github.com/users/sebmck","avatar_url":"https://avatars.githubusercontent.com/u/853712?"},"repo":{"id":24560307,"name":"6to5/6to5","url":"https://api.github.com/repos/6to5/6to5"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/6to5/6to5/issues/325","labels_url":"https://api.github.com/repos/6to5/6to5/issues/325/labels{/name}","comments_url":"https://api.github.com/repos/6to5/6to5/issues/325/comments","events_url":"https://api.github.com/repos/6to5/6to5/issues/325/events","html_url":"https://github.com/6to5/6to5/issues/325","id":52578676,"number":325,"title":"Array comprehension and transducers","user":{"login":"Kl0tl","id":2788549,"avatar_url":"https://avatars.githubusercontent.com/u/2788549?v=3","gravatar_id":"","url":"https://api.github.com/users/Kl0tl","html_url":"https://github.com/Kl0tl","followers_url":"https://api.github.com/users/Kl0tl/followers","following_url":"https://api.github.com/users/Kl0tl/following{/other_user}","gists_url":"https://api.github.com/users/Kl0tl/gists{/gist_id}","starred_url":"https://api.github.com/users/Kl0tl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kl0tl/subscriptions","organizations_url":"https://api.github.com/users/Kl0tl/orgs","repos_url":"https://api.github.com/users/Kl0tl/repos","events_url":"https://api.github.com/users/Kl0tl/events{/privacy}","received_events_url":"https://api.github.com/users/Kl0tl/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":{"url":"https://api.github.com/repos/6to5/6to5/milestones/2","labels_url":"https://api.github.com/repos/6to5/6to5/milestones/2/labels","id":911972,"number":2,"title":"2.x.x","description":"","creator":{"login":"sebmck","id":853712,"avatar_url":"https://avatars.githubusercontent.com/u/853712?v=3","gravatar_id":"","url":"https://api.github.com/users/sebmck","html_url":"https://github.com/sebmck","followers_url":"https://api.github.com/users/sebmck/followers","following_url":"https://api.github.com/users/sebmck/following{/other_user}","gists_url":"https://api.github.com/users/sebmck/gists{/gist_id}","starred_url":"https://api.github.com/users/sebmck/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sebmck/subscriptions","organizations_url":"https://api.github.com/users/sebmck/orgs","repos_url":"https://api.github.com/users/sebmck/repos","events_url":"https://api.github.com/users/sebmck/events{/privacy}","received_events_url":"https://api.github.com/users/sebmck/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":3,"state":"open","created_at":"2014-12-22T08:47:21Z","updated_at":"2015-01-01T15:13:47Z","due_on":null,"closed_at":null},"comments":10,"created_at":"2014-12-20T22:29:19Z","updated_at":"2015-01-01T15:13:47Z","closed_at":"2015-01-01T15:13:47Z","body":"Have you thought about using transducers to transpile array comprehension to es5 ?\r\n\r\nIt would require an external dependency (like https://github.com/jlongster/transducers.js, or https://github.com/cognitect-labs/transducers-js) but transducers are a more efficient way of composing transformations while retaining readability.\r\n\r\nThe difference is negligible for small arrays, but increase dramatically with the size of the array (http://jlongster.com/Transducers.js-Round-2-with-Benchmarks).\r\n\r\nTaking your example:\r\n\r\n```js\r\nvar seattlers = [for (c of customers) if (c.city == \"Seattle\") { name: c.name, age: c.age }];\r\n```\r\n\r\nWith transducers it would become:\r\n\r\n```js\r\nvar seattlers = into([], compose(filter(function (c) {\r\n return c.city === \"Seattle\";\r\n}), map(function (c) {\r\n return { name: c.name, age: c.age };\r\n})), customers);\r\n```\r\n\r\nInstead of:\r\n\r\n```js\r\nvar seattlers = _toArray(customers).filter(function (c) {\r\n return c.city == \"Seattle\";\r\n}).map(function (c) {\r\n return { name: c.name, age: c.age };\r\n});\r\n```"}},"public":true,"created_at":"2015-01-01T15:13:47Z","org":{"id":9637642,"login":"6to5","gravatar_id":"","url":"https://api.github.com/orgs/6to5","avatar_url":"https://avatars.githubusercontent.com/u/9637642?"}} +,{"id":"2489657427","type":"IssueCommentEvent","actor":{"id":142658,"login":"ADmad","gravatar_id":"","url":"https://api.github.com/users/ADmad","avatar_url":"https://avatars.githubusercontent.com/u/142658?"},"repo":{"id":656494,"name":"cakephp/cakephp","url":"https://api.github.com/repos/cakephp/cakephp"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/cakephp/cakephp/issues/5528","labels_url":"https://api.github.com/repos/cakephp/cakephp/issues/5528/labels{/name}","comments_url":"https://api.github.com/repos/cakephp/cakephp/issues/5528/comments","events_url":"https://api.github.com/repos/cakephp/cakephp/issues/5528/events","html_url":"https://github.com/cakephp/cakephp/pull/5528","id":53221500,"number":5528,"title":"Moved the Model namespace into ORM so it can be distributed easier","user":{"login":"lorenzo","id":37621,"avatar_url":"https://avatars.githubusercontent.com/u/37621?v=3","gravatar_id":"","url":"https://api.github.com/users/lorenzo","html_url":"https://github.com/lorenzo","followers_url":"https://api.github.com/users/lorenzo/followers","following_url":"https://api.github.com/users/lorenzo/following{/other_user}","gists_url":"https://api.github.com/users/lorenzo/gists{/gist_id}","starred_url":"https://api.github.com/users/lorenzo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lorenzo/subscriptions","organizations_url":"https://api.github.com/users/lorenzo/orgs","repos_url":"https://api.github.com/users/lorenzo/repos","events_url":"https://api.github.com/users/lorenzo/events{/privacy}","received_events_url":"https://api.github.com/users/lorenzo/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:08:40Z","updated_at":"2015-01-01T15:13:47Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/cakephp/cakephp/pulls/5528","html_url":"https://github.com/cakephp/cakephp/pull/5528","diff_url":"https://github.com/cakephp/cakephp/pull/5528.diff","patch_url":"https://github.com/cakephp/cakephp/pull/5528.patch"},"body":"Also moved ModelAwareTrait to Datasource it I think it makes more sense there"},"comment":{"url":"https://api.github.com/repos/cakephp/cakephp/issues/comments/68488779","html_url":"https://github.com/cakephp/cakephp/pull/5528#issuecomment-68488779","issue_url":"https://api.github.com/repos/cakephp/cakephp/issues/5528","id":68488779,"user":{"login":"ADmad","id":142658,"avatar_url":"https://avatars.githubusercontent.com/u/142658?v=3","gravatar_id":"","url":"https://api.github.com/users/ADmad","html_url":"https://github.com/ADmad","followers_url":"https://api.github.com/users/ADmad/followers","following_url":"https://api.github.com/users/ADmad/following{/other_user}","gists_url":"https://api.github.com/users/ADmad/gists{/gist_id}","starred_url":"https://api.github.com/users/ADmad/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ADmad/subscriptions","organizations_url":"https://api.github.com/users/ADmad/orgs","repos_url":"https://api.github.com/users/ADmad/repos","events_url":"https://api.github.com/users/ADmad/events{/privacy}","received_events_url":"https://api.github.com/users/ADmad/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:13:47Z","updated_at":"2015-01-01T15:13:47Z","body":"There seems to be one relevant failing test."}},"public":true,"created_at":"2015-01-01T15:13:48Z","org":{"id":23666,"login":"cakephp","gravatar_id":"","url":"https://api.github.com/orgs/cakephp","avatar_url":"https://avatars.githubusercontent.com/u/23666?"}} +,{"id":"2489657428","type":"PullRequestEvent","actor":{"id":5458742,"login":"GuiCarneiro","gravatar_id":"","url":"https://api.github.com/users/GuiCarneiro","avatar_url":"https://avatars.githubusercontent.com/u/5458742?"},"repo":{"id":22294779,"name":"GTi-Jr/CRM","url":"https://api.github.com/repos/GTi-Jr/CRM"},"payload":{"action":"closed","number":11,"pull_request":{"url":"https://api.github.com/repos/GTi-Jr/CRM/pulls/11","id":26743871,"html_url":"https://github.com/GTi-Jr/CRM/pull/11","diff_url":"https://github.com/GTi-Jr/CRM/pull/11.diff","patch_url":"https://github.com/GTi-Jr/CRM/pull/11.patch","issue_url":"https://api.github.com/repos/GTi-Jr/CRM/issues/11","number":11,"state":"closed","locked":false,"title":"Design","user":{"login":"GuiCarneiro","id":5458742,"avatar_url":"https://avatars.githubusercontent.com/u/5458742?v=3","gravatar_id":"","url":"https://api.github.com/users/GuiCarneiro","html_url":"https://github.com/GuiCarneiro","followers_url":"https://api.github.com/users/GuiCarneiro/followers","following_url":"https://api.github.com/users/GuiCarneiro/following{/other_user}","gists_url":"https://api.github.com/users/GuiCarneiro/gists{/gist_id}","starred_url":"https://api.github.com/users/GuiCarneiro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GuiCarneiro/subscriptions","organizations_url":"https://api.github.com/users/GuiCarneiro/orgs","repos_url":"https://api.github.com/users/GuiCarneiro/repos","events_url":"https://api.github.com/users/GuiCarneiro/events{/privacy}","received_events_url":"https://api.github.com/users/GuiCarneiro/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:13:39Z","updated_at":"2015-01-01T15:13:48Z","closed_at":"2015-01-01T15:13:48Z","merged_at":"2015-01-01T15:13:47Z","merge_commit_sha":"5ca888d6b33b1f842d708fc7c4e7b0ec76a3ac08","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/GTi-Jr/CRM/pulls/11/commits","review_comments_url":"https://api.github.com/repos/GTi-Jr/CRM/pulls/11/comments","review_comment_url":"https://api.github.com/repos/GTi-Jr/CRM/pulls/comments/{number}","comments_url":"https://api.github.com/repos/GTi-Jr/CRM/issues/11/comments","statuses_url":"https://api.github.com/repos/GTi-Jr/CRM/statuses/e2a29dde62f3b91389ddaa4d1e41251cb7e911e4","head":{"label":"GTi-Jr:design","ref":"design","sha":"e2a29dde62f3b91389ddaa4d1e41251cb7e911e4","user":{"login":"GTi-Jr","id":6828491,"avatar_url":"https://avatars.githubusercontent.com/u/6828491?v=3","gravatar_id":"","url":"https://api.github.com/users/GTi-Jr","html_url":"https://github.com/GTi-Jr","followers_url":"https://api.github.com/users/GTi-Jr/followers","following_url":"https://api.github.com/users/GTi-Jr/following{/other_user}","gists_url":"https://api.github.com/users/GTi-Jr/gists{/gist_id}","starred_url":"https://api.github.com/users/GTi-Jr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GTi-Jr/subscriptions","organizations_url":"https://api.github.com/users/GTi-Jr/orgs","repos_url":"https://api.github.com/users/GTi-Jr/repos","events_url":"https://api.github.com/users/GTi-Jr/events{/privacy}","received_events_url":"https://api.github.com/users/GTi-Jr/received_events","type":"Organization","site_admin":false},"repo":{"id":22294779,"name":"CRM","full_name":"GTi-Jr/CRM","owner":{"login":"GTi-Jr","id":6828491,"avatar_url":"https://avatars.githubusercontent.com/u/6828491?v=3","gravatar_id":"","url":"https://api.github.com/users/GTi-Jr","html_url":"https://github.com/GTi-Jr","followers_url":"https://api.github.com/users/GTi-Jr/followers","following_url":"https://api.github.com/users/GTi-Jr/following{/other_user}","gists_url":"https://api.github.com/users/GTi-Jr/gists{/gist_id}","starred_url":"https://api.github.com/users/GTi-Jr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GTi-Jr/subscriptions","organizations_url":"https://api.github.com/users/GTi-Jr/orgs","repos_url":"https://api.github.com/users/GTi-Jr/repos","events_url":"https://api.github.com/users/GTi-Jr/events{/privacy}","received_events_url":"https://api.github.com/users/GTi-Jr/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/GTi-Jr/CRM","description":"GTi's Customer Relationship Manager","fork":false,"url":"https://api.github.com/repos/GTi-Jr/CRM","forks_url":"https://api.github.com/repos/GTi-Jr/CRM/forks","keys_url":"https://api.github.com/repos/GTi-Jr/CRM/keys{/key_id}","collaborators_url":"https://api.github.com/repos/GTi-Jr/CRM/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/GTi-Jr/CRM/teams","hooks_url":"https://api.github.com/repos/GTi-Jr/CRM/hooks","issue_events_url":"https://api.github.com/repos/GTi-Jr/CRM/issues/events{/number}","events_url":"https://api.github.com/repos/GTi-Jr/CRM/events","assignees_url":"https://api.github.com/repos/GTi-Jr/CRM/assignees{/user}","branches_url":"https://api.github.com/repos/GTi-Jr/CRM/branches{/branch}","tags_url":"https://api.github.com/repos/GTi-Jr/CRM/tags","blobs_url":"https://api.github.com/repos/GTi-Jr/CRM/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/GTi-Jr/CRM/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/GTi-Jr/CRM/git/refs{/sha}","trees_url":"https://api.github.com/repos/GTi-Jr/CRM/git/trees{/sha}","statuses_url":"https://api.github.com/repos/GTi-Jr/CRM/statuses/{sha}","languages_url":"https://api.github.com/repos/GTi-Jr/CRM/languages","stargazers_url":"https://api.github.com/repos/GTi-Jr/CRM/stargazers","contributors_url":"https://api.github.com/repos/GTi-Jr/CRM/contributors","subscribers_url":"https://api.github.com/repos/GTi-Jr/CRM/subscribers","subscription_url":"https://api.github.com/repos/GTi-Jr/CRM/subscription","commits_url":"https://api.github.com/repos/GTi-Jr/CRM/commits{/sha}","git_commits_url":"https://api.github.com/repos/GTi-Jr/CRM/git/commits{/sha}","comments_url":"https://api.github.com/repos/GTi-Jr/CRM/comments{/number}","issue_comment_url":"https://api.github.com/repos/GTi-Jr/CRM/issues/comments/{number}","contents_url":"https://api.github.com/repos/GTi-Jr/CRM/contents/{+path}","compare_url":"https://api.github.com/repos/GTi-Jr/CRM/compare/{base}...{head}","merges_url":"https://api.github.com/repos/GTi-Jr/CRM/merges","archive_url":"https://api.github.com/repos/GTi-Jr/CRM/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/GTi-Jr/CRM/downloads","issues_url":"https://api.github.com/repos/GTi-Jr/CRM/issues{/number}","pulls_url":"https://api.github.com/repos/GTi-Jr/CRM/pulls{/number}","milestones_url":"https://api.github.com/repos/GTi-Jr/CRM/milestones{/number}","notifications_url":"https://api.github.com/repos/GTi-Jr/CRM/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/GTi-Jr/CRM/labels{/name}","releases_url":"https://api.github.com/repos/GTi-Jr/CRM/releases{/id}","created_at":"2014-07-26T19:35:37Z","updated_at":"2014-07-26T19:36:33Z","pushed_at":"2015-01-01T15:13:48Z","git_url":"git://github.com/GTi-Jr/CRM.git","ssh_url":"git@github.com:GTi-Jr/CRM.git","clone_url":"https://github.com/GTi-Jr/CRM.git","svn_url":"https://github.com/GTi-Jr/CRM","homepage":null,"size":488,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":7,"forks":0,"open_issues":7,"watchers":0,"default_branch":"master"}},"base":{"label":"GTi-Jr:master","ref":"master","sha":"fc2e2cf3f84c491be81a3e91f57a6366f4cca031","user":{"login":"GTi-Jr","id":6828491,"avatar_url":"https://avatars.githubusercontent.com/u/6828491?v=3","gravatar_id":"","url":"https://api.github.com/users/GTi-Jr","html_url":"https://github.com/GTi-Jr","followers_url":"https://api.github.com/users/GTi-Jr/followers","following_url":"https://api.github.com/users/GTi-Jr/following{/other_user}","gists_url":"https://api.github.com/users/GTi-Jr/gists{/gist_id}","starred_url":"https://api.github.com/users/GTi-Jr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GTi-Jr/subscriptions","organizations_url":"https://api.github.com/users/GTi-Jr/orgs","repos_url":"https://api.github.com/users/GTi-Jr/repos","events_url":"https://api.github.com/users/GTi-Jr/events{/privacy}","received_events_url":"https://api.github.com/users/GTi-Jr/received_events","type":"Organization","site_admin":false},"repo":{"id":22294779,"name":"CRM","full_name":"GTi-Jr/CRM","owner":{"login":"GTi-Jr","id":6828491,"avatar_url":"https://avatars.githubusercontent.com/u/6828491?v=3","gravatar_id":"","url":"https://api.github.com/users/GTi-Jr","html_url":"https://github.com/GTi-Jr","followers_url":"https://api.github.com/users/GTi-Jr/followers","following_url":"https://api.github.com/users/GTi-Jr/following{/other_user}","gists_url":"https://api.github.com/users/GTi-Jr/gists{/gist_id}","starred_url":"https://api.github.com/users/GTi-Jr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GTi-Jr/subscriptions","organizations_url":"https://api.github.com/users/GTi-Jr/orgs","repos_url":"https://api.github.com/users/GTi-Jr/repos","events_url":"https://api.github.com/users/GTi-Jr/events{/privacy}","received_events_url":"https://api.github.com/users/GTi-Jr/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/GTi-Jr/CRM","description":"GTi's Customer Relationship Manager","fork":false,"url":"https://api.github.com/repos/GTi-Jr/CRM","forks_url":"https://api.github.com/repos/GTi-Jr/CRM/forks","keys_url":"https://api.github.com/repos/GTi-Jr/CRM/keys{/key_id}","collaborators_url":"https://api.github.com/repos/GTi-Jr/CRM/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/GTi-Jr/CRM/teams","hooks_url":"https://api.github.com/repos/GTi-Jr/CRM/hooks","issue_events_url":"https://api.github.com/repos/GTi-Jr/CRM/issues/events{/number}","events_url":"https://api.github.com/repos/GTi-Jr/CRM/events","assignees_url":"https://api.github.com/repos/GTi-Jr/CRM/assignees{/user}","branches_url":"https://api.github.com/repos/GTi-Jr/CRM/branches{/branch}","tags_url":"https://api.github.com/repos/GTi-Jr/CRM/tags","blobs_url":"https://api.github.com/repos/GTi-Jr/CRM/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/GTi-Jr/CRM/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/GTi-Jr/CRM/git/refs{/sha}","trees_url":"https://api.github.com/repos/GTi-Jr/CRM/git/trees{/sha}","statuses_url":"https://api.github.com/repos/GTi-Jr/CRM/statuses/{sha}","languages_url":"https://api.github.com/repos/GTi-Jr/CRM/languages","stargazers_url":"https://api.github.com/repos/GTi-Jr/CRM/stargazers","contributors_url":"https://api.github.com/repos/GTi-Jr/CRM/contributors","subscribers_url":"https://api.github.com/repos/GTi-Jr/CRM/subscribers","subscription_url":"https://api.github.com/repos/GTi-Jr/CRM/subscription","commits_url":"https://api.github.com/repos/GTi-Jr/CRM/commits{/sha}","git_commits_url":"https://api.github.com/repos/GTi-Jr/CRM/git/commits{/sha}","comments_url":"https://api.github.com/repos/GTi-Jr/CRM/comments{/number}","issue_comment_url":"https://api.github.com/repos/GTi-Jr/CRM/issues/comments/{number}","contents_url":"https://api.github.com/repos/GTi-Jr/CRM/contents/{+path}","compare_url":"https://api.github.com/repos/GTi-Jr/CRM/compare/{base}...{head}","merges_url":"https://api.github.com/repos/GTi-Jr/CRM/merges","archive_url":"https://api.github.com/repos/GTi-Jr/CRM/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/GTi-Jr/CRM/downloads","issues_url":"https://api.github.com/repos/GTi-Jr/CRM/issues{/number}","pulls_url":"https://api.github.com/repos/GTi-Jr/CRM/pulls{/number}","milestones_url":"https://api.github.com/repos/GTi-Jr/CRM/milestones{/number}","notifications_url":"https://api.github.com/repos/GTi-Jr/CRM/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/GTi-Jr/CRM/labels{/name}","releases_url":"https://api.github.com/repos/GTi-Jr/CRM/releases{/id}","created_at":"2014-07-26T19:35:37Z","updated_at":"2014-07-26T19:36:33Z","pushed_at":"2015-01-01T15:13:48Z","git_url":"git://github.com/GTi-Jr/CRM.git","ssh_url":"git@github.com:GTi-Jr/CRM.git","clone_url":"https://github.com/GTi-Jr/CRM.git","svn_url":"https://github.com/GTi-Jr/CRM","homepage":null,"size":488,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":7,"forks":0,"open_issues":7,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/GTi-Jr/CRM/pulls/11"},"html":{"href":"https://github.com/GTi-Jr/CRM/pull/11"},"issue":{"href":"https://api.github.com/repos/GTi-Jr/CRM/issues/11"},"comments":{"href":"https://api.github.com/repos/GTi-Jr/CRM/issues/11/comments"},"review_comments":{"href":"https://api.github.com/repos/GTi-Jr/CRM/pulls/11/comments"},"review_comment":{"href":"https://api.github.com/repos/GTi-Jr/CRM/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/GTi-Jr/CRM/pulls/11/commits"},"statuses":{"href":"https://api.github.com/repos/GTi-Jr/CRM/statuses/e2a29dde62f3b91389ddaa4d1e41251cb7e911e4"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"GuiCarneiro","id":5458742,"avatar_url":"https://avatars.githubusercontent.com/u/5458742?v=3","gravatar_id":"","url":"https://api.github.com/users/GuiCarneiro","html_url":"https://github.com/GuiCarneiro","followers_url":"https://api.github.com/users/GuiCarneiro/followers","following_url":"https://api.github.com/users/GuiCarneiro/following{/other_user}","gists_url":"https://api.github.com/users/GuiCarneiro/gists{/gist_id}","starred_url":"https://api.github.com/users/GuiCarneiro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GuiCarneiro/subscriptions","organizations_url":"https://api.github.com/users/GuiCarneiro/orgs","repos_url":"https://api.github.com/users/GuiCarneiro/repos","events_url":"https://api.github.com/users/GuiCarneiro/events{/privacy}","received_events_url":"https://api.github.com/users/GuiCarneiro/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":5,"additions":2176,"deletions":164,"changed_files":21}},"public":true,"created_at":"2015-01-01T15:13:48Z","org":{"id":6828491,"login":"GTi-Jr","gravatar_id":"","url":"https://api.github.com/orgs/GTi-Jr","avatar_url":"https://avatars.githubusercontent.com/u/6828491?"}} +,{"id":"2489657430","type":"IssuesEvent","actor":{"id":5458742,"login":"GuiCarneiro","gravatar_id":"","url":"https://api.github.com/users/GuiCarneiro","avatar_url":"https://avatars.githubusercontent.com/u/5458742?"},"repo":{"id":22294779,"name":"GTi-Jr/CRM","url":"https://api.github.com/repos/GTi-Jr/CRM"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/GTi-Jr/CRM/issues/1","labels_url":"https://api.github.com/repos/GTi-Jr/CRM/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/GTi-Jr/CRM/issues/1/comments","events_url":"https://api.github.com/repos/GTi-Jr/CRM/issues/1/events","html_url":"https://github.com/GTi-Jr/CRM/issues/1","id":50256422,"number":1,"title":"Calendários","user":{"login":"GuiCarneiro","id":5458742,"avatar_url":"https://avatars.githubusercontent.com/u/5458742?v=3","gravatar_id":"","url":"https://api.github.com/users/GuiCarneiro","html_url":"https://github.com/GuiCarneiro","followers_url":"https://api.github.com/users/GuiCarneiro/followers","following_url":"https://api.github.com/users/GuiCarneiro/following{/other_user}","gists_url":"https://api.github.com/users/GuiCarneiro/gists{/gist_id}","starred_url":"https://api.github.com/users/GuiCarneiro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GuiCarneiro/subscriptions","organizations_url":"https://api.github.com/users/GuiCarneiro/orgs","repos_url":"https://api.github.com/users/GuiCarneiro/repos","events_url":"https://api.github.com/users/GuiCarneiro/events{/privacy}","received_events_url":"https://api.github.com/users/GuiCarneiro/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/GTi-Jr/CRM/labels/enhancement","name":"enhancement","color":"84b6eb"},{"url":"https://api.github.com/repos/GTi-Jr/CRM/labels/UX","name":"UX","color":"fad8c7"}],"state":"closed","locked":false,"assignee":null,"milestone":{"url":"https://api.github.com/repos/GTi-Jr/CRM/milestones/1","labels_url":"https://api.github.com/repos/GTi-Jr/CRM/milestones/1/labels","id":882250,"number":1,"title":"Versão 1.0","description":"Versão 1.0 - Entregue a Inova","creator":{"login":"GuiCarneiro","id":5458742,"avatar_url":"https://avatars.githubusercontent.com/u/5458742?v=3","gravatar_id":"","url":"https://api.github.com/users/GuiCarneiro","html_url":"https://github.com/GuiCarneiro","followers_url":"https://api.github.com/users/GuiCarneiro/followers","following_url":"https://api.github.com/users/GuiCarneiro/following{/other_user}","gists_url":"https://api.github.com/users/GuiCarneiro/gists{/gist_id}","starred_url":"https://api.github.com/users/GuiCarneiro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GuiCarneiro/subscriptions","organizations_url":"https://api.github.com/users/GuiCarneiro/orgs","repos_url":"https://api.github.com/users/GuiCarneiro/repos","events_url":"https://api.github.com/users/GuiCarneiro/events{/privacy}","received_events_url":"https://api.github.com/users/GuiCarneiro/received_events","type":"User","site_admin":false},"open_issues":7,"closed_issues":3,"state":"open","created_at":"2014-11-27T05:51:29Z","updated_at":"2015-01-01T15:13:48Z","due_on":null,"closed_at":null},"comments":0,"created_at":"2014-11-27T05:46:17Z","updated_at":"2015-01-01T15:13:48Z","closed_at":"2015-01-01T15:13:48Z","body":"Melhor sinalização de qual calendário é qual.\r\n\r\nPois um é interno e outro é do Google Calendar."}},"public":true,"created_at":"2015-01-01T15:13:48Z","org":{"id":6828491,"login":"GTi-Jr","gravatar_id":"","url":"https://api.github.com/orgs/GTi-Jr","avatar_url":"https://avatars.githubusercontent.com/u/6828491?"}} +,{"id":"2489657431","type":"IssuesEvent","actor":{"id":5458742,"login":"GuiCarneiro","gravatar_id":"","url":"https://api.github.com/users/GuiCarneiro","avatar_url":"https://avatars.githubusercontent.com/u/5458742?"},"repo":{"id":22294779,"name":"GTi-Jr/CRM","url":"https://api.github.com/repos/GTi-Jr/CRM"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/GTi-Jr/CRM/issues/9","labels_url":"https://api.github.com/repos/GTi-Jr/CRM/issues/9/labels{/name}","comments_url":"https://api.github.com/repos/GTi-Jr/CRM/issues/9/comments","events_url":"https://api.github.com/repos/GTi-Jr/CRM/issues/9/events","html_url":"https://github.com/GTi-Jr/CRM/issues/9","id":50906591,"number":9,"title":"HTML E-Mail","user":{"login":"GuiCarneiro","id":5458742,"avatar_url":"https://avatars.githubusercontent.com/u/5458742?v=3","gravatar_id":"","url":"https://api.github.com/users/GuiCarneiro","html_url":"https://github.com/GuiCarneiro","followers_url":"https://api.github.com/users/GuiCarneiro/followers","following_url":"https://api.github.com/users/GuiCarneiro/following{/other_user}","gists_url":"https://api.github.com/users/GuiCarneiro/gists{/gist_id}","starred_url":"https://api.github.com/users/GuiCarneiro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GuiCarneiro/subscriptions","organizations_url":"https://api.github.com/users/GuiCarneiro/orgs","repos_url":"https://api.github.com/users/GuiCarneiro/repos","events_url":"https://api.github.com/users/GuiCarneiro/events{/privacy}","received_events_url":"https://api.github.com/users/GuiCarneiro/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/GTi-Jr/CRM/labels/Design","name":"Design","color":"fef2c0"},{"url":"https://api.github.com/repos/GTi-Jr/CRM/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"closed","locked":false,"assignee":null,"milestone":{"url":"https://api.github.com/repos/GTi-Jr/CRM/milestones/1","labels_url":"https://api.github.com/repos/GTi-Jr/CRM/milestones/1/labels","id":882250,"number":1,"title":"Versão 1.0","description":"Versão 1.0 - Entregue a Inova","creator":{"login":"GuiCarneiro","id":5458742,"avatar_url":"https://avatars.githubusercontent.com/u/5458742?v=3","gravatar_id":"","url":"https://api.github.com/users/GuiCarneiro","html_url":"https://github.com/GuiCarneiro","followers_url":"https://api.github.com/users/GuiCarneiro/followers","following_url":"https://api.github.com/users/GuiCarneiro/following{/other_user}","gists_url":"https://api.github.com/users/GuiCarneiro/gists{/gist_id}","starred_url":"https://api.github.com/users/GuiCarneiro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GuiCarneiro/subscriptions","organizations_url":"https://api.github.com/users/GuiCarneiro/orgs","repos_url":"https://api.github.com/users/GuiCarneiro/repos","events_url":"https://api.github.com/users/GuiCarneiro/events{/privacy}","received_events_url":"https://api.github.com/users/GuiCarneiro/received_events","type":"User","site_admin":false},"open_issues":7,"closed_issues":3,"state":"open","created_at":"2014-11-27T05:51:29Z","updated_at":"2015-01-01T15:13:48Z","due_on":null,"closed_at":null},"comments":0,"created_at":"2014-12-03T23:12:05Z","updated_at":"2015-01-01T15:13:48Z","closed_at":"2015-01-01T15:13:48Z","body":"- Melhorar Template para E-mail\r\n- Melhorar as informações nos E-mail"}},"public":true,"created_at":"2015-01-01T15:13:48Z","org":{"id":6828491,"login":"GTi-Jr","gravatar_id":"","url":"https://api.github.com/orgs/GTi-Jr","avatar_url":"https://avatars.githubusercontent.com/u/6828491?"}} +,{"id":"2489657432","type":"PushEvent","actor":{"id":5458742,"login":"GuiCarneiro","gravatar_id":"","url":"https://api.github.com/users/GuiCarneiro","avatar_url":"https://avatars.githubusercontent.com/u/5458742?"},"repo":{"id":22294779,"name":"GTi-Jr/CRM","url":"https://api.github.com/repos/GTi-Jr/CRM"},"payload":{"push_id":536866839,"size":6,"distinct_size":1,"ref":"refs/heads/master","head":"3749d6b8db4064c8c06fc060e1f7c102781927a0","before":"fc2e2cf3f84c491be81a3e91f57a6366f4cca031","commits":[{"sha":"13e387952f1bfe2b73365be9dcfd104e3b9060e2","author":{"email":"284ed94de81bafd51dd9eda539da16debce1c5ae@gmail.com","name":"Gui Carneiro"},"message":"tour view fixed and toastr applied","distinct":false,"url":"https://api.github.com/repos/GTi-Jr/CRM/commits/13e387952f1bfe2b73365be9dcfd104e3b9060e2"},{"sha":"335368490a5593494ea985945ed315ee8904c38b","author":{"email":"284ed94de81bafd51dd9eda539da16debce1c5ae@gmail.com","name":"Gui Carneiro"},"message":"cleaning flashes and adapting code for toastr","distinct":false,"url":"https://api.github.com/repos/GTi-Jr/CRM/commits/335368490a5593494ea985945ed315ee8904c38b"},{"sha":"5db4f3c38635d03274b03e3394c780b945b6e652","author":{"email":"284ed94de81bafd51dd9eda539da16debce1c5ae@gmail.com","name":"Gui Carneiro"},"message":"adding calendar headtitle, fixes #1","distinct":false,"url":"https://api.github.com/repos/GTi-Jr/CRM/commits/5db4f3c38635d03274b03e3394c780b945b6e652"},{"sha":"711347f4285ac1d6a948f8804ae13e2f7044e277","author":{"email":"284ed94de81bafd51dd9eda539da16debce1c5ae@gmail.com","name":"Gui Carneiro"},"message":"new design for emails, close #9","distinct":false,"url":"https://api.github.com/repos/GTi-Jr/CRM/commits/711347f4285ac1d6a948f8804ae13e2f7044e277"},{"sha":"e2a29dde62f3b91389ddaa4d1e41251cb7e911e4","author":{"email":"284ed94de81bafd51dd9eda539da16debce1c5ae@gmail.com","name":"Gui Carneiro"},"message":"recover password email","distinct":false,"url":"https://api.github.com/repos/GTi-Jr/CRM/commits/e2a29dde62f3b91389ddaa4d1e41251cb7e911e4"},{"sha":"3749d6b8db4064c8c06fc060e1f7c102781927a0","author":{"email":"284ed94de81bafd51dd9eda539da16debce1c5ae@gmail.com","name":"Guilherme Carneiro"},"message":"Merge pull request #11 from GTi-Jr/design\n\nDesign","distinct":true,"url":"https://api.github.com/repos/GTi-Jr/CRM/commits/3749d6b8db4064c8c06fc060e1f7c102781927a0"}]},"public":true,"created_at":"2015-01-01T15:13:48Z","org":{"id":6828491,"login":"GTi-Jr","gravatar_id":"","url":"https://api.github.com/orgs/GTi-Jr","avatar_url":"https://avatars.githubusercontent.com/u/6828491?"}} +,{"id":"2489657433","type":"PushEvent","actor":{"id":4627837,"login":"jessemillar","gravatar_id":"","url":"https://api.github.com/users/jessemillar","avatar_url":"https://avatars.githubusercontent.com/u/4627837?"},"repo":{"id":22394413,"name":"jessemillar/Cupboard","url":"https://api.github.com/repos/jessemillar/Cupboard"},"payload":{"push_id":536866841,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"594574aace3968a88511fdc6c0e2de9dce247605","before":"773e77fc77ac4dab13c7b7b51f6d1d3bf9e365fa","commits":[{"sha":"594574aace3968a88511fdc6c0e2de9dce247605","author":{"email":"0ba40b71986250aad0903c7ebcfd76a410af35fb@gmail.com","name":"Jesse Millar"},"message":"Update LICENSE.md","distinct":true,"url":"https://api.github.com/repos/jessemillar/Cupboard/commits/594574aace3968a88511fdc6c0e2de9dce247605"}]},"public":true,"created_at":"2015-01-01T15:13:48Z"} +,{"id":"2489657434","type":"PushEvent","actor":{"id":6851525,"login":"Ardavel","gravatar_id":"","url":"https://api.github.com/users/Ardavel","avatar_url":"https://avatars.githubusercontent.com/u/6851525?"},"repo":{"id":27717733,"name":"Ardavel/zsbd","url":"https://api.github.com/repos/Ardavel/zsbd"},"payload":{"push_id":536866842,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c401866a1232ba89ad29d780635b6d42f5e21214","before":"3e19daac173c2e4013cdcd26b8159f0ec2cdd03d","commits":[{"sha":"c401866a1232ba89ad29d780635b6d42f5e21214","author":{"email":"fc5b9e0f3ab53859717742ff562345f1475e052f@edu.p.lodz.pl","name":"Wojciech Szałapski"},"message":"Rozszerzyłem schemat bazy o dostępną w magazynie ilość sztuk. Uwzględniłem ją we wszystkich stosownych procedurach.","distinct":true,"url":"https://api.github.com/repos/Ardavel/zsbd/commits/c401866a1232ba89ad29d780635b6d42f5e21214"}]},"public":true,"created_at":"2015-01-01T15:13:48Z"} +,{"id":"2489657435","type":"PushEvent","actor":{"id":833997,"login":"jgranick","gravatar_id":"","url":"https://api.github.com/users/jgranick","avatar_url":"https://avatars.githubusercontent.com/u/833997?"},"repo":{"id":8869463,"name":"openfl/openfl","url":"https://api.github.com/repos/openfl/openfl"},"payload":{"push_id":536866840,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"92333b11828119e6360a720ebbd2704d4ea8f473","before":"e888fad99a7edb4da4b915a60c53b323666993bc","commits":[{"sha":"ab256367d3c06a3ff288821a7c6c45980b6adc1c","author":{"email":"f255443e54fa77e581eaf5cf4f867757e4e34b4b@users.noreply.github.com","name":"Joshua Granick"},"message":"Make certain that __worldTransform is current when calling __hitTest for Shape and Sprite","distinct":true,"url":"https://api.github.com/repos/openfl/openfl/commits/ab256367d3c06a3ff288821a7c6c45980b6adc1c"},{"sha":"92333b11828119e6360a720ebbd2704d4ea8f473","author":{"email":"f255443e54fa77e581eaf5cf4f867757e4e34b4b@users.noreply.github.com","name":"Joshua Granick"},"message":"Add the main class to the stage before instantiation, rather than hard-coding the reference","distinct":true,"url":"https://api.github.com/repos/openfl/openfl/commits/92333b11828119e6360a720ebbd2704d4ea8f473"}]},"public":true,"created_at":"2015-01-01T15:13:48Z","org":{"id":4061208,"login":"openfl","gravatar_id":"","url":"https://api.github.com/orgs/openfl","avatar_url":"https://avatars.githubusercontent.com/u/4061208?"}} +,{"id":"2489657438","type":"WatchEvent","actor":{"id":831962,"login":"bgruszka","gravatar_id":"","url":"https://api.github.com/users/bgruszka","avatar_url":"https://avatars.githubusercontent.com/u/831962?"},"repo":{"id":22139167,"name":"intel-hadoop/gearpump","url":"https://api.github.com/repos/intel-hadoop/gearpump"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:13:48Z","org":{"id":1839373,"login":"intel-hadoop","gravatar_id":"","url":"https://api.github.com/orgs/intel-hadoop","avatar_url":"https://avatars.githubusercontent.com/u/1839373?"}} +,{"id":"2489657439","type":"PushEvent","actor":{"id":8898786,"login":"Callisto13","gravatar_id":"","url":"https://api.github.com/users/Callisto13","avatar_url":"https://avatars.githubusercontent.com/u/8898786?"},"repo":{"id":28029058,"name":"Callisto13/Ruby-Refresher","url":"https://api.github.com/repos/Callisto13/Ruby-Refresher"},"payload":{"push_id":536866843,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"b16867d39824f3031f1ae8c47407402136610efa","before":"0477a39996cf90a476eb8cecf8c8f5672403d969","commits":[{"sha":"2e98ea27f25ba5e146990b963a0930e5d54d2e42","author":{"email":"2076e03976d6eee06b3226b7b04553bb926911ba@gmail.com","name":"Claudia"},"message":"all letters in array","distinct":true,"url":"https://api.github.com/repos/Callisto13/Ruby-Refresher/commits/2e98ea27f25ba5e146990b963a0930e5d54d2e42"},{"sha":"c36737575042a57b3a2b674303ee570807e679e7","author":{"email":"2076e03976d6eee06b3226b7b04553bb926911ba@gmail.com","name":"Claudia"},"message":"swap keys and values in hash","distinct":true,"url":"https://api.github.com/repos/Callisto13/Ruby-Refresher/commits/c36737575042a57b3a2b674303ee570807e679e7"},{"sha":"b16867d39824f3031f1ae8c47407402136610efa","author":{"email":"2076e03976d6eee06b3226b7b04553bb926911ba@gmail.com","name":"Claudia"},"message":"sum of keys and values in hash - not happy with it though, will find another way","distinct":true,"url":"https://api.github.com/repos/Callisto13/Ruby-Refresher/commits/b16867d39824f3031f1ae8c47407402136610efa"}]},"public":true,"created_at":"2015-01-01T15:13:49Z"} +,{"id":"2489657441","type":"CommitCommentEvent","actor":{"id":3834933,"login":"mohamed-ezz","gravatar_id":"","url":"https://api.github.com/users/mohamed-ezz","avatar_url":"https://avatars.githubusercontent.com/u/3834933?"},"repo":{"id":28304489,"name":"mohamed-ezz/dmc","url":"https://api.github.com/repos/mohamed-ezz/dmc"},"payload":{"comment":{"url":"https://api.github.com/repos/mohamed-ezz/dmc/comments/9132445","html_url":"https://github.com/mohamed-ezz/dmc/commit/dcaac247093dbeb67c607def923b104c35d04378#commitcomment-9132445","id":9132445,"user":{"login":"mohamed-ezz","id":3834933,"avatar_url":"https://avatars.githubusercontent.com/u/3834933?v=3","gravatar_id":"","url":"https://api.github.com/users/mohamed-ezz","html_url":"https://github.com/mohamed-ezz","followers_url":"https://api.github.com/users/mohamed-ezz/followers","following_url":"https://api.github.com/users/mohamed-ezz/following{/other_user}","gists_url":"https://api.github.com/users/mohamed-ezz/gists{/gist_id}","starred_url":"https://api.github.com/users/mohamed-ezz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mohamed-ezz/subscriptions","organizations_url":"https://api.github.com/users/mohamed-ezz/orgs","repos_url":"https://api.github.com/users/mohamed-ezz/repos","events_url":"https://api.github.com/users/mohamed-ezz/events{/privacy}","received_events_url":"https://api.github.com/users/mohamed-ezz/received_events","type":"User","site_admin":false},"position":63,"line":60,"path":"dmc1/statistics.R","commit_id":"dcaac247093dbeb67c607def923b104c35d04378","created_at":"2015-01-01T15:13:49Z","updated_at":"2015-01-01T15:13:49Z","body":"more accurately : most married people have high income"}},"public":true,"created_at":"2015-01-01T15:13:49Z"} +,{"id":"2489657442","type":"PushEvent","actor":{"id":66357,"login":"ncopa","gravatar_id":"","url":"https://api.github.com/users/ncopa","avatar_url":"https://avatars.githubusercontent.com/u/66357?"},"repo":{"id":19851667,"name":"alpinelinux/aports","url":"https://api.github.com/repos/alpinelinux/aports"},"payload":{"push_id":536866844,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"d6298f040179f1548d35b72269bba099aa98a9c8","before":"184db20aa3fed9d6ff67b2176f164a10581b5c5e","commits":[{"sha":"6dd48b0babd9f3146043eeac553273810a8967ed","author":{"email":"d6dfbe96822fc6f407d114112670f8d1571509f1@alpinelinux.org","name":"Natanael Copa"},"message":"main/strongswan: linux-headers build fix","distinct":true,"url":"https://api.github.com/repos/alpinelinux/aports/commits/6dd48b0babd9f3146043eeac553273810a8967ed"},{"sha":"afd5a202d77ee5b673897d72ed44b4e9137276d6","author":{"email":"d6dfbe96822fc6f407d114112670f8d1571509f1@alpinelinux.org","name":"Natanael Copa"},"message":"main/strongswan: enable EAP TLS","distinct":true,"url":"https://api.github.com/repos/alpinelinux/aports/commits/afd5a202d77ee5b673897d72ed44b4e9137276d6"},{"sha":"d6298f040179f1548d35b72269bba099aa98a9c8","author":{"email":"3dacbce532ccd48f27fa62e993067b3c35f094f7@it-offshore.co.uk","name":"Stuart Cardall"},"message":"unmaintained/pulseaudio: corrected 5.99.2 patch\n\nwith corrected APKBUILD 'make || return 1'","distinct":true,"url":"https://api.github.com/repos/alpinelinux/aports/commits/d6298f040179f1548d35b72269bba099aa98a9c8"}]},"public":true,"created_at":"2015-01-01T15:13:49Z","org":{"id":7600810,"login":"alpinelinux","gravatar_id":"","url":"https://api.github.com/orgs/alpinelinux","avatar_url":"https://avatars.githubusercontent.com/u/7600810?"}} +,{"id":"2489657443","type":"WatchEvent","actor":{"id":1468294,"login":"apan0206","gravatar_id":"","url":"https://api.github.com/users/apan0206","avatar_url":"https://avatars.githubusercontent.com/u/1468294?"},"repo":{"id":1828795,"name":"AFNetworking/AFNetworking","url":"https://api.github.com/repos/AFNetworking/AFNetworking"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:13:49Z","org":{"id":1181541,"login":"AFNetworking","gravatar_id":"","url":"https://api.github.com/orgs/AFNetworking","avatar_url":"https://avatars.githubusercontent.com/u/1181541?"}} +,{"id":"2489657445","type":"IssueCommentEvent","actor":{"id":5514202,"login":"DeeJee","gravatar_id":"","url":"https://api.github.com/users/DeeJee","avatar_url":"https://avatars.githubusercontent.com/u/5514202?"},"repo":{"id":28571307,"name":"DeeJee/VhpTimeLogger","url":"https://api.github.com/repos/DeeJee/VhpTimeLogger"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/6","labels_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/6/comments","events_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/6/events","html_url":"https://github.com/DeeJee/VhpTimeLogger/issues/6","id":53221537,"number":6,"title":"Zoeken in listselect 1","user":{"login":"DeeJee","id":5514202,"avatar_url":"https://avatars.githubusercontent.com/u/5514202?v=3","gravatar_id":"","url":"https://api.github.com/users/DeeJee","html_url":"https://github.com/DeeJee","followers_url":"https://api.github.com/users/DeeJee/followers","following_url":"https://api.github.com/users/DeeJee/following{/other_user}","gists_url":"https://api.github.com/users/DeeJee/gists{/gist_id}","starred_url":"https://api.github.com/users/DeeJee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeeJee/subscriptions","organizations_url":"https://api.github.com/users/DeeJee/orgs","repos_url":"https://api.github.com/users/DeeJee/repos","events_url":"https://api.github.com/users/DeeJee/events{/privacy}","received_events_url":"https://api.github.com/users/DeeJee/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:10:46Z","updated_at":"2015-01-01T15:13:49Z","closed_at":null,"body":"Is het ook mogelijk om te matchen met een tekst die op een willekeurige plaats in het veld staat ipv alleen aan het begin?"},"comment":{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/comments/68488780","html_url":"https://github.com/DeeJee/VhpTimeLogger/issues/6#issuecomment-68488780","issue_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/6","id":68488780,"user":{"login":"DeeJee","id":5514202,"avatar_url":"https://avatars.githubusercontent.com/u/5514202?v=3","gravatar_id":"","url":"https://api.github.com/users/DeeJee","html_url":"https://github.com/DeeJee","followers_url":"https://api.github.com/users/DeeJee/followers","following_url":"https://api.github.com/users/DeeJee/following{/other_user}","gists_url":"https://api.github.com/users/DeeJee/gists{/gist_id}","starred_url":"https://api.github.com/users/DeeJee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeeJee/subscriptions","organizations_url":"https://api.github.com/users/DeeJee/orgs","repos_url":"https://api.github.com/users/DeeJee/repos","events_url":"https://api.github.com/users/DeeJee/events{/privacy}","received_events_url":"https://api.github.com/users/DeeJee/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:13:49Z","updated_at":"2015-01-01T15:13:49Z","body":"Dit is niet mogelijk met de standaardfunctionaliteit van de combobox. Helaas heeft de combobox geen mogelijkheden om de autocomplete functie aan te passen. De enige mogelijkheid in trucen met de keypress of textchanged events en dat werkt erg slecht. Ik heb ook een stuk code van het net af gejat dat deze functionaliteit simuleert door er een extra listbox onder te hangen. Dat werkt wel maar niet binnen een usercontrol. De regels in het grid staan namelijk tegen elkaar aan. Zodra je een control gaat renderen buiten zijn eigen gebied wordt hij bedekt door het control dat eronder staat. Daar heb ik nog geen oplossing voor."}},"public":true,"created_at":"2015-01-01T15:13:50Z"} +,{"id":"2489657449","type":"CreateEvent","actor":{"id":7351259,"login":"rsahani","gravatar_id":"","url":"https://api.github.com/users/rsahani","avatar_url":"https://avatars.githubusercontent.com/u/7351259?"},"repo":{"id":28688768,"name":"rsahani/High-performance-DB-test","url":"https://api.github.com/repos/rsahani/High-performance-DB-test"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:50Z"} +,{"id":"2489657450","type":"CreateEvent","actor":{"id":1025631,"login":"f1xmAn","gravatar_id":"","url":"https://api.github.com/users/f1xmAn","avatar_url":"https://avatars.githubusercontent.com/u/1025631?"},"repo":{"id":28688857,"name":"f1xmAn/secrello","url":"https://api.github.com/repos/f1xmAn/secrello"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Web application for securing passwords","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:50Z"} +,{"id":"2489657452","type":"PullRequestEvent","actor":{"id":640179,"login":"jgmalcolm","gravatar_id":"","url":"https://api.github.com/users/jgmalcolm","avatar_url":"https://avatars.githubusercontent.com/u/640179?"},"repo":{"id":21984805,"name":"erikreinertsen/erikreinertsen.github.io","url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io"},"payload":{"action":"opened","number":9,"pull_request":{"url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/pulls/9","id":26743873,"html_url":"https://github.com/erikreinertsen/erikreinertsen.github.io/pull/9","diff_url":"https://github.com/erikreinertsen/erikreinertsen.github.io/pull/9.diff","patch_url":"https://github.com/erikreinertsen/erikreinertsen.github.io/pull/9.patch","issue_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/issues/9","number":9,"state":"open","locked":false,"title":"related links URL was broken link","user":{"login":"jgmalcolm","id":640179,"avatar_url":"https://avatars.githubusercontent.com/u/640179?v=3","gravatar_id":"","url":"https://api.github.com/users/jgmalcolm","html_url":"https://github.com/jgmalcolm","followers_url":"https://api.github.com/users/jgmalcolm/followers","following_url":"https://api.github.com/users/jgmalcolm/following{/other_user}","gists_url":"https://api.github.com/users/jgmalcolm/gists{/gist_id}","starred_url":"https://api.github.com/users/jgmalcolm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jgmalcolm/subscriptions","organizations_url":"https://api.github.com/users/jgmalcolm/orgs","repos_url":"https://api.github.com/users/jgmalcolm/repos","events_url":"https://api.github.com/users/jgmalcolm/events{/privacy}","received_events_url":"https://api.github.com/users/jgmalcolm/received_events","type":"User","site_admin":false},"body":"Broken link resulted in leading '//' which tells browser it is toplevel link (instead of '/' which tells it subdir link).","created_at":"2015-01-01T15:13:50Z","updated_at":"2015-01-01T15:13:50Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/pulls/9/commits","review_comments_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/pulls/9/comments","review_comment_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/pulls/comments/{number}","comments_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/issues/9/comments","statuses_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/statuses/eed30876a1d9d83b2c3d37cec4c2078c13bc1bca","head":{"label":"jgmalcolm:related-posts","ref":"related-posts","sha":"eed30876a1d9d83b2c3d37cec4c2078c13bc1bca","user":{"login":"jgmalcolm","id":640179,"avatar_url":"https://avatars.githubusercontent.com/u/640179?v=3","gravatar_id":"","url":"https://api.github.com/users/jgmalcolm","html_url":"https://github.com/jgmalcolm","followers_url":"https://api.github.com/users/jgmalcolm/followers","following_url":"https://api.github.com/users/jgmalcolm/following{/other_user}","gists_url":"https://api.github.com/users/jgmalcolm/gists{/gist_id}","starred_url":"https://api.github.com/users/jgmalcolm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jgmalcolm/subscriptions","organizations_url":"https://api.github.com/users/jgmalcolm/orgs","repos_url":"https://api.github.com/users/jgmalcolm/repos","events_url":"https://api.github.com/users/jgmalcolm/events{/privacy}","received_events_url":"https://api.github.com/users/jgmalcolm/received_events","type":"User","site_admin":false},"repo":{"id":22471076,"name":"erikreinertsen.github.io","full_name":"jgmalcolm/erikreinertsen.github.io","owner":{"login":"jgmalcolm","id":640179,"avatar_url":"https://avatars.githubusercontent.com/u/640179?v=3","gravatar_id":"","url":"https://api.github.com/users/jgmalcolm","html_url":"https://github.com/jgmalcolm","followers_url":"https://api.github.com/users/jgmalcolm/followers","following_url":"https://api.github.com/users/jgmalcolm/following{/other_user}","gists_url":"https://api.github.com/users/jgmalcolm/gists{/gist_id}","starred_url":"https://api.github.com/users/jgmalcolm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jgmalcolm/subscriptions","organizations_url":"https://api.github.com/users/jgmalcolm/orgs","repos_url":"https://api.github.com/users/jgmalcolm/repos","events_url":"https://api.github.com/users/jgmalcolm/events{/privacy}","received_events_url":"https://api.github.com/users/jgmalcolm/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/jgmalcolm/erikreinertsen.github.io","description":"","fork":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io","forks_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/forks","keys_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/teams","hooks_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/hooks","issue_events_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/events","assignees_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/tags","blobs_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/languages","stargazers_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/stargazers","contributors_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/contributors","subscribers_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/subscribers","subscription_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/subscription","commits_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/merges","archive_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/downloads","issues_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/labels{/name}","releases_url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/releases{/id}","created_at":"2014-07-31T13:54:49Z","updated_at":"2015-01-01T15:04:45Z","pushed_at":"2015-01-01T15:11:43Z","git_url":"git://github.com/jgmalcolm/erikreinertsen.github.io.git","ssh_url":"git@github.com:jgmalcolm/erikreinertsen.github.io.git","clone_url":"https://github.com/jgmalcolm/erikreinertsen.github.io.git","svn_url":"https://github.com/jgmalcolm/erikreinertsen.github.io","homepage":null,"size":61157,"stargazers_count":0,"watchers_count":0,"language":"CSS","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":"erikreinertsen:master","ref":"master","sha":"40dd4043b399e102ac12d8f5ffcacf19c22b96df","user":{"login":"erikreinertsen","id":1253422,"avatar_url":"https://avatars.githubusercontent.com/u/1253422?v=3","gravatar_id":"","url":"https://api.github.com/users/erikreinertsen","html_url":"https://github.com/erikreinertsen","followers_url":"https://api.github.com/users/erikreinertsen/followers","following_url":"https://api.github.com/users/erikreinertsen/following{/other_user}","gists_url":"https://api.github.com/users/erikreinertsen/gists{/gist_id}","starred_url":"https://api.github.com/users/erikreinertsen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/erikreinertsen/subscriptions","organizations_url":"https://api.github.com/users/erikreinertsen/orgs","repos_url":"https://api.github.com/users/erikreinertsen/repos","events_url":"https://api.github.com/users/erikreinertsen/events{/privacy}","received_events_url":"https://api.github.com/users/erikreinertsen/received_events","type":"User","site_admin":false},"repo":{"id":21984805,"name":"erikreinertsen.github.io","full_name":"erikreinertsen/erikreinertsen.github.io","owner":{"login":"erikreinertsen","id":1253422,"avatar_url":"https://avatars.githubusercontent.com/u/1253422?v=3","gravatar_id":"","url":"https://api.github.com/users/erikreinertsen","html_url":"https://github.com/erikreinertsen","followers_url":"https://api.github.com/users/erikreinertsen/followers","following_url":"https://api.github.com/users/erikreinertsen/following{/other_user}","gists_url":"https://api.github.com/users/erikreinertsen/gists{/gist_id}","starred_url":"https://api.github.com/users/erikreinertsen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/erikreinertsen/subscriptions","organizations_url":"https://api.github.com/users/erikreinertsen/orgs","repos_url":"https://api.github.com/users/erikreinertsen/repos","events_url":"https://api.github.com/users/erikreinertsen/events{/privacy}","received_events_url":"https://api.github.com/users/erikreinertsen/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/erikreinertsen/erikreinertsen.github.io","description":"","fork":false,"url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io","forks_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/forks","keys_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/teams","hooks_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/hooks","issue_events_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/events","assignees_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/tags","blobs_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/languages","stargazers_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/stargazers","contributors_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/contributors","subscribers_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/subscribers","subscription_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/subscription","commits_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/merges","archive_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/downloads","issues_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/labels{/name}","releases_url":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/releases{/id}","created_at":"2014-07-18T15:23:28Z","updated_at":"2014-12-29T01:38:21Z","pushed_at":"2014-12-29T01:38:21Z","git_url":"git://github.com/erikreinertsen/erikreinertsen.github.io.git","ssh_url":"git@github.com:erikreinertsen/erikreinertsen.github.io.git","clone_url":"https://github.com/erikreinertsen/erikreinertsen.github.io.git","svn_url":"https://github.com/erikreinertsen/erikreinertsen.github.io","homepage":null,"size":63157,"stargazers_count":0,"watchers_count":0,"language":"CSS","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":1,"mirror_url":null,"open_issues_count":2,"forks":1,"open_issues":2,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/pulls/9"},"html":{"href":"https://github.com/erikreinertsen/erikreinertsen.github.io/pull/9"},"issue":{"href":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/issues/9"},"comments":{"href":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/issues/9/comments"},"review_comments":{"href":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/pulls/9/comments"},"review_comment":{"href":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/pulls/9/commits"},"statuses":{"href":"https://api.github.com/repos/erikreinertsen/erikreinertsen.github.io/statuses/eed30876a1d9d83b2c3d37cec4c2078c13bc1bca"}},"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:13:50Z"} +,{"id":"2489657454","type":"CreateEvent","actor":{"id":4345272,"login":"duneprojectmirrorjob","gravatar_id":"","url":"https://api.github.com/users/duneprojectmirrorjob","avatar_url":"https://avatars.githubusercontent.com/u/4345272?"},"repo":{"id":9853250,"name":"dune-project/dune-grid","url":"https://api.github.com/repos/dune-project/dune-grid"},"payload":{"ref":"feature/FS1548-cmake-hyphen-in-test-name","ref_type":"branch","master_branch":"master","description":"Grid interface and core implementations - PLEASE SEE OUR WEBSITE http://dune-project.org FOR MORE INFORMATION","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:51Z","org":{"id":4338678,"login":"dune-project","gravatar_id":"","url":"https://api.github.com/orgs/dune-project","avatar_url":"https://avatars.githubusercontent.com/u/4338678?"}} +,{"id":"2489657455","type":"DeleteEvent","actor":{"id":5458742,"login":"GuiCarneiro","gravatar_id":"","url":"https://api.github.com/users/GuiCarneiro","avatar_url":"https://avatars.githubusercontent.com/u/5458742?"},"repo":{"id":22294779,"name":"GTi-Jr/CRM","url":"https://api.github.com/repos/GTi-Jr/CRM"},"payload":{"ref":"design","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:51Z","org":{"id":6828491,"login":"GTi-Jr","gravatar_id":"","url":"https://api.github.com/orgs/GTi-Jr","avatar_url":"https://avatars.githubusercontent.com/u/6828491?"}} +,{"id":"2489657456","type":"PushEvent","actor":{"id":1847495,"login":"isxam","gravatar_id":"","url":"https://api.github.com/users/isxam","avatar_url":"https://avatars.githubusercontent.com/u/1847495?"},"repo":{"id":28600952,"name":"isxam/magento-stats","url":"https://api.github.com/repos/isxam/magento-stats"},"payload":{"push_id":536866848,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cb50121ba33973952a45fb3f75b6340065687b4c","before":"92f51ad05590615e92a3f8ac5a55a396da9fb6a2","commits":[{"sha":"cb50121ba33973952a45fb3f75b6340065687b4c","author":{"email":"ec23f61bddc59e6e49f3f3cc867b6566c72f806b@gmail.com","name":"isxam"},"message":"Api calls log; api response time;","distinct":true,"url":"https://api.github.com/repos/isxam/magento-stats/commits/cb50121ba33973952a45fb3f75b6340065687b4c"}]},"public":true,"created_at":"2015-01-01T15:13:51Z"} +,{"id":"2489657457","type":"PullRequestEvent","actor":{"id":337024,"login":"nabetama","gravatar_id":"","url":"https://api.github.com/users/nabetama","avatar_url":"https://avatars.githubusercontent.com/u/337024?"},"repo":{"id":27433708,"name":"nabetama/slacky","url":"https://api.github.com/repos/nabetama/slacky"},"payload":{"action":"closed","number":40,"pull_request":{"url":"https://api.github.com/repos/nabetama/slacky/pulls/40","id":26743862,"html_url":"https://github.com/nabetama/slacky/pull/40","diff_url":"https://github.com/nabetama/slacky/pull/40.diff","patch_url":"https://github.com/nabetama/slacky/pull/40.patch","issue_url":"https://api.github.com/repos/nabetama/slacky/issues/40","number":40,"state":"closed","locked":false,"title":"timeline method is returned message list.","user":{"login":"nabetama","id":337024,"avatar_url":"https://avatars.githubusercontent.com/u/337024?v=3","gravatar_id":"","url":"https://api.github.com/users/nabetama","html_url":"https://github.com/nabetama","followers_url":"https://api.github.com/users/nabetama/followers","following_url":"https://api.github.com/users/nabetama/following{/other_user}","gists_url":"https://api.github.com/users/nabetama/gists{/gist_id}","starred_url":"https://api.github.com/users/nabetama/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nabetama/subscriptions","organizations_url":"https://api.github.com/users/nabetama/orgs","repos_url":"https://api.github.com/users/nabetama/repos","events_url":"https://api.github.com/users/nabetama/events{/privacy}","received_events_url":"https://api.github.com/users/nabetama/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:12:13Z","updated_at":"2015-01-01T15:13:51Z","closed_at":"2015-01-01T15:13:51Z","merged_at":"2015-01-01T15:13:51Z","merge_commit_sha":"09bba83e3da86995120c94873862c5337981cd81","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/nabetama/slacky/pulls/40/commits","review_comments_url":"https://api.github.com/repos/nabetama/slacky/pulls/40/comments","review_comment_url":"https://api.github.com/repos/nabetama/slacky/pulls/comments/{number}","comments_url":"https://api.github.com/repos/nabetama/slacky/issues/40/comments","statuses_url":"https://api.github.com/repos/nabetama/slacky/statuses/e06c00ac7561b1968703d7a8a9ef54edc5414d2f","head":{"label":"nabetama:timeline","ref":"timeline","sha":"e06c00ac7561b1968703d7a8a9ef54edc5414d2f","user":{"login":"nabetama","id":337024,"avatar_url":"https://avatars.githubusercontent.com/u/337024?v=3","gravatar_id":"","url":"https://api.github.com/users/nabetama","html_url":"https://github.com/nabetama","followers_url":"https://api.github.com/users/nabetama/followers","following_url":"https://api.github.com/users/nabetama/following{/other_user}","gists_url":"https://api.github.com/users/nabetama/gists{/gist_id}","starred_url":"https://api.github.com/users/nabetama/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nabetama/subscriptions","organizations_url":"https://api.github.com/users/nabetama/orgs","repos_url":"https://api.github.com/users/nabetama/repos","events_url":"https://api.github.com/users/nabetama/events{/privacy}","received_events_url":"https://api.github.com/users/nabetama/received_events","type":"User","site_admin":false},"repo":{"id":27433708,"name":"slacky","full_name":"nabetama/slacky","owner":{"login":"nabetama","id":337024,"avatar_url":"https://avatars.githubusercontent.com/u/337024?v=3","gravatar_id":"","url":"https://api.github.com/users/nabetama","html_url":"https://github.com/nabetama","followers_url":"https://api.github.com/users/nabetama/followers","following_url":"https://api.github.com/users/nabetama/following{/other_user}","gists_url":"https://api.github.com/users/nabetama/gists{/gist_id}","starred_url":"https://api.github.com/users/nabetama/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nabetama/subscriptions","organizations_url":"https://api.github.com/users/nabetama/orgs","repos_url":"https://api.github.com/users/nabetama/repos","events_url":"https://api.github.com/users/nabetama/events{/privacy}","received_events_url":"https://api.github.com/users/nabetama/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/nabetama/slacky","description":"A Python package for Slack's JSON REST API.","fork":false,"url":"https://api.github.com/repos/nabetama/slacky","forks_url":"https://api.github.com/repos/nabetama/slacky/forks","keys_url":"https://api.github.com/repos/nabetama/slacky/keys{/key_id}","collaborators_url":"https://api.github.com/repos/nabetama/slacky/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/nabetama/slacky/teams","hooks_url":"https://api.github.com/repos/nabetama/slacky/hooks","issue_events_url":"https://api.github.com/repos/nabetama/slacky/issues/events{/number}","events_url":"https://api.github.com/repos/nabetama/slacky/events","assignees_url":"https://api.github.com/repos/nabetama/slacky/assignees{/user}","branches_url":"https://api.github.com/repos/nabetama/slacky/branches{/branch}","tags_url":"https://api.github.com/repos/nabetama/slacky/tags","blobs_url":"https://api.github.com/repos/nabetama/slacky/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/nabetama/slacky/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/nabetama/slacky/git/refs{/sha}","trees_url":"https://api.github.com/repos/nabetama/slacky/git/trees{/sha}","statuses_url":"https://api.github.com/repos/nabetama/slacky/statuses/{sha}","languages_url":"https://api.github.com/repos/nabetama/slacky/languages","stargazers_url":"https://api.github.com/repos/nabetama/slacky/stargazers","contributors_url":"https://api.github.com/repos/nabetama/slacky/contributors","subscribers_url":"https://api.github.com/repos/nabetama/slacky/subscribers","subscription_url":"https://api.github.com/repos/nabetama/slacky/subscription","commits_url":"https://api.github.com/repos/nabetama/slacky/commits{/sha}","git_commits_url":"https://api.github.com/repos/nabetama/slacky/git/commits{/sha}","comments_url":"https://api.github.com/repos/nabetama/slacky/comments{/number}","issue_comment_url":"https://api.github.com/repos/nabetama/slacky/issues/comments/{number}","contents_url":"https://api.github.com/repos/nabetama/slacky/contents/{+path}","compare_url":"https://api.github.com/repos/nabetama/slacky/compare/{base}...{head}","merges_url":"https://api.github.com/repos/nabetama/slacky/merges","archive_url":"https://api.github.com/repos/nabetama/slacky/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/nabetama/slacky/downloads","issues_url":"https://api.github.com/repos/nabetama/slacky/issues{/number}","pulls_url":"https://api.github.com/repos/nabetama/slacky/pulls{/number}","milestones_url":"https://api.github.com/repos/nabetama/slacky/milestones{/number}","notifications_url":"https://api.github.com/repos/nabetama/slacky/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/nabetama/slacky/labels{/name}","releases_url":"https://api.github.com/repos/nabetama/slacky/releases{/id}","created_at":"2014-12-02T13:29:43Z","updated_at":"2015-01-01T15:06:29Z","pushed_at":"2015-01-01T15:13:51Z","git_url":"git://github.com/nabetama/slacky.git","ssh_url":"git@github.com:nabetama/slacky.git","clone_url":"https://github.com/nabetama/slacky.git","svn_url":"https://github.com/nabetama/slacky","homepage":"https://pypi.python.org/pypi/slacky","size":1320,"stargazers_count":1,"watchers_count":1,"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":1,"default_branch":"master"}},"base":{"label":"nabetama:master","ref":"master","sha":"67172ff8d1f50fffa85c880db2a0e143cc350ad2","user":{"login":"nabetama","id":337024,"avatar_url":"https://avatars.githubusercontent.com/u/337024?v=3","gravatar_id":"","url":"https://api.github.com/users/nabetama","html_url":"https://github.com/nabetama","followers_url":"https://api.github.com/users/nabetama/followers","following_url":"https://api.github.com/users/nabetama/following{/other_user}","gists_url":"https://api.github.com/users/nabetama/gists{/gist_id}","starred_url":"https://api.github.com/users/nabetama/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nabetama/subscriptions","organizations_url":"https://api.github.com/users/nabetama/orgs","repos_url":"https://api.github.com/users/nabetama/repos","events_url":"https://api.github.com/users/nabetama/events{/privacy}","received_events_url":"https://api.github.com/users/nabetama/received_events","type":"User","site_admin":false},"repo":{"id":27433708,"name":"slacky","full_name":"nabetama/slacky","owner":{"login":"nabetama","id":337024,"avatar_url":"https://avatars.githubusercontent.com/u/337024?v=3","gravatar_id":"","url":"https://api.github.com/users/nabetama","html_url":"https://github.com/nabetama","followers_url":"https://api.github.com/users/nabetama/followers","following_url":"https://api.github.com/users/nabetama/following{/other_user}","gists_url":"https://api.github.com/users/nabetama/gists{/gist_id}","starred_url":"https://api.github.com/users/nabetama/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nabetama/subscriptions","organizations_url":"https://api.github.com/users/nabetama/orgs","repos_url":"https://api.github.com/users/nabetama/repos","events_url":"https://api.github.com/users/nabetama/events{/privacy}","received_events_url":"https://api.github.com/users/nabetama/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/nabetama/slacky","description":"A Python package for Slack's JSON REST API.","fork":false,"url":"https://api.github.com/repos/nabetama/slacky","forks_url":"https://api.github.com/repos/nabetama/slacky/forks","keys_url":"https://api.github.com/repos/nabetama/slacky/keys{/key_id}","collaborators_url":"https://api.github.com/repos/nabetama/slacky/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/nabetama/slacky/teams","hooks_url":"https://api.github.com/repos/nabetama/slacky/hooks","issue_events_url":"https://api.github.com/repos/nabetama/slacky/issues/events{/number}","events_url":"https://api.github.com/repos/nabetama/slacky/events","assignees_url":"https://api.github.com/repos/nabetama/slacky/assignees{/user}","branches_url":"https://api.github.com/repos/nabetama/slacky/branches{/branch}","tags_url":"https://api.github.com/repos/nabetama/slacky/tags","blobs_url":"https://api.github.com/repos/nabetama/slacky/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/nabetama/slacky/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/nabetama/slacky/git/refs{/sha}","trees_url":"https://api.github.com/repos/nabetama/slacky/git/trees{/sha}","statuses_url":"https://api.github.com/repos/nabetama/slacky/statuses/{sha}","languages_url":"https://api.github.com/repos/nabetama/slacky/languages","stargazers_url":"https://api.github.com/repos/nabetama/slacky/stargazers","contributors_url":"https://api.github.com/repos/nabetama/slacky/contributors","subscribers_url":"https://api.github.com/repos/nabetama/slacky/subscribers","subscription_url":"https://api.github.com/repos/nabetama/slacky/subscription","commits_url":"https://api.github.com/repos/nabetama/slacky/commits{/sha}","git_commits_url":"https://api.github.com/repos/nabetama/slacky/git/commits{/sha}","comments_url":"https://api.github.com/repos/nabetama/slacky/comments{/number}","issue_comment_url":"https://api.github.com/repos/nabetama/slacky/issues/comments/{number}","contents_url":"https://api.github.com/repos/nabetama/slacky/contents/{+path}","compare_url":"https://api.github.com/repos/nabetama/slacky/compare/{base}...{head}","merges_url":"https://api.github.com/repos/nabetama/slacky/merges","archive_url":"https://api.github.com/repos/nabetama/slacky/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/nabetama/slacky/downloads","issues_url":"https://api.github.com/repos/nabetama/slacky/issues{/number}","pulls_url":"https://api.github.com/repos/nabetama/slacky/pulls{/number}","milestones_url":"https://api.github.com/repos/nabetama/slacky/milestones{/number}","notifications_url":"https://api.github.com/repos/nabetama/slacky/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/nabetama/slacky/labels{/name}","releases_url":"https://api.github.com/repos/nabetama/slacky/releases{/id}","created_at":"2014-12-02T13:29:43Z","updated_at":"2015-01-01T15:06:29Z","pushed_at":"2015-01-01T15:13:51Z","git_url":"git://github.com/nabetama/slacky.git","ssh_url":"git@github.com:nabetama/slacky.git","clone_url":"https://github.com/nabetama/slacky.git","svn_url":"https://github.com/nabetama/slacky","homepage":"https://pypi.python.org/pypi/slacky","size":1320,"stargazers_count":1,"watchers_count":1,"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":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/nabetama/slacky/pulls/40"},"html":{"href":"https://github.com/nabetama/slacky/pull/40"},"issue":{"href":"https://api.github.com/repos/nabetama/slacky/issues/40"},"comments":{"href":"https://api.github.com/repos/nabetama/slacky/issues/40/comments"},"review_comments":{"href":"https://api.github.com/repos/nabetama/slacky/pulls/40/comments"},"review_comment":{"href":"https://api.github.com/repos/nabetama/slacky/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/nabetama/slacky/pulls/40/commits"},"statuses":{"href":"https://api.github.com/repos/nabetama/slacky/statuses/e06c00ac7561b1968703d7a8a9ef54edc5414d2f"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"nabetama","id":337024,"avatar_url":"https://avatars.githubusercontent.com/u/337024?v=3","gravatar_id":"","url":"https://api.github.com/users/nabetama","html_url":"https://github.com/nabetama","followers_url":"https://api.github.com/users/nabetama/followers","following_url":"https://api.github.com/users/nabetama/following{/other_user}","gists_url":"https://api.github.com/users/nabetama/gists{/gist_id}","starred_url":"https://api.github.com/users/nabetama/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nabetama/subscriptions","organizations_url":"https://api.github.com/users/nabetama/orgs","repos_url":"https://api.github.com/users/nabetama/repos","events_url":"https://api.github.com/users/nabetama/events{/privacy}","received_events_url":"https://api.github.com/users/nabetama/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":6,"deletions":4,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:13:51Z"} +,{"id":"2489657458","type":"PushEvent","actor":{"id":337024,"login":"nabetama","gravatar_id":"","url":"https://api.github.com/users/nabetama","avatar_url":"https://avatars.githubusercontent.com/u/337024?"},"repo":{"id":27433708,"name":"nabetama/slacky","url":"https://api.github.com/repos/nabetama/slacky"},"payload":{"push_id":536866850,"size":2,"distinct_size":1,"ref":"refs/heads/master","head":"a8bd6338f29162c5eb0b6d04ff2f843dbeb67987","before":"67172ff8d1f50fffa85c880db2a0e143cc350ad2","commits":[{"sha":"e06c00ac7561b1968703d7a8a9ef54edc5414d2f","author":{"email":"2278e2e498cb2e11617fd57f8a62966011a6b306@gmail.com","name":"nabetama"},"message":"timeline method is returned message list.","distinct":false,"url":"https://api.github.com/repos/nabetama/slacky/commits/e06c00ac7561b1968703d7a8a9ef54edc5414d2f"},{"sha":"a8bd6338f29162c5eb0b6d04ff2f843dbeb67987","author":{"email":"2278e2e498cb2e11617fd57f8a62966011a6b306@gmail.com","name":"nabetama"},"message":"Merge pull request #40 from nabetama/timeline\n\ntimeline method is returned message list.","distinct":true,"url":"https://api.github.com/repos/nabetama/slacky/commits/a8bd6338f29162c5eb0b6d04ff2f843dbeb67987"}]},"public":true,"created_at":"2015-01-01T15:13:51Z"} +,{"id":"2489657468","type":"PushEvent","actor":{"id":10342579,"login":"np511","gravatar_id":"","url":"https://api.github.com/users/np511","avatar_url":"https://avatars.githubusercontent.com/u/10342579?"},"repo":{"id":28603609,"name":"np511/textbasedrpg","url":"https://api.github.com/repos/np511/textbasedrpg"},"payload":{"push_id":536866854,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"98c2ceaa7eb6c303452d4383be42053eae035391","before":"0a94bede8f421115b80e913b7b602b7142f74bcc","commits":[{"sha":"98c2ceaa7eb6c303452d4383be42053eae035391","author":{"email":"ae89f4343e88737e753d6e1785cd01c7be6f2b6c@outlook.com","name":"np511"},"message":"edited menu pages and fixed login bug","distinct":true,"url":"https://api.github.com/repos/np511/textbasedrpg/commits/98c2ceaa7eb6c303452d4383be42053eae035391"}]},"public":true,"created_at":"2015-01-01T15:13:52Z"} +,{"id":"2489657470","type":"PushEvent","actor":{"id":5353499,"login":"emhoracek","gravatar_id":"","url":"https://api.github.com/users/emhoracek","avatar_url":"https://avatars.githubusercontent.com/u/5353499?"},"repo":{"id":22773970,"name":"emhoracek/exploration-game","url":"https://api.github.com/repos/emhoracek/exploration-game"},"payload":{"push_id":536866855,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fd475a7ce75ad7afd2ca65fb6012d8fcc30ed14f","before":"73139d2672a810b7f6cd17a7f12a3738d61f0277","commits":[{"sha":"fd475a7ce75ad7afd2ca65fb6012d8fcc30ed14f","author":{"email":"6b50e0eee4438c8ae5099a293de1312b06992b55@daydrea.me","name":"Libby H"},"message":"Updated READ.me","distinct":true,"url":"https://api.github.com/repos/emhoracek/exploration-game/commits/fd475a7ce75ad7afd2ca65fb6012d8fcc30ed14f"}]},"public":true,"created_at":"2015-01-01T15:13:53Z"} +,{"id":"2489657471","type":"PushEvent","actor":{"id":1138365,"login":"guoxx","gravatar_id":"","url":"https://api.github.com/users/guoxx","avatar_url":"https://avatars.githubusercontent.com/u/1138365?"},"repo":{"id":23115973,"name":"guoxx/Renderer","url":"https://api.github.com/repos/guoxx/Renderer"},"payload":{"push_id":536866856,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b36c2c8e7f4eb4bf3a775aa05c93dde9437958c9","before":"dea010b46dfdba4917d56ead57b63d8620cf86b5","commits":[{"sha":"b36c2c8e7f4eb4bf3a775aa05c93dde9437958c9","author":{"email":"9eaa2e7eec3d0a807020024f007dc40ff2a3e31f@me.com","name":"ben"},"message":"x","distinct":true,"url":"https://api.github.com/repos/guoxx/Renderer/commits/b36c2c8e7f4eb4bf3a775aa05c93dde9437958c9"}]},"public":true,"created_at":"2015-01-01T15:13:53Z"} +,{"id":"2489657472","type":"CreateEvent","actor":{"id":900894,"login":"jwaixs","gravatar_id":"","url":"https://api.github.com/users/jwaixs","avatar_url":"https://avatars.githubusercontent.com/u/900894?"},"repo":{"id":28688821,"name":"jwaixs/sportgenerator","url":"https://api.github.com/repos/jwaixs/sportgenerator"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"A generator for sport programs, focus mainly on swimming","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:53Z"} +,{"id":"2489657473","type":"PushEvent","actor":{"id":790066,"login":"stevenocchipinti","gravatar_id":"","url":"https://api.github.com/users/stevenocchipinti","avatar_url":"https://avatars.githubusercontent.com/u/790066?"},"repo":{"id":28686239,"name":"stevenocchipinti/ShoppingList","url":"https://api.github.com/repos/stevenocchipinti/ShoppingList"},"payload":{"push_id":536866858,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d2d29fa4a3bb2f2980027f8bd48e3326ed30ec50","before":"580fa9a8504fca4d79d433ab9064168f5ae4234d","commits":[{"sha":"d2d29fa4a3bb2f2980027f8bd48e3326ed30ec50","author":{"email":"c49ee584eb7df8b24681217483208645d45d70fd@rea-group.com","name":"Steven Occhipinti"},"message":"Make the button styles consistent","distinct":true,"url":"https://api.github.com/repos/stevenocchipinti/ShoppingList/commits/d2d29fa4a3bb2f2980027f8bd48e3326ed30ec50"}]},"public":true,"created_at":"2015-01-01T15:13:53Z"} +,{"id":"2489657474","type":"PushEvent","actor":{"id":1309247,"login":"luolinjia","gravatar_id":"","url":"https://api.github.com/users/luolinjia","avatar_url":"https://avatars.githubusercontent.com/u/1309247?"},"repo":{"id":3657693,"name":"luolinjia/en","url":"https://api.github.com/repos/luolinjia/en"},"payload":{"push_id":536866859,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"26c2023e91c026948d6080fe8e69ff8d9b08f149","before":"9369c0aeafc4289ba58d0fd452c8dab8cd08741e","commits":[{"sha":"26c2023e91c026948d6080fe8e69ff8d9b08f149","author":{"email":"6bddb2629bb398ef1308013550d52621203c21c1@qq.com","name":"Karl"},"message":"Create 2015-01-01-shanghai-stampede.md","distinct":true,"url":"https://api.github.com/repos/luolinjia/en/commits/26c2023e91c026948d6080fe8e69ff8d9b08f149"}]},"public":true,"created_at":"2015-01-01T15:13:53Z"} +,{"id":"2489657475","type":"PushEvent","actor":{"id":1923645,"login":"fleytman","gravatar_id":"","url":"https://api.github.com/users/fleytman","avatar_url":"https://avatars.githubusercontent.com/u/1923645?"},"repo":{"id":23657626,"name":"fleytman/web_4kurs","url":"https://api.github.com/repos/fleytman/web_4kurs"},"payload":{"push_id":536866860,"size":0,"distinct_size":0,"ref":"refs/heads/test","head":"5fe7e52ffafe77f906ba87f355d5a911812446c2","before":"5fe7e52ffafe77f906ba87f355d5a911812446c2","commits":[]},"public":true,"created_at":"2015-01-01T15:13:53Z"} +,{"id":"2489657482","type":"PushEvent","actor":{"id":24036,"login":"Octane","gravatar_id":"","url":"https://api.github.com/users/Octane","avatar_url":"https://avatars.githubusercontent.com/u/24036?"},"repo":{"id":19575934,"name":"Octane/Promise","url":"https://api.github.com/repos/Octane/Promise"},"payload":{"push_id":536866863,"size":1,"distinct_size":1,"ref":"refs/heads/next","head":"449403fcae3b2dba158e1969069890c90699fd67","before":"834e14f888ec6404fe0df9a1ff836b3597a8ea69","commits":[{"sha":"449403fcae3b2dba158e1969069890c90699fd67","author":{"email":"342f7071a2a9a8e1f37554a187b1584a459d86f3@gmail.com","name":"Dmitry Korobkin"},"message":"refactor","distinct":true,"url":"https://api.github.com/repos/Octane/Promise/commits/449403fcae3b2dba158e1969069890c90699fd67"}]},"public":true,"created_at":"2015-01-01T15:13:54Z"} +,{"id":"2489657484","type":"PushEvent","actor":{"id":5101884,"login":"Atvaark","gravatar_id":"","url":"https://api.github.com/users/Atvaark","avatar_url":"https://avatars.githubusercontent.com/u/5101884?"},"repo":{"id":28562333,"name":"Atvaark/FtexTool","url":"https://api.github.com/repos/Atvaark/FtexTool"},"payload":{"push_id":536866864,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"68023249285ea3b635adbfd50118f30c615ea069","before":"d7ac2071381fda8e1aad67308168618156e7be2a","commits":[{"sha":"68023249285ea3b635adbfd50118f30c615ea069","author":{"email":"90d00659f465990581b68b3fc25b67ddc2f2fb58@users.noreply.github.com","name":"Atvaark"},"message":"Updated the PftxsTool usage info .","distinct":true,"url":"https://api.github.com/repos/Atvaark/FtexTool/commits/68023249285ea3b635adbfd50118f30c615ea069"}]},"public":true,"created_at":"2015-01-01T15:13:55Z"} +,{"id":"2489657486","type":"PushEvent","actor":{"id":4725234,"login":"xuhf","gravatar_id":"","url":"https://api.github.com/users/xuhf","avatar_url":"https://avatars.githubusercontent.com/u/4725234?"},"repo":{"id":28372569,"name":"xuhf/framework","url":"https://api.github.com/repos/xuhf/framework"},"payload":{"push_id":536866865,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2c129db9ed852009527cf71b47795307313ae5f1","before":"c380986a76500232185a0c19468f7ee8ad5a76ef","commits":[{"sha":"2c129db9ed852009527cf71b47795307313ae5f1","author":{"email":"c382e2a699a24b40ebbf1750e79aa3febf9a9e56@163.com","name":"xuhf"},"message":"完善数据字典管理","distinct":true,"url":"https://api.github.com/repos/xuhf/framework/commits/2c129db9ed852009527cf71b47795307313ae5f1"}]},"public":true,"created_at":"2015-01-01T15:13:55Z"} +,{"id":"2489657487","type":"WatchEvent","actor":{"id":370121,"login":"rsrose21","gravatar_id":"","url":"https://api.github.com/users/rsrose21","avatar_url":"https://avatars.githubusercontent.com/u/370121?"},"repo":{"id":6965529,"name":"mikaelbr/node-notifier","url":"https://api.github.com/repos/mikaelbr/node-notifier"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:13:55Z"} +,{"id":"2489657489","type":"IssuesEvent","actor":{"id":8061217,"login":"MBuchalik","gravatar_id":"","url":"https://api.github.com/users/MBuchalik","avatar_url":"https://avatars.githubusercontent.com/u/8061217?"},"repo":{"id":25266915,"name":"MBuchalik/p-slde","url":"https://api.github.com/repos/MBuchalik/p-slde"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/MBuchalik/p-slde/issues/14","labels_url":"https://api.github.com/repos/MBuchalik/p-slde/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/MBuchalik/p-slde/issues/14/comments","events_url":"https://api.github.com/repos/MBuchalik/p-slde/issues/14/events","html_url":"https://github.com/MBuchalik/p-slde/issues/14","id":51018761,"number":14,"title":"Einschreiben - Farbe kaum sichtbar","user":{"login":"MBuchalik","id":8061217,"avatar_url":"https://avatars.githubusercontent.com/u/8061217?v=3","gravatar_id":"","url":"https://api.github.com/users/MBuchalik","html_url":"https://github.com/MBuchalik","followers_url":"https://api.github.com/users/MBuchalik/followers","following_url":"https://api.github.com/users/MBuchalik/following{/other_user}","gists_url":"https://api.github.com/users/MBuchalik/gists{/gist_id}","starred_url":"https://api.github.com/users/MBuchalik/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MBuchalik/subscriptions","organizations_url":"https://api.github.com/users/MBuchalik/orgs","repos_url":"https://api.github.com/users/MBuchalik/repos","events_url":"https://api.github.com/users/MBuchalik/events{/privacy}","received_events_url":"https://api.github.com/users/MBuchalik/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/MBuchalik/p-slde/labels/bug","name":"bug","color":"fc2929"}],"state":"closed","locked":false,"assignee":null,"milestone":{"url":"https://api.github.com/repos/MBuchalik/p-slde/milestones/4","labels_url":"https://api.github.com/repos/MBuchalik/p-slde/milestones/4/labels","id":858380,"number":4,"title":"1.0.3","description":null,"creator":{"login":"MBuchalik","id":8061217,"avatar_url":"https://avatars.githubusercontent.com/u/8061217?v=3","gravatar_id":"","url":"https://api.github.com/users/MBuchalik","html_url":"https://github.com/MBuchalik","followers_url":"https://api.github.com/users/MBuchalik/followers","following_url":"https://api.github.com/users/MBuchalik/following{/other_user}","gists_url":"https://api.github.com/users/MBuchalik/gists{/gist_id}","starred_url":"https://api.github.com/users/MBuchalik/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MBuchalik/subscriptions","organizations_url":"https://api.github.com/users/MBuchalik/orgs","repos_url":"https://api.github.com/users/MBuchalik/repos","events_url":"https://api.github.com/users/MBuchalik/events{/privacy}","received_events_url":"https://api.github.com/users/MBuchalik/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":1,"state":"open","created_at":"2014-11-08T13:00:13Z","updated_at":"2015-01-01T15:13:55Z","due_on":null,"closed_at":null},"comments":0,"created_at":"2014-12-04T19:41:01Z","updated_at":"2015-01-01T15:13:55Z","closed_at":"2015-01-01T15:13:55Z","body":""}},"public":true,"created_at":"2015-01-01T15:13:55Z"} +,{"id":"2489657490","type":"ForkEvent","actor":{"id":121686,"login":"JohnathonReasons","gravatar_id":"","url":"https://api.github.com/users/JohnathonReasons","avatar_url":"https://avatars.githubusercontent.com/u/121686?"},"repo":{"id":13901613,"name":"ServUO/ServUO","url":"https://api.github.com/repos/ServUO/ServUO"},"payload":{"forkee":{"id":28688859,"name":"ServUO","full_name":"JohnathonReasons/ServUO","owner":{"login":"JohnathonReasons","id":121686,"avatar_url":"https://avatars.githubusercontent.com/u/121686?v=3","gravatar_id":"","url":"https://api.github.com/users/JohnathonReasons","html_url":"https://github.com/JohnathonReasons","followers_url":"https://api.github.com/users/JohnathonReasons/followers","following_url":"https://api.github.com/users/JohnathonReasons/following{/other_user}","gists_url":"https://api.github.com/users/JohnathonReasons/gists{/gist_id}","starred_url":"https://api.github.com/users/JohnathonReasons/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JohnathonReasons/subscriptions","organizations_url":"https://api.github.com/users/JohnathonReasons/orgs","repos_url":"https://api.github.com/users/JohnathonReasons/repos","events_url":"https://api.github.com/users/JohnathonReasons/events{/privacy}","received_events_url":"https://api.github.com/users/JohnathonReasons/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/JohnathonReasons/ServUO","description":"The new home for the official ServUO project.","fork":true,"url":"https://api.github.com/repos/JohnathonReasons/ServUO","forks_url":"https://api.github.com/repos/JohnathonReasons/ServUO/forks","keys_url":"https://api.github.com/repos/JohnathonReasons/ServUO/keys{/key_id}","collaborators_url":"https://api.github.com/repos/JohnathonReasons/ServUO/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/JohnathonReasons/ServUO/teams","hooks_url":"https://api.github.com/repos/JohnathonReasons/ServUO/hooks","issue_events_url":"https://api.github.com/repos/JohnathonReasons/ServUO/issues/events{/number}","events_url":"https://api.github.com/repos/JohnathonReasons/ServUO/events","assignees_url":"https://api.github.com/repos/JohnathonReasons/ServUO/assignees{/user}","branches_url":"https://api.github.com/repos/JohnathonReasons/ServUO/branches{/branch}","tags_url":"https://api.github.com/repos/JohnathonReasons/ServUO/tags","blobs_url":"https://api.github.com/repos/JohnathonReasons/ServUO/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/JohnathonReasons/ServUO/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/JohnathonReasons/ServUO/git/refs{/sha}","trees_url":"https://api.github.com/repos/JohnathonReasons/ServUO/git/trees{/sha}","statuses_url":"https://api.github.com/repos/JohnathonReasons/ServUO/statuses/{sha}","languages_url":"https://api.github.com/repos/JohnathonReasons/ServUO/languages","stargazers_url":"https://api.github.com/repos/JohnathonReasons/ServUO/stargazers","contributors_url":"https://api.github.com/repos/JohnathonReasons/ServUO/contributors","subscribers_url":"https://api.github.com/repos/JohnathonReasons/ServUO/subscribers","subscription_url":"https://api.github.com/repos/JohnathonReasons/ServUO/subscription","commits_url":"https://api.github.com/repos/JohnathonReasons/ServUO/commits{/sha}","git_commits_url":"https://api.github.com/repos/JohnathonReasons/ServUO/git/commits{/sha}","comments_url":"https://api.github.com/repos/JohnathonReasons/ServUO/comments{/number}","issue_comment_url":"https://api.github.com/repos/JohnathonReasons/ServUO/issues/comments/{number}","contents_url":"https://api.github.com/repos/JohnathonReasons/ServUO/contents/{+path}","compare_url":"https://api.github.com/repos/JohnathonReasons/ServUO/compare/{base}...{head}","merges_url":"https://api.github.com/repos/JohnathonReasons/ServUO/merges","archive_url":"https://api.github.com/repos/JohnathonReasons/ServUO/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/JohnathonReasons/ServUO/downloads","issues_url":"https://api.github.com/repos/JohnathonReasons/ServUO/issues{/number}","pulls_url":"https://api.github.com/repos/JohnathonReasons/ServUO/pulls{/number}","milestones_url":"https://api.github.com/repos/JohnathonReasons/ServUO/milestones{/number}","notifications_url":"https://api.github.com/repos/JohnathonReasons/ServUO/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/JohnathonReasons/ServUO/labels{/name}","releases_url":"https://api.github.com/repos/JohnathonReasons/ServUO/releases{/id}","created_at":"2015-01-01T15:13:55Z","updated_at":"2014-12-09T00:32:32Z","pushed_at":"2014-12-09T00:32:31Z","git_url":"git://github.com/JohnathonReasons/ServUO.git","ssh_url":"git@github.com:JohnathonReasons/ServUO.git","clone_url":"https://github.com/JohnathonReasons/ServUO.git","svn_url":"https://github.com/JohnathonReasons/ServUO","homepage":null,"size":8716,"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:13:55Z","org":{"id":3516645,"login":"ServUO","gravatar_id":"","url":"https://api.github.com/orgs/ServUO","avatar_url":"https://avatars.githubusercontent.com/u/3516645?"}} +,{"id":"2489657492","type":"PushEvent","actor":{"id":7416064,"login":"MoatazNegm","gravatar_id":"","url":"https://api.github.com/users/MoatazNegm","avatar_url":"https://avatars.githubusercontent.com/u/7416064?"},"repo":{"id":19187430,"name":"MoatazNegm/TopStorWeb","url":"https://api.github.com/repos/MoatazNegm/TopStorWeb"},"payload":{"push_id":536866869,"size":1,"distinct_size":1,"ref":"refs/heads/AD","head":"f3166c4ab012e81d04fcdd24c725021c3f75a6da","before":"38a2765f631ac059421d2aabbefc99110faef4e0","commits":[{"sha":"f3166c4ab012e81d04fcdd24c725021c3f75a6da","author":{"email":"ca228623d6586885e6b4fac60e1206ef4710005e@hotmail.com","name":"Moataz Negm"},"message":" submitting AD but the password still not quoted","distinct":true,"url":"https://api.github.com/repos/MoatazNegm/TopStorWeb/commits/f3166c4ab012e81d04fcdd24c725021c3f75a6da"}]},"public":true,"created_at":"2015-01-01T15:13:55Z"} +,{"id":"2489657494","type":"PushEvent","actor":{"id":6130227,"login":"garvinob","gravatar_id":"","url":"https://api.github.com/users/garvinob","avatar_url":"https://avatars.githubusercontent.com/u/6130227?"},"repo":{"id":28282710,"name":"garvinob/SmallBeans","url":"https://api.github.com/repos/garvinob/SmallBeans"},"payload":{"push_id":536866871,"size":1,"distinct_size":1,"ref":"refs/heads/login","head":"abbb9b0f212a3f02b0dd62a56a641643b0029034","before":"0623b98548a207ef6f393f102e552ead58685172","commits":[{"sha":"abbb9b0f212a3f02b0dd62a56a641643b0029034","author":{"email":"95527d8eaea728b02f5f2200194b04a3a31df6d0@gmail.com","name":"garvinob"},"message":"working login mechanism\n\nno password framework set up yet\nonly login by valid username\nuserlist test endpoint set up","distinct":true,"url":"https://api.github.com/repos/garvinob/SmallBeans/commits/abbb9b0f212a3f02b0dd62a56a641643b0029034"}]},"public":true,"created_at":"2015-01-01T15:13:55Z"} +,{"id":"2489657496","type":"PushEvent","actor":{"id":7336721,"login":"aow1980","gravatar_id":"","url":"https://api.github.com/users/aow1980","avatar_url":"https://avatars.githubusercontent.com/u/7336721?"},"repo":{"id":26634778,"name":"aow1980/android_build","url":"https://api.github.com/repos/aow1980/android_build"},"payload":{"push_id":536866872,"size":10,"distinct_size":10,"ref":"refs/heads/lp5.0","head":"ddb4dd06a61d85884bfa262518e60b7ea520e506","before":"5b42de4f11deaf1c593059b6f176e0f12fbd8011","commits":[{"sha":"077ee3a28dbdf4fd680cd1a868d6e96a70dd69cf","author":{"email":"457cfb837588e6491cbd81701614a2c9f7081d84@gmail.com","name":"aow1980"},"message":"revert Disable block-based OTA by default\n\nUse export BLOCK_BASED_OTA=true to enable it\n\nChange-Id: Iaf9aa393ce35bd4864e63fdf303a2abb532aa7a1 (reverted from commit a3ba5071eb7159130766e49db7452419a2bbbbd2)","distinct":true,"url":"https://api.github.com/repos/aow1980/android_build/commits/077ee3a28dbdf4fd680cd1a868d6e96a70dd69cf"},{"sha":"8271f5b55414fbdbf499e80ba4a3e1c1a4199555","author":{"email":"457cfb837588e6491cbd81701614a2c9f7081d84@gmail.com","name":"aow1980"},"message":"Return some GCCONLY flags used in Kitkat\n\n* and keep them away from clang too!\n\nChange-Id: I9980f0191922bcb402ebbb7ef44caba0806df5d9\nSigned-off-by: Chet Kener ","distinct":true,"url":"https://api.github.com/repos/aow1980/android_build/commits/8271f5b55414fbdbf499e80ba4a3e1c1a4199555"},{"sha":"f50182e28ec36126729f8597a8937436c24d71a2","author":{"email":"457cfb837588e6491cbd81701614a2c9f7081d84@gmail.com","name":"aow1980"},"message":"Keep Krait Tunings off the Host Modules\n\nChange-Id: Ieed3ec6ba2c83ff67641404ae9f012952a86e9f7\nSigned-off-by: Chet Kener ","distinct":true,"url":"https://api.github.com/repos/aow1980/android_build/commits/f50182e28ec36126729f8597a8937436c24d71a2"},{"sha":"8fbf424e0eb0463d1d08961560a4705d8663cb4c","author":{"email":"457cfb837588e6491cbd81701614a2c9f7081d84@gmail.com","name":"aow1980"},"message":"-mvectorize-with-neon-quad not supported by clang\n\n* Will move to GCCONLY\n\nChange-Id: Iafc27dc79eb1428b3b51d918deceb67c4fae0018\nSigned-off-by: Chet Kener ","distinct":true,"url":"https://api.github.com/repos/aow1980/android_build/commits/8fbf424e0eb0463d1d08961560a4705d8663cb4c"},{"sha":"5af58233e25d63087b47bb1e4a19a48f07490153","author":{"email":"457cfb837588e6491cbd81701614a2c9f7081d84@gmail.com","name":"aow1980"},"message":"GCCONLY: Add -mvectorize-with-neon-quad\n\nChange-Id: I7599eae7ddafa39454476f907192b20cd726b54a\nSigned-off-by: Chet Kener ","distinct":true,"url":"https://api.github.com/repos/aow1980/android_build/commits/5af58233e25d63087b47bb1e4a19a48f07490153"},{"sha":"5af4ce3f5c74a32df600454c1b18b7cc4337c08f","author":{"email":"457cfb837588e6491cbd81701614a2c9f7081d84@gmail.com","name":"aow1980"},"message":"Update the Krait Ignore List\n\nChange-Id: I2240a4045c810aef804293828a9f6b75559503af\nSigned-off-by: Chet Kener ","distinct":true,"url":"https://api.github.com/repos/aow1980/android_build/commits/5af4ce3f5c74a32df600454c1b18b7cc4337c08f"},{"sha":"ed8062dc5bae888557213c1e2e6956bd07fe5ae1","author":{"email":"457cfb837588e6491cbd81701614a2c9f7081d84@gmail.com","name":"aow1980"},"message":"Bluetooth: The Most poorly written code in Android\n\nChange-Id: Iadc5c596f7484897a8837cec4e3bce9c99e8e3ee\nSigned-off-by: Chet Kener ","distinct":true,"url":"https://api.github.com/repos/aow1980/android_build/commits/ed8062dc5bae888557213c1e2e6956bd07fe5ae1"},{"sha":"a476983f32a1e483ea04f6aab7409b16438c29c3","author":{"email":"457cfb837588e6491cbd81701614a2c9f7081d84@gmail.com","name":"aow1980"},"message":"Remove Broken cc call options\n\nChange-Id: I30bab4c647959f60867103841b10a0c2db362006\nSigned-off-by: Chet Kener ","distinct":true,"url":"https://api.github.com/repos/aow1980/android_build/commits/a476983f32a1e483ea04f6aab7409b16438c29c3"},{"sha":"60f3d2138f66d06374243104db88cce7ce76d8d5","author":{"email":"457cfb837588e6491cbd81701614a2c9f7081d84@gmail.com","name":"aow1980"},"message":"armv7-a-neon: Apply Correct mfpu and mfloat tunings per arch\n\n* Before everything was neon and soft float. Now let's allow for per cortex tuning. Benchmarks should go up. See here for better references https://github.com/CyanogenMod/android_build/commit/8907b775376211e73a566e8c9ef65e5b76cba1af\n\nChange-Id: Ibd5ac7cf56d4ca0b8c26e693b1a6602f744e07ea\nSigned-off-by: Chet Kener ","distinct":true,"url":"https://api.github.com/repos/aow1980/android_build/commits/60f3d2138f66d06374243104db88cce7ce76d8d5"},{"sha":"ddb4dd06a61d85884bfa262518e60b7ea520e506","author":{"email":"457cfb837588e6491cbd81701614a2c9f7081d84@gmail.com","name":"aow1980"},"message":"Clang doesn't support -mfpu=neon-vfpv4\n\n* Which is unfortunate. I would be much better if I didn't have to hack this crap\n\nChange-Id: Iac53408a6856fa85220584a0735301827ef602c6\nSigned-off-by: Chet Kener ","distinct":true,"url":"https://api.github.com/repos/aow1980/android_build/commits/ddb4dd06a61d85884bfa262518e60b7ea520e506"}]},"public":true,"created_at":"2015-01-01T15:13:56Z"} +,{"id":"2489657498","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":536866873,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cfa9e5d71c1457117a8e35d5decc2d46cbfba570","before":"9d7b28110545f6365d548b539a1f7b4d40cfc36e","commits":[{"sha":"cfa9e5d71c1457117a8e35d5decc2d46cbfba570","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420125234782\n\nlZqmZ7IECXaIJDCYmuSTSPvJbovcVvHtTbHHNFlWT2I=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/cfa9e5d71c1457117a8e35d5decc2d46cbfba570"}]},"public":true,"created_at":"2015-01-01T15:13:56Z"} +,{"id":"2489657500","type":"PushEvent","actor":{"id":6811304,"login":"Khaon","gravatar_id":"","url":"https://api.github.com/users/Khaon","avatar_url":"https://avatars.githubusercontent.com/u/6811304?"},"repo":{"id":23437611,"name":"Khaon/android_kernel_samsung_manta","url":"https://api.github.com/repos/Khaon/android_kernel_samsung_manta"},"payload":{"push_id":536866874,"size":1,"distinct_size":1,"ref":"refs/heads/khaon-new","head":"1d12e6b34cb1dfc418f67721514572e79defb4dc","before":"0042bd31154563efdc9b6386142422e155c4ee52","commits":[{"sha":"1d12e6b34cb1dfc418f67721514572e79defb4dc","author":{"email":"6de4a1b61708b558fa9bd165e9e132f4dd9c2b94@student.uclouvain.be","name":"Maxime Poulain"},"message":"cpufreq:interactive:switched to touchboost driver","distinct":true,"url":"https://api.github.com/repos/Khaon/android_kernel_samsung_manta/commits/1d12e6b34cb1dfc418f67721514572e79defb4dc"}]},"public":true,"created_at":"2015-01-01T15:13:56Z"} +,{"id":"2489657501","type":"CreateEvent","actor":{"id":1025631,"login":"f1xmAn","gravatar_id":"","url":"https://api.github.com/users/f1xmAn","avatar_url":"https://avatars.githubusercontent.com/u/1025631?"},"repo":{"id":28688857,"name":"f1xmAn/secrello","url":"https://api.github.com/repos/f1xmAn/secrello"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Web application for securing passwords","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:56Z"} +,{"id":"2489657502","type":"PushEvent","actor":{"id":6720931,"login":"gzhangx","gravatar_id":"","url":"https://api.github.com/users/gzhangx","avatar_url":"https://avatars.githubusercontent.com/u/6720931?"},"repo":{"id":28656115,"name":"gzhangx/HebrewsTracker","url":"https://api.github.com/repos/gzhangx/HebrewsTracker"},"payload":{"push_id":536866875,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0fcc176a3e6fc75bf8edae9f2c55370f623a28f6","before":"b73abfcc55454f461b00de9ef960dedb9022d94c","commits":[{"sha":"0fcc176a3e6fc75bf8edae9f2c55370f623a28f6","author":{"email":"936771ca88444e8178fb373c375516583e39ae1a@pps.io","name":"Gang Zhang"},"message":"added direct save","distinct":true,"url":"https://api.github.com/repos/gzhangx/HebrewsTracker/commits/0fcc176a3e6fc75bf8edae9f2c55370f623a28f6"}]},"public":true,"created_at":"2015-01-01T15:13:56Z"} +,{"id":"2489657505","type":"IssuesEvent","actor":{"id":3646205,"login":"adamhorvath88","gravatar_id":"","url":"https://api.github.com/users/adamhorvath88","avatar_url":"https://avatars.githubusercontent.com/u/3646205?"},"repo":{"id":13687281,"name":"kaffee-public/Kompressor","url":"https://api.github.com/repos/kaffee-public/Kompressor"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/kaffee-public/Kompressor/issues/1","labels_url":"https://api.github.com/repos/kaffee-public/Kompressor/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/kaffee-public/Kompressor/issues/1/comments","events_url":"https://api.github.com/repos/kaffee-public/Kompressor/issues/1/events","html_url":"https://github.com/kaffee-public/Kompressor/issues/1","id":53221614,"number":1,"title":"Relative path on input folder can get messed up with -R option","user":{"login":"adamhorvath88","id":3646205,"avatar_url":"https://avatars.githubusercontent.com/u/3646205?v=3","gravatar_id":"","url":"https://api.github.com/users/adamhorvath88","html_url":"https://github.com/adamhorvath88","followers_url":"https://api.github.com/users/adamhorvath88/followers","following_url":"https://api.github.com/users/adamhorvath88/following{/other_user}","gists_url":"https://api.github.com/users/adamhorvath88/gists{/gist_id}","starred_url":"https://api.github.com/users/adamhorvath88/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adamhorvath88/subscriptions","organizations_url":"https://api.github.com/users/adamhorvath88/orgs","repos_url":"https://api.github.com/users/adamhorvath88/repos","events_url":"https://api.github.com/users/adamhorvath88/events{/privacy}","received_events_url":"https://api.github.com/users/adamhorvath88/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/kaffee-public/Kompressor/labels/bug","name":"bug","color":"fc2929"}],"state":"open","locked":false,"assignee":null,"milestone":{"url":"https://api.github.com/repos/kaffee-public/Kompressor/milestones/1","labels_url":"https://api.github.com/repos/kaffee-public/Kompressor/milestones/1/labels","id":919122,"number":1,"title":"1.0","description":null,"creator":{"login":"adamhorvath88","id":3646205,"avatar_url":"https://avatars.githubusercontent.com/u/3646205?v=3","gravatar_id":"","url":"https://api.github.com/users/adamhorvath88","html_url":"https://github.com/adamhorvath88","followers_url":"https://api.github.com/users/adamhorvath88/followers","following_url":"https://api.github.com/users/adamhorvath88/following{/other_user}","gists_url":"https://api.github.com/users/adamhorvath88/gists{/gist_id}","starred_url":"https://api.github.com/users/adamhorvath88/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adamhorvath88/subscriptions","organizations_url":"https://api.github.com/users/adamhorvath88/orgs","repos_url":"https://api.github.com/users/adamhorvath88/repos","events_url":"https://api.github.com/users/adamhorvath88/events{/privacy}","received_events_url":"https://api.github.com/users/adamhorvath88/received_events","type":"User","site_admin":false},"open_issues":1,"closed_issues":0,"state":"open","created_at":"2015-01-01T15:13:57Z","updated_at":"2015-01-01T15:13:57Z","due_on":null,"closed_at":null},"comments":0,"created_at":"2015-01-01T15:13:57Z","updated_at":"2015-01-01T15:13:57Z","closed_at":null,"body":"You have to start the program with the -R argument and the input folder (the last argument) must be given in a relative addressing; like 'php'. If this directory has a 'php' named folder in it's subdirectories then input will get confused.\r\n\r\nSee FileListComposer->listFiles()."}},"public":true,"created_at":"2015-01-01T15:13:57Z","org":{"id":3717569,"login":"kaffee-public","gravatar_id":"","url":"https://api.github.com/orgs/kaffee-public","avatar_url":"https://avatars.githubusercontent.com/u/3717569?"}} +,{"id":"2489657508","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":536866880,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"121c09904b2993f939f8efa94278fba1e7a2cd1d","before":"9850e5ca8737ada0e2eabaa1ec25955845d48c81","commits":[{"sha":"121c09904b2993f939f8efa94278fba1e7a2cd1d","author":{"email":"e225f70e51a1c8b116ff8cab1ebd81c5cf6dacb1@gmail.com","name":"ashishsanjayrao"},"message":"removed test","distinct":true,"url":"https://api.github.com/repos/Poornaprajna-Technologies/test/commits/121c09904b2993f939f8efa94278fba1e7a2cd1d"}]},"public":true,"created_at":"2015-01-01T15:13:57Z","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":"2489657510","type":"PushEvent","actor":{"id":5459666,"login":"joestox","gravatar_id":"","url":"https://api.github.com/users/joestox","avatar_url":"https://avatars.githubusercontent.com/u/5459666?"},"repo":{"id":28508505,"name":"joestox/firstPastThePost","url":"https://api.github.com/repos/joestox/firstPastThePost"},"payload":{"push_id":536866882,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9a5730b4008a7700ec9a0643567090c0684e7ff1","before":"320aab58a779fd0f82849028dd6c796fc5b1d6e8","commits":[{"sha":"9a5730b4008a7700ec9a0643567090c0684e7ff1","author":{"email":"565a885b1905b6cac39184988dcf610137d8179b@gmail.com","name":"joestox"},"message":"connectivity issues fixed 2","distinct":true,"url":"https://api.github.com/repos/joestox/firstPastThePost/commits/9a5730b4008a7700ec9a0643567090c0684e7ff1"}]},"public":true,"created_at":"2015-01-01T15:13:57Z"} +,{"id":"2489657511","type":"PushEvent","actor":{"id":7263904,"login":"tianlixu","gravatar_id":"","url":"https://api.github.com/users/tianlixu","avatar_url":"https://avatars.githubusercontent.com/u/7263904?"},"repo":{"id":28401344,"name":"tianlixu/leetcode","url":"https://api.github.com/repos/tianlixu/leetcode"},"payload":{"push_id":536866883,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e4ef59711a96e1a41d0928724235c61ca76cd171","before":"89a9a8c3ea6c9b65f7a8822edaa9f2567d1cee88","commits":[{"sha":"e4ef59711a96e1a41d0928724235c61ca76cd171","author":{"email":"a6a2dc2bec09233237e468f8760a6505d111469f@gmail.com","name":"Alex Xu"},"message":"moved Print2N.cpp to the subdirectory algorithm","distinct":true,"url":"https://api.github.com/repos/tianlixu/leetcode/commits/e4ef59711a96e1a41d0928724235c61ca76cd171"}]},"public":true,"created_at":"2015-01-01T15:13:57Z"} +,{"id":"2489657514","type":"PushEvent","actor":{"id":5421623,"login":"invkrh","gravatar_id":"","url":"https://api.github.com/users/invkrh","avatar_url":"https://avatars.githubusercontent.com/u/5421623?"},"repo":{"id":28426924,"name":"invkrh/invkrh.github.io","url":"https://api.github.com/repos/invkrh/invkrh.github.io"},"payload":{"push_id":536866885,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b0af59a1123f451afba01834eae470da35e022cd","before":"9845578219707bf53149f7cedeb87fcc657ca94d","commits":[{"sha":"b0af59a1123f451afba01834eae470da35e022cd","author":{"email":"2fba93d2d64406ff4cc0911a0c4e63c8b01bcae0@gmail.com","name":"coderh"},"message":"update math css","distinct":true,"url":"https://api.github.com/repos/invkrh/invkrh.github.io/commits/b0af59a1123f451afba01834eae470da35e022cd"}]},"public":true,"created_at":"2015-01-01T15:13:58Z"} +,{"id":"2489657515","type":"CreateEvent","actor":{"id":1487445,"login":"xinzhengzhang","gravatar_id":"","url":"https://api.github.com/users/xinzhengzhang","avatar_url":"https://avatars.githubusercontent.com/u/1487445?"},"repo":{"id":28688860,"name":"xinzhengzhang/ZZPwd","url":"https://api.github.com/repos/xinzhengzhang/ZZPwd"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:13:59Z"} +,{"id":"2489657518","type":"ForkEvent","actor":{"id":6251947,"login":"masterhung0112","gravatar_id":"","url":"https://api.github.com/users/masterhung0112","avatar_url":"https://avatars.githubusercontent.com/u/6251947?"},"repo":{"id":3100366,"name":"DanChianucci/Eagle2Kicad","url":"https://api.github.com/repos/DanChianucci/Eagle2Kicad"},"payload":{"forkee":{"id":28688861,"name":"Eagle2Kicad","full_name":"masterhung0112/Eagle2Kicad","owner":{"login":"masterhung0112","id":6251947,"avatar_url":"https://avatars.githubusercontent.com/u/6251947?v=3","gravatar_id":"","url":"https://api.github.com/users/masterhung0112","html_url":"https://github.com/masterhung0112","followers_url":"https://api.github.com/users/masterhung0112/followers","following_url":"https://api.github.com/users/masterhung0112/following{/other_user}","gists_url":"https://api.github.com/users/masterhung0112/gists{/gist_id}","starred_url":"https://api.github.com/users/masterhung0112/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/masterhung0112/subscriptions","organizations_url":"https://api.github.com/users/masterhung0112/orgs","repos_url":"https://api.github.com/users/masterhung0112/repos","events_url":"https://api.github.com/users/masterhung0112/events{/privacy}","received_events_url":"https://api.github.com/users/masterhung0112/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/masterhung0112/Eagle2Kicad","description":"Converts an Eagle 6.0+ .brd into a kicad .brd","fork":true,"url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad","forks_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/forks","keys_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/keys{/key_id}","collaborators_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/teams","hooks_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/hooks","issue_events_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/issues/events{/number}","events_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/events","assignees_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/assignees{/user}","branches_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/branches{/branch}","tags_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/tags","blobs_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/git/refs{/sha}","trees_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/git/trees{/sha}","statuses_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/statuses/{sha}","languages_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/languages","stargazers_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/stargazers","contributors_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/contributors","subscribers_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/subscribers","subscription_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/subscription","commits_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/commits{/sha}","git_commits_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/git/commits{/sha}","comments_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/comments{/number}","issue_comment_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/issues/comments/{number}","contents_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/contents/{+path}","compare_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/compare/{base}...{head}","merges_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/merges","archive_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/downloads","issues_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/issues{/number}","pulls_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/pulls{/number}","milestones_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/milestones{/number}","notifications_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/labels{/name}","releases_url":"https://api.github.com/repos/masterhung0112/Eagle2Kicad/releases{/id}","created_at":"2015-01-01T15:13:59Z","updated_at":"2014-12-30T09:07:49Z","pushed_at":"2014-08-31T22:06:59Z","git_url":"git://github.com/masterhung0112/Eagle2Kicad.git","ssh_url":"git@github.com:masterhung0112/Eagle2Kicad.git","clone_url":"https://github.com/masterhung0112/Eagle2Kicad.git","svn_url":"https://github.com/masterhung0112/Eagle2Kicad","homepage":"","size":410,"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:13:59Z"} +,{"id":"2489657519","type":"WatchEvent","actor":{"id":1982335,"login":"annakendrick","gravatar_id":"","url":"https://api.github.com/users/annakendrick","avatar_url":"https://avatars.githubusercontent.com/u/1982335?"},"repo":{"id":3560747,"name":"chenyc/KindleSync","url":"https://api.github.com/repos/chenyc/KindleSync"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:13:59Z"} +,{"id":"2489657520","type":"PushEvent","actor":{"id":593312,"login":"rnicholus","gravatar_id":"","url":"https://api.github.com/users/rnicholus","avatar_url":"https://avatars.githubusercontent.com/u/593312?"},"repo":{"id":728994,"name":"FineUploader/fine-uploader","url":"https://api.github.com/repos/FineUploader/fine-uploader"},"payload":{"push_id":536866887,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"5e01e97fae7c8a4ffa46157fef87d26189280769","before":"d7d791ac83eafeca4f3a56bfd7431da43467de39","commits":[{"sha":"5e01e97fae7c8a4ffa46157fef87d26189280769","author":{"email":"b1318e2a1a48652942fa87564e1aca1a01f0ab38@users.noreply.github.com","name":"Ray Nicholus"},"message":"chore(copyright): it's now 2015\n[skip ci]","distinct":true,"url":"https://api.github.com/repos/FineUploader/fine-uploader/commits/5e01e97fae7c8a4ffa46157fef87d26189280769"}]},"public":true,"created_at":"2015-01-01T15:14:00Z","org":{"id":8892709,"login":"FineUploader","gravatar_id":"","url":"https://api.github.com/orgs/FineUploader","avatar_url":"https://avatars.githubusercontent.com/u/8892709?"}} +,{"id":"2489657521","type":"WatchEvent","actor":{"id":9924421,"login":"leonardwu","gravatar_id":"","url":"https://api.github.com/users/leonardwu","avatar_url":"https://avatars.githubusercontent.com/u/9924421?"},"repo":{"id":20921808,"name":"nccgroup/UPnP-Pentest-Toolkit","url":"https://api.github.com/repos/nccgroup/UPnP-Pentest-Toolkit"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:00Z","org":{"id":4067082,"login":"nccgroup","gravatar_id":"","url":"https://api.github.com/orgs/nccgroup","avatar_url":"https://avatars.githubusercontent.com/u/4067082?"}} +,{"id":"2489657522","type":"IssueCommentEvent","actor":{"id":1816608,"login":"rupaschomaker","gravatar_id":"","url":"https://api.github.com/users/rupaschomaker","avatar_url":"https://avatars.githubusercontent.com/u/1816608?"},"repo":{"id":5740898,"name":"evilhero/mylar","url":"https://api.github.com/repos/evilhero/mylar"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/evilhero/mylar/issues/910","labels_url":"https://api.github.com/repos/evilhero/mylar/issues/910/labels{/name}","comments_url":"https://api.github.com/repos/evilhero/mylar/issues/910/comments","events_url":"https://api.github.com/repos/evilhero/mylar/issues/910/events","html_url":"https://github.com/evilhero/mylar/issues/910","id":53163826,"number":910,"title":"Wanted 'Tab' Throwing Error","user":{"login":"razambon","id":3072932,"avatar_url":"https://avatars.githubusercontent.com/u/3072932?v=3","gravatar_id":"","url":"https://api.github.com/users/razambon","html_url":"https://github.com/razambon","followers_url":"https://api.github.com/users/razambon/followers","following_url":"https://api.github.com/users/razambon/following{/other_user}","gists_url":"https://api.github.com/users/razambon/gists{/gist_id}","starred_url":"https://api.github.com/users/razambon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/razambon/subscriptions","organizations_url":"https://api.github.com/users/razambon/orgs","repos_url":"https://api.github.com/users/razambon/repos","events_url":"https://api.github.com/users/razambon/events{/privacy}","received_events_url":"https://api.github.com/users/razambon/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":6,"created_at":"2014-12-31T02:47:57Z","updated_at":"2015-01-01T15:14:00Z","closed_at":null,"body":"Getting the following error whenever I try to go to the wanted tab. (the /upcoming page) Not sure what's causing it.\r\n\r\n\tError !\r\n\tTypeError: unsupported operand type(s) for +: 'NoneType' and 'str'\r\n\t\t41 \r\n\t\t42 \r\n\t\t43 \r\n\t\t44 <%\r\n\t\t45 if any(d['IssueID'] == str(issue['IssueID']) for d in ann_list):\r\n\t\t46 adjcomicname = issue['ComicName'] + ' Annual'\r\n\t\t47 else:\r\n\t\t48 adjcomicname = issue['ComicName']\r\n\t\t49 endif\r\n\tC:\\Program Files\\mylar\\data/interfaces/default/upcoming.html, line 44:\r\n\t<%\r\n\tC:\\Program Files\\mylar\\data/interfaces/default/base.html, line 82:\r\n\t${next.body()}\r\n\tC:\\Program Files\\mylar\\mako\\runtime.py, line 718:\r\n\tcallable_(context, *args, **kwargs)\r\n\tC:\\Program Files\\mylar\\mako\\runtime.py, line 692:\r\n\t_exec_template(inherit, lclcontext, args=args, kwargs=kwargs)\r\n\tC:\\Program Files\\mylar\\mako\\runtime.py, line 660:\r\n\t**_kwargs_for_callable(callable_, data))\r\n\tC:\\Program Files\\mylar\\mako\\template.py, line 296:\r\n\treturn runtime._render(self, self.callable_, args, data)\r\n\tC:\\Program Files\\mylar\\mylar\\webserve.py, line 49:\r\n\treturn template.render(**kwargs)\r\n"},"comment":{"url":"https://api.github.com/repos/evilhero/mylar/issues/comments/68488782","html_url":"https://github.com/evilhero/mylar/issues/910#issuecomment-68488782","issue_url":"https://api.github.com/repos/evilhero/mylar/issues/910","id":68488782,"user":{"login":"rupaschomaker","id":1816608,"avatar_url":"https://avatars.githubusercontent.com/u/1816608?v=3","gravatar_id":"","url":"https://api.github.com/users/rupaschomaker","html_url":"https://github.com/rupaschomaker","followers_url":"https://api.github.com/users/rupaschomaker/followers","following_url":"https://api.github.com/users/rupaschomaker/following{/other_user}","gists_url":"https://api.github.com/users/rupaschomaker/gists{/gist_id}","starred_url":"https://api.github.com/users/rupaschomaker/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rupaschomaker/subscriptions","organizations_url":"https://api.github.com/users/rupaschomaker/orgs","repos_url":"https://api.github.com/users/rupaschomaker/repos","events_url":"https://api.github.com/users/rupaschomaker/events{/privacy}","received_events_url":"https://api.github.com/users/rupaschomaker/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:14:00Z","updated_at":"2015-01-01T15:14:00Z","body":"I'm also experiencing this one... I don't recall doing anything like you describe, but I also don't know how long the wanted link hasn't been working for me (not something I normally use)."}},"public":true,"created_at":"2015-01-01T15:14:00Z"} +,{"id":"2489657524","type":"PushEvent","actor":{"id":98013,"login":"bluefeet","gravatar_id":"","url":"https://api.github.com/users/bluefeet","avatar_url":"https://avatars.githubusercontent.com/u/98013?"},"repo":{"id":233954,"name":"bluefeet/Games-EveOnline-API","url":"https://api.github.com/repos/bluefeet/Games-EveOnline-API"},"payload":{"push_id":536866888,"size":4,"distinct_size":4,"ref":"refs/heads/master","head":"653fd139d54366a00aaa044ebce4b02d5ba38c41","before":"2527b23b79e8e5214077303a8406b5c1a3cd80cd","commits":[{"sha":"ff61cc396f45108a8f27289bde59dc3b32d96ff8","author":{"email":"1247eb8f560d72ae8727332dc14fdcb89d8a64bc@reg.ru","name":"Andrey Kuzmin"},"message":"update character_sheet to Phoebe patch","distinct":true,"url":"https://api.github.com/repos/bluefeet/Games-EveOnline-API/commits/ff61cc396f45108a8f27289bde59dc3b32d96ff8"},{"sha":"721c3789f2e5a14b51e2ac16b41562464d4c4248","author":{"email":"1247eb8f560d72ae8727332dc14fdcb89d8a64bc@reg.ru","name":"Andrey Kuzmin"},"message":"Add contract and contract_items func","distinct":true,"url":"https://api.github.com/repos/bluefeet/Games-EveOnline-API/commits/721c3789f2e5a14b51e2ac16b41562464d4c4248"},{"sha":"691209a3402710145bc88c8df177880660c225b8","author":{"email":"1247eb8f560d72ae8727332dc14fdcb89d8a64bc@reg.ru","name":"Andrey Kuzmin"},"message":"clear debug str","distinct":true,"url":"https://api.github.com/repos/bluefeet/Games-EveOnline-API/commits/691209a3402710145bc88c8df177880660c225b8"},{"sha":"653fd139d54366a00aaa044ebce4b02d5ba38c41","author":{"email":"1247eb8f560d72ae8727332dc14fdcb89d8a64bc@reg.ru","name":"Andrey Kuzmin"},"message":"Delete clone_type_id, clone_name, clone_skill_points for Rhea patch","distinct":true,"url":"https://api.github.com/repos/bluefeet/Games-EveOnline-API/commits/653fd139d54366a00aaa044ebce4b02d5ba38c41"}]},"public":true,"created_at":"2015-01-01T15:14:00Z"} +,{"id":"2489657527","type":"PushEvent","actor":{"id":126033,"login":"Sanuch","gravatar_id":"","url":"https://api.github.com/users/Sanuch","avatar_url":"https://avatars.githubusercontent.com/u/126033?"},"repo":{"id":26536687,"name":"Sanuch/magento2","url":"https://api.github.com/repos/Sanuch/magento2"},"payload":{"push_id":536866890,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"68c6a168a0a50481b18efde2496ec78a179a3235","before":"4a4e8ee29ee894bfb7e9a8f766a3008a4f3b3276","commits":[{"sha":"68c6a168a0a50481b18efde2496ec78a179a3235","author":{"email":"6d511d4f24ee64f7c1180f900655540729e4499b@ebay.com","name":"Oleksandr Ivashchenko"},"message":"Support HHVM","distinct":true,"url":"https://api.github.com/repos/Sanuch/magento2/commits/68c6a168a0a50481b18efde2496ec78a179a3235"}]},"public":true,"created_at":"2015-01-01T15:14:00Z"} +,{"id":"2489657528","type":"PushEvent","actor":{"id":217463,"login":"agupta666","gravatar_id":"","url":"https://api.github.com/users/agupta666","avatar_url":"https://avatars.githubusercontent.com/u/217463?"},"repo":{"id":28625145,"name":"agupta666/holodeck","url":"https://api.github.com/repos/agupta666/holodeck"},"payload":{"push_id":536866891,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e23e6ea335469d51cfd39a40638773c044e811ea","before":"68fe1febf4a99b24c87163a868adc6e58b834b1f","commits":[{"sha":"e23e6ea335469d51cfd39a40638773c044e811ea","author":{"email":"b2bf23bdd3c8d6ab29113959883f349e3e4276e2@gmail.com","name":"Anirban Gupta"},"message":"path and js fixes","distinct":true,"url":"https://api.github.com/repos/agupta666/holodeck/commits/e23e6ea335469d51cfd39a40638773c044e811ea"}]},"public":true,"created_at":"2015-01-01T15:14:00Z"} +,{"id":"2489657529","type":"PushEvent","actor":{"id":4627837,"login":"jessemillar","gravatar_id":"","url":"https://api.github.com/users/jessemillar","avatar_url":"https://avatars.githubusercontent.com/u/4627837?"},"repo":{"id":15141029,"name":"jessemillar/Proc","url":"https://api.github.com/repos/jessemillar/Proc"},"payload":{"push_id":536866893,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"94b586bf1497e77f8278ad2a2c88a99ae51ac294","before":"136cfc8a08e0ad88b6620a5849143c96969dbbf1","commits":[{"sha":"94b586bf1497e77f8278ad2a2c88a99ae51ac294","author":{"email":"0ba40b71986250aad0903c7ebcfd76a410af35fb@gmail.com","name":"Jesse Millar"},"message":"Update LICENSE.md","distinct":true,"url":"https://api.github.com/repos/jessemillar/Proc/commits/94b586bf1497e77f8278ad2a2c88a99ae51ac294"}]},"public":true,"created_at":"2015-01-01T15:14:00Z"} +,{"id":"2489657531","type":"PushEvent","actor":{"id":2972393,"login":"sabry","gravatar_id":"","url":"https://api.github.com/users/sabry","avatar_url":"https://avatars.githubusercontent.com/u/2972393?"},"repo":{"id":15781327,"name":"JacquesCarette/pi-dual","url":"https://api.github.com/repos/JacquesCarette/pi-dual"},"payload":{"push_id":536866894,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fd82397d69e502e5443304c5bdea9a310a92fd2a","before":"82d3ae92ee7ec74fac60efe800ab66c3ed733cab","commits":[{"sha":"fd82397d69e502e5443304c5bdea9a310a92fd2a","author":{"email":"e33f4f5d1f1ad1861ef886d877e13dafb34f6e21@indiana.edu","name":"Amr"},"message":"swapFin","distinct":true,"url":"https://api.github.com/repos/JacquesCarette/pi-dual/commits/fd82397d69e502e5443304c5bdea9a310a92fd2a"}]},"public":true,"created_at":"2015-01-01T15:14:00Z"} +,{"id":"2489657534","type":"IssueCommentEvent","actor":{"id":2717002,"login":"thetobby","gravatar_id":"","url":"https://api.github.com/users/thetobby","avatar_url":"https://avatars.githubusercontent.com/u/2717002?"},"repo":{"id":28650025,"name":"thetobby/Tmal","url":"https://api.github.com/repos/thetobby/Tmal"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/thetobby/Tmal/issues/9","labels_url":"https://api.github.com/repos/thetobby/Tmal/issues/9/labels{/name}","comments_url":"https://api.github.com/repos/thetobby/Tmal/issues/9/comments","events_url":"https://api.github.com/repos/thetobby/Tmal/issues/9/events","html_url":"https://github.com/thetobby/Tmal/issues/9","id":53221609,"number":9,"title":"Updater","user":{"login":"thetobby","id":2717002,"avatar_url":"https://avatars.githubusercontent.com/u/2717002?v=3","gravatar_id":"","url":"https://api.github.com/users/thetobby","html_url":"https://github.com/thetobby","followers_url":"https://api.github.com/users/thetobby/followers","following_url":"https://api.github.com/users/thetobby/following{/other_user}","gists_url":"https://api.github.com/users/thetobby/gists{/gist_id}","starred_url":"https://api.github.com/users/thetobby/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thetobby/subscriptions","organizations_url":"https://api.github.com/users/thetobby/orgs","repos_url":"https://api.github.com/users/thetobby/repos","events_url":"https://api.github.com/users/thetobby/events{/privacy}","received_events_url":"https://api.github.com/users/thetobby/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/thetobby/Tmal/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:13:43Z","updated_at":"2015-01-01T15:14:01Z","closed_at":null,"body":"Create a updater built into the script"},"comment":{"url":"https://api.github.com/repos/thetobby/Tmal/issues/comments/68488783","html_url":"https://github.com/thetobby/Tmal/issues/9#issuecomment-68488783","issue_url":"https://api.github.com/repos/thetobby/Tmal/issues/9","id":68488783,"user":{"login":"thetobby","id":2717002,"avatar_url":"https://avatars.githubusercontent.com/u/2717002?v=3","gravatar_id":"","url":"https://api.github.com/users/thetobby","html_url":"https://github.com/thetobby","followers_url":"https://api.github.com/users/thetobby/followers","following_url":"https://api.github.com/users/thetobby/following{/other_user}","gists_url":"https://api.github.com/users/thetobby/gists{/gist_id}","starred_url":"https://api.github.com/users/thetobby/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thetobby/subscriptions","organizations_url":"https://api.github.com/users/thetobby/orgs","repos_url":"https://api.github.com/users/thetobby/repos","events_url":"https://api.github.com/users/thetobby/events{/privacy}","received_events_url":"https://api.github.com/users/thetobby/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:14:01Z","updated_at":"2015-01-01T15:14:01Z","body":"http://www.d3scene.com/forum/development/46425-autoit-how-write-updater.html"}},"public":true,"created_at":"2015-01-01T15:14:01Z"} +,{"id":"2489657535","type":"WatchEvent","actor":{"id":2149294,"login":"peeping4dsun","gravatar_id":"","url":"https://api.github.com/users/peeping4dsun","avatar_url":"https://avatars.githubusercontent.com/u/2149294?"},"repo":{"id":4450203,"name":"begriffs/css-ratiocinator","url":"https://api.github.com/repos/begriffs/css-ratiocinator"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:01Z"} +,{"id":"2489657536","type":"IssuesEvent","actor":{"id":5458742,"login":"GuiCarneiro","gravatar_id":"","url":"https://api.github.com/users/GuiCarneiro","avatar_url":"https://avatars.githubusercontent.com/u/5458742?"},"repo":{"id":22294779,"name":"GTi-Jr/CRM","url":"https://api.github.com/repos/GTi-Jr/CRM"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/GTi-Jr/CRM/issues/3","labels_url":"https://api.github.com/repos/GTi-Jr/CRM/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/GTi-Jr/CRM/issues/3/comments","events_url":"https://api.github.com/repos/GTi-Jr/CRM/issues/3/events","html_url":"https://github.com/GTi-Jr/CRM/issues/3","id":50256484,"number":3,"title":"Tour","user":{"login":"GuiCarneiro","id":5458742,"avatar_url":"https://avatars.githubusercontent.com/u/5458742?v=3","gravatar_id":"","url":"https://api.github.com/users/GuiCarneiro","html_url":"https://github.com/GuiCarneiro","followers_url":"https://api.github.com/users/GuiCarneiro/followers","following_url":"https://api.github.com/users/GuiCarneiro/following{/other_user}","gists_url":"https://api.github.com/users/GuiCarneiro/gists{/gist_id}","starred_url":"https://api.github.com/users/GuiCarneiro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GuiCarneiro/subscriptions","organizations_url":"https://api.github.com/users/GuiCarneiro/orgs","repos_url":"https://api.github.com/users/GuiCarneiro/repos","events_url":"https://api.github.com/users/GuiCarneiro/events{/privacy}","received_events_url":"https://api.github.com/users/GuiCarneiro/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/GTi-Jr/CRM/labels/bug","name":"bug","color":"fc2929"},{"url":"https://api.github.com/repos/GTi-Jr/CRM/labels/Design","name":"Design","color":"fef2c0"}],"state":"closed","locked":false,"assignee":null,"milestone":{"url":"https://api.github.com/repos/GTi-Jr/CRM/milestones/1","labels_url":"https://api.github.com/repos/GTi-Jr/CRM/milestones/1/labels","id":882250,"number":1,"title":"Versão 1.0","description":"Versão 1.0 - Entregue a Inova","creator":{"login":"GuiCarneiro","id":5458742,"avatar_url":"https://avatars.githubusercontent.com/u/5458742?v=3","gravatar_id":"","url":"https://api.github.com/users/GuiCarneiro","html_url":"https://github.com/GuiCarneiro","followers_url":"https://api.github.com/users/GuiCarneiro/followers","following_url":"https://api.github.com/users/GuiCarneiro/following{/other_user}","gists_url":"https://api.github.com/users/GuiCarneiro/gists{/gist_id}","starred_url":"https://api.github.com/users/GuiCarneiro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GuiCarneiro/subscriptions","organizations_url":"https://api.github.com/users/GuiCarneiro/orgs","repos_url":"https://api.github.com/users/GuiCarneiro/repos","events_url":"https://api.github.com/users/GuiCarneiro/events{/privacy}","received_events_url":"https://api.github.com/users/GuiCarneiro/received_events","type":"User","site_admin":false},"open_issues":6,"closed_issues":4,"state":"open","created_at":"2014-11-27T05:51:29Z","updated_at":"2015-01-01T15:14:01Z","due_on":null,"closed_at":null},"comments":0,"created_at":"2014-11-27T05:47:53Z","updated_at":"2015-01-01T15:14:01Z","closed_at":"2015-01-01T15:14:01Z","body":"No inicio do Tour ainda há uma versão antiga da dashboard, onde há um item receita que foi alterado para Atividades."}},"public":true,"created_at":"2015-01-01T15:14:01Z","org":{"id":6828491,"login":"GTi-Jr","gravatar_id":"","url":"https://api.github.com/orgs/GTi-Jr","avatar_url":"https://avatars.githubusercontent.com/u/6828491?"}} +,{"id":"2489657538","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":536866896,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"726a825791825edaae80294d488166259bd31a97","before":"4acbcf0f70182bbe3df7f1fc411648c0fba39b4d","commits":[{"sha":"726a825791825edaae80294d488166259bd31a97","author":{"email":"9576f8760ba70773cbd6b2f7999c3b70fa9040cb@gmail.com","name":"Aleksandar Dezelin"},"message":"Fixed Travis build status image.\n Image is now below the header separator line.","distinct":true,"url":"https://api.github.com/repos/dezelin/Timetable/commits/726a825791825edaae80294d488166259bd31a97"}]},"public":true,"created_at":"2015-01-01T15:14:01Z"} +,{"id":"2489657540","type":"PushEvent","actor":{"id":5501820,"login":"Jonny15","gravatar_id":"","url":"https://api.github.com/users/Jonny15","avatar_url":"https://avatars.githubusercontent.com/u/5501820?"},"repo":{"id":25642555,"name":"B4k3m0n0/shiny-happiness","url":"https://api.github.com/repos/B4k3m0n0/shiny-happiness"},"payload":{"push_id":536866897,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9192e6e3543d0a99b3a9468fc68318262747cbf4","before":"c6eba792aa50590b5a7c7ac1c774fe460ebb9dba","commits":[{"sha":"9192e6e3543d0a99b3a9468fc68318262747cbf4","author":{"email":"6d2776633334242f776113fd92ff4aa6f2bf8cf2@hotmail.com","name":"Jonny15"},"message":"","distinct":true,"url":"https://api.github.com/repos/B4k3m0n0/shiny-happiness/commits/9192e6e3543d0a99b3a9468fc68318262747cbf4"}]},"public":true,"created_at":"2015-01-01T15:14:01Z"} +,{"id":"2489657541","type":"WatchEvent","actor":{"id":1468294,"login":"apan0206","gravatar_id":"","url":"https://api.github.com/users/apan0206","avatar_url":"https://avatars.githubusercontent.com/u/1468294?"},"repo":{"id":3431083,"name":"BradLarson/GPUImage","url":"https://api.github.com/repos/BradLarson/GPUImage"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:02Z"} +,{"id":"2489657547","type":"PushEvent","actor":{"id":486984,"login":"Chris927","gravatar_id":"","url":"https://api.github.com/users/Chris927","avatar_url":"https://avatars.githubusercontent.com/u/486984?"},"repo":{"id":28688814,"name":"Chris927/wait-for-host","url":"https://api.github.com/repos/Chris927/wait-for-host"},"payload":{"push_id":536866900,"size":13,"distinct_size":13,"ref":"refs/heads/master","head":"21e15730636636b780abb39f84da3b40b1ef3ba4","before":"dd4153411797e2b4844759498bb3cc5fbaa70eaa","commits":[{"sha":"92b472db32b86b8418ae3c2d15e9b980cee4b514","author":{"email":"65567a15f14a9b71f63de23ac0a9eaf6977fc06f@gmail.com","name":"Chris Oloff"},"message":"initial","distinct":true,"url":"https://api.github.com/repos/Chris927/wait-for-host/commits/92b472db32b86b8418ae3c2d15e9b980cee4b514"},{"sha":"7ea0a61103c3619306906737d3dd91f604108a3e","author":{"email":"65567a15f14a9b71f63de23ac0a9eaf6977fc06f@gmail.com","name":"Chris Oloff"},"message":"happy path spec green, but implementation is noop","distinct":true,"url":"https://api.github.com/repos/Chris927/wait-for-host/commits/7ea0a61103c3619306906737d3dd91f604108a3e"},{"sha":"0713053e58d11deb2fda4a964ff6f86f5315ecad","author":{"email":"65567a15f14a9b71f63de23ac0a9eaf6977fc06f@gmail.com","name":"Chris Oloff"},"message":"added spec for not-yet-open port, wip\n\nQuite ugly how we deal with time now...","distinct":true,"url":"https://api.github.com/repos/Chris927/wait-for-host/commits/0713053e58d11deb2fda4a964ff6f86f5315ecad"},{"sha":"d848a7114630fe3a836d305a4c659b51dfa821d1","author":{"email":"65567a15f14a9b71f63de23ac0a9eaf6977fc06f@gmail.com","name":"Chris Oloff"},"message":"adding fake timers, but not working as hoped","distinct":true,"url":"https://api.github.com/repos/Chris927/wait-for-host/commits/d848a7114630fe3a836d305a4c659b51dfa821d1"},{"sha":"a36a73ffc5b6f3b254dab6d298bb91b5af3b82ba","author":{"email":"65567a15f14a9b71f63de23ac0a9eaf6977fc06f@gmail.com","name":"Chris Oloff"},"message":"refactoring, new retries spec, wip","distinct":true,"url":"https://api.github.com/repos/Chris927/wait-for-host/commits/a36a73ffc5b6f3b254dab6d298bb91b5af3b82ba"},{"sha":"619f2d39b2176a88ea88c52b1b4472d808bcd49b","author":{"email":"65567a15f14a9b71f63de23ac0a9eaf6977fc06f@gmail.com","name":"Chris Oloff"},"message":"refactor","distinct":true,"url":"https://api.github.com/repos/Chris927/wait-for-host/commits/619f2d39b2176a88ea88c52b1b4472d808bcd49b"},{"sha":"9efa522811ea3b068bdfbffb7819871e108153cd","author":{"email":"65567a15f14a9b71f63de23ac0a9eaf6977fc06f@gmail.com","name":"Chris Oloff"},"message":"refactored specs, no hard coded port numbers any more","distinct":true,"url":"https://api.github.com/repos/Chris927/wait-for-host/commits/9efa522811ea3b068bdfbffb7819871e108153cd"},{"sha":"92f705609dc8488d158ee51e71199133f25555a3","author":{"email":"65567a15f14a9b71f63de23ac0a9eaf6977fc06f@gmail.com","name":"Chris Oloff"},"message":"added specs for retry options, wip","distinct":true,"url":"https://api.github.com/repos/Chris927/wait-for-host/commits/92f705609dc8488d158ee51e71199133f25555a3"},{"sha":"291b693d382aaa5ecd486b4f00caf3f0ec9e9ee7","author":{"email":"65567a15f14a9b71f63de23ac0a9eaf6977fc06f@gmail.com","name":"Chris Oloff"},"message":"refactored","distinct":true,"url":"https://api.github.com/repos/Chris927/wait-for-host/commits/291b693d382aaa5ecd486b4f00caf3f0ec9e9ee7"},{"sha":"b56c6980ce72762ca53261d1d94c5783b958161b","author":{"email":"65567a15f14a9b71f63de23ac0a9eaf6977fc06f@gmail.com","name":"Chris Oloff"},"message":"validate options, more retry related specs","distinct":true,"url":"https://api.github.com/repos/Chris927/wait-for-host/commits/b56c6980ce72762ca53261d1d94c5783b958161b"},{"sha":"1de4ef2503d7526b205beeda430eb81a80d98128","author":{"email":"65567a15f14a9b71f63de23ac0a9eaf6977fc06f@gmail.com","name":"Chris Oloff"},"message":"cleanup logging to console","distinct":true,"url":"https://api.github.com/repos/Chris927/wait-for-host/commits/1de4ef2503d7526b205beeda430eb81a80d98128"},{"sha":"0ca954c15b9aaca055d397640b61fa04a46bd5a6","author":{"email":"65567a15f14a9b71f63de23ac0a9eaf6977fc06f@gmail.com","name":"Chris Oloff"},"message":"added readme","distinct":true,"url":"https://api.github.com/repos/Chris927/wait-for-host/commits/0ca954c15b9aaca055d397640b61fa04a46bd5a6"},{"sha":"21e15730636636b780abb39f84da3b40b1ef3ba4","author":{"email":"65567a15f14a9b71f63de23ac0a9eaf6977fc06f@gmail.com","name":"Chris Oloff"},"message":"Merge remote-tracking branch 'origin/master'\n\n* origin/master:\n Initial commit","distinct":true,"url":"https://api.github.com/repos/Chris927/wait-for-host/commits/21e15730636636b780abb39f84da3b40b1ef3ba4"}]},"public":true,"created_at":"2015-01-01T15:14:03Z"} +,{"id":"2489657548","type":"CreateEvent","actor":{"id":72712,"login":"blippy","gravatar_id":"","url":"https://api.github.com/users/blippy","avatar_url":"https://avatars.githubusercontent.com/u/72712?"},"repo":{"id":709131,"name":"blippy/pypms","url":"https://api.github.com/repos/blippy/pypms"},"payload":{"ref":"v2015-01-01","ref_type":"tag","master_branch":"master","description":"Timesheet extraction","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:03Z"} +,{"id":"2489657549","type":"GollumEvent","actor":{"id":469989,"login":"bennyn","gravatar_id":"","url":"https://api.github.com/users/bennyn","avatar_url":"https://avatars.githubusercontent.com/u/469989?"},"repo":{"id":26399632,"name":"welovecoding/welovecoding.github.io","url":"https://api.github.com/repos/welovecoding/welovecoding.github.io"},"payload":{"pages":[{"page_name":"Hotkeys","title":"Hotkeys","summary":null,"action":"edited","sha":"fbe4e3b224c95ecb47943f266100bc9cfaad6b0e","html_url":"https://github.com/welovecoding/welovecoding.github.io/wiki/Hotkeys"}]},"public":true,"created_at":"2015-01-01T15:14:04Z","org":{"id":8947331,"login":"welovecoding","gravatar_id":"","url":"https://api.github.com/orgs/welovecoding","avatar_url":"https://avatars.githubusercontent.com/u/8947331?"}} +,{"id":"2489657550","type":"PushEvent","actor":{"id":370635,"login":"einzige","gravatar_id":"","url":"https://api.github.com/users/einzige","avatar_url":"https://avatars.githubusercontent.com/u/370635?"},"repo":{"id":28666044,"name":"the-snatch/snatch","url":"https://api.github.com/repos/the-snatch/snatch"},"payload":{"push_id":536866901,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"57a9bbd92e3a906fe6529db8dd56d0f2efa7f63f","before":"ff756280dd9d71397e378bed585e7e1424c260e6","commits":[{"sha":"b099540e14d69b77d08687cc6bcfd2fb311ca174","author":{"email":"2ca5f8cb5e161596debb4834f7849d2dd14975dc@xakep.ru","name":"Sergei Zinin"},"message":"Fixes migrations","distinct":true,"url":"https://api.github.com/repos/the-snatch/snatch/commits/b099540e14d69b77d08687cc6bcfd2fb311ca174"},{"sha":"57a9bbd92e3a906fe6529db8dd56d0f2efa7f63f","author":{"email":"2ca5f8cb5e161596debb4834f7849d2dd14975dc@xakep.ru","name":"Sergei Zinin"},"message":"Hits","distinct":true,"url":"https://api.github.com/repos/the-snatch/snatch/commits/57a9bbd92e3a906fe6529db8dd56d0f2efa7f63f"}]},"public":true,"created_at":"2015-01-01T15:14:04Z","org":{"id":10358086,"login":"the-snatch","gravatar_id":"","url":"https://api.github.com/orgs/the-snatch","avatar_url":"https://avatars.githubusercontent.com/u/10358086?"}} +,{"id":"2489657551","type":"WatchEvent","actor":{"id":831962,"login":"bgruszka","gravatar_id":"","url":"https://api.github.com/users/bgruszka","avatar_url":"https://avatars.githubusercontent.com/u/831962?"},"repo":{"id":28257573,"name":"flarum/core","url":"https://api.github.com/repos/flarum/core"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:05Z","org":{"id":5549034,"login":"flarum","gravatar_id":"","url":"https://api.github.com/orgs/flarum","avatar_url":"https://avatars.githubusercontent.com/u/5549034?"}} +,{"id":"2489657554","type":"CreateEvent","actor":{"id":4958792,"login":"sudhirbitsgoa","gravatar_id":"","url":"https://api.github.com/users/sudhirbitsgoa","avatar_url":"https://avatars.githubusercontent.com/u/4958792?"},"repo":{"id":28594359,"name":"sudhirbitsgoa/imagepart","url":"https://api.github.com/repos/sudhirbitsgoa/imagepart"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:05Z"} +,{"id":"2489657555","type":"CreateEvent","actor":{"id":10358624,"login":"Aliusman050","gravatar_id":"","url":"https://api.github.com/users/Aliusman050","avatar_url":"https://avatars.githubusercontent.com/u/10358624?"},"repo":{"id":28688856,"name":"Aliusman050/Master","url":"https://api.github.com/repos/Aliusman050/Master"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"I Am Web Desiginer, HTML, SEO Expert","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:05Z"} +,{"id":"2489657557","type":"GollumEvent","actor":{"id":89915,"login":"somenxavier","gravatar_id":"","url":"https://api.github.com/users/somenxavier","avatar_url":"https://avatars.githubusercontent.com/u/89915?"},"repo":{"id":24139380,"name":"somenxavier/falco","url":"https://api.github.com/repos/somenxavier/falco"},"payload":{"pages":[{"page_name":"Events-log","title":"Events log","summary":null,"action":"edited","sha":"81e7cea4cbb1fd614b63678746303eb2920cdb18","html_url":"https://github.com/somenxavier/falco/wiki/Events-log"}]},"public":true,"created_at":"2015-01-01T15:14:06Z"} +,{"id":"2489657558","type":"ForkEvent","actor":{"id":4894735,"login":"MaxRink","gravatar_id":"","url":"https://api.github.com/users/MaxRink","avatar_url":"https://avatars.githubusercontent.com/u/4894735?"},"repo":{"id":18711074,"name":"eve-seat/seat","url":"https://api.github.com/repos/eve-seat/seat"},"payload":{"forkee":{"id":28688863,"name":"seat","full_name":"MaxRink/seat","owner":{"login":"MaxRink","id":4894735,"avatar_url":"https://avatars.githubusercontent.com/u/4894735?v=3","gravatar_id":"","url":"https://api.github.com/users/MaxRink","html_url":"https://github.com/MaxRink","followers_url":"https://api.github.com/users/MaxRink/followers","following_url":"https://api.github.com/users/MaxRink/following{/other_user}","gists_url":"https://api.github.com/users/MaxRink/gists{/gist_id}","starred_url":"https://api.github.com/users/MaxRink/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MaxRink/subscriptions","organizations_url":"https://api.github.com/users/MaxRink/orgs","repos_url":"https://api.github.com/users/MaxRink/repos","events_url":"https://api.github.com/users/MaxRink/events{/privacy}","received_events_url":"https://api.github.com/users/MaxRink/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/MaxRink/seat","description":"Simple (or Stupid) EVE Online API Tool","fork":true,"url":"https://api.github.com/repos/MaxRink/seat","forks_url":"https://api.github.com/repos/MaxRink/seat/forks","keys_url":"https://api.github.com/repos/MaxRink/seat/keys{/key_id}","collaborators_url":"https://api.github.com/repos/MaxRink/seat/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/MaxRink/seat/teams","hooks_url":"https://api.github.com/repos/MaxRink/seat/hooks","issue_events_url":"https://api.github.com/repos/MaxRink/seat/issues/events{/number}","events_url":"https://api.github.com/repos/MaxRink/seat/events","assignees_url":"https://api.github.com/repos/MaxRink/seat/assignees{/user}","branches_url":"https://api.github.com/repos/MaxRink/seat/branches{/branch}","tags_url":"https://api.github.com/repos/MaxRink/seat/tags","blobs_url":"https://api.github.com/repos/MaxRink/seat/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/MaxRink/seat/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/MaxRink/seat/git/refs{/sha}","trees_url":"https://api.github.com/repos/MaxRink/seat/git/trees{/sha}","statuses_url":"https://api.github.com/repos/MaxRink/seat/statuses/{sha}","languages_url":"https://api.github.com/repos/MaxRink/seat/languages","stargazers_url":"https://api.github.com/repos/MaxRink/seat/stargazers","contributors_url":"https://api.github.com/repos/MaxRink/seat/contributors","subscribers_url":"https://api.github.com/repos/MaxRink/seat/subscribers","subscription_url":"https://api.github.com/repos/MaxRink/seat/subscription","commits_url":"https://api.github.com/repos/MaxRink/seat/commits{/sha}","git_commits_url":"https://api.github.com/repos/MaxRink/seat/git/commits{/sha}","comments_url":"https://api.github.com/repos/MaxRink/seat/comments{/number}","issue_comment_url":"https://api.github.com/repos/MaxRink/seat/issues/comments/{number}","contents_url":"https://api.github.com/repos/MaxRink/seat/contents/{+path}","compare_url":"https://api.github.com/repos/MaxRink/seat/compare/{base}...{head}","merges_url":"https://api.github.com/repos/MaxRink/seat/merges","archive_url":"https://api.github.com/repos/MaxRink/seat/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/MaxRink/seat/downloads","issues_url":"https://api.github.com/repos/MaxRink/seat/issues{/number}","pulls_url":"https://api.github.com/repos/MaxRink/seat/pulls{/number}","milestones_url":"https://api.github.com/repos/MaxRink/seat/milestones{/number}","notifications_url":"https://api.github.com/repos/MaxRink/seat/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/MaxRink/seat/labels{/name}","releases_url":"https://api.github.com/repos/MaxRink/seat/releases{/id}","created_at":"2015-01-01T15:14:05Z","updated_at":"2014-12-30T05:19:04Z","pushed_at":"2014-12-30T19:06:49Z","git_url":"git://github.com/MaxRink/seat.git","ssh_url":"git@github.com:MaxRink/seat.git","clone_url":"https://github.com/MaxRink/seat.git","svn_url":"https://github.com/MaxRink/seat","homepage":"http://eve-seat.github.io/seat","size":5303,"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:14:06Z"} +,{"id":"2489657560","type":"PushEvent","actor":{"id":3618192,"login":"xkollar","gravatar_id":"","url":"https://api.github.com/users/xkollar","avatar_url":"https://avatars.githubusercontent.com/u/3618192?"},"repo":{"id":28673312,"name":"xkollar/ocaml-core-openshift","url":"https://api.github.com/repos/xkollar/ocaml-core-openshift"},"payload":{"push_id":536866906,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"de0bcf8e71596ac1743a6e11d57fec3901adb9e8","before":"39eb7710d4e9557e4103e23f7dd9a0bfe46566d7","commits":[{"sha":"de0bcf8e71596ac1743a6e11d57fec3901adb9e8","author":{"email":"55e7db8ab059fb201bef378293b6e8f0c4d98862@mail.muni.cz","name":"Matej Kollar"},"message":"Added basic cartridge structure","distinct":true,"url":"https://api.github.com/repos/xkollar/ocaml-core-openshift/commits/de0bcf8e71596ac1743a6e11d57fec3901adb9e8"}]},"public":true,"created_at":"2015-01-01T15:14:06Z"} +,{"id":"2489657563","type":"PushEvent","actor":{"id":7336721,"login":"aow1980","gravatar_id":"","url":"https://api.github.com/users/aow1980","avatar_url":"https://avatars.githubusercontent.com/u/7336721?"},"repo":{"id":27033129,"name":"aow1980/device_lge_hammerhead","url":"https://api.github.com/repos/aow1980/device_lge_hammerhead"},"payload":{"push_id":536866909,"size":1,"distinct_size":1,"ref":"refs/heads/lp5.0","head":"469f7909a4aae3a51aa9dd339048fc8e5bf318c8","before":"f723b900792aecd0d084dbc89e74844a3136e765","commits":[{"sha":"469f7909a4aae3a51aa9dd339048fc8e5bf318c8","author":{"email":"457cfb837588e6491cbd81701614a2c9f7081d84@gmail.com","name":"aow1980"},"message":"Prepare for per device Boot Animation\n\nChange-Id: Ia700246b36487313bd87008cf8e34032fb14e55e","distinct":true,"url":"https://api.github.com/repos/aow1980/device_lge_hammerhead/commits/469f7909a4aae3a51aa9dd339048fc8e5bf318c8"}]},"public":true,"created_at":"2015-01-01T15:14:06Z"} +,{"id":"2489657567","type":"CreateEvent","actor":{"id":282825,"login":"DragonBe","gravatar_id":"","url":"https://api.github.com/users/DragonBe","avatar_url":"https://avatars.githubusercontent.com/u/282825?"},"repo":{"id":28687507,"name":"DragonBe/SpeckCatalog","url":"https://api.github.com/repos/DragonBe/SpeckCatalog"},"payload":{"ref":"phpunit","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:06Z"} +,{"id":"2489657569","type":"CreateEvent","actor":{"id":3336166,"login":"Angelfirenze","gravatar_id":"","url":"https://api.github.com/users/Angelfirenze","avatar_url":"https://avatars.githubusercontent.com/u/3336166?"},"repo":{"id":28203649,"name":"Angelfirenze/dojo_rules","url":"https://api.github.com/repos/Angelfirenze/dojo_rules"},"payload":{"ref":"v1.2.0","ref_type":"tag","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:06Z"} +,{"id":"2489657572","type":"PushEvent","actor":{"id":9026804,"login":"dklimaszewski","gravatar_id":"","url":"https://api.github.com/users/dklimaszewski","avatar_url":"https://avatars.githubusercontent.com/u/9026804?"},"repo":{"id":25081858,"name":"Enter91/BAwSM","url":"https://api.github.com/repos/Enter91/BAwSM"},"payload":{"push_id":536866912,"size":1,"distinct_size":1,"ref":"refs/heads/gas","head":"0dd7e92aeedee87f615127509ec00d1d30daddcb","before":"b3a1898d53bdfd2a0a1bad199d6e682f1454e157","commits":[{"sha":"0dd7e92aeedee87f615127509ec00d1d30daddcb","author":{"email":"ff58d10781a16ca737d233c08b48c158792dd640@gmail.com","name":"Damian Klimaszewski"},"message":"no message","distinct":true,"url":"https://api.github.com/repos/Enter91/BAwSM/commits/0dd7e92aeedee87f615127509ec00d1d30daddcb"}]},"public":true,"created_at":"2015-01-01T15:14:07Z"} +,{"id":"2489657573","type":"PushEvent","actor":{"id":6849642,"login":"mpr0xy","gravatar_id":"","url":"https://api.github.com/users/mpr0xy","avatar_url":"https://avatars.githubusercontent.com/u/6849642?"},"repo":{"id":26924791,"name":"x-f2e/desireSpace","url":"https://api.github.com/repos/x-f2e/desireSpace"},"payload":{"push_id":536866913,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"64f41421451025dc5493ffe73f72c585dfa8ed48","before":"99d4d3c9fdf4ab356b7d2140eafa9a6de12252c0","commits":[{"sha":"64f41421451025dc5493ffe73f72c585dfa8ed48","author":{"email":"76c1bca143988634254a936a7bf31d9df6c63d6f@live.com","name":"mpr0xy"},"message":"用户登陆单元测试完成","distinct":true,"url":"https://api.github.com/repos/x-f2e/desireSpace/commits/64f41421451025dc5493ffe73f72c585dfa8ed48"}]},"public":true,"created_at":"2015-01-01T15:14:07Z","org":{"id":9192193,"login":"x-f2e","gravatar_id":"","url":"https://api.github.com/orgs/x-f2e","avatar_url":"https://avatars.githubusercontent.com/u/9192193?"}} +,{"id":"2489657574","type":"PushEvent","actor":{"id":718983,"login":"mhyfritz","gravatar_id":"","url":"https://api.github.com/users/mhyfritz","avatar_url":"https://avatars.githubusercontent.com/u/718983?"},"repo":{"id":27045536,"name":"mhyfritz/goontools","url":"https://api.github.com/repos/mhyfritz/goontools"},"payload":{"push_id":536866914,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"49dd823544283fb6bb4e10369133f0189625206c","before":"1fa0415ac3fdbb19f4846f9f684419140e152334","commits":[{"sha":"49dd823544283fb6bb4e10369133f0189625206c","author":{"email":"92e30aa2dcbfdfbee1d86c37a05f0abd25e11e3e@gmail.com","name":"Markus Hsi-Yang Fritz"},"message":"Usage cosmetics","distinct":true,"url":"https://api.github.com/repos/mhyfritz/goontools/commits/49dd823544283fb6bb4e10369133f0189625206c"}]},"public":true,"created_at":"2015-01-01T15:14:07Z"} +,{"id":"2489657575","type":"PushEvent","actor":{"id":9755468,"login":"pionnertech","gravatar_id":"","url":"https://api.github.com/users/pionnertech","avatar_url":"https://avatars.githubusercontent.com/u/9755468?"},"repo":{"id":26832780,"name":"pionnertech/versallestap","url":"https://api.github.com/repos/pionnertech/versallestap"},"payload":{"push_id":536866915,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b92962c2b0c130bea2cf46db2c1266b8c3c169dc","before":"4499b06ddc997a59dd8c51d2a2a5681f973daa03","commits":[{"sha":"b92962c2b0c130bea2cf46db2c1266b8c3c169dc","author":{"email":"970c3b53f51ad7bb4ca1e7f2a053ef66f5f67348@outlook.com","name":"pionnertch"},"message":"rtest","distinct":true,"url":"https://api.github.com/repos/pionnertech/versallestap/commits/b92962c2b0c130bea2cf46db2c1266b8c3c169dc"}]},"public":true,"created_at":"2015-01-01T15:14:07Z"} +,{"id":"2489657577","type":"PullRequestReviewCommentEvent","actor":{"id":8816755,"login":"nbouteme","gravatar_id":"","url":"https://api.github.com/users/nbouteme","avatar_url":"https://avatars.githubusercontent.com/u/8816755?"},"repo":{"id":28026599,"name":"nbouteme/AFK","url":"https://api.github.com/repos/nbouteme/AFK"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/nbouteme/AFK/pulls/comments/22400146","id":22400146,"diff_hunk":"@@ -0,0 +1,58 @@\n+getMessage());\n+\t\t}\n+\t\treturn $db;\n+\t\t\n+\t}\n+\t\n+\t#function used to encrypt passwords\n+\tstring encrypt($password)","path":"common.php","position":31,"original_position":31,"commit_id":"0c6d0d563a0acc2b2da2ca11438a01eed46fbf03","original_commit_id":"0c6d0d563a0acc2b2da2ca11438a01eed46fbf03","user":{"login":"nbouteme","id":8816755,"avatar_url":"https://avatars.githubusercontent.com/u/8816755?v=3","gravatar_id":"","url":"https://api.github.com/users/nbouteme","html_url":"https://github.com/nbouteme","followers_url":"https://api.github.com/users/nbouteme/followers","following_url":"https://api.github.com/users/nbouteme/following{/other_user}","gists_url":"https://api.github.com/users/nbouteme/gists{/gist_id}","starred_url":"https://api.github.com/users/nbouteme/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nbouteme/subscriptions","organizations_url":"https://api.github.com/users/nbouteme/orgs","repos_url":"https://api.github.com/users/nbouteme/repos","events_url":"https://api.github.com/users/nbouteme/events{/privacy}","received_events_url":"https://api.github.com/users/nbouteme/received_events","type":"User","site_admin":false},"body":"Je crois pas qu'on puisse preciser un type de retour.","created_at":"2015-01-01T15:14:07Z","updated_at":"2015-01-01T15:14:07Z","html_url":"https://github.com/nbouteme/AFK/pull/2#discussion_r22400146","pull_request_url":"https://api.github.com/repos/nbouteme/AFK/pulls/2","_links":{"self":{"href":"https://api.github.com/repos/nbouteme/AFK/pulls/comments/22400146"},"html":{"href":"https://github.com/nbouteme/AFK/pull/2#discussion_r22400146"},"pull_request":{"href":"https://api.github.com/repos/nbouteme/AFK/pulls/2"}}},"pull_request":{"url":"https://api.github.com/repos/nbouteme/AFK/pulls/2","id":26742949,"html_url":"https://github.com/nbouteme/AFK/pull/2","diff_url":"https://github.com/nbouteme/AFK/pull/2.diff","patch_url":"https://github.com/nbouteme/AFK/pull/2.patch","issue_url":"https://api.github.com/repos/nbouteme/AFK/issues/2","number":2,"state":"open","locked":false,"title":"Création de common.php","user":{"login":"SBerda","id":5712693,"avatar_url":"https://avatars.githubusercontent.com/u/5712693?v=3","gravatar_id":"","url":"https://api.github.com/users/SBerda","html_url":"https://github.com/SBerda","followers_url":"https://api.github.com/users/SBerda/followers","following_url":"https://api.github.com/users/SBerda/following{/other_user}","gists_url":"https://api.github.com/users/SBerda/gists{/gist_id}","starred_url":"https://api.github.com/users/SBerda/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SBerda/subscriptions","organizations_url":"https://api.github.com/users/SBerda/orgs","repos_url":"https://api.github.com/users/SBerda/repos","events_url":"https://api.github.com/users/SBerda/events{/privacy}","received_events_url":"https://api.github.com/users/SBerda/received_events","type":"User","site_admin":false},"body":"Ce fichier contient des fonctions pratiques qui seront utilisées un peupartout\r\nNouvelles fonctions:\r\ngetPdo();//Récupére un objet pdo\r\nencrypt($password);//Renvois un sha1 salé du mot de pass passé en param\r\ngetUser($id_user);//Renvois un objet user correspondant à l'id en param\r\ncheckMail($mail);//Vérifie que le mail passé en param a la syntaxe de mail","created_at":"2015-01-01T13:00:46Z","updated_at":"2015-01-01T15:14:07Z","closed_at":null,"merged_at":null,"merge_commit_sha":"222897c7dec97a5aee1e6b89bb56122ac6098ae5","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/nbouteme/AFK/pulls/2/commits","review_comments_url":"https://api.github.com/repos/nbouteme/AFK/pulls/2/comments","review_comment_url":"https://api.github.com/repos/nbouteme/AFK/pulls/comments/{number}","comments_url":"https://api.github.com/repos/nbouteme/AFK/issues/2/comments","statuses_url":"https://api.github.com/repos/nbouteme/AFK/statuses/0c6d0d563a0acc2b2da2ca11438a01eed46fbf03","head":{"label":"SBerda:master","ref":"master","sha":"0c6d0d563a0acc2b2da2ca11438a01eed46fbf03","user":{"login":"SBerda","id":5712693,"avatar_url":"https://avatars.githubusercontent.com/u/5712693?v=3","gravatar_id":"","url":"https://api.github.com/users/SBerda","html_url":"https://github.com/SBerda","followers_url":"https://api.github.com/users/SBerda/followers","following_url":"https://api.github.com/users/SBerda/following{/other_user}","gists_url":"https://api.github.com/users/SBerda/gists{/gist_id}","starred_url":"https://api.github.com/users/SBerda/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SBerda/subscriptions","organizations_url":"https://api.github.com/users/SBerda/orgs","repos_url":"https://api.github.com/users/SBerda/repos","events_url":"https://api.github.com/users/SBerda/events{/privacy}","received_events_url":"https://api.github.com/users/SBerda/received_events","type":"User","site_admin":false},"repo":{"id":28030951,"name":"AFK","full_name":"SBerda/AFK","owner":{"login":"SBerda","id":5712693,"avatar_url":"https://avatars.githubusercontent.com/u/5712693?v=3","gravatar_id":"","url":"https://api.github.com/users/SBerda","html_url":"https://github.com/SBerda","followers_url":"https://api.github.com/users/SBerda/followers","following_url":"https://api.github.com/users/SBerda/following{/other_user}","gists_url":"https://api.github.com/users/SBerda/gists{/gist_id}","starred_url":"https://api.github.com/users/SBerda/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SBerda/subscriptions","organizations_url":"https://api.github.com/users/SBerda/orgs","repos_url":"https://api.github.com/users/SBerda/repos","events_url":"https://api.github.com/users/SBerda/events{/privacy}","received_events_url":"https://api.github.com/users/SBerda/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/SBerda/AFK","description":"","fork":true,"url":"https://api.github.com/repos/SBerda/AFK","forks_url":"https://api.github.com/repos/SBerda/AFK/forks","keys_url":"https://api.github.com/repos/SBerda/AFK/keys{/key_id}","collaborators_url":"https://api.github.com/repos/SBerda/AFK/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/SBerda/AFK/teams","hooks_url":"https://api.github.com/repos/SBerda/AFK/hooks","issue_events_url":"https://api.github.com/repos/SBerda/AFK/issues/events{/number}","events_url":"https://api.github.com/repos/SBerda/AFK/events","assignees_url":"https://api.github.com/repos/SBerda/AFK/assignees{/user}","branches_url":"https://api.github.com/repos/SBerda/AFK/branches{/branch}","tags_url":"https://api.github.com/repos/SBerda/AFK/tags","blobs_url":"https://api.github.com/repos/SBerda/AFK/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/SBerda/AFK/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/SBerda/AFK/git/refs{/sha}","trees_url":"https://api.github.com/repos/SBerda/AFK/git/trees{/sha}","statuses_url":"https://api.github.com/repos/SBerda/AFK/statuses/{sha}","languages_url":"https://api.github.com/repos/SBerda/AFK/languages","stargazers_url":"https://api.github.com/repos/SBerda/AFK/stargazers","contributors_url":"https://api.github.com/repos/SBerda/AFK/contributors","subscribers_url":"https://api.github.com/repos/SBerda/AFK/subscribers","subscription_url":"https://api.github.com/repos/SBerda/AFK/subscription","commits_url":"https://api.github.com/repos/SBerda/AFK/commits{/sha}","git_commits_url":"https://api.github.com/repos/SBerda/AFK/git/commits{/sha}","comments_url":"https://api.github.com/repos/SBerda/AFK/comments{/number}","issue_comment_url":"https://api.github.com/repos/SBerda/AFK/issues/comments/{number}","contents_url":"https://api.github.com/repos/SBerda/AFK/contents/{+path}","compare_url":"https://api.github.com/repos/SBerda/AFK/compare/{base}...{head}","merges_url":"https://api.github.com/repos/SBerda/AFK/merges","archive_url":"https://api.github.com/repos/SBerda/AFK/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/SBerda/AFK/downloads","issues_url":"https://api.github.com/repos/SBerda/AFK/issues{/number}","pulls_url":"https://api.github.com/repos/SBerda/AFK/pulls{/number}","milestones_url":"https://api.github.com/repos/SBerda/AFK/milestones{/number}","notifications_url":"https://api.github.com/repos/SBerda/AFK/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/SBerda/AFK/labels{/name}","releases_url":"https://api.github.com/repos/SBerda/AFK/releases{/id}","created_at":"2014-12-15T10:05:01Z","updated_at":"2015-01-01T13:00:03Z","pushed_at":"2015-01-01T13:00:03Z","git_url":"git://github.com/SBerda/AFK.git","ssh_url":"git@github.com:SBerda/AFK.git","clone_url":"https://github.com/SBerda/AFK.git","svn_url":"https://github.com/SBerda/AFK","homepage":null,"size":158,"stargazers_count":0,"watchers_count":0,"language":"PHP","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"nbouteme:master","ref":"master","sha":"73b2f6e9538cdc3250e0c3f5daf1f10a29a084a6","user":{"login":"nbouteme","id":8816755,"avatar_url":"https://avatars.githubusercontent.com/u/8816755?v=3","gravatar_id":"","url":"https://api.github.com/users/nbouteme","html_url":"https://github.com/nbouteme","followers_url":"https://api.github.com/users/nbouteme/followers","following_url":"https://api.github.com/users/nbouteme/following{/other_user}","gists_url":"https://api.github.com/users/nbouteme/gists{/gist_id}","starred_url":"https://api.github.com/users/nbouteme/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nbouteme/subscriptions","organizations_url":"https://api.github.com/users/nbouteme/orgs","repos_url":"https://api.github.com/users/nbouteme/repos","events_url":"https://api.github.com/users/nbouteme/events{/privacy}","received_events_url":"https://api.github.com/users/nbouteme/received_events","type":"User","site_admin":false},"repo":{"id":28026599,"name":"AFK","full_name":"nbouteme/AFK","owner":{"login":"nbouteme","id":8816755,"avatar_url":"https://avatars.githubusercontent.com/u/8816755?v=3","gravatar_id":"","url":"https://api.github.com/users/nbouteme","html_url":"https://github.com/nbouteme","followers_url":"https://api.github.com/users/nbouteme/followers","following_url":"https://api.github.com/users/nbouteme/following{/other_user}","gists_url":"https://api.github.com/users/nbouteme/gists{/gist_id}","starred_url":"https://api.github.com/users/nbouteme/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nbouteme/subscriptions","organizations_url":"https://api.github.com/users/nbouteme/orgs","repos_url":"https://api.github.com/users/nbouteme/repos","events_url":"https://api.github.com/users/nbouteme/events{/privacy}","received_events_url":"https://api.github.com/users/nbouteme/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/nbouteme/AFK","description":"","fork":false,"url":"https://api.github.com/repos/nbouteme/AFK","forks_url":"https://api.github.com/repos/nbouteme/AFK/forks","keys_url":"https://api.github.com/repos/nbouteme/AFK/keys{/key_id}","collaborators_url":"https://api.github.com/repos/nbouteme/AFK/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/nbouteme/AFK/teams","hooks_url":"https://api.github.com/repos/nbouteme/AFK/hooks","issue_events_url":"https://api.github.com/repos/nbouteme/AFK/issues/events{/number}","events_url":"https://api.github.com/repos/nbouteme/AFK/events","assignees_url":"https://api.github.com/repos/nbouteme/AFK/assignees{/user}","branches_url":"https://api.github.com/repos/nbouteme/AFK/branches{/branch}","tags_url":"https://api.github.com/repos/nbouteme/AFK/tags","blobs_url":"https://api.github.com/repos/nbouteme/AFK/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/nbouteme/AFK/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/nbouteme/AFK/git/refs{/sha}","trees_url":"https://api.github.com/repos/nbouteme/AFK/git/trees{/sha}","statuses_url":"https://api.github.com/repos/nbouteme/AFK/statuses/{sha}","languages_url":"https://api.github.com/repos/nbouteme/AFK/languages","stargazers_url":"https://api.github.com/repos/nbouteme/AFK/stargazers","contributors_url":"https://api.github.com/repos/nbouteme/AFK/contributors","subscribers_url":"https://api.github.com/repos/nbouteme/AFK/subscribers","subscription_url":"https://api.github.com/repos/nbouteme/AFK/subscription","commits_url":"https://api.github.com/repos/nbouteme/AFK/commits{/sha}","git_commits_url":"https://api.github.com/repos/nbouteme/AFK/git/commits{/sha}","comments_url":"https://api.github.com/repos/nbouteme/AFK/comments{/number}","issue_comment_url":"https://api.github.com/repos/nbouteme/AFK/issues/comments/{number}","contents_url":"https://api.github.com/repos/nbouteme/AFK/contents/{+path}","compare_url":"https://api.github.com/repos/nbouteme/AFK/compare/{base}...{head}","merges_url":"https://api.github.com/repos/nbouteme/AFK/merges","archive_url":"https://api.github.com/repos/nbouteme/AFK/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/nbouteme/AFK/downloads","issues_url":"https://api.github.com/repos/nbouteme/AFK/issues{/number}","pulls_url":"https://api.github.com/repos/nbouteme/AFK/pulls{/number}","milestones_url":"https://api.github.com/repos/nbouteme/AFK/milestones{/number}","notifications_url":"https://api.github.com/repos/nbouteme/AFK/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/nbouteme/AFK/labels{/name}","releases_url":"https://api.github.com/repos/nbouteme/AFK/releases{/id}","created_at":"2014-12-15T07:59:30Z","updated_at":"2014-12-15T07:59:30Z","pushed_at":"2014-12-25T21:41:07Z","git_url":"git://github.com/nbouteme/AFK.git","ssh_url":"git@github.com:nbouteme/AFK.git","clone_url":"https://github.com/nbouteme/AFK.git","svn_url":"https://github.com/nbouteme/AFK","homepage":null,"size":122,"stargazers_count":0,"watchers_count":0,"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":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/nbouteme/AFK/pulls/2"},"html":{"href":"https://github.com/nbouteme/AFK/pull/2"},"issue":{"href":"https://api.github.com/repos/nbouteme/AFK/issues/2"},"comments":{"href":"https://api.github.com/repos/nbouteme/AFK/issues/2/comments"},"review_comments":{"href":"https://api.github.com/repos/nbouteme/AFK/pulls/2/comments"},"review_comment":{"href":"https://api.github.com/repos/nbouteme/AFK/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/nbouteme/AFK/pulls/2/commits"},"statuses":{"href":"https://api.github.com/repos/nbouteme/AFK/statuses/0c6d0d563a0acc2b2da2ca11438a01eed46fbf03"}}}},"public":true,"created_at":"2015-01-01T15:14:07Z"} +,{"id":"2489657578","type":"PushEvent","actor":{"id":4627837,"login":"jessemillar","gravatar_id":"","url":"https://api.github.com/users/jessemillar","avatar_url":"https://avatars.githubusercontent.com/u/4627837?"},"repo":{"id":22169822,"name":"jessemillar/AniTraceSVG","url":"https://api.github.com/repos/jessemillar/AniTraceSVG"},"payload":{"push_id":536866917,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c0e1600e5dcb2974d6ca7154ebda84efe3c92671","before":"345b34ec190dca1fa9149d13fee35c6c6d3bce95","commits":[{"sha":"c0e1600e5dcb2974d6ca7154ebda84efe3c92671","author":{"email":"0ba40b71986250aad0903c7ebcfd76a410af35fb@gmail.com","name":"Jesse Millar"},"message":"Update LICENSE.md","distinct":true,"url":"https://api.github.com/repos/jessemillar/AniTraceSVG/commits/c0e1600e5dcb2974d6ca7154ebda84efe3c92671"}]},"public":true,"created_at":"2015-01-01T15:14:07Z"} +,{"id":"2489657581","type":"WatchEvent","actor":{"id":1468294,"login":"apan0206","gravatar_id":"","url":"https://api.github.com/users/apan0206","avatar_url":"https://avatars.githubusercontent.com/u/1468294?"},"repo":{"id":215047,"name":"jdg/MBProgressHUD","url":"https://api.github.com/repos/jdg/MBProgressHUD"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:08Z"} +,{"id":"2489657582","type":"PushEvent","actor":{"id":1589480,"login":"BrewTestBot","gravatar_id":"","url":"https://api.github.com/users/BrewTestBot","avatar_url":"https://avatars.githubusercontent.com/u/1589480?"},"repo":{"id":14002592,"name":"BrewTestBot/homebrew","url":"https://api.github.com/repos/BrewTestBot/homebrew"},"payload":{"push_id":536866919,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"73b6210849977cdf51764b40e10e30266becf6fb","before":"60cd5229da13b339e5cbf01222bd589ce8bce68c","commits":[{"sha":"5b6d2dca03bef65f3ae7d639e9096b9e7f87ee4e","author":{"email":"bfee279af59f3e3f71f7ce1fa037ea7b90f93cbf@yahoo.fr","name":"Baptiste Fontaine"},"message":"minimal MP3 test file added\n\nCloses #35417.\n\nSigned-off-by: Mike McQuaid ","distinct":true,"url":"https://api.github.com/repos/BrewTestBot/homebrew/commits/5b6d2dca03bef65f3ae7d639e9096b9e7f87ee4e"},{"sha":"d40028c8054834043d6a5a877b451601391a9421","author":{"email":"df198605596fce29920d17ef1ca4d827168a8cd9@gmail.com","name":"Zhang Yi"},"message":"shadowsocks-libev 1.6.2","distinct":true,"url":"https://api.github.com/repos/BrewTestBot/homebrew/commits/d40028c8054834043d6a5a877b451601391a9421"},{"sha":"73b6210849977cdf51764b40e10e30266becf6fb","author":{"email":"aa7ada780dbf2380b352a70aaa93ceb8b17028b0@googlegroups.com","name":"BrewTestBot"},"message":"shadowsocks-libev: update 1.6.2 bottle.","distinct":true,"url":"https://api.github.com/repos/BrewTestBot/homebrew/commits/73b6210849977cdf51764b40e10e30266becf6fb"}]},"public":true,"created_at":"2015-01-01T15:14:08Z"} +,{"id":"2489657584","type":"PushEvent","actor":{"id":8445924,"login":"kovetskiy","gravatar_id":"","url":"https://api.github.com/users/kovetskiy","avatar_url":"https://avatars.githubusercontent.com/u/8445924?"},"repo":{"id":25587126,"name":"kovetskiy/dotfiles","url":"https://api.github.com/repos/kovetskiy/dotfiles"},"payload":{"push_id":536866920,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"45213c0b79ae67462145dcb75a7f4ff4a870b24e","before":"f668fa6b4d9cdbed6889c624a39bf77ece1a2044","commits":[{"sha":"45213c0b79ae67462145dcb75a7f4ff4a870b24e","author":{"email":"3c21077d83965f0a5f94df49943c6397b9167b37@office.ngs.ru","name":"kovetskiy"},"message":"path patch","distinct":true,"url":"https://api.github.com/repos/kovetskiy/dotfiles/commits/45213c0b79ae67462145dcb75a7f4ff4a870b24e"}]},"public":true,"created_at":"2015-01-01T15:14:08Z"} +,{"id":"2489657589","type":"CreateEvent","actor":{"id":1687443,"login":"hit9","gravatar_id":"","url":"https://api.github.com/users/hit9","avatar_url":"https://avatars.githubusercontent.com/u/1687443?"},"repo":{"id":28688847,"name":"hit9/c","url":"https://api.github.com/repos/hit9/c"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"My C Practice","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:09Z"} +,{"id":"2489657591","type":"IssueCommentEvent","actor":{"id":63502,"login":"ferventcoder","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","avatar_url":"https://avatars.githubusercontent.com/u/63502?"},"repo":{"id":22735696,"name":"chocolatey/chocolatey-package-updater","url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/10","labels_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/10/comments","events_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/10/events","html_url":"https://github.com/chocolatey/chocolatey-package-updater/issues/10","id":53221591,"number":10,"title":"Use https://chocolatey.org/ instead of http://chocolatey.org/ for pushes","user":{"login":"ferventcoder","id":63502,"avatar_url":"https://avatars.githubusercontent.com/u/63502?v=3","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","html_url":"https://github.com/ferventcoder","followers_url":"https://api.github.com/users/ferventcoder/followers","following_url":"https://api.github.com/users/ferventcoder/following{/other_user}","gists_url":"https://api.github.com/users/ferventcoder/gists{/gist_id}","starred_url":"https://api.github.com/users/ferventcoder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ferventcoder/subscriptions","organizations_url":"https://api.github.com/users/ferventcoder/orgs","repos_url":"https://api.github.com/users/ferventcoder/repos","events_url":"https://api.github.com/users/ferventcoder/events{/privacy}","received_events_url":"https://api.github.com/users/ferventcoder/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/labels/bug","name":"bug","color":"fc2929"}],"state":"open","locked":false,"assignee":{"login":"ferventcoder","id":63502,"avatar_url":"https://avatars.githubusercontent.com/u/63502?v=3","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","html_url":"https://github.com/ferventcoder","followers_url":"https://api.github.com/users/ferventcoder/followers","following_url":"https://api.github.com/users/ferventcoder/following{/other_user}","gists_url":"https://api.github.com/users/ferventcoder/gists{/gist_id}","starred_url":"https://api.github.com/users/ferventcoder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ferventcoder/subscriptions","organizations_url":"https://api.github.com/users/ferventcoder/orgs","repos_url":"https://api.github.com/users/ferventcoder/repos","events_url":"https://api.github.com/users/ferventcoder/events{/privacy}","received_events_url":"https://api.github.com/users/ferventcoder/received_events","type":"User","site_admin":false},"milestone":null,"comments":1,"created_at":"2015-01-01T15:12:45Z","updated_at":"2015-01-01T15:14:09Z","closed_at":null,"body":""},"comment":{"url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/comments/68488785","html_url":"https://github.com/chocolatey/chocolatey-package-updater/issues/10#issuecomment-68488785","issue_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/10","id":68488785,"user":{"login":"ferventcoder","id":63502,"avatar_url":"https://avatars.githubusercontent.com/u/63502?v=3","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","html_url":"https://github.com/ferventcoder","followers_url":"https://api.github.com/users/ferventcoder/followers","following_url":"https://api.github.com/users/ferventcoder/following{/other_user}","gists_url":"https://api.github.com/users/ferventcoder/gists{/gist_id}","starred_url":"https://api.github.com/users/ferventcoder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ferventcoder/subscriptions","organizations_url":"https://api.github.com/users/ferventcoder/orgs","repos_url":"https://api.github.com/users/ferventcoder/repos","events_url":"https://api.github.com/users/ferventcoder/events{/privacy}","received_events_url":"https://api.github.com/users/ferventcoder/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:14:09Z","updated_at":"2015-01-01T15:14:09Z","body":"Fixed in 0.6.4"}},"public":true,"created_at":"2015-01-01T15:14:10Z","org":{"id":811025,"login":"chocolatey","gravatar_id":"","url":"https://api.github.com/orgs/chocolatey","avatar_url":"https://avatars.githubusercontent.com/u/811025?"}} +,{"id":"2489657593","type":"PushEvent","actor":{"id":5436953,"login":"cirnocee","gravatar_id":"","url":"https://api.github.com/users/cirnocee","avatar_url":"https://avatars.githubusercontent.com/u/5436953?"},"repo":{"id":28341531,"name":"cirnocee/Geam","url":"https://api.github.com/repos/cirnocee/Geam"},"payload":{"push_id":536866926,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"14a4f4cd799c68bc925f7cf81723941f062ba9e5","before":"323c98e02a68c56683c8e555c82866b47da1b4f6","commits":[{"sha":"d04441094cbdcf2fd2d89ac5074ba2b3fb221801","author":{"email":"0ffefe9d887a2216346f4c38237205bdbbc685df@chu2byo.com","name":"Cee"},"message":"Fix css & html","distinct":true,"url":"https://api.github.com/repos/cirnocee/Geam/commits/d04441094cbdcf2fd2d89ac5074ba2b3fb221801"},{"sha":"14a4f4cd799c68bc925f7cf81723941f062ba9e5","author":{"email":"0ffefe9d887a2216346f4c38237205bdbbc685df@chu2byo.com","name":"Cee"},"message":"Merge branch 'master' of https://github.com/cirnocee/Geam","distinct":true,"url":"https://api.github.com/repos/cirnocee/Geam/commits/14a4f4cd799c68bc925f7cf81723941f062ba9e5"}]},"public":true,"created_at":"2015-01-01T15:14:10Z"} +,{"id":"2489657600","type":"PullRequestEvent","actor":{"id":3806695,"login":"aaaaalbert","gravatar_id":"","url":"https://api.github.com/users/aaaaalbert","avatar_url":"https://avatars.githubusercontent.com/u/3806695?"},"repo":{"id":20314870,"name":"SeattleTestbed/SeattleOnAndroid","url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid"},"payload":{"action":"opened","number":20,"pull_request":{"url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/pulls/20","id":26743875,"html_url":"https://github.com/SeattleTestbed/SeattleOnAndroid/pull/20","diff_url":"https://github.com/SeattleTestbed/SeattleOnAndroid/pull/20.diff","patch_url":"https://github.com/SeattleTestbed/SeattleOnAndroid/pull/20.patch","issue_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/issues/20","number":20,"state":"open","locked":false,"title":"Fix HTTPS download of Seattle installer zip","user":{"login":"aaaaalbert","id":3806695,"avatar_url":"https://avatars.githubusercontent.com/u/3806695?v=3","gravatar_id":"","url":"https://api.github.com/users/aaaaalbert","html_url":"https://github.com/aaaaalbert","followers_url":"https://api.github.com/users/aaaaalbert/followers","following_url":"https://api.github.com/users/aaaaalbert/following{/other_user}","gists_url":"https://api.github.com/users/aaaaalbert/gists{/gist_id}","starred_url":"https://api.github.com/users/aaaaalbert/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aaaaalbert/subscriptions","organizations_url":"https://api.github.com/users/aaaaalbert/orgs","repos_url":"https://api.github.com/users/aaaaalbert/repos","events_url":"https://api.github.com/users/aaaaalbert/events{/privacy}","received_events_url":"https://api.github.com/users/aaaaalbert/received_events","type":"User","site_admin":false},"body":"We previously overrode TLS certificate checks for HTTPS downloads\r\n(why did we do that again?), and only verified that the FQDN from\r\nwhich we attempted to download was on a whitelist. This was a bad\r\nidea, as a MITM could tamper with our DNS and redirect the download\r\nto a site they control.\r\n\r\nAlso, bump app version to 1.2.","created_at":"2015-01-01T15:14:09Z","updated_at":"2015-01-01T15:14:09Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/pulls/20/commits","review_comments_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/pulls/20/comments","review_comment_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/pulls/comments/{number}","comments_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/issues/20/comments","statuses_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/statuses/8175ef9ad600d5e8c743f2e7291115215a3e1c01","head":{"label":"SeattleTestbed:fix-https-download","ref":"fix-https-download","sha":"8175ef9ad600d5e8c743f2e7291115215a3e1c01","user":{"login":"SeattleTestbed","id":7329722,"avatar_url":"https://avatars.githubusercontent.com/u/7329722?v=3","gravatar_id":"","url":"https://api.github.com/users/SeattleTestbed","html_url":"https://github.com/SeattleTestbed","followers_url":"https://api.github.com/users/SeattleTestbed/followers","following_url":"https://api.github.com/users/SeattleTestbed/following{/other_user}","gists_url":"https://api.github.com/users/SeattleTestbed/gists{/gist_id}","starred_url":"https://api.github.com/users/SeattleTestbed/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SeattleTestbed/subscriptions","organizations_url":"https://api.github.com/users/SeattleTestbed/orgs","repos_url":"https://api.github.com/users/SeattleTestbed/repos","events_url":"https://api.github.com/users/SeattleTestbed/events{/privacy}","received_events_url":"https://api.github.com/users/SeattleTestbed/received_events","type":"Organization","site_admin":false},"repo":{"id":20314870,"name":"SeattleOnAndroid","full_name":"SeattleTestbed/SeattleOnAndroid","owner":{"login":"SeattleTestbed","id":7329722,"avatar_url":"https://avatars.githubusercontent.com/u/7329722?v=3","gravatar_id":"","url":"https://api.github.com/users/SeattleTestbed","html_url":"https://github.com/SeattleTestbed","followers_url":"https://api.github.com/users/SeattleTestbed/followers","following_url":"https://api.github.com/users/SeattleTestbed/following{/other_user}","gists_url":"https://api.github.com/users/SeattleTestbed/gists{/gist_id}","starred_url":"https://api.github.com/users/SeattleTestbed/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SeattleTestbed/subscriptions","organizations_url":"https://api.github.com/users/SeattleTestbed/orgs","repos_url":"https://api.github.com/users/SeattleTestbed/repos","events_url":"https://api.github.com/users/SeattleTestbed/events{/privacy}","received_events_url":"https://api.github.com/users/SeattleTestbed/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/SeattleTestbed/SeattleOnAndroid","description":"","fork":false,"url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid","forks_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/forks","keys_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/keys{/key_id}","collaborators_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/teams","hooks_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/hooks","issue_events_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/issues/events{/number}","events_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/events","assignees_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/assignees{/user}","branches_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/branches{/branch}","tags_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/tags","blobs_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/git/refs{/sha}","trees_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/git/trees{/sha}","statuses_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/statuses/{sha}","languages_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/languages","stargazers_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/stargazers","contributors_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/contributors","subscribers_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/subscribers","subscription_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/subscription","commits_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/commits{/sha}","git_commits_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/git/commits{/sha}","comments_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/comments{/number}","issue_comment_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/issues/comments/{number}","contents_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/contents/{+path}","compare_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/compare/{base}...{head}","merges_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/merges","archive_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/downloads","issues_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/issues{/number}","pulls_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/pulls{/number}","milestones_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/milestones{/number}","notifications_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/labels{/name}","releases_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/releases{/id}","created_at":"2014-05-30T02:29:17Z","updated_at":"2014-05-30T02:42:33Z","pushed_at":"2015-01-01T15:09:34Z","git_url":"git://github.com/SeattleTestbed/SeattleOnAndroid.git","ssh_url":"git@github.com:SeattleTestbed/SeattleOnAndroid.git","clone_url":"https://github.com/SeattleTestbed/SeattleOnAndroid.git","svn_url":"https://github.com/SeattleTestbed/SeattleOnAndroid","homepage":null,"size":10284,"stargazers_count":0,"watchers_count":0,"language":"Java","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":19,"forks":1,"open_issues":19,"watchers":0,"default_branch":"master"}},"base":{"label":"SeattleTestbed:master","ref":"master","sha":"b61a632c33cbd691ff4de14da8d958ef6208b8bd","user":{"login":"SeattleTestbed","id":7329722,"avatar_url":"https://avatars.githubusercontent.com/u/7329722?v=3","gravatar_id":"","url":"https://api.github.com/users/SeattleTestbed","html_url":"https://github.com/SeattleTestbed","followers_url":"https://api.github.com/users/SeattleTestbed/followers","following_url":"https://api.github.com/users/SeattleTestbed/following{/other_user}","gists_url":"https://api.github.com/users/SeattleTestbed/gists{/gist_id}","starred_url":"https://api.github.com/users/SeattleTestbed/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SeattleTestbed/subscriptions","organizations_url":"https://api.github.com/users/SeattleTestbed/orgs","repos_url":"https://api.github.com/users/SeattleTestbed/repos","events_url":"https://api.github.com/users/SeattleTestbed/events{/privacy}","received_events_url":"https://api.github.com/users/SeattleTestbed/received_events","type":"Organization","site_admin":false},"repo":{"id":20314870,"name":"SeattleOnAndroid","full_name":"SeattleTestbed/SeattleOnAndroid","owner":{"login":"SeattleTestbed","id":7329722,"avatar_url":"https://avatars.githubusercontent.com/u/7329722?v=3","gravatar_id":"","url":"https://api.github.com/users/SeattleTestbed","html_url":"https://github.com/SeattleTestbed","followers_url":"https://api.github.com/users/SeattleTestbed/followers","following_url":"https://api.github.com/users/SeattleTestbed/following{/other_user}","gists_url":"https://api.github.com/users/SeattleTestbed/gists{/gist_id}","starred_url":"https://api.github.com/users/SeattleTestbed/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SeattleTestbed/subscriptions","organizations_url":"https://api.github.com/users/SeattleTestbed/orgs","repos_url":"https://api.github.com/users/SeattleTestbed/repos","events_url":"https://api.github.com/users/SeattleTestbed/events{/privacy}","received_events_url":"https://api.github.com/users/SeattleTestbed/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/SeattleTestbed/SeattleOnAndroid","description":"","fork":false,"url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid","forks_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/forks","keys_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/keys{/key_id}","collaborators_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/teams","hooks_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/hooks","issue_events_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/issues/events{/number}","events_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/events","assignees_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/assignees{/user}","branches_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/branches{/branch}","tags_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/tags","blobs_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/git/refs{/sha}","trees_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/git/trees{/sha}","statuses_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/statuses/{sha}","languages_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/languages","stargazers_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/stargazers","contributors_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/contributors","subscribers_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/subscribers","subscription_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/subscription","commits_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/commits{/sha}","git_commits_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/git/commits{/sha}","comments_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/comments{/number}","issue_comment_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/issues/comments/{number}","contents_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/contents/{+path}","compare_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/compare/{base}...{head}","merges_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/merges","archive_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/downloads","issues_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/issues{/number}","pulls_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/pulls{/number}","milestones_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/milestones{/number}","notifications_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/labels{/name}","releases_url":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/releases{/id}","created_at":"2014-05-30T02:29:17Z","updated_at":"2014-05-30T02:42:33Z","pushed_at":"2015-01-01T15:09:34Z","git_url":"git://github.com/SeattleTestbed/SeattleOnAndroid.git","ssh_url":"git@github.com:SeattleTestbed/SeattleOnAndroid.git","clone_url":"https://github.com/SeattleTestbed/SeattleOnAndroid.git","svn_url":"https://github.com/SeattleTestbed/SeattleOnAndroid","homepage":null,"size":10284,"stargazers_count":0,"watchers_count":0,"language":"Java","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":19,"forks":1,"open_issues":19,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/pulls/20"},"html":{"href":"https://github.com/SeattleTestbed/SeattleOnAndroid/pull/20"},"issue":{"href":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/issues/20"},"comments":{"href":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/issues/20/comments"},"review_comments":{"href":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/pulls/20/comments"},"review_comment":{"href":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/pulls/20/commits"},"statuses":{"href":"https://api.github.com/repos/SeattleTestbed/SeattleOnAndroid/statuses/8175ef9ad600d5e8c743f2e7291115215a3e1c01"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":15,"deletions":80,"changed_files":4}},"public":true,"created_at":"2015-01-01T15:14:10Z","org":{"id":7329722,"login":"SeattleTestbed","gravatar_id":"","url":"https://api.github.com/orgs/SeattleTestbed","avatar_url":"https://avatars.githubusercontent.com/u/7329722?"}} +,{"id":"2489657603","type":"PushEvent","actor":{"id":9654099,"login":"Ssoap","gravatar_id":"","url":"https://api.github.com/users/Ssoap","avatar_url":"https://avatars.githubusercontent.com/u/9654099?"},"repo":{"id":26429360,"name":"Ssoap/IUT-Orsay-TP351-groupe-1","url":"https://api.github.com/repos/Ssoap/IUT-Orsay-TP351-groupe-1"},"payload":{"push_id":536866930,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fa430f8928c106156709c67efcde1e59c547934e","before":"81eeb4d6b69c620615de5ae37ee83759b57e40cf","commits":[{"sha":"fa430f8928c106156709c67efcde1e59c547934e","author":{"email":"aba75674a36705ea6c6a5b049713e039196017da@u-psud.fr","name":"ragaoua"},"message":"randomCommit","distinct":true,"url":"https://api.github.com/repos/Ssoap/IUT-Orsay-TP351-groupe-1/commits/fa430f8928c106156709c67efcde1e59c547934e"}]},"public":true,"created_at":"2015-01-01T15:14:10Z"} +,{"id":"2489657607","type":"PushEvent","actor":{"id":4588308,"login":"cptbucky","gravatar_id":"","url":"https://api.github.com/users/cptbucky","avatar_url":"https://avatars.githubusercontent.com/u/4588308?"},"repo":{"id":28140405,"name":"checkout-app/android","url":"https://api.github.com/repos/checkout-app/android"},"payload":{"push_id":536866932,"size":2,"distinct_size":2,"ref":"refs/heads/develop","head":"29655e1d371340ca9f7d5ed03fc6d75aa83998eb","before":"575ac5a98228cd759475faa5488e89a4a0a26fe9","commits":[{"sha":"ca5b90845fffac3eb5f779da8bf6c0bd8005734e","author":{"email":"c98dbf1ee687a50e21a14b4bcb4cbe0e7481bd64@avantics.co.uk","name":"Dev-Duck"},"message":"subtotal and name added to command pad","distinct":true,"url":"https://api.github.com/repos/checkout-app/android/commits/ca5b90845fffac3eb5f779da8bf6c0bd8005734e"},{"sha":"29655e1d371340ca9f7d5ed03fc6d75aa83998eb","author":{"email":"c98dbf1ee687a50e21a14b4bcb4cbe0e7481bd64@avantics.co.uk","name":"Dev-Duck"},"message":"fixed bug on sku frag where the view models for a line didn't display the counts","distinct":true,"url":"https://api.github.com/repos/checkout-app/android/commits/29655e1d371340ca9f7d5ed03fc6d75aa83998eb"}]},"public":true,"created_at":"2015-01-01T15:14:11Z","org":{"id":10221771,"login":"checkout-app","gravatar_id":"","url":"https://api.github.com/orgs/checkout-app","avatar_url":"https://avatars.githubusercontent.com/u/10221771?"}} +,{"id":"2489657608","type":"IssuesEvent","actor":{"id":63502,"login":"ferventcoder","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","avatar_url":"https://avatars.githubusercontent.com/u/63502?"},"repo":{"id":22735696,"name":"chocolatey/chocolatey-package-updater","url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/10","labels_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/10/comments","events_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/10/events","html_url":"https://github.com/chocolatey/chocolatey-package-updater/issues/10","id":53221591,"number":10,"title":"Use https://chocolatey.org/ instead of http://chocolatey.org/ for pushes","user":{"login":"ferventcoder","id":63502,"avatar_url":"https://avatars.githubusercontent.com/u/63502?v=3","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","html_url":"https://github.com/ferventcoder","followers_url":"https://api.github.com/users/ferventcoder/followers","following_url":"https://api.github.com/users/ferventcoder/following{/other_user}","gists_url":"https://api.github.com/users/ferventcoder/gists{/gist_id}","starred_url":"https://api.github.com/users/ferventcoder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ferventcoder/subscriptions","organizations_url":"https://api.github.com/users/ferventcoder/orgs","repos_url":"https://api.github.com/users/ferventcoder/repos","events_url":"https://api.github.com/users/ferventcoder/events{/privacy}","received_events_url":"https://api.github.com/users/ferventcoder/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/labels/bug","name":"bug","color":"fc2929"}],"state":"closed","locked":false,"assignee":{"login":"ferventcoder","id":63502,"avatar_url":"https://avatars.githubusercontent.com/u/63502?v=3","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","html_url":"https://github.com/ferventcoder","followers_url":"https://api.github.com/users/ferventcoder/followers","following_url":"https://api.github.com/users/ferventcoder/following{/other_user}","gists_url":"https://api.github.com/users/ferventcoder/gists{/gist_id}","starred_url":"https://api.github.com/users/ferventcoder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ferventcoder/subscriptions","organizations_url":"https://api.github.com/users/ferventcoder/orgs","repos_url":"https://api.github.com/users/ferventcoder/repos","events_url":"https://api.github.com/users/ferventcoder/events{/privacy}","received_events_url":"https://api.github.com/users/ferventcoder/received_events","type":"User","site_admin":false},"milestone":null,"comments":1,"created_at":"2015-01-01T15:12:45Z","updated_at":"2015-01-01T15:14:11Z","closed_at":"2015-01-01T15:14:11Z","body":""}},"public":true,"created_at":"2015-01-01T15:14:11Z","org":{"id":811025,"login":"chocolatey","gravatar_id":"","url":"https://api.github.com/orgs/chocolatey","avatar_url":"https://avatars.githubusercontent.com/u/811025?"}} +,{"id":"2489657610","type":"CreateEvent","actor":{"id":10364846,"login":"GSMCustomEffects","gravatar_id":"","url":"https://api.github.com/users/GSMCustomEffects","avatar_url":"https://avatars.githubusercontent.com/u/10364846?"},"repo":{"id":28688865,"name":"GSMCustomEffects/test3","url":"https://api.github.com/repos/GSMCustomEffects/test3"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:11Z"} +,{"id":"2489657611","type":"PushEvent","actor":{"id":2544806,"login":"anandrajneesh","gravatar_id":"","url":"https://api.github.com/users/anandrajneesh","avatar_url":"https://avatars.githubusercontent.com/u/2544806?"},"repo":{"id":28141651,"name":"anandrajneesh/Algorithms101","url":"https://api.github.com/repos/anandrajneesh/Algorithms101"},"payload":{"push_id":536866934,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a33c7760c4b2562aa8e8dfef4e748dc42c2ed900","before":"1613a031c275f476ea76db388364772d6bf76129","commits":[{"sha":"a33c7760c4b2562aa8e8dfef4e748dc42c2ed900","author":{"email":"c145a1d1e12fec4ed94ab0ae2e1e68e76e397c67@outlook.com","name":"Anand Rajneesh"},"message":"refactored","distinct":true,"url":"https://api.github.com/repos/anandrajneesh/Algorithms101/commits/a33c7760c4b2562aa8e8dfef4e748dc42c2ed900"}]},"public":true,"created_at":"2015-01-01T15:14:11Z"} +,{"id":"2489657613","type":"IssueCommentEvent","actor":{"id":6568110,"login":"dostodabsi","gravatar_id":"","url":"https://api.github.com/users/dostodabsi","avatar_url":"https://avatars.githubusercontent.com/u/6568110?"},"repo":{"id":6106340,"name":"JuliaLang/METADATA.jl","url":"https://api.github.com/repos/JuliaLang/METADATA.jl"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/1933","labels_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/1933/labels{/name}","comments_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/1933/comments","events_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/1933/events","html_url":"https://github.com/JuliaLang/METADATA.jl/pull/1933","id":53221503,"number":1933,"title":"Pull request/9f37988e","user":{"login":"dostodabsi","id":6568110,"avatar_url":"https://avatars.githubusercontent.com/u/6568110?v=3","gravatar_id":"","url":"https://api.github.com/users/dostodabsi","html_url":"https://github.com/dostodabsi","followers_url":"https://api.github.com/users/dostodabsi/followers","following_url":"https://api.github.com/users/dostodabsi/following{/other_user}","gists_url":"https://api.github.com/users/dostodabsi/gists{/gist_id}","starred_url":"https://api.github.com/users/dostodabsi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dostodabsi/subscriptions","organizations_url":"https://api.github.com/users/dostodabsi/orgs","repos_url":"https://api.github.com/users/dostodabsi/repos","events_url":"https://api.github.com/users/dostodabsi/events{/privacy}","received_events_url":"https://api.github.com/users/dostodabsi/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:08:54Z","updated_at":"2015-01-01T15:14:12Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/JuliaLang/METADATA.jl/pulls/1933","html_url":"https://github.com/JuliaLang/METADATA.jl/pull/1933","diff_url":"https://github.com/JuliaLang/METADATA.jl/pull/1933.diff","patch_url":"https://github.com/JuliaLang/METADATA.jl/pull/1933.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/comments/68488788","html_url":"https://github.com/JuliaLang/METADATA.jl/pull/1933#issuecomment-68488788","issue_url":"https://api.github.com/repos/JuliaLang/METADATA.jl/issues/1933","id":68488788,"user":{"login":"dostodabsi","id":6568110,"avatar_url":"https://avatars.githubusercontent.com/u/6568110?v=3","gravatar_id":"","url":"https://api.github.com/users/dostodabsi","html_url":"https://github.com/dostodabsi","followers_url":"https://api.github.com/users/dostodabsi/followers","following_url":"https://api.github.com/users/dostodabsi/following{/other_user}","gists_url":"https://api.github.com/users/dostodabsi/gists{/gist_id}","starred_url":"https://api.github.com/users/dostodabsi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dostodabsi/subscriptions","organizations_url":"https://api.github.com/users/dostodabsi/orgs","repos_url":"https://api.github.com/users/dostodabsi/repos","events_url":"https://api.github.com/users/dostodabsi/events{/privacy}","received_events_url":"https://api.github.com/users/dostodabsi/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:14:12Z","updated_at":"2015-01-01T15:14:12Z","body":"I might have mixed up some things. I'd like to merge this package in: https://github.com/dostodabsi/V.jl"}},"public":true,"created_at":"2015-01-01T15:14:12Z","org":{"id":743164,"login":"JuliaLang","gravatar_id":"","url":"https://api.github.com/orgs/JuliaLang","avatar_url":"https://avatars.githubusercontent.com/u/743164?"}} +,{"id":"2489657614","type":"PushEvent","actor":{"id":3490861,"login":"mikroskeem","gravatar_id":"","url":"https://api.github.com/users/mikroskeem","avatar_url":"https://avatars.githubusercontent.com/u/3490861?"},"repo":{"id":26713538,"name":"mikroskeem/rpi-linux","url":"https://api.github.com/repos/mikroskeem/rpi-linux"},"payload":{"push_id":536866936,"size":4,"distinct_size":4,"ref":"refs/heads/3.17","head":"0979f5eac0616c12c5159b7fbb82c3cd005c7cec","before":"8c97e2abe64f9533ac98fae1fe0d1ddd0b01fbbb","commits":[{"sha":"1264e79cb993f631ffa609fb9b744cf31314d2a1","author":{"email":"ea43246c95b456737281d90042f4428a9a1cca6e@gmail.com","name":"Mark Vainomaa"},"message":"Make buildtar script to put zImage instead of vmlinuz into archive","distinct":true,"url":"https://api.github.com/repos/mikroskeem/rpi-linux/commits/1264e79cb993f631ffa609fb9b744cf31314d2a1"},{"sha":"80e6d4b2b6f8f4bb976f9ddd5959fd2a0f65ca48","author":{"email":"ea43246c95b456737281d90042f4428a9a1cca6e@gmail.com","name":"Mark Vainomaa"},"message":"Set SST25VF064C eraseblock size to 32k, because that chip supports it","distinct":true,"url":"https://api.github.com/repos/mikroskeem/rpi-linux/commits/80e6d4b2b6f8f4bb976f9ddd5959fd2a0f65ca48"},{"sha":"dced153ad88a66c09a06985e157a77ea51529eeb","author":{"email":"ea43246c95b456737281d90042f4428a9a1cca6e@gmail.com","name":"Mark Vainomaa"},"message":"Multiply SPI bus speed by 10x and add option for MTD. Add option to enable DS1307 rtc board at boot","distinct":true,"url":"https://api.github.com/repos/mikroskeem/rpi-linux/commits/dced153ad88a66c09a06985e157a77ea51529eeb"},{"sha":"0979f5eac0616c12c5159b7fbb82c3cd005c7cec","author":{"email":"ea43246c95b456737281d90042f4428a9a1cca6e@gmail.com","name":"Mark Vainomaa"},"message":"AUFS patch from http://aufs.sourceforge.net/ to make kernel more similiar to archlinux raspberrypi kernel","distinct":true,"url":"https://api.github.com/repos/mikroskeem/rpi-linux/commits/0979f5eac0616c12c5159b7fbb82c3cd005c7cec"}]},"public":true,"created_at":"2015-01-01T15:14:12Z"} +,{"id":"2489657615","type":"CreateEvent","actor":{"id":6581457,"login":"voidrank","gravatar_id":"","url":"https://api.github.com/users/voidrank","avatar_url":"https://avatars.githubusercontent.com/u/6581457?"},"repo":{"id":28688866,"name":"voidrank/nodejsLearning","url":"https://api.github.com/repos/voidrank/nodejsLearning"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:12Z"} +,{"id":"2489657618","type":"PushEvent","actor":{"id":84231,"login":"jaaxxm","gravatar_id":"","url":"https://api.github.com/users/jaaxxm","avatar_url":"https://avatars.githubusercontent.com/u/84231?"},"repo":{"id":28561509,"name":"jaaxxm/express-shop","url":"https://api.github.com/repos/jaaxxm/express-shop"},"payload":{"push_id":536866937,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0793d1ce3983b8b341c7fb8acf3a9b78dd43e1b8","before":"b52afcdfb6ed93d3d96ee2835abef4edee3ef024","commits":[{"sha":"0793d1ce3983b8b341c7fb8acf3a9b78dd43e1b8","author":{"email":"41208bfe13b220c0ecacfaf306ff023f17103cc8@gmail.com","name":"Victor Bondaruk"},"message":"- html5 mpde added to express\n- public module added to client","distinct":true,"url":"https://api.github.com/repos/jaaxxm/express-shop/commits/0793d1ce3983b8b341c7fb8acf3a9b78dd43e1b8"}]},"public":true,"created_at":"2015-01-01T15:14:12Z"} +,{"id":"2489657619","type":"ReleaseEvent","actor":{"id":3888750,"login":"joachimmetz","gravatar_id":"","url":"https://api.github.com/users/joachimmetz","avatar_url":"https://avatars.githubusercontent.com/u/3888750?"},"repo":{"id":24666110,"name":"libyal/libcsystem","url":"https://api.github.com/repos/libyal/libcsystem"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/libyal/libcsystem/releases/818699","assets_url":"https://api.github.com/repos/libyal/libcsystem/releases/818699/assets","upload_url":"https://uploads.github.com/repos/libyal/libcsystem/releases/818699/assets{?name}","html_url":"https://github.com/libyal/libcsystem/releases/tag/20150101","id":818699,"tag_name":"20150101","target_commitish":"master","name":"libcsystem-alpha-20150101","draft":false,"author":{"login":"joachimmetz","id":3888750,"avatar_url":"https://avatars.githubusercontent.com/u/3888750?v=3","gravatar_id":"","url":"https://api.github.com/users/joachimmetz","html_url":"https://github.com/joachimmetz","followers_url":"https://api.github.com/users/joachimmetz/followers","following_url":"https://api.github.com/users/joachimmetz/following{/other_user}","gists_url":"https://api.github.com/users/joachimmetz/gists{/gist_id}","starred_url":"https://api.github.com/users/joachimmetz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/joachimmetz/subscriptions","organizations_url":"https://api.github.com/users/joachimmetz/orgs","repos_url":"https://api.github.com/users/joachimmetz/repos","events_url":"https://api.github.com/users/joachimmetz/events{/privacy}","received_events_url":"https://api.github.com/users/joachimmetz/received_events","type":"User","site_admin":false},"prerelease":true,"created_at":"2014-12-29T06:01:42Z","published_at":"2015-01-01T15:14:12Z","assets":[],"tarball_url":"https://api.github.com/repos/libyal/libcsystem/tarball/20150101","zipball_url":"https://api.github.com/repos/libyal/libcsystem/zipball/20150101","body":"Release of version 20150101"}},"public":true,"created_at":"2015-01-01T15:14:12Z","org":{"id":8692283,"login":"libyal","gravatar_id":"","url":"https://api.github.com/orgs/libyal","avatar_url":"https://avatars.githubusercontent.com/u/8692283?"}} +,{"id":"2489657620","type":"CreateEvent","actor":{"id":3888750,"login":"joachimmetz","gravatar_id":"","url":"https://api.github.com/users/joachimmetz","avatar_url":"https://avatars.githubusercontent.com/u/3888750?"},"repo":{"id":24666110,"name":"libyal/libcsystem","url":"https://api.github.com/repos/libyal/libcsystem"},"payload":{"ref":"20150101","ref_type":"tag","master_branch":"master","description":"Library for cross-platform C system functions","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:12Z","org":{"id":8692283,"login":"libyal","gravatar_id":"","url":"https://api.github.com/orgs/libyal","avatar_url":"https://avatars.githubusercontent.com/u/8692283?"}} +,{"id":"2489657621","type":"WatchEvent","actor":{"id":6942570,"login":"yanguanyu","gravatar_id":"","url":"https://api.github.com/users/yanguanyu","avatar_url":"https://avatars.githubusercontent.com/u/6942570?"},"repo":{"id":11551538,"name":"koajs/koa","url":"https://api.github.com/repos/koajs/koa"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:13Z","org":{"id":5055057,"login":"koajs","gravatar_id":"","url":"https://api.github.com/orgs/koajs","avatar_url":"https://avatars.githubusercontent.com/u/5055057?"}} +,{"id":"2489657624","type":"IssuesEvent","actor":{"id":10364785,"login":"sepidnam","gravatar_id":"","url":"https://api.github.com/users/sepidnam","avatar_url":"https://avatars.githubusercontent.com/u/10364785?"},"repo":{"id":28688837,"name":"sepidnam/hello-world","url":"https://api.github.com/repos/sepidnam/hello-world"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/sepidnam/hello-world/issues/1","labels_url":"https://api.github.com/repos/sepidnam/hello-world/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/sepidnam/hello-world/issues/1/comments","events_url":"https://api.github.com/repos/sepidnam/hello-world/issues/1/events","html_url":"https://github.com/sepidnam/hello-world/issues/1","id":53221619,"number":1,"title":"Finish Read me","user":{"login":"sepidnam","id":10364785,"avatar_url":"https://avatars.githubusercontent.com/u/10364785?v=3","gravatar_id":"","url":"https://api.github.com/users/sepidnam","html_url":"https://github.com/sepidnam","followers_url":"https://api.github.com/users/sepidnam/followers","following_url":"https://api.github.com/users/sepidnam/following{/other_user}","gists_url":"https://api.github.com/users/sepidnam/gists{/gist_id}","starred_url":"https://api.github.com/users/sepidnam/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sepidnam/subscriptions","organizations_url":"https://api.github.com/users/sepidnam/orgs","repos_url":"https://api.github.com/users/sepidnam/repos","events_url":"https://api.github.com/users/sepidnam/events{/privacy}","received_events_url":"https://api.github.com/users/sepidnam/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:14:13Z","updated_at":"2015-01-01T15:14:13Z","closed_at":null,"body":"So that the humans 'get' me."}},"public":true,"created_at":"2015-01-01T15:14:13Z"} +,{"id":"2489657627","type":"WatchEvent","actor":{"id":1063549,"login":"lokeshj","gravatar_id":"","url":"https://api.github.com/users/lokeshj","avatar_url":"https://avatars.githubusercontent.com/u/1063549?"},"repo":{"id":28427240,"name":"runspired/ember-mobiletouch","url":"https://api.github.com/repos/runspired/ember-mobiletouch"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:13Z"} +,{"id":"2489657628","type":"PushEvent","actor":{"id":8523812,"login":"AgonLohaj","gravatar_id":"","url":"https://api.github.com/users/AgonLohaj","avatar_url":"https://avatars.githubusercontent.com/u/8523812?"},"repo":{"id":27199237,"name":"AgonLohaj/hssp_curve","url":"https://api.github.com/repos/AgonLohaj/hssp_curve"},"payload":{"push_id":536866939,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"1456d870fd572f1d566bf0f18bfd55fd87d998b0","before":"a735683b32e9dbf9abd6298bb67cd6ae60a39884","commits":[{"sha":"1456d870fd572f1d566bf0f18bfd55fd87d998b0","author":{"email":"9ff75bead9a82c284bd1ed9cfb8e718709d4f52a@gmail.com","name":"AgonLohaj"},"message":"Small Bug","distinct":true,"url":"https://api.github.com/repos/AgonLohaj/hssp_curve/commits/1456d870fd572f1d566bf0f18bfd55fd87d998b0"}]},"public":true,"created_at":"2015-01-01T15:14:13Z"} +,{"id":"2489657632","type":"CreateEvent","actor":{"id":9210886,"login":"llissery","gravatar_id":"","url":"https://api.github.com/users/llissery","avatar_url":"https://avatars.githubusercontent.com/u/9210886?"},"repo":{"id":28688868,"name":"llissery/demo","url":"https://api.github.com/repos/llissery/demo"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:14Z"} +,{"id":"2489657634","type":"IssueCommentEvent","actor":{"id":43438,"login":"timoxley","gravatar_id":"","url":"https://api.github.com/users/timoxley","avatar_url":"https://avatars.githubusercontent.com/u/43438?"},"repo":{"id":24239561,"name":"timoxley/linklocal","url":"https://api.github.com/repos/timoxley/linklocal"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/timoxley/linklocal/issues/14","labels_url":"https://api.github.com/repos/timoxley/linklocal/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/timoxley/linklocal/issues/14/comments","events_url":"https://api.github.com/repos/timoxley/linklocal/issues/14/events","html_url":"https://github.com/timoxley/linklocal/issues/14","id":53221277,"number":14,"title":"strategies for installing dependencies of local dependencies","user":{"login":"timoxley","id":43438,"avatar_url":"https://avatars.githubusercontent.com/u/43438?v=3","gravatar_id":"","url":"https://api.github.com/users/timoxley","html_url":"https://github.com/timoxley","followers_url":"https://api.github.com/users/timoxley/followers","following_url":"https://api.github.com/users/timoxley/following{/other_user}","gists_url":"https://api.github.com/users/timoxley/gists{/gist_id}","starred_url":"https://api.github.com/users/timoxley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timoxley/subscriptions","organizations_url":"https://api.github.com/users/timoxley/orgs","repos_url":"https://api.github.com/users/timoxley/repos","events_url":"https://api.github.com/users/timoxley/events{/privacy}","received_events_url":"https://api.github.com/users/timoxley/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T14:57:32Z","updated_at":"2015-01-01T15:14:14Z","closed_at":null,"body":"## Scenario\r\n* `parent-pkg` has local dependency: `file: ./local-pkg`.\r\n* `npm install` in `parent-pkg`.\r\n* `./local-pkg` is copied and installed into `parent_package/node_modules, along with the dependencies of `local-pkg`.\r\n* post-install, run `linklocal`.\r\n* `node_modules/local-pkg` is now replaced with a relative symlink to `../local-pkg`. Dependencies of `local-pkg` are not installed.\r\n* Use `linklocal list` to produce a list of all local dependencies, which we then pass to something like `xargs`, `find -exec` or [bulk](https://github.com/timoxley/bulk) to run `npm install --production` for us: `linklocal list | bulk -c \"npm install --production\"`.\r\n* Local dependencies have now got their dependencies installed.\r\n\r\n## Issues\r\n1. Dependencies of local dependencies were installed twice. First when the local dependencies were installed with the regular `npm install`, second during the bulk `npm install` in the local dependencies. This can lead to considerable increases in install time if you depend on anything that requires building.\r\n2. No deduplication occurs between local dependencies. If two local packages depend on the same thing, it will be installed twice.\r\n\r\n## Some Improvements\r\n\r\n### Don't hit remote registry\r\nDisable accessing the remote registry with `npm install --cache-min=Infinity` for the bulk install. You've already just installed everything you need so there's a good chance everything is already in the cache. This prevents overhead of hitting npm servers over and over for every local dependency. Doesn't solve rebuilding over and over again though.\r\n\r\n## Don't install local dependencies then symlink them away\r\nTo avoid the initial install of everything before symlinking it all away, I've been doing `linklocal` in the preinstall script. Of course this requires linklocal and bulk to be installed before starting, so my preinstall (Makefile) looks something like:\r\n\r\n```\r\npreinstall:\r\n npm install linklocal bulk # this unfortunately ignores the version specified in package.json\r\n linklocal link -r\r\n linklocal list -r --unique | bulk -c \"npm install --cache-min=Infinity\"\r\n```\r\n\r\nbut what's really killing install time is rebuilding dependencies over and over due to lack of deduplication.\r\n\r\ncc @hughsk @yoshuawuyts any ideas on what we can do to improve this?"},"comment":{"url":"https://api.github.com/repos/timoxley/linklocal/issues/comments/68488790","html_url":"https://github.com/timoxley/linklocal/issues/14#issuecomment-68488790","issue_url":"https://api.github.com/repos/timoxley/linklocal/issues/14","id":68488790,"user":{"login":"timoxley","id":43438,"avatar_url":"https://avatars.githubusercontent.com/u/43438?v=3","gravatar_id":"","url":"https://api.github.com/users/timoxley","html_url":"https://github.com/timoxley","followers_url":"https://api.github.com/users/timoxley/followers","following_url":"https://api.github.com/users/timoxley/following{/other_user}","gists_url":"https://api.github.com/users/timoxley/gists{/gist_id}","starred_url":"https://api.github.com/users/timoxley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timoxley/subscriptions","organizations_url":"https://api.github.com/users/timoxley/orgs","repos_url":"https://api.github.com/users/timoxley/repos","events_url":"https://api.github.com/users/timoxley/events{/privacy}","received_events_url":"https://api.github.com/users/timoxley/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:14:14Z","updated_at":"2015-01-01T15:14:14Z","body":"ugh, i take that back, it won't work because symlinks are ignored when npm is resolving dependencies."}},"public":true,"created_at":"2015-01-01T15:14:14Z"} +,{"id":"2489657637","type":"CreateEvent","actor":{"id":1262317,"login":"ToOLs-PL","gravatar_id":"","url":"https://api.github.com/users/ToOLs-PL","avatar_url":"https://avatars.githubusercontent.com/u/1262317?"},"repo":{"id":28687496,"name":"ToOLs-PL/dojo_rules","url":"https://api.github.com/repos/ToOLs-PL/dojo_rules"},"payload":{"ref":"deadly_skills","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:15Z"} +,{"id":"2489657638","type":"WatchEvent","actor":{"id":740978,"login":"bernharduw","gravatar_id":"","url":"https://api.github.com/users/bernharduw","avatar_url":"https://avatars.githubusercontent.com/u/740978?"},"repo":{"id":7548381,"name":"CriticMarkup/CriticMarkup-toolkit","url":"https://api.github.com/repos/CriticMarkup/CriticMarkup-toolkit"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:15Z"} +,{"id":"2489657640","type":"IssueCommentEvent","actor":{"id":4483,"login":"arfon","gravatar_id":"","url":"https://api.github.com/users/arfon","avatar_url":"https://avatars.githubusercontent.com/u/4483?"},"repo":{"id":1725199,"name":"github/linguist","url":"https://api.github.com/repos/github/linguist"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/github/linguist/issues/1933","labels_url":"https://api.github.com/repos/github/linguist/issues/1933/labels{/name}","comments_url":"https://api.github.com/repos/github/linguist/issues/1933/comments","events_url":"https://api.github.com/repos/github/linguist/issues/1933/events","html_url":"https://github.com/github/linguist/pull/1933","id":53221098,"number":1933,"title":"Added MapCSS to languages.yml","user":{"login":"floscher","id":3904348,"avatar_url":"https://avatars.githubusercontent.com/u/3904348?v=3","gravatar_id":"","url":"https://api.github.com/users/floscher","html_url":"https://github.com/floscher","followers_url":"https://api.github.com/users/floscher/followers","following_url":"https://api.github.com/users/floscher/following{/other_user}","gists_url":"https://api.github.com/users/floscher/gists{/gist_id}","starred_url":"https://api.github.com/users/floscher/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/floscher/subscriptions","organizations_url":"https://api.github.com/users/floscher/orgs","repos_url":"https://api.github.com/users/floscher/repos","events_url":"https://api.github.com/users/floscher/events{/privacy}","received_events_url":"https://api.github.com/users/floscher/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T14:48:07Z","updated_at":"2015-01-01T15:14:15Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/github/linguist/pulls/1933","html_url":"https://github.com/github/linguist/pull/1933","diff_url":"https://github.com/github/linguist/pull/1933.diff","patch_url":"https://github.com/github/linguist/pull/1933.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/github/linguist/issues/comments/68488791","html_url":"https://github.com/github/linguist/pull/1933#issuecomment-68488791","issue_url":"https://api.github.com/repos/github/linguist/issues/1933","id":68488791,"user":{"login":"arfon","id":4483,"avatar_url":"https://avatars.githubusercontent.com/u/4483?v=3","gravatar_id":"","url":"https://api.github.com/users/arfon","html_url":"https://github.com/arfon","followers_url":"https://api.github.com/users/arfon/followers","following_url":"https://api.github.com/users/arfon/following{/other_user}","gists_url":"https://api.github.com/users/arfon/gists{/gist_id}","starred_url":"https://api.github.com/users/arfon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arfon/subscriptions","organizations_url":"https://api.github.com/users/arfon/orgs","repos_url":"https://api.github.com/users/arfon/repos","events_url":"https://api.github.com/users/arfon/events{/privacy}","received_events_url":"https://api.github.com/users/arfon/received_events","type":"User","site_admin":true},"created_at":"2015-01-01T15:14:15Z","updated_at":"2015-01-01T15:14:15Z","body":"Thanks @floscher and happy new year! As per [the contribution guidelines](https://github.com/github/linguist/blob/master/CONTRIBUTING.md) could you link to some examples of this language in use on GitHub?\r\n"}},"public":true,"created_at":"2015-01-01T15:14:15Z","org":{"id":9919,"login":"github","gravatar_id":"","url":"https://api.github.com/orgs/github","avatar_url":"https://avatars.githubusercontent.com/u/9919?"}} +,{"id":"2489657643","type":"PushEvent","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":{"push_id":536866944,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7f8340e7984acd9b5c0be79988a0a8deb72fc076","before":"206006a2cac5d6b24f6e0b7f34d2b42ecacbe9f7","commits":[{"sha":"7f8340e7984acd9b5c0be79988a0a8deb72fc076","author":{"email":"07c06a7faba19d23fbf8c2267c8c630e6cd69b27@gmail.com","name":"Jakukyo Friel"},"message":"README: add link of wiki.","distinct":true,"url":"https://api.github.com/repos/weakish/greylist/commits/7f8340e7984acd9b5c0be79988a0a8deb72fc076"}]},"public":true,"created_at":"2015-01-01T15:14:15Z"} +,{"id":"2489657644","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":536866945,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d6c16b79404ba763aee6b708e28c1dc7d3d51afe","before":"4950dfb7a97184ba40e1e1a4a073f6be2664a395","commits":[{"sha":"d6c16b79404ba763aee6b708e28c1dc7d3d51afe","author":{"email":"798520c19e899fb2be364efde581283231d48b6f@126.com","name":"quhezheng"},"message":"update","distinct":true,"url":"https://api.github.com/repos/quhezheng/HomeIP/commits/d6c16b79404ba763aee6b708e28c1dc7d3d51afe"}]},"public":true,"created_at":"2015-01-01T15:14:15Z"} +,{"id":"2489657645","type":"PushEvent","actor":{"id":10009844,"login":"jeffwaters1","gravatar_id":"","url":"https://api.github.com/users/jeffwaters1","avatar_url":"https://avatars.githubusercontent.com/u/10009844?"},"repo":{"id":27348924,"name":"jeffwaters1/pinteresting","url":"https://api.github.com/repos/jeffwaters1/pinteresting"},"payload":{"push_id":536866946,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"a760b35c7c2df4a76dd32420907fa2e3c27839fb","before":"8ef30e789b898d9a6fa1bd0e419d5b0cabaa24e5","commits":[{"sha":"64b962d1f9b42896cac499877a31ac72d53b3292","author":{"email":"f3e731dfa293c7a83119d8aacfa41b5d2d780be9@jeffwaters.com","name":"Jeff Waters"},"message":"After default pins controller file created","distinct":true,"url":"https://api.github.com/repos/jeffwaters1/pinteresting/commits/64b962d1f9b42896cac499877a31ac72d53b3292"},{"sha":"618ec00b0b7111e578608f5f14fb12809b2a7db2","author":{"email":"f3e731dfa293c7a83119d8aacfa41b5d2d780be9@jeffwaters.com","name":"Jeff Waters"},"message":"after copy/paste of pins-controller code from lesson notes","distinct":true,"url":"https://api.github.com/repos/jeffwaters1/pinteresting/commits/618ec00b0b7111e578608f5f14fb12809b2a7db2"},{"sha":"a760b35c7c2df4a76dd32420907fa2e3c27839fb","author":{"email":"f3e731dfa293c7a83119d8aacfa41b5d2d780be9@jeffwaters.com","name":"Jeff Waters"},"message":"Cleaned up the pins scaffold","distinct":true,"url":"https://api.github.com/repos/jeffwaters1/pinteresting/commits/a760b35c7c2df4a76dd32420907fa2e3c27839fb"}]},"public":true,"created_at":"2015-01-01T15:14:16Z"} +,{"id":"2489657646","type":"PushEvent","actor":{"id":929551,"login":"geekzy","gravatar_id":"","url":"https://api.github.com/users/geekzy","avatar_url":"https://avatars.githubusercontent.com/u/929551?"},"repo":{"id":9004472,"name":"geekzy/web-template","url":"https://api.github.com/repos/geekzy/web-template"},"payload":{"push_id":536866947,"size":212,"distinct_size":212,"ref":"refs/heads/master","head":"f23d4c3101c7071d21849e926a8ff174236f6e1d","before":"58facafb3c615b45e4bf1e51c274550a22fb65b8","commits":[{"sha":"2f966781d87842a783d120bf30c1ddfe6da7fa97","author":{"email":"2190a997b94b577165321b43f04bca456147ebf9@impressivewebs.com","name":"Louis Lazaris"},"message":"Corrected terminology in comment\n\nReally, really nitpicky change here but ... the comment was referring to the selection rule sets as \"declarations\", which isn't exactly the correct term. See:\r\n\r\nhttp://nimbupani.com/css-vocabulary.html\r\nhttp://www.impressivewebs.com/css-terms-definitions/","distinct":true,"url":"https://api.github.com/repos/geekzy/web-template/commits/2f966781d87842a783d120bf30c1ddfe6da7fa97"},{"sha":"c01aa0474dfd1e86081502bd8b3e10c4f743c0ea","author":{"email":"418d940643b1975d62234ee01246ad4b58904184@nicolasgallagher.com","name":"Nicolas Gallagher"},"message":"Merge pull request #1313 from impressivewebs/patch-1\n\nCorrected terminology in comment","distinct":true,"url":"https://api.github.com/repos/geekzy/web-template/commits/c01aa0474dfd1e86081502bd8b3e10c4f743c0ea"},{"sha":"b83ce3b1b42157f8c817a62b4d353415e25c3af4","author":{"email":"64b2b6d12bfe4baae7dad3d018f8cbf6b0e7a044@drewnoakes.com","name":"Drew Noakes"},"message":"Fixed typo in `main.css`","distinct":true,"url":"https://api.github.com/repos/geekzy/web-template/commits/b83ce3b1b42157f8c817a62b4d353415e25c3af4"},{"sha":"a10460934dfe86a1829f2eff93884238cfbd4c94","author":{"email":"453add7b4ec2d1bb84cee78509e05907a515c5ee@lfred.info","name":"Alfred Xing"},"message":"Fix 404 widget script URL\n\nFix 404 widget script URL to be compatible with HTTPS by replacing\n`http://` with `//`. The script hosted by Google is available on both\nprotocols.","distinct":true,"url":"https://api.github.com/repos/geekzy/web-template/commits/a10460934dfe86a1829f2eff93884238cfbd4c94"},{"sha":"1b0f042e06da46af60d7289b21af85bf58bb4978","author":{"email":"b00d7dd6677bc5b9bc1231c2ec6ff458051f3e89@gmail.com","name":"Nicolas Gallagher"},"message":"Update CHANGELOG","distinct":true,"url":"https://api.github.com/repos/geekzy/web-template/commits/1b0f042e06da46af60d7289b21af85bf58bb4978"},{"sha":"c8b0431c7d57a9670500bb0e1a22dc80d87f8d41","author":{"email":"85bbdd25db3c6eb77b8a7d8d0c5df4799e17f5bb@gmail.com","name":"alrra"},"message":"Import latest `.htaccess` configurations\n\nUpdate the Apache configurations to include the\nlatest changes in the canonical `.htaccess` file.","distinct":true,"url":"https://api.github.com/repos/geekzy/web-template/commits/c8b0431c7d57a9670500bb0e1a22dc80d87f8d41"},{"sha":"a7a4d0685cb6f9622a308c165d9317114d80ccd3","author":{"email":"b00d7dd6677bc5b9bc1231c2ec6ff458051f3e89@gmail.com","name":"Nicolas Gallagher"},"message":"Fix Grunt link in docs\n\nThe repo has moved from 'cowboy/grunt' to 'gruntjs/grunt'.","distinct":true,"url":"https://api.github.com/repos/geekzy/web-template/commits/a7a4d0685cb6f9622a308c165d9317114d80ccd3"},{"sha":"6cfbc95cd6b094430ecbb4c44d97dfda9adba852","author":{"email":"85bbdd25db3c6eb77b8a7d8d0c5df4799e17f5bb@gmail.com","name":"alrra"},"message":"Docs: replace `htaccess.md` with link (fix #1344)\n\nRemove `htaccess.md` and link to the Apache `README.md` in\nthe `server-configs` repository as the documentation for the\nconfigurations is now officially maintained in that repository.","distinct":true,"url":"https://api.github.com/repos/geekzy/web-template/commits/6cfbc95cd6b094430ecbb4c44d97dfda9adba852"},{"sha":"2a8e5828af49c041fe70193f4cda9ef3ab94ad97","author":{"email":"b00d7dd6677bc5b9bc1231c2ec6ff458051f3e89@gmail.com","name":"Nicolas Gallagher"},"message":"Update normalize.css to v1.1.1","distinct":true,"url":"https://api.github.com/repos/geekzy/web-template/commits/2a8e5828af49c041fe70193f4cda9ef3ab94ad97"},{"sha":"fa7527fb2620db8693dcf5d490ad1b7d01097264","author":{"email":"9fd8de5fc2a7c2c0d469b2fff1afde4e5def37ba@nettsentrisk.no","name":"George Gooding"},"message":"Remove Google Analytics protocol check\n\nGoogle now serves all Analytics scripts via SSL also so the protocol\ncheck is no longer necessary.\n\nClose #1319","distinct":true,"url":"https://api.github.com/repos/geekzy/web-template/commits/fa7527fb2620db8693dcf5d490ad1b7d01097264"},{"sha":"d94e5061894e2e1b458371d66613137d434ebbeb","author":{"email":"b00d7dd6677bc5b9bc1231c2ec6ff458051f3e89@gmail.com","name":"Nicolas Gallagher"},"message":"Update CHANGELOG","distinct":true,"url":"https://api.github.com/repos/geekzy/web-template/commits/d94e5061894e2e1b458371d66613137d434ebbeb"},{"sha":"0adda79fee6ddccc46d0ba427c7e3d7277f39230","author":{"email":"b00d7dd6677bc5b9bc1231c2ec6ff458051f3e89@gmail.com","name":"Nicolas Gallagher"},"message":"v4.2.0","distinct":true,"url":"https://api.github.com/repos/geekzy/web-template/commits/0adda79fee6ddccc46d0ba427c7e3d7277f39230"},{"sha":"7a22a33d4041c479d0962499e853501073811887","author":{"email":"85bbdd25db3c6eb77b8a7d8d0c5df4799e17f5bb@gmail.com","name":"alrra"},"message":"Docs: fix broken links","distinct":true,"url":"https://api.github.com/repos/geekzy/web-template/commits/7a22a33d4041c479d0962499e853501073811887"},{"sha":"52f17087f986020280f1dc929fb14842c7d2f0d1","author":{"email":"59bd0a3ff43b32849b319e645d4798d8a5d1e889@drublic.de","name":"Hans Christian Reinl"},"message":"Add documentation for iOS web applications\n\nAdd several options to improve iOS web apps with meta tags when\nadding a web page to the Home Screen.\n\nCloses #1352.","distinct":true,"url":"https://api.github.com/repos/geekzy/web-template/commits/52f17087f986020280f1dc929fb14842c7d2f0d1"},{"sha":"f27c2b7372cbf4cb8d1b02521895f4ed17518450","author":{"email":"59bd0a3ff43b32849b319e645d4798d8a5d1e889@drublic.de","name":"Hans Christian Reinl"},"message":"Update to Normalize.css 1.1.2","distinct":true,"url":"https://api.github.com/repos/geekzy/web-template/commits/f27c2b7372cbf4cb8d1b02521895f4ed17518450"},{"sha":"713abf57a9e8acd06bc7b8c1ecd3547e2ec7bdfe","author":{"email":"660609b171607ff3dcd294929e5d8239736f4298@brunomcustodio.com","name":"bmcustodio"},"message":"Update to jQuery 1.10.0","distinct":true,"url":"https://api.github.com/repos/geekzy/web-template/commits/713abf57a9e8acd06bc7b8c1ecd3547e2ec7bdfe"},{"sha":"deec3622132f3c68e74d7a7d6a05534a6bf2650a","author":{"email":"8867c88b56e0bfb82cffaf15a66bc8d107d6754a@drublic.de","name":"Hans Christian Reinl"},"message":"Update to jQuery 1.10.1","distinct":true,"url":"https://api.github.com/repos/geekzy/web-template/commits/deec3622132f3c68e74d7a7d6a05534a6bf2650a"},{"sha":"48d49e96d6db282eb9686d31ebbc5cbbbdd4d966","author":{"email":"17a2cbc4e33156874a9862b0f530521117e66a3d@qiwi.be","name":"Mathias Bynens"},"message":"Update to Google Universal Analytics\n\nThis is an optimized version of the official Google Universal Analytics snippet,\nbased on http://mathiasbynens.be/notes/async-analytics-snippet.\nThe only difference is that this version still uses\n`document.getElementsByTagName('script')[0]` instead of `document.scripts[0]`\nfor Firefox < 9 support.\n\nUnminified, optimized code:\n\n (function(window, document, script, variableName, scriptElement, firstScript) {\n window['GoogleAnalyticsObject'] = variableName;\n window[variableName] || (window[variableName] = function() {\n (window[variableName].q = window[variableName].q || []).push(arguments)\n });\n window[variableName].l = +new Date;\n scriptElement = document.createElement(script);\n firstScript = document.getElementsByTagName(script)[0];\n scriptElement.src = '//www.google-analytics.com/analytics.js';\n firstScript.parentNode.insertBefore(scriptElement, firstScript)\n }(window, document, 'script', 'ga'));\n\n ga('create', 'UA-XXXX-Y');\n ga('send', 'pageview');\n\nMinified:\n\n (function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;e=o.createElement(i);r=o.getElementsByTagName(i)[0];e.src='//www.google-analytics.com/analytics.js';r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));ga('create','UA-XXXX-Y');ga('send','pageview');\n\nCloses #1347 and #1369.","distinct":true,"url":"https://api.github.com/repos/geekzy/web-template/commits/48d49e96d6db282eb9686d31ebbc5cbbbdd4d966"},{"sha":"8f743702f6846a3fff86da56ea69c1f4e07d161b","author":{"email":"85bbdd25db3c6eb77b8a7d8d0c5df4799e17f5bb@gmail.com","name":"alrra"},"message":"Docs: update information about `print styles`\n\nFix: h5bp/html5-boilerplate#1386","distinct":true,"url":"https://api.github.com/repos/geekzy/web-template/commits/8f743702f6846a3fff86da56ea69c1f4e07d161b"},{"sha":"02713eedd21bbc92f704fbf65ff382e76bf81f2b","author":{"email":"64b2b6d12bfe4baae7dad3d018f8cbf6b0e7a044@urhc.co.cc","name":"Gustavo Rodrigues"},"message":"Remove Google Frame message\n\nAs said at http://blog.chromium.org/2013/06/retiring-chrome-frame.html Google Frame was retired/obsolete.\n\nChanged \"chromeframe\" class to \"browsehappy\"","distinct":true,"url":"https://api.github.com/repos/geekzy/web-template/commits/02713eedd21bbc92f704fbf65ff382e76bf81f2b"}]},"public":true,"created_at":"2015-01-01T15:14:16Z"} +,{"id":"2489657649","type":"WatchEvent","actor":{"id":14349,"login":"dlackty","gravatar_id":"","url":"https://api.github.com/users/dlackty","avatar_url":"https://avatars.githubusercontent.com/u/14349?"},"repo":{"id":15476375,"name":"dkhamsing/ios-asset-names","url":"https://api.github.com/repos/dkhamsing/ios-asset-names"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:16Z"} +,{"id":"2489657651","type":"ForkEvent","actor":{"id":2981491,"login":"h4cc","gravatar_id":"","url":"https://api.github.com/users/h4cc","avatar_url":"https://avatars.githubusercontent.com/u/2981491?"},"repo":{"id":25243280,"name":"eosnewmedia/Transformer","url":"https://api.github.com/repos/eosnewmedia/Transformer"},"payload":{"forkee":{"id":28688869,"name":"Transformer","full_name":"h4cc/Transformer","owner":{"login":"h4cc","id":2981491,"avatar_url":"https://avatars.githubusercontent.com/u/2981491?v=3","gravatar_id":"","url":"https://api.github.com/users/h4cc","html_url":"https://github.com/h4cc","followers_url":"https://api.github.com/users/h4cc/followers","following_url":"https://api.github.com/users/h4cc/following{/other_user}","gists_url":"https://api.github.com/users/h4cc/gists{/gist_id}","starred_url":"https://api.github.com/users/h4cc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/h4cc/subscriptions","organizations_url":"https://api.github.com/users/h4cc/orgs","repos_url":"https://api.github.com/users/h4cc/repos","events_url":"https://api.github.com/users/h4cc/events{/privacy}","received_events_url":"https://api.github.com/users/h4cc/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/h4cc/Transformer","description":"","fork":true,"url":"https://api.github.com/repos/h4cc/Transformer","forks_url":"https://api.github.com/repos/h4cc/Transformer/forks","keys_url":"https://api.github.com/repos/h4cc/Transformer/keys{/key_id}","collaborators_url":"https://api.github.com/repos/h4cc/Transformer/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/h4cc/Transformer/teams","hooks_url":"https://api.github.com/repos/h4cc/Transformer/hooks","issue_events_url":"https://api.github.com/repos/h4cc/Transformer/issues/events{/number}","events_url":"https://api.github.com/repos/h4cc/Transformer/events","assignees_url":"https://api.github.com/repos/h4cc/Transformer/assignees{/user}","branches_url":"https://api.github.com/repos/h4cc/Transformer/branches{/branch}","tags_url":"https://api.github.com/repos/h4cc/Transformer/tags","blobs_url":"https://api.github.com/repos/h4cc/Transformer/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/h4cc/Transformer/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/h4cc/Transformer/git/refs{/sha}","trees_url":"https://api.github.com/repos/h4cc/Transformer/git/trees{/sha}","statuses_url":"https://api.github.com/repos/h4cc/Transformer/statuses/{sha}","languages_url":"https://api.github.com/repos/h4cc/Transformer/languages","stargazers_url":"https://api.github.com/repos/h4cc/Transformer/stargazers","contributors_url":"https://api.github.com/repos/h4cc/Transformer/contributors","subscribers_url":"https://api.github.com/repos/h4cc/Transformer/subscribers","subscription_url":"https://api.github.com/repos/h4cc/Transformer/subscription","commits_url":"https://api.github.com/repos/h4cc/Transformer/commits{/sha}","git_commits_url":"https://api.github.com/repos/h4cc/Transformer/git/commits{/sha}","comments_url":"https://api.github.com/repos/h4cc/Transformer/comments{/number}","issue_comment_url":"https://api.github.com/repos/h4cc/Transformer/issues/comments/{number}","contents_url":"https://api.github.com/repos/h4cc/Transformer/contents/{+path}","compare_url":"https://api.github.com/repos/h4cc/Transformer/compare/{base}...{head}","merges_url":"https://api.github.com/repos/h4cc/Transformer/merges","archive_url":"https://api.github.com/repos/h4cc/Transformer/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/h4cc/Transformer/downloads","issues_url":"https://api.github.com/repos/h4cc/Transformer/issues{/number}","pulls_url":"https://api.github.com/repos/h4cc/Transformer/pulls{/number}","milestones_url":"https://api.github.com/repos/h4cc/Transformer/milestones{/number}","notifications_url":"https://api.github.com/repos/h4cc/Transformer/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/h4cc/Transformer/labels{/name}","releases_url":"https://api.github.com/repos/h4cc/Transformer/releases{/id}","created_at":"2015-01-01T15:14:17Z","updated_at":"2014-10-18T15:57:11Z","pushed_at":"2014-11-11T15:08:38Z","git_url":"git://github.com/h4cc/Transformer.git","ssh_url":"git@github.com:h4cc/Transformer.git","clone_url":"https://github.com/h4cc/Transformer.git","svn_url":"https://github.com/h4cc/Transformer","homepage":null,"size":328,"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:14:17Z","org":{"id":8861518,"login":"eosnewmedia","gravatar_id":"","url":"https://api.github.com/orgs/eosnewmedia","avatar_url":"https://avatars.githubusercontent.com/u/8861518?"}} +,{"id":"2489657652","type":"WatchEvent","actor":{"id":271576,"login":"pavelsavara","gravatar_id":"","url":"https://api.github.com/users/pavelsavara","avatar_url":"https://avatars.githubusercontent.com/u/271576?"},"repo":{"id":1597396,"name":"nyholku/purejavacomm","url":"https://api.github.com/repos/nyholku/purejavacomm"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:17Z"} +,{"id":"2489657654","type":"CreateEvent","actor":{"id":5122822,"login":"koustuvsinha","gravatar_id":"","url":"https://api.github.com/users/koustuvsinha","avatar_url":"https://avatars.githubusercontent.com/u/5122822?"},"repo":{"id":28533971,"name":"koustuvsinha/quickwiki","url":"https://api.github.com/repos/koustuvsinha/quickwiki"},"payload":{"ref":"upgrade","ref_type":"branch","master_branch":"master","description":"A Google Chrome extension that allows users to preview articles on Wikipedia and other wikis.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:17Z"} +,{"id":"2489657658","type":"IssueCommentEvent","actor":{"id":190363,"login":"andrewmcveigh","gravatar_id":"","url":"https://api.github.com/users/andrewmcveigh","avatar_url":"https://avatars.githubusercontent.com/u/190363?"},"repo":{"id":12434601,"name":"andrewmcveigh/cljs-time","url":"https://api.github.com/repos/andrewmcveigh/cljs-time"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/issues/17","labels_url":"https://api.github.com/repos/andrewmcveigh/cljs-time/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/andrewmcveigh/cljs-time/issues/17/comments","events_url":"https://api.github.com/repos/andrewmcveigh/cljs-time/issues/17/events","html_url":"https://github.com/andrewmcveigh/cljs-time/issues/17","id":52956201,"number":17,"title":"Match clj-time 0.9.0 API","user":{"login":"andrewmcveigh","id":190363,"avatar_url":"https://avatars.githubusercontent.com/u/190363?v=3","gravatar_id":"","url":"https://api.github.com/users/andrewmcveigh","html_url":"https://github.com/andrewmcveigh","followers_url":"https://api.github.com/users/andrewmcveigh/followers","following_url":"https://api.github.com/users/andrewmcveigh/following{/other_user}","gists_url":"https://api.github.com/users/andrewmcveigh/gists{/gist_id}","starred_url":"https://api.github.com/users/andrewmcveigh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andrewmcveigh/subscriptions","organizations_url":"https://api.github.com/users/andrewmcveigh/orgs","repos_url":"https://api.github.com/users/andrewmcveigh/repos","events_url":"https://api.github.com/users/andrewmcveigh/events{/privacy}","received_events_url":"https://api.github.com/users/andrewmcveigh/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-27T12:38:18Z","updated_at":"2015-01-01T15:14:17Z","closed_at":"2015-01-01T15:14:17Z","body":"https://github.com/clj-time/clj-time/blob/master/ChangeLog.md#changes-between-080-and-090"},"comment":{"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/issues/comments/68488792","html_url":"https://github.com/andrewmcveigh/cljs-time/issues/17#issuecomment-68488792","issue_url":"https://api.github.com/repos/andrewmcveigh/cljs-time/issues/17","id":68488792,"user":{"login":"andrewmcveigh","id":190363,"avatar_url":"https://avatars.githubusercontent.com/u/190363?v=3","gravatar_id":"","url":"https://api.github.com/users/andrewmcveigh","html_url":"https://github.com/andrewmcveigh","followers_url":"https://api.github.com/users/andrewmcveigh/followers","following_url":"https://api.github.com/users/andrewmcveigh/following{/other_user}","gists_url":"https://api.github.com/users/andrewmcveigh/gists{/gist_id}","starred_url":"https://api.github.com/users/andrewmcveigh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andrewmcveigh/subscriptions","organizations_url":"https://api.github.com/users/andrewmcveigh/orgs","repos_url":"https://api.github.com/users/andrewmcveigh/repos","events_url":"https://api.github.com/users/andrewmcveigh/events{/privacy}","received_events_url":"https://api.github.com/users/andrewmcveigh/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:14:17Z","updated_at":"2015-01-01T15:14:17Z","body":"Fixed in v0.3.0 4e4d903f169fffffa61b3664f0173f635fbd067e"}},"public":true,"created_at":"2015-01-01T15:14:17Z"} +,{"id":"2489657659","type":"IssuesEvent","actor":{"id":190363,"login":"andrewmcveigh","gravatar_id":"","url":"https://api.github.com/users/andrewmcveigh","avatar_url":"https://avatars.githubusercontent.com/u/190363?"},"repo":{"id":12434601,"name":"andrewmcveigh/cljs-time","url":"https://api.github.com/repos/andrewmcveigh/cljs-time"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/issues/17","labels_url":"https://api.github.com/repos/andrewmcveigh/cljs-time/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/andrewmcveigh/cljs-time/issues/17/comments","events_url":"https://api.github.com/repos/andrewmcveigh/cljs-time/issues/17/events","html_url":"https://github.com/andrewmcveigh/cljs-time/issues/17","id":52956201,"number":17,"title":"Match clj-time 0.9.0 API","user":{"login":"andrewmcveigh","id":190363,"avatar_url":"https://avatars.githubusercontent.com/u/190363?v=3","gravatar_id":"","url":"https://api.github.com/users/andrewmcveigh","html_url":"https://github.com/andrewmcveigh","followers_url":"https://api.github.com/users/andrewmcveigh/followers","following_url":"https://api.github.com/users/andrewmcveigh/following{/other_user}","gists_url":"https://api.github.com/users/andrewmcveigh/gists{/gist_id}","starred_url":"https://api.github.com/users/andrewmcveigh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andrewmcveigh/subscriptions","organizations_url":"https://api.github.com/users/andrewmcveigh/orgs","repos_url":"https://api.github.com/users/andrewmcveigh/repos","events_url":"https://api.github.com/users/andrewmcveigh/events{/privacy}","received_events_url":"https://api.github.com/users/andrewmcveigh/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-27T12:38:18Z","updated_at":"2015-01-01T15:14:17Z","closed_at":"2015-01-01T15:14:17Z","body":"https://github.com/clj-time/clj-time/blob/master/ChangeLog.md#changes-between-080-and-090"}},"public":true,"created_at":"2015-01-01T15:14:18Z"} +,{"id":"2489657662","type":"PushEvent","actor":{"id":3724388,"login":"cheyang","gravatar_id":"","url":"https://api.github.com/users/cheyang","avatar_url":"https://avatars.githubusercontent.com/u/3724388?"},"repo":{"id":27756669,"name":"cheyang/docker_brick","url":"https://api.github.com/repos/cheyang/docker_brick"},"payload":{"push_id":536866956,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a88c17829c79a31a672160b2f7ebe6cd2e612bb6","before":"ee9d9d5575c17d436d6f415dcedb3a940f747914","commits":[{"sha":"a88c17829c79a31a672160b2f7ebe6cd2e612bb6","author":{"email":"a29c45cf07a273bd58fb05ec870d18d562d741a4@163.com","name":"cheyang"},"message":"implement applicaiton","distinct":true,"url":"https://api.github.com/repos/cheyang/docker_brick/commits/a88c17829c79a31a672160b2f7ebe6cd2e612bb6"}]},"public":true,"created_at":"2015-01-01T15:14:18Z"} +,{"id":"2489657663","type":"PushEvent","actor":{"id":7066843,"login":"Lysisc","gravatar_id":"","url":"https://api.github.com/users/Lysisc","avatar_url":"https://avatars.githubusercontent.com/u/7066843?"},"repo":{"id":26673346,"name":"Lysisc/enterprise_buy","url":"https://api.github.com/repos/Lysisc/enterprise_buy"},"payload":{"push_id":536866959,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9dc8c3624e73941aff245909f9b8db2dac221658","before":"acf1a98aa245c62160df9b35b37994882b1fa97c","commits":[{"sha":"9dc8c3624e73941aff245909f9b8db2dac221658","author":{"email":"c289546b6d9619411d0a240597738530e2f940d2@qq.com","name":"Lysisc"},"message":"modify","distinct":true,"url":"https://api.github.com/repos/Lysisc/enterprise_buy/commits/9dc8c3624e73941aff245909f9b8db2dac221658"}]},"public":true,"created_at":"2015-01-01T15:14:18Z"} +,{"id":"2489657664","type":"PushEvent","actor":{"id":2443896,"login":"robinchenyu","gravatar_id":"","url":"https://api.github.com/users/robinchenyu","avatar_url":"https://avatars.githubusercontent.com/u/2443896?"},"repo":{"id":28482761,"name":"robinchenyu/vimfiles","url":"https://api.github.com/repos/robinchenyu/vimfiles"},"payload":{"push_id":536866957,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5f98e7d778c254a362ae7be1e1e753aa361f45d0","before":"806e9932ba82c4e8839cc26b8bfc204b698c9d70","commits":[{"sha":"5f98e7d778c254a362ae7be1e1e753aa361f45d0","author":{"email":"df0006de2204e3d24a5c47327d76c7f81e16a6a3@gmail.com","name":"robin.chenyu"},"message":"add f12 for ctags","distinct":true,"url":"https://api.github.com/repos/robinchenyu/vimfiles/commits/5f98e7d778c254a362ae7be1e1e753aa361f45d0"}]},"public":true,"created_at":"2015-01-01T15:14:18Z"} +,{"id":"2489657670","type":"CreateEvent","actor":{"id":10364834,"login":"rojicek","gravatar_id":"","url":"https://api.github.com/users/rojicek","avatar_url":"https://avatars.githubusercontent.com/u/10364834?"},"repo":{"id":28688870,"name":"rojicek/meteostanice","url":"https://api.github.com/repos/rojicek/meteostanice"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:19Z"} +,{"id":"2489657672","type":"PullRequestEvent","actor":{"id":128338,"login":"wxy","gravatar_id":"","url":"https://api.github.com/users/wxy","avatar_url":"https://avatars.githubusercontent.com/u/128338?"},"repo":{"id":12745174,"name":"LCTT/TranslateProject","url":"https://api.github.com/repos/LCTT/TranslateProject"},"payload":{"action":"closed","number":2184,"pull_request":{"url":"https://api.github.com/repos/LCTT/TranslateProject/pulls/2184","id":26741900,"html_url":"https://github.com/LCTT/TranslateProject/pull/2184","diff_url":"https://github.com/LCTT/TranslateProject/pull/2184.diff","patch_url":"https://github.com/LCTT/TranslateProject/pull/2184.patch","issue_url":"https://api.github.com/repos/LCTT/TranslateProject/issues/2184","number":2184,"state":"closed","locked":false,"title":"SPccman","user":{"login":"SPccman","id":5456219,"avatar_url":"https://avatars.githubusercontent.com/u/5456219?v=3","gravatar_id":"","url":"https://api.github.com/users/SPccman","html_url":"https://github.com/SPccman","followers_url":"https://api.github.com/users/SPccman/followers","following_url":"https://api.github.com/users/SPccman/following{/other_user}","gists_url":"https://api.github.com/users/SPccman/gists{/gist_id}","starred_url":"https://api.github.com/users/SPccman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SPccman/subscriptions","organizations_url":"https://api.github.com/users/SPccman/orgs","repos_url":"https://api.github.com/users/SPccman/repos","events_url":"https://api.github.com/users/SPccman/events{/privacy}","received_events_url":"https://api.github.com/users/SPccman/received_events","type":"User","site_admin":false},"body":"申领","created_at":"2015-01-01T10:02:50Z","updated_at":"2015-01-01T15:14:19Z","closed_at":"2015-01-01T15:14:19Z","merged_at":"2015-01-01T15:14:19Z","merge_commit_sha":"a634c0fd0d94c0d06515fbbe68bb02a486a2579a","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/LCTT/TranslateProject/pulls/2184/commits","review_comments_url":"https://api.github.com/repos/LCTT/TranslateProject/pulls/2184/comments","review_comment_url":"https://api.github.com/repos/LCTT/TranslateProject/pulls/comments/{number}","comments_url":"https://api.github.com/repos/LCTT/TranslateProject/issues/2184/comments","statuses_url":"https://api.github.com/repos/LCTT/TranslateProject/statuses/7429dad38ec3d3ec85defc572e565d26b2489d0a","head":{"label":"SPccman:patch-13","ref":"patch-13","sha":"7429dad38ec3d3ec85defc572e565d26b2489d0a","user":{"login":"SPccman","id":5456219,"avatar_url":"https://avatars.githubusercontent.com/u/5456219?v=3","gravatar_id":"","url":"https://api.github.com/users/SPccman","html_url":"https://github.com/SPccman","followers_url":"https://api.github.com/users/SPccman/followers","following_url":"https://api.github.com/users/SPccman/following{/other_user}","gists_url":"https://api.github.com/users/SPccman/gists{/gist_id}","starred_url":"https://api.github.com/users/SPccman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SPccman/subscriptions","organizations_url":"https://api.github.com/users/SPccman/orgs","repos_url":"https://api.github.com/users/SPccman/repos","events_url":"https://api.github.com/users/SPccman/events{/privacy}","received_events_url":"https://api.github.com/users/SPccman/received_events","type":"User","site_admin":false},"repo":{"id":23990338,"name":"TranslateProject","full_name":"SPccman/TranslateProject","owner":{"login":"SPccman","id":5456219,"avatar_url":"https://avatars.githubusercontent.com/u/5456219?v=3","gravatar_id":"","url":"https://api.github.com/users/SPccman","html_url":"https://github.com/SPccman","followers_url":"https://api.github.com/users/SPccman/followers","following_url":"https://api.github.com/users/SPccman/following{/other_user}","gists_url":"https://api.github.com/users/SPccman/gists{/gist_id}","starred_url":"https://api.github.com/users/SPccman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SPccman/subscriptions","organizations_url":"https://api.github.com/users/SPccman/orgs","repos_url":"https://api.github.com/users/SPccman/repos","events_url":"https://api.github.com/users/SPccman/events{/privacy}","received_events_url":"https://api.github.com/users/SPccman/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/SPccman/TranslateProject","description":"Linux中国翻译项目","fork":true,"url":"https://api.github.com/repos/SPccman/TranslateProject","forks_url":"https://api.github.com/repos/SPccman/TranslateProject/forks","keys_url":"https://api.github.com/repos/SPccman/TranslateProject/keys{/key_id}","collaborators_url":"https://api.github.com/repos/SPccman/TranslateProject/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/SPccman/TranslateProject/teams","hooks_url":"https://api.github.com/repos/SPccman/TranslateProject/hooks","issue_events_url":"https://api.github.com/repos/SPccman/TranslateProject/issues/events{/number}","events_url":"https://api.github.com/repos/SPccman/TranslateProject/events","assignees_url":"https://api.github.com/repos/SPccman/TranslateProject/assignees{/user}","branches_url":"https://api.github.com/repos/SPccman/TranslateProject/branches{/branch}","tags_url":"https://api.github.com/repos/SPccman/TranslateProject/tags","blobs_url":"https://api.github.com/repos/SPccman/TranslateProject/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/SPccman/TranslateProject/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/SPccman/TranslateProject/git/refs{/sha}","trees_url":"https://api.github.com/repos/SPccman/TranslateProject/git/trees{/sha}","statuses_url":"https://api.github.com/repos/SPccman/TranslateProject/statuses/{sha}","languages_url":"https://api.github.com/repos/SPccman/TranslateProject/languages","stargazers_url":"https://api.github.com/repos/SPccman/TranslateProject/stargazers","contributors_url":"https://api.github.com/repos/SPccman/TranslateProject/contributors","subscribers_url":"https://api.github.com/repos/SPccman/TranslateProject/subscribers","subscription_url":"https://api.github.com/repos/SPccman/TranslateProject/subscription","commits_url":"https://api.github.com/repos/SPccman/TranslateProject/commits{/sha}","git_commits_url":"https://api.github.com/repos/SPccman/TranslateProject/git/commits{/sha}","comments_url":"https://api.github.com/repos/SPccman/TranslateProject/comments{/number}","issue_comment_url":"https://api.github.com/repos/SPccman/TranslateProject/issues/comments/{number}","contents_url":"https://api.github.com/repos/SPccman/TranslateProject/contents/{+path}","compare_url":"https://api.github.com/repos/SPccman/TranslateProject/compare/{base}...{head}","merges_url":"https://api.github.com/repos/SPccman/TranslateProject/merges","archive_url":"https://api.github.com/repos/SPccman/TranslateProject/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/SPccman/TranslateProject/downloads","issues_url":"https://api.github.com/repos/SPccman/TranslateProject/issues{/number}","pulls_url":"https://api.github.com/repos/SPccman/TranslateProject/pulls{/number}","milestones_url":"https://api.github.com/repos/SPccman/TranslateProject/milestones{/number}","notifications_url":"https://api.github.com/repos/SPccman/TranslateProject/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/SPccman/TranslateProject/labels{/name}","releases_url":"https://api.github.com/repos/SPccman/TranslateProject/releases{/id}","created_at":"2014-09-13T09:13:23Z","updated_at":"2014-11-28T14:36:39Z","pushed_at":"2015-01-01T10:02:45Z","git_url":"git://github.com/SPccman/TranslateProject.git","ssh_url":"git@github.com:SPccman/TranslateProject.git","clone_url":"https://github.com/SPccman/TranslateProject.git","svn_url":"https://github.com/SPccman/TranslateProject","homepage":"http://lctt.github.io/","size":12992,"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":"LCTT:master","ref":"master","sha":"e41ff61df76a302c9a085532bd323212b1baa39b","user":{"login":"LCTT","id":5432002,"avatar_url":"https://avatars.githubusercontent.com/u/5432002?v=3","gravatar_id":"","url":"https://api.github.com/users/LCTT","html_url":"https://github.com/LCTT","followers_url":"https://api.github.com/users/LCTT/followers","following_url":"https://api.github.com/users/LCTT/following{/other_user}","gists_url":"https://api.github.com/users/LCTT/gists{/gist_id}","starred_url":"https://api.github.com/users/LCTT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/LCTT/subscriptions","organizations_url":"https://api.github.com/users/LCTT/orgs","repos_url":"https://api.github.com/users/LCTT/repos","events_url":"https://api.github.com/users/LCTT/events{/privacy}","received_events_url":"https://api.github.com/users/LCTT/received_events","type":"Organization","site_admin":false},"repo":{"id":12745174,"name":"TranslateProject","full_name":"LCTT/TranslateProject","owner":{"login":"LCTT","id":5432002,"avatar_url":"https://avatars.githubusercontent.com/u/5432002?v=3","gravatar_id":"","url":"https://api.github.com/users/LCTT","html_url":"https://github.com/LCTT","followers_url":"https://api.github.com/users/LCTT/followers","following_url":"https://api.github.com/users/LCTT/following{/other_user}","gists_url":"https://api.github.com/users/LCTT/gists{/gist_id}","starred_url":"https://api.github.com/users/LCTT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/LCTT/subscriptions","organizations_url":"https://api.github.com/users/LCTT/orgs","repos_url":"https://api.github.com/users/LCTT/repos","events_url":"https://api.github.com/users/LCTT/events{/privacy}","received_events_url":"https://api.github.com/users/LCTT/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/LCTT/TranslateProject","description":"Linux中国翻译项目","fork":false,"url":"https://api.github.com/repos/LCTT/TranslateProject","forks_url":"https://api.github.com/repos/LCTT/TranslateProject/forks","keys_url":"https://api.github.com/repos/LCTT/TranslateProject/keys{/key_id}","collaborators_url":"https://api.github.com/repos/LCTT/TranslateProject/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/LCTT/TranslateProject/teams","hooks_url":"https://api.github.com/repos/LCTT/TranslateProject/hooks","issue_events_url":"https://api.github.com/repos/LCTT/TranslateProject/issues/events{/number}","events_url":"https://api.github.com/repos/LCTT/TranslateProject/events","assignees_url":"https://api.github.com/repos/LCTT/TranslateProject/assignees{/user}","branches_url":"https://api.github.com/repos/LCTT/TranslateProject/branches{/branch}","tags_url":"https://api.github.com/repos/LCTT/TranslateProject/tags","blobs_url":"https://api.github.com/repos/LCTT/TranslateProject/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/LCTT/TranslateProject/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/LCTT/TranslateProject/git/refs{/sha}","trees_url":"https://api.github.com/repos/LCTT/TranslateProject/git/trees{/sha}","statuses_url":"https://api.github.com/repos/LCTT/TranslateProject/statuses/{sha}","languages_url":"https://api.github.com/repos/LCTT/TranslateProject/languages","stargazers_url":"https://api.github.com/repos/LCTT/TranslateProject/stargazers","contributors_url":"https://api.github.com/repos/LCTT/TranslateProject/contributors","subscribers_url":"https://api.github.com/repos/LCTT/TranslateProject/subscribers","subscription_url":"https://api.github.com/repos/LCTT/TranslateProject/subscription","commits_url":"https://api.github.com/repos/LCTT/TranslateProject/commits{/sha}","git_commits_url":"https://api.github.com/repos/LCTT/TranslateProject/git/commits{/sha}","comments_url":"https://api.github.com/repos/LCTT/TranslateProject/comments{/number}","issue_comment_url":"https://api.github.com/repos/LCTT/TranslateProject/issues/comments/{number}","contents_url":"https://api.github.com/repos/LCTT/TranslateProject/contents/{+path}","compare_url":"https://api.github.com/repos/LCTT/TranslateProject/compare/{base}...{head}","merges_url":"https://api.github.com/repos/LCTT/TranslateProject/merges","archive_url":"https://api.github.com/repos/LCTT/TranslateProject/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/LCTT/TranslateProject/downloads","issues_url":"https://api.github.com/repos/LCTT/TranslateProject/issues{/number}","pulls_url":"https://api.github.com/repos/LCTT/TranslateProject/pulls{/number}","milestones_url":"https://api.github.com/repos/LCTT/TranslateProject/milestones{/number}","notifications_url":"https://api.github.com/repos/LCTT/TranslateProject/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/LCTT/TranslateProject/labels{/name}","releases_url":"https://api.github.com/repos/LCTT/TranslateProject/releases{/id}","created_at":"2013-09-11T01:54:15Z","updated_at":"2014-12-30T18:55:59Z","pushed_at":"2015-01-01T15:14:19Z","git_url":"git://github.com/LCTT/TranslateProject.git","ssh_url":"git@github.com:LCTT/TranslateProject.git","clone_url":"https://github.com/LCTT/TranslateProject.git","svn_url":"https://github.com/LCTT/TranslateProject","homepage":"http://lctt.github.io/","size":30501,"stargazers_count":166,"watchers_count":166,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":198,"mirror_url":null,"open_issues_count":0,"forks":198,"open_issues":0,"watchers":166,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/LCTT/TranslateProject/pulls/2184"},"html":{"href":"https://github.com/LCTT/TranslateProject/pull/2184"},"issue":{"href":"https://api.github.com/repos/LCTT/TranslateProject/issues/2184"},"comments":{"href":"https://api.github.com/repos/LCTT/TranslateProject/issues/2184/comments"},"review_comments":{"href":"https://api.github.com/repos/LCTT/TranslateProject/pulls/2184/comments"},"review_comment":{"href":"https://api.github.com/repos/LCTT/TranslateProject/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/LCTT/TranslateProject/pulls/2184/commits"},"statuses":{"href":"https://api.github.com/repos/LCTT/TranslateProject/statuses/7429dad38ec3d3ec85defc572e565d26b2489d0a"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"wxy","id":128338,"avatar_url":"https://avatars.githubusercontent.com/u/128338?v=3","gravatar_id":"","url":"https://api.github.com/users/wxy","html_url":"https://github.com/wxy","followers_url":"https://api.github.com/users/wxy/followers","following_url":"https://api.github.com/users/wxy/following{/other_user}","gists_url":"https://api.github.com/users/wxy/gists{/gist_id}","starred_url":"https://api.github.com/users/wxy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wxy/subscriptions","organizations_url":"https://api.github.com/users/wxy/orgs","repos_url":"https://api.github.com/users/wxy/repos","events_url":"https://api.github.com/users/wxy/events{/privacy}","received_events_url":"https://api.github.com/users/wxy/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":2,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:14:19Z","org":{"id":5432002,"login":"LCTT","gravatar_id":"","url":"https://api.github.com/orgs/LCTT","avatar_url":"https://avatars.githubusercontent.com/u/5432002?"}} +,{"id":"2489657675","type":"PushEvent","actor":{"id":4686622,"login":"raryosu","gravatar_id":"","url":"https://api.github.com/users/raryosu","avatar_url":"https://avatars.githubusercontent.com/u/4686622?"},"repo":{"id":25871284,"name":"raryosu/djangoblog","url":"https://api.github.com/repos/raryosu/djangoblog"},"payload":{"push_id":536866961,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"ed52d895e0bfe4b01f48bae864ee1342cf23a740","before":"d7a970301a612fe1e5fd3dea53965a6c0076c69f","commits":[{"sha":"32a2da63223db0f6338cce284d2f9cb1d90e0263","author":{"email":"667a5e8e59299633e9d6b965cbb15b0075275d47@gmail.com","name":"raryosu"},"message":"user.nameとか設定してなかったし確認","distinct":true,"url":"https://api.github.com/repos/raryosu/djangoblog/commits/32a2da63223db0f6338cce284d2f9cb1d90e0263"},{"sha":"ed52d895e0bfe4b01f48bae864ee1342cf23a740","author":{"email":"667a5e8e59299633e9d6b965cbb15b0075275d47@gmail.com","name":"raryosu"},"message":"marged?","distinct":true,"url":"https://api.github.com/repos/raryosu/djangoblog/commits/ed52d895e0bfe4b01f48bae864ee1342cf23a740"}]},"public":true,"created_at":"2015-01-01T15:14:19Z"} +,{"id":"2489657676","type":"PushEvent","actor":{"id":1830959,"login":"zebMcCorkle","gravatar_id":"","url":"https://api.github.com/users/zebMcCorkle","avatar_url":"https://avatars.githubusercontent.com/u/1830959?"},"repo":{"id":28688375,"name":"zebMcCorkle/ecocc-server","url":"https://api.github.com/repos/zebMcCorkle/ecocc-server"},"payload":{"push_id":536866963,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"56183330ae818e57f09724b932af2e345d1c888a","before":"5d170eedc08b0497ae37394da60131694f161b86","commits":[{"sha":"56183330ae818e57f09724b932af2e345d1c888a","author":{"email":"669d9dedf3e9850c1e91eac4c93360c03ab812cb@brenhamk-12.net","name":"unknown"},"message":"More Heroku!","distinct":true,"url":"https://api.github.com/repos/zebMcCorkle/ecocc-server/commits/56183330ae818e57f09724b932af2e345d1c888a"}]},"public":true,"created_at":"2015-01-01T15:14:20Z"} +,{"id":"2489657678","type":"CreateEvent","actor":{"id":1589480,"login":"BrewTestBot","gravatar_id":"","url":"https://api.github.com/users/BrewTestBot","avatar_url":"https://avatars.githubusercontent.com/u/1589480?"},"repo":{"id":14002592,"name":"BrewTestBot/homebrew","url":"https://api.github.com/repos/BrewTestBot/homebrew"},"payload":{"ref":"pr-35419","ref_type":"tag","master_branch":"master","description":"The missing package manager for OS X.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:20Z"} +,{"id":"2489657683","type":"PushEvent","actor":{"id":4627837,"login":"jessemillar","gravatar_id":"","url":"https://api.github.com/users/jessemillar","avatar_url":"https://avatars.githubusercontent.com/u/4627837?"},"repo":{"id":17984396,"name":"jessemillar/Theo","url":"https://api.github.com/repos/jessemillar/Theo"},"payload":{"push_id":536866965,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3ec450c376297383e6808f7e7b04914591e2dcff","before":"66f1b00a43a7dfec50b22a6a7ecc221024d5596c","commits":[{"sha":"3ec450c376297383e6808f7e7b04914591e2dcff","author":{"email":"0ba40b71986250aad0903c7ebcfd76a410af35fb@gmail.com","name":"Jesse Millar"},"message":"Update LICENSE.md","distinct":true,"url":"https://api.github.com/repos/jessemillar/Theo/commits/3ec450c376297383e6808f7e7b04914591e2dcff"}]},"public":true,"created_at":"2015-01-01T15:14:20Z"} +,{"id":"2489657685","type":"PushEvent","actor":{"id":890177,"login":"water0426way","gravatar_id":"","url":"https://api.github.com/users/water0426way","avatar_url":"https://avatars.githubusercontent.com/u/890177?"},"repo":{"id":28231698,"name":"water0426way/violin","url":"https://api.github.com/repos/water0426way/violin"},"payload":{"push_id":536866966,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"303ad394204545c5c7853a1cf2f040502ac99820","before":"68b064af9764e131ae51fc72b1d8ceb6c4cf5021","commits":[{"sha":"303ad394204545c5c7853a1cf2f040502ac99820","author":{"email":"39c407c7b45b3044eb8cb9a219e502598c748a84@gmail.com","name":"MarioGrabova"},"message":"Delete violin.c","distinct":true,"url":"https://api.github.com/repos/water0426way/violin/commits/303ad394204545c5c7853a1cf2f040502ac99820"}]},"public":true,"created_at":"2015-01-01T15:14:20Z"} +,{"id":"2489657686","type":"CreateEvent","actor":{"id":10364419,"login":"tinuxin","gravatar_id":"","url":"https://api.github.com/users/tinuxin","avatar_url":"https://avatars.githubusercontent.com/u/10364419?"},"repo":{"id":28688836,"name":"tinuxin/Whist","url":"https://api.github.com/repos/tinuxin/Whist"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:20Z"} +,{"id":"2489657687","type":"WatchEvent","actor":{"id":833571,"login":"rollbrettler","gravatar_id":"","url":"https://api.github.com/users/rollbrettler","avatar_url":"https://avatars.githubusercontent.com/u/833571?"},"repo":{"id":14640193,"name":"SecUpwN/Android-IMSI-Catcher-Detector","url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:20Z"} +,{"id":"2489657689","type":"PushEvent","actor":{"id":2309483,"login":"initrunlevel0","gravatar_id":"","url":"https://api.github.com/users/initrunlevel0","avatar_url":"https://avatars.githubusercontent.com/u/2309483?"},"repo":{"id":28517777,"name":"initrunlevel0/fpsensor","url":"https://api.github.com/repos/initrunlevel0/fpsensor"},"payload":{"push_id":536866968,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2e5fdc7f6cd66fa6bd6506a26042a927e7740d8d","before":"fa2937493c85e13151e670cccf07deec7e6161da","commits":[{"sha":"2e5fdc7f6cd66fa6bd6506a26042a927e7740d8d","author":{"email":"9575d487af2c7a8dbc0b7f15a694237d2f3820a5@ta.wirama.web.id","name":"Putu Wiramaswara Widya"},"message":"lalala","distinct":true,"url":"https://api.github.com/repos/initrunlevel0/fpsensor/commits/2e5fdc7f6cd66fa6bd6506a26042a927e7740d8d"}]},"public":true,"created_at":"2015-01-01T15:14:20Z"} +,{"id":"2489657693","type":"WatchEvent","actor":{"id":1468294,"login":"apan0206","gravatar_id":"","url":"https://api.github.com/users/apan0206","avatar_url":"https://avatars.githubusercontent.com/u/1468294?"},"repo":{"id":132321,"name":"facebookarchive/three20","url":"https://api.github.com/repos/facebookarchive/three20"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:21Z","org":{"id":7560860,"login":"facebookarchive","gravatar_id":"","url":"https://api.github.com/orgs/facebookarchive","avatar_url":"https://avatars.githubusercontent.com/u/7560860?"}} +,{"id":"2489657696","type":"PushEvent","actor":{"id":6172815,"login":"anbraendle","gravatar_id":"","url":"https://api.github.com/users/anbraendle","avatar_url":"https://avatars.githubusercontent.com/u/6172815?"},"repo":{"id":28687908,"name":"anbraendle/toy_app","url":"https://api.github.com/repos/anbraendle/toy_app"},"payload":{"push_id":536866971,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"0b5835da59450207cd08af5264f8874fa01d2b9b","before":"f61ab715cfd29a99738c1430274a9f321151118e","commits":[{"sha":"87bb79930b1b8ad6e42769485fd2465d43393695","author":{"email":"ca4b0068722ef71811b2d78c6b313b462fb1bb2b@gmail.com","name":"anbraendle"},"message":"add hello world","distinct":true,"url":"https://api.github.com/repos/anbraendle/toy_app/commits/87bb79930b1b8ad6e42769485fd2465d43393695"},{"sha":"0b5835da59450207cd08af5264f8874fa01d2b9b","author":{"email":"ca4b0068722ef71811b2d78c6b313b462fb1bb2b@gmail.com","name":"anbraendle"},"message":"finish toy app","distinct":true,"url":"https://api.github.com/repos/anbraendle/toy_app/commits/0b5835da59450207cd08af5264f8874fa01d2b9b"}]},"public":true,"created_at":"2015-01-01T15:14:21Z"} +,{"id":"2489657697","type":"PushEvent","actor":{"id":128338,"login":"wxy","gravatar_id":"","url":"https://api.github.com/users/wxy","avatar_url":"https://avatars.githubusercontent.com/u/128338?"},"repo":{"id":12745174,"name":"LCTT/TranslateProject","url":"https://api.github.com/repos/LCTT/TranslateProject"},"payload":{"push_id":536866972,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"f42e58092f7ceafd7f4340ddf03338f1fd426169","before":"e41ff61df76a302c9a085532bd323212b1baa39b","commits":[{"sha":"7429dad38ec3d3ec85defc572e565d26b2489d0a","author":{"email":"ccf3d7676588b29d203e6ce2ab7bf93645217aad@qq.com","name":"DoubleC"},"message":"SPccman \n\n申领","distinct":true,"url":"https://api.github.com/repos/LCTT/TranslateProject/commits/7429dad38ec3d3ec85defc572e565d26b2489d0a"},{"sha":"f42e58092f7ceafd7f4340ddf03338f1fd426169","author":{"email":"ffcf1b54d2d33e4d9d81ad1e8f155e260b72c02a@gmail.com","name":"Xingyu.Wang"},"message":"Merge pull request #2184 from SPccman/patch-13\n\nSPccman\r\n下回请用所申领的文章标题作为 PR的标题哈。","distinct":true,"url":"https://api.github.com/repos/LCTT/TranslateProject/commits/f42e58092f7ceafd7f4340ddf03338f1fd426169"}]},"public":true,"created_at":"2015-01-01T15:14:22Z","org":{"id":5432002,"login":"LCTT","gravatar_id":"","url":"https://api.github.com/orgs/LCTT","avatar_url":"https://avatars.githubusercontent.com/u/5432002?"}} +,{"id":"2489657701","type":"ForkEvent","actor":{"id":6346043,"login":"shamain","gravatar_id":"","url":"https://api.github.com/users/shamain","avatar_url":"https://avatars.githubusercontent.com/u/6346043?"},"repo":{"id":22558584,"name":"Pagawa/PgwBrowser","url":"https://api.github.com/repos/Pagawa/PgwBrowser"},"payload":{"forkee":{"id":28688871,"name":"PgwBrowser","full_name":"shamain/PgwBrowser","owner":{"login":"shamain","id":6346043,"avatar_url":"https://avatars.githubusercontent.com/u/6346043?v=3","gravatar_id":"","url":"https://api.github.com/users/shamain","html_url":"https://github.com/shamain","followers_url":"https://api.github.com/users/shamain/followers","following_url":"https://api.github.com/users/shamain/following{/other_user}","gists_url":"https://api.github.com/users/shamain/gists{/gist_id}","starred_url":"https://api.github.com/users/shamain/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shamain/subscriptions","organizations_url":"https://api.github.com/users/shamain/orgs","repos_url":"https://api.github.com/users/shamain/repos","events_url":"https://api.github.com/users/shamain/events{/privacy}","received_events_url":"https://api.github.com/users/shamain/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/shamain/PgwBrowser","description":"Browser & OS / platform detection plugin for jQuery / Zepto","fork":true,"url":"https://api.github.com/repos/shamain/PgwBrowser","forks_url":"https://api.github.com/repos/shamain/PgwBrowser/forks","keys_url":"https://api.github.com/repos/shamain/PgwBrowser/keys{/key_id}","collaborators_url":"https://api.github.com/repos/shamain/PgwBrowser/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/shamain/PgwBrowser/teams","hooks_url":"https://api.github.com/repos/shamain/PgwBrowser/hooks","issue_events_url":"https://api.github.com/repos/shamain/PgwBrowser/issues/events{/number}","events_url":"https://api.github.com/repos/shamain/PgwBrowser/events","assignees_url":"https://api.github.com/repos/shamain/PgwBrowser/assignees{/user}","branches_url":"https://api.github.com/repos/shamain/PgwBrowser/branches{/branch}","tags_url":"https://api.github.com/repos/shamain/PgwBrowser/tags","blobs_url":"https://api.github.com/repos/shamain/PgwBrowser/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/shamain/PgwBrowser/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/shamain/PgwBrowser/git/refs{/sha}","trees_url":"https://api.github.com/repos/shamain/PgwBrowser/git/trees{/sha}","statuses_url":"https://api.github.com/repos/shamain/PgwBrowser/statuses/{sha}","languages_url":"https://api.github.com/repos/shamain/PgwBrowser/languages","stargazers_url":"https://api.github.com/repos/shamain/PgwBrowser/stargazers","contributors_url":"https://api.github.com/repos/shamain/PgwBrowser/contributors","subscribers_url":"https://api.github.com/repos/shamain/PgwBrowser/subscribers","subscription_url":"https://api.github.com/repos/shamain/PgwBrowser/subscription","commits_url":"https://api.github.com/repos/shamain/PgwBrowser/commits{/sha}","git_commits_url":"https://api.github.com/repos/shamain/PgwBrowser/git/commits{/sha}","comments_url":"https://api.github.com/repos/shamain/PgwBrowser/comments{/number}","issue_comment_url":"https://api.github.com/repos/shamain/PgwBrowser/issues/comments/{number}","contents_url":"https://api.github.com/repos/shamain/PgwBrowser/contents/{+path}","compare_url":"https://api.github.com/repos/shamain/PgwBrowser/compare/{base}...{head}","merges_url":"https://api.github.com/repos/shamain/PgwBrowser/merges","archive_url":"https://api.github.com/repos/shamain/PgwBrowser/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/shamain/PgwBrowser/downloads","issues_url":"https://api.github.com/repos/shamain/PgwBrowser/issues{/number}","pulls_url":"https://api.github.com/repos/shamain/PgwBrowser/pulls{/number}","milestones_url":"https://api.github.com/repos/shamain/PgwBrowser/milestones{/number}","notifications_url":"https://api.github.com/repos/shamain/PgwBrowser/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/shamain/PgwBrowser/labels{/name}","releases_url":"https://api.github.com/repos/shamain/PgwBrowser/releases{/id}","created_at":"2015-01-01T15:14:22Z","updated_at":"2014-10-21T15:23:32Z","pushed_at":"2014-09-21T15:49:23Z","git_url":"git://github.com/shamain/PgwBrowser.git","ssh_url":"git@github.com:shamain/PgwBrowser.git","clone_url":"https://github.com/shamain/PgwBrowser.git","svn_url":"https://github.com/shamain/PgwBrowser","homepage":"http://pgwjs.com/pgwbrowser/","size":193,"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:14:22Z","org":{"id":6427064,"login":"Pagawa","gravatar_id":"","url":"https://api.github.com/orgs/Pagawa","avatar_url":"https://avatars.githubusercontent.com/u/6427064?"}} +,{"id":"2489657702","type":"PushEvent","actor":{"id":3797972,"login":"oceanjack","gravatar_id":"","url":"https://api.github.com/users/oceanjack","avatar_url":"https://avatars.githubusercontent.com/u/3797972?"},"repo":{"id":27213484,"name":"oceanjack/oceanjack.github.io","url":"https://api.github.com/repos/oceanjack/oceanjack.github.io"},"payload":{"push_id":536866975,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9aa625738da458a0f9cb916468fc381bb8ff8188","before":"76afe92bca551fcc4a6c7c5aa79ca2771f74df30","commits":[{"sha":"9aa625738da458a0f9cb916468fc381bb8ff8188","author":{"email":"e7962a36105d0ad4343dd588376fafc81e75f2e2@gmail.com","name":"oceanjack"},"message":"update","distinct":true,"url":"https://api.github.com/repos/oceanjack/oceanjack.github.io/commits/9aa625738da458a0f9cb916468fc381bb8ff8188"}]},"public":true,"created_at":"2015-01-01T15:14:22Z"} +,{"id":"2489657707","type":"CreateEvent","actor":{"id":10351269,"login":"Passw0rm-HE","gravatar_id":"","url":"https://api.github.com/users/Passw0rm-HE","avatar_url":"https://avatars.githubusercontent.com/u/10351269?"},"repo":{"id":28688822,"name":"Passw0rm-HE/Xwaydah","url":"https://api.github.com/repos/Passw0rm-HE/Xwaydah"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:23Z"} +,{"id":"2489657710","type":"PullRequestReviewCommentEvent","actor":{"id":8816755,"login":"nbouteme","gravatar_id":"","url":"https://api.github.com/users/nbouteme","avatar_url":"https://avatars.githubusercontent.com/u/8816755?"},"repo":{"id":28026599,"name":"nbouteme/AFK","url":"https://api.github.com/repos/nbouteme/AFK"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/nbouteme/AFK/pulls/comments/22400147","id":22400147,"diff_hunk":"@@ -0,0 +1,58 @@\n+getMessage());\n+\t\t}\n+\t\treturn $db;\n+\t\t\n+\t}\n+\t\n+\t#function used to encrypt passwords\n+\tstring encrypt($password)\n+\t{\n+\t\treturn sha1(salt1.$password.salt2);\n+\t}\n+\t\n+\t\n+\t#Function used to get a user\n+\tfunction getUser($id_user)\n+\t{\n+\t\t$db = get_pdo(); #We connect to the database\n+\t\t$selected_user = $db->prepare","path":"common.php","position":41,"original_position":41,"commit_id":"0c6d0d563a0acc2b2da2ca11438a01eed46fbf03","original_commit_id":"0c6d0d563a0acc2b2da2ca11438a01eed46fbf03","user":{"login":"nbouteme","id":8816755,"avatar_url":"https://avatars.githubusercontent.com/u/8816755?v=3","gravatar_id":"","url":"https://api.github.com/users/nbouteme","html_url":"https://github.com/nbouteme","followers_url":"https://api.github.com/users/nbouteme/followers","following_url":"https://api.github.com/users/nbouteme/following{/other_user}","gists_url":"https://api.github.com/users/nbouteme/gists{/gist_id}","starred_url":"https://api.github.com/users/nbouteme/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nbouteme/subscriptions","organizations_url":"https://api.github.com/users/nbouteme/orgs","repos_url":"https://api.github.com/users/nbouteme/repos","events_url":"https://api.github.com/users/nbouteme/events{/privacy}","received_events_url":"https://api.github.com/users/nbouteme/received_events","type":"User","site_admin":false},"body":"Oublis de ;","created_at":"2015-01-01T15:14:24Z","updated_at":"2015-01-01T15:14:24Z","html_url":"https://github.com/nbouteme/AFK/pull/2#discussion_r22400147","pull_request_url":"https://api.github.com/repos/nbouteme/AFK/pulls/2","_links":{"self":{"href":"https://api.github.com/repos/nbouteme/AFK/pulls/comments/22400147"},"html":{"href":"https://github.com/nbouteme/AFK/pull/2#discussion_r22400147"},"pull_request":{"href":"https://api.github.com/repos/nbouteme/AFK/pulls/2"}}},"pull_request":{"url":"https://api.github.com/repos/nbouteme/AFK/pulls/2","id":26742949,"html_url":"https://github.com/nbouteme/AFK/pull/2","diff_url":"https://github.com/nbouteme/AFK/pull/2.diff","patch_url":"https://github.com/nbouteme/AFK/pull/2.patch","issue_url":"https://api.github.com/repos/nbouteme/AFK/issues/2","number":2,"state":"open","locked":false,"title":"Création de common.php","user":{"login":"SBerda","id":5712693,"avatar_url":"https://avatars.githubusercontent.com/u/5712693?v=3","gravatar_id":"","url":"https://api.github.com/users/SBerda","html_url":"https://github.com/SBerda","followers_url":"https://api.github.com/users/SBerda/followers","following_url":"https://api.github.com/users/SBerda/following{/other_user}","gists_url":"https://api.github.com/users/SBerda/gists{/gist_id}","starred_url":"https://api.github.com/users/SBerda/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SBerda/subscriptions","organizations_url":"https://api.github.com/users/SBerda/orgs","repos_url":"https://api.github.com/users/SBerda/repos","events_url":"https://api.github.com/users/SBerda/events{/privacy}","received_events_url":"https://api.github.com/users/SBerda/received_events","type":"User","site_admin":false},"body":"Ce fichier contient des fonctions pratiques qui seront utilisées un peupartout\r\nNouvelles fonctions:\r\ngetPdo();//Récupére un objet pdo\r\nencrypt($password);//Renvois un sha1 salé du mot de pass passé en param\r\ngetUser($id_user);//Renvois un objet user correspondant à l'id en param\r\ncheckMail($mail);//Vérifie que le mail passé en param a la syntaxe de mail","created_at":"2015-01-01T13:00:46Z","updated_at":"2015-01-01T15:14:24Z","closed_at":null,"merged_at":null,"merge_commit_sha":"222897c7dec97a5aee1e6b89bb56122ac6098ae5","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/nbouteme/AFK/pulls/2/commits","review_comments_url":"https://api.github.com/repos/nbouteme/AFK/pulls/2/comments","review_comment_url":"https://api.github.com/repos/nbouteme/AFK/pulls/comments/{number}","comments_url":"https://api.github.com/repos/nbouteme/AFK/issues/2/comments","statuses_url":"https://api.github.com/repos/nbouteme/AFK/statuses/0c6d0d563a0acc2b2da2ca11438a01eed46fbf03","head":{"label":"SBerda:master","ref":"master","sha":"0c6d0d563a0acc2b2da2ca11438a01eed46fbf03","user":{"login":"SBerda","id":5712693,"avatar_url":"https://avatars.githubusercontent.com/u/5712693?v=3","gravatar_id":"","url":"https://api.github.com/users/SBerda","html_url":"https://github.com/SBerda","followers_url":"https://api.github.com/users/SBerda/followers","following_url":"https://api.github.com/users/SBerda/following{/other_user}","gists_url":"https://api.github.com/users/SBerda/gists{/gist_id}","starred_url":"https://api.github.com/users/SBerda/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SBerda/subscriptions","organizations_url":"https://api.github.com/users/SBerda/orgs","repos_url":"https://api.github.com/users/SBerda/repos","events_url":"https://api.github.com/users/SBerda/events{/privacy}","received_events_url":"https://api.github.com/users/SBerda/received_events","type":"User","site_admin":false},"repo":{"id":28030951,"name":"AFK","full_name":"SBerda/AFK","owner":{"login":"SBerda","id":5712693,"avatar_url":"https://avatars.githubusercontent.com/u/5712693?v=3","gravatar_id":"","url":"https://api.github.com/users/SBerda","html_url":"https://github.com/SBerda","followers_url":"https://api.github.com/users/SBerda/followers","following_url":"https://api.github.com/users/SBerda/following{/other_user}","gists_url":"https://api.github.com/users/SBerda/gists{/gist_id}","starred_url":"https://api.github.com/users/SBerda/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SBerda/subscriptions","organizations_url":"https://api.github.com/users/SBerda/orgs","repos_url":"https://api.github.com/users/SBerda/repos","events_url":"https://api.github.com/users/SBerda/events{/privacy}","received_events_url":"https://api.github.com/users/SBerda/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/SBerda/AFK","description":"","fork":true,"url":"https://api.github.com/repos/SBerda/AFK","forks_url":"https://api.github.com/repos/SBerda/AFK/forks","keys_url":"https://api.github.com/repos/SBerda/AFK/keys{/key_id}","collaborators_url":"https://api.github.com/repos/SBerda/AFK/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/SBerda/AFK/teams","hooks_url":"https://api.github.com/repos/SBerda/AFK/hooks","issue_events_url":"https://api.github.com/repos/SBerda/AFK/issues/events{/number}","events_url":"https://api.github.com/repos/SBerda/AFK/events","assignees_url":"https://api.github.com/repos/SBerda/AFK/assignees{/user}","branches_url":"https://api.github.com/repos/SBerda/AFK/branches{/branch}","tags_url":"https://api.github.com/repos/SBerda/AFK/tags","blobs_url":"https://api.github.com/repos/SBerda/AFK/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/SBerda/AFK/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/SBerda/AFK/git/refs{/sha}","trees_url":"https://api.github.com/repos/SBerda/AFK/git/trees{/sha}","statuses_url":"https://api.github.com/repos/SBerda/AFK/statuses/{sha}","languages_url":"https://api.github.com/repos/SBerda/AFK/languages","stargazers_url":"https://api.github.com/repos/SBerda/AFK/stargazers","contributors_url":"https://api.github.com/repos/SBerda/AFK/contributors","subscribers_url":"https://api.github.com/repos/SBerda/AFK/subscribers","subscription_url":"https://api.github.com/repos/SBerda/AFK/subscription","commits_url":"https://api.github.com/repos/SBerda/AFK/commits{/sha}","git_commits_url":"https://api.github.com/repos/SBerda/AFK/git/commits{/sha}","comments_url":"https://api.github.com/repos/SBerda/AFK/comments{/number}","issue_comment_url":"https://api.github.com/repos/SBerda/AFK/issues/comments/{number}","contents_url":"https://api.github.com/repos/SBerda/AFK/contents/{+path}","compare_url":"https://api.github.com/repos/SBerda/AFK/compare/{base}...{head}","merges_url":"https://api.github.com/repos/SBerda/AFK/merges","archive_url":"https://api.github.com/repos/SBerda/AFK/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/SBerda/AFK/downloads","issues_url":"https://api.github.com/repos/SBerda/AFK/issues{/number}","pulls_url":"https://api.github.com/repos/SBerda/AFK/pulls{/number}","milestones_url":"https://api.github.com/repos/SBerda/AFK/milestones{/number}","notifications_url":"https://api.github.com/repos/SBerda/AFK/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/SBerda/AFK/labels{/name}","releases_url":"https://api.github.com/repos/SBerda/AFK/releases{/id}","created_at":"2014-12-15T10:05:01Z","updated_at":"2015-01-01T13:00:03Z","pushed_at":"2015-01-01T13:00:03Z","git_url":"git://github.com/SBerda/AFK.git","ssh_url":"git@github.com:SBerda/AFK.git","clone_url":"https://github.com/SBerda/AFK.git","svn_url":"https://github.com/SBerda/AFK","homepage":null,"size":158,"stargazers_count":0,"watchers_count":0,"language":"PHP","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"nbouteme:master","ref":"master","sha":"73b2f6e9538cdc3250e0c3f5daf1f10a29a084a6","user":{"login":"nbouteme","id":8816755,"avatar_url":"https://avatars.githubusercontent.com/u/8816755?v=3","gravatar_id":"","url":"https://api.github.com/users/nbouteme","html_url":"https://github.com/nbouteme","followers_url":"https://api.github.com/users/nbouteme/followers","following_url":"https://api.github.com/users/nbouteme/following{/other_user}","gists_url":"https://api.github.com/users/nbouteme/gists{/gist_id}","starred_url":"https://api.github.com/users/nbouteme/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nbouteme/subscriptions","organizations_url":"https://api.github.com/users/nbouteme/orgs","repos_url":"https://api.github.com/users/nbouteme/repos","events_url":"https://api.github.com/users/nbouteme/events{/privacy}","received_events_url":"https://api.github.com/users/nbouteme/received_events","type":"User","site_admin":false},"repo":{"id":28026599,"name":"AFK","full_name":"nbouteme/AFK","owner":{"login":"nbouteme","id":8816755,"avatar_url":"https://avatars.githubusercontent.com/u/8816755?v=3","gravatar_id":"","url":"https://api.github.com/users/nbouteme","html_url":"https://github.com/nbouteme","followers_url":"https://api.github.com/users/nbouteme/followers","following_url":"https://api.github.com/users/nbouteme/following{/other_user}","gists_url":"https://api.github.com/users/nbouteme/gists{/gist_id}","starred_url":"https://api.github.com/users/nbouteme/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nbouteme/subscriptions","organizations_url":"https://api.github.com/users/nbouteme/orgs","repos_url":"https://api.github.com/users/nbouteme/repos","events_url":"https://api.github.com/users/nbouteme/events{/privacy}","received_events_url":"https://api.github.com/users/nbouteme/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/nbouteme/AFK","description":"","fork":false,"url":"https://api.github.com/repos/nbouteme/AFK","forks_url":"https://api.github.com/repos/nbouteme/AFK/forks","keys_url":"https://api.github.com/repos/nbouteme/AFK/keys{/key_id}","collaborators_url":"https://api.github.com/repos/nbouteme/AFK/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/nbouteme/AFK/teams","hooks_url":"https://api.github.com/repos/nbouteme/AFK/hooks","issue_events_url":"https://api.github.com/repos/nbouteme/AFK/issues/events{/number}","events_url":"https://api.github.com/repos/nbouteme/AFK/events","assignees_url":"https://api.github.com/repos/nbouteme/AFK/assignees{/user}","branches_url":"https://api.github.com/repos/nbouteme/AFK/branches{/branch}","tags_url":"https://api.github.com/repos/nbouteme/AFK/tags","blobs_url":"https://api.github.com/repos/nbouteme/AFK/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/nbouteme/AFK/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/nbouteme/AFK/git/refs{/sha}","trees_url":"https://api.github.com/repos/nbouteme/AFK/git/trees{/sha}","statuses_url":"https://api.github.com/repos/nbouteme/AFK/statuses/{sha}","languages_url":"https://api.github.com/repos/nbouteme/AFK/languages","stargazers_url":"https://api.github.com/repos/nbouteme/AFK/stargazers","contributors_url":"https://api.github.com/repos/nbouteme/AFK/contributors","subscribers_url":"https://api.github.com/repos/nbouteme/AFK/subscribers","subscription_url":"https://api.github.com/repos/nbouteme/AFK/subscription","commits_url":"https://api.github.com/repos/nbouteme/AFK/commits{/sha}","git_commits_url":"https://api.github.com/repos/nbouteme/AFK/git/commits{/sha}","comments_url":"https://api.github.com/repos/nbouteme/AFK/comments{/number}","issue_comment_url":"https://api.github.com/repos/nbouteme/AFK/issues/comments/{number}","contents_url":"https://api.github.com/repos/nbouteme/AFK/contents/{+path}","compare_url":"https://api.github.com/repos/nbouteme/AFK/compare/{base}...{head}","merges_url":"https://api.github.com/repos/nbouteme/AFK/merges","archive_url":"https://api.github.com/repos/nbouteme/AFK/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/nbouteme/AFK/downloads","issues_url":"https://api.github.com/repos/nbouteme/AFK/issues{/number}","pulls_url":"https://api.github.com/repos/nbouteme/AFK/pulls{/number}","milestones_url":"https://api.github.com/repos/nbouteme/AFK/milestones{/number}","notifications_url":"https://api.github.com/repos/nbouteme/AFK/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/nbouteme/AFK/labels{/name}","releases_url":"https://api.github.com/repos/nbouteme/AFK/releases{/id}","created_at":"2014-12-15T07:59:30Z","updated_at":"2014-12-15T07:59:30Z","pushed_at":"2014-12-25T21:41:07Z","git_url":"git://github.com/nbouteme/AFK.git","ssh_url":"git@github.com:nbouteme/AFK.git","clone_url":"https://github.com/nbouteme/AFK.git","svn_url":"https://github.com/nbouteme/AFK","homepage":null,"size":122,"stargazers_count":0,"watchers_count":0,"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":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/nbouteme/AFK/pulls/2"},"html":{"href":"https://github.com/nbouteme/AFK/pull/2"},"issue":{"href":"https://api.github.com/repos/nbouteme/AFK/issues/2"},"comments":{"href":"https://api.github.com/repos/nbouteme/AFK/issues/2/comments"},"review_comments":{"href":"https://api.github.com/repos/nbouteme/AFK/pulls/2/comments"},"review_comment":{"href":"https://api.github.com/repos/nbouteme/AFK/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/nbouteme/AFK/pulls/2/commits"},"statuses":{"href":"https://api.github.com/repos/nbouteme/AFK/statuses/0c6d0d563a0acc2b2da2ca11438a01eed46fbf03"}}}},"public":true,"created_at":"2015-01-01T15:14:24Z"} +,{"id":"2489657711","type":"IssueCommentEvent","actor":{"id":9728658,"login":"luc-steffens-2014","gravatar_id":"","url":"https://api.github.com/users/luc-steffens-2014","avatar_url":"https://avatars.githubusercontent.com/u/9728658?"},"repo":{"id":26876090,"name":"2014-OO3/Resort","url":"https://api.github.com/repos/2014-OO3/Resort"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/2014-OO3/Resort/issues/10","labels_url":"https://api.github.com/repos/2014-OO3/Resort/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/2014-OO3/Resort/issues/10/comments","events_url":"https://api.github.com/repos/2014-OO3/Resort/issues/10/events","html_url":"https://github.com/2014-OO3/Resort/issues/10","id":53075679,"number":10,"title":"Data invoeren in database via code","user":{"login":"stephandp","id":9860678,"avatar_url":"https://avatars.githubusercontent.com/u/9860678?v=3","gravatar_id":"","url":"https://api.github.com/users/stephandp","html_url":"https://github.com/stephandp","followers_url":"https://api.github.com/users/stephandp/followers","following_url":"https://api.github.com/users/stephandp/following{/other_user}","gists_url":"https://api.github.com/users/stephandp/gists{/gist_id}","starred_url":"https://api.github.com/users/stephandp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stephandp/subscriptions","organizations_url":"https://api.github.com/users/stephandp/orgs","repos_url":"https://api.github.com/users/stephandp/repos","events_url":"https://api.github.com/users/stephandp/events{/privacy}","received_events_url":"https://api.github.com/users/stephandp/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/2014-OO3/Resort/labels/help+wanted","name":"help wanted","color":"159818"},{"url":"https://api.github.com/repos/2014-OO3/Resort/labels/question","name":"question","color":"cc317c"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2014-12-29T22:05:31Z","updated_at":"2015-01-01T15:14:24Z","closed_at":null,"body":"Weet er iemand waar precies in de code de sql commando's staan? \r\nOf hoe je via code gegevens in de database schrijft? "},"comment":{"url":"https://api.github.com/repos/2014-OO3/Resort/issues/comments/68488793","html_url":"https://github.com/2014-OO3/Resort/issues/10#issuecomment-68488793","issue_url":"https://api.github.com/repos/2014-OO3/Resort/issues/10","id":68488793,"user":{"login":"luc-steffens-2014","id":9728658,"avatar_url":"https://avatars.githubusercontent.com/u/9728658?v=3","gravatar_id":"","url":"https://api.github.com/users/luc-steffens-2014","html_url":"https://github.com/luc-steffens-2014","followers_url":"https://api.github.com/users/luc-steffens-2014/followers","following_url":"https://api.github.com/users/luc-steffens-2014/following{/other_user}","gists_url":"https://api.github.com/users/luc-steffens-2014/gists{/gist_id}","starred_url":"https://api.github.com/users/luc-steffens-2014/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/luc-steffens-2014/subscriptions","organizations_url":"https://api.github.com/users/luc-steffens-2014/orgs","repos_url":"https://api.github.com/users/luc-steffens-2014/repos","events_url":"https://api.github.com/users/luc-steffens-2014/events{/privacy}","received_events_url":"https://api.github.com/users/luc-steffens-2014/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:14:24Z","updated_at":"2015-01-01T15:14:24Z","body":"@stephandp \r\nJe kan de customers gewoon aanmaken zoals de bungalows en de parken in de init-db.\r\nGoed idee om daar aparte methodes voor het aanmaken van de parken en de bungalows. Hierbij een voorbeeld voor de customers\r\n\r\n@KarlienDeSchutter Ik maak een nieuwe issue aan om daar het antwoord op te geven\r\n\r\n```java\r\n public void createCustomers() {\r\n\r\n List objectsToSave = new LinkedList<>();\r\n\r\n CustomerEntity customerEntity = new CustomerEntity();\r\n customerEntity.setFirstName(\"Jos\");\r\n customerEntity.setLastName(\"Verstraeten\");\r\n objectsToSave.add(customerEntity);\r\n\r\n for (Object objectsToSave1 : objectsToSave) {\r\n em.persist(objectsToSave1);\r\n }\r\n }\r\n```"}},"public":true,"created_at":"2015-01-01T15:14:24Z","org":{"id":9849126,"login":"2014-OO3","gravatar_id":"","url":"https://api.github.com/orgs/2014-OO3","avatar_url":"https://avatars.githubusercontent.com/u/9849126?"}} +,{"id":"2489657712","type":"IssueCommentEvent","actor":{"id":4761614,"login":"SylvainPlessis","gravatar_id":"","url":"https://api.github.com/users/SylvainPlessis","avatar_url":"https://avatars.githubusercontent.com/u/4761614?"},"repo":{"id":11007288,"name":"libantioch/antioch","url":"https://api.github.com/repos/libantioch/antioch"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/libantioch/antioch/issues/72","labels_url":"https://api.github.com/repos/libantioch/antioch/issues/72/labels{/name}","comments_url":"https://api.github.com/repos/libantioch/antioch/issues/72/comments","events_url":"https://api.github.com/repos/libantioch/antioch/issues/72/events","html_url":"https://github.com/libantioch/antioch/pull/72","id":37911605,"number":72,"title":"Input parsing formats","user":{"login":"SylvainPlessis","id":4761614,"avatar_url":"https://avatars.githubusercontent.com/u/4761614?v=3","gravatar_id":"","url":"https://api.github.com/users/SylvainPlessis","html_url":"https://github.com/SylvainPlessis","followers_url":"https://api.github.com/users/SylvainPlessis/followers","following_url":"https://api.github.com/users/SylvainPlessis/following{/other_user}","gists_url":"https://api.github.com/users/SylvainPlessis/gists{/gist_id}","starred_url":"https://api.github.com/users/SylvainPlessis/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SylvainPlessis/subscriptions","organizations_url":"https://api.github.com/users/SylvainPlessis/orgs","repos_url":"https://api.github.com/users/SylvainPlessis/repos","events_url":"https://api.github.com/users/SylvainPlessis/events{/privacy}","received_events_url":"https://api.github.com/users/SylvainPlessis/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":23,"created_at":"2014-07-15T18:26:05Z","updated_at":"2015-01-01T15:14:24Z","closed_at":"2015-01-01T04:23:26Z","pull_request":{"url":"https://api.github.com/repos/libantioch/antioch/pulls/72","html_url":"https://github.com/libantioch/antioch/pull/72","diff_url":"https://github.com/libantioch/antioch/pull/72.diff","patch_url":"https://github.com/libantioch/antioch/pull/72.patch"},"body":"Here is the chemkin parser in the new parsing design.\r\nThere are two/three levels in this design:\r\n - the read_reaction_data, templated around a parser\r\n - the parser itself,\r\n - if needed, low-level methods for the parsers (tiny_xml for the xml parser, none needed for chemkin)\r\n\r\nThe global high-level method is somewhat clumsy, a little bit too much adapted to the xml parser, nothing really serious, but I keep an option to make it more elegant and standardize a bit more the parsers.\r\nA noteworthy thing is that though it's not paranoid (yet), it already won't let a parser get away with a bad unit or bad representation, this is a good point for any parser wanted in the future, there is no need to know in details what's happening to have something that works cleanly.\r\n\r\nThe chemkin parser is not exhaustive, but it's fully operable with the file I have from combustion (added in the inputs for the test) and others I've seen Basically you'll have ``standard'' kinetics with it. I've finally choose the option to write it almost from scratch, please have a look at the *ascii_getline* method (src/utilities/include/antioch/string_utils.h). It's basically a *getline* method that deals with the different end-of-line a file can contain, and clearly the chemkin file I had started its life on Windows. This is something to be expected I guess. Anyway, I want at the very least an approval of this method before anything happens.\r\n\r\nAlso it lacks a little bit of documentation, stating for instance that no photochemistry is supported by the chemkin parser, that the weird SRI falloff is not supported either, stuffs like that we might want to deal with in the futur."},"comment":{"url":"https://api.github.com/repos/libantioch/antioch/issues/comments/68488794","html_url":"https://github.com/libantioch/antioch/pull/72#issuecomment-68488794","issue_url":"https://api.github.com/repos/libantioch/antioch/issues/72","id":68488794,"user":{"login":"SylvainPlessis","id":4761614,"avatar_url":"https://avatars.githubusercontent.com/u/4761614?v=3","gravatar_id":"","url":"https://api.github.com/users/SylvainPlessis","html_url":"https://github.com/SylvainPlessis","followers_url":"https://api.github.com/users/SylvainPlessis/followers","following_url":"https://api.github.com/users/SylvainPlessis/following{/other_user}","gists_url":"https://api.github.com/users/SylvainPlessis/gists{/gist_id}","starred_url":"https://api.github.com/users/SylvainPlessis/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SylvainPlessis/subscriptions","organizations_url":"https://api.github.com/users/SylvainPlessis/orgs","repos_url":"https://api.github.com/users/SylvainPlessis/repos","events_url":"https://api.github.com/users/SylvainPlessis/events{/privacy}","received_events_url":"https://api.github.com/users/SylvainPlessis/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:14:24Z","updated_at":"2015-01-01T15:14:24Z","body":"> Cool, so the biodiesel thing Jed posted above will work with this?\r\n\r\nIt should, I haven't tested it, but I used this file for the weird ChemKin case that we should support (and cried at every step of it...). But I cannot guarantee that within those forty-twelve billions lines no nasty surprise is lurking, waiting for a nice thermo-kinetics library to temper with."}},"public":true,"created_at":"2015-01-01T15:14:24Z","org":{"id":4841271,"login":"libantioch","gravatar_id":"","url":"https://api.github.com/orgs/libantioch","avatar_url":"https://avatars.githubusercontent.com/u/4841271?"}} +,{"id":"2489657715","type":"WatchEvent","actor":{"id":7996453,"login":"swit-ch","gravatar_id":"","url":"https://api.github.com/users/swit-ch","avatar_url":"https://avatars.githubusercontent.com/u/7996453?"},"repo":{"id":7865284,"name":"dominictarr/hyperscript","url":"https://api.github.com/repos/dominictarr/hyperscript"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:26Z"} +,{"id":"2489657717","type":"IssuesEvent","actor":{"id":9809727,"login":"fire-eggs","gravatar_id":"","url":"https://api.github.com/users/fire-eggs","avatar_url":"https://avatars.githubusercontent.com/u/9809727?"},"repo":{"id":28404527,"name":"fire-eggs/DanbooruBrowser","url":"https://api.github.com/repos/fire-eggs/DanbooruBrowser"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/fire-eggs/DanbooruBrowser/issues/3","labels_url":"https://api.github.com/repos/fire-eggs/DanbooruBrowser/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/fire-eggs/DanbooruBrowser/issues/3/comments","events_url":"https://api.github.com/repos/fire-eggs/DanbooruBrowser/issues/3/events","html_url":"https://github.com/fire-eggs/DanbooruBrowser/issues/3","id":53221621,"number":3,"title":"Image downloads \"stuck\"","user":{"login":"fire-eggs","id":9809727,"avatar_url":"https://avatars.githubusercontent.com/u/9809727?v=3","gravatar_id":"","url":"https://api.github.com/users/fire-eggs","html_url":"https://github.com/fire-eggs","followers_url":"https://api.github.com/users/fire-eggs/followers","following_url":"https://api.github.com/users/fire-eggs/following{/other_user}","gists_url":"https://api.github.com/users/fire-eggs/gists{/gist_id}","starred_url":"https://api.github.com/users/fire-eggs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fire-eggs/subscriptions","organizations_url":"https://api.github.com/users/fire-eggs/orgs","repos_url":"https://api.github.com/users/fire-eggs/repos","events_url":"https://api.github.com/users/fire-eggs/events{/privacy}","received_events_url":"https://api.github.com/users/fire-eggs/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:14:25Z","updated_at":"2015-01-01T15:14:25Z","closed_at":null,"body":"Multiple image downloads in progress. A download must have got \"stuck\", as download status wasn't complete. However, switched servers, and download status stayed \"stuck\". (Got a \"downloads incomplete, are you sure you want to exit?\" prompt on exit).\r\n\r\n1. Do downloads continue from original server after server switch?\r\n2. How can downloads get \"stuck\", how to identify/clear/retry? (e.g. difficult to see which images haven't completed download in the thumbnail view)\r\n"}},"public":true,"created_at":"2015-01-01T15:14:26Z"} +,{"id":"2489657720","type":"IssueCommentEvent","actor":{"id":2159787,"login":"fredl99","gravatar_id":"","url":"https://api.github.com/users/fredl99","avatar_url":"https://avatars.githubusercontent.com/u/2159787?"},"repo":{"id":8987090,"name":"owncloud/shorty","url":"https://api.github.com/repos/owncloud/shorty"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/owncloud/shorty/issues/76","labels_url":"https://api.github.com/repos/owncloud/shorty/issues/76/labels{/name}","comments_url":"https://api.github.com/repos/owncloud/shorty/issues/76/comments","events_url":"https://api.github.com/repos/owncloud/shorty/issues/76/events","html_url":"https://github.com/owncloud/shorty/issues/76","id":52982471,"number":76,"title":"Maximum length of URLs?","user":{"login":"fredl99","id":2159787,"avatar_url":"https://avatars.githubusercontent.com/u/2159787?v=3","gravatar_id":"","url":"https://api.github.com/users/fredl99","html_url":"https://github.com/fredl99","followers_url":"https://api.github.com/users/fredl99/followers","following_url":"https://api.github.com/users/fredl99/following{/other_user}","gists_url":"https://api.github.com/users/fredl99/gists{/gist_id}","starred_url":"https://api.github.com/users/fredl99/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fredl99/subscriptions","organizations_url":"https://api.github.com/users/fredl99/orgs","repos_url":"https://api.github.com/users/fredl99/repos","events_url":"https://api.github.com/users/fredl99/events{/privacy}","received_events_url":"https://api.github.com/users/fredl99/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":38,"created_at":"2014-12-28T14:37:03Z","updated_at":"2015-01-01T15:14:25Z","closed_at":null,"body":"Re: Shorty 0.4.4, ownCloud 7.0.4 (stable)\r\n\r\nHi,\r\nTrying to manually shorten a URL like this one:\r\nhttp://www.willhaben.at/iad/kaufen-und-verkaufen/kfz-zubehoer-motorradteile/audi-a6-c4-seitenspiegel-beide-107995093?adId=107995093\r\nShorty complains: \"Sorry, that target is invalid!\"\r\nWhen using the Bookmarklet it results in an \"Internal Server Error (500)\" :(\r\n\r\nWhen I manually cut away the portion from the righmost slash up to end of the URL then Shorty will accept it. But that's no useful target then. \r\n\r\nSecond: The selected states don't seem to work properly anymore. Any of \"closed\", \"private\" or \"shared\" results in a \"forbidden\" message when calling the short URL, regardless if or which user is logged in. No login-page appears either. The only working status at the moment is \"public\"."},"comment":{"url":"https://api.github.com/repos/owncloud/shorty/issues/comments/68488795","html_url":"https://github.com/owncloud/shorty/issues/76#issuecomment-68488795","issue_url":"https://api.github.com/repos/owncloud/shorty/issues/76","id":68488795,"user":{"login":"fredl99","id":2159787,"avatar_url":"https://avatars.githubusercontent.com/u/2159787?v=3","gravatar_id":"","url":"https://api.github.com/users/fredl99","html_url":"https://github.com/fredl99","followers_url":"https://api.github.com/users/fredl99/followers","following_url":"https://api.github.com/users/fredl99/following{/other_user}","gists_url":"https://api.github.com/users/fredl99/gists{/gist_id}","starred_url":"https://api.github.com/users/fredl99/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fredl99/subscriptions","organizations_url":"https://api.github.com/users/fredl99/orgs","repos_url":"https://api.github.com/users/fredl99/repos","events_url":"https://api.github.com/users/fredl99/events{/privacy}","received_events_url":"https://api.github.com/users/fredl99/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:14:25Z","updated_at":"2015-01-01T15:14:25Z","body":"favicons:\r\n> Since this is fixed I won't separate it into a separate issue here.\r\n\r\nWould have been a cheap opportunity to add to the \"fixed issues\" :laughing: \r\n\r\n> Emphasis of the active sorting order: \r\nThink of visually impaired users\r\n\r\nIn no way I want to sound ignorant. But most browsers/OSs offer high contrast settings these users will \r\nuse anyway. But I won't talk against your decisions with this, since I'm not affected. Maybe a visually impaired user should respond on this.\r\n\r\n> For me the current cursor is a cursor with two horizontal pointers, one left one right. \r\n\r\nYes, same here. And for me it suggests \"expand\". That's why I meant it would fit to \"expand this column to the max\" by collapsing all others. Naturally another pointer would be nice for reverting all back to the last state (replace \"default widths\" as I wrote before, because I didn't consider that these settings are stored somewhere.)\r\n\r\n"}},"public":true,"created_at":"2015-01-01T15:14:26Z","org":{"id":1645051,"login":"owncloud","gravatar_id":"","url":"https://api.github.com/orgs/owncloud","avatar_url":"https://avatars.githubusercontent.com/u/1645051?"}} +,{"id":"2489657721","type":"PushEvent","actor":{"id":640179,"login":"jgmalcolm","gravatar_id":"","url":"https://api.github.com/users/jgmalcolm","avatar_url":"https://avatars.githubusercontent.com/u/640179?"},"repo":{"id":4400430,"name":"jgmalcolm/jgmalcolm.github.io","url":"https://api.github.com/repos/jgmalcolm/jgmalcolm.github.io"},"payload":{"push_id":536866984,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ef78b77adee772c8fc0f5ecf83c51eb0d74e436e","before":"7aff5d3d467e9291474127dbaf67a91329d24688","commits":[{"sha":"ef78b77adee772c8fc0f5ecf83c51eb0d74e436e","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@jgmalcolm.com","name":"malcolm"},"message":"use current directory","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/jgmalcolm.github.io/commits/ef78b77adee772c8fc0f5ecf83c51eb0d74e436e"}]},"public":true,"created_at":"2015-01-01T15:14:26Z"} +,{"id":"2489657723","type":"IssueCommentEvent","actor":{"id":5095435,"login":"BevapDin","gravatar_id":"","url":"https://api.github.com/users/BevapDin","avatar_url":"https://avatars.githubusercontent.com/u/5095435?"},"repo":{"id":5973855,"name":"CleverRaven/Cataclysm-DDA","url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/10650","labels_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/10650/labels{/name}","comments_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/10650/comments","events_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/10650/events","html_url":"https://github.com/CleverRaven/Cataclysm-DDA/issues/10650","id":52952566,"number":10650,"title":"Recharging station does not seem to work","user":{"login":"3721assistant","id":4922850,"avatar_url":"https://avatars.githubusercontent.com/u/4922850?v=3","gravatar_id":"","url":"https://api.github.com/users/3721assistant","html_url":"https://github.com/3721assistant","followers_url":"https://api.github.com/users/3721assistant/followers","following_url":"https://api.github.com/users/3721assistant/following{/other_user}","gists_url":"https://api.github.com/users/3721assistant/gists{/gist_id}","starred_url":"https://api.github.com/users/3721assistant/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/3721assistant/subscriptions","organizations_url":"https://api.github.com/users/3721assistant/orgs","repos_url":"https://api.github.com/users/3721assistant/repos","events_url":"https://api.github.com/users/3721assistant/events{/privacy}","received_events_url":"https://api.github.com/users/3721assistant/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/labels/Bug","name":"Bug","color":"fc2929"},{"url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/labels/Confirmation+Needed","name":"Confirmation Needed","color":"663300"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":7,"created_at":"2014-12-27T09:09:01Z","updated_at":"2015-01-01T15:14:25Z","closed_at":null,"body":"Is it related to the recent performance tweak?\r\n\r\n\r\n\r\n---\r\nWant to back this issue? **[Place a bounty on it!](https://www.bountysource.com/issues/7306849-charge-station-does-not-seem-to-work?utm_campaign=plugin&utm_content=tracker%2F146201&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F146201&utm_medium=issues&utm_source=github).\r\n"},"comment":{"url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/comments/68488796","html_url":"https://github.com/CleverRaven/Cataclysm-DDA/issues/10650#issuecomment-68488796","issue_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/10650","id":68488796,"user":{"login":"BevapDin","id":5095435,"avatar_url":"https://avatars.githubusercontent.com/u/5095435?v=3","gravatar_id":"","url":"https://api.github.com/users/BevapDin","html_url":"https://github.com/BevapDin","followers_url":"https://api.github.com/users/BevapDin/followers","following_url":"https://api.github.com/users/BevapDin/following{/other_user}","gists_url":"https://api.github.com/users/BevapDin/gists{/gist_id}","starred_url":"https://api.github.com/users/BevapDin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BevapDin/subscriptions","organizations_url":"https://api.github.com/users/BevapDin/orgs","repos_url":"https://api.github.com/users/BevapDin/repos","events_url":"https://api.github.com/users/BevapDin/events{/privacy}","received_events_url":"https://api.github.com/users/BevapDin/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:14:25Z","updated_at":"2015-01-01T15:14:25Z","body":"@kevingranade The item with recharge flag is *not* active and as such is not considered when processing the active items. The item can not be made active as it would interfere with its normal active function (it would constantly call the iuse function of the item)."}},"public":true,"created_at":"2015-01-01T15:14:26Z","org":{"id":4367009,"login":"CleverRaven","gravatar_id":"","url":"https://api.github.com/orgs/CleverRaven","avatar_url":"https://avatars.githubusercontent.com/u/4367009?"}} +,{"id":"2489657724","type":"CreateEvent","actor":{"id":7487312,"login":"lina1812","gravatar_id":"","url":"https://api.github.com/users/lina1812","avatar_url":"https://avatars.githubusercontent.com/u/7487312?"},"repo":{"id":28688855,"name":"lina1812/dive","url":"https://api.github.com/repos/lina1812/dive"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:26Z"} +,{"id":"2489657725","type":"GollumEvent","actor":{"id":194392,"login":"E3V3A","gravatar_id":"","url":"https://api.github.com/users/E3V3A","avatar_url":"https://avatars.githubusercontent.com/u/194392?"},"repo":{"id":14640193,"name":"SecUpwN/Android-IMSI-Catcher-Detector","url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector"},"payload":{"pages":[{"page_name":"Building","title":"Building","summary":null,"action":"edited","sha":"217b2b6a9b90568ca3e425a6546f770f309d7513","html_url":"https://github.com/SecUpwN/Android-IMSI-Catcher-Detector/wiki/Building"}]},"public":true,"created_at":"2015-01-01T15:14:26Z"} +,{"id":"2489657726","type":"PushEvent","actor":{"id":9958128,"login":"chris0103","gravatar_id":"","url":"https://api.github.com/users/chris0103","avatar_url":"https://avatars.githubusercontent.com/u/9958128?"},"repo":{"id":27168655,"name":"chris0103/java","url":"https://api.github.com/repos/chris0103/java"},"payload":{"push_id":536866986,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ef078509cfb0715fe6eb0d461cd46f3a37c6ee68","before":"78709b14c464addb872cc14b575745209785cfd4","commits":[{"sha":"ef078509cfb0715fe6eb0d461cd46f3a37c6ee68","author":{"email":"c6c0740fabfc14435a52234797c912e4654292a6@126.com","name":"Youjing Zhu"},"message":"Add datastructure to algorithms.","distinct":true,"url":"https://api.github.com/repos/chris0103/java/commits/ef078509cfb0715fe6eb0d461cd46f3a37c6ee68"}]},"public":true,"created_at":"2015-01-01T15:14:26Z"} +,{"id":"2489657727","type":"PushEvent","actor":{"id":3111800,"login":"NCCastillo","gravatar_id":"","url":"https://api.github.com/users/NCCastillo","avatar_url":"https://avatars.githubusercontent.com/u/3111800?"},"repo":{"id":28539496,"name":"NCCastillo/tdd_by_example","url":"https://api.github.com/repos/NCCastillo/tdd_by_example"},"payload":{"push_id":536866987,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"69dc6e672454324ffa10d18e4e0fe4ef3b8fe277","before":"e7b96e17b1e4edd7101a06c513dfa7f9f14fd09d","commits":[{"sha":"69dc6e672454324ffa10d18e4e0fe4ef3b8fe277","author":{"email":"caab7f8885797a0ffa7a9a0888bd4c425e1ba4b9@izea.com","name":"Nestor Castillo"},"message":"Chapter 10, update times method to use Dollar and Franc instead of Money.","distinct":true,"url":"https://api.github.com/repos/NCCastillo/tdd_by_example/commits/69dc6e672454324ffa10d18e4e0fe4ef3b8fe277"}]},"public":true,"created_at":"2015-01-01T15:14:26Z"} +,{"id":"2489657729","type":"PushEvent","actor":{"id":546675,"login":"okbob","gravatar_id":"","url":"https://api.github.com/users/okbob","avatar_url":"https://avatars.githubusercontent.com/u/546675?"},"repo":{"id":7939844,"name":"orafce/orafce","url":"https://api.github.com/repos/orafce/orafce"},"payload":{"push_id":536866988,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3c79a57e1e193b59ba19976c309d94b9132eacee","before":"3edf286a68e16fc7ac2695e580350de92ab57095","commits":[{"sha":"3c79a57e1e193b59ba19976c309d94b9132eacee","author":{"email":"353412ad039bd39989ae539fc17c65823cd1e6a9@gooddata.com","name":"Pavel Stehule"},"message":"9.3 parser related files as standard","distinct":true,"url":"https://api.github.com/repos/orafce/orafce/commits/3c79a57e1e193b59ba19976c309d94b9132eacee"}]},"public":true,"created_at":"2015-01-01T15:14:26Z","org":{"id":3082967,"login":"orafce","gravatar_id":"","url":"https://api.github.com/orgs/orafce","avatar_url":"https://avatars.githubusercontent.com/u/3082967?"}} +,{"id":"2489657732","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":3885202,"name":"rovo89/XposedBridge","url":"https://api.github.com/repos/rovo89/XposedBridge"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/rovo89/XposedBridge/issues/30","labels_url":"https://api.github.com/repos/rovo89/XposedBridge/issues/30/labels{/name}","comments_url":"https://api.github.com/repos/rovo89/XposedBridge/issues/30/comments","events_url":"https://api.github.com/repos/rovo89/XposedBridge/issues/30/events","html_url":"https://github.com/rovo89/XposedBridge/issues/30","id":53196786,"number":30,"title":"Multidex support","user":{"login":"moneytoo","id":1071643,"avatar_url":"https://avatars.githubusercontent.com/u/1071643?v=3","gravatar_id":"","url":"https://api.github.com/users/moneytoo","html_url":"https://github.com/moneytoo","followers_url":"https://api.github.com/users/moneytoo/followers","following_url":"https://api.github.com/users/moneytoo/following{/other_user}","gists_url":"https://api.github.com/users/moneytoo/gists{/gist_id}","starred_url":"https://api.github.com/users/moneytoo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/moneytoo/subscriptions","organizations_url":"https://api.github.com/users/moneytoo/orgs","repos_url":"https://api.github.com/users/moneytoo/repos","events_url":"https://api.github.com/users/moneytoo/events{/privacy}","received_events_url":"https://api.github.com/users/moneytoo/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2014-12-31T18:30:11Z","updated_at":"2015-01-01T15:14:26Z","closed_at":null,"body":"Based on various comments/threads (see below) I understand there's no support for Multidex in Xposed. Most probably get in touch with it in Google Play Services which is over one dex in size.\r\n\r\nThough there's nice workaround for GMS by @kmark: https://gist.github.com/kmark/d6a19bc50c6ba7cc8f1f it would be nice to know if multidex support is something that can be expected from Xposed.\r\n\r\nhttp://forum.xda-developers.com/xposed/loading-class-classes2-dex-t2852950\r\nhttp://forum.xda-developers.com/xposed/multidex-support-t2963645\r\nhttps://github.com/rsteckler/unbounce-android#why-was-this-such-a-pain-to-fix"},"comment":{"url":"https://api.github.com/repos/rovo89/XposedBridge/issues/comments/68488797","html_url":"https://github.com/rovo89/XposedBridge/issues/30#issuecomment-68488797","issue_url":"https://api.github.com/repos/rovo89/XposedBridge/issues/30","id":68488797,"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:14:26Z","updated_at":"2015-01-01T15:14:26Z","body":"Well, but from a helper method, you'd expect that it works in all or at least most cases. I already listed some limitations, such as apps not following the recommendations or using their own ways to load additional classes. It's easy to add new APIs, but hard to get rid of them, even if they were bad. I suggest that people test it first with something like this in handleLoadPackage() for their target app (untested):\r\n```java\r\nfindAndHookMethod(Activity.class, \"attach\", Context.class, new XC_MethodHook() {\r\n @Override\r\n protected void afterHookedMethod(MethodHookParam param) throws Throwable {\r\n // place your hooks here, it should work with lpparam.classLoader\r\n }\r\n});\r\n```\r\n\r\nIf that works fine as expected in (almost) all cases, we can think about a helper method. But even then, the code wouldn't be shorter, and developers would still need to know when to use it."}},"public":true,"created_at":"2015-01-01T15:14:26Z"} +,{"id":"2489657737","type":"IssueCommentEvent","actor":{"id":2717002,"login":"thetobby","gravatar_id":"","url":"https://api.github.com/users/thetobby","avatar_url":"https://avatars.githubusercontent.com/u/2717002?"},"repo":{"id":28650025,"name":"thetobby/Tmal","url":"https://api.github.com/repos/thetobby/Tmal"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/thetobby/Tmal/issues/1","labels_url":"https://api.github.com/repos/thetobby/Tmal/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/thetobby/Tmal/issues/1/comments","events_url":"https://api.github.com/repos/thetobby/Tmal/issues/1/events","html_url":"https://github.com/thetobby/Tmal/issues/1","id":53221464,"number":1,"title":"Citrix virtual app Firefox support","user":{"login":"thetobby","id":2717002,"avatar_url":"https://avatars.githubusercontent.com/u/2717002?v=3","gravatar_id":"","url":"https://api.github.com/users/thetobby","html_url":"https://github.com/thetobby","followers_url":"https://api.github.com/users/thetobby/followers","following_url":"https://api.github.com/users/thetobby/following{/other_user}","gists_url":"https://api.github.com/users/thetobby/gists{/gist_id}","starred_url":"https://api.github.com/users/thetobby/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thetobby/subscriptions","organizations_url":"https://api.github.com/users/thetobby/orgs","repos_url":"https://api.github.com/users/thetobby/repos","events_url":"https://api.github.com/users/thetobby/events{/privacy}","received_events_url":"https://api.github.com/users/thetobby/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/thetobby/Tmal/labels/bug","name":"bug","color":"fc2929"},{"url":"https://api.github.com/repos/thetobby/Tmal/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:06:28Z","updated_at":"2015-01-01T15:14:27Z","closed_at":null,"body":"Only supports default desktop installations with Registery file.\r\n-Needs to support Citrix app launch as well as option"},"comment":{"url":"https://api.github.com/repos/thetobby/Tmal/issues/comments/68488799","html_url":"https://github.com/thetobby/Tmal/issues/1#issuecomment-68488799","issue_url":"https://api.github.com/repos/thetobby/Tmal/issues/1","id":68488799,"user":{"login":"thetobby","id":2717002,"avatar_url":"https://avatars.githubusercontent.com/u/2717002?v=3","gravatar_id":"","url":"https://api.github.com/users/thetobby","html_url":"https://github.com/thetobby","followers_url":"https://api.github.com/users/thetobby/followers","following_url":"https://api.github.com/users/thetobby/following{/other_user}","gists_url":"https://api.github.com/users/thetobby/gists{/gist_id}","starred_url":"https://api.github.com/users/thetobby/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thetobby/subscriptions","organizations_url":"https://api.github.com/users/thetobby/orgs","repos_url":"https://api.github.com/users/thetobby/repos","events_url":"https://api.github.com/users/thetobby/events{/privacy}","received_events_url":"https://api.github.com/users/thetobby/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:14:27Z","updated_at":"2015-01-01T15:14:27Z","body":"\"C:\\Program Files (x86)\\Microsoft Application Virtualization Client\\sfttray.exe\" /launch \"Firefox_4 28.0.0.5186\" -new-tab vg.no"}},"public":true,"created_at":"2015-01-01T15:14:27Z"} +,{"id":"2489657738","type":"CreateEvent","actor":{"id":6860877,"login":"cpressey","gravatar_id":"","url":"https://api.github.com/users/cpressey","avatar_url":"https://avatars.githubusercontent.com/u/6860877?"},"repo":{"id":6801178,"name":"catseye/Castile","url":"https://api.github.com/repos/catseye/Castile"},"payload":{"ref":"rel_0_3_2015_0101","ref_type":"tag","master_branch":"master","description":"(WIP) An unremarkable interpreter+compiler for an unremarkable programming language","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:27Z","org":{"id":1134322,"login":"catseye","gravatar_id":"","url":"https://api.github.com/orgs/catseye","avatar_url":"https://avatars.githubusercontent.com/u/1134322?"}} +,{"id":"2489657739","type":"PullRequestEvent","actor":{"id":4894735,"login":"MaxRink","gravatar_id":"","url":"https://api.github.com/users/MaxRink","avatar_url":"https://avatars.githubusercontent.com/u/4894735?"},"repo":{"id":28688863,"name":"MaxRink/seat","url":"https://api.github.com/repos/MaxRink/seat"},"payload":{"action":"opened","number":1,"pull_request":{"url":"https://api.github.com/repos/MaxRink/seat/pulls/1","id":26743878,"html_url":"https://github.com/MaxRink/seat/pull/1","diff_url":"https://github.com/MaxRink/seat/pull/1.diff","patch_url":"https://github.com/MaxRink/seat/pull/1.patch","issue_url":"https://api.github.com/repos/MaxRink/seat/issues/1","number":1,"state":"open","locked":false,"title":"Dev","user":{"login":"MaxRink","id":4894735,"avatar_url":"https://avatars.githubusercontent.com/u/4894735?v=3","gravatar_id":"","url":"https://api.github.com/users/MaxRink","html_url":"https://github.com/MaxRink","followers_url":"https://api.github.com/users/MaxRink/followers","following_url":"https://api.github.com/users/MaxRink/following{/other_user}","gists_url":"https://api.github.com/users/MaxRink/gists{/gist_id}","starred_url":"https://api.github.com/users/MaxRink/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MaxRink/subscriptions","organizations_url":"https://api.github.com/users/MaxRink/orgs","repos_url":"https://api.github.com/users/MaxRink/repos","events_url":"https://api.github.com/users/MaxRink/events{/privacy}","received_events_url":"https://api.github.com/users/MaxRink/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:14:27Z","updated_at":"2015-01-01T15:14:27Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/MaxRink/seat/pulls/1/commits","review_comments_url":"https://api.github.com/repos/MaxRink/seat/pulls/1/comments","review_comment_url":"https://api.github.com/repos/MaxRink/seat/pulls/comments/{number}","comments_url":"https://api.github.com/repos/MaxRink/seat/issues/1/comments","statuses_url":"https://api.github.com/repos/MaxRink/seat/statuses/81f3a52a0801c6f3509caa70cd13d836f8de358a","head":{"label":"eve-seat:dev","ref":"dev","sha":"81f3a52a0801c6f3509caa70cd13d836f8de358a","user":{"login":"eve-seat","id":7008038,"avatar_url":"https://avatars.githubusercontent.com/u/7008038?v=3","gravatar_id":"","url":"https://api.github.com/users/eve-seat","html_url":"https://github.com/eve-seat","followers_url":"https://api.github.com/users/eve-seat/followers","following_url":"https://api.github.com/users/eve-seat/following{/other_user}","gists_url":"https://api.github.com/users/eve-seat/gists{/gist_id}","starred_url":"https://api.github.com/users/eve-seat/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eve-seat/subscriptions","organizations_url":"https://api.github.com/users/eve-seat/orgs","repos_url":"https://api.github.com/users/eve-seat/repos","events_url":"https://api.github.com/users/eve-seat/events{/privacy}","received_events_url":"https://api.github.com/users/eve-seat/received_events","type":"User","site_admin":false},"repo":{"id":18711074,"name":"seat","full_name":"eve-seat/seat","owner":{"login":"eve-seat","id":7008038,"avatar_url":"https://avatars.githubusercontent.com/u/7008038?v=3","gravatar_id":"","url":"https://api.github.com/users/eve-seat","html_url":"https://github.com/eve-seat","followers_url":"https://api.github.com/users/eve-seat/followers","following_url":"https://api.github.com/users/eve-seat/following{/other_user}","gists_url":"https://api.github.com/users/eve-seat/gists{/gist_id}","starred_url":"https://api.github.com/users/eve-seat/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eve-seat/subscriptions","organizations_url":"https://api.github.com/users/eve-seat/orgs","repos_url":"https://api.github.com/users/eve-seat/repos","events_url":"https://api.github.com/users/eve-seat/events{/privacy}","received_events_url":"https://api.github.com/users/eve-seat/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/eve-seat/seat","description":"Simple (or Stupid) EVE Online API Tool","fork":false,"url":"https://api.github.com/repos/eve-seat/seat","forks_url":"https://api.github.com/repos/eve-seat/seat/forks","keys_url":"https://api.github.com/repos/eve-seat/seat/keys{/key_id}","collaborators_url":"https://api.github.com/repos/eve-seat/seat/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/eve-seat/seat/teams","hooks_url":"https://api.github.com/repos/eve-seat/seat/hooks","issue_events_url":"https://api.github.com/repos/eve-seat/seat/issues/events{/number}","events_url":"https://api.github.com/repos/eve-seat/seat/events","assignees_url":"https://api.github.com/repos/eve-seat/seat/assignees{/user}","branches_url":"https://api.github.com/repos/eve-seat/seat/branches{/branch}","tags_url":"https://api.github.com/repos/eve-seat/seat/tags","blobs_url":"https://api.github.com/repos/eve-seat/seat/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/eve-seat/seat/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/eve-seat/seat/git/refs{/sha}","trees_url":"https://api.github.com/repos/eve-seat/seat/git/trees{/sha}","statuses_url":"https://api.github.com/repos/eve-seat/seat/statuses/{sha}","languages_url":"https://api.github.com/repos/eve-seat/seat/languages","stargazers_url":"https://api.github.com/repos/eve-seat/seat/stargazers","contributors_url":"https://api.github.com/repos/eve-seat/seat/contributors","subscribers_url":"https://api.github.com/repos/eve-seat/seat/subscribers","subscription_url":"https://api.github.com/repos/eve-seat/seat/subscription","commits_url":"https://api.github.com/repos/eve-seat/seat/commits{/sha}","git_commits_url":"https://api.github.com/repos/eve-seat/seat/git/commits{/sha}","comments_url":"https://api.github.com/repos/eve-seat/seat/comments{/number}","issue_comment_url":"https://api.github.com/repos/eve-seat/seat/issues/comments/{number}","contents_url":"https://api.github.com/repos/eve-seat/seat/contents/{+path}","compare_url":"https://api.github.com/repos/eve-seat/seat/compare/{base}...{head}","merges_url":"https://api.github.com/repos/eve-seat/seat/merges","archive_url":"https://api.github.com/repos/eve-seat/seat/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/eve-seat/seat/downloads","issues_url":"https://api.github.com/repos/eve-seat/seat/issues{/number}","pulls_url":"https://api.github.com/repos/eve-seat/seat/pulls{/number}","milestones_url":"https://api.github.com/repos/eve-seat/seat/milestones{/number}","notifications_url":"https://api.github.com/repos/eve-seat/seat/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/eve-seat/seat/labels{/name}","releases_url":"https://api.github.com/repos/eve-seat/seat/releases{/id}","created_at":"2014-04-12T18:16:25Z","updated_at":"2014-12-30T05:19:04Z","pushed_at":"2014-12-30T19:06:49Z","git_url":"git://github.com/eve-seat/seat.git","ssh_url":"git@github.com:eve-seat/seat.git","clone_url":"https://github.com/eve-seat/seat.git","svn_url":"https://github.com/eve-seat/seat","homepage":"http://eve-seat.github.io/seat","size":5303,"stargazers_count":35,"watchers_count":35,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":27,"mirror_url":null,"open_issues_count":26,"forks":27,"open_issues":26,"watchers":35,"default_branch":"master"}},"base":{"label":"MaxRink:master","ref":"master","sha":"62d517153a9ff700bf4cd6884a709b5bc048c041","user":{"login":"MaxRink","id":4894735,"avatar_url":"https://avatars.githubusercontent.com/u/4894735?v=3","gravatar_id":"","url":"https://api.github.com/users/MaxRink","html_url":"https://github.com/MaxRink","followers_url":"https://api.github.com/users/MaxRink/followers","following_url":"https://api.github.com/users/MaxRink/following{/other_user}","gists_url":"https://api.github.com/users/MaxRink/gists{/gist_id}","starred_url":"https://api.github.com/users/MaxRink/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MaxRink/subscriptions","organizations_url":"https://api.github.com/users/MaxRink/orgs","repos_url":"https://api.github.com/users/MaxRink/repos","events_url":"https://api.github.com/users/MaxRink/events{/privacy}","received_events_url":"https://api.github.com/users/MaxRink/received_events","type":"User","site_admin":false},"repo":{"id":28688863,"name":"seat","full_name":"MaxRink/seat","owner":{"login":"MaxRink","id":4894735,"avatar_url":"https://avatars.githubusercontent.com/u/4894735?v=3","gravatar_id":"","url":"https://api.github.com/users/MaxRink","html_url":"https://github.com/MaxRink","followers_url":"https://api.github.com/users/MaxRink/followers","following_url":"https://api.github.com/users/MaxRink/following{/other_user}","gists_url":"https://api.github.com/users/MaxRink/gists{/gist_id}","starred_url":"https://api.github.com/users/MaxRink/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MaxRink/subscriptions","organizations_url":"https://api.github.com/users/MaxRink/orgs","repos_url":"https://api.github.com/users/MaxRink/repos","events_url":"https://api.github.com/users/MaxRink/events{/privacy}","received_events_url":"https://api.github.com/users/MaxRink/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/MaxRink/seat","description":"Simple (or Stupid) EVE Online API Tool","fork":true,"url":"https://api.github.com/repos/MaxRink/seat","forks_url":"https://api.github.com/repos/MaxRink/seat/forks","keys_url":"https://api.github.com/repos/MaxRink/seat/keys{/key_id}","collaborators_url":"https://api.github.com/repos/MaxRink/seat/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/MaxRink/seat/teams","hooks_url":"https://api.github.com/repos/MaxRink/seat/hooks","issue_events_url":"https://api.github.com/repos/MaxRink/seat/issues/events{/number}","events_url":"https://api.github.com/repos/MaxRink/seat/events","assignees_url":"https://api.github.com/repos/MaxRink/seat/assignees{/user}","branches_url":"https://api.github.com/repos/MaxRink/seat/branches{/branch}","tags_url":"https://api.github.com/repos/MaxRink/seat/tags","blobs_url":"https://api.github.com/repos/MaxRink/seat/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/MaxRink/seat/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/MaxRink/seat/git/refs{/sha}","trees_url":"https://api.github.com/repos/MaxRink/seat/git/trees{/sha}","statuses_url":"https://api.github.com/repos/MaxRink/seat/statuses/{sha}","languages_url":"https://api.github.com/repos/MaxRink/seat/languages","stargazers_url":"https://api.github.com/repos/MaxRink/seat/stargazers","contributors_url":"https://api.github.com/repos/MaxRink/seat/contributors","subscribers_url":"https://api.github.com/repos/MaxRink/seat/subscribers","subscription_url":"https://api.github.com/repos/MaxRink/seat/subscription","commits_url":"https://api.github.com/repos/MaxRink/seat/commits{/sha}","git_commits_url":"https://api.github.com/repos/MaxRink/seat/git/commits{/sha}","comments_url":"https://api.github.com/repos/MaxRink/seat/comments{/number}","issue_comment_url":"https://api.github.com/repos/MaxRink/seat/issues/comments/{number}","contents_url":"https://api.github.com/repos/MaxRink/seat/contents/{+path}","compare_url":"https://api.github.com/repos/MaxRink/seat/compare/{base}...{head}","merges_url":"https://api.github.com/repos/MaxRink/seat/merges","archive_url":"https://api.github.com/repos/MaxRink/seat/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/MaxRink/seat/downloads","issues_url":"https://api.github.com/repos/MaxRink/seat/issues{/number}","pulls_url":"https://api.github.com/repos/MaxRink/seat/pulls{/number}","milestones_url":"https://api.github.com/repos/MaxRink/seat/milestones{/number}","notifications_url":"https://api.github.com/repos/MaxRink/seat/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/MaxRink/seat/labels{/name}","releases_url":"https://api.github.com/repos/MaxRink/seat/releases{/id}","created_at":"2015-01-01T15:14:05Z","updated_at":"2015-01-01T15:14:07Z","pushed_at":"2014-12-30T19:06:49Z","git_url":"git://github.com/MaxRink/seat.git","ssh_url":"git@github.com:MaxRink/seat.git","clone_url":"https://github.com/MaxRink/seat.git","svn_url":"https://github.com/MaxRink/seat","homepage":"http://eve-seat.github.io/seat","size":5303,"stargazers_count":0,"watchers_count":0,"language":"PHP","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/MaxRink/seat/pulls/1"},"html":{"href":"https://github.com/MaxRink/seat/pull/1"},"issue":{"href":"https://api.github.com/repos/MaxRink/seat/issues/1"},"comments":{"href":"https://api.github.com/repos/MaxRink/seat/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/MaxRink/seat/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/MaxRink/seat/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/MaxRink/seat/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/MaxRink/seat/statuses/81f3a52a0801c6f3509caa70cd13d836f8de358a"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":9,"additions":546,"deletions":169,"changed_files":11}},"public":true,"created_at":"2015-01-01T15:14:27Z"} +,{"id":"2489657740","type":"IssueCommentEvent","actor":{"id":2601132,"login":"AdrieanKhisbe","gravatar_id":"","url":"https://api.github.com/users/AdrieanKhisbe","avatar_url":"https://avatars.githubusercontent.com/u/2601132?"},"repo":{"id":5721807,"name":"skuro/org4idea","url":"https://api.github.com/repos/skuro/org4idea"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/skuro/org4idea/issues/1","labels_url":"https://api.github.com/repos/skuro/org4idea/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/skuro/org4idea/issues/1/comments","events_url":"https://api.github.com/repos/skuro/org4idea/issues/1/events","html_url":"https://github.com/skuro/org4idea/pull/1","id":53128962,"number":1,"title":"project restructuration + spell checkying support","user":{"login":"AdrieanKhisbe","id":2601132,"avatar_url":"https://avatars.githubusercontent.com/u/2601132?v=3","gravatar_id":"","url":"https://api.github.com/users/AdrieanKhisbe","html_url":"https://github.com/AdrieanKhisbe","followers_url":"https://api.github.com/users/AdrieanKhisbe/followers","following_url":"https://api.github.com/users/AdrieanKhisbe/following{/other_user}","gists_url":"https://api.github.com/users/AdrieanKhisbe/gists{/gist_id}","starred_url":"https://api.github.com/users/AdrieanKhisbe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AdrieanKhisbe/subscriptions","organizations_url":"https://api.github.com/users/AdrieanKhisbe/orgs","repos_url":"https://api.github.com/users/AdrieanKhisbe/repos","events_url":"https://api.github.com/users/AdrieanKhisbe/events{/privacy}","received_events_url":"https://api.github.com/users/AdrieanKhisbe/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-30T16:51:34Z","updated_at":"2015-01-01T15:14:27Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/skuro/org4idea/pulls/1","html_url":"https://github.com/skuro/org4idea/pull/1","diff_url":"https://github.com/skuro/org4idea/pull/1.diff","patch_url":"https://github.com/skuro/org4idea/pull/1.patch"},"body":"Hej @skuro, \r\n\r\nhere is the first basic modification I made to the org plugin\r\n\r\n- restructure the project `src/main/java, et caetera`\r\n- spell checkying support\r\n\r\nI might then add live template next. (then refresh my lexing/parsing ^^)"},"comment":{"url":"https://api.github.com/repos/skuro/org4idea/issues/comments/68488798","html_url":"https://github.com/skuro/org4idea/pull/1#issuecomment-68488798","issue_url":"https://api.github.com/repos/skuro/org4idea/issues/1","id":68488798,"user":{"login":"AdrieanKhisbe","id":2601132,"avatar_url":"https://avatars.githubusercontent.com/u/2601132?v=3","gravatar_id":"","url":"https://api.github.com/users/AdrieanKhisbe","html_url":"https://github.com/AdrieanKhisbe","followers_url":"https://api.github.com/users/AdrieanKhisbe/followers","following_url":"https://api.github.com/users/AdrieanKhisbe/following{/other_user}","gists_url":"https://api.github.com/users/AdrieanKhisbe/gists{/gist_id}","starred_url":"https://api.github.com/users/AdrieanKhisbe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AdrieanKhisbe/subscriptions","organizations_url":"https://api.github.com/users/AdrieanKhisbe/orgs","repos_url":"https://api.github.com/users/AdrieanKhisbe/repos","events_url":"https://api.github.com/users/AdrieanKhisbe/events{/privacy}","received_events_url":"https://api.github.com/users/AdrieanKhisbe/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:14:27Z","updated_at":"2015-01-01T15:14:27Z","body":"Some more things now:\r\nIn a nutshell:\r\n- LiveTemplates\r\n- Todo indexer\r\n- Commenter\r\n- Syntax highlight for line code, and keywords `X+something`\r\n- improved doc"}},"public":true,"created_at":"2015-01-01T15:14:27Z"} +,{"id":"2489657741","type":"PushEvent","actor":{"id":6860877,"login":"cpressey","gravatar_id":"","url":"https://api.github.com/users/cpressey","avatar_url":"https://avatars.githubusercontent.com/u/6860877?"},"repo":{"id":6801178,"name":"catseye/Castile","url":"https://api.github.com/repos/catseye/Castile"},"payload":{"push_id":536866993,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"502afdd68c6b91832244b1006ff16dd2865ed9f6","before":"d18208116f32faad37894834111b782e6e2a110e","commits":[{"sha":"502afdd68c6b91832244b1006ff16dd2865ed9f6","author":{"email":"c7632e440b1c466d6ce6e3f0599fca74ae105873@catseye.tc","name":"Chris Pressey"},"message":"Added tag rel_0_3_2015_0101 for changeset 93a9b9b9efde","distinct":true,"url":"https://api.github.com/repos/catseye/Castile/commits/502afdd68c6b91832244b1006ff16dd2865ed9f6"}]},"public":true,"created_at":"2015-01-01T15:14:27Z","org":{"id":1134322,"login":"catseye","gravatar_id":"","url":"https://api.github.com/orgs/catseye","avatar_url":"https://avatars.githubusercontent.com/u/1134322?"}} +,{"id":"2489657742","type":"PushEvent","actor":{"id":2625899,"login":"Enter91","gravatar_id":"","url":"https://api.github.com/users/Enter91","avatar_url":"https://avatars.githubusercontent.com/u/2625899?"},"repo":{"id":25081858,"name":"Enter91/BAwSM","url":"https://api.github.com/repos/Enter91/BAwSM"},"payload":{"push_id":536866994,"size":1,"distinct_size":1,"ref":"refs/heads/recorder","head":"32c4ff0cbb607e45c6175bd919c632191610d4c2","before":"b3a1898d53bdfd2a0a1bad199d6e682f1454e157","commits":[{"sha":"32c4ff0cbb607e45c6175bd919c632191610d4c2","author":{"email":"124f0787b6925070666932666b6f473db3397390@interia.pl","name":"Michał Czwarnowski"},"message":"fix animacji w tutorialu","distinct":true,"url":"https://api.github.com/repos/Enter91/BAwSM/commits/32c4ff0cbb607e45c6175bd919c632191610d4c2"}]},"public":true,"created_at":"2015-01-01T15:14:27Z"} +,{"id":"2489657745","type":"WatchEvent","actor":{"id":5724523,"login":"mecanographik","gravatar_id":"","url":"https://api.github.com/users/mecanographik","avatar_url":"https://avatars.githubusercontent.com/u/5724523?"},"repo":{"id":14600688,"name":"mcasimir/mobile-angular-ui","url":"https://api.github.com/repos/mcasimir/mobile-angular-ui"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:28Z"} +,{"id":"2489657747","type":"PushEvent","actor":{"id":2867933,"login":"dycforever","gravatar_id":"","url":"https://api.github.com/users/dycforever","avatar_url":"https://avatars.githubusercontent.com/u/2867933?"},"repo":{"id":9410626,"name":"dycforever/sourceReading","url":"https://api.github.com/repos/dycforever/sourceReading"},"payload":{"push_id":536866997,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"852d762d445881d20dd0e80bd4047158bc877b8f","before":"6ba79b589d0f6e26a5fc32f4c4a216e88d6f512d","commits":[{"sha":"6448a683ee17c65676869f8b1c001c5696a690a5","author":{"email":"62d9cb0617af0e9108624ded590bb29bdf4c6a8f@localhost.localdomain","name":"dyc"},"message":"add comments about nginx init","distinct":true,"url":"https://api.github.com/repos/dycforever/sourceReading/commits/6448a683ee17c65676869f8b1c001c5696a690a5"},{"sha":"852d762d445881d20dd0e80bd4047158bc877b8f","author":{"email":"62d9cb0617af0e9108624ded590bb29bdf4c6a8f@localhost.localdomain","name":"dyc"},"message":"Merge branch 'master' of https://github.com/dycforever/sourceReading","distinct":true,"url":"https://api.github.com/repos/dycforever/sourceReading/commits/852d762d445881d20dd0e80bd4047158bc877b8f"}]},"public":true,"created_at":"2015-01-01T15:14:28Z"} +,{"id":"2489657748","type":"PushEvent","actor":{"id":1665772,"login":"ondrejsika","gravatar_id":"","url":"https://api.github.com/users/ondrejsika","avatar_url":"https://avatars.githubusercontent.com/u/1665772?"},"repo":{"id":13438321,"name":"phphost/phphost","url":"https://api.github.com/repos/phphost/phphost"},"payload":{"push_id":536866998,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b6895d83cce4dbc947f72aa2055852daae7a9d23","before":"d522cbd838d472e374005373e774d0ab67cd74f2","commits":[{"sha":"b6895d83cce4dbc947f72aa2055852daae7a9d23","author":{"email":"b816faa87b7d35274d2e545c5be11ed4376f3ccf@ondrejsika.com","name":"Ondrej Sika"},"message":"add collapse bootstrap js","distinct":true,"url":"https://api.github.com/repos/phphost/phphost/commits/b6895d83cce4dbc947f72aa2055852daae7a9d23"}]},"public":true,"created_at":"2015-01-01T15:14:29Z","org":{"id":5645680,"login":"phphost","gravatar_id":"","url":"https://api.github.com/orgs/phphost","avatar_url":"https://avatars.githubusercontent.com/u/5645680?"}} +,{"id":"2489657749","type":"PushEvent","actor":{"id":1578474,"login":"waikitlin","gravatar_id":"","url":"https://api.github.com/users/waikitlin","avatar_url":"https://avatars.githubusercontent.com/u/1578474?"},"repo":{"id":28564096,"name":"waikitlin/kongwaiyen","url":"https://api.github.com/repos/waikitlin/kongwaiyen"},"payload":{"push_id":536866999,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"77bfdac86fb7f5cf3f7b2f1a63454c00b0620e4b","before":"9be2b6f99e2791aaade70bbd32a07a66c1980805","commits":[{"sha":"77bfdac86fb7f5cf3f7b2f1a63454c00b0620e4b","author":{"email":"b8f2020b78eedf43f24fdef07540a7445e2e946f@gmail.com","name":"Wai Kit"},"message":"Grammar fixes","distinct":true,"url":"https://api.github.com/repos/waikitlin/kongwaiyen/commits/77bfdac86fb7f5cf3f7b2f1a63454c00b0620e4b"}]},"public":true,"created_at":"2015-01-01T15:14:29Z"} +,{"id":"2489657750","type":"WatchEvent","actor":{"id":188935,"login":"erik","gravatar_id":"","url":"https://api.github.com/users/erik","avatar_url":"https://avatars.githubusercontent.com/u/188935?"},"repo":{"id":28369696,"name":"lavabit/libdime","url":"https://api.github.com/repos/lavabit/libdime"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:29Z"} +,{"id":"2489657752","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":536867001,"size":1,"distinct_size":1,"ref":"refs/heads/rel-3_2","head":"5998504048dd8c700fb95ee533383574833a7513","before":"cadc95032830f52700854d52e955b37ef5b29d20","commits":[{"sha":"5998504048dd8c700fb95ee533383574833a7513","author":{"email":"2497d761a8fe182513acbb1aafe37a7278b43d72@otrs.com","name":"Manuel Hecht"},"message":"Updated copyright date.","distinct":true,"url":"https://api.github.com/repos/OTRS/otrs/commits/5998504048dd8c700fb95ee533383574833a7513"}]},"public":true,"created_at":"2015-01-01T15:14:29Z","org":{"id":3065906,"login":"OTRS","gravatar_id":"","url":"https://api.github.com/orgs/OTRS","avatar_url":"https://avatars.githubusercontent.com/u/3065906?"}} +,{"id":"2489657753","type":"WatchEvent","actor":{"id":635512,"login":"zeusdeux","gravatar_id":"","url":"https://api.github.com/users/zeusdeux","avatar_url":"https://avatars.githubusercontent.com/u/635512?"},"repo":{"id":1685764,"name":"dhg/Skeleton","url":"https://api.github.com/repos/dhg/Skeleton"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:29Z"} +,{"id":"2489657754","type":"PushEvent","actor":{"id":7602544,"login":"novist","gravatar_id":"","url":"https://api.github.com/users/novist","avatar_url":"https://avatars.githubusercontent.com/u/7602544?"},"repo":{"id":27130007,"name":"novist/qTox","url":"https://api.github.com/repos/novist/qTox"},"payload":{"push_id":536867002,"size":17,"distinct_size":16,"ref":"refs/heads/master","head":"cd83daaa4f9be8ecae23802a4aa8fdba3cd2580c","before":"55b73ad51244c7785054797406d7a77cece0a7d5","commits":[{"sha":"30d9862c4fdcc9c698b612339af888d389000269","author":{"email":"11074f70cfc38d11a8852943f07d5bbec6b55236@sysret.net","name":"novist"},"message":"Removed explanations from tray menu","distinct":false,"url":"https://api.github.com/repos/novist/qTox/commits/30d9862c4fdcc9c698b612339af888d389000269"},{"sha":"0c2473d68fa797892501eaa5cb23bde9029a7e68","author":{"email":"fe60b88eb626f1649cdc10e954ce9ea76971a183@gmx.com","name":"Théo Bueno"},"message":"update nodes list\n\nthe previous one was 4 months old","distinct":true,"url":"https://api.github.com/repos/novist/qTox/commits/0c2473d68fa797892501eaa5cb23bde9029a7e68"},{"sha":"78f33edfb3331213a4f1c3cfc5ec5d9b61bbccd1","author":{"email":"1559743768de0d13a43308f6e740211eb82ee07e@web.de","name":"Toxicop"},"message":"Update Deutsch translation","distinct":true,"url":"https://api.github.com/repos/novist/qTox/commits/78f33edfb3331213a4f1c3cfc5ec5d9b61bbccd1"},{"sha":"a14da15d79530faf42df495f8b1b70b5be8a96c8","author":{"email":"47bfed01f4b9ae377e56a72dcabeb0d72f99061f@users.noreply.github.com","name":"apprb"},"message":"fix #963","distinct":true,"url":"https://api.github.com/repos/novist/qTox/commits/a14da15d79530faf42df495f8b1b70b5be8a96c8"},{"sha":"1719c72f670bc966114e332ff01ab2d1c0021c0c","author":{"email":"47bfed01f4b9ae377e56a72dcabeb0d72f99061f@users.noreply.github.com","name":"apprb"},"message":"tiny polishing","distinct":true,"url":"https://api.github.com/repos/novist/qTox/commits/1719c72f670bc966114e332ff01ab2d1c0021c0c"},{"sha":"f8bdaac12120ad20f854d06bb7cb5e8771cbe827","author":{"email":"47bfed01f4b9ae377e56a72dcabeb0d72f99061f@users.noreply.github.com","name":"apprb"},"message":"messages splitting fix","distinct":true,"url":"https://api.github.com/repos/novist/qTox/commits/f8bdaac12120ad20f854d06bb7cb5e8771cbe827"},{"sha":"1194df2f7846daf159f8b321d19fe96d2c7c3977","author":{"email":"47bfed01f4b9ae377e56a72dcabeb0d72f99061f@users.noreply.github.com","name":"apprb"},"message":"renaming: Direct Connect -> None","distinct":true,"url":"https://api.github.com/repos/novist/qTox/commits/1194df2f7846daf159f8b321d19fe96d2c7c3977"},{"sha":"2489f2a49d0ffb4c49ff9285452aef3fe2a47b3a","author":{"email":"e1378f58ab6ee5aea9a385ab7f3349585414e031@gmail.com","name":"Dubslow"},"message":"Merge branch 'pr950'\nFinally have access to a gnu-linux box for a couple of days... but the internet is so bad my ssh sometimes lags :/","distinct":true,"url":"https://api.github.com/repos/novist/qTox/commits/2489f2a49d0ffb4c49ff9285452aef3fe2a47b3a"},{"sha":"47953491982fd4d821cf81ad41aca716cb37b8f3","author":{"email":"e1378f58ab6ee5aea9a385ab7f3349585414e031@gmail.com","name":"Dubslow"},"message":"Merge branch 'pr957'","distinct":true,"url":"https://api.github.com/repos/novist/qTox/commits/47953491982fd4d821cf81ad41aca716cb37b8f3"},{"sha":"7fbd6438df80f51b3c21017677fb4dcf37175efb","author":{"email":"e1378f58ab6ee5aea9a385ab7f3349585414e031@gmail.com","name":"Dubslow"},"message":"Merge branch 'pr959'","distinct":true,"url":"https://api.github.com/repos/novist/qTox/commits/7fbd6438df80f51b3c21017677fb4dcf37175efb"},{"sha":"75331af311222b335e5f3845ff2382d770215db8","author":{"email":"e1378f58ab6ee5aea9a385ab7f3349585414e031@gmail.com","name":"Dubslow"},"message":"Merge branch 'pr965'","distinct":true,"url":"https://api.github.com/repos/novist/qTox/commits/75331af311222b335e5f3845ff2382d770215db8"},{"sha":"f7bef8d5c357f6a5f500642222c41c9fa9262c54","author":{"email":"e1378f58ab6ee5aea9a385ab7f3349585414e031@gmail.com","name":"Dubslow"},"message":"Merge branch 'pr966'","distinct":true,"url":"https://api.github.com/repos/novist/qTox/commits/f7bef8d5c357f6a5f500642222c41c9fa9262c54"},{"sha":"956f680eed0d22b9da690236c5c0297595fe09ee","author":{"email":"e46f071d43907585dd37dda2f67c00e9c75506fe@gmail.com","name":"Ansa89"},"message":"Italian translation: update","distinct":true,"url":"https://api.github.com/repos/novist/qTox/commits/956f680eed0d22b9da690236c5c0297595fe09ee"},{"sha":"86c672b8d7be356c26159f6eb13f7ec08cc4684e","author":{"email":"09e8457ab5d4654671355838a65a84cdf5714c0b@gmail.com","name":"Zetok Zalbavar"},"message":"Update INSTALL.md","distinct":true,"url":"https://api.github.com/repos/novist/qTox/commits/86c672b8d7be356c26159f6eb13f7ec08cc4684e"},{"sha":"8ef6e5b9d54188b83539c1a018d5adb782e0419f","author":{"email":"e1378f58ab6ee5aea9a385ab7f3349585414e031@gmail.com","name":"Dubslow"},"message":"Merge branch 'pr969'","distinct":true,"url":"https://api.github.com/repos/novist/qTox/commits/8ef6e5b9d54188b83539c1a018d5adb782e0419f"},{"sha":"eb6a563f8b6fd31ca63ba46e618cf2495bb583a5","author":{"email":"e1378f58ab6ee5aea9a385ab7f3349585414e031@gmail.com","name":"Dubslow"},"message":"Merge branch 'pr970'","distinct":true,"url":"https://api.github.com/repos/novist/qTox/commits/eb6a563f8b6fd31ca63ba46e618cf2495bb583a5"},{"sha":"cd83daaa4f9be8ecae23802a4aa8fdba3cd2580c","author":{"email":"11074f70cfc38d11a8852943f07d5bbec6b55236@sysret.net","name":"novist"},"message":"Merge branch 'upstream'\n\nConflicts:\n\tsrc/widget/form/settings/generalsettings.ui","distinct":true,"url":"https://api.github.com/repos/novist/qTox/commits/cd83daaa4f9be8ecae23802a4aa8fdba3cd2580c"}]},"public":true,"created_at":"2015-01-01T15:14:29Z"} +,{"id":"2489657755","type":"CreateEvent","actor":{"id":10364823,"login":"Arunkumarakp","gravatar_id":"","url":"https://api.github.com/users/Arunkumarakp","avatar_url":"https://avatars.githubusercontent.com/u/10364823?"},"repo":{"id":28688872,"name":"Arunkumarakp/hello","url":"https://api.github.com/repos/Arunkumarakp/hello"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"firstrepository","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:29Z"} +,{"id":"2489657758","type":"CreateEvent","actor":{"id":557961,"login":"e-jigsaw","gravatar_id":"","url":"https://api.github.com/users/e-jigsaw","avatar_url":"https://avatars.githubusercontent.com/u/557961?"},"repo":{"id":21883081,"name":"jgsme/dev","url":"https://api.github.com/repos/jgsme/dev"},"payload":{"ref":"web-components","ref_type":"branch","master_branch":"master","description":"Development log","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:31Z","org":{"id":8819590,"login":"jgsme","gravatar_id":"","url":"https://api.github.com/orgs/jgsme","avatar_url":"https://avatars.githubusercontent.com/u/8819590?"}} +,{"id":"2489657759","type":"PushEvent","actor":{"id":6722599,"login":"prajogotio","gravatar_id":"","url":"https://api.github.com/users/prajogotio","avatar_url":"https://avatars.githubusercontent.com/u/6722599?"},"repo":{"id":28124346,"name":"prajogotio/upsolving","url":"https://api.github.com/repos/prajogotio/upsolving"},"payload":{"push_id":536867007,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ab52862c13cb0d5f3de4a3eab829051abc7cc82e","before":"12676d926a846550c52d18687665d75379b6acbe","commits":[{"sha":"ab52862c13cb0d5f3de4a3eab829051abc7cc82e","author":{"email":"887e2b40f14992c7e3b54c4c958625838c00bf6f@hotmail.com","name":"prajogotio"},"message":"1/1/15","distinct":true,"url":"https://api.github.com/repos/prajogotio/upsolving/commits/ab52862c13cb0d5f3de4a3eab829051abc7cc82e"}]},"public":true,"created_at":"2015-01-01T15:14:31Z"} +,{"id":"2489657762","type":"PushEvent","actor":{"id":1312837,"login":"Jimx-","gravatar_id":"","url":"https://api.github.com/users/Jimx-","avatar_url":"https://avatars.githubusercontent.com/u/1312837?"},"repo":{"id":3129566,"name":"Jimx-/lyos","url":"https://api.github.com/repos/Jimx-/lyos"},"payload":{"push_id":536867008,"size":2,"distinct_size":2,"ref":"refs/heads/realmicro","head":"442c6dd1c73c63b96d455824424362e8dd728a09","before":"e6b61e5d4d2babac94656fe443504727bfd47305","commits":[{"sha":"449f69919f8f3ebf8fd64ad80fc0cbb0b685a6dc","author":{"email":"5817fbbf3541bcb6d633af29db8f01f8519d597c@gmail.com","name":"Jim Xue"},"message":"Kernel loads MM","distinct":true,"url":"https://api.github.com/repos/Jimx-/lyos/commits/449f69919f8f3ebf8fd64ad80fc0cbb0b685a6dc"},{"sha":"442c6dd1c73c63b96d455824424362e8dd728a09","author":{"email":"5817fbbf3541bcb6d633af29db8f01f8519d597c@gmail.com","name":"Jim Xue"},"message":"MM as a single executable","distinct":true,"url":"https://api.github.com/repos/Jimx-/lyos/commits/442c6dd1c73c63b96d455824424362e8dd728a09"}]},"public":true,"created_at":"2015-01-01T15:14:31Z"} +,{"id":"2489657763","type":"CreateEvent","actor":{"id":6000299,"login":"SecUpwN","gravatar_id":"","url":"https://api.github.com/users/SecUpwN","avatar_url":"https://avatars.githubusercontent.com/u/6000299?"},"repo":{"id":14640193,"name":"SecUpwN/Android-IMSI-Catcher-Detector","url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector"},"payload":{"ref":"v0.1.25-alpha-b6","ref_type":"tag","master_branch":"master","description":"Detect and avoid IMSI-Catcher attacks!","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:31Z"} +,{"id":"2489657764","type":"ReleaseEvent","actor":{"id":6000299,"login":"SecUpwN","gravatar_id":"","url":"https://api.github.com/users/SecUpwN","avatar_url":"https://avatars.githubusercontent.com/u/6000299?"},"repo":{"id":14640193,"name":"SecUpwN/Android-IMSI-Catcher-Detector","url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector/releases/818692","assets_url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector/releases/818692/assets","upload_url":"https://uploads.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector/releases/818692/assets{?name}","html_url":"https://github.com/SecUpwN/Android-IMSI-Catcher-Detector/releases/tag/v0.1.25-alpha-b6","id":818692,"tag_name":"v0.1.25-alpha-b6","target_commitish":"master","name":"WIP TEST RELEASE v0.1.25-alpha-b6","draft":false,"author":{"login":"SecUpwN","id":6000299,"avatar_url":"https://avatars.githubusercontent.com/u/6000299?v=3","gravatar_id":"","url":"https://api.github.com/users/SecUpwN","html_url":"https://github.com/SecUpwN","followers_url":"https://api.github.com/users/SecUpwN/followers","following_url":"https://api.github.com/users/SecUpwN/following{/other_user}","gists_url":"https://api.github.com/users/SecUpwN/gists{/gist_id}","starred_url":"https://api.github.com/users/SecUpwN/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SecUpwN/subscriptions","organizations_url":"https://api.github.com/users/SecUpwN/orgs","repos_url":"https://api.github.com/users/SecUpwN/repos","events_url":"https://api.github.com/users/SecUpwN/events{/privacy}","received_events_url":"https://api.github.com/users/SecUpwN/received_events","type":"User","site_admin":false},"prerelease":true,"created_at":"2015-01-01T13:44:24Z","published_at":"2015-01-01T15:14:31Z","assets":[{"url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector/releases/assets/362305","id":362305,"name":"Android-IMSI-Catcher-Detector.apk","label":null,"uploader":{"login":"SecUpwN","id":6000299,"avatar_url":"https://avatars.githubusercontent.com/u/6000299?v=3","gravatar_id":"","url":"https://api.github.com/users/SecUpwN","html_url":"https://github.com/SecUpwN","followers_url":"https://api.github.com/users/SecUpwN/followers","following_url":"https://api.github.com/users/SecUpwN/following{/other_user}","gists_url":"https://api.github.com/users/SecUpwN/gists{/gist_id}","starred_url":"https://api.github.com/users/SecUpwN/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SecUpwN/subscriptions","organizations_url":"https://api.github.com/users/SecUpwN/orgs","repos_url":"https://api.github.com/users/SecUpwN/repos","events_url":"https://api.github.com/users/SecUpwN/events{/privacy}","received_events_url":"https://api.github.com/users/SecUpwN/received_events","type":"User","site_admin":false},"content_type":"application/vnd.android.package-archive","state":"uploaded","size":1462944,"download_count":0,"created_at":"2015-01-01T15:08:14Z","updated_at":"2015-01-01T15:08:50Z","browser_download_url":"https://github.com/SecUpwN/Android-IMSI-Catcher-Detector/releases/download/v0.1.25-alpha-b6/Android-IMSI-Catcher-Detector.apk"}],"tarball_url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector/tarball/v0.1.25-alpha-b6","zipball_url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector/zipball/v0.1.25-alpha-b6","body":"---\r\n\r\n* [CHANGELOG](https://github.com/SecUpwN/Android-IMSI-Catcher-Detector/blob/master/CHANGELOG.md#01012015---wip-release-v0125-alpha-build-6)\r\n\r\n* As always, please read the full [CHANGELOG](https://github.com/SecUpwN/Android-IMSI-Catcher-Detector/blob/master/CHANGELOG.md) to see all changes.\r\n\r\n**Alternative Downloads:** [![Aptoide](https://github.com/SecUpwN/Android-IMSI-Catcher-Detector/raw/master/MISC/external/Aptoide.png)](http://aimsicd.store.aptoide.com/ \"NOTE: Installs Aptoide-App first!\") [![F-Droid](https://github.com/SecUpwN/Android-IMSI-Catcher-Detector/raw/master/MISC/external/F-Droid.png)](https://f-droid.org/repository/browse/?fdid=com.SecUpwN.AIMSICD \"F-Droid Store\")\r\n\r\n---\r\n:white_check_mark: **MD5 CHECKSUM OF APK:** `2d83064bac5acaa48bd4987abb8caf33`"}},"public":true,"created_at":"2015-01-01T15:14:31Z"} +,{"id":"2489657765","type":"PushEvent","actor":{"id":1548494,"login":"dibyendumajumdar","gravatar_id":"","url":"https://api.github.com/users/dibyendumajumdar","avatar_url":"https://avatars.githubusercontent.com/u/1548494?"},"repo":{"id":28688657,"name":"dibyendumajumdar/ravi","url":"https://api.github.com/repos/dibyendumajumdar/ravi"},"payload":{"push_id":536867009,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c840fffb7f77dd33d6983479cc3f68d3a8aa0659","before":"da74611bf9ca8e86d00862ca91f0ab299b39fa19","commits":[{"sha":"c840fffb7f77dd33d6983479cc3f68d3a8aa0659","author":{"email":"9129e6dae1ca7276b434171c6a671db1348741d4@users.noreply.github.com","name":"Dibyendu Majumdar"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/dibyendumajumdar/ravi/commits/c840fffb7f77dd33d6983479cc3f68d3a8aa0659"}]},"public":true,"created_at":"2015-01-01T15:14:31Z"} +,{"id":"2489657766","type":"PushEvent","actor":{"id":10363211,"login":"dknuth","gravatar_id":"","url":"https://api.github.com/users/dknuth","avatar_url":"https://avatars.githubusercontent.com/u/10363211?"},"repo":{"id":28687465,"name":"dknuth/Cocoa-GL-Tutorial","url":"https://api.github.com/repos/dknuth/Cocoa-GL-Tutorial"},"payload":{"push_id":536867010,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"be2f52435c7a55930a53a31c1aae1bd37d5d94b2","before":"340643da0a898eeef8b40f3232e9818fd06ff257","commits":[{"sha":"be2f52435c7a55930a53a31c1aae1bd37d5d94b2","author":{"email":"8151325dcdbae9e0ff95f9f9658432dbedfdb209@sample.com","name":"Sample"},"message":"MOD: project settings","distinct":true,"url":"https://api.github.com/repos/dknuth/Cocoa-GL-Tutorial/commits/be2f52435c7a55930a53a31c1aae1bd37d5d94b2"}]},"public":true,"created_at":"2015-01-01T15:14:31Z"} +,{"id":"2489657769","type":"PushEvent","actor":{"id":259525,"login":"koenkooi","gravatar_id":"","url":"https://api.github.com/users/koenkooi","avatar_url":"https://avatars.githubusercontent.com/u/259525?"},"repo":{"id":28624850,"name":"koenkooi/meta-edison","url":"https://api.github.com/repos/koenkooi/meta-edison"},"payload":{"push_id":536867013,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"dc2821bdedf75a919112157f331d012c499c781e","before":"cd473fb821b5a9ddb730bc7dddaba956a3bbc9a9","commits":[{"sha":"7e5020b49eca77d55115509737fa086572d26a45","author":{"email":"42e3d96910f922bdd7dd1805fe3f8aff634f391d@dominion.thruhere.net","name":"Koen Kooi"},"message":"linux-edison: enable BFQ scheduler\n\nSigned-off-by: Koen Kooi ","distinct":true,"url":"https://api.github.com/repos/koenkooi/meta-edison/commits/7e5020b49eca77d55115509737fa086572d26a45"},{"sha":"dc2821bdedf75a919112157f331d012c499c781e","author":{"email":"42e3d96910f922bdd7dd1805fe3f8aff634f391d@dominion.thruhere.net","name":"Koen Kooi"},"message":"linux-edison: update to 3.10.32\n\nSigned-off-by: Koen Kooi ","distinct":true,"url":"https://api.github.com/repos/koenkooi/meta-edison/commits/dc2821bdedf75a919112157f331d012c499c781e"}]},"public":true,"created_at":"2015-01-01T15:14:32Z"} +,{"id":"2489657772","type":"PushEvent","actor":{"id":9321890,"login":"nadborduedil","gravatar_id":"","url":"https://api.github.com/users/nadborduedil","avatar_url":"https://avatars.githubusercontent.com/u/9321890?"},"repo":{"id":28224558,"name":"nadborduedil/networks","url":"https://api.github.com/repos/nadborduedil/networks"},"payload":{"push_id":536867014,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"936a7e3382684ad88c17ac267c599ba1ed62d64f","before":"f4e9c65a81ce8cd9014493e9858a44969e872974","commits":[{"sha":"936a7e3382684ad88c17ac267c599ba1ed62d64f","author":{"email":"edf97615dbd3cb30c1fd1a8e9adea398818d4c2c@duedil.com","name":"nadborduedil"},"message":"aldbfvaerufier","distinct":true,"url":"https://api.github.com/repos/nadborduedil/networks/commits/936a7e3382684ad88c17ac267c599ba1ed62d64f"}]},"public":true,"created_at":"2015-01-01T15:14:32Z"} +,{"id":"2489657773","type":"PushEvent","actor":{"id":1986000,"login":"wilsonge","gravatar_id":"","url":"https://api.github.com/users/wilsonge","avatar_url":"https://avatars.githubusercontent.com/u/1986000?"},"repo":{"id":9136608,"name":"wilsonge/joomla-cms","url":"https://api.github.com/repos/wilsonge/joomla-cms"},"payload":{"push_id":536867015,"size":1,"distinct_size":1,"ref":"refs/heads/deprecatedstuff","head":"808ef3c551e664ecc56a7277dd55fe5ab3fbc6a0","before":"0d4839425dd8c256b429af8db7108125ecadf418","commits":[{"sha":"808ef3c551e664ecc56a7277dd55fe5ab3fbc6a0","author":{"email":"82e36d00da02a403b366c1d4d2d207e67b0af63c@googlemail.com","name":"George Wilson"},"message":"Add try/catch for rest of file","distinct":true,"url":"https://api.github.com/repos/wilsonge/joomla-cms/commits/808ef3c551e664ecc56a7277dd55fe5ab3fbc6a0"}]},"public":true,"created_at":"2015-01-01T15:14:32Z"} +,{"id":"2489657778","type":"PushEvent","actor":{"id":1563559,"login":"jaswsinc","gravatar_id":"","url":"https://api.github.com/users/jaswsinc","avatar_url":"https://avatars.githubusercontent.com/u/1563559?"},"repo":{"id":26142240,"name":"websharks/zencache","url":"https://api.github.com/repos/websharks/zencache"},"payload":{"push_id":536867019,"size":1,"distinct_size":1,"ref":"refs/heads/feature/5-deactivate","head":"cd3ec0e054590a49dddaf9e0f91ab1345b2ed427","before":"493c9d22394d16ddd10f39f8004d0ee613ded309","commits":[{"sha":"cd3ec0e054590a49dddaf9e0f91ab1345b2ed427","author":{"email":"6201de23c7ceb366b024d639ec160438de89ccc1@wsharks.com","name":"JasWSInc"},"message":"Improving conflict notice. See: websharks/zencache#10\n\n\"ZenCache is NOT running. A conflicting plugin, Quick Cache, is currently active. Please deactivate the Quick Cache plugin to clear this message.\"","distinct":true,"url":"https://api.github.com/repos/websharks/zencache/commits/cd3ec0e054590a49dddaf9e0f91ab1345b2ed427"}]},"public":true,"created_at":"2015-01-01T15:14:32Z","org":{"id":1563690,"login":"websharks","gravatar_id":"","url":"https://api.github.com/orgs/websharks","avatar_url":"https://avatars.githubusercontent.com/u/1563690?"}} +,{"id":"2489657779","type":"WatchEvent","actor":{"id":57622,"login":"pbzdyl","gravatar_id":"","url":"https://api.github.com/users/pbzdyl","avatar_url":"https://avatars.githubusercontent.com/u/57622?"},"repo":{"id":25965034,"name":"rengwuxian/MaterialEditText","url":"https://api.github.com/repos/rengwuxian/MaterialEditText"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:33Z"} +,{"id":"2489657781","type":"CreateEvent","actor":{"id":2266445,"login":"littleguy77","gravatar_id":"","url":"https://api.github.com/users/littleguy77","avatar_url":"https://avatars.githubusercontent.com/u/2266445?"},"repo":{"id":16059770,"name":"mupen64plus-ae/mupen64plus-core","url":"https://api.github.com/repos/mupen64plus-ae/mupen64plus-core"},"payload":{"ref":"obsolete","ref_type":"branch","master_branch":"master","description":"Core module of the Mupen64Plus project","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:33Z","org":{"id":6227843,"login":"mupen64plus-ae","gravatar_id":"","url":"https://api.github.com/orgs/mupen64plus-ae","avatar_url":"https://avatars.githubusercontent.com/u/6227843?"}} +,{"id":"2489657782","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":536867022,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2482d0537eff61ac28102badf462b74701ebf6aa","before":"aa58de709261b4a3ac0e7d40d9439c7220fe9938","commits":[{"sha":"2482d0537eff61ac28102badf462b74701ebf6aa","author":{"email":"cd28f5565289ed460fbe3a6d5b63448195cd90ae@gmail.com","name":"MDT"},"message":"Delete main.cpp","distinct":true,"url":"https://api.github.com/repos/mdt207/GDo-kon/commits/2482d0537eff61ac28102badf462b74701ebf6aa"}]},"public":true,"created_at":"2015-01-01T15:14:33Z"} +,{"id":"2489657784","type":"PullRequestEvent","actor":{"id":5105508,"login":"gioch","gravatar_id":"","url":"https://api.github.com/users/gioch","avatar_url":"https://avatars.githubusercontent.com/u/5105508?"},"repo":{"id":28078075,"name":"gioch/Goals","url":"https://api.github.com/repos/gioch/Goals"},"payload":{"action":"opened","number":1,"pull_request":{"url":"https://api.github.com/repos/gioch/Goals/pulls/1","id":26743879,"html_url":"https://github.com/gioch/Goals/pull/1","diff_url":"https://github.com/gioch/Goals/pull/1.diff","patch_url":"https://github.com/gioch/Goals/pull/1.patch","issue_url":"https://api.github.com/repos/gioch/Goals/issues/1","number":1,"state":"open","locked":false,"title":"Erased comment from app controller","user":{"login":"gioch","id":5105508,"avatar_url":"https://avatars.githubusercontent.com/u/5105508?v=3","gravatar_id":"","url":"https://api.github.com/users/gioch","html_url":"https://github.com/gioch","followers_url":"https://api.github.com/users/gioch/followers","following_url":"https://api.github.com/users/gioch/following{/other_user}","gists_url":"https://api.github.com/users/gioch/gists{/gist_id}","starred_url":"https://api.github.com/users/gioch/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gioch/subscriptions","organizations_url":"https://api.github.com/users/gioch/orgs","repos_url":"https://api.github.com/users/gioch/repos","events_url":"https://api.github.com/users/gioch/events{/privacy}","received_events_url":"https://api.github.com/users/gioch/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:14:33Z","updated_at":"2015-01-01T15:14:33Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/gioch/Goals/pulls/1/commits","review_comments_url":"https://api.github.com/repos/gioch/Goals/pulls/1/comments","review_comment_url":"https://api.github.com/repos/gioch/Goals/pulls/comments/{number}","comments_url":"https://api.github.com/repos/gioch/Goals/issues/1/comments","statuses_url":"https://api.github.com/repos/gioch/Goals/statuses/d36704346022c6ea7227199d5789500ea670eddd","head":{"label":"gioch:dev","ref":"dev","sha":"d36704346022c6ea7227199d5789500ea670eddd","user":{"login":"gioch","id":5105508,"avatar_url":"https://avatars.githubusercontent.com/u/5105508?v=3","gravatar_id":"","url":"https://api.github.com/users/gioch","html_url":"https://github.com/gioch","followers_url":"https://api.github.com/users/gioch/followers","following_url":"https://api.github.com/users/gioch/following{/other_user}","gists_url":"https://api.github.com/users/gioch/gists{/gist_id}","starred_url":"https://api.github.com/users/gioch/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gioch/subscriptions","organizations_url":"https://api.github.com/users/gioch/orgs","repos_url":"https://api.github.com/users/gioch/repos","events_url":"https://api.github.com/users/gioch/events{/privacy}","received_events_url":"https://api.github.com/users/gioch/received_events","type":"User","site_admin":false},"repo":{"id":28078075,"name":"Goals","full_name":"gioch/Goals","owner":{"login":"gioch","id":5105508,"avatar_url":"https://avatars.githubusercontent.com/u/5105508?v=3","gravatar_id":"","url":"https://api.github.com/users/gioch","html_url":"https://github.com/gioch","followers_url":"https://api.github.com/users/gioch/followers","following_url":"https://api.github.com/users/gioch/following{/other_user}","gists_url":"https://api.github.com/users/gioch/gists{/gist_id}","starred_url":"https://api.github.com/users/gioch/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gioch/subscriptions","organizations_url":"https://api.github.com/users/gioch/orgs","repos_url":"https://api.github.com/users/gioch/repos","events_url":"https://api.github.com/users/gioch/events{/privacy}","received_events_url":"https://api.github.com/users/gioch/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/gioch/Goals","description":"Simple web-app, developed with Ruby On Rails, for managing your goals","fork":false,"url":"https://api.github.com/repos/gioch/Goals","forks_url":"https://api.github.com/repos/gioch/Goals/forks","keys_url":"https://api.github.com/repos/gioch/Goals/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gioch/Goals/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gioch/Goals/teams","hooks_url":"https://api.github.com/repos/gioch/Goals/hooks","issue_events_url":"https://api.github.com/repos/gioch/Goals/issues/events{/number}","events_url":"https://api.github.com/repos/gioch/Goals/events","assignees_url":"https://api.github.com/repos/gioch/Goals/assignees{/user}","branches_url":"https://api.github.com/repos/gioch/Goals/branches{/branch}","tags_url":"https://api.github.com/repos/gioch/Goals/tags","blobs_url":"https://api.github.com/repos/gioch/Goals/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gioch/Goals/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gioch/Goals/git/refs{/sha}","trees_url":"https://api.github.com/repos/gioch/Goals/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gioch/Goals/statuses/{sha}","languages_url":"https://api.github.com/repos/gioch/Goals/languages","stargazers_url":"https://api.github.com/repos/gioch/Goals/stargazers","contributors_url":"https://api.github.com/repos/gioch/Goals/contributors","subscribers_url":"https://api.github.com/repos/gioch/Goals/subscribers","subscription_url":"https://api.github.com/repos/gioch/Goals/subscription","commits_url":"https://api.github.com/repos/gioch/Goals/commits{/sha}","git_commits_url":"https://api.github.com/repos/gioch/Goals/git/commits{/sha}","comments_url":"https://api.github.com/repos/gioch/Goals/comments{/number}","issue_comment_url":"https://api.github.com/repos/gioch/Goals/issues/comments/{number}","contents_url":"https://api.github.com/repos/gioch/Goals/contents/{+path}","compare_url":"https://api.github.com/repos/gioch/Goals/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gioch/Goals/merges","archive_url":"https://api.github.com/repos/gioch/Goals/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gioch/Goals/downloads","issues_url":"https://api.github.com/repos/gioch/Goals/issues{/number}","pulls_url":"https://api.github.com/repos/gioch/Goals/pulls{/number}","milestones_url":"https://api.github.com/repos/gioch/Goals/milestones{/number}","notifications_url":"https://api.github.com/repos/gioch/Goals/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gioch/Goals/labels{/name}","releases_url":"https://api.github.com/repos/gioch/Goals/releases{/id}","created_at":"2014-12-16T08:41:37Z","updated_at":"2014-12-22T10:03:16Z","pushed_at":"2015-01-01T15:13:40Z","git_url":"git://github.com/gioch/Goals.git","ssh_url":"git@github.com:gioch/Goals.git","clone_url":"https://github.com/gioch/Goals.git","svn_url":"https://github.com/gioch/Goals","homepage":null,"size":168,"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":"gioch:master","ref":"master","sha":"6829117977ce8e104b6643e240eb07a5a2a8b0ed","user":{"login":"gioch","id":5105508,"avatar_url":"https://avatars.githubusercontent.com/u/5105508?v=3","gravatar_id":"","url":"https://api.github.com/users/gioch","html_url":"https://github.com/gioch","followers_url":"https://api.github.com/users/gioch/followers","following_url":"https://api.github.com/users/gioch/following{/other_user}","gists_url":"https://api.github.com/users/gioch/gists{/gist_id}","starred_url":"https://api.github.com/users/gioch/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gioch/subscriptions","organizations_url":"https://api.github.com/users/gioch/orgs","repos_url":"https://api.github.com/users/gioch/repos","events_url":"https://api.github.com/users/gioch/events{/privacy}","received_events_url":"https://api.github.com/users/gioch/received_events","type":"User","site_admin":false},"repo":{"id":28078075,"name":"Goals","full_name":"gioch/Goals","owner":{"login":"gioch","id":5105508,"avatar_url":"https://avatars.githubusercontent.com/u/5105508?v=3","gravatar_id":"","url":"https://api.github.com/users/gioch","html_url":"https://github.com/gioch","followers_url":"https://api.github.com/users/gioch/followers","following_url":"https://api.github.com/users/gioch/following{/other_user}","gists_url":"https://api.github.com/users/gioch/gists{/gist_id}","starred_url":"https://api.github.com/users/gioch/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gioch/subscriptions","organizations_url":"https://api.github.com/users/gioch/orgs","repos_url":"https://api.github.com/users/gioch/repos","events_url":"https://api.github.com/users/gioch/events{/privacy}","received_events_url":"https://api.github.com/users/gioch/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/gioch/Goals","description":"Simple web-app, developed with Ruby On Rails, for managing your goals","fork":false,"url":"https://api.github.com/repos/gioch/Goals","forks_url":"https://api.github.com/repos/gioch/Goals/forks","keys_url":"https://api.github.com/repos/gioch/Goals/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gioch/Goals/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gioch/Goals/teams","hooks_url":"https://api.github.com/repos/gioch/Goals/hooks","issue_events_url":"https://api.github.com/repos/gioch/Goals/issues/events{/number}","events_url":"https://api.github.com/repos/gioch/Goals/events","assignees_url":"https://api.github.com/repos/gioch/Goals/assignees{/user}","branches_url":"https://api.github.com/repos/gioch/Goals/branches{/branch}","tags_url":"https://api.github.com/repos/gioch/Goals/tags","blobs_url":"https://api.github.com/repos/gioch/Goals/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gioch/Goals/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gioch/Goals/git/refs{/sha}","trees_url":"https://api.github.com/repos/gioch/Goals/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gioch/Goals/statuses/{sha}","languages_url":"https://api.github.com/repos/gioch/Goals/languages","stargazers_url":"https://api.github.com/repos/gioch/Goals/stargazers","contributors_url":"https://api.github.com/repos/gioch/Goals/contributors","subscribers_url":"https://api.github.com/repos/gioch/Goals/subscribers","subscription_url":"https://api.github.com/repos/gioch/Goals/subscription","commits_url":"https://api.github.com/repos/gioch/Goals/commits{/sha}","git_commits_url":"https://api.github.com/repos/gioch/Goals/git/commits{/sha}","comments_url":"https://api.github.com/repos/gioch/Goals/comments{/number}","issue_comment_url":"https://api.github.com/repos/gioch/Goals/issues/comments/{number}","contents_url":"https://api.github.com/repos/gioch/Goals/contents/{+path}","compare_url":"https://api.github.com/repos/gioch/Goals/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gioch/Goals/merges","archive_url":"https://api.github.com/repos/gioch/Goals/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gioch/Goals/downloads","issues_url":"https://api.github.com/repos/gioch/Goals/issues{/number}","pulls_url":"https://api.github.com/repos/gioch/Goals/pulls{/number}","milestones_url":"https://api.github.com/repos/gioch/Goals/milestones{/number}","notifications_url":"https://api.github.com/repos/gioch/Goals/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gioch/Goals/labels{/name}","releases_url":"https://api.github.com/repos/gioch/Goals/releases{/id}","created_at":"2014-12-16T08:41:37Z","updated_at":"2014-12-22T10:03:16Z","pushed_at":"2015-01-01T15:13:40Z","git_url":"git://github.com/gioch/Goals.git","ssh_url":"git@github.com:gioch/Goals.git","clone_url":"https://github.com/gioch/Goals.git","svn_url":"https://github.com/gioch/Goals","homepage":null,"size":168,"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/gioch/Goals/pulls/1"},"html":{"href":"https://github.com/gioch/Goals/pull/1"},"issue":{"href":"https://api.github.com/repos/gioch/Goals/issues/1"},"comments":{"href":"https://api.github.com/repos/gioch/Goals/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/gioch/Goals/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/gioch/Goals/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/gioch/Goals/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/gioch/Goals/statuses/d36704346022c6ea7227199d5789500ea670eddd"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":0,"deletions":2,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:14:33Z"} +,{"id":"2489657786","type":"CreateEvent","actor":{"id":4150852,"login":"iBaa","gravatar_id":"","url":"https://api.github.com/users/iBaa","avatar_url":"https://avatars.githubusercontent.com/u/4150852?"},"repo":{"id":9426192,"name":"iBaa/PlexConnect","url":"https://api.github.com/repos/iBaa/PlexConnect"},"payload":{"ref":"Fanart-Pillow-iOS-fix","ref_type":"branch","master_branch":"master","description":"Plex @ aTV - think different...","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:34Z"} +,{"id":"2489657788","type":"IssueCommentEvent","actor":{"id":66927,"login":"batiste","gravatar_id":"","url":"https://api.github.com/users/batiste","avatar_url":"https://avatars.githubusercontent.com/u/66927?"},"repo":{"id":602604,"name":"pegjs/pegjs","url":"https://api.github.com/repos/pegjs/pegjs"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/pegjs/pegjs/issues/231","labels_url":"https://api.github.com/repos/pegjs/pegjs/issues/231/labels{/name}","comments_url":"https://api.github.com/repos/pegjs/pegjs/issues/231/comments","events_url":"https://api.github.com/repos/pegjs/pegjs/issues/231/events","html_url":"https://github.com/pegjs/pegjs/issues/231","id":25952532,"number":231,"title":"Add support for left recursion","user":{"login":"yang","id":7129,"avatar_url":"https://avatars.githubusercontent.com/u/7129?v=3","gravatar_id":"","url":"https://api.github.com/users/yang","html_url":"https://github.com/yang","followers_url":"https://api.github.com/users/yang/followers","following_url":"https://api.github.com/users/yang/following{/other_user}","gists_url":"https://api.github.com/users/yang/gists{/gist_id}","starred_url":"https://api.github.com/users/yang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yang/subscriptions","organizations_url":"https://api.github.com/users/yang/orgs","repos_url":"https://api.github.com/users/yang/repos","events_url":"https://api.github.com/users/yang/events{/privacy}","received_events_url":"https://api.github.com/users/yang/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":6,"created_at":"2014-01-20T22:55:58Z","updated_at":"2015-01-01T15:14:34Z","closed_at":"2014-01-21T20:28:14Z","body":"Via a modification to basic Packrat memoization as detailed in http://www.vpri.org/pdf/tr2007002_packrat.pdf. This is implemented in Scala 2.8.0's parser combinators. Would be very handy to have for dealing with many avoidable refactorings, allowing for more readable/maintainable grammars."},"comment":{"url":"https://api.github.com/repos/pegjs/pegjs/issues/comments/68488801","html_url":"https://github.com/pegjs/pegjs/issues/231#issuecomment-68488801","issue_url":"https://api.github.com/repos/pegjs/pegjs/issues/231","id":68488801,"user":{"login":"batiste","id":66927,"avatar_url":"https://avatars.githubusercontent.com/u/66927?v=3","gravatar_id":"","url":"https://api.github.com/users/batiste","html_url":"https://github.com/batiste","followers_url":"https://api.github.com/users/batiste/followers","following_url":"https://api.github.com/users/batiste/following{/other_user}","gists_url":"https://api.github.com/users/batiste/gists{/gist_id}","starred_url":"https://api.github.com/users/batiste/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/batiste/subscriptions","organizations_url":"https://api.github.com/users/batiste/orgs","repos_url":"https://api.github.com/users/batiste/repos","events_url":"https://api.github.com/users/batiste/events{/privacy}","received_events_url":"https://api.github.com/users/batiste/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:14:34Z","updated_at":"2015-01-01T15:14:34Z","body":"Hi,\r\n\r\nAfter some research in PEG.js and Jison I came across this thread. I really wanted left recursion to work for my project so I implemented a Grammar Parser using the paper mentioned by @yang in the original post. The result is rather simple and seems to work reasonably well:\r\n\r\nhttps://github.com/batiste/EPEG.js\r\n\r\nAny comments or feedback is welcome.\r\nCheers"}},"public":true,"created_at":"2015-01-01T15:14:35Z","org":{"id":9988648,"login":"pegjs","gravatar_id":"","url":"https://api.github.com/orgs/pegjs","avatar_url":"https://avatars.githubusercontent.com/u/9988648?"}} +,{"id":"2489657792","type":"IssuesEvent","actor":{"id":6973062,"login":"WillCalderwood","gravatar_id":"","url":"https://api.github.com/users/WillCalderwood","avatar_url":"https://avatars.githubusercontent.com/u/6973062?"},"repo":{"id":24584889,"name":"WillCalderwood/WordBuzz","url":"https://api.github.com/repos/WillCalderwood/WordBuzz"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/WillCalderwood/WordBuzz/issues/11","labels_url":"https://api.github.com/repos/WillCalderwood/WordBuzz/issues/11/labels{/name}","comments_url":"https://api.github.com/repos/WillCalderwood/WordBuzz/issues/11/comments","events_url":"https://api.github.com/repos/WillCalderwood/WordBuzz/issues/11/events","html_url":"https://github.com/WillCalderwood/WordBuzz/issues/11","id":51996374,"number":11,"title":"Loading Circle","user":{"login":"WillCalderwood","id":6973062,"avatar_url":"https://avatars.githubusercontent.com/u/6973062?v=3","gravatar_id":"","url":"https://api.github.com/users/WillCalderwood","html_url":"https://github.com/WillCalderwood","followers_url":"https://api.github.com/users/WillCalderwood/followers","following_url":"https://api.github.com/users/WillCalderwood/following{/other_user}","gists_url":"https://api.github.com/users/WillCalderwood/gists{/gist_id}","starred_url":"https://api.github.com/users/WillCalderwood/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/WillCalderwood/subscriptions","organizations_url":"https://api.github.com/users/WillCalderwood/orgs","repos_url":"https://api.github.com/users/WillCalderwood/repos","events_url":"https://api.github.com/users/WillCalderwood/events{/privacy}","received_events_url":"https://api.github.com/users/WillCalderwood/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/WillCalderwood/WordBuzz/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"closed","locked":false,"assignee":{"login":"Ironside74","id":1868160,"avatar_url":"https://avatars.githubusercontent.com/u/1868160?v=3","gravatar_id":"","url":"https://api.github.com/users/Ironside74","html_url":"https://github.com/Ironside74","followers_url":"https://api.github.com/users/Ironside74/followers","following_url":"https://api.github.com/users/Ironside74/following{/other_user}","gists_url":"https://api.github.com/users/Ironside74/gists{/gist_id}","starred_url":"https://api.github.com/users/Ironside74/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Ironside74/subscriptions","organizations_url":"https://api.github.com/users/Ironside74/orgs","repos_url":"https://api.github.com/users/Ironside74/repos","events_url":"https://api.github.com/users/Ironside74/events{/privacy}","received_events_url":"https://api.github.com/users/Ironside74/received_events","type":"User","site_admin":false},"milestone":null,"comments":1,"created_at":"2014-12-15T15:09:31Z","updated_at":"2015-01-01T15:14:34Z","closed_at":"2015-01-01T15:14:34Z","body":"Currently when waiting for a Facebook post to process I display a spinning power flower. This would look better as a loading circle (Or maybe a load of bees flying is a circle?)\r\n\r\nA simple graphic for the task that I can just rotate to show something is happening would be useful."}},"public":true,"created_at":"2015-01-01T15:14:35Z"} +,{"id":"2489657793","type":"PushEvent","actor":{"id":4339651,"login":"MJKWoolnough","gravatar_id":"","url":"https://api.github.com/users/MJKWoolnough","avatar_url":"https://avatars.githubusercontent.com/u/4339651?"},"repo":{"id":26280627,"name":"MJKWoolnough/store","url":"https://api.github.com/repos/MJKWoolnough/store"},"payload":{"push_id":536867025,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9aad1c93b6ec7b737a16ef35582fcd3bf82d144a","before":"964a699adb6ffc6b8d6cf25899326ef35b846950","commits":[{"sha":"9aad1c93b6ec7b737a16ef35582fcd3bf82d144a","author":{"email":"b6c6ef2ac07ef6320c51ba6e6ced359ecd6a371a@gmail.com","name":"Michael Woolnough"},"message":"Corrected param collection","distinct":true,"url":"https://api.github.com/repos/MJKWoolnough/store/commits/9aad1c93b6ec7b737a16ef35582fcd3bf82d144a"}]},"public":true,"created_at":"2015-01-01T15:14:35Z"} +,{"id":"2489657795","type":"PullRequestEvent","actor":{"id":3422626,"login":"pelegm","gravatar_id":"","url":"https://api.github.com/users/pelegm","avatar_url":"https://avatars.githubusercontent.com/u/3422626?"},"repo":{"id":640534,"name":"sympy/sympy","url":"https://api.github.com/repos/sympy/sympy"},"payload":{"action":"opened","number":8728,"pull_request":{"url":"https://api.github.com/repos/sympy/sympy/pulls/8728","id":26743880,"html_url":"https://github.com/sympy/sympy/pull/8728","diff_url":"https://github.com/sympy/sympy/pull/8728.diff","patch_url":"https://github.com/sympy/sympy/pull/8728.patch","issue_url":"https://api.github.com/repos/sympy/sympy/issues/8728","number":8728,"state":"open","locked":false,"title":"Re-implementing factorial2","user":{"login":"pelegm","id":3422626,"avatar_url":"https://avatars.githubusercontent.com/u/3422626?v=3","gravatar_id":"","url":"https://api.github.com/users/pelegm","html_url":"https://github.com/pelegm","followers_url":"https://api.github.com/users/pelegm/followers","following_url":"https://api.github.com/users/pelegm/following{/other_user}","gists_url":"https://api.github.com/users/pelegm/gists{/gist_id}","starred_url":"https://api.github.com/users/pelegm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pelegm/subscriptions","organizations_url":"https://api.github.com/users/pelegm/orgs","repos_url":"https://api.github.com/users/pelegm/repos","events_url":"https://api.github.com/users/pelegm/events{/privacy}","received_events_url":"https://api.github.com/users/pelegm/received_events","type":"User","site_admin":false},"body":"Avoiding recursion, extending to negative odd integers.\r\n\r\nThere's no reason that subfactorial will be defined for integers from -1 and up only.","created_at":"2015-01-01T15:14:35Z","updated_at":"2015-01-01T15:14:35Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/sympy/sympy/pulls/8728/commits","review_comments_url":"https://api.github.com/repos/sympy/sympy/pulls/8728/comments","review_comment_url":"https://api.github.com/repos/sympy/sympy/pulls/comments/{number}","comments_url":"https://api.github.com/repos/sympy/sympy/issues/8728/comments","statuses_url":"https://api.github.com/repos/sympy/sympy/statuses/506621680a05ec65836902a7f6e18e8569962d5e","head":{"label":"pelegm:factorial2_negative","ref":"factorial2_negative","sha":"506621680a05ec65836902a7f6e18e8569962d5e","user":{"login":"pelegm","id":3422626,"avatar_url":"https://avatars.githubusercontent.com/u/3422626?v=3","gravatar_id":"","url":"https://api.github.com/users/pelegm","html_url":"https://github.com/pelegm","followers_url":"https://api.github.com/users/pelegm/followers","following_url":"https://api.github.com/users/pelegm/following{/other_user}","gists_url":"https://api.github.com/users/pelegm/gists{/gist_id}","starred_url":"https://api.github.com/users/pelegm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pelegm/subscriptions","organizations_url":"https://api.github.com/users/pelegm/orgs","repos_url":"https://api.github.com/users/pelegm/repos","events_url":"https://api.github.com/users/pelegm/events{/privacy}","received_events_url":"https://api.github.com/users/pelegm/received_events","type":"User","site_admin":false},"repo":{"id":24494061,"name":"sympy","full_name":"pelegm/sympy","owner":{"login":"pelegm","id":3422626,"avatar_url":"https://avatars.githubusercontent.com/u/3422626?v=3","gravatar_id":"","url":"https://api.github.com/users/pelegm","html_url":"https://github.com/pelegm","followers_url":"https://api.github.com/users/pelegm/followers","following_url":"https://api.github.com/users/pelegm/following{/other_user}","gists_url":"https://api.github.com/users/pelegm/gists{/gist_id}","starred_url":"https://api.github.com/users/pelegm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pelegm/subscriptions","organizations_url":"https://api.github.com/users/pelegm/orgs","repos_url":"https://api.github.com/users/pelegm/repos","events_url":"https://api.github.com/users/pelegm/events{/privacy}","received_events_url":"https://api.github.com/users/pelegm/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/pelegm/sympy","description":"A computer algebra system written in pure Python","fork":true,"url":"https://api.github.com/repos/pelegm/sympy","forks_url":"https://api.github.com/repos/pelegm/sympy/forks","keys_url":"https://api.github.com/repos/pelegm/sympy/keys{/key_id}","collaborators_url":"https://api.github.com/repos/pelegm/sympy/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/pelegm/sympy/teams","hooks_url":"https://api.github.com/repos/pelegm/sympy/hooks","issue_events_url":"https://api.github.com/repos/pelegm/sympy/issues/events{/number}","events_url":"https://api.github.com/repos/pelegm/sympy/events","assignees_url":"https://api.github.com/repos/pelegm/sympy/assignees{/user}","branches_url":"https://api.github.com/repos/pelegm/sympy/branches{/branch}","tags_url":"https://api.github.com/repos/pelegm/sympy/tags","blobs_url":"https://api.github.com/repos/pelegm/sympy/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/pelegm/sympy/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/pelegm/sympy/git/refs{/sha}","trees_url":"https://api.github.com/repos/pelegm/sympy/git/trees{/sha}","statuses_url":"https://api.github.com/repos/pelegm/sympy/statuses/{sha}","languages_url":"https://api.github.com/repos/pelegm/sympy/languages","stargazers_url":"https://api.github.com/repos/pelegm/sympy/stargazers","contributors_url":"https://api.github.com/repos/pelegm/sympy/contributors","subscribers_url":"https://api.github.com/repos/pelegm/sympy/subscribers","subscription_url":"https://api.github.com/repos/pelegm/sympy/subscription","commits_url":"https://api.github.com/repos/pelegm/sympy/commits{/sha}","git_commits_url":"https://api.github.com/repos/pelegm/sympy/git/commits{/sha}","comments_url":"https://api.github.com/repos/pelegm/sympy/comments{/number}","issue_comment_url":"https://api.github.com/repos/pelegm/sympy/issues/comments/{number}","contents_url":"https://api.github.com/repos/pelegm/sympy/contents/{+path}","compare_url":"https://api.github.com/repos/pelegm/sympy/compare/{base}...{head}","merges_url":"https://api.github.com/repos/pelegm/sympy/merges","archive_url":"https://api.github.com/repos/pelegm/sympy/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/pelegm/sympy/downloads","issues_url":"https://api.github.com/repos/pelegm/sympy/issues{/number}","pulls_url":"https://api.github.com/repos/pelegm/sympy/pulls{/number}","milestones_url":"https://api.github.com/repos/pelegm/sympy/milestones{/number}","notifications_url":"https://api.github.com/repos/pelegm/sympy/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/pelegm/sympy/labels{/name}","releases_url":"https://api.github.com/repos/pelegm/sympy/releases{/id}","created_at":"2014-09-26T09:31:57Z","updated_at":"2015-01-01T15:08:38Z","pushed_at":"2015-01-01T15:09:07Z","git_url":"git://github.com/pelegm/sympy.git","ssh_url":"git@github.com:pelegm/sympy.git","clone_url":"https://github.com/pelegm/sympy.git","svn_url":"https://github.com/pelegm/sympy","homepage":"http://sympy.org/","size":65549,"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":"sympy:master","ref":"master","sha":"7d7eb6731562f9a7cf25f92264613f0331f72119","user":{"login":"sympy","id":260832,"avatar_url":"https://avatars.githubusercontent.com/u/260832?v=3","gravatar_id":"","url":"https://api.github.com/users/sympy","html_url":"https://github.com/sympy","followers_url":"https://api.github.com/users/sympy/followers","following_url":"https://api.github.com/users/sympy/following{/other_user}","gists_url":"https://api.github.com/users/sympy/gists{/gist_id}","starred_url":"https://api.github.com/users/sympy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sympy/subscriptions","organizations_url":"https://api.github.com/users/sympy/orgs","repos_url":"https://api.github.com/users/sympy/repos","events_url":"https://api.github.com/users/sympy/events{/privacy}","received_events_url":"https://api.github.com/users/sympy/received_events","type":"Organization","site_admin":false},"repo":{"id":640534,"name":"sympy","full_name":"sympy/sympy","owner":{"login":"sympy","id":260832,"avatar_url":"https://avatars.githubusercontent.com/u/260832?v=3","gravatar_id":"","url":"https://api.github.com/users/sympy","html_url":"https://github.com/sympy","followers_url":"https://api.github.com/users/sympy/followers","following_url":"https://api.github.com/users/sympy/following{/other_user}","gists_url":"https://api.github.com/users/sympy/gists{/gist_id}","starred_url":"https://api.github.com/users/sympy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sympy/subscriptions","organizations_url":"https://api.github.com/users/sympy/orgs","repos_url":"https://api.github.com/users/sympy/repos","events_url":"https://api.github.com/users/sympy/events{/privacy}","received_events_url":"https://api.github.com/users/sympy/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/sympy/sympy","description":"A computer algebra system written in pure Python","fork":false,"url":"https://api.github.com/repos/sympy/sympy","forks_url":"https://api.github.com/repos/sympy/sympy/forks","keys_url":"https://api.github.com/repos/sympy/sympy/keys{/key_id}","collaborators_url":"https://api.github.com/repos/sympy/sympy/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/sympy/sympy/teams","hooks_url":"https://api.github.com/repos/sympy/sympy/hooks","issue_events_url":"https://api.github.com/repos/sympy/sympy/issues/events{/number}","events_url":"https://api.github.com/repos/sympy/sympy/events","assignees_url":"https://api.github.com/repos/sympy/sympy/assignees{/user}","branches_url":"https://api.github.com/repos/sympy/sympy/branches{/branch}","tags_url":"https://api.github.com/repos/sympy/sympy/tags","blobs_url":"https://api.github.com/repos/sympy/sympy/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/sympy/sympy/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/sympy/sympy/git/refs{/sha}","trees_url":"https://api.github.com/repos/sympy/sympy/git/trees{/sha}","statuses_url":"https://api.github.com/repos/sympy/sympy/statuses/{sha}","languages_url":"https://api.github.com/repos/sympy/sympy/languages","stargazers_url":"https://api.github.com/repos/sympy/sympy/stargazers","contributors_url":"https://api.github.com/repos/sympy/sympy/contributors","subscribers_url":"https://api.github.com/repos/sympy/sympy/subscribers","subscription_url":"https://api.github.com/repos/sympy/sympy/subscription","commits_url":"https://api.github.com/repos/sympy/sympy/commits{/sha}","git_commits_url":"https://api.github.com/repos/sympy/sympy/git/commits{/sha}","comments_url":"https://api.github.com/repos/sympy/sympy/comments{/number}","issue_comment_url":"https://api.github.com/repos/sympy/sympy/issues/comments/{number}","contents_url":"https://api.github.com/repos/sympy/sympy/contents/{+path}","compare_url":"https://api.github.com/repos/sympy/sympy/compare/{base}...{head}","merges_url":"https://api.github.com/repos/sympy/sympy/merges","archive_url":"https://api.github.com/repos/sympy/sympy/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/sympy/sympy/downloads","issues_url":"https://api.github.com/repos/sympy/sympy/issues{/number}","pulls_url":"https://api.github.com/repos/sympy/sympy/pulls{/number}","milestones_url":"https://api.github.com/repos/sympy/sympy/milestones{/number}","notifications_url":"https://api.github.com/repos/sympy/sympy/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/sympy/sympy/labels{/name}","releases_url":"https://api.github.com/repos/sympy/sympy/releases{/id}","created_at":"2010-04-30T20:37:14Z","updated_at":"2014-12-31T23:01:52Z","pushed_at":"2014-12-31T11:14:44Z","git_url":"git://github.com/sympy/sympy.git","ssh_url":"git@github.com:sympy/sympy.git","clone_url":"https://github.com/sympy/sympy.git","svn_url":"https://github.com/sympy/sympy","homepage":"http://sympy.org/","size":134482,"stargazers_count":1857,"watchers_count":1857,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":869,"mirror_url":null,"open_issues_count":1768,"forks":869,"open_issues":1768,"watchers":1857,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/sympy/sympy/pulls/8728"},"html":{"href":"https://github.com/sympy/sympy/pull/8728"},"issue":{"href":"https://api.github.com/repos/sympy/sympy/issues/8728"},"comments":{"href":"https://api.github.com/repos/sympy/sympy/issues/8728/comments"},"review_comments":{"href":"https://api.github.com/repos/sympy/sympy/pulls/8728/comments"},"review_comment":{"href":"https://api.github.com/repos/sympy/sympy/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/sympy/sympy/pulls/8728/commits"},"statuses":{"href":"https://api.github.com/repos/sympy/sympy/statuses/506621680a05ec65836902a7f6e18e8569962d5e"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":121,"deletions":25,"changed_files":2}},"public":true,"created_at":"2015-01-01T15:14:35Z","org":{"id":260832,"login":"sympy","gravatar_id":"","url":"https://api.github.com/orgs/sympy","avatar_url":"https://avatars.githubusercontent.com/u/260832?"}} +,{"id":"2489657798","type":"PushEvent","actor":{"id":13277,"login":"ches","gravatar_id":"","url":"https://api.github.com/users/ches","avatar_url":"https://avatars.githubusercontent.com/u/13277?"},"repo":{"id":1595300,"name":"ches/dotfiles","url":"https://api.github.com/repos/ches/dotfiles"},"payload":{"push_id":536867027,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ac411c5739c067385c40b264de1e6497c648cd42","before":"d088731ebc36a8dab5b74782c80a2743c6d266ab","commits":[{"sha":"ac411c5739c067385c40b264de1e6497c648cd42","author":{"email":"0fe9194941933ebd434d124346858b34a2f7e57c@whiskeyandgrits.net","name":"Ches Martin"},"message":"hg: User-global hgignore","distinct":true,"url":"https://api.github.com/repos/ches/dotfiles/commits/ac411c5739c067385c40b264de1e6497c648cd42"}]},"public":true,"created_at":"2015-01-01T15:14:35Z"} +,{"id":"2489657799","type":"ForkEvent","actor":{"id":2672226,"login":"NsLib","gravatar_id":"","url":"https://api.github.com/users/NsLib","avatar_url":"https://avatars.githubusercontent.com/u/2672226?"},"repo":{"id":2971778,"name":"jedi4ever/markdown2confluence","url":"https://api.github.com/repos/jedi4ever/markdown2confluence"},"payload":{"forkee":{"id":28688873,"name":"markdown2confluence","full_name":"NsLib/markdown2confluence","owner":{"login":"NsLib","id":2672226,"avatar_url":"https://avatars.githubusercontent.com/u/2672226?v=3","gravatar_id":"","url":"https://api.github.com/users/NsLib","html_url":"https://github.com/NsLib","followers_url":"https://api.github.com/users/NsLib/followers","following_url":"https://api.github.com/users/NsLib/following{/other_user}","gists_url":"https://api.github.com/users/NsLib/gists{/gist_id}","starred_url":"https://api.github.com/users/NsLib/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/NsLib/subscriptions","organizations_url":"https://api.github.com/users/NsLib/orgs","repos_url":"https://api.github.com/users/NsLib/repos","events_url":"https://api.github.com/users/NsLib/events{/privacy}","received_events_url":"https://api.github.com/users/NsLib/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/NsLib/markdown2confluence","description":"Converting Markdown to Confluence Markup using Kramdown Gem","fork":true,"url":"https://api.github.com/repos/NsLib/markdown2confluence","forks_url":"https://api.github.com/repos/NsLib/markdown2confluence/forks","keys_url":"https://api.github.com/repos/NsLib/markdown2confluence/keys{/key_id}","collaborators_url":"https://api.github.com/repos/NsLib/markdown2confluence/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/NsLib/markdown2confluence/teams","hooks_url":"https://api.github.com/repos/NsLib/markdown2confluence/hooks","issue_events_url":"https://api.github.com/repos/NsLib/markdown2confluence/issues/events{/number}","events_url":"https://api.github.com/repos/NsLib/markdown2confluence/events","assignees_url":"https://api.github.com/repos/NsLib/markdown2confluence/assignees{/user}","branches_url":"https://api.github.com/repos/NsLib/markdown2confluence/branches{/branch}","tags_url":"https://api.github.com/repos/NsLib/markdown2confluence/tags","blobs_url":"https://api.github.com/repos/NsLib/markdown2confluence/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/NsLib/markdown2confluence/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/NsLib/markdown2confluence/git/refs{/sha}","trees_url":"https://api.github.com/repos/NsLib/markdown2confluence/git/trees{/sha}","statuses_url":"https://api.github.com/repos/NsLib/markdown2confluence/statuses/{sha}","languages_url":"https://api.github.com/repos/NsLib/markdown2confluence/languages","stargazers_url":"https://api.github.com/repos/NsLib/markdown2confluence/stargazers","contributors_url":"https://api.github.com/repos/NsLib/markdown2confluence/contributors","subscribers_url":"https://api.github.com/repos/NsLib/markdown2confluence/subscribers","subscription_url":"https://api.github.com/repos/NsLib/markdown2confluence/subscription","commits_url":"https://api.github.com/repos/NsLib/markdown2confluence/commits{/sha}","git_commits_url":"https://api.github.com/repos/NsLib/markdown2confluence/git/commits{/sha}","comments_url":"https://api.github.com/repos/NsLib/markdown2confluence/comments{/number}","issue_comment_url":"https://api.github.com/repos/NsLib/markdown2confluence/issues/comments/{number}","contents_url":"https://api.github.com/repos/NsLib/markdown2confluence/contents/{+path}","compare_url":"https://api.github.com/repos/NsLib/markdown2confluence/compare/{base}...{head}","merges_url":"https://api.github.com/repos/NsLib/markdown2confluence/merges","archive_url":"https://api.github.com/repos/NsLib/markdown2confluence/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/NsLib/markdown2confluence/downloads","issues_url":"https://api.github.com/repos/NsLib/markdown2confluence/issues{/number}","pulls_url":"https://api.github.com/repos/NsLib/markdown2confluence/pulls{/number}","milestones_url":"https://api.github.com/repos/NsLib/markdown2confluence/milestones{/number}","notifications_url":"https://api.github.com/repos/NsLib/markdown2confluence/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/NsLib/markdown2confluence/labels{/name}","releases_url":"https://api.github.com/repos/NsLib/markdown2confluence/releases{/id}","created_at":"2015-01-01T15:14:36Z","updated_at":"2014-12-04T20:42:51Z","pushed_at":"2014-07-21T09:55:50Z","git_url":"git://github.com/NsLib/markdown2confluence.git","ssh_url":"git@github.com:NsLib/markdown2confluence.git","clone_url":"https://github.com/NsLib/markdown2confluence.git","svn_url":"https://github.com/NsLib/markdown2confluence","homepage":"","size":166,"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:14:36Z"} +,{"id":"2489657801","type":"PushEvent","actor":{"id":1457003,"login":"kelvinh","gravatar_id":"","url":"https://api.github.com/users/kelvinh","avatar_url":"https://avatars.githubusercontent.com/u/1457003?"},"repo":{"id":7378862,"name":"kelvinh/kelvinh.github.com","url":"https://api.github.com/repos/kelvinh/kelvinh.github.com"},"payload":{"push_id":536867029,"size":1,"distinct_size":1,"ref":"refs/heads/source","head":"c7c250197be2390ec11a73a2a182b20999156985","before":"d6442862e161689cfc222c5186b020ebefc37ba3","commits":[{"sha":"c7c250197be2390ec11a73a2a182b20999156985","author":{"email":"b92c28d1d14f8a7c428530c7adb39de14a917efb@gmail.com","name":"Kelvin Hu"},"message":"new post: long time no c","distinct":true,"url":"https://api.github.com/repos/kelvinh/kelvinh.github.com/commits/c7c250197be2390ec11a73a2a182b20999156985"}]},"public":true,"created_at":"2015-01-01T15:14:37Z"} +,{"id":"2489657802","type":"PushEvent","actor":{"id":8523812,"login":"AgonLohaj","gravatar_id":"","url":"https://api.github.com/users/AgonLohaj","avatar_url":"https://avatars.githubusercontent.com/u/8523812?"},"repo":{"id":27199237,"name":"AgonLohaj/hssp_curve","url":"https://api.github.com/repos/AgonLohaj/hssp_curve"},"payload":{"push_id":536867030,"size":5,"distinct_size":0,"ref":"refs/heads/master","head":"1456d870fd572f1d566bf0f18bfd55fd87d998b0","before":"ab47ba32f9a8910ab77fc8ad3b839a0531a1fec0","commits":[{"sha":"8373be15a585de04c4ef38a18d6182b275a49fc3","author":{"email":"92c363ca20f601da99ab37089236b7472f48af7f@gmail.com","name":"Bardh Lohaj"},"message":"Merge pull request #1 from AgonLohaj/master\n\nminor bugfix","distinct":false,"url":"https://api.github.com/repos/AgonLohaj/hssp_curve/commits/8373be15a585de04c4ef38a18d6182b275a49fc3"},{"sha":"a70df2060345be40b3fa975452c27b18300e164e","author":{"email":"92c363ca20f601da99ab37089236b7472f48af7f@gmail.com","name":"Bardh Lohaj"},"message":"Merge pull request #2 from AgonLohaj/master\n\nv0.2","distinct":false,"url":"https://api.github.com/repos/AgonLohaj/hssp_curve/commits/a70df2060345be40b3fa975452c27b18300e164e"},{"sha":"f08fd9b71b8c1aa4a4c2fc47d2835bbdc47bcf56","author":{"email":"92c363ca20f601da99ab37089236b7472f48af7f@gmail.com","name":"Bardh Lohaj"},"message":"Merge pull request #3 from AgonLohaj/master\n\nType fix","distinct":false,"url":"https://api.github.com/repos/AgonLohaj/hssp_curve/commits/f08fd9b71b8c1aa4a4c2fc47d2835bbdc47bcf56"},{"sha":"a735683b32e9dbf9abd6298bb67cd6ae60a39884","author":{"email":"9ff75bead9a82c284bd1ed9cfb8e718709d4f52a@gmail.com","name":"AgonLohaj"},"message":"Merge remote-tracking branch 'origin/master' into gh-pages","distinct":false,"url":"https://api.github.com/repos/AgonLohaj/hssp_curve/commits/a735683b32e9dbf9abd6298bb67cd6ae60a39884"},{"sha":"1456d870fd572f1d566bf0f18bfd55fd87d998b0","author":{"email":"9ff75bead9a82c284bd1ed9cfb8e718709d4f52a@gmail.com","name":"AgonLohaj"},"message":"Small Bug","distinct":false,"url":"https://api.github.com/repos/AgonLohaj/hssp_curve/commits/1456d870fd572f1d566bf0f18bfd55fd87d998b0"}]},"public":true,"created_at":"2015-01-01T15:14:37Z"} +,{"id":"2489657804","type":"CreateEvent","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":22527203,"name":"marco-c/j2me.js","url":"https://api.github.com/repos/marco-c/j2me.js"},"payload":{"ref":"remove_unneeded_logging","ref_type":"branch","master_branch":"master","description":"J2ME VM in JavaScript","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:37Z"} +,{"id":"2489657807","type":"DeleteEvent","actor":{"id":3888750,"login":"joachimmetz","gravatar_id":"","url":"https://api.github.com/users/joachimmetz","avatar_url":"https://avatars.githubusercontent.com/u/3888750?"},"repo":{"id":24666110,"name":"libyal/libcsystem","url":"https://api.github.com/repos/libyal/libcsystem"},"payload":{"ref":"20150101","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:37Z","org":{"id":8692283,"login":"libyal","gravatar_id":"","url":"https://api.github.com/orgs/libyal","avatar_url":"https://avatars.githubusercontent.com/u/8692283?"}} +,{"id":"2489657809","type":"PushEvent","actor":{"id":3588764,"login":"bplower","gravatar_id":"","url":"https://api.github.com/users/bplower","avatar_url":"https://avatars.githubusercontent.com/u/3588764?"},"repo":{"id":25339804,"name":"bplower/cssef","url":"https://api.github.com/repos/bplower/cssef"},"payload":{"push_id":536867037,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4915badc55ad1c8644fdb3635deacb0b271c9686","before":"cf3d07e51cb055687b5864043b25ec65ebf1a700","commits":[{"sha":"4915badc55ad1c8644fdb3635deacb0b271c9686","author":{"email":"908d2ca59457fcda60c3fc1270361a2235c518f7@alaska.edu","name":"bplower"},"message":"Worked out problems with 'Service Status' view for blue team.\nAdditionally fixed a few problems with cssef.py, so it'll run now. Need to work out where the network address for a team is defined (should be team object, but is also in team specific configurations for services - why? I don't know).","distinct":true,"url":"https://api.github.com/repos/bplower/cssef/commits/4915badc55ad1c8644fdb3635deacb0b271c9686"}]},"public":true,"created_at":"2015-01-01T15:14:38Z"} +,{"id":"2489657810","type":"CreateEvent","actor":{"id":564941,"login":"kimsama","gravatar_id":"","url":"https://api.github.com/users/kimsama","avatar_url":"https://avatars.githubusercontent.com/u/564941?"},"repo":{"id":27857842,"name":"kimsama/Unity-SpreadsheetPro","url":"https://api.github.com/repos/kimsama/Unity-SpreadsheetPro"},"payload":{"ref":"v0.9a","ref_type":"tag","master_branch":"master","description":"Unity-SpreadsheetPro enables you to use spreadsheet file data within Unity editor. ","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:38Z"} +,{"id":"2489657812","type":"PushEvent","actor":{"id":10176385,"login":"Ti4goc","gravatar_id":"","url":"https://api.github.com/users/Ti4goc","avatar_url":"https://avatars.githubusercontent.com/u/10176385?"},"repo":{"id":27960934,"name":"Ti4goc/translate","url":"https://api.github.com/repos/Ti4goc/translate"},"payload":{"push_id":536867039,"size":1,"distinct_size":1,"ref":"refs/heads/patch-16","head":"0c4bf65c3e62f4054bee0490ac90bf4c245d6a48","before":"8e0c213ea72cecd8dda28dcc230f8b89f4947b49","commits":[{"sha":"0c4bf65c3e62f4054bee0490ac90bf4c245d6a48","author":{"email":"c15bf53395d628eacc732e092ac91e441a33a9d3@outlook.pt","name":"Tiago Correia"},"message":"Update tr_pt.json","distinct":true,"url":"https://api.github.com/repos/Ti4goc/translate/commits/0c4bf65c3e62f4054bee0490ac90bf4c245d6a48"}]},"public":true,"created_at":"2015-01-01T15:14:39Z"} +,{"id":"2489657815","type":"PushEvent","actor":{"id":1893273,"login":"misoclub","gravatar_id":"","url":"https://api.github.com/users/misoclub","avatar_url":"https://avatars.githubusercontent.com/u/1893273?"},"repo":{"id":28177226,"name":"misoclub/bot","url":"https://api.github.com/repos/misoclub/bot"},"payload":{"push_id":536867041,"size":6,"distinct_size":6,"ref":"refs/heads/master","head":"18d2f85e604f76d8ddf0c971a69e8feed99f7815","before":"2db5b9e0cd3940e70e8a43dbe6949950556a165e","commits":[{"sha":"3681f9b76350750dff0ae376e09cf046d0953b47","author":{"email":"513a9a48b5f775e68060f0c750ba64c36a8e1adf@dena.com","name":"Takafumi Naito"},"message":"定期実行用モジュール追加","distinct":true,"url":"https://api.github.com/repos/misoclub/bot/commits/3681f9b76350750dff0ae376e09cf046d0953b47"},{"sha":"1099adaacbf8d497d6c0d4a89856c93753bd4a06","author":{"email":"513a9a48b5f775e68060f0c750ba64c36a8e1adf@dena.com","name":"Takafumi Naito"},"message":"クーロンテスト","distinct":true,"url":"https://api.github.com/repos/misoclub/bot/commits/1099adaacbf8d497d6c0d4a89856c93753bd4a06"},{"sha":"f453ec99c7febe0130e2c9f495e36aa27bf7c013","author":{"email":"513a9a48b5f775e68060f0c750ba64c36a8e1adf@dena.com","name":"Takafumi Naito"},"message":"てsつお","distinct":true,"url":"https://api.github.com/repos/misoclub/bot/commits/f453ec99c7febe0130e2c9f495e36aa27bf7c013"},{"sha":"22fb07784b417563ed3ef565f074c8bb60e22c85","author":{"email":"513a9a48b5f775e68060f0c750ba64c36a8e1adf@dena.com","name":"Takafumi Naito"},"message":"test","distinct":true,"url":"https://api.github.com/repos/misoclub/bot/commits/22fb07784b417563ed3ef565f074c8bb60e22c85"},{"sha":"6dda75c59c90e8b8480b3b4cce756210c135d4ea","author":{"email":"513a9a48b5f775e68060f0c750ba64c36a8e1adf@dena.com","name":"Takafumi Naito"},"message":"一旦消し","distinct":true,"url":"https://api.github.com/repos/misoclub/bot/commits/6dda75c59c90e8b8480b3b4cce756210c135d4ea"},{"sha":"18d2f85e604f76d8ddf0c971a69e8feed99f7815","author":{"email":"a0d4745cbce8e5f50dfa0d668d4ea61099bd7a4d@gmail.com","name":"naito"},"message":"おみくじ機能追加","distinct":true,"url":"https://api.github.com/repos/misoclub/bot/commits/18d2f85e604f76d8ddf0c971a69e8feed99f7815"}]},"public":true,"created_at":"2015-01-01T15:14:39Z"} +,{"id":"2489657820","type":"PushEvent","actor":{"id":4627837,"login":"jessemillar","gravatar_id":"","url":"https://api.github.com/users/jessemillar","avatar_url":"https://avatars.githubusercontent.com/u/4627837?"},"repo":{"id":20636078,"name":"jessemillar/Ferrin","url":"https://api.github.com/repos/jessemillar/Ferrin"},"payload":{"push_id":536867043,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"248283133bc9bd91fd0986ba1bee5b2cb6d03290","before":"94d403f49dbead9a2965c8de8f87a18440c7f55b","commits":[{"sha":"248283133bc9bd91fd0986ba1bee5b2cb6d03290","author":{"email":"0ba40b71986250aad0903c7ebcfd76a410af35fb@gmail.com","name":"Jesse Millar"},"message":"Update LICENSE.md","distinct":true,"url":"https://api.github.com/repos/jessemillar/Ferrin/commits/248283133bc9bd91fd0986ba1bee5b2cb6d03290"}]},"public":true,"created_at":"2015-01-01T15:14:40Z"} +,{"id":"2489657823","type":"PushEvent","actor":{"id":6255300,"login":"AsdFinal","gravatar_id":"","url":"https://api.github.com/users/AsdFinal","avatar_url":"https://avatars.githubusercontent.com/u/6255300?"},"repo":{"id":27955001,"name":"AsdFinal/videoDownloader","url":"https://api.github.com/repos/AsdFinal/videoDownloader"},"payload":{"push_id":536867045,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ce5d5470fdc5a303e1e9aae1ff8788e47a4945e2","before":"65fe7cf6a483d82aed8091729fb107aaf23c4d5d","commits":[{"sha":"ce5d5470fdc5a303e1e9aae1ff8788e47a4945e2","author":{"email":"74a46636ab5d8c0b243b023f9316f6d5b1e6efa7@gmail.com","name":"AsdFinal"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/AsdFinal/videoDownloader/commits/ce5d5470fdc5a303e1e9aae1ff8788e47a4945e2"}]},"public":true,"created_at":"2015-01-01T15:14:40Z"} +,{"id":"2489657828","type":"PushEvent","actor":{"id":9442984,"login":"darthvish","gravatar_id":"","url":"https://api.github.com/users/darthvish","avatar_url":"https://avatars.githubusercontent.com/u/9442984?"},"repo":{"id":27639669,"name":"darthvish/UtilityScripts","url":"https://api.github.com/repos/darthvish/UtilityScripts"},"payload":{"push_id":536867049,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"b61ff67c90f4220fb2def50a7b67588f7b7297c1","before":"286573341be1dd3b83bd58ed24c6007dd0cf402b","commits":[{"sha":"a7e252f6789a29cfa7869a0bd235c3bb3929cda5","author":{"email":"5bff4dc9fd3bdcfafc12a0b583a0152b59efe597@hotmail.com","name":"darthvish"},"message":"dlautomate.py\nthis python module helps to automate torrent download on my computer","distinct":true,"url":"https://api.github.com/repos/darthvish/UtilityScripts/commits/a7e252f6789a29cfa7869a0bd235c3bb3929cda5"},{"sha":"b61ff67c90f4220fb2def50a7b67588f7b7297c1","author":{"email":"5bff4dc9fd3bdcfafc12a0b583a0152b59efe597@hotmail.com","name":"darthvish"},"message":"add details of dlautomate.py","distinct":true,"url":"https://api.github.com/repos/darthvish/UtilityScripts/commits/b61ff67c90f4220fb2def50a7b67588f7b7297c1"}]},"public":true,"created_at":"2015-01-01T15:14:41Z"} +,{"id":"2489657829","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":536867050,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1ef55dc9c2217b0918e6ec99c5391a6b52b136d1","before":"cfa9e5d71c1457117a8e35d5decc2d46cbfba570","commits":[{"sha":"1ef55dc9c2217b0918e6ec99c5391a6b52b136d1","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420125280074\n\nLhWwz9V3746BoAOkMtd6YrGeXDzMvh8tYlYG/qWYyd8=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/1ef55dc9c2217b0918e6ec99c5391a6b52b136d1"}]},"public":true,"created_at":"2015-01-01T15:14:41Z"} +,{"id":"2489657830","type":"PushEvent","actor":{"id":8107219,"login":"xenodium","gravatar_id":"","url":"https://api.github.com/users/xenodium","avatar_url":"https://avatars.githubusercontent.com/u/8107219?"},"repo":{"id":21629663,"name":"xenodium/dotfiles","url":"https://api.github.com/repos/xenodium/dotfiles"},"payload":{"push_id":536867051,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b754613fe07cb49fe6ca5eaf2e86b55dfda036cd","before":"4ee3f96bd6a5c592c4b81d563c60f4a183722d03","commits":[{"sha":"b754613fe07cb49fe6ca5eaf2e86b55dfda036cd","author":{"email":"5b2d0c210c4a9fd6aeaf2eaedf8273be993c90c2@xenodium.com","name":"alvaro"},"message":"Fixes ar/add-functions-to-mode-hooks invocations.","distinct":true,"url":"https://api.github.com/repos/xenodium/dotfiles/commits/b754613fe07cb49fe6ca5eaf2e86b55dfda036cd"}]},"public":true,"created_at":"2015-01-01T15:14:41Z"} +,{"id":"2489657831","type":"CreateEvent","actor":{"id":4644920,"login":"penafieljlm","gravatar_id":"","url":"https://api.github.com/users/penafieljlm","avatar_url":"https://avatars.githubusercontent.com/u/4644920?"},"repo":{"id":28688874,"name":"penafieljlm/ex3p","url":"https://api.github.com/repos/penafieljlm/ex3p"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Email Cross-Pollination Prevention Proxy","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:41Z"} +,{"id":"2489657832","type":"PushEvent","actor":{"id":785941,"login":"cenotaph","gravatar_id":"","url":"https://api.github.com/users/cenotaph","avatar_url":"https://avatars.githubusercontent.com/u/785941?"},"repo":{"id":28541151,"name":"cenotaph/version","url":"https://api.github.com/repos/cenotaph/version"},"payload":{"push_id":536867052,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bba8e20fb5585bf9905fb2d018526cb531e01817","before":"2820e35af780572ab75769ed0a14a8c2b730c4b9","commits":[{"sha":"bba8e20fb5585bf9905fb2d018526cb531e01817","author":{"email":"a602e216eb44a3ac5e096036eeaaef6bb9159677@cenotaph.org","name":"John W. Fail"},"message":"logos in footer","distinct":true,"url":"https://api.github.com/repos/cenotaph/version/commits/bba8e20fb5585bf9905fb2d018526cb531e01817"}]},"public":true,"created_at":"2015-01-01T15:14:42Z"} +,{"id":"2489657833","type":"CommitCommentEvent","actor":{"id":890177,"login":"water0426way","gravatar_id":"","url":"https://api.github.com/users/water0426way","avatar_url":"https://avatars.githubusercontent.com/u/890177?"},"repo":{"id":28231698,"name":"water0426way/violin","url":"https://api.github.com/repos/water0426way/violin"},"payload":{"comment":{"url":"https://api.github.com/repos/water0426way/violin/comments/9132446","html_url":"https://github.com/water0426way/violin/commit/55a3a1fd6020c5245d60940ad27b089e427aabaa#commitcomment-9132446","id":9132446,"user":{"login":"water0426way","id":890177,"avatar_url":"https://avatars.githubusercontent.com/u/890177?v=3","gravatar_id":"","url":"https://api.github.com/users/water0426way","html_url":"https://github.com/water0426way","followers_url":"https://api.github.com/users/water0426way/followers","following_url":"https://api.github.com/users/water0426way/following{/other_user}","gists_url":"https://api.github.com/users/water0426way/gists{/gist_id}","starred_url":"https://api.github.com/users/water0426way/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/water0426way/subscriptions","organizations_url":"https://api.github.com/users/water0426way/orgs","repos_url":"https://api.github.com/users/water0426way/repos","events_url":"https://api.github.com/users/water0426way/events{/privacy}","received_events_url":"https://api.github.com/users/water0426way/received_events","type":"User","site_admin":false},"position":null,"line":null,"path":"","commit_id":"55a3a1fd6020c5245d60940ad27b089e427aabaa","created_at":"2015-01-01T15:14:42Z","updated_at":"2015-01-01T15:14:42Z","body":"GPLv2"}},"public":true,"created_at":"2015-01-01T15:14:42Z"} +,{"id":"2489657834","type":"PushEvent","actor":{"id":10351099,"login":"yangnuri","gravatar_id":"","url":"https://api.github.com/users/yangnuri","avatar_url":"https://avatars.githubusercontent.com/u/10351099?"},"repo":{"id":28683302,"name":"yangnuri/yangnuri.github.io","url":"https://api.github.com/repos/yangnuri/yangnuri.github.io"},"payload":{"push_id":536867053,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3bfbe922f946497bdc5b3b481650034ad75b96e6","before":"374a33974b07786f87dda887f9d25e2d4ec35d0a","commits":[{"sha":"3bfbe922f946497bdc5b3b481650034ad75b96e6","author":{"email":"d19294121d393899624648c460bc0b6750613ec3@hanmail.net","name":"seung hwan Shin"},"message":"Update index.html","distinct":true,"url":"https://api.github.com/repos/yangnuri/yangnuri.github.io/commits/3bfbe922f946497bdc5b3b481650034ad75b96e6"}]},"public":true,"created_at":"2015-01-01T15:14:42Z"} +,{"id":"2489657836","type":"CreateEvent","actor":{"id":9010108,"login":"w8rbt","gravatar_id":"","url":"https://api.github.com/users/w8rbt","avatar_url":"https://avatars.githubusercontent.com/u/9010108?"},"repo":{"id":28677489,"name":"w8rbt/bop","url":"https://api.github.com/repos/w8rbt/bop"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Basic Option Parser","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:42Z"} +,{"id":"2489657839","type":"IssuesEvent","actor":{"id":1250459,"login":"maan82","gravatar_id":"","url":"https://api.github.com/users/maan82","avatar_url":"https://avatars.githubusercontent.com/u/1250459?"},"repo":{"id":2141186,"name":"opencart/opencart","url":"https://api.github.com/repos/opencart/opencart"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/opencart/opencart/issues/2534","labels_url":"https://api.github.com/repos/opencart/opencart/issues/2534/labels{/name}","comments_url":"https://api.github.com/repos/opencart/opencart/issues/2534/comments","events_url":"https://api.github.com/repos/opencart/opencart/issues/2534/events","html_url":"https://github.com/opencart/opencart/issues/2534","id":53221626,"number":2534,"title":"Amazon payments not working","user":{"login":"maan82","id":1250459,"avatar_url":"https://avatars.githubusercontent.com/u/1250459?v=3","gravatar_id":"","url":"https://api.github.com/users/maan82","html_url":"https://github.com/maan82","followers_url":"https://api.github.com/users/maan82/followers","following_url":"https://api.github.com/users/maan82/following{/other_user}","gists_url":"https://api.github.com/users/maan82/gists{/gist_id}","starred_url":"https://api.github.com/users/maan82/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/maan82/subscriptions","organizations_url":"https://api.github.com/users/maan82/orgs","repos_url":"https://api.github.com/users/maan82/repos","events_url":"https://api.github.com/users/maan82/events{/privacy}","received_events_url":"https://api.github.com/users/maan82/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:14:42Z","updated_at":"2015-01-01T15:14:42Z","closed_at":null,"body":"When I install Amazon payments I get blank page with warnings \"Warning: Invalid argument supplied for foreach() in /home4/addonsca/public_html/admin/model/setting/setting.php on line 22Warning: Cannot modify header information - headers already sent by (output started at /home4/addonsca/public_html/admin/index.php:80) in /home4/addonsca/public_html/system/library/response.php on line 12\"\r\n\r\nIf I go back to the admin->payments->Amazon Payments it is installed. But when I enable the module after filling all the details for UK Amazon payment button or checkout doesn't show up. "}},"public":true,"created_at":"2015-01-01T15:14:42Z","org":{"id":214225,"login":"opencart","gravatar_id":"","url":"https://api.github.com/orgs/opencart","avatar_url":"https://avatars.githubusercontent.com/u/214225?"}} +,{"id":"2489657842","type":"WatchEvent","actor":{"id":6942570,"login":"yanguanyu","gravatar_id":"","url":"https://api.github.com/users/yanguanyu","avatar_url":"https://avatars.githubusercontent.com/u/6942570?"},"repo":{"id":10518659,"name":"tj/co","url":"https://api.github.com/repos/tj/co"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:42Z"} +,{"id":"2489657844","type":"PushEvent","actor":{"id":339433,"login":"emmanueltouzery","gravatar_id":"","url":"https://api.github.com/users/emmanueltouzery","avatar_url":"https://avatars.githubusercontent.com/u/339433?"},"repo":{"id":28460593,"name":"emmanueltouzery/projectpad","url":"https://api.github.com/repos/emmanueltouzery/projectpad"},"payload":{"push_id":536867056,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4d94ca711a3762a14d50ea02a53746ece5d9d4b7","before":"d85ab1a7536e031d0a9b117b69b1588229fcabde","commits":[{"sha":"4d94ca711a3762a14d50ea02a53746ece5d9d4b7","author":{"email":"92da1d7278b4ab3c1d9b2cdf02f65dd0f1988e68@gmail.com","name":"Emmanuel Touzery"},"message":"delete server pois","distinct":true,"url":"https://api.github.com/repos/emmanueltouzery/projectpad/commits/4d94ca711a3762a14d50ea02a53746ece5d9d4b7"}]},"public":true,"created_at":"2015-01-01T15:14:42Z"} +,{"id":"2489657846","type":"PushEvent","actor":{"id":540890,"login":"syphar","gravatar_id":"","url":"https://api.github.com/users/syphar","avatar_url":"https://avatars.githubusercontent.com/u/540890?"},"repo":{"id":28646999,"name":"Thermondo/pytest-translations","url":"https://api.github.com/repos/Thermondo/pytest-translations"},"payload":{"push_id":536867058,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c5ac404f15756055cfa24fbd852fc63d26993482","before":"8422bd315a9339be8ecc5234db80aa8ba3f2cb11","commits":[{"sha":"c5ac404f15756055cfa24fbd852fc63d26993482","author":{"email":"53e3fd5a93ecfcd3f5464cab876fcf3b18df16c5@fastmail.fm","name":"Denis Cornehl"},"message":"add tests","distinct":true,"url":"https://api.github.com/repos/Thermondo/pytest-translations/commits/c5ac404f15756055cfa24fbd852fc63d26993482"}]},"public":true,"created_at":"2015-01-01T15:14:42Z","org":{"id":2737160,"login":"Thermondo","gravatar_id":"","url":"https://api.github.com/orgs/Thermondo","avatar_url":"https://avatars.githubusercontent.com/u/2737160?"}} +,{"id":"2489657847","type":"PushEvent","actor":{"id":10341686,"login":"Arnie97","gravatar_id":"","url":"https://api.github.com/users/Arnie97","avatar_url":"https://avatars.githubusercontent.com/u/10341686?"},"repo":{"id":28664467,"name":"Arnie97/milky","url":"https://api.github.com/repos/Arnie97/milky"},"payload":{"push_id":536867059,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6292e0d13cdea20935e8585337b7176bfbe9c1f5","before":"d80d476ecff8c76cda41a9fc0a62ab35455d2ed5","commits":[{"sha":"6292e0d13cdea20935e8585337b7176bfbe9c1f5","author":{"email":"15fb2de3c60da2080fa1c355aa8b56d4d8cf760f@gmail.com","name":"Arnie97"},"message":"Added milky logo to README.","distinct":true,"url":"https://api.github.com/repos/Arnie97/milky/commits/6292e0d13cdea20935e8585337b7176bfbe9c1f5"}]},"public":true,"created_at":"2015-01-01T15:14:42Z"} +,{"id":"2489657851","type":"ForkEvent","actor":{"id":7821082,"login":"Jackeagle","gravatar_id":"","url":"https://api.github.com/users/Jackeagle","avatar_url":"https://avatars.githubusercontent.com/u/7821082?"},"repo":{"id":18949816,"name":"playfulgod/android_device_samsumg_k3gxx","url":"https://api.github.com/repos/playfulgod/android_device_samsumg_k3gxx"},"payload":{"forkee":{"id":28688875,"name":"android_device_samsumg_k3gxx","full_name":"Jackeagle/android_device_samsumg_k3gxx","owner":{"login":"Jackeagle","id":7821082,"avatar_url":"https://avatars.githubusercontent.com/u/7821082?v=3","gravatar_id":"","url":"https://api.github.com/users/Jackeagle","html_url":"https://github.com/Jackeagle","followers_url":"https://api.github.com/users/Jackeagle/followers","following_url":"https://api.github.com/users/Jackeagle/following{/other_user}","gists_url":"https://api.github.com/users/Jackeagle/gists{/gist_id}","starred_url":"https://api.github.com/users/Jackeagle/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Jackeagle/subscriptions","organizations_url":"https://api.github.com/users/Jackeagle/orgs","repos_url":"https://api.github.com/users/Jackeagle/repos","events_url":"https://api.github.com/users/Jackeagle/events{/privacy}","received_events_url":"https://api.github.com/users/Jackeagle/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Jackeagle/android_device_samsumg_k3gxx","description":"Samsung Galaxy S5 Exynos SM-G900H","fork":true,"url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx","forks_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/forks","keys_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/teams","hooks_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/hooks","issue_events_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/issues/events{/number}","events_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/events","assignees_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/assignees{/user}","branches_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/branches{/branch}","tags_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/tags","blobs_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/git/refs{/sha}","trees_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/statuses/{sha}","languages_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/languages","stargazers_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/stargazers","contributors_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/contributors","subscribers_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/subscribers","subscription_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/subscription","commits_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/commits{/sha}","git_commits_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/git/commits{/sha}","comments_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/comments{/number}","issue_comment_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/issues/comments/{number}","contents_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/contents/{+path}","compare_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/merges","archive_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/downloads","issues_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/issues{/number}","pulls_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/pulls{/number}","milestones_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/milestones{/number}","notifications_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/labels{/name}","releases_url":"https://api.github.com/repos/Jackeagle/android_device_samsumg_k3gxx/releases{/id}","created_at":"2015-01-01T15:14:43Z","updated_at":"2014-04-21T12:08:31Z","pushed_at":"2014-04-21T12:08:31Z","git_url":"git://github.com/Jackeagle/android_device_samsumg_k3gxx.git","ssh_url":"git@github.com:Jackeagle/android_device_samsumg_k3gxx.git","clone_url":"https://github.com/Jackeagle/android_device_samsumg_k3gxx.git","svn_url":"https://github.com/Jackeagle/android_device_samsumg_k3gxx","homepage":null,"size":6536,"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":"cm-11.0","public":true}},"public":true,"created_at":"2015-01-01T15:14:43Z"} +,{"id":"2489657852","type":"PushEvent","actor":{"id":1747852,"login":"isayme","gravatar_id":"","url":"https://api.github.com/users/isayme","avatar_url":"https://avatars.githubusercontent.com/u/1747852?"},"repo":{"id":20913898,"name":"isayme/isayme.github.io","url":"https://api.github.com/repos/isayme/isayme.github.io"},"payload":{"push_id":536867061,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c8ec7311385bc16d80cdda574b7eb04e9b1b4b85","before":"8c4b8935842b57f55473e8ce74a5d3819b3fe321","commits":[{"sha":"c8ec7311385bc16d80cdda574b7eb04e9b1b4b85","author":{"email":"d7f958d3016100afed9a5fcec6f115afdf1eb2b4@gmail.com","name":"isayme"},"message":"donot render post if route changed before previous post data return","distinct":true,"url":"https://api.github.com/repos/isayme/isayme.github.io/commits/c8ec7311385bc16d80cdda574b7eb04e9b1b4b85"}]},"public":true,"created_at":"2015-01-01T15:14:43Z"} +,{"id":"2489657854","type":"WatchEvent","actor":{"id":1835337,"login":"karlll","gravatar_id":"","url":"https://api.github.com/users/karlll","avatar_url":"https://avatars.githubusercontent.com/u/1835337?"},"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:14:43Z","org":{"id":887802,"login":"Automattic","gravatar_id":"","url":"https://api.github.com/orgs/Automattic","avatar_url":"https://avatars.githubusercontent.com/u/887802?"}} +,{"id":"2489657856","type":"WatchEvent","actor":{"id":100,"login":"willcodeforfoo","gravatar_id":"","url":"https://api.github.com/users/willcodeforfoo","avatar_url":"https://avatars.githubusercontent.com/u/100?"},"repo":{"id":6761380,"name":"vitalets/x-editable","url":"https://api.github.com/repos/vitalets/x-editable"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:43Z"} +,{"id":"2489657857","type":"CreateEvent","actor":{"id":4947136,"login":"Jias","gravatar_id":"","url":"https://api.github.com/users/Jias","avatar_url":"https://avatars.githubusercontent.com/u/4947136?"},"repo":{"id":28688876,"name":"Jias/react-list","url":"https://api.github.com/repos/Jias/react-list"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:44Z"} +,{"id":"2489657861","type":"PushEvent","actor":{"id":1319333,"login":"cannatag","gravatar_id":"","url":"https://api.github.com/users/cannatag","avatar_url":"https://avatars.githubusercontent.com/u/1319333?"},"repo":{"id":28530868,"name":"cannatag/ldap3","url":"https://api.github.com/repos/cannatag/ldap3"},"payload":{"push_id":536867063,"size":1,"distinct_size":1,"ref":"refs/heads/dev","head":"d7d4c82e66bf3575d2551eb92aa857021af75077","before":"2058c5f8772837bb90462f4f951008ab364bba66","commits":[{"sha":"d7d4c82e66bf3575d2551eb92aa857021af75077","author":{"email":"899aed83eb9473e528a8eb12fee20a9ff0798b61@gmail.com","name":"cannatag"},"message":"fixed tests for travis","distinct":true,"url":"https://api.github.com/repos/cannatag/ldap3/commits/d7d4c82e66bf3575d2551eb92aa857021af75077"}]},"public":true,"created_at":"2015-01-01T15:14:44Z"} +,{"id":"2489657863","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":536867064,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"7276e26be7977edbb503f370affa8a747577370a","before":"f357a59f2a72d625663d6f765ff620d7ef09360d","commits":[{"sha":"7276e26be7977edbb503f370affa8a747577370a","author":{"email":"2d897f84cebfa32309ad883bf75cbe8ccb3f6374@jpespinal.com","name":"Juan Pablo Espinal"},"message":"Made bottom margin of Contact icons smaller.","distinct":true,"url":"https://api.github.com/repos/jpespinal/portfolio/commits/7276e26be7977edbb503f370affa8a747577370a"}]},"public":true,"created_at":"2015-01-01T15:14:44Z"} +,{"id":"2489657864","type":"PushEvent","actor":{"id":2233160,"login":"atteroTheGreatest","gravatar_id":"","url":"https://api.github.com/users/atteroTheGreatest","avatar_url":"https://avatars.githubusercontent.com/u/2233160?"},"repo":{"id":17277394,"name":"atteroTheGreatest/hypergraph","url":"https://api.github.com/repos/atteroTheGreatest/hypergraph"},"payload":{"push_id":536867066,"size":4,"distinct_size":4,"ref":"refs/heads/master","head":"1d354b75c57ffb55799c022a01175d57c270893a","before":"455dd99193d4b2367efd15ececfd5f7b01a0e9f2","commits":[{"sha":"6623298e1de125c45f4e15a57c5e5d77bceef04a","author":{"email":"c8d2dc5858c0b99823e39003fb92a77a8f6897ba@atte.ro","name":"Justyna Ilczuk"},"message":"Fiting and measuring fit of discrete distributions","distinct":true,"url":"https://api.github.com/repos/atteroTheGreatest/hypergraph/commits/6623298e1de125c45f4e15a57c5e5d77bceef04a"},{"sha":"bc39a5a246160aceee51f5ae04e06c6d936cfe02","author":{"email":"c8d2dc5858c0b99823e39003fb92a77a8f6897ba@atte.ro","name":"Justyna Ilczuk"},"message":"Update notebooks","distinct":true,"url":"https://api.github.com/repos/atteroTheGreatest/hypergraph/commits/bc39a5a246160aceee51f5ae04e06c6d936cfe02"},{"sha":"93944329426436589f7b49fbb946b946edf1fa4c","author":{"email":"c8d2dc5858c0b99823e39003fb92a77a8f6897ba@atte.ro","name":"Justyna Ilczuk"},"message":"Minor refactorings","distinct":true,"url":"https://api.github.com/repos/atteroTheGreatest/hypergraph/commits/93944329426436589f7b49fbb946b946edf1fa4c"},{"sha":"1d354b75c57ffb55799c022a01175d57c270893a","author":{"email":"c8d2dc5858c0b99823e39003fb92a77a8f6897ba@atte.ro","name":"Justyna Ilczuk"},"message":"Merge branch 'master' of github.com:atteroTheGreatest/hypergraph","distinct":true,"url":"https://api.github.com/repos/atteroTheGreatest/hypergraph/commits/1d354b75c57ffb55799c022a01175d57c270893a"}]},"public":true,"created_at":"2015-01-01T15:14:44Z"} +,{"id":"2489657866","type":"PushEvent","actor":{"id":3661115,"login":"iblech","gravatar_id":"","url":"https://api.github.com/users/iblech","avatar_url":"https://avatars.githubusercontent.com/u/3661115?"},"repo":{"id":9715293,"name":"iblech/book","url":"https://api.github.com/repos/iblech/book"},"payload":{"push_id":536867067,"size":1,"distinct_size":1,"ref":"refs/heads/patch-1","head":"ac32ee08fe6dfec344b2bbd6d7514afc38b62e61","before":"023a7a02f78d03c0f4d7f4cfdd21c2c5ac4a7735","commits":[{"sha":"ac32ee08fe6dfec344b2bbd6d7514afc38b62e61","author":{"email":"3654684dd5567334ff7f4ad5b220ec3e024bfb76@web.de","name":"Ingo Blechschmidt"},"message":"Made the visible URL's fixed-width","distinct":true,"url":"https://api.github.com/repos/iblech/book/commits/ac32ee08fe6dfec344b2bbd6d7514afc38b62e61"}]},"public":true,"created_at":"2015-01-01T15:14:44Z"} +,{"id":"2489657870","type":"PushEvent","actor":{"id":183699,"login":"twillis","gravatar_id":"","url":"https://api.github.com/users/twillis","avatar_url":"https://avatars.githubusercontent.com/u/183699?"},"repo":{"id":28596870,"name":"twillis/cljspazzer","url":"https://api.github.com/repos/twillis/cljspazzer"},"payload":{"push_id":536867068,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9ce27260ed25ec1ad6f8b356cf1e615183c2d939","before":"319d6047f328a1eb19fe8d525e536b4b8a01ce6b","commits":[{"sha":"9ce27260ed25ec1ad6f8b356cf1e615183c2d939","author":{"email":"c59534d8a1ea9b7d1823ba6732f3bb3f58c1440e@topgunhq.com","name":"Tom Willis"},"message":"update prune to handle files no longer \"managed\"","distinct":true,"url":"https://api.github.com/repos/twillis/cljspazzer/commits/9ce27260ed25ec1ad6f8b356cf1e615183c2d939"}]},"public":true,"created_at":"2015-01-01T15:14:45Z"} +,{"id":"2489657878","type":"PushEvent","actor":{"id":976869,"login":"luiscberrocal","gravatar_id":"","url":"https://api.github.com/users/luiscberrocal","avatar_url":"https://avatars.githubusercontent.com/u/976869?"},"repo":{"id":21840873,"name":"luiscberrocal/django-twoscoops-project","url":"https://api.github.com/repos/luiscberrocal/django-twoscoops-project"},"payload":{"push_id":536867072,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d97e33f32f0437c1f7142197ba77ad0d5d543e47","before":"2b2039f35bba1f767a141292cd2c07ce0a895e10","commits":[{"sha":"d97e33f32f0437c1f7142197ba77ad0d5d543e47","author":{"email":"a5b7ac7ab04d38af2e02716561d805410e6c7527@gmail.com","name":"Luis C. Berrocal"},"message":"Updated project to support django 1.7.1","distinct":true,"url":"https://api.github.com/repos/luiscberrocal/django-twoscoops-project/commits/d97e33f32f0437c1f7142197ba77ad0d5d543e47"}]},"public":true,"created_at":"2015-01-01T15:14:47Z"} +,{"id":"2489657879","type":"PushEvent","actor":{"id":512573,"login":"SamWhited","gravatar_id":"","url":"https://api.github.com/users/SamWhited","avatar_url":"https://avatars.githubusercontent.com/u/512573?"},"repo":{"id":27289261,"name":"campaul/ph.sh","url":"https://api.github.com/repos/campaul/ph.sh"},"payload":{"push_id":536867073,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"484acc46ae5d94e3565c398ef755486876b2a274","before":"fac27f0ee66e146677f9706314d71b1fac34050c","commits":[{"sha":"484acc46ae5d94e3565c398ef755486876b2a274","author":{"email":"f16bed56189e249fe4ca8ed10a1ecae60e8ceac0@samwhited.com","name":"Sam Whited"},"message":"Use Motorola endianness by default\n\nJust in case the platform we're running on has a short value other than\n2... doubtful, but we might as well make sure. Otherwise the endianness\nvalues are byte-symetrical [tm] so it doesn't matter.","distinct":true,"url":"https://api.github.com/repos/campaul/ph.sh/commits/484acc46ae5d94e3565c398ef755486876b2a274"}]},"public":true,"created_at":"2015-01-01T15:14:47Z"} +,{"id":"2489657881","type":"PushEvent","actor":{"id":3536482,"login":"alebcay","gravatar_id":"","url":"https://api.github.com/users/alebcay","avatar_url":"https://avatars.githubusercontent.com/u/3536482?"},"repo":{"id":21552971,"name":"alebcay/awesome-shell","url":"https://api.github.com/repos/alebcay/awesome-shell"},"payload":{"push_id":536867075,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"da70d6348ce8a244eb27810b6e6965d6e52408d3","before":"43ca34280a3d46209c2825acb3a85418f94f57b3","commits":[{"sha":"da70d6348ce8a244eb27810b6e6965d6e52408d3","author":{"email":"0ddac9ee652bfea6173ca978a8912ed8b3075be3@live.com","name":"Caleb Xu"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/alebcay/awesome-shell/commits/da70d6348ce8a244eb27810b6e6965d6e52408d3"}]},"public":true,"created_at":"2015-01-01T15:14:47Z"} +,{"id":"2489657883","type":"PushEvent","actor":{"id":8188636,"login":"tanakasan2525","gravatar_id":"","url":"https://api.github.com/users/tanakasan2525","avatar_url":"https://avatars.githubusercontent.com/u/8188636?"},"repo":{"id":28396695,"name":"tanakasan2525/TTEventKit","url":"https://api.github.com/repos/tanakasan2525/TTEventKit"},"payload":{"push_id":536867076,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4f45758c92146b159c5aed6cce006ca462f6dd90","before":"874b30c5da01522b43f2d41a7c63602b09d333d1","commits":[{"sha":"4f45758c92146b159c5aed6cce006ca462f6dd90","author":{"email":"0f259ca43adce45d7e387c12a34e96725b7a0f45@yahoo.co.jp","name":"tanakasan2525"},"message":"Adding remove method of EventDB","distinct":true,"url":"https://api.github.com/repos/tanakasan2525/TTEventKit/commits/4f45758c92146b159c5aed6cce006ca462f6dd90"}]},"public":true,"created_at":"2015-01-01T15:14:47Z"} +,{"id":"2489657885","type":"PullRequestEvent","actor":{"id":775309,"login":"smspillaz","gravatar_id":"","url":"https://api.github.com/users/smspillaz","avatar_url":"https://avatars.githubusercontent.com/u/775309?"},"repo":{"id":28320857,"name":"polysquare/polysquare-ci-scripts","url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts"},"payload":{"action":"closed","number":39,"pull_request":{"url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/pulls/39","id":26743820,"html_url":"https://github.com/polysquare/polysquare-ci-scripts/pull/39","diff_url":"https://github.com/polysquare/polysquare-ci-scripts/pull/39.diff","patch_url":"https://github.com/polysquare/polysquare-ci-scripts/pull/39.patch","issue_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/issues/39","number":39,"state":"closed","locked":false,"title":"The wildcard operator returns full paths so use basename.","user":{"login":"smspillaz","id":775309,"avatar_url":"https://avatars.githubusercontent.com/u/775309?v=3","gravatar_id":"","url":"https://api.github.com/users/smspillaz","html_url":"https://github.com/smspillaz","followers_url":"https://api.github.com/users/smspillaz/followers","following_url":"https://api.github.com/users/smspillaz/following{/other_user}","gists_url":"https://api.github.com/users/smspillaz/gists{/gist_id}","starred_url":"https://api.github.com/users/smspillaz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/smspillaz/subscriptions","organizations_url":"https://api.github.com/users/smspillaz/orgs","repos_url":"https://api.github.com/users/smspillaz/repos","events_url":"https://api.github.com/users/smspillaz/events{/privacy}","received_events_url":"https://api.github.com/users/smspillaz/received_events","type":"User","site_admin":false},"body":null,"created_at":"2015-01-01T15:06:41Z","updated_at":"2015-01-01T15:14:48Z","closed_at":"2015-01-01T15:14:48Z","merged_at":"2015-01-01T15:14:48Z","merge_commit_sha":"3b09b2c5edee30098cb12d0499e3a1de6ae073a2","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/pulls/39/commits","review_comments_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/pulls/39/comments","review_comment_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/pulls/comments/{number}","comments_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/issues/39/comments","statuses_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/statuses/b62f059a809f8af61e250f5121ba697be391ee99","head":{"label":"smspillaz:polysquare-ci-scripts.item_39","ref":"polysquare-ci-scripts.item_39","sha":"b62f059a809f8af61e250f5121ba697be391ee99","user":{"login":"smspillaz","id":775309,"avatar_url":"https://avatars.githubusercontent.com/u/775309?v=3","gravatar_id":"","url":"https://api.github.com/users/smspillaz","html_url":"https://github.com/smspillaz","followers_url":"https://api.github.com/users/smspillaz/followers","following_url":"https://api.github.com/users/smspillaz/following{/other_user}","gists_url":"https://api.github.com/users/smspillaz/gists{/gist_id}","starred_url":"https://api.github.com/users/smspillaz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/smspillaz/subscriptions","organizations_url":"https://api.github.com/users/smspillaz/orgs","repos_url":"https://api.github.com/users/smspillaz/repos","events_url":"https://api.github.com/users/smspillaz/events{/privacy}","received_events_url":"https://api.github.com/users/smspillaz/received_events","type":"User","site_admin":false},"repo":{"id":28322529,"name":"polysquare-ci-scripts","full_name":"smspillaz/polysquare-ci-scripts","owner":{"login":"smspillaz","id":775309,"avatar_url":"https://avatars.githubusercontent.com/u/775309?v=3","gravatar_id":"","url":"https://api.github.com/users/smspillaz","html_url":"https://github.com/smspillaz","followers_url":"https://api.github.com/users/smspillaz/followers","following_url":"https://api.github.com/users/smspillaz/following{/other_user}","gists_url":"https://api.github.com/users/smspillaz/gists{/gist_id}","starred_url":"https://api.github.com/users/smspillaz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/smspillaz/subscriptions","organizations_url":"https://api.github.com/users/smspillaz/orgs","repos_url":"https://api.github.com/users/smspillaz/repos","events_url":"https://api.github.com/users/smspillaz/events{/privacy}","received_events_url":"https://api.github.com/users/smspillaz/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/smspillaz/polysquare-ci-scripts","description":"Polysquare CI Scripts (common to a few modules)","fork":true,"url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts","forks_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/forks","keys_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/keys{/key_id}","collaborators_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/teams","hooks_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/hooks","issue_events_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/issues/events{/number}","events_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/events","assignees_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/assignees{/user}","branches_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/branches{/branch}","tags_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/tags","blobs_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/git/refs{/sha}","trees_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/git/trees{/sha}","statuses_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/statuses/{sha}","languages_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/languages","stargazers_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/stargazers","contributors_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/contributors","subscribers_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/subscribers","subscription_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/subscription","commits_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/commits{/sha}","git_commits_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/git/commits{/sha}","comments_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/comments{/number}","issue_comment_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/issues/comments/{number}","contents_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/contents/{+path}","compare_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/compare/{base}...{head}","merges_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/merges","archive_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/downloads","issues_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/issues{/number}","pulls_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/pulls{/number}","milestones_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/milestones{/number}","notifications_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/labels{/name}","releases_url":"https://api.github.com/repos/smspillaz/polysquare-ci-scripts/releases{/id}","created_at":"2014-12-22T03:05:55Z","updated_at":"2014-12-28T04:42:59Z","pushed_at":"2015-01-01T15:06:36Z","git_url":"git://github.com/smspillaz/polysquare-ci-scripts.git","ssh_url":"git@github.com:smspillaz/polysquare-ci-scripts.git","clone_url":"https://github.com/smspillaz/polysquare-ci-scripts.git","svn_url":"https://github.com/smspillaz/polysquare-ci-scripts","homepage":null,"size":605,"stargazers_count":0,"watchers_count":0,"language":"Shell","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":"polysquare:master","ref":"master","sha":"0228536a5a26d3a698ed013580b835f08bee0155","user":{"login":"polysquare","id":4264086,"avatar_url":"https://avatars.githubusercontent.com/u/4264086?v=3","gravatar_id":"","url":"https://api.github.com/users/polysquare","html_url":"https://github.com/polysquare","followers_url":"https://api.github.com/users/polysquare/followers","following_url":"https://api.github.com/users/polysquare/following{/other_user}","gists_url":"https://api.github.com/users/polysquare/gists{/gist_id}","starred_url":"https://api.github.com/users/polysquare/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/polysquare/subscriptions","organizations_url":"https://api.github.com/users/polysquare/orgs","repos_url":"https://api.github.com/users/polysquare/repos","events_url":"https://api.github.com/users/polysquare/events{/privacy}","received_events_url":"https://api.github.com/users/polysquare/received_events","type":"Organization","site_admin":false},"repo":{"id":28320857,"name":"polysquare-ci-scripts","full_name":"polysquare/polysquare-ci-scripts","owner":{"login":"polysquare","id":4264086,"avatar_url":"https://avatars.githubusercontent.com/u/4264086?v=3","gravatar_id":"","url":"https://api.github.com/users/polysquare","html_url":"https://github.com/polysquare","followers_url":"https://api.github.com/users/polysquare/followers","following_url":"https://api.github.com/users/polysquare/following{/other_user}","gists_url":"https://api.github.com/users/polysquare/gists{/gist_id}","starred_url":"https://api.github.com/users/polysquare/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/polysquare/subscriptions","organizations_url":"https://api.github.com/users/polysquare/orgs","repos_url":"https://api.github.com/users/polysquare/repos","events_url":"https://api.github.com/users/polysquare/events{/privacy}","received_events_url":"https://api.github.com/users/polysquare/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/polysquare/polysquare-ci-scripts","description":"Polysquare CI Scripts (common to a few modules)","fork":false,"url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts","forks_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/forks","keys_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/keys{/key_id}","collaborators_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/teams","hooks_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/hooks","issue_events_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/issues/events{/number}","events_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/events","assignees_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/assignees{/user}","branches_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/branches{/branch}","tags_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/tags","blobs_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/git/refs{/sha}","trees_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/git/trees{/sha}","statuses_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/statuses/{sha}","languages_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/languages","stargazers_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/stargazers","contributors_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/contributors","subscribers_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/subscribers","subscription_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/subscription","commits_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/commits{/sha}","git_commits_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/git/commits{/sha}","comments_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/comments{/number}","issue_comment_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/issues/comments/{number}","contents_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/contents/{+path}","compare_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/compare/{base}...{head}","merges_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/merges","archive_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/downloads","issues_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/issues{/number}","pulls_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/pulls{/number}","milestones_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/milestones{/number}","notifications_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/labels{/name}","releases_url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/releases{/id}","created_at":"2014-12-22T01:58:27Z","updated_at":"2015-01-01T14:50:12Z","pushed_at":"2015-01-01T15:14:48Z","git_url":"git://github.com/polysquare/polysquare-ci-scripts.git","ssh_url":"git@github.com:polysquare/polysquare-ci-scripts.git","clone_url":"https://github.com/polysquare/polysquare-ci-scripts.git","svn_url":"https://github.com/polysquare/polysquare-ci-scripts","homepage":null,"size":609,"stargazers_count":0,"watchers_count":0,"language":"Shell","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/pulls/39"},"html":{"href":"https://github.com/polysquare/polysquare-ci-scripts/pull/39"},"issue":{"href":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/issues/39"},"comments":{"href":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/issues/39/comments"},"review_comments":{"href":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/pulls/39/comments"},"review_comment":{"href":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/pulls/39/commits"},"statuses":{"href":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/statuses/b62f059a809f8af61e250f5121ba697be391ee99"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"smspillaz","id":775309,"avatar_url":"https://avatars.githubusercontent.com/u/775309?v=3","gravatar_id":"","url":"https://api.github.com/users/smspillaz","html_url":"https://github.com/smspillaz","followers_url":"https://api.github.com/users/smspillaz/followers","following_url":"https://api.github.com/users/smspillaz/following{/other_user}","gists_url":"https://api.github.com/users/smspillaz/gists{/gist_id}","starred_url":"https://api.github.com/users/smspillaz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/smspillaz/subscriptions","organizations_url":"https://api.github.com/users/smspillaz/orgs","repos_url":"https://api.github.com/users/smspillaz/repos","events_url":"https://api.github.com/users/smspillaz/events{/privacy}","received_events_url":"https://api.github.com/users/smspillaz/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":4,"deletions":3,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:14:48Z","org":{"id":4264086,"login":"polysquare","gravatar_id":"","url":"https://api.github.com/orgs/polysquare","avatar_url":"https://avatars.githubusercontent.com/u/4264086?"}} +,{"id":"2489657886","type":"PushEvent","actor":{"id":775309,"login":"smspillaz","gravatar_id":"","url":"https://api.github.com/users/smspillaz","avatar_url":"https://avatars.githubusercontent.com/u/775309?"},"repo":{"id":28320857,"name":"polysquare/polysquare-ci-scripts","url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts"},"payload":{"push_id":536867077,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"7ad03f26ee3a04afa9bcc0d1034ee076010db72d","before":"0228536a5a26d3a698ed013580b835f08bee0155","commits":[{"sha":"b62f059a809f8af61e250f5121ba697be391ee99","author":{"email":"c2233fa3ae7157b08edf92e6d8b7bc7e7e3e86e2@gmail.com","name":"Sam Spilsbury"},"message":"The wildcard operator returns full paths so use basename.","distinct":true,"url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/commits/b62f059a809f8af61e250f5121ba697be391ee99"},{"sha":"7ad03f26ee3a04afa9bcc0d1034ee076010db72d","author":{"email":"c2233fa3ae7157b08edf92e6d8b7bc7e7e3e86e2@gmail.com","name":"Sam Spilsbury"},"message":"Merge pull request #39 from smspillaz/polysquare-ci-scripts.item_39\n\nThe wildcard operator returns full paths so use basename.","distinct":true,"url":"https://api.github.com/repos/polysquare/polysquare-ci-scripts/commits/7ad03f26ee3a04afa9bcc0d1034ee076010db72d"}]},"public":true,"created_at":"2015-01-01T15:14:48Z","org":{"id":4264086,"login":"polysquare","gravatar_id":"","url":"https://api.github.com/orgs/polysquare","avatar_url":"https://avatars.githubusercontent.com/u/4264086?"}} +,{"id":"2489657887","type":"WatchEvent","actor":{"id":5452993,"login":"mtkliema","gravatar_id":"","url":"https://api.github.com/users/mtkliema","avatar_url":"https://avatars.githubusercontent.com/u/5452993?"},"repo":{"id":2400938,"name":"paulasmuth/fnordmetric","url":"https://api.github.com/repos/paulasmuth/fnordmetric"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:48Z"} +,{"id":"2489657891","type":"ForkEvent","actor":{"id":7404824,"login":"SaintBacchus","gravatar_id":"","url":"https://api.github.com/users/SaintBacchus","avatar_url":"https://avatars.githubusercontent.com/u/7404824?"},"repo":{"id":206444,"name":"apache/hive","url":"https://api.github.com/repos/apache/hive"},"payload":{"forkee":{"id":28688877,"name":"hive","full_name":"SaintBacchus/hive","owner":{"login":"SaintBacchus","id":7404824,"avatar_url":"https://avatars.githubusercontent.com/u/7404824?v=3","gravatar_id":"","url":"https://api.github.com/users/SaintBacchus","html_url":"https://github.com/SaintBacchus","followers_url":"https://api.github.com/users/SaintBacchus/followers","following_url":"https://api.github.com/users/SaintBacchus/following{/other_user}","gists_url":"https://api.github.com/users/SaintBacchus/gists{/gist_id}","starred_url":"https://api.github.com/users/SaintBacchus/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SaintBacchus/subscriptions","organizations_url":"https://api.github.com/users/SaintBacchus/orgs","repos_url":"https://api.github.com/users/SaintBacchus/repos","events_url":"https://api.github.com/users/SaintBacchus/events{/privacy}","received_events_url":"https://api.github.com/users/SaintBacchus/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/SaintBacchus/hive","description":"Mirror of Apache Hive","fork":true,"url":"https://api.github.com/repos/SaintBacchus/hive","forks_url":"https://api.github.com/repos/SaintBacchus/hive/forks","keys_url":"https://api.github.com/repos/SaintBacchus/hive/keys{/key_id}","collaborators_url":"https://api.github.com/repos/SaintBacchus/hive/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/SaintBacchus/hive/teams","hooks_url":"https://api.github.com/repos/SaintBacchus/hive/hooks","issue_events_url":"https://api.github.com/repos/SaintBacchus/hive/issues/events{/number}","events_url":"https://api.github.com/repos/SaintBacchus/hive/events","assignees_url":"https://api.github.com/repos/SaintBacchus/hive/assignees{/user}","branches_url":"https://api.github.com/repos/SaintBacchus/hive/branches{/branch}","tags_url":"https://api.github.com/repos/SaintBacchus/hive/tags","blobs_url":"https://api.github.com/repos/SaintBacchus/hive/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/SaintBacchus/hive/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/SaintBacchus/hive/git/refs{/sha}","trees_url":"https://api.github.com/repos/SaintBacchus/hive/git/trees{/sha}","statuses_url":"https://api.github.com/repos/SaintBacchus/hive/statuses/{sha}","languages_url":"https://api.github.com/repos/SaintBacchus/hive/languages","stargazers_url":"https://api.github.com/repos/SaintBacchus/hive/stargazers","contributors_url":"https://api.github.com/repos/SaintBacchus/hive/contributors","subscribers_url":"https://api.github.com/repos/SaintBacchus/hive/subscribers","subscription_url":"https://api.github.com/repos/SaintBacchus/hive/subscription","commits_url":"https://api.github.com/repos/SaintBacchus/hive/commits{/sha}","git_commits_url":"https://api.github.com/repos/SaintBacchus/hive/git/commits{/sha}","comments_url":"https://api.github.com/repos/SaintBacchus/hive/comments{/number}","issue_comment_url":"https://api.github.com/repos/SaintBacchus/hive/issues/comments/{number}","contents_url":"https://api.github.com/repos/SaintBacchus/hive/contents/{+path}","compare_url":"https://api.github.com/repos/SaintBacchus/hive/compare/{base}...{head}","merges_url":"https://api.github.com/repos/SaintBacchus/hive/merges","archive_url":"https://api.github.com/repos/SaintBacchus/hive/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/SaintBacchus/hive/downloads","issues_url":"https://api.github.com/repos/SaintBacchus/hive/issues{/number}","pulls_url":"https://api.github.com/repos/SaintBacchus/hive/pulls{/number}","milestones_url":"https://api.github.com/repos/SaintBacchus/hive/milestones{/number}","notifications_url":"https://api.github.com/repos/SaintBacchus/hive/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/SaintBacchus/hive/labels{/name}","releases_url":"https://api.github.com/repos/SaintBacchus/hive/releases{/id}","created_at":"2015-01-01T15:14:49Z","updated_at":"2014-12-31T13:58:15Z","pushed_at":"2014-12-31T00:37:53Z","git_url":"git://github.com/SaintBacchus/hive.git","ssh_url":"git@github.com:SaintBacchus/hive.git","clone_url":"https://github.com/SaintBacchus/hive.git","svn_url":"https://github.com/SaintBacchus/hive","homepage":null,"size":192050,"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":"trunk","public":true}},"public":true,"created_at":"2015-01-01T15:14:49Z","org":{"id":47359,"login":"apache","gravatar_id":"","url":"https://api.github.com/orgs/apache","avatar_url":"https://avatars.githubusercontent.com/u/47359?"}} +,{"id":"2489657893","type":"PushEvent","actor":{"id":534245,"login":"toopay","gravatar_id":"","url":"https://api.github.com/users/toopay","avatar_url":"https://avatars.githubusercontent.com/u/534245?"},"repo":{"id":28684236,"name":"toopay/toopay.github.io","url":"https://api.github.com/repos/toopay/toopay.github.io"},"payload":{"push_id":536867079,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"07093b4c67f0e4e84c228e9d7e36b825f04392a2","before":"753b3a9743f31a5c806afece512534887c47a209","commits":[{"sha":"07093b4c67f0e4e84c228e9d7e36b825f04392a2","author":{"email":"a09aa4f83f3ba395eae09fa61c86d43902f6e74e@taufanaditya.com","name":"Taufan Aditya"},"message":"Jan post [continued]","distinct":true,"url":"https://api.github.com/repos/toopay/toopay.github.io/commits/07093b4c67f0e4e84c228e9d7e36b825f04392a2"}]},"public":true,"created_at":"2015-01-01T15:14:49Z"} +,{"id":"2489657900","type":"IssueCommentEvent","actor":{"id":216398,"login":"yixuan","gravatar_id":"","url":"https://api.github.com/users/yixuan","avatar_url":"https://avatars.githubusercontent.com/u/216398?"},"repo":{"id":9120967,"name":"yixuan/rARPACK","url":"https://api.github.com/repos/yixuan/rARPACK"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/yixuan/rARPACK/issues/6","labels_url":"https://api.github.com/repos/yixuan/rARPACK/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/yixuan/rARPACK/issues/6/comments","events_url":"https://api.github.com/repos/yixuan/rARPACK/issues/6/events","html_url":"https://github.com/yixuan/rARPACK/issues/6","id":53098797,"number":6,"title":"Difference between eigs() and eigen()","user":{"login":"pbruneau","id":4252621,"avatar_url":"https://avatars.githubusercontent.com/u/4252621?v=3","gravatar_id":"","url":"https://api.github.com/users/pbruneau","html_url":"https://github.com/pbruneau","followers_url":"https://api.github.com/users/pbruneau/followers","following_url":"https://api.github.com/users/pbruneau/following{/other_user}","gists_url":"https://api.github.com/users/pbruneau/gists{/gist_id}","starred_url":"https://api.github.com/users/pbruneau/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pbruneau/subscriptions","organizations_url":"https://api.github.com/users/pbruneau/orgs","repos_url":"https://api.github.com/users/pbruneau/repos","events_url":"https://api.github.com/users/pbruneau/events{/privacy}","received_events_url":"https://api.github.com/users/pbruneau/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-12-30T07:37:42Z","updated_at":"2015-01-01T15:14:49Z","closed_at":null,"body":"I recently observed a difference between the outputs of the classic eigen() function, and your Arnoldi variant eigs() that extracts only the few first eigenpairs. Here is some sample code illustrating the problem:\r\n\r\n```\r\nlibrary(rARPACK)\r\nlibrary(speccalt)\r\n\r\n# compute kernel matrix from rows of 'synth5' data set\r\n# then its Laplacian\r\nkern <- local.rbfdot(synth5)\r\ndiag(kern) <- 0\r\ndeg <- sapply(1:(dim(synth5)[1]), function(i) {\r\nreturn(sum(kern[i,]))\r\n})\r\nL <- diag(1/sqrt(deg)) %*% kern %*% diag(1/sqrt(deg))\r\n\r\neig1 <- eigs(L, 6)\r\neig2 <- eigen(L, symmetric=TRUE)\r\n```\r\n\r\neig1$values then reads:\r\n1.0000000 1.0000000 0.9993805 0.9992561 0.9985084 0.9975311\r\n\r\nwhereas eig2$values reads:\r\n1.0000000 1.0000000 1.0000000 1.0000000 0.9993805 0.9992561\r\nwhich is the correct result (eigenvalue 1 has multiplicity 4 in that example).\r\n\r\nI guess there is an issue between Arnoldi methods and eigenvalues with multiplicities greater than 1 (indeed at the end of the series the unique eigenvals look identical)... The Matlab version of eigs() does not seem affected though - I tried to csvwrite and read the L matrix from R to Matlab, run:\r\n```\r\neig1 = eigs(L, 6)\r\n````\r\n\r\nand the eigen() result was output then.\r\n\r\nI would gladly use and quote your package, as the speedup is very useful to me, but this issue is blocking in my case...\r\nPlease feel free to ask any supplementary information, and best regards,\r\nPierrick"},"comment":{"url":"https://api.github.com/repos/yixuan/rARPACK/issues/comments/68488803","html_url":"https://github.com/yixuan/rARPACK/issues/6#issuecomment-68488803","issue_url":"https://api.github.com/repos/yixuan/rARPACK/issues/6","id":68488803,"user":{"login":"yixuan","id":216398,"avatar_url":"https://avatars.githubusercontent.com/u/216398?v=3","gravatar_id":"","url":"https://api.github.com/users/yixuan","html_url":"https://github.com/yixuan","followers_url":"https://api.github.com/users/yixuan/followers","following_url":"https://api.github.com/users/yixuan/following{/other_user}","gists_url":"https://api.github.com/users/yixuan/gists{/gist_id}","starred_url":"https://api.github.com/users/yixuan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yixuan/subscriptions","organizations_url":"https://api.github.com/users/yixuan/orgs","repos_url":"https://api.github.com/users/yixuan/repos","events_url":"https://api.github.com/users/yixuan/events{/privacy}","received_events_url":"https://api.github.com/users/yixuan/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:14:49Z","updated_at":"2015-01-01T15:14:49Z","body":"Another way is to increase `ncv`, which is somewhat more \"mysterious\".\r\n```\r\neigs(L, 6, opts = list(ncv = 300))\r\n```"}},"public":true,"created_at":"2015-01-01T15:14:51Z"} +,{"id":"2489657903","type":"WatchEvent","actor":{"id":1756675,"login":"nijou","gravatar_id":"","url":"https://api.github.com/users/nijou","avatar_url":"https://avatars.githubusercontent.com/u/1756675?"},"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:14:51Z"} +,{"id":"2489657904","type":"PushEvent","actor":{"id":512573,"login":"SamWhited","gravatar_id":"","url":"https://api.github.com/users/SamWhited","avatar_url":"https://avatars.githubusercontent.com/u/512573?"},"repo":{"id":28072019,"name":"SamWhited/ph.sh","url":"https://api.github.com/repos/SamWhited/ph.sh"},"payload":{"push_id":536867084,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"484acc46ae5d94e3565c398ef755486876b2a274","before":"fac27f0ee66e146677f9706314d71b1fac34050c","commits":[{"sha":"484acc46ae5d94e3565c398ef755486876b2a274","author":{"email":"f16bed56189e249fe4ca8ed10a1ecae60e8ceac0@samwhited.com","name":"Sam Whited"},"message":"Use Motorola endianness by default\n\nJust in case the platform we're running on has a short value other than\n2... doubtful, but we might as well make sure. Otherwise the endianness\nvalues are byte-symetrical [tm] so it doesn't matter.","distinct":true,"url":"https://api.github.com/repos/SamWhited/ph.sh/commits/484acc46ae5d94e3565c398ef755486876b2a274"}]},"public":true,"created_at":"2015-01-01T15:14:51Z"} +,{"id":"2489657905","type":"PushEvent","actor":{"id":1125622,"login":"jrmarino","gravatar_id":"","url":"https://api.github.com/users/jrmarino","avatar_url":"https://avatars.githubusercontent.com/u/1125622?"},"repo":{"id":6439786,"name":"DragonFlyBSD/DeltaPorts","url":"https://api.github.com/repos/DragonFlyBSD/DeltaPorts"},"payload":{"push_id":536867083,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d9417fbcd36e80caea4264964c91a30c904add3c","before":"84c7f777b6d671fd2be273ff73f113939f82ce3f","commits":[{"sha":"d9417fbcd36e80caea4264964c91a30c904add3c","author":{"email":"365ec17a675f3273bc16c74761ad83f2cf07c59a@home.ok","name":"DPorts Builder"},"message":"Success: net/py-urllib3 v1.10","distinct":true,"url":"https://api.github.com/repos/DragonFlyBSD/DeltaPorts/commits/d9417fbcd36e80caea4264964c91a30c904add3c"}]},"public":true,"created_at":"2015-01-01T15:14:51Z","org":{"id":322742,"login":"DragonFlyBSD","gravatar_id":"","url":"https://api.github.com/orgs/DragonFlyBSD","avatar_url":"https://avatars.githubusercontent.com/u/322742?"}} +,{"id":"2489657907","type":"PushEvent","actor":{"id":5105017,"login":"CommitEveryday","gravatar_id":"","url":"https://api.github.com/users/CommitEveryday","avatar_url":"https://avatars.githubusercontent.com/u/5105017?"},"repo":{"id":28688141,"name":"CommitEveryday/CG_4_OpenGLScene","url":"https://api.github.com/repos/CommitEveryday/CG_4_OpenGLScene"},"payload":{"push_id":536867085,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d53488e93d7691b4c39996c3d7db602fb109c36c","before":"533c3fd9cb6d3ad8c9ea1f7ae07f63a83218d73b","commits":[{"sha":"d53488e93d7691b4c39996c3d7db602fb109c36c","author":{"email":"634dddd6ac305e6785cbf8d29fe20228958a7c33@gmail.com","name":"CommitEveryday"},"message":"Delete dublicates files","distinct":true,"url":"https://api.github.com/repos/CommitEveryday/CG_4_OpenGLScene/commits/d53488e93d7691b4c39996c3d7db602fb109c36c"}]},"public":true,"created_at":"2015-01-01T15:14:51Z"} +,{"id":"2489657908","type":"CreateEvent","actor":{"id":5440188,"login":"brentonklassen","gravatar_id":"","url":"https://api.github.com/users/brentonklassen","avatar_url":"https://avatars.githubusercontent.com/u/5440188?"},"repo":{"id":28688506,"name":"brentonklassen/GiltAngApp","url":"https://api.github.com/repos/brentonklassen/GiltAngApp"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:51Z"} +,{"id":"2489657911","type":"PushEvent","actor":{"id":3888750,"login":"joachimmetz","gravatar_id":"","url":"https://api.github.com/users/joachimmetz","avatar_url":"https://avatars.githubusercontent.com/u/3888750?"},"repo":{"id":24666110,"name":"libyal/libcsystem","url":"https://api.github.com/repos/libyal/libcsystem"},"payload":{"push_id":536867089,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e98764a93d94e330cf01a7e853d013d64ded5899","before":"803db4145f2a3741d293a9db59c27def9003b63a","commits":[{"sha":"e98764a93d94e330cf01a7e853d013d64ded5899","author":{"email":"c00dbb8f3a73f529a0fc5e9b99aa381752dc0845@gmail.com","name":"Joachim Metz"},"message":"Applied updates.","distinct":true,"url":"https://api.github.com/repos/libyal/libcsystem/commits/e98764a93d94e330cf01a7e853d013d64ded5899"}]},"public":true,"created_at":"2015-01-01T15:14:51Z","org":{"id":8692283,"login":"libyal","gravatar_id":"","url":"https://api.github.com/orgs/libyal","avatar_url":"https://avatars.githubusercontent.com/u/8692283?"}} +,{"id":"2489657912","type":"IssuesEvent","actor":{"id":10091313,"login":"PolarHacker","gravatar_id":"","url":"https://api.github.com/users/PolarHacker","avatar_url":"https://avatars.githubusercontent.com/u/10091313?"},"repo":{"id":1185279,"name":"OpenEmu/OpenEmu","url":"https://api.github.com/repos/OpenEmu/OpenEmu"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/OpenEmu/OpenEmu/issues/1764","labels_url":"https://api.github.com/repos/OpenEmu/OpenEmu/issues/1764/labels{/name}","comments_url":"https://api.github.com/repos/OpenEmu/OpenEmu/issues/1764/comments","events_url":"https://api.github.com/repos/OpenEmu/OpenEmu/issues/1764/events","html_url":"https://github.com/OpenEmu/OpenEmu/issues/1764","id":53221627,"number":1764,"title":"N64 Textures slightly cached? ","user":{"login":"PolarHacker","id":10091313,"avatar_url":"https://avatars.githubusercontent.com/u/10091313?v=3","gravatar_id":"","url":"https://api.github.com/users/PolarHacker","html_url":"https://github.com/PolarHacker","followers_url":"https://api.github.com/users/PolarHacker/followers","following_url":"https://api.github.com/users/PolarHacker/following{/other_user}","gists_url":"https://api.github.com/users/PolarHacker/gists{/gist_id}","starred_url":"https://api.github.com/users/PolarHacker/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/PolarHacker/subscriptions","organizations_url":"https://api.github.com/users/PolarHacker/orgs","repos_url":"https://api.github.com/users/PolarHacker/repos","events_url":"https://api.github.com/users/PolarHacker/events{/privacy}","received_events_url":"https://api.github.com/users/PolarHacker/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:14:50Z","updated_at":"2015-01-01T15:14:50Z","closed_at":null,"body":"When I play a game like SM64, I find sometimes for a brief second that when I enter a new level, the textures from the previous level is shown (i.e. The castle walls are made out of Grass.)."}},"public":true,"created_at":"2015-01-01T15:14:51Z","org":{"id":528189,"login":"OpenEmu","gravatar_id":"","url":"https://api.github.com/orgs/OpenEmu","avatar_url":"https://avatars.githubusercontent.com/u/528189?"}} +,{"id":"2489657913","type":"PullRequestEvent","actor":{"id":2595532,"login":"clockfly","gravatar_id":"","url":"https://api.github.com/users/clockfly","avatar_url":"https://avatars.githubusercontent.com/u/2595532?"},"repo":{"id":22139167,"name":"intel-hadoop/gearpump","url":"https://api.github.com/repos/intel-hadoop/gearpump"},"payload":{"action":"opened","number":254,"pull_request":{"url":"https://api.github.com/repos/intel-hadoop/gearpump/pulls/254","id":26743881,"html_url":"https://github.com/intel-hadoop/gearpump/pull/254","diff_url":"https://github.com/intel-hadoop/gearpump/pull/254.diff","patch_url":"https://github.com/intel-hadoop/gearpump/pull/254.patch","issue_url":"https://api.github.com/repos/intel-hadoop/gearpump/issues/254","number":254,"state":"open","locked":false,"title":"fix #184, fix sbt package settings so that we can have a clean build.","user":{"login":"clockfly","id":2595532,"avatar_url":"https://avatars.githubusercontent.com/u/2595532?v=3","gravatar_id":"","url":"https://api.github.com/users/clockfly","html_url":"https://github.com/clockfly","followers_url":"https://api.github.com/users/clockfly/followers","following_url":"https://api.github.com/users/clockfly/following{/other_user}","gists_url":"https://api.github.com/users/clockfly/gists{/gist_id}","starred_url":"https://api.github.com/users/clockfly/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/clockfly/subscriptions","organizations_url":"https://api.github.com/users/clockfly/orgs","repos_url":"https://api.github.com/users/clockfly/repos","events_url":"https://api.github.com/users/clockfly/events{/privacy}","received_events_url":"https://api.github.com/users/clockfly/received_events","type":"User","site_admin":false},"body":"To build the project\r\n\r\nsbt assembly pack\r\n\r\nTo build to single zip package, \r\n\r\nsbt assembly pack-archive # or abt assembly packArchive","created_at":"2015-01-01T15:14:51Z","updated_at":"2015-01-01T15:14:51Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/intel-hadoop/gearpump/pulls/254/commits","review_comments_url":"https://api.github.com/repos/intel-hadoop/gearpump/pulls/254/comments","review_comment_url":"https://api.github.com/repos/intel-hadoop/gearpump/pulls/comments/{number}","comments_url":"https://api.github.com/repos/intel-hadoop/gearpump/issues/254/comments","statuses_url":"https://api.github.com/repos/intel-hadoop/gearpump/statuses/465e8a474f46b9cdf66bc8e2439d7b2d537bcdc7","head":{"label":"clockfly:fix_sbt_package","ref":"fix_sbt_package","sha":"465e8a474f46b9cdf66bc8e2439d7b2d537bcdc7","user":{"login":"clockfly","id":2595532,"avatar_url":"https://avatars.githubusercontent.com/u/2595532?v=3","gravatar_id":"","url":"https://api.github.com/users/clockfly","html_url":"https://github.com/clockfly","followers_url":"https://api.github.com/users/clockfly/followers","following_url":"https://api.github.com/users/clockfly/following{/other_user}","gists_url":"https://api.github.com/users/clockfly/gists{/gist_id}","starred_url":"https://api.github.com/users/clockfly/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/clockfly/subscriptions","organizations_url":"https://api.github.com/users/clockfly/orgs","repos_url":"https://api.github.com/users/clockfly/repos","events_url":"https://api.github.com/users/clockfly/events{/privacy}","received_events_url":"https://api.github.com/users/clockfly/received_events","type":"User","site_admin":false},"repo":{"id":23338500,"name":"gearpump","full_name":"clockfly/gearpump","owner":{"login":"clockfly","id":2595532,"avatar_url":"https://avatars.githubusercontent.com/u/2595532?v=3","gravatar_id":"","url":"https://api.github.com/users/clockfly","html_url":"https://github.com/clockfly","followers_url":"https://api.github.com/users/clockfly/followers","following_url":"https://api.github.com/users/clockfly/following{/other_user}","gists_url":"https://api.github.com/users/clockfly/gists{/gist_id}","starred_url":"https://api.github.com/users/clockfly/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/clockfly/subscriptions","organizations_url":"https://api.github.com/users/clockfly/orgs","repos_url":"https://api.github.com/users/clockfly/repos","events_url":"https://api.github.com/users/clockfly/events{/privacy}","received_events_url":"https://api.github.com/users/clockfly/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/clockfly/gearpump","description":"gearpump","fork":true,"url":"https://api.github.com/repos/clockfly/gearpump","forks_url":"https://api.github.com/repos/clockfly/gearpump/forks","keys_url":"https://api.github.com/repos/clockfly/gearpump/keys{/key_id}","collaborators_url":"https://api.github.com/repos/clockfly/gearpump/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/clockfly/gearpump/teams","hooks_url":"https://api.github.com/repos/clockfly/gearpump/hooks","issue_events_url":"https://api.github.com/repos/clockfly/gearpump/issues/events{/number}","events_url":"https://api.github.com/repos/clockfly/gearpump/events","assignees_url":"https://api.github.com/repos/clockfly/gearpump/assignees{/user}","branches_url":"https://api.github.com/repos/clockfly/gearpump/branches{/branch}","tags_url":"https://api.github.com/repos/clockfly/gearpump/tags","blobs_url":"https://api.github.com/repos/clockfly/gearpump/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/clockfly/gearpump/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/clockfly/gearpump/git/refs{/sha}","trees_url":"https://api.github.com/repos/clockfly/gearpump/git/trees{/sha}","statuses_url":"https://api.github.com/repos/clockfly/gearpump/statuses/{sha}","languages_url":"https://api.github.com/repos/clockfly/gearpump/languages","stargazers_url":"https://api.github.com/repos/clockfly/gearpump/stargazers","contributors_url":"https://api.github.com/repos/clockfly/gearpump/contributors","subscribers_url":"https://api.github.com/repos/clockfly/gearpump/subscribers","subscription_url":"https://api.github.com/repos/clockfly/gearpump/subscription","commits_url":"https://api.github.com/repos/clockfly/gearpump/commits{/sha}","git_commits_url":"https://api.github.com/repos/clockfly/gearpump/git/commits{/sha}","comments_url":"https://api.github.com/repos/clockfly/gearpump/comments{/number}","issue_comment_url":"https://api.github.com/repos/clockfly/gearpump/issues/comments/{number}","contents_url":"https://api.github.com/repos/clockfly/gearpump/contents/{+path}","compare_url":"https://api.github.com/repos/clockfly/gearpump/compare/{base}...{head}","merges_url":"https://api.github.com/repos/clockfly/gearpump/merges","archive_url":"https://api.github.com/repos/clockfly/gearpump/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/clockfly/gearpump/downloads","issues_url":"https://api.github.com/repos/clockfly/gearpump/issues{/number}","pulls_url":"https://api.github.com/repos/clockfly/gearpump/pulls{/number}","milestones_url":"https://api.github.com/repos/clockfly/gearpump/milestones{/number}","notifications_url":"https://api.github.com/repos/clockfly/gearpump/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/clockfly/gearpump/labels{/name}","releases_url":"https://api.github.com/repos/clockfly/gearpump/releases{/id}","created_at":"2014-08-26T04:17:07Z","updated_at":"2014-12-31T02:56:00Z","pushed_at":"2015-01-01T15:12:51Z","git_url":"git://github.com/clockfly/gearpump.git","ssh_url":"git@github.com:clockfly/gearpump.git","clone_url":"https://github.com/clockfly/gearpump.git","svn_url":"https://github.com/clockfly/gearpump","homepage":"","size":2619,"stargazers_count":1,"watchers_count":1,"language":"Scala","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":1,"default_branch":"master"}},"base":{"label":"intel-hadoop:master","ref":"master","sha":"9e36421841ed20aaf5bed6e4ced10391b2cc1e6a","user":{"login":"intel-hadoop","id":1839373,"avatar_url":"https://avatars.githubusercontent.com/u/1839373?v=3","gravatar_id":"","url":"https://api.github.com/users/intel-hadoop","html_url":"https://github.com/intel-hadoop","followers_url":"https://api.github.com/users/intel-hadoop/followers","following_url":"https://api.github.com/users/intel-hadoop/following{/other_user}","gists_url":"https://api.github.com/users/intel-hadoop/gists{/gist_id}","starred_url":"https://api.github.com/users/intel-hadoop/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/intel-hadoop/subscriptions","organizations_url":"https://api.github.com/users/intel-hadoop/orgs","repos_url":"https://api.github.com/users/intel-hadoop/repos","events_url":"https://api.github.com/users/intel-hadoop/events{/privacy}","received_events_url":"https://api.github.com/users/intel-hadoop/received_events","type":"Organization","site_admin":false},"repo":{"id":22139167,"name":"gearpump","full_name":"intel-hadoop/gearpump","owner":{"login":"intel-hadoop","id":1839373,"avatar_url":"https://avatars.githubusercontent.com/u/1839373?v=3","gravatar_id":"","url":"https://api.github.com/users/intel-hadoop","html_url":"https://github.com/intel-hadoop","followers_url":"https://api.github.com/users/intel-hadoop/followers","following_url":"https://api.github.com/users/intel-hadoop/following{/other_user}","gists_url":"https://api.github.com/users/intel-hadoop/gists{/gist_id}","starred_url":"https://api.github.com/users/intel-hadoop/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/intel-hadoop/subscriptions","organizations_url":"https://api.github.com/users/intel-hadoop/orgs","repos_url":"https://api.github.com/users/intel-hadoop/repos","events_url":"https://api.github.com/users/intel-hadoop/events{/privacy}","received_events_url":"https://api.github.com/users/intel-hadoop/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/intel-hadoop/gearpump","description":"gearpump","fork":false,"url":"https://api.github.com/repos/intel-hadoop/gearpump","forks_url":"https://api.github.com/repos/intel-hadoop/gearpump/forks","keys_url":"https://api.github.com/repos/intel-hadoop/gearpump/keys{/key_id}","collaborators_url":"https://api.github.com/repos/intel-hadoop/gearpump/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/intel-hadoop/gearpump/teams","hooks_url":"https://api.github.com/repos/intel-hadoop/gearpump/hooks","issue_events_url":"https://api.github.com/repos/intel-hadoop/gearpump/issues/events{/number}","events_url":"https://api.github.com/repos/intel-hadoop/gearpump/events","assignees_url":"https://api.github.com/repos/intel-hadoop/gearpump/assignees{/user}","branches_url":"https://api.github.com/repos/intel-hadoop/gearpump/branches{/branch}","tags_url":"https://api.github.com/repos/intel-hadoop/gearpump/tags","blobs_url":"https://api.github.com/repos/intel-hadoop/gearpump/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/intel-hadoop/gearpump/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/intel-hadoop/gearpump/git/refs{/sha}","trees_url":"https://api.github.com/repos/intel-hadoop/gearpump/git/trees{/sha}","statuses_url":"https://api.github.com/repos/intel-hadoop/gearpump/statuses/{sha}","languages_url":"https://api.github.com/repos/intel-hadoop/gearpump/languages","stargazers_url":"https://api.github.com/repos/intel-hadoop/gearpump/stargazers","contributors_url":"https://api.github.com/repos/intel-hadoop/gearpump/contributors","subscribers_url":"https://api.github.com/repos/intel-hadoop/gearpump/subscribers","subscription_url":"https://api.github.com/repos/intel-hadoop/gearpump/subscription","commits_url":"https://api.github.com/repos/intel-hadoop/gearpump/commits{/sha}","git_commits_url":"https://api.github.com/repos/intel-hadoop/gearpump/git/commits{/sha}","comments_url":"https://api.github.com/repos/intel-hadoop/gearpump/comments{/number}","issue_comment_url":"https://api.github.com/repos/intel-hadoop/gearpump/issues/comments/{number}","contents_url":"https://api.github.com/repos/intel-hadoop/gearpump/contents/{+path}","compare_url":"https://api.github.com/repos/intel-hadoop/gearpump/compare/{base}...{head}","merges_url":"https://api.github.com/repos/intel-hadoop/gearpump/merges","archive_url":"https://api.github.com/repos/intel-hadoop/gearpump/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/intel-hadoop/gearpump/downloads","issues_url":"https://api.github.com/repos/intel-hadoop/gearpump/issues{/number}","pulls_url":"https://api.github.com/repos/intel-hadoop/gearpump/pulls{/number}","milestones_url":"https://api.github.com/repos/intel-hadoop/gearpump/milestones{/number}","notifications_url":"https://api.github.com/repos/intel-hadoop/gearpump/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/intel-hadoop/gearpump/labels{/name}","releases_url":"https://api.github.com/repos/intel-hadoop/gearpump/releases{/id}","created_at":"2014-07-23T08:55:26Z","updated_at":"2015-01-01T15:13:48Z","pushed_at":"2015-01-01T09:27:21Z","git_url":"git://github.com/intel-hadoop/gearpump.git","ssh_url":"git@github.com:intel-hadoop/gearpump.git","clone_url":"https://github.com/intel-hadoop/gearpump.git","svn_url":"https://github.com/intel-hadoop/gearpump","homepage":"","size":3908,"stargazers_count":169,"watchers_count":169,"language":"Scala","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":29,"mirror_url":null,"open_issues_count":36,"forks":29,"open_issues":36,"watchers":169,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/intel-hadoop/gearpump/pulls/254"},"html":{"href":"https://github.com/intel-hadoop/gearpump/pull/254"},"issue":{"href":"https://api.github.com/repos/intel-hadoop/gearpump/issues/254"},"comments":{"href":"https://api.github.com/repos/intel-hadoop/gearpump/issues/254/comments"},"review_comments":{"href":"https://api.github.com/repos/intel-hadoop/gearpump/pulls/254/comments"},"review_comment":{"href":"https://api.github.com/repos/intel-hadoop/gearpump/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/intel-hadoop/gearpump/pulls/254/commits"},"statuses":{"href":"https://api.github.com/repos/intel-hadoop/gearpump/statuses/465e8a474f46b9cdf66bc8e2439d7b2d537bcdc7"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":2,"additions":1173,"deletions":540,"changed_files":40}},"public":true,"created_at":"2015-01-01T15:14:51Z","org":{"id":1839373,"login":"intel-hadoop","gravatar_id":"","url":"https://api.github.com/orgs/intel-hadoop","avatar_url":"https://avatars.githubusercontent.com/u/1839373?"}} +,{"id":"2489657915","type":"PushEvent","actor":{"id":1247671,"login":"jpola","gravatar_id":"","url":"https://api.github.com/users/jpola","avatar_url":"https://avatars.githubusercontent.com/u/1247671?"},"repo":{"id":28666008,"name":"jpola/Flock","url":"https://api.github.com/repos/jpola/Flock"},"payload":{"push_id":536867091,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"66bdac1bcc4301b7cc86b5c3497e0c6b0700dd81","before":"92780f395a7d800e0a3b33be0dfcf50800301954","commits":[{"sha":"66bdac1bcc4301b7cc86b5c3497e0c6b0700dd81","author":{"email":"f4b90fa44f70d2383b969d72404bebf3792175bf@gmail.com","name":"Jakub Pola"},"message":"More controls","distinct":true,"url":"https://api.github.com/repos/jpola/Flock/commits/66bdac1bcc4301b7cc86b5c3497e0c6b0700dd81"}]},"public":true,"created_at":"2015-01-01T15:14:52Z"} +,{"id":"2489657916","type":"PushEvent","actor":{"id":42865,"login":"rail","gravatar_id":"","url":"https://api.github.com/users/rail","avatar_url":"https://avatars.githubusercontent.com/u/42865?"},"repo":{"id":16970836,"name":"rail/build-cloud-tools","url":"https://api.github.com/repos/rail/build-cloud-tools"},"payload":{"push_id":536867092,"size":2,"distinct_size":0,"ref":"refs/heads/master","head":"82d436e8cb0f7f59e4c5fd7c52ac23a7c605e8b0","before":"18a2e91a0b660d520cd08cc993e45311446294eb","commits":[{"sha":"a34c8683e56087e603848b3da4beaa0b78d70f65","author":{"email":"a241b037a73c6deff4f66bae284a4b2aea05acd3@mozilla.com","name":"Rail Aliiev"},"message":"Better get_uptime semantics","distinct":false,"url":"https://api.github.com/repos/rail/build-cloud-tools/commits/a34c8683e56087e603848b3da4beaa0b78d70f65"},{"sha":"82d436e8cb0f7f59e4c5fd7c52ac23a7c605e8b0","author":{"email":"a241b037a73c6deff4f66bae284a4b2aea05acd3@mozilla.com","name":"Rail Aliiev"},"message":"Merge pull request #7 from rail/get_uptime\n\nBetter get_uptime semantics","distinct":false,"url":"https://api.github.com/repos/rail/build-cloud-tools/commits/82d436e8cb0f7f59e4c5fd7c52ac23a7c605e8b0"}]},"public":true,"created_at":"2015-01-01T15:14:52Z"} +,{"id":"2489657920","type":"PushEvent","actor":{"id":4627837,"login":"jessemillar","gravatar_id":"","url":"https://api.github.com/users/jessemillar","avatar_url":"https://avatars.githubusercontent.com/u/4627837?"},"repo":{"id":18038661,"name":"jessemillar/GBA4iOS-Skinner","url":"https://api.github.com/repos/jessemillar/GBA4iOS-Skinner"},"payload":{"push_id":536867094,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3a44ac2e501c1215dfb52cc1bb75d5470df0e8b2","before":"df488d4cee96a93f2778972668514b0fd56bdca6","commits":[{"sha":"3a44ac2e501c1215dfb52cc1bb75d5470df0e8b2","author":{"email":"0ba40b71986250aad0903c7ebcfd76a410af35fb@gmail.com","name":"Jesse Millar"},"message":"Update LICENSE.md","distinct":true,"url":"https://api.github.com/repos/jessemillar/GBA4iOS-Skinner/commits/3a44ac2e501c1215dfb52cc1bb75d5470df0e8b2"}]},"public":true,"created_at":"2015-01-01T15:14:52Z"} +,{"id":"2489657924","type":"WatchEvent","actor":{"id":426400,"login":"altmer","gravatar_id":"","url":"https://api.github.com/users/altmer","avatar_url":"https://avatars.githubusercontent.com/u/426400?"},"repo":{"id":817345,"name":"tj/git-extras","url":"https://api.github.com/repos/tj/git-extras"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:53Z"} +,{"id":"2489657931","type":"WatchEvent","actor":{"id":435208,"login":"nixzhu","gravatar_id":"","url":"https://api.github.com/users/nixzhu","avatar_url":"https://avatars.githubusercontent.com/u/435208?"},"repo":{"id":28374492,"name":"Elethom/PRPrivacyManager","url":"https://api.github.com/repos/Elethom/PRPrivacyManager"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:53Z"} +,{"id":"2489657933","type":"PushEvent","actor":{"id":5585146,"login":"PawPar","gravatar_id":"","url":"https://api.github.com/users/PawPar","avatar_url":"https://avatars.githubusercontent.com/u/5585146?"},"repo":{"id":28107342,"name":"kkachniarz/neural-net","url":"https://api.github.com/repos/kkachniarz/neural-net"},"payload":{"push_id":536867099,"size":0,"distinct_size":0,"ref":"refs/heads/master","head":"f99c0eca793ea5b47c7ae284d1a3df44bcb39d5e","before":"f99c0eca793ea5b47c7ae284d1a3df44bcb39d5e","commits":[]},"public":true,"created_at":"2015-01-01T15:14:53Z"} +,{"id":"2489657938","type":"PushEvent","actor":{"id":2115751,"login":"wezhunter","gravatar_id":"","url":"https://api.github.com/users/wezhunter","avatar_url":"https://avatars.githubusercontent.com/u/2115751?"},"repo":{"id":24371203,"name":"wezhunter/openhab","url":"https://api.github.com/repos/wezhunter/openhab"},"payload":{"push_id":536867100,"size":174,"distinct_size":174,"ref":"refs/heads/master","head":"617ad735621c9766e34567d6e5477bfe2fe4e205","before":"e62151e2a4b299b40f5f6396298cd1f433443a12","commits":[{"sha":"7e35d88119a34a98ccde7009d5a75bebd7a4faf0","author":{"email":"896cd1f28bd136069418ba553c97388152370a0c@gmail.com","name":"Mark Clark"},"message":"Initial checkin for the MiOS Bridge Binding.\n\nThis binding exposes read, and read-command, access to Devices controlled by a MiOS Home Automation controller, such as those seen at http://getvera.com.\n\nIt exposes the ability to do the following things in the MiOS HA Controller\n\nDevices - Read State Variables & Device Attributes, and invoke (single parameter) UPnP Commands to control the Device.\nScenes - Read the current execution state of a Scene, and invoke those Scenes within the remote HA Controller\nSystem - Read System-level Attributes.\nIt uses the remote control interfaces (aka \"UI Simple\" JSON Calls, and HTTP Long-polling) of the MiOS HA Controller to keep the bound openHAB Items in sync with their counterparts in the MiOS HA Controller.\n\nThe \"guts\" is outlined in the root-level README.md file, along with the JavaDoc that's in the code (although, the README.md is better).\n\nThe binding uses the openHAB Transformation Service extensively to \"map\" the Data & Commands between the two systems. I provide a set of example MAP transform files in the examples/transform directory of the Binding, but these can readily be augmented without needing to tweak the code.\n\nOriginal code was used from the XBMC Binding, and then heavily modified. Snippets included from the HTTP Binding for the various datatype mapping functions.","distinct":true,"url":"https://api.github.com/repos/wezhunter/openhab/commits/7e35d88119a34a98ccde7009d5a75bebd7a4faf0"},{"sha":"45d2d155b04362d2430c7f6770aea45e06fe7325","author":{"email":"896cd1f28bd136069418ba553c97388152370a0c@gmail.com","name":"Mark Clark"},"message":"Merge branch 'mios-bridge-binding' of https://github.com/mrguessed/openhab","distinct":true,"url":"https://api.github.com/repos/wezhunter/openhab/commits/45d2d155b04362d2430c7f6770aea45e06fe7325"},{"sha":"cb666d46e3ad173079ae242981cbb4e2c38f3a3c","author":{"email":"91e6139be50142e2823b0b7063a1b484d2a201f0@gmail.com","name":"Jarle Hjortland"},"message":"Added rain senors and improved double rounding errors.","distinct":true,"url":"https://api.github.com/repos/wezhunter/openhab/commits/cb666d46e3ad173079ae242981cbb4e2c38f3a3c"},{"sha":"433d6f6ade79c93984fabe9eb232f5821e48a388","author":{"email":"91e6139be50142e2823b0b7063a1b484d2a201f0@gmail.com","name":"Jarle Hjortland"},"message":"Merge branch 'master' of https://github.com/openhab/openhab","distinct":true,"url":"https://api.github.com/repos/wezhunter/openhab/commits/433d6f6ade79c93984fabe9eb232f5821e48a388"},{"sha":"34ec2be070d52bdf5a73b9bfb94366328508f0d2","author":{"email":"91e6139be50142e2823b0b7063a1b484d2a201f0@gmail.com","name":"Jarle Hjortland"},"message":"Use BigDecimal.min instead of Math.min","distinct":true,"url":"https://api.github.com/repos/wezhunter/openhab/commits/34ec2be070d52bdf5a73b9bfb94366328508f0d2"},{"sha":"c055ee5585b091020f88c8d9e5051970ab38dea7","author":{"email":"f8bea975a6f1bdfef7912b2c01d7872a9c34d319@gmail.com","name":"sysadmin"},"message":"Corrections on issues #1752, #1743 and factorisation of localised map/scale file search","distinct":true,"url":"https://api.github.com/repos/wezhunter/openhab/commits/c055ee5585b091020f88c8d9e5051970ab38dea7"},{"sha":"fec3cfbee980948828addecb616cee43bc2ea635","author":{"email":"f8bea975a6f1bdfef7912b2c01d7872a9c34d319@gmail.com","name":"sysadmin"},"message":"Comments and example provided","distinct":true,"url":"https://api.github.com/repos/wezhunter/openhab/commits/fec3cfbee980948828addecb616cee43bc2ea635"},{"sha":"a12aad1a7565ba417cdc715a247e073d78b4e137","author":{"email":"f8bea975a6f1bdfef7912b2c01d7872a9c34d319@gmail.com","name":"sysadmin"},"message":"Introducing some help function in Weather actions along with Weather Binding","distinct":true,"url":"https://api.github.com/repos/wezhunter/openhab/commits/a12aad1a7565ba417cdc715a247e073d78b4e137"},{"sha":"c4568040c2caa9f4a1efd59c62658fee04c7cdd5","author":{"email":"f8bea975a6f1bdfef7912b2c01d7872a9c34d319@gmail.com","name":"sysadmin"},"message":"Some missing files","distinct":true,"url":"https://api.github.com/repos/wezhunter/openhab/commits/c4568040c2caa9f4a1efd59c62658fee04c7cdd5"},{"sha":"1503d806e5e6ab611d1c604251bee36aec8144f2","author":{"email":"f8bea975a6f1bdfef7912b2c01d7872a9c34d319@gmail.com","name":"sysadmin"},"message":"Some missing files #2","distinct":true,"url":"https://api.github.com/repos/wezhunter/openhab/commits/1503d806e5e6ab611d1c604251bee36aec8144f2"},{"sha":"ba8481673b1a90e2a9620dcafe7d8cb520ec15d6","author":{"email":"6b7b9b01e9bd9d20dcbc14eb47633821af1f43bc@icloud.com","name":"Gerhard Riegler"},"message":"Fixed restoreOnStartup for all QueryablePersistenceServices","distinct":true,"url":"https://api.github.com/repos/wezhunter/openhab/commits/ba8481673b1a90e2a9620dcafe7d8cb520ec15d6"},{"sha":"55d1c173d74b6cbe33e2a080871f429876b1afe1","author":{"email":"29f6406f6981022b555318f4dffa1db19406f7f1@gmail.com","name":"Russell Stephens"},"message":"DSC ALARM BINDING - Added new items.\n\nAdded new Switch type items that will help with rule creation.","distinct":true,"url":"https://api.github.com/repos/wezhunter/openhab/commits/55d1c173d74b6cbe33e2a080871f429876b1afe1"},{"sha":"efaeb7bf6021f7f63b427a2e273474ed41984f71","author":{"email":"29f6406f6981022b555318f4dffa1db19406f7f1@gmail.com","name":"Russell Stephens"},"message":"Update the default openHAB configuration file\n\nAdded a new configuration parameter called pollPeriod.","distinct":true,"url":"https://api.github.com/repos/wezhunter/openhab/commits/efaeb7bf6021f7f63b427a2e273474ed41984f71"},{"sha":"7f051f6dc028e6aa93979e2b8592212c0eb628c7","author":{"email":"6b7b9b01e9bd9d20dcbc14eb47633821af1f43bc@icloud.com","name":"Gerhard Riegler"},"message":"Removed persistentStateRestorer from sense.","distinct":true,"url":"https://api.github.com/repos/wezhunter/openhab/commits/7f051f6dc028e6aa93979e2b8592212c0eb628c7"},{"sha":"038ab0d800e11cf0f6f95d47b37b2bf11e7ffa2e","author":{"email":"21d6ff41ff8754225445a8f0811d4b51ee5df38d@gmail.com","name":"kreutpet"},"message":"fixed protocol based on testing meter type landis & gyr E350\n\nfixed baudrate handshake when using RS232 \r\nfixed searching for (0x02) to identify data","distinct":true,"url":"https://api.github.com/repos/wezhunter/openhab/commits/038ab0d800e11cf0f6f95d47b37b2bf11e7ffa2e"},{"sha":"2b7ebc2bc9e45cc2e09c0f819d7bad704f8c7fcd","author":{"email":"44592b4eea36663c86b994bb0ea99d15309c1c7d@verpaalen.com","name":"Marcel Verpaalen"},"message":"Maxcube fix for issue #1599\n\nSigned-off-by: Marcel Verpaalen ","distinct":true,"url":"https://api.github.com/repos/wezhunter/openhab/commits/2b7ebc2bc9e45cc2e09c0f819d7bad704f8c7fcd"},{"sha":"d7d2367b70c40edaf6d146d8ddd6445b3452e680","author":{"email":"44592b4eea36663c86b994bb0ea99d15309c1c7d@verpaalen.com","name":"Marcel Verpaalen"},"message":"Maxcube Support for manual mode setting\n\nSigned-off-by: Marcel Verpaalen ","distinct":true,"url":"https://api.github.com/repos/wezhunter/openhab/commits/d7d2367b70c40edaf6d146d8ddd6445b3452e680"},{"sha":"1c31acf55bdbb23bf125c22828482dd1a4c531fc","author":{"email":"21d6ff41ff8754225445a8f0811d4b51ee5df38d@gmail.com","name":"kreutpet"},"message":"applied standard Eclipse Formatter","distinct":true,"url":"https://api.github.com/repos/wezhunter/openhab/commits/1c31acf55bdbb23bf125c22828482dd1a4c531fc"},{"sha":"24b2d820f79484d6fae993447f4056ee8a9e9078","author":{"email":"21d6ff41ff8754225445a8f0811d4b51ee5df38d@gmail.com","name":"kreutpet"},"message":"Revert \"applied standard Eclipse Formatter\"\n\nThis reverts commit 1c31acf55bdbb23bf125c22828482dd1a4c531fc.","distinct":true,"url":"https://api.github.com/repos/wezhunter/openhab/commits/24b2d820f79484d6fae993447f4056ee8a9e9078"},{"sha":"36576e753eb76aa84c28f4bff8b6f74ca83a2cf7","author":{"email":"21d6ff41ff8754225445a8f0811d4b51ee5df38d@gmail.com","name":"kreutpet"},"message":"applied formatter","distinct":true,"url":"https://api.github.com/repos/wezhunter/openhab/commits/36576e753eb76aa84c28f4bff8b6f74ca83a2cf7"}]},"public":true,"created_at":"2015-01-01T15:14:55Z"} +,{"id":"2489657940","type":"PushEvent","actor":{"id":754850,"login":"main--","gravatar_id":"","url":"https://api.github.com/users/main--","avatar_url":"https://avatars.githubusercontent.com/u/754850?"},"repo":{"id":25430334,"name":"moritzuehling/demoinfo-public","url":"https://api.github.com/repos/moritzuehling/demoinfo-public"},"payload":{"push_id":536867101,"size":2,"distinct_size":2,"ref":"refs/heads/well-that-was-awkward","head":"246a7c69a2954215b4df9800dc90690af43f0bf7","before":"f55d75bae0be4e130b506217e2c0dd26ea05ae13","commits":[{"sha":"a38ad48f39fe9e094cf6ca91db38a5db4a91aba1","author":{"email":"b28b7af69320201d1cf206ebf28373980add1451@ehvag.de","name":"main()"},"message":"Wow, even the test was wrong","distinct":true,"url":"https://api.github.com/repos/moritzuehling/demoinfo-public/commits/a38ad48f39fe9e094cf6ca91db38a5db4a91aba1"},{"sha":"246a7c69a2954215b4df9800dc90690af43f0bf7","author":{"email":"b28b7af69320201d1cf206ebf28373980add1451@ehvag.de","name":"main()"},"message":"I fixed it","distinct":true,"url":"https://api.github.com/repos/moritzuehling/demoinfo-public/commits/246a7c69a2954215b4df9800dc90690af43f0bf7"}]},"public":true,"created_at":"2015-01-01T15:14:55Z"} +,{"id":"2489657941","type":"PushEvent","actor":{"id":1511745,"login":"thnkloud9","gravatar_id":"","url":"https://api.github.com/users/thnkloud9","avatar_url":"https://avatars.githubusercontent.com/u/1511745?"},"repo":{"id":27637169,"name":"thnkloud9/TandemWeb","url":"https://api.github.com/repos/thnkloud9/TandemWeb"},"payload":{"push_id":536867102,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3b0c98bb6c63443326e05ba0db36b0e979a692b5","before":"9b68fe35549f8ea2c6a86b39ebb5e782a05a0df3","commits":[{"sha":"3b0c98bb6c63443326e05ba0db36b0e979a692b5","author":{"email":"da0bd0b186862061c9490cde8edb630eddce11c7@gmail.com","name":"Mark Lewis"},"message":"style changes, should look \"ok\" on mobile now","distinct":true,"url":"https://api.github.com/repos/thnkloud9/TandemWeb/commits/3b0c98bb6c63443326e05ba0db36b0e979a692b5"}]},"public":true,"created_at":"2015-01-01T15:14:55Z"} +,{"id":"2489657942","type":"PushEvent","actor":{"id":10062233,"login":"wangyang602117818","gravatar_id":"","url":"https://api.github.com/users/wangyang602117818","avatar_url":"https://avatars.githubusercontent.com/u/10062233?"},"repo":{"id":27633570,"name":"wangyang602117818/learngit","url":"https://api.github.com/repos/wangyang602117818/learngit"},"payload":{"push_id":536867103,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7ca4269ee9d36407ece0e9f9bcd815da5969777d","before":"dfcc6017b4eb3ca1f6aebdc3ebe481740d377e62","commits":[{"sha":"7ca4269ee9d36407ece0e9f9bcd815da5969777d","author":{"email":"520d1ff391263bbb0b12e42fca375ce882dd50a4@qq.com","name":"wangyang602117818"},"message":"Update 001.txt","distinct":true,"url":"https://api.github.com/repos/wangyang602117818/learngit/commits/7ca4269ee9d36407ece0e9f9bcd815da5969777d"}]},"public":true,"created_at":"2015-01-01T15:14:55Z"} +,{"id":"2489657944","type":"ReleaseEvent","actor":{"id":3888750,"login":"joachimmetz","gravatar_id":"","url":"https://api.github.com/users/joachimmetz","avatar_url":"https://avatars.githubusercontent.com/u/3888750?"},"repo":{"id":24666110,"name":"libyal/libcsystem","url":"https://api.github.com/repos/libyal/libcsystem"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/libyal/libcsystem/releases/818700","assets_url":"https://api.github.com/repos/libyal/libcsystem/releases/818700/assets","upload_url":"https://uploads.github.com/repos/libyal/libcsystem/releases/818700/assets{?name}","html_url":"https://github.com/libyal/libcsystem/releases/tag/20150101","id":818700,"tag_name":"20150101","target_commitish":"master","name":"libcsystem-alpha-20150101","draft":false,"author":{"login":"joachimmetz","id":3888750,"avatar_url":"https://avatars.githubusercontent.com/u/3888750?v=3","gravatar_id":"","url":"https://api.github.com/users/joachimmetz","html_url":"https://github.com/joachimmetz","followers_url":"https://api.github.com/users/joachimmetz/followers","following_url":"https://api.github.com/users/joachimmetz/following{/other_user}","gists_url":"https://api.github.com/users/joachimmetz/gists{/gist_id}","starred_url":"https://api.github.com/users/joachimmetz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/joachimmetz/subscriptions","organizations_url":"https://api.github.com/users/joachimmetz/orgs","repos_url":"https://api.github.com/users/joachimmetz/repos","events_url":"https://api.github.com/users/joachimmetz/events{/privacy}","received_events_url":"https://api.github.com/users/joachimmetz/received_events","type":"User","site_admin":false},"prerelease":true,"created_at":"2015-01-01T15:11:20Z","published_at":"2015-01-01T15:14:55Z","assets":[],"tarball_url":"https://api.github.com/repos/libyal/libcsystem/tarball/20150101","zipball_url":"https://api.github.com/repos/libyal/libcsystem/zipball/20150101","body":"Release of version 20150101"}},"public":true,"created_at":"2015-01-01T15:14:56Z","org":{"id":8692283,"login":"libyal","gravatar_id":"","url":"https://api.github.com/orgs/libyal","avatar_url":"https://avatars.githubusercontent.com/u/8692283?"}} +,{"id":"2489657948","type":"CreateEvent","actor":{"id":3888750,"login":"joachimmetz","gravatar_id":"","url":"https://api.github.com/users/joachimmetz","avatar_url":"https://avatars.githubusercontent.com/u/3888750?"},"repo":{"id":24666110,"name":"libyal/libcsystem","url":"https://api.github.com/repos/libyal/libcsystem"},"payload":{"ref":"20150101","ref_type":"tag","master_branch":"master","description":"Library for cross-platform C system functions","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:56Z","org":{"id":8692283,"login":"libyal","gravatar_id":"","url":"https://api.github.com/orgs/libyal","avatar_url":"https://avatars.githubusercontent.com/u/8692283?"}} +,{"id":"2489657951","type":"CreateEvent","actor":{"id":561882,"login":"vicever","gravatar_id":"","url":"https://api.github.com/users/vicever","avatar_url":"https://avatars.githubusercontent.com/u/561882?"},"repo":{"id":28688879,"name":"vicever/server-monitor","url":"https://api.github.com/repos/vicever/server-monitor"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:56Z"} +,{"id":"2489657952","type":"ForkEvent","actor":{"id":10364804,"login":"Stefanofr84","gravatar_id":"","url":"https://api.github.com/users/Stefanofr84","avatar_url":"https://avatars.githubusercontent.com/u/10364804?"},"repo":{"id":17446152,"name":"gabrielecirulli/2048","url":"https://api.github.com/repos/gabrielecirulli/2048"},"payload":{"forkee":{"id":28688878,"name":"2048","full_name":"Stefanofr84/2048","owner":{"login":"Stefanofr84","id":10364804,"avatar_url":"https://avatars.githubusercontent.com/u/10364804?v=3","gravatar_id":"","url":"https://api.github.com/users/Stefanofr84","html_url":"https://github.com/Stefanofr84","followers_url":"https://api.github.com/users/Stefanofr84/followers","following_url":"https://api.github.com/users/Stefanofr84/following{/other_user}","gists_url":"https://api.github.com/users/Stefanofr84/gists{/gist_id}","starred_url":"https://api.github.com/users/Stefanofr84/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Stefanofr84/subscriptions","organizations_url":"https://api.github.com/users/Stefanofr84/orgs","repos_url":"https://api.github.com/users/Stefanofr84/repos","events_url":"https://api.github.com/users/Stefanofr84/events{/privacy}","received_events_url":"https://api.github.com/users/Stefanofr84/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Stefanofr84/2048","description":"A small clone of 1024 (https://play.google.com/store/apps/details?id=com.veewo.a1024)","fork":true,"url":"https://api.github.com/repos/Stefanofr84/2048","forks_url":"https://api.github.com/repos/Stefanofr84/2048/forks","keys_url":"https://api.github.com/repos/Stefanofr84/2048/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Stefanofr84/2048/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Stefanofr84/2048/teams","hooks_url":"https://api.github.com/repos/Stefanofr84/2048/hooks","issue_events_url":"https://api.github.com/repos/Stefanofr84/2048/issues/events{/number}","events_url":"https://api.github.com/repos/Stefanofr84/2048/events","assignees_url":"https://api.github.com/repos/Stefanofr84/2048/assignees{/user}","branches_url":"https://api.github.com/repos/Stefanofr84/2048/branches{/branch}","tags_url":"https://api.github.com/repos/Stefanofr84/2048/tags","blobs_url":"https://api.github.com/repos/Stefanofr84/2048/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Stefanofr84/2048/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Stefanofr84/2048/git/refs{/sha}","trees_url":"https://api.github.com/repos/Stefanofr84/2048/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Stefanofr84/2048/statuses/{sha}","languages_url":"https://api.github.com/repos/Stefanofr84/2048/languages","stargazers_url":"https://api.github.com/repos/Stefanofr84/2048/stargazers","contributors_url":"https://api.github.com/repos/Stefanofr84/2048/contributors","subscribers_url":"https://api.github.com/repos/Stefanofr84/2048/subscribers","subscription_url":"https://api.github.com/repos/Stefanofr84/2048/subscription","commits_url":"https://api.github.com/repos/Stefanofr84/2048/commits{/sha}","git_commits_url":"https://api.github.com/repos/Stefanofr84/2048/git/commits{/sha}","comments_url":"https://api.github.com/repos/Stefanofr84/2048/comments{/number}","issue_comment_url":"https://api.github.com/repos/Stefanofr84/2048/issues/comments/{number}","contents_url":"https://api.github.com/repos/Stefanofr84/2048/contents/{+path}","compare_url":"https://api.github.com/repos/Stefanofr84/2048/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Stefanofr84/2048/merges","archive_url":"https://api.github.com/repos/Stefanofr84/2048/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Stefanofr84/2048/downloads","issues_url":"https://api.github.com/repos/Stefanofr84/2048/issues{/number}","pulls_url":"https://api.github.com/repos/Stefanofr84/2048/pulls{/number}","milestones_url":"https://api.github.com/repos/Stefanofr84/2048/milestones{/number}","notifications_url":"https://api.github.com/repos/Stefanofr84/2048/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Stefanofr84/2048/labels{/name}","releases_url":"https://api.github.com/repos/Stefanofr84/2048/releases{/id}","created_at":"2015-01-01T15:14:56Z","updated_at":"2015-01-01T14:26:42Z","pushed_at":"2014-12-13T12:28:23Z","git_url":"git://github.com/Stefanofr84/2048.git","ssh_url":"git@github.com:Stefanofr84/2048.git","clone_url":"https://github.com/Stefanofr84/2048.git","svn_url":"https://github.com/Stefanofr84/2048","homepage":null,"size":15629,"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:14:56Z"} +,{"id":"2489657960","type":"WatchEvent","actor":{"id":5485093,"login":"imnithin","gravatar_id":"","url":"https://api.github.com/users/imnithin","avatar_url":"https://avatars.githubusercontent.com/u/5485093?"},"repo":{"id":16297763,"name":"rom-rb/rom-rails","url":"https://api.github.com/repos/rom-rb/rom-rails"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:14:57Z","org":{"id":4589832,"login":"rom-rb","gravatar_id":"","url":"https://api.github.com/orgs/rom-rb","avatar_url":"https://avatars.githubusercontent.com/u/4589832?"}} +,{"id":"2489657962","type":"PushEvent","actor":{"id":9656280,"login":"dmcnicks","gravatar_id":"","url":"https://api.github.com/users/dmcnicks","avatar_url":"https://avatars.githubusercontent.com/u/9656280?"},"repo":{"id":28572674,"name":"dmcnicks/dmcnicks-gitlab","url":"https://api.github.com/repos/dmcnicks/dmcnicks-gitlab"},"payload":{"push_id":536867109,"size":1,"distinct_size":1,"ref":"refs/heads/dev","head":"e0181e60a8618b131936103bb09f0154a3a18efd","before":"8d888e0b6f8f4a455f7aa8782e8201196daa720d","commits":[{"sha":"e0181e60a8618b131936103bb09f0154a3a18efd","author":{"email":"aa743a0aaec8f7d7a1f01442503957f4d7a2d634@mcnicks.org","name":"David McNicol"},"message":"Fixing typos","distinct":true,"url":"https://api.github.com/repos/dmcnicks/dmcnicks-gitlab/commits/e0181e60a8618b131936103bb09f0154a3a18efd"}]},"public":true,"created_at":"2015-01-01T15:14:57Z"} +,{"id":"2489657972","type":"CreateEvent","actor":{"id":7077428,"login":"entropy9009","gravatar_id":"","url":"https://api.github.com/users/entropy9009","avatar_url":"https://avatars.githubusercontent.com/u/7077428?"},"repo":{"id":28688880,"name":"entropy9009/entropy9009.github.io","url":"https://api.github.com/repos/entropy9009/entropy9009.github.io"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Website for projects","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:14:59Z"} +,{"id":"2489657974","type":"PushEvent","actor":{"id":491659,"login":"scoder","gravatar_id":"","url":"https://api.github.com/users/scoder","avatar_url":"https://avatars.githubusercontent.com/u/491659?"},"repo":{"id":1099265,"name":"cython/cython","url":"https://api.github.com/repos/cython/cython"},"payload":{"push_id":536867115,"size":6,"distinct_size":6,"ref":"refs/heads/master","head":"3a79406931adbde17d9601f5af458590157959ab","before":"a501c6b2ad82cf20f7c70a263816cd83d33657d6","commits":[{"sha":"375d0845a74de97fa3519c035298335e348a384a","author":{"email":"11627668ff138054b9ab08f183b1e3f7c3ef77a0@behnel.de","name":"Stefan Behnel"},"message":"fix some minor temp variable leaks in parallel range code","distinct":true,"url":"https://api.github.com/repos/cython/cython/commits/375d0845a74de97fa3519c035298335e348a384a"},{"sha":"5a6e79fd0ec0023b88a313c0a8755ac7c3db06ea","author":{"email":"11627668ff138054b9ab08f183b1e3f7c3ef77a0@behnel.de","name":"Stefan Behnel"},"message":"fix warning about C++ char* literal conversion","distinct":true,"url":"https://api.github.com/repos/cython/cython/commits/5a6e79fd0ec0023b88a313c0a8755ac7c3db06ea"},{"sha":"9a0a5c5dfc103ddee775ebfd7d5f1e37f3ee000d","author":{"email":"11627668ff138054b9ab08f183b1e3f7c3ef77a0@behnel.de","name":"Stefan Behnel"},"message":"move constant type name table into utility function as it is only used in that one place","distinct":true,"url":"https://api.github.com/repos/cython/cython/commits/9a0a5c5dfc103ddee775ebfd7d5f1e37f3ee000d"},{"sha":"ea5c0528600ff2e8c9203c1ab26187e9a0aece58","author":{"email":"11627668ff138054b9ab08f183b1e3f7c3ef77a0@behnel.de","name":"Stefan Behnel"},"message":"whitespace","distinct":true,"url":"https://api.github.com/repos/cython/cython/commits/ea5c0528600ff2e8c9203c1ab26187e9a0aece58"},{"sha":"e222eba0ee996f33ec170e5b9d7bf7cd815136af","author":{"email":"11627668ff138054b9ab08f183b1e3f7c3ef77a0@behnel.de","name":"Stefan Behnel"},"message":"improve variable name in helper function","distinct":true,"url":"https://api.github.com/repos/cython/cython/commits/e222eba0ee996f33ec170e5b9d7bf7cd815136af"},{"sha":"3a79406931adbde17d9601f5af458590157959ab","author":{"email":"11627668ff138054b9ab08f183b1e3f7c3ef77a0@behnel.de","name":"Stefan Behnel"},"message":"fix naming conflict: \"__pyx_tuple\" is already used as tuple constant prefix","distinct":true,"url":"https://api.github.com/repos/cython/cython/commits/3a79406931adbde17d9601f5af458590157959ab"}]},"public":true,"created_at":"2015-01-01T15:14:59Z","org":{"id":486082,"login":"cython","gravatar_id":"","url":"https://api.github.com/orgs/cython","avatar_url":"https://avatars.githubusercontent.com/u/486082?"}} +,{"id":"2489657977","type":"WatchEvent","actor":{"id":37051,"login":"shoito","gravatar_id":"","url":"https://api.github.com/users/shoito","avatar_url":"https://avatars.githubusercontent.com/u/37051?"},"repo":{"id":22670857,"name":"enaqx/awesome-react","url":"https://api.github.com/repos/enaqx/awesome-react"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:15:01Z"} +,{"id":"2489657978","type":"IssuesEvent","actor":{"id":10364851,"login":"M3triXxX","gravatar_id":"","url":"https://api.github.com/users/M3triXxX","avatar_url":"https://avatars.githubusercontent.com/u/10364851?"},"repo":{"id":2937146,"name":"TechnicPack/TechnicLauncher","url":"https://api.github.com/repos/TechnicPack/TechnicLauncher"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/TechnicPack/TechnicLauncher/issues/926","labels_url":"https://api.github.com/repos/TechnicPack/TechnicLauncher/issues/926/labels{/name}","comments_url":"https://api.github.com/repos/TechnicPack/TechnicLauncher/issues/926/comments","events_url":"https://api.github.com/repos/TechnicPack/TechnicLauncher/issues/926/events","html_url":"https://github.com/TechnicPack/TechnicLauncher/issues/926","id":53221632,"number":926,"title":"Unexpected Error! Wtf? Please help me ","user":{"login":"M3triXxX","id":10364851,"avatar_url":"https://avatars.githubusercontent.com/u/10364851?v=3","gravatar_id":"","url":"https://api.github.com/users/M3triXxX","html_url":"https://github.com/M3triXxX","followers_url":"https://api.github.com/users/M3triXxX/followers","following_url":"https://api.github.com/users/M3triXxX/following{/other_user}","gists_url":"https://api.github.com/users/M3triXxX/gists{/gist_id}","starred_url":"https://api.github.com/users/M3triXxX/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/M3triXxX/subscriptions","organizations_url":"https://api.github.com/users/M3triXxX/orgs","repos_url":"https://api.github.com/users/M3triXxX/repos","events_url":"https://api.github.com/users/M3triXxX/events{/privacy}","received_events_url":"https://api.github.com/users/M3triXxX/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:15:01Z","updated_at":"2015-01-01T15:15:01Z","closed_at":null,"body":"when i open thechnicpack they tell me that : \r\nStack Trace:\r\n Exception: IndexOutOfBoundsException\r\n Message: Index: 0, Size: 0\r\n Trace:\r\n java.util.ArrayList.rangeCheck(Unknown Source)\r\n java.util.ArrayList.get(Unknown Source)\r\n org.spoutcraft.launcher.skin.NewsComponent.setupArticles(NewsComponent.java:60)\r\n org.spoutcraft.launcher.skin.NewsComponent.loadArticles(NewsComponent.java:46)\r\n org.spoutcraft.launcher.Launcher$2.run(Launcher.java:105)\r\n \r\n\r\n\r\n\r\nPLEASE HELP ME"}},"public":true,"created_at":"2015-01-01T15:15:01Z","org":{"id":1264449,"login":"TechnicPack","gravatar_id":"","url":"https://api.github.com/orgs/TechnicPack","avatar_url":"https://avatars.githubusercontent.com/u/1264449?"}} +,{"id":"2489657979","type":"WatchEvent","actor":{"id":37051,"login":"shoito","gravatar_id":"","url":"https://api.github.com/users/shoito","avatar_url":"https://avatars.githubusercontent.com/u/37051?"},"repo":{"id":22670857,"name":"enaqx/awesome-react","url":"https://api.github.com/repos/enaqx/awesome-react"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:15:01Z"} +,{"id":"2489657983","type":"IssueCommentEvent","actor":{"id":3904348,"login":"floscher","gravatar_id":"","url":"https://api.github.com/users/floscher","avatar_url":"https://avatars.githubusercontent.com/u/3904348?"},"repo":{"id":16438233,"name":"mapillary/mapillary_issues","url":"https://api.github.com/repos/mapillary/mapillary_issues"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/mapillary/mapillary_issues/issues/527","labels_url":"https://api.github.com/repos/mapillary/mapillary_issues/issues/527/labels{/name}","comments_url":"https://api.github.com/repos/mapillary/mapillary_issues/issues/527/comments","events_url":"https://api.github.com/repos/mapillary/mapillary_issues/issues/527/events","html_url":"https://github.com/mapillary/mapillary_issues/issues/527","id":53221507,"number":527,"title":"App fails to upload specific set of images","user":{"login":"bong0","id":179111,"avatar_url":"https://avatars.githubusercontent.com/u/179111?v=3","gravatar_id":"","url":"https://api.github.com/users/bong0","html_url":"https://github.com/bong0","followers_url":"https://api.github.com/users/bong0/followers","following_url":"https://api.github.com/users/bong0/following{/other_user}","gists_url":"https://api.github.com/users/bong0/gists{/gist_id}","starred_url":"https://api.github.com/users/bong0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bong0/subscriptions","organizations_url":"https://api.github.com/users/bong0/orgs","repos_url":"https://api.github.com/users/bong0/repos","events_url":"https://api.github.com/users/bong0/events{/privacy}","received_events_url":"https://api.github.com/users/bong0/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:09:06Z","updated_at":"2015-01-01T15:15:02Z","closed_at":null,"body":"\r\n\r\n\r\n\r\nI have this issue since months now that some specific images cannot be uploaded. After a long time the app cancels the upload and reports it's got a 400 or so... There are several issued pointed out in the log.\r\n\r\nI cannot upload the images to github since they are slightly bigger than 10MB so here's a zip: http://docs.juliankessel.de/mapillary_failedqueue.zip\r\n\r\n\r\n\r\nRedacted log:\r\n\r\n --------- beginning of /dev/log/system\r\n 01-01 15:12:48.567 W/ViewRootImpl( 2757): Dropping event due to root view being removed: MotionEvent { action=ACTION_MOVE, id[0]=0, x[0]=166.21594, y[0]=690.144, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=75546233, downTime=75546224, deviceId=6, source=0x1002 }\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): Performing stop of activity that is not resumed: {app.mapillary/app.mapillary.android.activity.WelcomeActivity}\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): java.lang.RuntimeException: Performing stop of activity that is not resumed: {app.mapillary/app.mapillary.android.activity.WelcomeActivity}\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at android.app.ActivityThread.performStopActivityInner(ActivityThread.java:3237)\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at android.app.ActivityThread.handleStopActivity(ActivityThread.java:3324)\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at android.app.ActivityThread.access(ActivityThread.java:144)\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at android.app.ActivityThread.handleMessage(ActivityThread.java:1273)\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at android.os.Handler.dispatchMessage(Handler.java:102)\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at android.os.Looper.loop(Looper.java:212)\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at android.app.ActivityThread.main(ActivityThread.java:5137)\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at java.lang.reflect.Method.invokeNative(Native Method)\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at java.lang.reflect.Method.invoke(Method.java:515)\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at com.android.internal.os.ZygoteInit.run(ZygoteInit.java:902)\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:718)\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at dalvik.system.NativeStart.main(Native Method)\r\n --------- beginning of /dev/log/main\r\n 01-01 15:41:58.217 D/app.mapillary.android.service.UploadService( 2757): upload AWS 2015_01_01_14_29_47_678.jpg: HTTP/1.1 204 No Content\r\n 01-01 15:41:58.267 D/app.mapillary.android.activity.Utils( 2757): WiFi: true, Ethernet: false\r\n 01-01 15:41:58.297 D/app.mapillary.android.service.UploadService( 2757): Uploading photo /storage/sdcard1/Android/data/app.mapillary/files/mapillary/2015_01_01_14_29_53_138.jpg\r\n 01-01 15:42:07.827 D/app.mapillary.android.service.UploadService( 2757): upload AWS 2015_01_01_14_29_53_138.jpg: HTTP/1.1 204 No Content\r\n 01-01 15:42:07.847 D/app.mapillary.android.activity.Utils( 2757): WiFi: true, Ethernet: false\r\n 01-01 15:42:07.847 D/app.mapillary.android.service.UploadService( 2757): Uploading photo /storage/sdcard1/Android/data/app.mapillary/files/mapillary/2015_01_01_14_30_00_480.jpg\r\n 01-01 15:42:17.157 D/app.mapillary.android.service.UploadService( 2757): upload AWS 2015_01_01_14_30_00_480.jpg: HTTP/1.1 204 No Content\r\n 01-01 15:42:17.187 D/app.mapillary.android.service.UploadService( 2757): Done, errors Upload failure (400)\r\n 01-01 15:42:17.197 D/app.mapillary.android.service.MapillaryUploadSyncAdapter( 2757): onPerformSync for account[user@host], done.\r\n 01-01 15:53:57.957 D/app.mapillary.android.activity.WelcomeActivity( 2757): Android version: 19\r\n 01-01 15:53:57.957 D/app.mapillary.android.activity.WelcomeActivity( 2757): Mapillary version: 0.38\r\n 01-01 15:53:57.957 D/app.mapillary.android.activity.StorageUtils( 2757): getDefaultImageStoragePath- /storage/sdcard1/Android/data/app.mapillary/files/mapillary\r\n 01-01 15:53:57.957 D/app.mapillary.android.activity.StorageUtils( 2757): getDefaultImageStoragePath- /storage/sdcard1/Android/data/app.mapillary/files/mapillary\r\n 01-01 15:53:58.267 I/Adreno-EGL( 2757): : EGL 1.4 QUALCOMM build: RGURRAM_AU_LINUX_ANDROID_LNX.LA.3.5.2.2_RB1.04.04.04.087.030+PATCH[ES]_msm8974_LNX.LA.3.5.2.2_RB1__release_ENGG ()\r\n 01-01 15:53:58.267 I/Adreno-EGL( 2757): OpenGL ES Shader Compiler Version: E031.24.00.15\r\n 01-01 15:53:58.267 I/Adreno-EGL( 2757): Build Date: 08/12/14 Tue\r\n 01-01 15:53:58.267 I/Adreno-EGL( 2757): Local Branch: \r\n 01-01 15:53:58.267 I/Adreno-EGL( 2757): Remote Branch: quic/LNX.LA.3.5.2.2_rb1\r\n 01-01 15:53:58.267 I/Adreno-EGL( 2757): Local Patches: 8b00bd16f3c1d9d35a2fa902df5e679888d2b2e3 Fixes an llvm crash with mini dEQP apk\r\n 01-01 15:53:58.267 I/Adreno-EGL( 2757): 38bad22e162dead4e008444520a0144c78a347bd Fixes a potential dEQP crash.\r\n 01-01 15:53:58.267 I/Adreno-EGL( 2757): ce345e1c45c2ae2d1fb2cb125c8d2574f1af5f95 Rev\r\n 01-01 15:53:58.377 I/Timeline( 2757): Timeline: Activity_idle id: android.os.BinderProxy@44322818 time:78016065\r\n 01-01 15:54:00.057 I/Timeline( 2757): Timeline: Activity_launch_request id:app.mapillary time:78017742\r\n 01-01 15:54:00.157 D/app.mapillary.android.activity.StorageUtils( 2757): getDefaultImageStoragePath- /storage/sdcard1/Android/data/app.mapillary/files/mapillary\r\n 01-01 15:54:00.167 D/app.mapillary.android.activity.DeleteImagesActivity( 2757): files: 15\r\n 01-01 15:54:00.537 I/Timeline( 2757): Timeline: Activity_idle id: android.os.BinderProxy@44346730 time:78018224\r\n 01-01 15:54:05.357 D/app.mapillary.android.activity.StorageUtils( 2757): getDefaultImageStoragePath- /storage/sdcard1/Android/data/app.mapillary/files/mapillary\r\n 01-01 15:54:05.367 D/app.mapillary.android.activity.DeleteImagesActivity( 2757): files: 15\r\n 01-01 15:54:05.547 I/Timeline( 2757): Timeline: Activity_idle id: android.os.BinderProxy@44346730 time:78023234\r\n 01-01 15:54:06.307 D/app.mapillary.android.activity.StorageUtils( 2757): getDefaultImageStoragePath- /storage/sdcard1/Android/data/app.mapillary/files/mapillary\r\n 01-01 15:54:06.307 D/app.mapillary.android.activity.StorageUtils( 2757): getDefaultImageStoragePath- /storage/sdcard1/Android/data/app.mapillary/files/mapillary\r\n 01-01 15:54:06.337 I/Timeline( 2757): Timeline: Activity_idle id: android.os.BinderProxy@44322818 time:78024028\r\n 01-01 15:54:09.657 D/app.mapillary.android.activity.Utils( 2757): WiFi: true, Ethernet: false\r\n 01-01 15:54:09.807 D/app.mapillary.android.service.MapillaryUploadSyncAdapter( 2757): onPerformSync for account[user@host], manualSync true\r\n 01-01 15:54:09.807 D/app.mapillary.android.service.MapillaryUploadSyncAdapter( 2757): Sync over Cell: false\r\n 01-01 15:54:09.807 D/app.mapillary.android.activity.Utils( 2757): WiFi: true, Ethernet: false\r\n 01-01 15:54:09.807 D/app.mapillary.android.service.UploadService( 2757): UploadService()\r\n 01-01 15:54:09.807 D/app.mapillary.android.activity.StorageUtils( 2757): getDefaultImageStoragePath- /storage/sdcard1/Android/data/app.mapillary/files/mapillary\r\n 01-01 15:54:09.807 D/app.mapillary.android.service.UploadService( 2757): startUpload\r\n 01-01 15:54:09.807 D/app.mapillary.android.activity.StorageUtils( 2757): getDefaultImageStoragePath- /storage/sdcard1/Android/data/app.mapillary/files/mapillary\r\n 01-01 15:54:09.817 D/app.mapillary.android.activity.Utils( 2757): WiFi: true, Ethernet: false\r\n 01-01 15:54:09.817 D/app.mapillary.android.activity.Utils( 2757): WiFi: true, Ethernet: false\r\n 01-01 15:54:09.837 D/app.mapillary.android.service.UploadService( 2757): Uploading photo /storage/sdcard1/Android/data/app.mapillary/files/mapillary/2014_10_14_09_33_00_143.jpg\r\n 01-01 15:54:24.057 D/app.mapillary.android.service.UploadService( 2757): upload AWS 2014_10_14_09_33_00_143.jpg: HTTP/1.1 400 Bad Request\r\n 01-01 15:54:24.057 D/app.mapillary.android.activity.Utils( 2757): WiFi: true, Ethernet: false\r\n 01-01 15:54:24.077 D/app.mapillary.android.service.UploadService( 2757): Uploading photo /storage/sdcard1/Android/data/app.mapillary/files/mapillary/2014_10_14_09_33_06_216.jpg\r\n 01-01 15:54:24.077 W/SingleClientConnManager( 2757): Invalid use of SingleClientConnManager: connection still allocated.\r\n 01-01 15:54:24.077 W/SingleClientConnManager( 2757): Make sure to release the connection before allocating another one.\r\n 01-01 15:54:50.877 D/app.mapillary.android.activity.WelcomeActivity( 2757): Appending log to /storage/emulated/0/mapillary.log\r\n \r\n\r\n\r\n\r\n\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/mapillary/mapillary_issues/issues/comments/68488804","html_url":"https://github.com/mapillary/mapillary_issues/issues/527#issuecomment-68488804","issue_url":"https://api.github.com/repos/mapillary/mapillary_issues/issues/527","id":68488804,"user":{"login":"floscher","id":3904348,"avatar_url":"https://avatars.githubusercontent.com/u/3904348?v=3","gravatar_id":"","url":"https://api.github.com/users/floscher","html_url":"https://github.com/floscher","followers_url":"https://api.github.com/users/floscher/followers","following_url":"https://api.github.com/users/floscher/following{/other_user}","gists_url":"https://api.github.com/users/floscher/gists{/gist_id}","starred_url":"https://api.github.com/users/floscher/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/floscher/subscriptions","organizations_url":"https://api.github.com/users/floscher/orgs","repos_url":"https://api.github.com/users/floscher/repos","events_url":"https://api.github.com/users/floscher/events{/privacy}","received_events_url":"https://api.github.com/users/floscher/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:15:01Z","updated_at":"2015-01-01T15:15:01Z","body":"Mapillary has an upload limit of 10.5 MiB (see [#340 (comment)](https://github.com/mapillary/mapillary_issues/issues/340#issuecomment-57039304))."}},"public":true,"created_at":"2015-01-01T15:15:02Z","org":{"id":5332499,"login":"mapillary","gravatar_id":"","url":"https://api.github.com/orgs/mapillary","avatar_url":"https://avatars.githubusercontent.com/u/5332499?"}} +,{"id":"2489657989","type":"PushEvent","actor":{"id":2223970,"login":"Tambe257","gravatar_id":"","url":"https://api.github.com/users/Tambe257","avatar_url":"https://avatars.githubusercontent.com/u/2223970?"},"repo":{"id":9714183,"name":"Tambe257/thetens","url":"https://api.github.com/repos/Tambe257/thetens"},"payload":{"push_id":536867121,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b779d45b69ec7375e1f096596322465b4ed33eaf","before":"f4cece80a7ec64c563e131916e68c9497384ce0c","commits":[{"sha":"b779d45b69ec7375e1f096596322465b4ed33eaf","author":{"email":"b5f9059b9e09db2f547a93e615acacf1b26acf05@gmail.com","name":"Tony Tambe"},"message":"Changed tens2014 page to only include users who ranked albums","distinct":true,"url":"https://api.github.com/repos/Tambe257/thetens/commits/b779d45b69ec7375e1f096596322465b4ed33eaf"}]},"public":true,"created_at":"2015-01-01T15:15:03Z"} +,{"id":"2489657997","type":"PushEvent","actor":{"id":10356326,"login":"e-rsh-p","gravatar_id":"","url":"https://api.github.com/users/e-rsh-p","avatar_url":"https://avatars.githubusercontent.com/u/10356326?"},"repo":{"id":28688502,"name":"e-rsh-p/test","url":"https://api.github.com/repos/e-rsh-p/test"},"payload":{"push_id":536867125,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"82eb48a21dc4f02e1502175c8daa669806a4a36e","before":"fa45f59f067eb05dca6fc854c8d09a81de70bbfb","commits":[{"sha":"0e0c2c2d74fcd5976273d81d5d0db46ef741c8c7","author":{"email":"759752891c2da4a45a38d25a390ae29ab3869cac@gmail.com","name":"ErshKUS"},"message":"Merge pull request #4 from e-rsh-p/master\n\nпервый пулл реквест","distinct":true,"url":"https://api.github.com/repos/e-rsh-p/test/commits/0e0c2c2d74fcd5976273d81d5d0db46ef741c8c7"},{"sha":"a50bf27ad665aaba89b20175893948e85ec8338b","author":{"email":"759752891c2da4a45a38d25a390ae29ab3869cac@gmail.com","name":"ErshKUS"},"message":"второе локально","distinct":true,"url":"https://api.github.com/repos/e-rsh-p/test/commits/a50bf27ad665aaba89b20175893948e85ec8338b"},{"sha":"82eb48a21dc4f02e1502175c8daa669806a4a36e","author":{"email":"7d206429a64aeaaa20169d635c1554cd2e4cdc16@yandex.ru","name":"e-rsh-p"},"message":"второй в форке","distinct":true,"url":"https://api.github.com/repos/e-rsh-p/test/commits/82eb48a21dc4f02e1502175c8daa669806a4a36e"}]},"public":true,"created_at":"2015-01-01T15:15:04Z"} +,{"id":"2489658000","type":"IssuesEvent","actor":{"id":93595,"login":"sergeche","gravatar_id":"","url":"https://api.github.com/users/sergeche","avatar_url":"https://avatars.githubusercontent.com/u/93595?"},"repo":{"id":28687811,"name":"livestyle/analyzer","url":"https://api.github.com/repos/livestyle/analyzer"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/livestyle/analyzer/issues/1","labels_url":"https://api.github.com/repos/livestyle/analyzer/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/livestyle/analyzer/issues/1/comments","events_url":"https://api.github.com/repos/livestyle/analyzer/issues/1/events","html_url":"https://github.com/livestyle/analyzer/issues/1","id":53221634,"number":1,"title":"TODO","user":{"login":"sergeche","id":93595,"avatar_url":"https://avatars.githubusercontent.com/u/93595?v=3","gravatar_id":"","url":"https://api.github.com/users/sergeche","html_url":"https://github.com/sergeche","followers_url":"https://api.github.com/users/sergeche/followers","following_url":"https://api.github.com/users/sergeche/following{/other_user}","gists_url":"https://api.github.com/users/sergeche/gists{/gist_id}","starred_url":"https://api.github.com/users/sergeche/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sergeche/subscriptions","organizations_url":"https://api.github.com/users/sergeche/orgs","repos_url":"https://api.github.com/users/sergeche/repos","events_url":"https://api.github.com/users/sergeche/events{/privacy}","received_events_url":"https://api.github.com/users/sergeche/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:15:05Z","updated_at":"2015-01-01T15:15:05Z","closed_at":null,"body":"* [ ] Provide quick outline for preprocessor stylesheet structure and its CSS counterpart. Counterpart nodes must be linked with source ones\r\n* [ ] Quick preview of generated selectors\r\n* [ ] Scope-based completions for variables and mixins\r\n* [ ] Quick output preview of matched mixin calls\r\n* [ ] Suggest variables for static properties, including similar colors\r\n* [ ] Quick preview of expression result"}},"public":true,"created_at":"2015-01-01T15:15:05Z","org":{"id":8543718,"login":"livestyle","gravatar_id":"","url":"https://api.github.com/orgs/livestyle","avatar_url":"https://avatars.githubusercontent.com/u/8543718?"}} +,{"id":"2489658004","type":"WatchEvent","actor":{"id":680917,"login":"guoxj","gravatar_id":"","url":"https://api.github.com/users/guoxj","avatar_url":"https://avatars.githubusercontent.com/u/680917?"},"repo":{"id":10788737,"name":"codepath/android_guides","url":"https://api.github.com/repos/codepath/android_guides"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:15:05Z","org":{"id":3710273,"login":"codepath","gravatar_id":"","url":"https://api.github.com/orgs/codepath","avatar_url":"https://avatars.githubusercontent.com/u/3710273?"}} +,{"id":"2489658005","type":"PushEvent","actor":{"id":700766,"login":"vrabaud","gravatar_id":"","url":"https://api.github.com/users/vrabaud","avatar_url":"https://avatars.githubusercontent.com/u/700766?"},"repo":{"id":6271959,"name":"ros-perception/calibration","url":"https://api.github.com/repos/ros-perception/calibration"},"payload":{"push_id":536867127,"size":1,"distinct_size":1,"ref":"refs/heads/hydro","head":"7bf0e25facf9079d572b2459f2b9c860613d49b8","before":"04687e48191540890c5ed89b511c8f1f4eaf256a","commits":[{"sha":"7bf0e25facf9079d572b2459f2b9c860613d49b8","author":{"email":"a0dc7e5bc223d1916bf52864296028125fe5bcdf@gmail.com","name":"Vincent Rabaud"},"message":"get rid of the tf dependency","distinct":true,"url":"https://api.github.com/repos/ros-perception/calibration/commits/7bf0e25facf9079d572b2459f2b9c860613d49b8"}]},"public":true,"created_at":"2015-01-01T15:15:05Z","org":{"id":2328630,"login":"ros-perception","gravatar_id":"","url":"https://api.github.com/orgs/ros-perception","avatar_url":"https://avatars.githubusercontent.com/u/2328630?"}} +,{"id":"2489658006","type":"PushEvent","actor":{"id":4627837,"login":"jessemillar","gravatar_id":"","url":"https://api.github.com/users/jessemillar","avatar_url":"https://avatars.githubusercontent.com/u/4627837?"},"repo":{"id":18102114,"name":"jessemillar/Mud","url":"https://api.github.com/repos/jessemillar/Mud"},"payload":{"push_id":536867128,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"da9366505e27c420357cdbba68cfff296f477e80","before":"e4b73ca94554ef80c5e248c06360b740e60020a0","commits":[{"sha":"da9366505e27c420357cdbba68cfff296f477e80","author":{"email":"0ba40b71986250aad0903c7ebcfd76a410af35fb@gmail.com","name":"Jesse Millar"},"message":"Update LICENSE.md","distinct":true,"url":"https://api.github.com/repos/jessemillar/Mud/commits/da9366505e27c420357cdbba68cfff296f477e80"}]},"public":true,"created_at":"2015-01-01T15:15:05Z"} +,{"id":"2489658007","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":536867129,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6acef2c8577ff2ad43bab490bb793553834a0351","before":"99f52e25ca5044abee350c15515d245f25c10932","commits":[{"sha":"6acef2c8577ff2ad43bab490bb793553834a0351","author":{"email":"c7f2353e77fbd59227c091422ca81210965ba01d","name":"selloggingbot"},"message":"updating logs","distinct":true,"url":"https://api.github.com/repos/SeleniumHQ/irc-logs/commits/6acef2c8577ff2ad43bab490bb793553834a0351"}]},"public":true,"created_at":"2015-01-01T15:15:06Z","org":{"id":983927,"login":"SeleniumHQ","gravatar_id":"","url":"https://api.github.com/orgs/SeleniumHQ","avatar_url":"https://avatars.githubusercontent.com/u/983927?"}} +,{"id":"2489658008","type":"WatchEvent","actor":{"id":230646,"login":"chenyukang","gravatar_id":"","url":"https://api.github.com/users/chenyukang","avatar_url":"https://avatars.githubusercontent.com/u/230646?"},"repo":{"id":24936564,"name":"gchp/iota","url":"https://api.github.com/repos/gchp/iota"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:15:06Z"} +,{"id":"2489658019","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":536867137,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4844eb5a710fec4e4a98bc9a380ee5ae596e248f","before":"cb0acce6de98b3f82a86716c42c56daff5c4795e","commits":[{"sha":"4844eb5a710fec4e4a98bc9a380ee5ae596e248f","author":{"email":"24bf68e341ce0fbd9259a5d51feed79682ea4eba@greatfire.org","name":"Ubuntu"},"message":"a","distinct":true,"url":"https://api.github.com/repos/greatfire/z/commits/4844eb5a710fec4e4a98bc9a380ee5ae596e248f"}]},"public":true,"created_at":"2015-01-01T15:15:07Z"} +,{"id":"2489658022","type":"PushEvent","actor":{"id":1370209,"login":"filfat","gravatar_id":"","url":"https://api.github.com/users/filfat","avatar_url":"https://avatars.githubusercontent.com/u/1370209?"},"repo":{"id":26833497,"name":"DownloadMii/DownloadMii-Website","url":"https://api.github.com/repos/DownloadMii/DownloadMii-Website"},"payload":{"push_id":536867139,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ba2a405f95bf752dafac5a2d7b8acd5397d4daca","before":"50dc38f1994b2b9625bad7cb7c1cefdd8978ba3c","commits":[{"sha":"ba2a405f95bf752dafac5a2d7b8acd5397d4daca","author":{"email":"b66032b25135812b5296adc85b43c011cdadb170@hotmail.se","name":"Filiph Sandström"},"message":"Update phpinfo.php","distinct":true,"url":"https://api.github.com/repos/DownloadMii/DownloadMii-Website/commits/ba2a405f95bf752dafac5a2d7b8acd5397d4daca"}]},"public":true,"created_at":"2015-01-01T15:15:07Z","org":{"id":9831921,"login":"DownloadMii","gravatar_id":"","url":"https://api.github.com/orgs/DownloadMii","avatar_url":"https://avatars.githubusercontent.com/u/9831921?"}} +,{"id":"2489658025","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":536867141,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"85588e4c9051542ef5ba270d8b6e5abcdd95da6f","before":"62b0197d5fca99e1e1c4f9699767d91a377c40aa","commits":[{"sha":"85588e4c9051542ef5ba270d8b6e5abcdd95da6f","author":{"email":"24bf68e341ce0fbd9259a5d51feed79682ea4eba@greatfire.org","name":"Ubuntu"},"message":"a","distinct":true,"url":"https://api.github.com/repos/greatfire/wiki/commits/85588e4c9051542ef5ba270d8b6e5abcdd95da6f"}]},"public":true,"created_at":"2015-01-01T15:15:07Z"} +,{"id":"2489658026","type":"PushEvent","actor":{"id":5930351,"login":"vkbansal","gravatar_id":"","url":"https://api.github.com/users/vkbansal","avatar_url":"https://avatars.githubusercontent.com/u/5930351?"},"repo":{"id":24586890,"name":"vkbansal/prism.php","url":"https://api.github.com/repos/vkbansal/prism.php"},"payload":{"push_id":536867142,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"4aea1bbf8afd64910cda85f2d891835cf5315a7c","before":"85938c44ef4e5e8eeffcb6dee9c5763e8063a549","commits":[{"sha":"4aea1bbf8afd64910cda85f2d891835cf5315a7c","author":{"email":"91302f41fb09cacb10697552b34e1eb4de70c9ee@gmail.com","name":"Vivek Kumar Bansal"},"message":"Update docs","distinct":true,"url":"https://api.github.com/repos/vkbansal/prism.php/commits/4aea1bbf8afd64910cda85f2d891835cf5315a7c"}]},"public":true,"created_at":"2015-01-01T15:15:07Z"} +,{"id":"2489658027","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":28688435,"name":"brunocarvalhodearaujo/api","url":"https://api.github.com/repos/brunocarvalhodearaujo/api"},"payload":{"ref":"gh-pages","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:15:07Z"} +,{"id":"2489658029","type":"IssuesEvent","actor":{"id":5514202,"login":"DeeJee","gravatar_id":"","url":"https://api.github.com/users/DeeJee","avatar_url":"https://avatars.githubusercontent.com/u/5514202?"},"repo":{"id":28571307,"name":"DeeJee/VhpTimeLogger","url":"https://api.github.com/repos/DeeJee/VhpTimeLogger"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/7","labels_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/7/comments","events_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/7/events","html_url":"https://github.com/DeeJee/VhpTimeLogger/issues/7","id":53221636,"number":7,"title":"Zoeken in listselect 2","user":{"login":"DeeJee","id":5514202,"avatar_url":"https://avatars.githubusercontent.com/u/5514202?v=3","gravatar_id":"","url":"https://api.github.com/users/DeeJee","html_url":"https://github.com/DeeJee","followers_url":"https://api.github.com/users/DeeJee/followers","following_url":"https://api.github.com/users/DeeJee/following{/other_user}","gists_url":"https://api.github.com/users/DeeJee/gists{/gist_id}","starred_url":"https://api.github.com/users/DeeJee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeeJee/subscriptions","organizations_url":"https://api.github.com/users/DeeJee/orgs","repos_url":"https://api.github.com/users/DeeJee/repos","events_url":"https://api.github.com/users/DeeJee/events{/privacy}","received_events_url":"https://api.github.com/users/DeeJee/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:15:08Z","updated_at":"2015-01-01T15:15:08Z","closed_at":null,"body":"Als je op de standaardmanier zoekt dan wordt wel een item als suggestie gedaan, maar dat wordt soms niet overgenomen. Is er een manier om hiermee een soort auto-complete te maken?\r\n"}},"public":true,"created_at":"2015-01-01T15:15:08Z"} +,{"id":"2489658032","type":"PushEvent","actor":{"id":1474154,"login":"uklotzde","gravatar_id":"","url":"https://api.github.com/users/uklotzde","avatar_url":"https://avatars.githubusercontent.com/u/1474154?"},"repo":{"id":11108787,"name":"uklotzde/mixxx","url":"https://api.github.com/repos/uklotzde/mixxx"},"payload":{"push_id":536867145,"size":1,"distinct_size":1,"ref":"refs/heads/NewSoundSourceAPI","head":"a3b4ce20db7372eece8c4474cd0a9a21e82c0f74","before":"df7461ae36895c158739bab80882ed3e27814492","commits":[{"sha":"a3b4ce20db7372eece8c4474cd0a9a21e82c0f74","author":{"email":"60d1264e2472959ba87c7744753a81addb35b2be@web.de","name":"Uwe Klotz"},"message":"Fix decoding of corrupt FLAC files (fixes bug #1406815)\n\nhttps://bugs.launchpad.net/mixxx/+bug/1406815","distinct":true,"url":"https://api.github.com/repos/uklotzde/mixxx/commits/a3b4ce20db7372eece8c4474cd0a9a21e82c0f74"}]},"public":true,"created_at":"2015-01-01T15:15:08Z"} +,{"id":"2489658035","type":"PullRequestEvent","actor":{"id":557961,"login":"e-jigsaw","gravatar_id":"","url":"https://api.github.com/users/e-jigsaw","avatar_url":"https://avatars.githubusercontent.com/u/557961?"},"repo":{"id":21883081,"name":"jgsme/dev","url":"https://api.github.com/repos/jgsme/dev"},"payload":{"action":"opened","number":18,"pull_request":{"url":"https://api.github.com/repos/jgsme/dev/pulls/18","id":26743885,"html_url":"https://github.com/jgsme/dev/pull/18","diff_url":"https://github.com/jgsme/dev/pull/18.diff","patch_url":"https://github.com/jgsme/dev/pull/18.patch","issue_url":"https://api.github.com/repos/jgsme/dev/issues/18","number":18,"state":"open","locked":false,"title":"Web components","user":{"login":"e-jigsaw","id":557961,"avatar_url":"https://avatars.githubusercontent.com/u/557961?v=3","gravatar_id":"","url":"https://api.github.com/users/e-jigsaw","html_url":"https://github.com/e-jigsaw","followers_url":"https://api.github.com/users/e-jigsaw/followers","following_url":"https://api.github.com/users/e-jigsaw/following{/other_user}","gists_url":"https://api.github.com/users/e-jigsaw/gists{/gist_id}","starred_url":"https://api.github.com/users/e-jigsaw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-jigsaw/subscriptions","organizations_url":"https://api.github.com/users/e-jigsaw/orgs","repos_url":"https://api.github.com/users/e-jigsaw/repos","events_url":"https://api.github.com/users/e-jigsaw/events{/privacy}","received_events_url":"https://api.github.com/users/e-jigsaw/received_events","type":"User","site_admin":false},"body":"for #17 \r\n\r\n* Chrome では動くけど Safari では動かなかった","created_at":"2015-01-01T15:15:08Z","updated_at":"2015-01-01T15:15:08Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/jgsme/dev/pulls/18/commits","review_comments_url":"https://api.github.com/repos/jgsme/dev/pulls/18/comments","review_comment_url":"https://api.github.com/repos/jgsme/dev/pulls/comments/{number}","comments_url":"https://api.github.com/repos/jgsme/dev/issues/18/comments","statuses_url":"https://api.github.com/repos/jgsme/dev/statuses/b4a989353c9bb7b9966e49f652ffe28747986451","head":{"label":"jgsme:web-components","ref":"web-components","sha":"b4a989353c9bb7b9966e49f652ffe28747986451","user":{"login":"jgsme","id":8819590,"avatar_url":"https://avatars.githubusercontent.com/u/8819590?v=3","gravatar_id":"","url":"https://api.github.com/users/jgsme","html_url":"https://github.com/jgsme","followers_url":"https://api.github.com/users/jgsme/followers","following_url":"https://api.github.com/users/jgsme/following{/other_user}","gists_url":"https://api.github.com/users/jgsme/gists{/gist_id}","starred_url":"https://api.github.com/users/jgsme/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jgsme/subscriptions","organizations_url":"https://api.github.com/users/jgsme/orgs","repos_url":"https://api.github.com/users/jgsme/repos","events_url":"https://api.github.com/users/jgsme/events{/privacy}","received_events_url":"https://api.github.com/users/jgsme/received_events","type":"Organization","site_admin":false},"repo":{"id":21883081,"name":"dev","full_name":"jgsme/dev","owner":{"login":"jgsme","id":8819590,"avatar_url":"https://avatars.githubusercontent.com/u/8819590?v=3","gravatar_id":"","url":"https://api.github.com/users/jgsme","html_url":"https://github.com/jgsme","followers_url":"https://api.github.com/users/jgsme/followers","following_url":"https://api.github.com/users/jgsme/following{/other_user}","gists_url":"https://api.github.com/users/jgsme/gists{/gist_id}","starred_url":"https://api.github.com/users/jgsme/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jgsme/subscriptions","organizations_url":"https://api.github.com/users/jgsme/orgs","repos_url":"https://api.github.com/users/jgsme/repos","events_url":"https://api.github.com/users/jgsme/events{/privacy}","received_events_url":"https://api.github.com/users/jgsme/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/jgsme/dev","description":"Development log","fork":false,"url":"https://api.github.com/repos/jgsme/dev","forks_url":"https://api.github.com/repos/jgsme/dev/forks","keys_url":"https://api.github.com/repos/jgsme/dev/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jgsme/dev/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jgsme/dev/teams","hooks_url":"https://api.github.com/repos/jgsme/dev/hooks","issue_events_url":"https://api.github.com/repos/jgsme/dev/issues/events{/number}","events_url":"https://api.github.com/repos/jgsme/dev/events","assignees_url":"https://api.github.com/repos/jgsme/dev/assignees{/user}","branches_url":"https://api.github.com/repos/jgsme/dev/branches{/branch}","tags_url":"https://api.github.com/repos/jgsme/dev/tags","blobs_url":"https://api.github.com/repos/jgsme/dev/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jgsme/dev/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jgsme/dev/git/refs{/sha}","trees_url":"https://api.github.com/repos/jgsme/dev/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jgsme/dev/statuses/{sha}","languages_url":"https://api.github.com/repos/jgsme/dev/languages","stargazers_url":"https://api.github.com/repos/jgsme/dev/stargazers","contributors_url":"https://api.github.com/repos/jgsme/dev/contributors","subscribers_url":"https://api.github.com/repos/jgsme/dev/subscribers","subscription_url":"https://api.github.com/repos/jgsme/dev/subscription","commits_url":"https://api.github.com/repos/jgsme/dev/commits{/sha}","git_commits_url":"https://api.github.com/repos/jgsme/dev/git/commits{/sha}","comments_url":"https://api.github.com/repos/jgsme/dev/comments{/number}","issue_comment_url":"https://api.github.com/repos/jgsme/dev/issues/comments/{number}","contents_url":"https://api.github.com/repos/jgsme/dev/contents/{+path}","compare_url":"https://api.github.com/repos/jgsme/dev/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jgsme/dev/merges","archive_url":"https://api.github.com/repos/jgsme/dev/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jgsme/dev/downloads","issues_url":"https://api.github.com/repos/jgsme/dev/issues{/number}","pulls_url":"https://api.github.com/repos/jgsme/dev/pulls{/number}","milestones_url":"https://api.github.com/repos/jgsme/dev/milestones{/number}","notifications_url":"https://api.github.com/repos/jgsme/dev/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jgsme/dev/labels{/name}","releases_url":"https://api.github.com/repos/jgsme/dev/releases{/id}","created_at":"2014-07-16T02:10:23Z","updated_at":"2015-01-01T12:39:59Z","pushed_at":"2015-01-01T15:14:30Z","git_url":"git://github.com/jgsme/dev.git","ssh_url":"git@github.com:jgsme/dev.git","clone_url":"https://github.com/jgsme/dev.git","svn_url":"https://github.com/jgsme/dev","homepage":"http://dev.jgs.me","size":2720,"stargazers_count":1,"watchers_count":1,"language":"CoffeeScript","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":7,"forks":0,"open_issues":7,"watchers":1,"default_branch":"master"}},"base":{"label":"jgsme:master","ref":"master","sha":"04c0a55357e50e5e2a2608cd88cf8df5e3201c66","user":{"login":"jgsme","id":8819590,"avatar_url":"https://avatars.githubusercontent.com/u/8819590?v=3","gravatar_id":"","url":"https://api.github.com/users/jgsme","html_url":"https://github.com/jgsme","followers_url":"https://api.github.com/users/jgsme/followers","following_url":"https://api.github.com/users/jgsme/following{/other_user}","gists_url":"https://api.github.com/users/jgsme/gists{/gist_id}","starred_url":"https://api.github.com/users/jgsme/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jgsme/subscriptions","organizations_url":"https://api.github.com/users/jgsme/orgs","repos_url":"https://api.github.com/users/jgsme/repos","events_url":"https://api.github.com/users/jgsme/events{/privacy}","received_events_url":"https://api.github.com/users/jgsme/received_events","type":"Organization","site_admin":false},"repo":{"id":21883081,"name":"dev","full_name":"jgsme/dev","owner":{"login":"jgsme","id":8819590,"avatar_url":"https://avatars.githubusercontent.com/u/8819590?v=3","gravatar_id":"","url":"https://api.github.com/users/jgsme","html_url":"https://github.com/jgsme","followers_url":"https://api.github.com/users/jgsme/followers","following_url":"https://api.github.com/users/jgsme/following{/other_user}","gists_url":"https://api.github.com/users/jgsme/gists{/gist_id}","starred_url":"https://api.github.com/users/jgsme/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jgsme/subscriptions","organizations_url":"https://api.github.com/users/jgsme/orgs","repos_url":"https://api.github.com/users/jgsme/repos","events_url":"https://api.github.com/users/jgsme/events{/privacy}","received_events_url":"https://api.github.com/users/jgsme/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/jgsme/dev","description":"Development log","fork":false,"url":"https://api.github.com/repos/jgsme/dev","forks_url":"https://api.github.com/repos/jgsme/dev/forks","keys_url":"https://api.github.com/repos/jgsme/dev/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jgsme/dev/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jgsme/dev/teams","hooks_url":"https://api.github.com/repos/jgsme/dev/hooks","issue_events_url":"https://api.github.com/repos/jgsme/dev/issues/events{/number}","events_url":"https://api.github.com/repos/jgsme/dev/events","assignees_url":"https://api.github.com/repos/jgsme/dev/assignees{/user}","branches_url":"https://api.github.com/repos/jgsme/dev/branches{/branch}","tags_url":"https://api.github.com/repos/jgsme/dev/tags","blobs_url":"https://api.github.com/repos/jgsme/dev/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jgsme/dev/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jgsme/dev/git/refs{/sha}","trees_url":"https://api.github.com/repos/jgsme/dev/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jgsme/dev/statuses/{sha}","languages_url":"https://api.github.com/repos/jgsme/dev/languages","stargazers_url":"https://api.github.com/repos/jgsme/dev/stargazers","contributors_url":"https://api.github.com/repos/jgsme/dev/contributors","subscribers_url":"https://api.github.com/repos/jgsme/dev/subscribers","subscription_url":"https://api.github.com/repos/jgsme/dev/subscription","commits_url":"https://api.github.com/repos/jgsme/dev/commits{/sha}","git_commits_url":"https://api.github.com/repos/jgsme/dev/git/commits{/sha}","comments_url":"https://api.github.com/repos/jgsme/dev/comments{/number}","issue_comment_url":"https://api.github.com/repos/jgsme/dev/issues/comments/{number}","contents_url":"https://api.github.com/repos/jgsme/dev/contents/{+path}","compare_url":"https://api.github.com/repos/jgsme/dev/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jgsme/dev/merges","archive_url":"https://api.github.com/repos/jgsme/dev/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jgsme/dev/downloads","issues_url":"https://api.github.com/repos/jgsme/dev/issues{/number}","pulls_url":"https://api.github.com/repos/jgsme/dev/pulls{/number}","milestones_url":"https://api.github.com/repos/jgsme/dev/milestones{/number}","notifications_url":"https://api.github.com/repos/jgsme/dev/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jgsme/dev/labels{/name}","releases_url":"https://api.github.com/repos/jgsme/dev/releases{/id}","created_at":"2014-07-16T02:10:23Z","updated_at":"2015-01-01T12:39:59Z","pushed_at":"2015-01-01T15:14:30Z","git_url":"git://github.com/jgsme/dev.git","ssh_url":"git@github.com:jgsme/dev.git","clone_url":"https://github.com/jgsme/dev.git","svn_url":"https://github.com/jgsme/dev","homepage":"http://dev.jgs.me","size":2720,"stargazers_count":1,"watchers_count":1,"language":"CoffeeScript","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":7,"forks":0,"open_issues":7,"watchers":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/jgsme/dev/pulls/18"},"html":{"href":"https://github.com/jgsme/dev/pull/18"},"issue":{"href":"https://api.github.com/repos/jgsme/dev/issues/18"},"comments":{"href":"https://api.github.com/repos/jgsme/dev/issues/18/comments"},"review_comments":{"href":"https://api.github.com/repos/jgsme/dev/pulls/18/comments"},"review_comment":{"href":"https://api.github.com/repos/jgsme/dev/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/jgsme/dev/pulls/18/commits"},"statuses":{"href":"https://api.github.com/repos/jgsme/dev/statuses/b4a989353c9bb7b9966e49f652ffe28747986451"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":2,"additions":44,"deletions":9,"changed_files":7}},"public":true,"created_at":"2015-01-01T15:15:09Z","org":{"id":8819590,"login":"jgsme","gravatar_id":"","url":"https://api.github.com/orgs/jgsme","avatar_url":"https://avatars.githubusercontent.com/u/8819590?"}} +,{"id":"2489658036","type":"PushEvent","actor":{"id":7876346,"login":"zhuzeze213","gravatar_id":"","url":"https://api.github.com/users/zhuzeze213","avatar_url":"https://avatars.githubusercontent.com/u/7876346?"},"repo":{"id":28027222,"name":"zhuzeze213/minigui_cluster","url":"https://api.github.com/repos/zhuzeze213/minigui_cluster"},"payload":{"push_id":536867148,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1df180ccccc92eacfe05de94f072c8030a60bf5e","before":"4a28a148cef5afbf3209daae7a68e56b67fb136c","commits":[{"sha":"1df180ccccc92eacfe05de94f072c8030a60bf5e","author":{"email":"43bb8c7db038f70a8ad9a9fc91a61d7c9970471c@qq.com","name":"zhuyouze"},"message":"ready for Acut and Ncut algorithms.they are similarly based on the fcm algorithms!","distinct":true,"url":"https://api.github.com/repos/zhuzeze213/minigui_cluster/commits/1df180ccccc92eacfe05de94f072c8030a60bf5e"}]},"public":true,"created_at":"2015-01-01T15:15:09Z"} +,{"id":"2489658043","type":"PushEvent","actor":{"id":5436953,"login":"cirnocee","gravatar_id":"","url":"https://api.github.com/users/cirnocee","avatar_url":"https://avatars.githubusercontent.com/u/5436953?"},"repo":{"id":28341531,"name":"cirnocee/Geam","url":"https://api.github.com/repos/cirnocee/Geam"},"payload":{"push_id":536867153,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0340fb7138ea74d3471dc61be265c61b7c42022b","before":"14a4f4cd799c68bc925f7cf81723941f062ba9e5","commits":[{"sha":"0340fb7138ea74d3471dc61be265c61b7c42022b","author":{"email":"0ffefe9d887a2216346f4c38237205bdbbc685df@chu2byo.com","name":"Cee"},"message":"Remove Team Members","distinct":true,"url":"https://api.github.com/repos/cirnocee/Geam/commits/0340fb7138ea74d3471dc61be265c61b7c42022b"}]},"public":true,"created_at":"2015-01-01T15:15:10Z"} +,{"id":"2489658047","type":"PullRequestEvent","actor":{"id":5105508,"login":"gioch","gravatar_id":"","url":"https://api.github.com/users/gioch","avatar_url":"https://avatars.githubusercontent.com/u/5105508?"},"repo":{"id":28078075,"name":"gioch/Goals","url":"https://api.github.com/repos/gioch/Goals"},"payload":{"action":"closed","number":1,"pull_request":{"url":"https://api.github.com/repos/gioch/Goals/pulls/1","id":26743879,"html_url":"https://github.com/gioch/Goals/pull/1","diff_url":"https://github.com/gioch/Goals/pull/1.diff","patch_url":"https://github.com/gioch/Goals/pull/1.patch","issue_url":"https://api.github.com/repos/gioch/Goals/issues/1","number":1,"state":"closed","locked":false,"title":"Erased comment from app controller","user":{"login":"gioch","id":5105508,"avatar_url":"https://avatars.githubusercontent.com/u/5105508?v=3","gravatar_id":"","url":"https://api.github.com/users/gioch","html_url":"https://github.com/gioch","followers_url":"https://api.github.com/users/gioch/followers","following_url":"https://api.github.com/users/gioch/following{/other_user}","gists_url":"https://api.github.com/users/gioch/gists{/gist_id}","starred_url":"https://api.github.com/users/gioch/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gioch/subscriptions","organizations_url":"https://api.github.com/users/gioch/orgs","repos_url":"https://api.github.com/users/gioch/repos","events_url":"https://api.github.com/users/gioch/events{/privacy}","received_events_url":"https://api.github.com/users/gioch/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:14:33Z","updated_at":"2015-01-01T15:15:10Z","closed_at":"2015-01-01T15:15:10Z","merged_at":"2015-01-01T15:15:10Z","merge_commit_sha":"c4ae746a7a831725c6bce0597c02114c555dfb8b","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/gioch/Goals/pulls/1/commits","review_comments_url":"https://api.github.com/repos/gioch/Goals/pulls/1/comments","review_comment_url":"https://api.github.com/repos/gioch/Goals/pulls/comments/{number}","comments_url":"https://api.github.com/repos/gioch/Goals/issues/1/comments","statuses_url":"https://api.github.com/repos/gioch/Goals/statuses/d36704346022c6ea7227199d5789500ea670eddd","head":{"label":"gioch:dev","ref":"dev","sha":"d36704346022c6ea7227199d5789500ea670eddd","user":{"login":"gioch","id":5105508,"avatar_url":"https://avatars.githubusercontent.com/u/5105508?v=3","gravatar_id":"","url":"https://api.github.com/users/gioch","html_url":"https://github.com/gioch","followers_url":"https://api.github.com/users/gioch/followers","following_url":"https://api.github.com/users/gioch/following{/other_user}","gists_url":"https://api.github.com/users/gioch/gists{/gist_id}","starred_url":"https://api.github.com/users/gioch/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gioch/subscriptions","organizations_url":"https://api.github.com/users/gioch/orgs","repos_url":"https://api.github.com/users/gioch/repos","events_url":"https://api.github.com/users/gioch/events{/privacy}","received_events_url":"https://api.github.com/users/gioch/received_events","type":"User","site_admin":false},"repo":{"id":28078075,"name":"Goals","full_name":"gioch/Goals","owner":{"login":"gioch","id":5105508,"avatar_url":"https://avatars.githubusercontent.com/u/5105508?v=3","gravatar_id":"","url":"https://api.github.com/users/gioch","html_url":"https://github.com/gioch","followers_url":"https://api.github.com/users/gioch/followers","following_url":"https://api.github.com/users/gioch/following{/other_user}","gists_url":"https://api.github.com/users/gioch/gists{/gist_id}","starred_url":"https://api.github.com/users/gioch/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gioch/subscriptions","organizations_url":"https://api.github.com/users/gioch/orgs","repos_url":"https://api.github.com/users/gioch/repos","events_url":"https://api.github.com/users/gioch/events{/privacy}","received_events_url":"https://api.github.com/users/gioch/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/gioch/Goals","description":"Simple web-app, developed with Ruby On Rails, for managing your goals","fork":false,"url":"https://api.github.com/repos/gioch/Goals","forks_url":"https://api.github.com/repos/gioch/Goals/forks","keys_url":"https://api.github.com/repos/gioch/Goals/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gioch/Goals/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gioch/Goals/teams","hooks_url":"https://api.github.com/repos/gioch/Goals/hooks","issue_events_url":"https://api.github.com/repos/gioch/Goals/issues/events{/number}","events_url":"https://api.github.com/repos/gioch/Goals/events","assignees_url":"https://api.github.com/repos/gioch/Goals/assignees{/user}","branches_url":"https://api.github.com/repos/gioch/Goals/branches{/branch}","tags_url":"https://api.github.com/repos/gioch/Goals/tags","blobs_url":"https://api.github.com/repos/gioch/Goals/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gioch/Goals/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gioch/Goals/git/refs{/sha}","trees_url":"https://api.github.com/repos/gioch/Goals/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gioch/Goals/statuses/{sha}","languages_url":"https://api.github.com/repos/gioch/Goals/languages","stargazers_url":"https://api.github.com/repos/gioch/Goals/stargazers","contributors_url":"https://api.github.com/repos/gioch/Goals/contributors","subscribers_url":"https://api.github.com/repos/gioch/Goals/subscribers","subscription_url":"https://api.github.com/repos/gioch/Goals/subscription","commits_url":"https://api.github.com/repos/gioch/Goals/commits{/sha}","git_commits_url":"https://api.github.com/repos/gioch/Goals/git/commits{/sha}","comments_url":"https://api.github.com/repos/gioch/Goals/comments{/number}","issue_comment_url":"https://api.github.com/repos/gioch/Goals/issues/comments/{number}","contents_url":"https://api.github.com/repos/gioch/Goals/contents/{+path}","compare_url":"https://api.github.com/repos/gioch/Goals/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gioch/Goals/merges","archive_url":"https://api.github.com/repos/gioch/Goals/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gioch/Goals/downloads","issues_url":"https://api.github.com/repos/gioch/Goals/issues{/number}","pulls_url":"https://api.github.com/repos/gioch/Goals/pulls{/number}","milestones_url":"https://api.github.com/repos/gioch/Goals/milestones{/number}","notifications_url":"https://api.github.com/repos/gioch/Goals/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gioch/Goals/labels{/name}","releases_url":"https://api.github.com/repos/gioch/Goals/releases{/id}","created_at":"2014-12-16T08:41:37Z","updated_at":"2014-12-22T10:03:16Z","pushed_at":"2015-01-01T15:15:10Z","git_url":"git://github.com/gioch/Goals.git","ssh_url":"git@github.com:gioch/Goals.git","clone_url":"https://github.com/gioch/Goals.git","svn_url":"https://github.com/gioch/Goals","homepage":null,"size":168,"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":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"gioch:master","ref":"master","sha":"6829117977ce8e104b6643e240eb07a5a2a8b0ed","user":{"login":"gioch","id":5105508,"avatar_url":"https://avatars.githubusercontent.com/u/5105508?v=3","gravatar_id":"","url":"https://api.github.com/users/gioch","html_url":"https://github.com/gioch","followers_url":"https://api.github.com/users/gioch/followers","following_url":"https://api.github.com/users/gioch/following{/other_user}","gists_url":"https://api.github.com/users/gioch/gists{/gist_id}","starred_url":"https://api.github.com/users/gioch/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gioch/subscriptions","organizations_url":"https://api.github.com/users/gioch/orgs","repos_url":"https://api.github.com/users/gioch/repos","events_url":"https://api.github.com/users/gioch/events{/privacy}","received_events_url":"https://api.github.com/users/gioch/received_events","type":"User","site_admin":false},"repo":{"id":28078075,"name":"Goals","full_name":"gioch/Goals","owner":{"login":"gioch","id":5105508,"avatar_url":"https://avatars.githubusercontent.com/u/5105508?v=3","gravatar_id":"","url":"https://api.github.com/users/gioch","html_url":"https://github.com/gioch","followers_url":"https://api.github.com/users/gioch/followers","following_url":"https://api.github.com/users/gioch/following{/other_user}","gists_url":"https://api.github.com/users/gioch/gists{/gist_id}","starred_url":"https://api.github.com/users/gioch/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gioch/subscriptions","organizations_url":"https://api.github.com/users/gioch/orgs","repos_url":"https://api.github.com/users/gioch/repos","events_url":"https://api.github.com/users/gioch/events{/privacy}","received_events_url":"https://api.github.com/users/gioch/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/gioch/Goals","description":"Simple web-app, developed with Ruby On Rails, for managing your goals","fork":false,"url":"https://api.github.com/repos/gioch/Goals","forks_url":"https://api.github.com/repos/gioch/Goals/forks","keys_url":"https://api.github.com/repos/gioch/Goals/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gioch/Goals/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gioch/Goals/teams","hooks_url":"https://api.github.com/repos/gioch/Goals/hooks","issue_events_url":"https://api.github.com/repos/gioch/Goals/issues/events{/number}","events_url":"https://api.github.com/repos/gioch/Goals/events","assignees_url":"https://api.github.com/repos/gioch/Goals/assignees{/user}","branches_url":"https://api.github.com/repos/gioch/Goals/branches{/branch}","tags_url":"https://api.github.com/repos/gioch/Goals/tags","blobs_url":"https://api.github.com/repos/gioch/Goals/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gioch/Goals/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gioch/Goals/git/refs{/sha}","trees_url":"https://api.github.com/repos/gioch/Goals/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gioch/Goals/statuses/{sha}","languages_url":"https://api.github.com/repos/gioch/Goals/languages","stargazers_url":"https://api.github.com/repos/gioch/Goals/stargazers","contributors_url":"https://api.github.com/repos/gioch/Goals/contributors","subscribers_url":"https://api.github.com/repos/gioch/Goals/subscribers","subscription_url":"https://api.github.com/repos/gioch/Goals/subscription","commits_url":"https://api.github.com/repos/gioch/Goals/commits{/sha}","git_commits_url":"https://api.github.com/repos/gioch/Goals/git/commits{/sha}","comments_url":"https://api.github.com/repos/gioch/Goals/comments{/number}","issue_comment_url":"https://api.github.com/repos/gioch/Goals/issues/comments/{number}","contents_url":"https://api.github.com/repos/gioch/Goals/contents/{+path}","compare_url":"https://api.github.com/repos/gioch/Goals/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gioch/Goals/merges","archive_url":"https://api.github.com/repos/gioch/Goals/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gioch/Goals/downloads","issues_url":"https://api.github.com/repos/gioch/Goals/issues{/number}","pulls_url":"https://api.github.com/repos/gioch/Goals/pulls{/number}","milestones_url":"https://api.github.com/repos/gioch/Goals/milestones{/number}","notifications_url":"https://api.github.com/repos/gioch/Goals/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gioch/Goals/labels{/name}","releases_url":"https://api.github.com/repos/gioch/Goals/releases{/id}","created_at":"2014-12-16T08:41:37Z","updated_at":"2014-12-22T10:03:16Z","pushed_at":"2015-01-01T15:15:10Z","git_url":"git://github.com/gioch/Goals.git","ssh_url":"git@github.com:gioch/Goals.git","clone_url":"https://github.com/gioch/Goals.git","svn_url":"https://github.com/gioch/Goals","homepage":null,"size":168,"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":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/gioch/Goals/pulls/1"},"html":{"href":"https://github.com/gioch/Goals/pull/1"},"issue":{"href":"https://api.github.com/repos/gioch/Goals/issues/1"},"comments":{"href":"https://api.github.com/repos/gioch/Goals/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/gioch/Goals/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/gioch/Goals/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/gioch/Goals/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/gioch/Goals/statuses/d36704346022c6ea7227199d5789500ea670eddd"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"gioch","id":5105508,"avatar_url":"https://avatars.githubusercontent.com/u/5105508?v=3","gravatar_id":"","url":"https://api.github.com/users/gioch","html_url":"https://github.com/gioch","followers_url":"https://api.github.com/users/gioch/followers","following_url":"https://api.github.com/users/gioch/following{/other_user}","gists_url":"https://api.github.com/users/gioch/gists{/gist_id}","starred_url":"https://api.github.com/users/gioch/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gioch/subscriptions","organizations_url":"https://api.github.com/users/gioch/orgs","repos_url":"https://api.github.com/users/gioch/repos","events_url":"https://api.github.com/users/gioch/events{/privacy}","received_events_url":"https://api.github.com/users/gioch/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":0,"deletions":2,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:15:11Z"} +,{"id":"2489658048","type":"PushEvent","actor":{"id":3825720,"login":"t-recx","gravatar_id":"","url":"https://api.github.com/users/t-recx","avatar_url":"https://avatars.githubusercontent.com/u/3825720?"},"repo":{"id":21960493,"name":"t-recx/Rothko","url":"https://api.github.com/repos/t-recx/Rothko"},"payload":{"push_id":536867156,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f38551d94ba27c126deb73cd35de4f010375ab93","before":"9c6e1a0260976671b11872ad6c6e98242dbb36be","commits":[{"sha":"f38551d94ba27c126deb73cd35de4f010375ab93","author":{"email":"8e86aee0e785c5e1e5aea33aa50bce9f7971f93e@live.com.pt","name":"t-recx"},"message":"Added EditUIUnitTypeSoundView","distinct":true,"url":"https://api.github.com/repos/t-recx/Rothko/commits/f38551d94ba27c126deb73cd35de4f010375ab93"}]},"public":true,"created_at":"2015-01-01T15:15:11Z"} +,{"id":"2489658049","type":"PushEvent","actor":{"id":5105508,"login":"gioch","gravatar_id":"","url":"https://api.github.com/users/gioch","avatar_url":"https://avatars.githubusercontent.com/u/5105508?"},"repo":{"id":28078075,"name":"gioch/Goals","url":"https://api.github.com/repos/gioch/Goals"},"payload":{"push_id":536867157,"size":2,"distinct_size":1,"ref":"refs/heads/master","head":"a229bf18d8af109663580f7961b2908098dd5c4b","before":"6829117977ce8e104b6643e240eb07a5a2a8b0ed","commits":[{"sha":"d36704346022c6ea7227199d5789500ea670eddd","author":{"email":"048416ae763ca1bcef5bb7f33682e6a69d1a1506@gmail.com","name":"gioch"},"message":"Erased comment from app controller","distinct":false,"url":"https://api.github.com/repos/gioch/Goals/commits/d36704346022c6ea7227199d5789500ea670eddd"},{"sha":"a229bf18d8af109663580f7961b2908098dd5c4b","author":{"email":"048416ae763ca1bcef5bb7f33682e6a69d1a1506@gmail.com","name":"George Chkhvirkia"},"message":"Merge pull request #1 from gioch/dev\n\nErased comment from app controller","distinct":true,"url":"https://api.github.com/repos/gioch/Goals/commits/a229bf18d8af109663580f7961b2908098dd5c4b"}]},"public":true,"created_at":"2015-01-01T15:15:11Z"} +,{"id":"2489658053","type":"PushEvent","actor":{"id":1125622,"login":"jrmarino","gravatar_id":"","url":"https://api.github.com/users/jrmarino","avatar_url":"https://avatars.githubusercontent.com/u/1125622?"},"repo":{"id":6439865,"name":"DragonFlyBSD/DPorts","url":"https://api.github.com/repos/DragonFlyBSD/DPorts"},"payload":{"push_id":536867161,"size":1,"distinct_size":1,"ref":"refs/heads/staged","head":"07f01702d0c5d754bfb5ea1b2f92a882cd1e6289","before":"d45769493a70917f05b79e00bf48ea99a0eef3e0","commits":[{"sha":"07f01702d0c5d754bfb5ea1b2f92a882cd1e6289","author":{"email":"365ec17a675f3273bc16c74761ad83f2cf07c59a@home.ok","name":"DPorts Builder"},"message":"Update net/py-urllib3 to version 1.10","distinct":true,"url":"https://api.github.com/repos/DragonFlyBSD/DPorts/commits/07f01702d0c5d754bfb5ea1b2f92a882cd1e6289"}]},"public":true,"created_at":"2015-01-01T15:15:11Z","org":{"id":322742,"login":"DragonFlyBSD","gravatar_id":"","url":"https://api.github.com/orgs/DragonFlyBSD","avatar_url":"https://avatars.githubusercontent.com/u/322742?"}} +,{"id":"2489658056","type":"WatchEvent","actor":{"id":966102,"login":"dmeulen","gravatar_id":"","url":"https://api.github.com/users/dmeulen","avatar_url":"https://avatars.githubusercontent.com/u/966102?"},"repo":{"id":16960472,"name":"emirozer/fake2db","url":"https://api.github.com/repos/emirozer/fake2db"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:15:11Z"} +,{"id":"2489658057","type":"PushEvent","actor":{"id":8362751,"login":"zit-hb","gravatar_id":"","url":"https://api.github.com/users/zit-hb","avatar_url":"https://avatars.githubusercontent.com/u/8362751?"},"repo":{"id":28485805,"name":"zecure/shadowd_perl","url":"https://api.github.com/repos/zecure/shadowd_perl"},"payload":{"push_id":536867162,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0514bd86ed0c1338cbd96cfb87fa1cab06c5cb4a","before":"ff888027192874e8657f182d5f57cda3749c7cf4","commits":[{"sha":"0514bd86ed0c1338cbd96cfb87fa1cab06c5cb4a","author":{"email":"97a26178972a16384b537a7180900cf940ee5c82@zecure.org","name":"zit-hb"},"message":"Completed Mojolicious 5 support.","distinct":true,"url":"https://api.github.com/repos/zecure/shadowd_perl/commits/0514bd86ed0c1338cbd96cfb87fa1cab06c5cb4a"}]},"public":true,"created_at":"2015-01-01T15:15:12Z","org":{"id":8364122,"login":"zecure","gravatar_id":"","url":"https://api.github.com/orgs/zecure","avatar_url":"https://avatars.githubusercontent.com/u/8364122?"}} +,{"id":"2489658061","type":"PushEvent","actor":{"id":9769086,"login":"sporter69","gravatar_id":"","url":"https://api.github.com/users/sporter69","avatar_url":"https://avatars.githubusercontent.com/u/9769086?"},"repo":{"id":28312912,"name":"lcrespom/ycs","url":"https://api.github.com/repos/lcrespom/ycs"},"payload":{"push_id":536867164,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9badb55b0b4035515ad11b03323eecce3f1be8f8","before":"4e753c680c42d961285df32d2079f7af6f66256a","commits":[{"sha":"9badb55b0b4035515ad11b03323eecce3f1be8f8","author":{"email":"3c3fae4eb0fb8d0e50830db4a8590e41d7714b5a@gmx.com","name":"admin@mydocumenta.com"},"message":"TextosDAO","distinct":true,"url":"https://api.github.com/repos/lcrespom/ycs/commits/9badb55b0b4035515ad11b03323eecce3f1be8f8"}]},"public":true,"created_at":"2015-01-01T15:15:12Z"} +,{"id":"2489658062","type":"PushEvent","actor":{"id":9698823,"login":"gongchunru","gravatar_id":"","url":"https://api.github.com/users/gongchunru","avatar_url":"https://avatars.githubusercontent.com/u/9698823?"},"repo":{"id":28684672,"name":"gongchunru/jekyll_demo","url":"https://api.github.com/repos/gongchunru/jekyll_demo"},"payload":{"push_id":536867165,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"08751e54c40da7dd602fb50fd905978ab4726a33","before":"3823e823bba23adffc8020749dfb24b262df1d1c","commits":[{"sha":"08751e54c40da7dd602fb50fd905978ab4726a33","author":{"email":"94d214cac031c939680abd6c2b07d9858982e90a@163.com","name":"gongchunru"},"message":"date\n\nabout data","distinct":true,"url":"https://api.github.com/repos/gongchunru/jekyll_demo/commits/08751e54c40da7dd602fb50fd905978ab4726a33"}]},"public":true,"created_at":"2015-01-01T15:15:12Z"} +,{"id":"2489658071","type":"PushEvent","actor":{"id":10362868,"login":"lailul","gravatar_id":"","url":"https://api.github.com/users/lailul","avatar_url":"https://avatars.githubusercontent.com/u/10362868?"},"repo":{"id":28686489,"name":"lailul/tutorial-parse","url":"https://api.github.com/repos/lailul/tutorial-parse"},"payload":{"push_id":536867169,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a61b61d0ba32ab48da57c25b4c027342df3ff6dd","before":"fd5cd2ed76205936e61181ba72b72b06a4dc1aac","commits":[{"sha":"a61b61d0ba32ab48da57c25b4c027342df3ff6dd","author":{"email":"675fa88bb04a9f7e57234f3920893d2a05cda026@users.noreply.github.com","name":"Lailul Rahmaniah"},"message":"Create README.md","distinct":true,"url":"https://api.github.com/repos/lailul/tutorial-parse/commits/a61b61d0ba32ab48da57c25b4c027342df3ff6dd"}]},"public":true,"created_at":"2015-01-01T15:15:14Z"} +,{"id":"2489658072","type":"PushEvent","actor":{"id":1351729,"login":"OlegGetm","gravatar_id":"","url":"https://api.github.com/users/OlegGetm","avatar_url":"https://avatars.githubusercontent.com/u/1351729?"},"repo":{"id":25458927,"name":"OlegGetm/autoexpert","url":"https://api.github.com/repos/OlegGetm/autoexpert"},"payload":{"push_id":536867170,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bea02221ca97ea7c4b5bfa656a2e2df023a412fb","before":"4f9f6b8334e472c01edf68b696225036fe1237e5","commits":[{"sha":"bea02221ca97ea7c4b5bfa656a2e2df023a412fb","author":{"email":"2dec4c57a51fe4b9d5b49d4fbfdb840cac222a5f@yandex.ru","name":"Oleg"},"message":"fx-a","distinct":true,"url":"https://api.github.com/repos/OlegGetm/autoexpert/commits/bea02221ca97ea7c4b5bfa656a2e2df023a412fb"}]},"public":true,"created_at":"2015-01-01T15:15:14Z"} +,{"id":"2489658076","type":"PushEvent","actor":{"id":164472,"login":"mrkrstphr","gravatar_id":"","url":"https://api.github.com/users/mrkrstphr","avatar_url":"https://avatars.githubusercontent.com/u/164472?"},"repo":{"id":7569904,"name":"mrkrstphr/branches","url":"https://api.github.com/repos/mrkrstphr/branches"},"payload":{"push_id":536867172,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3ea4b248a17d8ab999ac8d3adfeb60bb5221c249","before":"af1c9ba239324bac2b40b1c139b84746eb98b6fa","commits":[{"sha":"3ea4b248a17d8ab999ac8d3adfeb60bb5221c249","author":{"email":"673adee6429f40d3fdcac90caa8fc310484e97e9@gmail.com","name":"Kristopher Wilson"},"message":"updating copy task to handle all html files at once","distinct":true,"url":"https://api.github.com/repos/mrkrstphr/branches/commits/3ea4b248a17d8ab999ac8d3adfeb60bb5221c249"}]},"public":true,"created_at":"2015-01-01T15:15:14Z"} +,{"id":"2489658082","type":"CreateEvent","actor":{"id":6471813,"login":"binarydave","gravatar_id":"","url":"https://api.github.com/users/binarydave","avatar_url":"https://avatars.githubusercontent.com/u/6471813?"},"repo":{"id":28688883,"name":"binarydave/rango_project","url":"https://api.github.com/repos/binarydave/rango_project"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"django test project","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:15:16Z"} +,{"id":"2489658084","type":"WatchEvent","actor":{"id":8189513,"login":"sherlockzoom","gravatar_id":"","url":"https://api.github.com/users/sherlockzoom","avatar_url":"https://avatars.githubusercontent.com/u/8189513?"},"repo":{"id":3791384,"name":"coursera-dl/coursera","url":"https://api.github.com/repos/coursera-dl/coursera"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:15:16Z","org":{"id":5588942,"login":"coursera-dl","gravatar_id":"","url":"https://api.github.com/orgs/coursera-dl","avatar_url":"https://avatars.githubusercontent.com/u/5588942?"}} +,{"id":"2489658085","type":"PushEvent","actor":{"id":6190487,"login":"Tommy-Geenexus","gravatar_id":"","url":"https://api.github.com/users/Tommy-Geenexus","avatar_url":"https://avatars.githubusercontent.com/u/6190487?"},"repo":{"id":27719750,"name":"Tommy-Geenexus/UKM-togari","url":"https://api.github.com/repos/Tommy-Geenexus/UKM-togari"},"payload":{"push_id":536867176,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a57d0f1ed36b2e1960bd321ff9ec06c69dd431e0","before":"bbb97c28cf788eaa95fc4fbbb97bc0d71fd1614c","commits":[{"sha":"a57d0f1ed36b2e1960bd321ff9ec06c69dd431e0","author":{"email":"aa248032246d31778cc01f6793bbc94e84637066@gmail.com","name":"Tommy-Geenexus"},"message":"UKM: fix cpu_boost","distinct":true,"url":"https://api.github.com/repos/Tommy-Geenexus/UKM-togari/commits/a57d0f1ed36b2e1960bd321ff9ec06c69dd431e0"}]},"public":true,"created_at":"2015-01-01T15:15:16Z"} +,{"id":"2489658086","type":"DeleteEvent","actor":{"id":42865,"login":"rail","gravatar_id":"","url":"https://api.github.com/users/rail","avatar_url":"https://avatars.githubusercontent.com/u/42865?"},"repo":{"id":16970836,"name":"rail/build-cloud-tools","url":"https://api.github.com/repos/rail/build-cloud-tools"},"payload":{"ref":"get_uptime","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:15:16Z"} +,{"id":"2489658089","type":"PushEvent","actor":{"id":7566337,"login":"zhangolve","gravatar_id":"","url":"https://api.github.com/users/zhangolve","avatar_url":"https://avatars.githubusercontent.com/u/7566337?"},"repo":{"id":28666898,"name":"zhangolve/zhangolve.github.io","url":"https://api.github.com/repos/zhangolve/zhangolve.github.io"},"payload":{"push_id":536867180,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"217ca03fa86910746d71f8d79cea8353be5ff560","before":"ba22beccf8cf8850f7d733a1f404856fd71f0f9b","commits":[{"sha":"217ca03fa86910746d71f8d79cea8353be5ff560","author":{"email":"a17e767d606080ab94ea8839d6b98930ff5a847d@gmail.com","name":"zhangolve"},"message":"Site updated: 2015-01-01 23:13:09","distinct":true,"url":"https://api.github.com/repos/zhangolve/zhangolve.github.io/commits/217ca03fa86910746d71f8d79cea8353be5ff560"}]},"public":true,"created_at":"2015-01-01T15:15:16Z"} +,{"id":"2489658092","type":"PushEvent","actor":{"id":8651475,"login":"583132460","gravatar_id":"","url":"https://api.github.com/users/583132460","avatar_url":"https://avatars.githubusercontent.com/u/8651475?"},"repo":{"id":28688776,"name":"583132460/Temp","url":"https://api.github.com/repos/583132460/Temp"},"payload":{"push_id":536867181,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"008f4c5fd1d1dafc5ef4a29ca39e23a4a33e105f","before":"51279bbfa0ea0d40aaeaf5c4abedc26df2743386","commits":[{"sha":"008f4c5fd1d1dafc5ef4a29ca39e23a4a33e105f","author":{"email":"3f2a00d487dc1f4f49f99af8133e647bc631a0c9@qq.com","name":"583132460"},"message":"第二次\n\n这是第二次修改的提交","distinct":true,"url":"https://api.github.com/repos/583132460/Temp/commits/008f4c5fd1d1dafc5ef4a29ca39e23a4a33e105f"}]},"public":true,"created_at":"2015-01-01T15:15:17Z"} +,{"id":"2489658094","type":"PushEvent","actor":{"id":5427890,"login":"jglrxavpok","gravatar_id":"","url":"https://api.github.com/users/jglrxavpok","avatar_url":"https://avatars.githubusercontent.com/u/5427890?"},"repo":{"id":15610576,"name":"Gugu42/RatchetAndClankMod","url":"https://api.github.com/repos/Gugu42/RatchetAndClankMod"},"payload":{"push_id":536867183,"size":1,"distinct_size":1,"ref":"refs/heads/new-glutils","head":"74659a7c06f2a37bfaa79442a02b6c81b2fd4845","before":"6f0a6f1e45289b5db442d54c4cfd47aabb128459","commits":[{"sha":"74659a7c06f2a37bfaa79442a02b6c81b2fd4845","author":{"email":"da4e37eb1ba4fae2d584a507971c3416327791bd@gmail.com","name":"jglrxavpok"},"message":"Finished new-glutils","distinct":true,"url":"https://api.github.com/repos/Gugu42/RatchetAndClankMod/commits/74659a7c06f2a37bfaa79442a02b6c81b2fd4845"}]},"public":true,"created_at":"2015-01-01T15:15:17Z"} +,{"id":"2489658095","type":"IssueCommentEvent","actor":{"id":37787,"login":"daleharvey","gravatar_id":"","url":"https://api.github.com/users/daleharvey","avatar_url":"https://avatars.githubusercontent.com/u/37787?"},"repo":{"id":714074,"name":"pouchdb/pouchdb","url":"https://api.github.com/repos/pouchdb/pouchdb"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3308","labels_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3308/labels{/name}","comments_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3308/comments","events_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3308/events","html_url":"https://github.com/pouchdb/pouchdb/pull/3308","id":53118880,"number":3308,"title":"(#136) - Fix \"Test pull replication with many changes\"","user":{"login":"willholley","id":97787,"avatar_url":"https://avatars.githubusercontent.com/u/97787?v=3","gravatar_id":"","url":"https://api.github.com/users/willholley","html_url":"https://github.com/willholley","followers_url":"https://api.github.com/users/willholley/followers","following_url":"https://api.github.com/users/willholley/following{/other_user}","gists_url":"https://api.github.com/users/willholley/gists{/gist_id}","starred_url":"https://api.github.com/users/willholley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/willholley/subscriptions","organizations_url":"https://api.github.com/users/willholley/orgs","repos_url":"https://api.github.com/users/willholley/repos","events_url":"https://api.github.com/users/willholley/events{/privacy}","received_events_url":"https://api.github.com/users/willholley/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-30T14:29:02Z","updated_at":"2015-01-01T15:15:17Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3308","html_url":"https://github.com/pouchdb/pouchdb/pull/3308","diff_url":"https://github.com/pouchdb/pouchdb/pull/3308.diff","patch_url":"https://github.com/pouchdb/pouchdb/pull/3308.patch"},"body":"CouchDB 2.0 represents sequence numbers as arrays which should be treated as opaque blobs. This prevents us using simple comparison operators on them (e.g. last_seq < current_seq).\r\n\r\nPreviously we were using a similar test to determine whether new changes were returned in a call to _changes (if params.since < result.last_seq, fetch more changes). This no longer holds so, instead, fetch more changes if the last_seq returned is not equal to the since\r\nparameter (if params.since != result.last_seq, fetch more changes).\r\n\r\nThere is a danger here of a loop because there is no guarantee that last_seq will be consistent between successive calls to _changes in a clustered CouchDB (rare that this happens but it's possible). I considered a break clause based on the number of documents returned by _changes but filtered replication would scupper that I think. Suggestions for a better solution are welcome ;)"},"comment":{"url":"https://api.github.com/repos/pouchdb/pouchdb/issues/comments/68488806","html_url":"https://github.com/pouchdb/pouchdb/pull/3308#issuecomment-68488806","issue_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3308","id":68488806,"user":{"login":"daleharvey","id":37787,"avatar_url":"https://avatars.githubusercontent.com/u/37787?v=3","gravatar_id":"","url":"https://api.github.com/users/daleharvey","html_url":"https://github.com/daleharvey","followers_url":"https://api.github.com/users/daleharvey/followers","following_url":"https://api.github.com/users/daleharvey/following{/other_user}","gists_url":"https://api.github.com/users/daleharvey/gists{/gist_id}","starred_url":"https://api.github.com/users/daleharvey/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/daleharvey/subscriptions","organizations_url":"https://api.github.com/users/daleharvey/orgs","repos_url":"https://api.github.com/users/daleharvey/repos","events_url":"https://api.github.com/users/daleharvey/events{/privacy}","received_events_url":"https://api.github.com/users/daleharvey/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:15:17Z","updated_at":"2015-01-01T15:15:17Z","body":"As far as I understand, the sequence numbers should not be opaque blobs, they can be complex objects that collate similiarly to view keys, so I think we should be using collate() for this test right?"}},"public":true,"created_at":"2015-01-01T15:15:17Z","org":{"id":3406112,"login":"pouchdb","gravatar_id":"","url":"https://api.github.com/orgs/pouchdb","avatar_url":"https://avatars.githubusercontent.com/u/3406112?"}} +,{"id":"2489658096","type":"WatchEvent","actor":{"id":401263,"login":"simplyianm","gravatar_id":"","url":"https://api.github.com/users/simplyianm","avatar_url":"https://avatars.githubusercontent.com/u/401263?"},"repo":{"id":6830936,"name":"yeoman/generator-mocha","url":"https://api.github.com/repos/yeoman/generator-mocha"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:15:17Z","org":{"id":1714870,"login":"yeoman","gravatar_id":"","url":"https://api.github.com/orgs/yeoman","avatar_url":"https://avatars.githubusercontent.com/u/1714870?"}} +,{"id":"2489658097","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":536867184,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"602dce130b8cae876344d4804ff233f34aab1ee8","before":"1f15405a70925e43344fa1d125d837ae64d259df","commits":[{"sha":"602dce130b8cae876344d4804ff233f34aab1ee8","author":{"email":"0ccf54d51d1a5240ad356feb30dfa4d1749f8844@gmail.com","name":"TraderCoderGambler"},"message":"auto-update balances","distinct":true,"url":"https://api.github.com/repos/chancecoin/chancecoinj/commits/602dce130b8cae876344d4804ff233f34aab1ee8"}]},"public":true,"created_at":"2015-01-01T15:15:17Z"} +,{"id":"2489658101","type":"PushEvent","actor":{"id":233426,"login":"GooseYArd","gravatar_id":"","url":"https://api.github.com/users/GooseYArd","avatar_url":"https://avatars.githubusercontent.com/u/233426?"},"repo":{"id":6079753,"name":"GooseYArd/dotfiles","url":"https://api.github.com/repos/GooseYArd/dotfiles"},"payload":{"push_id":536867186,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"b52a8e43b4f107aee1be4a55bae797f37640a643","before":"569d859cde4e5cc0632e98fbbd789570114c893e","commits":[{"sha":"3e2c37b7ca02719d2f988e1961d24b9e14ca4d53","author":{"email":"608a26dc584da038b0f5a2fa3887acfbafb1881c@rackspace.com","name":"Andy Bailey"},"message":"irssi changes","distinct":true,"url":"https://api.github.com/repos/GooseYArd/dotfiles/commits/3e2c37b7ca02719d2f988e1961d24b9e14ca4d53"},{"sha":"0180d976c961da278ee42ea38ce6fc22c82418cf","author":{"email":"608a26dc584da038b0f5a2fa3887acfbafb1881c@rackspace.com","name":"Andy Bailey"},"message":"remove annoying clock","distinct":true,"url":"https://api.github.com/repos/GooseYArd/dotfiles/commits/0180d976c961da278ee42ea38ce6fc22c82418cf"},{"sha":"b52a8e43b4f107aee1be4a55bae797f37640a643","author":{"email":"608a26dc584da038b0f5a2fa3887acfbafb1881c@rackspace.com","name":"Andy Bailey"},"message":"Merge branch 'master' of https://github.com/GooseYArd/dotfiles","distinct":true,"url":"https://api.github.com/repos/GooseYArd/dotfiles/commits/b52a8e43b4f107aee1be4a55bae797f37640a643"}]},"public":true,"created_at":"2015-01-01T15:15:18Z"} +,{"id":"2489658105","type":"CreateEvent","actor":{"id":3026597,"login":"duralog","gravatar_id":"","url":"https://api.github.com/users/duralog","avatar_url":"https://avatars.githubusercontent.com/u/3026597?"},"repo":{"id":28688845,"name":"duralog/fuse4js","url":"https://api.github.com/repos/duralog/fuse4js"},"payload":{"ref":"0.11","ref_type":"branch","master_branch":"master","description":"FUSE bindings for Javascript and node.js","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:15:19Z"} +,{"id":"2489658109","type":"PushEvent","actor":{"id":8458777,"login":"gphuffman","gravatar_id":"","url":"https://api.github.com/users/gphuffman","avatar_url":"https://avatars.githubusercontent.com/u/8458777?"},"repo":{"id":22994031,"name":"gphuffman/gphuffman.github.com","url":"https://api.github.com/repos/gphuffman/gphuffman.github.com"},"payload":{"push_id":536867192,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"72ffcb72ba14103541a91238726dbb247bc05a88","before":"999ae382ad74c995437ec82a96025b678c716d4c","commits":[{"sha":"72ffcb72ba14103541a91238726dbb247bc05a88","author":{"email":"5b17a6c606a82dafd93db84a19945afe2d559ed4@gphuffman.com","name":"G.P. Huffman"},"message":"Thu Jan 1 10:09:33 EST 2015","distinct":true,"url":"https://api.github.com/repos/gphuffman/gphuffman.github.com/commits/72ffcb72ba14103541a91238726dbb247bc05a88"}]},"public":true,"created_at":"2015-01-01T15:15:20Z"} +,{"id":"2489658110","type":"PushEvent","actor":{"id":6287663,"login":"rsergeant","gravatar_id":"","url":"https://api.github.com/users/rsergeant","avatar_url":"https://avatars.githubusercontent.com/u/6287663?"},"repo":{"id":27192291,"name":"rsergeant/snow-leopard","url":"https://api.github.com/repos/rsergeant/snow-leopard"},"payload":{"push_id":536867193,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a5dadbdb18d5207b91887eeddea49ac3fc9f5894","before":"954013ca79fda27bced5604921f746fd1196592b","commits":[{"sha":"a5dadbdb18d5207b91887eeddea49ac3fc9f5894","author":{"email":"9b5e7e53646d741d2c83d3a1a1a54ac5f579e741@panix.com","name":"Roel Sergeant"},"message":"project - Fix check_number to handle integers properly","distinct":true,"url":"https://api.github.com/repos/rsergeant/snow-leopard/commits/a5dadbdb18d5207b91887eeddea49ac3fc9f5894"}]},"public":true,"created_at":"2015-01-01T15:15:20Z"} +,{"id":"2489658111","type":"WatchEvent","actor":{"id":538316,"login":"Einar-Rasmussen","gravatar_id":"","url":"https://api.github.com/users/Einar-Rasmussen","avatar_url":"https://avatars.githubusercontent.com/u/538316?"},"repo":{"id":9005732,"name":"jvdl/CorrectHorseBatteryStaple","url":"https://api.github.com/repos/jvdl/CorrectHorseBatteryStaple"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:15:21Z"} +,{"id":"2489658114","type":"IssuesEvent","actor":{"id":1450716,"login":"luigino","gravatar_id":"","url":"https://api.github.com/users/luigino","avatar_url":"https://avatars.githubusercontent.com/u/1450716?"},"repo":{"id":21553713,"name":"u8sand/Baka-MPlayer","url":"https://api.github.com/repos/u8sand/Baka-MPlayer"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/u8sand/Baka-MPlayer/issues/63","labels_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/issues/63/labels{/name}","comments_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/issues/63/comments","events_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/issues/63/events","html_url":"https://github.com/u8sand/Baka-MPlayer/issues/63","id":53221641,"number":63,"title":"Missing translations","user":{"login":"luigino","id":1450716,"avatar_url":"https://avatars.githubusercontent.com/u/1450716?v=3","gravatar_id":"","url":"https://api.github.com/users/luigino","html_url":"https://github.com/luigino","followers_url":"https://api.github.com/users/luigino/followers","following_url":"https://api.github.com/users/luigino/following{/other_user}","gists_url":"https://api.github.com/users/luigino/gists{/gist_id}","starred_url":"https://api.github.com/users/luigino/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/luigino/subscriptions","organizations_url":"https://api.github.com/users/luigino/orgs","repos_url":"https://api.github.com/users/luigino/repos","events_url":"https://api.github.com/users/luigino/events{/privacy}","received_events_url":"https://api.github.com/users/luigino/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:15:21Z","updated_at":"2015-01-01T15:15:21Z","closed_at":null,"body":"For some reason the strings in the playlist pop-up menu (e.g. \"Delete from Disk\") aren't translated even if linguist says otherwise.\r\n\r\nAlso the \"open file\" requester isn't either, but perhaps that's another issue?\r\n"}},"public":true,"created_at":"2015-01-01T15:15:21Z"} +,{"id":"2489658117","type":"PushEvent","actor":{"id":952321,"login":"ianrose","gravatar_id":"","url":"https://api.github.com/users/ianrose","avatar_url":"https://avatars.githubusercontent.com/u/952321?"},"repo":{"id":15486567,"name":"ianrose/ianrose-source","url":"https://api.github.com/repos/ianrose/ianrose-source"},"payload":{"push_id":536867194,"size":1,"distinct_size":1,"ref":"refs/heads/hexo","head":"0331a76650d0133b45ff0ad1f10bde46910116a3","before":"9fd2bdef3ea7ad3a744f3ef740fbceb9e9a2ae1b","commits":[{"sha":"0331a76650d0133b45ff0ad1f10bde46910116a3","author":{"email":"57a33a5496950fec8433e4dd83347673459dcdfc@ianrose.me","name":"Ian Rose"},"message":"dev","distinct":true,"url":"https://api.github.com/repos/ianrose/ianrose-source/commits/0331a76650d0133b45ff0ad1f10bde46910116a3"}]},"public":true,"created_at":"2015-01-01T15:15:21Z"} +,{"id":"2489658118","type":"PushEvent","actor":{"id":10364419,"login":"tinuxin","gravatar_id":"","url":"https://api.github.com/users/tinuxin","avatar_url":"https://avatars.githubusercontent.com/u/10364419?"},"repo":{"id":28688836,"name":"tinuxin/Whist","url":"https://api.github.com/repos/tinuxin/Whist"},"payload":{"push_id":536867195,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"223839f3fe89c64ccbb7c3e419b50505ad7be1c9","before":"5928a43ac38f9344bc6f1a877fc457669162592c","commits":[{"sha":"223839f3fe89c64ccbb7c3e419b50505ad7be1c9","author":{"email":"e38df72af106edb5114e8bd4f563bd07c30800b7@gmail.com","name":"tinuxin"},"message":"import","distinct":true,"url":"https://api.github.com/repos/tinuxin/Whist/commits/223839f3fe89c64ccbb7c3e419b50505ad7be1c9"}]},"public":true,"created_at":"2015-01-01T15:15:21Z"} +,{"id":"2489658124","type":"WatchEvent","actor":{"id":8749504,"login":"kuehrmann","gravatar_id":"","url":"https://api.github.com/users/kuehrmann","avatar_url":"https://avatars.githubusercontent.com/u/8749504?"},"repo":{"id":28081156,"name":"lexrus/VPNOn","url":"https://api.github.com/repos/lexrus/VPNOn"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:15:22Z"} +,{"id":"2489658125","type":"IssueCommentEvent","actor":{"id":1525481,"login":"timholy","gravatar_id":"","url":"https://api.github.com/users/timholy","avatar_url":"https://avatars.githubusercontent.com/u/1525481?"},"repo":{"id":1644196,"name":"JuliaLang/julia","url":"https://api.github.com/repos/JuliaLang/julia"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/JuliaLang/julia/issues/9493","labels_url":"https://api.github.com/repos/JuliaLang/julia/issues/9493/labels{/name}","comments_url":"https://api.github.com/repos/JuliaLang/julia/issues/9493/comments","events_url":"https://api.github.com/repos/JuliaLang/julia/issues/9493/events","html_url":"https://github.com/JuliaLang/julia/issues/9493","id":53087620,"number":9493,"title":"More comprehensive test coverage","user":{"login":"timholy","id":1525481,"avatar_url":"https://avatars.githubusercontent.com/u/1525481?v=3","gravatar_id":"","url":"https://api.github.com/users/timholy","html_url":"https://github.com/timholy","followers_url":"https://api.github.com/users/timholy/followers","following_url":"https://api.github.com/users/timholy/following{/other_user}","gists_url":"https://api.github.com/users/timholy/gists{/gist_id}","starred_url":"https://api.github.com/users/timholy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timholy/subscriptions","organizations_url":"https://api.github.com/users/timholy/orgs","repos_url":"https://api.github.com/users/timholy/repos","events_url":"https://api.github.com/users/timholy/events{/privacy}","received_events_url":"https://api.github.com/users/timholy/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/JuliaLang/julia/labels/test","name":"test","color":"e102d8"},{"url":"https://api.github.com/repos/JuliaLang/julia/labels/up+for+grabs","name":"up for grabs","color":"0b02e1"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":24,"created_at":"2014-12-30T02:04:58Z","updated_at":"2015-01-01T15:15:21Z","closed_at":null,"body":"This would make a whole bunch of good \"first contribution\" projects, and does not require deep insider knowledge of the language.\r\n\r\nThe basic idea is to expand the test suite to make sure that julia's base code works as promised. Here is one recommended way to contribute toward this goal:\r\n\r\n1. Make sure you have an up-to-date git checkout and are on the `master` branch. Build julia with `make`\r\n\r\n2. From the top-level directory, type `rm usr/lib/julia/sys.so`. Deleting `sys.so` will prevent julia from using any pre-compiled functions, increasing the accuracy of the results. (This also makes startup a bit slower, but that's fine for this test---and once you're done, simply typing `make` will cause this file to be rebuilt).\r\n\r\n3. Via the command prompt, navigate to julia's `test/` directory\r\n\r\n4. Start julia with `JULIA_CPU_CORES=1 julia --code-coverage=all --inline=no`. This restricts julia to a single process (accumulating all measurements of coverage together), and prevents inlining (inlining makes it difficult to accurately assess whether a function has been tested).\r\n\r\n5. From the julia prompt, type `include(\"runtests.jl\")`\r\n\r\n6. Once the tests complete successfully, quit julia\r\n\r\n7. Navigate to the `base/` directory.\r\n\r\n8. Browse through the *.jl.cov files, and look for functions (or branches within functions) that either have `0` in front of them (indicating that they were run 0 times), or have `-` in front of them (indicating that they were never compiled).\r\n\r\n9. Write a test that exercises some function that is not adequately covered---you can add your test to one of the existing files, or start a new one, whichever seems most appropriate to you. http://julia.readthedocs.org/en/latest/stdlib/test/ may be helpful in explaining how the testing infrastructure works. Submit the test as a pull request (see [CONTRIBUTING.md](https://github.com/JuliaLang/julia/blob/master/CONTRIBUTING.md)).\r\n"},"comment":{"url":"https://api.github.com/repos/JuliaLang/julia/issues/comments/68488807","html_url":"https://github.com/JuliaLang/julia/issues/9493#issuecomment-68488807","issue_url":"https://api.github.com/repos/JuliaLang/julia/issues/9493","id":68488807,"user":{"login":"timholy","id":1525481,"avatar_url":"https://avatars.githubusercontent.com/u/1525481?v=3","gravatar_id":"","url":"https://api.github.com/users/timholy","html_url":"https://github.com/timholy","followers_url":"https://api.github.com/users/timholy/followers","following_url":"https://api.github.com/users/timholy/following{/other_user}","gists_url":"https://api.github.com/users/timholy/gists{/gist_id}","starred_url":"https://api.github.com/users/timholy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timholy/subscriptions","organizations_url":"https://api.github.com/users/timholy/orgs","repos_url":"https://api.github.com/users/timholy/repos","events_url":"https://api.github.com/users/timholy/events{/privacy}","received_events_url":"https://api.github.com/users/timholy/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:15:21Z","updated_at":"2015-01-01T15:15:21Z","body":"OK, I've substantially edited the instructions above; with these changes, I _think_ we get reasonably-accurate results, as long as a human parses the `*.jl.cov` files.\r\n\r\nHowever, I'm currently running into #9536, so (for me) currently this doesn't work.\r\n"}},"public":true,"created_at":"2015-01-01T15:15:22Z","org":{"id":743164,"login":"JuliaLang","gravatar_id":"","url":"https://api.github.com/orgs/JuliaLang","avatar_url":"https://avatars.githubusercontent.com/u/743164?"}} +,{"id":"2489658129","type":"ForkEvent","actor":{"id":1067105,"login":"wassimahmed","gravatar_id":"","url":"https://api.github.com/users/wassimahmed","avatar_url":"https://avatars.githubusercontent.com/u/1067105?"},"repo":{"id":10219106,"name":"linnovate/mean","url":"https://api.github.com/repos/linnovate/mean"},"payload":{"forkee":{"id":28688885,"name":"mean","full_name":"wassimahmed/mean","owner":{"login":"wassimahmed","id":1067105,"avatar_url":"https://avatars.githubusercontent.com/u/1067105?v=3","gravatar_id":"","url":"https://api.github.com/users/wassimahmed","html_url":"https://github.com/wassimahmed","followers_url":"https://api.github.com/users/wassimahmed/followers","following_url":"https://api.github.com/users/wassimahmed/following{/other_user}","gists_url":"https://api.github.com/users/wassimahmed/gists{/gist_id}","starred_url":"https://api.github.com/users/wassimahmed/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wassimahmed/subscriptions","organizations_url":"https://api.github.com/users/wassimahmed/orgs","repos_url":"https://api.github.com/users/wassimahmed/repos","events_url":"https://api.github.com/users/wassimahmed/events{/privacy}","received_events_url":"https://api.github.com/users/wassimahmed/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/wassimahmed/mean","description":"MEAN (Mongo, Express, Angular, Node) - A Simple, Scalable and Easy starting point for full stack javascript web development - utilizing many of the best practices we've found on the way","fork":true,"url":"https://api.github.com/repos/wassimahmed/mean","forks_url":"https://api.github.com/repos/wassimahmed/mean/forks","keys_url":"https://api.github.com/repos/wassimahmed/mean/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wassimahmed/mean/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wassimahmed/mean/teams","hooks_url":"https://api.github.com/repos/wassimahmed/mean/hooks","issue_events_url":"https://api.github.com/repos/wassimahmed/mean/issues/events{/number}","events_url":"https://api.github.com/repos/wassimahmed/mean/events","assignees_url":"https://api.github.com/repos/wassimahmed/mean/assignees{/user}","branches_url":"https://api.github.com/repos/wassimahmed/mean/branches{/branch}","tags_url":"https://api.github.com/repos/wassimahmed/mean/tags","blobs_url":"https://api.github.com/repos/wassimahmed/mean/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wassimahmed/mean/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wassimahmed/mean/git/refs{/sha}","trees_url":"https://api.github.com/repos/wassimahmed/mean/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wassimahmed/mean/statuses/{sha}","languages_url":"https://api.github.com/repos/wassimahmed/mean/languages","stargazers_url":"https://api.github.com/repos/wassimahmed/mean/stargazers","contributors_url":"https://api.github.com/repos/wassimahmed/mean/contributors","subscribers_url":"https://api.github.com/repos/wassimahmed/mean/subscribers","subscription_url":"https://api.github.com/repos/wassimahmed/mean/subscription","commits_url":"https://api.github.com/repos/wassimahmed/mean/commits{/sha}","git_commits_url":"https://api.github.com/repos/wassimahmed/mean/git/commits{/sha}","comments_url":"https://api.github.com/repos/wassimahmed/mean/comments{/number}","issue_comment_url":"https://api.github.com/repos/wassimahmed/mean/issues/comments/{number}","contents_url":"https://api.github.com/repos/wassimahmed/mean/contents/{+path}","compare_url":"https://api.github.com/repos/wassimahmed/mean/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wassimahmed/mean/merges","archive_url":"https://api.github.com/repos/wassimahmed/mean/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wassimahmed/mean/downloads","issues_url":"https://api.github.com/repos/wassimahmed/mean/issues{/number}","pulls_url":"https://api.github.com/repos/wassimahmed/mean/pulls{/number}","milestones_url":"https://api.github.com/repos/wassimahmed/mean/milestones{/number}","notifications_url":"https://api.github.com/repos/wassimahmed/mean/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wassimahmed/mean/labels{/name}","releases_url":"https://api.github.com/repos/wassimahmed/mean/releases{/id}","created_at":"2015-01-01T15:15:22Z","updated_at":"2015-01-01T14:06:11Z","pushed_at":"2014-12-30T13:50:41Z","git_url":"git://github.com/wassimahmed/mean.git","ssh_url":"git@github.com:wassimahmed/mean.git","clone_url":"https://github.com/wassimahmed/mean.git","svn_url":"https://github.com/wassimahmed/mean","homepage":"http://mean.io","size":12341,"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:15:22Z","org":{"id":307487,"login":"linnovate","gravatar_id":"","url":"https://api.github.com/orgs/linnovate","avatar_url":"https://avatars.githubusercontent.com/u/307487?"}} +,{"id":"2489658131","type":"PushEvent","actor":{"id":2539292,"login":"wmfgerrit","gravatar_id":"","url":"https://api.github.com/users/wmfgerrit","avatar_url":"https://avatars.githubusercontent.com/u/2539292?"},"repo":{"id":13584754,"name":"wikimedia/mediawiki-extensions-ContentTranslation","url":"https://api.github.com/repos/wikimedia/mediawiki-extensions-ContentTranslation"},"payload":{"push_id":536867201,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"341f0b26d708bb6c2a2aeb610949ad1095f9341c","before":"bb312c3f6ad184f2c25517d1cd561d995cc881f7","commits":[{"sha":"341f0b26d708bb6c2a2aeb610949ad1095f9341c","author":{"email":"81ecf282caf36c4650876909892470b2e210afed@mail.huji.ac.il","name":"Amir E. Aharoni"},"message":"Cleanup ext.cx.source.selector.js\n\n* Whitespace.\n* Function documentation.\n\nChange-Id: I760efe230a4f931be4238ad2fafc80470cbbe0db","distinct":true,"url":"https://api.github.com/repos/wikimedia/mediawiki-extensions-ContentTranslation/commits/341f0b26d708bb6c2a2aeb610949ad1095f9341c"}]},"public":true,"created_at":"2015-01-01T15:15:23Z","org":{"id":56668,"login":"wikimedia","gravatar_id":"","url":"https://api.github.com/orgs/wikimedia","avatar_url":"https://avatars.githubusercontent.com/u/56668?"}} +,{"id":"2489658137","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":"opened","number":808,"pull_request":{"url":"https://api.github.com/repos/andreasgal/j2me.js/pulls/808","id":26743887,"html_url":"https://github.com/andreasgal/j2me.js/pull/808","diff_url":"https://github.com/andreasgal/j2me.js/pull/808.diff","patch_url":"https://github.com/andreasgal/j2me.js/pull/808.patch","issue_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/808","number":808,"state":"open","locked":false,"title":"Remove unneeded debugPage calls now that we've set casper to be verbose;...","user":{"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},"body":"... print complete data URL when taking screenshot of failures; remove unneeded custom onWaitTimeout in FS automation.js","created_at":"2015-01-01T15:15:24Z","updated_at":"2015-01-01T15:15:24Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/andreasgal/j2me.js/pulls/808/commits","review_comments_url":"https://api.github.com/repos/andreasgal/j2me.js/pulls/808/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/808/comments","statuses_url":"https://api.github.com/repos/andreasgal/j2me.js/statuses/dac3e26943e004443c860fe314941cecc630c73e","head":{"label":"marco-c:remove_unneeded_logging","ref":"remove_unneeded_logging","sha":"dac3e26943e004443c860fe314941cecc630c73e","user":{"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},"repo":{"id":22527203,"name":"j2me.js","full_name":"marco-c/j2me.js","owner":{"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},"private":false,"html_url":"https://github.com/marco-c/j2me.js","description":"J2ME VM in JavaScript","fork":true,"url":"https://api.github.com/repos/marco-c/j2me.js","forks_url":"https://api.github.com/repos/marco-c/j2me.js/forks","keys_url":"https://api.github.com/repos/marco-c/j2me.js/keys{/key_id}","collaborators_url":"https://api.github.com/repos/marco-c/j2me.js/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/marco-c/j2me.js/teams","hooks_url":"https://api.github.com/repos/marco-c/j2me.js/hooks","issue_events_url":"https://api.github.com/repos/marco-c/j2me.js/issues/events{/number}","events_url":"https://api.github.com/repos/marco-c/j2me.js/events","assignees_url":"https://api.github.com/repos/marco-c/j2me.js/assignees{/user}","branches_url":"https://api.github.com/repos/marco-c/j2me.js/branches{/branch}","tags_url":"https://api.github.com/repos/marco-c/j2me.js/tags","blobs_url":"https://api.github.com/repos/marco-c/j2me.js/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/marco-c/j2me.js/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/marco-c/j2me.js/git/refs{/sha}","trees_url":"https://api.github.com/repos/marco-c/j2me.js/git/trees{/sha}","statuses_url":"https://api.github.com/repos/marco-c/j2me.js/statuses/{sha}","languages_url":"https://api.github.com/repos/marco-c/j2me.js/languages","stargazers_url":"https://api.github.com/repos/marco-c/j2me.js/stargazers","contributors_url":"https://api.github.com/repos/marco-c/j2me.js/contributors","subscribers_url":"https://api.github.com/repos/marco-c/j2me.js/subscribers","subscription_url":"https://api.github.com/repos/marco-c/j2me.js/subscription","commits_url":"https://api.github.com/repos/marco-c/j2me.js/commits{/sha}","git_commits_url":"https://api.github.com/repos/marco-c/j2me.js/git/commits{/sha}","comments_url":"https://api.github.com/repos/marco-c/j2me.js/comments{/number}","issue_comment_url":"https://api.github.com/repos/marco-c/j2me.js/issues/comments/{number}","contents_url":"https://api.github.com/repos/marco-c/j2me.js/contents/{+path}","compare_url":"https://api.github.com/repos/marco-c/j2me.js/compare/{base}...{head}","merges_url":"https://api.github.com/repos/marco-c/j2me.js/merges","archive_url":"https://api.github.com/repos/marco-c/j2me.js/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/marco-c/j2me.js/downloads","issues_url":"https://api.github.com/repos/marco-c/j2me.js/issues{/number}","pulls_url":"https://api.github.com/repos/marco-c/j2me.js/pulls{/number}","milestones_url":"https://api.github.com/repos/marco-c/j2me.js/milestones{/number}","notifications_url":"https://api.github.com/repos/marco-c/j2me.js/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/marco-c/j2me.js/labels{/name}","releases_url":"https://api.github.com/repos/marco-c/j2me.js/releases{/id}","created_at":"2014-08-01T20:30:33Z","updated_at":"2014-12-31T16:24:03Z","pushed_at":"2015-01-01T15:14:37Z","git_url":"git://github.com/marco-c/j2me.js.git","ssh_url":"git@github.com:marco-c/j2me.js.git","clone_url":"https://github.com/marco-c/j2me.js.git","svn_url":"https://github.com/marco-c/j2me.js","homepage":null,"size":14299,"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":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"base":{"label":"andreasgal:master","ref":"master","sha":"26dc481162c00104934620d8daa7490158af2fb8","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":"2015-01-01T15:02:08Z","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":109,"forks":14,"open_issues":109,"watchers":47,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/andreasgal/j2me.js/pulls/808"},"html":{"href":"https://github.com/andreasgal/j2me.js/pull/808"},"issue":{"href":"https://api.github.com/repos/andreasgal/j2me.js/issues/808"},"comments":{"href":"https://api.github.com/repos/andreasgal/j2me.js/issues/808/comments"},"review_comments":{"href":"https://api.github.com/repos/andreasgal/j2me.js/pulls/808/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/808/commits"},"statuses":{"href":"https://api.github.com/repos/andreasgal/j2me.js/statuses/dac3e26943e004443c860fe314941cecc630c73e"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":4,"deletions":14,"changed_files":2}},"public":true,"created_at":"2015-01-01T15:15:24Z"} +,{"id":"2489658139","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":536867204,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6741f500abfc9184707aa19c5f20526a5ca3e639","before":"bf26858ae41177154a6d0a604139ba52ea1d50d8","commits":[{"sha":"6741f500abfc9184707aa19c5f20526a5ca3e639","author":{"email":"5070ee02c118bb3c67d539b31e44522403b2c763@users.noreply.github.com","name":"saisi"},"message":"1420125323 hmm","distinct":true,"url":"https://api.github.com/repos/Saisi/secret-octo-wookie/commits/6741f500abfc9184707aa19c5f20526a5ca3e639"}]},"public":true,"created_at":"2015-01-01T15:15:24Z"} +,{"id":"2489658145","type":"PushEvent","actor":{"id":4016051,"login":"DionysiosB","gravatar_id":"","url":"https://api.github.com/users/DionysiosB","avatar_url":"https://avatars.githubusercontent.com/u/4016051?"},"repo":{"id":10972396,"name":"DionysiosB/HackerRank","url":"https://api.github.com/repos/DionysiosB/HackerRank"},"payload":{"push_id":536867207,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"af29f50fc4e1f5ab0250918eb5dfb835261e096d","before":"3ac8d59d65a2b35346d36e3c6880c69083abfc51","commits":[{"sha":"af29f50fc4e1f5ab0250918eb5dfb835261e096d","author":{"email":"6dcabe5b3b4ce8e3b53e5eb1a55832f92bc56231@gmail.com","name":"Dionysios Barmpoutis"},"message":"LoopingAndSkipping","distinct":true,"url":"https://api.github.com/repos/DionysiosB/HackerRank/commits/af29f50fc4e1f5ab0250918eb5dfb835261e096d"}]},"public":true,"created_at":"2015-01-01T15:15:24Z"} +,{"id":"2489658152","type":"ForkEvent","actor":{"id":10322602,"login":"ejaasaari","gravatar_id":"","url":"https://api.github.com/users/ejaasaari","avatar_url":"https://avatars.githubusercontent.com/u/10322602?"},"repo":{"id":4443002,"name":"iloveponies/sudoku","url":"https://api.github.com/repos/iloveponies/sudoku"},"payload":{"forkee":{"id":28688886,"name":"sudoku","full_name":"ejaasaari/sudoku","owner":{"login":"ejaasaari","id":10322602,"avatar_url":"https://avatars.githubusercontent.com/u/10322602?v=3","gravatar_id":"","url":"https://api.github.com/users/ejaasaari","html_url":"https://github.com/ejaasaari","followers_url":"https://api.github.com/users/ejaasaari/followers","following_url":"https://api.github.com/users/ejaasaari/following{/other_user}","gists_url":"https://api.github.com/users/ejaasaari/gists{/gist_id}","starred_url":"https://api.github.com/users/ejaasaari/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ejaasaari/subscriptions","organizations_url":"https://api.github.com/users/ejaasaari/orgs","repos_url":"https://api.github.com/users/ejaasaari/repos","events_url":"https://api.github.com/users/ejaasaari/events{/privacy}","received_events_url":"https://api.github.com/users/ejaasaari/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ejaasaari/sudoku","description":"","fork":true,"url":"https://api.github.com/repos/ejaasaari/sudoku","forks_url":"https://api.github.com/repos/ejaasaari/sudoku/forks","keys_url":"https://api.github.com/repos/ejaasaari/sudoku/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ejaasaari/sudoku/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ejaasaari/sudoku/teams","hooks_url":"https://api.github.com/repos/ejaasaari/sudoku/hooks","issue_events_url":"https://api.github.com/repos/ejaasaari/sudoku/issues/events{/number}","events_url":"https://api.github.com/repos/ejaasaari/sudoku/events","assignees_url":"https://api.github.com/repos/ejaasaari/sudoku/assignees{/user}","branches_url":"https://api.github.com/repos/ejaasaari/sudoku/branches{/branch}","tags_url":"https://api.github.com/repos/ejaasaari/sudoku/tags","blobs_url":"https://api.github.com/repos/ejaasaari/sudoku/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ejaasaari/sudoku/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ejaasaari/sudoku/git/refs{/sha}","trees_url":"https://api.github.com/repos/ejaasaari/sudoku/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ejaasaari/sudoku/statuses/{sha}","languages_url":"https://api.github.com/repos/ejaasaari/sudoku/languages","stargazers_url":"https://api.github.com/repos/ejaasaari/sudoku/stargazers","contributors_url":"https://api.github.com/repos/ejaasaari/sudoku/contributors","subscribers_url":"https://api.github.com/repos/ejaasaari/sudoku/subscribers","subscription_url":"https://api.github.com/repos/ejaasaari/sudoku/subscription","commits_url":"https://api.github.com/repos/ejaasaari/sudoku/commits{/sha}","git_commits_url":"https://api.github.com/repos/ejaasaari/sudoku/git/commits{/sha}","comments_url":"https://api.github.com/repos/ejaasaari/sudoku/comments{/number}","issue_comment_url":"https://api.github.com/repos/ejaasaari/sudoku/issues/comments/{number}","contents_url":"https://api.github.com/repos/ejaasaari/sudoku/contents/{+path}","compare_url":"https://api.github.com/repos/ejaasaari/sudoku/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ejaasaari/sudoku/merges","archive_url":"https://api.github.com/repos/ejaasaari/sudoku/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ejaasaari/sudoku/downloads","issues_url":"https://api.github.com/repos/ejaasaari/sudoku/issues{/number}","pulls_url":"https://api.github.com/repos/ejaasaari/sudoku/pulls{/number}","milestones_url":"https://api.github.com/repos/ejaasaari/sudoku/milestones{/number}","notifications_url":"https://api.github.com/repos/ejaasaari/sudoku/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ejaasaari/sudoku/labels{/name}","releases_url":"https://api.github.com/repos/ejaasaari/sudoku/releases{/id}","created_at":"2015-01-01T15:15:25Z","updated_at":"2014-01-02T23:02:30Z","pushed_at":"2013-11-11T09:59:24Z","git_url":"git://github.com/ejaasaari/sudoku.git","ssh_url":"git@github.com:ejaasaari/sudoku.git","clone_url":"https://github.com/ejaasaari/sudoku.git","svn_url":"https://github.com/ejaasaari/sudoku","homepage":null,"size":267,"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:15:26Z","org":{"id":1577007,"login":"iloveponies","gravatar_id":"","url":"https://api.github.com/orgs/iloveponies","avatar_url":"https://avatars.githubusercontent.com/u/1577007?"}} +,{"id":"2489658162","type":"PushEvent","actor":{"id":2711429,"login":"uroni","gravatar_id":"","url":"https://api.github.com/users/uroni","avatar_url":"https://avatars.githubusercontent.com/u/2711429?"},"repo":{"id":6784757,"name":"uroni/urbackup_backend","url":"https://api.github.com/repos/uroni/urbackup_backend"},"payload":{"push_id":536867213,"size":13,"distinct_size":13,"ref":"refs/heads/next","head":"a836841c35898c892a4042d5f5e4c98a80271f67","before":"0688ee8e0e4bd5d7d3178032a31add47ab1855f0","commits":[{"sha":"c1f12cfa631a7bf9b82b739f1f5881e5c10001cd","author":{"email":"54669547a225ff20cba8b75a4adca540eef25858@urbackup.org","name":"Martin"},"message":"Incremented version","distinct":true,"url":"https://api.github.com/repos/uroni/urbackup_backend/commits/c1f12cfa631a7bf9b82b739f1f5881e5c10001cd"},{"sha":"fe4965321f4ce8443188eae74bafad24d10498b6","author":{"email":"54669547a225ff20cba8b75a4adca540eef25858@urbackup.org","name":"Martin"},"message":"Properly return file size on partial downloads","distinct":true,"url":"https://api.github.com/repos/uroni/urbackup_backend/commits/fe4965321f4ce8443188eae74bafad24d10498b6"},{"sha":"45d45ee914ab78e8d3f021d9ce5aee6d2bc31646","author":{"email":"54669547a225ff20cba8b75a4adca540eef25858@urbackup.org","name":"Martin"},"message":"Properly close open_write_files.dat when restarting watch thread\n\n(cherry picked from commit 5f9e5a5ed84f7d7c0ebd5d6e0dce14ac127ad5ec)","distinct":true,"url":"https://api.github.com/repos/uroni/urbackup_backend/commits/45d45ee914ab78e8d3f021d9ce5aee6d2bc31646"},{"sha":"f42d0898c7c56eec6c586969195f72253e6c49da","author":{"email":"54669547a225ff20cba8b75a4adca540eef25858@urbackup.org","name":"Martin"},"message":"Load fuse kernel module before using it\n\n(cherry picked from commit 421b7a6da0f1d5986fb5ea7752ef853d1e1adf64)","distinct":true,"url":"https://api.github.com/repos/uroni/urbackup_backend/commits/f42d0898c7c56eec6c586969195f72253e6c49da"},{"sha":"4baa24fe3a3e482249ec15c6109053491327bba0","author":{"email":"54669547a225ff20cba8b75a4adca540eef25858@urbackup.org","name":"Martin"},"message":"Properly reset remaining bufptr bytes when loading chunk out of band\n\n(cherry picked from commit 185a69e24bfc3ce2efbc1098e993ef0ef0f41087)\n\nConflicts:\n\turbackupserver/server_download.cpp","distinct":true,"url":"https://api.github.com/repos/uroni/urbackup_backend/commits/4baa24fe3a3e482249ec15c6109053491327bba0"},{"sha":"b942a3948e7fd3a848cd929179667b6957bb6940","author":{"email":"54669547a225ff20cba8b75a4adca540eef25858@urbackup.org","name":"Martin"},"message":"Try to restart udp listening on error","distinct":true,"url":"https://api.github.com/repos/uroni/urbackup_backend/commits/b942a3948e7fd3a848cd929179667b6957bb6940"},{"sha":"1d683436a4f1768cdb76c73ebbe66b8759789801","author":{"email":"54669547a225ff20cba8b75a4adca540eef25858@urbackup.org","name":"Martin"},"message":"Incremented version","distinct":true,"url":"https://api.github.com/repos/uroni/urbackup_backend/commits/1d683436a4f1768cdb76c73ebbe66b8759789801"},{"sha":"ce0c7cb3ab478168d3fd7c8ba0249b36379760ca","author":{"email":"54669547a225ff20cba8b75a4adca540eef25858@urbackup.org","name":"Martin"},"message":"Don't delete archive settings if save button is pressed without changing anything (other than the archive settings)","distinct":true,"url":"https://api.github.com/repos/uroni/urbackup_backend/commits/ce0c7cb3ab478168d3fd7c8ba0249b36379760ca"},{"sha":"2bec8230485b5d29881b979256529a9619966cb6","author":{"email":"54669547a225ff20cba8b75a4adca540eef25858@urbackup.org","name":"Martin"},"message":"Use global settings if client specific settings are/remain identical to the global ones","distinct":true,"url":"https://api.github.com/repos/uroni/urbackup_backend/commits/2bec8230485b5d29881b979256529a9619966cb6"},{"sha":"4733a1e9452cd09ce74e945f72040ac5fdead089","author":{"email":"54669547a225ff20cba8b75a4adca540eef25858@urbackup.org","name":"Martin Raiber"},"message":"Set condition to NULL before deleting it to prevent a race condition","distinct":true,"url":"https://api.github.com/repos/uroni/urbackup_backend/commits/4733a1e9452cd09ce74e945f72040ac5fdead089"},{"sha":"0c7ef335a67d693965f1490752a5567c1f8e7ef5","author":{"email":"54669547a225ff20cba8b75a4adca540eef25858@urbackup.org","name":"Martin Raiber"},"message":"Handle hard links to currently open files","distinct":true,"url":"https://api.github.com/repos/uroni/urbackup_backend/commits/0c7ef335a67d693965f1490752a5567c1f8e7ef5"},{"sha":"ea85cfe1f6b7fec073f519332dc1111cfae185af","author":{"email":"54669547a225ff20cba8b75a4adca540eef25858@urbackup.org","name":"Martin Raiber"},"message":"Handle hard links to currently open files","distinct":true,"url":"https://api.github.com/repos/uroni/urbackup_backend/commits/ea85cfe1f6b7fec073f519332dc1111cfae185af"},{"sha":"a836841c35898c892a4042d5f5e4c98a80271f67","author":{"email":"54669547a225ff20cba8b75a4adca540eef25858@urbackup.org","name":"Martin"},"message":"Output old filesize, if download is partial and current size is blow the old filesize","distinct":true,"url":"https://api.github.com/repos/uroni/urbackup_backend/commits/a836841c35898c892a4042d5f5e4c98a80271f67"}]},"public":true,"created_at":"2015-01-01T15:15:26Z"} +,{"id":"2489658163","type":"IssuesEvent","actor":{"id":5989909,"login":"ssharoni","gravatar_id":"","url":"https://api.github.com/users/ssharoni","avatar_url":"https://avatars.githubusercontent.com/u/5989909?"},"repo":{"id":198798,"name":"ushahidi/Ushahidi_Web","url":"https://api.github.com/repos/ushahidi/Ushahidi_Web"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/ushahidi/Ushahidi_Web/issues/1416","labels_url":"https://api.github.com/repos/ushahidi/Ushahidi_Web/issues/1416/labels{/name}","comments_url":"https://api.github.com/repos/ushahidi/Ushahidi_Web/issues/1416/comments","events_url":"https://api.github.com/repos/ushahidi/Ushahidi_Web/issues/1416/events","html_url":"https://github.com/ushahidi/Ushahidi_Web/issues/1416","id":53221644,"number":1416,"title":"testing http://mydomain/ushahidi/admin/settings/cleanurl fail","user":{"login":"ssharoni","id":5989909,"avatar_url":"https://avatars.githubusercontent.com/u/5989909?v=3","gravatar_id":"","url":"https://api.github.com/users/ssharoni","html_url":"https://github.com/ssharoni","followers_url":"https://api.github.com/users/ssharoni/followers","following_url":"https://api.github.com/users/ssharoni/following{/other_user}","gists_url":"https://api.github.com/users/ssharoni/gists{/gist_id}","starred_url":"https://api.github.com/users/ssharoni/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ssharoni/subscriptions","organizations_url":"https://api.github.com/users/ssharoni/orgs","repos_url":"https://api.github.com/users/ssharoni/repos","events_url":"https://api.github.com/users/ssharoni/events{/privacy}","received_events_url":"https://api.github.com/users/ssharoni/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:15:27Z","updated_at":"2015-01-01T15:15:27Z","closed_at":null,"body":"An error was detected which prevented the loading of this page. If this problem persists, please contact the website administrator.\r\napplication/libraries/HttpClient.php [92]:\r\ncurl_setopt(): CURLOPT_FOLLOWLOCATION cannot be activated when an open_basedir is set"}},"public":true,"created_at":"2015-01-01T15:15:27Z","org":{"id":16959,"login":"ushahidi","gravatar_id":"","url":"https://api.github.com/orgs/ushahidi","avatar_url":"https://avatars.githubusercontent.com/u/16959?"}} +,{"id":"2489658164","type":"GollumEvent","actor":{"id":10333363,"login":"dougmeredith","gravatar_id":"","url":"https://api.github.com/users/dougmeredith","avatar_url":"https://avatars.githubusercontent.com/u/10333363?"},"repo":{"id":12983151,"name":"openhab/openhab","url":"https://api.github.com/repos/openhab/openhab"},"payload":{"pages":[{"page_name":"xPL-Binding","title":"xPL Binding","summary":null,"action":"edited","sha":"5906090a6d10856a5c5761e67378014cb8aadd10","html_url":"https://github.com/openhab/openhab/wiki/xPL-Binding"}]},"public":true,"created_at":"2015-01-01T15:15:27Z","org":{"id":1007353,"login":"openhab","gravatar_id":"","url":"https://api.github.com/orgs/openhab","avatar_url":"https://avatars.githubusercontent.com/u/1007353?"}} +,{"id":"2489658166","type":"IssueCommentEvent","actor":{"id":2788549,"login":"Kl0tl","gravatar_id":"","url":"https://api.github.com/users/Kl0tl","avatar_url":"https://avatars.githubusercontent.com/u/2788549?"},"repo":{"id":24560307,"name":"6to5/6to5","url":"https://api.github.com/repos/6to5/6to5"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/6to5/6to5/issues/325","labels_url":"https://api.github.com/repos/6to5/6to5/issues/325/labels{/name}","comments_url":"https://api.github.com/repos/6to5/6to5/issues/325/comments","events_url":"https://api.github.com/repos/6to5/6to5/issues/325/events","html_url":"https://github.com/6to5/6to5/issues/325","id":52578676,"number":325,"title":"Array comprehension and transducers","user":{"login":"Kl0tl","id":2788549,"avatar_url":"https://avatars.githubusercontent.com/u/2788549?v=3","gravatar_id":"","url":"https://api.github.com/users/Kl0tl","html_url":"https://github.com/Kl0tl","followers_url":"https://api.github.com/users/Kl0tl/followers","following_url":"https://api.github.com/users/Kl0tl/following{/other_user}","gists_url":"https://api.github.com/users/Kl0tl/gists{/gist_id}","starred_url":"https://api.github.com/users/Kl0tl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kl0tl/subscriptions","organizations_url":"https://api.github.com/users/Kl0tl/orgs","repos_url":"https://api.github.com/users/Kl0tl/repos","events_url":"https://api.github.com/users/Kl0tl/events{/privacy}","received_events_url":"https://api.github.com/users/Kl0tl/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":{"url":"https://api.github.com/repos/6to5/6to5/milestones/2","labels_url":"https://api.github.com/repos/6to5/6to5/milestones/2/labels","id":911972,"number":2,"title":"2.x.x","description":"","creator":{"login":"sebmck","id":853712,"avatar_url":"https://avatars.githubusercontent.com/u/853712?v=3","gravatar_id":"","url":"https://api.github.com/users/sebmck","html_url":"https://github.com/sebmck","followers_url":"https://api.github.com/users/sebmck/followers","following_url":"https://api.github.com/users/sebmck/following{/other_user}","gists_url":"https://api.github.com/users/sebmck/gists{/gist_id}","starred_url":"https://api.github.com/users/sebmck/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sebmck/subscriptions","organizations_url":"https://api.github.com/users/sebmck/orgs","repos_url":"https://api.github.com/users/sebmck/repos","events_url":"https://api.github.com/users/sebmck/events{/privacy}","received_events_url":"https://api.github.com/users/sebmck/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":3,"state":"open","created_at":"2014-12-22T08:47:21Z","updated_at":"2015-01-01T15:13:47Z","due_on":null,"closed_at":null},"comments":11,"created_at":"2014-12-20T22:29:19Z","updated_at":"2015-01-01T15:15:27Z","closed_at":"2015-01-01T15:13:47Z","body":"Have you thought about using transducers to transpile array comprehension to es5 ?\r\n\r\nIt would require an external dependency (like https://github.com/jlongster/transducers.js, or https://github.com/cognitect-labs/transducers-js) but transducers are a more efficient way of composing transformations while retaining readability.\r\n\r\nThe difference is negligible for small arrays, but increase dramatically with the size of the array (http://jlongster.com/Transducers.js-Round-2-with-Benchmarks).\r\n\r\nTaking your example:\r\n\r\n```js\r\nvar seattlers = [for (c of customers) if (c.city == \"Seattle\") { name: c.name, age: c.age }];\r\n```\r\n\r\nWith transducers it would become:\r\n\r\n```js\r\nvar seattlers = into([], compose(filter(function (c) {\r\n return c.city === \"Seattle\";\r\n}), map(function (c) {\r\n return { name: c.name, age: c.age };\r\n})), customers);\r\n```\r\n\r\nInstead of:\r\n\r\n```js\r\nvar seattlers = _toArray(customers).filter(function (c) {\r\n return c.city == \"Seattle\";\r\n}).map(function (c) {\r\n return { name: c.name, age: c.age };\r\n});\r\n```"},"comment":{"url":"https://api.github.com/repos/6to5/6to5/issues/comments/68488808","html_url":"https://github.com/6to5/6to5/issues/325#issuecomment-68488808","issue_url":"https://api.github.com/repos/6to5/6to5/issues/325","id":68488808,"user":{"login":"Kl0tl","id":2788549,"avatar_url":"https://avatars.githubusercontent.com/u/2788549?v=3","gravatar_id":"","url":"https://api.github.com/users/Kl0tl","html_url":"https://github.com/Kl0tl","followers_url":"https://api.github.com/users/Kl0tl/followers","following_url":"https://api.github.com/users/Kl0tl/following{/other_user}","gists_url":"https://api.github.com/users/Kl0tl/gists{/gist_id}","starred_url":"https://api.github.com/users/Kl0tl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kl0tl/subscriptions","organizations_url":"https://api.github.com/users/Kl0tl/orgs","repos_url":"https://api.github.com/users/Kl0tl/repos","events_url":"https://api.github.com/users/Kl0tl/events{/privacy}","received_events_url":"https://api.github.com/users/Kl0tl/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:15:27Z","updated_at":"2015-01-01T15:15:27Z","body":"I didn’t knew about yielding inside array comprehension, simpler to revert to a loop in this case. The only advantage of transducers over native loops is the improved readability but the latter will always perform better. Native loops seem the best fit.\r\n\r\n@zloirock Transducers are eager and they are particularly good in the `filter -> map` scenario."}},"public":true,"created_at":"2015-01-01T15:15:27Z","org":{"id":9637642,"login":"6to5","gravatar_id":"","url":"https://api.github.com/orgs/6to5","avatar_url":"https://avatars.githubusercontent.com/u/9637642?"}} +,{"id":"2489658167","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":536867214,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"82b320a5dd028c6749fa6b6bc0301bd9001536d2","before":"1ef55dc9c2217b0918e6ec99c5391a6b52b136d1","commits":[{"sha":"82b320a5dd028c6749fa6b6bc0301bd9001536d2","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420125325620\n\nPCy78+UojvEYF2r23zs/4hzwaYWkHrrfmTonF0YpGGQ=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/82b320a5dd028c6749fa6b6bc0301bd9001536d2"}]},"public":true,"created_at":"2015-01-01T15:15:27Z"} +,{"id":"2489658168","type":"CreateEvent","actor":{"id":4767930,"login":"joeyhipolito","gravatar_id":"","url":"https://api.github.com/users/joeyhipolito","avatar_url":"https://avatars.githubusercontent.com/u/4767930?"},"repo":{"id":28688887,"name":"joeyhipolito/veeyo.github.io","url":"https://api.github.com/repos/joeyhipolito/veeyo.github.io"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:15:27Z"} +,{"id":"2489658169","type":"IssuesEvent","actor":{"id":10364796,"login":"peterpanes","gravatar_id":"","url":"https://api.github.com/users/peterpanes","avatar_url":"https://avatars.githubusercontent.com/u/10364796?"},"repo":{"id":19913699,"name":"ultramancool/AudioPrivacy","url":"https://api.github.com/repos/ultramancool/AudioPrivacy"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/ultramancool/AudioPrivacy/issues/6","labels_url":"https://api.github.com/repos/ultramancool/AudioPrivacy/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/ultramancool/AudioPrivacy/issues/6/comments","events_url":"https://api.github.com/repos/ultramancool/AudioPrivacy/issues/6/events","html_url":"https://github.com/ultramancool/AudioPrivacy/issues/6","id":53221645,"number":6,"title":"audio privacy does not work for my phone","user":{"login":"peterpanes","id":10364796,"avatar_url":"https://avatars.githubusercontent.com/u/10364796?v=3","gravatar_id":"","url":"https://api.github.com/users/peterpanes","html_url":"https://github.com/peterpanes","followers_url":"https://api.github.com/users/peterpanes/followers","following_url":"https://api.github.com/users/peterpanes/following{/other_user}","gists_url":"https://api.github.com/users/peterpanes/gists{/gist_id}","starred_url":"https://api.github.com/users/peterpanes/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/peterpanes/subscriptions","organizations_url":"https://api.github.com/users/peterpanes/orgs","repos_url":"https://api.github.com/users/peterpanes/repos","events_url":"https://api.github.com/users/peterpanes/events{/privacy}","received_events_url":"https://api.github.com/users/peterpanes/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:15:27Z","updated_at":"2015-01-01T15:15:27Z","closed_at":null,"body":"Samsung SGH I747 with AT&T stock 4.4.2 Android OS\r\nNon of the functions work on my phone:, beyondpod, pandora and others show the supersized audio label when locked. Can you please advice? In options I have selected both options."}},"public":true,"created_at":"2015-01-01T15:15:27Z"} +,{"id":"2489658172","type":"CreateEvent","actor":{"id":9656986,"login":"iwhm","gravatar_id":"","url":"https://api.github.com/users/iwhm","avatar_url":"https://avatars.githubusercontent.com/u/9656986?"},"repo":{"id":28688888,"name":"iwhm/RSAdiary","url":"https://api.github.com/repos/iwhm/RSAdiary"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"RSAdiary designed for Challenge Cup","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:15:27Z"} +,{"id":"2489658174","type":"WatchEvent","actor":{"id":771794,"login":"perquele","gravatar_id":"","url":"https://api.github.com/users/perquele","avatar_url":"https://avatars.githubusercontent.com/u/771794?"},"repo":{"id":6220644,"name":"OpenRefine/OpenRefine","url":"https://api.github.com/repos/OpenRefine/OpenRefine"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:15:27Z","org":{"id":2538880,"login":"OpenRefine","gravatar_id":"","url":"https://api.github.com/orgs/OpenRefine","avatar_url":"https://avatars.githubusercontent.com/u/2538880?"}} +,{"id":"2489658179","type":"WatchEvent","actor":{"id":38894,"login":"stephenway","gravatar_id":"","url":"https://api.github.com/users/stephenway","avatar_url":"https://avatars.githubusercontent.com/u/38894?"},"repo":{"id":26730195,"name":"cachethq/Cachet","url":"https://api.github.com/repos/cachethq/Cachet"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:15:28Z","org":{"id":9951502,"login":"cachethq","gravatar_id":"","url":"https://api.github.com/orgs/cachethq","avatar_url":"https://avatars.githubusercontent.com/u/9951502?"}} +,{"id":"2489658181","type":"PushEvent","actor":{"id":1665772,"login":"ondrejsika","gravatar_id":"","url":"https://api.github.com/users/ondrejsika","avatar_url":"https://avatars.githubusercontent.com/u/1665772?"},"repo":{"id":13438321,"name":"phphost/phphost","url":"https://api.github.com/repos/phphost/phphost"},"payload":{"push_id":536867215,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"51647690b1c2afc05f9f1d86e3be02c16ce1f0a1","before":"b6895d83cce4dbc947f72aa2055852daae7a9d23","commits":[{"sha":"51647690b1c2afc05f9f1d86e3be02c16ce1f0a1","author":{"email":"b816faa87b7d35274d2e545c5be11ed4376f3ccf@ondrejsika.com","name":"Ondrej Sika"},"message":"revert bootstrap js","distinct":true,"url":"https://api.github.com/repos/phphost/phphost/commits/51647690b1c2afc05f9f1d86e3be02c16ce1f0a1"}]},"public":true,"created_at":"2015-01-01T15:15:28Z","org":{"id":5645680,"login":"phphost","gravatar_id":"","url":"https://api.github.com/orgs/phphost","avatar_url":"https://avatars.githubusercontent.com/u/5645680?"}} +,{"id":"2489658186","type":"CreateEvent","actor":{"id":9676261,"login":"satheeshsanthosh","gravatar_id":"","url":"https://api.github.com/users/satheeshsanthosh","avatar_url":"https://avatars.githubusercontent.com/u/9676261?"},"repo":{"id":28688728,"name":"satheeshsanthosh/dimondvetnary","url":"https://api.github.com/repos/satheeshsanthosh/dimondvetnary"},"payload":{"ref":"module1","ref_type":"branch","master_branch":"master","description":"website for Diamond vetnary clinic","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:15:29Z"} +,{"id":"2489658187","type":"CreateEvent","actor":{"id":3929133,"login":"valeriangalliat","gravatar_id":"","url":"https://api.github.com/users/valeriangalliat","avatar_url":"https://avatars.githubusercontent.com/u/3929133?"},"repo":{"id":28688889,"name":"SassDoc/team","url":"https://api.github.com/repos/SassDoc/team"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"SassDoc team collaboration tools.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:15:29Z","org":{"id":8111770,"login":"SassDoc","gravatar_id":"","url":"https://api.github.com/orgs/SassDoc","avatar_url":"https://avatars.githubusercontent.com/u/8111770?"}} +,{"id":"2489658188","type":"PushEvent","actor":{"id":557961,"login":"e-jigsaw","gravatar_id":"","url":"https://api.github.com/users/e-jigsaw","avatar_url":"https://avatars.githubusercontent.com/u/557961?"},"repo":{"id":21883081,"name":"jgsme/dev","url":"https://api.github.com/repos/jgsme/dev"},"payload":{"push_id":536867220,"size":1,"distinct_size":0,"ref":"refs/heads/master","head":"0812a374b6e968cffcd237306588eb4d98f21a92","before":"04c0a55357e50e5e2a2608cd88cf8df5e3201c66","commits":[{"sha":"0812a374b6e968cffcd237306588eb4d98f21a92","author":{"email":"565b824397aa4296737cf3c505776243d38bd1bb@live.jp","name":"jigsaw"},"message":"fix link","distinct":false,"url":"https://api.github.com/repos/jgsme/dev/commits/0812a374b6e968cffcd237306588eb4d98f21a92"}]},"public":true,"created_at":"2015-01-01T15:15:29Z","org":{"id":8819590,"login":"jgsme","gravatar_id":"","url":"https://api.github.com/orgs/jgsme","avatar_url":"https://avatars.githubusercontent.com/u/8819590?"}} +,{"id":"2489658190","type":"PushEvent","actor":{"id":227303,"login":"uqs","gravatar_id":"","url":"https://api.github.com/users/uqs","avatar_url":"https://avatars.githubusercontent.com/u/227303?"},"repo":{"id":1803961,"name":"freebsd/freebsd-ports","url":"https://api.github.com/repos/freebsd/freebsd-ports"},"payload":{"push_id":536867221,"size":1,"distinct_size":1,"ref":"refs/heads/svn_head","head":"0726c3e2b537244f636e6a02c16850d59cdcc7ab","before":"3ba40735142543b98141ce76e5181f1c0e8ae7d9","commits":[{"sha":"0726c3e2b537244f636e6a02c16850d59cdcc7ab","author":{"email":"cce3b81ce1c05726331254f5d3dba8d589a4bfa8@35697150-7ecd-e111-bb59-0022644237b5","name":"bapt"},"message":"Correct time report after r367805\n\nPR:\t\t367805\nSubmitted by:\tpeterj\n\n\ngit-svn-id: svn+ssh://svn.freebsd.org/ports/head@375921 35697150-7ecd-e111-bb59-0022644237b5","distinct":true,"url":"https://api.github.com/repos/freebsd/freebsd-ports/commits/0726c3e2b537244f636e6a02c16850d59cdcc7ab"}]},"public":true,"created_at":"2015-01-01T15:15:29Z","org":{"id":811839,"login":"freebsd","gravatar_id":"","url":"https://api.github.com/orgs/freebsd","avatar_url":"https://avatars.githubusercontent.com/u/811839?"}} +,{"id":"2489658198","type":"WatchEvent","actor":{"id":3072923,"login":"ABpasser","gravatar_id":"","url":"https://api.github.com/users/ABpasser","avatar_url":"https://avatars.githubusercontent.com/u/3072923?"},"repo":{"id":12488374,"name":"hzlzh/Best-App","url":"https://api.github.com/repos/hzlzh/Best-App"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:15:30Z"} +,{"id":"2489658199","type":"ForkEvent","actor":{"id":79195,"login":"kgish","gravatar_id":"","url":"https://api.github.com/users/kgish","avatar_url":"https://avatars.githubusercontent.com/u/79195?"},"repo":{"id":17972966,"name":"WebCloud/EmberJS-Auth-Example","url":"https://api.github.com/repos/WebCloud/EmberJS-Auth-Example"},"payload":{"forkee":{"id":28688890,"name":"EmberJS-Auth-Example","full_name":"kgish/EmberJS-Auth-Example","owner":{"login":"kgish","id":79195,"avatar_url":"https://avatars.githubusercontent.com/u/79195?v=3","gravatar_id":"","url":"https://api.github.com/users/kgish","html_url":"https://github.com/kgish","followers_url":"https://api.github.com/users/kgish/followers","following_url":"https://api.github.com/users/kgish/following{/other_user}","gists_url":"https://api.github.com/users/kgish/gists{/gist_id}","starred_url":"https://api.github.com/users/kgish/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kgish/subscriptions","organizations_url":"https://api.github.com/users/kgish/orgs","repos_url":"https://api.github.com/users/kgish/repos","events_url":"https://api.github.com/users/kgish/events{/privacy}","received_events_url":"https://api.github.com/users/kgish/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/kgish/EmberJS-Auth-Example","description":"A Emberjs Authentication example through a Rails API","fork":true,"url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example","forks_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/forks","keys_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/keys{/key_id}","collaborators_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/teams","hooks_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/hooks","issue_events_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/issues/events{/number}","events_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/events","assignees_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/assignees{/user}","branches_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/branches{/branch}","tags_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/tags","blobs_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/git/refs{/sha}","trees_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/git/trees{/sha}","statuses_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/statuses/{sha}","languages_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/languages","stargazers_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/stargazers","contributors_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/contributors","subscribers_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/subscribers","subscription_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/subscription","commits_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/commits{/sha}","git_commits_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/git/commits{/sha}","comments_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/comments{/number}","issue_comment_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/issues/comments/{number}","contents_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/contents/{+path}","compare_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/compare/{base}...{head}","merges_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/merges","archive_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/downloads","issues_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/issues{/number}","pulls_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/pulls{/number}","milestones_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/milestones{/number}","notifications_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/labels{/name}","releases_url":"https://api.github.com/repos/kgish/EmberJS-Auth-Example/releases{/id}","created_at":"2015-01-01T15:15:30Z","updated_at":"2014-12-23T10:01:35Z","pushed_at":"2014-12-23T10:01:35Z","git_url":"git://github.com/kgish/EmberJS-Auth-Example.git","ssh_url":"git@github.com:kgish/EmberJS-Auth-Example.git","clone_url":"https://github.com/kgish/EmberJS-Auth-Example.git","svn_url":"https://github.com/kgish/EmberJS-Auth-Example","homepage":null,"size":862,"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:15:30Z"} +,{"id":"2489658200","type":"PushEvent","actor":{"id":9011105,"login":"norddick","gravatar_id":"","url":"https://api.github.com/users/norddick","avatar_url":"https://avatars.githubusercontent.com/u/9011105?"},"repo":{"id":24644136,"name":"underworlds/Path-of-forgotten-warrior","url":"https://api.github.com/repos/underworlds/Path-of-forgotten-warrior"},"payload":{"push_id":536867224,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9ec66d6e4a32c7244561bffbcace1f57af1eb3b3","before":"446dea30a0ebc59288a1b645ec7c23bd258390b5","commits":[{"sha":"9ec66d6e4a32c7244561bffbcace1f57af1eb3b3","author":{"email":"10f0be51a11c0b5809492c8e6c5145c74a290297@seznam.cz","name":"norddick"},"message":"L01r04 terrain completion(no fighting), view table","distinct":true,"url":"https://api.github.com/repos/underworlds/Path-of-forgotten-warrior/commits/9ec66d6e4a32c7244561bffbcace1f57af1eb3b3"}]},"public":true,"created_at":"2015-01-01T15:15:30Z","org":{"id":8973625,"login":"underworlds","gravatar_id":"","url":"https://api.github.com/orgs/underworlds","avatar_url":"https://avatars.githubusercontent.com/u/8973625?"}} +,{"id":"2489658206","type":"CreateEvent","actor":{"id":9666449,"login":"automatic-frog","gravatar_id":"","url":"https://api.github.com/users/automatic-frog","avatar_url":"https://avatars.githubusercontent.com/u/9666449?"},"repo":{"id":26456452,"name":"osp/osp.tools.ethertoff","url":"https://api.github.com/repos/osp/osp.tools.ethertoff"},"payload":{"ref":"vj14","ref_type":"branch","master_branch":"master","description":"MIRROR of http://osp.kitchen/tools/ethertoff","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:15:31Z","org":{"id":9216151,"login":"osp","gravatar_id":"","url":"https://api.github.com/orgs/osp","avatar_url":"https://avatars.githubusercontent.com/u/9216151?"}} +,{"id":"2489658207","type":"CreateEvent","actor":{"id":9666449,"login":"automatic-frog","gravatar_id":"","url":"https://api.github.com/users/automatic-frog","avatar_url":"https://avatars.githubusercontent.com/u/9666449?"},"repo":{"id":26456452,"name":"osp/osp.tools.ethertoff","url":"https://api.github.com/repos/osp/osp.tools.ethertoff"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"MIRROR of http://osp.kitchen/tools/ethertoff","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:15:32Z","org":{"id":9216151,"login":"osp","gravatar_id":"","url":"https://api.github.com/orgs/osp","avatar_url":"https://avatars.githubusercontent.com/u/9216151?"}} +,{"id":"2489658208","type":"CreateEvent","actor":{"id":9666449,"login":"automatic-frog","gravatar_id":"","url":"https://api.github.com/users/automatic-frog","avatar_url":"https://avatars.githubusercontent.com/u/9666449?"},"repo":{"id":26456452,"name":"osp/osp.tools.ethertoff","url":"https://api.github.com/repos/osp/osp.tools.ethertoff"},"payload":{"ref":"etherbat","ref_type":"branch","master_branch":"master","description":"MIRROR of http://osp.kitchen/tools/ethertoff","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:15:32Z","org":{"id":9216151,"login":"osp","gravatar_id":"","url":"https://api.github.com/orgs/osp","avatar_url":"https://avatars.githubusercontent.com/u/9216151?"}} +,{"id":"2489658209","type":"PushEvent","actor":{"id":2098230,"login":"richelbilderbeek","gravatar_id":"","url":"https://api.github.com/users/richelbilderbeek","avatar_url":"https://avatars.githubusercontent.com/u/2098230?"},"repo":{"id":10412386,"name":"richelbilderbeek/ProjectRichelBilderbeek","url":"https://api.github.com/repos/richelbilderbeek/ProjectRichelBilderbeek"},"payload":{"push_id":536867228,"size":1,"distinct_size":1,"ref":"refs/heads/brainweaver","head":"ecc8d740e0cf5a358f8d73b7e395a2f528ef8173","before":"c935abbe1f2ceaecc791eb2af85e04a929f54357","commits":[{"sha":"ecc8d740e0cf5a358f8d73b7e395a2f528ef8173","author":{"email":"f7870b5415a94e849af7be5bb77e9077041ae68c@richelbilderbeek.nl","name":"richelbilderbeek"},"message":"Also apfloat can be crosscompiled","distinct":true,"url":"https://api.github.com/repos/richelbilderbeek/ProjectRichelBilderbeek/commits/ecc8d740e0cf5a358f8d73b7e395a2f528ef8173"}]},"public":true,"created_at":"2015-01-01T15:15:32Z"} +,{"id":"2489658210","type":"PushEvent","actor":{"id":2539292,"login":"wmfgerrit","gravatar_id":"","url":"https://api.github.com/users/wmfgerrit","avatar_url":"https://avatars.githubusercontent.com/u/2539292?"},"repo":{"id":6495082,"name":"wikimedia/mediawiki-extensions","url":"https://api.github.com/repos/wikimedia/mediawiki-extensions"},"payload":{"push_id":536867230,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3a3eb7fc1481c2839afcc9834f307941d0eba842","before":"0aea346415b1e40e71b0e5506e4be1dbbc504ec8","commits":[{"sha":"3a3eb7fc1481c2839afcc9834f307941d0eba842","author":{"email":"81ecf282caf36c4650876909892470b2e210afed@mail.huji.ac.il","name":"Amir E. Aharoni"},"message":"Updated mediawiki/extensions\nProject: mediawiki/extensions/ContentTranslation 341f0b26d708bb6c2a2aeb610949ad1095f9341c\n\nCleanup ext.cx.source.selector.js\n\n* Whitespace.\n* Function documentation.\n\nChange-Id: I760efe230a4f931be4238ad2fafc80470cbbe0db","distinct":true,"url":"https://api.github.com/repos/wikimedia/mediawiki-extensions/commits/3a3eb7fc1481c2839afcc9834f307941d0eba842"}]},"public":true,"created_at":"2015-01-01T15:15:32Z","org":{"id":56668,"login":"wikimedia","gravatar_id":"","url":"https://api.github.com/orgs/wikimedia","avatar_url":"https://avatars.githubusercontent.com/u/56668?"}} +,{"id":"2489658211","type":"PushEvent","actor":{"id":1048096,"login":"def-lkb","gravatar_id":"","url":"https://api.github.com/users/def-lkb","avatar_url":"https://avatars.githubusercontent.com/u/1048096?"},"repo":{"id":8048400,"name":"the-lambda-church/merlin","url":"https://api.github.com/repos/the-lambda-church/merlin"},"payload":{"push_id":536867231,"size":2,"distinct_size":2,"ref":"refs/heads/merlin-completion-next","head":"a3ecd90f79087b6b16d8bde2dfc3f2752ca6a813","before":"767b61eccf3604a0d0301fdae8fe10acf784fdcf","commits":[{"sha":"9542daaefde8a1700a353a0db3c9ffc907c20ced","author":{"email":"56f0f1a1a8126f2109751ad3be9d68dd51f55f2b@lakaban.net","name":"Frederic Bour"},"message":"Label completion: expand aliases","distinct":true,"url":"https://api.github.com/repos/the-lambda-church/merlin/commits/9542daaefde8a1700a353a0db3c9ffc907c20ced"},{"sha":"a3ecd90f79087b6b16d8bde2dfc3f2752ca6a813","author":{"email":"56f0f1a1a8126f2109751ad3be9d68dd51f55f2b@lakaban.net","name":"Frederic Bour"},"message":"vim: fix completion suffix handling and expansion fallback","distinct":true,"url":"https://api.github.com/repos/the-lambda-church/merlin/commits/a3ecd90f79087b6b16d8bde2dfc3f2752ca6a813"}]},"public":true,"created_at":"2015-01-01T15:15:33Z","org":{"id":6185568,"login":"the-lambda-church","gravatar_id":"","url":"https://api.github.com/orgs/the-lambda-church","avatar_url":"https://avatars.githubusercontent.com/u/6185568?"}} +,{"id":"2489658214","type":"PushEvent","actor":{"id":1341245,"login":"asfgit","gravatar_id":"","url":"https://api.github.com/users/asfgit","avatar_url":"https://avatars.githubusercontent.com/u/1341245?"},"repo":{"id":454263,"name":"apache/subversion","url":"https://api.github.com/repos/apache/subversion"},"payload":{"push_id":536867232,"size":1,"distinct_size":1,"ref":"refs/heads/trunk","head":"6cad015fb20f6142edb26ca8b9ff315fbbafd892","before":"0701e88a39b9075ebfdc8a3f935de1bdabd78b09","commits":[{"sha":"6cad015fb20f6142edb26ca8b9ff315fbbafd892","author":{"email":"59868462ec87e43a39a96a07082385ad54f81a61@apache.org","name":"Roderich Schupp"},"message":"Make (cancel_func, cancel_baton) parameter pairs work in Perl bindings.\n\n[in subversion/bindings/swig]\n\n* include/svn_types.swg: Consolidate the existing, separate Python and Ruby\n %typemaps for (svn_cancel_func_t cancel_func, void *cancel_baton)\n into one %callback_typemap and add the Perl equivalent.\n\n* svn_client.i: Remove the redundant, Ruby-only %callback_typemap for\n this parameter pair.\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/subversion/trunk@1648852 13f79535-47bb-0310-9956-ffa450edef68","distinct":true,"url":"https://api.github.com/repos/apache/subversion/commits/6cad015fb20f6142edb26ca8b9ff315fbbafd892"}]},"public":true,"created_at":"2015-01-01T15:15:33Z","org":{"id":47359,"login":"apache","gravatar_id":"","url":"https://api.github.com/orgs/apache","avatar_url":"https://avatars.githubusercontent.com/u/47359?"}} +,{"id":"2489658216","type":"CreateEvent","actor":{"id":2765366,"login":"emmanuelgautier","gravatar_id":"","url":"https://api.github.com/users/emmanuelgautier","avatar_url":"https://avatars.githubusercontent.com/u/2765366?"},"repo":{"id":28688891,"name":"larant/gravatar","url":"https://api.github.com/repos/larant/gravatar"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:15:34Z","org":{"id":9801143,"login":"larant","gravatar_id":"","url":"https://api.github.com/orgs/larant","avatar_url":"https://avatars.githubusercontent.com/u/9801143?"}} +,{"id":"2489658218","type":"IssueCommentEvent","actor":{"id":611309,"login":"walac","gravatar_id":"","url":"https://api.github.com/users/walac","avatar_url":"https://avatars.githubusercontent.com/u/611309?"},"repo":{"id":2315698,"name":"walac/pyusb","url":"https://api.github.com/repos/walac/pyusb"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/walac/pyusb/issues/79","labels_url":"https://api.github.com/repos/walac/pyusb/issues/79/labels{/name}","comments_url":"https://api.github.com/repos/walac/pyusb/issues/79/comments","events_url":"https://api.github.com/repos/walac/pyusb/issues/79/events","html_url":"https://github.com/walac/pyusb/issues/79","id":50847506,"number":79,"title":"Backends are reimported each time find() is called with backend parameter None","user":{"login":"rabryan","id":3933498,"avatar_url":"https://avatars.githubusercontent.com/u/3933498?v=3","gravatar_id":"","url":"https://api.github.com/users/rabryan","html_url":"https://github.com/rabryan","followers_url":"https://api.github.com/users/rabryan/followers","following_url":"https://api.github.com/users/rabryan/following{/other_user}","gists_url":"https://api.github.com/users/rabryan/gists{/gist_id}","starred_url":"https://api.github.com/users/rabryan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rabryan/subscriptions","organizations_url":"https://api.github.com/users/rabryan/orgs","repos_url":"https://api.github.com/users/rabryan/repos","events_url":"https://api.github.com/users/rabryan/events{/privacy}","received_events_url":"https://api.github.com/users/rabryan/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/walac/pyusb/labels/blocker","name":"blocker","color":"e11d21"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-03T14:57:59Z","updated_at":"2015-01-01T15:15:34Z","closed_at":null,"body":"If find() is called multiple times with backend=None, the backend is reimported and consequently the backend library is reinitalized. For libusb, this results in libusb_init() and libusb_exit() getting called on each call to find() and renders the backend module's mechanism for caching the library (i.e. the global \"_lib\" variable) useless.\r\n\r\nOn windows, this was somehow leading to the intermittent \"Access Denied\" errors as detailed here: http://sourceforge.net/p/pyusb/mailman/message/33076849/\r\n\r\nAn easy workaround is for the caller to get the specific backend once, cache it themselves, and pass it explicitly. "},"comment":{"url":"https://api.github.com/repos/walac/pyusb/issues/comments/68488812","html_url":"https://github.com/walac/pyusb/issues/79#issuecomment-68488812","issue_url":"https://api.github.com/repos/walac/pyusb/issues/79","id":68488812,"user":{"login":"walac","id":611309,"avatar_url":"https://avatars.githubusercontent.com/u/611309?v=3","gravatar_id":"","url":"https://api.github.com/users/walac","html_url":"https://github.com/walac","followers_url":"https://api.github.com/users/walac/followers","following_url":"https://api.github.com/users/walac/following{/other_user}","gists_url":"https://api.github.com/users/walac/gists{/gist_id}","starred_url":"https://api.github.com/users/walac/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/walac/subscriptions","organizations_url":"https://api.github.com/users/walac/orgs","repos_url":"https://api.github.com/users/walac/repos","events_url":"https://api.github.com/users/walac/events{/privacy}","received_events_url":"https://api.github.com/users/walac/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:15:34Z","updated_at":"2015-01-01T15:15:34Z","body":"`get_backend` [returns a new `LibUSB1` object](https://github.com/walac/pyusb/blob/master/usb/backend/libusb1.py#L915), which [calls `libusb_init` in its constructor](https://github.com/walac/pyusb/blob/master/usb/backend/libusb1.py#L684).\r\n\r\nSo, I am afraid that caching the imported backed will not fix your issue either. A better solution would be you call [`libusb1.get_backend`](https://github.com/walac/pyusb/blob/master/usb/backend/libusb1.py#L909) yourself, cache the returned object and pass it to `find` through the `backend` argument. "}},"public":true,"created_at":"2015-01-01T15:15:34Z"} +,{"id":"2489658220","type":"PushEvent","actor":{"id":3719261,"login":"kikinovak","gravatar_id":"","url":"https://api.github.com/users/kikinovak","avatar_url":"https://avatars.githubusercontent.com/u/3719261?"},"repo":{"id":18911418,"name":"kikinovak/slackware","url":"https://api.github.com/repos/kikinovak/slackware"},"payload":{"push_id":536867234,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3c84877f4facf4b68ebda9d89bae1d14375c7cbc","before":"80393390f884f90f6f979dce228acb5f6d322086","commits":[{"sha":"3c84877f4facf4b68ebda9d89bae1d14375c7cbc","author":{"email":"59bd0a3ff43b32849b319e645d4798d8a5d1e889@microlinux.fr","name":"Niki Kovacs"},"message":"...","distinct":true,"url":"https://api.github.com/repos/kikinovak/slackware/commits/3c84877f4facf4b68ebda9d89bae1d14375c7cbc"}]},"public":true,"created_at":"2015-01-01T15:15:34Z"} +,{"id":"2489658221","type":"PushEvent","actor":{"id":1817557,"login":"zhugino","gravatar_id":"","url":"https://api.github.com/users/zhugino","avatar_url":"https://avatars.githubusercontent.com/u/1817557?"},"repo":{"id":28622085,"name":"zhugino/gnc","url":"https://api.github.com/repos/zhugino/gnc"},"payload":{"push_id":536867235,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"1b7e4f79d8bae91b404a0ba3d04812c50887bef8","before":"a6427806b600d569b6148911520decf014b0cf8f","commits":[{"sha":"5c2896b9009b6a8a5c0c621ebc17014ac60221ae","author":{"email":"206c1807fc956d0c3ce3a547d94a29e7127ef2bd@gmail.com","name":"Gino Choo"},"message":"init jee pj","distinct":true,"url":"https://api.github.com/repos/zhugino/gnc/commits/5c2896b9009b6a8a5c0c621ebc17014ac60221ae"},{"sha":"1b7e4f79d8bae91b404a0ba3d04812c50887bef8","author":{"email":"206c1807fc956d0c3ce3a547d94a29e7127ef2bd@gmail.com","name":"Gino Choo"},"message":"add jee pj","distinct":true,"url":"https://api.github.com/repos/zhugino/gnc/commits/1b7e4f79d8bae91b404a0ba3d04812c50887bef8"}]},"public":true,"created_at":"2015-01-01T15:15:34Z"} +,{"id":"2489658222","type":"PushEvent","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":{"push_id":536867236,"size":4,"distinct_size":4,"ref":"refs/heads/PLMd947b4e6a13377b40991666c05e75a358bade38c","head":"1854418e821bac0fa0f4d0967bc8048bfc1f78f4","before":"f586cfb093998eed4fca7f1f865c79057229e5e4","commits":[{"sha":"4c8151563d4627b6dfa5efcafec1e23dff60a4df","author":{"email":"af0188f34285ce3b31574866070b9a5066df7355@plm.net","name":"John Doe"},"message":"{\"kind\":\"executed\",\"exo\":\"welcome.lessons.welcome.methods.picture.PictureMono1\",\"course\":\"\",\"totaltests\":\"1\",\"exoInterest\":\"(please choose)\",\"passedtests\":\"1\",\"outcome\":\"pass\",\"lang\":\"Python\"}","distinct":true,"url":"https://api.github.com/repos/mquinson/PLM-data/commits/4c8151563d4627b6dfa5efcafec1e23dff60a4df"},{"sha":"a1cb867aa0dd4b7ecfd0a0697ee737191a6d22ce","author":{"email":"af0188f34285ce3b31574866070b9a5066df7355@plm.net","name":"John Doe"},"message":"{\"kind\":\"executed\",\"exo\":\"welcome.lessons.welcome.methods.picture.PictureMono1\",\"course\":\"\",\"totaltests\":\"1\",\"exoInterest\":\"(please choose)\",\"passedtests\":\"1\",\"outcome\":\"pass\",\"lang\":\"Python\"}","distinct":true,"url":"https://api.github.com/repos/mquinson/PLM-data/commits/a1cb867aa0dd4b7ecfd0a0697ee737191a6d22ce"},{"sha":"f9336664487bfb8db4a4b447f0f12e927df93951","author":{"email":"af0188f34285ce3b31574866070b9a5066df7355@plm.net","name":"John Doe"},"message":"{\"kind\":\"switched\",\"exo\":\"welcome.lessons.welcome.methods.picture.PictureMono1\",\"course\":\"\",\"switchto\":\"welcome.lessons.welcome.methods.picture.PictureMono2\",\"totaltests\":\"1\",\"exoInterest\":\"(please choose)\",\"passedtests\":\"1\",\"outcome\":\"pass\",\"lang\":\"Python\"}","distinct":true,"url":"https://api.github.com/repos/mquinson/PLM-data/commits/f9336664487bfb8db4a4b447f0f12e927df93951"},{"sha":"1854418e821bac0fa0f4d0967bc8048bfc1f78f4","author":{"email":"af0188f34285ce3b31574866070b9a5066df7355@plm.net","name":"John Doe"},"message":"{\"kind\":\"executed\",\"exo\":\"welcome.lessons.welcome.methods.picture.PictureMono2\",\"course\":\"\",\"totaltests\":\"1\",\"passedtests\":\"0\",\"outcome\":\"fail\",\"lang\":\"Python\"}","distinct":true,"url":"https://api.github.com/repos/mquinson/PLM-data/commits/1854418e821bac0fa0f4d0967bc8048bfc1f78f4"}]},"public":true,"created_at":"2015-01-01T15:15:34Z"} +,{"id":"2489658225","type":"WatchEvent","actor":{"id":3296912,"login":"GuorgMa","gravatar_id":"","url":"https://api.github.com/users/GuorgMa","avatar_url":"https://avatars.githubusercontent.com/u/3296912?"},"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:15:35Z"} +,{"id":"2489658227","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":536867238,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c0426419ae91a421d3b907f17abb7cec8b4e37e1","before":"48c350cf9e07dea1db9809dbcd879839e9f53291","commits":[{"sha":"c0426419ae91a421d3b907f17abb7cec8b4e37e1","author":{"email":"45b9372d3d6883e588eb18cca37878d6aa2d5cd5@young.io","name":"Micah Young"},"message":"1420125302","distinct":true,"url":"https://api.github.com/repos/micahyoung/citibike-data/commits/c0426419ae91a421d3b907f17abb7cec8b4e37e1"}]},"public":true,"created_at":"2015-01-01T15:15:35Z"} +,{"id":"2489658228","type":"PushEvent","actor":{"id":8438680,"login":"Sheleng","gravatar_id":"","url":"https://api.github.com/users/Sheleng","avatar_url":"https://avatars.githubusercontent.com/u/8438680?"},"repo":{"id":28622930,"name":"Sheleng/sheleng.github.io","url":"https://api.github.com/repos/Sheleng/sheleng.github.io"},"payload":{"push_id":536867240,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"01399532b635ac54778f00207cd2028b06279630","before":"7cb262322cf03e452f9ec28d1cfc7536482f1dae","commits":[{"sha":"01399532b635ac54778f00207cd2028b06279630","author":{"email":"f1b542e19337e979acc9ac3c7e4c92c40d256efc@qq.com","name":"Sheleng"},"message":"测试Jekyll支持","distinct":true,"url":"https://api.github.com/repos/Sheleng/sheleng.github.io/commits/01399532b635ac54778f00207cd2028b06279630"}]},"public":true,"created_at":"2015-01-01T15:15:35Z"} +,{"id":"2489658231","type":"IssueCommentEvent","actor":{"id":142658,"login":"ADmad","gravatar_id":"","url":"https://api.github.com/users/ADmad","avatar_url":"https://avatars.githubusercontent.com/u/142658?"},"repo":{"id":656494,"name":"cakephp/cakephp","url":"https://api.github.com/repos/cakephp/cakephp"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/cakephp/cakephp/issues/5528","labels_url":"https://api.github.com/repos/cakephp/cakephp/issues/5528/labels{/name}","comments_url":"https://api.github.com/repos/cakephp/cakephp/issues/5528/comments","events_url":"https://api.github.com/repos/cakephp/cakephp/issues/5528/events","html_url":"https://github.com/cakephp/cakephp/pull/5528","id":53221500,"number":5528,"title":"Moved the Model namespace into ORM so it can be distributed easier","user":{"login":"lorenzo","id":37621,"avatar_url":"https://avatars.githubusercontent.com/u/37621?v=3","gravatar_id":"","url":"https://api.github.com/users/lorenzo","html_url":"https://github.com/lorenzo","followers_url":"https://api.github.com/users/lorenzo/followers","following_url":"https://api.github.com/users/lorenzo/following{/other_user}","gists_url":"https://api.github.com/users/lorenzo/gists{/gist_id}","starred_url":"https://api.github.com/users/lorenzo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lorenzo/subscriptions","organizations_url":"https://api.github.com/users/lorenzo/orgs","repos_url":"https://api.github.com/users/lorenzo/repos","events_url":"https://api.github.com/users/lorenzo/events{/privacy}","received_events_url":"https://api.github.com/users/lorenzo/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T15:08:40Z","updated_at":"2015-01-01T15:15:35Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/cakephp/cakephp/pulls/5528","html_url":"https://github.com/cakephp/cakephp/pull/5528","diff_url":"https://github.com/cakephp/cakephp/pull/5528.diff","patch_url":"https://github.com/cakephp/cakephp/pull/5528.patch"},"body":"Also moved ModelAwareTrait to Datasource it I think it makes more sense there"},"comment":{"url":"https://api.github.com/repos/cakephp/cakephp/issues/comments/68488814","html_url":"https://github.com/cakephp/cakephp/pull/5528#issuecomment-68488814","issue_url":"https://api.github.com/repos/cakephp/cakephp/issues/5528","id":68488814,"user":{"login":"ADmad","id":142658,"avatar_url":"https://avatars.githubusercontent.com/u/142658?v=3","gravatar_id":"","url":"https://api.github.com/users/ADmad","html_url":"https://github.com/ADmad","followers_url":"https://api.github.com/users/ADmad/followers","following_url":"https://api.github.com/users/ADmad/following{/other_user}","gists_url":"https://api.github.com/users/ADmad/gists{/gist_id}","starred_url":"https://api.github.com/users/ADmad/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ADmad/subscriptions","organizations_url":"https://api.github.com/users/ADmad/orgs","repos_url":"https://api.github.com/users/ADmad/repos","events_url":"https://api.github.com/users/ADmad/events{/privacy}","received_events_url":"https://api.github.com/users/ADmad/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:15:35Z","updated_at":"2015-01-01T15:15:35Z","body":"I like this :+1: "}},"public":true,"created_at":"2015-01-01T15:15:36Z","org":{"id":23666,"login":"cakephp","gravatar_id":"","url":"https://api.github.com/orgs/cakephp","avatar_url":"https://avatars.githubusercontent.com/u/23666?"}} +,{"id":"2489658232","type":"CreateEvent","actor":{"id":6471813,"login":"binarydave","gravatar_id":"","url":"https://api.github.com/users/binarydave","avatar_url":"https://avatars.githubusercontent.com/u/6471813?"},"repo":{"id":28688883,"name":"binarydave/rango_project","url":"https://api.github.com/repos/binarydave/rango_project"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"django test project","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:15:36Z"} +,{"id":"2489658236","type":"PushEvent","actor":{"id":1593511,"login":"yzf","gravatar_id":"","url":"https://api.github.com/users/yzf","avatar_url":"https://avatars.githubusercontent.com/u/1593511?"},"repo":{"id":28538579,"name":"yzf/VimConfig","url":"https://api.github.com/repos/yzf/VimConfig"},"payload":{"push_id":536867245,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5574b1351ef02d53702842dd50ceda1dc419bf9c","before":"1bfbd4dae8ddad17eba85998626bfd6498633f7c","commits":[{"sha":"5574b1351ef02d53702842dd50ceda1dc419bf9c","author":{"email":"1e9dfc7599846723fc079f863ef5e66f36e67578@qq.com","name":"yzf"},"message":"Add plugin 'vim-colorschemes'","distinct":true,"url":"https://api.github.com/repos/yzf/VimConfig/commits/5574b1351ef02d53702842dd50ceda1dc419bf9c"}]},"public":true,"created_at":"2015-01-01T15:15:37Z"} +,{"id":"2489658237","type":"IssueCommentEvent","actor":{"id":3656088,"login":"jchodera","gravatar_id":"","url":"https://api.github.com/users/jchodera","avatar_url":"https://avatars.githubusercontent.com/u/3656088?"},"repo":{"id":17611577,"name":"omnia-md/conda-recipes","url":"https://api.github.com/repos/omnia-md/conda-recipes"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/omnia-md/conda-recipes/issues/62","labels_url":"https://api.github.com/repos/omnia-md/conda-recipes/issues/62/labels{/name}","comments_url":"https://api.github.com/repos/omnia-md/conda-recipes/issues/62/comments","events_url":"https://api.github.com/repos/omnia-md/conda-recipes/issues/62/events","html_url":"https://github.com/omnia-md/conda-recipes/pull/62","id":53086380,"number":62,"title":"Fixed post-link script to eliminate non-OSX-compatible `mv -t`","user":{"login":"jchodera","id":3656088,"avatar_url":"https://avatars.githubusercontent.com/u/3656088?v=3","gravatar_id":"","url":"https://api.github.com/users/jchodera","html_url":"https://github.com/jchodera","followers_url":"https://api.github.com/users/jchodera/followers","following_url":"https://api.github.com/users/jchodera/following{/other_user}","gists_url":"https://api.github.com/users/jchodera/gists{/gist_id}","starred_url":"https://api.github.com/users/jchodera/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jchodera/subscriptions","organizations_url":"https://api.github.com/users/jchodera/orgs","repos_url":"https://api.github.com/users/jchodera/repos","events_url":"https://api.github.com/users/jchodera/events{/privacy}","received_events_url":"https://api.github.com/users/jchodera/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2014-12-30T01:31:48Z","updated_at":"2015-01-01T15:15:37Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/omnia-md/conda-recipes/pulls/62","html_url":"https://github.com/omnia-md/conda-recipes/pull/62","diff_url":"https://github.com/omnia-md/conda-recipes/pull/62.diff","patch_url":"https://github.com/omnia-md/conda-recipes/pull/62.patch"},"body":"This should fix #61 "},"comment":{"url":"https://api.github.com/repos/omnia-md/conda-recipes/issues/comments/68488815","html_url":"https://github.com/omnia-md/conda-recipes/pull/62#issuecomment-68488815","issue_url":"https://api.github.com/repos/omnia-md/conda-recipes/issues/62","id":68488815,"user":{"login":"jchodera","id":3656088,"avatar_url":"https://avatars.githubusercontent.com/u/3656088?v=3","gravatar_id":"","url":"https://api.github.com/users/jchodera","html_url":"https://github.com/jchodera","followers_url":"https://api.github.com/users/jchodera/followers","following_url":"https://api.github.com/users/jchodera/following{/other_user}","gists_url":"https://api.github.com/users/jchodera/gists{/gist_id}","starred_url":"https://api.github.com/users/jchodera/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jchodera/subscriptions","organizations_url":"https://api.github.com/users/jchodera/orgs","repos_url":"https://api.github.com/users/jchodera/repos","events_url":"https://api.github.com/users/jchodera/events{/privacy}","received_events_url":"https://api.github.com/users/jchodera/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:15:37Z","updated_at":"2015-01-01T15:15:37Z","body":"Merging this so I can continue debugging jenkins builds."}},"public":true,"created_at":"2015-01-01T15:15:37Z","org":{"id":6926022,"login":"omnia-md","gravatar_id":"","url":"https://api.github.com/orgs/omnia-md","avatar_url":"https://avatars.githubusercontent.com/u/6926022?"}} +,{"id":"2489658238","type":"PushEvent","actor":{"id":433556,"login":"pwaring","gravatar_id":"","url":"https://api.github.com/users/pwaring","avatar_url":"https://avatars.githubusercontent.com/u/433556?"},"repo":{"id":9100938,"name":"pwaring/notes","url":"https://api.github.com/repos/pwaring/notes"},"payload":{"push_id":536867246,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1de82c7041f3cb27d2a2e45bbd3a897617568df5","before":"2a127f271790b5f92152b462a9efff7a39ec5f60","commits":[{"sha":"1de82c7041f3cb27d2a2e45bbd3a897617568df5","author":{"email":"a027184a55211cd23e3f3094f1fdc728df5e0500@xk7.net","name":"Paul Waring"},"message":"Clang notes","distinct":true,"url":"https://api.github.com/repos/pwaring/notes/commits/1de82c7041f3cb27d2a2e45bbd3a897617568df5"}]},"public":true,"created_at":"2015-01-01T15:15:37Z"} +,{"id":"2489658240","type":"CreateEvent","actor":{"id":7450973,"login":"riemann111","gravatar_id":"","url":"https://api.github.com/users/riemann111","avatar_url":"https://avatars.githubusercontent.com/u/7450973?"},"repo":{"id":28688893,"name":"riemann111/SEssence","url":"https://api.github.com/repos/riemann111/SEssence"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"RSBot essence miner [OSRS]","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:15:37Z"} +,{"id":"2489658242","type":"DeleteEvent","actor":{"id":2266445,"login":"littleguy77","gravatar_id":"","url":"https://api.github.com/users/littleguy77","avatar_url":"https://avatars.githubusercontent.com/u/2266445?"},"repo":{"id":16059770,"name":"mupen64plus-ae/mupen64plus-core","url":"https://api.github.com/repos/mupen64plus-ae/mupen64plus-core"},"payload":{"ref":"master","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:15:37Z","org":{"id":6227843,"login":"mupen64plus-ae","gravatar_id":"","url":"https://api.github.com/orgs/mupen64plus-ae","avatar_url":"https://avatars.githubusercontent.com/u/6227843?"}} +,{"id":"2489658243","type":"PushEvent","actor":{"id":3129332,"login":"Alucard24","gravatar_id":"","url":"https://api.github.com/users/Alucard24","avatar_url":"https://avatars.githubusercontent.com/u/3129332?"},"repo":{"id":12569740,"name":"Alucard24/Ramdisk","url":"https://api.github.com/repos/Alucard24/Ramdisk"},"payload":{"push_id":536867249,"size":1,"distinct_size":1,"ref":"refs/heads/aospv2-5.0","head":"7f530ae6a2e1da0415ca8d2aa8089a2de51b687f","before":"9da22308f0caff02db6a015369115562afaeeeec","commits":[{"sha":"7f530ae6a2e1da0415ca8d2aa8089a2de51b687f","author":{"email":"2ae160c801cd8b3781f9fd91304d7ca1376d75ca@outlook.com","name":"Mattia D'Alleva"},"message":"Update from 20141227 build","distinct":true,"url":"https://api.github.com/repos/Alucard24/Ramdisk/commits/7f530ae6a2e1da0415ca8d2aa8089a2de51b687f"}]},"public":true,"created_at":"2015-01-01T15:15:37Z"} +,{"id":"2489658244","type":"PushEvent","actor":{"id":5440188,"login":"brentonklassen","gravatar_id":"","url":"https://api.github.com/users/brentonklassen","avatar_url":"https://avatars.githubusercontent.com/u/5440188?"},"repo":{"id":28688506,"name":"brentonklassen/GiltAngApp","url":"https://api.github.com/repos/brentonklassen/GiltAngApp"},"payload":{"push_id":536867250,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4aa0d8effdfded8b149e70944d2b3b5e2a3701a2","before":"35aeaa0d1ea7e2a5ac74f020d0bce2e8e006e4e9","commits":[{"sha":"4aa0d8effdfded8b149e70944d2b3b5e2a3701a2","author":{"email":"cf9047591b36800f7f3bc8879c289247018f9a04@live.com","name":"Brenton Klassen"},"message":"Added more data to view","distinct":true,"url":"https://api.github.com/repos/brentonklassen/GiltAngApp/commits/4aa0d8effdfded8b149e70944d2b3b5e2a3701a2"}]},"public":true,"created_at":"2015-01-01T15:15:38Z"} +,{"id":"2489658248","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":536867253,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a76dc89cd4ee5cc9dd5c0bf95e185d518ceee2d1","before":"53535336307b9141973a50fb42c9523ea79a075d","commits":[{"sha":"a76dc89cd4ee5cc9dd5c0bf95e185d518ceee2d1","author":{"email":"de163e90d3aeef9f404d1de71c48e234a211e3c3@gmail.com","name":"KT"},"message":"Update","distinct":true,"url":"https://api.github.com/repos/qdm/qdm.github.io/commits/a76dc89cd4ee5cc9dd5c0bf95e185d518ceee2d1"}]},"public":true,"created_at":"2015-01-01T15:15:39Z"} +,{"id":"2489658249","type":"WatchEvent","actor":{"id":1726373,"login":"xianlin","gravatar_id":"","url":"https://api.github.com/users/xianlin","avatar_url":"https://avatars.githubusercontent.com/u/1726373?"},"repo":{"id":18793008,"name":"openhomeautomation/aREST-demo","url":"https://api.github.com/repos/openhomeautomation/aREST-demo"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:15:39Z"} +,{"id":"2489658254","type":"WatchEvent","actor":{"id":1323793,"login":"themez","gravatar_id":"","url":"https://api.github.com/users/themez","avatar_url":"https://avatars.githubusercontent.com/u/1323793?"},"repo":{"id":8730628,"name":"wuye9036/CppTemplateTutorial","url":"https://api.github.com/repos/wuye9036/CppTemplateTutorial"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:15:40Z"} +,{"id":"2489658255","type":"WatchEvent","actor":{"id":27919,"login":"weiday","gravatar_id":"","url":"https://api.github.com/users/weiday","avatar_url":"https://avatars.githubusercontent.com/u/27919?"},"repo":{"id":2679840,"name":"AdamLaurie/RFIDIOt","url":"https://api.github.com/repos/AdamLaurie/RFIDIOt"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:15:40Z"} +,{"id":"2489658256","type":"ForkEvent","actor":{"id":2915850,"login":"robbiehinch","gravatar_id":"","url":"https://api.github.com/users/robbiehinch","avatar_url":"https://avatars.githubusercontent.com/u/2915850?"},"repo":{"id":11255997,"name":"watilde/tvm","url":"https://api.github.com/repos/watilde/tvm"},"payload":{"forkee":{"id":28688894,"name":"tvm","full_name":"robbiehinch/tvm","owner":{"login":"robbiehinch","id":2915850,"avatar_url":"https://avatars.githubusercontent.com/u/2915850?v=3","gravatar_id":"","url":"https://api.github.com/users/robbiehinch","html_url":"https://github.com/robbiehinch","followers_url":"https://api.github.com/users/robbiehinch/followers","following_url":"https://api.github.com/users/robbiehinch/following{/other_user}","gists_url":"https://api.github.com/users/robbiehinch/gists{/gist_id}","starred_url":"https://api.github.com/users/robbiehinch/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robbiehinch/subscriptions","organizations_url":"https://api.github.com/users/robbiehinch/orgs","repos_url":"https://api.github.com/users/robbiehinch/repos","events_url":"https://api.github.com/users/robbiehinch/events{/privacy}","received_events_url":"https://api.github.com/users/robbiehinch/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/robbiehinch/tvm","description":"TypeScript Version Manager","fork":true,"url":"https://api.github.com/repos/robbiehinch/tvm","forks_url":"https://api.github.com/repos/robbiehinch/tvm/forks","keys_url":"https://api.github.com/repos/robbiehinch/tvm/keys{/key_id}","collaborators_url":"https://api.github.com/repos/robbiehinch/tvm/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/robbiehinch/tvm/teams","hooks_url":"https://api.github.com/repos/robbiehinch/tvm/hooks","issue_events_url":"https://api.github.com/repos/robbiehinch/tvm/issues/events{/number}","events_url":"https://api.github.com/repos/robbiehinch/tvm/events","assignees_url":"https://api.github.com/repos/robbiehinch/tvm/assignees{/user}","branches_url":"https://api.github.com/repos/robbiehinch/tvm/branches{/branch}","tags_url":"https://api.github.com/repos/robbiehinch/tvm/tags","blobs_url":"https://api.github.com/repos/robbiehinch/tvm/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/robbiehinch/tvm/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/robbiehinch/tvm/git/refs{/sha}","trees_url":"https://api.github.com/repos/robbiehinch/tvm/git/trees{/sha}","statuses_url":"https://api.github.com/repos/robbiehinch/tvm/statuses/{sha}","languages_url":"https://api.github.com/repos/robbiehinch/tvm/languages","stargazers_url":"https://api.github.com/repos/robbiehinch/tvm/stargazers","contributors_url":"https://api.github.com/repos/robbiehinch/tvm/contributors","subscribers_url":"https://api.github.com/repos/robbiehinch/tvm/subscribers","subscription_url":"https://api.github.com/repos/robbiehinch/tvm/subscription","commits_url":"https://api.github.com/repos/robbiehinch/tvm/commits{/sha}","git_commits_url":"https://api.github.com/repos/robbiehinch/tvm/git/commits{/sha}","comments_url":"https://api.github.com/repos/robbiehinch/tvm/comments{/number}","issue_comment_url":"https://api.github.com/repos/robbiehinch/tvm/issues/comments/{number}","contents_url":"https://api.github.com/repos/robbiehinch/tvm/contents/{+path}","compare_url":"https://api.github.com/repos/robbiehinch/tvm/compare/{base}...{head}","merges_url":"https://api.github.com/repos/robbiehinch/tvm/merges","archive_url":"https://api.github.com/repos/robbiehinch/tvm/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/robbiehinch/tvm/downloads","issues_url":"https://api.github.com/repos/robbiehinch/tvm/issues{/number}","pulls_url":"https://api.github.com/repos/robbiehinch/tvm/pulls{/number}","milestones_url":"https://api.github.com/repos/robbiehinch/tvm/milestones{/number}","notifications_url":"https://api.github.com/repos/robbiehinch/tvm/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/robbiehinch/tvm/labels{/name}","releases_url":"https://api.github.com/repos/robbiehinch/tvm/releases{/id}","created_at":"2015-01-01T15:15:40Z","updated_at":"2014-12-16T10:18:58Z","pushed_at":"2014-12-16T08:16:19Z","git_url":"git://github.com/robbiehinch/tvm.git","ssh_url":"git@github.com:robbiehinch/tvm.git","clone_url":"https://github.com/robbiehinch/tvm.git","svn_url":"https://github.com/robbiehinch/tvm","homepage":"http://watilde.github.io/tvm","size":1117,"stargazers_count":0,"watchers_count":0,"language":null,"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","public":true}},"public":true,"created_at":"2015-01-01T15:15:40Z"} +,{"id":"2489658257","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":20830341,"name":"hex7c0/tickle","url":"https://api.github.com/repos/hex7c0/tickle"},"payload":{"push_id":536867256,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"7791a87748d05aa92378cb8a25b3221b8e457853","before":"aa587690592828d63a4f31669b4130822b83da5c","commits":[{"sha":"617a420f7834500d58575a001e64df47bc20153f","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"travis docker","distinct":true,"url":"https://api.github.com/repos/hex7c0/tickle/commits/617a420f7834500d58575a001e64df47bc20153f"},{"sha":"7791a87748d05aa92378cb8a25b3221b8e457853","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"update devDependencies","distinct":true,"url":"https://api.github.com/repos/hex7c0/tickle/commits/7791a87748d05aa92378cb8a25b3221b8e457853"}]},"public":true,"created_at":"2015-01-01T15:15:41Z"} +,{"id":"2489658258","type":"CreateEvent","actor":{"id":3929133,"login":"valeriangalliat","gravatar_id":"","url":"https://api.github.com/users/valeriangalliat","avatar_url":"https://avatars.githubusercontent.com/u/3929133?"},"repo":{"id":28688889,"name":"SassDoc/team","url":"https://api.github.com/repos/SassDoc/team"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"SassDoc team collaboration tools.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:15:41Z","org":{"id":8111770,"login":"SassDoc","gravatar_id":"","url":"https://api.github.com/orgs/SassDoc","avatar_url":"https://avatars.githubusercontent.com/u/8111770?"}} +,{"id":"2489658261","type":"PushEvent","actor":{"id":3000034,"login":"ssir","gravatar_id":"","url":"https://api.github.com/users/ssir","avatar_url":"https://avatars.githubusercontent.com/u/3000034?"},"repo":{"id":22101340,"name":"ssir/ssir.github.io","url":"https://api.github.com/repos/ssir/ssir.github.io"},"payload":{"push_id":536867259,"size":2,"distinct_size":2,"ref":"refs/heads/source","head":"9b48ba9bf8f739de8ffbc42ab1662a2b17b9fd55","before":"6cd3ae5e0b59eaa0b202c186f519e442deb5811c","commits":[{"sha":"45cdf58a069f29a883d7dadc1a3a6478fffacd1f","author":{"email":"118ed6118e893d16e8c6e0776e0ebc290952c897@nbd.(none)","name":"nbding"},"message":"back","distinct":true,"url":"https://api.github.com/repos/ssir/ssir.github.io/commits/45cdf58a069f29a883d7dadc1a3a6478fffacd1f"},{"sha":"9b48ba9bf8f739de8ffbc42ab1662a2b17b9fd55","author":{"email":"118ed6118e893d16e8c6e0776e0ebc290952c897@nbd.(none)","name":"nbding"},"message":"back","distinct":true,"url":"https://api.github.com/repos/ssir/ssir.github.io/commits/9b48ba9bf8f739de8ffbc42ab1662a2b17b9fd55"}]},"public":true,"created_at":"2015-01-01T15:15:41Z"} +,{"id":"2489658262","type":"PushEvent","actor":{"id":3873944,"login":"eldiablolives","gravatar_id":"","url":"https://api.github.com/users/eldiablolives","avatar_url":"https://avatars.githubusercontent.com/u/3873944?"},"repo":{"id":28681926,"name":"eldiablolives/avatar","url":"https://api.github.com/repos/eldiablolives/avatar"},"payload":{"push_id":536867260,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"605bdb95902bac3f91e571a50486fdedd2329c1d","before":"33b42299d068f0759d2597d110c8207f04855965","commits":[{"sha":"605bdb95902bac3f91e571a50486fdedd2329c1d","author":{"email":"05aab161c10aa999284dbdff945a46d627279770@live.com","name":"el'diablo"},"message":"initial load","distinct":true,"url":"https://api.github.com/repos/eldiablolives/avatar/commits/605bdb95902bac3f91e571a50486fdedd2329c1d"}]},"public":true,"created_at":"2015-01-01T15:15:41Z"} +,{"id":"2489658271","type":"CreateEvent","actor":{"id":6807,"login":"boone","gravatar_id":"","url":"https://api.github.com/users/boone","avatar_url":"https://avatars.githubusercontent.com/u/6807?"},"repo":{"id":28687410,"name":"boone/schema_plus","url":"https://api.github.com/repos/boone/schema_plus"},"payload":{"ref":"bugfix/_index","ref_type":"branch","master_branch":"master","description":"SchemaPlus provides ActiveRecord support for foreign keys, database defined validations and associations.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:15:42Z"} +,{"id":"2489658275","type":"WatchEvent","actor":{"id":275036,"login":"json-wong","gravatar_id":"","url":"https://api.github.com/users/json-wong","avatar_url":"https://avatars.githubusercontent.com/u/275036?"},"repo":{"id":1129010,"name":"blueimp/jQuery-File-Upload","url":"https://api.github.com/repos/blueimp/jQuery-File-Upload"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:15:42Z"} +,{"id":"2489658280","type":"PushEvent","actor":{"id":493913,"login":"samplesizeofone","gravatar_id":"","url":"https://api.github.com/users/samplesizeofone","avatar_url":"https://avatars.githubusercontent.com/u/493913?"},"repo":{"id":28688058,"name":"samplesizeofone/objective","url":"https://api.github.com/repos/samplesizeofone/objective"},"payload":{"push_id":536867269,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"97255bdb90f3e2dc3420bc49fc4b1e4961cac7ba","before":"cda9b5033348b3eb638e827dad53a4a55dd34af6","commits":[{"sha":"97255bdb90f3e2dc3420bc49fc4b1e4961cac7ba","author":{"email":"9163c3686bc8e784352942f54449ab33ced8106f@straylight.local","name":"Tyler Spaeth"},"message":"Add partial first draft of objective to readme.","distinct":true,"url":"https://api.github.com/repos/samplesizeofone/objective/commits/97255bdb90f3e2dc3420bc49fc4b1e4961cac7ba"}]},"public":true,"created_at":"2015-01-01T15:15:43Z"} +,{"id":"2489658282","type":"IssueCommentEvent","actor":{"id":3336166,"login":"Angelfirenze","gravatar_id":"","url":"https://api.github.com/users/Angelfirenze","avatar_url":"https://avatars.githubusercontent.com/u/3336166?"},"repo":{"id":20413356,"name":"deadlyvipers/dojo_rules","url":"https://api.github.com/repos/deadlyvipers/dojo_rules"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/deadlyvipers/dojo_rules/issues/2871","labels_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/issues/2871/labels{/name}","comments_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/issues/2871/comments","events_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/issues/2871/events","html_url":"https://github.com/deadlyvipers/dojo_rules/pull/2871","id":52870869,"number":2871,"title":"Deadly Skills","user":{"login":"Angelfirenze","id":3336166,"avatar_url":"https://avatars.githubusercontent.com/u/3336166?v=3","gravatar_id":"","url":"https://api.github.com/users/Angelfirenze","html_url":"https://github.com/Angelfirenze","followers_url":"https://api.github.com/users/Angelfirenze/followers","following_url":"https://api.github.com/users/Angelfirenze/following{/other_user}","gists_url":"https://api.github.com/users/Angelfirenze/gists{/gist_id}","starred_url":"https://api.github.com/users/Angelfirenze/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Angelfirenze/subscriptions","organizations_url":"https://api.github.com/users/Angelfirenze/orgs","repos_url":"https://api.github.com/users/Angelfirenze/repos","events_url":"https://api.github.com/users/Angelfirenze/events{/privacy}","received_events_url":"https://api.github.com/users/Angelfirenze/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-25T19:42:23Z","updated_at":"2015-01-01T15:15:43Z","closed_at":"2015-01-01T15:15:43Z","pull_request":{"url":"https://api.github.com/repos/deadlyvipers/dojo_rules/pulls/2871","html_url":"https://github.com/deadlyvipers/dojo_rules/pull/2871","diff_url":"https://github.com/deadlyvipers/dojo_rules/pull/2871.diff","patch_url":"https://github.com/deadlyvipers/dojo_rules/pull/2871.patch"},"body":" * Git\r\n\r\n* Ruby\r\n\r\n* Adobe Photoshop\r\n\r\n* Killer rebasing skills in Git and Github."},"comment":{"url":"https://api.github.com/repos/deadlyvipers/dojo_rules/issues/comments/68488816","html_url":"https://github.com/deadlyvipers/dojo_rules/pull/2871#issuecomment-68488816","issue_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/issues/2871","id":68488816,"user":{"login":"Angelfirenze","id":3336166,"avatar_url":"https://avatars.githubusercontent.com/u/3336166?v=3","gravatar_id":"","url":"https://api.github.com/users/Angelfirenze","html_url":"https://github.com/Angelfirenze","followers_url":"https://api.github.com/users/Angelfirenze/followers","following_url":"https://api.github.com/users/Angelfirenze/following{/other_user}","gists_url":"https://api.github.com/users/Angelfirenze/gists{/gist_id}","starred_url":"https://api.github.com/users/Angelfirenze/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Angelfirenze/subscriptions","organizations_url":"https://api.github.com/users/Angelfirenze/orgs","repos_url":"https://api.github.com/users/Angelfirenze/repos","events_url":"https://api.github.com/users/Angelfirenze/events{/privacy}","received_events_url":"https://api.github.com/users/Angelfirenze/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:15:43Z","updated_at":"2015-01-01T15:15:43Z","body":"Closing pull request after having created v1.2.0 tag for dojo_rules fork."}},"public":true,"created_at":"2015-01-01T15:15:43Z","org":{"id":7718750,"login":"deadlyvipers","gravatar_id":"","url":"https://api.github.com/orgs/deadlyvipers","avatar_url":"https://avatars.githubusercontent.com/u/7718750?"}} +,{"id":"2489658283","type":"PullRequestEvent","actor":{"id":3336166,"login":"Angelfirenze","gravatar_id":"","url":"https://api.github.com/users/Angelfirenze","avatar_url":"https://avatars.githubusercontent.com/u/3336166?"},"repo":{"id":20413356,"name":"deadlyvipers/dojo_rules","url":"https://api.github.com/repos/deadlyvipers/dojo_rules"},"payload":{"action":"closed","number":2871,"pull_request":{"url":"https://api.github.com/repos/deadlyvipers/dojo_rules/pulls/2871","id":26585864,"html_url":"https://github.com/deadlyvipers/dojo_rules/pull/2871","diff_url":"https://github.com/deadlyvipers/dojo_rules/pull/2871.diff","patch_url":"https://github.com/deadlyvipers/dojo_rules/pull/2871.patch","issue_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/issues/2871","number":2871,"state":"closed","locked":false,"title":"Deadly Skills","user":{"login":"Angelfirenze","id":3336166,"avatar_url":"https://avatars.githubusercontent.com/u/3336166?v=3","gravatar_id":"","url":"https://api.github.com/users/Angelfirenze","html_url":"https://github.com/Angelfirenze","followers_url":"https://api.github.com/users/Angelfirenze/followers","following_url":"https://api.github.com/users/Angelfirenze/following{/other_user}","gists_url":"https://api.github.com/users/Angelfirenze/gists{/gist_id}","starred_url":"https://api.github.com/users/Angelfirenze/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Angelfirenze/subscriptions","organizations_url":"https://api.github.com/users/Angelfirenze/orgs","repos_url":"https://api.github.com/users/Angelfirenze/repos","events_url":"https://api.github.com/users/Angelfirenze/events{/privacy}","received_events_url":"https://api.github.com/users/Angelfirenze/received_events","type":"User","site_admin":false},"body":" * Git\r\n\r\n* Ruby\r\n\r\n* Adobe Photoshop\r\n\r\n* Killer rebasing skills in Git and Github.","created_at":"2014-12-25T19:42:23Z","updated_at":"2015-01-01T15:15:43Z","closed_at":"2015-01-01T15:15:43Z","merged_at":null,"merge_commit_sha":"b54d04943394d26444a5e005242d4d44f632ee88","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/pulls/2871/commits","review_comments_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/pulls/2871/comments","review_comment_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/pulls/comments/{number}","comments_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/issues/2871/comments","statuses_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/statuses/76a5d6dfef3a085074976952e963ed72fe0ade86","head":{"label":"Angelfirenze:master","ref":"master","sha":"76a5d6dfef3a085074976952e963ed72fe0ade86","user":{"login":"Angelfirenze","id":3336166,"avatar_url":"https://avatars.githubusercontent.com/u/3336166?v=3","gravatar_id":"","url":"https://api.github.com/users/Angelfirenze","html_url":"https://github.com/Angelfirenze","followers_url":"https://api.github.com/users/Angelfirenze/followers","following_url":"https://api.github.com/users/Angelfirenze/following{/other_user}","gists_url":"https://api.github.com/users/Angelfirenze/gists{/gist_id}","starred_url":"https://api.github.com/users/Angelfirenze/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Angelfirenze/subscriptions","organizations_url":"https://api.github.com/users/Angelfirenze/orgs","repos_url":"https://api.github.com/users/Angelfirenze/repos","events_url":"https://api.github.com/users/Angelfirenze/events{/privacy}","received_events_url":"https://api.github.com/users/Angelfirenze/received_events","type":"User","site_admin":false},"repo":{"id":28203649,"name":"dojo_rules","full_name":"Angelfirenze/dojo_rules","owner":{"login":"Angelfirenze","id":3336166,"avatar_url":"https://avatars.githubusercontent.com/u/3336166?v=3","gravatar_id":"","url":"https://api.github.com/users/Angelfirenze","html_url":"https://github.com/Angelfirenze","followers_url":"https://api.github.com/users/Angelfirenze/followers","following_url":"https://api.github.com/users/Angelfirenze/following{/other_user}","gists_url":"https://api.github.com/users/Angelfirenze/gists{/gist_id}","starred_url":"https://api.github.com/users/Angelfirenze/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Angelfirenze/subscriptions","organizations_url":"https://api.github.com/users/Angelfirenze/orgs","repos_url":"https://api.github.com/users/Angelfirenze/repos","events_url":"https://api.github.com/users/Angelfirenze/events{/privacy}","received_events_url":"https://api.github.com/users/Angelfirenze/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Angelfirenze/dojo_rules","description":"","fork":true,"url":"https://api.github.com/repos/Angelfirenze/dojo_rules","forks_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/forks","keys_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/teams","hooks_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/hooks","issue_events_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/issues/events{/number}","events_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/events","assignees_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/assignees{/user}","branches_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/branches{/branch}","tags_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/tags","blobs_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/git/refs{/sha}","trees_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/statuses/{sha}","languages_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/languages","stargazers_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/stargazers","contributors_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/contributors","subscribers_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/subscribers","subscription_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/subscription","commits_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/commits{/sha}","git_commits_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/git/commits{/sha}","comments_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/comments{/number}","issue_comment_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/issues/comments/{number}","contents_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/contents/{+path}","compare_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/merges","archive_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/downloads","issues_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/issues{/number}","pulls_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/pulls{/number}","milestones_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/milestones{/number}","notifications_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/labels{/name}","releases_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/releases{/id}","created_at":"2014-12-18T22:06:16Z","updated_at":"2014-12-25T19:39:38Z","pushed_at":"2015-01-01T15:14:06Z","git_url":"git://github.com/Angelfirenze/dojo_rules.git","ssh_url":"git@github.com:Angelfirenze/dojo_rules.git","clone_url":"https://github.com/Angelfirenze/dojo_rules.git","svn_url":"https://github.com/Angelfirenze/dojo_rules","homepage":null,"size":152,"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":"deadlyvipers:master","ref":"master","sha":"4a2cee3f506998d0b48d62221c9ef66177a6dec4","user":{"login":"deadlyvipers","id":7718750,"avatar_url":"https://avatars.githubusercontent.com/u/7718750?v=3","gravatar_id":"","url":"https://api.github.com/users/deadlyvipers","html_url":"https://github.com/deadlyvipers","followers_url":"https://api.github.com/users/deadlyvipers/followers","following_url":"https://api.github.com/users/deadlyvipers/following{/other_user}","gists_url":"https://api.github.com/users/deadlyvipers/gists{/gist_id}","starred_url":"https://api.github.com/users/deadlyvipers/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deadlyvipers/subscriptions","organizations_url":"https://api.github.com/users/deadlyvipers/orgs","repos_url":"https://api.github.com/users/deadlyvipers/repos","events_url":"https://api.github.com/users/deadlyvipers/events{/privacy}","received_events_url":"https://api.github.com/users/deadlyvipers/received_events","type":"Organization","site_admin":false},"repo":{"id":20413356,"name":"dojo_rules","full_name":"deadlyvipers/dojo_rules","owner":{"login":"deadlyvipers","id":7718750,"avatar_url":"https://avatars.githubusercontent.com/u/7718750?v=3","gravatar_id":"","url":"https://api.github.com/users/deadlyvipers","html_url":"https://github.com/deadlyvipers","followers_url":"https://api.github.com/users/deadlyvipers/followers","following_url":"https://api.github.com/users/deadlyvipers/following{/other_user}","gists_url":"https://api.github.com/users/deadlyvipers/gists{/gist_id}","starred_url":"https://api.github.com/users/deadlyvipers/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deadlyvipers/subscriptions","organizations_url":"https://api.github.com/users/deadlyvipers/orgs","repos_url":"https://api.github.com/users/deadlyvipers/repos","events_url":"https://api.github.com/users/deadlyvipers/events{/privacy}","received_events_url":"https://api.github.com/users/deadlyvipers/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/deadlyvipers/dojo_rules","description":"","fork":false,"url":"https://api.github.com/repos/deadlyvipers/dojo_rules","forks_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/forks","keys_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/keys{/key_id}","collaborators_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/teams","hooks_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/hooks","issue_events_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/issues/events{/number}","events_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/events","assignees_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/assignees{/user}","branches_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/branches{/branch}","tags_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/tags","blobs_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/git/refs{/sha}","trees_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/git/trees{/sha}","statuses_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/statuses/{sha}","languages_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/languages","stargazers_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/stargazers","contributors_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/contributors","subscribers_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/subscribers","subscription_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/subscription","commits_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/commits{/sha}","git_commits_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/git/commits{/sha}","comments_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/comments{/number}","issue_comment_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/issues/comments/{number}","contents_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/contents/{+path}","compare_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/compare/{base}...{head}","merges_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/merges","archive_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/downloads","issues_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/issues{/number}","pulls_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/pulls{/number}","milestones_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/milestones{/number}","notifications_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/labels{/name}","releases_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/releases{/id}","created_at":"2014-06-02T17:42:50Z","updated_at":"2014-12-16T08:18:47Z","pushed_at":"2014-06-06T14:35:25Z","git_url":"git://github.com/deadlyvipers/dojo_rules.git","ssh_url":"git@github.com:deadlyvipers/dojo_rules.git","clone_url":"https://github.com/deadlyvipers/dojo_rules.git","svn_url":"https://github.com/deadlyvipers/dojo_rules","homepage":null,"size":545,"stargazers_count":11,"watchers_count":11,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":1425,"mirror_url":null,"open_issues_count":2453,"forks":1425,"open_issues":2453,"watchers":11,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/deadlyvipers/dojo_rules/pulls/2871"},"html":{"href":"https://github.com/deadlyvipers/dojo_rules/pull/2871"},"issue":{"href":"https://api.github.com/repos/deadlyvipers/dojo_rules/issues/2871"},"comments":{"href":"https://api.github.com/repos/deadlyvipers/dojo_rules/issues/2871/comments"},"review_comments":{"href":"https://api.github.com/repos/deadlyvipers/dojo_rules/pulls/2871/comments"},"review_comment":{"href":"https://api.github.com/repos/deadlyvipers/dojo_rules/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/deadlyvipers/dojo_rules/pulls/2871/commits"},"statuses":{"href":"https://api.github.com/repos/deadlyvipers/dojo_rules/statuses/76a5d6dfef3a085074976952e963ed72fe0ade86"}},"merged":false,"mergeable":true,"mergeable_state":"clean","merged_by":null,"comments":1,"review_comments":0,"commits":12,"additions":34,"deletions":4,"changed_files":9}},"public":true,"created_at":"2015-01-01T15:15:43Z","org":{"id":7718750,"login":"deadlyvipers","gravatar_id":"","url":"https://api.github.com/orgs/deadlyvipers","avatar_url":"https://avatars.githubusercontent.com/u/7718750?"}} +,{"id":"2489658287","type":"CreateEvent","actor":{"id":7450973,"login":"riemann111","gravatar_id":"","url":"https://api.github.com/users/riemann111","avatar_url":"https://avatars.githubusercontent.com/u/7450973?"},"repo":{"id":28688893,"name":"riemann111/SEssence","url":"https://api.github.com/repos/riemann111/SEssence"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"RSBot essence miner [OSRS]","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:15:44Z"} +,{"id":"2489658292","type":"PushEvent","actor":{"id":7666055,"login":"sivir","gravatar_id":"","url":"https://api.github.com/users/sivir","avatar_url":"https://avatars.githubusercontent.com/u/7666055?"},"repo":{"id":27804731,"name":"sivir/baikal1","url":"https://api.github.com/repos/sivir/baikal1"},"payload":{"push_id":536867273,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7581a63bd594adfb1e5f9a7250c3843d2dc8808a","before":"0e6ad312b06237501d4816b31e1a67bd60bedb57","commits":[{"sha":"7581a63bd594adfb1e5f9a7250c3843d2dc8808a","author":{"email":"1e2053d8b74af812877a9ba6f0caba8976b70fc7@gmail.com","name":"Egor Potiomkin"},"message":"music","distinct":true,"url":"https://api.github.com/repos/sivir/baikal1/commits/7581a63bd594adfb1e5f9a7250c3843d2dc8808a"}]},"public":true,"created_at":"2015-01-01T15:15:45Z"} +,{"id":"2489658294","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":23177527,"name":"pumadong/cl-commodity","url":"https://api.github.com/repos/pumadong/cl-commodity"},"payload":{"forkee":{"id":28688895,"name":"cl-commodity","full_name":"weiguo21/cl-commodity","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/cl-commodity","description":"商品管理系统:管理商品(基本信息、属性、图片、价格)、品牌、分类等基础信息。","fork":true,"url":"https://api.github.com/repos/weiguo21/cl-commodity","forks_url":"https://api.github.com/repos/weiguo21/cl-commodity/forks","keys_url":"https://api.github.com/repos/weiguo21/cl-commodity/keys{/key_id}","collaborators_url":"https://api.github.com/repos/weiguo21/cl-commodity/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/weiguo21/cl-commodity/teams","hooks_url":"https://api.github.com/repos/weiguo21/cl-commodity/hooks","issue_events_url":"https://api.github.com/repos/weiguo21/cl-commodity/issues/events{/number}","events_url":"https://api.github.com/repos/weiguo21/cl-commodity/events","assignees_url":"https://api.github.com/repos/weiguo21/cl-commodity/assignees{/user}","branches_url":"https://api.github.com/repos/weiguo21/cl-commodity/branches{/branch}","tags_url":"https://api.github.com/repos/weiguo21/cl-commodity/tags","blobs_url":"https://api.github.com/repos/weiguo21/cl-commodity/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/weiguo21/cl-commodity/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/weiguo21/cl-commodity/git/refs{/sha}","trees_url":"https://api.github.com/repos/weiguo21/cl-commodity/git/trees{/sha}","statuses_url":"https://api.github.com/repos/weiguo21/cl-commodity/statuses/{sha}","languages_url":"https://api.github.com/repos/weiguo21/cl-commodity/languages","stargazers_url":"https://api.github.com/repos/weiguo21/cl-commodity/stargazers","contributors_url":"https://api.github.com/repos/weiguo21/cl-commodity/contributors","subscribers_url":"https://api.github.com/repos/weiguo21/cl-commodity/subscribers","subscription_url":"https://api.github.com/repos/weiguo21/cl-commodity/subscription","commits_url":"https://api.github.com/repos/weiguo21/cl-commodity/commits{/sha}","git_commits_url":"https://api.github.com/repos/weiguo21/cl-commodity/git/commits{/sha}","comments_url":"https://api.github.com/repos/weiguo21/cl-commodity/comments{/number}","issue_comment_url":"https://api.github.com/repos/weiguo21/cl-commodity/issues/comments/{number}","contents_url":"https://api.github.com/repos/weiguo21/cl-commodity/contents/{+path}","compare_url":"https://api.github.com/repos/weiguo21/cl-commodity/compare/{base}...{head}","merges_url":"https://api.github.com/repos/weiguo21/cl-commodity/merges","archive_url":"https://api.github.com/repos/weiguo21/cl-commodity/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/weiguo21/cl-commodity/downloads","issues_url":"https://api.github.com/repos/weiguo21/cl-commodity/issues{/number}","pulls_url":"https://api.github.com/repos/weiguo21/cl-commodity/pulls{/number}","milestones_url":"https://api.github.com/repos/weiguo21/cl-commodity/milestones{/number}","notifications_url":"https://api.github.com/repos/weiguo21/cl-commodity/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/weiguo21/cl-commodity/labels{/name}","releases_url":"https://api.github.com/repos/weiguo21/cl-commodity/releases{/id}","created_at":"2015-01-01T15:15:45Z","updated_at":"2014-10-26T11:53:52Z","pushed_at":"2014-09-19T16:46:42Z","git_url":"git://github.com/weiguo21/cl-commodity.git","ssh_url":"git@github.com:weiguo21/cl-commodity.git","clone_url":"https://github.com/weiguo21/cl-commodity.git","svn_url":"https://github.com/weiguo21/cl-commodity","homepage":"","size":269,"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:15:45Z"} +,{"id":"2489658295","type":"DeleteEvent","actor":{"id":8203373,"login":"Sadchant","gravatar_id":"","url":"https://api.github.com/users/Sadchant","avatar_url":"https://avatars.githubusercontent.com/u/8203373?"},"repo":{"id":21988911,"name":"Sadchant/Remarius","url":"https://api.github.com/repos/Sadchant/Remarius"},"payload":{"ref":"komplettes-Rendering-neu","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:15:45Z"} +,{"id":"2489658300","type":"IssueCommentEvent","actor":{"id":3618217,"login":"Dynious","gravatar_id":"","url":"https://api.github.com/users/Dynious","avatar_url":"https://avatars.githubusercontent.com/u/3618217?"},"repo":{"id":15116871,"name":"Dynious/RefinedRelocation","url":"https://api.github.com/repos/Dynious/RefinedRelocation"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/Dynious/RefinedRelocation/issues/254","labels_url":"https://api.github.com/repos/Dynious/RefinedRelocation/issues/254/labels{/name}","comments_url":"https://api.github.com/repos/Dynious/RefinedRelocation/issues/254/comments","events_url":"https://api.github.com/repos/Dynious/RefinedRelocation/issues/254/events","html_url":"https://github.com/Dynious/RefinedRelocation/issues/254","id":53220531,"number":254,"title":"Sorting Chests improved interface.","user":{"login":"Rapthera","id":7802028,"avatar_url":"https://avatars.githubusercontent.com/u/7802028?v=3","gravatar_id":"","url":"https://api.github.com/users/Rapthera","html_url":"https://github.com/Rapthera","followers_url":"https://api.github.com/users/Rapthera/followers","following_url":"https://api.github.com/users/Rapthera/following{/other_user}","gists_url":"https://api.github.com/users/Rapthera/gists{/gist_id}","starred_url":"https://api.github.com/users/Rapthera/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Rapthera/subscriptions","organizations_url":"https://api.github.com/users/Rapthera/orgs","repos_url":"https://api.github.com/users/Rapthera/repos","events_url":"https://api.github.com/users/Rapthera/events{/privacy}","received_events_url":"https://api.github.com/users/Rapthera/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T14:17:23Z","updated_at":"2015-01-01T15:15:45Z","closed_at":null,"body":"Alright, I have a simple suggestion for the Sorting Chests interface, for it to expanded a bit.\r\n\r\n* Being able to create your own mod-like filters, for example creating a filter which contains all vanilla items or editing the thaumcraft filter and adding items, eg: paper.\r\n\r\n* Having a bit more space for writing the filters since right now after having 4,5 custom ore dictionary items makes the writing box a bit clogged up and hard to see.\r\n\r\nI don't know if this has been suggested before, if it has I am very sorry.\r\ncheers."},"comment":{"url":"https://api.github.com/repos/Dynious/RefinedRelocation/issues/comments/68488817","html_url":"https://github.com/Dynious/RefinedRelocation/issues/254#issuecomment-68488817","issue_url":"https://api.github.com/repos/Dynious/RefinedRelocation/issues/254","id":68488817,"user":{"login":"Dynious","id":3618217,"avatar_url":"https://avatars.githubusercontent.com/u/3618217?v=3","gravatar_id":"","url":"https://api.github.com/users/Dynious","html_url":"https://github.com/Dynious","followers_url":"https://api.github.com/users/Dynious/followers","following_url":"https://api.github.com/users/Dynious/following{/other_user}","gists_url":"https://api.github.com/users/Dynious/gists{/gist_id}","starred_url":"https://api.github.com/users/Dynious/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Dynious/subscriptions","organizations_url":"https://api.github.com/users/Dynious/orgs","repos_url":"https://api.github.com/users/Dynious/repos","events_url":"https://api.github.com/users/Dynious/events{/privacy}","received_events_url":"https://api.github.com/users/Dynious/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:15:45Z","updated_at":"2015-01-01T15:15:45Z","body":"The sorting & filtering interface will get a complete overhaul soon!"}},"public":true,"created_at":"2015-01-01T15:15:46Z"} +,{"id":"2489658305","type":"PushEvent","actor":{"id":5282985,"login":"danhantao","gravatar_id":"","url":"https://api.github.com/users/danhantao","avatar_url":"https://avatars.githubusercontent.com/u/5282985?"},"repo":{"id":28504430,"name":"danhantao/github-gist","url":"https://api.github.com/repos/danhantao/github-gist"},"payload":{"push_id":536867277,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"78cc875ec390998985d891808836544cceeb21ef","before":"e62d2826998a0b9b7d4b986c00716d1fbe22dd55","commits":[{"sha":"78cc875ec390998985d891808836544cceeb21ef","author":{"email":"ae539fbcafe14da9ada4fb266794e80d875b85fb@goodow.com","name":"danhantao"},"message":"update","distinct":true,"url":"https://api.github.com/repos/danhantao/github-gist/commits/78cc875ec390998985d891808836544cceeb21ef"}]},"public":true,"created_at":"2015-01-01T15:15:46Z"} +,{"id":"2489658306","type":"PushEvent","actor":{"id":8964128,"login":"sggd","gravatar_id":"","url":"https://api.github.com/users/sggd","avatar_url":"https://avatars.githubusercontent.com/u/8964128?"},"repo":{"id":28598740,"name":"sggd/sggd.github.io","url":"https://api.github.com/repos/sggd/sggd.github.io"},"payload":{"push_id":536867276,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"7b4ceccf25362c6463f19cb2fb108b67e86f9676","before":"a5dfcadee5e88657101d98fc2b95d58596a7a22d","commits":[{"sha":"56a17d532e5826efcc8bc999fea3e15ed01a4572","author":{"email":"068bd037f27383a256adab786bbaf8621a72eb66@whu.edu.cn","name":"罗华"},"message":"First commit","distinct":true,"url":"https://api.github.com/repos/sggd/sggd.github.io/commits/56a17d532e5826efcc8bc999fea3e15ed01a4572"},{"sha":"7b4ceccf25362c6463f19cb2fb108b67e86f9676","author":{"email":"068bd037f27383a256adab786bbaf8621a72eb66@whu.edu.cn","name":"罗华"},"message":"Site updated: 2015-01-01 23:15:19","distinct":true,"url":"https://api.github.com/repos/sggd/sggd.github.io/commits/7b4ceccf25362c6463f19cb2fb108b67e86f9676"}]},"public":true,"created_at":"2015-01-01T15:15:46Z"} +,{"id":"2489658323","type":"PushEvent","actor":{"id":3450932,"login":"i0z","gravatar_id":"","url":"https://api.github.com/users/i0z","avatar_url":"https://avatars.githubusercontent.com/u/3450932?"},"repo":{"id":12269661,"name":"i0z/domain","url":"https://api.github.com/repos/i0z/domain"},"payload":{"push_id":536867279,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0a6a1cefdf4a0d4a437991c1deaef386a16df9bb","before":"6699c0b46ccfe3b8a69eb662d6a4bda500155399","commits":[{"sha":"0a6a1cefdf4a0d4a437991c1deaef386a16df9bb","author":{"email":"e46fc836cca3acec03944314d1457c2ae6c68ef3@majorov.su","name":"0xy"},"message":"Upgrade. Add install script","distinct":true,"url":"https://api.github.com/repos/i0z/domain/commits/0a6a1cefdf4a0d4a437991c1deaef386a16df9bb"}]},"public":true,"created_at":"2015-01-01T15:15:48Z"} +,{"id":"2489658339","type":"WatchEvent","actor":{"id":318068,"login":"eworkshop","gravatar_id":"","url":"https://api.github.com/users/eworkshop","avatar_url":"https://avatars.githubusercontent.com/u/318068?"},"repo":{"id":9721114,"name":"ericrasmussen/chromaticleaves","url":"https://api.github.com/repos/ericrasmussen/chromaticleaves"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:15:49Z"} +,{"id":"2489658340","type":"PushEvent","actor":{"id":5656504,"login":"rainrambler","gravatar_id":"","url":"https://api.github.com/users/rainrambler","avatar_url":"https://avatars.githubusercontent.com/u/5656504?"},"repo":{"id":15285128,"name":"rainrambler/seccheck","url":"https://api.github.com/repos/rainrambler/seccheck"},"payload":{"push_id":536867283,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"28ea7bd94b41448a4f422dc8f5f616a630f5a707","before":"8d79052edc53723e4664fa72f0a6d600227c23f9","commits":[{"sha":"28ea7bd94b41448a4f422dc8f5f616a630f5a707","author":{"email":"a05287961b0ffbbe33aeb0ef4c77c46253d89eed@outlook.com","name":"rainrambler"},"message":"Added CERT STR37-C checker","distinct":true,"url":"https://api.github.com/repos/rainrambler/seccheck/commits/28ea7bd94b41448a4f422dc8f5f616a630f5a707"}]},"public":true,"created_at":"2015-01-01T15:15:49Z"} +,{"id":"2489658344","type":"PushEvent","actor":{"id":129093,"login":"dochang","gravatar_id":"","url":"https://api.github.com/users/dochang","avatar_url":"https://avatars.githubusercontent.com/u/129093?"},"repo":{"id":17585543,"name":"dochang/el-get","url":"https://api.github.com/repos/dochang/el-get"},"payload":{"push_id":536867285,"size":1,"distinct_size":1,"ref":"refs/heads/fix-github-library","head":"6aa52445548ac8ff49e063472d1cd4ab9354e364","before":"78379a2d75dbfe8867e5cbdd1cae64b85cb066dd","commits":[{"sha":"6aa52445548ac8ff49e063472d1cd4ab9354e364","author":{"email":"ba227e979840553d9ad1c0c0f35ab26495c22689@gmail.com","name":"Desmond O. Chang"},"message":"Return correct library from :pkgname for github based recipe\n\nIf :library and :feature are not specified, eval-after-load will use\n:pkgname as its first argument. For a github based recipe, the :pkgname\nhas two parts: \"username/reponame\". We need to remove the \"username\"\npart before passing :pkgname to eval-after-load .","distinct":true,"url":"https://api.github.com/repos/dochang/el-get/commits/6aa52445548ac8ff49e063472d1cd4ab9354e364"}]},"public":true,"created_at":"2015-01-01T15:15:49Z"} +,{"id":"2489658349","type":"PushEvent","actor":{"id":8651475,"login":"583132460","gravatar_id":"","url":"https://api.github.com/users/583132460","avatar_url":"https://avatars.githubusercontent.com/u/8651475?"},"repo":{"id":28688776,"name":"583132460/Temp","url":"https://api.github.com/repos/583132460/Temp"},"payload":{"push_id":536867286,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"104e3fbb9d855dc90254fb6c93a5c222294816fb","before":"008f4c5fd1d1dafc5ef4a29ca39e23a4a33e105f","commits":[{"sha":"104e3fbb9d855dc90254fb6c93a5c222294816fb","author":{"email":"3f2a00d487dc1f4f49f99af8133e647bc631a0c9@qq.com","name":"583132460"},"message":"Revert \"第二次\"\n\nThis reverts commit 008f4c5fd1d1dafc5ef4a29ca39e23a4a33e105f.","distinct":true,"url":"https://api.github.com/repos/583132460/Temp/commits/104e3fbb9d855dc90254fb6c93a5c222294816fb"}]},"public":true,"created_at":"2015-01-01T15:15:49Z"} +,{"id":"2489658354","type":"PushEvent","actor":{"id":9872969,"login":"boricj","gravatar_id":"","url":"https://api.github.com/users/boricj","avatar_url":"https://avatars.githubusercontent.com/u/9872969?"},"repo":{"id":28446703,"name":"boricj/src","url":"https://api.github.com/repos/boricj/src"},"payload":{"push_id":536867287,"size":1,"distinct_size":1,"ref":"refs/heads/playstation2_port","head":"c4d2ef41e87cb85ed998b2da9e718cdba2e9dd1b","before":"9e82417373c8bf949e5539ac5edee61b0162de8f","commits":[{"sha":"c4d2ef41e87cb85ed998b2da9e718cdba2e9dd1b","author":{"email":"7cb4e41f9882c45ec55c63d94a5e0b09e518bde0@gmail.com","name":"Jean-Baptiste Boric"},"message":"playstation2: machine-dependant initialization code","distinct":true,"url":"https://api.github.com/repos/boricj/src/commits/c4d2ef41e87cb85ed998b2da9e718cdba2e9dd1b"}]},"public":true,"created_at":"2015-01-01T15:15:50Z"} +,{"id":"2489658356","type":"PushEvent","actor":{"id":3111800,"login":"NCCastillo","gravatar_id":"","url":"https://api.github.com/users/NCCastillo","avatar_url":"https://avatars.githubusercontent.com/u/3111800?"},"repo":{"id":28539496,"name":"NCCastillo/tdd_by_example","url":"https://api.github.com/repos/NCCastillo/tdd_by_example"},"payload":{"push_id":536867288,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5bf2932ec14a7ced659a6d1af164617b6783b12a","before":"69dc6e672454324ffa10d18e4e0fe4ef3b8fe277","commits":[{"sha":"5bf2932ec14a7ced659a6d1af164617b6783b12a","author":{"email":"caab7f8885797a0ffa7a9a0888bd4c425e1ba4b9@izea.com","name":"Nestor Castillo"},"message":"Chapter 10, using currency ivar instead of string.","distinct":true,"url":"https://api.github.com/repos/NCCastillo/tdd_by_example/commits/5bf2932ec14a7ced659a6d1af164617b6783b12a"}]},"public":true,"created_at":"2015-01-01T15:15:50Z"} +,{"id":"2489658357","type":"IssuesEvent","actor":{"id":6275962,"login":"MysticCity","gravatar_id":"","url":"https://api.github.com/users/MysticCity","avatar_url":"https://avatars.githubusercontent.com/u/6275962?"},"repo":{"id":15492420,"name":"MysticCity/AncientRPG","url":"https://api.github.com/repos/MysticCity/AncientRPG"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/MysticCity/AncientRPG/issues/137","labels_url":"https://api.github.com/repos/MysticCity/AncientRPG/issues/137/labels{/name}","comments_url":"https://api.github.com/repos/MysticCity/AncientRPG/issues/137/comments","events_url":"https://api.github.com/repos/MysticCity/AncientRPG/issues/137/events","html_url":"https://github.com/MysticCity/AncientRPG/issues/137","id":53221647,"number":137,"title":"Arg add","user":{"login":"MysticCity","id":6275962,"avatar_url":"https://avatars.githubusercontent.com/u/6275962?v=3","gravatar_id":"","url":"https://api.github.com/users/MysticCity","html_url":"https://github.com/MysticCity","followers_url":"https://api.github.com/users/MysticCity/followers","following_url":"https://api.github.com/users/MysticCity/following{/other_user}","gists_url":"https://api.github.com/users/MysticCity/gists{/gist_id}","starred_url":"https://api.github.com/users/MysticCity/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MysticCity/subscriptions","organizations_url":"https://api.github.com/users/MysticCity/orgs","repos_url":"https://api.github.com/users/MysticCity/repos","events_url":"https://api.github.com/users/MysticCity/events{/privacy}","received_events_url":"https://api.github.com/users/MysticCity/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/MysticCity/AncientRPG/labels/Feature+Request","name":"Feature Request","color":"0052cc"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:15:50Z","updated_at":"2015-01-01T15:15:50Z","closed_at":null,"body":"pls add an arg for getEXP"}},"public":true,"created_at":"2015-01-01T15:15:50Z"} +,{"id":"2489658360","type":"PushEvent","actor":{"id":5606293,"login":"bombadil7","gravatar_id":"","url":"https://api.github.com/users/bombadil7","avatar_url":"https://avatars.githubusercontent.com/u/5606293?"},"repo":{"id":28688729,"name":"bombadil7/GitTest","url":"https://api.github.com/repos/bombadil7/GitTest"},"payload":{"push_id":536867289,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"77b45d4bb0978a777471dd251eef793a366134eb","before":"dee663d270e8a79e980ddb8718e509c9d08a8771","commits":[{"sha":"77b45d4bb0978a777471dd251eef793a366134eb","author":{"email":"9a79692b0d8c24d63367fc664f869c82e5e4ae15@gmail.com","name":"bombadil7"},"message":"Made minor change","distinct":true,"url":"https://api.github.com/repos/bombadil7/GitTest/commits/77b45d4bb0978a777471dd251eef793a366134eb"}]},"public":true,"created_at":"2015-01-01T15:15:50Z"} +,{"id":"2489658368","type":"IssuesEvent","actor":{"id":2841857,"login":"Terry-Shi","gravatar_id":"","url":"https://api.github.com/users/Terry-Shi","avatar_url":"https://avatars.githubusercontent.com/u/2841857?"},"repo":{"id":10704544,"name":"Terry-Shi/blog","url":"https://api.github.com/repos/Terry-Shi/blog"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/Terry-Shi/blog/issues/8","labels_url":"https://api.github.com/repos/Terry-Shi/blog/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/Terry-Shi/blog/issues/8/comments","events_url":"https://api.github.com/repos/Terry-Shi/blog/issues/8/events","html_url":"https://github.com/Terry-Shi/blog/issues/8","id":53221648,"number":8,"title":"Mac OSX 10.10 yosemite 性能问题","user":{"login":"Terry-Shi","id":2841857,"avatar_url":"https://avatars.githubusercontent.com/u/2841857?v=3","gravatar_id":"","url":"https://api.github.com/users/Terry-Shi","html_url":"https://github.com/Terry-Shi","followers_url":"https://api.github.com/users/Terry-Shi/followers","following_url":"https://api.github.com/users/Terry-Shi/following{/other_user}","gists_url":"https://api.github.com/users/Terry-Shi/gists{/gist_id}","starred_url":"https://api.github.com/users/Terry-Shi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Terry-Shi/subscriptions","organizations_url":"https://api.github.com/users/Terry-Shi/orgs","repos_url":"https://api.github.com/users/Terry-Shi/repos","events_url":"https://api.github.com/users/Terry-Shi/events{/privacy}","received_events_url":"https://api.github.com/users/Terry-Shi/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:15:50Z","updated_at":"2015-01-01T15:15:50Z","closed_at":null,"body":"如果系统卡顿并且WindowServer 进程占用 cpu 过高:\r\n\r\n参考1: http://www.macissues.com/2014/10/20/prevent-the-windowserver-process-from-dragging-yosemite-down/\r\n\r\n参考2: http://fykuan.hsnuer.net/blog/2014/10/22/升級-osx-10-10-yosemite-後-ui-lag-的解決方法/\r\n\r\n参考3: http://applech2.com/archives/41598800.html"}},"public":true,"created_at":"2015-01-01T15:15:51Z"} +,{"id":"2489658371","type":"IssueCommentEvent","actor":{"id":5514202,"login":"DeeJee","gravatar_id":"","url":"https://api.github.com/users/DeeJee","avatar_url":"https://avatars.githubusercontent.com/u/5514202?"},"repo":{"id":28571307,"name":"DeeJee/VhpTimeLogger","url":"https://api.github.com/repos/DeeJee/VhpTimeLogger"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/7","labels_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/7/comments","events_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/7/events","html_url":"https://github.com/DeeJee/VhpTimeLogger/issues/7","id":53221636,"number":7,"title":"Zoeken in listselect 2","user":{"login":"DeeJee","id":5514202,"avatar_url":"https://avatars.githubusercontent.com/u/5514202?v=3","gravatar_id":"","url":"https://api.github.com/users/DeeJee","html_url":"https://github.com/DeeJee","followers_url":"https://api.github.com/users/DeeJee/followers","following_url":"https://api.github.com/users/DeeJee/following{/other_user}","gists_url":"https://api.github.com/users/DeeJee/gists{/gist_id}","starred_url":"https://api.github.com/users/DeeJee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeeJee/subscriptions","organizations_url":"https://api.github.com/users/DeeJee/orgs","repos_url":"https://api.github.com/users/DeeJee/repos","events_url":"https://api.github.com/users/DeeJee/events{/privacy}","received_events_url":"https://api.github.com/users/DeeJee/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:15:08Z","updated_at":"2015-01-01T15:15:50Z","closed_at":null,"body":"Als je op de standaardmanier zoekt dan wordt wel een item als suggestie gedaan, maar dat wordt soms niet overgenomen. Is er een manier om hiermee een soort auto-complete te maken?\r\n"},"comment":{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/comments/68488819","html_url":"https://github.com/DeeJee/VhpTimeLogger/issues/7#issuecomment-68488819","issue_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/7","id":68488819,"user":{"login":"DeeJee","id":5514202,"avatar_url":"https://avatars.githubusercontent.com/u/5514202?v=3","gravatar_id":"","url":"https://api.github.com/users/DeeJee","html_url":"https://github.com/DeeJee","followers_url":"https://api.github.com/users/DeeJee/followers","following_url":"https://api.github.com/users/DeeJee/following{/other_user}","gists_url":"https://api.github.com/users/DeeJee/gists{/gist_id}","starred_url":"https://api.github.com/users/DeeJee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeeJee/subscriptions","organizations_url":"https://api.github.com/users/DeeJee/orgs","repos_url":"https://api.github.com/users/DeeJee/repos","events_url":"https://api.github.com/users/DeeJee/events{/privacy}","received_events_url":"https://api.github.com/users/DeeJee/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:15:50Z","updated_at":"2015-01-01T15:15:50Z","body":"Ik heb meer informatie nodig. De functie is per definitie een auto-complete. Wat gaat er precies mis? Onder welke omstandigheden?"}},"public":true,"created_at":"2015-01-01T15:15:51Z"} +,{"id":"2489658377","type":"PushEvent","actor":{"id":9975304,"login":"Aercus","gravatar_id":"","url":"https://api.github.com/users/Aercus","avatar_url":"https://avatars.githubusercontent.com/u/9975304?"},"repo":{"id":27220613,"name":"Aercus/p2p-chat-room","url":"https://api.github.com/repos/Aercus/p2p-chat-room"},"payload":{"push_id":536867294,"size":0,"distinct_size":0,"ref":"refs/heads/master","head":"d66960e0bebd2477b8678d4a22409beb3b3795d5","before":"4be45c50babfb5b4b21964be49f5d3d08d44f3ad","commits":[]},"public":true,"created_at":"2015-01-01T15:15:51Z"} +,{"id":"2489658379","type":"PushEvent","actor":{"id":101755,"login":"chentao","gravatar_id":"","url":"https://api.github.com/users/chentao","avatar_url":"https://avatars.githubusercontent.com/u/101755?"},"repo":{"id":28019180,"name":"chentao/zin-web","url":"https://api.github.com/repos/chentao/zin-web"},"payload":{"push_id":536867295,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"634dbc86bc54d64ce98399d8419215a8ce6738ed","before":"f7bdff48a91709231e57d234614ea0ed8aad7bd8","commits":[{"sha":"634dbc86bc54d64ce98399d8419215a8ce6738ed","author":{"email":"81bc25c32256ccf567be11dc07e99ab5662a8065@gmail.com","name":"chentao"},"message":"ssid edit button","distinct":true,"url":"https://api.github.com/repos/chentao/zin-web/commits/634dbc86bc54d64ce98399d8419215a8ce6738ed"}]},"public":true,"created_at":"2015-01-01T15:15:51Z"} +,{"id":"2489658384","type":"PushEvent","actor":{"id":137794,"login":"mete0r","gravatar_id":"","url":"https://api.github.com/users/mete0r","avatar_url":"https://avatars.githubusercontent.com/u/137794?"},"repo":{"id":28675406,"name":"mete0r/mailer","url":"https://api.github.com/repos/mete0r/mailer"},"payload":{"push_id":536867297,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"dfb1c416880742881a6e8cfe1a3e5d729ef17afd","before":"c7d64ea56c1f40d2855a77778d72481999bdffdd","commits":[{"sha":"dfb1c416880742881a6e8cfe1a3e5d729ef17afd","author":{"email":"eca64daefdbfee03aaf7881d2a5a775f5e98808d@sarangbang.or.kr","name":"mete0r"},"message":"delivery","distinct":true,"url":"https://api.github.com/repos/mete0r/mailer/commits/dfb1c416880742881a6e8cfe1a3e5d729ef17afd"}]},"public":true,"created_at":"2015-01-01T15:15:51Z"} +,{"id":"2489658388","type":"WatchEvent","actor":{"id":8536299,"login":"Xyl2k","gravatar_id":"","url":"https://api.github.com/users/Xyl2k","avatar_url":"https://avatars.githubusercontent.com/u/8536299?"},"repo":{"id":11077916,"name":"WhatCD/Gazelle","url":"https://api.github.com/repos/WhatCD/Gazelle"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:15:52Z"} +,{"id":"2489658392","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":21327694,"name":"hex7c0/top-vhost","url":"https://api.github.com/repos/hex7c0/top-vhost"},"payload":{"push_id":536867300,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"f5b04e84a17653dc75e9028431ea9859f8981e95","before":"0d76b8f2628dd47379cbf149bf36d323a66e36c5","commits":[{"sha":"51cceba5c2372853a1844b94bf9351fb04098016","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"travis docker","distinct":true,"url":"https://api.github.com/repos/hex7c0/top-vhost/commits/51cceba5c2372853a1844b94bf9351fb04098016"},{"sha":"f5b04e84a17653dc75e9028431ea9859f8981e95","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"update devDependencies","distinct":true,"url":"https://api.github.com/repos/hex7c0/top-vhost/commits/f5b04e84a17653dc75e9028431ea9859f8981e95"}]},"public":true,"created_at":"2015-01-01T15:15:52Z"} +,{"id":"2489658394","type":"IssuesEvent","actor":{"id":63622,"login":"Byron","gravatar_id":"","url":"https://api.github.com/users/Byron","avatar_url":"https://avatars.githubusercontent.com/u/63622?"},"repo":{"id":1126087,"name":"gitpython-developers/GitPython","url":"https://api.github.com/repos/gitpython-developers/GitPython"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/gitpython-developers/GitPython/issues/220","labels_url":"https://api.github.com/repos/gitpython-developers/GitPython/issues/220/labels{/name}","comments_url":"https://api.github.com/repos/gitpython-developers/GitPython/issues/220/comments","events_url":"https://api.github.com/repos/gitpython-developers/GitPython/issues/220/events","html_url":"https://github.com/gitpython-developers/GitPython/issues/220","id":53158590,"number":220,"title":"Blob object's data stream incomplete for certain files","user":{"login":"terminalmage","id":328598,"avatar_url":"https://avatars.githubusercontent.com/u/328598?v=3","gravatar_id":"","url":"https://api.github.com/users/terminalmage","html_url":"https://github.com/terminalmage","followers_url":"https://api.github.com/users/terminalmage/followers","following_url":"https://api.github.com/users/terminalmage/following{/other_user}","gists_url":"https://api.github.com/users/terminalmage/gists{/gist_id}","starred_url":"https://api.github.com/users/terminalmage/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/terminalmage/subscriptions","organizations_url":"https://api.github.com/users/terminalmage/orgs","repos_url":"https://api.github.com/users/terminalmage/repos","events_url":"https://api.github.com/users/terminalmage/events{/privacy}","received_events_url":"https://api.github.com/users/terminalmage/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/gitpython-developers/GitPython/labels/critical","name":"critical","color":"e10c02"}],"state":"closed","locked":false,"assignee":{"login":"Byron","id":63622,"avatar_url":"https://avatars.githubusercontent.com/u/63622?v=3","gravatar_id":"","url":"https://api.github.com/users/Byron","html_url":"https://github.com/Byron","followers_url":"https://api.github.com/users/Byron/followers","following_url":"https://api.github.com/users/Byron/following{/other_user}","gists_url":"https://api.github.com/users/Byron/gists{/gist_id}","starred_url":"https://api.github.com/users/Byron/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Byron/subscriptions","organizations_url":"https://api.github.com/users/Byron/orgs","repos_url":"https://api.github.com/users/Byron/repos","events_url":"https://api.github.com/users/Byron/events{/privacy}","received_events_url":"https://api.github.com/users/Byron/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/gitpython-developers/GitPython/milestones/3","labels_url":"https://api.github.com/repos/gitpython-developers/GitPython/milestones/3/labels","id":866626,"number":3,"title":"v0.3.3","description":"* Make sure that all test cases are working\r\n* Integrate as many pull requests as feasible\r\n* proof read all text to fix typos","creator":{"login":"Byron","id":63622,"avatar_url":"https://avatars.githubusercontent.com/u/63622?v=3","gravatar_id":"","url":"https://api.github.com/users/Byron","html_url":"https://github.com/Byron","followers_url":"https://api.github.com/users/Byron/followers","following_url":"https://api.github.com/users/Byron/following{/other_user}","gists_url":"https://api.github.com/users/Byron/gists{/gist_id}","starred_url":"https://api.github.com/users/Byron/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Byron/subscriptions","organizations_url":"https://api.github.com/users/Byron/orgs","repos_url":"https://api.github.com/users/Byron/repos","events_url":"https://api.github.com/users/Byron/events{/privacy}","received_events_url":"https://api.github.com/users/Byron/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":24,"state":"open","created_at":"2014-11-14T13:49:42Z","updated_at":"2015-01-01T15:15:52Z","due_on":"2014-11-17T23:00:00Z","closed_at":null},"comments":1,"created_at":"2014-12-31T00:20:43Z","updated_at":"2015-01-01T15:15:52Z","closed_at":"2015-01-01T15:15:52Z","body":"```python\r\n>>> import git\r\n>>> git.__version__\r\n'0.3.2.1'\r\n>>> import os\r\n>>> os.mkdir('foo')\r\n>>> repo = git.Repo.init('foo')\r\n>>> repo.create_remote('origin', 'https://github.com/terminalmage/gitfs-test1.git')\r\n\r\n>>> repo.git.config('http.sslVerify', 'true')\r\n''\r\n>>> origin = repo.remotes[0]\r\n>>> origin.fetch()\r\n[,\r\n ,\r\n ]\r\n>>> repo.refs\r\n[,\r\n ,\r\n ]\r\n>>> tree = repo.refs[0].commit.tree\r\n>>> blob = tree / 'loremipsum.txt'\r\n>>> blob\r\n\r\n>>> blob.size\r\n18804\r\n>>> len(blob.data_stream.read())\r\n18804\r\n>>> blob = tree / 'saltstack.png'\r\n>>> blob.size\r\n7377\r\n>>> len(blob.data_stream.read())\r\n7377\r\n>>> blob = tree / 'imagemagick_6.7.7.10-6ubuntu4_amd64.deb'\r\n>>> blob.size\r\n222318\r\n>>> len(blob.data_stream.read())\r\n221818\r\n>>> blob = tree / 'archlinux_1080p.png'\r\n>>> blob.size\r\n778428\r\n>>> len(blob.data_stream.read())\r\n778428\r\n```\r\n\r\nNote that the .deb package's data stream is not the correct size (221818 instead of 222318 as it should be).\r\n\r\nThis doesn't seem to be related to the file size, as a larger PNG image works just fine. Both the PNG images and the .deb package are marked as binary files in the .gitattributes file, as well."}},"public":true,"created_at":"2015-01-01T15:15:52Z","org":{"id":503709,"login":"gitpython-developers","gravatar_id":"","url":"https://api.github.com/orgs/gitpython-developers","avatar_url":"https://avatars.githubusercontent.com/u/503709?"}} +,{"id":"2489658395","type":"PushEvent","actor":{"id":63622,"login":"Byron","gravatar_id":"","url":"https://api.github.com/users/Byron","avatar_url":"https://avatars.githubusercontent.com/u/63622?"},"repo":{"id":1126093,"name":"gitpython-developers/gitdb","url":"https://api.github.com/repos/gitpython-developers/gitdb"},"payload":{"push_id":536867301,"size":5,"distinct_size":5,"ref":"refs/heads/master","head":"9e85a45d53e751c4b825d1069e535ed626e48c8e","before":"979c4b83c171f46ed9b5666a7dbabb46ce2b107a","commits":[{"sha":"c38bd19706abe5cf0bf0e7b3e9ad2b3e554d28ef","author":{"email":"888571f39b20e1e7ec6c751c16c90400df3cdd64@gmail.com","name":"Sebastian Thiel"},"message":"Increased initial size of decompressed data to obtain loose object header information\n\nThis appears to fix https://github.com/gitpython-developers/GitPython/issues/220 , in this particular case.\nNonetheless, we might just have gotten lucky here, and the actual issue is not yet solved and can thus re-occour.\nIt would certainly be best to churn through plenty of loose objects to assure this truly works now. Maybe the pack could be recompressed as loose objects\nto get a sufficiently large data set","distinct":true,"url":"https://api.github.com/repos/gitpython-developers/gitdb/commits/c38bd19706abe5cf0bf0e7b3e9ad2b3e554d28ef"},{"sha":"6b32bbcc0b9ca142fc3b066fcd0d76e2a731423d","author":{"email":"888571f39b20e1e7ec6c751c16c90400df3cdd64@gmail.com","name":"Sebastian Thiel"},"message":"Slightly improved loose object decompression test","distinct":true,"url":"https://api.github.com/repos/gitpython-developers/gitdb/commits/6b32bbcc0b9ca142fc3b066fcd0d76e2a731423d"},{"sha":"0d22c80e041dbb5d9d985926b39b7bd7a0573a7a","author":{"email":"888571f39b20e1e7ec6c751c16c90400df3cdd64@gmail.com","name":"Sebastian Thiel"},"message":"Added integrity test for loose objects to search large datasets for\nthe issue described in https://github.com/gitpython-developers/GitPython/issues/220\n\nSee test notes for proper usage, it all depends on a useful dataset with high entropy","distinct":true,"url":"https://api.github.com/repos/gitpython-developers/gitdb/commits/0d22c80e041dbb5d9d985926b39b7bd7a0573a7a"},{"sha":"46a4a79f46ab5a8da97714262095318090674277","author":{"email":"888571f39b20e1e7ec6c751c16c90400df3cdd64@gmail.com","name":"Sebastian Thiel"},"message":"Bumped new version\n\nFixed tiny issue in python 3","distinct":true,"url":"https://api.github.com/repos/gitpython-developers/gitdb/commits/46a4a79f46ab5a8da97714262095318090674277"},{"sha":"9e85a45d53e751c4b825d1069e535ed626e48c8e","author":{"email":"888571f39b20e1e7ec6c751c16c90400df3cdd64@gmail.com","name":"Sebastian Thiel"},"message":"Merge remote-tracking branch 'origin'","distinct":true,"url":"https://api.github.com/repos/gitpython-developers/gitdb/commits/9e85a45d53e751c4b825d1069e535ed626e48c8e"}]},"public":true,"created_at":"2015-01-01T15:15:52Z","org":{"id":503709,"login":"gitpython-developers","gravatar_id":"","url":"https://api.github.com/orgs/gitpython-developers","avatar_url":"https://avatars.githubusercontent.com/u/503709?"}} +,{"id":"2489658398","type":"PushEvent","actor":{"id":557961,"login":"e-jigsaw","gravatar_id":"","url":"https://api.github.com/users/e-jigsaw","avatar_url":"https://avatars.githubusercontent.com/u/557961?"},"repo":{"id":21883081,"name":"jgsme/dev","url":"https://api.github.com/repos/jgsme/dev"},"payload":{"push_id":536867302,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"04a2f0635fe6225b471317844c6c3dccfe7877dd","before":"4e373fe98be9c00eb72578df6c2e5507cc9286fe","commits":[{"sha":"04a2f0635fe6225b471317844c6c3dccfe7877dd","author":{"email":"565b824397aa4296737cf3c505776243d38bd1bb@live.jp","name":"jigsaw"},"message":"Update 2015-01-01T15:15:46.680Z","distinct":true,"url":"https://api.github.com/repos/jgsme/dev/commits/04a2f0635fe6225b471317844c6c3dccfe7877dd"}]},"public":true,"created_at":"2015-01-01T15:15:53Z","org":{"id":8819590,"login":"jgsme","gravatar_id":"","url":"https://api.github.com/orgs/jgsme","avatar_url":"https://avatars.githubusercontent.com/u/8819590?"}} +,{"id":"2489658401","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/253","labels_url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/253/labels{/name}","comments_url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/253/comments","events_url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/253/events","html_url":"https://github.com/rovo89/XposedInstaller/pull/253","id":53198521,"number":253,"title":"Removed Superuser permission (preparation for Lollipop)","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-12-31T19:07:25Z","updated_at":"2015-01-01T15:15:53Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/rovo89/XposedInstaller/pulls/253","html_url":"https://github.com/rovo89/XposedInstaller/pull/253","diff_url":"https://github.com/rovo89/XposedInstaller/pull/253.diff","patch_url":"https://github.com/rovo89/XposedInstaller/pull/253.patch"},"body":"Not need on 5.0."},"comment":{"url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/comments/68488820","html_url":"https://github.com/rovo89/XposedInstaller/pull/253#issuecomment-68488820","issue_url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/253","id":68488820,"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:15:53Z","updated_at":"2015-01-01T15:15:53Z","body":"Looks good, thanks."}},"public":true,"created_at":"2015-01-01T15:15:53Z"} +,{"id":"2489658406","type":"IssueCommentEvent","actor":{"id":474878,"login":"wesyoung","gravatar_id":"","url":"https://api.github.com/users/wesyoung","avatar_url":"https://avatars.githubusercontent.com/u/474878?"},"repo":{"id":15674129,"name":"csirtgadgets/massive-octo-spice","url":"https://api.github.com/repos/csirtgadgets/massive-octo-spice"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/csirtgadgets/massive-octo-spice/issues/137","labels_url":"https://api.github.com/repos/csirtgadgets/massive-octo-spice/issues/137/labels{/name}","comments_url":"https://api.github.com/repos/csirtgadgets/massive-octo-spice/issues/137/comments","events_url":"https://api.github.com/repos/csirtgadgets/massive-octo-spice/issues/137/events","html_url":"https://github.com/csirtgadgets/massive-octo-spice/issues/137","id":53221029,"number":137,"title":"dep failure","user":{"login":"wesyoung","id":474878,"avatar_url":"https://avatars.githubusercontent.com/u/474878?v=3","gravatar_id":"","url":"https://api.github.com/users/wesyoung","html_url":"https://github.com/wesyoung","followers_url":"https://api.github.com/users/wesyoung/followers","following_url":"https://api.github.com/users/wesyoung/following{/other_user}","gists_url":"https://api.github.com/users/wesyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/wesyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wesyoung/subscriptions","organizations_url":"https://api.github.com/users/wesyoung/orgs","repos_url":"https://api.github.com/users/wesyoung/repos","events_url":"https://api.github.com/users/wesyoung/events{/privacy}","received_events_url":"https://api.github.com/users/wesyoung/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/csirtgadgets/massive-octo-spice/labels/bug","name":"bug","color":"fc2929"},{"url":"https://api.github.com/repos/csirtgadgets/massive-octo-spice/labels/Packaging","name":"Packaging","color":"5319e7"}],"state":"open","locked":false,"assignee":null,"milestone":{"url":"https://api.github.com/repos/csirtgadgets/massive-octo-spice/milestones/2","labels_url":"https://api.github.com/repos/csirtgadgets/massive-octo-spice/milestones/2/labels","id":878205,"number":2,"title":"2015 Q1","description":"","creator":{"login":"wesyoung","id":474878,"avatar_url":"https://avatars.githubusercontent.com/u/474878?v=3","gravatar_id":"","url":"https://api.github.com/users/wesyoung","html_url":"https://github.com/wesyoung","followers_url":"https://api.github.com/users/wesyoung/followers","following_url":"https://api.github.com/users/wesyoung/following{/other_user}","gists_url":"https://api.github.com/users/wesyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/wesyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wesyoung/subscriptions","organizations_url":"https://api.github.com/users/wesyoung/orgs","repos_url":"https://api.github.com/users/wesyoung/repos","events_url":"https://api.github.com/users/wesyoung/events{/privacy}","received_events_url":"https://api.github.com/users/wesyoung/received_events","type":"User","site_admin":false},"open_issues":16,"closed_issues":4,"state":"open","created_at":"2014-11-24T12:27:57Z","updated_at":"2015-01-01T14:44:15Z","due_on":"2015-03-31T04:00:00Z","closed_at":null},"comments":1,"created_at":"2015-01-01T14:44:15Z","updated_at":"2015-01-01T15:15:53Z","closed_at":null,"body":"```\r\n--> Working on Mouse\r\nFetching http://cpan.metacpan.org/authors/id/G/GF/GFUJI/Mouse-2.4.1.tar.gz ... OK\r\n==> Found dependencies: ExtUtils::ParseXS, Module::Build::XSUtil\r\n--> Working on ExtUtils::ParseXS\r\nFetching http://cpan.metacpan.org/authors/id/S/SM/SMUELLER/ExtUtils-ParseXS-3.24.tar.gz ... OK\r\nConfiguring ExtUtils-ParseXS-3.24 ... OK\r\nBuilding ExtUtils-ParseXS-3.24 ... OK\r\nSuccessfully installed ExtUtils-ParseXS-3.24 (upgraded from 3.18)\r\n--> Working on Module::Build::XSUtil\r\nFetching http://cpan.metacpan.org/authors/id/H/HI/HIDEAKIO/Module-Build-XSUtil-0.14.tar.gz ... OK\r\nConfiguring Module-Build-XSUtil-0.14 ... OK\r\n==> Found dependencies: Devel::CheckCompiler\r\n--> Working on Devel::CheckCompiler\r\nFetching http://cpan.metacpan.org/authors/id/S/SY/SYOHEX/Devel-CheckCompiler-0.05.tar.gz ... OK\r\nConfiguring Devel-CheckCompiler-0.05 ... OK\r\nBuilding Devel-CheckCompiler-0.05 ... OK\r\nSuccessfully installed Devel-CheckCompiler-0.05\r\nBuilding Module-Build-XSUtil-0.14 ... OK\r\nSuccessfully installed Module-Build-XSUtil-0.14\r\nConfiguring Mouse-2.4.1 ... OK\r\nBuilding Mouse-2.4.1 ... OK\r\nSuccessfully installed Mouse-2.4.1 (upgraded from 2.1.0)\r\n4 distributions installed\r\n--> Working on DateTime\r\nFetching http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/DateTime-1.12.tar.gz ... OK\r\nConfiguring DateTime-1.12 ... OK\r\n==> Found dependencies: DateTime::Locale, DateTime::TimeZone, Params::Validate\r\n--> Working on DateTime::Locale\r\nFetching http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/DateTime-Locale-0.45.tar.gz ... OK\r\nConfiguring DateTime-Locale-0.45 ... OK\r\n==> Found dependencies: Params::Validate\r\n--> Working on Params::Validate\r\nFetching http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Params-Validate-1.13.tar.gz ... OK\r\nConfiguring Params-Validate-1.13 ... OK\r\nBuilding Params-Validate-1.13 ... OK\r\nSuccessfully installed Params-Validate-1.13\r\nBuilding DateTime-Locale-0.45 ... OK\r\nSuccessfully installed DateTime-Locale-0.45\r\n--> Working on DateTime::TimeZone\r\nFetching http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/DateTime-TimeZone-1.83.tar.gz ... OK\r\nConfiguring DateTime-TimeZone-1.83 ... OK\r\n==> Found dependencies: Class::Singleton, List::AllUtils\r\n--> Working on Class::Singleton\r\nFetching http://cpan.metacpan.org/authors/id/S/SH/SHAY/Class-Singleton-1.5.tar.gz ... OK\r\nConfiguring Class-Singleton-1.5 ... OK\r\nBuilding Class-Singleton-1.5 ... OK\r\nSuccessfully installed Class-Singleton-1.5\r\n--> Working on List::AllUtils\r\nFetching http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/List-AllUtils-0.09.tar.gz ... OK\r\nConfiguring List-AllUtils-0.09 ... OK\r\n==> Found dependencies: List::Util\r\n--> Working on List::Util\r\nFetching http://cpan.metacpan.org/authors/id/P/PE/PEVANS/Scalar-List-Utils-1.41.tar.gz ... OK\r\nConfiguring Scalar-List-Utils-1.41 ... OK\r\nBuilding Scalar-List-Utils-1.41 ... OK\r\nSuccessfully installed Scalar-List-Utils-1.41 (upgraded from 1.27)\r\nBuilding List-AllUtils-0.09 ... OK\r\nSuccessfully installed List-AllUtils-0.09\r\nBuilding DateTime-TimeZone-1.83 ... OK\r\nSuccessfully installed DateTime-TimeZone-1.83\r\nBuilding DateTime-1.12 ... OK\r\nSuccessfully installed DateTime-1.12\r\n7 distributions installed\r\n--> Working on http://backpan.perl.org/authors/id/M/MS/MSCHILLI/Log-Log4perl-1.44.tar.gz\r\nFetching http://backpan.perl.org/authors/id/M/MS/MSCHILLI/Log-Log4perl-1.44.tar.gz ... OK\r\nConfiguring Log-Log4perl-1.44 ... OK\r\nBuilding and testing Log-Log4perl-1.44 ... OK\r\nSuccessfully installed Log-Log4perl-1.44\r\n1 distribution installed\r\n--> Working on https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Test-Exception-0.35.tar.gz\r\nFetching https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Test-Exception-0.35.tar.gz ... OK\r\nConfiguring Test-Exception-0.35 ... OK\r\n==> Found dependencies: Sub::Uplevel\r\n--> Working on Sub::Uplevel\r\nFetching http://www.cpan.org/authors/id/D/DA/DAGOLDEN/Sub-Uplevel-0.24.tar.gz ... OK\r\nConfiguring Sub-Uplevel-0.24 ... OK\r\nBuilding and testing Sub-Uplevel-0.24 ... OK\r\nSuccessfully installed Sub-Uplevel-0.24\r\nBuilding and testing Test-Exception-0.35 ... OK\r\nSuccessfully installed Test-Exception-0.35\r\n2 distributions installed\r\n--> Working on https://github.com/csirtgadgets/p5-cif-sdk/archive/master.tar.gz\r\nFetching https://github.com/csirtgadgets/p5-cif-sdk/archive/master.tar.gz ... OK\r\nConfiguring p5-cif-sdk-master ... OK\r\n==> Found dependencies: Parse::Range, Module::PluginFinder, Regexp::IPv6, Text::Table, Net::Patricia, Regexp::Common::net::CIDR, Snort::Rule, JSON::XS, YAML::Tiny, Mail::RFC822::Address, Net::DNS::Match\r\n--> Working on Parse::Range\r\nFetching http://www.cpan.org/authors/id/P/PE/PERLER/Parse-Range-0.96.tar.gz ... OK\r\nConfiguring Parse-Range-0.96 ... OK\r\nBuilding and testing Parse-Range-0.96 ... OK\r\nSuccessfully installed Parse-Range-0.96\r\n--> Working on Module::PluginFinder\r\nFetching http://www.cpan.org/authors/id/P/PE/PEVANS/Module-PluginFinder-0.04.tar.gz ... OK\r\nConfiguring Module-PluginFinder-0.04 ... OK\r\n==> Found dependencies: Test::Warn\r\n--> Working on Test::Warn\r\nFetching http://www.cpan.org/authors/id/C/CH/CHORNY/Test-Warn-0.30.tar.gz ... OK\r\nConfiguring Test-Warn-0.30 ... OK\r\nBuilding and testing Test-Warn-0.30 ... OK\r\nSuccessfully installed Test-Warn-0.30\r\nBuilding and testing Module-PluginFinder-0.04 ... OK\r\nSuccessfully installed Module-PluginFinder-0.04\r\n--> Working on Regexp::IPv6\r\nFetching http://www.cpan.org/authors/id/S/SA/SALVA/Regexp-IPv6-0.03.tar.gz ... OK\r\nConfiguring Regexp-IPv6-0.03 ... OK\r\nBuilding and testing Regexp-IPv6-0.03 ... OK\r\nSuccessfully installed Regexp-IPv6-0.03\r\n--> Working on Text::Table\r\nFetching http://www.cpan.org/authors/id/S/SH/SHLOMIF/Text-Table-1.130.tar.gz ... OK\r\nConfiguring Text-Table-1.130 ... OK\r\n==> Found dependencies: Text::Aligner\r\n--> Working on Text::Aligner\r\nFetching http://www.cpan.org/authors/id/S/SH/SHLOMIF/Text-Aligner-0.12.tar.gz ... OK\r\nConfiguring Text-Aligner-0.12 ... OK\r\nBuilding and testing Text-Aligner-0.12 ... OK\r\nSuccessfully installed Text-Aligner-0.12\r\nBuilding and testing Text-Table-1.130 ... OK\r\nSuccessfully installed Text-Table-1.130\r\n--> Working on Net::Patricia\r\nFetching http://www.cpan.org/authors/id/G/GR/GRUBER/Net-Patricia-1.22.tar.gz ... OK\r\nConfiguring Net-Patricia-1.22 ... OK\r\n==> Found dependencies: Net::CIDR::Lite\r\n--> Working on Net::CIDR::Lite\r\nFetching http://www.cpan.org/authors/id/D/DO/DOUGW/Net-CIDR-Lite-0.21.tar.gz ... OK\r\nConfiguring Net-CIDR-Lite-0.21 ... OK\r\nBuilding and testing Net-CIDR-Lite-0.21 ... OK\r\nSuccessfully installed Net-CIDR-Lite-0.21\r\nBuilding and testing Net-Patricia-1.22 ... OK\r\nSuccessfully installed Net-Patricia-1.22\r\n--> Working on Regexp::Common::net::CIDR\r\nFetching http://www.cpan.org/authors/id/R/RU/RUZ/Regexp-Common-net-CIDR-0.02.tar.gz ... OK\r\nConfiguring Regexp-Common-net-CIDR-0.02 ... OK\r\nBuilding and testing Regexp-Common-net-CIDR-0.02 ... OK\r\nSuccessfully installed Regexp-Common-net-CIDR-0.02\r\n--> Working on Snort::Rule\r\nFetching http://www.cpan.org/authors/id/S/SA/SAXJAZMAN/Snort/Snort-Rule-1.07.tar.gz ... OK\r\nConfiguring Snort-Rule-1.07 ... OK\r\nBuilding and testing Snort-Rule-1.07 ... OK\r\nSuccessfully installed Snort-Rule-1.07\r\n--> Working on JSON::XS\r\nFetching http://www.cpan.org/authors/id/M/ML/MLEHMANN/JSON-XS-3.01.tar.gz ... OK\r\nConfiguring JSON-XS-3.01 ... OK\r\n==> Found dependencies: Types::Serialiser\r\n--> Working on Types::Serialiser\r\nFetching http://www.cpan.org/authors/id/M/ML/MLEHMANN/Types-Serialiser-1.0.tar.gz ... OK\r\nConfiguring Types-Serialiser-1.0 ... OK\r\nBuilding and testing Types-Serialiser-1.0 ... OK\r\nSuccessfully installed Types-Serialiser-1.0\r\nBuilding and testing JSON-XS-3.01 ... OK\r\nSuccessfully installed JSON-XS-3.01\r\n--> Working on YAML::Tiny\r\nFetching http://www.cpan.org/authors/id/E/ET/ETHER/YAML-Tiny-1.64.tar.gz ... OK\r\n==> Found dependencies: Module::Build::Tiny\r\n--> Working on Module::Build::Tiny\r\nFetching http://www.cpan.org/authors/id/L/LE/LEONT/Module-Build-Tiny-0.039.tar.gz ... OK\r\n==> Found dependencies: TAP::Harness::Env, ExtUtils::Helpers, ExtUtils::Config, ExtUtils::InstallPaths\r\n--> Working on TAP::Harness::Env\r\nFetching http://www.cpan.org/authors/id/L/LE/LEONT/Test-Harness-3.34.tar.gz ... OK\r\nConfiguring Test-Harness-3.34 ... OK\r\nBuilding and testing Test-Harness-3.34 ... OK\r\nSuccessfully installed Test-Harness-3.34\r\n--> Working on ExtUtils::Helpers\r\nFetching http://www.cpan.org/authors/id/L/LE/LEONT/ExtUtils-Helpers-0.022.tar.gz ... OK\r\nConfiguring ExtUtils-Helpers-0.022 ... OK\r\nBuilding and testing ExtUtils-Helpers-0.022 ... OK\r\nSuccessfully installed ExtUtils-Helpers-0.022\r\n--> Working on ExtUtils::Config\r\nFetching http://www.cpan.org/authors/id/L/LE/LEONT/ExtUtils-Config-0.008.tar.gz ... OK\r\nConfiguring ExtUtils-Config-0.008 ... OK\r\nBuilding and testing ExtUtils-Config-0.008 ... OK\r\nSuccessfully installed ExtUtils-Config-0.008\r\n--> Working on ExtUtils::InstallPaths\r\nFetching http://www.cpan.org/authors/id/L/LE/LEONT/ExtUtils-InstallPaths-0.010.tar.gz ... OK\r\nConfiguring ExtUtils-InstallPaths-0.010 ... OK\r\nBuilding and testing ExtUtils-InstallPaths-0.010 ... OK\r\nSuccessfully installed ExtUtils-InstallPaths-0.010\r\nConfiguring Module-Build-Tiny-0.039 ... OK\r\nBuilding and testing Module-Build-Tiny-0.039 ... OK\r\nSuccessfully installed Module-Build-Tiny-0.039\r\nConfiguring YAML-Tiny-1.64 ... OK\r\n==> Found dependencies: Test::More\r\n--> Working on Test::More\r\nFetching http://www.cpan.org/authors/id/E/EX/EXODIST/Test-Simple-1.001014.tar.gz ... OK\r\nConfiguring Test-Simple-1.001014 ... OK\r\nBuilding and testing Test-Simple-1.001014 ... OK\r\nSuccessfully installed Test-Simple-1.001014 (upgraded from 0.98)\r\nBuilding and testing YAML-Tiny-1.64 ... OK\r\nSuccessfully installed YAML-Tiny-1.64\r\n--> Working on Mail::RFC822::Address\r\nFetching http://www.cpan.org/authors/id/P/PD/PDWARREN/Mail-RFC822-Address-0.3.tar.gz ... OK\r\nConfiguring Mail-RFC822-Address-0.3 ... OK\r\nBuilding and testing Mail-RFC822-Address-0.3 ... OK\r\nSuccessfully installed Mail-RFC822-Address-0.3\r\n--> Working on Net::DNS::Match\r\nFetching http://www.cpan.org/authors/id/S/SA/SAXJAZMAN/net/Net-DNS-Match-0.05.tar.gz ... OK\r\nConfiguring Net-DNS-Match-0.05 ... OK\r\nBuilding and testing Net-DNS-Match-0.05 ... OK\r\nSuccessfully installed Net-DNS-Match-0.05\r\nBuilding and testing CIF-SDK-0.00_15 ... OK\r\nSuccessfully installed CIF-SDK-0.00_15\r\n22 distributions installed\r\n--> Working on https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/MaxMind-DB-Reader-0.050005.tar.gz\r\nFetching https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/MaxMind-DB-Reader-0.050005.tar.gz ... OK\r\nConfiguring MaxMind-DB-Reader-0.050005 ... OK\r\n==> Found dependencies: Test::Fatal, Data::Printer, MooX::StrictConstructor, Data::IEEE754, Math::Int128, MaxMind::DB::Metadata, MaxMind::DB::Common, Moo::Role, Test::Bits, namespace::autoclean, MaxMind::DB::Role::Debugs, Test::MaxMind::DB::Common::Data, Moo, Role::Tiny, Test::Number::Delta, Data::Validate::IP, Net::Works::Network, Test::MaxMind::DB::Common::Util, Net::Works::Address, MaxMind::DB::Types\r\n--> Working on Test::Fatal\r\nFetching http://www.cpan.org/authors/id/R/RJ/RJBS/Test-Fatal-0.014.tar.gz ... OK\r\nConfiguring Test-Fatal-0.014 ... OK\r\nBuilding and testing Test-Fatal-0.014 ... OK\r\nSuccessfully installed Test-Fatal-0.014\r\n--> Working on Data::Printer\r\nFetching http://www.cpan.org/authors/id/G/GA/GARU/Data-Printer-0.35.tar.gz ... OK\r\nConfiguring Data-Printer-0.35 ... OK\r\n==> Found dependencies: Clone::PP, File::HomeDir, Sort::Naturally\r\n--> Working on Clone::PP\r\nFetching http://www.cpan.org/authors/id/N/NE/NEILB/Clone-PP-1.06.tar.gz ... OK\r\nConfiguring Clone-PP-1.06 ... OK\r\nBuilding and testing Clone-PP-1.06 ... OK\r\nSuccessfully installed Clone-PP-1.06\r\n--> Working on File::HomeDir\r\nFetching http://www.cpan.org/authors/id/A/AD/ADAMK/File-HomeDir-1.00.tar.gz ... OK\r\nConfiguring File-HomeDir-1.00 ... OK\r\n==> Found dependencies: File::Which\r\n--> Working on File::Which\r\nFetching http://www.cpan.org/authors/id/A/AD/ADAMK/File-Which-1.09.tar.gz ... OK\r\nConfiguring File-Which-1.09 ... OK\r\n==> Found dependencies: Test::Script\r\n--> Working on Test::Script\r\nFetching http://www.cpan.org/authors/id/A/AD/ADAMK/Test-Script-1.07.tar.gz ... OK\r\nConfiguring Test-Script-1.07 ... OK\r\n==> Found dependencies: Probe::Perl, IPC::Run3\r\n--> Working on Probe::Perl\r\nFetching http://www.cpan.org/authors/id/K/KW/KWILLIAMS/Probe-Perl-0.03.tar.gz ... OK\r\nConfiguring Probe-Perl-0.03 ... OK\r\nBuilding and testing Probe-Perl-0.03 ... OK\r\nSuccessfully installed Probe-Perl-0.03\r\n--> Working on IPC::Run3\r\nFetching http://www.cpan.org/authors/id/R/RJ/RJBS/IPC-Run3-0.048.tar.gz ... OK\r\nConfiguring IPC-Run3-0.048 ... OK\r\nBuilding and testing IPC-Run3-0.048 ... OK\r\nSuccessfully installed IPC-Run3-0.048\r\nBuilding and testing Test-Script-1.07 ... OK\r\nSuccessfully installed Test-Script-1.07\r\nBuilding and testing File-Which-1.09 ... OK\r\nSuccessfully installed File-Which-1.09\r\nBuilding and testing File-HomeDir-1.00 ... OK\r\nSuccessfully installed File-HomeDir-1.00\r\n--> Working on Sort::Naturally\r\nFetching http://www.cpan.org/authors/id/B/BI/BINGOS/Sort-Naturally-1.03.tar.gz ... OK\r\nConfiguring Sort-Naturally-1.03 ... OK\r\nBuilding and testing Sort-Naturally-1.03 ... OK\r\nSuccessfully installed Sort-Naturally-1.03\r\nBuilding and testing Data-Printer-0.35 ... OK\r\nSuccessfully installed Data-Printer-0.35\r\n--> Working on MooX::StrictConstructor\r\nFetching http://www.cpan.org/authors/id/H/HA/HARTZELL/MooX-StrictConstructor-0.006.tar.gz ... OK\r\nConfiguring MooX-StrictConstructor-0.006 ... OK\r\n==> Found dependencies: bareword::filehandles, Moo::Role, indirect, strictures, Moo, multidimensional\r\n--> Working on bareword::filehandles\r\nFetching http://www.cpan.org/authors/id/I/IL/ILMARI/bareword-filehandles-0.003.tar.gz ... OK\r\n==> Found dependencies: ExtUtils::Depends, B::Hooks::OP::Check\r\n--> Working on ExtUtils::Depends\r\nFetching http://www.cpan.org/authors/id/X/XA/XAOC/ExtUtils-Depends-0.403.tar.gz ... OK\r\nConfiguring ExtUtils-Depends-0.403 ... OK\r\nBuilding and testing ExtUtils-Depends-0.403 ... OK\r\nSuccessfully installed ExtUtils-Depends-0.403\r\n--> Working on B::Hooks::OP::Check\r\nFetching http://www.cpan.org/authors/id/Z/ZE/ZEFRAM/B-Hooks-OP-Check-0.19.tar.gz ... OK\r\nConfiguring B-Hooks-OP-Check-0.19 ... OK\r\nBuilding and testing B-Hooks-OP-Check-0.19 ... OK\r\nSuccessfully installed B-Hooks-OP-Check-0.19\r\nConfiguring bareword-filehandles-0.003 ... OK\r\n==> Found dependencies: Lexical::SealRequireHints\r\n--> Working on Lexical::SealRequireHints\r\nFetching http://www.cpan.org/authors/id/Z/ZE/ZEFRAM/Lexical-SealRequireHints-0.007.tar.gz ... OK\r\nConfiguring Lexical-SealRequireHints-0.007 ... OK\r\nBuilding and testing Lexical-SealRequireHints-0.007 ... OK\r\nSuccessfully installed Lexical-SealRequireHints-0.007\r\nBuilding and testing bareword-filehandles-0.003 ... OK\r\nSuccessfully installed bareword-filehandles-0.003\r\n--> Working on Moo::Role\r\nFetching http://www.cpan.org/authors/id/H/HA/HAARG/Moo-1.006001.tar.gz ... OK\r\nConfiguring Moo-1.006001 ... OK\r\n==> Found dependencies: strictures, Role::Tiny, Import::Into, Module::Runtime\r\n--> Working on strictures\r\nFetching http://www.cpan.org/authors/id/H/HA/HAARG/strictures-1.005005.tar.gz ... OK\r\nConfiguring strictures-1.005005 ... OK\r\n==> Found dependencies: indirect, multidimensional\r\n--> Working on indirect\r\nFetching http://www.cpan.org/authors/id/V/VP/VPIT/indirect-0.33.tar.gz ... OK\r\nConfiguring indirect-0.33 ... OK\r\nBuilding and testing indirect-0.33 ... OK\r\nSuccessfully installed indirect-0.33\r\n--> Working on multidimensional\r\nFetching http://www.cpan.org/authors/id/I/IL/ILMARI/multidimensional-0.011.tar.gz ... OK\r\nConfiguring multidimensional-0.011 ... OK\r\nBuilding and testing multidimensional-0.011 ... OK\r\nSuccessfully installed multidimensional-0.011\r\nBuilding and testing strictures-1.005005 ... OK\r\nSuccessfully installed strictures-1.005005\r\n--> Working on Role::Tiny\r\nFetching http://www.cpan.org/authors/id/H/HA/HAARG/Role-Tiny-1.003004.tar.gz ... OK\r\nConfiguring Role-Tiny-1.003004 ... OK\r\nBuilding and testing Role-Tiny-1.003004 ... OK\r\nSuccessfully installed Role-Tiny-1.003004\r\n--> Working on Import::Into\r\nFetching http://www.cpan.org/authors/id/E/ET/ETHER/Import-Into-1.002004.tar.gz ... OK\r\nConfiguring Import-Into-1.002004 ... OK\r\nBuilding and testing Import-Into-1.002004 ... OK\r\nSuccessfully installed Import-Into-1.002004\r\n--> Working on Module::Runtime\r\nFetching http://www.cpan.org/authors/id/Z/ZE/ZEFRAM/Module-Runtime-0.014.tar.gz ... OK\r\nConfiguring Module-Runtime-0.014 ... OK\r\nBuilding and testing Module-Runtime-0.014 ... OK\r\nSuccessfully installed Module-Runtime-0.014 (upgraded from 0.013)\r\nBuilding and testing Moo-1.006001 ... OK\r\nSuccessfully installed Moo-1.006001\r\nBuilding and testing MooX-StrictConstructor-0.006 ... OK\r\nSuccessfully installed MooX-StrictConstructor-0.006\r\n--> Working on Data::IEEE754\r\nFetching http://www.cpan.org/authors/id/D/DR/DROLSKY/Data-IEEE754-0.01.tar.gz ... OK\r\nConfiguring Data-IEEE754-0.01 ... OK\r\n==> Found dependencies: Test::Bits\r\n--> Working on Test::Bits\r\nFetching http://www.cpan.org/authors/id/D/DR/DROLSKY/Test-Bits-0.02.tar.gz ... OK\r\nConfiguring Test-Bits-0.02 ... OK\r\nBuilding and testing Test-Bits-0.02 ... OK\r\nSuccessfully installed Test-Bits-0.02\r\nBuilding and testing Data-IEEE754-0.01 ... OK\r\nSuccessfully installed Data-IEEE754-0.01\r\n--> Working on Math::Int128\r\nFetching http://www.cpan.org/authors/id/D/DR/DROLSKY/Math-Int128-0.17.tar.gz ... OK\r\nConfiguring Math-Int128-0.17 ... OK\r\n==> Found dependencies: Math::Int64\r\n--> Working on Math::Int64\r\nFetching http://www.cpan.org/authors/id/S/SA/SALVA/Math-Int64-0.34.tar.gz ... OK\r\nConfiguring Math-Int64-0.34 ... OK\r\nBuilding and testing Math-Int64-0.34 ... OK\r\nSuccessfully installed Math-Int64-0.34\r\nBuilding and testing Math-Int128-0.17 ... OK\r\nSuccessfully installed Math-Int128-0.17\r\n--> Working on MaxMind::DB::Metadata\r\nFetching http://www.cpan.org/authors/id/D/DR/DROLSKY/MaxMind-DB-Common-0.031003.tar.gz ... OK\r\nConfiguring MaxMind-DB-Common-0.031003 ... OK\r\n==> Found dependencies: namespace::autoclean, Data::Dumper::Concise\r\n--> Working on namespace::autoclean\r\nFetching http://www.cpan.org/authors/id/E/ET/ETHER/namespace-autoclean-0.23.tar.gz ... OK\r\nConfiguring namespace-autoclean-0.23 ... OK\r\nBuilding and testing namespace-autoclean-0.23 ... OK\r\nSuccessfully installed namespace-autoclean-0.23\r\n--> Working on Data::Dumper::Concise\r\nFetching http://www.cpan.org/authors/id/F/FR/FREW/Data-Dumper-Concise-2.022.tar.gz ... OK\r\nConfiguring Data-Dumper-Concise-2.022 ... OK\r\nBuilding and testing Data-Dumper-Concise-2.022 ... OK\r\nSuccessfully installed Data-Dumper-Concise-2.022\r\nBuilding and testing MaxMind-DB-Common-0.031003 ... OK\r\nSuccessfully installed MaxMind-DB-Common-0.031003\r\n--> Working on Test::Number::Delta\r\nFetching http://www.cpan.org/authors/id/D/DA/DAGOLDEN/Test-Number-Delta-1.06.tar.gz ... OK\r\nConfiguring Test-Number-Delta-1.06 ... OK\r\nBuilding and testing Test-Number-Delta-1.06 ... OK\r\nSuccessfully installed Test-Number-Delta-1.06\r\n--> Working on Data::Validate::IP\r\nFetching http://www.cpan.org/authors/id/D/DR/DROLSKY/Data-Validate-IP-0.24.tar.gz ... OK\r\nConfiguring Data-Validate-IP-0.24 ... OK\r\n==> Found dependencies: NetAddr::IP\r\n--> Working on NetAddr::IP\r\nFetching http://www.cpan.org/authors/id/M/MI/MIKER/NetAddr-IP-4.075.tar.gz ... OK\r\nConfiguring NetAddr-IP-4.075 ... OK\r\nBuilding and testing NetAddr-IP-4.075 ... OK\r\nSuccessfully installed NetAddr-IP-4.075\r\nBuilding and testing Data-Validate-IP-0.24 ... OK\r\nSuccessfully installed Data-Validate-IP-0.24\r\n--> Working on Net::Works::Network\r\nFetching http://www.cpan.org/authors/id/M/MA/MAXMIND/Net-Works-0.20.tar.gz ... OK\r\nConfiguring Net-Works-0.20 ... OK\r\n==> Found dependencies: namespace::autoclean\r\n! Installing the dependencies failed: Missing version info for module 'namespace::autoclean'\r\n! Bailing out the installation for Net-Works-0.20.\r\n! Installing the dependencies failed: Module 'Net::Works::Network' is not installed, Module 'Net::Works::Address' is not installed\r\n! Bailing out the installation for MaxMind-DB-Reader-0.050005.\r\n31 distributions installed\r\n```"},"comment":{"url":"https://api.github.com/repos/csirtgadgets/massive-octo-spice/issues/comments/68488821","html_url":"https://github.com/csirtgadgets/massive-octo-spice/issues/137#issuecomment-68488821","issue_url":"https://api.github.com/repos/csirtgadgets/massive-octo-spice/issues/137","id":68488821,"user":{"login":"wesyoung","id":474878,"avatar_url":"https://avatars.githubusercontent.com/u/474878?v=3","gravatar_id":"","url":"https://api.github.com/users/wesyoung","html_url":"https://github.com/wesyoung","followers_url":"https://api.github.com/users/wesyoung/followers","following_url":"https://api.github.com/users/wesyoung/following{/other_user}","gists_url":"https://api.github.com/users/wesyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/wesyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wesyoung/subscriptions","organizations_url":"https://api.github.com/users/wesyoung/orgs","repos_url":"https://api.github.com/users/wesyoung/repos","events_url":"https://api.github.com/users/wesyoung/events{/privacy}","received_events_url":"https://api.github.com/users/wesyoung/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:15:53Z","updated_at":"2015-01-01T15:15:53Z","body":"work-around: cpanm Net::Works::Address --force"}},"public":true,"created_at":"2015-01-01T15:15:53Z","org":{"id":5203786,"login":"csirtgadgets","gravatar_id":"","url":"https://api.github.com/orgs/csirtgadgets","avatar_url":"https://avatars.githubusercontent.com/u/5203786?"}} +,{"id":"2489658409","type":"IssuesEvent","actor":{"id":3656088,"login":"jchodera","gravatar_id":"","url":"https://api.github.com/users/jchodera","avatar_url":"https://avatars.githubusercontent.com/u/3656088?"},"repo":{"id":17611577,"name":"omnia-md/conda-recipes","url":"https://api.github.com/repos/omnia-md/conda-recipes"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/omnia-md/conda-recipes/issues/61","labels_url":"https://api.github.com/repos/omnia-md/conda-recipes/issues/61/labels{/name}","comments_url":"https://api.github.com/repos/omnia-md/conda-recipes/issues/61/comments","events_url":"https://api.github.com/repos/omnia-md/conda-recipes/issues/61/events","html_url":"https://github.com/omnia-md/conda-recipes/issues/61","id":53070725,"number":61,"title":"Issues installing openmm 6.2 conda package on latest miniconda","user":{"login":"jchodera","id":3656088,"avatar_url":"https://avatars.githubusercontent.com/u/3656088?v=3","gravatar_id":"","url":"https://api.github.com/users/jchodera","html_url":"https://github.com/jchodera","followers_url":"https://api.github.com/users/jchodera/followers","following_url":"https://api.github.com/users/jchodera/following{/other_user}","gists_url":"https://api.github.com/users/jchodera/gists{/gist_id}","starred_url":"https://api.github.com/users/jchodera/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jchodera/subscriptions","organizations_url":"https://api.github.com/users/jchodera/orgs","repos_url":"https://api.github.com/users/jchodera/repos","events_url":"https://api.github.com/users/jchodera/events{/privacy}","received_events_url":"https://api.github.com/users/jchodera/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2014-12-29T20:51:22Z","updated_at":"2015-01-01T15:15:53Z","closed_at":"2015-01-01T15:15:53Z","body":"I've just run into this odd error from both an existing and a fresh (see below) `miniconda` install. Has anyone else seen this?\r\n```\r\n[LSKI1497:~] choderaj% sh Miniconda-3.7.0-MacOSX-x86_64.sh -p /Users/choderaj/anaconda -b\r\nPREFIX=/Users/choderaj/anaconda\r\ninstalling: python-2.7.8-1 ...\r\ninstalling: openssl-1.0.1h-1 ...\r\ninstalling: pycosat-0.6.1-py27_0 ...\r\ninstalling: pyyaml-3.11-py27_0 ...\r\ninstalling: readline-6.2-2 ...\r\ninstalling: requests-2.4.1-py27_0 ...\r\ninstalling: sqlite-3.8.4.1-0 ...\r\ninstalling: tk-8.5.15-0 ...\r\ninstalling: yaml-0.1.4-1 ...\r\ninstalling: zlib-1.2.7-1 ...\r\ninstalling: conda-3.7.0-py27_0 ...\r\nPython 2.7.8 :: Continuum Analytics, Inc.\r\ncreating default environment...\r\ninstallation finished.\r\n[LSKI1497:~] choderaj% conda config --add channels https://conda.binstar.org/omnia\r\nSkipping channels: https://conda.binstar.org/omnia, item already exists\r\n[LSKI1497:~] choderaj% conda install openmm\r\nFetching package metadata: .......\r\nSolving package specifications: .\r\nPackage plan for installation in environment /Users/choderaj/anaconda:\r\n\r\nThe following packages will be downloaded:\r\n\r\n package | build\r\n ---------------------------|-----------------\r\n conda-3.7.4 | py27_0 160 KB\r\n fftw3f-3.3.3 | 1 3.2 MB\r\n openmm-6.2 | py27_0 7.9 MB\r\n openssl-1.0.1j | 4 2.5 MB\r\n python-2.7.9 | 1 11.3 MB\r\n requests-2.5.1 | py27_0 586 KB\r\n ------------------------------------------------------------\r\n Total: 25.6 MB\r\n\r\nThe following NEW packages will be INSTALLED:\r\n\r\n fftw3f: 3.3.3-1 \r\n openmm: 6.2-py27_0 \r\n\r\nThe following packages will be UPDATED:\r\n\r\n conda: 3.7.0-py27_0 --> 3.7.4-py27_0\r\n openssl: 1.0.1h-1 --> 1.0.1j-4 \r\n python: 2.7.8-1 --> 2.7.9-1 \r\n requests: 2.4.1-py27_0 --> 2.5.1-py27_0\r\n\r\nProceed ([y]/n)? \r\n\r\nFetching packages ...\r\nconda-3.7.4-py 100% |################################| Time: 0:00:00 222.59 kB/s\r\nfftw3f-3.3.3-1 100% |################################| Time: 0:00:12 263.85 kB/s\r\nopenmm-6.2-py2 100% |################################| Time: 0:00:15 531.09 kB/s\r\nopenssl-1.0.1j 100% |################################| Time: 0:00:08 303.36 kB/s\r\npython-2.7.9-1 100% |################################| Time: 0:00:33 349.15 kB/s\r\nrequests-2.5.1 100% |################################| Time: 0:00:01 521.36 kB/s\r\nExtracting packages ...\r\n[ COMPLETE ] |##################################################| 100%\r\nUnlinking packages ...\r\n[ COMPLETE ] |##################################################| 100%\r\nLinking packages ...\r\nmv: illegal option -- t\r\nusage: mv [-f | -i | -n] [-v] source target\r\n mv [-f | -i | -n] [-v] source ... directory\r\nmv: illegal option -- t\r\nusage: mv [-f | -i | -n] [-v] source target\r\n mv [-f | -i | -n] [-v] source ... directory\r\nmv: illegal option -- t\r\nusage: mv [-f | -i | -n] [-v] source target\r\n mv [-f | -i | -n] [-v] source ... directory\r\nmv: illegal option -- t\r\nusage: mv [-f | -i | -n] [-v] source target\r\n mv [-f | -i | -n] [-v] source ... directory\r\nmv: illegal option -- t\r\nusage: mv [-f | -i | -n] [-v] source target\r\n mv [-f | -i | -n] [-v] source ... directory\r\nmv: illegal option -- t\r\nusage: mv [-f | -i | -n] [-v] source target\r\n mv [-f | -i | -n] [-v] source ... directory\r\nError: Error: post-link failed for: openmm-6.2-py27_0 | 50%\r\n```"}},"public":true,"created_at":"2015-01-01T15:15:53Z","org":{"id":6926022,"login":"omnia-md","gravatar_id":"","url":"https://api.github.com/orgs/omnia-md","avatar_url":"https://avatars.githubusercontent.com/u/6926022?"}} +,{"id":"2489658410","type":"PullRequestEvent","actor":{"id":3656088,"login":"jchodera","gravatar_id":"","url":"https://api.github.com/users/jchodera","avatar_url":"https://avatars.githubusercontent.com/u/3656088?"},"repo":{"id":17611577,"name":"omnia-md/conda-recipes","url":"https://api.github.com/repos/omnia-md/conda-recipes"},"payload":{"action":"closed","number":62,"pull_request":{"url":"https://api.github.com/repos/omnia-md/conda-recipes/pulls/62","id":26670339,"html_url":"https://github.com/omnia-md/conda-recipes/pull/62","diff_url":"https://github.com/omnia-md/conda-recipes/pull/62.diff","patch_url":"https://github.com/omnia-md/conda-recipes/pull/62.patch","issue_url":"https://api.github.com/repos/omnia-md/conda-recipes/issues/62","number":62,"state":"closed","locked":false,"title":"Fixed post-link script to eliminate non-OSX-compatible `mv -t`","user":{"login":"jchodera","id":3656088,"avatar_url":"https://avatars.githubusercontent.com/u/3656088?v=3","gravatar_id":"","url":"https://api.github.com/users/jchodera","html_url":"https://github.com/jchodera","followers_url":"https://api.github.com/users/jchodera/followers","following_url":"https://api.github.com/users/jchodera/following{/other_user}","gists_url":"https://api.github.com/users/jchodera/gists{/gist_id}","starred_url":"https://api.github.com/users/jchodera/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jchodera/subscriptions","organizations_url":"https://api.github.com/users/jchodera/orgs","repos_url":"https://api.github.com/users/jchodera/repos","events_url":"https://api.github.com/users/jchodera/events{/privacy}","received_events_url":"https://api.github.com/users/jchodera/received_events","type":"User","site_admin":false},"body":"This should fix #61 ","created_at":"2014-12-30T01:31:48Z","updated_at":"2015-01-01T15:15:53Z","closed_at":"2015-01-01T15:15:53Z","merged_at":"2015-01-01T15:15:53Z","merge_commit_sha":"1443eed67ccf680221027137b02e3c8a044836fc","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/omnia-md/conda-recipes/pulls/62/commits","review_comments_url":"https://api.github.com/repos/omnia-md/conda-recipes/pulls/62/comments","review_comment_url":"https://api.github.com/repos/omnia-md/conda-recipes/pulls/comments/{number}","comments_url":"https://api.github.com/repos/omnia-md/conda-recipes/issues/62/comments","statuses_url":"https://api.github.com/repos/omnia-md/conda-recipes/statuses/a252e674153a71f7b978e9c4983d31d0739f16a1","head":{"label":"jchodera:fix-openmm","ref":"fix-openmm","sha":"a252e674153a71f7b978e9c4983d31d0739f16a1","user":{"login":"jchodera","id":3656088,"avatar_url":"https://avatars.githubusercontent.com/u/3656088?v=3","gravatar_id":"","url":"https://api.github.com/users/jchodera","html_url":"https://github.com/jchodera","followers_url":"https://api.github.com/users/jchodera/followers","following_url":"https://api.github.com/users/jchodera/following{/other_user}","gists_url":"https://api.github.com/users/jchodera/gists{/gist_id}","starred_url":"https://api.github.com/users/jchodera/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jchodera/subscriptions","organizations_url":"https://api.github.com/users/jchodera/orgs","repos_url":"https://api.github.com/users/jchodera/repos","events_url":"https://api.github.com/users/jchodera/events{/privacy}","received_events_url":"https://api.github.com/users/jchodera/received_events","type":"User","site_admin":false},"repo":{"id":18738406,"name":"conda-recipes","full_name":"jchodera/conda-recipes","owner":{"login":"jchodera","id":3656088,"avatar_url":"https://avatars.githubusercontent.com/u/3656088?v=3","gravatar_id":"","url":"https://api.github.com/users/jchodera","html_url":"https://github.com/jchodera","followers_url":"https://api.github.com/users/jchodera/followers","following_url":"https://api.github.com/users/jchodera/following{/other_user}","gists_url":"https://api.github.com/users/jchodera/gists{/gist_id}","starred_url":"https://api.github.com/users/jchodera/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jchodera/subscriptions","organizations_url":"https://api.github.com/users/jchodera/orgs","repos_url":"https://api.github.com/users/jchodera/repos","events_url":"https://api.github.com/users/jchodera/events{/privacy}","received_events_url":"https://api.github.com/users/jchodera/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/jchodera/conda-recipes","description":"","fork":true,"url":"https://api.github.com/repos/jchodera/conda-recipes","forks_url":"https://api.github.com/repos/jchodera/conda-recipes/forks","keys_url":"https://api.github.com/repos/jchodera/conda-recipes/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jchodera/conda-recipes/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jchodera/conda-recipes/teams","hooks_url":"https://api.github.com/repos/jchodera/conda-recipes/hooks","issue_events_url":"https://api.github.com/repos/jchodera/conda-recipes/issues/events{/number}","events_url":"https://api.github.com/repos/jchodera/conda-recipes/events","assignees_url":"https://api.github.com/repos/jchodera/conda-recipes/assignees{/user}","branches_url":"https://api.github.com/repos/jchodera/conda-recipes/branches{/branch}","tags_url":"https://api.github.com/repos/jchodera/conda-recipes/tags","blobs_url":"https://api.github.com/repos/jchodera/conda-recipes/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jchodera/conda-recipes/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jchodera/conda-recipes/git/refs{/sha}","trees_url":"https://api.github.com/repos/jchodera/conda-recipes/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jchodera/conda-recipes/statuses/{sha}","languages_url":"https://api.github.com/repos/jchodera/conda-recipes/languages","stargazers_url":"https://api.github.com/repos/jchodera/conda-recipes/stargazers","contributors_url":"https://api.github.com/repos/jchodera/conda-recipes/contributors","subscribers_url":"https://api.github.com/repos/jchodera/conda-recipes/subscribers","subscription_url":"https://api.github.com/repos/jchodera/conda-recipes/subscription","commits_url":"https://api.github.com/repos/jchodera/conda-recipes/commits{/sha}","git_commits_url":"https://api.github.com/repos/jchodera/conda-recipes/git/commits{/sha}","comments_url":"https://api.github.com/repos/jchodera/conda-recipes/comments{/number}","issue_comment_url":"https://api.github.com/repos/jchodera/conda-recipes/issues/comments/{number}","contents_url":"https://api.github.com/repos/jchodera/conda-recipes/contents/{+path}","compare_url":"https://api.github.com/repos/jchodera/conda-recipes/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jchodera/conda-recipes/merges","archive_url":"https://api.github.com/repos/jchodera/conda-recipes/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jchodera/conda-recipes/downloads","issues_url":"https://api.github.com/repos/jchodera/conda-recipes/issues{/number}","pulls_url":"https://api.github.com/repos/jchodera/conda-recipes/pulls{/number}","milestones_url":"https://api.github.com/repos/jchodera/conda-recipes/milestones{/number}","notifications_url":"https://api.github.com/repos/jchodera/conda-recipes/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jchodera/conda-recipes/labels{/name}","releases_url":"https://api.github.com/repos/jchodera/conda-recipes/releases{/id}","created_at":"2014-04-13T19:56:45Z","updated_at":"2014-12-30T01:29:51Z","pushed_at":"2014-12-30T02:08:15Z","git_url":"git://github.com/jchodera/conda-recipes.git","ssh_url":"git@github.com:jchodera/conda-recipes.git","clone_url":"https://github.com/jchodera/conda-recipes.git","svn_url":"https://github.com/jchodera/conda-recipes","homepage":null,"size":91333,"stargazers_count":0,"watchers_count":0,"language":"Shell","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":"omnia-md:master","ref":"master","sha":"f93636b48d05c64bcab3a233a15e96bffdf6c4ee","user":{"login":"omnia-md","id":6926022,"avatar_url":"https://avatars.githubusercontent.com/u/6926022?v=3","gravatar_id":"","url":"https://api.github.com/users/omnia-md","html_url":"https://github.com/omnia-md","followers_url":"https://api.github.com/users/omnia-md/followers","following_url":"https://api.github.com/users/omnia-md/following{/other_user}","gists_url":"https://api.github.com/users/omnia-md/gists{/gist_id}","starred_url":"https://api.github.com/users/omnia-md/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/omnia-md/subscriptions","organizations_url":"https://api.github.com/users/omnia-md/orgs","repos_url":"https://api.github.com/users/omnia-md/repos","events_url":"https://api.github.com/users/omnia-md/events{/privacy}","received_events_url":"https://api.github.com/users/omnia-md/received_events","type":"Organization","site_admin":false},"repo":{"id":17611577,"name":"conda-recipes","full_name":"omnia-md/conda-recipes","owner":{"login":"omnia-md","id":6926022,"avatar_url":"https://avatars.githubusercontent.com/u/6926022?v=3","gravatar_id":"","url":"https://api.github.com/users/omnia-md","html_url":"https://github.com/omnia-md","followers_url":"https://api.github.com/users/omnia-md/followers","following_url":"https://api.github.com/users/omnia-md/following{/other_user}","gists_url":"https://api.github.com/users/omnia-md/gists{/gist_id}","starred_url":"https://api.github.com/users/omnia-md/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/omnia-md/subscriptions","organizations_url":"https://api.github.com/users/omnia-md/orgs","repos_url":"https://api.github.com/users/omnia-md/repos","events_url":"https://api.github.com/users/omnia-md/events{/privacy}","received_events_url":"https://api.github.com/users/omnia-md/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/omnia-md/conda-recipes","description":"conda build recipes for the Omnia project","fork":false,"url":"https://api.github.com/repos/omnia-md/conda-recipes","forks_url":"https://api.github.com/repos/omnia-md/conda-recipes/forks","keys_url":"https://api.github.com/repos/omnia-md/conda-recipes/keys{/key_id}","collaborators_url":"https://api.github.com/repos/omnia-md/conda-recipes/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/omnia-md/conda-recipes/teams","hooks_url":"https://api.github.com/repos/omnia-md/conda-recipes/hooks","issue_events_url":"https://api.github.com/repos/omnia-md/conda-recipes/issues/events{/number}","events_url":"https://api.github.com/repos/omnia-md/conda-recipes/events","assignees_url":"https://api.github.com/repos/omnia-md/conda-recipes/assignees{/user}","branches_url":"https://api.github.com/repos/omnia-md/conda-recipes/branches{/branch}","tags_url":"https://api.github.com/repos/omnia-md/conda-recipes/tags","blobs_url":"https://api.github.com/repos/omnia-md/conda-recipes/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/omnia-md/conda-recipes/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/omnia-md/conda-recipes/git/refs{/sha}","trees_url":"https://api.github.com/repos/omnia-md/conda-recipes/git/trees{/sha}","statuses_url":"https://api.github.com/repos/omnia-md/conda-recipes/statuses/{sha}","languages_url":"https://api.github.com/repos/omnia-md/conda-recipes/languages","stargazers_url":"https://api.github.com/repos/omnia-md/conda-recipes/stargazers","contributors_url":"https://api.github.com/repos/omnia-md/conda-recipes/contributors","subscribers_url":"https://api.github.com/repos/omnia-md/conda-recipes/subscribers","subscription_url":"https://api.github.com/repos/omnia-md/conda-recipes/subscription","commits_url":"https://api.github.com/repos/omnia-md/conda-recipes/commits{/sha}","git_commits_url":"https://api.github.com/repos/omnia-md/conda-recipes/git/commits{/sha}","comments_url":"https://api.github.com/repos/omnia-md/conda-recipes/comments{/number}","issue_comment_url":"https://api.github.com/repos/omnia-md/conda-recipes/issues/comments/{number}","contents_url":"https://api.github.com/repos/omnia-md/conda-recipes/contents/{+path}","compare_url":"https://api.github.com/repos/omnia-md/conda-recipes/compare/{base}...{head}","merges_url":"https://api.github.com/repos/omnia-md/conda-recipes/merges","archive_url":"https://api.github.com/repos/omnia-md/conda-recipes/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/omnia-md/conda-recipes/downloads","issues_url":"https://api.github.com/repos/omnia-md/conda-recipes/issues{/number}","pulls_url":"https://api.github.com/repos/omnia-md/conda-recipes/pulls{/number}","milestones_url":"https://api.github.com/repos/omnia-md/conda-recipes/milestones{/number}","notifications_url":"https://api.github.com/repos/omnia-md/conda-recipes/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/omnia-md/conda-recipes/labels{/name}","releases_url":"https://api.github.com/repos/omnia-md/conda-recipes/releases{/id}","created_at":"2014-03-10T23:03:02Z","updated_at":"2014-12-30T22:37:25Z","pushed_at":"2015-01-01T15:15:53Z","git_url":"git://github.com/omnia-md/conda-recipes.git","ssh_url":"git@github.com:omnia-md/conda-recipes.git","clone_url":"https://github.com/omnia-md/conda-recipes.git","svn_url":"https://github.com/omnia-md/conda-recipes","homepage":"http://omnia.md","size":91220,"stargazers_count":0,"watchers_count":0,"language":"Shell","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":4,"mirror_url":null,"open_issues_count":12,"forks":4,"open_issues":12,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/omnia-md/conda-recipes/pulls/62"},"html":{"href":"https://github.com/omnia-md/conda-recipes/pull/62"},"issue":{"href":"https://api.github.com/repos/omnia-md/conda-recipes/issues/62"},"comments":{"href":"https://api.github.com/repos/omnia-md/conda-recipes/issues/62/comments"},"review_comments":{"href":"https://api.github.com/repos/omnia-md/conda-recipes/pulls/62/comments"},"review_comment":{"href":"https://api.github.com/repos/omnia-md/conda-recipes/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/omnia-md/conda-recipes/pulls/62/commits"},"statuses":{"href":"https://api.github.com/repos/omnia-md/conda-recipes/statuses/a252e674153a71f7b978e9c4983d31d0739f16a1"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"jchodera","id":3656088,"avatar_url":"https://avatars.githubusercontent.com/u/3656088?v=3","gravatar_id":"","url":"https://api.github.com/users/jchodera","html_url":"https://github.com/jchodera","followers_url":"https://api.github.com/users/jchodera/followers","following_url":"https://api.github.com/users/jchodera/following{/other_user}","gists_url":"https://api.github.com/users/jchodera/gists{/gist_id}","starred_url":"https://api.github.com/users/jchodera/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jchodera/subscriptions","organizations_url":"https://api.github.com/users/jchodera/orgs","repos_url":"https://api.github.com/users/jchodera/repos","events_url":"https://api.github.com/users/jchodera/events{/privacy}","received_events_url":"https://api.github.com/users/jchodera/received_events","type":"User","site_admin":false},"comments":4,"review_comments":0,"commits":2,"additions":4,"deletions":13,"changed_files":2}},"public":true,"created_at":"2015-01-01T15:15:54Z","org":{"id":6926022,"login":"omnia-md","gravatar_id":"","url":"https://api.github.com/orgs/omnia-md","avatar_url":"https://avatars.githubusercontent.com/u/6926022?"}} +,{"id":"2489658413","type":"PushEvent","actor":{"id":3656088,"login":"jchodera","gravatar_id":"","url":"https://api.github.com/users/jchodera","avatar_url":"https://avatars.githubusercontent.com/u/3656088?"},"repo":{"id":17611577,"name":"omnia-md/conda-recipes","url":"https://api.github.com/repos/omnia-md/conda-recipes"},"payload":{"push_id":536867307,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"9c563ae24662f728a1b4ad1a5cb85a4b465b2f9d","before":"d93b25c31747b3d12058abe7adeebec4be0e3b75","commits":[{"sha":"caa90fe40b02b1f908005a0631c349741819b431","author":{"email":"cfb99decb73c6fbdb8420366eca352f49c58204d@mskcc.org","name":"John Chodera (MSKCC)"},"message":"Fixed post-link script to eliminate non-OSX-compatible `mv -t`.","distinct":true,"url":"https://api.github.com/repos/omnia-md/conda-recipes/commits/caa90fe40b02b1f908005a0631c349741819b431"},{"sha":"a252e674153a71f7b978e9c4983d31d0739f16a1","author":{"email":"cfb99decb73c6fbdb8420366eca352f49c58204d@mskcc.org","name":"John Chodera (MSKCC)"},"message":"Changed example reorganization to build-time rather than post-link.","distinct":true,"url":"https://api.github.com/repos/omnia-md/conda-recipes/commits/a252e674153a71f7b978e9c4983d31d0739f16a1"},{"sha":"9c563ae24662f728a1b4ad1a5cb85a4b465b2f9d","author":{"email":"eb582c3513b166fe2f73d782863f6ae13d3fbf33@gmail.com","name":"John Chodera"},"message":"Merge pull request #62 from jchodera/fix-openmm\n\nFixed post-link script to eliminate non-OSX-compatible `mv -t`","distinct":true,"url":"https://api.github.com/repos/omnia-md/conda-recipes/commits/9c563ae24662f728a1b4ad1a5cb85a4b465b2f9d"}]},"public":true,"created_at":"2015-01-01T15:15:54Z","org":{"id":6926022,"login":"omnia-md","gravatar_id":"","url":"https://api.github.com/orgs/omnia-md","avatar_url":"https://avatars.githubusercontent.com/u/6926022?"}} +,{"id":"2489658415","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":28688435,"name":"brunocarvalhodearaujo/api","url":"https://api.github.com/repos/brunocarvalhodearaujo/api"},"payload":{"ref":"gh-pages","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:15:54Z"} +,{"id":"2489658421","type":"PushEvent","actor":{"id":71368,"login":"wibbe","gravatar_id":"","url":"https://api.github.com/users/wibbe","avatar_url":"https://avatars.githubusercontent.com/u/71368?"},"repo":{"id":27228800,"name":"wibbe/zum","url":"https://api.github.com/repos/wibbe/zum"},"payload":{"push_id":536867310,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"74bd66d951f21f0f880d8a583cb92abce4466f15","before":"4d004d4082b51cea7be3e0c448d87c6bd6d7c6d5","commits":[{"sha":"74bd66d951f21f0f880d8a583cb92abce4466f15","author":{"email":"eeb5b9485724d41d16b472b29e4287f083724355@blueeye.se","name":"Daniel Wiberg"},"message":"Implemented simple text-justify commands","distinct":true,"url":"https://api.github.com/repos/wibbe/zum/commits/74bd66d951f21f0f880d8a583cb92abce4466f15"}]},"public":true,"created_at":"2015-01-01T15:15:55Z"} +,{"id":"2489658422","type":"PushEvent","actor":{"id":1086194,"login":"adrai","gravatar_id":"","url":"https://api.github.com/users/adrai","avatar_url":"https://avatars.githubusercontent.com/u/1086194?"},"repo":{"id":28688745,"name":"adrai/sensortag-visualization","url":"https://api.github.com/repos/adrai/sensortag-visualization"},"payload":{"push_id":536867311,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"714bcde752b8da9278c570e68260f24de70a376f","before":"aa3434def8e29a8a562afde43cbcfade01460fa4","commits":[{"sha":"714bcde752b8da9278c570e68260f24de70a376f","author":{"email":"e3af158d1502dd416c3a070a6f1999d0827edc1c@raiano.ch","name":"Adriano Raiano"},"message":"added sensortag test","distinct":true,"url":"https://api.github.com/repos/adrai/sensortag-visualization/commits/714bcde752b8da9278c570e68260f24de70a376f"}]},"public":true,"created_at":"2015-01-01T15:15:55Z"} +,{"id":"2489658423","type":"IssuesEvent","actor":{"id":50398,"login":"jvalkeal","gravatar_id":"","url":"https://api.github.com/users/jvalkeal","avatar_url":"https://avatars.githubusercontent.com/u/50398?"},"repo":{"id":6296790,"name":"spring-projects/spring-boot","url":"https://api.github.com/repos/spring-projects/spring-boot"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/spring-projects/spring-boot/issues/2271","labels_url":"https://api.github.com/repos/spring-projects/spring-boot/issues/2271/labels{/name}","comments_url":"https://api.github.com/repos/spring-projects/spring-boot/issues/2271/comments","events_url":"https://api.github.com/repos/spring-projects/spring-boot/issues/2271/events","html_url":"https://github.com/spring-projects/spring-boot/issues/2271","id":53221649,"number":2271,"title":"Additional metadata not merged with boot autoconfigure jar in classpath","user":{"login":"jvalkeal","id":50398,"avatar_url":"https://avatars.githubusercontent.com/u/50398?v=3","gravatar_id":"","url":"https://api.github.com/users/jvalkeal","html_url":"https://github.com/jvalkeal","followers_url":"https://api.github.com/users/jvalkeal/followers","following_url":"https://api.github.com/users/jvalkeal/following{/other_user}","gists_url":"https://api.github.com/users/jvalkeal/gists{/gist_id}","starred_url":"https://api.github.com/users/jvalkeal/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jvalkeal/subscriptions","organizations_url":"https://api.github.com/users/jvalkeal/orgs","repos_url":"https://api.github.com/users/jvalkeal/repos","events_url":"https://api.github.com/users/jvalkeal/events{/privacy}","received_events_url":"https://api.github.com/users/jvalkeal/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:15:55Z","updated_at":"2015-01-01T15:15:55Z","closed_at":null,"body":"With gradle(should also happen with maven) `additional-spring-configuration-metadata.json` is not merged into `spring-configuration-metadata.json` which seems to be caused by a multiple files in a tool classpath.\r\n\r\nI added some logging:\r\n```\r\nprivate ConfigurationMetadata mergeManualMetadata(ConfigurationMetadata metadata) {\r\n try { \r\n FileObject manualMetadata = this.processingEnv.getFiler().getResource(\r\n StandardLocation.CLASS_PATH, \"\",\r\n \"META-INF/additional-spring-configuration-metadata.json\");\r\n System.out.println(\"XXX1: \" + manualMetadata);\r\n System.out.println(\"XXX2: \" + manualMetadata.toUri());\r\n System.out.println(\"XXX3: \" + manualMetadata.toUri().getScheme());\r\n if (!\"file\".equals(manualMetadata.toUri().getScheme())) {\r\n // We only want local files, not any classpath jars\r\n return metadata;\r\n }\r\n```\r\n\r\nWhen compiling boot itself, I see expected shown below:\r\n\r\n```\r\n[INFO] Compiling 191 source files to /home/jvalkealahti/repos/jvalkeal/spring-boot/spring-boot/target/classes\r\nXXX1: com.sun.tools.javac.processing.JavacFiler$FilerInputFileObject@cce92a5\r\nXXX2: file:/home/jvalkealahti/repos/jvalkeal/spring-boot/spring-boot/target/classes/META-INF/additional-spring-configuration-metadata.json\r\nXXX3: file\r\n```\r\n\r\nWhen I added bits to SHDP boot module, I see this:\r\n\r\n```\r\n:spring-data-hadoop-boot:compileJava\r\nwarning: [options] bootstrap class path not set in conjunction with -source 1.6\r\nXXX1: com.sun.tools.javac.processing.JavacFiler$FilerInputFileObject@4167292\r\nXXX2: jar:file:/home/jvalkealahti/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.2.1.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.2.1.BUILD-SNAPSHOT.jar!/META-INF/additional-spring-configuration-metadata.json\r\nXXX3: jar\r\n```\r\n\r\nScheme is `jar` so no metadata gets merged. Tests jar is seeing this json with a `file` scheme and stuff is actually merged correctly in this case. I guess in case of tests.jar location of `additional-spring-configuration-metadata.json` just happens to be correct one returned by a `JavacFileManager`.\r\n\r\n```\r\n:spring-data-hadoop-boot:compileTestJava\r\nwarning: [options] bootstrap class path not set in conjunction with -source 1.6\r\nXXX1: com.sun.tools.javac.processing.JavacFiler$FilerInputFileObject@4f7f7eba\r\nXXX2: file:/home/jvalkealahti/repos/jvalkeal/spring-hadoop/spring-hadoop-boot/build/resources/main/META-INF/additional-spring-configuration-metadata.json\r\nXXX3: file\r\n```\r\n\r\nChecking JavacFileManager sources at \r\nhttp://grepcode.com/file/repository.grepcode.com/java/root/jdk/openjdk/6-b14/com/sun/tools/javac/util/JavacFileManager.java#1097\r\n\r\n```\r\n} else {\r\n Iterable path = paths.getPathForLocation(location);\r\n dir = null;\r\n for (File f: path) {\r\n dir = f;\r\n break;\r\n }\r\n}\r\n```\r\n\r\nFirst path is returned whatever it is. `spring-hadoop-boot` depends on `spring-boot-autoconfigure` so second `additional-spring-configuration-metadata.json` is always there. I guess this is only reliable if classpath contains only one `additional-spring-configuration-metadata.json` file. "}},"public":true,"created_at":"2015-01-01T15:15:55Z","org":{"id":317776,"login":"spring-projects","gravatar_id":"","url":"https://api.github.com/orgs/spring-projects","avatar_url":"https://avatars.githubusercontent.com/u/317776?"}} +,{"id":"2489658424","type":"IssuesEvent","actor":{"id":417716,"login":"franek","gravatar_id":"","url":"https://api.github.com/users/franek","avatar_url":"https://avatars.githubusercontent.com/u/417716?"},"repo":{"id":16615699,"name":"wallabag/android-app","url":"https://api.github.com/repos/wallabag/android-app"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/wallabag/android-app/issues/60","labels_url":"https://api.github.com/repos/wallabag/android-app/issues/60/labels{/name}","comments_url":"https://api.github.com/repos/wallabag/android-app/issues/60/comments","events_url":"https://api.github.com/repos/wallabag/android-app/issues/60/events","html_url":"https://github.com/wallabag/android-app/issues/60","id":53221650,"number":60,"title":"Support for ebook reader (i.e. Sony PRS T1)","user":{"login":"franek","id":417716,"avatar_url":"https://avatars.githubusercontent.com/u/417716?v=3","gravatar_id":"","url":"https://api.github.com/users/franek","html_url":"https://github.com/franek","followers_url":"https://api.github.com/users/franek/followers","following_url":"https://api.github.com/users/franek/following{/other_user}","gists_url":"https://api.github.com/users/franek/gists{/gist_id}","starred_url":"https://api.github.com/users/franek/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/franek/subscriptions","organizations_url":"https://api.github.com/users/franek/orgs","repos_url":"https://api.github.com/users/franek/repos","events_url":"https://api.github.com/users/franek/events{/privacy}","received_events_url":"https://api.github.com/users/franek/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:15:55Z","updated_at":"2015-01-01T15:15:55Z","closed_at":null,"body":"I've got an old ebook reader (Sony PRS T1) which is running Android.\r\nI have succeeded in installing wallabag on my ebook and have synchronized my contents with my own installation of Wallabag. Unfortunately, the app does not handle physical button and.pagination is not smooth. It is not usable with my reader.\r\n\r\nDo you know a compatible ebook reader with wallabag ? \r\n\r\nthanks,\r\nHappy new year,\r\n\r\n\r\n"}},"public":true,"created_at":"2015-01-01T15:15:55Z","org":{"id":4143872,"login":"wallabag","gravatar_id":"","url":"https://api.github.com/orgs/wallabag","avatar_url":"https://avatars.githubusercontent.com/u/4143872?"}} +,{"id":"2489658430","type":"PushEvent","actor":{"id":540890,"login":"syphar","gravatar_id":"","url":"https://api.github.com/users/syphar","avatar_url":"https://avatars.githubusercontent.com/u/540890?"},"repo":{"id":28646999,"name":"Thermondo/pytest-translations","url":"https://api.github.com/repos/Thermondo/pytest-translations"},"payload":{"push_id":536867313,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3fea5f621cc239c3a39130e41fbcb661171fecdd","before":"c5ac404f15756055cfa24fbd852fc63d26993482","commits":[{"sha":"3fea5f621cc239c3a39130e41fbcb661171fecdd","author":{"email":"53e3fd5a93ecfcd3f5464cab876fcf3b18df16c5@fastmail.fm","name":"Denis Cornehl"},"message":"add tests","distinct":true,"url":"https://api.github.com/repos/Thermondo/pytest-translations/commits/3fea5f621cc239c3a39130e41fbcb661171fecdd"}]},"public":true,"created_at":"2015-01-01T15:15:55Z","org":{"id":2737160,"login":"Thermondo","gravatar_id":"","url":"https://api.github.com/orgs/Thermondo","avatar_url":"https://avatars.githubusercontent.com/u/2737160?"}} +,{"id":"2489658432","type":"PushEvent","actor":{"id":534245,"login":"toopay","gravatar_id":"","url":"https://api.github.com/users/toopay","avatar_url":"https://avatars.githubusercontent.com/u/534245?"},"repo":{"id":28684236,"name":"toopay/toopay.github.io","url":"https://api.github.com/repos/toopay/toopay.github.io"},"payload":{"push_id":536867316,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"75f969f60bc593bb35b44d48e846c0942ccefbc9","before":"07093b4c67f0e4e84c228e9d7e36b825f04392a2","commits":[{"sha":"75f969f60bc593bb35b44d48e846c0942ccefbc9","author":{"email":"a09aa4f83f3ba395eae09fa61c86d43902f6e74e@taufanaditya.com","name":"Taufan Aditya"},"message":"Jan post [continued]","distinct":true,"url":"https://api.github.com/repos/toopay/toopay.github.io/commits/75f969f60bc593bb35b44d48e846c0942ccefbc9"}]},"public":true,"created_at":"2015-01-01T15:15:56Z"} +,{"id":"2489658434","type":"WatchEvent","actor":{"id":401263,"login":"simplyianm","gravatar_id":"","url":"https://api.github.com/users/simplyianm","avatar_url":"https://avatars.githubusercontent.com/u/401263?"},"repo":{"id":10081651,"name":"yeoman/generator-node","url":"https://api.github.com/repos/yeoman/generator-node"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:15:56Z","org":{"id":1714870,"login":"yeoman","gravatar_id":"","url":"https://api.github.com/orgs/yeoman","avatar_url":"https://avatars.githubusercontent.com/u/1714870?"}} +,{"id":"2489658435","type":"PullRequestEvent","actor":{"id":10176385,"login":"Ti4goc","gravatar_id":"","url":"https://api.github.com/users/Ti4goc","avatar_url":"https://avatars.githubusercontent.com/u/10176385?"},"repo":{"id":13723754,"name":"hola/translate","url":"https://api.github.com/repos/hola/translate"},"payload":{"action":"opened","number":95,"pull_request":{"url":"https://api.github.com/repos/hola/translate/pulls/95","id":26743888,"html_url":"https://github.com/hola/translate/pull/95","diff_url":"https://github.com/hola/translate/pull/95.diff","patch_url":"https://github.com/hola/translate/pull/95.patch","issue_url":"https://api.github.com/repos/hola/translate/issues/95","number":95,"state":"open","locked":false,"title":"Update tr_pt.json","user":{"login":"Ti4goc","id":10176385,"avatar_url":"https://avatars.githubusercontent.com/u/10176385?v=3","gravatar_id":"","url":"https://api.github.com/users/Ti4goc","html_url":"https://github.com/Ti4goc","followers_url":"https://api.github.com/users/Ti4goc/followers","following_url":"https://api.github.com/users/Ti4goc/following{/other_user}","gists_url":"https://api.github.com/users/Ti4goc/gists{/gist_id}","starred_url":"https://api.github.com/users/Ti4goc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Ti4goc/subscriptions","organizations_url":"https://api.github.com/users/Ti4goc/orgs","repos_url":"https://api.github.com/users/Ti4goc/repos","events_url":"https://api.github.com/users/Ti4goc/events{/privacy}","received_events_url":"https://api.github.com/users/Ti4goc/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:15:56Z","updated_at":"2015-01-01T15:15:56Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/hola/translate/pulls/95/commits","review_comments_url":"https://api.github.com/repos/hola/translate/pulls/95/comments","review_comment_url":"https://api.github.com/repos/hola/translate/pulls/comments/{number}","comments_url":"https://api.github.com/repos/hola/translate/issues/95/comments","statuses_url":"https://api.github.com/repos/hola/translate/statuses/0c4bf65c3e62f4054bee0490ac90bf4c245d6a48","head":{"label":"Ti4goc:patch-16","ref":"patch-16","sha":"0c4bf65c3e62f4054bee0490ac90bf4c245d6a48","user":{"login":"Ti4goc","id":10176385,"avatar_url":"https://avatars.githubusercontent.com/u/10176385?v=3","gravatar_id":"","url":"https://api.github.com/users/Ti4goc","html_url":"https://github.com/Ti4goc","followers_url":"https://api.github.com/users/Ti4goc/followers","following_url":"https://api.github.com/users/Ti4goc/following{/other_user}","gists_url":"https://api.github.com/users/Ti4goc/gists{/gist_id}","starred_url":"https://api.github.com/users/Ti4goc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Ti4goc/subscriptions","organizations_url":"https://api.github.com/users/Ti4goc/orgs","repos_url":"https://api.github.com/users/Ti4goc/repos","events_url":"https://api.github.com/users/Ti4goc/events{/privacy}","received_events_url":"https://api.github.com/users/Ti4goc/received_events","type":"User","site_admin":false},"repo":{"id":27960934,"name":"translate","full_name":"Ti4goc/translate","owner":{"login":"Ti4goc","id":10176385,"avatar_url":"https://avatars.githubusercontent.com/u/10176385?v=3","gravatar_id":"","url":"https://api.github.com/users/Ti4goc","html_url":"https://github.com/Ti4goc","followers_url":"https://api.github.com/users/Ti4goc/followers","following_url":"https://api.github.com/users/Ti4goc/following{/other_user}","gists_url":"https://api.github.com/users/Ti4goc/gists{/gist_id}","starred_url":"https://api.github.com/users/Ti4goc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Ti4goc/subscriptions","organizations_url":"https://api.github.com/users/Ti4goc/orgs","repos_url":"https://api.github.com/users/Ti4goc/repos","events_url":"https://api.github.com/users/Ti4goc/events{/privacy}","received_events_url":"https://api.github.com/users/Ti4goc/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Ti4goc/translate","description":"","fork":true,"url":"https://api.github.com/repos/Ti4goc/translate","forks_url":"https://api.github.com/repos/Ti4goc/translate/forks","keys_url":"https://api.github.com/repos/Ti4goc/translate/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Ti4goc/translate/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Ti4goc/translate/teams","hooks_url":"https://api.github.com/repos/Ti4goc/translate/hooks","issue_events_url":"https://api.github.com/repos/Ti4goc/translate/issues/events{/number}","events_url":"https://api.github.com/repos/Ti4goc/translate/events","assignees_url":"https://api.github.com/repos/Ti4goc/translate/assignees{/user}","branches_url":"https://api.github.com/repos/Ti4goc/translate/branches{/branch}","tags_url":"https://api.github.com/repos/Ti4goc/translate/tags","blobs_url":"https://api.github.com/repos/Ti4goc/translate/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Ti4goc/translate/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Ti4goc/translate/git/refs{/sha}","trees_url":"https://api.github.com/repos/Ti4goc/translate/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Ti4goc/translate/statuses/{sha}","languages_url":"https://api.github.com/repos/Ti4goc/translate/languages","stargazers_url":"https://api.github.com/repos/Ti4goc/translate/stargazers","contributors_url":"https://api.github.com/repos/Ti4goc/translate/contributors","subscribers_url":"https://api.github.com/repos/Ti4goc/translate/subscribers","subscription_url":"https://api.github.com/repos/Ti4goc/translate/subscription","commits_url":"https://api.github.com/repos/Ti4goc/translate/commits{/sha}","git_commits_url":"https://api.github.com/repos/Ti4goc/translate/git/commits{/sha}","comments_url":"https://api.github.com/repos/Ti4goc/translate/comments{/number}","issue_comment_url":"https://api.github.com/repos/Ti4goc/translate/issues/comments/{number}","contents_url":"https://api.github.com/repos/Ti4goc/translate/contents/{+path}","compare_url":"https://api.github.com/repos/Ti4goc/translate/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Ti4goc/translate/merges","archive_url":"https://api.github.com/repos/Ti4goc/translate/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Ti4goc/translate/downloads","issues_url":"https://api.github.com/repos/Ti4goc/translate/issues{/number}","pulls_url":"https://api.github.com/repos/Ti4goc/translate/pulls{/number}","milestones_url":"https://api.github.com/repos/Ti4goc/translate/milestones{/number}","notifications_url":"https://api.github.com/repos/Ti4goc/translate/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Ti4goc/translate/labels{/name}","releases_url":"https://api.github.com/repos/Ti4goc/translate/releases{/id}","created_at":"2014-12-13T13:09:19Z","updated_at":"2014-11-24T08:43:17Z","pushed_at":"2015-01-01T15:14:38Z","git_url":"git://github.com/Ti4goc/translate.git","ssh_url":"git@github.com:Ti4goc/translate.git","clone_url":"https://github.com/Ti4goc/translate.git","svn_url":"https://github.com/Ti4goc/translate","homepage":"http://translate.hola.org","size":7999,"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":"hola:master","ref":"master","sha":"8e0c213ea72cecd8dda28dcc230f8b89f4947b49","user":{"login":"hola","id":3351854,"avatar_url":"https://avatars.githubusercontent.com/u/3351854?v=3","gravatar_id":"","url":"https://api.github.com/users/hola","html_url":"https://github.com/hola","followers_url":"https://api.github.com/users/hola/followers","following_url":"https://api.github.com/users/hola/following{/other_user}","gists_url":"https://api.github.com/users/hola/gists{/gist_id}","starred_url":"https://api.github.com/users/hola/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hola/subscriptions","organizations_url":"https://api.github.com/users/hola/orgs","repos_url":"https://api.github.com/users/hola/repos","events_url":"https://api.github.com/users/hola/events{/privacy}","received_events_url":"https://api.github.com/users/hola/received_events","type":"Organization","site_admin":false},"repo":{"id":13723754,"name":"translate","full_name":"hola/translate","owner":{"login":"hola","id":3351854,"avatar_url":"https://avatars.githubusercontent.com/u/3351854?v=3","gravatar_id":"","url":"https://api.github.com/users/hola","html_url":"https://github.com/hola","followers_url":"https://api.github.com/users/hola/followers","following_url":"https://api.github.com/users/hola/following{/other_user}","gists_url":"https://api.github.com/users/hola/gists{/gist_id}","starred_url":"https://api.github.com/users/hola/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hola/subscriptions","organizations_url":"https://api.github.com/users/hola/orgs","repos_url":"https://api.github.com/users/hola/repos","events_url":"https://api.github.com/users/hola/events{/privacy}","received_events_url":"https://api.github.com/users/hola/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/hola/translate","description":"","fork":false,"url":"https://api.github.com/repos/hola/translate","forks_url":"https://api.github.com/repos/hola/translate/forks","keys_url":"https://api.github.com/repos/hola/translate/keys{/key_id}","collaborators_url":"https://api.github.com/repos/hola/translate/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/hola/translate/teams","hooks_url":"https://api.github.com/repos/hola/translate/hooks","issue_events_url":"https://api.github.com/repos/hola/translate/issues/events{/number}","events_url":"https://api.github.com/repos/hola/translate/events","assignees_url":"https://api.github.com/repos/hola/translate/assignees{/user}","branches_url":"https://api.github.com/repos/hola/translate/branches{/branch}","tags_url":"https://api.github.com/repos/hola/translate/tags","blobs_url":"https://api.github.com/repos/hola/translate/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/hola/translate/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/hola/translate/git/refs{/sha}","trees_url":"https://api.github.com/repos/hola/translate/git/trees{/sha}","statuses_url":"https://api.github.com/repos/hola/translate/statuses/{sha}","languages_url":"https://api.github.com/repos/hola/translate/languages","stargazers_url":"https://api.github.com/repos/hola/translate/stargazers","contributors_url":"https://api.github.com/repos/hola/translate/contributors","subscribers_url":"https://api.github.com/repos/hola/translate/subscribers","subscription_url":"https://api.github.com/repos/hola/translate/subscription","commits_url":"https://api.github.com/repos/hola/translate/commits{/sha}","git_commits_url":"https://api.github.com/repos/hola/translate/git/commits{/sha}","comments_url":"https://api.github.com/repos/hola/translate/comments{/number}","issue_comment_url":"https://api.github.com/repos/hola/translate/issues/comments/{number}","contents_url":"https://api.github.com/repos/hola/translate/contents/{+path}","compare_url":"https://api.github.com/repos/hola/translate/compare/{base}...{head}","merges_url":"https://api.github.com/repos/hola/translate/merges","archive_url":"https://api.github.com/repos/hola/translate/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/hola/translate/downloads","issues_url":"https://api.github.com/repos/hola/translate/issues{/number}","pulls_url":"https://api.github.com/repos/hola/translate/pulls{/number}","milestones_url":"https://api.github.com/repos/hola/translate/milestones{/number}","notifications_url":"https://api.github.com/repos/hola/translate/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/hola/translate/labels{/name}","releases_url":"https://api.github.com/repos/hola/translate/releases{/id}","created_at":"2013-10-20T17:55:20Z","updated_at":"2014-12-17T21:18:41Z","pushed_at":"2014-12-30T10:20:31Z","git_url":"git://github.com/hola/translate.git","ssh_url":"git@github.com:hola/translate.git","clone_url":"https://github.com/hola/translate.git","svn_url":"https://github.com/hola/translate","homepage":"http://translate.hola.org","size":8853,"stargazers_count":9,"watchers_count":9,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":81,"mirror_url":null,"open_issues_count":4,"forks":81,"open_issues":4,"watchers":9,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/hola/translate/pulls/95"},"html":{"href":"https://github.com/hola/translate/pull/95"},"issue":{"href":"https://api.github.com/repos/hola/translate/issues/95"},"comments":{"href":"https://api.github.com/repos/hola/translate/issues/95/comments"},"review_comments":{"href":"https://api.github.com/repos/hola/translate/pulls/95/comments"},"review_comment":{"href":"https://api.github.com/repos/hola/translate/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/hola/translate/pulls/95/commits"},"statuses":{"href":"https://api.github.com/repos/hola/translate/statuses/0c4bf65c3e62f4054bee0490ac90bf4c245d6a48"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":20,"deletions":20,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:15:56Z","org":{"id":3351854,"login":"hola","gravatar_id":"","url":"https://api.github.com/orgs/hola","avatar_url":"https://avatars.githubusercontent.com/u/3351854?"}} +,{"id":"2489658444","type":"WatchEvent","actor":{"id":4933,"login":"javierarce","gravatar_id":"","url":"https://api.github.com/users/javierarce","avatar_url":"https://avatars.githubusercontent.com/u/4933?"},"repo":{"id":21481710,"name":"SlexAxton/css-colorguard","url":"https://api.github.com/repos/SlexAxton/css-colorguard"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:15:57Z"} +,{"id":"2489658450","type":"PushEvent","actor":{"id":7142711,"login":"grlurton","gravatar_id":"","url":"https://api.github.com/users/grlurton","avatar_url":"https://avatars.githubusercontent.com/u/7142711?"},"repo":{"id":28516571,"name":"grlurton/DRC_HRH","url":"https://api.github.com/repos/grlurton/DRC_HRH"},"payload":{"push_id":536867320,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4a3e6703dacdd9c67306054407af89f7cb1259d0","before":"1565a1e3913a3465754b14eaba4d315634a3eb05","commits":[{"sha":"4a3e6703dacdd9c67306054407af89f7cb1259d0","author":{"email":"e67c0f43cb1ea6bd04abf6ce38a3178126bc2559@uw.edu","name":"Grégoire Lurton"},"message":"recoding basic descriptives","distinct":true,"url":"https://api.github.com/repos/grlurton/DRC_HRH/commits/4a3e6703dacdd9c67306054407af89f7cb1259d0"}]},"public":true,"created_at":"2015-01-01T15:15:57Z"} +,{"id":"2489658451","type":"IssueCommentEvent","actor":{"id":429073,"login":"rokon12","gravatar_id":"","url":"https://api.github.com/users/rokon12","avatar_url":"https://avatars.githubusercontent.com/u/429073?"},"repo":{"id":27989776,"name":"mozammel/bdchub","url":"https://api.github.com/repos/mozammel/bdchub"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/mozammel/bdchub/issues/4","labels_url":"https://api.github.com/repos/mozammel/bdchub/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/mozammel/bdchub/issues/4/comments","events_url":"https://api.github.com/repos/mozammel/bdchub/issues/4/events","html_url":"https://github.com/mozammel/bdchub/issues/4","id":52986851,"number":4,"title":"Single Login (Social Login)","user":{"login":"mozammel","id":147597,"avatar_url":"https://avatars.githubusercontent.com/u/147597?v=3","gravatar_id":"","url":"https://api.github.com/users/mozammel","html_url":"https://github.com/mozammel","followers_url":"https://api.github.com/users/mozammel/followers","following_url":"https://api.github.com/users/mozammel/following{/other_user}","gists_url":"https://api.github.com/users/mozammel/gists{/gist_id}","starred_url":"https://api.github.com/users/mozammel/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mozammel/subscriptions","organizations_url":"https://api.github.com/users/mozammel/orgs","repos_url":"https://api.github.com/users/mozammel/repos","events_url":"https://api.github.com/users/mozammel/events{/privacy}","received_events_url":"https://api.github.com/users/mozammel/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":{"login":"rokon12","id":429073,"avatar_url":"https://avatars.githubusercontent.com/u/429073?v=3","gravatar_id":"","url":"https://api.github.com/users/rokon12","html_url":"https://github.com/rokon12","followers_url":"https://api.github.com/users/rokon12/followers","following_url":"https://api.github.com/users/rokon12/following{/other_user}","gists_url":"https://api.github.com/users/rokon12/gists{/gist_id}","starred_url":"https://api.github.com/users/rokon12/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rokon12/subscriptions","organizations_url":"https://api.github.com/users/rokon12/orgs","repos_url":"https://api.github.com/users/rokon12/repos","events_url":"https://api.github.com/users/rokon12/events{/privacy}","received_events_url":"https://api.github.com/users/rokon12/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/mozammel/bdchub/milestones/1","labels_url":"https://api.github.com/repos/mozammel/bdchub/milestones/1/labels","id":914011,"number":1,"title":"Next Tasks","description":"Confirmed next items are listed here.","creator":{"login":"mozammel","id":147597,"avatar_url":"https://avatars.githubusercontent.com/u/147597?v=3","gravatar_id":"","url":"https://api.github.com/users/mozammel","html_url":"https://github.com/mozammel","followers_url":"https://api.github.com/users/mozammel/followers","following_url":"https://api.github.com/users/mozammel/following{/other_user}","gists_url":"https://api.github.com/users/mozammel/gists{/gist_id}","starred_url":"https://api.github.com/users/mozammel/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mozammel/subscriptions","organizations_url":"https://api.github.com/users/mozammel/orgs","repos_url":"https://api.github.com/users/mozammel/repos","events_url":"https://api.github.com/users/mozammel/events{/privacy}","received_events_url":"https://api.github.com/users/mozammel/received_events","type":"User","site_admin":false},"open_issues":9,"closed_issues":0,"state":"open","created_at":"2014-12-24T07:14:32Z","updated_at":"2014-12-28T15:54:17Z","due_on":null,"closed_at":null},"comments":1,"created_at":"2014-12-28T15:50:23Z","updated_at":"2015-01-01T15:15:57Z","closed_at":null,"body":"User should be able to signin with their Facebook ID"},"comment":{"url":"https://api.github.com/repos/mozammel/bdchub/issues/comments/68488823","html_url":"https://github.com/mozammel/bdchub/issues/4#issuecomment-68488823","issue_url":"https://api.github.com/repos/mozammel/bdchub/issues/4","id":68488823,"user":{"login":"rokon12","id":429073,"avatar_url":"https://avatars.githubusercontent.com/u/429073?v=3","gravatar_id":"","url":"https://api.github.com/users/rokon12","html_url":"https://github.com/rokon12","followers_url":"https://api.github.com/users/rokon12/followers","following_url":"https://api.github.com/users/rokon12/following{/other_user}","gists_url":"https://api.github.com/users/rokon12/gists{/gist_id}","starred_url":"https://api.github.com/users/rokon12/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rokon12/subscriptions","organizations_url":"https://api.github.com/users/rokon12/orgs","repos_url":"https://api.github.com/users/rokon12/repos","events_url":"https://api.github.com/users/rokon12/events{/privacy}","received_events_url":"https://api.github.com/users/rokon12/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:15:57Z","updated_at":"2015-01-01T15:15:57Z","body":"I'm working on it"}},"public":true,"created_at":"2015-01-01T15:15:57Z"} +,{"id":"2489658462","type":"PushEvent","actor":{"id":10266212,"login":"manojtilekar","gravatar_id":"","url":"https://api.github.com/users/manojtilekar","avatar_url":"https://avatars.githubusercontent.com/u/10266212?"},"repo":{"id":28325312,"name":"manojtilekar/HPA_XML","url":"https://api.github.com/repos/manojtilekar/HPA_XML"},"payload":{"push_id":536867322,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1f5fdf8d08bd30203a6641360e8bfd6171c5b0af","before":"06dd289d7f8848a848ad515eefca866dfb8ff3ba","commits":[{"sha":"1f5fdf8d08bd30203a6641360e8bfd6171c5b0af","author":{"email":"f5598f23ae52d8063605a864a51d7f834abf518b@gmail.com","name":"manojtilekar"},"message":"Update transportlist.xml","distinct":true,"url":"https://api.github.com/repos/manojtilekar/HPA_XML/commits/1f5fdf8d08bd30203a6641360e8bfd6171c5b0af"}]},"public":true,"created_at":"2015-01-01T15:15:59Z"} +,{"id":"2489658463","type":"IssuesEvent","actor":{"id":1702533,"login":"Gargaj","gravatar_id":"","url":"https://api.github.com/users/Gargaj","avatar_url":"https://avatars.githubusercontent.com/u/1702533?"},"repo":{"id":11588081,"name":"pouetnet/pouet2.0","url":"https://api.github.com/repos/pouetnet/pouet2.0"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/pouetnet/pouet2.0/issues/44","labels_url":"https://api.github.com/repos/pouetnet/pouet2.0/issues/44/labels{/name}","comments_url":"https://api.github.com/repos/pouetnet/pouet2.0/issues/44/comments","events_url":"https://api.github.com/repos/pouetnet/pouet2.0/issues/44/events","html_url":"https://github.com/pouetnet/pouet2.0/issues/44","id":52869620,"number":44,"title":"Broken link checker","user":{"login":"Gargaj","id":1702533,"avatar_url":"https://avatars.githubusercontent.com/u/1702533?v=3","gravatar_id":"","url":"https://api.github.com/users/Gargaj","html_url":"https://github.com/Gargaj","followers_url":"https://api.github.com/users/Gargaj/followers","following_url":"https://api.github.com/users/Gargaj/following{/other_user}","gists_url":"https://api.github.com/users/Gargaj/gists{/gist_id}","starred_url":"https://api.github.com/users/Gargaj/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Gargaj/subscriptions","organizations_url":"https://api.github.com/users/Gargaj/orgs","repos_url":"https://api.github.com/users/Gargaj/repos","events_url":"https://api.github.com/users/Gargaj/events{/privacy}","received_events_url":"https://api.github.com/users/Gargaj/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/pouetnet/pouet2.0/labels/type%3Aenhancement","name":"type:enhancement","color":"009800"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2014-12-25T18:27:49Z","updated_at":"2015-01-01T15:15:59Z","closed_at":"2015-01-01T15:15:59Z","body":"Cron that periodically picks a random item, tries the download link, if it leads to 4xx, store that and display on the prod page."}},"public":true,"created_at":"2015-01-01T15:15:59Z","org":{"id":4368074,"login":"pouetnet","gravatar_id":"","url":"https://api.github.com/orgs/pouetnet","avatar_url":"https://avatars.githubusercontent.com/u/4368074?"}} +,{"id":"2489658464","type":"PushEvent","actor":{"id":769992,"login":"f0rmat1k","gravatar_id":"","url":"https://api.github.com/users/f0rmat1k","avatar_url":"https://avatars.githubusercontent.com/u/769992?"},"repo":{"id":28592187,"name":"f0rmat1k/y-button","url":"https://api.github.com/repos/f0rmat1k/y-button"},"payload":{"push_id":536867323,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f6a9db80632a1549cf27cdd9685f3c13294afef1","before":"c32e659e5665d3ae83bb2b269149f19151699100","commits":[{"sha":"f6a9db80632a1549cf27cdd9685f3c13294afef1","author":{"email":"43208274e15fe2a7791b0f6183ea4406fece79da@yandex-team.ru","name":"Anton Grischenko"},"message":"Add round-side support #4","distinct":true,"url":"https://api.github.com/repos/f0rmat1k/y-button/commits/f6a9db80632a1549cf27cdd9685f3c13294afef1"}]},"public":true,"created_at":"2015-01-01T15:15:59Z"} +,{"id":"2489658466","type":"PushEvent","actor":{"id":8154609,"login":"codectile","gravatar_id":"","url":"https://api.github.com/users/codectile","avatar_url":"https://avatars.githubusercontent.com/u/8154609?"},"repo":{"id":24581633,"name":"codectile/Throwing-Knife","url":"https://api.github.com/repos/codectile/Throwing-Knife"},"payload":{"push_id":536867324,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a8b4d7ad9f28120dd998878a3b2e5e194e724897","before":"c614a94ec2710936c356d161fa5a5e75f460814f","commits":[{"sha":"a8b4d7ad9f28120dd998878a3b2e5e194e724897","author":{"email":"00fe3da14d6ec402f5bf74e2d92ab3099b2e862d@gmail.com","name":"Codectile"},"message":"Update knife.inc","distinct":true,"url":"https://api.github.com/repos/codectile/Throwing-Knife/commits/a8b4d7ad9f28120dd998878a3b2e5e194e724897"}]},"public":true,"created_at":"2015-01-01T15:15:59Z"} +,{"id":"2489658467","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":22527203,"name":"marco-c/j2me.js","url":"https://api.github.com/repos/marco-c/j2me.js"},"payload":{"push_id":536867325,"size":7,"distinct_size":0,"ref":"refs/heads/master","head":"26dc481162c00104934620d8daa7490158af2fb8","before":"df65210e278bcf2c90116b4063ccebfd457775e7","commits":[{"sha":"db1fcf80384f68b4869d9280061a0013de19b136","author":{"email":"8e8803dd70e002f901c0b96b30e84a790baae37f@studenti.unina.it","name":"Marco Castelluccio"},"message":"Fix the 'contact.tel is null' bug","distinct":false,"url":"https://api.github.com/repos/marco-c/j2me.js/commits/db1fcf80384f68b4869d9280061a0013de19b136"},{"sha":"7622bd48a49820a30b8a1bd63bb94cef8a60f3d9","author":{"email":"8e8803dd70e002f901c0b96b30e84a790baae37f@studenti.unina.it","name":"Marco Castelluccio"},"message":"Add some testing contacts with tel=null","distinct":false,"url":"https://api.github.com/repos/marco-c/j2me.js/commits/7622bd48a49820a30b8a1bd63bb94cef8a60f3d9"},{"sha":"e0f1e83cecffa03c2f169b875ce75edb9d18bc48","author":{"email":"8e8803dd70e002f901c0b96b30e84a790baae37f@studenti.unina.it","name":"Marco Castelluccio"},"message":"Merge branch 'master' of https://github.com/andreasgal/j2me.js into fix_contacts_with_null_tel\n\nConflicts:\n\ttests/automation.js","distinct":false,"url":"https://api.github.com/repos/marco-c/j2me.js/commits/e0f1e83cecffa03c2f169b875ce75edb9d18bc48"},{"sha":"3992498a5ebcaae3287e810bfec889e0a21f3a56","author":{"email":"06a661d8656af919ab1a27e1bef78119ec5c6f9f@mozilla.org","name":"Myk Melez"},"message":"Merge pull request #795 from marco-c/fix_contacts_with_null_tel\n\nFix the 'contact.tel is null' bug","distinct":false,"url":"https://api.github.com/repos/marco-c/j2me.js/commits/3992498a5ebcaae3287e810bfec889e0a21f3a56"},{"sha":"fc5a53a8f057082220755554629a63f24c0859a1","author":{"email":"06a661d8656af919ab1a27e1bef78119ec5c6f9f@mozilla.org","name":"Myk Melez"},"message":"enable FileConnection TCK tests in automation","distinct":false,"url":"https://api.github.com/repos/marco-c/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":false,"url":"https://api.github.com/repos/marco-c/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":false,"url":"https://api.github.com/repos/marco-c/j2me.js/commits/26dc481162c00104934620d8daa7490158af2fb8"}]},"public":true,"created_at":"2015-01-01T15:16:00Z"} +,{"id":"2489658468","type":"PushEvent","actor":{"id":3335027,"login":"changee","gravatar_id":"","url":"https://api.github.com/users/changee","avatar_url":"https://avatars.githubusercontent.com/u/3335027?"},"repo":{"id":27637346,"name":"changee/DesingPatterns","url":"https://api.github.com/repos/changee/DesingPatterns"},"payload":{"push_id":536867326,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"528a4a8893e2bdcdee0e4bcb9634a88963050234","before":"903d1c36304b576c68ba67e2b8cf56087939d33a","commits":[{"sha":"528a4a8893e2bdcdee0e4bcb9634a88963050234","author":{"email":"68afab13bdc919f2965ab552f4909e7c1e8c03e0@qq.com","name":"yangzq"},"message":"记录一些概念\n\n软件设计的一些原则","distinct":true,"url":"https://api.github.com/repos/changee/DesingPatterns/commits/528a4a8893e2bdcdee0e4bcb9634a88963050234"}]},"public":true,"created_at":"2015-01-01T15:16:00Z"} +,{"id":"2489658473","type":"PushEvent","actor":{"id":8986844,"login":"lotpb","gravatar_id":"","url":"https://api.github.com/users/lotpb","avatar_url":"https://avatars.githubusercontent.com/u/8986844?"},"repo":{"id":28059568,"name":"lotpb/MySQL","url":"https://api.github.com/repos/lotpb/MySQL"},"payload":{"push_id":536867327,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2c0664380bccf3f48d462b22c58ed500162828f4","before":"2ff8592929bd145f80261d67c70037c761da9015","commits":[{"sha":"2c0664380bccf3f48d462b22c58ed500162828f4","author":{"email":"17c6d4f2329384bdf3c3ae9991fb8a95db90ab60@PeterBamosiMac3.home","name":"lotpb"},"message":"1/1/15","distinct":true,"url":"https://api.github.com/repos/lotpb/MySQL/commits/2c0664380bccf3f48d462b22c58ed500162828f4"}]},"public":true,"created_at":"2015-01-01T15:16:00Z"} +,{"id":"2489658474","type":"PushEvent","actor":{"id":49415,"login":"snoyberg","gravatar_id":"","url":"https://api.github.com/users/snoyberg","avatar_url":"https://avatars.githubusercontent.com/u/49415?"},"repo":{"id":27908670,"name":"fpco/lts-haskell","url":"https://api.github.com/repos/fpco/lts-haskell"},"payload":{"push_id":536867328,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"dcca542956556aae0f64a0dfc6df89f76b60c2df","before":"3761b0176e1252017ed429413aec4e71b4619045","commits":[{"sha":"dcca542956556aae0f64a0dfc6df89f76b60c2df","author":{"email":"17b9e1c64588c7fa6419b4d29dc1f4426279ba01@snoyman.com","name":"Michael Snoyman"},"message":"Added new LTS release: 1.0","distinct":true,"url":"https://api.github.com/repos/fpco/lts-haskell/commits/dcca542956556aae0f64a0dfc6df89f76b60c2df"}]},"public":true,"created_at":"2015-01-01T15:16:00Z","org":{"id":2163372,"login":"fpco","gravatar_id":"","url":"https://api.github.com/orgs/fpco","avatar_url":"https://avatars.githubusercontent.com/u/2163372?"}} +,{"id":"2489658476","type":"PushEvent","actor":{"id":3797972,"login":"oceanjack","gravatar_id":"","url":"https://api.github.com/users/oceanjack","avatar_url":"https://avatars.githubusercontent.com/u/3797972?"},"repo":{"id":27213484,"name":"oceanjack/oceanjack.github.io","url":"https://api.github.com/repos/oceanjack/oceanjack.github.io"},"payload":{"push_id":536867329,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b35505285aa102ed5c3d2df468a3cc2cb2c08ce5","before":"9aa625738da458a0f9cb916468fc381bb8ff8188","commits":[{"sha":"b35505285aa102ed5c3d2df468a3cc2cb2c08ce5","author":{"email":"e7962a36105d0ad4343dd588376fafc81e75f2e2@gmail.com","name":"oceanjack"},"message":"update","distinct":true,"url":"https://api.github.com/repos/oceanjack/oceanjack.github.io/commits/b35505285aa102ed5c3d2df468a3cc2cb2c08ce5"}]},"public":true,"created_at":"2015-01-01T15:16:00Z"} +,{"id":"2489658477","type":"CreateEvent","actor":{"id":706309,"login":"fashraf","gravatar_id":"","url":"https://api.github.com/users/fashraf","avatar_url":"https://avatars.githubusercontent.com/u/706309?"},"repo":{"id":28688898,"name":"fashraf/6Signal","url":"https://api.github.com/repos/fashraf/6Signal"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:00Z"} +,{"id":"2489658479","type":"CreateEvent","actor":{"id":7173209,"login":"dhimelick","gravatar_id":"","url":"https://api.github.com/users/dhimelick","avatar_url":"https://avatars.githubusercontent.com/u/7173209?"},"repo":{"id":28688899,"name":"dhimelick/pong","url":"https://api.github.com/repos/dhimelick/pong"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Pong Visual C++ test","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:01Z"} +,{"id":"2489658485","type":"WatchEvent","actor":{"id":2040546,"login":"pavlunya","gravatar_id":"","url":"https://api.github.com/users/pavlunya","avatar_url":"https://avatars.githubusercontent.com/u/2040546?"},"repo":{"id":7380528,"name":"jeckman/YouTube-Downloader","url":"https://api.github.com/repos/jeckman/YouTube-Downloader"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:16:01Z"} +,{"id":"2489658488","type":"PushEvent","actor":{"id":1780689,"login":"TassLehoff","gravatar_id":"","url":"https://api.github.com/users/TassLehoff","avatar_url":"https://avatars.githubusercontent.com/u/1780689?"},"repo":{"id":21202472,"name":"TassLehoff/AGoT-OCTGN","url":"https://api.github.com/repos/TassLehoff/AGoT-OCTGN"},"payload":{"push_id":536867334,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6ab2dc20ffe782099f7ff7b5b82c9f7f74c2333d","before":"d9179f83781515bbf82d2f0d3d1cd827fc22b1bb","commits":[{"sha":"6ab2dc20ffe782099f7ff7b5b82c9f7f74c2333d","author":{"email":"35529c8f9c2a4a7bec2e97cc5a25a23734305ea4@gmail.com","name":"TassLehoff"},"message":"Update","distinct":true,"url":"https://api.github.com/repos/TassLehoff/AGoT-OCTGN/commits/6ab2dc20ffe782099f7ff7b5b82c9f7f74c2333d"}]},"public":true,"created_at":"2015-01-01T15:16:01Z"} +,{"id":"2489658498","type":"PushEvent","actor":{"id":8065015,"login":"daizhiyu","gravatar_id":"","url":"https://api.github.com/users/daizhiyu","avatar_url":"https://avatars.githubusercontent.com/u/8065015?"},"repo":{"id":13167518,"name":"jason0037/vt","url":"https://api.github.com/repos/jason0037/vt"},"payload":{"push_id":536867338,"size":1,"distinct_size":1,"ref":"refs/heads/cheuks","head":"42cf1700f96118ad1cc4594b49cb9096c47ba4b1","before":"2fbd86dbbc113c6e312005533075d7c5f8c273ba","commits":[{"sha":"42cf1700f96118ad1cc4594b49cb9096c47ba4b1","author":{"email":"65ad6343e4c138d7ddd68df14db8e1337e7b69c5@qq.com","name":"daizhiyu"},"message":"\tmodified: app/views/admin/promotions/_goods_form.html.erb","distinct":true,"url":"https://api.github.com/repos/jason0037/vt/commits/42cf1700f96118ad1cc4594b49cb9096c47ba4b1"}]},"public":true,"created_at":"2015-01-01T15:16:03Z"} +,{"id":"2489658506","type":"PushEvent","actor":{"id":2981491,"login":"h4cc","gravatar_id":"","url":"https://api.github.com/users/h4cc","avatar_url":"https://avatars.githubusercontent.com/u/2981491?"},"repo":{"id":28688869,"name":"h4cc/Transformer","url":"https://api.github.com/repos/h4cc/Transformer"},"payload":{"push_id":536867341,"size":1,"distinct_size":1,"ref":"refs/heads/patch-1","head":"f15758ce40a43f6d16638ef784007b95ec186672","before":"012ab3c34493432c692c4d99da8974852aed8c87","commits":[{"sha":"f15758ce40a43f6d16638ef784007b95ec186672","author":{"email":"64b2b6d12bfe4baae7dad3d018f8cbf6b0e7a044@h4cc.de","name":"Julius Beckmann"},"message":"Testing some stuff...","distinct":true,"url":"https://api.github.com/repos/h4cc/Transformer/commits/f15758ce40a43f6d16638ef784007b95ec186672"}]},"public":true,"created_at":"2015-01-01T15:16:04Z"} +,{"id":"2489658508","type":"ForkEvent","actor":{"id":7096212,"login":"FranGM","gravatar_id":"","url":"https://api.github.com/users/FranGM","avatar_url":"https://avatars.githubusercontent.com/u/7096212?"},"repo":{"id":14179252,"name":"kelseyhightower/envconfig","url":"https://api.github.com/repos/kelseyhightower/envconfig"},"payload":{"forkee":{"id":28688900,"name":"envconfig","full_name":"FranGM/envconfig","owner":{"login":"FranGM","id":7096212,"avatar_url":"https://avatars.githubusercontent.com/u/7096212?v=3","gravatar_id":"","url":"https://api.github.com/users/FranGM","html_url":"https://github.com/FranGM","followers_url":"https://api.github.com/users/FranGM/followers","following_url":"https://api.github.com/users/FranGM/following{/other_user}","gists_url":"https://api.github.com/users/FranGM/gists{/gist_id}","starred_url":"https://api.github.com/users/FranGM/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/FranGM/subscriptions","organizations_url":"https://api.github.com/users/FranGM/orgs","repos_url":"https://api.github.com/users/FranGM/repos","events_url":"https://api.github.com/users/FranGM/events{/privacy}","received_events_url":"https://api.github.com/users/FranGM/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/FranGM/envconfig","description":"Golang library for managing configuration data from environment variables","fork":true,"url":"https://api.github.com/repos/FranGM/envconfig","forks_url":"https://api.github.com/repos/FranGM/envconfig/forks","keys_url":"https://api.github.com/repos/FranGM/envconfig/keys{/key_id}","collaborators_url":"https://api.github.com/repos/FranGM/envconfig/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/FranGM/envconfig/teams","hooks_url":"https://api.github.com/repos/FranGM/envconfig/hooks","issue_events_url":"https://api.github.com/repos/FranGM/envconfig/issues/events{/number}","events_url":"https://api.github.com/repos/FranGM/envconfig/events","assignees_url":"https://api.github.com/repos/FranGM/envconfig/assignees{/user}","branches_url":"https://api.github.com/repos/FranGM/envconfig/branches{/branch}","tags_url":"https://api.github.com/repos/FranGM/envconfig/tags","blobs_url":"https://api.github.com/repos/FranGM/envconfig/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/FranGM/envconfig/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/FranGM/envconfig/git/refs{/sha}","trees_url":"https://api.github.com/repos/FranGM/envconfig/git/trees{/sha}","statuses_url":"https://api.github.com/repos/FranGM/envconfig/statuses/{sha}","languages_url":"https://api.github.com/repos/FranGM/envconfig/languages","stargazers_url":"https://api.github.com/repos/FranGM/envconfig/stargazers","contributors_url":"https://api.github.com/repos/FranGM/envconfig/contributors","subscribers_url":"https://api.github.com/repos/FranGM/envconfig/subscribers","subscription_url":"https://api.github.com/repos/FranGM/envconfig/subscription","commits_url":"https://api.github.com/repos/FranGM/envconfig/commits{/sha}","git_commits_url":"https://api.github.com/repos/FranGM/envconfig/git/commits{/sha}","comments_url":"https://api.github.com/repos/FranGM/envconfig/comments{/number}","issue_comment_url":"https://api.github.com/repos/FranGM/envconfig/issues/comments/{number}","contents_url":"https://api.github.com/repos/FranGM/envconfig/contents/{+path}","compare_url":"https://api.github.com/repos/FranGM/envconfig/compare/{base}...{head}","merges_url":"https://api.github.com/repos/FranGM/envconfig/merges","archive_url":"https://api.github.com/repos/FranGM/envconfig/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/FranGM/envconfig/downloads","issues_url":"https://api.github.com/repos/FranGM/envconfig/issues{/number}","pulls_url":"https://api.github.com/repos/FranGM/envconfig/pulls{/number}","milestones_url":"https://api.github.com/repos/FranGM/envconfig/milestones{/number}","notifications_url":"https://api.github.com/repos/FranGM/envconfig/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/FranGM/envconfig/labels{/name}","releases_url":"https://api.github.com/repos/FranGM/envconfig/releases{/id}","created_at":"2015-01-01T15:16:04Z","updated_at":"2014-12-30T00:02:02Z","pushed_at":"2014-12-10T14:51:49Z","git_url":"git://github.com/FranGM/envconfig.git","ssh_url":"git@github.com:FranGM/envconfig.git","clone_url":"https://github.com/FranGM/envconfig.git","svn_url":"https://github.com/FranGM/envconfig","homepage":null,"size":456,"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:16:04Z"} +,{"id":"2489658510","type":"PushEvent","actor":{"id":9576639,"login":"tekhuy","gravatar_id":"","url":"https://api.github.com/users/tekhuy","avatar_url":"https://avatars.githubusercontent.com/u/9576639?"},"repo":{"id":28080127,"name":"tekhuy/battleships","url":"https://api.github.com/repos/tekhuy/battleships"},"payload":{"push_id":536867342,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2e8a9560f37a95e3c1262cd86e5c0e2c9a812db1","before":"397db3e4167016cd231d68afecdc2eb732a21f5a","commits":[{"sha":"2e8a9560f37a95e3c1262cd86e5c0e2c9a812db1","author":{"email":"035e69dbfaad8cf44bd21a15125bfeb44693daad@hotmail.com","name":"tekhuy"},"message":"updated ship.rb","distinct":true,"url":"https://api.github.com/repos/tekhuy/battleships/commits/2e8a9560f37a95e3c1262cd86e5c0e2c9a812db1"}]},"public":true,"created_at":"2015-01-01T15:16:05Z"} +,{"id":"2489658516","type":"PushEvent","actor":{"id":240038,"login":"faithandbrave","gravatar_id":"","url":"https://api.github.com/users/faithandbrave","avatar_url":"https://avatars.githubusercontent.com/u/240038?"},"repo":{"id":8750617,"name":"cpprefjp/site","url":"https://api.github.com/repos/cpprefjp/site"},"payload":{"push_id":536867346,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"aaac9ad60d798b099b38262a96579fbc461e8e2a","before":"98787829886748c8787cb9ba2b7b751adc270926","commits":[{"sha":"aaac9ad60d798b099b38262a96579fbc461e8e2a","author":{"email":"2bfc42e1ec6f6075195c2c4587389b54c8d3934a@gmail.com","name":"Akira Takahashi"},"message":"C++14のtuple_element_tに対応","distinct":true,"url":"https://api.github.com/repos/cpprefjp/site/commits/aaac9ad60d798b099b38262a96579fbc461e8e2a"}]},"public":true,"created_at":"2015-01-01T15:16:05Z","org":{"id":3665874,"login":"cpprefjp","gravatar_id":"","url":"https://api.github.com/orgs/cpprefjp","avatar_url":"https://avatars.githubusercontent.com/u/3665874?"}} +,{"id":"2489658517","type":"IssueCommentEvent","actor":{"id":1033874,"login":"a42","gravatar_id":"","url":"https://api.github.com/users/a42","avatar_url":"https://avatars.githubusercontent.com/u/1033874?"},"repo":{"id":2677676,"name":"mailpile/Mailpile","url":"https://api.github.com/repos/mailpile/Mailpile"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/mailpile/Mailpile/issues/1044","labels_url":"https://api.github.com/repos/mailpile/Mailpile/issues/1044/labels{/name}","comments_url":"https://api.github.com/repos/mailpile/Mailpile/issues/1044/comments","events_url":"https://api.github.com/repos/mailpile/Mailpile/issues/1044/events","html_url":"https://github.com/mailpile/Mailpile/issues/1044","id":45532057,"number":1044,"title":"Pressing the Enter key in \"Security settings\" form throws error","user":{"login":"busla","id":3162968,"avatar_url":"https://avatars.githubusercontent.com/u/3162968?v=3","gravatar_id":"","url":"https://api.github.com/users/busla","html_url":"https://github.com/busla","followers_url":"https://api.github.com/users/busla/followers","following_url":"https://api.github.com/users/busla/following{/other_user}","gists_url":"https://api.github.com/users/busla/gists{/gist_id}","starred_url":"https://api.github.com/users/busla/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/busla/subscriptions","organizations_url":"https://api.github.com/users/busla/orgs","repos_url":"https://api.github.com/users/busla/repos","events_url":"https://api.github.com/users/busla/events{/privacy}","received_events_url":"https://api.github.com/users/busla/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-10-10T23:01:59Z","updated_at":"2015-01-01T15:16:05Z","closed_at":"2014-10-11T00:01:46Z","body":"![screen shot 2014-10-10 at 23 00 13](https://cloud.githubusercontent.com/assets/3162968/4600259/607d5a92-50d1-11e4-8165-7864a4bbf6bf.png)\r\n\r\nPressing the enter in this form throws \"Invortis eymsli\" error."},"comment":{"url":"https://api.github.com/repos/mailpile/Mailpile/issues/comments/68488826","html_url":"https://github.com/mailpile/Mailpile/issues/1044#issuecomment-68488826","issue_url":"https://api.github.com/repos/mailpile/Mailpile/issues/1044","id":68488826,"user":{"login":"a42","id":1033874,"avatar_url":"https://avatars.githubusercontent.com/u/1033874?v=3","gravatar_id":"","url":"https://api.github.com/users/a42","html_url":"https://github.com/a42","followers_url":"https://api.github.com/users/a42/followers","following_url":"https://api.github.com/users/a42/following{/other_user}","gists_url":"https://api.github.com/users/a42/gists{/gist_id}","starred_url":"https://api.github.com/users/a42/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/a42/subscriptions","organizations_url":"https://api.github.com/users/a42/orgs","repos_url":"https://api.github.com/users/a42/repos","events_url":"https://api.github.com/users/a42/events{/privacy}","received_events_url":"https://api.github.com/users/a42/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:16:05Z","updated_at":"2015-01-01T15:16:05Z","body":"I'm experiencing this on my external server installation, I have done a git pull and therefore uptodate...\r\n\r\nIs there a way to fix this ?\r\n\r\nCheers!\r\n\r\nAdam"}},"public":true,"created_at":"2015-01-01T15:16:05Z","org":{"id":5374816,"login":"mailpile","gravatar_id":"","url":"https://api.github.com/orgs/mailpile","avatar_url":"https://avatars.githubusercontent.com/u/5374816?"}} +,{"id":"2489658519","type":"WatchEvent","actor":{"id":1792574,"login":"IanLuo","gravatar_id":"","url":"https://api.github.com/users/IanLuo","avatar_url":"https://avatars.githubusercontent.com/u/1792574?"},"repo":{"id":15299224,"name":"twitter/CocoaSPDY","url":"https://api.github.com/repos/twitter/CocoaSPDY"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:16:06Z","org":{"id":50278,"login":"twitter","gravatar_id":"","url":"https://api.github.com/orgs/twitter","avatar_url":"https://avatars.githubusercontent.com/u/50278?"}} +,{"id":"2489658520","type":"PushEvent","actor":{"id":10364092,"login":"ayoumination","gravatar_id":"","url":"https://api.github.com/users/ayoumination","avatar_url":"https://avatars.githubusercontent.com/u/10364092?"},"repo":{"id":28688708,"name":"ayoumination/play","url":"https://api.github.com/repos/ayoumination/play"},"payload":{"push_id":536867348,"size":1,"distinct_size":1,"ref":"refs/heads/patch-1","head":"854e74add9317863f4a9ab2e498360f9266b10ea","before":"64e687437a895758edb5a4f8642935dd1cf2504c","commits":[{"sha":"854e74add9317863f4a9ab2e498360f9266b10ea","author":{"email":"ddd92a2780fb4e29a809bbb9353046a791f89d3d@users.noreply.github.com","name":"louis"},"message":"Create frequincy styling\n\nQuincy's taro is increasing, big up the silver medal and gold medal makers","distinct":true,"url":"https://api.github.com/repos/ayoumination/play/commits/854e74add9317863f4a9ab2e498360f9266b10ea"}]},"public":true,"created_at":"2015-01-01T15:16:06Z"} +,{"id":"2489658521","type":"PullRequestEvent","actor":{"id":2981491,"login":"h4cc","gravatar_id":"","url":"https://api.github.com/users/h4cc","avatar_url":"https://avatars.githubusercontent.com/u/2981491?"},"repo":{"id":25243280,"name":"eosnewmedia/Transformer","url":"https://api.github.com/repos/eosnewmedia/Transformer"},"payload":{"action":"opened","number":12,"pull_request":{"url":"https://api.github.com/repos/eosnewmedia/Transformer/pulls/12","id":26743890,"html_url":"https://github.com/eosnewmedia/Transformer/pull/12","diff_url":"https://github.com/eosnewmedia/Transformer/pull/12.diff","patch_url":"https://github.com/eosnewmedia/Transformer/pull/12.patch","issue_url":"https://api.github.com/repos/eosnewmedia/Transformer/issues/12","number":12,"state":"open","locked":false,"title":"Testing some stuff...","user":{"login":"h4cc","id":2981491,"avatar_url":"https://avatars.githubusercontent.com/u/2981491?v=3","gravatar_id":"","url":"https://api.github.com/users/h4cc","html_url":"https://github.com/h4cc","followers_url":"https://api.github.com/users/h4cc/followers","following_url":"https://api.github.com/users/h4cc/following{/other_user}","gists_url":"https://api.github.com/users/h4cc/gists{/gist_id}","starred_url":"https://api.github.com/users/h4cc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/h4cc/subscriptions","organizations_url":"https://api.github.com/users/h4cc/orgs","repos_url":"https://api.github.com/users/h4cc/repos","events_url":"https://api.github.com/users/h4cc/events{/privacy}","received_events_url":"https://api.github.com/users/h4cc/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:16:06Z","updated_at":"2015-01-01T15:16:06Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/eosnewmedia/Transformer/pulls/12/commits","review_comments_url":"https://api.github.com/repos/eosnewmedia/Transformer/pulls/12/comments","review_comment_url":"https://api.github.com/repos/eosnewmedia/Transformer/pulls/comments/{number}","comments_url":"https://api.github.com/repos/eosnewmedia/Transformer/issues/12/comments","statuses_url":"https://api.github.com/repos/eosnewmedia/Transformer/statuses/f15758ce40a43f6d16638ef784007b95ec186672","head":{"label":"h4cc:patch-1","ref":"patch-1","sha":"f15758ce40a43f6d16638ef784007b95ec186672","user":{"login":"h4cc","id":2981491,"avatar_url":"https://avatars.githubusercontent.com/u/2981491?v=3","gravatar_id":"","url":"https://api.github.com/users/h4cc","html_url":"https://github.com/h4cc","followers_url":"https://api.github.com/users/h4cc/followers","following_url":"https://api.github.com/users/h4cc/following{/other_user}","gists_url":"https://api.github.com/users/h4cc/gists{/gist_id}","starred_url":"https://api.github.com/users/h4cc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/h4cc/subscriptions","organizations_url":"https://api.github.com/users/h4cc/orgs","repos_url":"https://api.github.com/users/h4cc/repos","events_url":"https://api.github.com/users/h4cc/events{/privacy}","received_events_url":"https://api.github.com/users/h4cc/received_events","type":"User","site_admin":false},"repo":{"id":28688869,"name":"Transformer","full_name":"h4cc/Transformer","owner":{"login":"h4cc","id":2981491,"avatar_url":"https://avatars.githubusercontent.com/u/2981491?v=3","gravatar_id":"","url":"https://api.github.com/users/h4cc","html_url":"https://github.com/h4cc","followers_url":"https://api.github.com/users/h4cc/followers","following_url":"https://api.github.com/users/h4cc/following{/other_user}","gists_url":"https://api.github.com/users/h4cc/gists{/gist_id}","starred_url":"https://api.github.com/users/h4cc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/h4cc/subscriptions","organizations_url":"https://api.github.com/users/h4cc/orgs","repos_url":"https://api.github.com/users/h4cc/repos","events_url":"https://api.github.com/users/h4cc/events{/privacy}","received_events_url":"https://api.github.com/users/h4cc/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/h4cc/Transformer","description":"","fork":true,"url":"https://api.github.com/repos/h4cc/Transformer","forks_url":"https://api.github.com/repos/h4cc/Transformer/forks","keys_url":"https://api.github.com/repos/h4cc/Transformer/keys{/key_id}","collaborators_url":"https://api.github.com/repos/h4cc/Transformer/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/h4cc/Transformer/teams","hooks_url":"https://api.github.com/repos/h4cc/Transformer/hooks","issue_events_url":"https://api.github.com/repos/h4cc/Transformer/issues/events{/number}","events_url":"https://api.github.com/repos/h4cc/Transformer/events","assignees_url":"https://api.github.com/repos/h4cc/Transformer/assignees{/user}","branches_url":"https://api.github.com/repos/h4cc/Transformer/branches{/branch}","tags_url":"https://api.github.com/repos/h4cc/Transformer/tags","blobs_url":"https://api.github.com/repos/h4cc/Transformer/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/h4cc/Transformer/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/h4cc/Transformer/git/refs{/sha}","trees_url":"https://api.github.com/repos/h4cc/Transformer/git/trees{/sha}","statuses_url":"https://api.github.com/repos/h4cc/Transformer/statuses/{sha}","languages_url":"https://api.github.com/repos/h4cc/Transformer/languages","stargazers_url":"https://api.github.com/repos/h4cc/Transformer/stargazers","contributors_url":"https://api.github.com/repos/h4cc/Transformer/contributors","subscribers_url":"https://api.github.com/repos/h4cc/Transformer/subscribers","subscription_url":"https://api.github.com/repos/h4cc/Transformer/subscription","commits_url":"https://api.github.com/repos/h4cc/Transformer/commits{/sha}","git_commits_url":"https://api.github.com/repos/h4cc/Transformer/git/commits{/sha}","comments_url":"https://api.github.com/repos/h4cc/Transformer/comments{/number}","issue_comment_url":"https://api.github.com/repos/h4cc/Transformer/issues/comments/{number}","contents_url":"https://api.github.com/repos/h4cc/Transformer/contents/{+path}","compare_url":"https://api.github.com/repos/h4cc/Transformer/compare/{base}...{head}","merges_url":"https://api.github.com/repos/h4cc/Transformer/merges","archive_url":"https://api.github.com/repos/h4cc/Transformer/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/h4cc/Transformer/downloads","issues_url":"https://api.github.com/repos/h4cc/Transformer/issues{/number}","pulls_url":"https://api.github.com/repos/h4cc/Transformer/pulls{/number}","milestones_url":"https://api.github.com/repos/h4cc/Transformer/milestones{/number}","notifications_url":"https://api.github.com/repos/h4cc/Transformer/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/h4cc/Transformer/labels{/name}","releases_url":"https://api.github.com/repos/h4cc/Transformer/releases{/id}","created_at":"2015-01-01T15:14:17Z","updated_at":"2015-01-01T15:14:17Z","pushed_at":"2015-01-01T15:16:04Z","git_url":"git://github.com/h4cc/Transformer.git","ssh_url":"git@github.com:h4cc/Transformer.git","clone_url":"https://github.com/h4cc/Transformer.git","svn_url":"https://github.com/h4cc/Transformer","homepage":null,"size":328,"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":"eosnewmedia:master","ref":"master","sha":"012ab3c34493432c692c4d99da8974852aed8c87","user":{"login":"eosnewmedia","id":8861518,"avatar_url":"https://avatars.githubusercontent.com/u/8861518?v=3","gravatar_id":"","url":"https://api.github.com/users/eosnewmedia","html_url":"https://github.com/eosnewmedia","followers_url":"https://api.github.com/users/eosnewmedia/followers","following_url":"https://api.github.com/users/eosnewmedia/following{/other_user}","gists_url":"https://api.github.com/users/eosnewmedia/gists{/gist_id}","starred_url":"https://api.github.com/users/eosnewmedia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eosnewmedia/subscriptions","organizations_url":"https://api.github.com/users/eosnewmedia/orgs","repos_url":"https://api.github.com/users/eosnewmedia/repos","events_url":"https://api.github.com/users/eosnewmedia/events{/privacy}","received_events_url":"https://api.github.com/users/eosnewmedia/received_events","type":"Organization","site_admin":false},"repo":{"id":25243280,"name":"Transformer","full_name":"eosnewmedia/Transformer","owner":{"login":"eosnewmedia","id":8861518,"avatar_url":"https://avatars.githubusercontent.com/u/8861518?v=3","gravatar_id":"","url":"https://api.github.com/users/eosnewmedia","html_url":"https://github.com/eosnewmedia","followers_url":"https://api.github.com/users/eosnewmedia/followers","following_url":"https://api.github.com/users/eosnewmedia/following{/other_user}","gists_url":"https://api.github.com/users/eosnewmedia/gists{/gist_id}","starred_url":"https://api.github.com/users/eosnewmedia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eosnewmedia/subscriptions","organizations_url":"https://api.github.com/users/eosnewmedia/orgs","repos_url":"https://api.github.com/users/eosnewmedia/repos","events_url":"https://api.github.com/users/eosnewmedia/events{/privacy}","received_events_url":"https://api.github.com/users/eosnewmedia/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/eosnewmedia/Transformer","description":"","fork":false,"url":"https://api.github.com/repos/eosnewmedia/Transformer","forks_url":"https://api.github.com/repos/eosnewmedia/Transformer/forks","keys_url":"https://api.github.com/repos/eosnewmedia/Transformer/keys{/key_id}","collaborators_url":"https://api.github.com/repos/eosnewmedia/Transformer/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/eosnewmedia/Transformer/teams","hooks_url":"https://api.github.com/repos/eosnewmedia/Transformer/hooks","issue_events_url":"https://api.github.com/repos/eosnewmedia/Transformer/issues/events{/number}","events_url":"https://api.github.com/repos/eosnewmedia/Transformer/events","assignees_url":"https://api.github.com/repos/eosnewmedia/Transformer/assignees{/user}","branches_url":"https://api.github.com/repos/eosnewmedia/Transformer/branches{/branch}","tags_url":"https://api.github.com/repos/eosnewmedia/Transformer/tags","blobs_url":"https://api.github.com/repos/eosnewmedia/Transformer/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/eosnewmedia/Transformer/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/eosnewmedia/Transformer/git/refs{/sha}","trees_url":"https://api.github.com/repos/eosnewmedia/Transformer/git/trees{/sha}","statuses_url":"https://api.github.com/repos/eosnewmedia/Transformer/statuses/{sha}","languages_url":"https://api.github.com/repos/eosnewmedia/Transformer/languages","stargazers_url":"https://api.github.com/repos/eosnewmedia/Transformer/stargazers","contributors_url":"https://api.github.com/repos/eosnewmedia/Transformer/contributors","subscribers_url":"https://api.github.com/repos/eosnewmedia/Transformer/subscribers","subscription_url":"https://api.github.com/repos/eosnewmedia/Transformer/subscription","commits_url":"https://api.github.com/repos/eosnewmedia/Transformer/commits{/sha}","git_commits_url":"https://api.github.com/repos/eosnewmedia/Transformer/git/commits{/sha}","comments_url":"https://api.github.com/repos/eosnewmedia/Transformer/comments{/number}","issue_comment_url":"https://api.github.com/repos/eosnewmedia/Transformer/issues/comments/{number}","contents_url":"https://api.github.com/repos/eosnewmedia/Transformer/contents/{+path}","compare_url":"https://api.github.com/repos/eosnewmedia/Transformer/compare/{base}...{head}","merges_url":"https://api.github.com/repos/eosnewmedia/Transformer/merges","archive_url":"https://api.github.com/repos/eosnewmedia/Transformer/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/eosnewmedia/Transformer/downloads","issues_url":"https://api.github.com/repos/eosnewmedia/Transformer/issues{/number}","pulls_url":"https://api.github.com/repos/eosnewmedia/Transformer/pulls{/number}","milestones_url":"https://api.github.com/repos/eosnewmedia/Transformer/milestones{/number}","notifications_url":"https://api.github.com/repos/eosnewmedia/Transformer/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/eosnewmedia/Transformer/labels{/name}","releases_url":"https://api.github.com/repos/eosnewmedia/Transformer/releases{/id}","created_at":"2014-10-15T07:17:00Z","updated_at":"2014-10-18T15:57:11Z","pushed_at":"2014-11-11T15:08:38Z","git_url":"git://github.com/eosnewmedia/Transformer.git","ssh_url":"git@github.com:eosnewmedia/Transformer.git","clone_url":"https://github.com/eosnewmedia/Transformer.git","svn_url":"https://github.com/eosnewmedia/Transformer","homepage":null,"size":328,"stargazers_count":2,"watchers_count":2,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":5,"forks":1,"open_issues":5,"watchers":2,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/eosnewmedia/Transformer/pulls/12"},"html":{"href":"https://github.com/eosnewmedia/Transformer/pull/12"},"issue":{"href":"https://api.github.com/repos/eosnewmedia/Transformer/issues/12"},"comments":{"href":"https://api.github.com/repos/eosnewmedia/Transformer/issues/12/comments"},"review_comments":{"href":"https://api.github.com/repos/eosnewmedia/Transformer/pulls/12/comments"},"review_comment":{"href":"https://api.github.com/repos/eosnewmedia/Transformer/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/eosnewmedia/Transformer/pulls/12/commits"},"statuses":{"href":"https://api.github.com/repos/eosnewmedia/Transformer/statuses/f15758ce40a43f6d16638ef784007b95ec186672"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":3,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:16:06Z","org":{"id":8861518,"login":"eosnewmedia","gravatar_id":"","url":"https://api.github.com/orgs/eosnewmedia","avatar_url":"https://avatars.githubusercontent.com/u/8861518?"}} +,{"id":"2489658522","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":536867349,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"c3bdb2efc0d5dca9822f784d0c4d317e5c648bc7","before":"6673cefeecb271f0c5490f412203f2a498d20a07","commits":[{"sha":"c3bdb2efc0d5dca9822f784d0c4d317e5c648bc7","author":{"email":"12e9293ec6b30c7fa8a0926af42807e929c1684f@niob.xnis.de","name":"Robert Weidlich"},"message":"update","distinct":true,"url":"https://api.github.com/repos/xenim/livestatus-publicpage/commits/c3bdb2efc0d5dca9822f784d0c4d317e5c648bc7"}]},"public":true,"created_at":"2015-01-01T15:16:06Z","org":{"id":1789841,"login":"xenim","gravatar_id":"","url":"https://api.github.com/orgs/xenim","avatar_url":"https://avatars.githubusercontent.com/u/1789841?"}} +,{"id":"2489658526","type":"IssueCommentEvent","actor":{"id":5817129,"login":"komatits","gravatar_id":"","url":"https://api.github.com/users/komatits","avatar_url":"https://avatars.githubusercontent.com/u/5817129?"},"repo":{"id":14293189,"name":"geodynamics/specfem2d","url":"https://api.github.com/repos/geodynamics/specfem2d"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/geodynamics/specfem2d/issues/172","labels_url":"https://api.github.com/repos/geodynamics/specfem2d/issues/172/labels{/name}","comments_url":"https://api.github.com/repos/geodynamics/specfem2d/issues/172/comments","events_url":"https://api.github.com/repos/geodynamics/specfem2d/issues/172/events","html_url":"https://github.com/geodynamics/specfem2d/pull/172","id":53213288,"number":172,"title":"make the \"LuoYang_fluid_solid_kernel\" example run with Stacey","user":{"login":"xiezhinan","id":5821562,"avatar_url":"https://avatars.githubusercontent.com/u/5821562?v=3","gravatar_id":"","url":"https://api.github.com/users/xiezhinan","html_url":"https://github.com/xiezhinan","followers_url":"https://api.github.com/users/xiezhinan/followers","following_url":"https://api.github.com/users/xiezhinan/following{/other_user}","gists_url":"https://api.github.com/users/xiezhinan/gists{/gist_id}","starred_url":"https://api.github.com/users/xiezhinan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xiezhinan/subscriptions","organizations_url":"https://api.github.com/users/xiezhinan/orgs","repos_url":"https://api.github.com/users/xiezhinan/repos","events_url":"https://api.github.com/users/xiezhinan/events{/privacy}","received_events_url":"https://api.github.com/users/xiezhinan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":5,"created_at":"2015-01-01T05:22:40Z","updated_at":"2015-01-01T15:16:07Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/geodynamics/specfem2d/pulls/172","html_url":"https://github.com/geodynamics/specfem2d/pull/172","diff_url":"https://github.com/geodynamics/specfem2d/pull/172.diff","patch_url":"https://github.com/geodynamics/specfem2d/pull/172.patch"},"body":"make the \"LuoYang_fluid_solid_kernel\" example run with Stacey.\r\nChanges have been also made to the file adj_source.f90, since it is inconsistent with the current convention in naming the Station."},"comment":{"url":"https://api.github.com/repos/geodynamics/specfem2d/issues/comments/68488827","html_url":"https://github.com/geodynamics/specfem2d/pull/172#issuecomment-68488827","issue_url":"https://api.github.com/repos/geodynamics/specfem2d/issues/172","id":68488827,"user":{"login":"komatits","id":5817129,"avatar_url":"https://avatars.githubusercontent.com/u/5817129?v=3","gravatar_id":"","url":"https://api.github.com/users/komatits","html_url":"https://github.com/komatits","followers_url":"https://api.github.com/users/komatits/followers","following_url":"https://api.github.com/users/komatits/following{/other_user}","gists_url":"https://api.github.com/users/komatits/gists{/gist_id}","starred_url":"https://api.github.com/users/komatits/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/komatits/subscriptions","organizations_url":"https://api.github.com/users/komatits/orgs","repos_url":"https://api.github.com/users/komatits/repos","events_url":"https://api.github.com/users/komatits/events{/privacy}","received_events_url":"https://api.github.com/users/komatits/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:16:07Z","updated_at":"2015-01-01T15:16:07Z","body":"accept\n\nOn 01/01/2015 06:30 AM, buildbot-princeton wrote:\n> Your changes passed the buildbot test. See build 93\n> .\n>\n> —\n> Reply to this email directly or view it on GitHub\n> .\n>\n\n-- \nDimitri Komatitsch\nCNRS Research Director (DR CNRS), Laboratory of Mechanics and Acoustics,\nUPR 7051, Marseille, France http://komatitsch.free.fr"}},"public":true,"created_at":"2015-01-01T15:16:07Z","org":{"id":4052461,"login":"geodynamics","gravatar_id":"","url":"https://api.github.com/orgs/geodynamics","avatar_url":"https://avatars.githubusercontent.com/u/4052461?"}} +,{"id":"2489658529","type":"PushEvent","actor":{"id":16649,"login":"Kazade","gravatar_id":"","url":"https://api.github.com/users/Kazade","avatar_url":"https://avatars.githubusercontent.com/u/16649?"},"repo":{"id":2963310,"name":"Kazade/KGLT","url":"https://api.github.com/repos/Kazade/KGLT"},"payload":{"push_id":536867352,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7c2b9d563eeaac725a87af4892ee311362fcbd05","before":"529a8e95ee3e2c5fb9611ee93aab08b29c7a8c4f","commits":[{"sha":"7c2b9d563eeaac725a87af4892ee311362fcbd05","author":{"email":"5989861705a530cf854c7404b1b20cb2c4160fcc@gmail.com","name":"Luke Benstead"},"message":"Don't process touch motion events if they weren't preceded by a touch down event","distinct":true,"url":"https://api.github.com/repos/Kazade/KGLT/commits/7c2b9d563eeaac725a87af4892ee311362fcbd05"}]},"public":true,"created_at":"2015-01-01T15:16:07Z"} +,{"id":"2489658530","type":"PushEvent","actor":{"id":7215524,"login":"daririos","gravatar_id":"","url":"https://api.github.com/users/daririos","avatar_url":"https://avatars.githubusercontent.com/u/7215524?"},"repo":{"id":28688645,"name":"daririos/UdacitySoftwareDebugging","url":"https://api.github.com/repos/daririos/UdacitySoftwareDebugging"},"payload":{"push_id":536867353,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7376752172473dff211c2cce8fd320857d3a48ca","before":"179d8c2d4a56d8288f2d5076009b05a7a0a29e61","commits":[{"sha":"7376752172473dff211c2cce8fd320857d3a48ca","author":{"email":"ba1aaa9295655857f00914ec2280edfa3f92ac78@iMac-de-David.local","name":"David Rios Puig"},"message":"- Fixed typo","distinct":true,"url":"https://api.github.com/repos/daririos/UdacitySoftwareDebugging/commits/7376752172473dff211c2cce8fd320857d3a48ca"}]},"public":true,"created_at":"2015-01-01T15:16:07Z"} +,{"id":"2489658532","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":24019739,"name":"hex7c0/task-manager","url":"https://api.github.com/repos/hex7c0/task-manager"},"payload":{"push_id":536867354,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"5daf1ff6b701cd03f12d85826616d7835be82a1d","before":"8dade12c79d6bd76971663d14fdb3ac9acc81b82","commits":[{"sha":"f37d5582254358b4295fa11ca6684b2deccd72bb","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"travis docker","distinct":true,"url":"https://api.github.com/repos/hex7c0/task-manager/commits/f37d5582254358b4295fa11ca6684b2deccd72bb"},{"sha":"f4307498d3ab7807d71bd9671a44248fed2a19a5","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"update devDependencies","distinct":true,"url":"https://api.github.com/repos/hex7c0/task-manager/commits/f4307498d3ab7807d71bd9671a44248fed2a19a5"},{"sha":"5daf1ff6b701cd03f12d85826616d7835be82a1d","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"update Gruntfile","distinct":true,"url":"https://api.github.com/repos/hex7c0/task-manager/commits/5daf1ff6b701cd03f12d85826616d7835be82a1d"}]},"public":true,"created_at":"2015-01-01T15:16:08Z"} +,{"id":"2489658533","type":"WatchEvent","actor":{"id":101859,"login":"gido","gravatar_id":"","url":"https://api.github.com/users/gido","avatar_url":"https://avatars.githubusercontent.com/u/101859?"},"repo":{"id":10365411,"name":"daviferreira/medium-editor","url":"https://api.github.com/repos/daviferreira/medium-editor"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:16:08Z"} +,{"id":"2489658534","type":"PushEvent","actor":{"id":69799,"login":"kyleburton","gravatar_id":"","url":"https://api.github.com/users/kyleburton","avatar_url":"https://avatars.githubusercontent.com/u/69799?"},"repo":{"id":188580,"name":"kyleburton/sandbox","url":"https://api.github.com/repos/kyleburton/sandbox"},"payload":{"push_id":536867355,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5d6d09e9295936bc83ba89d9c91e6e64cd75d471","before":"45ae51abc8cd3aea13cfacec916541c18979da2f","commits":[{"sha":"5d6d09e9295936bc83ba89d9c91e6e64cd75d471","author":{"email":"acd7dd65974904918c70fb5189bedaca65c4fef3@gmail.com","name":"Kyle Burton"},"message":"checkpoint","distinct":true,"url":"https://api.github.com/repos/kyleburton/sandbox/commits/5d6d09e9295936bc83ba89d9c91e6e64cd75d471"}]},"public":true,"created_at":"2015-01-01T15:16:08Z"} +,{"id":"2489658535","type":"IssueCommentEvent","actor":{"id":485413,"login":"tpetricek","gravatar_id":"","url":"https://api.github.com/users/tpetricek","avatar_url":"https://avatars.githubusercontent.com/u/485413?"},"repo":{"id":18081621,"name":"fsprojects/FSharp.Data.Toolbox","url":"https://api.github.com/repos/fsprojects/FSharp.Data.Toolbox"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/fsprojects/FSharp.Data.Toolbox/issues/20","labels_url":"https://api.github.com/repos/fsprojects/FSharp.Data.Toolbox/issues/20/labels{/name}","comments_url":"https://api.github.com/repos/fsprojects/FSharp.Data.Toolbox/issues/20/comments","events_url":"https://api.github.com/repos/fsprojects/FSharp.Data.Toolbox/issues/20/events","html_url":"https://github.com/fsprojects/FSharp.Data.Toolbox/issues/20","id":52977993,"number":20,"title":"FSharp.Data.Toolbox.dll requires sample json files(again)","user":{"login":"teramonagi","id":683736,"avatar_url":"https://avatars.githubusercontent.com/u/683736?v=3","gravatar_id":"","url":"https://api.github.com/users/teramonagi","html_url":"https://github.com/teramonagi","followers_url":"https://api.github.com/users/teramonagi/followers","following_url":"https://api.github.com/users/teramonagi/following{/other_user}","gists_url":"https://api.github.com/users/teramonagi/gists{/gist_id}","starred_url":"https://api.github.com/users/teramonagi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/teramonagi/subscriptions","organizations_url":"https://api.github.com/users/teramonagi/orgs","repos_url":"https://api.github.com/users/teramonagi/repos","events_url":"https://api.github.com/users/teramonagi/events{/privacy}","received_events_url":"https://api.github.com/users/teramonagi/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":5,"created_at":"2014-12-28T10:33:39Z","updated_at":"2015-01-01T15:16:08Z","closed_at":"2014-12-29T10:37:35Z","body":"Hi guys;\r\n\r\nI tried to learn how to use Twitter API from F# language written in great modernized F# book \"F# Deep Dives\" chapter 5. Example codes which is shown below links works well.\r\n- https://github.com/evelinag/DeepDives/tree/master/Chapter05\r\n\r\nOn the other hand, it did not work when I downloaded the newest library from nuget.\r\nI think that the same problem to issue 1 happens in F# Data 2.1.1 because the error message is the same.\r\n- [FSharp.Data.Toolbox.dll requires sample json files(issue 1)](https://github.com/fsprojects/FSharp.Data.Toolbox/issues/1)"},"comment":{"url":"https://api.github.com/repos/fsprojects/FSharp.Data.Toolbox/issues/comments/68488828","html_url":"https://github.com/fsprojects/FSharp.Data.Toolbox/issues/20#issuecomment-68488828","issue_url":"https://api.github.com/repos/fsprojects/FSharp.Data.Toolbox/issues/20","id":68488828,"user":{"login":"tpetricek","id":485413,"avatar_url":"https://avatars.githubusercontent.com/u/485413?v=3","gravatar_id":"","url":"https://api.github.com/users/tpetricek","html_url":"https://github.com/tpetricek","followers_url":"https://api.github.com/users/tpetricek/followers","following_url":"https://api.github.com/users/tpetricek/following{/other_user}","gists_url":"https://api.github.com/users/tpetricek/gists{/gist_id}","starred_url":"https://api.github.com/users/tpetricek/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tpetricek/subscriptions","organizations_url":"https://api.github.com/users/tpetricek/orgs","repos_url":"https://api.github.com/users/tpetricek/repos","events_url":"https://api.github.com/users/tpetricek/events{/privacy}","received_events_url":"https://api.github.com/users/tpetricek/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:16:08Z","updated_at":"2015-01-01T15:16:08Z","body":"It seems that the F# Interactive is very sensitive to how exactly you specify the references. I was able to reproduce the error you described. Using the following resolved the problem for me:\r\n\r\n #I @\"packages/FSharp.Data.Toolbox.Twitter.0.3/lib/net40\"\r\n #I @\"packages/FSharp.Data.2.1.1/lib/net40\"\r\n #r \"FSharp.Data.Toolbox.Twitter.dll\"\r\n #r \"FSharp.Data.dll\"\r\n"}},"public":true,"created_at":"2015-01-01T15:16:08Z","org":{"id":6001315,"login":"fsprojects","gravatar_id":"","url":"https://api.github.com/orgs/fsprojects","avatar_url":"https://avatars.githubusercontent.com/u/6001315?"}} +,{"id":"2489658536","type":"PushEvent","actor":{"id":420786,"login":"adieyal","gravatar_id":"","url":"https://api.github.com/users/adieyal","avatar_url":"https://avatars.githubusercontent.com/u/420786?"},"repo":{"id":23510644,"name":"Code4SA/traffic-fines","url":"https://api.github.com/repos/Code4SA/traffic-fines"},"payload":{"push_id":536867356,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"fbe3866400195d61d2f81a8bc8c1d9d4414709b3","before":"6538e6f5d60bfb9124901ad2522c562b96ada4a9","commits":[{"sha":"fbe3866400195d61d2f81a8bc8c1d9d4414709b3","author":{"email":"b3e8ff7ac1c7e75661e16152a5dce1ff36a3e140@burgercom.co.za","name":"Adi Eyal"},"message":"Updated svg file width to 100%","distinct":true,"url":"https://api.github.com/repos/Code4SA/traffic-fines/commits/fbe3866400195d61d2f81a8bc8c1d9d4414709b3"}]},"public":true,"created_at":"2015-01-01T15:16:08Z","org":{"id":4387576,"login":"Code4SA","gravatar_id":"","url":"https://api.github.com/orgs/Code4SA","avatar_url":"https://avatars.githubusercontent.com/u/4387576?"}} +,{"id":"2489658538","type":"PushEvent","actor":{"id":507583,"login":"ddkangfu","gravatar_id":"","url":"https://api.github.com/users/ddkangfu","avatar_url":"https://avatars.githubusercontent.com/u/507583?"},"repo":{"id":26274327,"name":"ddkangfu/ddkangfu.github.io","url":"https://api.github.com/repos/ddkangfu/ddkangfu.github.io"},"payload":{"push_id":536867357,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c6de227d8e590abcd92f4cf57573181fe96e20ce","before":"89c922f61cd95a711ef2a8c87edaf270ae316457","commits":[{"sha":"c6de227d8e590abcd92f4cf57573181fe96e20ce","author":{"email":"0348cbf5962cbf9726e98a6e8c378fea0c99ada0@gmail.com","name":"ddkangfu"},"message":"增加了2015-01-01的文章。","distinct":true,"url":"https://api.github.com/repos/ddkangfu/ddkangfu.github.io/commits/c6de227d8e590abcd92f4cf57573181fe96e20ce"}]},"public":true,"created_at":"2015-01-01T15:16:08Z"} +,{"id":"2489658539","type":"CreateEvent","actor":{"id":8609868,"login":"SylvrG","gravatar_id":"","url":"https://api.github.com/users/SylvrG","avatar_url":"https://avatars.githubusercontent.com/u/8609868?"},"repo":{"id":28688901,"name":"SylvrG/Pirate","url":"https://api.github.com/repos/SylvrG/Pirate"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":null,"pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:09Z"} +,{"id":"2489658540","type":"PullRequestEvent","actor":{"id":7558762,"login":"buildbot-princeton","gravatar_id":"","url":"https://api.github.com/users/buildbot-princeton","avatar_url":"https://avatars.githubusercontent.com/u/7558762?"},"repo":{"id":14293189,"name":"geodynamics/specfem2d","url":"https://api.github.com/repos/geodynamics/specfem2d"},"payload":{"action":"closed","number":172,"pull_request":{"url":"https://api.github.com/repos/geodynamics/specfem2d/pulls/172","id":26740702,"html_url":"https://github.com/geodynamics/specfem2d/pull/172","diff_url":"https://github.com/geodynamics/specfem2d/pull/172.diff","patch_url":"https://github.com/geodynamics/specfem2d/pull/172.patch","issue_url":"https://api.github.com/repos/geodynamics/specfem2d/issues/172","number":172,"state":"closed","locked":false,"title":"make the \"LuoYang_fluid_solid_kernel\" example run with Stacey","user":{"login":"xiezhinan","id":5821562,"avatar_url":"https://avatars.githubusercontent.com/u/5821562?v=3","gravatar_id":"","url":"https://api.github.com/users/xiezhinan","html_url":"https://github.com/xiezhinan","followers_url":"https://api.github.com/users/xiezhinan/followers","following_url":"https://api.github.com/users/xiezhinan/following{/other_user}","gists_url":"https://api.github.com/users/xiezhinan/gists{/gist_id}","starred_url":"https://api.github.com/users/xiezhinan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xiezhinan/subscriptions","organizations_url":"https://api.github.com/users/xiezhinan/orgs","repos_url":"https://api.github.com/users/xiezhinan/repos","events_url":"https://api.github.com/users/xiezhinan/events{/privacy}","received_events_url":"https://api.github.com/users/xiezhinan/received_events","type":"User","site_admin":false},"body":"make the \"LuoYang_fluid_solid_kernel\" example run with Stacey.\r\nChanges have been also made to the file adj_source.f90, since it is inconsistent with the current convention in naming the Station.","created_at":"2015-01-01T05:22:40Z","updated_at":"2015-01-01T15:16:08Z","closed_at":"2015-01-01T15:16:08Z","merged_at":"2015-01-01T15:16:08Z","merge_commit_sha":"4f9485c57cce11911bd08877efaa75b2e2174b02","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/geodynamics/specfem2d/pulls/172/commits","review_comments_url":"https://api.github.com/repos/geodynamics/specfem2d/pulls/172/comments","review_comment_url":"https://api.github.com/repos/geodynamics/specfem2d/pulls/comments/{number}","comments_url":"https://api.github.com/repos/geodynamics/specfem2d/issues/172/comments","statuses_url":"https://api.github.com/repos/geodynamics/specfem2d/statuses/ab5b24fc2ea757d531dffd2e0b5b7264ba9eb890","head":{"label":"xiezhinan:devel","ref":"devel","sha":"ab5b24fc2ea757d531dffd2e0b5b7264ba9eb890","user":{"login":"xiezhinan","id":5821562,"avatar_url":"https://avatars.githubusercontent.com/u/5821562?v=3","gravatar_id":"","url":"https://api.github.com/users/xiezhinan","html_url":"https://github.com/xiezhinan","followers_url":"https://api.github.com/users/xiezhinan/followers","following_url":"https://api.github.com/users/xiezhinan/following{/other_user}","gists_url":"https://api.github.com/users/xiezhinan/gists{/gist_id}","starred_url":"https://api.github.com/users/xiezhinan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xiezhinan/subscriptions","organizations_url":"https://api.github.com/users/xiezhinan/orgs","repos_url":"https://api.github.com/users/xiezhinan/repos","events_url":"https://api.github.com/users/xiezhinan/events{/privacy}","received_events_url":"https://api.github.com/users/xiezhinan/received_events","type":"User","site_admin":false},"repo":{"id":28336099,"name":"specfem2d","full_name":"xiezhinan/specfem2d","owner":{"login":"xiezhinan","id":5821562,"avatar_url":"https://avatars.githubusercontent.com/u/5821562?v=3","gravatar_id":"","url":"https://api.github.com/users/xiezhinan","html_url":"https://github.com/xiezhinan","followers_url":"https://api.github.com/users/xiezhinan/followers","following_url":"https://api.github.com/users/xiezhinan/following{/other_user}","gists_url":"https://api.github.com/users/xiezhinan/gists{/gist_id}","starred_url":"https://api.github.com/users/xiezhinan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xiezhinan/subscriptions","organizations_url":"https://api.github.com/users/xiezhinan/orgs","repos_url":"https://api.github.com/users/xiezhinan/repos","events_url":"https://api.github.com/users/xiezhinan/events{/privacy}","received_events_url":"https://api.github.com/users/xiezhinan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/xiezhinan/specfem2d","description":"SPECFEM2D simulates forward and adjoint seismic wave propagation in two-dimensional acoustic, (an)elastic, poroelastic or coupled acoustic-(an)elastic-poroelastic media, with Convolution PML absorbing conditions.","fork":true,"url":"https://api.github.com/repos/xiezhinan/specfem2d","forks_url":"https://api.github.com/repos/xiezhinan/specfem2d/forks","keys_url":"https://api.github.com/repos/xiezhinan/specfem2d/keys{/key_id}","collaborators_url":"https://api.github.com/repos/xiezhinan/specfem2d/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/xiezhinan/specfem2d/teams","hooks_url":"https://api.github.com/repos/xiezhinan/specfem2d/hooks","issue_events_url":"https://api.github.com/repos/xiezhinan/specfem2d/issues/events{/number}","events_url":"https://api.github.com/repos/xiezhinan/specfem2d/events","assignees_url":"https://api.github.com/repos/xiezhinan/specfem2d/assignees{/user}","branches_url":"https://api.github.com/repos/xiezhinan/specfem2d/branches{/branch}","tags_url":"https://api.github.com/repos/xiezhinan/specfem2d/tags","blobs_url":"https://api.github.com/repos/xiezhinan/specfem2d/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/xiezhinan/specfem2d/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/xiezhinan/specfem2d/git/refs{/sha}","trees_url":"https://api.github.com/repos/xiezhinan/specfem2d/git/trees{/sha}","statuses_url":"https://api.github.com/repos/xiezhinan/specfem2d/statuses/{sha}","languages_url":"https://api.github.com/repos/xiezhinan/specfem2d/languages","stargazers_url":"https://api.github.com/repos/xiezhinan/specfem2d/stargazers","contributors_url":"https://api.github.com/repos/xiezhinan/specfem2d/contributors","subscribers_url":"https://api.github.com/repos/xiezhinan/specfem2d/subscribers","subscription_url":"https://api.github.com/repos/xiezhinan/specfem2d/subscription","commits_url":"https://api.github.com/repos/xiezhinan/specfem2d/commits{/sha}","git_commits_url":"https://api.github.com/repos/xiezhinan/specfem2d/git/commits{/sha}","comments_url":"https://api.github.com/repos/xiezhinan/specfem2d/comments{/number}","issue_comment_url":"https://api.github.com/repos/xiezhinan/specfem2d/issues/comments/{number}","contents_url":"https://api.github.com/repos/xiezhinan/specfem2d/contents/{+path}","compare_url":"https://api.github.com/repos/xiezhinan/specfem2d/compare/{base}...{head}","merges_url":"https://api.github.com/repos/xiezhinan/specfem2d/merges","archive_url":"https://api.github.com/repos/xiezhinan/specfem2d/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/xiezhinan/specfem2d/downloads","issues_url":"https://api.github.com/repos/xiezhinan/specfem2d/issues{/number}","pulls_url":"https://api.github.com/repos/xiezhinan/specfem2d/pulls{/number}","milestones_url":"https://api.github.com/repos/xiezhinan/specfem2d/milestones{/number}","notifications_url":"https://api.github.com/repos/xiezhinan/specfem2d/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/xiezhinan/specfem2d/labels{/name}","releases_url":"https://api.github.com/repos/xiezhinan/specfem2d/releases{/id}","created_at":"2014-12-22T11:33:30Z","updated_at":"2014-12-22T11:33:38Z","pushed_at":"2015-01-01T05:18:53Z","git_url":"git://github.com/xiezhinan/specfem2d.git","ssh_url":"git@github.com:xiezhinan/specfem2d.git","clone_url":"https://github.com/xiezhinan/specfem2d.git","svn_url":"https://github.com/xiezhinan/specfem2d","homepage":null,"size":59407,"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":"geodynamics:devel","ref":"devel","sha":"a7ad0d4491b67c622ec71c8e6297e93ff3bf4807","user":{"login":"geodynamics","id":4052461,"avatar_url":"https://avatars.githubusercontent.com/u/4052461?v=3","gravatar_id":"","url":"https://api.github.com/users/geodynamics","html_url":"https://github.com/geodynamics","followers_url":"https://api.github.com/users/geodynamics/followers","following_url":"https://api.github.com/users/geodynamics/following{/other_user}","gists_url":"https://api.github.com/users/geodynamics/gists{/gist_id}","starred_url":"https://api.github.com/users/geodynamics/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/geodynamics/subscriptions","organizations_url":"https://api.github.com/users/geodynamics/orgs","repos_url":"https://api.github.com/users/geodynamics/repos","events_url":"https://api.github.com/users/geodynamics/events{/privacy}","received_events_url":"https://api.github.com/users/geodynamics/received_events","type":"Organization","site_admin":false},"repo":{"id":14293189,"name":"specfem2d","full_name":"geodynamics/specfem2d","owner":{"login":"geodynamics","id":4052461,"avatar_url":"https://avatars.githubusercontent.com/u/4052461?v=3","gravatar_id":"","url":"https://api.github.com/users/geodynamics","html_url":"https://github.com/geodynamics","followers_url":"https://api.github.com/users/geodynamics/followers","following_url":"https://api.github.com/users/geodynamics/following{/other_user}","gists_url":"https://api.github.com/users/geodynamics/gists{/gist_id}","starred_url":"https://api.github.com/users/geodynamics/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/geodynamics/subscriptions","organizations_url":"https://api.github.com/users/geodynamics/orgs","repos_url":"https://api.github.com/users/geodynamics/repos","events_url":"https://api.github.com/users/geodynamics/events{/privacy}","received_events_url":"https://api.github.com/users/geodynamics/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/geodynamics/specfem2d","description":"SPECFEM2D simulates forward and adjoint seismic wave propagation in two-dimensional acoustic, (an)elastic, poroelastic or coupled acoustic-(an)elastic-poroelastic media, with Convolution PML absorbing conditions.","fork":false,"url":"https://api.github.com/repos/geodynamics/specfem2d","forks_url":"https://api.github.com/repos/geodynamics/specfem2d/forks","keys_url":"https://api.github.com/repos/geodynamics/specfem2d/keys{/key_id}","collaborators_url":"https://api.github.com/repos/geodynamics/specfem2d/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/geodynamics/specfem2d/teams","hooks_url":"https://api.github.com/repos/geodynamics/specfem2d/hooks","issue_events_url":"https://api.github.com/repos/geodynamics/specfem2d/issues/events{/number}","events_url":"https://api.github.com/repos/geodynamics/specfem2d/events","assignees_url":"https://api.github.com/repos/geodynamics/specfem2d/assignees{/user}","branches_url":"https://api.github.com/repos/geodynamics/specfem2d/branches{/branch}","tags_url":"https://api.github.com/repos/geodynamics/specfem2d/tags","blobs_url":"https://api.github.com/repos/geodynamics/specfem2d/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/geodynamics/specfem2d/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/geodynamics/specfem2d/git/refs{/sha}","trees_url":"https://api.github.com/repos/geodynamics/specfem2d/git/trees{/sha}","statuses_url":"https://api.github.com/repos/geodynamics/specfem2d/statuses/{sha}","languages_url":"https://api.github.com/repos/geodynamics/specfem2d/languages","stargazers_url":"https://api.github.com/repos/geodynamics/specfem2d/stargazers","contributors_url":"https://api.github.com/repos/geodynamics/specfem2d/contributors","subscribers_url":"https://api.github.com/repos/geodynamics/specfem2d/subscribers","subscription_url":"https://api.github.com/repos/geodynamics/specfem2d/subscription","commits_url":"https://api.github.com/repos/geodynamics/specfem2d/commits{/sha}","git_commits_url":"https://api.github.com/repos/geodynamics/specfem2d/git/commits{/sha}","comments_url":"https://api.github.com/repos/geodynamics/specfem2d/comments{/number}","issue_comment_url":"https://api.github.com/repos/geodynamics/specfem2d/issues/comments/{number}","contents_url":"https://api.github.com/repos/geodynamics/specfem2d/contents/{+path}","compare_url":"https://api.github.com/repos/geodynamics/specfem2d/compare/{base}...{head}","merges_url":"https://api.github.com/repos/geodynamics/specfem2d/merges","archive_url":"https://api.github.com/repos/geodynamics/specfem2d/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/geodynamics/specfem2d/downloads","issues_url":"https://api.github.com/repos/geodynamics/specfem2d/issues{/number}","pulls_url":"https://api.github.com/repos/geodynamics/specfem2d/pulls{/number}","milestones_url":"https://api.github.com/repos/geodynamics/specfem2d/milestones{/number}","notifications_url":"https://api.github.com/repos/geodynamics/specfem2d/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/geodynamics/specfem2d/labels{/name}","releases_url":"https://api.github.com/repos/geodynamics/specfem2d/releases{/id}","created_at":"2013-11-11T06:17:10Z","updated_at":"2014-12-10T01:43:52Z","pushed_at":"2015-01-01T15:16:08Z","git_url":"git://github.com/geodynamics/specfem2d.git","ssh_url":"git@github.com:geodynamics/specfem2d.git","clone_url":"https://github.com/geodynamics/specfem2d.git","svn_url":"https://github.com/geodynamics/specfem2d","homepage":null,"size":59421,"stargazers_count":5,"watchers_count":5,"language":"C","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":17,"mirror_url":null,"open_issues_count":18,"forks":17,"open_issues":18,"watchers":5,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/geodynamics/specfem2d/pulls/172"},"html":{"href":"https://github.com/geodynamics/specfem2d/pull/172"},"issue":{"href":"https://api.github.com/repos/geodynamics/specfem2d/issues/172"},"comments":{"href":"https://api.github.com/repos/geodynamics/specfem2d/issues/172/comments"},"review_comments":{"href":"https://api.github.com/repos/geodynamics/specfem2d/pulls/172/comments"},"review_comment":{"href":"https://api.github.com/repos/geodynamics/specfem2d/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/geodynamics/specfem2d/pulls/172/commits"},"statuses":{"href":"https://api.github.com/repos/geodynamics/specfem2d/statuses/ab5b24fc2ea757d531dffd2e0b5b7264ba9eb890"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"buildbot-princeton","id":7558762,"avatar_url":"https://avatars.githubusercontent.com/u/7558762?v=3","gravatar_id":"","url":"https://api.github.com/users/buildbot-princeton","html_url":"https://github.com/buildbot-princeton","followers_url":"https://api.github.com/users/buildbot-princeton/followers","following_url":"https://api.github.com/users/buildbot-princeton/following{/other_user}","gists_url":"https://api.github.com/users/buildbot-princeton/gists{/gist_id}","starred_url":"https://api.github.com/users/buildbot-princeton/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/buildbot-princeton/subscriptions","organizations_url":"https://api.github.com/users/buildbot-princeton/orgs","repos_url":"https://api.github.com/users/buildbot-princeton/repos","events_url":"https://api.github.com/users/buildbot-princeton/events{/privacy}","received_events_url":"https://api.github.com/users/buildbot-princeton/received_events","type":"User","site_admin":false},"comments":5,"review_comments":0,"commits":2,"additions":26,"deletions":84,"changed_files":4}},"public":true,"created_at":"2015-01-01T15:16:09Z","org":{"id":4052461,"login":"geodynamics","gravatar_id":"","url":"https://api.github.com/orgs/geodynamics","avatar_url":"https://avatars.githubusercontent.com/u/4052461?"}} +,{"id":"2489658541","type":"PushEvent","actor":{"id":10239381,"login":"bigbigwork","gravatar_id":"","url":"https://api.github.com/users/bigbigwork","avatar_url":"https://avatars.githubusercontent.com/u/10239381?"},"repo":{"id":28212737,"name":"bigbigwork/bigbigwork.github.io","url":"https://api.github.com/repos/bigbigwork/bigbigwork.github.io"},"payload":{"push_id":536867360,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a5deff98749beac75ff1123166fa891fd809d442","before":"28c7857245b159c02c5ea1596c9738f9209a2401","commits":[{"sha":"a5deff98749beac75ff1123166fa891fd809d442","author":{"email":"7f029bee4b046522fac4ea829311f2618ada194d@outlook.com","name":"bigbigwork"},"message":"2d 引擎","distinct":true,"url":"https://api.github.com/repos/bigbigwork/bigbigwork.github.io/commits/a5deff98749beac75ff1123166fa891fd809d442"}]},"public":true,"created_at":"2015-01-01T15:16:09Z"} +,{"id":"2489658545","type":"PushEvent","actor":{"id":7558762,"login":"buildbot-princeton","gravatar_id":"","url":"https://api.github.com/users/buildbot-princeton","avatar_url":"https://avatars.githubusercontent.com/u/7558762?"},"repo":{"id":14293189,"name":"geodynamics/specfem2d","url":"https://api.github.com/repos/geodynamics/specfem2d"},"payload":{"push_id":536867358,"size":3,"distinct_size":3,"ref":"refs/heads/devel","head":"ab07bc52af96700aac5633340aecf9ec9b8a1058","before":"a7ad0d4491b67c622ec71c8e6297e93ff3bf4807","commits":[{"sha":"7b138947db0f3de5ebbfa83d1bfaf2b3248ffae7","author":{"email":"efbccb802068ba3167ef92c51464addf1d7ad0af@gmail.com","name":"Xie Zhinan"},"message":"Pass the test of LuoYang_fluid_solid_kernel example, which has been reported unstable when Stacey ABC is used","distinct":true,"url":"https://api.github.com/repos/geodynamics/specfem2d/commits/7b138947db0f3de5ebbfa83d1bfaf2b3248ffae7"},{"sha":"ab5b24fc2ea757d531dffd2e0b5b7264ba9eb890","author":{"email":"efbccb802068ba3167ef92c51464addf1d7ad0af@gmail.com","name":"Xie Zhinan"},"message":"change back the simulation type to 1 and the SAVE_FORWORD to .true","distinct":true,"url":"https://api.github.com/repos/geodynamics/specfem2d/commits/ab5b24fc2ea757d531dffd2e0b5b7264ba9eb890"},{"sha":"ab07bc52af96700aac5633340aecf9ec9b8a1058","author":{"email":"4f01036b9437d59848e062e621b13556bac09299@seismobot.Princeton.EDU","name":"buildbot"},"message":"Merge branch 'devel' of github.com:xiezhinan/specfem2d into devel","distinct":true,"url":"https://api.github.com/repos/geodynamics/specfem2d/commits/ab07bc52af96700aac5633340aecf9ec9b8a1058"}]},"public":true,"created_at":"2015-01-01T15:16:09Z","org":{"id":4052461,"login":"geodynamics","gravatar_id":"","url":"https://api.github.com/orgs/geodynamics","avatar_url":"https://avatars.githubusercontent.com/u/4052461?"}} +,{"id":"2489658549","type":"PushEvent","actor":{"id":433707,"login":"ile","gravatar_id":"","url":"https://api.github.com/users/ile","avatar_url":"https://avatars.githubusercontent.com/u/433707?"},"repo":{"id":13599170,"name":"ile/ile.github.io","url":"https://api.github.com/repos/ile/ile.github.io"},"payload":{"push_id":536867361,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"460b47428a0071d5e1e21aa92f758a1a2f684606","before":"2aaf719d0cb35259655102a2ee2e0ab08329e923","commits":[{"sha":"460b47428a0071d5e1e21aa92f758a1a2f684606","author":{"email":"587176f59bd66462892fd96dcec0acd2c8acf8c1@gmail.com","name":"Ilkka Huotari"},"message":"Update index.html","distinct":true,"url":"https://api.github.com/repos/ile/ile.github.io/commits/460b47428a0071d5e1e21aa92f758a1a2f684606"}]},"public":true,"created_at":"2015-01-01T15:16:09Z"} +,{"id":"2489658550","type":"IssuesEvent","actor":{"id":1406184,"login":"jshafton","gravatar_id":"","url":"https://api.github.com/users/jshafton","avatar_url":"https://avatars.githubusercontent.com/u/1406184?"},"repo":{"id":28553212,"name":"jshafton/dotfiles_new","url":"https://api.github.com/repos/jshafton/dotfiles_new"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/jshafton/dotfiles_new/issues/4","labels_url":"https://api.github.com/repos/jshafton/dotfiles_new/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/jshafton/dotfiles_new/issues/4/comments","events_url":"https://api.github.com/repos/jshafton/dotfiles_new/issues/4/events","html_url":"https://github.com/jshafton/dotfiles_new/issues/4","id":53166921,"number":4,"title":"Install rbenv-default-gems","user":{"login":"jshafton","id":1406184,"avatar_url":"https://avatars.githubusercontent.com/u/1406184?v=3","gravatar_id":"","url":"https://api.github.com/users/jshafton","html_url":"https://github.com/jshafton","followers_url":"https://api.github.com/users/jshafton/followers","following_url":"https://api.github.com/users/jshafton/following{/other_user}","gists_url":"https://api.github.com/users/jshafton/gists{/gist_id}","starred_url":"https://api.github.com/users/jshafton/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jshafton/subscriptions","organizations_url":"https://api.github.com/users/jshafton/orgs","repos_url":"https://api.github.com/users/jshafton/repos","events_url":"https://api.github.com/users/jshafton/events{/privacy}","received_events_url":"https://api.github.com/users/jshafton/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2014-12-31T04:39:01Z","updated_at":"2015-01-01T15:16:09Z","closed_at":"2015-01-01T15:16:09Z","body":""}},"public":true,"created_at":"2015-01-01T15:16:10Z"} +,{"id":"2489658551","type":"PushEvent","actor":{"id":1406184,"login":"jshafton","gravatar_id":"","url":"https://api.github.com/users/jshafton","avatar_url":"https://avatars.githubusercontent.com/u/1406184?"},"repo":{"id":28553212,"name":"jshafton/dotfiles_new","url":"https://api.github.com/repos/jshafton/dotfiles_new"},"payload":{"push_id":536867362,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d297dd4e26267539c1f573db5c34595621b2dd34","before":"ac33bbeaee9b1692a2e72c39152171d0c98d0f28","commits":[{"sha":"d297dd4e26267539c1f573db5c34595621b2dd34","author":{"email":"f862f167b85d41b225785c70d70808bc7337c1fe@shafton.com","name":"Jacob Shafton"},"message":"rbenv-default-gems configuration\n\nFixes #4","distinct":true,"url":"https://api.github.com/repos/jshafton/dotfiles_new/commits/d297dd4e26267539c1f573db5c34595621b2dd34"}]},"public":true,"created_at":"2015-01-01T15:16:10Z"} +,{"id":"2489658552","type":"IssueCommentEvent","actor":{"id":316890,"login":"ericmj","gravatar_id":"","url":"https://api.github.com/users/ericmj","avatar_url":"https://avatars.githubusercontent.com/u/316890?"},"repo":{"id":16328245,"name":"hexpm/hex_web","url":"https://api.github.com/repos/hexpm/hex_web"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/hexpm/hex_web/issues/83","labels_url":"https://api.github.com/repos/hexpm/hex_web/issues/83/labels{/name}","comments_url":"https://api.github.com/repos/hexpm/hex_web/issues/83/comments","events_url":"https://api.github.com/repos/hexpm/hex_web/issues/83/events","html_url":"https://github.com/hexpm/hex_web/pull/83","id":53216919,"number":83,"title":"Improve status messages on confirmation","user":{"login":"JamesS237","id":860934,"avatar_url":"https://avatars.githubusercontent.com/u/860934?v=3","gravatar_id":"","url":"https://api.github.com/users/JamesS237","html_url":"https://github.com/JamesS237","followers_url":"https://api.github.com/users/JamesS237/followers","following_url":"https://api.github.com/users/JamesS237/following{/other_user}","gists_url":"https://api.github.com/users/JamesS237/gists{/gist_id}","starred_url":"https://api.github.com/users/JamesS237/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JamesS237/subscriptions","organizations_url":"https://api.github.com/users/JamesS237/orgs","repos_url":"https://api.github.com/users/JamesS237/repos","events_url":"https://api.github.com/users/JamesS237/events{/privacy}","received_events_url":"https://api.github.com/users/JamesS237/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T10:10:42Z","updated_at":"2015-01-01T15:16:10Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/hexpm/hex_web/pulls/83","html_url":"https://github.com/hexpm/hex_web/pull/83","diff_url":"https://github.com/hexpm/hex_web/pull/83.diff","patch_url":"https://github.com/hexpm/hex_web/pull/83.patch"},"body":"This pull request updates the confirm template, making the response clearer, particularly when it comes to confirmation errors.\r\n\r\n|state|screenshot|\r\n|-------|--------------|\r\n|success|![screen shot 2015-01-01 at 9 07 41 pm](https://cloud.githubusercontent.com/assets/860934/5591982/1895d42e-91fa-11e4-87c0-331ff3597ef0.png)|\r\n|failure|![screen shot 2015-01-01 at 9 07 56 pm](https://cloud.githubusercontent.com/assets/860934/5591983/1e85df64-91fa-11e4-9a4e-8c4339296eef.png)|\r\n\r\nNote: this is for the `/confirm` route, *not* email templates."},"comment":{"url":"https://api.github.com/repos/hexpm/hex_web/issues/comments/68488829","html_url":"https://github.com/hexpm/hex_web/pull/83#issuecomment-68488829","issue_url":"https://api.github.com/repos/hexpm/hex_web/issues/83","id":68488829,"user":{"login":"ericmj","id":316890,"avatar_url":"https://avatars.githubusercontent.com/u/316890?v=3","gravatar_id":"","url":"https://api.github.com/users/ericmj","html_url":"https://github.com/ericmj","followers_url":"https://api.github.com/users/ericmj/followers","following_url":"https://api.github.com/users/ericmj/following{/other_user}","gists_url":"https://api.github.com/users/ericmj/gists{/gist_id}","starred_url":"https://api.github.com/users/ericmj/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ericmj/subscriptions","organizations_url":"https://api.github.com/users/ericmj/orgs","repos_url":"https://api.github.com/users/ericmj/repos","events_url":"https://api.github.com/users/ericmj/events{/privacy}","received_events_url":"https://api.github.com/users/ericmj/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:16:10Z","updated_at":"2015-01-01T15:16:10Z","body":"Beautiful!"}},"public":true,"created_at":"2015-01-01T15:16:10Z","org":{"id":6621265,"login":"hexpm","gravatar_id":"","url":"https://api.github.com/orgs/hexpm","avatar_url":"https://avatars.githubusercontent.com/u/6621265?"}} +,{"id":"2489658558","type":"CreateEvent","actor":{"id":8609868,"login":"SylvrG","gravatar_id":"","url":"https://api.github.com/users/SylvrG","avatar_url":"https://avatars.githubusercontent.com/u/8609868?"},"repo":{"id":28688901,"name":"SylvrG/Pirate","url":"https://api.github.com/repos/SylvrG/Pirate"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":null,"pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:11Z"} +,{"id":"2489658561","type":"PushEvent","actor":{"id":1459257,"login":"lloydbenson","gravatar_id":"","url":"https://api.github.com/users/lloydbenson","avatar_url":"https://avatars.githubusercontent.com/u/1459257?"},"repo":{"id":23593166,"name":"fishin/reel","url":"https://api.github.com/repos/fishin/reel"},"payload":{"push_id":536867366,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3ae8328422d0e2731e969e5f8a8d3b7314d49cea","before":"d8756cbf49a09fce1cc36b6c028e45cf8e886e90","commits":[{"sha":"3ae8328422d0e2731e969e5f8a8d3b7314d49cea","author":{"email":"d9defced7f85572ecc1831480a223e08f1931f03@gmail.com","name":"lloydbenson"},"message":"fixes to lib runner","distinct":true,"url":"https://api.github.com/repos/fishin/reel/commits/3ae8328422d0e2731e969e5f8a8d3b7314d49cea"}]},"public":true,"created_at":"2015-01-01T15:16:11Z","org":{"id":8632751,"login":"fishin","gravatar_id":"","url":"https://api.github.com/orgs/fishin","avatar_url":"https://avatars.githubusercontent.com/u/8632751?"}} +,{"id":"2489658567","type":"PullRequestEvent","actor":{"id":10364092,"login":"ayoumination","gravatar_id":"","url":"https://api.github.com/users/ayoumination","avatar_url":"https://avatars.githubusercontent.com/u/10364092?"},"repo":{"id":1539787,"name":"play/play","url":"https://api.github.com/repos/play/play"},"payload":{"action":"opened","number":384,"pull_request":{"url":"https://api.github.com/repos/play/play/pulls/384","id":26743892,"html_url":"https://github.com/play/play/pull/384","diff_url":"https://github.com/play/play/pull/384.diff","patch_url":"https://github.com/play/play/pull/384.patch","issue_url":"https://api.github.com/repos/play/play/issues/384","number":384,"state":"open","locked":false,"title":"Create frequincy styling","user":{"login":"ayoumination","id":10364092,"avatar_url":"https://avatars.githubusercontent.com/u/10364092?v=3","gravatar_id":"","url":"https://api.github.com/users/ayoumination","html_url":"https://github.com/ayoumination","followers_url":"https://api.github.com/users/ayoumination/followers","following_url":"https://api.github.com/users/ayoumination/following{/other_user}","gists_url":"https://api.github.com/users/ayoumination/gists{/gist_id}","starred_url":"https://api.github.com/users/ayoumination/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ayoumination/subscriptions","organizations_url":"https://api.github.com/users/ayoumination/orgs","repos_url":"https://api.github.com/users/ayoumination/repos","events_url":"https://api.github.com/users/ayoumination/events{/privacy}","received_events_url":"https://api.github.com/users/ayoumination/received_events","type":"User","site_admin":false},"body":"Quincy's taro is increasing, big up the silver medal and gold medal makers","created_at":"2015-01-01T15:16:12Z","updated_at":"2015-01-01T15:16:12Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/play/play/pulls/384/commits","review_comments_url":"https://api.github.com/repos/play/play/pulls/384/comments","review_comment_url":"https://api.github.com/repos/play/play/pulls/comments/{number}","comments_url":"https://api.github.com/repos/play/play/issues/384/comments","statuses_url":"https://api.github.com/repos/play/play/statuses/854e74add9317863f4a9ab2e498360f9266b10ea","head":{"label":"ayoumination:patch-1","ref":"patch-1","sha":"854e74add9317863f4a9ab2e498360f9266b10ea","user":{"login":"ayoumination","id":10364092,"avatar_url":"https://avatars.githubusercontent.com/u/10364092?v=3","gravatar_id":"","url":"https://api.github.com/users/ayoumination","html_url":"https://github.com/ayoumination","followers_url":"https://api.github.com/users/ayoumination/followers","following_url":"https://api.github.com/users/ayoumination/following{/other_user}","gists_url":"https://api.github.com/users/ayoumination/gists{/gist_id}","starred_url":"https://api.github.com/users/ayoumination/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ayoumination/subscriptions","organizations_url":"https://api.github.com/users/ayoumination/orgs","repos_url":"https://api.github.com/users/ayoumination/repos","events_url":"https://api.github.com/users/ayoumination/events{/privacy}","received_events_url":"https://api.github.com/users/ayoumination/received_events","type":"User","site_admin":false},"repo":{"id":28688708,"name":"play","full_name":"ayoumination/play","owner":{"login":"ayoumination","id":10364092,"avatar_url":"https://avatars.githubusercontent.com/u/10364092?v=3","gravatar_id":"","url":"https://api.github.com/users/ayoumination","html_url":"https://github.com/ayoumination","followers_url":"https://api.github.com/users/ayoumination/followers","following_url":"https://api.github.com/users/ayoumination/following{/other_user}","gists_url":"https://api.github.com/users/ayoumination/gists{/gist_id}","starred_url":"https://api.github.com/users/ayoumination/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ayoumination/subscriptions","organizations_url":"https://api.github.com/users/ayoumination/orgs","repos_url":"https://api.github.com/users/ayoumination/repos","events_url":"https://api.github.com/users/ayoumination/events{/privacy}","received_events_url":"https://api.github.com/users/ayoumination/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ayoumination/play","description":"play ► — your company's dj","fork":true,"url":"https://api.github.com/repos/ayoumination/play","forks_url":"https://api.github.com/repos/ayoumination/play/forks","keys_url":"https://api.github.com/repos/ayoumination/play/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ayoumination/play/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ayoumination/play/teams","hooks_url":"https://api.github.com/repos/ayoumination/play/hooks","issue_events_url":"https://api.github.com/repos/ayoumination/play/issues/events{/number}","events_url":"https://api.github.com/repos/ayoumination/play/events","assignees_url":"https://api.github.com/repos/ayoumination/play/assignees{/user}","branches_url":"https://api.github.com/repos/ayoumination/play/branches{/branch}","tags_url":"https://api.github.com/repos/ayoumination/play/tags","blobs_url":"https://api.github.com/repos/ayoumination/play/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ayoumination/play/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ayoumination/play/git/refs{/sha}","trees_url":"https://api.github.com/repos/ayoumination/play/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ayoumination/play/statuses/{sha}","languages_url":"https://api.github.com/repos/ayoumination/play/languages","stargazers_url":"https://api.github.com/repos/ayoumination/play/stargazers","contributors_url":"https://api.github.com/repos/ayoumination/play/contributors","subscribers_url":"https://api.github.com/repos/ayoumination/play/subscribers","subscription_url":"https://api.github.com/repos/ayoumination/play/subscription","commits_url":"https://api.github.com/repos/ayoumination/play/commits{/sha}","git_commits_url":"https://api.github.com/repos/ayoumination/play/git/commits{/sha}","comments_url":"https://api.github.com/repos/ayoumination/play/comments{/number}","issue_comment_url":"https://api.github.com/repos/ayoumination/play/issues/comments/{number}","contents_url":"https://api.github.com/repos/ayoumination/play/contents/{+path}","compare_url":"https://api.github.com/repos/ayoumination/play/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ayoumination/play/merges","archive_url":"https://api.github.com/repos/ayoumination/play/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ayoumination/play/downloads","issues_url":"https://api.github.com/repos/ayoumination/play/issues{/number}","pulls_url":"https://api.github.com/repos/ayoumination/play/pulls{/number}","milestones_url":"https://api.github.com/repos/ayoumination/play/milestones{/number}","notifications_url":"https://api.github.com/repos/ayoumination/play/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ayoumination/play/labels{/name}","releases_url":"https://api.github.com/repos/ayoumination/play/releases{/id}","created_at":"2015-01-01T15:06:11Z","updated_at":"2015-01-01T15:06:12Z","pushed_at":"2015-01-01T15:16:06Z","git_url":"git://github.com/ayoumination/play.git","ssh_url":"git@github.com:ayoumination/play.git","clone_url":"https://github.com/ayoumination/play.git","svn_url":"https://github.com/ayoumination/play","homepage":"http://zachholman.com/screencast/play/","size":9541,"stargazers_count":0,"watchers_count":0,"language":"Ruby","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":"play:master","ref":"master","sha":"64e687437a895758edb5a4f8642935dd1cf2504c","user":{"login":"play","id":1609638,"avatar_url":"https://avatars.githubusercontent.com/u/1609638?v=3","gravatar_id":"","url":"https://api.github.com/users/play","html_url":"https://github.com/play","followers_url":"https://api.github.com/users/play/followers","following_url":"https://api.github.com/users/play/following{/other_user}","gists_url":"https://api.github.com/users/play/gists{/gist_id}","starred_url":"https://api.github.com/users/play/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/play/subscriptions","organizations_url":"https://api.github.com/users/play/orgs","repos_url":"https://api.github.com/users/play/repos","events_url":"https://api.github.com/users/play/events{/privacy}","received_events_url":"https://api.github.com/users/play/received_events","type":"Organization","site_admin":false},"repo":{"id":1539787,"name":"play","full_name":"play/play","owner":{"login":"play","id":1609638,"avatar_url":"https://avatars.githubusercontent.com/u/1609638?v=3","gravatar_id":"","url":"https://api.github.com/users/play","html_url":"https://github.com/play","followers_url":"https://api.github.com/users/play/followers","following_url":"https://api.github.com/users/play/following{/other_user}","gists_url":"https://api.github.com/users/play/gists{/gist_id}","starred_url":"https://api.github.com/users/play/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/play/subscriptions","organizations_url":"https://api.github.com/users/play/orgs","repos_url":"https://api.github.com/users/play/repos","events_url":"https://api.github.com/users/play/events{/privacy}","received_events_url":"https://api.github.com/users/play/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/play/play","description":"play ► — your company's dj","fork":false,"url":"https://api.github.com/repos/play/play","forks_url":"https://api.github.com/repos/play/play/forks","keys_url":"https://api.github.com/repos/play/play/keys{/key_id}","collaborators_url":"https://api.github.com/repos/play/play/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/play/play/teams","hooks_url":"https://api.github.com/repos/play/play/hooks","issue_events_url":"https://api.github.com/repos/play/play/issues/events{/number}","events_url":"https://api.github.com/repos/play/play/events","assignees_url":"https://api.github.com/repos/play/play/assignees{/user}","branches_url":"https://api.github.com/repos/play/play/branches{/branch}","tags_url":"https://api.github.com/repos/play/play/tags","blobs_url":"https://api.github.com/repos/play/play/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/play/play/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/play/play/git/refs{/sha}","trees_url":"https://api.github.com/repos/play/play/git/trees{/sha}","statuses_url":"https://api.github.com/repos/play/play/statuses/{sha}","languages_url":"https://api.github.com/repos/play/play/languages","stargazers_url":"https://api.github.com/repos/play/play/stargazers","contributors_url":"https://api.github.com/repos/play/play/contributors","subscribers_url":"https://api.github.com/repos/play/play/subscribers","subscription_url":"https://api.github.com/repos/play/play/subscription","commits_url":"https://api.github.com/repos/play/play/commits{/sha}","git_commits_url":"https://api.github.com/repos/play/play/git/commits{/sha}","comments_url":"https://api.github.com/repos/play/play/comments{/number}","issue_comment_url":"https://api.github.com/repos/play/play/issues/comments/{number}","contents_url":"https://api.github.com/repos/play/play/contents/{+path}","compare_url":"https://api.github.com/repos/play/play/compare/{base}...{head}","merges_url":"https://api.github.com/repos/play/play/merges","archive_url":"https://api.github.com/repos/play/play/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/play/play/downloads","issues_url":"https://api.github.com/repos/play/play/issues{/number}","pulls_url":"https://api.github.com/repos/play/play/pulls{/number}","milestones_url":"https://api.github.com/repos/play/play/milestones{/number}","notifications_url":"https://api.github.com/repos/play/play/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/play/play/labels{/name}","releases_url":"https://api.github.com/repos/play/play/releases{/id}","created_at":"2011-03-29T03:29:10Z","updated_at":"2014-12-31T16:49:49Z","pushed_at":"2014-05-05T22:03:43Z","git_url":"git://github.com/play/play.git","ssh_url":"git@github.com:play/play.git","clone_url":"https://github.com/play/play.git","svn_url":"https://github.com/play/play","homepage":"http://zachholman.com/screencast/play/","size":9541,"stargazers_count":2185,"watchers_count":2185,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":305,"mirror_url":null,"open_issues_count":37,"forks":305,"open_issues":37,"watchers":2185,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/play/play/pulls/384"},"html":{"href":"https://github.com/play/play/pull/384"},"issue":{"href":"https://api.github.com/repos/play/play/issues/384"},"comments":{"href":"https://api.github.com/repos/play/play/issues/384/comments"},"review_comments":{"href":"https://api.github.com/repos/play/play/pulls/384/comments"},"review_comment":{"href":"https://api.github.com/repos/play/play/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/play/play/pulls/384/commits"},"statuses":{"href":"https://api.github.com/repos/play/play/statuses/854e74add9317863f4a9ab2e498360f9266b10ea"}},"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:16:12Z","org":{"id":1609638,"login":"play","gravatar_id":"","url":"https://api.github.com/orgs/play","avatar_url":"https://avatars.githubusercontent.com/u/1609638?"}} +,{"id":"2489658568","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":536867369,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bb9ecd8d2c78c6569f89e096b1e7acb12a8cdd20","before":"82b320a5dd028c6749fa6b6bc0301bd9001536d2","commits":[{"sha":"bb9ecd8d2c78c6569f89e096b1e7acb12a8cdd20","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420125370845\n\nDYt6H1G/EYQ6eKkwc/Mml0D9J5Q2HdHWJMfs11McUrE=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/bb9ecd8d2c78c6569f89e096b1e7acb12a8cdd20"}]},"public":true,"created_at":"2015-01-01T15:16:12Z"} +,{"id":"2489658570","type":"PullRequestEvent","actor":{"id":316890,"login":"ericmj","gravatar_id":"","url":"https://api.github.com/users/ericmj","avatar_url":"https://avatars.githubusercontent.com/u/316890?"},"repo":{"id":16328245,"name":"hexpm/hex_web","url":"https://api.github.com/repos/hexpm/hex_web"},"payload":{"action":"closed","number":83,"pull_request":{"url":"https://api.github.com/repos/hexpm/hex_web/pulls/83","id":26741941,"html_url":"https://github.com/hexpm/hex_web/pull/83","diff_url":"https://github.com/hexpm/hex_web/pull/83.diff","patch_url":"https://github.com/hexpm/hex_web/pull/83.patch","issue_url":"https://api.github.com/repos/hexpm/hex_web/issues/83","number":83,"state":"closed","locked":false,"title":"Improve status messages on confirmation","user":{"login":"JamesS237","id":860934,"avatar_url":"https://avatars.githubusercontent.com/u/860934?v=3","gravatar_id":"","url":"https://api.github.com/users/JamesS237","html_url":"https://github.com/JamesS237","followers_url":"https://api.github.com/users/JamesS237/followers","following_url":"https://api.github.com/users/JamesS237/following{/other_user}","gists_url":"https://api.github.com/users/JamesS237/gists{/gist_id}","starred_url":"https://api.github.com/users/JamesS237/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JamesS237/subscriptions","organizations_url":"https://api.github.com/users/JamesS237/orgs","repos_url":"https://api.github.com/users/JamesS237/repos","events_url":"https://api.github.com/users/JamesS237/events{/privacy}","received_events_url":"https://api.github.com/users/JamesS237/received_events","type":"User","site_admin":false},"body":"This pull request updates the confirm template, making the response clearer, particularly when it comes to confirmation errors.\r\n\r\n|state|screenshot|\r\n|-------|--------------|\r\n|success|![screen shot 2015-01-01 at 9 07 41 pm](https://cloud.githubusercontent.com/assets/860934/5591982/1895d42e-91fa-11e4-87c0-331ff3597ef0.png)|\r\n|failure|![screen shot 2015-01-01 at 9 07 56 pm](https://cloud.githubusercontent.com/assets/860934/5591983/1e85df64-91fa-11e4-9a4e-8c4339296eef.png)|\r\n\r\nNote: this is for the `/confirm` route, *not* email templates.","created_at":"2015-01-01T10:10:42Z","updated_at":"2015-01-01T15:16:12Z","closed_at":"2015-01-01T15:16:12Z","merged_at":"2015-01-01T15:16:12Z","merge_commit_sha":"43fda5a0052d4b07369362e03cd787b486c423f5","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/hexpm/hex_web/pulls/83/commits","review_comments_url":"https://api.github.com/repos/hexpm/hex_web/pulls/83/comments","review_comment_url":"https://api.github.com/repos/hexpm/hex_web/pulls/comments/{number}","comments_url":"https://api.github.com/repos/hexpm/hex_web/issues/83/comments","statuses_url":"https://api.github.com/repos/hexpm/hex_web/statuses/207e708990daa9b9a69af5dc7a785b5ec791fd93","head":{"label":"JamesS237:improve_confirm_message","ref":"improve_confirm_message","sha":"207e708990daa9b9a69af5dc7a785b5ec791fd93","user":{"login":"JamesS237","id":860934,"avatar_url":"https://avatars.githubusercontent.com/u/860934?v=3","gravatar_id":"","url":"https://api.github.com/users/JamesS237","html_url":"https://github.com/JamesS237","followers_url":"https://api.github.com/users/JamesS237/followers","following_url":"https://api.github.com/users/JamesS237/following{/other_user}","gists_url":"https://api.github.com/users/JamesS237/gists{/gist_id}","starred_url":"https://api.github.com/users/JamesS237/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JamesS237/subscriptions","organizations_url":"https://api.github.com/users/JamesS237/orgs","repos_url":"https://api.github.com/users/JamesS237/repos","events_url":"https://api.github.com/users/JamesS237/events{/privacy}","received_events_url":"https://api.github.com/users/JamesS237/received_events","type":"User","site_admin":false},"repo":{"id":28681320,"name":"hex_web","full_name":"JamesS237/hex_web","owner":{"login":"JamesS237","id":860934,"avatar_url":"https://avatars.githubusercontent.com/u/860934?v=3","gravatar_id":"","url":"https://api.github.com/users/JamesS237","html_url":"https://github.com/JamesS237","followers_url":"https://api.github.com/users/JamesS237/followers","following_url":"https://api.github.com/users/JamesS237/following{/other_user}","gists_url":"https://api.github.com/users/JamesS237/gists{/gist_id}","starred_url":"https://api.github.com/users/JamesS237/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JamesS237/subscriptions","organizations_url":"https://api.github.com/users/JamesS237/orgs","repos_url":"https://api.github.com/users/JamesS237/repos","events_url":"https://api.github.com/users/JamesS237/events{/privacy}","received_events_url":"https://api.github.com/users/JamesS237/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/JamesS237/hex_web","description":"API server and website for Hex","fork":true,"url":"https://api.github.com/repos/JamesS237/hex_web","forks_url":"https://api.github.com/repos/JamesS237/hex_web/forks","keys_url":"https://api.github.com/repos/JamesS237/hex_web/keys{/key_id}","collaborators_url":"https://api.github.com/repos/JamesS237/hex_web/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/JamesS237/hex_web/teams","hooks_url":"https://api.github.com/repos/JamesS237/hex_web/hooks","issue_events_url":"https://api.github.com/repos/JamesS237/hex_web/issues/events{/number}","events_url":"https://api.github.com/repos/JamesS237/hex_web/events","assignees_url":"https://api.github.com/repos/JamesS237/hex_web/assignees{/user}","branches_url":"https://api.github.com/repos/JamesS237/hex_web/branches{/branch}","tags_url":"https://api.github.com/repos/JamesS237/hex_web/tags","blobs_url":"https://api.github.com/repos/JamesS237/hex_web/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/JamesS237/hex_web/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/JamesS237/hex_web/git/refs{/sha}","trees_url":"https://api.github.com/repos/JamesS237/hex_web/git/trees{/sha}","statuses_url":"https://api.github.com/repos/JamesS237/hex_web/statuses/{sha}","languages_url":"https://api.github.com/repos/JamesS237/hex_web/languages","stargazers_url":"https://api.github.com/repos/JamesS237/hex_web/stargazers","contributors_url":"https://api.github.com/repos/JamesS237/hex_web/contributors","subscribers_url":"https://api.github.com/repos/JamesS237/hex_web/subscribers","subscription_url":"https://api.github.com/repos/JamesS237/hex_web/subscription","commits_url":"https://api.github.com/repos/JamesS237/hex_web/commits{/sha}","git_commits_url":"https://api.github.com/repos/JamesS237/hex_web/git/commits{/sha}","comments_url":"https://api.github.com/repos/JamesS237/hex_web/comments{/number}","issue_comment_url":"https://api.github.com/repos/JamesS237/hex_web/issues/comments/{number}","contents_url":"https://api.github.com/repos/JamesS237/hex_web/contents/{+path}","compare_url":"https://api.github.com/repos/JamesS237/hex_web/compare/{base}...{head}","merges_url":"https://api.github.com/repos/JamesS237/hex_web/merges","archive_url":"https://api.github.com/repos/JamesS237/hex_web/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/JamesS237/hex_web/downloads","issues_url":"https://api.github.com/repos/JamesS237/hex_web/issues{/number}","pulls_url":"https://api.github.com/repos/JamesS237/hex_web/pulls{/number}","milestones_url":"https://api.github.com/repos/JamesS237/hex_web/milestones{/number}","notifications_url":"https://api.github.com/repos/JamesS237/hex_web/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/JamesS237/hex_web/labels{/name}","releases_url":"https://api.github.com/repos/JamesS237/hex_web/releases{/id}","created_at":"2015-01-01T05:51:53Z","updated_at":"2015-01-01T05:51:54Z","pushed_at":"2015-01-01T10:01:41Z","git_url":"git://github.com/JamesS237/hex_web.git","ssh_url":"git@github.com:JamesS237/hex_web.git","clone_url":"https://github.com/JamesS237/hex_web.git","svn_url":"https://github.com/JamesS237/hex_web","homepage":"https://hex.pm","size":2049,"stargazers_count":0,"watchers_count":0,"language":"Elixir","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":"hexpm:master","ref":"master","sha":"31001a9ee313245ca362d36bdcaccbc7e4e51647","user":{"login":"hexpm","id":6621265,"avatar_url":"https://avatars.githubusercontent.com/u/6621265?v=3","gravatar_id":"","url":"https://api.github.com/users/hexpm","html_url":"https://github.com/hexpm","followers_url":"https://api.github.com/users/hexpm/followers","following_url":"https://api.github.com/users/hexpm/following{/other_user}","gists_url":"https://api.github.com/users/hexpm/gists{/gist_id}","starred_url":"https://api.github.com/users/hexpm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hexpm/subscriptions","organizations_url":"https://api.github.com/users/hexpm/orgs","repos_url":"https://api.github.com/users/hexpm/repos","events_url":"https://api.github.com/users/hexpm/events{/privacy}","received_events_url":"https://api.github.com/users/hexpm/received_events","type":"Organization","site_admin":false},"repo":{"id":16328245,"name":"hex_web","full_name":"hexpm/hex_web","owner":{"login":"hexpm","id":6621265,"avatar_url":"https://avatars.githubusercontent.com/u/6621265?v=3","gravatar_id":"","url":"https://api.github.com/users/hexpm","html_url":"https://github.com/hexpm","followers_url":"https://api.github.com/users/hexpm/followers","following_url":"https://api.github.com/users/hexpm/following{/other_user}","gists_url":"https://api.github.com/users/hexpm/gists{/gist_id}","starred_url":"https://api.github.com/users/hexpm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hexpm/subscriptions","organizations_url":"https://api.github.com/users/hexpm/orgs","repos_url":"https://api.github.com/users/hexpm/repos","events_url":"https://api.github.com/users/hexpm/events{/privacy}","received_events_url":"https://api.github.com/users/hexpm/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/hexpm/hex_web","description":"API server and website for Hex","fork":false,"url":"https://api.github.com/repos/hexpm/hex_web","forks_url":"https://api.github.com/repos/hexpm/hex_web/forks","keys_url":"https://api.github.com/repos/hexpm/hex_web/keys{/key_id}","collaborators_url":"https://api.github.com/repos/hexpm/hex_web/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/hexpm/hex_web/teams","hooks_url":"https://api.github.com/repos/hexpm/hex_web/hooks","issue_events_url":"https://api.github.com/repos/hexpm/hex_web/issues/events{/number}","events_url":"https://api.github.com/repos/hexpm/hex_web/events","assignees_url":"https://api.github.com/repos/hexpm/hex_web/assignees{/user}","branches_url":"https://api.github.com/repos/hexpm/hex_web/branches{/branch}","tags_url":"https://api.github.com/repos/hexpm/hex_web/tags","blobs_url":"https://api.github.com/repos/hexpm/hex_web/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/hexpm/hex_web/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/hexpm/hex_web/git/refs{/sha}","trees_url":"https://api.github.com/repos/hexpm/hex_web/git/trees{/sha}","statuses_url":"https://api.github.com/repos/hexpm/hex_web/statuses/{sha}","languages_url":"https://api.github.com/repos/hexpm/hex_web/languages","stargazers_url":"https://api.github.com/repos/hexpm/hex_web/stargazers","contributors_url":"https://api.github.com/repos/hexpm/hex_web/contributors","subscribers_url":"https://api.github.com/repos/hexpm/hex_web/subscribers","subscription_url":"https://api.github.com/repos/hexpm/hex_web/subscription","commits_url":"https://api.github.com/repos/hexpm/hex_web/commits{/sha}","git_commits_url":"https://api.github.com/repos/hexpm/hex_web/git/commits{/sha}","comments_url":"https://api.github.com/repos/hexpm/hex_web/comments{/number}","issue_comment_url":"https://api.github.com/repos/hexpm/hex_web/issues/comments/{number}","contents_url":"https://api.github.com/repos/hexpm/hex_web/contents/{+path}","compare_url":"https://api.github.com/repos/hexpm/hex_web/compare/{base}...{head}","merges_url":"https://api.github.com/repos/hexpm/hex_web/merges","archive_url":"https://api.github.com/repos/hexpm/hex_web/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/hexpm/hex_web/downloads","issues_url":"https://api.github.com/repos/hexpm/hex_web/issues{/number}","pulls_url":"https://api.github.com/repos/hexpm/hex_web/pulls{/number}","milestones_url":"https://api.github.com/repos/hexpm/hex_web/milestones{/number}","notifications_url":"https://api.github.com/repos/hexpm/hex_web/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/hexpm/hex_web/labels{/name}","releases_url":"https://api.github.com/repos/hexpm/hex_web/releases{/id}","created_at":"2014-01-28T22:29:21Z","updated_at":"2014-12-30T20:28:23Z","pushed_at":"2015-01-01T15:16:12Z","git_url":"git://github.com/hexpm/hex_web.git","ssh_url":"git@github.com:hexpm/hex_web.git","clone_url":"https://github.com/hexpm/hex_web.git","svn_url":"https://github.com/hexpm/hex_web","homepage":"https://hex.pm","size":2049,"stargazers_count":54,"watchers_count":54,"language":"Elixir","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":11,"mirror_url":null,"open_issues_count":18,"forks":11,"open_issues":18,"watchers":54,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/hexpm/hex_web/pulls/83"},"html":{"href":"https://github.com/hexpm/hex_web/pull/83"},"issue":{"href":"https://api.github.com/repos/hexpm/hex_web/issues/83"},"comments":{"href":"https://api.github.com/repos/hexpm/hex_web/issues/83/comments"},"review_comments":{"href":"https://api.github.com/repos/hexpm/hex_web/pulls/83/comments"},"review_comment":{"href":"https://api.github.com/repos/hexpm/hex_web/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/hexpm/hex_web/pulls/83/commits"},"statuses":{"href":"https://api.github.com/repos/hexpm/hex_web/statuses/207e708990daa9b9a69af5dc7a785b5ec791fd93"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"ericmj","id":316890,"avatar_url":"https://avatars.githubusercontent.com/u/316890?v=3","gravatar_id":"","url":"https://api.github.com/users/ericmj","html_url":"https://github.com/ericmj","followers_url":"https://api.github.com/users/ericmj/followers","following_url":"https://api.github.com/users/ericmj/following{/other_user}","gists_url":"https://api.github.com/users/ericmj/gists{/gist_id}","starred_url":"https://api.github.com/users/ericmj/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ericmj/subscriptions","organizations_url":"https://api.github.com/users/ericmj/orgs","repos_url":"https://api.github.com/users/ericmj/repos","events_url":"https://api.github.com/users/ericmj/events{/privacy}","received_events_url":"https://api.github.com/users/ericmj/received_events","type":"User","site_admin":false},"comments":1,"review_comments":0,"commits":1,"additions":13,"deletions":3,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:16:13Z","org":{"id":6621265,"login":"hexpm","gravatar_id":"","url":"https://api.github.com/orgs/hexpm","avatar_url":"https://avatars.githubusercontent.com/u/6621265?"}} +,{"id":"2489658571","type":"PushEvent","actor":{"id":1679159,"login":"kerbyfc","gravatar_id":"","url":"https://api.github.com/users/kerbyfc","avatar_url":"https://avatars.githubusercontent.com/u/1679159?"},"repo":{"id":28686420,"name":"kerbyfc/sublime-jsdocs","url":"https://api.github.com/repos/kerbyfc/sublime-jsdocs"},"payload":{"push_id":536867370,"size":1,"distinct_size":1,"ref":"refs/heads/extendable_parser_settings","head":"0bf0a388b28f2ce3e54e0d401b6d8ecba7b2af13","before":"b7d010c3c8fc27be62718863691b66b361930716","commits":[{"sha":"0bf0a388b28f2ce3e54e0d401b6d8ecba7b2af13","author":{"email":"5d6f2857cdf86981eda7ef5252ea35b2a751a187@infowatch.com","name":"Lukin"},"message":"use prefix for existing comment","distinct":true,"url":"https://api.github.com/repos/kerbyfc/sublime-jsdocs/commits/0bf0a388b28f2ce3e54e0d401b6d8ecba7b2af13"}]},"public":true,"created_at":"2015-01-01T15:16:13Z"} +,{"id":"2489658573","type":"CreateEvent","actor":{"id":10364848,"login":"almaredan","gravatar_id":"","url":"https://api.github.com/users/almaredan","avatar_url":"https://avatars.githubusercontent.com/u/10364848?"},"repo":{"id":28688902,"name":"almaredan/first_app","url":"https://api.github.com/repos/almaredan/first_app"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"First app for the Ruby on Rails Tutorial","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:13Z"} +,{"id":"2489658574","type":"PushEvent","actor":{"id":316890,"login":"ericmj","gravatar_id":"","url":"https://api.github.com/users/ericmj","avatar_url":"https://avatars.githubusercontent.com/u/316890?"},"repo":{"id":16328245,"name":"hexpm/hex_web","url":"https://api.github.com/repos/hexpm/hex_web"},"payload":{"push_id":536867371,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"c2172b5f3803cb41053abb838f62381f7e9c6e3a","before":"31001a9ee313245ca362d36bdcaccbc7e4e51647","commits":[{"sha":"207e708990daa9b9a69af5dc7a785b5ec791fd93","author":{"email":"2e52ced47620edde4c1634140adfc96153b93ce4@icloud.com","name":"James Spencer"},"message":"Improve /confirm status messages","distinct":true,"url":"https://api.github.com/repos/hexpm/hex_web/commits/207e708990daa9b9a69af5dc7a785b5ec791fd93"},{"sha":"c2172b5f3803cb41053abb838f62381f7e9c6e3a","author":{"email":"0cfa751ff4faac94a3101422276198dce94f740b@gmail.com","name":"Eric Meadows-Jönsson"},"message":"Merge pull request #83 from JamesS237/improve_confirm_message\n\nImprove status messages on confirmation","distinct":true,"url":"https://api.github.com/repos/hexpm/hex_web/commits/c2172b5f3803cb41053abb838f62381f7e9c6e3a"}]},"public":true,"created_at":"2015-01-01T15:16:13Z","org":{"id":6621265,"login":"hexpm","gravatar_id":"","url":"https://api.github.com/orgs/hexpm","avatar_url":"https://avatars.githubusercontent.com/u/6621265?"}} +,{"id":"2489658577","type":"PushEvent","actor":{"id":10322234,"login":"gerigjylbegu","gravatar_id":"","url":"https://api.github.com/users/gerigjylbegu","avatar_url":"https://avatars.githubusercontent.com/u/10322234?"},"repo":{"id":28596491,"name":"gerigjylbegu/Blog","url":"https://api.github.com/repos/gerigjylbegu/Blog"},"payload":{"push_id":536867372,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"098e21436ecf132ca2f1df4bea813e586e3da180","before":"fad973fe1ade768d1704efed7707dd5e0bf0be1a","commits":[{"sha":"098e21436ecf132ca2f1df4bea813e586e3da180","author":{"email":"5d364efc371fe3cf76badc72842740c09acb86f6@gmail.com","name":"gerigjylbegu"},"message":"Update 2014-12-31-linuxmint.md","distinct":true,"url":"https://api.github.com/repos/gerigjylbegu/Blog/commits/098e21436ecf132ca2f1df4bea813e586e3da180"}]},"public":true,"created_at":"2015-01-01T15:16:13Z"} +,{"id":"2489658579","type":"IssueCommentEvent","actor":{"id":161552,"login":"pbnjay","gravatar_id":"","url":"https://api.github.com/users/pbnjay","avatar_url":"https://avatars.githubusercontent.com/u/161552?"},"repo":{"id":2945088,"name":"revel/revel","url":"https://api.github.com/repos/revel/revel"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/revel/revel/issues/811","labels_url":"https://api.github.com/repos/revel/revel/issues/811/labels{/name}","comments_url":"https://api.github.com/repos/revel/revel/issues/811/comments","events_url":"https://api.github.com/repos/revel/revel/issues/811/events","html_url":"https://github.com/revel/revel/issues/811","id":50049098,"number":811,"title":"template url func gives \"index out of range\" when param is undefined","user":{"login":"pbnjay","id":161552,"avatar_url":"https://avatars.githubusercontent.com/u/161552?v=3","gravatar_id":"","url":"https://api.github.com/users/pbnjay","html_url":"https://github.com/pbnjay","followers_url":"https://api.github.com/users/pbnjay/followers","following_url":"https://api.github.com/users/pbnjay/following{/other_user}","gists_url":"https://api.github.com/users/pbnjay/gists{/gist_id}","starred_url":"https://api.github.com/users/pbnjay/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pbnjay/subscriptions","organizations_url":"https://api.github.com/users/pbnjay/orgs","repos_url":"https://api.github.com/users/pbnjay/repos","events_url":"https://api.github.com/users/pbnjay/events{/privacy}","received_events_url":"https://api.github.com/users/pbnjay/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/revel/revel/labels/controller","name":"controller","color":"eb6420"},{"url":"https://api.github.com/repos/revel/revel/labels/enhancement","name":"enhancement","color":"207de5"},{"url":"https://api.github.com/repos/revel/revel/labels/template","name":"template","color":"fbca04"}],"state":"open","locked":false,"assignee":null,"milestone":{"url":"https://api.github.com/repos/revel/revel/milestones/6","labels_url":"https://api.github.com/repos/revel/revel/milestones/6/labels","id":766323,"number":6,"title":"v0.12","description":null,"creator":{"login":"brendensoares","id":905501,"avatar_url":"https://avatars.githubusercontent.com/u/905501?v=3","gravatar_id":"","url":"https://api.github.com/users/brendensoares","html_url":"https://github.com/brendensoares","followers_url":"https://api.github.com/users/brendensoares/followers","following_url":"https://api.github.com/users/brendensoares/following{/other_user}","gists_url":"https://api.github.com/users/brendensoares/gists{/gist_id}","starred_url":"https://api.github.com/users/brendensoares/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/brendensoares/subscriptions","organizations_url":"https://api.github.com/users/brendensoares/orgs","repos_url":"https://api.github.com/users/brendensoares/repos","events_url":"https://api.github.com/users/brendensoares/events{/privacy}","received_events_url":"https://api.github.com/users/brendensoares/received_events","type":"User","site_admin":false},"open_issues":48,"closed_issues":49,"state":"open","created_at":"2014-08-26T16:54:06Z","updated_at":"2015-01-01T09:06:26Z","due_on":null,"closed_at":null},"comments":5,"created_at":"2014-11-25T16:21:11Z","updated_at":"2015-01-01T15:16:13Z","closed_at":null,"body":"Just spent over 30 mins debugging a simple omission cause the error message sent me down the wrong path. But I think it should be pretty easy to fix.\r\n\r\nIn short: in the template I have `{{url \"MC.Thing\" $id}}` but my func was: `func (c MC) Thing() revel.Result`\r\n\r\nBut the template panicked with: `results.go:128: runtime error: index out of range`\r\n\r\nI'd expect an error more like \"invalid arguments for url MC.Thing\""},"comment":{"url":"https://api.github.com/repos/revel/revel/issues/comments/68488830","html_url":"https://github.com/revel/revel/issues/811#issuecomment-68488830","issue_url":"https://api.github.com/repos/revel/revel/issues/811","id":68488830,"user":{"login":"pbnjay","id":161552,"avatar_url":"https://avatars.githubusercontent.com/u/161552?v=3","gravatar_id":"","url":"https://api.github.com/users/pbnjay","html_url":"https://github.com/pbnjay","followers_url":"https://api.github.com/users/pbnjay/followers","following_url":"https://api.github.com/users/pbnjay/following{/other_user}","gists_url":"https://api.github.com/users/pbnjay/gists{/gist_id}","starred_url":"https://api.github.com/users/pbnjay/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pbnjay/subscriptions","organizations_url":"https://api.github.com/users/pbnjay/orgs","repos_url":"https://api.github.com/users/pbnjay/repos","events_url":"https://api.github.com/users/pbnjay/events{/privacy}","received_events_url":"https://api.github.com/users/pbnjay/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:16:13Z","updated_at":"2015-01-01T15:16:13Z","body":"Yeah, sorry on my phone right now but I believe it was my view func didn't\r\nhave a named parameter but I thought it did. The \"url\" helper didn't do a\r\nbounds check.\r\n\r\nSomething like:\r\nfunc (a *App) Thing() revel.Result {\r\n...\r\n}\r\n\r\nThen:\r\n{{url \"App.Thing\" 1234}}\r\nOn Jan 1, 2015 3:43 AM, \"anonx\" wrote:\r\n\r\n> @brendensoares , the issue is {{url\r\n> \"Controller.Action\" .arg1 .arg2 ...}} helper panics in case of incorrect\r\n> input rather than showing a user friendly error message.\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:16:13Z","org":{"id":6631594,"login":"revel","gravatar_id":"","url":"https://api.github.com/orgs/revel","avatar_url":"https://avatars.githubusercontent.com/u/6631594?"}} +,{"id":"2489658582","type":"PullRequestEvent","actor":{"id":2395134,"login":"philidem","gravatar_id":"","url":"https://api.github.com/users/philidem","avatar_url":"https://avatars.githubusercontent.com/u/2395134?"},"repo":{"id":15589856,"name":"raptorjs/raptor-util","url":"https://api.github.com/repos/raptorjs/raptor-util"},"payload":{"action":"closed","number":1,"pull_request":{"url":"https://api.github.com/repos/raptorjs/raptor-util/pulls/1","id":26740792,"html_url":"https://github.com/raptorjs/raptor-util/pull/1","diff_url":"https://github.com/raptorjs/raptor-util/pull/1.diff","patch_url":"https://github.com/raptorjs/raptor-util/pull/1.patch","issue_url":"https://api.github.com/repos/raptorjs/raptor-util/issues/1","number":1,"state":"closed","locked":false,"title":"Use the ternary operator in the second conditional as it is used in the ...","user":{"login":"austinkelleher","id":3771924,"avatar_url":"https://avatars.githubusercontent.com/u/3771924?v=3","gravatar_id":"","url":"https://api.github.com/users/austinkelleher","html_url":"https://github.com/austinkelleher","followers_url":"https://api.github.com/users/austinkelleher/followers","following_url":"https://api.github.com/users/austinkelleher/following{/other_user}","gists_url":"https://api.github.com/users/austinkelleher/gists{/gist_id}","starred_url":"https://api.github.com/users/austinkelleher/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/austinkelleher/subscriptions","organizations_url":"https://api.github.com/users/austinkelleher/orgs","repos_url":"https://api.github.com/users/austinkelleher/repos","events_url":"https://api.github.com/users/austinkelleher/events{/privacy}","received_events_url":"https://api.github.com/users/austinkelleher/received_events","type":"User","site_admin":false},"body":"...first.","created_at":"2015-01-01T05:44:17Z","updated_at":"2015-01-01T15:16:13Z","closed_at":"2015-01-01T15:16:13Z","merged_at":"2015-01-01T15:16:13Z","merge_commit_sha":"b76003213c8bc1cc271397764753c1e8fb5241b2","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/raptorjs/raptor-util/pulls/1/commits","review_comments_url":"https://api.github.com/repos/raptorjs/raptor-util/pulls/1/comments","review_comment_url":"https://api.github.com/repos/raptorjs/raptor-util/pulls/comments/{number}","comments_url":"https://api.github.com/repos/raptorjs/raptor-util/issues/1/comments","statuses_url":"https://api.github.com/repos/raptorjs/raptor-util/statuses/675a9906b8b44b4e668c9d9ec681d71b243dcef7","head":{"label":"austinkelleher:dev","ref":"dev","sha":"675a9906b8b44b4e668c9d9ec681d71b243dcef7","user":{"login":"austinkelleher","id":3771924,"avatar_url":"https://avatars.githubusercontent.com/u/3771924?v=3","gravatar_id":"","url":"https://api.github.com/users/austinkelleher","html_url":"https://github.com/austinkelleher","followers_url":"https://api.github.com/users/austinkelleher/followers","following_url":"https://api.github.com/users/austinkelleher/following{/other_user}","gists_url":"https://api.github.com/users/austinkelleher/gists{/gist_id}","starred_url":"https://api.github.com/users/austinkelleher/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/austinkelleher/subscriptions","organizations_url":"https://api.github.com/users/austinkelleher/orgs","repos_url":"https://api.github.com/users/austinkelleher/repos","events_url":"https://api.github.com/users/austinkelleher/events{/privacy}","received_events_url":"https://api.github.com/users/austinkelleher/received_events","type":"User","site_admin":false},"repo":{"id":28680757,"name":"raptor-util","full_name":"austinkelleher/raptor-util","owner":{"login":"austinkelleher","id":3771924,"avatar_url":"https://avatars.githubusercontent.com/u/3771924?v=3","gravatar_id":"","url":"https://api.github.com/users/austinkelleher","html_url":"https://github.com/austinkelleher","followers_url":"https://api.github.com/users/austinkelleher/followers","following_url":"https://api.github.com/users/austinkelleher/following{/other_user}","gists_url":"https://api.github.com/users/austinkelleher/gists{/gist_id}","starred_url":"https://api.github.com/users/austinkelleher/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/austinkelleher/subscriptions","organizations_url":"https://api.github.com/users/austinkelleher/orgs","repos_url":"https://api.github.com/users/austinkelleher/repos","events_url":"https://api.github.com/users/austinkelleher/events{/privacy}","received_events_url":"https://api.github.com/users/austinkelleher/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/austinkelleher/raptor-util","description":"","fork":true,"url":"https://api.github.com/repos/austinkelleher/raptor-util","forks_url":"https://api.github.com/repos/austinkelleher/raptor-util/forks","keys_url":"https://api.github.com/repos/austinkelleher/raptor-util/keys{/key_id}","collaborators_url":"https://api.github.com/repos/austinkelleher/raptor-util/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/austinkelleher/raptor-util/teams","hooks_url":"https://api.github.com/repos/austinkelleher/raptor-util/hooks","issue_events_url":"https://api.github.com/repos/austinkelleher/raptor-util/issues/events{/number}","events_url":"https://api.github.com/repos/austinkelleher/raptor-util/events","assignees_url":"https://api.github.com/repos/austinkelleher/raptor-util/assignees{/user}","branches_url":"https://api.github.com/repos/austinkelleher/raptor-util/branches{/branch}","tags_url":"https://api.github.com/repos/austinkelleher/raptor-util/tags","blobs_url":"https://api.github.com/repos/austinkelleher/raptor-util/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/austinkelleher/raptor-util/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/austinkelleher/raptor-util/git/refs{/sha}","trees_url":"https://api.github.com/repos/austinkelleher/raptor-util/git/trees{/sha}","statuses_url":"https://api.github.com/repos/austinkelleher/raptor-util/statuses/{sha}","languages_url":"https://api.github.com/repos/austinkelleher/raptor-util/languages","stargazers_url":"https://api.github.com/repos/austinkelleher/raptor-util/stargazers","contributors_url":"https://api.github.com/repos/austinkelleher/raptor-util/contributors","subscribers_url":"https://api.github.com/repos/austinkelleher/raptor-util/subscribers","subscription_url":"https://api.github.com/repos/austinkelleher/raptor-util/subscription","commits_url":"https://api.github.com/repos/austinkelleher/raptor-util/commits{/sha}","git_commits_url":"https://api.github.com/repos/austinkelleher/raptor-util/git/commits{/sha}","comments_url":"https://api.github.com/repos/austinkelleher/raptor-util/comments{/number}","issue_comment_url":"https://api.github.com/repos/austinkelleher/raptor-util/issues/comments/{number}","contents_url":"https://api.github.com/repos/austinkelleher/raptor-util/contents/{+path}","compare_url":"https://api.github.com/repos/austinkelleher/raptor-util/compare/{base}...{head}","merges_url":"https://api.github.com/repos/austinkelleher/raptor-util/merges","archive_url":"https://api.github.com/repos/austinkelleher/raptor-util/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/austinkelleher/raptor-util/downloads","issues_url":"https://api.github.com/repos/austinkelleher/raptor-util/issues{/number}","pulls_url":"https://api.github.com/repos/austinkelleher/raptor-util/pulls{/number}","milestones_url":"https://api.github.com/repos/austinkelleher/raptor-util/milestones{/number}","notifications_url":"https://api.github.com/repos/austinkelleher/raptor-util/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/austinkelleher/raptor-util/labels{/name}","releases_url":"https://api.github.com/repos/austinkelleher/raptor-util/releases{/id}","created_at":"2015-01-01T05:01:54Z","updated_at":"2015-01-01T05:01:55Z","pushed_at":"2015-01-01T05:41:57Z","git_url":"git://github.com/austinkelleher/raptor-util.git","ssh_url":"git@github.com:austinkelleher/raptor-util.git","clone_url":"https://github.com/austinkelleher/raptor-util.git","svn_url":"https://github.com/austinkelleher/raptor-util","homepage":null,"size":99,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","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":"raptorjs:master","ref":"master","sha":"645989b45bdc7d244b3e87d86c8f6c42dd0b20cc","user":{"login":"raptorjs","id":2119145,"avatar_url":"https://avatars.githubusercontent.com/u/2119145?v=3","gravatar_id":"","url":"https://api.github.com/users/raptorjs","html_url":"https://github.com/raptorjs","followers_url":"https://api.github.com/users/raptorjs/followers","following_url":"https://api.github.com/users/raptorjs/following{/other_user}","gists_url":"https://api.github.com/users/raptorjs/gists{/gist_id}","starred_url":"https://api.github.com/users/raptorjs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/raptorjs/subscriptions","organizations_url":"https://api.github.com/users/raptorjs/orgs","repos_url":"https://api.github.com/users/raptorjs/repos","events_url":"https://api.github.com/users/raptorjs/events{/privacy}","received_events_url":"https://api.github.com/users/raptorjs/received_events","type":"Organization","site_admin":false},"repo":{"id":15589856,"name":"raptor-util","full_name":"raptorjs/raptor-util","owner":{"login":"raptorjs","id":2119145,"avatar_url":"https://avatars.githubusercontent.com/u/2119145?v=3","gravatar_id":"","url":"https://api.github.com/users/raptorjs","html_url":"https://github.com/raptorjs","followers_url":"https://api.github.com/users/raptorjs/followers","following_url":"https://api.github.com/users/raptorjs/following{/other_user}","gists_url":"https://api.github.com/users/raptorjs/gists{/gist_id}","starred_url":"https://api.github.com/users/raptorjs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/raptorjs/subscriptions","organizations_url":"https://api.github.com/users/raptorjs/orgs","repos_url":"https://api.github.com/users/raptorjs/repos","events_url":"https://api.github.com/users/raptorjs/events{/privacy}","received_events_url":"https://api.github.com/users/raptorjs/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/raptorjs/raptor-util","description":"","fork":false,"url":"https://api.github.com/repos/raptorjs/raptor-util","forks_url":"https://api.github.com/repos/raptorjs/raptor-util/forks","keys_url":"https://api.github.com/repos/raptorjs/raptor-util/keys{/key_id}","collaborators_url":"https://api.github.com/repos/raptorjs/raptor-util/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/raptorjs/raptor-util/teams","hooks_url":"https://api.github.com/repos/raptorjs/raptor-util/hooks","issue_events_url":"https://api.github.com/repos/raptorjs/raptor-util/issues/events{/number}","events_url":"https://api.github.com/repos/raptorjs/raptor-util/events","assignees_url":"https://api.github.com/repos/raptorjs/raptor-util/assignees{/user}","branches_url":"https://api.github.com/repos/raptorjs/raptor-util/branches{/branch}","tags_url":"https://api.github.com/repos/raptorjs/raptor-util/tags","blobs_url":"https://api.github.com/repos/raptorjs/raptor-util/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/raptorjs/raptor-util/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/raptorjs/raptor-util/git/refs{/sha}","trees_url":"https://api.github.com/repos/raptorjs/raptor-util/git/trees{/sha}","statuses_url":"https://api.github.com/repos/raptorjs/raptor-util/statuses/{sha}","languages_url":"https://api.github.com/repos/raptorjs/raptor-util/languages","stargazers_url":"https://api.github.com/repos/raptorjs/raptor-util/stargazers","contributors_url":"https://api.github.com/repos/raptorjs/raptor-util/contributors","subscribers_url":"https://api.github.com/repos/raptorjs/raptor-util/subscribers","subscription_url":"https://api.github.com/repos/raptorjs/raptor-util/subscription","commits_url":"https://api.github.com/repos/raptorjs/raptor-util/commits{/sha}","git_commits_url":"https://api.github.com/repos/raptorjs/raptor-util/git/commits{/sha}","comments_url":"https://api.github.com/repos/raptorjs/raptor-util/comments{/number}","issue_comment_url":"https://api.github.com/repos/raptorjs/raptor-util/issues/comments/{number}","contents_url":"https://api.github.com/repos/raptorjs/raptor-util/contents/{+path}","compare_url":"https://api.github.com/repos/raptorjs/raptor-util/compare/{base}...{head}","merges_url":"https://api.github.com/repos/raptorjs/raptor-util/merges","archive_url":"https://api.github.com/repos/raptorjs/raptor-util/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/raptorjs/raptor-util/downloads","issues_url":"https://api.github.com/repos/raptorjs/raptor-util/issues{/number}","pulls_url":"https://api.github.com/repos/raptorjs/raptor-util/pulls{/number}","milestones_url":"https://api.github.com/repos/raptorjs/raptor-util/milestones{/number}","notifications_url":"https://api.github.com/repos/raptorjs/raptor-util/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/raptorjs/raptor-util/labels{/name}","releases_url":"https://api.github.com/repos/raptorjs/raptor-util/releases{/id}","created_at":"2014-01-02T17:53:15Z","updated_at":"2014-11-27T12:40:30Z","pushed_at":"2015-01-01T15:16:13Z","git_url":"git://github.com/raptorjs/raptor-util.git","ssh_url":"git@github.com:raptorjs/raptor-util.git","clone_url":"https://github.com/raptorjs/raptor-util.git","svn_url":"https://github.com/raptorjs/raptor-util","homepage":null,"size":376,"stargazers_count":1,"watchers_count":1,"language":"JavaScript","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/raptorjs/raptor-util/pulls/1"},"html":{"href":"https://github.com/raptorjs/raptor-util/pull/1"},"issue":{"href":"https://api.github.com/repos/raptorjs/raptor-util/issues/1"},"comments":{"href":"https://api.github.com/repos/raptorjs/raptor-util/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/raptorjs/raptor-util/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/raptorjs/raptor-util/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/raptorjs/raptor-util/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/raptorjs/raptor-util/statuses/675a9906b8b44b4e668c9d9ec681d71b243dcef7"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"philidem","id":2395134,"avatar_url":"https://avatars.githubusercontent.com/u/2395134?v=3","gravatar_id":"","url":"https://api.github.com/users/philidem","html_url":"https://github.com/philidem","followers_url":"https://api.github.com/users/philidem/followers","following_url":"https://api.github.com/users/philidem/following{/other_user}","gists_url":"https://api.github.com/users/philidem/gists{/gist_id}","starred_url":"https://api.github.com/users/philidem/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/philidem/subscriptions","organizations_url":"https://api.github.com/users/philidem/orgs","repos_url":"https://api.github.com/users/philidem/repos","events_url":"https://api.github.com/users/philidem/events{/privacy}","received_events_url":"https://api.github.com/users/philidem/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":1,"deletions":5,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:16:13Z","org":{"id":2119145,"login":"raptorjs","gravatar_id":"","url":"https://api.github.com/orgs/raptorjs","avatar_url":"https://avatars.githubusercontent.com/u/2119145?"}} +,{"id":"2489658584","type":"PushEvent","actor":{"id":2395134,"login":"philidem","gravatar_id":"","url":"https://api.github.com/users/philidem","avatar_url":"https://avatars.githubusercontent.com/u/2395134?"},"repo":{"id":15589856,"name":"raptorjs/raptor-util","url":"https://api.github.com/repos/raptorjs/raptor-util"},"payload":{"push_id":536867374,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"232bca49cb8776974d4127e67cdba226dea3f95c","before":"645989b45bdc7d244b3e87d86c8f6c42dd0b20cc","commits":[{"sha":"675a9906b8b44b4e668c9d9ec681d71b243dcef7","author":{"email":"7365f8346d8e57055e86db6ecfd6fcbc9c33b5d3@gmail.com","name":"Austin Kelleher"},"message":"Use the ternary operator in the second conditional as it is used in the first.","distinct":true,"url":"https://api.github.com/repos/raptorjs/raptor-util/commits/675a9906b8b44b4e668c9d9ec681d71b243dcef7"},{"sha":"232bca49cb8776974d4127e67cdba226dea3f95c","author":{"email":"f2a19a88b5ddfb3c5f3b2f092dbb87f126b23865@gmail.com","name":"Phillip Gates-Idem"},"message":"Merge pull request #1 from austinkelleher/dev\n\nUse the ternary operator in the second conditional as it is used in the ...","distinct":true,"url":"https://api.github.com/repos/raptorjs/raptor-util/commits/232bca49cb8776974d4127e67cdba226dea3f95c"}]},"public":true,"created_at":"2015-01-01T15:16:13Z","org":{"id":2119145,"login":"raptorjs","gravatar_id":"","url":"https://api.github.com/orgs/raptorjs","avatar_url":"https://avatars.githubusercontent.com/u/2119145?"}} +,{"id":"2489658588","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":536867375,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8304ce8a6ad0f07de4f3c64d1a620136f2200346","before":"d6c16b79404ba763aee6b708e28c1dc7d3d51afe","commits":[{"sha":"8304ce8a6ad0f07de4f3c64d1a620136f2200346","author":{"email":"798520c19e899fb2be364efde581283231d48b6f@126.com","name":"quhezheng"},"message":"update","distinct":true,"url":"https://api.github.com/repos/quhezheng/HomeIP/commits/8304ce8a6ad0f07de4f3c64d1a620136f2200346"}]},"public":true,"created_at":"2015-01-01T15:16:14Z"} +,{"id":"2489658590","type":"IssuesEvent","actor":{"id":5514202,"login":"DeeJee","gravatar_id":"","url":"https://api.github.com/users/DeeJee","avatar_url":"https://avatars.githubusercontent.com/u/5514202?"},"repo":{"id":28571307,"name":"DeeJee/VhpTimeLogger","url":"https://api.github.com/repos/DeeJee/VhpTimeLogger"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/8","labels_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/8/comments","events_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/8/events","html_url":"https://github.com/DeeJee/VhpTimeLogger/issues/8","id":53221660,"number":8,"title":"Waarschuwingen algemeen","user":{"login":"DeeJee","id":5514202,"avatar_url":"https://avatars.githubusercontent.com/u/5514202?v=3","gravatar_id":"","url":"https://api.github.com/users/DeeJee","html_url":"https://github.com/DeeJee","followers_url":"https://api.github.com/users/DeeJee/followers","following_url":"https://api.github.com/users/DeeJee/following{/other_user}","gists_url":"https://api.github.com/users/DeeJee/gists{/gist_id}","starred_url":"https://api.github.com/users/DeeJee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeeJee/subscriptions","organizations_url":"https://api.github.com/users/DeeJee/orgs","repos_url":"https://api.github.com/users/DeeJee/repos","events_url":"https://api.github.com/users/DeeJee/events{/privacy}","received_events_url":"https://api.github.com/users/DeeJee/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:16:14Z","updated_at":"2015-01-01T15:16:14Z","closed_at":null,"body":"Als ik veel op de taakbalk heb dan raakt het knipperende icoon soms op de achtergrond. Kun je het ook zo maken dat hij bijvoorbeeld iedere 5 minuten een tekstballon uit de tray gooit totdat het afgehandeld is?\r\n"}},"public":true,"created_at":"2015-01-01T15:16:14Z"} +,{"id":"2489658594","type":"PushEvent","actor":{"id":1681217,"login":"ColinDuquesnoy","gravatar_id":"","url":"https://api.github.com/users/ColinDuquesnoy","avatar_url":"https://avatars.githubusercontent.com/u/1681217?"},"repo":{"id":25510625,"name":"ColinDuquesnoy/MellowPlayer","url":"https://api.github.com/repos/ColinDuquesnoy/MellowPlayer"},"payload":{"push_id":536867377,"size":1,"distinct_size":1,"ref":"refs/heads/cpp","head":"e0dc0d0b6e037c554fc3cb88e65b60447758f83c","before":"d044ab8c14b6841af040abae02afa507bebd8a69","commits":[{"sha":"e0dc0d0b6e037c554fc3cb88e65b60447758f83c","author":{"email":"c26d429960eeeece55f72661d6a1c328bf899861@gmail.com","name":"ColinDuquesnoy"},"message":"Add cookies management: CookieJar","distinct":true,"url":"https://api.github.com/repos/ColinDuquesnoy/MellowPlayer/commits/e0dc0d0b6e037c554fc3cb88e65b60447758f83c"}]},"public":true,"created_at":"2015-01-01T15:16:14Z"} +,{"id":"2489658600","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":22226192,"name":"hex7c0/timeout-request","url":"https://api.github.com/repos/hex7c0/timeout-request"},"payload":{"push_id":536867380,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"ed8319966ccb20b8aa3527460bff7d21743bd227","before":"9fff6bccb5b8e27d32c5263b0259abb8887503b6","commits":[{"sha":"42fae93c8e5a955b31058ad89457213ffaf414eb","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"travis docker","distinct":true,"url":"https://api.github.com/repos/hex7c0/timeout-request/commits/42fae93c8e5a955b31058ad89457213ffaf414eb"},{"sha":"17a70615f3bc3677f1d7a5b4e83afe07faf2e665","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"update devDependencies","distinct":true,"url":"https://api.github.com/repos/hex7c0/timeout-request/commits/17a70615f3bc3677f1d7a5b4e83afe07faf2e665"},{"sha":"ed8319966ccb20b8aa3527460bff7d21743bd227","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"update Gruntfile","distinct":true,"url":"https://api.github.com/repos/hex7c0/timeout-request/commits/ed8319966ccb20b8aa3527460bff7d21743bd227"}]},"public":true,"created_at":"2015-01-01T15:16:15Z"} +,{"id":"2489658602","type":"WatchEvent","actor":{"id":101594,"login":"DyaGa","gravatar_id":"","url":"https://api.github.com/users/DyaGa","avatar_url":"https://avatars.githubusercontent.com/u/101594?"},"repo":{"id":16614837,"name":"contao-community-alliance/dc-general","url":"https://api.github.com/repos/contao-community-alliance/dc-general"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:16:15Z","org":{"id":1191812,"login":"contao-community-alliance","gravatar_id":"","url":"https://api.github.com/orgs/contao-community-alliance","avatar_url":"https://avatars.githubusercontent.com/u/1191812?"}} +,{"id":"2489658604","type":"GollumEvent","actor":{"id":1206964,"login":"dcoraboeuf","gravatar_id":"","url":"https://api.github.com/users/dcoraboeuf","avatar_url":"https://avatars.githubusercontent.com/u/1206964?"},"repo":{"id":19351480,"name":"nemerosa/ontrack","url":"https://api.github.com/repos/nemerosa/ontrack"},"payload":{"pages":[{"page_name":"DSL","title":"DSL","summary":null,"action":"edited","sha":"ed999205430e327382633d79280eb621041983b6","html_url":"https://github.com/nemerosa/ontrack/wiki/DSL"}]},"public":true,"created_at":"2015-01-01T15:16:15Z","org":{"id":5650014,"login":"nemerosa","gravatar_id":"","url":"https://api.github.com/orgs/nemerosa","avatar_url":"https://avatars.githubusercontent.com/u/5650014?"}} +,{"id":"2489658606","type":"PushEvent","actor":{"id":200609,"login":"assertchris","gravatar_id":"","url":"https://api.github.com/users/assertchris","avatar_url":"https://avatars.githubusercontent.com/u/200609?"},"repo":{"id":28626349,"name":"revolvephp/framework","url":"https://api.github.com/repos/revolvephp/framework"},"payload":{"push_id":536867382,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4b58ea6f0bc0266e7d5b9536bcf3b7df6215914e","before":"b6df240b360f259ad49a8770a801784120f275ce","commits":[{"sha":"4b58ea6f0bc0266e7d5b9536bcf3b7df6215914e","author":{"email":"68999c97ac656119545c1b14bd9654c1baf3563a@gmail.com","name":"Christopher Pitt"},"message":"Added some tests","distinct":true,"url":"https://api.github.com/repos/revolvephp/framework/commits/4b58ea6f0bc0266e7d5b9536bcf3b7df6215914e"}]},"public":true,"created_at":"2015-01-01T15:16:16Z","org":{"id":10348183,"login":"revolvephp","gravatar_id":"","url":"https://api.github.com/orgs/revolvephp","avatar_url":"https://avatars.githubusercontent.com/u/10348183?"}} +,{"id":"2489658610","type":"IssueCommentEvent","actor":{"id":3203951,"login":"jim-parry","gravatar_id":"","url":"https://api.github.com/users/jim-parry","avatar_url":"https://avatars.githubusercontent.com/u/3203951?"},"repo":{"id":27275821,"name":"bcit-ci/codeigniter3-translations","url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/issues/61","labels_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/issues/61/labels{/name}","comments_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/issues/61/comments","events_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/issues/61/events","html_url":"https://github.com/bcit-ci/codeigniter3-translations/pull/61","id":53221605,"number":61,"title":"[Fr] Fixes","user":{"login":"FrozenWay","id":9070606,"avatar_url":"https://avatars.githubusercontent.com/u/9070606?v=3","gravatar_id":"","url":"https://api.github.com/users/FrozenWay","html_url":"https://github.com/FrozenWay","followers_url":"https://api.github.com/users/FrozenWay/followers","following_url":"https://api.github.com/users/FrozenWay/following{/other_user}","gists_url":"https://api.github.com/users/FrozenWay/gists{/gist_id}","starred_url":"https://api.github.com/users/FrozenWay/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/FrozenWay/subscriptions","organizations_url":"https://api.github.com/users/FrozenWay/orgs","repos_url":"https://api.github.com/users/FrozenWay/repos","events_url":"https://api.github.com/users/FrozenWay/events{/privacy}","received_events_url":"https://api.github.com/users/FrozenWay/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:13:30Z","updated_at":"2015-01-01T15:16:16Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/pulls/61","html_url":"https://github.com/bcit-ci/codeigniter3-translations/pull/61","diff_url":"https://github.com/bcit-ci/codeigniter3-translations/pull/61.diff","patch_url":"https://github.com/bcit-ci/codeigniter3-translations/pull/61.patch"},"body":"Hello,\r\n\r\nI'm a French-Italian student in an engineering school, web developer for 5 years and I use CI on my personal and professional projects.\r\nI wanted to check the progression of the French translation and I noticed some tiny mistakes, so I figured I had to help you with that.\r\n\r\nHere are the explanations for the fixes. They don't include typos (Accents, wrong letters). Some are debatable, and new ones can be found this way.\r\n\r\ndate_: \r\n- 42. The string is the same as the next one, so I linked both ;\r\n- Aligned \"=\" chars ;\r\n- Used the same quote format for each string (double) ;\r\n- Aligned UTC hours for consistence purposes.\r\n\r\ndb_: \r\n- \"fournir\", \"passer en paramètre\", \"indiquer\" are sometimes better, contextually speaking, than \"soumettre\", which is usually employed for form submission ;\r\n- \"supporter\" is better than \"soumettre\", when the meaning is related to feature support ;\r\n- We don't say \"colonne\" that much in French, when talking about a table field. \"Champ\" is more accurate.\r\n\r\nemail_:\r\n- In French typography, you have to put spaces before and after complex punctuation (colon, semicolon, exclamation mark, interrogation mark, etc.).\r\n\r\nform_validation_:\r\n- \"Integer\" is not user-friendly. \"Nombre entier\" is more likely to be understood.\r\n\r\nmigration_:\r\n- Zero is considered singular. Plural forms are not justified here.\r\n\r\nnumber_:\r\n- French translation for [KMGT]B is [KMGT]o.\r\n\r\nupload_:\r\n- Talking about possibility is better than capability for a non-human/physical object.\r\n\r\n\r\nRemember that these fixes are totally debatable, and my pull request is just a suggestion.\r\n\r\nThank you.\r\n- Vincenzo S."},"comment":{"url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/issues/comments/68488832","html_url":"https://github.com/bcit-ci/codeigniter3-translations/pull/61#issuecomment-68488832","issue_url":"https://api.github.com/repos/bcit-ci/codeigniter3-translations/issues/61","id":68488832,"user":{"login":"jim-parry","id":3203951,"avatar_url":"https://avatars.githubusercontent.com/u/3203951?v=3","gravatar_id":"","url":"https://api.github.com/users/jim-parry","html_url":"https://github.com/jim-parry","followers_url":"https://api.github.com/users/jim-parry/followers","following_url":"https://api.github.com/users/jim-parry/following{/other_user}","gists_url":"https://api.github.com/users/jim-parry/gists{/gist_id}","starred_url":"https://api.github.com/users/jim-parry/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jim-parry/subscriptions","organizations_url":"https://api.github.com/users/jim-parry/orgs","repos_url":"https://api.github.com/users/jim-parry/repos","events_url":"https://api.github.com/users/jim-parry/events{/privacy}","received_events_url":"https://api.github.com/users/jim-parry/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:16:16Z","updated_at":"2015-01-01T15:16:16Z","body":"@includebeer Do you agree?"}},"public":true,"created_at":"2015-01-01T15:16:16Z","org":{"id":8863432,"login":"bcit-ci","gravatar_id":"","url":"https://api.github.com/orgs/bcit-ci","avatar_url":"https://avatars.githubusercontent.com/u/8863432?"}} +,{"id":"2489658617","type":"PushEvent","actor":{"id":5863022,"login":"KamiIntelligence","gravatar_id":"","url":"https://api.github.com/users/KamiIntelligence","avatar_url":"https://avatars.githubusercontent.com/u/5863022?"},"repo":{"id":27598962,"name":"KamiIntelligence/Loop","url":"https://api.github.com/repos/KamiIntelligence/Loop"},"payload":{"push_id":536867388,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"dc9bc33f64d3fd8e97b46d1460e7d04d9f5a6d1d","before":"8aec7c793f818cce1f29aafc394fa6a822d08ac1","commits":[{"sha":"dc9bc33f64d3fd8e97b46d1460e7d04d9f5a6d1d","author":{"email":"6b0a44f939dcb3dbbc0188b85ac76104bdeabd38@gmail.com","name":"Kami Mikazuki"},"message":"Fixed case issue.\n\n[!] REGS to regs. (Case sensitive, who knew.)","distinct":true,"url":"https://api.github.com/repos/KamiIntelligence/Loop/commits/dc9bc33f64d3fd8e97b46d1460e7d04d9f5a6d1d"}]},"public":true,"created_at":"2015-01-01T15:16:17Z"} +,{"id":"2489658618","type":"DeleteEvent","actor":{"id":63622,"login":"Byron","gravatar_id":"","url":"https://api.github.com/users/Byron","avatar_url":"https://avatars.githubusercontent.com/u/63622?"},"repo":{"id":1126093,"name":"gitpython-developers/gitdb","url":"https://api.github.com/repos/gitpython-developers/gitdb"},"payload":{"ref":"0.6.1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:17Z","org":{"id":503709,"login":"gitpython-developers","gravatar_id":"","url":"https://api.github.com/orgs/gitpython-developers","avatar_url":"https://avatars.githubusercontent.com/u/503709?"}} +,{"id":"2489658624","type":"PushEvent","actor":{"id":9889333,"login":"helalyne","gravatar_id":"","url":"https://api.github.com/users/helalyne","avatar_url":"https://avatars.githubusercontent.com/u/9889333?"},"repo":{"id":28417617,"name":"helalyne/secret-wookie","url":"https://api.github.com/repos/helalyne/secret-wookie"},"payload":{"push_id":536867390,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0d333d65607dcd360bbc3bc6e8cf9934f07df92d","before":"3a5c8094ca6e35d4154ae742141a2a03c49ad8cd","commits":[{"sha":"0d333d65607dcd360bbc3bc6e8cf9934f07df92d","author":{"email":"903e3d37c1727b6be48c362779ac5dc97a065b34@gmail.com","name":"Anastasia Kucherova"},"message":"Design experiments","distinct":true,"url":"https://api.github.com/repos/helalyne/secret-wookie/commits/0d333d65607dcd360bbc3bc6e8cf9934f07df92d"}]},"public":true,"created_at":"2015-01-01T15:16:17Z"} +,{"id":"2489658629","type":"WatchEvent","actor":{"id":982461,"login":"gockxml","gravatar_id":"","url":"https://api.github.com/users/gockxml","avatar_url":"https://avatars.githubusercontent.com/u/982461?"},"repo":{"id":4366849,"name":"serkanyersen/ifvisible.js","url":"https://api.github.com/repos/serkanyersen/ifvisible.js"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:16:18Z"} +,{"id":"2489658637","type":"IssuesEvent","actor":{"id":9308955,"login":"popoirc","gravatar_id":"","url":"https://api.github.com/users/popoirc","avatar_url":"https://avatars.githubusercontent.com/u/9308955?"},"repo":{"id":24798482,"name":"tokyoshells/issues","url":"https://api.github.com/repos/tokyoshells/issues"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/tokyoshells/issues/issues/26","labels_url":"https://api.github.com/repos/tokyoshells/issues/issues/26/labels{/name}","comments_url":"https://api.github.com/repos/tokyoshells/issues/issues/26/comments","events_url":"https://api.github.com/repos/tokyoshells/issues/issues/26/events","html_url":"https://github.com/tokyoshells/issues/issues/26","id":53221663,"number":26,"title":"request account","user":{"login":"popoirc","id":9308955,"avatar_url":"https://avatars.githubusercontent.com/u/9308955?v=3","gravatar_id":"","url":"https://api.github.com/users/popoirc","html_url":"https://github.com/popoirc","followers_url":"https://api.github.com/users/popoirc/followers","following_url":"https://api.github.com/users/popoirc/following{/other_user}","gists_url":"https://api.github.com/users/popoirc/gists{/gist_id}","starred_url":"https://api.github.com/users/popoirc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/popoirc/subscriptions","organizations_url":"https://api.github.com/users/popoirc/orgs","repos_url":"https://api.github.com/users/popoirc/repos","events_url":"https://api.github.com/users/popoirc/events{/privacy}","received_events_url":"https://api.github.com/users/popoirc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:16:18Z","updated_at":"2015-01-01T15:16:18Z","closed_at":null,"body":"Preferred username: popoEmail address:popoirc@gmail.comIRC Nickname: beli will be using tokyoshells for eggdrop & znc"}},"public":true,"created_at":"2015-01-01T15:16:18Z","org":{"id":9020654,"login":"tokyoshells","gravatar_id":"","url":"https://api.github.com/orgs/tokyoshells","avatar_url":"https://avatars.githubusercontent.com/u/9020654?"}} +,{"id":"2489658645","type":"IssuesEvent","actor":{"id":54051,"login":"cowboy","gravatar_id":"","url":"https://api.github.com/users/cowboy","avatar_url":"https://avatars.githubusercontent.com/u/54051?"},"repo":{"id":28588971,"name":"Lasse-B/Sx2vJoy","url":"https://api.github.com/repos/Lasse-B/Sx2vJoy"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/Lasse-B/Sx2vJoy/issues/1","labels_url":"https://api.github.com/repos/Lasse-B/Sx2vJoy/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/Lasse-B/Sx2vJoy/issues/1/comments","events_url":"https://api.github.com/repos/Lasse-B/Sx2vJoy/issues/1/events","html_url":"https://github.com/Lasse-B/Sx2vJoy/issues/1","id":53221665,"number":1,"title":"SetAxis Error dialog?","user":{"login":"cowboy","id":54051,"avatar_url":"https://avatars.githubusercontent.com/u/54051?v=3","gravatar_id":"","url":"https://api.github.com/users/cowboy","html_url":"https://github.com/cowboy","followers_url":"https://api.github.com/users/cowboy/followers","following_url":"https://api.github.com/users/cowboy/following{/other_user}","gists_url":"https://api.github.com/users/cowboy/gists{/gist_id}","starred_url":"https://api.github.com/users/cowboy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cowboy/subscriptions","organizations_url":"https://api.github.com/users/cowboy/orgs","repos_url":"https://api.github.com/users/cowboy/repos","events_url":"https://api.github.com/users/cowboy/events{/privacy}","received_events_url":"https://api.github.com/users/cowboy/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:16:19Z","updated_at":"2015-01-01T15:16:19Z","closed_at":null,"body":"Lasse, every once in a while, I get this alert dialog, and I have no idea why. When I click OK, the dialog is just replaced by another one. The only way to make it go away (and for Sx2vJoy to work again) is to re-launch the app. But after a while, the dialog pops up again.\r\n\r\n![](http://i.gyazo.com/929f5357112f56cd36b351af71db251d.png)\r\n\r\nIt seems to be triggered when I touch the SpaceMouse wheel, but only very occasionally."}},"public":true,"created_at":"2015-01-01T15:16:19Z"} +,{"id":"2489658648","type":"IssuesEvent","actor":{"id":2611161,"login":"iu2fish","gravatar_id":"","url":"https://api.github.com/users/iu2fish","avatar_url":"https://avatars.githubusercontent.com/u/2611161?"},"repo":{"id":22577486,"name":"iu2fish/iu2fish.github.com","url":"https://api.github.com/repos/iu2fish/iu2fish.github.com"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/iu2fish/iu2fish.github.com/issues/29","labels_url":"https://api.github.com/repos/iu2fish/iu2fish.github.com/issues/29/labels{/name}","comments_url":"https://api.github.com/repos/iu2fish/iu2fish.github.com/issues/29/comments","events_url":"https://api.github.com/repos/iu2fish/iu2fish.github.com/issues/29/events","html_url":"https://github.com/iu2fish/iu2fish.github.com/issues/29","id":53221666,"number":29,"title":"写给自己的2015","user":{"login":"iu2fish","id":2611161,"avatar_url":"https://avatars.githubusercontent.com/u/2611161?v=3","gravatar_id":"","url":"https://api.github.com/users/iu2fish","html_url":"https://github.com/iu2fish","followers_url":"https://api.github.com/users/iu2fish/followers","following_url":"https://api.github.com/users/iu2fish/following{/other_user}","gists_url":"https://api.github.com/users/iu2fish/gists{/gist_id}","starred_url":"https://api.github.com/users/iu2fish/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iu2fish/subscriptions","organizations_url":"https://api.github.com/users/iu2fish/orgs","repos_url":"https://api.github.com/users/iu2fish/repos","events_url":"https://api.github.com/users/iu2fish/events{/privacy}","received_events_url":"https://api.github.com/users/iu2fish/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:16:21Z","updated_at":"2015-01-01T15:16:21Z","closed_at":null,"body":"做一个有梦想的人~"}},"public":true,"created_at":"2015-01-01T15:16:21Z"} +,{"id":"2489658657","type":"CreateEvent","actor":{"id":63622,"login":"Byron","gravatar_id":"","url":"https://api.github.com/users/Byron","avatar_url":"https://avatars.githubusercontent.com/u/63622?"},"repo":{"id":1126093,"name":"gitpython-developers/gitdb","url":"https://api.github.com/repos/gitpython-developers/gitdb"},"payload":{"ref":"0.6.1","ref_type":"tag","master_branch":"master","description":"IO of git-style object databases - Phased out and merged into GitPython","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:23Z","org":{"id":503709,"login":"gitpython-developers","gravatar_id":"","url":"https://api.github.com/orgs/gitpython-developers","avatar_url":"https://avatars.githubusercontent.com/u/503709?"}} +,{"id":"2489658663","type":"PushEvent","actor":{"id":873275,"login":"lwis","gravatar_id":"","url":"https://api.github.com/users/lwis","avatar_url":"https://avatars.githubusercontent.com/u/873275?"},"repo":{"id":28595277,"name":"lwis/miband-notifier","url":"https://api.github.com/repos/lwis/miband-notifier"},"payload":{"push_id":536867401,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"167bded522fa4eb137212ef236118723e0403220","before":"ec585b733f6393e832cccf992ca85f6e95ed4943","commits":[{"sha":"c212a982642e9f24c13fb51fea86b7b4a84e2bf4","author":{"email":"4f070618d9802b6ba70be701c4c23bf3b12cbcc8@gmail.com","name":"Lewis Juggins"},"message":"Fixed some small bugs.","distinct":true,"url":"https://api.github.com/repos/lwis/miband-notifier/commits/c212a982642e9f24c13fb51fea86b7b4a84e2bf4"},{"sha":"167bded522fa4eb137212ef236118723e0403220","author":{"email":"4f070618d9802b6ba70be701c4c23bf3b12cbcc8@gmail.com","name":"Lewis Juggins"},"message":"Separate service in preparation for Tasker support.","distinct":true,"url":"https://api.github.com/repos/lwis/miband-notifier/commits/167bded522fa4eb137212ef236118723e0403220"}]},"public":true,"created_at":"2015-01-01T15:16:24Z"} +,{"id":"2489658664","type":"IssueCommentEvent","actor":{"id":7928052,"login":"neoatomic","gravatar_id":"","url":"https://api.github.com/users/neoatomic","avatar_url":"https://avatars.githubusercontent.com/u/7928052?"},"repo":{"id":28006285,"name":"SiCKRAGETV/sickrage-issues","url":"https://api.github.com/repos/SiCKRAGETV/sickrage-issues"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/SiCKRAGETV/sickrage-issues/issues/315","labels_url":"https://api.github.com/repos/SiCKRAGETV/sickrage-issues/issues/315/labels{/name}","comments_url":"https://api.github.com/repos/SiCKRAGETV/sickrage-issues/issues/315/comments","events_url":"https://api.github.com/repos/SiCKRAGETV/sickrage-issues/issues/315/events","html_url":"https://github.com/SiCKRAGETV/sickrage-issues/issues/315","id":53220967,"number":315,"title":"Testing needed: manage torrents auto sent password","user":{"login":"fernandog","id":2620870,"avatar_url":"https://avatars.githubusercontent.com/u/2620870?v=3","gravatar_id":"","url":"https://api.github.com/users/fernandog","html_url":"https://github.com/fernandog","followers_url":"https://api.github.com/users/fernandog/followers","following_url":"https://api.github.com/users/fernandog/following{/other_user}","gists_url":"https://api.github.com/users/fernandog/gists{/gist_id}","starred_url":"https://api.github.com/users/fernandog/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fernandog/subscriptions","organizations_url":"https://api.github.com/users/fernandog/orgs","repos_url":"https://api.github.com/users/fernandog/repos","events_url":"https://api.github.com/users/fernandog/events{/privacy}","received_events_url":"https://api.github.com/users/fernandog/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T14:41:12Z","updated_at":"2015-01-01T15:16:24Z","closed_at":null,"body":"@markheloking @neoatomic @Hellowlol @maxcore, I changed the code so when opening \"Manage Torrents\", you don't have to type user/password. It auto add in the URL. Mine is working with Transmission\r\n\r\ncan you test this please. Don't know if will work with utorrent and others.\r\nedit webserve.py and in \"**def manageTorrents(self)**\" to be like this:\r\n\r\n```\r\n def manageTorrents(self):\r\n\r\n t = PageTemplate(rh=self, file=\"manage_torrents.tmpl\")\r\n t.info_download_station = ''\r\n t.submenu = self.ManageMenu()\r\n\r\n if re.search('localhost', sickbeard.TORRENT_HOST):\r\n\r\n if sickbeard.LOCALHOST_IP == '':\r\n t.webui_url = re.sub('localhost', helpers.get_lan_ip(), sickbeard.TORRENT_HOST)\r\n else:\r\n t.webui_url = re.sub('localhost', sickbeard.LOCALHOST_IP, sickbeard.TORRENT_HOST)\r\n else:\r\n t.webui_url = sickbeard.TORRENT_HOST\r\n\r\n if sickbeard.TORRENT_METHOD == 'utorrent':\r\n t.webui_url = '/'.join(s.strip('/') for s in (t.webui_url, 'gui/'))\r\n if sickbeard.TORRENT_METHOD == 'download_station':\r\n if helpers.check_url(t.webui_url + 'download/'):\r\n t.webui_url = t.webui_url + 'download/'\r\n else:\r\n t.info_download_station = '

To have a better experience please set the Download Station alias as download, you can check this setting in the Synology DSM Control Panel > Application Portal. Make sure you allow DSM to be embedded with iFrames too in Control Panel > DSM Settings > Security.


There is more information about this available here.


'\r\n\r\n if not sickbeard.TORRENT_PASSWORD == \"\" and not sickbeard.TORRENT_USERNAME == \"\":\r\n t.webui_url = re.sub('://', '://' + str(sickbeard.TORRENT_USERNAME) + ':' + str(sickbeard.TORRENT_PASSWORD) + '@' ,t.webui_url)\r\n\r\n return t.respond()\r\n```\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/SiCKRAGETV/sickrage-issues/issues/comments/68488835","html_url":"https://github.com/SiCKRAGETV/sickrage-issues/issues/315#issuecomment-68488835","issue_url":"https://api.github.com/repos/SiCKRAGETV/sickrage-issues/issues/315","id":68488835,"user":{"login":"neoatomic","id":7928052,"avatar_url":"https://avatars.githubusercontent.com/u/7928052?v=3","gravatar_id":"","url":"https://api.github.com/users/neoatomic","html_url":"https://github.com/neoatomic","followers_url":"https://api.github.com/users/neoatomic/followers","following_url":"https://api.github.com/users/neoatomic/following{/other_user}","gists_url":"https://api.github.com/users/neoatomic/gists{/gist_id}","starred_url":"https://api.github.com/users/neoatomic/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/neoatomic/subscriptions","organizations_url":"https://api.github.com/users/neoatomic/orgs","repos_url":"https://api.github.com/users/neoatomic/repos","events_url":"https://api.github.com/users/neoatomic/events{/privacy}","received_events_url":"https://api.github.com/users/neoatomic/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:16:24Z","updated_at":"2015-01-01T15:16:24Z","body":"I'm dont use torrents in SickRage...\r\n"}},"public":true,"created_at":"2015-01-01T15:16:24Z","org":{"id":9251163,"login":"SiCKRAGETV","gravatar_id":"","url":"https://api.github.com/orgs/SiCKRAGETV","avatar_url":"https://avatars.githubusercontent.com/u/9251163?"}} +,{"id":"2489658665","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":17833899,"name":"rwtema/extrautilities","url":"https://api.github.com/repos/rwtema/extrautilities"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/rwtema/extrautilities/issues/456","labels_url":"https://api.github.com/repos/rwtema/extrautilities/issues/456/labels{/name}","comments_url":"https://api.github.com/repos/rwtema/extrautilities/issues/456/comments","events_url":"https://api.github.com/repos/rwtema/extrautilities/issues/456/events","html_url":"https://github.com/rwtema/extrautilities/issues/456","id":53012748,"number":456,"title":"Quarry Crash - Extra Utilities 1.2.1","user":{"login":"Tergiver","id":10333927,"avatar_url":"https://avatars.githubusercontent.com/u/10333927?v=3","gravatar_id":"","url":"https://api.github.com/users/Tergiver","html_url":"https://github.com/Tergiver","followers_url":"https://api.github.com/users/Tergiver/followers","following_url":"https://api.github.com/users/Tergiver/following{/other_user}","gists_url":"https://api.github.com/users/Tergiver/gists{/gist_id}","starred_url":"https://api.github.com/users/Tergiver/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Tergiver/subscriptions","organizations_url":"https://api.github.com/users/Tergiver/orgs","repos_url":"https://api.github.com/users/Tergiver/repos","events_url":"https://api.github.com/users/Tergiver/events{/privacy}","received_events_url":"https://api.github.com/users/Tergiver/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2014-12-28T23:38:57Z","updated_at":"2015-01-01T15:16:24Z","closed_at":null,"body":"Below is the crash dump if you want to skip the verbose report.\r\n\r\nI am playing Material Energy^4 (v0.7.0). Note that it comes with Extra Utilities 1.2.0, but I tried swapping that out with 1.2.1 and it still crashes upon loading my world. I setup a quarry inside the spatial IO chamber.\r\n\r\nI built a quarry with these connections: Silk upgrade, Hole upgrade, Speed 3 upgrade, Tesseract (#1) - receiving energy, sending items/fluids. Tesseract (#2) - sending energy, receiving items/fluids. Approximately 5 chucks apart. AE2 ME Interface next to Tesseract (#2), attached to ME drive with one 4k empty storage device, and power adapter thingy, plus 1 crafting terminal. 10k RF/t Big Reactor providing power to Tesseract & adapter thingy via single Ender IO 20k power cable. No other Tesseracts on that channel (2), but there are three other Tesseracts, all on channel (1) - different power supply (20 64x solar generators).\r\n\r\nFirst I created a new world and used creative cheats to build the above quarry. It was identical in configuration. It worked without any problems.\r\n\r\nNext I built the quarry into my 'real' world. Although the physical location is identical, the world below was different (A different spatial IO disk was loaded into the chamber--this time Miner's Delight). Everything was connected, tesseract #1 configured as above, etc. but it wasn't working. I had left out one thing: Configuring Tesseract #2 send/receive. It was set to send ALL, I quickly clicked it into receive (only) items and fluids (the correct configuration), and that was the moment it crashed.\r\n\r\nIt now crashes the moment I attempt load the world.\r\n\r\nIf you want the 30M zipped save game file, let me know.\r\n\r\n\r\n\r\n```\r\n---- Minecraft Crash Report ----\r\n// You're mean.\r\n\r\nTime: 12/28/14 3:06 PM\r\nDescription: Ticking block entity\r\n\r\njava.lang.NullPointerException: Ticking block entity\r\n\tat com.rwtema.extrautils.tileentity.enderquarry.BlockBreakingRegistry.blackList(BlockBreakingRegistry.java:30)\r\n\tat com.rwtema.extrautils.tileentity.enderquarry.TileEntityEnderQuarry.mineBlock(TileEntityEnderQuarry.java:495)\r\n\tat com.rwtema.extrautils.tileentity.enderquarry.TileEntityEnderQuarry.func_145845_h(TileEntityEnderQuarry.java:378)\r\n\tat net.minecraft.world.World.func_72939_s(World.java:1939)\r\n\tat net.minecraft.world.WorldServer.func_72939_s(WorldServer.java:489)\r\n\tat net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:636)\r\n\tat net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:547)\r\n\tat net.minecraft.server.integrated.IntegratedServer.func_71217_p(IntegratedServer.java:111)\r\n\tat net.minecraft.server.MinecraftServer.run(MinecraftServer.java:427)\r\n\tat net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:685)\r\n\r\n\r\nA detailed walkthrough of the error, its code path and all known details is as follows:\r\n---------------------------------------------------------------------------------------\r\n\r\n-- Head --\r\nStacktrace:\r\n\tat com.rwtema.extrautils.tileentity.enderquarry.BlockBreakingRegistry.blackList(BlockBreakingRegistry.java:30)\r\n\tat com.rwtema.extrautils.tileentity.enderquarry.TileEntityEnderQuarry.mineBlock(TileEntityEnderQuarry.java:495)\r\n\tat com.rwtema.extrautils.tileentity.enderquarry.TileEntityEnderQuarry.func_145845_h(TileEntityEnderQuarry.java:378)\r\n\r\n-- Block entity being ticked --\r\nDetails:\r\n\tName: enderQuarry // com.rwtema.extrautils.tileentity.enderquarry.TileEntityEnderQuarry\r\n\tBlock type: ID #777 (tile.extrautils:enderQuarry // com.rwtema.extrautils.tileentity.enderquarry.BlockEnderQuarry)\r\n\tBlock data value: 1 / 0x1 / 0b0001\r\n\tBlock location: World: (1028,155,1029), Chunk: (at 4,9,5 in 64,64; contains blocks 1024,0,1024 to 1039,255,1039), Region: (2,2; contains chunks 64,64 to 95,95, blocks 1024,0,1024 to 1535,255,1535)\r\n\tActual block type: ID #777 (tile.extrautils:enderQuarry // com.rwtema.extrautils.tileentity.enderquarry.BlockEnderQuarry)\r\n\tActual block data value: 1 / 0x1 / 0b0001\r\nStacktrace:\r\n\tat net.minecraft.world.World.func_72939_s(World.java:1939)\r\n\tat net.minecraft.world.WorldServer.func_72939_s(WorldServer.java:489)\r\n\r\n-- Affected level --\r\nDetails:\r\n\tLevel name: First\r\n\tAll players: 0 total; []\r\n\tChunk stats: ServerChunkCache: 2 Drop: 0\r\n\tLevel seed: -4803990825008141971\r\n\tLevel generator: ID 00 - default, ver 1. Features enabled: false\r\n\tLevel generator options: \r\n\tLevel spawn location: World: (0,0,0), Chunk: (at 0,0,0 in 0,0; contains blocks 0,0,0 to 15,255,15), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)\r\n\tLevel time: 0 game time, 0 day time\r\n\tLevel dimension: 0\r\n\tLevel storage version: 0x00000 - Unknown?\r\n\tLevel weather: Rain time: 0 (now: false), thunder time: 0 (now: false)\r\n\tLevel game mode: ~~ERROR~~ NullPointerException: null\r\nStacktrace:\r\n\tat net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:636)\r\n\tat net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:547)\r\n\tat net.minecraft.server.integrated.IntegratedServer.func_71217_p(IntegratedServer.java:111)\r\n\tat net.minecraft.server.MinecraftServer.run(MinecraftServer.java:427)\r\n\tat net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:685)\r\n\r\n-- System Details --\r\nDetails:\r\n\tMinecraft Version: 1.7.10\r\n\tOperating System: Windows 8.1 (amd64) version 6.3\r\n\tJava Version: 1.8.0_11, Oracle Corporation\r\n\tJava VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation\r\n\tMemory: 271448576 bytes (258 MB) / 610795520 bytes (582 MB) up to 4116185088 bytes (3925 MB)\r\n\tJVM Flags: 6 total; -Xms256M -Xmx4096M -XX:PermSize=256m -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx4G -Xmn512M\r\n\tAABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used\r\n\tIntCache: cache: 0, tcache: 0, allocated: 12, tallocated: 94\r\n\tFML: MCP v9.05 FML v7.10.85.1230 Minecraft Forge 10.13.2.1230 57 mods loaded, 57 mods active\r\n\tmcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tFML{7.10.85.1230} [Forge Mod Loader] (forge-1.7.10-10.13.2.1230-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tForge{10.13.2.1230} [Minecraft Forge] (forge-1.7.10-10.13.2.1230-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tappliedenergistics2-core{rv1-beta-37} [AppliedEnergistics2 Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tCodeChickenCore{1.0.4.29} [CodeChicken Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\t{000} [CoFH ASM Data Initialization] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMobiusCore{1.2.3} [MobiusCore] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tNotEnoughItems{1.0.3.76} [Not Enough Items] (NotEnoughItems-1.7.10-1.0.3.76-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tSciMCLibCore{0.0.0.2} [SciMCLibCore] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tOpenModsCore{@VERSION@} [OpenModsCore] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tdebug{1.0} [debug] (denseores-1.5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tbattlegear2{1.0.6.3} [Mine & Blade Battlegear 2 - Bullseye] (1.7.10-MB_Battlegear2-Bullseye-1.0.6.3.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tbspkrsCore{6.14} [bspkrsCore] ([1.7.10]bspkrsCore-universal-6.14.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tWorldStateCheckpoints{1.7.10.r02} [WorldStateCheckpoints] ([1.7.10]WorldStateCheckpoints-client-1.7.10.r02.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tdendrology{1.7.10-0.3.2} [Ancient Trees] (AncientTrees-1.7.10-0.3.2.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tappliedenergistics2{rv1-beta-37} [Applied Energistics 2] (appliedenergistics2-rv1-beta-37.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tBiblioCraft{1.8.2} [BiblioCraft] (BiblioCraft[v1.8.2][MC1.7.10].jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tCoFHCore{1.7.10R3.0.0B9} [CoFH Core] (CoFHCore-[1.7.10]3.0.0B9-41.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tThermalFoundation{1.7.10R1.0.0RC1} [Thermal Foundation] (ThermalFoundation-[1.7.10]1.0.0RC1-13.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tThermalExpansion{1.7.10R4.0.0B8} [Thermal Expansion] (ThermalExpansion-[1.7.10]4.0.0B8-23.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tBigReactors{0.4.0A} [Big Reactors] (BigReactors-0.4.0A.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tchisel{2.1.3} [Chisel] (Chisel 2-2.1.3.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tWaila{1.5.5} [Waila] (Waila-1.5.5_1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tCompactMachines{1.7.10-1.12} [Compact Machines] (compactmachines-1.7.10-1.12.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tEnderIO{1.7.10-2.2.4.0} [Ender IO] (EnderIO-1.7.10-2.2.6.0.buffertest.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tEnderTech{1.7.10-0.3.0.348} [EnderTech] (EnderTech-1.7.10-0.3.0.348.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tEnderZoo{1.7.10-1.0.5.14} [Ender Zoo] (EnderZoo-1.7.10-1.0.5.14.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\texnihilo{1.37} [Ex Nihilo] (Ex-Nihilo-1.37.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMetallurgyCore{4.0.4} [Metallurgy Core] (MetallurgyCore-1.7.10-4.0.4.18.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMantle{1.7.10-0.3.2.jenkins184} [Mantle] (Mantle-1.7.10-0.3.2.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tTConstruct{1.7.10-1.8.1.build815} [Tinkers' Construct] (TConstruct-1.7.10-1.8.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMetallurgy{4.0.5} [Metallurgy 4] (Metallurgy-1.7.10-4.0.5.75.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tExtraTiC{0.8.4} [ExtraTiC] (ExtraTiC-1.7.10-1.0.3.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tExtraUtilities{1.2.1} [Extra Utilities] (extrautilities-1.2.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tHoloInventory{1.8.3.86} [HoloInventory] (HoloInventory-1.7.10-1.8.3.86.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tHardcoreQuesting{The Journey (4.2.1)} [Hardcore Questing Mode] (HQM-The Journey (4.2.1).jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\timc{1.6} [Improving Minecraft] (Improving Minecraft-1.6.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tinventorytweaks{1.59-dev-152-cf6e263} [Inventory Tweaks] (InventoryTweaks-1.59-dev-152.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tjourneymap{5.0.0RC6} [JourneyMap] (JourneyMap5.0.0RC6_Unlimited_MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tLockdown{2.0.0} [Lockdown] (Lockdown-universal-1.7.2-2.0.0.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tminechem{5.0.5.344} [Minechem] (Minechem-1.7.10-5.0.5.344.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMineTweaker3{3.0.9} [MineTweaker 3] (MineTweaker3-1.7.10-3.0.9.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tOpenMods{0.6} [OpenMods] (OpenModsLib-1.7.10-0.6-snapshot-225.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tOpenBlocks{1.3} [OpenBlocks] (OpenBlocks-1.7.10-1.3-snapshot-436.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tPerfectSpawn{1.1} [Perfect Spawn] (PerfectSpawn-1.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tPoorOres{1.7.10-1.3.1} [PoorOres] (PoorOres-1.7.2-1.3.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tQuadrum{1.2.0} [Quadrum] (Quadrum-1.7.10-1.2.0.B13-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tRandomThings{2.2.2} [Random Things] (RandomThings-2.2.2.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tsantasdecor{0.5.3} [Santa's Decor] (Santa'sDecor-1.7.10-0.5.3.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tSciMCLib{SciMCLib} [SciMCLib] (SciMCLib-1.7.10-0.0.0.2.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tTiCTooltips{1.1.11b} [TiC Tooltips] (TiCTooltips-mc1.7.10-1.1.11b.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tTorcherino{1.7s} [Torcherino] (Torcherino-1.7.10-1.7s.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\twailafeatures{0.0.1} [WAILA Features] (WAILA-features-1.7.10-0.0.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tyampst{1.3.3} [YAMPST] (Yampst-Material Energy^4-1.0.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tZtones{1.7.10} [Ztones] (Ztones-1.7.10-1.9.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tdenseores{1.0} [Dense Ores] (denseores-1.5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tIguanaTweaksTConstruct{1.7.10-2.1.0.82} [Iguana Tinker Tweaks] (IguanaTinkerTweaks-1.7.10-2.1.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tAE2 Version: beta rv1-beta-37 for Forge 10.13.0.1187\r\n\tMantle Environment: Environment healthy.\r\n\tTConstruct Environment: Environment healthy.\r\n\tSciMCLib Version: 0.0.0.2\r\n\tAE2 Integration: IC2:OFF, RotaryCraft:OFF, RC:OFF, BC:OFF, MJ6:OFF, MJ5:OFF, RF:ON, RFItem:ON, MFR:OFF, DSU:ON, FZ:OFF, FMP:OFF, RB:OFF, CLApi:OFF, Waila:ON, InvTweaks:ON, NEI:ON, CraftGuide:OFF, Mekanism:OFF, ImmibisMicroblocks:OFF, BetterStorage:OFF\r\n\tProfiler Position: N/A (disabled)\r\n\tVec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used\r\n\tPlayer Count: 0 / 8; []\r\n\tType: Integrated Server (map_client.txt)\r\n\tIs Modded: Definitely; Client brand changed to 'fml,forge'"},"comment":{"url":"https://api.github.com/repos/rwtema/extrautilities/issues/comments/68488834","html_url":"https://github.com/rwtema/extrautilities/issues/456#issuecomment-68488834","issue_url":"https://api.github.com/repos/rwtema/extrautilities/issues/456","id":68488834,"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:16:24Z","updated_at":"2015-01-01T15:16:24Z","body":"I updated my mod, so this problem should no longer occur. "}},"public":true,"created_at":"2015-01-01T15:16:24Z"} +,{"id":"2489658666","type":"PushEvent","actor":{"id":902911,"login":"limikael","gravatar_id":"","url":"https://api.github.com/users/limikael","avatar_url":"https://avatars.githubusercontent.com/u/902911?"},"repo":{"id":27686393,"name":"limikael/resource-fiddle-ui-test","url":"https://api.github.com/repos/limikael/resource-fiddle-ui-test"},"payload":{"push_id":536867402,"size":1,"distinct_size":1,"ref":"refs/heads/semanticui","head":"35698ac56dd1104cdde081e6e610592364529812","before":"8f587da2c112aefedf60664c1dc4f177e9a5dbbc","commits":[{"sha":"35698ac56dd1104cdde081e6e610592364529812","author":{"email":"20f41dc3c1b20ec31470a5ec8100c4be7fb2b7f6@gmail.com","name":"Mikael Lindqvist"},"message":"renamed to index","distinct":true,"url":"https://api.github.com/repos/limikael/resource-fiddle-ui-test/commits/35698ac56dd1104cdde081e6e610592364529812"}]},"public":true,"created_at":"2015-01-01T15:16:24Z"} +,{"id":"2489658669","type":"PushEvent","actor":{"id":7267904,"login":"d-an","gravatar_id":"","url":"https://api.github.com/users/d-an","avatar_url":"https://avatars.githubusercontent.com/u/7267904?"},"repo":{"id":28602454,"name":"d-an/stats","url":"https://api.github.com/repos/d-an/stats"},"payload":{"push_id":536867403,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"92dd0d6a65a2e62e9f3bf786de8ce5a12155db1b","before":"d5b3506625ff0c350befe32a75cba5e10ec4bfa5","commits":[{"sha":"92dd0d6a65a2e62e9f3bf786de8ce5a12155db1b","author":{"email":"c3ea3780f69ec3ea2d36d1fdcd698f35d8e7a569@centrum.cz","name":"Daniel Dvořák"},"message":"chisq_test","distinct":true,"url":"https://api.github.com/repos/d-an/stats/commits/92dd0d6a65a2e62e9f3bf786de8ce5a12155db1b"}]},"public":true,"created_at":"2015-01-01T15:16:24Z"} +,{"id":"2489658673","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":22913041,"name":"hex7c0/transfer-rate","url":"https://api.github.com/repos/hex7c0/transfer-rate"},"payload":{"push_id":536867405,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"c36db2b48952d145ef7619c46bc651eee5a93c10","before":"4896467182b4963097e87f9d2afb0f354b43af13","commits":[{"sha":"d5b0192cfe9b412b419fafd718553e8305111ad7","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"travis docker","distinct":true,"url":"https://api.github.com/repos/hex7c0/transfer-rate/commits/d5b0192cfe9b412b419fafd718553e8305111ad7"},{"sha":"425a9c36913efb4e5695c9cd0347216c8db1f6a8","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"update devDependencies","distinct":true,"url":"https://api.github.com/repos/hex7c0/transfer-rate/commits/425a9c36913efb4e5695c9cd0347216c8db1f6a8"},{"sha":"c36db2b48952d145ef7619c46bc651eee5a93c10","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"update Gruntfile","distinct":true,"url":"https://api.github.com/repos/hex7c0/transfer-rate/commits/c36db2b48952d145ef7619c46bc651eee5a93c10"}]},"public":true,"created_at":"2015-01-01T15:16:25Z"} +,{"id":"2489658674","type":"WatchEvent","actor":{"id":7042799,"login":"mountainmoon","gravatar_id":"","url":"https://api.github.com/users/mountainmoon","avatar_url":"https://avatars.githubusercontent.com/u/7042799?"},"repo":{"id":2525502,"name":"qiao/PathFinding.js","url":"https://api.github.com/repos/qiao/PathFinding.js"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:16:25Z"} +,{"id":"2489658682","type":"PushEvent","actor":{"id":6339109,"login":"inkeso","gravatar_id":"","url":"https://api.github.com/users/inkeso","avatar_url":"https://avatars.githubusercontent.com/u/6339109?"},"repo":{"id":15868302,"name":"inkeso/pselc3","url":"https://api.github.com/repos/inkeso/pselc3"},"payload":{"push_id":536867407,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"69e15f98f5d360dd3efa5d48e604e94e66812425","before":"72473939ac89c8f9caad7d68fd21cc181b7c343d","commits":[{"sha":"69e15f98f5d360dd3efa5d48e604e94e66812425","author":{"email":"01d8482ab3c07de192cc9ca95cc44ca8f09b71a2@gmx.de","name":"inkeso"},"message":"31C3 config added","distinct":true,"url":"https://api.github.com/repos/inkeso/pselc3/commits/69e15f98f5d360dd3efa5d48e604e94e66812425"}]},"public":true,"created_at":"2015-01-01T15:16:26Z"} +,{"id":"2489658685","type":"PushEvent","actor":{"id":925851,"login":"kasper","gravatar_id":"","url":"https://api.github.com/users/kasper","avatar_url":"https://avatars.githubusercontent.com/u/925851?"},"repo":{"id":6724655,"name":"kytkemo/spring-app","url":"https://api.github.com/repos/kytkemo/spring-app"},"payload":{"push_id":536867411,"size":22,"distinct_size":22,"ref":"refs/heads/master","head":"37a1074b4842c3500f1f5e3ed41c63529e12f154","before":"c2562f76791267657949e7fdaf0e1c4ad89823d6","commits":[{"sha":"508e4fd56431ff7bddea439318d27fef46cd7a02","author":{"email":"9381e634ceedef0f52c2178748dd8a536253caa4@gmail.com","name":"Kasper Hirvikoski"},"message":"Set Checkstyle language to English","distinct":true,"url":"https://api.github.com/repos/kytkemo/spring-app/commits/508e4fd56431ff7bddea439318d27fef46cd7a02"},{"sha":"0402bb209486eca4352ee7a8c0c053272aec258c","author":{"email":"9381e634ceedef0f52c2178748dd8a536253caa4@gmail.com","name":"Kasper Hirvikoski"},"message":"Increase throws count to 4","distinct":true,"url":"https://api.github.com/repos/kytkemo/spring-app/commits/0402bb209486eca4352ee7a8c0c053272aec258c"},{"sha":"56fa0cc47ad3bd1e1d4542a99361f79909dc96f6","author":{"email":"9381e634ceedef0f52c2178748dd8a536253caa4@gmail.com","name":"Kasper Hirvikoski"},"message":"Allow line breaks","distinct":true,"url":"https://api.github.com/repos/kytkemo/spring-app/commits/56fa0cc47ad3bd1e1d4542a99361f79909dc96f6"},{"sha":"0b6e283d2a15ffc487ab97a01589d5c660ab2d0a","author":{"email":"9381e634ceedef0f52c2178748dd8a536253caa4@gmail.com","name":"Kasper Hirvikoski"},"message":"Increase allowed duplicates to 4","distinct":true,"url":"https://api.github.com/repos/kytkemo/spring-app/commits/0b6e283d2a15ffc487ab97a01589d5c660ab2d0a"},{"sha":"826a75836b12d98d5070a8aaaaed9fc4843ef082","author":{"email":"9381e634ceedef0f52c2178748dd8a536253caa4@gmail.com","name":"Kasper Hirvikoski"},"message":"Update Checkstyle configuration","distinct":true,"url":"https://api.github.com/repos/kytkemo/spring-app/commits/826a75836b12d98d5070a8aaaaed9fc4843ef082"},{"sha":"21e9fd478402eb1daccf37c092529d767adeff9d","author":{"email":"9381e634ceedef0f52c2178748dd8a536253caa4@gmail.com","name":"Kasper Hirvikoski"},"message":"Upgrade maven-checkstyle-plugin to 2.13 and use Checkstyle 6.2","distinct":true,"url":"https://api.github.com/repos/kytkemo/spring-app/commits/21e9fd478402eb1daccf37c092529d767adeff9d"},{"sha":"823129d3e65705c3006506841b7dcb8f0c459e82","author":{"email":"9381e634ceedef0f52c2178748dd8a536253caa4@gmail.com","name":"Kasper Hirvikoski"},"message":"Code style","distinct":true,"url":"https://api.github.com/repos/kytkemo/spring-app/commits/823129d3e65705c3006506841b7dcb8f0c459e82"},{"sha":"5c853493e7e9886e4999a41a1d01b9424db3f4bc","author":{"email":"9381e634ceedef0f52c2178748dd8a536253caa4@gmail.com","name":"Kasper Hirvikoski"},"message":"Switch from Log4j to Logback","distinct":true,"url":"https://api.github.com/repos/kytkemo/spring-app/commits/5c853493e7e9886e4999a41a1d01b9424db3f4bc"},{"sha":"63a09eab46dc770ba7137e13379e0f89bccca7c2","author":{"email":"9381e634ceedef0f52c2178748dd8a536253caa4@gmail.com","name":"Kasper Hirvikoski"},"message":"Code style","distinct":true,"url":"https://api.github.com/repos/kytkemo/spring-app/commits/63a09eab46dc770ba7137e13379e0f89bccca7c2"},{"sha":"f136bd198ca4551235bb2612837d58901203cbc3","author":{"email":"9381e634ceedef0f52c2178748dd8a536253caa4@gmail.com","name":"Kasper Hirvikoski"},"message":"Upgrade Spring to 4.1.4.RELEASE","distinct":true,"url":"https://api.github.com/repos/kytkemo/spring-app/commits/f136bd198ca4551235bb2612837d58901203cbc3"},{"sha":"8c13f53e41d6e71050a4cc9ea5085511bd024402","author":{"email":"9381e634ceedef0f52c2178748dd8a536253caa4@gmail.com","name":"Kasper Hirvikoski"},"message":"Upgrade JUnit to 4.12","distinct":true,"url":"https://api.github.com/repos/kytkemo/spring-app/commits/8c13f53e41d6e71050a4cc9ea5085511bd024402"},{"sha":"1eefdda002625d62e1dc83d863f3f4b44674ecdb","author":{"email":"9381e634ceedef0f52c2178748dd8a536253caa4@gmail.com","name":"Kasper Hirvikoski"},"message":"Upgrade maven-compiler-plugin to 3.2","distinct":true,"url":"https://api.github.com/repos/kytkemo/spring-app/commits/1eefdda002625d62e1dc83d863f3f4b44674ecdb"},{"sha":"eb8b2bed12fd4a901247698e3b0f6fd07c076f8a","author":{"email":"9381e634ceedef0f52c2178748dd8a536253caa4@gmail.com","name":"Kasper Hirvikoski"},"message":"Upgrade maven-shade-plugin to 2.3","distinct":true,"url":"https://api.github.com/repos/kytkemo/spring-app/commits/eb8b2bed12fd4a901247698e3b0f6fd07c076f8a"},{"sha":"801b5fee5d02a12b42f9e946d0f8fabcdaa136f3","author":{"email":"9381e634ceedef0f52c2178748dd8a536253caa4@gmail.com","name":"Kasper Hirvikoski"},"message":"Specify source and target versions as properties","distinct":true,"url":"https://api.github.com/repos/kytkemo/spring-app/commits/801b5fee5d02a12b42f9e946d0f8fabcdaa136f3"},{"sha":"2cb19396c5e9c34e63b1b712c693ea1ac413867a","author":{"email":"9381e634ceedef0f52c2178748dd8a536253caa4@gmail.com","name":"Kasper Hirvikoski"},"message":"Replace original artifact after shade","distinct":true,"url":"https://api.github.com/repos/kytkemo/spring-app/commits/2cb19396c5e9c34e63b1b712c693ea1ac413867a"},{"sha":"0a212687b064281a51c8691f1c2d7401736da47a","author":{"email":"9381e634ceedef0f52c2178748dd8a536253caa4@gmail.com","name":"Kasper Hirvikoski"},"message":"Update schemas for Spring 4.1","distinct":true,"url":"https://api.github.com/repos/kytkemo/spring-app/commits/0a212687b064281a51c8691f1c2d7401736da47a"},{"sha":"b9a3d33e5f8a36ccc289658bf99639a09b9dee7a","author":{"email":"9381e634ceedef0f52c2178748dd8a536253caa4@gmail.com","name":"Kasper Hirvikoski"},"message":"New heading style","distinct":true,"url":"https://api.github.com/repos/kytkemo/spring-app/commits/b9a3d33e5f8a36ccc289658bf99639a09b9dee7a"},{"sha":"72573eb4b268b083313c27674ef96ba839f2062a","author":{"email":"9381e634ceedef0f52c2178748dd8a536253caa4@gmail.com","name":"Kasper Hirvikoski"},"message":"2015","distinct":true,"url":"https://api.github.com/repos/kytkemo/spring-app/commits/72573eb4b268b083313c27674ef96ba839f2062a"},{"sha":"0c9a3a740e87e6c985b58ce319672cb3d59736c0","author":{"email":"9381e634ceedef0f52c2178748dd8a536253caa4@gmail.com","name":"Kasper Hirvikoski"},"message":"Redundant include","distinct":true,"url":"https://api.github.com/repos/kytkemo/spring-app/commits/0c9a3a740e87e6c985b58ce319672cb3d59736c0"},{"sha":"33275d49b8eb06009010d9795a3b20328fbf5936","author":{"email":"9381e634ceedef0f52c2178748dd8a536253caa4@gmail.com","name":"Kasper Hirvikoski"},"message":"Code style","distinct":true,"url":"https://api.github.com/repos/kytkemo/spring-app/commits/33275d49b8eb06009010d9795a3b20328fbf5936"}]},"public":true,"created_at":"2015-01-01T15:16:27Z","org":{"id":925863,"login":"kytkemo","gravatar_id":"","url":"https://api.github.com/orgs/kytkemo","avatar_url":"https://avatars.githubusercontent.com/u/925863?"}} +,{"id":"2489658686","type":"PushEvent","actor":{"id":979046,"login":"pippijn","gravatar_id":"","url":"https://api.github.com/users/pippijn","avatar_url":"https://avatars.githubusercontent.com/u/979046?"},"repo":{"id":15841152,"name":"pippijn/opam-repository","url":"https://api.github.com/repos/pippijn/opam-repository"},"payload":{"push_id":536867409,"size":1000,"distinct_size":2287,"ref":"refs/heads/master","head":"5bc4deb985cdf9f6ff912fd45a5214996a0a4fb2","before":"177c5c4b4a2a2f881c613c711b2f0a9fc92abda7","commits":[{"sha":"568cfcc7ba58e46ab8e282ba87a4fc5a01b37365","author":{"email":"aa5d8c8bb73d4465608582ffc8dcd3cb76639f53@dimino.org","name":"Jérémie Dimino"},"message":"lwt 2.4.6","distinct":true,"url":"https://api.github.com/repos/pippijn/opam-repository/commits/568cfcc7ba58e46ab8e282ba87a4fc5a01b37365"},{"sha":"af9f482a6cac522d5df6754a2186c50fba8eef2c","author":{"email":"1ea688ede1182cdef6f1706bcf3cd0032d9d8af6@bat8.org","name":"Zoggy"},"message":"tighter constraint on rss for stog 0.4 -> 0.7","distinct":true,"url":"https://api.github.com/repos/pippijn/opam-repository/commits/af9f482a6cac522d5df6754a2186c50fba8eef2c"},{"sha":"a6444b805dc3489f1c08ea0aff2a02b277920633","author":{"email":"1ea688ede1182cdef6f1706bcf3cd0032d9d8af6@bat8.org","name":"Zoggy"},"message":"Merge branch 'master' of https://github.com/OCamlPro/opam-repository","distinct":true,"url":"https://api.github.com/repos/pippijn/opam-repository/commits/a6444b805dc3489f1c08ea0aff2a02b277920633"},{"sha":"8a005b284fc80e5af176a8c14c77364c5b5103ce","author":{"email":"34c6fceca75e456f25e7e99531e2425c6c1de443@clarus.me","name":"Guillaume Claret"},"message":"OCaml version specified","distinct":true,"url":"https://api.github.com/repos/pippijn/opam-repository/commits/8a005b284fc80e5af176a8c14c77364c5b5103ce"},{"sha":"656fd3e9f93d8e1e4223fc225d53c478568973f3","author":{"email":"34c6fceca75e456f25e7e99531e2425c6c1de443@clarus.me","name":"Guillaume Claret"},"message":"-j jobs option added to Coq IDE","distinct":true,"url":"https://api.github.com/repos/pippijn/opam-repository/commits/656fd3e9f93d8e1e4223fc225d53c478568973f3"},{"sha":"da48845f05839ea33460ec288bc4df00c07320a2","author":{"email":"34c6fceca75e456f25e7e99531e2425c6c1de443@clarus.me","name":"Guillaume Claret"},"message":"Older packages updated against OCaml 4.02.0","distinct":true,"url":"https://api.github.com/repos/pippijn/opam-repository/commits/da48845f05839ea33460ec288bc4df00c07320a2"},{"sha":"93e9e8b02a6b0f7ffe37f7b871ec6c7390b1bacf","author":{"email":"3a02579c191f8558e3fedece867419cb15398b26@recoil.org","name":"Anil Madhavapeddy"},"message":"Merge pull request #2846 from zoggy/master\n\nadd stog-writing 0.13.0 and xmldiff 0.4.0","distinct":true,"url":"https://api.github.com/repos/pippijn/opam-repository/commits/93e9e8b02a6b0f7ffe37f7b871ec6c7390b1bacf"},{"sha":"d4510a0e8e24ec884bf554f445ec96d10d061dc2","author":{"email":"21ffd895359415ee7287ceeecbfa775472db1289@janestreet.com","name":"Jeremie Dimino"},"message":"add camlp4 4.02.0+2 and camlp4 4.02.1","distinct":true,"url":"https://api.github.com/repos/pippijn/opam-repository/commits/d4510a0e8e24ec884bf554f445ec96d10d061dc2"},{"sha":"d60bd9255f0e13dc93fe07c7ad3e6db25a6a3050","author":{"email":"21ffd895359415ee7287ceeecbfa775472db1289@janestreet.com","name":"Jeremie Dimino"},"message":"typo","distinct":true,"url":"https://api.github.com/repos/pippijn/opam-repository/commits/d60bd9255f0e13dc93fe07c7ad3e6db25a6a3050"},{"sha":"4c0bc926b45e04ce3bdb81da37e00d353250a78c","author":{"email":"3a02579c191f8558e3fedece867419cb15398b26@recoil.org","name":"Anil Madhavapeddy"},"message":"Add 4.02.1 compiler switches","distinct":true,"url":"https://api.github.com/repos/pippijn/opam-repository/commits/4c0bc926b45e04ce3bdb81da37e00d353250a78c"},{"sha":"eaf40d48a4bc33aa1383d574200aaf17202562d9","author":{"email":"21ffd895359415ee7287ceeecbfa775472db1289@janestreet.com","name":"Jeremie Dimino"},"message":"update checksum","distinct":true,"url":"https://api.github.com/repos/pippijn/opam-repository/commits/eaf40d48a4bc33aa1383d574200aaf17202562d9"},{"sha":"a63d7027277c3044fcbe2f164fd71cd3a4266447","author":{"email":"3a02579c191f8558e3fedece867419cb15398b26@recoil.org","name":"Anil Madhavapeddy"},"message":"Merge pull request #2862 from avsm/comp-4.02.1\n\nAdd 4.02.1 compiler switches","distinct":true,"url":"https://api.github.com/repos/pippijn/opam-repository/commits/a63d7027277c3044fcbe2f164fd71cd3a4266447"},{"sha":"7cb3c67aa6eef903ba8adbc8536027df32642e1a","author":{"email":"3a02579c191f8558e3fedece867419cb15398b26@recoil.org","name":"Anil Madhavapeddy"},"message":"Merge pull request #2861 from diml/camlp4-4.02.1\n\nadd camlp4 4.02.0+2 and camlp4 4.02.1","distinct":true,"url":"https://api.github.com/repos/pippijn/opam-repository/commits/7cb3c67aa6eef903ba8adbc8536027df32642e1a"},{"sha":"6f1e2a2dace4920a9a30a5454740404be4600dce","author":{"email":"b4701ebf9366004900e8211cdb469ccf92f5074c@whitequark.org","name":"Peter Zotov"},"message":"+ocaml.4.02.1+32bit","distinct":true,"url":"https://api.github.com/repos/pippijn/opam-repository/commits/6f1e2a2dace4920a9a30a5454740404be4600dce"},{"sha":"e1f0d981fd03a59d25548cbd0cc15e5dbb85a6fd","author":{"email":"ff9ab3e0493661a48402120b7585a87a84d80172@gmail.com","name":"Jeremy Yallop"},"message":"Update Travis config to use OCaml 4.02.1","distinct":true,"url":"https://api.github.com/repos/pippijn/opam-repository/commits/e1f0d981fd03a59d25548cbd0cc15e5dbb85a6fd"},{"sha":"a226cbfffd6cd3eebbb67f865476258d6e5de7aa","author":{"email":"3a02579c191f8558e3fedece867419cb15398b26@recoil.org","name":"Anil Madhavapeddy"},"message":"Merge pull request #2868 from yallop/travis-ocaml-4.02.1\n\nUpdate Travis config to use OCaml 4.02.1","distinct":true,"url":"https://api.github.com/repos/pippijn/opam-repository/commits/a226cbfffd6cd3eebbb67f865476258d6e5de7aa"},{"sha":"af0e0e7daf912f8b65179ede1632bbd7f96c1c81","author":{"email":"3a02579c191f8558e3fedece867419cb15398b26@recoil.org","name":"Anil Madhavapeddy"},"message":"+camlp4.4.02.1+system","distinct":true,"url":"https://api.github.com/repos/pippijn/opam-repository/commits/af0e0e7daf912f8b65179ede1632bbd7f96c1c81"},{"sha":"94413c43f9ad64882d899ec66d30d05c4def1e14","author":{"email":"3a02579c191f8558e3fedece867419cb15398b26@recoil.org","name":"Anil Madhavapeddy"},"message":"Sync latest compiler pull requests","distinct":true,"url":"https://api.github.com/repos/pippijn/opam-repository/commits/94413c43f9ad64882d899ec66d30d05c4def1e14"},{"sha":"6bf2181666aaa26f96f757e4fa89139d91f2faa3","author":{"email":"26c8999589b092eb29da6fdfecc4a3ccf3e2c78f@gmail.com","name":"Jacques-Pascal Deplaix"},"message":"Improve the llvm package","distinct":true,"url":"https://api.github.com/repos/pippijn/opam-repository/commits/6bf2181666aaa26f96f757e4fa89139d91f2faa3"},{"sha":"6c092eb228fdd5714d54e005cb798c5081135062","author":{"email":"b4701ebf9366004900e8211cdb469ccf92f5074c@whitequark.org","name":"Peter Zotov"},"message":"Add Darwin support to 4.02.1+32bit.","distinct":true,"url":"https://api.github.com/repos/pippijn/opam-repository/commits/6c092eb228fdd5714d54e005cb798c5081135062"}]},"public":true,"created_at":"2015-01-01T15:16:27Z"} +,{"id":"2489658687","type":"IssueCommentEvent","actor":{"id":58074,"login":"dshafik","gravatar_id":"","url":"https://api.github.com/users/dshafik","avatar_url":"https://avatars.githubusercontent.com/u/58074?"},"repo":{"id":26386679,"name":"dshafik/securepasswords.info","url":"https://api.github.com/repos/dshafik/securepasswords.info"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/dshafik/securepasswords.info/issues/15","labels_url":"https://api.github.com/repos/dshafik/securepasswords.info/issues/15/labels{/name}","comments_url":"https://api.github.com/repos/dshafik/securepasswords.info/issues/15/comments","events_url":"https://api.github.com/repos/dshafik/securepasswords.info/issues/15/events","html_url":"https://github.com/dshafik/securepasswords.info/pull/15","id":53217277,"number":15,"title":"Add authentication via Aura.Auth","user":{"login":"harikt","id":120454,"avatar_url":"https://avatars.githubusercontent.com/u/120454?v=3","gravatar_id":"","url":"https://api.github.com/users/harikt","html_url":"https://github.com/harikt","followers_url":"https://api.github.com/users/harikt/followers","following_url":"https://api.github.com/users/harikt/following{/other_user}","gists_url":"https://api.github.com/users/harikt/gists{/gist_id}","starred_url":"https://api.github.com/users/harikt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/harikt/subscriptions","organizations_url":"https://api.github.com/users/harikt/orgs","repos_url":"https://api.github.com/users/harikt/repos","events_url":"https://api.github.com/users/harikt/events{/privacy}","received_events_url":"https://api.github.com/users/harikt/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2015-01-01T10:37:42Z","updated_at":"2015-01-01T15:16:27Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/dshafik/securepasswords.info/pulls/15","html_url":"https://github.com/dshafik/securepasswords.info/pull/15","diff_url":"https://github.com/dshafik/securepasswords.info/pull/15.diff","patch_url":"https://github.com/dshafik/securepasswords.info/pull/15.patch"},"body":"Hi @dshafik , \r\n\r\nHappy New Year to all :-) .\r\n\r\nI have added an example of authenticating users via Aura.Auth a standalone library. I believe this library may help people someone who is struggling to make use of a good authentication library.\r\n\r\n@pmjones pinging you here if you like to verify and make any corrections.\r\n\r\nThank you\r\n\r\n/ cc @dflydev "},"comment":{"url":"https://api.github.com/repos/dshafik/securepasswords.info/issues/comments/68488836","html_url":"https://github.com/dshafik/securepasswords.info/pull/15#issuecomment-68488836","issue_url":"https://api.github.com/repos/dshafik/securepasswords.info/issues/15","id":68488836,"user":{"login":"dshafik","id":58074,"avatar_url":"https://avatars.githubusercontent.com/u/58074?v=3","gravatar_id":"","url":"https://api.github.com/users/dshafik","html_url":"https://github.com/dshafik","followers_url":"https://api.github.com/users/dshafik/followers","following_url":"https://api.github.com/users/dshafik/following{/other_user}","gists_url":"https://api.github.com/users/dshafik/gists{/gist_id}","starred_url":"https://api.github.com/users/dshafik/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dshafik/subscriptions","organizations_url":"https://api.github.com/users/dshafik/orgs","repos_url":"https://api.github.com/users/dshafik/repos","events_url":"https://api.github.com/users/dshafik/events{/privacy}","received_events_url":"https://api.github.com/users/dshafik/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:16:27Z","updated_at":"2015-01-01T15:16:27Z","body":"@harikt the resulting hash from `password_hash()` contains the algorithm used, so `password_verify()` will use bcrypt or whichever else is next. See the first part of [this post](https://blog.engineyard.com/2014/password-security-part-3)\r\n\r\nAs for rehashing, `ext/password` provides a `password_needs_rehash()` function which takes a hash and then the same arguments as `password_hash()` (hash, e.g. `PASSWORD_DEFAULT` and `options['cost']`) and will tell you if it meets the settings and return a boolean.\r\n\r\nIf it returns false, you should rehash and re-store (this is done at login when you have the users plaintext password for verification and rehashing)\r\n\r\nFor an example of what this looks like see the last section of [the PHP example](http://securepasswords.info/php)"}},"public":true,"created_at":"2015-01-01T15:16:27Z"} +,{"id":"2489658688","type":"WatchEvent","actor":{"id":7429,"login":"openface","gravatar_id":"","url":"https://api.github.com/users/openface","avatar_url":"https://avatars.githubusercontent.com/u/7429?"},"repo":{"id":65252,"name":"jekyll/jekyll","url":"https://api.github.com/repos/jekyll/jekyll"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:16:27Z","org":{"id":3083652,"login":"jekyll","gravatar_id":"","url":"https://api.github.com/orgs/jekyll","avatar_url":"https://avatars.githubusercontent.com/u/3083652?"}} +,{"id":"2489658691","type":"IssueCommentEvent","actor":{"id":4483,"login":"arfon","gravatar_id":"","url":"https://api.github.com/users/arfon","avatar_url":"https://avatars.githubusercontent.com/u/4483?"},"repo":{"id":1725199,"name":"github/linguist","url":"https://api.github.com/repos/github/linguist"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/github/linguist/issues/1932","labels_url":"https://api.github.com/repos/github/linguist/issues/1932/labels{/name}","comments_url":"https://api.github.com/repos/github/linguist/issues/1932/comments","events_url":"https://api.github.com/repos/github/linguist/issues/1932/events","html_url":"https://github.com/github/linguist/pull/1932","id":53218785,"number":1932,"title":"Update Elm support by adding its own syntax highlighting","user":{"login":"deadfoxygrandpa","id":4319484,"avatar_url":"https://avatars.githubusercontent.com/u/4319484?v=3","gravatar_id":"","url":"https://api.github.com/users/deadfoxygrandpa","html_url":"https://github.com/deadfoxygrandpa","followers_url":"https://api.github.com/users/deadfoxygrandpa/followers","following_url":"https://api.github.com/users/deadfoxygrandpa/following{/other_user}","gists_url":"https://api.github.com/users/deadfoxygrandpa/gists{/gist_id}","starred_url":"https://api.github.com/users/deadfoxygrandpa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deadfoxygrandpa/subscriptions","organizations_url":"https://api.github.com/users/deadfoxygrandpa/orgs","repos_url":"https://api.github.com/users/deadfoxygrandpa/repos","events_url":"https://api.github.com/users/deadfoxygrandpa/events{/privacy}","received_events_url":"https://api.github.com/users/deadfoxygrandpa/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T12:27:33Z","updated_at":"2015-01-01T15:16:27Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/github/linguist/pulls/1932","html_url":"https://github.com/github/linguist/pull/1932","diff_url":"https://github.com/github/linguist/pull/1932.diff","patch_url":"https://github.com/github/linguist/pull/1932.patch"},"body":"Until now, Elm's been using Haskell syntax highlighting. The language has grown farther apart from Haskell in the past months and could really use its own highlighting at this point."},"comment":{"url":"https://api.github.com/repos/github/linguist/issues/comments/68488837","html_url":"https://github.com/github/linguist/pull/1932#issuecomment-68488837","issue_url":"https://api.github.com/repos/github/linguist/issues/1932","id":68488837,"user":{"login":"arfon","id":4483,"avatar_url":"https://avatars.githubusercontent.com/u/4483?v=3","gravatar_id":"","url":"https://api.github.com/users/arfon","html_url":"https://github.com/arfon","followers_url":"https://api.github.com/users/arfon/followers","following_url":"https://api.github.com/users/arfon/following{/other_user}","gists_url":"https://api.github.com/users/arfon/gists{/gist_id}","starred_url":"https://api.github.com/users/arfon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arfon/subscriptions","organizations_url":"https://api.github.com/users/arfon/orgs","repos_url":"https://api.github.com/users/arfon/repos","events_url":"https://api.github.com/users/arfon/events{/privacy}","received_events_url":"https://api.github.com/users/arfon/received_events","type":"User","site_admin":true},"created_at":"2015-01-01T15:16:27Z","updated_at":"2015-01-01T15:16:27Z","body":"Looks good. Thanks @deadfoxygrandpa "}},"public":true,"created_at":"2015-01-01T15:16:27Z","org":{"id":9919,"login":"github","gravatar_id":"","url":"https://api.github.com/orgs/github","avatar_url":"https://avatars.githubusercontent.com/u/9919?"}} +,{"id":"2489658694","type":"IssuesEvent","actor":{"id":9809727,"login":"fire-eggs","gravatar_id":"","url":"https://api.github.com/users/fire-eggs","avatar_url":"https://avatars.githubusercontent.com/u/9809727?"},"repo":{"id":28404527,"name":"fire-eggs/DanbooruBrowser","url":"https://api.github.com/repos/fire-eggs/DanbooruBrowser"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/fire-eggs/DanbooruBrowser/issues/4","labels_url":"https://api.github.com/repos/fire-eggs/DanbooruBrowser/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/fire-eggs/DanbooruBrowser/issues/4/comments","events_url":"https://api.github.com/repos/fire-eggs/DanbooruBrowser/issues/4/events","html_url":"https://github.com/fire-eggs/DanbooruBrowser/issues/4","id":53221667,"number":4,"title":"\"Downloaded pages\" state doesn't clear on server switch","user":{"login":"fire-eggs","id":9809727,"avatar_url":"https://avatars.githubusercontent.com/u/9809727?v=3","gravatar_id":"","url":"https://api.github.com/users/fire-eggs","html_url":"https://github.com/fire-eggs","followers_url":"https://api.github.com/users/fire-eggs/followers","following_url":"https://api.github.com/users/fire-eggs/following{/other_user}","gists_url":"https://api.github.com/users/fire-eggs/gists{/gist_id}","starred_url":"https://api.github.com/users/fire-eggs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fire-eggs/subscriptions","organizations_url":"https://api.github.com/users/fire-eggs/orgs","repos_url":"https://api.github.com/users/fire-eggs/repos","events_url":"https://api.github.com/users/fire-eggs/events{/privacy}","received_events_url":"https://api.github.com/users/fire-eggs/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/fire-eggs/DanbooruBrowser/labels/bug","name":"bug","color":"fc2929"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:16:28Z","updated_at":"2015-01-01T15:16:28Z","closed_at":null,"body":"1. Start with server A\r\n2. Fetch posts. Scroll down several times to fetch additional \"pages\"\r\n3. Go to settings, switch to server B, return to thumbs\r\n\r\nNote that all the additional \"pages\" of images are fetched from server B. On server switch, the context should reset to \"first page only\"."}},"public":true,"created_at":"2015-01-01T15:16:28Z"} +,{"id":"2489658696","type":"ForkEvent","actor":{"id":6193436,"login":"golife","gravatar_id":"","url":"https://api.github.com/users/golife","avatar_url":"https://avatars.githubusercontent.com/u/6193436?"},"repo":{"id":8986773,"name":"benweet/stackedit","url":"https://api.github.com/repos/benweet/stackedit"},"payload":{"forkee":{"id":28688903,"name":"stackedit","full_name":"golife/stackedit","owner":{"login":"golife","id":6193436,"avatar_url":"https://avatars.githubusercontent.com/u/6193436?v=3","gravatar_id":"","url":"https://api.github.com/users/golife","html_url":"https://github.com/golife","followers_url":"https://api.github.com/users/golife/followers","following_url":"https://api.github.com/users/golife/following{/other_user}","gists_url":"https://api.github.com/users/golife/gists{/gist_id}","starred_url":"https://api.github.com/users/golife/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/golife/subscriptions","organizations_url":"https://api.github.com/users/golife/orgs","repos_url":"https://api.github.com/users/golife/repos","events_url":"https://api.github.com/users/golife/events{/privacy}","received_events_url":"https://api.github.com/users/golife/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/golife/stackedit","description":"In-browser markdown editor","fork":true,"url":"https://api.github.com/repos/golife/stackedit","forks_url":"https://api.github.com/repos/golife/stackedit/forks","keys_url":"https://api.github.com/repos/golife/stackedit/keys{/key_id}","collaborators_url":"https://api.github.com/repos/golife/stackedit/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/golife/stackedit/teams","hooks_url":"https://api.github.com/repos/golife/stackedit/hooks","issue_events_url":"https://api.github.com/repos/golife/stackedit/issues/events{/number}","events_url":"https://api.github.com/repos/golife/stackedit/events","assignees_url":"https://api.github.com/repos/golife/stackedit/assignees{/user}","branches_url":"https://api.github.com/repos/golife/stackedit/branches{/branch}","tags_url":"https://api.github.com/repos/golife/stackedit/tags","blobs_url":"https://api.github.com/repos/golife/stackedit/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/golife/stackedit/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/golife/stackedit/git/refs{/sha}","trees_url":"https://api.github.com/repos/golife/stackedit/git/trees{/sha}","statuses_url":"https://api.github.com/repos/golife/stackedit/statuses/{sha}","languages_url":"https://api.github.com/repos/golife/stackedit/languages","stargazers_url":"https://api.github.com/repos/golife/stackedit/stargazers","contributors_url":"https://api.github.com/repos/golife/stackedit/contributors","subscribers_url":"https://api.github.com/repos/golife/stackedit/subscribers","subscription_url":"https://api.github.com/repos/golife/stackedit/subscription","commits_url":"https://api.github.com/repos/golife/stackedit/commits{/sha}","git_commits_url":"https://api.github.com/repos/golife/stackedit/git/commits{/sha}","comments_url":"https://api.github.com/repos/golife/stackedit/comments{/number}","issue_comment_url":"https://api.github.com/repos/golife/stackedit/issues/comments/{number}","contents_url":"https://api.github.com/repos/golife/stackedit/contents/{+path}","compare_url":"https://api.github.com/repos/golife/stackedit/compare/{base}...{head}","merges_url":"https://api.github.com/repos/golife/stackedit/merges","archive_url":"https://api.github.com/repos/golife/stackedit/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/golife/stackedit/downloads","issues_url":"https://api.github.com/repos/golife/stackedit/issues{/number}","pulls_url":"https://api.github.com/repos/golife/stackedit/pulls{/number}","milestones_url":"https://api.github.com/repos/golife/stackedit/milestones{/number}","notifications_url":"https://api.github.com/repos/golife/stackedit/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/golife/stackedit/labels{/name}","releases_url":"https://api.github.com/repos/golife/stackedit/releases{/id}","created_at":"2015-01-01T15:16:28Z","updated_at":"2015-01-01T13:35:12Z","pushed_at":"2014-12-17T00:38:44Z","git_url":"git://github.com/golife/stackedit.git","ssh_url":"git@github.com:golife/stackedit.git","clone_url":"https://github.com/golife/stackedit.git","svn_url":"https://github.com/golife/stackedit","homepage":"https://stackedit.io/","size":40290,"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:16:29Z"} +,{"id":"2489658699","type":"IssuesEvent","actor":{"id":5514202,"login":"DeeJee","gravatar_id":"","url":"https://api.github.com/users/DeeJee","avatar_url":"https://avatars.githubusercontent.com/u/5514202?"},"repo":{"id":28571307,"name":"DeeJee/VhpTimeLogger","url":"https://api.github.com/repos/DeeJee/VhpTimeLogger"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/9","labels_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/9/labels{/name}","comments_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/9/comments","events_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/9/events","html_url":"https://github.com/DeeJee/VhpTimeLogger/issues/9","id":53221668,"number":9,"title":"Start van de dag tijd bug","user":{"login":"DeeJee","id":5514202,"avatar_url":"https://avatars.githubusercontent.com/u/5514202?v=3","gravatar_id":"","url":"https://api.github.com/users/DeeJee","html_url":"https://github.com/DeeJee","followers_url":"https://api.github.com/users/DeeJee/followers","following_url":"https://api.github.com/users/DeeJee/following{/other_user}","gists_url":"https://api.github.com/users/DeeJee/gists{/gist_id}","starred_url":"https://api.github.com/users/DeeJee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeeJee/subscriptions","organizations_url":"https://api.github.com/users/DeeJee/orgs","repos_url":"https://api.github.com/users/DeeJee/repos","events_url":"https://api.github.com/users/DeeJee/events{/privacy}","received_events_url":"https://api.github.com/users/DeeJee/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:16:29Z","updated_at":"2015-01-01T15:16:29Z","closed_at":null,"body":"Als ik bij “start van de dag” een andere dan de voorgestelde tijd ingevoerd wordt dan krijg ik een exception\r\n"}},"public":true,"created_at":"2015-01-01T15:16:29Z"} +,{"id":"2489658702","type":"PushEvent","actor":{"id":234171,"login":"vadzim","gravatar_id":"","url":"https://api.github.com/users/vadzim","avatar_url":"https://avatars.githubusercontent.com/u/234171?"},"repo":{"id":28394613,"name":"vadzim/shbin","url":"https://api.github.com/repos/vadzim/shbin"},"payload":{"push_id":536867414,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"618175862835e43da0912f2ee3c762501aebde1e","before":"ec17cbbd56a684696a2167f430d388f63d197696","commits":[{"sha":"618175862835e43da0912f2ee3c762501aebde1e","author":{"email":"7a38d8cbd20d9932ba948efaa364bb62651d5ad4@vadzim.info","name":"vadzim"},"message":"..","distinct":true,"url":"https://api.github.com/repos/vadzim/shbin/commits/618175862835e43da0912f2ee3c762501aebde1e"}]},"public":true,"created_at":"2015-01-01T15:16:29Z"} +,{"id":"2489658703","type":"PushEvent","actor":{"id":1961699,"login":"rumpelsepp","gravatar_id":"","url":"https://api.github.com/users/rumpelsepp","avatar_url":"https://avatars.githubusercontent.com/u/1961699?"},"repo":{"id":27492294,"name":"rumpelsepp/rouge","url":"https://api.github.com/repos/rumpelsepp/rouge"},"payload":{"push_id":536867415,"size":1,"distinct_size":1,"ref":"refs/heads/rugments","head":"024ee9d135bbb762a336b1a5e33c6262f42c2e06","before":"659cbc8d539dee4d09d00a12064ab49aabc7938b","commits":[{"sha":"024ee9d135bbb762a336b1a5e33c6262f42c2e06","author":{"email":"eb0877843acc39f8ef6f7269937dee931c372d23@sevenbyte.org","name":"Stefan Tatschner"},"message":"Synchronize params with pygments","distinct":true,"url":"https://api.github.com/repos/rumpelsepp/rouge/commits/024ee9d135bbb762a336b1a5e33c6262f42c2e06"}]},"public":true,"created_at":"2015-01-01T15:16:29Z"} +,{"id":"2489658704","type":"PushEvent","actor":{"id":298109,"login":"fkmclane","gravatar_id":"","url":"https://api.github.com/users/fkmclane","avatar_url":"https://avatars.githubusercontent.com/u/298109?"},"repo":{"id":10301331,"name":"fkmclane/overlay","url":"https://api.github.com/repos/fkmclane/overlay"},"payload":{"push_id":536867416,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a2ecf6bcad20667fa052417f9e557acc97a95288","before":"9dafd768f825be76b8df34d2185f2c56245d87f2","commits":[{"sha":"a2ecf6bcad20667fa052417f9e557acc97a95288","author":{"email":"f53c6301a06f27534c137b3dd1b27109b1a035f5@gmail.com","name":"Foster McLane"},"message":"Update plex-home-theater despite the lack of git tag","distinct":true,"url":"https://api.github.com/repos/fkmclane/overlay/commits/a2ecf6bcad20667fa052417f9e557acc97a95288"}]},"public":true,"created_at":"2015-01-01T15:16:29Z"} +,{"id":"2489658705","type":"PushEvent","actor":{"id":2539292,"login":"wmfgerrit","gravatar_id":"","url":"https://api.github.com/users/wmfgerrit","avatar_url":"https://avatars.githubusercontent.com/u/2539292?"},"repo":{"id":13584754,"name":"wikimedia/mediawiki-extensions-ContentTranslation","url":"https://api.github.com/repos/wikimedia/mediawiki-extensions-ContentTranslation"},"payload":{"push_id":536867417,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"27feea05f6fb9d451eb7b1c5cee6825af09532c6","before":"341f0b26d708bb6c2a2aeb610949ad1095f9341c","commits":[{"sha":"27feea05f6fb9d451eb7b1c5cee6825af09532c6","author":{"email":"81ecf282caf36c4650876909892470b2e210afed@mail.huji.ac.il","name":"Amir E. Aharoni"},"message":"Cleanup whitespace in CXSourceSelector.prototype.check\n\nMake deeply nested callbacks more readable.\n\nChange-Id: I70789ac04e97c83a561245102bdc710fceb53ab3","distinct":true,"url":"https://api.github.com/repos/wikimedia/mediawiki-extensions-ContentTranslation/commits/27feea05f6fb9d451eb7b1c5cee6825af09532c6"}]},"public":true,"created_at":"2015-01-01T15:16:29Z","org":{"id":56668,"login":"wikimedia","gravatar_id":"","url":"https://api.github.com/orgs/wikimedia","avatar_url":"https://avatars.githubusercontent.com/u/56668?"}} +,{"id":"2489658706","type":"WatchEvent","actor":{"id":4404263,"login":"sdolidze","gravatar_id":"","url":"https://api.github.com/users/sdolidze","avatar_url":"https://avatars.githubusercontent.com/u/4404263?"},"repo":{"id":20423545,"name":"typelift/swiftz","url":"https://api.github.com/repos/typelift/swiftz"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:16:29Z","org":{"id":8847821,"login":"typelift","gravatar_id":"","url":"https://api.github.com/orgs/typelift","avatar_url":"https://avatars.githubusercontent.com/u/8847821?"}} +,{"id":"2489658707","type":"PushEvent","actor":{"id":2867933,"login":"dycforever","gravatar_id":"","url":"https://api.github.com/users/dycforever","avatar_url":"https://avatars.githubusercontent.com/u/2867933?"},"repo":{"id":12435452,"name":"dycforever/program","url":"https://api.github.com/repos/dycforever/program"},"payload":{"push_id":536867419,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ed9c620ab1f8b43e762102f14c4925f37637a5f6","before":"45f72d6bde12853fdc72a16cc446fd48aa678873","commits":[{"sha":"ed9c620ab1f8b43e762102f14c4925f37637a5f6","author":{"email":"62d9cb0617af0e9108624ded590bb29bdf4c6a8f@localhost.localdomain","name":"dyc"},"message":"add code","distinct":true,"url":"https://api.github.com/repos/dycforever/program/commits/ed9c620ab1f8b43e762102f14c4925f37637a5f6"}]},"public":true,"created_at":"2015-01-01T15:16:29Z"} +,{"id":"2489658708","type":"PullRequestEvent","actor":{"id":4483,"login":"arfon","gravatar_id":"","url":"https://api.github.com/users/arfon","avatar_url":"https://avatars.githubusercontent.com/u/4483?"},"repo":{"id":1725199,"name":"github/linguist","url":"https://api.github.com/repos/github/linguist"},"payload":{"action":"closed","number":1932,"pull_request":{"url":"https://api.github.com/repos/github/linguist/pulls/1932","id":26742733,"html_url":"https://github.com/github/linguist/pull/1932","diff_url":"https://github.com/github/linguist/pull/1932.diff","patch_url":"https://github.com/github/linguist/pull/1932.patch","issue_url":"https://api.github.com/repos/github/linguist/issues/1932","number":1932,"state":"closed","locked":false,"title":"Update Elm support by adding its own syntax highlighting","user":{"login":"deadfoxygrandpa","id":4319484,"avatar_url":"https://avatars.githubusercontent.com/u/4319484?v=3","gravatar_id":"","url":"https://api.github.com/users/deadfoxygrandpa","html_url":"https://github.com/deadfoxygrandpa","followers_url":"https://api.github.com/users/deadfoxygrandpa/followers","following_url":"https://api.github.com/users/deadfoxygrandpa/following{/other_user}","gists_url":"https://api.github.com/users/deadfoxygrandpa/gists{/gist_id}","starred_url":"https://api.github.com/users/deadfoxygrandpa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deadfoxygrandpa/subscriptions","organizations_url":"https://api.github.com/users/deadfoxygrandpa/orgs","repos_url":"https://api.github.com/users/deadfoxygrandpa/repos","events_url":"https://api.github.com/users/deadfoxygrandpa/events{/privacy}","received_events_url":"https://api.github.com/users/deadfoxygrandpa/received_events","type":"User","site_admin":false},"body":"Until now, Elm's been using Haskell syntax highlighting. The language has grown farther apart from Haskell in the past months and could really use its own highlighting at this point.","created_at":"2015-01-01T12:27:33Z","updated_at":"2015-01-01T15:16:29Z","closed_at":"2015-01-01T15:16:29Z","merged_at":"2015-01-01T15:16:29Z","merge_commit_sha":"7f3bb4037ecdb33fd525b8872188faf732b03971","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/github/linguist/pulls/1932/commits","review_comments_url":"https://api.github.com/repos/github/linguist/pulls/1932/comments","review_comment_url":"https://api.github.com/repos/github/linguist/pulls/comments/{number}","comments_url":"https://api.github.com/repos/github/linguist/issues/1932/comments","statuses_url":"https://api.github.com/repos/github/linguist/statuses/27a7873e0892b6a65aad5ee35ac6205df3ef662a","head":{"label":"deadfoxygrandpa:elm","ref":"elm","sha":"27a7873e0892b6a65aad5ee35ac6205df3ef662a","user":{"login":"deadfoxygrandpa","id":4319484,"avatar_url":"https://avatars.githubusercontent.com/u/4319484?v=3","gravatar_id":"","url":"https://api.github.com/users/deadfoxygrandpa","html_url":"https://github.com/deadfoxygrandpa","followers_url":"https://api.github.com/users/deadfoxygrandpa/followers","following_url":"https://api.github.com/users/deadfoxygrandpa/following{/other_user}","gists_url":"https://api.github.com/users/deadfoxygrandpa/gists{/gist_id}","starred_url":"https://api.github.com/users/deadfoxygrandpa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deadfoxygrandpa/subscriptions","organizations_url":"https://api.github.com/users/deadfoxygrandpa/orgs","repos_url":"https://api.github.com/users/deadfoxygrandpa/repos","events_url":"https://api.github.com/users/deadfoxygrandpa/events{/privacy}","received_events_url":"https://api.github.com/users/deadfoxygrandpa/received_events","type":"User","site_admin":false},"repo":{"id":28685582,"name":"linguist","full_name":"deadfoxygrandpa/linguist","owner":{"login":"deadfoxygrandpa","id":4319484,"avatar_url":"https://avatars.githubusercontent.com/u/4319484?v=3","gravatar_id":"","url":"https://api.github.com/users/deadfoxygrandpa","html_url":"https://github.com/deadfoxygrandpa","followers_url":"https://api.github.com/users/deadfoxygrandpa/followers","following_url":"https://api.github.com/users/deadfoxygrandpa/following{/other_user}","gists_url":"https://api.github.com/users/deadfoxygrandpa/gists{/gist_id}","starred_url":"https://api.github.com/users/deadfoxygrandpa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deadfoxygrandpa/subscriptions","organizations_url":"https://api.github.com/users/deadfoxygrandpa/orgs","repos_url":"https://api.github.com/users/deadfoxygrandpa/repos","events_url":"https://api.github.com/users/deadfoxygrandpa/events{/privacy}","received_events_url":"https://api.github.com/users/deadfoxygrandpa/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/deadfoxygrandpa/linguist","description":"Language Savant. If your repository's language is being reported incorrectly, send us a pull request!","fork":true,"url":"https://api.github.com/repos/deadfoxygrandpa/linguist","forks_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/forks","keys_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/keys{/key_id}","collaborators_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/teams","hooks_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/hooks","issue_events_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/issues/events{/number}","events_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/events","assignees_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/assignees{/user}","branches_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/branches{/branch}","tags_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/tags","blobs_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/git/refs{/sha}","trees_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/git/trees{/sha}","statuses_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/statuses/{sha}","languages_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/languages","stargazers_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/stargazers","contributors_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/contributors","subscribers_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/subscribers","subscription_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/subscription","commits_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/commits{/sha}","git_commits_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/git/commits{/sha}","comments_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/comments{/number}","issue_comment_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/issues/comments/{number}","contents_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/contents/{+path}","compare_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/compare/{base}...{head}","merges_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/merges","archive_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/downloads","issues_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/issues{/number}","pulls_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/pulls{/number}","milestones_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/milestones{/number}","notifications_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/labels{/name}","releases_url":"https://api.github.com/repos/deadfoxygrandpa/linguist/releases{/id}","created_at":"2015-01-01T11:40:50Z","updated_at":"2015-01-01T11:40:52Z","pushed_at":"2015-01-01T12:41:05Z","git_url":"git://github.com/deadfoxygrandpa/linguist.git","ssh_url":"git@github.com:deadfoxygrandpa/linguist.git","clone_url":"https://github.com/deadfoxygrandpa/linguist.git","svn_url":"https://github.com/deadfoxygrandpa/linguist","homepage":"","size":43291,"stargazers_count":0,"watchers_count":0,"language":"Ruby","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":"github:master","ref":"master","sha":"795f42cbaaa7c9c10ecf522228ca206ad3b61f5f","user":{"login":"github","id":9919,"avatar_url":"https://avatars.githubusercontent.com/u/9919?v=3","gravatar_id":"","url":"https://api.github.com/users/github","html_url":"https://github.com/github","followers_url":"https://api.github.com/users/github/followers","following_url":"https://api.github.com/users/github/following{/other_user}","gists_url":"https://api.github.com/users/github/gists{/gist_id}","starred_url":"https://api.github.com/users/github/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github/subscriptions","organizations_url":"https://api.github.com/users/github/orgs","repos_url":"https://api.github.com/users/github/repos","events_url":"https://api.github.com/users/github/events{/privacy}","received_events_url":"https://api.github.com/users/github/received_events","type":"Organization","site_admin":false},"repo":{"id":1725199,"name":"linguist","full_name":"github/linguist","owner":{"login":"github","id":9919,"avatar_url":"https://avatars.githubusercontent.com/u/9919?v=3","gravatar_id":"","url":"https://api.github.com/users/github","html_url":"https://github.com/github","followers_url":"https://api.github.com/users/github/followers","following_url":"https://api.github.com/users/github/following{/other_user}","gists_url":"https://api.github.com/users/github/gists{/gist_id}","starred_url":"https://api.github.com/users/github/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github/subscriptions","organizations_url":"https://api.github.com/users/github/orgs","repos_url":"https://api.github.com/users/github/repos","events_url":"https://api.github.com/users/github/events{/privacy}","received_events_url":"https://api.github.com/users/github/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/github/linguist","description":"Language Savant. If your repository's language is being reported incorrectly, send us a pull request!","fork":false,"url":"https://api.github.com/repos/github/linguist","forks_url":"https://api.github.com/repos/github/linguist/forks","keys_url":"https://api.github.com/repos/github/linguist/keys{/key_id}","collaborators_url":"https://api.github.com/repos/github/linguist/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/github/linguist/teams","hooks_url":"https://api.github.com/repos/github/linguist/hooks","issue_events_url":"https://api.github.com/repos/github/linguist/issues/events{/number}","events_url":"https://api.github.com/repos/github/linguist/events","assignees_url":"https://api.github.com/repos/github/linguist/assignees{/user}","branches_url":"https://api.github.com/repos/github/linguist/branches{/branch}","tags_url":"https://api.github.com/repos/github/linguist/tags","blobs_url":"https://api.github.com/repos/github/linguist/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/github/linguist/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/github/linguist/git/refs{/sha}","trees_url":"https://api.github.com/repos/github/linguist/git/trees{/sha}","statuses_url":"https://api.github.com/repos/github/linguist/statuses/{sha}","languages_url":"https://api.github.com/repos/github/linguist/languages","stargazers_url":"https://api.github.com/repos/github/linguist/stargazers","contributors_url":"https://api.github.com/repos/github/linguist/contributors","subscribers_url":"https://api.github.com/repos/github/linguist/subscribers","subscription_url":"https://api.github.com/repos/github/linguist/subscription","commits_url":"https://api.github.com/repos/github/linguist/commits{/sha}","git_commits_url":"https://api.github.com/repos/github/linguist/git/commits{/sha}","comments_url":"https://api.github.com/repos/github/linguist/comments{/number}","issue_comment_url":"https://api.github.com/repos/github/linguist/issues/comments/{number}","contents_url":"https://api.github.com/repos/github/linguist/contents/{+path}","compare_url":"https://api.github.com/repos/github/linguist/compare/{base}...{head}","merges_url":"https://api.github.com/repos/github/linguist/merges","archive_url":"https://api.github.com/repos/github/linguist/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/github/linguist/downloads","issues_url":"https://api.github.com/repos/github/linguist/issues{/number}","pulls_url":"https://api.github.com/repos/github/linguist/pulls{/number}","milestones_url":"https://api.github.com/repos/github/linguist/milestones{/number}","notifications_url":"https://api.github.com/repos/github/linguist/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/github/linguist/labels{/name}","releases_url":"https://api.github.com/repos/github/linguist/releases{/id}","created_at":"2011-05-09T22:53:13Z","updated_at":"2015-01-01T15:04:43Z","pushed_at":"2015-01-01T15:16:29Z","git_url":"git://github.com/github/linguist.git","ssh_url":"git@github.com:github/linguist.git","clone_url":"https://github.com/github/linguist.git","svn_url":"https://github.com/github/linguist","homepage":"","size":43291,"stargazers_count":2525,"watchers_count":2525,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":1054,"mirror_url":null,"open_issues_count":92,"forks":1054,"open_issues":92,"watchers":2525,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/github/linguist/pulls/1932"},"html":{"href":"https://github.com/github/linguist/pull/1932"},"issue":{"href":"https://api.github.com/repos/github/linguist/issues/1932"},"comments":{"href":"https://api.github.com/repos/github/linguist/issues/1932/comments"},"review_comments":{"href":"https://api.github.com/repos/github/linguist/pulls/1932/comments"},"review_comment":{"href":"https://api.github.com/repos/github/linguist/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/github/linguist/pulls/1932/commits"},"statuses":{"href":"https://api.github.com/repos/github/linguist/statuses/27a7873e0892b6a65aad5ee35ac6205df3ef662a"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"arfon","id":4483,"avatar_url":"https://avatars.githubusercontent.com/u/4483?v=3","gravatar_id":"","url":"https://api.github.com/users/arfon","html_url":"https://github.com/arfon","followers_url":"https://api.github.com/users/arfon/followers","following_url":"https://api.github.com/users/arfon/following{/other_user}","gists_url":"https://api.github.com/users/arfon/gists{/gist_id}","starred_url":"https://api.github.com/users/arfon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arfon/subscriptions","organizations_url":"https://api.github.com/users/arfon/orgs","repos_url":"https://api.github.com/users/arfon/repos","events_url":"https://api.github.com/users/arfon/events{/privacy}","received_events_url":"https://api.github.com/users/arfon/received_events","type":"User","site_admin":true},"comments":1,"review_comments":0,"commits":2,"additions":8,"deletions":1,"changed_files":4}},"public":true,"created_at":"2015-01-01T15:16:29Z","org":{"id":9919,"login":"github","gravatar_id":"","url":"https://api.github.com/orgs/github","avatar_url":"https://avatars.githubusercontent.com/u/9919?"}} +,{"id":"2489658710","type":"WatchEvent","actor":{"id":489576,"login":"VFedyk","gravatar_id":"","url":"https://api.github.com/users/VFedyk","avatar_url":"https://avatars.githubusercontent.com/u/489576?"},"repo":{"id":10731382,"name":"mrmrs/colors","url":"https://api.github.com/repos/mrmrs/colors"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:16:30Z"} +,{"id":"2489658712","type":"IssueCommentEvent","actor":{"id":96662,"login":"samphippen","gravatar_id":"","url":"https://api.github.com/users/samphippen","avatar_url":"https://avatars.githubusercontent.com/u/96662?"},"repo":{"id":238983,"name":"rspec/rspec-mocks","url":"https://api.github.com/repos/rspec/rspec-mocks"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/rspec/rspec-mocks/issues/853","labels_url":"https://api.github.com/repos/rspec/rspec-mocks/issues/853/labels{/name}","comments_url":"https://api.github.com/repos/rspec/rspec-mocks/issues/853/comments","events_url":"https://api.github.com/repos/rspec/rspec-mocks/issues/853/events","html_url":"https://github.com/rspec/rspec-mocks/pull/853","id":53149351,"number":853,"title":"Handle stubbing IO#write and then calling IO#reopen.","user":{"login":"myronmarston","id":49391,"avatar_url":"https://avatars.githubusercontent.com/u/49391?v=3","gravatar_id":"","url":"https://api.github.com/users/myronmarston","html_url":"https://github.com/myronmarston","followers_url":"https://api.github.com/users/myronmarston/followers","following_url":"https://api.github.com/users/myronmarston/following{/other_user}","gists_url":"https://api.github.com/users/myronmarston/gists{/gist_id}","starred_url":"https://api.github.com/users/myronmarston/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/myronmarston/subscriptions","organizations_url":"https://api.github.com/users/myronmarston/orgs","repos_url":"https://api.github.com/users/myronmarston/repos","events_url":"https://api.github.com/users/myronmarston/events{/privacy}","received_events_url":"https://api.github.com/users/myronmarston/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-12-30T21:38:24Z","updated_at":"2015-01-01T15:16:30Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/rspec/rspec-mocks/pulls/853","html_url":"https://github.com/rspec/rspec-mocks/pull/853","diff_url":"https://github.com/rspec/rspec-mocks/pull/853.diff","patch_url":"https://github.com/rspec/rspec-mocks/pull/853.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/rspec/rspec-mocks/issues/comments/68488839","html_url":"https://github.com/rspec/rspec-mocks/pull/853#issuecomment-68488839","issue_url":"https://api.github.com/repos/rspec/rspec-mocks/issues/853","id":68488839,"user":{"login":"samphippen","id":96662,"avatar_url":"https://avatars.githubusercontent.com/u/96662?v=3","gravatar_id":"","url":"https://api.github.com/users/samphippen","html_url":"https://github.com/samphippen","followers_url":"https://api.github.com/users/samphippen/followers","following_url":"https://api.github.com/users/samphippen/following{/other_user}","gists_url":"https://api.github.com/users/samphippen/gists{/gist_id}","starred_url":"https://api.github.com/users/samphippen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/samphippen/subscriptions","organizations_url":"https://api.github.com/users/samphippen/orgs","repos_url":"https://api.github.com/users/samphippen/repos","events_url":"https://api.github.com/users/samphippen/events{/privacy}","received_events_url":"https://api.github.com/users/samphippen/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:16:30Z","updated_at":"2015-01-01T15:16:30Z","body":"@myronmarston LGTM."}},"public":true,"created_at":"2015-01-01T15:16:31Z","org":{"id":22388,"login":"rspec","gravatar_id":"","url":"https://api.github.com/orgs/rspec","avatar_url":"https://avatars.githubusercontent.com/u/22388?"}} +,{"id":"2489658715","type":"PushEvent","actor":{"id":3251397,"login":"catacs","gravatar_id":"","url":"https://api.github.com/users/catacs","avatar_url":"https://avatars.githubusercontent.com/u/3251397?"},"repo":{"id":28386080,"name":"catacs/cloud-pong","url":"https://api.github.com/repos/catacs/cloud-pong"},"payload":{"push_id":536867420,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"fefb84190dc949778a9b22af5a0e4a494704dc93","before":"8a97d6dd6f6bc261b47a31f5ec8e4bbe6ff7309a","commits":[{"sha":"fefb84190dc949778a9b22af5a0e4a494704dc93","author":{"email":"b17683e5c6abf177b6db617886bd8544a1952c75@gmail.com","name":"catacs"},"message":"Scaling content with ScaleManager","distinct":true,"url":"https://api.github.com/repos/catacs/cloud-pong/commits/fefb84190dc949778a9b22af5a0e4a494704dc93"}]},"public":true,"created_at":"2015-01-01T15:16:31Z"} +,{"id":"2489658716","type":"PullRequestReviewCommentEvent","actor":{"id":920462,"login":"matsumo1001","gravatar_id":"","url":"https://api.github.com/users/matsumo1001","avatar_url":"https://avatars.githubusercontent.com/u/920462?"},"repo":{"id":28406037,"name":"TEAM-SAT/tabinotane","url":"https://api.github.com/repos/TEAM-SAT/tabinotane"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls/comments/22400150","id":22400150,"diff_hunk":"@@ -7,6 +7,23 @@ def initialize\n @appid = ENV[\"ABROAD_APPID\"]\n end\n ","path":"app/models/abroad_spot.rb","position":3,"original_position":3,"commit_id":"1ea7751c93c8f47c93c58248c7f3c57e27d43464","original_commit_id":"1ea7751c93c8f47c93c58248c7f3c57e27d43464","user":{"login":"matsumo1001","id":920462,"avatar_url":"https://avatars.githubusercontent.com/u/920462?v=3","gravatar_id":"","url":"https://api.github.com/users/matsumo1001","html_url":"https://github.com/matsumo1001","followers_url":"https://api.github.com/users/matsumo1001/followers","following_url":"https://api.github.com/users/matsumo1001/following{/other_user}","gists_url":"https://api.github.com/users/matsumo1001/gists{/gist_id}","starred_url":"https://api.github.com/users/matsumo1001/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matsumo1001/subscriptions","organizations_url":"https://api.github.com/users/matsumo1001/orgs","repos_url":"https://api.github.com/users/matsumo1001/repos","events_url":"https://api.github.com/users/matsumo1001/events{/privacy}","received_events_url":"https://api.github.com/users/matsumo1001/received_events","type":"User","site_admin":false},"body":"引数で複数の都市コードをカンマ区切りでわたし、1回のAPIで取得します。\r\n戻り値は、keyが都市コードでvalueがspot配列のhashを返します。","created_at":"2015-01-01T15:16:31Z","updated_at":"2015-01-01T15:16:31Z","html_url":"https://github.com/TEAM-SAT/tabinotane/pull/26#discussion_r22400150","pull_request_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls/26","_links":{"self":{"href":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls/comments/22400150"},"html":{"href":"https://github.com/TEAM-SAT/tabinotane/pull/26#discussion_r22400150"},"pull_request":{"href":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls/26"}}},"pull_request":{"url":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls/26","id":26743850,"html_url":"https://github.com/TEAM-SAT/tabinotane/pull/26","diff_url":"https://github.com/TEAM-SAT/tabinotane/pull/26.diff","patch_url":"https://github.com/TEAM-SAT/tabinotane/pull/26.patch","issue_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/issues/26","number":26,"state":"open","locked":false,"title":"観光地取得の効率化案","user":{"login":"matsumo1001","id":920462,"avatar_url":"https://avatars.githubusercontent.com/u/920462?v=3","gravatar_id":"","url":"https://api.github.com/users/matsumo1001","html_url":"https://github.com/matsumo1001","followers_url":"https://api.github.com/users/matsumo1001/followers","following_url":"https://api.github.com/users/matsumo1001/following{/other_user}","gists_url":"https://api.github.com/users/matsumo1001/gists{/gist_id}","starred_url":"https://api.github.com/users/matsumo1001/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matsumo1001/subscriptions","organizations_url":"https://api.github.com/users/matsumo1001/orgs","repos_url":"https://api.github.com/users/matsumo1001/repos","events_url":"https://api.github.com/users/matsumo1001/events{/privacy}","received_events_url":"https://api.github.com/users/matsumo1001/received_events","type":"User","site_admin":false},"body":"現状、目的地ごとにAPIを実行しているが、複数の都市をまとめて取得することができるため、試しに実装してみました。\r\n10回実行するよりは速そうですね。","created_at":"2015-01-01T15:10:51Z","updated_at":"2015-01-01T15:16:31Z","closed_at":null,"merged_at":null,"merge_commit_sha":"a889f6f0a1f8f27d54b1e4aadc62b5415f36c958","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls/26/commits","review_comments_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls/26/comments","review_comment_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls/comments/{number}","comments_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/issues/26/comments","statuses_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/statuses/1ea7751c93c8f47c93c58248c7f3c57e27d43464","head":{"label":"TEAM-SAT:improve_performance","ref":"improve_performance","sha":"1ea7751c93c8f47c93c58248c7f3c57e27d43464","user":{"login":"TEAM-SAT","id":10265827,"avatar_url":"https://avatars.githubusercontent.com/u/10265827?v=3","gravatar_id":"","url":"https://api.github.com/users/TEAM-SAT","html_url":"https://github.com/TEAM-SAT","followers_url":"https://api.github.com/users/TEAM-SAT/followers","following_url":"https://api.github.com/users/TEAM-SAT/following{/other_user}","gists_url":"https://api.github.com/users/TEAM-SAT/gists{/gist_id}","starred_url":"https://api.github.com/users/TEAM-SAT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TEAM-SAT/subscriptions","organizations_url":"https://api.github.com/users/TEAM-SAT/orgs","repos_url":"https://api.github.com/users/TEAM-SAT/repos","events_url":"https://api.github.com/users/TEAM-SAT/events{/privacy}","received_events_url":"https://api.github.com/users/TEAM-SAT/received_events","type":"Organization","site_admin":false},"repo":{"id":28406037,"name":"tabinotane","full_name":"TEAM-SAT/tabinotane","owner":{"login":"TEAM-SAT","id":10265827,"avatar_url":"https://avatars.githubusercontent.com/u/10265827?v=3","gravatar_id":"","url":"https://api.github.com/users/TEAM-SAT","html_url":"https://github.com/TEAM-SAT","followers_url":"https://api.github.com/users/TEAM-SAT/followers","following_url":"https://api.github.com/users/TEAM-SAT/following{/other_user}","gists_url":"https://api.github.com/users/TEAM-SAT/gists{/gist_id}","starred_url":"https://api.github.com/users/TEAM-SAT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TEAM-SAT/subscriptions","organizations_url":"https://api.github.com/users/TEAM-SAT/orgs","repos_url":"https://api.github.com/users/TEAM-SAT/repos","events_url":"https://api.github.com/users/TEAM-SAT/events{/privacy}","received_events_url":"https://api.github.com/users/TEAM-SAT/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/TEAM-SAT/tabinotane","description":"タビノタネ − 旅行目的地レコメンドサービス","fork":false,"url":"https://api.github.com/repos/TEAM-SAT/tabinotane","forks_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/forks","keys_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/teams","hooks_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/hooks","issue_events_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/issues/events{/number}","events_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/events","assignees_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/assignees{/user}","branches_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/branches{/branch}","tags_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/tags","blobs_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/git/refs{/sha}","trees_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/statuses/{sha}","languages_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/languages","stargazers_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/stargazers","contributors_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/contributors","subscribers_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/subscribers","subscription_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/subscription","commits_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/commits{/sha}","git_commits_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/git/commits{/sha}","comments_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/comments{/number}","issue_comment_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/issues/comments/{number}","contents_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/contents/{+path}","compare_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/merges","archive_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/downloads","issues_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/issues{/number}","pulls_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls{/number}","milestones_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/milestones{/number}","notifications_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/labels{/name}","releases_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/releases{/id}","created_at":"2014-12-23T15:50:26Z","updated_at":"2014-12-29T16:03:56Z","pushed_at":"2015-01-01T15:07:42Z","git_url":"git://github.com/TEAM-SAT/tabinotane.git","ssh_url":"git@github.com:TEAM-SAT/tabinotane.git","clone_url":"https://github.com/TEAM-SAT/tabinotane.git","svn_url":"https://github.com/TEAM-SAT/tabinotane","homepage":"http://www.tabinotane.com/","size":63608,"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":18,"forks":0,"open_issues":18,"watchers":0,"default_branch":"master"}},"base":{"label":"TEAM-SAT:master","ref":"master","sha":"6ad27328516c183baa16d10e2ab38def5238f78c","user":{"login":"TEAM-SAT","id":10265827,"avatar_url":"https://avatars.githubusercontent.com/u/10265827?v=3","gravatar_id":"","url":"https://api.github.com/users/TEAM-SAT","html_url":"https://github.com/TEAM-SAT","followers_url":"https://api.github.com/users/TEAM-SAT/followers","following_url":"https://api.github.com/users/TEAM-SAT/following{/other_user}","gists_url":"https://api.github.com/users/TEAM-SAT/gists{/gist_id}","starred_url":"https://api.github.com/users/TEAM-SAT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TEAM-SAT/subscriptions","organizations_url":"https://api.github.com/users/TEAM-SAT/orgs","repos_url":"https://api.github.com/users/TEAM-SAT/repos","events_url":"https://api.github.com/users/TEAM-SAT/events{/privacy}","received_events_url":"https://api.github.com/users/TEAM-SAT/received_events","type":"Organization","site_admin":false},"repo":{"id":28406037,"name":"tabinotane","full_name":"TEAM-SAT/tabinotane","owner":{"login":"TEAM-SAT","id":10265827,"avatar_url":"https://avatars.githubusercontent.com/u/10265827?v=3","gravatar_id":"","url":"https://api.github.com/users/TEAM-SAT","html_url":"https://github.com/TEAM-SAT","followers_url":"https://api.github.com/users/TEAM-SAT/followers","following_url":"https://api.github.com/users/TEAM-SAT/following{/other_user}","gists_url":"https://api.github.com/users/TEAM-SAT/gists{/gist_id}","starred_url":"https://api.github.com/users/TEAM-SAT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TEAM-SAT/subscriptions","organizations_url":"https://api.github.com/users/TEAM-SAT/orgs","repos_url":"https://api.github.com/users/TEAM-SAT/repos","events_url":"https://api.github.com/users/TEAM-SAT/events{/privacy}","received_events_url":"https://api.github.com/users/TEAM-SAT/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/TEAM-SAT/tabinotane","description":"タビノタネ − 旅行目的地レコメンドサービス","fork":false,"url":"https://api.github.com/repos/TEAM-SAT/tabinotane","forks_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/forks","keys_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/teams","hooks_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/hooks","issue_events_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/issues/events{/number}","events_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/events","assignees_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/assignees{/user}","branches_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/branches{/branch}","tags_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/tags","blobs_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/git/refs{/sha}","trees_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/statuses/{sha}","languages_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/languages","stargazers_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/stargazers","contributors_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/contributors","subscribers_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/subscribers","subscription_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/subscription","commits_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/commits{/sha}","git_commits_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/git/commits{/sha}","comments_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/comments{/number}","issue_comment_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/issues/comments/{number}","contents_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/contents/{+path}","compare_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/merges","archive_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/downloads","issues_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/issues{/number}","pulls_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls{/number}","milestones_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/milestones{/number}","notifications_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/labels{/name}","releases_url":"https://api.github.com/repos/TEAM-SAT/tabinotane/releases{/id}","created_at":"2014-12-23T15:50:26Z","updated_at":"2014-12-29T16:03:56Z","pushed_at":"2015-01-01T15:07:42Z","git_url":"git://github.com/TEAM-SAT/tabinotane.git","ssh_url":"git@github.com:TEAM-SAT/tabinotane.git","clone_url":"https://github.com/TEAM-SAT/tabinotane.git","svn_url":"https://github.com/TEAM-SAT/tabinotane","homepage":"http://www.tabinotane.com/","size":63608,"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":18,"forks":0,"open_issues":18,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls/26"},"html":{"href":"https://github.com/TEAM-SAT/tabinotane/pull/26"},"issue":{"href":"https://api.github.com/repos/TEAM-SAT/tabinotane/issues/26"},"comments":{"href":"https://api.github.com/repos/TEAM-SAT/tabinotane/issues/26/comments"},"review_comments":{"href":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls/26/comments"},"review_comment":{"href":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/TEAM-SAT/tabinotane/pulls/26/commits"},"statuses":{"href":"https://api.github.com/repos/TEAM-SAT/tabinotane/statuses/1ea7751c93c8f47c93c58248c7f3c57e27d43464"}}}},"public":true,"created_at":"2015-01-01T15:16:31Z","org":{"id":10265827,"login":"TEAM-SAT","gravatar_id":"","url":"https://api.github.com/orgs/TEAM-SAT","avatar_url":"https://avatars.githubusercontent.com/u/10265827?"}} +,{"id":"2489658719","type":"PushEvent","actor":{"id":4483,"login":"arfon","gravatar_id":"","url":"https://api.github.com/users/arfon","avatar_url":"https://avatars.githubusercontent.com/u/4483?"},"repo":{"id":1725199,"name":"github/linguist","url":"https://api.github.com/repos/github/linguist"},"payload":{"push_id":536867421,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"c911c5c0454df1e30a0cb50d5be48bddd8f9ccf3","before":"795f42cbaaa7c9c10ecf522228ca206ad3b61f5f","commits":[{"sha":"5fe233384e22a2af3719b236ac6a4d3b3e93ccc5","author":{"email":"f3161a46d4f32441548c5639d62e8bc9c4e9452f@gmail.com","name":"Alex Neslusan"},"message":"Update Elm support","distinct":true,"url":"https://api.github.com/repos/github/linguist/commits/5fe233384e22a2af3719b236ac6a4d3b3e93ccc5"},{"sha":"27a7873e0892b6a65aad5ee35ac6205df3ef662a","author":{"email":"f3161a46d4f32441548c5639d62e8bc9c4e9452f@gmail.com","name":"Alex Neslusan"},"message":"Add color to Elm language definition","distinct":true,"url":"https://api.github.com/repos/github/linguist/commits/27a7873e0892b6a65aad5ee35ac6205df3ef662a"},{"sha":"c911c5c0454df1e30a0cb50d5be48bddd8f9ccf3","author":{"email":"919515ec623ab1e6217e4ba730997fa37809ec22@gmail.com","name":"Arfon Smith"},"message":"Merge pull request #1932 from deadfoxygrandpa/elm\n\nUpdate Elm support by adding its own syntax highlighting","distinct":true,"url":"https://api.github.com/repos/github/linguist/commits/c911c5c0454df1e30a0cb50d5be48bddd8f9ccf3"}]},"public":true,"created_at":"2015-01-01T15:16:32Z","org":{"id":9919,"login":"github","gravatar_id":"","url":"https://api.github.com/orgs/github","avatar_url":"https://avatars.githubusercontent.com/u/9919?"}} +,{"id":"2489658720","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":"byta-till-svenska","ref_type":"branch","master_branch":"master","description":"Min hemsida","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:32Z"} +,{"id":"2489658723","type":"PushEvent","actor":{"id":5882016,"login":"Chaomoon","gravatar_id":"","url":"https://api.github.com/users/Chaomoon","avatar_url":"https://avatars.githubusercontent.com/u/5882016?"},"repo":{"id":27693850,"name":"Chaomoon/ItsNotOverDesign","url":"https://api.github.com/repos/Chaomoon/ItsNotOverDesign"},"payload":{"push_id":536867424,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d1bf630f1e140268ebe35269c2c98d743bc4afe8","before":"3b2242eaf7da19408aca1ed29a9b65b303feb498","commits":[{"sha":"d1bf630f1e140268ebe35269c2c98d743bc4afe8","author":{"email":"cf8468b5d9a37f119be60a92e0d5684799c4a378@gmail.com","name":"Wisp X"},"message":"Song update","distinct":true,"url":"https://api.github.com/repos/Chaomoon/ItsNotOverDesign/commits/d1bf630f1e140268ebe35269c2c98d743bc4afe8"}]},"public":true,"created_at":"2015-01-01T15:16:32Z"} +,{"id":"2489658725","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":27928684,"name":"go-amz/amz","url":"https://api.github.com/repos/go-amz/amz"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/go-amz/amz/issues/6","labels_url":"https://api.github.com/repos/go-amz/amz/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/go-amz/amz/issues/6/comments","events_url":"https://api.github.com/repos/go-amz/amz/issues/6/events","html_url":"https://github.com/go-amz/amz/pull/6","id":53089846,"number":6,"title":"setup Travis CI for testing","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":8,"created_at":"2014-12-30T03:03:13Z","updated_at":"2015-01-01T15:16:33Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/go-amz/amz/pulls/6","html_url":"https://github.com/go-amz/amz/pull/6","diff_url":"https://github.com/go-amz/amz/pull/6.diff","patch_url":"https://github.com/go-amz/amz/pull/6.patch"},"body":"* [x] It's still necessary to [activate a webhook](http://docs.travis-ci.com/user/getting-started/) to test pull requests "},"comment":{"url":"https://api.github.com/repos/go-amz/amz/issues/comments/68488840","html_url":"https://github.com/go-amz/amz/pull/6#issuecomment-68488840","issue_url":"https://api.github.com/repos/go-amz/amz/issues/6","id":68488840,"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:16:33Z","updated_at":"2015-01-01T15:16:33Z","body":"I sent an email to support@travis-ci.com\r\n\r\n```\r\nHi,\r\n\r\nI'm wondering if it is possible to override the git clone dest?\r\n\r\ngit clone --depth=50 git://github.com/go-amz/amz.git go-amz/amz\r\n\r\nInstead I'd like to clone to:\r\n\r\ngopkg.in/amz.v1\r\n\r\nBut still have additional fetches to test pull requests work.\r\n\r\nIf it's not possible, we have another option. I just want to out rule this before doing it.\r\n\r\nThe related issue on GitHub is:\r\nhttps://github.com/go-amz/amz/pull/6\r\n\r\nA reply there would be preferred.\r\n\r\nThanks,\r\nNathan.\r\n```"}},"public":true,"created_at":"2015-01-01T15:16:33Z","org":{"id":8137365,"login":"go-amz","gravatar_id":"","url":"https://api.github.com/orgs/go-amz","avatar_url":"https://avatars.githubusercontent.com/u/8137365?"}} +,{"id":"2489658726","type":"CreateEvent","actor":{"id":4767930,"login":"joeyhipolito","gravatar_id":"","url":"https://api.github.com/users/joeyhipolito","avatar_url":"https://avatars.githubusercontent.com/u/4767930?"},"repo":{"id":28688904,"name":"veeyo/veeyo.github.io","url":"https://api.github.com/repos/veeyo/veeyo.github.io"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:33Z","org":{"id":10364423,"login":"veeyo","gravatar_id":"","url":"https://api.github.com/orgs/veeyo","avatar_url":"https://avatars.githubusercontent.com/u/10364423?"}} +,{"id":"2489658728","type":"WatchEvent","actor":{"id":5912082,"login":"fxcebx","gravatar_id":"","url":"https://api.github.com/users/fxcebx","avatar_url":"https://avatars.githubusercontent.com/u/5912082?"},"repo":{"id":17698953,"name":"cran/rNOMADS","url":"https://api.github.com/repos/cran/rNOMADS"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:16:33Z","org":{"id":6899542,"login":"cran","gravatar_id":"","url":"https://api.github.com/orgs/cran","avatar_url":"https://avatars.githubusercontent.com/u/6899542?"}} +,{"id":"2489658730","type":"PushEvent","actor":{"id":7614378,"login":"firedingo","gravatar_id":"","url":"https://api.github.com/users/firedingo","avatar_url":"https://avatars.githubusercontent.com/u/7614378?"},"repo":{"id":28148823,"name":"firedingo/TheDingoPack","url":"https://api.github.com/repos/firedingo/TheDingoPack"},"payload":{"push_id":536867426,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ebe80b18cb5db8109496acca0368fc0335eefe78","before":"2722f6c64d2b5eda2ba568e0dac9982bc34a089f","commits":[{"sha":"ebe80b18cb5db8109496acca0368fc0335eefe78","author":{"email":"24f9983f90d60853ff4189eff293bf0de2b8f715@users.noreply.github.com","name":"firedingo"},"message":"Updating commands to add a !join command, still needs work though","distinct":true,"url":"https://api.github.com/repos/firedingo/TheDingoPack/commits/ebe80b18cb5db8109496acca0368fc0335eefe78"}]},"public":true,"created_at":"2015-01-01T15:16:33Z"} +,{"id":"2489658732","type":"PushEvent","actor":{"id":8367837,"login":"junwang6302","gravatar_id":"","url":"https://api.github.com/users/junwang6302","avatar_url":"https://avatars.githubusercontent.com/u/8367837?"},"repo":{"id":22660905,"name":"junwang6302/weddesignerjun.com","url":"https://api.github.com/repos/junwang6302/weddesignerjun.com"},"payload":{"push_id":536867427,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7bde661af84d59078fd988f57e638f6ded9c8bf7","before":"a3cf43773bb547ffbf9a886ffeb16b218fe2fa01","commits":[{"sha":"7bde661af84d59078fd988f57e638f6ded9c8bf7","author":{"email":"6d90df3be4d0d43b08e3fb47f55e09b5b06dae3e@Juns-MacBook-Air.local","name":"Jun"},"message":"clean up.","distinct":true,"url":"https://api.github.com/repos/junwang6302/weddesignerjun.com/commits/7bde661af84d59078fd988f57e638f6ded9c8bf7"}]},"public":true,"created_at":"2015-01-01T15:16:33Z"} +,{"id":"2489658734","type":"CreateEvent","actor":{"id":9666449,"login":"automatic-frog","gravatar_id":"","url":"https://api.github.com/users/automatic-frog","avatar_url":"https://avatars.githubusercontent.com/u/9666449?"},"repo":{"id":26456362,"name":"osp/osp.work.oralsite.www","url":"https://api.github.com/repos/osp/osp.work.oralsite.www"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"MIRROR of http://osp.kitchen/work/oralsite.www","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:33Z","org":{"id":9216151,"login":"osp","gravatar_id":"","url":"https://api.github.com/orgs/osp","avatar_url":"https://avatars.githubusercontent.com/u/9216151?"}} +,{"id":"2489658735","type":"PullRequestEvent","actor":{"id":10356326,"login":"e-rsh-p","gravatar_id":"","url":"https://api.github.com/users/e-rsh-p","avatar_url":"https://avatars.githubusercontent.com/u/10356326?"},"repo":{"id":2147969,"name":"ErshKUS/test","url":"https://api.github.com/repos/ErshKUS/test"},"payload":{"action":"opened","number":5,"pull_request":{"url":"https://api.github.com/repos/ErshKUS/test/pulls/5","id":26743894,"html_url":"https://github.com/ErshKUS/test/pull/5","diff_url":"https://github.com/ErshKUS/test/pull/5.diff","patch_url":"https://github.com/ErshKUS/test/pull/5.patch","issue_url":"https://api.github.com/repos/ErshKUS/test/issues/5","number":5,"state":"open","locked":false,"title":"второй пулл реквест","user":{"login":"e-rsh-p","id":10356326,"avatar_url":"https://avatars.githubusercontent.com/u/10356326?v=3","gravatar_id":"","url":"https://api.github.com/users/e-rsh-p","html_url":"https://github.com/e-rsh-p","followers_url":"https://api.github.com/users/e-rsh-p/followers","following_url":"https://api.github.com/users/e-rsh-p/following{/other_user}","gists_url":"https://api.github.com/users/e-rsh-p/gists{/gist_id}","starred_url":"https://api.github.com/users/e-rsh-p/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-rsh-p/subscriptions","organizations_url":"https://api.github.com/users/e-rsh-p/orgs","repos_url":"https://api.github.com/users/e-rsh-p/repos","events_url":"https://api.github.com/users/e-rsh-p/events{/privacy}","received_events_url":"https://api.github.com/users/e-rsh-p/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:16:33Z","updated_at":"2015-01-01T15:16:33Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/ErshKUS/test/pulls/5/commits","review_comments_url":"https://api.github.com/repos/ErshKUS/test/pulls/5/comments","review_comment_url":"https://api.github.com/repos/ErshKUS/test/pulls/comments/{number}","comments_url":"https://api.github.com/repos/ErshKUS/test/issues/5/comments","statuses_url":"https://api.github.com/repos/ErshKUS/test/statuses/82eb48a21dc4f02e1502175c8daa669806a4a36e","head":{"label":"e-rsh-p:master","ref":"master","sha":"82eb48a21dc4f02e1502175c8daa669806a4a36e","user":{"login":"e-rsh-p","id":10356326,"avatar_url":"https://avatars.githubusercontent.com/u/10356326?v=3","gravatar_id":"","url":"https://api.github.com/users/e-rsh-p","html_url":"https://github.com/e-rsh-p","followers_url":"https://api.github.com/users/e-rsh-p/followers","following_url":"https://api.github.com/users/e-rsh-p/following{/other_user}","gists_url":"https://api.github.com/users/e-rsh-p/gists{/gist_id}","starred_url":"https://api.github.com/users/e-rsh-p/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-rsh-p/subscriptions","organizations_url":"https://api.github.com/users/e-rsh-p/orgs","repos_url":"https://api.github.com/users/e-rsh-p/repos","events_url":"https://api.github.com/users/e-rsh-p/events{/privacy}","received_events_url":"https://api.github.com/users/e-rsh-p/received_events","type":"User","site_admin":false},"repo":{"id":28688502,"name":"test","full_name":"e-rsh-p/test","owner":{"login":"e-rsh-p","id":10356326,"avatar_url":"https://avatars.githubusercontent.com/u/10356326?v=3","gravatar_id":"","url":"https://api.github.com/users/e-rsh-p","html_url":"https://github.com/e-rsh-p","followers_url":"https://api.github.com/users/e-rsh-p/followers","following_url":"https://api.github.com/users/e-rsh-p/following{/other_user}","gists_url":"https://api.github.com/users/e-rsh-p/gists{/gist_id}","starred_url":"https://api.github.com/users/e-rsh-p/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-rsh-p/subscriptions","organizations_url":"https://api.github.com/users/e-rsh-p/orgs","repos_url":"https://api.github.com/users/e-rsh-p/repos","events_url":"https://api.github.com/users/e-rsh-p/events{/privacy}","received_events_url":"https://api.github.com/users/e-rsh-p/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/e-rsh-p/test","description":"","fork":true,"url":"https://api.github.com/repos/e-rsh-p/test","forks_url":"https://api.github.com/repos/e-rsh-p/test/forks","keys_url":"https://api.github.com/repos/e-rsh-p/test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/e-rsh-p/test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/e-rsh-p/test/teams","hooks_url":"https://api.github.com/repos/e-rsh-p/test/hooks","issue_events_url":"https://api.github.com/repos/e-rsh-p/test/issues/events{/number}","events_url":"https://api.github.com/repos/e-rsh-p/test/events","assignees_url":"https://api.github.com/repos/e-rsh-p/test/assignees{/user}","branches_url":"https://api.github.com/repos/e-rsh-p/test/branches{/branch}","tags_url":"https://api.github.com/repos/e-rsh-p/test/tags","blobs_url":"https://api.github.com/repos/e-rsh-p/test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/e-rsh-p/test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/e-rsh-p/test/git/refs{/sha}","trees_url":"https://api.github.com/repos/e-rsh-p/test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/e-rsh-p/test/statuses/{sha}","languages_url":"https://api.github.com/repos/e-rsh-p/test/languages","stargazers_url":"https://api.github.com/repos/e-rsh-p/test/stargazers","contributors_url":"https://api.github.com/repos/e-rsh-p/test/contributors","subscribers_url":"https://api.github.com/repos/e-rsh-p/test/subscribers","subscription_url":"https://api.github.com/repos/e-rsh-p/test/subscription","commits_url":"https://api.github.com/repos/e-rsh-p/test/commits{/sha}","git_commits_url":"https://api.github.com/repos/e-rsh-p/test/git/commits{/sha}","comments_url":"https://api.github.com/repos/e-rsh-p/test/comments{/number}","issue_comment_url":"https://api.github.com/repos/e-rsh-p/test/issues/comments/{number}","contents_url":"https://api.github.com/repos/e-rsh-p/test/contents/{+path}","compare_url":"https://api.github.com/repos/e-rsh-p/test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/e-rsh-p/test/merges","archive_url":"https://api.github.com/repos/e-rsh-p/test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/e-rsh-p/test/downloads","issues_url":"https://api.github.com/repos/e-rsh-p/test/issues{/number}","pulls_url":"https://api.github.com/repos/e-rsh-p/test/pulls{/number}","milestones_url":"https://api.github.com/repos/e-rsh-p/test/milestones{/number}","notifications_url":"https://api.github.com/repos/e-rsh-p/test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/e-rsh-p/test/labels{/name}","releases_url":"https://api.github.com/repos/e-rsh-p/test/releases{/id}","created_at":"2015-01-01T14:54:13Z","updated_at":"2014-12-31T08:31:09Z","pushed_at":"2015-01-01T15:15:04Z","git_url":"git://github.com/e-rsh-p/test.git","ssh_url":"git@github.com:e-rsh-p/test.git","clone_url":"https://github.com/e-rsh-p/test.git","svn_url":"https://github.com/e-rsh-p/test","homepage":"","size":152,"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":"ErshKUS:master","ref":"master","sha":"a50bf27ad665aaba89b20175893948e85ec8338b","user":{"login":"ErshKUS","id":873670,"avatar_url":"https://avatars.githubusercontent.com/u/873670?v=3","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","html_url":"https://github.com/ErshKUS","followers_url":"https://api.github.com/users/ErshKUS/followers","following_url":"https://api.github.com/users/ErshKUS/following{/other_user}","gists_url":"https://api.github.com/users/ErshKUS/gists{/gist_id}","starred_url":"https://api.github.com/users/ErshKUS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ErshKUS/subscriptions","organizations_url":"https://api.github.com/users/ErshKUS/orgs","repos_url":"https://api.github.com/users/ErshKUS/repos","events_url":"https://api.github.com/users/ErshKUS/events{/privacy}","received_events_url":"https://api.github.com/users/ErshKUS/received_events","type":"User","site_admin":false},"repo":{"id":2147969,"name":"test","full_name":"ErshKUS/test","owner":{"login":"ErshKUS","id":873670,"avatar_url":"https://avatars.githubusercontent.com/u/873670?v=3","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","html_url":"https://github.com/ErshKUS","followers_url":"https://api.github.com/users/ErshKUS/followers","following_url":"https://api.github.com/users/ErshKUS/following{/other_user}","gists_url":"https://api.github.com/users/ErshKUS/gists{/gist_id}","starred_url":"https://api.github.com/users/ErshKUS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ErshKUS/subscriptions","organizations_url":"https://api.github.com/users/ErshKUS/orgs","repos_url":"https://api.github.com/users/ErshKUS/repos","events_url":"https://api.github.com/users/ErshKUS/events{/privacy}","received_events_url":"https://api.github.com/users/ErshKUS/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ErshKUS/test","description":"","fork":false,"url":"https://api.github.com/repos/ErshKUS/test","forks_url":"https://api.github.com/repos/ErshKUS/test/forks","keys_url":"https://api.github.com/repos/ErshKUS/test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ErshKUS/test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ErshKUS/test/teams","hooks_url":"https://api.github.com/repos/ErshKUS/test/hooks","issue_events_url":"https://api.github.com/repos/ErshKUS/test/issues/events{/number}","events_url":"https://api.github.com/repos/ErshKUS/test/events","assignees_url":"https://api.github.com/repos/ErshKUS/test/assignees{/user}","branches_url":"https://api.github.com/repos/ErshKUS/test/branches{/branch}","tags_url":"https://api.github.com/repos/ErshKUS/test/tags","blobs_url":"https://api.github.com/repos/ErshKUS/test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ErshKUS/test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ErshKUS/test/git/refs{/sha}","trees_url":"https://api.github.com/repos/ErshKUS/test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ErshKUS/test/statuses/{sha}","languages_url":"https://api.github.com/repos/ErshKUS/test/languages","stargazers_url":"https://api.github.com/repos/ErshKUS/test/stargazers","contributors_url":"https://api.github.com/repos/ErshKUS/test/contributors","subscribers_url":"https://api.github.com/repos/ErshKUS/test/subscribers","subscription_url":"https://api.github.com/repos/ErshKUS/test/subscription","commits_url":"https://api.github.com/repos/ErshKUS/test/commits{/sha}","git_commits_url":"https://api.github.com/repos/ErshKUS/test/git/commits{/sha}","comments_url":"https://api.github.com/repos/ErshKUS/test/comments{/number}","issue_comment_url":"https://api.github.com/repos/ErshKUS/test/issues/comments/{number}","contents_url":"https://api.github.com/repos/ErshKUS/test/contents/{+path}","compare_url":"https://api.github.com/repos/ErshKUS/test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ErshKUS/test/merges","archive_url":"https://api.github.com/repos/ErshKUS/test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ErshKUS/test/downloads","issues_url":"https://api.github.com/repos/ErshKUS/test/issues{/number}","pulls_url":"https://api.github.com/repos/ErshKUS/test/pulls{/number}","milestones_url":"https://api.github.com/repos/ErshKUS/test/milestones{/number}","notifications_url":"https://api.github.com/repos/ErshKUS/test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ErshKUS/test/labels{/name}","releases_url":"https://api.github.com/repos/ErshKUS/test/releases{/id}","created_at":"2011-08-03T10:52:46Z","updated_at":"2014-12-31T08:31:09Z","pushed_at":"2015-01-01T15:04:38Z","git_url":"git://github.com/ErshKUS/test.git","ssh_url":"git@github.com:ErshKUS/test.git","clone_url":"https://github.com/ErshKUS/test.git","svn_url":"https://github.com/ErshKUS/test","homepage":"","size":152,"stargazers_count":1,"watchers_count":1,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":1,"forks":1,"open_issues":1,"watchers":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/5"},"html":{"href":"https://github.com/ErshKUS/test/pull/5"},"issue":{"href":"https://api.github.com/repos/ErshKUS/test/issues/5"},"comments":{"href":"https://api.github.com/repos/ErshKUS/test/issues/5/comments"},"review_comments":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/5/comments"},"review_comment":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/5/commits"},"statuses":{"href":"https://api.github.com/repos/ErshKUS/test/statuses/82eb48a21dc4f02e1502175c8daa669806a4a36e"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":2,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:16:33Z"} +,{"id":"2489658736","type":"IssuesEvent","actor":{"id":10134635,"login":"BoggLog","gravatar_id":"","url":"https://api.github.com/users/BoggLog","avatar_url":"https://avatars.githubusercontent.com/u/10134635?"},"repo":{"id":4248640,"name":"wiremod/wire","url":"https://api.github.com/repos/wiremod/wire"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/wiremod/wire/issues/777","labels_url":"https://api.github.com/repos/wiremod/wire/issues/777/labels{/name}","comments_url":"https://api.github.com/repos/wiremod/wire/issues/777/comments","events_url":"https://api.github.com/repos/wiremod/wire/issues/777/events","html_url":"https://github.com/wiremod/wire/issues/777","id":53221672,"number":777,"title":"Option to protect E2 code","user":{"login":"BoggLog","id":10134635,"avatar_url":"https://avatars.githubusercontent.com/u/10134635?v=3","gravatar_id":"","url":"https://api.github.com/users/BoggLog","html_url":"https://github.com/BoggLog","followers_url":"https://api.github.com/users/BoggLog/followers","following_url":"https://api.github.com/users/BoggLog/following{/other_user}","gists_url":"https://api.github.com/users/BoggLog/gists{/gist_id}","starred_url":"https://api.github.com/users/BoggLog/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BoggLog/subscriptions","organizations_url":"https://api.github.com/users/BoggLog/orgs","repos_url":"https://api.github.com/users/BoggLog/repos","events_url":"https://api.github.com/users/BoggLog/events{/privacy}","received_events_url":"https://api.github.com/users/BoggLog/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:16:34Z","updated_at":"2015-01-01T15:16:34Z","closed_at":null,"body":"I can't think of cases when anybody could want admins/owner or anybody else excluding, maybe, friends, to copy his e2 without any questions, requests, etc. Especially if he worked on it for months or even years... Yeah, there are some kind of ways to \"protect\", like adding \"if(duped())...\", \"if(owner():steamID!=\"...\")...\", but they all are just too easy to overcome. Last month some of my e2s I was working on were copied for at least 4 times, and I don't wanna see them released by some thief poorly modified...\r\nSo, I am currently thinking of how can I protect my codes, and the best way I found is:\r\n1. obfuscating e2 on client just before sending to server, \r\n2. including e2 code to protect from executing by another owner, encoded and hardly visible\r\n3. making it impossible for owners/admins/anybody not allowed to read your code or dupe the e2\r\n\r\nAnd I suggest adding (1) and (3) to wiremod (obfuscation can be optional in e2 settings). Also, think about adv.dupe. I think, owners and admins must be able to delete anything, but there must be no way to copy others stuff for them. And the harder it will be to overcome the better."}},"public":true,"created_at":"2015-01-01T15:16:34Z","org":{"id":113164,"login":"wiremod","gravatar_id":"","url":"https://api.github.com/orgs/wiremod","avatar_url":"https://avatars.githubusercontent.com/u/113164?"}} +,{"id":"2489658741","type":"CreateEvent","actor":{"id":1815841,"login":"luckistmaomao","gravatar_id":"","url":"https://api.github.com/users/luckistmaomao","avatar_url":"https://avatars.githubusercontent.com/u/1815841?"},"repo":{"id":28688834,"name":"luckistmaomao/KaggleCTR","url":"https://api.github.com/repos/luckistmaomao/KaggleCTR"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:34Z"} +,{"id":"2489658745","type":"PushEvent","actor":{"id":1370209,"login":"filfat","gravatar_id":"","url":"https://api.github.com/users/filfat","avatar_url":"https://avatars.githubusercontent.com/u/1370209?"},"repo":{"id":26833497,"name":"DownloadMii/DownloadMii-Website","url":"https://api.github.com/repos/DownloadMii/DownloadMii-Website"},"payload":{"push_id":536867434,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e75c5a77278ef5cc13b1e15450d0943a22d00a59","before":"ba2a405f95bf752dafac5a2d7b8acd5397d4daca","commits":[{"sha":"e75c5a77278ef5cc13b1e15450d0943a22d00a59","author":{"email":"b66032b25135812b5296adc85b43c011cdadb170@hotmail.se","name":"Filiph Sandström"},"message":"Update .user.ini","distinct":true,"url":"https://api.github.com/repos/DownloadMii/DownloadMii-Website/commits/e75c5a77278ef5cc13b1e15450d0943a22d00a59"}]},"public":true,"created_at":"2015-01-01T15:16:35Z","org":{"id":9831921,"login":"DownloadMii","gravatar_id":"","url":"https://api.github.com/orgs/DownloadMii","avatar_url":"https://avatars.githubusercontent.com/u/9831921?"}} +,{"id":"2489658746","type":"PullRequestEvent","actor":{"id":116915,"login":"ayende","gravatar_id":"","url":"https://api.github.com/users/ayende","avatar_url":"https://avatars.githubusercontent.com/u/116915?"},"repo":{"id":904641,"name":"ayende/ravendb","url":"https://api.github.com/repos/ayende/ravendb"},"payload":{"action":"closed","number":1763,"pull_request":{"url":"https://api.github.com/repos/ayende/ravendb/pulls/1763","id":26742512,"html_url":"https://github.com/ayende/ravendb/pull/1763","diff_url":"https://github.com/ayende/ravendb/pull/1763.diff","patch_url":"https://github.com/ayende/ravendb/pull/1763.patch","issue_url":"https://api.github.com/repos/ayende/ravendb/issues/1763","number":1763,"state":"closed","locked":false,"title":"Adding the missing test for id generation in sharded environment ","user":{"login":"talweiss1982","id":8511829,"avatar_url":"https://avatars.githubusercontent.com/u/8511829?v=3","gravatar_id":"","url":"https://api.github.com/users/talweiss1982","html_url":"https://github.com/talweiss1982","followers_url":"https://api.github.com/users/talweiss1982/followers","following_url":"https://api.github.com/users/talweiss1982/following{/other_user}","gists_url":"https://api.github.com/users/talweiss1982/gists{/gist_id}","starred_url":"https://api.github.com/users/talweiss1982/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/talweiss1982/subscriptions","organizations_url":"https://api.github.com/users/talweiss1982/orgs","repos_url":"https://api.github.com/users/talweiss1982/repos","events_url":"https://api.github.com/users/talweiss1982/events{/privacy}","received_events_url":"https://api.github.com/users/talweiss1982/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T11:49:34Z","updated_at":"2015-01-01T15:16:35Z","closed_at":"2015-01-01T15:16:35Z","merged_at":"2015-01-01T15:16:35Z","merge_commit_sha":"49c27639e9a9bbc559ef4dbc4d38cec753b269dc","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/ayende/ravendb/pulls/1763/commits","review_comments_url":"https://api.github.com/repos/ayende/ravendb/pulls/1763/comments","review_comment_url":"https://api.github.com/repos/ayende/ravendb/pulls/comments/{number}","comments_url":"https://api.github.com/repos/ayende/ravendb/issues/1763/comments","statuses_url":"https://api.github.com/repos/ayende/ravendb/statuses/6df307148ab979db529cfc15d1b8f9ec8118681b","head":{"label":"talweiss1982:master","ref":"master","sha":"6df307148ab979db529cfc15d1b8f9ec8118681b","user":{"login":"talweiss1982","id":8511829,"avatar_url":"https://avatars.githubusercontent.com/u/8511829?v=3","gravatar_id":"","url":"https://api.github.com/users/talweiss1982","html_url":"https://github.com/talweiss1982","followers_url":"https://api.github.com/users/talweiss1982/followers","following_url":"https://api.github.com/users/talweiss1982/following{/other_user}","gists_url":"https://api.github.com/users/talweiss1982/gists{/gist_id}","starred_url":"https://api.github.com/users/talweiss1982/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/talweiss1982/subscriptions","organizations_url":"https://api.github.com/users/talweiss1982/orgs","repos_url":"https://api.github.com/users/talweiss1982/repos","events_url":"https://api.github.com/users/talweiss1982/events{/privacy}","received_events_url":"https://api.github.com/users/talweiss1982/received_events","type":"User","site_admin":false},"repo":{"id":25456966,"name":"ravendb","full_name":"talweiss1982/ravendb","owner":{"login":"talweiss1982","id":8511829,"avatar_url":"https://avatars.githubusercontent.com/u/8511829?v=3","gravatar_id":"","url":"https://api.github.com/users/talweiss1982","html_url":"https://github.com/talweiss1982","followers_url":"https://api.github.com/users/talweiss1982/followers","following_url":"https://api.github.com/users/talweiss1982/following{/other_user}","gists_url":"https://api.github.com/users/talweiss1982/gists{/gist_id}","starred_url":"https://api.github.com/users/talweiss1982/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/talweiss1982/subscriptions","organizations_url":"https://api.github.com/users/talweiss1982/orgs","repos_url":"https://api.github.com/users/talweiss1982/repos","events_url":"https://api.github.com/users/talweiss1982/events{/privacy}","received_events_url":"https://api.github.com/users/talweiss1982/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/talweiss1982/ravendb","description":"A linq enabled document database for .NET","fork":true,"url":"https://api.github.com/repos/talweiss1982/ravendb","forks_url":"https://api.github.com/repos/talweiss1982/ravendb/forks","keys_url":"https://api.github.com/repos/talweiss1982/ravendb/keys{/key_id}","collaborators_url":"https://api.github.com/repos/talweiss1982/ravendb/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/talweiss1982/ravendb/teams","hooks_url":"https://api.github.com/repos/talweiss1982/ravendb/hooks","issue_events_url":"https://api.github.com/repos/talweiss1982/ravendb/issues/events{/number}","events_url":"https://api.github.com/repos/talweiss1982/ravendb/events","assignees_url":"https://api.github.com/repos/talweiss1982/ravendb/assignees{/user}","branches_url":"https://api.github.com/repos/talweiss1982/ravendb/branches{/branch}","tags_url":"https://api.github.com/repos/talweiss1982/ravendb/tags","blobs_url":"https://api.github.com/repos/talweiss1982/ravendb/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/talweiss1982/ravendb/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/talweiss1982/ravendb/git/refs{/sha}","trees_url":"https://api.github.com/repos/talweiss1982/ravendb/git/trees{/sha}","statuses_url":"https://api.github.com/repos/talweiss1982/ravendb/statuses/{sha}","languages_url":"https://api.github.com/repos/talweiss1982/ravendb/languages","stargazers_url":"https://api.github.com/repos/talweiss1982/ravendb/stargazers","contributors_url":"https://api.github.com/repos/talweiss1982/ravendb/contributors","subscribers_url":"https://api.github.com/repos/talweiss1982/ravendb/subscribers","subscription_url":"https://api.github.com/repos/talweiss1982/ravendb/subscription","commits_url":"https://api.github.com/repos/talweiss1982/ravendb/commits{/sha}","git_commits_url":"https://api.github.com/repos/talweiss1982/ravendb/git/commits{/sha}","comments_url":"https://api.github.com/repos/talweiss1982/ravendb/comments{/number}","issue_comment_url":"https://api.github.com/repos/talweiss1982/ravendb/issues/comments/{number}","contents_url":"https://api.github.com/repos/talweiss1982/ravendb/contents/{+path}","compare_url":"https://api.github.com/repos/talweiss1982/ravendb/compare/{base}...{head}","merges_url":"https://api.github.com/repos/talweiss1982/ravendb/merges","archive_url":"https://api.github.com/repos/talweiss1982/ravendb/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/talweiss1982/ravendb/downloads","issues_url":"https://api.github.com/repos/talweiss1982/ravendb/issues{/number}","pulls_url":"https://api.github.com/repos/talweiss1982/ravendb/pulls{/number}","milestones_url":"https://api.github.com/repos/talweiss1982/ravendb/milestones{/number}","notifications_url":"https://api.github.com/repos/talweiss1982/ravendb/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/talweiss1982/ravendb/labels{/name}","releases_url":"https://api.github.com/repos/talweiss1982/ravendb/releases{/id}","created_at":"2014-10-20T08:14:04Z","updated_at":"2015-01-01T11:47:39Z","pushed_at":"2015-01-01T11:47:38Z","git_url":"git://github.com/talweiss1982/ravendb.git","ssh_url":"git@github.com:talweiss1982/ravendb.git","clone_url":"https://github.com/talweiss1982/ravendb.git","svn_url":"https://github.com/talweiss1982/ravendb","homepage":"http://ayende.com/Blog/","size":289335,"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":"ayende:master","ref":"master","sha":"c5387833eb930eb0b754a66d4f00fc606290cb3a","user":{"login":"ayende","id":116915,"avatar_url":"https://avatars.githubusercontent.com/u/116915?v=3","gravatar_id":"","url":"https://api.github.com/users/ayende","html_url":"https://github.com/ayende","followers_url":"https://api.github.com/users/ayende/followers","following_url":"https://api.github.com/users/ayende/following{/other_user}","gists_url":"https://api.github.com/users/ayende/gists{/gist_id}","starred_url":"https://api.github.com/users/ayende/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ayende/subscriptions","organizations_url":"https://api.github.com/users/ayende/orgs","repos_url":"https://api.github.com/users/ayende/repos","events_url":"https://api.github.com/users/ayende/events{/privacy}","received_events_url":"https://api.github.com/users/ayende/received_events","type":"User","site_admin":false},"repo":{"id":904641,"name":"ravendb","full_name":"ayende/ravendb","owner":{"login":"ayende","id":116915,"avatar_url":"https://avatars.githubusercontent.com/u/116915?v=3","gravatar_id":"","url":"https://api.github.com/users/ayende","html_url":"https://github.com/ayende","followers_url":"https://api.github.com/users/ayende/followers","following_url":"https://api.github.com/users/ayende/following{/other_user}","gists_url":"https://api.github.com/users/ayende/gists{/gist_id}","starred_url":"https://api.github.com/users/ayende/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ayende/subscriptions","organizations_url":"https://api.github.com/users/ayende/orgs","repos_url":"https://api.github.com/users/ayende/repos","events_url":"https://api.github.com/users/ayende/events{/privacy}","received_events_url":"https://api.github.com/users/ayende/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ayende/ravendb","description":"A linq enabled document database for .NET","fork":true,"url":"https://api.github.com/repos/ayende/ravendb","forks_url":"https://api.github.com/repos/ayende/ravendb/forks","keys_url":"https://api.github.com/repos/ayende/ravendb/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ayende/ravendb/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ayende/ravendb/teams","hooks_url":"https://api.github.com/repos/ayende/ravendb/hooks","issue_events_url":"https://api.github.com/repos/ayende/ravendb/issues/events{/number}","events_url":"https://api.github.com/repos/ayende/ravendb/events","assignees_url":"https://api.github.com/repos/ayende/ravendb/assignees{/user}","branches_url":"https://api.github.com/repos/ayende/ravendb/branches{/branch}","tags_url":"https://api.github.com/repos/ayende/ravendb/tags","blobs_url":"https://api.github.com/repos/ayende/ravendb/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ayende/ravendb/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ayende/ravendb/git/refs{/sha}","trees_url":"https://api.github.com/repos/ayende/ravendb/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ayende/ravendb/statuses/{sha}","languages_url":"https://api.github.com/repos/ayende/ravendb/languages","stargazers_url":"https://api.github.com/repos/ayende/ravendb/stargazers","contributors_url":"https://api.github.com/repos/ayende/ravendb/contributors","subscribers_url":"https://api.github.com/repos/ayende/ravendb/subscribers","subscription_url":"https://api.github.com/repos/ayende/ravendb/subscription","commits_url":"https://api.github.com/repos/ayende/ravendb/commits{/sha}","git_commits_url":"https://api.github.com/repos/ayende/ravendb/git/commits{/sha}","comments_url":"https://api.github.com/repos/ayende/ravendb/comments{/number}","issue_comment_url":"https://api.github.com/repos/ayende/ravendb/issues/comments/{number}","contents_url":"https://api.github.com/repos/ayende/ravendb/contents/{+path}","compare_url":"https://api.github.com/repos/ayende/ravendb/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ayende/ravendb/merges","archive_url":"https://api.github.com/repos/ayende/ravendb/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ayende/ravendb/downloads","issues_url":"https://api.github.com/repos/ayende/ravendb/issues{/number}","pulls_url":"https://api.github.com/repos/ayende/ravendb/pulls{/number}","milestones_url":"https://api.github.com/repos/ayende/ravendb/milestones{/number}","notifications_url":"https://api.github.com/repos/ayende/ravendb/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ayende/ravendb/labels{/name}","releases_url":"https://api.github.com/repos/ayende/ravendb/releases{/id}","created_at":"2010-09-12T05:30:13Z","updated_at":"2015-01-01T10:04:48Z","pushed_at":"2015-01-01T15:16:35Z","git_url":"git://github.com/ayende/ravendb.git","ssh_url":"git@github.com:ayende/ravendb.git","clone_url":"https://github.com/ayende/ravendb.git","svn_url":"https://github.com/ayende/ravendb","homepage":"http://ayende.com/Blog/","size":642939,"stargazers_count":268,"watchers_count":268,"language":"C#","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":134,"mirror_url":null,"open_issues_count":0,"forks":134,"open_issues":0,"watchers":268,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/ayende/ravendb/pulls/1763"},"html":{"href":"https://github.com/ayende/ravendb/pull/1763"},"issue":{"href":"https://api.github.com/repos/ayende/ravendb/issues/1763"},"comments":{"href":"https://api.github.com/repos/ayende/ravendb/issues/1763/comments"},"review_comments":{"href":"https://api.github.com/repos/ayende/ravendb/pulls/1763/comments"},"review_comment":{"href":"https://api.github.com/repos/ayende/ravendb/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/ayende/ravendb/pulls/1763/commits"},"statuses":{"href":"https://api.github.com/repos/ayende/ravendb/statuses/6df307148ab979db529cfc15d1b8f9ec8118681b"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"ayende","id":116915,"avatar_url":"https://avatars.githubusercontent.com/u/116915?v=3","gravatar_id":"","url":"https://api.github.com/users/ayende","html_url":"https://github.com/ayende","followers_url":"https://api.github.com/users/ayende/followers","following_url":"https://api.github.com/users/ayende/following{/other_user}","gists_url":"https://api.github.com/users/ayende/gists{/gist_id}","starred_url":"https://api.github.com/users/ayende/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ayende/subscriptions","organizations_url":"https://api.github.com/users/ayende/orgs","repos_url":"https://api.github.com/users/ayende/repos","events_url":"https://api.github.com/users/ayende/events{/privacy}","received_events_url":"https://api.github.com/users/ayende/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":2,"additions":87,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:16:35Z"} +,{"id":"2489658748","type":"PushEvent","actor":{"id":116915,"login":"ayende","gravatar_id":"","url":"https://api.github.com/users/ayende","avatar_url":"https://avatars.githubusercontent.com/u/116915?"},"repo":{"id":904641,"name":"ayende/ravendb","url":"https://api.github.com/repos/ayende/ravendb"},"payload":{"push_id":536867436,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"6df307148ab979db529cfc15d1b8f9ec8118681b","before":"c5387833eb930eb0b754a66d4f00fc606290cb3a","commits":[{"sha":"8fb859eecb603e5aee918077d4d6c509334b24b7","author":{"email":"6eb24f54eaf746d3a75dcf63a64261574d2f3aa0@ayende.com","name":"Tal Weiss"},"message":"adding missing test ShardedIdGenerationTest","distinct":true,"url":"https://api.github.com/repos/ayende/ravendb/commits/8fb859eecb603e5aee918077d4d6c509334b24b7"},{"sha":"6df307148ab979db529cfc15d1b8f9ec8118681b","author":{"email":"6eb24f54eaf746d3a75dcf63a64261574d2f3aa0@ayende.com","name":"Tal Weiss"},"message":"Merge branch 'master' of https://github.com/ayende/ravendb","distinct":true,"url":"https://api.github.com/repos/ayende/ravendb/commits/6df307148ab979db529cfc15d1b8f9ec8118681b"}]},"public":true,"created_at":"2015-01-01T15:16:36Z"} +,{"id":"2489658750","type":"ForkEvent","actor":{"id":674674,"login":"shuhongwu","gravatar_id":"","url":"https://api.github.com/users/shuhongwu","avatar_url":"https://avatars.githubusercontent.com/u/674674?"},"repo":{"id":3287591,"name":"lpereira/lwan","url":"https://api.github.com/repos/lpereira/lwan"},"payload":{"forkee":{"id":28688905,"name":"lwan","full_name":"shuhongwu/lwan","owner":{"login":"shuhongwu","id":674674,"avatar_url":"https://avatars.githubusercontent.com/u/674674?v=3","gravatar_id":"","url":"https://api.github.com/users/shuhongwu","html_url":"https://github.com/shuhongwu","followers_url":"https://api.github.com/users/shuhongwu/followers","following_url":"https://api.github.com/users/shuhongwu/following{/other_user}","gists_url":"https://api.github.com/users/shuhongwu/gists{/gist_id}","starred_url":"https://api.github.com/users/shuhongwu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shuhongwu/subscriptions","organizations_url":"https://api.github.com/users/shuhongwu/orgs","repos_url":"https://api.github.com/users/shuhongwu/repos","events_url":"https://api.github.com/users/shuhongwu/events{/privacy}","received_events_url":"https://api.github.com/users/shuhongwu/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/shuhongwu/lwan","description":"Experimental, scalable, high performance HTTP server","fork":true,"url":"https://api.github.com/repos/shuhongwu/lwan","forks_url":"https://api.github.com/repos/shuhongwu/lwan/forks","keys_url":"https://api.github.com/repos/shuhongwu/lwan/keys{/key_id}","collaborators_url":"https://api.github.com/repos/shuhongwu/lwan/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/shuhongwu/lwan/teams","hooks_url":"https://api.github.com/repos/shuhongwu/lwan/hooks","issue_events_url":"https://api.github.com/repos/shuhongwu/lwan/issues/events{/number}","events_url":"https://api.github.com/repos/shuhongwu/lwan/events","assignees_url":"https://api.github.com/repos/shuhongwu/lwan/assignees{/user}","branches_url":"https://api.github.com/repos/shuhongwu/lwan/branches{/branch}","tags_url":"https://api.github.com/repos/shuhongwu/lwan/tags","blobs_url":"https://api.github.com/repos/shuhongwu/lwan/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/shuhongwu/lwan/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/shuhongwu/lwan/git/refs{/sha}","trees_url":"https://api.github.com/repos/shuhongwu/lwan/git/trees{/sha}","statuses_url":"https://api.github.com/repos/shuhongwu/lwan/statuses/{sha}","languages_url":"https://api.github.com/repos/shuhongwu/lwan/languages","stargazers_url":"https://api.github.com/repos/shuhongwu/lwan/stargazers","contributors_url":"https://api.github.com/repos/shuhongwu/lwan/contributors","subscribers_url":"https://api.github.com/repos/shuhongwu/lwan/subscribers","subscription_url":"https://api.github.com/repos/shuhongwu/lwan/subscription","commits_url":"https://api.github.com/repos/shuhongwu/lwan/commits{/sha}","git_commits_url":"https://api.github.com/repos/shuhongwu/lwan/git/commits{/sha}","comments_url":"https://api.github.com/repos/shuhongwu/lwan/comments{/number}","issue_comment_url":"https://api.github.com/repos/shuhongwu/lwan/issues/comments/{number}","contents_url":"https://api.github.com/repos/shuhongwu/lwan/contents/{+path}","compare_url":"https://api.github.com/repos/shuhongwu/lwan/compare/{base}...{head}","merges_url":"https://api.github.com/repos/shuhongwu/lwan/merges","archive_url":"https://api.github.com/repos/shuhongwu/lwan/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/shuhongwu/lwan/downloads","issues_url":"https://api.github.com/repos/shuhongwu/lwan/issues{/number}","pulls_url":"https://api.github.com/repos/shuhongwu/lwan/pulls{/number}","milestones_url":"https://api.github.com/repos/shuhongwu/lwan/milestones{/number}","notifications_url":"https://api.github.com/repos/shuhongwu/lwan/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/shuhongwu/lwan/labels{/name}","releases_url":"https://api.github.com/repos/shuhongwu/lwan/releases{/id}","created_at":"2015-01-01T15:16:36Z","updated_at":"2015-01-01T13:15:04Z","pushed_at":"2014-12-31T12:25:13Z","git_url":"git://github.com/shuhongwu/lwan.git","ssh_url":"git@github.com:shuhongwu/lwan.git","clone_url":"https://github.com/shuhongwu/lwan.git","svn_url":"https://github.com/shuhongwu/lwan","homepage":"http://lwan.ws","size":3551,"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:16:36Z"} +,{"id":"2489658753","type":"WatchEvent","actor":{"id":1036152,"login":"rocLv","gravatar_id":"","url":"https://api.github.com/users/rocLv","avatar_url":"https://avatars.githubusercontent.com/u/1036152?"},"repo":{"id":1039520,"name":"rg3/youtube-dl","url":"https://api.github.com/repos/rg3/youtube-dl"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:16:37Z"} +,{"id":"2489658759","type":"PushEvent","actor":{"id":6280692,"login":"madrick001","gravatar_id":"","url":"https://api.github.com/users/madrick001","avatar_url":"https://avatars.githubusercontent.com/u/6280692?"},"repo":{"id":28688701,"name":"madrick001/crocode-sandbox","url":"https://api.github.com/repos/madrick001/crocode-sandbox"},"payload":{"push_id":536867439,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"322f2ee5605a3331b3fe0c46839be695908e1d56","before":"289742deafedd7e303ab049fed401a2d90fbc47b","commits":[{"sha":"322f2ee5605a3331b3fe0c46839be695908e1d56","author":{"email":"6ca5485de4758f298fca94572cef95c4239d6b7f","name":"Achmad Ricky Budianto"},"message":"Creating a project\n\nCreating a project with codeigniter framework","distinct":true,"url":"https://api.github.com/repos/madrick001/crocode-sandbox/commits/322f2ee5605a3331b3fe0c46839be695908e1d56"}]},"public":true,"created_at":"2015-01-01T15:16:38Z"} +,{"id":"2489658762","type":"IssueCommentEvent","actor":{"id":4761614,"login":"SylvainPlessis","gravatar_id":"","url":"https://api.github.com/users/SylvainPlessis","avatar_url":"https://avatars.githubusercontent.com/u/4761614?"},"repo":{"id":11007288,"name":"libantioch/antioch","url":"https://api.github.com/repos/libantioch/antioch"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/libantioch/antioch/issues/72","labels_url":"https://api.github.com/repos/libantioch/antioch/issues/72/labels{/name}","comments_url":"https://api.github.com/repos/libantioch/antioch/issues/72/comments","events_url":"https://api.github.com/repos/libantioch/antioch/issues/72/events","html_url":"https://github.com/libantioch/antioch/pull/72","id":37911605,"number":72,"title":"Input parsing formats","user":{"login":"SylvainPlessis","id":4761614,"avatar_url":"https://avatars.githubusercontent.com/u/4761614?v=3","gravatar_id":"","url":"https://api.github.com/users/SylvainPlessis","html_url":"https://github.com/SylvainPlessis","followers_url":"https://api.github.com/users/SylvainPlessis/followers","following_url":"https://api.github.com/users/SylvainPlessis/following{/other_user}","gists_url":"https://api.github.com/users/SylvainPlessis/gists{/gist_id}","starred_url":"https://api.github.com/users/SylvainPlessis/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SylvainPlessis/subscriptions","organizations_url":"https://api.github.com/users/SylvainPlessis/orgs","repos_url":"https://api.github.com/users/SylvainPlessis/repos","events_url":"https://api.github.com/users/SylvainPlessis/events{/privacy}","received_events_url":"https://api.github.com/users/SylvainPlessis/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":24,"created_at":"2014-07-15T18:26:05Z","updated_at":"2015-01-01T15:16:39Z","closed_at":"2015-01-01T04:23:26Z","pull_request":{"url":"https://api.github.com/repos/libantioch/antioch/pulls/72","html_url":"https://github.com/libantioch/antioch/pull/72","diff_url":"https://github.com/libantioch/antioch/pull/72.diff","patch_url":"https://github.com/libantioch/antioch/pull/72.patch"},"body":"Here is the chemkin parser in the new parsing design.\r\nThere are two/three levels in this design:\r\n - the read_reaction_data, templated around a parser\r\n - the parser itself,\r\n - if needed, low-level methods for the parsers (tiny_xml for the xml parser, none needed for chemkin)\r\n\r\nThe global high-level method is somewhat clumsy, a little bit too much adapted to the xml parser, nothing really serious, but I keep an option to make it more elegant and standardize a bit more the parsers.\r\nA noteworthy thing is that though it's not paranoid (yet), it already won't let a parser get away with a bad unit or bad representation, this is a good point for any parser wanted in the future, there is no need to know in details what's happening to have something that works cleanly.\r\n\r\nThe chemkin parser is not exhaustive, but it's fully operable with the file I have from combustion (added in the inputs for the test) and others I've seen Basically you'll have ``standard'' kinetics with it. I've finally choose the option to write it almost from scratch, please have a look at the *ascii_getline* method (src/utilities/include/antioch/string_utils.h). It's basically a *getline* method that deals with the different end-of-line a file can contain, and clearly the chemkin file I had started its life on Windows. This is something to be expected I guess. Anyway, I want at the very least an approval of this method before anything happens.\r\n\r\nAlso it lacks a little bit of documentation, stating for instance that no photochemistry is supported by the chemkin parser, that the weird SRI falloff is not supported either, stuffs like that we might want to deal with in the futur."},"comment":{"url":"https://api.github.com/repos/libantioch/antioch/issues/comments/68488842","html_url":"https://github.com/libantioch/antioch/pull/72#issuecomment-68488842","issue_url":"https://api.github.com/repos/libantioch/antioch/issues/72","id":68488842,"user":{"login":"SylvainPlessis","id":4761614,"avatar_url":"https://avatars.githubusercontent.com/u/4761614?v=3","gravatar_id":"","url":"https://api.github.com/users/SylvainPlessis","html_url":"https://github.com/SylvainPlessis","followers_url":"https://api.github.com/users/SylvainPlessis/followers","following_url":"https://api.github.com/users/SylvainPlessis/following{/other_user}","gists_url":"https://api.github.com/users/SylvainPlessis/gists{/gist_id}","starred_url":"https://api.github.com/users/SylvainPlessis/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SylvainPlessis/subscriptions","organizations_url":"https://api.github.com/users/SylvainPlessis/orgs","repos_url":"https://api.github.com/users/SylvainPlessis/repos","events_url":"https://api.github.com/users/SylvainPlessis/events{/privacy}","received_events_url":"https://api.github.com/users/SylvainPlessis/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:16:38Z","updated_at":"2015-01-01T15:16:38Z","body":"And note also that you need the falloff three body bastard (PR #98) to make it run as expected. At first I though it was a mistake or a convenience to switch from falloff to three-body (it actually returns an error), but it turned out to be a blaspheme we should support."}},"public":true,"created_at":"2015-01-01T15:16:39Z","org":{"id":4841271,"login":"libantioch","gravatar_id":"","url":"https://api.github.com/orgs/libantioch","avatar_url":"https://avatars.githubusercontent.com/u/4841271?"}} +,{"id":"2489658763","type":"PushEvent","actor":{"id":2539292,"login":"wmfgerrit","gravatar_id":"","url":"https://api.github.com/users/wmfgerrit","avatar_url":"https://avatars.githubusercontent.com/u/2539292?"},"repo":{"id":6495082,"name":"wikimedia/mediawiki-extensions","url":"https://api.github.com/repos/wikimedia/mediawiki-extensions"},"payload":{"push_id":536867441,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8ba2aa971a45f849ada1d9cc7481dce434f370e5","before":"3a3eb7fc1481c2839afcc9834f307941d0eba842","commits":[{"sha":"8ba2aa971a45f849ada1d9cc7481dce434f370e5","author":{"email":"81ecf282caf36c4650876909892470b2e210afed@mail.huji.ac.il","name":"Amir E. Aharoni"},"message":"Updated mediawiki/extensions\nProject: mediawiki/extensions/ContentTranslation 27feea05f6fb9d451eb7b1c5cee6825af09532c6\n\nCleanup whitespace in CXSourceSelector.prototype.check\n\nMake deeply nested callbacks more readable.\n\nChange-Id: I70789ac04e97c83a561245102bdc710fceb53ab3","distinct":true,"url":"https://api.github.com/repos/wikimedia/mediawiki-extensions/commits/8ba2aa971a45f849ada1d9cc7481dce434f370e5"}]},"public":true,"created_at":"2015-01-01T15:16:39Z","org":{"id":56668,"login":"wikimedia","gravatar_id":"","url":"https://api.github.com/orgs/wikimedia","avatar_url":"https://avatars.githubusercontent.com/u/56668?"}} +,{"id":"2489658764","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":536867442,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"38c1e57364ee0711a9366a124755b022e9881d39","before":"c07652a8995f4d69b69f7fe003c285add253a73d","commits":[{"sha":"38c1e57364ee0711a9366a124755b022e9881d39","author":{"email":"87c01f2a11d6af298dcc61e432606186023760d0@gmail.com","name":"Eric Hartmann"},"message":"Change Favicon","distinct":true,"url":"https://api.github.com/repos/ElsaBonnaud/WebSite/commits/38c1e57364ee0711a9366a124755b022e9881d39"}]},"public":true,"created_at":"2015-01-01T15:16:39Z"} +,{"id":"2489658767","type":"PushEvent","actor":{"id":761880,"login":"varavan","gravatar_id":"","url":"https://api.github.com/users/varavan","avatar_url":"https://avatars.githubusercontent.com/u/761880?"},"repo":{"id":28665872,"name":"varavan/peerjs-server","url":"https://api.github.com/repos/varavan/peerjs-server"},"payload":{"push_id":536867445,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"faf2c8cf79a38f04c3d830a0342a9c43e609e235","before":"9e9e3840c51912213501e8fd80ac99a005799ec9","commits":[{"sha":"faf2c8cf79a38f04c3d830a0342a9c43e609e235","author":{"email":"7ca9aa097393f67187fe9505d4c0c50f578444db@gmail.com","name":"Ivan Ruiz"},"message":"Remove client if id exist","distinct":true,"url":"https://api.github.com/repos/varavan/peerjs-server/commits/faf2c8cf79a38f04c3d830a0342a9c43e609e235"}]},"public":true,"created_at":"2015-01-01T15:16:40Z"} +,{"id":"2489658768","type":"WatchEvent","actor":{"id":5177724,"login":"ansiboy","gravatar_id":"","url":"https://api.github.com/users/ansiboy","avatar_url":"https://avatars.githubusercontent.com/u/5177724?"},"repo":{"id":3721224,"name":"nolimits4web/Swiper","url":"https://api.github.com/repos/nolimits4web/Swiper"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:16:40Z"} +,{"id":"2489658770","type":"PullRequestEvent","actor":{"id":769992,"login":"f0rmat1k","gravatar_id":"","url":"https://api.github.com/users/f0rmat1k","avatar_url":"https://avatars.githubusercontent.com/u/769992?"},"repo":{"id":28394324,"name":"y-components/y-button","url":"https://api.github.com/repos/y-components/y-button"},"payload":{"action":"opened","number":11,"pull_request":{"url":"https://api.github.com/repos/y-components/y-button/pulls/11","id":26743895,"html_url":"https://github.com/y-components/y-button/pull/11","diff_url":"https://github.com/y-components/y-button/pull/11.diff","patch_url":"https://github.com/y-components/y-button/pull/11.patch","issue_url":"https://api.github.com/repos/y-components/y-button/issues/11","number":11,"state":"open","locked":false,"title":"Add round-side support #4","user":{"login":"f0rmat1k","id":769992,"avatar_url":"https://avatars.githubusercontent.com/u/769992?v=3","gravatar_id":"","url":"https://api.github.com/users/f0rmat1k","html_url":"https://github.com/f0rmat1k","followers_url":"https://api.github.com/users/f0rmat1k/followers","following_url":"https://api.github.com/users/f0rmat1k/following{/other_user}","gists_url":"https://api.github.com/users/f0rmat1k/gists{/gist_id}","starred_url":"https://api.github.com/users/f0rmat1k/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/f0rmat1k/subscriptions","organizations_url":"https://api.github.com/users/f0rmat1k/orgs","repos_url":"https://api.github.com/users/f0rmat1k/repos","events_url":"https://api.github.com/users/f0rmat1k/events{/privacy}","received_events_url":"https://api.github.com/users/f0rmat1k/received_events","type":"User","site_admin":false},"body":"Closed #4 ","created_at":"2015-01-01T15:16:40Z","updated_at":"2015-01-01T15:16:40Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/y-components/y-button/pulls/11/commits","review_comments_url":"https://api.github.com/repos/y-components/y-button/pulls/11/comments","review_comment_url":"https://api.github.com/repos/y-components/y-button/pulls/comments/{number}","comments_url":"https://api.github.com/repos/y-components/y-button/issues/11/comments","statuses_url":"https://api.github.com/repos/y-components/y-button/statuses/f6a9db80632a1549cf27cdd9685f3c13294afef1","head":{"label":"f0rmat1k:master","ref":"master","sha":"f6a9db80632a1549cf27cdd9685f3c13294afef1","user":{"login":"f0rmat1k","id":769992,"avatar_url":"https://avatars.githubusercontent.com/u/769992?v=3","gravatar_id":"","url":"https://api.github.com/users/f0rmat1k","html_url":"https://github.com/f0rmat1k","followers_url":"https://api.github.com/users/f0rmat1k/followers","following_url":"https://api.github.com/users/f0rmat1k/following{/other_user}","gists_url":"https://api.github.com/users/f0rmat1k/gists{/gist_id}","starred_url":"https://api.github.com/users/f0rmat1k/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/f0rmat1k/subscriptions","organizations_url":"https://api.github.com/users/f0rmat1k/orgs","repos_url":"https://api.github.com/users/f0rmat1k/repos","events_url":"https://api.github.com/users/f0rmat1k/events{/privacy}","received_events_url":"https://api.github.com/users/f0rmat1k/received_events","type":"User","site_admin":false},"repo":{"id":28592187,"name":"y-button","full_name":"f0rmat1k/y-button","owner":{"login":"f0rmat1k","id":769992,"avatar_url":"https://avatars.githubusercontent.com/u/769992?v=3","gravatar_id":"","url":"https://api.github.com/users/f0rmat1k","html_url":"https://github.com/f0rmat1k","followers_url":"https://api.github.com/users/f0rmat1k/followers","following_url":"https://api.github.com/users/f0rmat1k/following{/other_user}","gists_url":"https://api.github.com/users/f0rmat1k/gists{/gist_id}","starred_url":"https://api.github.com/users/f0rmat1k/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/f0rmat1k/subscriptions","organizations_url":"https://api.github.com/users/f0rmat1k/orgs","repos_url":"https://api.github.com/users/f0rmat1k/repos","events_url":"https://api.github.com/users/f0rmat1k/events{/privacy}","received_events_url":"https://api.github.com/users/f0rmat1k/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/f0rmat1k/y-button","description":"","fork":true,"url":"https://api.github.com/repos/f0rmat1k/y-button","forks_url":"https://api.github.com/repos/f0rmat1k/y-button/forks","keys_url":"https://api.github.com/repos/f0rmat1k/y-button/keys{/key_id}","collaborators_url":"https://api.github.com/repos/f0rmat1k/y-button/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/f0rmat1k/y-button/teams","hooks_url":"https://api.github.com/repos/f0rmat1k/y-button/hooks","issue_events_url":"https://api.github.com/repos/f0rmat1k/y-button/issues/events{/number}","events_url":"https://api.github.com/repos/f0rmat1k/y-button/events","assignees_url":"https://api.github.com/repos/f0rmat1k/y-button/assignees{/user}","branches_url":"https://api.github.com/repos/f0rmat1k/y-button/branches{/branch}","tags_url":"https://api.github.com/repos/f0rmat1k/y-button/tags","blobs_url":"https://api.github.com/repos/f0rmat1k/y-button/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/f0rmat1k/y-button/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/f0rmat1k/y-button/git/refs{/sha}","trees_url":"https://api.github.com/repos/f0rmat1k/y-button/git/trees{/sha}","statuses_url":"https://api.github.com/repos/f0rmat1k/y-button/statuses/{sha}","languages_url":"https://api.github.com/repos/f0rmat1k/y-button/languages","stargazers_url":"https://api.github.com/repos/f0rmat1k/y-button/stargazers","contributors_url":"https://api.github.com/repos/f0rmat1k/y-button/contributors","subscribers_url":"https://api.github.com/repos/f0rmat1k/y-button/subscribers","subscription_url":"https://api.github.com/repos/f0rmat1k/y-button/subscription","commits_url":"https://api.github.com/repos/f0rmat1k/y-button/commits{/sha}","git_commits_url":"https://api.github.com/repos/f0rmat1k/y-button/git/commits{/sha}","comments_url":"https://api.github.com/repos/f0rmat1k/y-button/comments{/number}","issue_comment_url":"https://api.github.com/repos/f0rmat1k/y-button/issues/comments/{number}","contents_url":"https://api.github.com/repos/f0rmat1k/y-button/contents/{+path}","compare_url":"https://api.github.com/repos/f0rmat1k/y-button/compare/{base}...{head}","merges_url":"https://api.github.com/repos/f0rmat1k/y-button/merges","archive_url":"https://api.github.com/repos/f0rmat1k/y-button/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/f0rmat1k/y-button/downloads","issues_url":"https://api.github.com/repos/f0rmat1k/y-button/issues{/number}","pulls_url":"https://api.github.com/repos/f0rmat1k/y-button/pulls{/number}","milestones_url":"https://api.github.com/repos/f0rmat1k/y-button/milestones{/number}","notifications_url":"https://api.github.com/repos/f0rmat1k/y-button/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/f0rmat1k/y-button/labels{/name}","releases_url":"https://api.github.com/repos/f0rmat1k/y-button/releases{/id}","created_at":"2014-12-29T12:52:51Z","updated_at":"2015-01-01T15:16:01Z","pushed_at":"2015-01-01T15:15:59Z","git_url":"git://github.com/f0rmat1k/y-button.git","ssh_url":"git@github.com:f0rmat1k/y-button.git","clone_url":"https://github.com/f0rmat1k/y-button.git","svn_url":"https://github.com/f0rmat1k/y-button","homepage":null,"size":135,"stargazers_count":0,"watchers_count":0,"language":"CSS","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":"y-components:master","ref":"master","sha":"f2dfdeca4549e34fe4ecdcc8bc0b758be6930952","user":{"login":"y-components","id":10279326,"avatar_url":"https://avatars.githubusercontent.com/u/10279326?v=3","gravatar_id":"","url":"https://api.github.com/users/y-components","html_url":"https://github.com/y-components","followers_url":"https://api.github.com/users/y-components/followers","following_url":"https://api.github.com/users/y-components/following{/other_user}","gists_url":"https://api.github.com/users/y-components/gists{/gist_id}","starred_url":"https://api.github.com/users/y-components/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/y-components/subscriptions","organizations_url":"https://api.github.com/users/y-components/orgs","repos_url":"https://api.github.com/users/y-components/repos","events_url":"https://api.github.com/users/y-components/events{/privacy}","received_events_url":"https://api.github.com/users/y-components/received_events","type":"Organization","site_admin":false},"repo":{"id":28394324,"name":"y-button","full_name":"y-components/y-button","owner":{"login":"y-components","id":10279326,"avatar_url":"https://avatars.githubusercontent.com/u/10279326?v=3","gravatar_id":"","url":"https://api.github.com/users/y-components","html_url":"https://github.com/y-components","followers_url":"https://api.github.com/users/y-components/followers","following_url":"https://api.github.com/users/y-components/following{/other_user}","gists_url":"https://api.github.com/users/y-components/gists{/gist_id}","starred_url":"https://api.github.com/users/y-components/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/y-components/subscriptions","organizations_url":"https://api.github.com/users/y-components/orgs","repos_url":"https://api.github.com/users/y-components/repos","events_url":"https://api.github.com/users/y-components/events{/privacy}","received_events_url":"https://api.github.com/users/y-components/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/y-components/y-button","description":"","fork":false,"url":"https://api.github.com/repos/y-components/y-button","forks_url":"https://api.github.com/repos/y-components/y-button/forks","keys_url":"https://api.github.com/repos/y-components/y-button/keys{/key_id}","collaborators_url":"https://api.github.com/repos/y-components/y-button/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/y-components/y-button/teams","hooks_url":"https://api.github.com/repos/y-components/y-button/hooks","issue_events_url":"https://api.github.com/repos/y-components/y-button/issues/events{/number}","events_url":"https://api.github.com/repos/y-components/y-button/events","assignees_url":"https://api.github.com/repos/y-components/y-button/assignees{/user}","branches_url":"https://api.github.com/repos/y-components/y-button/branches{/branch}","tags_url":"https://api.github.com/repos/y-components/y-button/tags","blobs_url":"https://api.github.com/repos/y-components/y-button/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/y-components/y-button/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/y-components/y-button/git/refs{/sha}","trees_url":"https://api.github.com/repos/y-components/y-button/git/trees{/sha}","statuses_url":"https://api.github.com/repos/y-components/y-button/statuses/{sha}","languages_url":"https://api.github.com/repos/y-components/y-button/languages","stargazers_url":"https://api.github.com/repos/y-components/y-button/stargazers","contributors_url":"https://api.github.com/repos/y-components/y-button/contributors","subscribers_url":"https://api.github.com/repos/y-components/y-button/subscribers","subscription_url":"https://api.github.com/repos/y-components/y-button/subscription","commits_url":"https://api.github.com/repos/y-components/y-button/commits{/sha}","git_commits_url":"https://api.github.com/repos/y-components/y-button/git/commits{/sha}","comments_url":"https://api.github.com/repos/y-components/y-button/comments{/number}","issue_comment_url":"https://api.github.com/repos/y-components/y-button/issues/comments/{number}","contents_url":"https://api.github.com/repos/y-components/y-button/contents/{+path}","compare_url":"https://api.github.com/repos/y-components/y-button/compare/{base}...{head}","merges_url":"https://api.github.com/repos/y-components/y-button/merges","archive_url":"https://api.github.com/repos/y-components/y-button/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/y-components/y-button/downloads","issues_url":"https://api.github.com/repos/y-components/y-button/issues{/number}","pulls_url":"https://api.github.com/repos/y-components/y-button/pulls{/number}","milestones_url":"https://api.github.com/repos/y-components/y-button/milestones{/number}","notifications_url":"https://api.github.com/repos/y-components/y-button/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/y-components/y-button/labels{/name}","releases_url":"https://api.github.com/repos/y-components/y-button/releases{/id}","created_at":"2014-12-23T11:23:28Z","updated_at":"2015-01-01T14:04:47Z","pushed_at":"2015-01-01T14:04:46Z","git_url":"git://github.com/y-components/y-button.git","ssh_url":"git@github.com:y-components/y-button.git","clone_url":"https://github.com/y-components/y-button.git","svn_url":"https://github.com/y-components/y-button","homepage":null,"size":132,"stargazers_count":0,"watchers_count":0,"language":"CSS","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":1,"mirror_url":null,"open_issues_count":4,"forks":1,"open_issues":4,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/y-components/y-button/pulls/11"},"html":{"href":"https://github.com/y-components/y-button/pull/11"},"issue":{"href":"https://api.github.com/repos/y-components/y-button/issues/11"},"comments":{"href":"https://api.github.com/repos/y-components/y-button/issues/11/comments"},"review_comments":{"href":"https://api.github.com/repos/y-components/y-button/pulls/11/comments"},"review_comment":{"href":"https://api.github.com/repos/y-components/y-button/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/y-components/y-button/pulls/11/commits"},"statuses":{"href":"https://api.github.com/repos/y-components/y-button/statuses/f6a9db80632a1549cf27cdd9685f3c13294afef1"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":30,"deletions":5,"changed_files":3}},"public":true,"created_at":"2015-01-01T15:16:40Z","org":{"id":10279326,"login":"y-components","gravatar_id":"","url":"https://api.github.com/orgs/y-components","avatar_url":"https://avatars.githubusercontent.com/u/10279326?"}} +,{"id":"2489658773","type":"PushEvent","actor":{"id":7666055,"login":"sivir","gravatar_id":"","url":"https://api.github.com/users/sivir","avatar_url":"https://avatars.githubusercontent.com/u/7666055?"},"repo":{"id":27804731,"name":"sivir/baikal1","url":"https://api.github.com/repos/sivir/baikal1"},"payload":{"push_id":536867447,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"204d9281b7fff3a01975d2ea211b2b4a50821912","before":"7581a63bd594adfb1e5f9a7250c3843d2dc8808a","commits":[{"sha":"204d9281b7fff3a01975d2ea211b2b4a50821912","author":{"email":"1e2053d8b74af812877a9ba6f0caba8976b70fc7@gmail.com","name":"Egor Potiomkin"},"message":"music","distinct":true,"url":"https://api.github.com/repos/sivir/baikal1/commits/204d9281b7fff3a01975d2ea211b2b4a50821912"}]},"public":true,"created_at":"2015-01-01T15:16:41Z"} +,{"id":"2489658775","type":"WatchEvent","actor":{"id":926754,"login":"hellocreep","gravatar_id":"","url":"https://api.github.com/users/hellocreep","avatar_url":"https://avatars.githubusercontent.com/u/926754?"},"repo":{"id":21495474,"name":"hellgrenj/hulken","url":"https://api.github.com/repos/hellgrenj/hulken"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:16:41Z"} +,{"id":"2489658779","type":"PushEvent","actor":{"id":9612599,"login":"rocketraceheroes","gravatar_id":"","url":"https://api.github.com/users/rocketraceheroes","avatar_url":"https://avatars.githubusercontent.com/u/9612599?"},"repo":{"id":26330000,"name":"rocketraceheroes/clan-site","url":"https://api.github.com/repos/rocketraceheroes/clan-site"},"payload":{"push_id":536867450,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"95e5f4c1070ee773637f2399338fa9a5791f7671","before":"163cd4db2910f11c2e368cd787c172f877e4e166","commits":[{"sha":"95e5f4c1070ee773637f2399338fa9a5791f7671","author":{"email":"98be7db3301a24a53495a8dd72473a84a1d5edff@gmail.com","name":"rocketraceheroes"},"message":"Update index.html","distinct":true,"url":"https://api.github.com/repos/rocketraceheroes/clan-site/commits/95e5f4c1070ee773637f2399338fa9a5791f7671"}]},"public":true,"created_at":"2015-01-01T15:16:41Z"} +,{"id":"2489658783","type":"PushEvent","actor":{"id":7265746,"login":"codelegend","gravatar_id":"","url":"https://api.github.com/users/codelegend","avatar_url":"https://avatars.githubusercontent.com/u/7265746?"},"repo":{"id":23584928,"name":"codelegend/algorithm-compiler","url":"https://api.github.com/repos/codelegend/algorithm-compiler"},"payload":{"push_id":536867453,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d3363f226793d91bd658369f9ba34e82a2f753ff","before":"de538fd3e801923be20f563383e40411824e5c8b","commits":[{"sha":"d3363f226793d91bd658369f9ba34e82a2f753ff","author":{"email":"6c5d3f9ce393a598588a6dff5797765add878ed6@gmail.com","name":"blazikenmask"},"message":"remove template class iterator.\n\n- causing too many errors on turbo.\n- use direct subscripting [] operator for access.","distinct":true,"url":"https://api.github.com/repos/codelegend/algorithm-compiler/commits/d3363f226793d91bd658369f9ba34e82a2f753ff"}]},"public":true,"created_at":"2015-01-01T15:16:42Z"} +,{"id":"2489658784","type":"PushEvent","actor":{"id":666024,"login":"eMarco","gravatar_id":"","url":"https://api.github.com/users/eMarco","avatar_url":"https://avatars.githubusercontent.com/u/666024?"},"repo":{"id":28191971,"name":"eMarco/android_bionic","url":"https://api.github.com/repos/eMarco/android_bionic"},"payload":{"push_id":536867454,"size":7,"distinct_size":7,"ref":"refs/heads/lp5.0","head":"4ff955036fd1b2f44097b4d30cb308a9df44b654","before":"b4a5f89be66c51a594b718099ed12c1356af1a31","commits":[{"sha":"d54834577269ab7e5c0b04444582fde1647c7282","author":{"email":"9ae03fa0527c30dd0044e74ed4dc0d3552c8ce20@gmail.com","name":"Kyle Repinski"},"message":"Conditionally revert requirement of PIE binaries.","distinct":true,"url":"https://api.github.com/repos/eMarco/android_bionic/commits/d54834577269ab7e5c0b04444582fde1647c7282"},{"sha":"7260cfe6d03aa8c49df9d75d1c4f138c640db416","author":{"email":"9ae03fa0527c30dd0044e74ed4dc0d3552c8ce20@gmail.com","name":"Kyle Repinski"},"message":"Add md5 back to libc/bionic for targets that need it.\n\nIn particular, Galaxy Nexus RIL breaks without this.\n\nConflicts:\n\tlibc/bionic/md5.c\n\tlibc/bionic/md5.h\n\nChange-Id: I6487a1c04919cd2f6afd96e895499c0e1dff4af3","distinct":true,"url":"https://api.github.com/repos/eMarco/android_bionic/commits/7260cfe6d03aa8c49df9d75d1c4f138c640db416"},{"sha":"cc223056969c2bc1e1ecea8e3a147e851e0694b3","author":{"email":"9ae03fa0527c30dd0044e74ed4dc0d3552c8ce20@gmail.com","name":"Kyle Repinski"},"message":"Fix mbstate_t strict-aliasing violations.","distinct":true,"url":"https://api.github.com/repos/eMarco/android_bionic/commits/cc223056969c2bc1e1ecea8e3a147e851e0694b3"},{"sha":"01a6082dc813a2b71bb9c73958235dfc220f4d4b","author":{"email":"9ae03fa0527c30dd0044e74ed4dc0d3552c8ce20@gmail.com","name":"Kyle Repinski"},"message":"libc/libstdc++: Fix C++11 issue.\n\nThis will need revisiting, some compilers might have no issue with this.\nMy understanding is that the C++11 committee had the opposite intent of what this commit does,\nhowever as it's worded in the spec it can possibly be interpreted either way.","distinct":true,"url":"https://api.github.com/repos/eMarco/android_bionic/commits/01a6082dc813a2b71bb9c73958235dfc220f4d4b"},{"sha":"e46190a179661798d40a05c78b53f622717e7a80","author":{"email":"9ae03fa0527c30dd0044e74ed4dc0d3552c8ce20@gmail.com","name":"Kyle Repinski"},"message":"libc: Fix strict aliasing violation.","distinct":true,"url":"https://api.github.com/repos/eMarco/android_bionic/commits/e46190a179661798d40a05c78b53f622717e7a80"},{"sha":"198284aebe24b8c37b3676c5f07c00b23381e02c","author":{"email":"9ae03fa0527c30dd0044e74ed4dc0d3552c8ce20@gmail.com","name":"Kyle Repinski"},"message":"More proper fix for what I previously thought was a C++11 issue...","distinct":true,"url":"https://api.github.com/repos/eMarco/android_bionic/commits/198284aebe24b8c37b3676c5f07c00b23381e02c"},{"sha":"4ff955036fd1b2f44097b4d30cb308a9df44b654","author":{"email":"9ae03fa0527c30dd0044e74ed4dc0d3552c8ce20@gmail.com","name":"Kyle Repinski"},"message":"Add a couple other throws I missed.","distinct":true,"url":"https://api.github.com/repos/eMarco/android_bionic/commits/4ff955036fd1b2f44097b4d30cb308a9df44b654"}]},"public":true,"created_at":"2015-01-01T15:16:42Z"} +,{"id":"2489658785","type":"PushEvent","actor":{"id":10309038,"login":"seeker49","gravatar_id":"","url":"https://api.github.com/users/seeker49","avatar_url":"https://avatars.githubusercontent.com/u/10309038?"},"repo":{"id":28581220,"name":"seeker49/seeker49.github.io","url":"https://api.github.com/repos/seeker49/seeker49.github.io"},"payload":{"push_id":536867455,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2dc1cc1f5fb678ffa309722babd8fde51d23538d","before":"144f6fcf4cff9a242c728d879fff63b9115481e0","commits":[{"sha":"2dc1cc1f5fb678ffa309722babd8fde51d23538d","author":{"email":"c4f684024c2939a68c9bcd09a31121f147d88f34@gmail.com","name":"seeker49"},"message":"Replace master branch with page content via GitHub","distinct":true,"url":"https://api.github.com/repos/seeker49/seeker49.github.io/commits/2dc1cc1f5fb678ffa309722babd8fde51d23538d"}]},"public":true,"created_at":"2015-01-01T15:16:42Z"} +,{"id":"2489658786","type":"PushEvent","actor":{"id":9210886,"login":"llissery","gravatar_id":"","url":"https://api.github.com/users/llissery","avatar_url":"https://avatars.githubusercontent.com/u/9210886?"},"repo":{"id":28688868,"name":"llissery/demo","url":"https://api.github.com/repos/llissery/demo"},"payload":{"push_id":536867456,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1d5d459d2157a51b58153df43965f5b8d654e711","before":"71de90b32727ee602829e2d0042d8d37aa9dd79f","commits":[{"sha":"1d5d459d2157a51b58153df43965f5b8d654e711","author":{"email":"cbba44a7386775c0638e7dd926e638117174c281@gmail.com","name":"李愿愿"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/llissery/demo/commits/1d5d459d2157a51b58153df43965f5b8d654e711"}]},"public":true,"created_at":"2015-01-01T15:16:42Z"} +,{"id":"2489658789","type":"PullRequestEvent","actor":{"id":2829600,"login":"GrahamCampbell","gravatar_id":"","url":"https://api.github.com/users/GrahamCampbell","avatar_url":"https://avatars.githubusercontent.com/u/2829600?"},"repo":{"id":26730195,"name":"cachethq/Cachet","url":"https://api.github.com/repos/cachethq/Cachet"},"payload":{"action":"closed","number":179,"pull_request":{"url":"https://api.github.com/repos/cachethq/Cachet/pulls/179","id":26740805,"html_url":"https://github.com/cachethq/Cachet/pull/179","diff_url":"https://github.com/cachethq/Cachet/pull/179.diff","patch_url":"https://github.com/cachethq/Cachet/pull/179.patch","issue_url":"https://api.github.com/repos/cachethq/Cachet/issues/179","number":179,"state":"closed","locked":false,"title":"[Proposal] Artisan command for one click installation services","user":{"login":"joecohens","id":1803556,"avatar_url":"https://avatars.githubusercontent.com/u/1803556?v=3","gravatar_id":"","url":"https://api.github.com/users/joecohens","html_url":"https://github.com/joecohens","followers_url":"https://api.github.com/users/joecohens/followers","following_url":"https://api.github.com/users/joecohens/following{/other_user}","gists_url":"https://api.github.com/users/joecohens/gists{/gist_id}","starred_url":"https://api.github.com/users/joecohens/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/joecohens/subscriptions","organizations_url":"https://api.github.com/users/joecohens/orgs","repos_url":"https://api.github.com/users/joecohens/repos","events_url":"https://api.github.com/users/joecohens/events{/privacy}","received_events_url":"https://api.github.com/users/joecohens/received_events","type":"User","site_admin":false},"body":"This is a proposal to this issue https://github.com/cachethq/Cachet/pull/96","created_at":"2015-01-01T05:47:53Z","updated_at":"2015-01-01T15:16:43Z","closed_at":"2015-01-01T15:16:43Z","merged_at":null,"merge_commit_sha":"6b9a1dac70a1672d4343bebd54c620e63de3669b","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/cachethq/Cachet/pulls/179/commits","review_comments_url":"https://api.github.com/repos/cachethq/Cachet/pulls/179/comments","review_comment_url":"https://api.github.com/repos/cachethq/Cachet/pulls/comments/{number}","comments_url":"https://api.github.com/repos/cachethq/Cachet/issues/179/comments","statuses_url":"https://api.github.com/repos/cachethq/Cachet/statuses/f8103b5f06fc78038fb2c33696c7e1a62da84bbc","head":{"label":"JoeForks:feature/deploy-command","ref":"feature/deploy-command","sha":"f8103b5f06fc78038fb2c33696c7e1a62da84bbc","user":{"login":"JoeForks","id":10344258,"avatar_url":"https://avatars.githubusercontent.com/u/10344258?v=3","gravatar_id":"","url":"https://api.github.com/users/JoeForks","html_url":"https://github.com/JoeForks","followers_url":"https://api.github.com/users/JoeForks/followers","following_url":"https://api.github.com/users/JoeForks/following{/other_user}","gists_url":"https://api.github.com/users/JoeForks/gists{/gist_id}","starred_url":"https://api.github.com/users/JoeForks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JoeForks/subscriptions","organizations_url":"https://api.github.com/users/JoeForks/orgs","repos_url":"https://api.github.com/users/JoeForks/repos","events_url":"https://api.github.com/users/JoeForks/events{/privacy}","received_events_url":"https://api.github.com/users/JoeForks/received_events","type":"Organization","site_admin":false},"repo":{"id":28643777,"name":"Cachet","full_name":"JoeForks/Cachet","owner":{"login":"JoeForks","id":10344258,"avatar_url":"https://avatars.githubusercontent.com/u/10344258?v=3","gravatar_id":"","url":"https://api.github.com/users/JoeForks","html_url":"https://github.com/JoeForks","followers_url":"https://api.github.com/users/JoeForks/followers","following_url":"https://api.github.com/users/JoeForks/following{/other_user}","gists_url":"https://api.github.com/users/JoeForks/gists{/gist_id}","starred_url":"https://api.github.com/users/JoeForks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JoeForks/subscriptions","organizations_url":"https://api.github.com/users/JoeForks/orgs","repos_url":"https://api.github.com/users/JoeForks/repos","events_url":"https://api.github.com/users/JoeForks/events{/privacy}","received_events_url":"https://api.github.com/users/JoeForks/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/JoeForks/Cachet","description":"Cachet, the open source StatusPage.io alternative written in PHP","fork":true,"url":"https://api.github.com/repos/JoeForks/Cachet","forks_url":"https://api.github.com/repos/JoeForks/Cachet/forks","keys_url":"https://api.github.com/repos/JoeForks/Cachet/keys{/key_id}","collaborators_url":"https://api.github.com/repos/JoeForks/Cachet/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/JoeForks/Cachet/teams","hooks_url":"https://api.github.com/repos/JoeForks/Cachet/hooks","issue_events_url":"https://api.github.com/repos/JoeForks/Cachet/issues/events{/number}","events_url":"https://api.github.com/repos/JoeForks/Cachet/events","assignees_url":"https://api.github.com/repos/JoeForks/Cachet/assignees{/user}","branches_url":"https://api.github.com/repos/JoeForks/Cachet/branches{/branch}","tags_url":"https://api.github.com/repos/JoeForks/Cachet/tags","blobs_url":"https://api.github.com/repos/JoeForks/Cachet/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/JoeForks/Cachet/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/JoeForks/Cachet/git/refs{/sha}","trees_url":"https://api.github.com/repos/JoeForks/Cachet/git/trees{/sha}","statuses_url":"https://api.github.com/repos/JoeForks/Cachet/statuses/{sha}","languages_url":"https://api.github.com/repos/JoeForks/Cachet/languages","stargazers_url":"https://api.github.com/repos/JoeForks/Cachet/stargazers","contributors_url":"https://api.github.com/repos/JoeForks/Cachet/contributors","subscribers_url":"https://api.github.com/repos/JoeForks/Cachet/subscribers","subscription_url":"https://api.github.com/repos/JoeForks/Cachet/subscription","commits_url":"https://api.github.com/repos/JoeForks/Cachet/commits{/sha}","git_commits_url":"https://api.github.com/repos/JoeForks/Cachet/git/commits{/sha}","comments_url":"https://api.github.com/repos/JoeForks/Cachet/comments{/number}","issue_comment_url":"https://api.github.com/repos/JoeForks/Cachet/issues/comments/{number}","contents_url":"https://api.github.com/repos/JoeForks/Cachet/contents/{+path}","compare_url":"https://api.github.com/repos/JoeForks/Cachet/compare/{base}...{head}","merges_url":"https://api.github.com/repos/JoeForks/Cachet/merges","archive_url":"https://api.github.com/repos/JoeForks/Cachet/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/JoeForks/Cachet/downloads","issues_url":"https://api.github.com/repos/JoeForks/Cachet/issues{/number}","pulls_url":"https://api.github.com/repos/JoeForks/Cachet/pulls{/number}","milestones_url":"https://api.github.com/repos/JoeForks/Cachet/milestones{/number}","notifications_url":"https://api.github.com/repos/JoeForks/Cachet/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/JoeForks/Cachet/labels{/name}","releases_url":"https://api.github.com/repos/JoeForks/Cachet/releases{/id}","created_at":"2014-12-30T20:09:33Z","updated_at":"2015-01-01T01:49:36Z","pushed_at":"2015-01-01T08:11:14Z","git_url":"git://github.com/JoeForks/Cachet.git","ssh_url":"git@github.com:JoeForks/Cachet.git","clone_url":"https://github.com/JoeForks/Cachet.git","svn_url":"https://github.com/JoeForks/Cachet","homepage":"http://cachethq.github.io","size":3255,"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":"cachethq:master","ref":"master","sha":"63de947190b4ba2bd581361f469f769a1d41f521","user":{"login":"cachethq","id":9951502,"avatar_url":"https://avatars.githubusercontent.com/u/9951502?v=3","gravatar_id":"","url":"https://api.github.com/users/cachethq","html_url":"https://github.com/cachethq","followers_url":"https://api.github.com/users/cachethq/followers","following_url":"https://api.github.com/users/cachethq/following{/other_user}","gists_url":"https://api.github.com/users/cachethq/gists{/gist_id}","starred_url":"https://api.github.com/users/cachethq/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cachethq/subscriptions","organizations_url":"https://api.github.com/users/cachethq/orgs","repos_url":"https://api.github.com/users/cachethq/repos","events_url":"https://api.github.com/users/cachethq/events{/privacy}","received_events_url":"https://api.github.com/users/cachethq/received_events","type":"Organization","site_admin":false},"repo":{"id":26730195,"name":"Cachet","full_name":"cachethq/Cachet","owner":{"login":"cachethq","id":9951502,"avatar_url":"https://avatars.githubusercontent.com/u/9951502?v=3","gravatar_id":"","url":"https://api.github.com/users/cachethq","html_url":"https://github.com/cachethq","followers_url":"https://api.github.com/users/cachethq/followers","following_url":"https://api.github.com/users/cachethq/following{/other_user}","gists_url":"https://api.github.com/users/cachethq/gists{/gist_id}","starred_url":"https://api.github.com/users/cachethq/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cachethq/subscriptions","organizations_url":"https://api.github.com/users/cachethq/orgs","repos_url":"https://api.github.com/users/cachethq/repos","events_url":"https://api.github.com/users/cachethq/events{/privacy}","received_events_url":"https://api.github.com/users/cachethq/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/cachethq/Cachet","description":"Cachet, the open source StatusPage.io alternative written in PHP","fork":false,"url":"https://api.github.com/repos/cachethq/Cachet","forks_url":"https://api.github.com/repos/cachethq/Cachet/forks","keys_url":"https://api.github.com/repos/cachethq/Cachet/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cachethq/Cachet/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cachethq/Cachet/teams","hooks_url":"https://api.github.com/repos/cachethq/Cachet/hooks","issue_events_url":"https://api.github.com/repos/cachethq/Cachet/issues/events{/number}","events_url":"https://api.github.com/repos/cachethq/Cachet/events","assignees_url":"https://api.github.com/repos/cachethq/Cachet/assignees{/user}","branches_url":"https://api.github.com/repos/cachethq/Cachet/branches{/branch}","tags_url":"https://api.github.com/repos/cachethq/Cachet/tags","blobs_url":"https://api.github.com/repos/cachethq/Cachet/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cachethq/Cachet/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cachethq/Cachet/git/refs{/sha}","trees_url":"https://api.github.com/repos/cachethq/Cachet/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cachethq/Cachet/statuses/{sha}","languages_url":"https://api.github.com/repos/cachethq/Cachet/languages","stargazers_url":"https://api.github.com/repos/cachethq/Cachet/stargazers","contributors_url":"https://api.github.com/repos/cachethq/Cachet/contributors","subscribers_url":"https://api.github.com/repos/cachethq/Cachet/subscribers","subscription_url":"https://api.github.com/repos/cachethq/Cachet/subscription","commits_url":"https://api.github.com/repos/cachethq/Cachet/commits{/sha}","git_commits_url":"https://api.github.com/repos/cachethq/Cachet/git/commits{/sha}","comments_url":"https://api.github.com/repos/cachethq/Cachet/comments{/number}","issue_comment_url":"https://api.github.com/repos/cachethq/Cachet/issues/comments/{number}","contents_url":"https://api.github.com/repos/cachethq/Cachet/contents/{+path}","compare_url":"https://api.github.com/repos/cachethq/Cachet/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cachethq/Cachet/merges","archive_url":"https://api.github.com/repos/cachethq/Cachet/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cachethq/Cachet/downloads","issues_url":"https://api.github.com/repos/cachethq/Cachet/issues{/number}","pulls_url":"https://api.github.com/repos/cachethq/Cachet/pulls{/number}","milestones_url":"https://api.github.com/repos/cachethq/Cachet/milestones{/number}","notifications_url":"https://api.github.com/repos/cachethq/Cachet/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cachethq/Cachet/labels{/name}","releases_url":"https://api.github.com/repos/cachethq/Cachet/releases{/id}","created_at":"2014-11-16T22:23:11Z","updated_at":"2015-01-01T15:15:28Z","pushed_at":"2015-01-01T14:50:06Z","git_url":"git://github.com/cachethq/Cachet.git","ssh_url":"git@github.com:cachethq/Cachet.git","clone_url":"https://github.com/cachethq/Cachet.git","svn_url":"https://github.com/cachethq/Cachet","homepage":"http://cachethq.io","size":6115,"stargazers_count":517,"watchers_count":517,"language":"JavaScript","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":38,"mirror_url":null,"open_issues_count":30,"forks":38,"open_issues":30,"watchers":517,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/cachethq/Cachet/pulls/179"},"html":{"href":"https://github.com/cachethq/Cachet/pull/179"},"issue":{"href":"https://api.github.com/repos/cachethq/Cachet/issues/179"},"comments":{"href":"https://api.github.com/repos/cachethq/Cachet/issues/179/comments"},"review_comments":{"href":"https://api.github.com/repos/cachethq/Cachet/pulls/179/comments"},"review_comment":{"href":"https://api.github.com/repos/cachethq/Cachet/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/cachethq/Cachet/pulls/179/commits"},"statuses":{"href":"https://api.github.com/repos/cachethq/Cachet/statuses/f8103b5f06fc78038fb2c33696c7e1a62da84bbc"}},"merged":false,"mergeable":true,"mergeable_state":"clean","merged_by":null,"comments":8,"review_comments":1,"commits":1,"additions":59,"deletions":1,"changed_files":5}},"public":true,"created_at":"2015-01-01T15:16:43Z","org":{"id":9951502,"login":"cachethq","gravatar_id":"","url":"https://api.github.com/orgs/cachethq","avatar_url":"https://avatars.githubusercontent.com/u/9951502?"}} +,{"id":"2489658790","type":"IssueCommentEvent","actor":{"id":976345,"login":"dan-blanchard","gravatar_id":"","url":"https://api.github.com/users/dan-blanchard","avatar_url":"https://avatars.githubusercontent.com/u/976345?"},"repo":{"id":5196969,"name":"chardet/chardet","url":"https://api.github.com/repos/chardet/chardet"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/chardet/chardet/issues/47","labels_url":"https://api.github.com/repos/chardet/chardet/issues/47/labels{/name}","comments_url":"https://api.github.com/repos/chardet/chardet/issues/47/comments","events_url":"https://api.github.com/repos/chardet/chardet/issues/47/events","html_url":"https://github.com/chardet/chardet/pull/47","id":53219486,"number":47,"title":"Use travis' new build workers","user":{"login":"thedrow","id":48936,"avatar_url":"https://avatars.githubusercontent.com/u/48936?v=3","gravatar_id":"","url":"https://api.github.com/users/thedrow","html_url":"https://github.com/thedrow","followers_url":"https://api.github.com/users/thedrow/followers","following_url":"https://api.github.com/users/thedrow/following{/other_user}","gists_url":"https://api.github.com/users/thedrow/gists{/gist_id}","starred_url":"https://api.github.com/users/thedrow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thedrow/subscriptions","organizations_url":"https://api.github.com/users/thedrow/orgs","repos_url":"https://api.github.com/users/thedrow/repos","events_url":"https://api.github.com/users/thedrow/events{/privacy}","received_events_url":"https://api.github.com/users/thedrow/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T13:15:38Z","updated_at":"2015-01-01T15:16:43Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/chardet/chardet/pulls/47","html_url":"https://github.com/chardet/chardet/pull/47","diff_url":"https://github.com/chardet/chardet/pull/47.diff","patch_url":"https://github.com/chardet/chardet/pull/47.patch"},"body":"They boot faster and since we don't use sudo we can use them."},"comment":{"url":"https://api.github.com/repos/chardet/chardet/issues/comments/68488844","html_url":"https://github.com/chardet/chardet/pull/47#issuecomment-68488844","issue_url":"https://api.github.com/repos/chardet/chardet/issues/47","id":68488844,"user":{"login":"dan-blanchard","id":976345,"avatar_url":"https://avatars.githubusercontent.com/u/976345?v=3","gravatar_id":"","url":"https://api.github.com/users/dan-blanchard","html_url":"https://github.com/dan-blanchard","followers_url":"https://api.github.com/users/dan-blanchard/followers","following_url":"https://api.github.com/users/dan-blanchard/following{/other_user}","gists_url":"https://api.github.com/users/dan-blanchard/gists{/gist_id}","starred_url":"https://api.github.com/users/dan-blanchard/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dan-blanchard/subscriptions","organizations_url":"https://api.github.com/users/dan-blanchard/orgs","repos_url":"https://api.github.com/users/dan-blanchard/repos","events_url":"https://api.github.com/users/dan-blanchard/events{/privacy}","received_events_url":"https://api.github.com/users/dan-blanchard/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:16:43Z","updated_at":"2015-01-01T15:16:43Z","body":"I've actually already started using them over on #42, and they seem very reasonable. They start up right away and finish in about 3 minutes. We should probably just have them in master though."}},"public":true,"created_at":"2015-01-01T15:16:43Z","org":{"id":6211498,"login":"chardet","gravatar_id":"","url":"https://api.github.com/orgs/chardet","avatar_url":"https://avatars.githubusercontent.com/u/6211498?"}} +,{"id":"2489658793","type":"IssueCommentEvent","actor":{"id":2829600,"login":"GrahamCampbell","gravatar_id":"","url":"https://api.github.com/users/GrahamCampbell","avatar_url":"https://avatars.githubusercontent.com/u/2829600?"},"repo":{"id":26730195,"name":"cachethq/Cachet","url":"https://api.github.com/repos/cachethq/Cachet"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/cachethq/Cachet/issues/179","labels_url":"https://api.github.com/repos/cachethq/Cachet/issues/179/labels{/name}","comments_url":"https://api.github.com/repos/cachethq/Cachet/issues/179/comments","events_url":"https://api.github.com/repos/cachethq/Cachet/issues/179/events","html_url":"https://github.com/cachethq/Cachet/pull/179","id":53213540,"number":179,"title":"[Proposal] Artisan command for one click installation services","user":{"login":"joecohens","id":1803556,"avatar_url":"https://avatars.githubusercontent.com/u/1803556?v=3","gravatar_id":"","url":"https://api.github.com/users/joecohens","html_url":"https://github.com/joecohens","followers_url":"https://api.github.com/users/joecohens/followers","following_url":"https://api.github.com/users/joecohens/following{/other_user}","gists_url":"https://api.github.com/users/joecohens/gists{/gist_id}","starred_url":"https://api.github.com/users/joecohens/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/joecohens/subscriptions","organizations_url":"https://api.github.com/users/joecohens/orgs","repos_url":"https://api.github.com/users/joecohens/repos","events_url":"https://api.github.com/users/joecohens/events{/privacy}","received_events_url":"https://api.github.com/users/joecohens/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":8,"created_at":"2015-01-01T05:47:53Z","updated_at":"2015-01-01T15:16:43Z","closed_at":"2015-01-01T15:16:43Z","pull_request":{"url":"https://api.github.com/repos/cachethq/Cachet/pulls/179","html_url":"https://github.com/cachethq/Cachet/pull/179","diff_url":"https://github.com/cachethq/Cachet/pull/179.diff","patch_url":"https://github.com/cachethq/Cachet/pull/179.patch"},"body":"This is a proposal to this issue https://github.com/cachethq/Cachet/pull/96"},"comment":{"url":"https://api.github.com/repos/cachethq/Cachet/issues/comments/68488843","html_url":"https://github.com/cachethq/Cachet/pull/179#issuecomment-68488843","issue_url":"https://api.github.com/repos/cachethq/Cachet/issues/179","id":68488843,"user":{"login":"GrahamCampbell","id":2829600,"avatar_url":"https://avatars.githubusercontent.com/u/2829600?v=3","gravatar_id":"","url":"https://api.github.com/users/GrahamCampbell","html_url":"https://github.com/GrahamCampbell","followers_url":"https://api.github.com/users/GrahamCampbell/followers","following_url":"https://api.github.com/users/GrahamCampbell/following{/other_user}","gists_url":"https://api.github.com/users/GrahamCampbell/gists{/gist_id}","starred_url":"https://api.github.com/users/GrahamCampbell/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GrahamCampbell/subscriptions","organizations_url":"https://api.github.com/users/GrahamCampbell/orgs","repos_url":"https://api.github.com/users/GrahamCampbell/repos","events_url":"https://api.github.com/users/GrahamCampbell/events{/privacy}","received_events_url":"https://api.github.com/users/GrahamCampbell/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:16:43Z","updated_at":"2015-01-01T15:16:43Z","body":"Actually, I'm going to totally redo this. This hasn't been done correctly."}},"public":true,"created_at":"2015-01-01T15:16:43Z","org":{"id":9951502,"login":"cachethq","gravatar_id":"","url":"https://api.github.com/orgs/cachethq","avatar_url":"https://avatars.githubusercontent.com/u/9951502?"}} +,{"id":"2489658794","type":"CreateEvent","actor":{"id":2308,"login":"Frost","gravatar_id":"","url":"https://api.github.com/users/Frost","avatar_url":"https://avatars.githubusercontent.com/u/2308?"},"repo":{"id":1795424,"name":"datasektionen/cashflow","url":"https://api.github.com/repos/datasektionen/cashflow"},"payload":{"ref":"tidy-up-budget-controller","ref_type":"branch","master_branch":"master","description":"Inköp/skuld-hantering","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:43Z","org":{"id":793965,"login":"datasektionen","gravatar_id":"","url":"https://api.github.com/orgs/datasektionen","avatar_url":"https://avatars.githubusercontent.com/u/793965?"}} +,{"id":"2489658796","type":"IssueCommentEvent","actor":{"id":33528,"login":"koalalorenzo","gravatar_id":"","url":"https://api.github.com/users/koalalorenzo","avatar_url":"https://avatars.githubusercontent.com/u/33528?"},"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/77","labels_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/77/labels{/name}","comments_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/77/comments","events_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/77/events","html_url":"https://github.com/koalalorenzo/python-digitalocean/pull/77","id":53221278,"number":77,"title":"Allow SSHKey to be specified by fingerprint (Fixes #76)","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},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T14:57:32Z","updated_at":"2015-01-01T15:16:43Z","closed_at":"2015-01-01T15:16:43Z","pull_request":{"url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/77","html_url":"https://github.com/koalalorenzo/python-digitalocean/pull/77","diff_url":"https://github.com/koalalorenzo/python-digitalocean/pull/77.diff","patch_url":"https://github.com/koalalorenzo/python-digitalocean/pull/77.patch"},"body":"This change modifies __get_ssh_keys_id to return a list containing IDs or fingerprints. The code assumes that fingerprints consist of 16 hexadecimal pairs separated by colons (e.g. 01:23:45:67:89:af:ca:ef:FE:DE:CB:A9:87:65:43:21).\r\n\r\nThis change also modifies SHHKeys.load. Allowing you to load a SHHKey by fingerprint.\r\n\r\nexamples:\r\n\r\n d = Droplet(...)\r\n d.create(ssh_keys=['01:23:45:67:89:ab:cd:ef:FE:DE:CB:A9:87:65:43:21'])\r\n\r\nor\r\n\r\n key = SSHKeys(fingerprint='01:23:45:67:89:ab:cd:ef:FE:DE:CB:A9:87:65:43:21')\r\n key.load()\r\n d = Droplet(...)\r\n d.create(ssh_keys=[key])\r\n\r\nI have not tested these modifications, but it should be fine to merge since it will not break any existing code (it might introduce buggy new features)."},"comment":{"url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/comments/68488845","html_url":"https://github.com/koalalorenzo/python-digitalocean/pull/77#issuecomment-68488845","issue_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/77","id":68488845,"user":{"login":"koalalorenzo","id":33528,"avatar_url":"https://avatars.githubusercontent.com/u/33528?v=3","gravatar_id":"","url":"https://api.github.com/users/koalalorenzo","html_url":"https://github.com/koalalorenzo","followers_url":"https://api.github.com/users/koalalorenzo/followers","following_url":"https://api.github.com/users/koalalorenzo/following{/other_user}","gists_url":"https://api.github.com/users/koalalorenzo/gists{/gist_id}","starred_url":"https://api.github.com/users/koalalorenzo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/koalalorenzo/subscriptions","organizations_url":"https://api.github.com/users/koalalorenzo/orgs","repos_url":"https://api.github.com/users/koalalorenzo/repos","events_url":"https://api.github.com/users/koalalorenzo/events{/privacy}","received_events_url":"https://api.github.com/users/koalalorenzo/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:16:43Z","updated_at":"2015-01-01T15:16:43Z","body":"Seems to be correct."}},"public":true,"created_at":"2015-01-01T15:16:43Z"} +,{"id":"2489658797","type":"PushEvent","actor":{"id":37787,"login":"daleharvey","gravatar_id":"","url":"https://api.github.com/users/daleharvey","avatar_url":"https://avatars.githubusercontent.com/u/37787?"},"repo":{"id":714074,"name":"pouchdb/pouchdb","url":"https://api.github.com/repos/pouchdb/pouchdb"},"payload":{"push_id":536867458,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"85ffee354b1734a6793d3fb61963bfe1797222f4","before":"8356f3b9ccf87288dbe5d1e4190643353f9add63","commits":[{"sha":"85ffee354b1734a6793d3fb61963bfe1797222f4","author":{"email":"8d228162edd35036000dffdf5bad2457553cab61@gmail.com","name":"Will Holley"},"message":"(#136) - Fix _changes ordering assertions in replication tests\n\nIn CouchDB 2.0, _changes is not guaranteed to be ordered. Sort\nthe response before making assertions on the contents.","distinct":true,"url":"https://api.github.com/repos/pouchdb/pouchdb/commits/85ffee354b1734a6793d3fb61963bfe1797222f4"}]},"public":true,"created_at":"2015-01-01T15:16:43Z","org":{"id":3406112,"login":"pouchdb","gravatar_id":"","url":"https://api.github.com/orgs/pouchdb","avatar_url":"https://avatars.githubusercontent.com/u/3406112?"}} +,{"id":"2489658798","type":"PullRequestEvent","actor":{"id":33528,"login":"koalalorenzo","gravatar_id":"","url":"https://api.github.com/users/koalalorenzo","avatar_url":"https://avatars.githubusercontent.com/u/33528?"},"repo":{"id":8177778,"name":"koalalorenzo/python-digitalocean","url":"https://api.github.com/repos/koalalorenzo/python-digitalocean"},"payload":{"action":"closed","number":77,"pull_request":{"url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/77","id":26743746,"html_url":"https://github.com/koalalorenzo/python-digitalocean/pull/77","diff_url":"https://github.com/koalalorenzo/python-digitalocean/pull/77.diff","patch_url":"https://github.com/koalalorenzo/python-digitalocean/pull/77.patch","issue_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/77","number":77,"state":"closed","locked":false,"title":"Allow SSHKey to be specified by fingerprint (Fixes #76)","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},"body":"This change modifies __get_ssh_keys_id to return a list containing IDs or fingerprints. The code assumes that fingerprints consist of 16 hexadecimal pairs separated by colons (e.g. 01:23:45:67:89:af:ca:ef:FE:DE:CB:A9:87:65:43:21).\r\n\r\nThis change also modifies SHHKeys.load. Allowing you to load a SHHKey by fingerprint.\r\n\r\nexamples:\r\n\r\n d = Droplet(...)\r\n d.create(ssh_keys=['01:23:45:67:89:ab:cd:ef:FE:DE:CB:A9:87:65:43:21'])\r\n\r\nor\r\n\r\n key = SSHKeys(fingerprint='01:23:45:67:89:ab:cd:ef:FE:DE:CB:A9:87:65:43:21')\r\n key.load()\r\n d = Droplet(...)\r\n d.create(ssh_keys=[key])\r\n\r\nI have not tested these modifications, but it should be fine to merge since it will not break any existing code (it might introduce buggy new features).","created_at":"2015-01-01T14:57:32Z","updated_at":"2015-01-01T15:16:43Z","closed_at":"2015-01-01T15:16:43Z","merged_at":null,"merge_commit_sha":"522f3dc74c771451643bff8e651e325fe0699661","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/77/commits","review_comments_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/77/comments","review_comment_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/comments/{number}","comments_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/77/comments","statuses_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/statuses/4bdc87e670d6148330a622fd8f207302af6ea2fa","head":{"label":"moyamo:master","ref":"master","sha":"4bdc87e670d6148330a622fd8f207302af6ea2fa","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},"repo":{"id":28405844,"name":"python-digitalocean","full_name":"moyamo/python-digitalocean","owner":{"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},"private":false,"html_url":"https://github.com/moyamo/python-digitalocean","description":"Python module to manage digitalocean.com droplets","fork":true,"url":"https://api.github.com/repos/moyamo/python-digitalocean","forks_url":"https://api.github.com/repos/moyamo/python-digitalocean/forks","keys_url":"https://api.github.com/repos/moyamo/python-digitalocean/keys{/key_id}","collaborators_url":"https://api.github.com/repos/moyamo/python-digitalocean/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/moyamo/python-digitalocean/teams","hooks_url":"https://api.github.com/repos/moyamo/python-digitalocean/hooks","issue_events_url":"https://api.github.com/repos/moyamo/python-digitalocean/issues/events{/number}","events_url":"https://api.github.com/repos/moyamo/python-digitalocean/events","assignees_url":"https://api.github.com/repos/moyamo/python-digitalocean/assignees{/user}","branches_url":"https://api.github.com/repos/moyamo/python-digitalocean/branches{/branch}","tags_url":"https://api.github.com/repos/moyamo/python-digitalocean/tags","blobs_url":"https://api.github.com/repos/moyamo/python-digitalocean/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/moyamo/python-digitalocean/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/moyamo/python-digitalocean/git/refs{/sha}","trees_url":"https://api.github.com/repos/moyamo/python-digitalocean/git/trees{/sha}","statuses_url":"https://api.github.com/repos/moyamo/python-digitalocean/statuses/{sha}","languages_url":"https://api.github.com/repos/moyamo/python-digitalocean/languages","stargazers_url":"https://api.github.com/repos/moyamo/python-digitalocean/stargazers","contributors_url":"https://api.github.com/repos/moyamo/python-digitalocean/contributors","subscribers_url":"https://api.github.com/repos/moyamo/python-digitalocean/subscribers","subscription_url":"https://api.github.com/repos/moyamo/python-digitalocean/subscription","commits_url":"https://api.github.com/repos/moyamo/python-digitalocean/commits{/sha}","git_commits_url":"https://api.github.com/repos/moyamo/python-digitalocean/git/commits{/sha}","comments_url":"https://api.github.com/repos/moyamo/python-digitalocean/comments{/number}","issue_comment_url":"https://api.github.com/repos/moyamo/python-digitalocean/issues/comments/{number}","contents_url":"https://api.github.com/repos/moyamo/python-digitalocean/contents/{+path}","compare_url":"https://api.github.com/repos/moyamo/python-digitalocean/compare/{base}...{head}","merges_url":"https://api.github.com/repos/moyamo/python-digitalocean/merges","archive_url":"https://api.github.com/repos/moyamo/python-digitalocean/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/moyamo/python-digitalocean/downloads","issues_url":"https://api.github.com/repos/moyamo/python-digitalocean/issues{/number}","pulls_url":"https://api.github.com/repos/moyamo/python-digitalocean/pulls{/number}","milestones_url":"https://api.github.com/repos/moyamo/python-digitalocean/milestones{/number}","notifications_url":"https://api.github.com/repos/moyamo/python-digitalocean/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/moyamo/python-digitalocean/labels{/name}","releases_url":"https://api.github.com/repos/moyamo/python-digitalocean/releases{/id}","created_at":"2014-12-23T15:46:15Z","updated_at":"2015-01-01T14:56:24Z","pushed_at":"2015-01-01T14:56:23Z","git_url":"git://github.com/moyamo/python-digitalocean.git","ssh_url":"git@github.com:moyamo/python-digitalocean.git","clone_url":"https://github.com/moyamo/python-digitalocean.git","svn_url":"https://github.com/moyamo/python-digitalocean","homepage":"http://projects.setale.me/python-digitalocean/","size":342,"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":"koalalorenzo:master","ref":"master","sha":"6462517ac267ae3e6f4028f734c42f63c7eb2bdd","user":{"login":"koalalorenzo","id":33528,"avatar_url":"https://avatars.githubusercontent.com/u/33528?v=3","gravatar_id":"","url":"https://api.github.com/users/koalalorenzo","html_url":"https://github.com/koalalorenzo","followers_url":"https://api.github.com/users/koalalorenzo/followers","following_url":"https://api.github.com/users/koalalorenzo/following{/other_user}","gists_url":"https://api.github.com/users/koalalorenzo/gists{/gist_id}","starred_url":"https://api.github.com/users/koalalorenzo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/koalalorenzo/subscriptions","organizations_url":"https://api.github.com/users/koalalorenzo/orgs","repos_url":"https://api.github.com/users/koalalorenzo/repos","events_url":"https://api.github.com/users/koalalorenzo/events{/privacy}","received_events_url":"https://api.github.com/users/koalalorenzo/received_events","type":"User","site_admin":false},"repo":{"id":8177778,"name":"python-digitalocean","full_name":"koalalorenzo/python-digitalocean","owner":{"login":"koalalorenzo","id":33528,"avatar_url":"https://avatars.githubusercontent.com/u/33528?v=3","gravatar_id":"","url":"https://api.github.com/users/koalalorenzo","html_url":"https://github.com/koalalorenzo","followers_url":"https://api.github.com/users/koalalorenzo/followers","following_url":"https://api.github.com/users/koalalorenzo/following{/other_user}","gists_url":"https://api.github.com/users/koalalorenzo/gists{/gist_id}","starred_url":"https://api.github.com/users/koalalorenzo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/koalalorenzo/subscriptions","organizations_url":"https://api.github.com/users/koalalorenzo/orgs","repos_url":"https://api.github.com/users/koalalorenzo/repos","events_url":"https://api.github.com/users/koalalorenzo/events{/privacy}","received_events_url":"https://api.github.com/users/koalalorenzo/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/koalalorenzo/python-digitalocean","description":"Python module to manage digitalocean.com droplets","fork":false,"url":"https://api.github.com/repos/koalalorenzo/python-digitalocean","forks_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/forks","keys_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/keys{/key_id}","collaborators_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/teams","hooks_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/hooks","issue_events_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/events{/number}","events_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/events","assignees_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/assignees{/user}","branches_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/branches{/branch}","tags_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/tags","blobs_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/git/refs{/sha}","trees_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/git/trees{/sha}","statuses_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/statuses/{sha}","languages_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/languages","stargazers_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/stargazers","contributors_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/contributors","subscribers_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/subscribers","subscription_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/subscription","commits_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/commits{/sha}","git_commits_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/git/commits{/sha}","comments_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/comments{/number}","issue_comment_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/comments/{number}","contents_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/contents/{+path}","compare_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/compare/{base}...{head}","merges_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/merges","archive_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/downloads","issues_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues{/number}","pulls_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls{/number}","milestones_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/milestones{/number}","notifications_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/labels{/name}","releases_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/releases{/id}","created_at":"2013-02-13T11:09:49Z","updated_at":"2014-12-26T08:08:42Z","pushed_at":"2014-12-24T18:32:38Z","git_url":"git://github.com/koalalorenzo/python-digitalocean.git","ssh_url":"git@github.com:koalalorenzo/python-digitalocean.git","clone_url":"https://github.com/koalalorenzo/python-digitalocean.git","svn_url":"https://github.com/koalalorenzo/python-digitalocean","homepage":"http://projects.setale.me/python-digitalocean/","size":1065,"stargazers_count":150,"watchers_count":150,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":49,"mirror_url":null,"open_issues_count":1,"forks":49,"open_issues":1,"watchers":150,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/77"},"html":{"href":"https://github.com/koalalorenzo/python-digitalocean/pull/77"},"issue":{"href":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/77"},"comments":{"href":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/77/comments"},"review_comments":{"href":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/77/comments"},"review_comment":{"href":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/77/commits"},"statuses":{"href":"https://api.github.com/repos/koalalorenzo/python-digitalocean/statuses/4bdc87e670d6148330a622fd8f207302af6ea2fa"}},"merged":false,"mergeable":true,"mergeable_state":"clean","merged_by":null,"comments":1,"review_comments":0,"commits":3,"additions":38,"deletions":18,"changed_files":2}},"public":true,"created_at":"2015-01-01T15:16:43Z"} +,{"id":"2489658802","type":"CreateEvent","actor":{"id":10364785,"login":"sepidnam","gravatar_id":"","url":"https://api.github.com/users/sepidnam","avatar_url":"https://avatars.githubusercontent.com/u/10364785?"},"repo":{"id":28688837,"name":"sepidnam/hello-world","url":"https://api.github.com/repos/sepidnam/hello-world"},"payload":{"ref":"readme-edits","ref_type":"branch","master_branch":"master","description":"Hello World","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:44Z"} +,{"id":"2489658803","type":"CreateEvent","actor":{"id":9538723,"login":"fadyhashmi","gravatar_id":"","url":"https://api.github.com/users/fadyhashmi","avatar_url":"https://avatars.githubusercontent.com/u/9538723?"},"repo":{"id":28688906,"name":"fadyhashmi/restcrud","url":"https://api.github.com/repos/fadyhashmi/restcrud"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:44Z"} +,{"id":"2489658806","type":"CreateEvent","actor":{"id":3625244,"login":"ghaiklor","gravatar_id":"","url":"https://api.github.com/users/ghaiklor","avatar_url":"https://avatars.githubusercontent.com/u/3625244?"},"repo":{"id":28688805,"name":"ghaiklor/patchwork","url":"https://api.github.com/repos/ghaiklor/patchwork"},"payload":{"ref":"add-ghaiklor","ref_type":"branch","master_branch":"gh-pages","description":"All the Git-it Workshop completers! ","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:44Z"} +,{"id":"2489658807","type":"PushEvent","actor":{"id":1270024,"login":"jfoug","gravatar_id":"","url":"https://api.github.com/users/jfoug","avatar_url":"https://avatars.githubusercontent.com/u/1270024?"},"repo":{"id":4683915,"name":"magnumripper/jtrTestSuite","url":"https://api.github.com/repos/magnumripper/jtrTestSuite"},"payload":{"push_id":536867464,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9b64721e5f4bbe44f16e60e2c608bb7f73c64832","before":"8bc04e4db2fb79a32bdf964c70fffd3a19c15891","commits":[{"sha":"9b64721e5f4bbe44f16e60e2c608bb7f73c64832","author":{"email":"ae60f80a005c6c1b805ce7dd9a2d378668639e1d@cox.net","name":"jfoug"},"message":"rolled back 5838231","distinct":true,"url":"https://api.github.com/repos/magnumripper/jtrTestSuite/commits/9b64721e5f4bbe44f16e60e2c608bb7f73c64832"}]},"public":true,"created_at":"2015-01-01T15:16:44Z"} +,{"id":"2489658809","type":"CreateEvent","actor":{"id":10252367,"login":"archercode","gravatar_id":"","url":"https://api.github.com/users/archercode","avatar_url":"https://avatars.githubusercontent.com/u/10252367?"},"repo":{"id":28687822,"name":"archercode/sample_app","url":"https://api.github.com/repos/archercode/sample_app"},"payload":{"ref":"static-pages","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:44Z"} +,{"id":"2489658812","type":"CreateEvent","actor":{"id":5952083,"login":"mcalavera81","gravatar_id":"","url":"https://api.github.com/users/mcalavera81","avatar_url":"https://avatars.githubusercontent.com/u/5952083?"},"repo":{"id":28688907,"name":"mcalavera81/dockerizedSpringBootMicroService","url":"https://api.github.com/repos/mcalavera81/dockerizedSpringBootMicroService"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Developed in Scala, with 3 Docker containers linked","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:45Z"} +,{"id":"2489658813","type":"PushEvent","actor":{"id":10357356,"login":"tuxcoindev","gravatar_id":"","url":"https://api.github.com/users/tuxcoindev","avatar_url":"https://avatars.githubusercontent.com/u/10357356?"},"repo":{"id":28663770,"name":"tuxcoindev/tuxcoin","url":"https://api.github.com/repos/tuxcoindev/tuxcoin"},"payload":{"push_id":536867467,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0ceef5f90a7a108416a4eefbd8d33dbc89380582","before":"5799698144a59252648cd8bd06a7beb331f4602f","commits":[{"sha":"0ceef5f90a7a108416a4eefbd8d33dbc89380582","author":{"email":"4f6e0e92e264a02afec4735cdefbbebb31e366f8@users.noreply.github.com","name":"zeded"},"message":"rebrand to TuxCoin in one more place","distinct":true,"url":"https://api.github.com/repos/tuxcoindev/tuxcoin/commits/0ceef5f90a7a108416a4eefbd8d33dbc89380582"}]},"public":true,"created_at":"2015-01-01T15:16:45Z"} +,{"id":"2489658824","type":"IssueCommentEvent","actor":{"id":494201,"login":"alexcwatt","gravatar_id":"","url":"https://api.github.com/users/alexcwatt","avatar_url":"https://avatars.githubusercontent.com/u/494201?"},"repo":{"id":2277989,"name":"searls/jasmine-rails","url":"https://api.github.com/repos/searls/jasmine-rails"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/searls/jasmine-rails/issues/47","labels_url":"https://api.github.com/repos/searls/jasmine-rails/issues/47/labels{/name}","comments_url":"https://api.github.com/repos/searls/jasmine-rails/issues/47/comments","events_url":"https://api.github.com/repos/searls/jasmine-rails/issues/47/events","html_url":"https://github.com/searls/jasmine-rails/issues/47","id":16113193,"number":47,"title":"Can't find variable jsApiReporter","user":{"login":"jackocnr","id":1186883,"avatar_url":"https://avatars.githubusercontent.com/u/1186883?v=3","gravatar_id":"","url":"https://api.github.com/users/jackocnr","html_url":"https://github.com/jackocnr","followers_url":"https://api.github.com/users/jackocnr/followers","following_url":"https://api.github.com/users/jackocnr/following{/other_user}","gists_url":"https://api.github.com/users/jackocnr/gists{/gist_id}","starred_url":"https://api.github.com/users/jackocnr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jackocnr/subscriptions","organizations_url":"https://api.github.com/users/jackocnr/orgs","repos_url":"https://api.github.com/users/jackocnr/repos","events_url":"https://api.github.com/users/jackocnr/events{/privacy}","received_events_url":"https://api.github.com/users/jackocnr/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2013-06-27T20:43:37Z","updated_at":"2015-01-01T15:16:45Z","closed_at":null,"body":"I have installed the jasmine-rails gem, and installed phantomJS with homebrew (I'm running OSX 10.8.4) and my jasmine.yml was working fine with the plain jasmine gem. Now when I run\r\n\r\n bundle exec rake spec:javascript\r\n\r\nI get the following error:\r\n\r\n$ phantomjs \"/Users/user/.rvm/gems/ruby-1.9.3-p327/gems/jasmine-rails-0.4.5/lib/tasks/runner.js\" \"file:///Users/user/workspace/bacon/spec/tmp/runner.html?spec=BFApp.Views.ActivityFeedTab\"\r\nRunning: file:///Users/user/workspace/bacon/spec/tmp/runner.html?spec=BFApp.Views.ActivityFeedTab\r\nERROR: ReferenceError: Can't find variable: jsApiReporter\r\nTRACE:\r\n -> phantomjs://webpage.evaluate(): 3\r\nrake aborted!\r\nError executing command: phantomjs \"/Users/user/.rvm/gems/ruby-1.9.3-p327/gems/jasmine-rails-0.4.5/lib/tasks/runner.js\" \"file:///Users/user/workspace/bacon/spec/tmp/runner.html?spec=BFApp.Views.ActivityFeedTab\"\r\n/Users/user/.rvm/gems/ruby-1.9.3-p327/gems/jasmine-rails-0.4.5/lib/tasks/jasmine-rails_tasks.rake:5:in `run_cmd'\r\n/Users/user/.rvm/gems/ruby-1.9.3-p327/gems/jasmine-rails-0.4.5/lib/tasks/jasmine-rails_tasks.rake:28:in `block (2 levels) in '\r\n/Users/user/.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.4/lib/rake/task.rb:246:in `call'\r\n/Users/user/.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.4/lib/rake/task.rb:246:in `block in execute'\r\n/Users/user/.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.4/lib/rake/task.rb:241:in `each'\r\n/Users/user/.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.4/lib/rake/task.rb:241:in `execute'\r\n/Users/user/.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.4/lib/rake/task.rb:184:in `block in invoke_with_call_chain'\r\n/Users/user/.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.4/lib/rake/task.rb:177:in `invoke_with_call_chain'\r\n/Users/user/.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.4/lib/rake/task.rb:170:in `invoke'\r\n/Users/user/.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.4/lib/rake/application.rb:143:in `invoke_task'\r\n/Users/user/.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.4/lib/rake/application.rb:101:in `block (2 levels) in top_level'\r\n/Users/user/.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.4/lib/rake/application.rb:101:in `each'\r\n/Users/user/.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.4/lib/rake/application.rb:101:in `block in top_level'\r\n/Users/user/.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.4/lib/rake/application.rb:110:in `run_with_threads'\r\n/Users/user/.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.4/lib/rake/application.rb:95:in `top_level'\r\n/Users/user/.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.4/lib/rake/application.rb:73:in `block in run'\r\n/Users/user/.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.4/lib/rake/application.rb:160:in `standard_exception_handling'\r\n/Users/user/.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.4/lib/rake/application.rb:70:in `run'\r\n/Users/user/.rvm/gems/ruby-1.9.3-p327/bin/ruby_noexec_wrapper:14:in `eval'\r\n/Users/user/.rvm/gems/ruby-1.9.3-p327/bin/ruby_noexec_wrapper:14:in `
'"},"comment":{"url":"https://api.github.com/repos/searls/jasmine-rails/issues/comments/68488846","html_url":"https://github.com/searls/jasmine-rails/issues/47#issuecomment-68488846","issue_url":"https://api.github.com/repos/searls/jasmine-rails/issues/47","id":68488846,"user":{"login":"alexcwatt","id":494201,"avatar_url":"https://avatars.githubusercontent.com/u/494201?v=3","gravatar_id":"","url":"https://api.github.com/users/alexcwatt","html_url":"https://github.com/alexcwatt","followers_url":"https://api.github.com/users/alexcwatt/followers","following_url":"https://api.github.com/users/alexcwatt/following{/other_user}","gists_url":"https://api.github.com/users/alexcwatt/gists{/gist_id}","starred_url":"https://api.github.com/users/alexcwatt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alexcwatt/subscriptions","organizations_url":"https://api.github.com/users/alexcwatt/orgs","repos_url":"https://api.github.com/users/alexcwatt/repos","events_url":"https://api.github.com/users/alexcwatt/events{/privacy}","received_events_url":"https://api.github.com/users/alexcwatt/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:16:45Z","updated_at":"2015-01-01T15:16:45Z","body":"I am experiencing the same problem — tests are fine in the browser, but when running the specs from the console, I get this error:\r\n```\r\nERROR: ReferenceError: Can't find variable: jQuery\r\nTRACE:\r\n -> https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js: 5\r\n```\r\n\r\nI stripped down the runner.html file to the following, and still get an error when running it with `\"/home/acwatt/.phantomjs/1.9.7/x86_64-linux/bin/phantomjs\" \"/home/acwatt/.rvm/gems/ruby-2.1.0/gems/jasmine-rails-0.10.5/lib/jasmine_rails/../assets/javascripts/jasmine-runner.js\" \"/home/acwatt/myproject/tmp/jasmine/runner.html?spec=\"`\r\n```\r\n\r\n\r\n \r\n \r\n Jasmine Specs\r\n\r\n \r\n\r\n\r\n \r\n\r\n \r\n \r\n \r\n\r\n```\r\n\r\nAny ideas? Thanks, and happy new year!"}},"public":true,"created_at":"2015-01-01T15:16:46Z"} +,{"id":"2489658827","type":"PushEvent","actor":{"id":9962824,"login":"sabasingh","gravatar_id":"","url":"https://api.github.com/users/sabasingh","avatar_url":"https://avatars.githubusercontent.com/u/9962824?"},"repo":{"id":27308146,"name":"sabasingh/sabasingh.github.io","url":"https://api.github.com/repos/sabasingh/sabasingh.github.io"},"payload":{"push_id":536867470,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"eaa64348e3e6e7bd2e3ce4b8195149c9532f10c1","before":"88b5b480d282cb6fa84787d76030d5e6286184a3","commits":[{"sha":"eaa64348e3e6e7bd2e3ce4b8195149c9532f10c1","author":{"email":"d1658824968a4a6237bfcfe6370497b055c0db1f","name":"unknown"},"message":"porfolio color","distinct":true,"url":"https://api.github.com/repos/sabasingh/sabasingh.github.io/commits/eaa64348e3e6e7bd2e3ce4b8195149c9532f10c1"}]},"public":true,"created_at":"2015-01-01T15:16:46Z"} +,{"id":"2489658829","type":"PushEvent","actor":{"id":25046,"login":"tarsius","gravatar_id":"","url":"https://api.github.com/users/tarsius","avatar_url":"https://avatars.githubusercontent.com/u/25046?"},"repo":{"id":89314,"name":"tarsius/elx","url":"https://api.github.com/repos/tarsius/elx"},"payload":{"push_id":536867475,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8f339d0c266713ca8398b01d51ccfdbe1dbb9aeb","before":"d463e084226b7b6fe6b11a39d61bd334afb80b0d","commits":[{"sha":"8f339d0c266713ca8398b01d51ccfdbe1dbb9aeb","author":{"email":"35a2c6fae61f8077aab61faa4019722abf05093c@bernoul.li","name":"Jonas Bernoulli"},"message":"remove elx-version\n\nInstead just use (lm-header \"version\"). When the version to be\nextracted is sane then the returned value is identical to what\n`elx-version' would have returned. Otherwise you could use:\n\n (--when-let (lm-header \"version\")\n (or (vcomp-prefixed-version-p it)\n (vcomp-normalize it)))\n\nThis will return the same version, except for libraries by Drew Adams.\nFor his libraries `elx-version' did append the \"update number\" to the\nversion.\n\nThis was done for the benefit of the Emacsmirror but I am no longer\ndoing that here, and I am doing it differently (by ignoring the\n\"version\" completely, and using the \"update number\" in its place).","distinct":true,"url":"https://api.github.com/repos/tarsius/elx/commits/8f339d0c266713ca8398b01d51ccfdbe1dbb9aeb"}]},"public":true,"created_at":"2015-01-01T15:16:46Z"} +,{"id":"2489658830","type":"PushEvent","actor":{"id":1694562,"login":"codereader","gravatar_id":"","url":"https://api.github.com/users/codereader","avatar_url":"https://avatars.githubusercontent.com/u/1694562?"},"repo":{"id":16021678,"name":"codereader/DarkRadiant","url":"https://api.github.com/repos/codereader/DarkRadiant"},"payload":{"push_id":536867476,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"c176ec3db8f4958a66fc368f54bf2b7af46dd1ed","before":"7e299acf32216ab371546590bd0f1ea74efd2ee6","commits":[{"sha":"6c5242a66f542a0193e5bc123eaf463ebdb25bd7","author":{"email":"2b1eb7cf05da9555a97bc70db41106232306e044@angua.at","name":"codereader"},"message":"Rename instanceAttach(MapFile*) to onInsertIntoScene(MapFile*) to better reflect the execution flow.","distinct":true,"url":"https://api.github.com/repos/codereader/DarkRadiant/commits/6c5242a66f542a0193e5bc123eaf463ebdb25bd7"},{"sha":"c176ec3db8f4958a66fc368f54bf2b7af46dd1ed","author":{"email":"2b1eb7cf05da9555a97bc70db41106232306e044@angua.at","name":"codereader"},"message":"Move IUndoTracker class into UndoSystem namespace.","distinct":true,"url":"https://api.github.com/repos/codereader/DarkRadiant/commits/c176ec3db8f4958a66fc368f54bf2b7af46dd1ed"}]},"public":true,"created_at":"2015-01-01T15:16:46Z"} +,{"id":"2489658832","type":"PushEvent","actor":{"id":681260,"login":"giampaolo","gravatar_id":"","url":"https://api.github.com/users/giampaolo","avatar_url":"https://avatars.githubusercontent.com/u/681260?"},"repo":{"id":20101515,"name":"giampaolo/psutil","url":"https://api.github.com/repos/giampaolo/psutil"},"payload":{"push_id":536867474,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f3bb635f0d334eccf76478711b03eaf87db0b5eb","before":"cd37f6425e2e15f87778ae18b7bc7774d114ad2f","commits":[{"sha":"f3bb635f0d334eccf76478711b03eaf87db0b5eb","author":{"email":"a87591e89a990e1a9e66d5a1def1da90515f45ba@gmail.com","name":"Giampaolo Rodola"},"message":"fix #569: [FreeBSD] fix memory leak in psutil.cpu_count(logical=False).","distinct":true,"url":"https://api.github.com/repos/giampaolo/psutil/commits/f3bb635f0d334eccf76478711b03eaf87db0b5eb"}]},"public":true,"created_at":"2015-01-01T15:16:46Z"} +,{"id":"2489658836","type":"PushEvent","actor":{"id":6588994,"login":"christopherhealy","gravatar_id":"","url":"https://api.github.com/users/christopherhealy","avatar_url":"https://avatars.githubusercontent.com/u/6588994?"},"repo":{"id":28562593,"name":"christopherhealy/Dec28","url":"https://api.github.com/repos/christopherhealy/Dec28"},"payload":{"push_id":536867479,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"92330f70ad4db5842ff724d3abbc6609b5351ab5","before":"937af335f20f1e8251833df3ee91c46c2ab4e724","commits":[{"sha":"92330f70ad4db5842ff724d3abbc6609b5351ab5","author":{"email":"e0a3000c47a302c1fc9e7e3843aba60bdf39df76@outlook.com","name":"christopherhealy"},"message":"Test ip","distinct":true,"url":"https://api.github.com/repos/christopherhealy/Dec28/commits/92330f70ad4db5842ff724d3abbc6609b5351ab5"}]},"public":true,"created_at":"2015-01-01T15:16:47Z"} +,{"id":"2489658839","type":"CreateEvent","actor":{"id":9003364,"login":"monamonamonad","gravatar_id":"","url":"https://api.github.com/users/monamonamonad","avatar_url":"https://avatars.githubusercontent.com/u/9003364?"},"repo":{"id":28688908,"name":"monamonamonad/GMTL","url":"https://api.github.com/repos/monamonamonad/GMTL"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"アルゴリズムの授業で単位を貰うためだけに書かれた何か","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:47Z"} +,{"id":"2489658845","type":"ForkEvent","actor":{"id":5912082,"login":"fxcebx","gravatar_id":"","url":"https://api.github.com/users/fxcebx","avatar_url":"https://avatars.githubusercontent.com/u/5912082?"},"repo":{"id":17698953,"name":"cran/rNOMADS","url":"https://api.github.com/repos/cran/rNOMADS"},"payload":{"forkee":{"id":28688909,"name":"rNOMADS","full_name":"fxcebx/rNOMADS","owner":{"login":"fxcebx","id":5912082,"avatar_url":"https://avatars.githubusercontent.com/u/5912082?v=3","gravatar_id":"","url":"https://api.github.com/users/fxcebx","html_url":"https://github.com/fxcebx","followers_url":"https://api.github.com/users/fxcebx/followers","following_url":"https://api.github.com/users/fxcebx/following{/other_user}","gists_url":"https://api.github.com/users/fxcebx/gists{/gist_id}","starred_url":"https://api.github.com/users/fxcebx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fxcebx/subscriptions","organizations_url":"https://api.github.com/users/fxcebx/orgs","repos_url":"https://api.github.com/users/fxcebx/repos","events_url":"https://api.github.com/users/fxcebx/events{/privacy}","received_events_url":"https://api.github.com/users/fxcebx/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/fxcebx/rNOMADS","description":"An interface to the NOAA Operational Model Archive and","fork":true,"url":"https://api.github.com/repos/fxcebx/rNOMADS","forks_url":"https://api.github.com/repos/fxcebx/rNOMADS/forks","keys_url":"https://api.github.com/repos/fxcebx/rNOMADS/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fxcebx/rNOMADS/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fxcebx/rNOMADS/teams","hooks_url":"https://api.github.com/repos/fxcebx/rNOMADS/hooks","issue_events_url":"https://api.github.com/repos/fxcebx/rNOMADS/issues/events{/number}","events_url":"https://api.github.com/repos/fxcebx/rNOMADS/events","assignees_url":"https://api.github.com/repos/fxcebx/rNOMADS/assignees{/user}","branches_url":"https://api.github.com/repos/fxcebx/rNOMADS/branches{/branch}","tags_url":"https://api.github.com/repos/fxcebx/rNOMADS/tags","blobs_url":"https://api.github.com/repos/fxcebx/rNOMADS/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fxcebx/rNOMADS/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fxcebx/rNOMADS/git/refs{/sha}","trees_url":"https://api.github.com/repos/fxcebx/rNOMADS/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fxcebx/rNOMADS/statuses/{sha}","languages_url":"https://api.github.com/repos/fxcebx/rNOMADS/languages","stargazers_url":"https://api.github.com/repos/fxcebx/rNOMADS/stargazers","contributors_url":"https://api.github.com/repos/fxcebx/rNOMADS/contributors","subscribers_url":"https://api.github.com/repos/fxcebx/rNOMADS/subscribers","subscription_url":"https://api.github.com/repos/fxcebx/rNOMADS/subscription","commits_url":"https://api.github.com/repos/fxcebx/rNOMADS/commits{/sha}","git_commits_url":"https://api.github.com/repos/fxcebx/rNOMADS/git/commits{/sha}","comments_url":"https://api.github.com/repos/fxcebx/rNOMADS/comments{/number}","issue_comment_url":"https://api.github.com/repos/fxcebx/rNOMADS/issues/comments/{number}","contents_url":"https://api.github.com/repos/fxcebx/rNOMADS/contents/{+path}","compare_url":"https://api.github.com/repos/fxcebx/rNOMADS/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fxcebx/rNOMADS/merges","archive_url":"https://api.github.com/repos/fxcebx/rNOMADS/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fxcebx/rNOMADS/downloads","issues_url":"https://api.github.com/repos/fxcebx/rNOMADS/issues{/number}","pulls_url":"https://api.github.com/repos/fxcebx/rNOMADS/pulls{/number}","milestones_url":"https://api.github.com/repos/fxcebx/rNOMADS/milestones{/number}","notifications_url":"https://api.github.com/repos/fxcebx/rNOMADS/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fxcebx/rNOMADS/labels{/name}","releases_url":"https://api.github.com/repos/fxcebx/rNOMADS/releases{/id}","created_at":"2015-01-01T15:16:47Z","updated_at":"2015-01-01T15:16:33Z","pushed_at":"2014-10-30T18:44:52Z","git_url":"git://github.com/fxcebx/rNOMADS.git","ssh_url":"git@github.com:fxcebx/rNOMADS.git","clone_url":"https://github.com/fxcebx/rNOMADS.git","svn_url":"https://github.com/fxcebx/rNOMADS","homepage":"http://code.google.com/p/bovine-aerospace/ (subversion repository)","size":300,"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:16:48Z","org":{"id":6899542,"login":"cran","gravatar_id":"","url":"https://api.github.com/orgs/cran","avatar_url":"https://avatars.githubusercontent.com/u/6899542?"}} +,{"id":"2489658846","type":"PushEvent","actor":{"id":1529486,"login":"sys9kdr","gravatar_id":"","url":"https://api.github.com/users/sys9kdr","avatar_url":"https://avatars.githubusercontent.com/u/1529486?"},"repo":{"id":16432008,"name":"sys9kdr/dotfiles","url":"https://api.github.com/repos/sys9kdr/dotfiles"},"payload":{"push_id":536867482,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"a355f0f534834844ecb9b5057c986e186b9492ce","before":"cecf0ac70ccf970baa74832a2f04d15357df26db","commits":[{"sha":"0cdad69781b21d326547981cf2cc2266e61d30db","author":{"email":"52113a7e31b264c11233a6a131df41b3fa4b2ec0@gmail.com","name":"Daiki Noda"},"message":"消した","distinct":true,"url":"https://api.github.com/repos/sys9kdr/dotfiles/commits/0cdad69781b21d326547981cf2cc2266e61d30db"},{"sha":"a355f0f534834844ecb9b5057c986e186b9492ce","author":{"email":"52113a7e31b264c11233a6a131df41b3fa4b2ec0@gmail.com","name":"Daiki Noda"},"message":".zshenvでpathの重複に対処しつつ、vimでzshと同じpathを使う","distinct":true,"url":"https://api.github.com/repos/sys9kdr/dotfiles/commits/a355f0f534834844ecb9b5057c986e186b9492ce"}]},"public":true,"created_at":"2015-01-01T15:16:48Z"} +,{"id":"2489658848","type":"IssueCommentEvent","actor":{"id":2395134,"login":"philidem","gravatar_id":"","url":"https://api.github.com/users/philidem","avatar_url":"https://avatars.githubusercontent.com/u/2395134?"},"repo":{"id":15589856,"name":"raptorjs/raptor-util","url":"https://api.github.com/repos/raptorjs/raptor-util"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/raptorjs/raptor-util/issues/1","labels_url":"https://api.github.com/repos/raptorjs/raptor-util/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/raptorjs/raptor-util/issues/1/comments","events_url":"https://api.github.com/repos/raptorjs/raptor-util/issues/1/events","html_url":"https://github.com/raptorjs/raptor-util/pull/1","id":53213510,"number":1,"title":"Use the ternary operator in the second conditional as it is used in the ...","user":{"login":"austinkelleher","id":3771924,"avatar_url":"https://avatars.githubusercontent.com/u/3771924?v=3","gravatar_id":"","url":"https://api.github.com/users/austinkelleher","html_url":"https://github.com/austinkelleher","followers_url":"https://api.github.com/users/austinkelleher/followers","following_url":"https://api.github.com/users/austinkelleher/following{/other_user}","gists_url":"https://api.github.com/users/austinkelleher/gists{/gist_id}","starred_url":"https://api.github.com/users/austinkelleher/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/austinkelleher/subscriptions","organizations_url":"https://api.github.com/users/austinkelleher/orgs","repos_url":"https://api.github.com/users/austinkelleher/repos","events_url":"https://api.github.com/users/austinkelleher/events{/privacy}","received_events_url":"https://api.github.com/users/austinkelleher/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T05:44:17Z","updated_at":"2015-01-01T15:16:48Z","closed_at":"2015-01-01T15:16:13Z","pull_request":{"url":"https://api.github.com/repos/raptorjs/raptor-util/pulls/1","html_url":"https://github.com/raptorjs/raptor-util/pull/1","diff_url":"https://github.com/raptorjs/raptor-util/pull/1.diff","patch_url":"https://github.com/raptorjs/raptor-util/pull/1.patch"},"body":"...first."},"comment":{"url":"https://api.github.com/repos/raptorjs/raptor-util/issues/comments/68488847","html_url":"https://github.com/raptorjs/raptor-util/pull/1#issuecomment-68488847","issue_url":"https://api.github.com/repos/raptorjs/raptor-util/issues/1","id":68488847,"user":{"login":"philidem","id":2395134,"avatar_url":"https://avatars.githubusercontent.com/u/2395134?v=3","gravatar_id":"","url":"https://api.github.com/users/philidem","html_url":"https://github.com/philidem","followers_url":"https://api.github.com/users/philidem/followers","following_url":"https://api.github.com/users/philidem/following{/other_user}","gists_url":"https://api.github.com/users/philidem/gists{/gist_id}","starred_url":"https://api.github.com/users/philidem/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/philidem/subscriptions","organizations_url":"https://api.github.com/users/philidem/orgs","repos_url":"https://api.github.com/users/philidem/repos","events_url":"https://api.github.com/users/philidem/events{/privacy}","received_events_url":"https://api.github.com/users/philidem/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:16:48Z","updated_at":"2015-01-01T15:16:48Z","body":"Thanks, Austin, for the cleanup!"}},"public":true,"created_at":"2015-01-01T15:16:48Z","org":{"id":2119145,"login":"raptorjs","gravatar_id":"","url":"https://api.github.com/orgs/raptorjs","avatar_url":"https://avatars.githubusercontent.com/u/2119145?"}} +,{"id":"2489658849","type":"PushEvent","actor":{"id":10296544,"login":"Falconbase","gravatar_id":"","url":"https://api.github.com/users/Falconbase","avatar_url":"https://avatars.githubusercontent.com/u/10296544?"},"repo":{"id":28464320,"name":"ThomasPr/h2t","url":"https://api.github.com/repos/ThomasPr/h2t"},"payload":{"push_id":536867483,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7ec7945d290e2d29a7c903d2e48be70e1b9c4ea8","before":"790035e1dffd46023d8c8a965cdba16449f95f89","commits":[{"sha":"7ec7945d290e2d29a7c903d2e48be70e1b9c4ea8","author":{"email":"dc76e9f0c0006e8f919e0c515c66dbba3982f785@firewall.pegasus.local","name":"root"},"message":"added mtrs from freyr.kunesch.net","distinct":true,"url":"https://api.github.com/repos/ThomasPr/h2t/commits/7ec7945d290e2d29a7c903d2e48be70e1b9c4ea8"}]},"public":true,"created_at":"2015-01-01T15:16:48Z"} +,{"id":"2489658852","type":"IssueCommentEvent","actor":{"id":565124,"login":"peterhellberg","gravatar_id":"","url":"https://api.github.com/users/peterhellberg","avatar_url":"https://avatars.githubusercontent.com/u/565124?"},"repo":{"id":28280230,"name":"peterhellberg/tpb-search","url":"https://api.github.com/repos/peterhellberg/tpb-search"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/peterhellberg/tpb-search/issues/2","labels_url":"https://api.github.com/repos/peterhellberg/tpb-search/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/peterhellberg/tpb-search/issues/2/comments","events_url":"https://api.github.com/repos/peterhellberg/tpb-search/issues/2/events","html_url":"https://github.com/peterhellberg/tpb-search/issues/2","id":53182253,"number":2,"title":"[Features request]","user":{"login":"luckcolors","id":3228598,"avatar_url":"https://avatars.githubusercontent.com/u/3228598?v=3","gravatar_id":"","url":"https://api.github.com/users/luckcolors","html_url":"https://github.com/luckcolors","followers_url":"https://api.github.com/users/luckcolors/followers","following_url":"https://api.github.com/users/luckcolors/following{/other_user}","gists_url":"https://api.github.com/users/luckcolors/gists{/gist_id}","starred_url":"https://api.github.com/users/luckcolors/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/luckcolors/subscriptions","organizations_url":"https://api.github.com/users/luckcolors/orgs","repos_url":"https://api.github.com/users/luckcolors/repos","events_url":"https://api.github.com/users/luckcolors/events{/privacy}","received_events_url":"https://api.github.com/users/luckcolors/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-12-31T12:41:07Z","updated_at":"2015-01-01T15:16:48Z","closed_at":null,"body":"Hello i really like the tpb search app.\r\nI'm asking if you could add those 2 features to the app.\r\nFeature 1 : function to continue indexing from the last run\r\nFeature 2 : support of other database engines for the indexed DB (i'm asking this because from an 420mb csv i get 2gb/more of indexed DB)\r\nThanks in advance :)"},"comment":{"url":"https://api.github.com/repos/peterhellberg/tpb-search/issues/comments/68488849","html_url":"https://github.com/peterhellberg/tpb-search/issues/2#issuecomment-68488849","issue_url":"https://api.github.com/repos/peterhellberg/tpb-search/issues/2","id":68488849,"user":{"login":"peterhellberg","id":565124,"avatar_url":"https://avatars.githubusercontent.com/u/565124?v=3","gravatar_id":"","url":"https://api.github.com/users/peterhellberg","html_url":"https://github.com/peterhellberg","followers_url":"https://api.github.com/users/peterhellberg/followers","following_url":"https://api.github.com/users/peterhellberg/following{/other_user}","gists_url":"https://api.github.com/users/peterhellberg/gists{/gist_id}","starred_url":"https://api.github.com/users/peterhellberg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/peterhellberg/subscriptions","organizations_url":"https://api.github.com/users/peterhellberg/orgs","repos_url":"https://api.github.com/users/peterhellberg/repos","events_url":"https://api.github.com/users/peterhellberg/events{/privacy}","received_events_url":"https://api.github.com/users/peterhellberg/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:16:48Z","updated_at":"2015-01-01T15:16:48Z","body":"Ah, I’ll look into it :) Thanks\r\n\r\nOn Thursday, January 1, 2015, luckcolors wrote:\r\n\r\n> For the db type i found this :\r\n> https://github.com/blevesearch/bleve/tree/master/index/store\r\n> Also it seems that the database it's using now is BoltDb\r\n> (i know this because inside the rbp.index folder there's an json :\r\n> {\"storage\":\"boltdb\"} )\r\n> mayby it's possible to create an config for using an different DB.\r\n>\r\n> —\r\n> Reply to this email directly or view it on GitHub\r\n> \r\n> .\r\n>\r\n\r\n\r\n-- \r\n\r\n--\r\nPeter Hellberg\r\nRuby Developer, Code7 Interactive"}},"public":true,"created_at":"2015-01-01T15:16:48Z"} +,{"id":"2489658854","type":"CreateEvent","actor":{"id":10364866,"login":"583472074","gravatar_id":"","url":"https://api.github.com/users/583472074","avatar_url":"https://avatars.githubusercontent.com/u/10364866?"},"repo":{"id":28688911,"name":"583472074/instructor","url":"https://api.github.com/repos/583472074/instructor"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:48Z"} +,{"id":"2489658856","type":"CreateEvent","actor":{"id":10364817,"login":"jeankim80","gravatar_id":"","url":"https://api.github.com/users/jeankim80","avatar_url":"https://avatars.githubusercontent.com/u/10364817?"},"repo":{"id":28688910,"name":"jean-kim/index","url":"https://api.github.com/repos/jean-kim/index"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:48Z","org":{"id":10364837,"login":"jean-kim","gravatar_id":"","url":"https://api.github.com/orgs/jean-kim","avatar_url":"https://avatars.githubusercontent.com/u/10364837?"}} +,{"id":"2489658860","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":10849933,"name":"ajalt/fuckitpy","url":"https://api.github.com/repos/ajalt/fuckitpy"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:16:48Z"} +,{"id":"2489658862","type":"PushEvent","actor":{"id":8609868,"login":"SylvrG","gravatar_id":"","url":"https://api.github.com/users/SylvrG","avatar_url":"https://avatars.githubusercontent.com/u/8609868?"},"repo":{"id":28688901,"name":"SylvrG/Pirate","url":"https://api.github.com/repos/SylvrG/Pirate"},"payload":{"push_id":536867486,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f6326d82ba0ac9304fac2c9a75d3c4efc23e54ff","before":"f0ff31177640dc13df73082f55018d3030dc4e0c","commits":[{"sha":"f6326d82ba0ac9304fac2c9a75d3c4efc23e54ff","author":{"email":"d87ee5b02f19d302b77d739251b54dffc7e50b79@Shubhams-MacBook-Pro.local","name":"SylvrG"},"message":"images","distinct":true,"url":"https://api.github.com/repos/SylvrG/Pirate/commits/f6326d82ba0ac9304fac2c9a75d3c4efc23e54ff"}]},"public":true,"created_at":"2015-01-01T15:16:49Z"} +,{"id":"2489658865","type":"CreateEvent","actor":{"id":4134018,"login":"PiterEL","gravatar_id":"","url":"https://api.github.com/users/PiterEL","avatar_url":"https://avatars.githubusercontent.com/u/4134018?"},"repo":{"id":28687994,"name":"PiterEL/asuswrt-merlin","url":"https://api.github.com/repos/PiterEL/asuswrt-merlin"},"payload":{"ref":"dns","ref_type":"branch","master_branch":"master","description":"Enhanced version of Asus's router firmware (Asuswrt)","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:49Z"} +,{"id":"2489658871","type":"PullRequestEvent","actor":{"id":33528,"login":"koalalorenzo","gravatar_id":"","url":"https://api.github.com/users/koalalorenzo","avatar_url":"https://avatars.githubusercontent.com/u/33528?"},"repo":{"id":8177778,"name":"koalalorenzo/python-digitalocean","url":"https://api.github.com/repos/koalalorenzo/python-digitalocean"},"payload":{"action":"reopened","number":77,"pull_request":{"url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/77","id":26743746,"html_url":"https://github.com/koalalorenzo/python-digitalocean/pull/77","diff_url":"https://github.com/koalalorenzo/python-digitalocean/pull/77.diff","patch_url":"https://github.com/koalalorenzo/python-digitalocean/pull/77.patch","issue_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/77","number":77,"state":"open","locked":false,"title":"Allow SSHKey to be specified by fingerprint (Fixes #76)","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},"body":"This change modifies __get_ssh_keys_id to return a list containing IDs or fingerprints. The code assumes that fingerprints consist of 16 hexadecimal pairs separated by colons (e.g. 01:23:45:67:89:af:ca:ef:FE:DE:CB:A9:87:65:43:21).\r\n\r\nThis change also modifies SHHKeys.load. Allowing you to load a SHHKey by fingerprint.\r\n\r\nexamples:\r\n\r\n d = Droplet(...)\r\n d.create(ssh_keys=['01:23:45:67:89:ab:cd:ef:FE:DE:CB:A9:87:65:43:21'])\r\n\r\nor\r\n\r\n key = SSHKeys(fingerprint='01:23:45:67:89:ab:cd:ef:FE:DE:CB:A9:87:65:43:21')\r\n key.load()\r\n d = Droplet(...)\r\n d.create(ssh_keys=[key])\r\n\r\nI have not tested these modifications, but it should be fine to merge since it will not break any existing code (it might introduce buggy new features).","created_at":"2015-01-01T14:57:32Z","updated_at":"2015-01-01T15:16:50Z","closed_at":null,"merged_at":null,"merge_commit_sha":"522f3dc74c771451643bff8e651e325fe0699661","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/77/commits","review_comments_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/77/comments","review_comment_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/comments/{number}","comments_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/77/comments","statuses_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/statuses/4bdc87e670d6148330a622fd8f207302af6ea2fa","head":{"label":"moyamo:master","ref":"master","sha":"4bdc87e670d6148330a622fd8f207302af6ea2fa","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},"repo":{"id":28405844,"name":"python-digitalocean","full_name":"moyamo/python-digitalocean","owner":{"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},"private":false,"html_url":"https://github.com/moyamo/python-digitalocean","description":"Python module to manage digitalocean.com droplets","fork":true,"url":"https://api.github.com/repos/moyamo/python-digitalocean","forks_url":"https://api.github.com/repos/moyamo/python-digitalocean/forks","keys_url":"https://api.github.com/repos/moyamo/python-digitalocean/keys{/key_id}","collaborators_url":"https://api.github.com/repos/moyamo/python-digitalocean/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/moyamo/python-digitalocean/teams","hooks_url":"https://api.github.com/repos/moyamo/python-digitalocean/hooks","issue_events_url":"https://api.github.com/repos/moyamo/python-digitalocean/issues/events{/number}","events_url":"https://api.github.com/repos/moyamo/python-digitalocean/events","assignees_url":"https://api.github.com/repos/moyamo/python-digitalocean/assignees{/user}","branches_url":"https://api.github.com/repos/moyamo/python-digitalocean/branches{/branch}","tags_url":"https://api.github.com/repos/moyamo/python-digitalocean/tags","blobs_url":"https://api.github.com/repos/moyamo/python-digitalocean/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/moyamo/python-digitalocean/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/moyamo/python-digitalocean/git/refs{/sha}","trees_url":"https://api.github.com/repos/moyamo/python-digitalocean/git/trees{/sha}","statuses_url":"https://api.github.com/repos/moyamo/python-digitalocean/statuses/{sha}","languages_url":"https://api.github.com/repos/moyamo/python-digitalocean/languages","stargazers_url":"https://api.github.com/repos/moyamo/python-digitalocean/stargazers","contributors_url":"https://api.github.com/repos/moyamo/python-digitalocean/contributors","subscribers_url":"https://api.github.com/repos/moyamo/python-digitalocean/subscribers","subscription_url":"https://api.github.com/repos/moyamo/python-digitalocean/subscription","commits_url":"https://api.github.com/repos/moyamo/python-digitalocean/commits{/sha}","git_commits_url":"https://api.github.com/repos/moyamo/python-digitalocean/git/commits{/sha}","comments_url":"https://api.github.com/repos/moyamo/python-digitalocean/comments{/number}","issue_comment_url":"https://api.github.com/repos/moyamo/python-digitalocean/issues/comments/{number}","contents_url":"https://api.github.com/repos/moyamo/python-digitalocean/contents/{+path}","compare_url":"https://api.github.com/repos/moyamo/python-digitalocean/compare/{base}...{head}","merges_url":"https://api.github.com/repos/moyamo/python-digitalocean/merges","archive_url":"https://api.github.com/repos/moyamo/python-digitalocean/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/moyamo/python-digitalocean/downloads","issues_url":"https://api.github.com/repos/moyamo/python-digitalocean/issues{/number}","pulls_url":"https://api.github.com/repos/moyamo/python-digitalocean/pulls{/number}","milestones_url":"https://api.github.com/repos/moyamo/python-digitalocean/milestones{/number}","notifications_url":"https://api.github.com/repos/moyamo/python-digitalocean/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/moyamo/python-digitalocean/labels{/name}","releases_url":"https://api.github.com/repos/moyamo/python-digitalocean/releases{/id}","created_at":"2014-12-23T15:46:15Z","updated_at":"2015-01-01T14:56:24Z","pushed_at":"2015-01-01T14:56:23Z","git_url":"git://github.com/moyamo/python-digitalocean.git","ssh_url":"git@github.com:moyamo/python-digitalocean.git","clone_url":"https://github.com/moyamo/python-digitalocean.git","svn_url":"https://github.com/moyamo/python-digitalocean","homepage":"http://projects.setale.me/python-digitalocean/","size":342,"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":"koalalorenzo:master","ref":"master","sha":"6462517ac267ae3e6f4028f734c42f63c7eb2bdd","user":{"login":"koalalorenzo","id":33528,"avatar_url":"https://avatars.githubusercontent.com/u/33528?v=3","gravatar_id":"","url":"https://api.github.com/users/koalalorenzo","html_url":"https://github.com/koalalorenzo","followers_url":"https://api.github.com/users/koalalorenzo/followers","following_url":"https://api.github.com/users/koalalorenzo/following{/other_user}","gists_url":"https://api.github.com/users/koalalorenzo/gists{/gist_id}","starred_url":"https://api.github.com/users/koalalorenzo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/koalalorenzo/subscriptions","organizations_url":"https://api.github.com/users/koalalorenzo/orgs","repos_url":"https://api.github.com/users/koalalorenzo/repos","events_url":"https://api.github.com/users/koalalorenzo/events{/privacy}","received_events_url":"https://api.github.com/users/koalalorenzo/received_events","type":"User","site_admin":false},"repo":{"id":8177778,"name":"python-digitalocean","full_name":"koalalorenzo/python-digitalocean","owner":{"login":"koalalorenzo","id":33528,"avatar_url":"https://avatars.githubusercontent.com/u/33528?v=3","gravatar_id":"","url":"https://api.github.com/users/koalalorenzo","html_url":"https://github.com/koalalorenzo","followers_url":"https://api.github.com/users/koalalorenzo/followers","following_url":"https://api.github.com/users/koalalorenzo/following{/other_user}","gists_url":"https://api.github.com/users/koalalorenzo/gists{/gist_id}","starred_url":"https://api.github.com/users/koalalorenzo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/koalalorenzo/subscriptions","organizations_url":"https://api.github.com/users/koalalorenzo/orgs","repos_url":"https://api.github.com/users/koalalorenzo/repos","events_url":"https://api.github.com/users/koalalorenzo/events{/privacy}","received_events_url":"https://api.github.com/users/koalalorenzo/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/koalalorenzo/python-digitalocean","description":"Python module to manage digitalocean.com droplets","fork":false,"url":"https://api.github.com/repos/koalalorenzo/python-digitalocean","forks_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/forks","keys_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/keys{/key_id}","collaborators_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/teams","hooks_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/hooks","issue_events_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/events{/number}","events_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/events","assignees_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/assignees{/user}","branches_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/branches{/branch}","tags_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/tags","blobs_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/git/refs{/sha}","trees_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/git/trees{/sha}","statuses_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/statuses/{sha}","languages_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/languages","stargazers_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/stargazers","contributors_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/contributors","subscribers_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/subscribers","subscription_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/subscription","commits_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/commits{/sha}","git_commits_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/git/commits{/sha}","comments_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/comments{/number}","issue_comment_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/comments/{number}","contents_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/contents/{+path}","compare_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/compare/{base}...{head}","merges_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/merges","archive_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/downloads","issues_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues{/number}","pulls_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls{/number}","milestones_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/milestones{/number}","notifications_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/labels{/name}","releases_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/releases{/id}","created_at":"2013-02-13T11:09:49Z","updated_at":"2014-12-26T08:08:42Z","pushed_at":"2014-12-24T18:32:38Z","git_url":"git://github.com/koalalorenzo/python-digitalocean.git","ssh_url":"git@github.com:koalalorenzo/python-digitalocean.git","clone_url":"https://github.com/koalalorenzo/python-digitalocean.git","svn_url":"https://github.com/koalalorenzo/python-digitalocean","homepage":"http://projects.setale.me/python-digitalocean/","size":1065,"stargazers_count":150,"watchers_count":150,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":49,"mirror_url":null,"open_issues_count":2,"forks":49,"open_issues":2,"watchers":150,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/77"},"html":{"href":"https://github.com/koalalorenzo/python-digitalocean/pull/77"},"issue":{"href":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/77"},"comments":{"href":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/77/comments"},"review_comments":{"href":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/77/comments"},"review_comment":{"href":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/77/commits"},"statuses":{"href":"https://api.github.com/repos/koalalorenzo/python-digitalocean/statuses/4bdc87e670d6148330a622fd8f207302af6ea2fa"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":1,"review_comments":0,"commits":3,"additions":38,"deletions":18,"changed_files":2}},"public":true,"created_at":"2015-01-01T15:16:50Z"} +,{"id":"2489658872","type":"PushEvent","actor":{"id":6781828,"login":"surikat","gravatar_id":"","url":"https://api.github.com/users/surikat","avatar_url":"https://avatars.githubusercontent.com/u/6781828?"},"repo":{"id":20213657,"name":"surikat/Surikat","url":"https://api.github.com/repos/surikat/Surikat"},"payload":{"push_id":536867491,"size":5,"distinct_size":5,"ref":"refs/heads/master","head":"e3c277c69853c9f4a1b39e64e0d50894d890e6ca","before":"369d8a112b09db52e04d421316f46cc13d7836e3","commits":[{"sha":"f8e37d3c0231ca9c8cd7ae43072c0a1f4d4c7218","author":{"email":"bd73d35759d75cc215150d1bbc94f1b1078bee01@surikat.pro","name":"surikat"},"message":"bugfix","distinct":true,"url":"https://api.github.com/repos/surikat/Surikat/commits/f8e37d3c0231ca9c8cd7ae43072c0a1f4d4c7218"},{"sha":"123c12aca5971408e68e199dc6dd74b8a64b0723","author":{"email":"bd73d35759d75cc215150d1bbc94f1b1078bee01@surikat.pro","name":"surikat"},"message":"fix","distinct":true,"url":"https://api.github.com/repos/surikat/Surikat/commits/123c12aca5971408e68e199dc6dd74b8a64b0723"},{"sha":"862bb04bb8fff86451f909d011e067d7c4730ae3","author":{"email":"bd73d35759d75cc215150d1bbc94f1b1078bee01@surikat.pro","name":"surikat"},"message":"put base href in dynamic for multiple dns access (local network)","distinct":true,"url":"https://api.github.com/repos/surikat/Surikat/commits/862bb04bb8fff86451f909d011e067d7c4730ae3"},{"sha":"b9e13b315c12ba2a49ef3ac7fa29ab5cad6e2dd4","author":{"email":"bd73d35759d75cc215150d1bbc94f1b1078bee01@surikat.pro","name":"surikat"},"message":"add indexable text column type","distinct":true,"url":"https://api.github.com/repos/surikat/Surikat/commits/b9e13b315c12ba2a49ef3ac7fa29ab5cad6e2dd4"},{"sha":"e3c277c69853c9f4a1b39e64e0d50894d890e6ca","author":{"email":"bd73d35759d75cc215150d1bbc94f1b1078bee01@surikat.pro","name":"surikat"},"message":"wip","distinct":true,"url":"https://api.github.com/repos/surikat/Surikat/commits/e3c277c69853c9f4a1b39e64e0d50894d890e6ca"}]},"public":true,"created_at":"2015-01-01T15:16:50Z"} +,{"id":"2489658873","type":"PushEvent","actor":{"id":8741669,"login":"Backdraft007","gravatar_id":"","url":"https://api.github.com/users/Backdraft007","avatar_url":"https://avatars.githubusercontent.com/u/8741669?"},"repo":{"id":28464320,"name":"ThomasPr/h2t","url":"https://api.github.com/repos/ThomasPr/h2t"},"payload":{"push_id":536867490,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"5c5dc9fd3a1c9f7aaeed2b12af818e1dd071185a","before":"7ec7945d290e2d29a7c903d2e48be70e1b9c4ea8","commits":[{"sha":"9b2a1cf88a044cd7bbe49539c0f240076b7a293c","author":{"email":"dc76e9f0c0006e8f919e0c515c66dbba3982f785@monitoring.remko.intern","name":"root"},"message":"added mtrs from firewall.remko.de","distinct":true,"url":"https://api.github.com/repos/ThomasPr/h2t/commits/9b2a1cf88a044cd7bbe49539c0f240076b7a293c"},{"sha":"5c5dc9fd3a1c9f7aaeed2b12af818e1dd071185a","author":{"email":"dc76e9f0c0006e8f919e0c515c66dbba3982f785@monitoring.remko.intern","name":"root"},"message":"Merge branch 'master' of github.com:ThomasPr/h2t","distinct":true,"url":"https://api.github.com/repos/ThomasPr/h2t/commits/5c5dc9fd3a1c9f7aaeed2b12af818e1dd071185a"}]},"public":true,"created_at":"2015-01-01T15:16:50Z"} +,{"id":"2489658875","type":"PushEvent","actor":{"id":6652430,"login":"ramblingsofadev","gravatar_id":"","url":"https://api.github.com/users/ramblingsofadev","avatar_url":"https://avatars.githubusercontent.com/u/6652430?"},"repo":{"id":25977911,"name":"ramblingsofadev/Project","url":"https://api.github.com/repos/ramblingsofadev/Project"},"payload":{"push_id":536867492,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"8967ec5ba9ecb7c38f3919f80a13240c1873964e","before":"dbdaa0d635bacd088f05dcaf8ad054e6e3a1c234","commits":[{"sha":"d4da0a32cb11ec701b131ce1cf093f14423905d1","author":{"email":"0eecd9161510c4389a34562e9dd1bfdfbcd416ed@gmail.com","name":"ramblingsofadev"},"message":"Updated","distinct":true,"url":"https://api.github.com/repos/ramblingsofadev/Project/commits/d4da0a32cb11ec701b131ce1cf093f14423905d1"},{"sha":"8967ec5ba9ecb7c38f3919f80a13240c1873964e","author":{"email":"0eecd9161510c4389a34562e9dd1bfdfbcd416ed@gmail.com","name":"ramblingsofadev"},"message":"Merge remote-tracking branch 'origin/master'","distinct":true,"url":"https://api.github.com/repos/ramblingsofadev/Project/commits/8967ec5ba9ecb7c38f3919f80a13240c1873964e"}]},"public":true,"created_at":"2015-01-01T15:16:50Z"} +,{"id":"2489658876","type":"WatchEvent","actor":{"id":36397,"login":"smee","gravatar_id":"","url":"https://api.github.com/users/smee","avatar_url":"https://avatars.githubusercontent.com/u/36397?"},"repo":{"id":3859867,"name":"tebeka/clj-digest","url":"https://api.github.com/repos/tebeka/clj-digest"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:16:51Z"} +,{"id":"2489658878","type":"CreateEvent","actor":{"id":4767930,"login":"joeyhipolito","gravatar_id":"","url":"https://api.github.com/users/joeyhipolito","avatar_url":"https://avatars.githubusercontent.com/u/4767930?"},"repo":{"id":28688904,"name":"veeyo/veeyo.github.io","url":"https://api.github.com/repos/veeyo/veeyo.github.io"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:51Z","org":{"id":10364423,"login":"veeyo","gravatar_id":"","url":"https://api.github.com/orgs/veeyo","avatar_url":"https://avatars.githubusercontent.com/u/10364423?"}} +,{"id":"2489658881","type":"PullRequestEvent","actor":{"id":1233654,"login":"usbrandon","gravatar_id":"","url":"https://api.github.com/users/usbrandon","avatar_url":"https://avatars.githubusercontent.com/u/1233654?"},"repo":{"id":17986405,"name":"ivylabs/IvySE","url":"https://api.github.com/repos/ivylabs/IvySE"},"payload":{"action":"opened","number":11,"pull_request":{"url":"https://api.github.com/repos/ivylabs/IvySE/pulls/11","id":26743896,"html_url":"https://github.com/ivylabs/IvySE/pull/11","diff_url":"https://github.com/ivylabs/IvySE/pull/11.diff","patch_url":"https://github.com/ivylabs/IvySE/pull/11.patch","issue_url":"https://api.github.com/repos/ivylabs/IvySE/issues/11","number":11,"state":"open","locked":false,"title":"Fixed / Made easier to use on Pentaho 5.2.1-EE/5.2.0-CE againsts Ctools 14.12.10.","user":{"login":"usbrandon","id":1233654,"avatar_url":"https://avatars.githubusercontent.com/u/1233654?v=3","gravatar_id":"","url":"https://api.github.com/users/usbrandon","html_url":"https://github.com/usbrandon","followers_url":"https://api.github.com/users/usbrandon/followers","following_url":"https://api.github.com/users/usbrandon/following{/other_user}","gists_url":"https://api.github.com/users/usbrandon/gists{/gist_id}","starred_url":"https://api.github.com/users/usbrandon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/usbrandon/subscriptions","organizations_url":"https://api.github.com/users/usbrandon/orgs","repos_url":"https://api.github.com/users/usbrandon/repos","events_url":"https://api.github.com/users/usbrandon/events{/privacy}","received_events_url":"https://api.github.com/users/usbrandon/received_events","type":"User","site_admin":false},"body":"Took care of the Jquery / fancybox references.\r\nCommented out the modal dialog box on startup.\r\nMade it where IvySE appears in Sparkl, so it is easy to enhance and work on.\r\n\r\nTodo:\r\nOnce Saiku works again on EE, enable it.\r\nWanted to make an expanding table to allow previewing of a cube directly from a file. Looks like I have to parse XML to get the cube names.\r\n","created_at":"2015-01-01T15:16:50Z","updated_at":"2015-01-01T15:16:50Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/ivylabs/IvySE/pulls/11/commits","review_comments_url":"https://api.github.com/repos/ivylabs/IvySE/pulls/11/comments","review_comment_url":"https://api.github.com/repos/ivylabs/IvySE/pulls/comments/{number}","comments_url":"https://api.github.com/repos/ivylabs/IvySE/issues/11/comments","statuses_url":"https://api.github.com/repos/ivylabs/IvySE/statuses/1231f5bf5221b602c9cf376758233f6b7dcb84f9","head":{"label":"usbrandon:master","ref":"master","sha":"1231f5bf5221b602c9cf376758233f6b7dcb84f9","user":{"login":"usbrandon","id":1233654,"avatar_url":"https://avatars.githubusercontent.com/u/1233654?v=3","gravatar_id":"","url":"https://api.github.com/users/usbrandon","html_url":"https://github.com/usbrandon","followers_url":"https://api.github.com/users/usbrandon/followers","following_url":"https://api.github.com/users/usbrandon/following{/other_user}","gists_url":"https://api.github.com/users/usbrandon/gists{/gist_id}","starred_url":"https://api.github.com/users/usbrandon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/usbrandon/subscriptions","organizations_url":"https://api.github.com/users/usbrandon/orgs","repos_url":"https://api.github.com/users/usbrandon/repos","events_url":"https://api.github.com/users/usbrandon/events{/privacy}","received_events_url":"https://api.github.com/users/usbrandon/received_events","type":"User","site_admin":false},"repo":{"id":27884950,"name":"IvySE","full_name":"usbrandon/IvySE","owner":{"login":"usbrandon","id":1233654,"avatar_url":"https://avatars.githubusercontent.com/u/1233654?v=3","gravatar_id":"","url":"https://api.github.com/users/usbrandon","html_url":"https://github.com/usbrandon","followers_url":"https://api.github.com/users/usbrandon/followers","following_url":"https://api.github.com/users/usbrandon/following{/other_user}","gists_url":"https://api.github.com/users/usbrandon/gists{/gist_id}","starred_url":"https://api.github.com/users/usbrandon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/usbrandon/subscriptions","organizations_url":"https://api.github.com/users/usbrandon/orgs","repos_url":"https://api.github.com/users/usbrandon/repos","events_url":"https://api.github.com/users/usbrandon/events{/privacy}","received_events_url":"https://api.github.com/users/usbrandon/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/usbrandon/IvySE","description":"IvySE - Ivy Schema Editor","fork":true,"url":"https://api.github.com/repos/usbrandon/IvySE","forks_url":"https://api.github.com/repos/usbrandon/IvySE/forks","keys_url":"https://api.github.com/repos/usbrandon/IvySE/keys{/key_id}","collaborators_url":"https://api.github.com/repos/usbrandon/IvySE/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/usbrandon/IvySE/teams","hooks_url":"https://api.github.com/repos/usbrandon/IvySE/hooks","issue_events_url":"https://api.github.com/repos/usbrandon/IvySE/issues/events{/number}","events_url":"https://api.github.com/repos/usbrandon/IvySE/events","assignees_url":"https://api.github.com/repos/usbrandon/IvySE/assignees{/user}","branches_url":"https://api.github.com/repos/usbrandon/IvySE/branches{/branch}","tags_url":"https://api.github.com/repos/usbrandon/IvySE/tags","blobs_url":"https://api.github.com/repos/usbrandon/IvySE/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/usbrandon/IvySE/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/usbrandon/IvySE/git/refs{/sha}","trees_url":"https://api.github.com/repos/usbrandon/IvySE/git/trees{/sha}","statuses_url":"https://api.github.com/repos/usbrandon/IvySE/statuses/{sha}","languages_url":"https://api.github.com/repos/usbrandon/IvySE/languages","stargazers_url":"https://api.github.com/repos/usbrandon/IvySE/stargazers","contributors_url":"https://api.github.com/repos/usbrandon/IvySE/contributors","subscribers_url":"https://api.github.com/repos/usbrandon/IvySE/subscribers","subscription_url":"https://api.github.com/repos/usbrandon/IvySE/subscription","commits_url":"https://api.github.com/repos/usbrandon/IvySE/commits{/sha}","git_commits_url":"https://api.github.com/repos/usbrandon/IvySE/git/commits{/sha}","comments_url":"https://api.github.com/repos/usbrandon/IvySE/comments{/number}","issue_comment_url":"https://api.github.com/repos/usbrandon/IvySE/issues/comments/{number}","contents_url":"https://api.github.com/repos/usbrandon/IvySE/contents/{+path}","compare_url":"https://api.github.com/repos/usbrandon/IvySE/compare/{base}...{head}","merges_url":"https://api.github.com/repos/usbrandon/IvySE/merges","archive_url":"https://api.github.com/repos/usbrandon/IvySE/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/usbrandon/IvySE/downloads","issues_url":"https://api.github.com/repos/usbrandon/IvySE/issues{/number}","pulls_url":"https://api.github.com/repos/usbrandon/IvySE/pulls{/number}","milestones_url":"https://api.github.com/repos/usbrandon/IvySE/milestones{/number}","notifications_url":"https://api.github.com/repos/usbrandon/IvySE/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/usbrandon/IvySE/labels{/name}","releases_url":"https://api.github.com/repos/usbrandon/IvySE/releases{/id}","created_at":"2014-12-11T18:16:03Z","updated_at":"2015-01-01T07:19:32Z","pushed_at":"2015-01-01T07:19:32Z","git_url":"git://github.com/usbrandon/IvySE.git","ssh_url":"git@github.com:usbrandon/IvySE.git","clone_url":"https://github.com/usbrandon/IvySE.git","svn_url":"https://github.com/usbrandon/IvySE","homepage":"http://www.ivy-is.co.uk","size":2671,"stargazers_count":0,"watchers_count":0,"language":"CSS","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":"ivylabs:master","ref":"master","sha":"95835eb89ed1c62095a86f9d4932d65a63f337f3","user":{"login":"ivylabs","id":6483709,"avatar_url":"https://avatars.githubusercontent.com/u/6483709?v=3","gravatar_id":"","url":"https://api.github.com/users/ivylabs","html_url":"https://github.com/ivylabs","followers_url":"https://api.github.com/users/ivylabs/followers","following_url":"https://api.github.com/users/ivylabs/following{/other_user}","gists_url":"https://api.github.com/users/ivylabs/gists{/gist_id}","starred_url":"https://api.github.com/users/ivylabs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ivylabs/subscriptions","organizations_url":"https://api.github.com/users/ivylabs/orgs","repos_url":"https://api.github.com/users/ivylabs/repos","events_url":"https://api.github.com/users/ivylabs/events{/privacy}","received_events_url":"https://api.github.com/users/ivylabs/received_events","type":"Organization","site_admin":false},"repo":{"id":17986405,"name":"IvySE","full_name":"ivylabs/IvySE","owner":{"login":"ivylabs","id":6483709,"avatar_url":"https://avatars.githubusercontent.com/u/6483709?v=3","gravatar_id":"","url":"https://api.github.com/users/ivylabs","html_url":"https://github.com/ivylabs","followers_url":"https://api.github.com/users/ivylabs/followers","following_url":"https://api.github.com/users/ivylabs/following{/other_user}","gists_url":"https://api.github.com/users/ivylabs/gists{/gist_id}","starred_url":"https://api.github.com/users/ivylabs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ivylabs/subscriptions","organizations_url":"https://api.github.com/users/ivylabs/orgs","repos_url":"https://api.github.com/users/ivylabs/repos","events_url":"https://api.github.com/users/ivylabs/events{/privacy}","received_events_url":"https://api.github.com/users/ivylabs/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/ivylabs/IvySE","description":"IvySE - Ivy Schema Editor","fork":false,"url":"https://api.github.com/repos/ivylabs/IvySE","forks_url":"https://api.github.com/repos/ivylabs/IvySE/forks","keys_url":"https://api.github.com/repos/ivylabs/IvySE/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ivylabs/IvySE/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ivylabs/IvySE/teams","hooks_url":"https://api.github.com/repos/ivylabs/IvySE/hooks","issue_events_url":"https://api.github.com/repos/ivylabs/IvySE/issues/events{/number}","events_url":"https://api.github.com/repos/ivylabs/IvySE/events","assignees_url":"https://api.github.com/repos/ivylabs/IvySE/assignees{/user}","branches_url":"https://api.github.com/repos/ivylabs/IvySE/branches{/branch}","tags_url":"https://api.github.com/repos/ivylabs/IvySE/tags","blobs_url":"https://api.github.com/repos/ivylabs/IvySE/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ivylabs/IvySE/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ivylabs/IvySE/git/refs{/sha}","trees_url":"https://api.github.com/repos/ivylabs/IvySE/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ivylabs/IvySE/statuses/{sha}","languages_url":"https://api.github.com/repos/ivylabs/IvySE/languages","stargazers_url":"https://api.github.com/repos/ivylabs/IvySE/stargazers","contributors_url":"https://api.github.com/repos/ivylabs/IvySE/contributors","subscribers_url":"https://api.github.com/repos/ivylabs/IvySE/subscribers","subscription_url":"https://api.github.com/repos/ivylabs/IvySE/subscription","commits_url":"https://api.github.com/repos/ivylabs/IvySE/commits{/sha}","git_commits_url":"https://api.github.com/repos/ivylabs/IvySE/git/commits{/sha}","comments_url":"https://api.github.com/repos/ivylabs/IvySE/comments{/number}","issue_comment_url":"https://api.github.com/repos/ivylabs/IvySE/issues/comments/{number}","contents_url":"https://api.github.com/repos/ivylabs/IvySE/contents/{+path}","compare_url":"https://api.github.com/repos/ivylabs/IvySE/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ivylabs/IvySE/merges","archive_url":"https://api.github.com/repos/ivylabs/IvySE/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ivylabs/IvySE/downloads","issues_url":"https://api.github.com/repos/ivylabs/IvySE/issues{/number}","pulls_url":"https://api.github.com/repos/ivylabs/IvySE/pulls{/number}","milestones_url":"https://api.github.com/repos/ivylabs/IvySE/milestones{/number}","notifications_url":"https://api.github.com/repos/ivylabs/IvySE/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ivylabs/IvySE/labels{/name}","releases_url":"https://api.github.com/repos/ivylabs/IvySE/releases{/id}","created_at":"2014-03-21T16:33:18Z","updated_at":"2014-11-17T23:27:14Z","pushed_at":"2014-09-02T11:19:25Z","git_url":"git://github.com/ivylabs/IvySE.git","ssh_url":"git@github.com:ivylabs/IvySE.git","clone_url":"https://github.com/ivylabs/IvySE.git","svn_url":"https://github.com/ivylabs/IvySE","homepage":"http://www.ivy-is.co.uk","size":3008,"stargazers_count":4,"watchers_count":4,"language":"CSS","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":3,"mirror_url":null,"open_issues_count":1,"forks":3,"open_issues":1,"watchers":4,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/ivylabs/IvySE/pulls/11"},"html":{"href":"https://github.com/ivylabs/IvySE/pull/11"},"issue":{"href":"https://api.github.com/repos/ivylabs/IvySE/issues/11"},"comments":{"href":"https://api.github.com/repos/ivylabs/IvySE/issues/11/comments"},"review_comments":{"href":"https://api.github.com/repos/ivylabs/IvySE/pulls/11/comments"},"review_comment":{"href":"https://api.github.com/repos/ivylabs/IvySE/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/ivylabs/IvySE/pulls/11/commits"},"statuses":{"href":"https://api.github.com/repos/ivylabs/IvySE/statuses/1231f5bf5221b602c9cf376758233f6b7dcb84f9"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":4,"additions":22,"deletions":26,"changed_files":21}},"public":true,"created_at":"2015-01-01T15:16:51Z","org":{"id":6483709,"login":"ivylabs","gravatar_id":"","url":"https://api.github.com/orgs/ivylabs","avatar_url":"https://avatars.githubusercontent.com/u/6483709?"}} +,{"id":"2489658882","type":"PushEvent","actor":{"id":8651475,"login":"583132460","gravatar_id":"","url":"https://api.github.com/users/583132460","avatar_url":"https://avatars.githubusercontent.com/u/8651475?"},"repo":{"id":28688776,"name":"583132460/Temp","url":"https://api.github.com/repos/583132460/Temp"},"payload":{"push_id":536867495,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"00bdca07b10638b94ed7fef6b68b401aaf0f860d","before":"104e3fbb9d855dc90254fb6c93a5c222294816fb","commits":[{"sha":"00bdca07b10638b94ed7fef6b68b401aaf0f860d","author":{"email":"3f2a00d487dc1f4f49f99af8133e647bc631a0c9@qq.com","name":"583132460"},"message":"第三次\n\n这是第三次的修改提交","distinct":true,"url":"https://api.github.com/repos/583132460/Temp/commits/00bdca07b10638b94ed7fef6b68b401aaf0f860d"}]},"public":true,"created_at":"2015-01-01T15:16:51Z"} +,{"id":"2489658884","type":"PushEvent","actor":{"id":6449100,"login":"Reyft","gravatar_id":"","url":"https://api.github.com/users/Reyft","avatar_url":"https://avatars.githubusercontent.com/u/6449100?"},"repo":{"id":28687981,"name":"Reyft/complexite","url":"https://api.github.com/repos/Reyft/complexite"},"payload":{"push_id":536867496,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"37778d7a29c14f5dd4b0d9c5b6bd76d1f5609614","before":"fc21cb1e464e6ae2d7f51a088727fed5f486c6ea","commits":[{"sha":"37778d7a29c14f5dd4b0d9c5b6bd76d1f5609614","author":{"email":"e34000233081c26c5f08203e514675b3942f07ce@etu.unice.fr","name":"rémy dupanloup"},"message":"petite modifs","distinct":true,"url":"https://api.github.com/repos/Reyft/complexite/commits/37778d7a29c14f5dd4b0d9c5b6bd76d1f5609614"}]},"public":true,"created_at":"2015-01-01T15:16:51Z"} +,{"id":"2489658886","type":"PushEvent","actor":{"id":10062233,"login":"wangyang602117818","gravatar_id":"","url":"https://api.github.com/users/wangyang602117818","avatar_url":"https://avatars.githubusercontent.com/u/10062233?"},"repo":{"id":27633570,"name":"wangyang602117818/learngit","url":"https://api.github.com/repos/wangyang602117818/learngit"},"payload":{"push_id":536867499,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"005064b80ff1b074d705e680cdb9ba96d788cd9e","before":"7ca4269ee9d36407ece0e9f9bcd815da5969777d","commits":[{"sha":"005064b80ff1b074d705e680cdb9ba96d788cd9e","author":{"email":"520d1ff391263bbb0b12e42fca375ce882dd50a4@qq.com","name":"wangyang602117818"},"message":"Update 001.txt","distinct":true,"url":"https://api.github.com/repos/wangyang602117818/learngit/commits/005064b80ff1b074d705e680cdb9ba96d788cd9e"}]},"public":true,"created_at":"2015-01-01T15:16:51Z"} +,{"id":"2489658889","type":"CreateEvent","actor":{"id":25046,"login":"tarsius","gravatar_id":"","url":"https://api.github.com/users/tarsius","avatar_url":"https://avatars.githubusercontent.com/u/25046?"},"repo":{"id":89314,"name":"tarsius/elx","url":"https://api.github.com/repos/tarsius/elx"},"payload":{"ref":"0.10.0","ref_type":"tag","master_branch":"master","description":"Extract information from Emacs Lisp libraries","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:52Z"} +,{"id":"2489658890","type":"PullRequestEvent","actor":{"id":5636,"login":"purcell","gravatar_id":"","url":"https://api.github.com/users/purcell","avatar_url":"https://avatars.githubusercontent.com/u/5636?"},"repo":{"id":2517120,"name":"milkypostman/melpa","url":"https://api.github.com/repos/milkypostman/melpa"},"payload":{"action":"closed","number":2333,"pull_request":{"url":"https://api.github.com/repos/milkypostman/melpa/pulls/2333","id":26743582,"html_url":"https://github.com/milkypostman/melpa/pull/2333","diff_url":"https://github.com/milkypostman/melpa/pull/2333.diff","patch_url":"https://github.com/milkypostman/melpa/pull/2333.patch","issue_url":"https://api.github.com/repos/milkypostman/melpa/issues/2333","number":2333,"state":"closed","locked":false,"title":"add recipe for phi-grep","user":{"login":"zk-phi","id":3530521,"avatar_url":"https://avatars.githubusercontent.com/u/3530521?v=3","gravatar_id":"","url":"https://api.github.com/users/zk-phi","html_url":"https://github.com/zk-phi","followers_url":"https://api.github.com/users/zk-phi/followers","following_url":"https://api.github.com/users/zk-phi/following{/other_user}","gists_url":"https://api.github.com/users/zk-phi/gists{/gist_id}","starred_url":"https://api.github.com/users/zk-phi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zk-phi/subscriptions","organizations_url":"https://api.github.com/users/zk-phi/orgs","repos_url":"https://api.github.com/users/zk-phi/repos","events_url":"https://api.github.com/users/zk-phi/events{/privacy}","received_events_url":"https://api.github.com/users/zk-phi/received_events","type":"User","site_admin":false},"body":"please add phi-grep.","created_at":"2015-01-01T14:35:04Z","updated_at":"2015-01-01T15:16:52Z","closed_at":"2015-01-01T15:16:52Z","merged_at":"2015-01-01T15:16:52Z","merge_commit_sha":"cdae937f400bb17641cb51d5ecfb2d14614c138f","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/milkypostman/melpa/pulls/2333/commits","review_comments_url":"https://api.github.com/repos/milkypostman/melpa/pulls/2333/comments","review_comment_url":"https://api.github.com/repos/milkypostman/melpa/pulls/comments/{number}","comments_url":"https://api.github.com/repos/milkypostman/melpa/issues/2333/comments","statuses_url":"https://api.github.com/repos/milkypostman/melpa/statuses/b7a3c41b33fa87fa796dacb05494d38a7b30bff2","head":{"label":"zk-phi:phi-grep","ref":"phi-grep","sha":"b7a3c41b33fa87fa796dacb05494d38a7b30bff2","user":{"login":"zk-phi","id":3530521,"avatar_url":"https://avatars.githubusercontent.com/u/3530521?v=3","gravatar_id":"","url":"https://api.github.com/users/zk-phi","html_url":"https://github.com/zk-phi","followers_url":"https://api.github.com/users/zk-phi/followers","following_url":"https://api.github.com/users/zk-phi/following{/other_user}","gists_url":"https://api.github.com/users/zk-phi/gists{/gist_id}","starred_url":"https://api.github.com/users/zk-phi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zk-phi/subscriptions","organizations_url":"https://api.github.com/users/zk-phi/orgs","repos_url":"https://api.github.com/users/zk-phi/repos","events_url":"https://api.github.com/users/zk-phi/events{/privacy}","received_events_url":"https://api.github.com/users/zk-phi/received_events","type":"User","site_admin":false},"repo":{"id":27476387,"name":"melpa","full_name":"zk-phi/melpa","owner":{"login":"zk-phi","id":3530521,"avatar_url":"https://avatars.githubusercontent.com/u/3530521?v=3","gravatar_id":"","url":"https://api.github.com/users/zk-phi","html_url":"https://github.com/zk-phi","followers_url":"https://api.github.com/users/zk-phi/followers","following_url":"https://api.github.com/users/zk-phi/following{/other_user}","gists_url":"https://api.github.com/users/zk-phi/gists{/gist_id}","starred_url":"https://api.github.com/users/zk-phi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zk-phi/subscriptions","organizations_url":"https://api.github.com/users/zk-phi/orgs","repos_url":"https://api.github.com/users/zk-phi/repos","events_url":"https://api.github.com/users/zk-phi/events{/privacy}","received_events_url":"https://api.github.com/users/zk-phi/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/zk-phi/melpa","description":"Scripts for building Emacs packages from Version Control","fork":true,"url":"https://api.github.com/repos/zk-phi/melpa","forks_url":"https://api.github.com/repos/zk-phi/melpa/forks","keys_url":"https://api.github.com/repos/zk-phi/melpa/keys{/key_id}","collaborators_url":"https://api.github.com/repos/zk-phi/melpa/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/zk-phi/melpa/teams","hooks_url":"https://api.github.com/repos/zk-phi/melpa/hooks","issue_events_url":"https://api.github.com/repos/zk-phi/melpa/issues/events{/number}","events_url":"https://api.github.com/repos/zk-phi/melpa/events","assignees_url":"https://api.github.com/repos/zk-phi/melpa/assignees{/user}","branches_url":"https://api.github.com/repos/zk-phi/melpa/branches{/branch}","tags_url":"https://api.github.com/repos/zk-phi/melpa/tags","blobs_url":"https://api.github.com/repos/zk-phi/melpa/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/zk-phi/melpa/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/zk-phi/melpa/git/refs{/sha}","trees_url":"https://api.github.com/repos/zk-phi/melpa/git/trees{/sha}","statuses_url":"https://api.github.com/repos/zk-phi/melpa/statuses/{sha}","languages_url":"https://api.github.com/repos/zk-phi/melpa/languages","stargazers_url":"https://api.github.com/repos/zk-phi/melpa/stargazers","contributors_url":"https://api.github.com/repos/zk-phi/melpa/contributors","subscribers_url":"https://api.github.com/repos/zk-phi/melpa/subscribers","subscription_url":"https://api.github.com/repos/zk-phi/melpa/subscription","commits_url":"https://api.github.com/repos/zk-phi/melpa/commits{/sha}","git_commits_url":"https://api.github.com/repos/zk-phi/melpa/git/commits{/sha}","comments_url":"https://api.github.com/repos/zk-phi/melpa/comments{/number}","issue_comment_url":"https://api.github.com/repos/zk-phi/melpa/issues/comments/{number}","contents_url":"https://api.github.com/repos/zk-phi/melpa/contents/{+path}","compare_url":"https://api.github.com/repos/zk-phi/melpa/compare/{base}...{head}","merges_url":"https://api.github.com/repos/zk-phi/melpa/merges","archive_url":"https://api.github.com/repos/zk-phi/melpa/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/zk-phi/melpa/downloads","issues_url":"https://api.github.com/repos/zk-phi/melpa/issues{/number}","pulls_url":"https://api.github.com/repos/zk-phi/melpa/pulls{/number}","milestones_url":"https://api.github.com/repos/zk-phi/melpa/milestones{/number}","notifications_url":"https://api.github.com/repos/zk-phi/melpa/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/zk-phi/melpa/labels{/name}","releases_url":"https://api.github.com/repos/zk-phi/melpa/releases{/id}","created_at":"2014-12-03T08:07:41Z","updated_at":"2014-12-03T08:07:43Z","pushed_at":"2015-01-01T14:31:50Z","git_url":"git://github.com/zk-phi/melpa.git","ssh_url":"git@github.com:zk-phi/melpa.git","clone_url":"https://github.com/zk-phi/melpa.git","svn_url":"https://github.com/zk-phi/melpa","homepage":"http://melpa.org","size":4843,"stargazers_count":0,"watchers_count":0,"language":"Emacs Lisp","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":"milkypostman:master","ref":"master","sha":"3b3018b087a0c6bd7b81fad6aeeb982ba89e091e","user":{"login":"milkypostman","id":38066,"avatar_url":"https://avatars.githubusercontent.com/u/38066?v=3","gravatar_id":"","url":"https://api.github.com/users/milkypostman","html_url":"https://github.com/milkypostman","followers_url":"https://api.github.com/users/milkypostman/followers","following_url":"https://api.github.com/users/milkypostman/following{/other_user}","gists_url":"https://api.github.com/users/milkypostman/gists{/gist_id}","starred_url":"https://api.github.com/users/milkypostman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/milkypostman/subscriptions","organizations_url":"https://api.github.com/users/milkypostman/orgs","repos_url":"https://api.github.com/users/milkypostman/repos","events_url":"https://api.github.com/users/milkypostman/events{/privacy}","received_events_url":"https://api.github.com/users/milkypostman/received_events","type":"User","site_admin":false},"repo":{"id":2517120,"name":"melpa","full_name":"milkypostman/melpa","owner":{"login":"milkypostman","id":38066,"avatar_url":"https://avatars.githubusercontent.com/u/38066?v=3","gravatar_id":"","url":"https://api.github.com/users/milkypostman","html_url":"https://github.com/milkypostman","followers_url":"https://api.github.com/users/milkypostman/followers","following_url":"https://api.github.com/users/milkypostman/following{/other_user}","gists_url":"https://api.github.com/users/milkypostman/gists{/gist_id}","starred_url":"https://api.github.com/users/milkypostman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/milkypostman/subscriptions","organizations_url":"https://api.github.com/users/milkypostman/orgs","repos_url":"https://api.github.com/users/milkypostman/repos","events_url":"https://api.github.com/users/milkypostman/events{/privacy}","received_events_url":"https://api.github.com/users/milkypostman/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/milkypostman/melpa","description":"Scripts for building Emacs packages from Version Control","fork":false,"url":"https://api.github.com/repos/milkypostman/melpa","forks_url":"https://api.github.com/repos/milkypostman/melpa/forks","keys_url":"https://api.github.com/repos/milkypostman/melpa/keys{/key_id}","collaborators_url":"https://api.github.com/repos/milkypostman/melpa/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/milkypostman/melpa/teams","hooks_url":"https://api.github.com/repos/milkypostman/melpa/hooks","issue_events_url":"https://api.github.com/repos/milkypostman/melpa/issues/events{/number}","events_url":"https://api.github.com/repos/milkypostman/melpa/events","assignees_url":"https://api.github.com/repos/milkypostman/melpa/assignees{/user}","branches_url":"https://api.github.com/repos/milkypostman/melpa/branches{/branch}","tags_url":"https://api.github.com/repos/milkypostman/melpa/tags","blobs_url":"https://api.github.com/repos/milkypostman/melpa/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/milkypostman/melpa/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/milkypostman/melpa/git/refs{/sha}","trees_url":"https://api.github.com/repos/milkypostman/melpa/git/trees{/sha}","statuses_url":"https://api.github.com/repos/milkypostman/melpa/statuses/{sha}","languages_url":"https://api.github.com/repos/milkypostman/melpa/languages","stargazers_url":"https://api.github.com/repos/milkypostman/melpa/stargazers","contributors_url":"https://api.github.com/repos/milkypostman/melpa/contributors","subscribers_url":"https://api.github.com/repos/milkypostman/melpa/subscribers","subscription_url":"https://api.github.com/repos/milkypostman/melpa/subscription","commits_url":"https://api.github.com/repos/milkypostman/melpa/commits{/sha}","git_commits_url":"https://api.github.com/repos/milkypostman/melpa/git/commits{/sha}","comments_url":"https://api.github.com/repos/milkypostman/melpa/comments{/number}","issue_comment_url":"https://api.github.com/repos/milkypostman/melpa/issues/comments/{number}","contents_url":"https://api.github.com/repos/milkypostman/melpa/contents/{+path}","compare_url":"https://api.github.com/repos/milkypostman/melpa/compare/{base}...{head}","merges_url":"https://api.github.com/repos/milkypostman/melpa/merges","archive_url":"https://api.github.com/repos/milkypostman/melpa/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/milkypostman/melpa/downloads","issues_url":"https://api.github.com/repos/milkypostman/melpa/issues{/number}","pulls_url":"https://api.github.com/repos/milkypostman/melpa/pulls{/number}","milestones_url":"https://api.github.com/repos/milkypostman/melpa/milestones{/number}","notifications_url":"https://api.github.com/repos/milkypostman/melpa/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/milkypostman/melpa/labels{/name}","releases_url":"https://api.github.com/repos/milkypostman/melpa/releases{/id}","created_at":"2011-10-05T05:50:47Z","updated_at":"2015-01-01T12:26:07Z","pushed_at":"2015-01-01T15:16:52Z","git_url":"git://github.com/milkypostman/melpa.git","ssh_url":"git@github.com:milkypostman/melpa.git","clone_url":"https://github.com/milkypostman/melpa.git","svn_url":"https://github.com/milkypostman/melpa","homepage":"http://melpa.org","size":18825,"stargazers_count":515,"watchers_count":515,"language":"Emacs Lisp","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":583,"mirror_url":null,"open_issues_count":58,"forks":583,"open_issues":58,"watchers":515,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/milkypostman/melpa/pulls/2333"},"html":{"href":"https://github.com/milkypostman/melpa/pull/2333"},"issue":{"href":"https://api.github.com/repos/milkypostman/melpa/issues/2333"},"comments":{"href":"https://api.github.com/repos/milkypostman/melpa/issues/2333/comments"},"review_comments":{"href":"https://api.github.com/repos/milkypostman/melpa/pulls/2333/comments"},"review_comment":{"href":"https://api.github.com/repos/milkypostman/melpa/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/milkypostman/melpa/pulls/2333/commits"},"statuses":{"href":"https://api.github.com/repos/milkypostman/melpa/statuses/b7a3c41b33fa87fa796dacb05494d38a7b30bff2"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"purcell","id":5636,"avatar_url":"https://avatars.githubusercontent.com/u/5636?v=3","gravatar_id":"","url":"https://api.github.com/users/purcell","html_url":"https://github.com/purcell","followers_url":"https://api.github.com/users/purcell/followers","following_url":"https://api.github.com/users/purcell/following{/other_user}","gists_url":"https://api.github.com/users/purcell/gists{/gist_id}","starred_url":"https://api.github.com/users/purcell/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/purcell/subscriptions","organizations_url":"https://api.github.com/users/purcell/orgs","repos_url":"https://api.github.com/users/purcell/repos","events_url":"https://api.github.com/users/purcell/events{/privacy}","received_events_url":"https://api.github.com/users/purcell/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":1,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:16:52Z"} +,{"id":"2489658891","type":"PushEvent","actor":{"id":8297447,"login":"Awcrr","gravatar_id":"","url":"https://api.github.com/users/Awcrr","avatar_url":"https://avatars.githubusercontent.com/u/8297447?"},"repo":{"id":28485579,"name":"Awcrr/Raytracing","url":"https://api.github.com/repos/Awcrr/Raytracing"},"payload":{"push_id":536867501,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"85c1e1c56674a9ec33d0bf57dc7034a98f5f7c98","before":"a26c44f68e962c5612185c2175459cf80cbff96d","commits":[{"sha":"85c1e1c56674a9ec33d0bf57dc7034a98f5f7c98","author":{"email":"206a8f32a8fdc36e563454ef908bff1d790c12a9@outlook.com","name":"Awcrr"},"message":"Change a BUG","distinct":true,"url":"https://api.github.com/repos/Awcrr/Raytracing/commits/85c1e1c56674a9ec33d0bf57dc7034a98f5f7c98"}]},"public":true,"created_at":"2015-01-01T15:16:52Z"} +,{"id":"2489658892","type":"PushEvent","actor":{"id":6000299,"login":"SecUpwN","gravatar_id":"","url":"https://api.github.com/users/SecUpwN","avatar_url":"https://avatars.githubusercontent.com/u/6000299?"},"repo":{"id":14640193,"name":"SecUpwN/Android-IMSI-Catcher-Detector","url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector"},"payload":{"push_id":536867502,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fbb589a535169e1eb8cef22608c609e63699a271","before":"92fc097ad6be0f6246f14b86dc99b4387f9e446b","commits":[{"sha":"fbb589a535169e1eb8cef22608c609e63699a271","author":{"email":"8e270af6b17779ff11ef14967848c6eb869dbf25@users.noreply.github.com","name":"Security: Pwned."},"message":"NEW RELEASE OUT NOW! HACKY 2015 EVERYONE! ;-)","distinct":true,"url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector/commits/fbb589a535169e1eb8cef22608c609e63699a271"}]},"public":true,"created_at":"2015-01-01T15:16:52Z"} +,{"id":"2489658895","type":"CreateEvent","actor":{"id":7595862,"login":"Chrisxwh","gravatar_id":"","url":"https://api.github.com/users/Chrisxwh","avatar_url":"https://avatars.githubusercontent.com/u/7595862?"},"repo":{"id":28688913,"name":"Chrisxwh/Simple-UDP-Script","url":"https://api.github.com/repos/Chrisxwh/Simple-UDP-Script"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:53Z"} +,{"id":"2489658897","type":"CreateEvent","actor":{"id":5952083,"login":"mcalavera81","gravatar_id":"","url":"https://api.github.com/users/mcalavera81","avatar_url":"https://avatars.githubusercontent.com/u/5952083?"},"repo":{"id":28688907,"name":"mcalavera81/dockerizedSpringBootMicroService","url":"https://api.github.com/repos/mcalavera81/dockerizedSpringBootMicroService"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Developed in Scala, with 3 Docker containers linked","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:53Z"} +,{"id":"2489658898","type":"PushEvent","actor":{"id":4502840,"login":"green-caterpillar","gravatar_id":"","url":"https://api.github.com/users/green-caterpillar","avatar_url":"https://avatars.githubusercontent.com/u/4502840?"},"repo":{"id":10606057,"name":"green-caterpillar/cpputil","url":"https://api.github.com/repos/green-caterpillar/cpputil"},"payload":{"push_id":536867506,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3f65576372e239e558a1427d708630f01f08dded","before":"ac5aa179e69a1c4021941737318459c9e282ffe3","commits":[{"sha":"3f65576372e239e558a1427d708630f01f08dded","author":{"email":"4ea0e69a17994cc86b92a9971224f1ec18de5ea0@fastmail.fm","name":"Selim Mustafaev"},"message":"Отключил сборку ассемблерного кода (он не реализован для 32 битных\nсистем). Починил сборку с помощью clang на linux.","distinct":true,"url":"https://api.github.com/repos/green-caterpillar/cpputil/commits/3f65576372e239e558a1427d708630f01f08dded"}]},"public":true,"created_at":"2015-01-01T15:16:53Z"} +,{"id":"2489658899","type":"PullRequestEvent","actor":{"id":37787,"login":"daleharvey","gravatar_id":"","url":"https://api.github.com/users/daleharvey","avatar_url":"https://avatars.githubusercontent.com/u/37787?"},"repo":{"id":714074,"name":"pouchdb/pouchdb","url":"https://api.github.com/repos/pouchdb/pouchdb"},"payload":{"action":"closed","number":3310,"pull_request":{"url":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3310","id":26693561,"html_url":"https://github.com/pouchdb/pouchdb/pull/3310","diff_url":"https://github.com/pouchdb/pouchdb/pull/3310.diff","patch_url":"https://github.com/pouchdb/pouchdb/pull/3310.patch","issue_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3310","number":3310,"state":"closed","locked":false,"title":"(#136) - Fix _changes ordering assertions in replication tests","user":{"login":"willholley","id":97787,"avatar_url":"https://avatars.githubusercontent.com/u/97787?v=3","gravatar_id":"","url":"https://api.github.com/users/willholley","html_url":"https://github.com/willholley","followers_url":"https://api.github.com/users/willholley/followers","following_url":"https://api.github.com/users/willholley/following{/other_user}","gists_url":"https://api.github.com/users/willholley/gists{/gist_id}","starred_url":"https://api.github.com/users/willholley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/willholley/subscriptions","organizations_url":"https://api.github.com/users/willholley/orgs","repos_url":"https://api.github.com/users/willholley/repos","events_url":"https://api.github.com/users/willholley/events{/privacy}","received_events_url":"https://api.github.com/users/willholley/received_events","type":"User","site_admin":false},"body":"In CouchDB 2.0, _changes is not guaranteed to be ordered. Sort the response before making assertions on the contents.\r\n\r\nI've also removed duplicate definitions of the simplifyChanges function so this sort only occurs in one place.","created_at":"2014-12-30T17:04:31Z","updated_at":"2015-01-01T15:16:53Z","closed_at":"2015-01-01T15:16:53Z","merged_at":null,"merge_commit_sha":"dbf48714c24c1c78233e6d7f586d4d0d0fefaa2d","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3310/commits","review_comments_url":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3310/comments","review_comment_url":"https://api.github.com/repos/pouchdb/pouchdb/pulls/comments/{number}","comments_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3310/comments","statuses_url":"https://api.github.com/repos/pouchdb/pouchdb/statuses/e48186915d386aa62d5489b10f57589c15c9a02a","head":{"label":"willholley:136-fix-replication-changes-order-assertions","ref":"136-fix-replication-changes-order-assertions","sha":"e48186915d386aa62d5489b10f57589c15c9a02a","user":{"login":"willholley","id":97787,"avatar_url":"https://avatars.githubusercontent.com/u/97787?v=3","gravatar_id":"","url":"https://api.github.com/users/willholley","html_url":"https://github.com/willholley","followers_url":"https://api.github.com/users/willholley/followers","following_url":"https://api.github.com/users/willholley/following{/other_user}","gists_url":"https://api.github.com/users/willholley/gists{/gist_id}","starred_url":"https://api.github.com/users/willholley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/willholley/subscriptions","organizations_url":"https://api.github.com/users/willholley/orgs","repos_url":"https://api.github.com/users/willholley/repos","events_url":"https://api.github.com/users/willholley/events{/privacy}","received_events_url":"https://api.github.com/users/willholley/received_events","type":"User","site_admin":false},"repo":{"id":9749351,"name":"pouchdb","full_name":"willholley/pouchdb","owner":{"login":"willholley","id":97787,"avatar_url":"https://avatars.githubusercontent.com/u/97787?v=3","gravatar_id":"","url":"https://api.github.com/users/willholley","html_url":"https://github.com/willholley","followers_url":"https://api.github.com/users/willholley/followers","following_url":"https://api.github.com/users/willholley/following{/other_user}","gists_url":"https://api.github.com/users/willholley/gists{/gist_id}","starred_url":"https://api.github.com/users/willholley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/willholley/subscriptions","organizations_url":"https://api.github.com/users/willholley/orgs","repos_url":"https://api.github.com/users/willholley/repos","events_url":"https://api.github.com/users/willholley/events{/privacy}","received_events_url":"https://api.github.com/users/willholley/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/willholley/pouchdb","description":"PouchDB is a pocket-sized database.","fork":true,"url":"https://api.github.com/repos/willholley/pouchdb","forks_url":"https://api.github.com/repos/willholley/pouchdb/forks","keys_url":"https://api.github.com/repos/willholley/pouchdb/keys{/key_id}","collaborators_url":"https://api.github.com/repos/willholley/pouchdb/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/willholley/pouchdb/teams","hooks_url":"https://api.github.com/repos/willholley/pouchdb/hooks","issue_events_url":"https://api.github.com/repos/willholley/pouchdb/issues/events{/number}","events_url":"https://api.github.com/repos/willholley/pouchdb/events","assignees_url":"https://api.github.com/repos/willholley/pouchdb/assignees{/user}","branches_url":"https://api.github.com/repos/willholley/pouchdb/branches{/branch}","tags_url":"https://api.github.com/repos/willholley/pouchdb/tags","blobs_url":"https://api.github.com/repos/willholley/pouchdb/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/willholley/pouchdb/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/willholley/pouchdb/git/refs{/sha}","trees_url":"https://api.github.com/repos/willholley/pouchdb/git/trees{/sha}","statuses_url":"https://api.github.com/repos/willholley/pouchdb/statuses/{sha}","languages_url":"https://api.github.com/repos/willholley/pouchdb/languages","stargazers_url":"https://api.github.com/repos/willholley/pouchdb/stargazers","contributors_url":"https://api.github.com/repos/willholley/pouchdb/contributors","subscribers_url":"https://api.github.com/repos/willholley/pouchdb/subscribers","subscription_url":"https://api.github.com/repos/willholley/pouchdb/subscription","commits_url":"https://api.github.com/repos/willholley/pouchdb/commits{/sha}","git_commits_url":"https://api.github.com/repos/willholley/pouchdb/git/commits{/sha}","comments_url":"https://api.github.com/repos/willholley/pouchdb/comments{/number}","issue_comment_url":"https://api.github.com/repos/willholley/pouchdb/issues/comments/{number}","contents_url":"https://api.github.com/repos/willholley/pouchdb/contents/{+path}","compare_url":"https://api.github.com/repos/willholley/pouchdb/compare/{base}...{head}","merges_url":"https://api.github.com/repos/willholley/pouchdb/merges","archive_url":"https://api.github.com/repos/willholley/pouchdb/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/willholley/pouchdb/downloads","issues_url":"https://api.github.com/repos/willholley/pouchdb/issues{/number}","pulls_url":"https://api.github.com/repos/willholley/pouchdb/pulls{/number}","milestones_url":"https://api.github.com/repos/willholley/pouchdb/milestones{/number}","notifications_url":"https://api.github.com/repos/willholley/pouchdb/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/willholley/pouchdb/labels{/name}","releases_url":"https://api.github.com/repos/willholley/pouchdb/releases{/id}","created_at":"2013-04-29T14:00:59Z","updated_at":"2014-12-30T11:30:36Z","pushed_at":"2014-12-30T18:05:39Z","git_url":"git://github.com/willholley/pouchdb.git","ssh_url":"git@github.com:willholley/pouchdb.git","clone_url":"https://github.com/willholley/pouchdb.git","svn_url":"https://github.com/willholley/pouchdb","homepage":"","size":71975,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","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":"pouchdb:master","ref":"master","sha":"9144e18a27ad15e80c7abd3bfe69d1f3a5e3df74","user":{"login":"pouchdb","id":3406112,"avatar_url":"https://avatars.githubusercontent.com/u/3406112?v=3","gravatar_id":"","url":"https://api.github.com/users/pouchdb","html_url":"https://github.com/pouchdb","followers_url":"https://api.github.com/users/pouchdb/followers","following_url":"https://api.github.com/users/pouchdb/following{/other_user}","gists_url":"https://api.github.com/users/pouchdb/gists{/gist_id}","starred_url":"https://api.github.com/users/pouchdb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pouchdb/subscriptions","organizations_url":"https://api.github.com/users/pouchdb/orgs","repos_url":"https://api.github.com/users/pouchdb/repos","events_url":"https://api.github.com/users/pouchdb/events{/privacy}","received_events_url":"https://api.github.com/users/pouchdb/received_events","type":"Organization","site_admin":false},"repo":{"id":714074,"name":"pouchdb","full_name":"pouchdb/pouchdb","owner":{"login":"pouchdb","id":3406112,"avatar_url":"https://avatars.githubusercontent.com/u/3406112?v=3","gravatar_id":"","url":"https://api.github.com/users/pouchdb","html_url":"https://github.com/pouchdb","followers_url":"https://api.github.com/users/pouchdb/followers","following_url":"https://api.github.com/users/pouchdb/following{/other_user}","gists_url":"https://api.github.com/users/pouchdb/gists{/gist_id}","starred_url":"https://api.github.com/users/pouchdb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pouchdb/subscriptions","organizations_url":"https://api.github.com/users/pouchdb/orgs","repos_url":"https://api.github.com/users/pouchdb/repos","events_url":"https://api.github.com/users/pouchdb/events{/privacy}","received_events_url":"https://api.github.com/users/pouchdb/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/pouchdb/pouchdb","description":"PouchDB is a pocket-sized database.","fork":false,"url":"https://api.github.com/repos/pouchdb/pouchdb","forks_url":"https://api.github.com/repos/pouchdb/pouchdb/forks","keys_url":"https://api.github.com/repos/pouchdb/pouchdb/keys{/key_id}","collaborators_url":"https://api.github.com/repos/pouchdb/pouchdb/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/pouchdb/pouchdb/teams","hooks_url":"https://api.github.com/repos/pouchdb/pouchdb/hooks","issue_events_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/events{/number}","events_url":"https://api.github.com/repos/pouchdb/pouchdb/events","assignees_url":"https://api.github.com/repos/pouchdb/pouchdb/assignees{/user}","branches_url":"https://api.github.com/repos/pouchdb/pouchdb/branches{/branch}","tags_url":"https://api.github.com/repos/pouchdb/pouchdb/tags","blobs_url":"https://api.github.com/repos/pouchdb/pouchdb/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/pouchdb/pouchdb/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/pouchdb/pouchdb/git/refs{/sha}","trees_url":"https://api.github.com/repos/pouchdb/pouchdb/git/trees{/sha}","statuses_url":"https://api.github.com/repos/pouchdb/pouchdb/statuses/{sha}","languages_url":"https://api.github.com/repos/pouchdb/pouchdb/languages","stargazers_url":"https://api.github.com/repos/pouchdb/pouchdb/stargazers","contributors_url":"https://api.github.com/repos/pouchdb/pouchdb/contributors","subscribers_url":"https://api.github.com/repos/pouchdb/pouchdb/subscribers","subscription_url":"https://api.github.com/repos/pouchdb/pouchdb/subscription","commits_url":"https://api.github.com/repos/pouchdb/pouchdb/commits{/sha}","git_commits_url":"https://api.github.com/repos/pouchdb/pouchdb/git/commits{/sha}","comments_url":"https://api.github.com/repos/pouchdb/pouchdb/comments{/number}","issue_comment_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/comments/{number}","contents_url":"https://api.github.com/repos/pouchdb/pouchdb/contents/{+path}","compare_url":"https://api.github.com/repos/pouchdb/pouchdb/compare/{base}...{head}","merges_url":"https://api.github.com/repos/pouchdb/pouchdb/merges","archive_url":"https://api.github.com/repos/pouchdb/pouchdb/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/pouchdb/pouchdb/downloads","issues_url":"https://api.github.com/repos/pouchdb/pouchdb/issues{/number}","pulls_url":"https://api.github.com/repos/pouchdb/pouchdb/pulls{/number}","milestones_url":"https://api.github.com/repos/pouchdb/pouchdb/milestones{/number}","notifications_url":"https://api.github.com/repos/pouchdb/pouchdb/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/pouchdb/pouchdb/labels{/name}","releases_url":"https://api.github.com/repos/pouchdb/pouchdb/releases{/id}","created_at":"2010-06-10T18:34:24Z","updated_at":"2015-01-01T15:16:41Z","pushed_at":"2015-01-01T15:16:41Z","git_url":"git://github.com/pouchdb/pouchdb.git","ssh_url":"git@github.com:pouchdb/pouchdb.git","clone_url":"https://github.com/pouchdb/pouchdb.git","svn_url":"https://github.com/pouchdb/pouchdb","homepage":"http://pouchdb.com/","size":152232,"stargazers_count":3578,"watchers_count":3578,"language":"JavaScript","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":414,"mirror_url":null,"open_issues_count":312,"forks":414,"open_issues":312,"watchers":3578,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3310"},"html":{"href":"https://github.com/pouchdb/pouchdb/pull/3310"},"issue":{"href":"https://api.github.com/repos/pouchdb/pouchdb/issues/3310"},"comments":{"href":"https://api.github.com/repos/pouchdb/pouchdb/issues/3310/comments"},"review_comments":{"href":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3310/comments"},"review_comment":{"href":"https://api.github.com/repos/pouchdb/pouchdb/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3310/commits"},"statuses":{"href":"https://api.github.com/repos/pouchdb/pouchdb/statuses/e48186915d386aa62d5489b10f57589c15c9a02a"}},"merged":false,"mergeable":true,"mergeable_state":"unstable","merged_by":null,"comments":1,"review_comments":0,"commits":1,"additions":24,"deletions":43,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:16:53Z","org":{"id":3406112,"login":"pouchdb","gravatar_id":"","url":"https://api.github.com/orgs/pouchdb","avatar_url":"https://avatars.githubusercontent.com/u/3406112?"}} +,{"id":"2489658900","type":"IssueCommentEvent","actor":{"id":37787,"login":"daleharvey","gravatar_id":"","url":"https://api.github.com/users/daleharvey","avatar_url":"https://avatars.githubusercontent.com/u/37787?"},"repo":{"id":714074,"name":"pouchdb/pouchdb","url":"https://api.github.com/repos/pouchdb/pouchdb"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3310","labels_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3310/labels{/name}","comments_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3310/comments","events_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3310/events","html_url":"https://github.com/pouchdb/pouchdb/pull/3310","id":53129898,"number":3310,"title":"(#136) - Fix _changes ordering assertions in replication tests","user":{"login":"willholley","id":97787,"avatar_url":"https://avatars.githubusercontent.com/u/97787?v=3","gravatar_id":"","url":"https://api.github.com/users/willholley","html_url":"https://github.com/willholley","followers_url":"https://api.github.com/users/willholley/followers","following_url":"https://api.github.com/users/willholley/following{/other_user}","gists_url":"https://api.github.com/users/willholley/gists{/gist_id}","starred_url":"https://api.github.com/users/willholley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/willholley/subscriptions","organizations_url":"https://api.github.com/users/willholley/orgs","repos_url":"https://api.github.com/users/willholley/repos","events_url":"https://api.github.com/users/willholley/events{/privacy}","received_events_url":"https://api.github.com/users/willholley/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-30T17:04:31Z","updated_at":"2015-01-01T15:16:53Z","closed_at":"2015-01-01T15:16:53Z","pull_request":{"url":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3310","html_url":"https://github.com/pouchdb/pouchdb/pull/3310","diff_url":"https://github.com/pouchdb/pouchdb/pull/3310.diff","patch_url":"https://github.com/pouchdb/pouchdb/pull/3310.patch"},"body":"In CouchDB 2.0, _changes is not guaranteed to be ordered. Sort the response before making assertions on the contents.\r\n\r\nI've also removed duplicate definitions of the simplifyChanges function so this sort only occurs in one place."},"comment":{"url":"https://api.github.com/repos/pouchdb/pouchdb/issues/comments/68488851","html_url":"https://github.com/pouchdb/pouchdb/pull/3310#issuecomment-68488851","issue_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3310","id":68488851,"user":{"login":"daleharvey","id":37787,"avatar_url":"https://avatars.githubusercontent.com/u/37787?v=3","gravatar_id":"","url":"https://api.github.com/users/daleharvey","html_url":"https://github.com/daleharvey","followers_url":"https://api.github.com/users/daleharvey/followers","following_url":"https://api.github.com/users/daleharvey/following{/other_user}","gists_url":"https://api.github.com/users/daleharvey/gists{/gist_id}","starred_url":"https://api.github.com/users/daleharvey/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/daleharvey/subscriptions","organizations_url":"https://api.github.com/users/daleharvey/orgs","repos_url":"https://api.github.com/users/daleharvey/repos","events_url":"https://api.github.com/users/daleharvey/events{/privacy}","received_events_url":"https://api.github.com/users/daleharvey/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:16:53Z","updated_at":"2015-01-01T15:16:53Z","body":"Looks nice, thanks\r\n\r\nhttps://github.com/pouchdb/pouchdb/commit/85ffee354b1734a6793d3fb61963bfe1797222f4"}},"public":true,"created_at":"2015-01-01T15:16:53Z","org":{"id":3406112,"login":"pouchdb","gravatar_id":"","url":"https://api.github.com/orgs/pouchdb","avatar_url":"https://avatars.githubusercontent.com/u/3406112?"}} +,{"id":"2489658901","type":"PushEvent","actor":{"id":8216821,"login":"mikleee","gravatar_id":"","url":"https://api.github.com/users/mikleee","avatar_url":"https://avatars.githubusercontent.com/u/8216821?"},"repo":{"id":25981723,"name":"mikleee/jobs-spring-mvc-angular","url":"https://api.github.com/repos/mikleee/jobs-spring-mvc-angular"},"payload":{"push_id":536867508,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"dabdf382952b37d1693288fcfe3135db61f33adb","before":"12775ec150984abb5cce76b04b8f25027d942972","commits":[{"sha":"dabdf382952b37d1693288fcfe3135db61f33adb","author":{"email":"aa51aeb896fcefe0bf2d60ca489d96d3842cc15a@gmail.com","name":"mikleee"},"message":"departments work start to add employees","distinct":true,"url":"https://api.github.com/repos/mikleee/jobs-spring-mvc-angular/commits/dabdf382952b37d1693288fcfe3135db61f33adb"}]},"public":true,"created_at":"2015-01-01T15:16:54Z"} +,{"id":"2489658902","type":"PushEvent","actor":{"id":5636,"login":"purcell","gravatar_id":"","url":"https://api.github.com/users/purcell","avatar_url":"https://avatars.githubusercontent.com/u/5636?"},"repo":{"id":2517120,"name":"milkypostman/melpa","url":"https://api.github.com/repos/milkypostman/melpa"},"payload":{"push_id":536867507,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"992655fa4bd209abdf1149572e95f853e595125e","before":"3b3018b087a0c6bd7b81fad6aeeb982ba89e091e","commits":[{"sha":"b7a3c41b33fa87fa796dacb05494d38a7b30bff2","author":{"email":"53a0acfad59379b3e050338bf9f23cfc172ee787","name":"zk_phi"},"message":"add recipe for phi-grep","distinct":true,"url":"https://api.github.com/repos/milkypostman/melpa/commits/b7a3c41b33fa87fa796dacb05494d38a7b30bff2"},{"sha":"992655fa4bd209abdf1149572e95f853e595125e","author":{"email":"9ce5770b3bb4b2a1d59be2d97e34379cd192299f@sanityinc.com","name":"Steve Purcell"},"message":"Merge pull request #2333 from zk-phi/phi-grep\n\nadd recipe for phi-grep","distinct":true,"url":"https://api.github.com/repos/milkypostman/melpa/commits/992655fa4bd209abdf1149572e95f853e595125e"}]},"public":true,"created_at":"2015-01-01T15:16:54Z"} +,{"id":"2489658904","type":"IssuesEvent","actor":{"id":33528,"login":"koalalorenzo","gravatar_id":"","url":"https://api.github.com/users/koalalorenzo","avatar_url":"https://avatars.githubusercontent.com/u/33528?"},"repo":{"id":8177778,"name":"koalalorenzo/python-digitalocean","url":"https://api.github.com/repos/koalalorenzo/python-digitalocean"},"payload":{"action":"closed","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":"closed","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-12-27T05:10:10Z","updated_at":"2015-01-01T15:16:54Z","closed_at":"2015-01-01T15:16:54Z","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."}},"public":true,"created_at":"2015-01-01T15:16:54Z"} +,{"id":"2489658905","type":"PullRequestEvent","actor":{"id":33528,"login":"koalalorenzo","gravatar_id":"","url":"https://api.github.com/users/koalalorenzo","avatar_url":"https://avatars.githubusercontent.com/u/33528?"},"repo":{"id":8177778,"name":"koalalorenzo/python-digitalocean","url":"https://api.github.com/repos/koalalorenzo/python-digitalocean"},"payload":{"action":"closed","number":77,"pull_request":{"url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/77","id":26743746,"html_url":"https://github.com/koalalorenzo/python-digitalocean/pull/77","diff_url":"https://github.com/koalalorenzo/python-digitalocean/pull/77.diff","patch_url":"https://github.com/koalalorenzo/python-digitalocean/pull/77.patch","issue_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/77","number":77,"state":"closed","locked":false,"title":"Allow SSHKey to be specified by fingerprint (Fixes #76)","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},"body":"This change modifies __get_ssh_keys_id to return a list containing IDs or fingerprints. The code assumes that fingerprints consist of 16 hexadecimal pairs separated by colons (e.g. 01:23:45:67:89:af:ca:ef:FE:DE:CB:A9:87:65:43:21).\r\n\r\nThis change also modifies SHHKeys.load. Allowing you to load a SHHKey by fingerprint.\r\n\r\nexamples:\r\n\r\n d = Droplet(...)\r\n d.create(ssh_keys=['01:23:45:67:89:ab:cd:ef:FE:DE:CB:A9:87:65:43:21'])\r\n\r\nor\r\n\r\n key = SSHKeys(fingerprint='01:23:45:67:89:ab:cd:ef:FE:DE:CB:A9:87:65:43:21')\r\n key.load()\r\n d = Droplet(...)\r\n d.create(ssh_keys=[key])\r\n\r\nI have not tested these modifications, but it should be fine to merge since it will not break any existing code (it might introduce buggy new features).","created_at":"2015-01-01T14:57:32Z","updated_at":"2015-01-01T15:16:54Z","closed_at":"2015-01-01T15:16:54Z","merged_at":"2015-01-01T15:16:54Z","merge_commit_sha":"619aa30085291f5459791f0766c0b0f5538713f1","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/77/commits","review_comments_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/77/comments","review_comment_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/comments/{number}","comments_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/77/comments","statuses_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/statuses/4bdc87e670d6148330a622fd8f207302af6ea2fa","head":{"label":"moyamo:master","ref":"master","sha":"4bdc87e670d6148330a622fd8f207302af6ea2fa","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},"repo":{"id":28405844,"name":"python-digitalocean","full_name":"moyamo/python-digitalocean","owner":{"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},"private":false,"html_url":"https://github.com/moyamo/python-digitalocean","description":"Python module to manage digitalocean.com droplets","fork":true,"url":"https://api.github.com/repos/moyamo/python-digitalocean","forks_url":"https://api.github.com/repos/moyamo/python-digitalocean/forks","keys_url":"https://api.github.com/repos/moyamo/python-digitalocean/keys{/key_id}","collaborators_url":"https://api.github.com/repos/moyamo/python-digitalocean/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/moyamo/python-digitalocean/teams","hooks_url":"https://api.github.com/repos/moyamo/python-digitalocean/hooks","issue_events_url":"https://api.github.com/repos/moyamo/python-digitalocean/issues/events{/number}","events_url":"https://api.github.com/repos/moyamo/python-digitalocean/events","assignees_url":"https://api.github.com/repos/moyamo/python-digitalocean/assignees{/user}","branches_url":"https://api.github.com/repos/moyamo/python-digitalocean/branches{/branch}","tags_url":"https://api.github.com/repos/moyamo/python-digitalocean/tags","blobs_url":"https://api.github.com/repos/moyamo/python-digitalocean/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/moyamo/python-digitalocean/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/moyamo/python-digitalocean/git/refs{/sha}","trees_url":"https://api.github.com/repos/moyamo/python-digitalocean/git/trees{/sha}","statuses_url":"https://api.github.com/repos/moyamo/python-digitalocean/statuses/{sha}","languages_url":"https://api.github.com/repos/moyamo/python-digitalocean/languages","stargazers_url":"https://api.github.com/repos/moyamo/python-digitalocean/stargazers","contributors_url":"https://api.github.com/repos/moyamo/python-digitalocean/contributors","subscribers_url":"https://api.github.com/repos/moyamo/python-digitalocean/subscribers","subscription_url":"https://api.github.com/repos/moyamo/python-digitalocean/subscription","commits_url":"https://api.github.com/repos/moyamo/python-digitalocean/commits{/sha}","git_commits_url":"https://api.github.com/repos/moyamo/python-digitalocean/git/commits{/sha}","comments_url":"https://api.github.com/repos/moyamo/python-digitalocean/comments{/number}","issue_comment_url":"https://api.github.com/repos/moyamo/python-digitalocean/issues/comments/{number}","contents_url":"https://api.github.com/repos/moyamo/python-digitalocean/contents/{+path}","compare_url":"https://api.github.com/repos/moyamo/python-digitalocean/compare/{base}...{head}","merges_url":"https://api.github.com/repos/moyamo/python-digitalocean/merges","archive_url":"https://api.github.com/repos/moyamo/python-digitalocean/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/moyamo/python-digitalocean/downloads","issues_url":"https://api.github.com/repos/moyamo/python-digitalocean/issues{/number}","pulls_url":"https://api.github.com/repos/moyamo/python-digitalocean/pulls{/number}","milestones_url":"https://api.github.com/repos/moyamo/python-digitalocean/milestones{/number}","notifications_url":"https://api.github.com/repos/moyamo/python-digitalocean/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/moyamo/python-digitalocean/labels{/name}","releases_url":"https://api.github.com/repos/moyamo/python-digitalocean/releases{/id}","created_at":"2014-12-23T15:46:15Z","updated_at":"2015-01-01T14:56:24Z","pushed_at":"2015-01-01T14:56:23Z","git_url":"git://github.com/moyamo/python-digitalocean.git","ssh_url":"git@github.com:moyamo/python-digitalocean.git","clone_url":"https://github.com/moyamo/python-digitalocean.git","svn_url":"https://github.com/moyamo/python-digitalocean","homepage":"http://projects.setale.me/python-digitalocean/","size":342,"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":"koalalorenzo:master","ref":"master","sha":"6462517ac267ae3e6f4028f734c42f63c7eb2bdd","user":{"login":"koalalorenzo","id":33528,"avatar_url":"https://avatars.githubusercontent.com/u/33528?v=3","gravatar_id":"","url":"https://api.github.com/users/koalalorenzo","html_url":"https://github.com/koalalorenzo","followers_url":"https://api.github.com/users/koalalorenzo/followers","following_url":"https://api.github.com/users/koalalorenzo/following{/other_user}","gists_url":"https://api.github.com/users/koalalorenzo/gists{/gist_id}","starred_url":"https://api.github.com/users/koalalorenzo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/koalalorenzo/subscriptions","organizations_url":"https://api.github.com/users/koalalorenzo/orgs","repos_url":"https://api.github.com/users/koalalorenzo/repos","events_url":"https://api.github.com/users/koalalorenzo/events{/privacy}","received_events_url":"https://api.github.com/users/koalalorenzo/received_events","type":"User","site_admin":false},"repo":{"id":8177778,"name":"python-digitalocean","full_name":"koalalorenzo/python-digitalocean","owner":{"login":"koalalorenzo","id":33528,"avatar_url":"https://avatars.githubusercontent.com/u/33528?v=3","gravatar_id":"","url":"https://api.github.com/users/koalalorenzo","html_url":"https://github.com/koalalorenzo","followers_url":"https://api.github.com/users/koalalorenzo/followers","following_url":"https://api.github.com/users/koalalorenzo/following{/other_user}","gists_url":"https://api.github.com/users/koalalorenzo/gists{/gist_id}","starred_url":"https://api.github.com/users/koalalorenzo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/koalalorenzo/subscriptions","organizations_url":"https://api.github.com/users/koalalorenzo/orgs","repos_url":"https://api.github.com/users/koalalorenzo/repos","events_url":"https://api.github.com/users/koalalorenzo/events{/privacy}","received_events_url":"https://api.github.com/users/koalalorenzo/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/koalalorenzo/python-digitalocean","description":"Python module to manage digitalocean.com droplets","fork":false,"url":"https://api.github.com/repos/koalalorenzo/python-digitalocean","forks_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/forks","keys_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/keys{/key_id}","collaborators_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/teams","hooks_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/hooks","issue_events_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/events{/number}","events_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/events","assignees_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/assignees{/user}","branches_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/branches{/branch}","tags_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/tags","blobs_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/git/refs{/sha}","trees_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/git/trees{/sha}","statuses_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/statuses/{sha}","languages_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/languages","stargazers_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/stargazers","contributors_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/contributors","subscribers_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/subscribers","subscription_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/subscription","commits_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/commits{/sha}","git_commits_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/git/commits{/sha}","comments_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/comments{/number}","issue_comment_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/comments/{number}","contents_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/contents/{+path}","compare_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/compare/{base}...{head}","merges_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/merges","archive_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/downloads","issues_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues{/number}","pulls_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls{/number}","milestones_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/milestones{/number}","notifications_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/labels{/name}","releases_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/releases{/id}","created_at":"2013-02-13T11:09:49Z","updated_at":"2014-12-26T08:08:42Z","pushed_at":"2015-01-01T15:16:54Z","git_url":"git://github.com/koalalorenzo/python-digitalocean.git","ssh_url":"git@github.com:koalalorenzo/python-digitalocean.git","clone_url":"https://github.com/koalalorenzo/python-digitalocean.git","svn_url":"https://github.com/koalalorenzo/python-digitalocean","homepage":"http://projects.setale.me/python-digitalocean/","size":1065,"stargazers_count":150,"watchers_count":150,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":49,"mirror_url":null,"open_issues_count":0,"forks":49,"open_issues":0,"watchers":150,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/77"},"html":{"href":"https://github.com/koalalorenzo/python-digitalocean/pull/77"},"issue":{"href":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/77"},"comments":{"href":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/77/comments"},"review_comments":{"href":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/77/comments"},"review_comment":{"href":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/koalalorenzo/python-digitalocean/pulls/77/commits"},"statuses":{"href":"https://api.github.com/repos/koalalorenzo/python-digitalocean/statuses/4bdc87e670d6148330a622fd8f207302af6ea2fa"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"koalalorenzo","id":33528,"avatar_url":"https://avatars.githubusercontent.com/u/33528?v=3","gravatar_id":"","url":"https://api.github.com/users/koalalorenzo","html_url":"https://github.com/koalalorenzo","followers_url":"https://api.github.com/users/koalalorenzo/followers","following_url":"https://api.github.com/users/koalalorenzo/following{/other_user}","gists_url":"https://api.github.com/users/koalalorenzo/gists{/gist_id}","starred_url":"https://api.github.com/users/koalalorenzo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/koalalorenzo/subscriptions","organizations_url":"https://api.github.com/users/koalalorenzo/orgs","repos_url":"https://api.github.com/users/koalalorenzo/repos","events_url":"https://api.github.com/users/koalalorenzo/events{/privacy}","received_events_url":"https://api.github.com/users/koalalorenzo/received_events","type":"User","site_admin":false},"comments":1,"review_comments":0,"commits":3,"additions":38,"deletions":18,"changed_files":2}},"public":true,"created_at":"2015-01-01T15:16:54Z"} +,{"id":"2489658906","type":"PushEvent","actor":{"id":33528,"login":"koalalorenzo","gravatar_id":"","url":"https://api.github.com/users/koalalorenzo","avatar_url":"https://avatars.githubusercontent.com/u/33528?"},"repo":{"id":8177778,"name":"koalalorenzo/python-digitalocean","url":"https://api.github.com/repos/koalalorenzo/python-digitalocean"},"payload":{"push_id":536867510,"size":4,"distinct_size":4,"ref":"refs/heads/master","head":"1200b4bf5cd8de017c0b34665fd94d9f10ffc3c9","before":"6462517ac267ae3e6f4028f734c42f63c7eb2bdd","commits":[{"sha":"fb2eb63eda83d57ec129d121b3e3b7ad2891fee2","author":{"email":"319ea44168e023f44fd4fa7b461c2f88c6d72efa@gmail.com","name":"moyamo"},"message":"Specify SSH Key by fingerprint in Droplet\n\n__get_ssh_keys_id() was changed to __get_ssh_keys_id_or_fingerprint().\nA droplet can now be created by specifying the fingerprint in the\nssh_keys list.","distinct":true,"url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/commits/fb2eb63eda83d57ec129d121b3e3b7ad2891fee2"},{"sha":"275504c040baca342c544f574ba3896f317b6055","author":{"email":"319ea44168e023f44fd4fa7b461c2f88c6d72efa@gmail.com","name":"moyamo"},"message":"SHHkeys can be loaded by fingerprint","distinct":true,"url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/commits/275504c040baca342c544f574ba3896f317b6055"},{"sha":"4bdc87e670d6148330a622fd8f207302af6ea2fa","author":{"email":"319ea44168e023f44fd4fa7b461c2f88c6d72efa@gmail.com","name":"moyamo"},"message":"Fix typo in Droplet.__get_ssh_keys_id","distinct":true,"url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/commits/4bdc87e670d6148330a622fd8f207302af6ea2fa"},{"sha":"1200b4bf5cd8de017c0b34665fd94d9f10ffc3c9","author":{"email":"5ca27a9c9a9ffd5755ba88f70a41c15819dfda95@gmail.com","name":"Lorenzo Setale"},"message":"Merge pull request #77 from moyamo/master\n\nAllow SSHKey to be specified by fingerprint (Fixes #76)","distinct":true,"url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/commits/1200b4bf5cd8de017c0b34665fd94d9f10ffc3c9"}]},"public":true,"created_at":"2015-01-01T15:16:54Z"} +,{"id":"2489658907","type":"IssueCommentEvent","actor":{"id":8862627,"login":"onbjerg","gravatar_id":"","url":"https://api.github.com/users/onbjerg","avatar_url":"https://avatars.githubusercontent.com/u/8862627?"},"repo":{"id":9090506,"name":"illuminate/html","url":"https://api.github.com/repos/illuminate/html"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/illuminate/html/issues/22","labels_url":"https://api.github.com/repos/illuminate/html/issues/22/labels{/name}","comments_url":"https://api.github.com/repos/illuminate/html/issues/22/comments","events_url":"https://api.github.com/repos/illuminate/html/issues/22/events","html_url":"https://github.com/illuminate/html/pull/22","id":53210858,"number":22,"title":"Update trait name","user":{"login":"varghesejacob","id":6559358,"avatar_url":"https://avatars.githubusercontent.com/u/6559358?v=3","gravatar_id":"","url":"https://api.github.com/users/varghesejacob","html_url":"https://github.com/varghesejacob","followers_url":"https://api.github.com/users/varghesejacob/followers","following_url":"https://api.github.com/users/varghesejacob/following{/other_user}","gists_url":"https://api.github.com/users/varghesejacob/gists{/gist_id}","starred_url":"https://api.github.com/users/varghesejacob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/varghesejacob/subscriptions","organizations_url":"https://api.github.com/users/varghesejacob/orgs","repos_url":"https://api.github.com/users/varghesejacob/repos","events_url":"https://api.github.com/users/varghesejacob/events{/privacy}","received_events_url":"https://api.github.com/users/varghesejacob/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":13,"created_at":"2015-01-01T01:38:27Z","updated_at":"2015-01-01T15:16:54Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/illuminate/html/pulls/22","html_url":"https://github.com/illuminate/html/pull/22","diff_url":"https://github.com/illuminate/html/pull/22.diff","patch_url":"https://github.com/illuminate/html/pull/22.patch"},"body":"Update MacroableTrait to Macroable"},"comment":{"url":"https://api.github.com/repos/illuminate/html/issues/comments/68488852","html_url":"https://github.com/illuminate/html/pull/22#issuecomment-68488852","issue_url":"https://api.github.com/repos/illuminate/html/issues/22","id":68488852,"user":{"login":"onbjerg","id":8862627,"avatar_url":"https://avatars.githubusercontent.com/u/8862627?v=3","gravatar_id":"","url":"https://api.github.com/users/onbjerg","html_url":"https://github.com/onbjerg","followers_url":"https://api.github.com/users/onbjerg/followers","following_url":"https://api.github.com/users/onbjerg/following{/other_user}","gists_url":"https://api.github.com/users/onbjerg/gists{/gist_id}","starred_url":"https://api.github.com/users/onbjerg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/onbjerg/subscriptions","organizations_url":"https://api.github.com/users/onbjerg/orgs","repos_url":"https://api.github.com/users/onbjerg/repos","events_url":"https://api.github.com/users/onbjerg/events{/privacy}","received_events_url":"https://api.github.com/users/onbjerg/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:16:54Z","updated_at":"2015-01-01T15:16:54Z","body":"I'll just fork this then, if it's no longer being maintained. Thanks for your time."}},"public":true,"created_at":"2015-01-01T15:16:54Z","org":{"id":1721772,"login":"illuminate","gravatar_id":"","url":"https://api.github.com/orgs/illuminate","avatar_url":"https://avatars.githubusercontent.com/u/1721772?"}} +,{"id":"2489658910","type":"PushEvent","actor":{"id":326223,"login":"yellowled","gravatar_id":"","url":"https://api.github.com/users/yellowled","avatar_url":"https://avatars.githubusercontent.com/u/326223?"},"repo":{"id":2627116,"name":"s9y/Serendipity","url":"https://api.github.com/repos/s9y/Serendipity"},"payload":{"push_id":536867511,"size":1,"distinct_size":1,"ref":"refs/heads/2.0","head":"bf7480863b341007feeb58ef35b24161fc717769","before":"2677f67a43c72bc52f03246bd8b9e134de166137","commits":[{"sha":"bf7480863b341007feeb58ef35b24161fc717769","author":{"email":"b8d09b4d8580aacbd9efc4540a9b88d2feb9d7e5@yellowled.de","name":"Matthias Mees"},"message":"Update bundled MagnificPopup for backend.\n\nReferences #251","distinct":true,"url":"https://api.github.com/repos/s9y/Serendipity/commits/bf7480863b341007feeb58ef35b24161fc717769"}]},"public":true,"created_at":"2015-01-01T15:16:55Z","org":{"id":1104713,"login":"s9y","gravatar_id":"","url":"https://api.github.com/orgs/s9y","avatar_url":"https://avatars.githubusercontent.com/u/1104713?"}} +,{"id":"2489658911","type":"CreateEvent","actor":{"id":603367,"login":"McCrypto","gravatar_id":"","url":"https://api.github.com/users/McCrypto","avatar_url":"https://avatars.githubusercontent.com/u/603367?"},"repo":{"id":28688914,"name":"McCrypto/mccrypto.github.io","url":"https://api.github.com/repos/McCrypto/mccrypto.github.io"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:16:55Z"} +,{"id":"2489658912","type":"IssueCommentEvent","actor":{"id":5632357,"login":"markuskiller","gravatar_id":"","url":"https://api.github.com/users/markuskiller","avatar_url":"https://avatars.githubusercontent.com/u/5632357?"},"repo":{"id":299862,"name":"nltk/nltk","url":"https://api.github.com/repos/nltk/nltk"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/nltk/nltk/issues/824","labels_url":"https://api.github.com/repos/nltk/nltk/issues/824/labels{/name}","comments_url":"https://api.github.com/repos/nltk/nltk/issues/824/comments","events_url":"https://api.github.com/repos/nltk/nltk/issues/824/events","html_url":"https://github.com/nltk/nltk/issues/824","id":53175258,"number":824,"title":"Install with pip3 is broken (new release of setuptools?)","user":{"login":"ProgVal","id":406946,"avatar_url":"https://avatars.githubusercontent.com/u/406946?v=3","gravatar_id":"","url":"https://api.github.com/users/ProgVal","html_url":"https://github.com/ProgVal","followers_url":"https://api.github.com/users/ProgVal/followers","following_url":"https://api.github.com/users/ProgVal/following{/other_user}","gists_url":"https://api.github.com/users/ProgVal/gists{/gist_id}","starred_url":"https://api.github.com/users/ProgVal/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ProgVal/subscriptions","organizations_url":"https://api.github.com/users/ProgVal/orgs","repos_url":"https://api.github.com/users/ProgVal/repos","events_url":"https://api.github.com/users/ProgVal/events{/privacy}","received_events_url":"https://api.github.com/users/ProgVal/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":6,"created_at":"2014-12-31T09:26:28Z","updated_at":"2015-01-01T15:16:55Z","closed_at":null,"body":"I use Travis CI to run builds every 12 hours; and one hour ago, the [install of nltk](https://travis-ci.org/ProjetPP/integration/builds/45504432#L708) on this environment broke:\r\n```\r\nCollecting nltk\r\nDownloading nltk-3.0.0.tar.gz (962kB)\r\n100% |################################| 966kB 6.6MB/s\r\nTraceback (most recent call last):\r\nFile \"\", line 20, in \r\nFile \"/tmp/pip-build-k8c9g1/nltk/setup.py\", line 37, in \r\ndel sdist.finders[:]\r\nAttributeError: 'module' object has no attribute 'finders'\r\nComplete output from command python setup.py egg_info:\r\nTraceback (most recent call last):\r\nFile \"\", line 20, in \r\nFile \"/tmp/pip-build-k8c9g1/nltk/setup.py\", line 37, in \r\ndel sdist.finders[:]\r\nAttributeError: 'module' object has no attribute 'finders'\r\n```"},"comment":{"url":"https://api.github.com/repos/nltk/nltk/issues/comments/68488853","html_url":"https://github.com/nltk/nltk/issues/824#issuecomment-68488853","issue_url":"https://api.github.com/repos/nltk/nltk/issues/824","id":68488853,"user":{"login":"markuskiller","id":5632357,"avatar_url":"https://avatars.githubusercontent.com/u/5632357?v=3","gravatar_id":"","url":"https://api.github.com/users/markuskiller","html_url":"https://github.com/markuskiller","followers_url":"https://api.github.com/users/markuskiller/followers","following_url":"https://api.github.com/users/markuskiller/following{/other_user}","gists_url":"https://api.github.com/users/markuskiller/gists{/gist_id}","starred_url":"https://api.github.com/users/markuskiller/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/markuskiller/subscriptions","organizations_url":"https://api.github.com/users/markuskiller/orgs","repos_url":"https://api.github.com/users/markuskiller/repos","events_url":"https://api.github.com/users/markuskiller/events{/privacy}","received_events_url":"https://api.github.com/users/markuskiller/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:16:55Z","updated_at":"2015-01-01T15:16:55Z","body":"Temporary workaround for users who have `setuptools>=10.0` installed in their python environment:\r\n\r\n```\r\npip uninstall setuptools\r\n# confirm with 'yes'\r\npip install setuptools==9.1\r\n\r\npip install -U nltk\r\n```\r\n\r\nCheck for `setuptools version` in clean virtual environment:\r\n\r\n```\r\npip list\r\npip (6.0.3)\r\nsetuptools (10.1)\r\n```"}},"public":true,"created_at":"2015-01-01T15:16:55Z","org":{"id":124114,"login":"nltk","gravatar_id":"","url":"https://api.github.com/orgs/nltk","avatar_url":"https://avatars.githubusercontent.com/u/124114?"}} +,{"id":"2489658913","type":"PushEvent","actor":{"id":7477873,"login":"cnlizx","gravatar_id":"","url":"https://api.github.com/users/cnlizx","avatar_url":"https://avatars.githubusercontent.com/u/7477873?"},"repo":{"id":26838935,"name":"carvinma/zscq","url":"https://api.github.com/repos/carvinma/zscq"},"payload":{"push_id":536867512,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9437b15cb6672a0a9f7fb60a531227c7fe6515d2","before":"5a682450a9fe8665d75e30ba34d82b448a55e3d8","commits":[{"sha":"9437b15cb6672a0a9f7fb60a531227c7fe6515d2","author":{"email":"6fbff7322e6139130fc72d7e556616c6204c22cf@163.com","name":"cnlizx"},"message":"","distinct":true,"url":"https://api.github.com/repos/carvinma/zscq/commits/9437b15cb6672a0a9f7fb60a531227c7fe6515d2"}]},"public":true,"created_at":"2015-01-01T15:16:56Z"} +,{"id":"2489658917","type":"IssuesEvent","actor":{"id":10191030,"login":"MissSecret","gravatar_id":"","url":"https://api.github.com/users/MissSecret","avatar_url":"https://avatars.githubusercontent.com/u/10191030?"},"repo":{"id":22165061,"name":"LeagueSharp/LeagueSharpCommon","url":"https://api.github.com/repos/LeagueSharp/LeagueSharpCommon"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/LeagueSharp/LeagueSharpCommon/issues/154","labels_url":"https://api.github.com/repos/LeagueSharp/LeagueSharpCommon/issues/154/labels{/name}","comments_url":"https://api.github.com/repos/LeagueSharp/LeagueSharpCommon/issues/154/comments","events_url":"https://api.github.com/repos/LeagueSharp/LeagueSharpCommon/issues/154/events","html_url":"https://github.com/LeagueSharp/LeagueSharpCommon/issues/154","id":53221677,"number":154,"title":"Latest core changes affected all assemblies with smite","user":{"login":"MissSecret","id":10191030,"avatar_url":"https://avatars.githubusercontent.com/u/10191030?v=3","gravatar_id":"","url":"https://api.github.com/users/MissSecret","html_url":"https://github.com/MissSecret","followers_url":"https://api.github.com/users/MissSecret/followers","following_url":"https://api.github.com/users/MissSecret/following{/other_user}","gists_url":"https://api.github.com/users/MissSecret/gists{/gist_id}","starred_url":"https://api.github.com/users/MissSecret/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MissSecret/subscriptions","organizations_url":"https://api.github.com/users/MissSecret/orgs","repos_url":"https://api.github.com/users/MissSecret/repos","events_url":"https://api.github.com/users/MissSecret/events{/privacy}","received_events_url":"https://api.github.com/users/MissSecret/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:16:56Z","updated_at":"2015-01-01T15:16:56Z","closed_at":null,"body":"Black Warwick\r\nMaster yi by prunes\r\nRoach_'s pantheon\r\nFALeesin\r\nMetasmite\r\nJ_utity\r\nOracle\r\nDiabeths assemblies\r\n"}},"public":true,"created_at":"2015-01-01T15:16:56Z","org":{"id":8248634,"login":"LeagueSharp","gravatar_id":"","url":"https://api.github.com/orgs/LeagueSharp","avatar_url":"https://avatars.githubusercontent.com/u/8248634?"}} +,{"id":"2489658918","type":"IssueCommentEvent","actor":{"id":3618217,"login":"Dynious","gravatar_id":"","url":"https://api.github.com/users/Dynious","avatar_url":"https://avatars.githubusercontent.com/u/3618217?"},"repo":{"id":15116871,"name":"Dynious/RefinedRelocation","url":"https://api.github.com/repos/Dynious/RefinedRelocation"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/Dynious/RefinedRelocation/issues/252","labels_url":"https://api.github.com/repos/Dynious/RefinedRelocation/issues/252/labels{/name}","comments_url":"https://api.github.com/repos/Dynious/RefinedRelocation/issues/252/comments","events_url":"https://api.github.com/repos/Dynious/RefinedRelocation/issues/252/events","html_url":"https://github.com/Dynious/RefinedRelocation/issues/252","id":53160300,"number":252,"title":"Server crash on placing crafting module","user":{"login":"xannor","id":2722473,"avatar_url":"https://avatars.githubusercontent.com/u/2722473?v=3","gravatar_id":"","url":"https://api.github.com/users/xannor","html_url":"https://github.com/xannor","followers_url":"https://api.github.com/users/xannor/followers","following_url":"https://api.github.com/users/xannor/following{/other_user}","gists_url":"https://api.github.com/users/xannor/gists{/gist_id}","starred_url":"https://api.github.com/users/xannor/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xannor/subscriptions","organizations_url":"https://api.github.com/users/xannor/orgs","repos_url":"https://api.github.com/users/xannor/repos","events_url":"https://api.github.com/users/xannor/events{/privacy}","received_events_url":"https://api.github.com/users/xannor/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-31T01:00:59Z","updated_at":"2015-01-01T15:16:56Z","closed_at":null,"body":"I get a hard server crash whenever I try to add a crafting module. \r\n\r\n---- Minecraft Crash Report ----\r\n// But it works on my machine.\r\n\r\nTime: 12/30/14 7:49 PM\r\nDescription: Exception in server tick loop\r\n\r\njava.lang.NoClassDefFoundError: net/minecraft/client/gui/GuiScreen\r\n\tat com.dynious.refinedrelocation.item.ItemRelocatorModule.getRelocatorModule(ItemRelocatorModule.java:74)\r\n\tat com.dynious.refinedrelocation.tileentity.TileRelocator.sideHit(TileRelocator.java:336)\r\n\tat com.dynious.refinedrelocation.tileentity.TileRelocator.onActivated(TileRelocator.java:323)\r\n\tat com.dynious.refinedrelocation.mods.part.PartRelocator.activate(PartRelocator.java:145)\r\n\tat codechicken.multipart.BlockMultipart.func_149727_a(BlockMultipart.scala:236)\r\n\tat net.minecraft.server.management.ItemInWorldManager.func_73078_a(ItemInWorldManager.java:376)\r\n\tat net.minecraft.network.NetHandlerPlayServer.func_147346_a(NetHandlerPlayServer.java:556)\r\n\tat net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.func_148833_a(SourceFile:60)\r\n\tat net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.func_148833_a(SourceFile:9)\r\n\tat net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:212)\r\n\tat net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:165)\r\n\tat net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:659)\r\n\tat net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:334)\r\n\tat net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:547)\r\n\tat net.minecraft.server.MinecraftServer.run(MinecraftServer.java:427)\r\n\tat net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:685)\r\nCaused by: java.lang.ClassNotFoundException: net.minecraft.client.gui.GuiScreen\r\n\tat net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191)\r\n\tat java.lang.ClassLoader.loadClass(Unknown Source)\r\n\tat java.lang.ClassLoader.loadClass(Unknown Source)\r\n\t... 16 more\r\nCaused by: java.lang.RuntimeException: Attempted to load class bdw for invalid side SERVER\r\n\tat cpw.mods.fml.common.asm.transformers.SideTransformer.transform(SideTransformer.java:50)\r\n\tat net.minecraft.launchwrapper.LaunchClassLoader.runTransformers(LaunchClassLoader.java:279)\r\n\tat net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:176)\r\n\t... 18 more\r\n\r\n\r\nA detailed walkthrough of the error, its code path and all known details is as follows:\r\n---------------------------------------------------------------------------------------\r\n\r\n-- System Details --\r\nDetails:\r\n\tMinecraft Version: 1.7.10\r\n\tOperating System: Linux (amd64) version 3.12.20\r\n\tJava Version: 1.7.0_45, Oracle Corporation\r\n\tJava VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation\r\n\tMemory: 317883712 bytes (303 MB) / 1124597760 bytes (1072 MB) up to 1398276096 bytes (1333 MB)\r\n\tJVM Flags: 3 total; -Xms512M -Xmx1500M -XX:MaxPermSize=512m\r\n\tAABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used\r\n\tIntCache: cache: 0, tcache: 47485, allocated: 0, tallocated: 4096\r\n\tFML: MCP v9.05 FML v7.10.85.1264 Minecraft Forge 10.13.2.1264 131 mods loaded, 131 mods active\r\n\tmcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tFML{7.10.85.1264} [Forge Mod Loader] (forge-1.7.10-10.13.2.1264-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tForge{10.13.2.1264} [Minecraft Forge] (forge-1.7.10-10.13.2.1264-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tappliedenergistics2-core{rv1-stable-1} [AppliedEnergistics2 Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tAroma1997Core{1.0.2.13} [Aroma1997Core] (Aroma1997Core-1.7.10-1.0.2.13.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tCodeChickenCore{1.0.4.29} [CodeChicken Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\t{000} [CoFH ASM Data Initialization] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tImmibisMicroblocks{59.0.4} [Immibis's Microblocks] (immibis-microblocks-59.0.4.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMobiusCore{1.2.3} [MobiusCore] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tNotEnoughItems{1.0.3.74} [Not Enough Items] (NotEnoughItems-1.7.10-1.0.3.74-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tOpenEye{0.6} [OpenEye] (OpenEye-0.6-1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tThaumicTinkerer-preloader{0.1} [Thaumic Tinkerer Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tOpenModsCore{0.6} [OpenModsCore] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tdebug{1.0} [debug] (denseores-1.5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tCoFHCore{1.7.10R3.0.0B9} [CoFH Core] (CoFHCore-[1.7.10]3.0.0B9-40.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tBuildCraft|Core{6.2.6} [BuildCraft] (buildcraft-6.2.6.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tBuildCraft|Transport{6.2.6} [BC Transport] (buildcraft-6.2.6.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tBuildCraft|Silicon{6.2.6} [BC Silicon] (buildcraft-6.2.6.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tBuildCraft|Factory{6.2.6} [BC Factory] (buildcraft-6.2.6.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tadditionalpipes{3.2} [Additional Pipes] (additionalpipes-3.2.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tact{0.0.2a_1.7.10} [AdminCommandsToolbox] (AdminCommandsToolbox-0.0.2a_1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tappliedenergistics2{rv1-stable-1} [Applied Energistics 2] (appliedenergistics2-rv1-stable-1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tAroma1997CoreHelper{1.0.2.13} [Aroma1997Core|Helper] (Aroma1997Core-1.7.10-1.0.2.13.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tAroma1997sDimension{1.0} [Aroma1997's Dimensional World] (Aroma1997s-Dimensional-World-1.7.10-1.1.0.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tATG{0.10.0} [Alternate Terrain Generation] (ATG-1.7.2-0.10.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tBetterChests{1.1.1.8} [BetterChests] (BetterChests-1.7.10-1.1.1.8.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tBiblioCraft{1.9.1} [BiblioCraft] (BiblioCraft[v1.9.1][MC1.7.10].jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMantle{1.7.10-0.3.2.jenkins184} [Mantle] (Mantle-1.7.10-0.3.2.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tNatura{2.2.0} [Natura] (natura-1.7.10-2.2.0.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tBiomesOPlenty{2.1.0} [Biomes O' Plenty] (BiomesOPlenty-1.7.10-2.1.0.1019-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tBiblioWoodsBoP{1.9} [BiblioWoods Biomes O'Plenty Edition] (BiblioWoods[BiomesOPlenty][v1.9].jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tExtrabiomesXL{3.16.0} [ExtrabiomesXL] (extrabiomesxl_1.7.10-3.16.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tBiblioWoodsEBXL{1.4} [BiblioWoods ExtraBiomesXL Edition] (BiblioWoods[ExtraBiomesXL][v1.4].jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tHighlands{2.2.2} [Highlands] (Highlands-1.7.2-v-2.2.2.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tBiblioWoodsHighlands{1.4} [BiblioWoods Highlands Edition] (BiblioWoods[Highlands][v1.4].jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tBiblioWoodsNatura{1.5} [BiblioWoods Natura Edition] (BiblioWoods[Natura][v1.5].jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tBigReactors{0.4.1A2} [Big Reactors] (BigReactors-0.4.1A2.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tAWWayofTime{v1.2.1b} [Blood Magic: Alchemical Wizardry] (BloodMagic-1.7.10-1.2.1b-1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tWaslieCore{1.1} [WaslieCore] (WaslieCore-1.1_B43.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tBloodUtils{1.4} [BloodUtils] (BloodUtils-1.4_B0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tBaubles{1.0.1.10} [Baubles] (Baubles-1.7.10-1.0.1.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tThaumcraft{4.2.2.1} [Thaumcraft] (Thaumcraft-1.7.10-4.2.2.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tBotania{r1.3-148} [Botania] (Botania r1.3-148.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tBuildCraft|Builders{6.2.6} [BC Builders] (buildcraft-6.2.6.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tBuildCraft|Energy{6.2.6} [BC Energy] (buildcraft-6.2.6.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\teureka{2.2} [Eureka] (Eureka-1.7.10-2.2.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tbcadditions{1.8.3} [Buildcraft Additions] (BuildcraftAdditions-1.7.10-1.8.3.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tCarpentersBlocks{3.3.4} [Carpenter's Blocks] (Carpenter's Blocks v3.3.4 - MC 1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tChickenChunks{1.3.4.16} [ChickenChunks] (ChickenChunks-1.7.10-1.3.4.16-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tForgeMultipart{1.1.1.319} [Forge Multipart] (ForgeMultipart-1.7.10-1.1.1.319-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tchisel{2.2.0} [Chisel] (Chisel 2-2.2.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tChiselFacades{1.7.10-2.7-cricket} [Chisel Facades] (ChiselFacades-1.7.10-2.7-cricket.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tCompactMachines{1.7.10-1.13} [Compact Machines] (compactmachines-1.7.10-1.13.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tdungeonpack{1.7.10-1.0} [Dungeon Pack] (dungeonpack-1.7.10-1.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\teplus{1.7.10-3.0.1} [Enchanting Plus] (EnchantingPlus-1.7.10-3.0.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMineFactoryReloaded{1.7.10R2.8.0RC6} [MineFactory Reloaded] (MineFactoryReloaded-[1.7.10]2.8.0RC6-5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tEnderIO{1.7.10-2.2.5.311} [Ender IO] (EnderIO-1.7.10-2.2.5.311.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tEnderStorage{1.4.5.27} [EnderStorage] (EnderStorage-1.7.10-1.4.5.27-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tenderutilities{0.3.5} [Ender Utilities] (enderutilities-1.7.10-0.3.5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tEnderZoo{1.7.10-1.0.7.16} [Ender Zoo] (EnderZoo-1.7.10-1.0.7.16.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tenhancedportals{3.0.9} [EnhancedPortals] (EnhancedPortals_1.7.10-universal-3.0.9.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\textracells{2.1.29} [ExtraCells] (ExtraCells-1.7.10-2.1.29bnull.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tExtraUtilities{1.2.1} [Extra Utilities] (extrautilities-1.2.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\teauto{1.7.2} [Extreme Automation] (ExtremeAutomation-1.7.2-0.1.5-alpha.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tFastCraft{1.9} [FastCraft] (fastcraft-1.9.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tGraveStone{2.11.1} [GraveStone] (GraveStone 2.11.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tHardcoreEnderExpansion{1.6.7} [Hardcore Ender Expansion] (HardcoreEnderExpansion MC-1.7.10 v1.6.7.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tHopperDuctMod{1.3.2} [Hopper Ducts] (hopperductmod-1.7.10-1.3.2.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tImmibisCore{59.0.5} [Immibis Core] (immibis-core-59.0.5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tintellie{2.1.4.541} [IntelliE] (IntelligentEnergistics-1.7.10-2.1.4.541-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tappaero{2.1.4.541} [AppliedAerodynamics] (IntelligentEnergistics-1.7.10-2.1.4.541-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tappaeronei{2.1.4.541} [AppliedAerodynamicsNEI] (IntelligentEnergistics-1.7.10-2.1.4.541-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tinventorytweaks{1.59-dev-156-af3bc68} [Inventory Tweaks] (InventoryTweaks-1.59-dev-156.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tIronChest{6.0.62.742} [Iron Chest] (ironchest-1.7.10-6.0.62.742-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tJABBA{1.2.0a} [JABBA] (Jabba-1.2.0a_1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tJourneyMapServer{1.0.2_MC1.7.10} [JourneyMapServer] (JourneyMapServer1.0.2_MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tLogisticsPipes{0.8.2.89} [Logistics Pipes] (logisticspipes-0.8.2.89.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tmagicalcrops{1.7.2 - 0.1 ALPHA} [Magical Crops] (magicalcrops-1.7.10_0.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tNetherOres{1.7.10R2.3.0RC4} [Nether Ores] (NetherOres-[1.7.10]2.3.0RC4-4.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMimicry{1.7.x_1067_1.0.3} [Mimicry] (Mimicry-1.7.x_1067_1.0.3_stable.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMineFactoryReloaded|CompatAppliedEnergistics{1.7.10R2.8.0RC6} [MFR Compat: Applied Energistics] (MineFactoryReloaded-[1.7.10]2.8.0RC6-5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMineFactoryReloaded|CompatAtum{1.7.10R2.8.0RC6} [MFR Compat: Atum] (MineFactoryReloaded-[1.7.10]2.8.0RC6-5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMineFactoryReloaded|CompatBackTools{1.7.10R2.8.0RC6} [MFR Compat: BackTools] (MineFactoryReloaded-[1.7.10]2.8.0RC6-5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMineFactoryReloaded|CompatBuildCraft{1.7.10R2.8.0RC6} [MFR Compat: BuildCraft] (MineFactoryReloaded-[1.7.10]2.8.0RC6-5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMineFactoryReloaded|CompatChococraft{1.7.10R2.8.0RC6} [MFR Compat: Chococraft] (MineFactoryReloaded-[1.7.10]2.8.0RC6-5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMineFactoryReloaded|CompatExtraBiomes{1.7.10R2.8.0RC6} [MFR Compat: ExtraBiomes] (MineFactoryReloaded-[1.7.10]2.8.0RC6-5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMineFactoryReloaded|CompatForestry{1.7.10R2.8.0RC6} [MFR Compat: Forestry] (MineFactoryReloaded-[1.7.10]2.8.0RC6-5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMineFactoryReloaded|CompatForgeMicroblock{1.7.10R2.8.0RC6} [MFR Compat: ForgeMicroblock] (MineFactoryReloaded-[1.7.10]2.8.0RC6-5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMineFactoryReloaded|CompatIC2{1.7.10R2.8.0RC6} [MFR Compat: IC2] (MineFactoryReloaded-[1.7.10]2.8.0RC6-5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMineFactoryReloaded|CompatMystcraft{1.7.10R2.8.0RC6} [MFR Compat: Mystcraft] (MineFactoryReloaded-[1.7.10]2.8.0RC6-5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMineFactoryReloaded|CompatProjRed{1.7.10R2.8.0RC6} [MFR Compat ProjectRed] (MineFactoryReloaded-[1.7.10]2.8.0RC6-5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tRailcraft{9.4.0.0} [Railcraft] (Railcraft_1.7.10-9.4.0.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMineFactoryReloaded|CompatRailcraft{1.7.10R2.8.0RC6} [MFR Compat: Railcraft] (MineFactoryReloaded-[1.7.10]2.8.0RC6-5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMineFactoryReloaded|CompatRP2{1.7.10R2.8.0RC6} [MFR Compat: RP2] (MineFactoryReloaded-[1.7.10]2.8.0RC6-5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMineFactoryReloaded|CompatSufficientBiomes{1.7.10R2.8.0RC6} [MFR Compat: Sufficient Biomes] (MineFactoryReloaded-[1.7.10]2.8.0RC6-5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMineFactoryReloaded|CompatThaumcraft{1.7.10R2.8.0RC6} [MFR Compat: Thaumcraft] (MineFactoryReloaded-[1.7.10]2.8.0RC6-5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMineFactoryReloaded|CompatThermalExpansion{1.7.10R2.8.0RC6} [MFR Compat: Thermal Expansion] (MineFactoryReloaded-[1.7.10]2.8.0RC6-5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tTConstruct{1.7.10-1.7.1.build803} [Tinkers' Construct] (TConstruct-1.7.10-1.7.1d.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMineFactoryReloaded|CompatTConstruct{1.7.10R2.8.0RC6} [MFR Compat: Tinkers' Construct] (MineFactoryReloaded-[1.7.10]2.8.0RC6-5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tTwilightForest{2.3.2} [The Twilight Forest] (twilightforest-1.7.10-2.3.2.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMineFactoryReloaded|CompatTwilightForest{1.7.10R2.8.0RC6} [MFR Compat: TwilightForest] (MineFactoryReloaded-[1.7.10]2.8.0RC6-5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMineFactoryReloaded|CompatVanilla{1.7.10R2.8.0RC6} [MFR Compat: Vanilla] (MineFactoryReloaded-[1.7.10]2.8.0RC6-5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tOpenMods{0.6} [OpenMods] (OpenModsLib-1.7.10-0.6-snapshot-264.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tOpenBlocks{1.3} [OpenBlocks] (OpenBlocks-1.7.10-1.3-snapshot-502.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tpga{1.0.4} [Plant Growth Accelerator] (plant-growth-accelerator-1.7.10-1.0.4.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tJotatosPracticalities{0.5.0} [Practicalities] (practicalities-1.7.10-0.5.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tYogpstopLib{2.0.1} [Yogpstop Library] (QuarryPlus-1.7.10-2.0.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tQuarryPlus{2.0.1} [QuarryPlus] (QuarryPlus-1.7.10-2.0.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tRandomThings{2.2.2} [Random Things] (RandomThings-2.2.2.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tRedLogic{59.1.5} [RedLogic] (redlogic-59.1.5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tRefinedRelocation{1.0.7c} [Refined Relocation] (RefinedRelocation-1.7.10-1.0.7c.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tlibsandstone{1.0.0} [libsandstone] (LibSandstone-1.0.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\txreliquary{1.2} [Reliquary] (Reliquary-1.2.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tRIO{1.8.1} [RemoteIO] (RemoteIO-1.7.10-1.8.1.B84-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tSolarFlux{1.7.10-0.4b} [Solar Flux] (SolarFlux-1.7.10-0.4b.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tSSR{RC3.1} [Soul Shards Reborn] (SSR-RC3.1-B.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tStevesFactoryManager{A93} [Steve's Factory Manager] (StevesFactoryManagerA93.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tsupercraftingframe{1.7.10.1} [Super Crafting Frame] (supercraftingframe-1.7.10.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tThaumcraftMobAspects{1.7.2-2A} [Thaumcraft Mob Aspects] (ThaumcraftMobAspects-1.7.2-2A.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tThaumicTinkerer{unspecified} [Thaumic Tinkerer] (ThaumicTinkerer-2.5-1.7.10-162.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tThaumicExploration{0.6.0} [Thaumic Exploration] (ThaumicExploration-1.7.10-1.1-34.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tTranslocator{1.1.1.14} [Translocator] (Translocator-1.7.10-1.1.1.14-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tWarpTheory{1.7.10R1.0} [WarpTheory] (WarpTheory-1.7-1.0-24.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\twitchery{0.21.1} [Witchery] (witchery-1.7.10-0.21.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tWR-CBE|Core{1.4.1.9} [WR-CBE Core] (WR-CBE-1.7.10-1.4.1.9-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tWR-CBE|Addons{1.4.1.9} [WR-CBE Addons] (WR-CBE-1.7.10-1.4.1.9-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tWR-CBE|Logic{1.4.1.9} [WR-CBE Logic] (WR-CBE-1.7.10-1.4.1.9-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tMcMultipart{1.1.1.319} [Minecraft Multipart Plugin] (ForgeMultipart-1.7.10-1.1.1.319-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\taobd{2.3.5} [Another One Bites The Dust] (AOBD-2.3.5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tdenseores{1.0} [Dense Ores] (denseores-1.5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tForgeMicroblock{1.1.1.319} [Forge Microblocks] (ForgeMultipart-1.7.10-1.1.1.319-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available\r\n\tOpenModsLib crash transformers: [gl_capabilities_hook:ENABLED],[player_render_hook:ENABLED],[map_gen_fix:FINISHED],[movement_callback:ENABLED],[stencil_patches:ENABLED]\r\n\tAE2 Version: stable rv1-stable-1 for Forge 10.13.0.1187\r\n\tMantle Environment: Environment healthy.\r\n\tTConstruct Environment: Environment healthy.\r\n\tAE2 Integration: IC2:OFF, RotaryCraft:OFF, RC:ON, BC:ON, MJ6:ON, MJ5:ON, RF:ON, RFItem:ON, MFR:ON, DSU:ON, FZ:OFF, FMP:ON, RB:OFF, CLApi:OFF, Mekanism:OFF, ImmibisMicroblocks:ON, BetterStorage:OFF\r\n\tProfiler Position: N/A (disabled)\r\n\tVec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used\r\n\tPlayer Count: 1 / 20; [EntityPlayerMP['xannor'/16388, l='world', x=141.04, y=58.00, z=529.02]]\r\n\tIs Modded: Definitely; Server brand changed to 'fml,forge'\r\n\tType: Dedicated Server (map_server.txt)"},"comment":{"url":"https://api.github.com/repos/Dynious/RefinedRelocation/issues/comments/68488855","html_url":"https://github.com/Dynious/RefinedRelocation/issues/252#issuecomment-68488855","issue_url":"https://api.github.com/repos/Dynious/RefinedRelocation/issues/252","id":68488855,"user":{"login":"Dynious","id":3618217,"avatar_url":"https://avatars.githubusercontent.com/u/3618217?v=3","gravatar_id":"","url":"https://api.github.com/users/Dynious","html_url":"https://github.com/Dynious","followers_url":"https://api.github.com/users/Dynious/followers","following_url":"https://api.github.com/users/Dynious/following{/other_user}","gists_url":"https://api.github.com/users/Dynious/gists{/gist_id}","starred_url":"https://api.github.com/users/Dynious/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Dynious/subscriptions","organizations_url":"https://api.github.com/users/Dynious/orgs","repos_url":"https://api.github.com/users/Dynious/repos","events_url":"https://api.github.com/users/Dynious/events{/privacy}","received_events_url":"https://api.github.com/users/Dynious/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:16:56Z","updated_at":"2015-01-01T15:16:56Z","body":"Woops, I forgot to add one line :S Will be fixed in the next version! Thanks for reporting :)"}},"public":true,"created_at":"2015-01-01T15:16:56Z"} +,{"id":"2489658920","type":"PushEvent","actor":{"id":1262317,"login":"ToOLs-PL","gravatar_id":"","url":"https://api.github.com/users/ToOLs-PL","avatar_url":"https://avatars.githubusercontent.com/u/1262317?"},"repo":{"id":28687496,"name":"ToOLs-PL/dojo_rules","url":"https://api.github.com/repos/ToOLs-PL/dojo_rules"},"payload":{"push_id":536867514,"size":1,"distinct_size":1,"ref":"refs/heads/deadly_skills","head":"07b4d2b215a3afb9ae39fcbc025d6d1581ab1ff3","before":"1429fe5e0cc928f94ea9917bc9d215050b70ea4f","commits":[{"sha":"07b4d2b215a3afb9ae39fcbc025d6d1581ab1ff3","author":{"email":"566602a797aa87db384faf1ad472b1349d7f4308@gmail.com","name":"Tomasz Olszewski"},"message":"Add deadly skills.","distinct":true,"url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/commits/07b4d2b215a3afb9ae39fcbc025d6d1581ab1ff3"}]},"public":true,"created_at":"2015-01-01T15:16:57Z"} +,{"id":"2489658921","type":"IssueCommentEvent","actor":{"id":4823878,"login":"Max98","gravatar_id":"","url":"https://api.github.com/users/Max98","avatar_url":"https://avatars.githubusercontent.com/u/4823878?"},"repo":{"id":28123883,"name":"RigsOfRods/rigs-of-rods","url":"https://api.github.com/repos/RigsOfRods/rigs-of-rods"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/RigsOfRods/rigs-of-rods/issues/7","labels_url":"https://api.github.com/repos/RigsOfRods/rigs-of-rods/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/RigsOfRods/rigs-of-rods/issues/7/comments","events_url":"https://api.github.com/repos/RigsOfRods/rigs-of-rods/issues/7/events","html_url":"https://github.com/RigsOfRods/rigs-of-rods/issues/7","id":53217592,"number":7,"title":"include more input maps","user":{"login":"Hiradur","id":6960065,"avatar_url":"https://avatars.githubusercontent.com/u/6960065?v=3","gravatar_id":"","url":"https://api.github.com/users/Hiradur","html_url":"https://github.com/Hiradur","followers_url":"https://api.github.com/users/Hiradur/followers","following_url":"https://api.github.com/users/Hiradur/following{/other_user}","gists_url":"https://api.github.com/users/Hiradur/gists{/gist_id}","starred_url":"https://api.github.com/users/Hiradur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Hiradur/subscriptions","organizations_url":"https://api.github.com/users/Hiradur/orgs","repos_url":"https://api.github.com/users/Hiradur/repos","events_url":"https://api.github.com/users/Hiradur/events{/privacy}","received_events_url":"https://api.github.com/users/Hiradur/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/RigsOfRods/rigs-of-rods/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T11:03:02Z","updated_at":"2015-01-01T15:16:57Z","closed_at":null,"body":"I think it would be a good idea to include all input maps from this thread:\r\nhttp://www.rigsofrods.com/threads/96556-Joystick-specific-Input-maps\r\n\r\nThis way it's easier for beginners to use their controllers. Since they are only text files they don't increase download size very much."},"comment":{"url":"https://api.github.com/repos/RigsOfRods/rigs-of-rods/issues/comments/68488856","html_url":"https://github.com/RigsOfRods/rigs-of-rods/issues/7#issuecomment-68488856","issue_url":"https://api.github.com/repos/RigsOfRods/rigs-of-rods/issues/7","id":68488856,"user":{"login":"Max98","id":4823878,"avatar_url":"https://avatars.githubusercontent.com/u/4823878?v=3","gravatar_id":"","url":"https://api.github.com/users/Max98","html_url":"https://github.com/Max98","followers_url":"https://api.github.com/users/Max98/followers","following_url":"https://api.github.com/users/Max98/following{/other_user}","gists_url":"https://api.github.com/users/Max98/gists{/gist_id}","starred_url":"https://api.github.com/users/Max98/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Max98/subscriptions","organizations_url":"https://api.github.com/users/Max98/orgs","repos_url":"https://api.github.com/users/Max98/repos","events_url":"https://api.github.com/users/Max98/events{/privacy}","received_events_url":"https://api.github.com/users/Max98/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:16:57Z","updated_at":"2015-01-01T15:16:57Z","body":"This is a great idea, we should do so, and make them select-able ingame. (or RoRConfig for this repo)"}},"public":true,"created_at":"2015-01-01T15:16:57Z","org":{"id":10160761,"login":"RigsOfRods","gravatar_id":"","url":"https://api.github.com/orgs/RigsOfRods","avatar_url":"https://avatars.githubusercontent.com/u/10160761?"}} +,{"id":"2489658924","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":536867517,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e59277327686092cd2c7b427a264c484d8464df6","before":"bb9ecd8d2c78c6569f89e096b1e7acb12a8cdd20","commits":[{"sha":"e59277327686092cd2c7b427a264c484d8464df6","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420125415941\n\nw0/BKndufXMcEuEzwWxjoLHoG99oJJ1c/HCDz8jvYVo=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/e59277327686092cd2c7b427a264c484d8464df6"}]},"public":true,"created_at":"2015-01-01T15:16:57Z"} +,{"id":"2489658925","type":"PushEvent","actor":{"id":5585146,"login":"PawPar","gravatar_id":"","url":"https://api.github.com/users/PawPar","avatar_url":"https://avatars.githubusercontent.com/u/5585146?"},"repo":{"id":28107342,"name":"kkachniarz/neural-net","url":"https://api.github.com/repos/kkachniarz/neural-net"},"payload":{"push_id":536867518,"size":0,"distinct_size":0,"ref":"refs/heads/master","head":"f99c0eca793ea5b47c7ae284d1a3df44bcb39d5e","before":"f99c0eca793ea5b47c7ae284d1a3df44bcb39d5e","commits":[]},"public":true,"created_at":"2015-01-01T15:16:57Z"} +,{"id":"2489658928","type":"PushEvent","actor":{"id":3251397,"login":"catacs","gravatar_id":"","url":"https://api.github.com/users/catacs","avatar_url":"https://avatars.githubusercontent.com/u/3251397?"},"repo":{"id":28386080,"name":"catacs/cloud-pong","url":"https://api.github.com/repos/catacs/cloud-pong"},"payload":{"push_id":536867520,"size":1,"distinct_size":0,"ref":"refs/heads/master","head":"fefb84190dc949778a9b22af5a0e4a494704dc93","before":"8a97d6dd6f6bc261b47a31f5ec8e4bbe6ff7309a","commits":[{"sha":"fefb84190dc949778a9b22af5a0e4a494704dc93","author":{"email":"b17683e5c6abf177b6db617886bd8544a1952c75@gmail.com","name":"catacs"},"message":"Scaling content with ScaleManager","distinct":false,"url":"https://api.github.com/repos/catacs/cloud-pong/commits/fefb84190dc949778a9b22af5a0e4a494704dc93"}]},"public":true,"created_at":"2015-01-01T15:16:58Z"} +,{"id":"2489658929","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":536867521,"size":18,"distinct_size":1,"ref":"refs/heads/new-updating-users","head":"2831f1c343823ffdcf26e4364955760f87bfacfb","before":"13d6981b3726d166bef98fdda43ef7157d09d83b","commits":[{"sha":"afff96c5653f5a2536d5f7381c88a1dab15fc39e","author":{"email":"69a03d77aae06706cd569c691b5e39da1e40df09@gmail.com","name":"lvyunyi"},"message":"[重要]成功填写注册表单的测试代码,准备开始写注册表单的页面模板","distinct":false,"url":"https://api.github.com/repos/lvyunyi/tutorial-ror/commits/afff96c5653f5a2536d5f7381c88a1dab15fc39e"},{"sha":"9b871ba9fe2e6cf4ceacfed8ed7de71666c41e73","author":{"email":"69a03d77aae06706cd569c691b5e39da1e40df09@gmail.com","name":"lvyunyi"},"message":"[重要]完成注册表单,准备开始写注册失败","distinct":false,"url":"https://api.github.com/repos/lvyunyi/tutorial-ror/commits/9b871ba9fe2e6cf4ceacfed8ed7de71666c41e73"},{"sha":"8846e5ef8c41175ed1087a483c76606207948ec1","author":{"email":"69a03d77aae06706cd569c691b5e39da1e40df09@gmail.com","name":"lvyunyi"},"message":"随意提交","distinct":false,"url":"https://api.github.com/repos/lvyunyi/tutorial-ror/commits/8846e5ef8c41175ed1087a483c76606207948ec1"},{"sha":"6dc1f48a3ed77eada450a464a065adccc9fe9400","author":{"email":"69a03d77aae06706cd569c691b5e39da1e40df09@gmail.com","name":"lvyunyi"},"message":"[重要]使用健壮参数","distinct":false,"url":"https://api.github.com/repos/lvyunyi/tutorial-ror/commits/6dc1f48a3ed77eada450a464a065adccc9fe9400"},{"sha":"9c7752fc6ff510af2c53bf7e999b04ab4c4fdfbd","author":{"email":"69a03d77aae06706cd569c691b5e39da1e40df09@gmail.com","name":"lvyunyi"},"message":"[重要]添加出错提示的局部模板并调试通过","distinct":false,"url":"https://api.github.com/repos/lvyunyi/tutorial-ror/commits/9c7752fc6ff510af2c53bf7e999b04ab4c4fdfbd"},{"sha":"2259481e866fcd35df4a3a819159a04edfd0505c","author":{"email":"69a03d77aae06706cd569c691b5e39da1e40df09@gmail.com","name":"lvyunyi"},"message":"完成注册成功的跳转,准备开始编写flash信息提示","distinct":false,"url":"https://api.github.com/repos/lvyunyi/tutorial-ror/commits/2259481e866fcd35df4a3a819159a04edfd0505c"},{"sha":"c0ff8c11e1ccab4b5c9d76fa7c89f6406b4f9425","author":{"email":"69a03d77aae06706cd569c691b5e39da1e40df09@gmail.com","name":"lvyunyi"},"message":"增加flash信息成功","distinct":false,"url":"https://api.github.com/repos/lvyunyi/tutorial-ror/commits/c0ff8c11e1ccab4b5c9d76fa7c89f6406b4f9425"},{"sha":"1dd2999cb431042ec1c496fcb12ff22552c09a28","author":{"email":"69a03d77aae06706cd569c691b5e39da1e40df09@gmail.com","name":"lvyunyi"},"message":"新增sessions的resource,编写new.html.erb并测试通过","distinct":false,"url":"https://api.github.com/repos/lvyunyi/tutorial-ror/commits/1dd2999cb431042ec1c496fcb12ff22552c09a28"},{"sha":"31c863a89237f4cde7d0ca5061e948d274f028a3","author":{"email":"69a03d77aae06706cd569c691b5e39da1e40df09@gmail.com","name":"lvyunyi"},"message":"编写登录失败的测试方法及功能,准备开始编写登录功能","distinct":false,"url":"https://api.github.com/repos/lvyunyi/tutorial-ror/commits/31c863a89237f4cde7d0ca5061e948d274f028a3"},{"sha":"fcbc569946463154a24a56ddc8eb2eec43ce35e9","author":{"email":"69a03d77aae06706cd569c691b5e39da1e40df09@gmail.com","name":"lvyunyi"},"message":"[重要]完成登录功能,及加入bootstrap的js","distinct":false,"url":"https://api.github.com/repos/lvyunyi/tutorial-ror/commits/fcbc569946463154a24a56ddc8eb2eec43ce35e9"},{"sha":"c281f835a89bd3ea0dfcbaf4c97a1bbca47b564e","author":{"email":"69a03d77aae06706cd569c691b5e39da1e40df09@gmail.com","name":"lvyunyi"},"message":"更新bug","distinct":false,"url":"https://api.github.com/repos/lvyunyi/tutorial-ror/commits/c281f835a89bd3ea0dfcbaf4c97a1bbca47b564e"},{"sha":"589441fabcb70148ec7e7c07b62368dd497e9985","author":{"email":"69a03d77aae06706cd569c691b5e39da1e40df09@gmail.com","name":"lvyunyi"},"message":"[重要]修改bug,更新flash显示","distinct":false,"url":"https://api.github.com/repos/lvyunyi/tutorial-ror/commits/589441fabcb70148ec7e7c07b62368dd497e9985"},{"sha":"f9cf19f94244a29e2a3b82a9240cafbd06c7aab0","author":{"email":"69a03d77aae06706cd569c691b5e39da1e40df09@gmail.com","name":"lvyunyi"},"message":"完成 注册后直接登录 功能,准备开始退出功能","distinct":false,"url":"https://api.github.com/repos/lvyunyi/tutorial-ror/commits/f9cf19f94244a29e2a3b82a9240cafbd06c7aab0"},{"sha":"5aceb8d40e481b981fa13f6f37a4c0846b58038b","author":{"email":"69a03d77aae06706cd569c691b5e39da1e40df09@gmail.com","name":"lvyunyi"},"message":"完成登出功能","distinct":false,"url":"https://api.github.com/repos/lvyunyi/tutorial-ror/commits/5aceb8d40e481b981fa13f6f37a4c0846b58038b"},{"sha":"f6b82c73fbc25d9bf302521da5f7538907b7f334","author":{"email":"69a03d77aae06706cd569c691b5e39da1e40df09@gmail.com","name":"lvyunyi"},"message":"*未解决。修改一些小bug,准备开始第九章","distinct":false,"url":"https://api.github.com/repos/lvyunyi/tutorial-ror/commits/f6b82c73fbc25d9bf302521da5f7538907b7f334"},{"sha":"de1185d67ecfc1be9e202a9b43a0d9902b0232bd","author":{"email":"69a03d77aae06706cd569c691b5e39da1e40df09@gmail.com","name":"lvyunyi"},"message":"完成基本内容,准备开始9.1.2编辑失败","distinct":false,"url":"https://api.github.com/repos/lvyunyi/tutorial-ror/commits/de1185d67ecfc1be9e202a9b43a0d9902b0232bd"},{"sha":"63dd32b9bb54fae1892aeed2cb21f437d5c8d2d3","author":{"email":"69a03d77aae06706cd569c691b5e39da1e40df09@gmail.com","name":"lvyunyi"},"message":"准备开始9.1.3","distinct":false,"url":"https://api.github.com/repos/lvyunyi/tutorial-ror/commits/63dd32b9bb54fae1892aeed2cb21f437d5c8d2d3"},{"sha":"2831f1c343823ffdcf26e4364955760f87bfacfb","author":{"email":"69a03d77aae06706cd569c691b5e39da1e40df09@gmail.com","name":"lvyunyi"},"message":"Merge commit '63dd32b9bb54fae1892aeed2cb21f437d5c8d2d3' into new-updating-users\n\nConflicts:\n\t.gitignore\n\tapp/assets/stylesheets/custom.css.scss\n\tapp/controllers/application_controller.rb\n\tapp/controllers/sessions_controller.rb\n\tapp/controllers/users_controller.rb\n\tapp/helpers/sessions_helper.rb\n\tapp/models/user.rb\n\tapp/views/layouts/_header.html.erb\n\tapp/views/sessions/new.html.erb\n\tapp/views/shared/_error_messages.html.erb\n\tapp/views/users/edit.html.erb\n\tapp/views/users/new.html.erb\n\tconfig/routes.rb\n\tdb/development.sqlite3\n\tdb/schema.rb\n\tdb/test.sqlite3\n\tspec/requests/authentication_pages_spec.rb\n\tspec/support/utilities.rb","distinct":true,"url":"https://api.github.com/repos/lvyunyi/tutorial-ror/commits/2831f1c343823ffdcf26e4364955760f87bfacfb"}]},"public":true,"created_at":"2015-01-01T15:16:58Z"} +,{"id":"2489658931","type":"PushEvent","actor":{"id":1847495,"login":"isxam","gravatar_id":"","url":"https://api.github.com/users/isxam","avatar_url":"https://avatars.githubusercontent.com/u/1847495?"},"repo":{"id":28600952,"name":"isxam/magento-stats","url":"https://api.github.com/repos/isxam/magento-stats"},"payload":{"push_id":536867523,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"335ccfc43af798ef3a5df31fe9d6c144bb7247f0","before":"cb50121ba33973952a45fb3f75b6340065687b4c","commits":[{"sha":"335ccfc43af798ef3a5df31fe9d6c144bb7247f0","author":{"email":"ec23f61bddc59e6e49f3f3cc867b6566c72f806b@gmail.com","name":"isxam"},"message":"fix helper;","distinct":true,"url":"https://api.github.com/repos/isxam/magento-stats/commits/335ccfc43af798ef3a5df31fe9d6c144bb7247f0"}]},"public":true,"created_at":"2015-01-01T15:16:58Z"} +,{"id":"2489658932","type":"ForkEvent","actor":{"id":8862627,"login":"onbjerg","gravatar_id":"","url":"https://api.github.com/users/onbjerg","avatar_url":"https://avatars.githubusercontent.com/u/8862627?"},"repo":{"id":9090506,"name":"illuminate/html","url":"https://api.github.com/repos/illuminate/html"},"payload":{"forkee":{"id":28688915,"name":"html","full_name":"onbjerg/html","owner":{"login":"onbjerg","id":8862627,"avatar_url":"https://avatars.githubusercontent.com/u/8862627?v=3","gravatar_id":"","url":"https://api.github.com/users/onbjerg","html_url":"https://github.com/onbjerg","followers_url":"https://api.github.com/users/onbjerg/followers","following_url":"https://api.github.com/users/onbjerg/following{/other_user}","gists_url":"https://api.github.com/users/onbjerg/gists{/gist_id}","starred_url":"https://api.github.com/users/onbjerg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/onbjerg/subscriptions","organizations_url":"https://api.github.com/users/onbjerg/orgs","repos_url":"https://api.github.com/users/onbjerg/repos","events_url":"https://api.github.com/users/onbjerg/events{/privacy}","received_events_url":"https://api.github.com/users/onbjerg/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/onbjerg/html","description":"[READ ONLY] Subtree split of the Illuminate HTML component (see laravel/framework)","fork":true,"url":"https://api.github.com/repos/onbjerg/html","forks_url":"https://api.github.com/repos/onbjerg/html/forks","keys_url":"https://api.github.com/repos/onbjerg/html/keys{/key_id}","collaborators_url":"https://api.github.com/repos/onbjerg/html/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/onbjerg/html/teams","hooks_url":"https://api.github.com/repos/onbjerg/html/hooks","issue_events_url":"https://api.github.com/repos/onbjerg/html/issues/events{/number}","events_url":"https://api.github.com/repos/onbjerg/html/events","assignees_url":"https://api.github.com/repos/onbjerg/html/assignees{/user}","branches_url":"https://api.github.com/repos/onbjerg/html/branches{/branch}","tags_url":"https://api.github.com/repos/onbjerg/html/tags","blobs_url":"https://api.github.com/repos/onbjerg/html/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/onbjerg/html/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/onbjerg/html/git/refs{/sha}","trees_url":"https://api.github.com/repos/onbjerg/html/git/trees{/sha}","statuses_url":"https://api.github.com/repos/onbjerg/html/statuses/{sha}","languages_url":"https://api.github.com/repos/onbjerg/html/languages","stargazers_url":"https://api.github.com/repos/onbjerg/html/stargazers","contributors_url":"https://api.github.com/repos/onbjerg/html/contributors","subscribers_url":"https://api.github.com/repos/onbjerg/html/subscribers","subscription_url":"https://api.github.com/repos/onbjerg/html/subscription","commits_url":"https://api.github.com/repos/onbjerg/html/commits{/sha}","git_commits_url":"https://api.github.com/repos/onbjerg/html/git/commits{/sha}","comments_url":"https://api.github.com/repos/onbjerg/html/comments{/number}","issue_comment_url":"https://api.github.com/repos/onbjerg/html/issues/comments/{number}","contents_url":"https://api.github.com/repos/onbjerg/html/contents/{+path}","compare_url":"https://api.github.com/repos/onbjerg/html/compare/{base}...{head}","merges_url":"https://api.github.com/repos/onbjerg/html/merges","archive_url":"https://api.github.com/repos/onbjerg/html/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/onbjerg/html/downloads","issues_url":"https://api.github.com/repos/onbjerg/html/issues{/number}","pulls_url":"https://api.github.com/repos/onbjerg/html/pulls{/number}","milestones_url":"https://api.github.com/repos/onbjerg/html/milestones{/number}","notifications_url":"https://api.github.com/repos/onbjerg/html/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/onbjerg/html/labels{/name}","releases_url":"https://api.github.com/repos/onbjerg/html/releases{/id}","created_at":"2015-01-01T15:16:58Z","updated_at":"2014-12-04T09:27:00Z","pushed_at":"2014-12-22T21:27:23Z","git_url":"git://github.com/onbjerg/html.git","ssh_url":"git@github.com:onbjerg/html.git","clone_url":"https://github.com/onbjerg/html.git","svn_url":"https://github.com/onbjerg/html","homepage":"","size":718,"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:16:59Z","org":{"id":1721772,"login":"illuminate","gravatar_id":"","url":"https://api.github.com/orgs/illuminate","avatar_url":"https://avatars.githubusercontent.com/u/1721772?"}} +,{"id":"2489658934","type":"WatchEvent","actor":{"id":908309,"login":"bob2827","gravatar_id":"","url":"https://api.github.com/users/bob2827","avatar_url":"https://avatars.githubusercontent.com/u/908309?"},"repo":{"id":20905275,"name":"apigee-127/swagger-tools","url":"https://api.github.com/repos/apigee-127/swagger-tools"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:16:59Z","org":{"id":7990855,"login":"apigee-127","gravatar_id":"","url":"https://api.github.com/orgs/apigee-127","avatar_url":"https://avatars.githubusercontent.com/u/7990855?"}} +,{"id":"2489658935","type":"PushEvent","actor":{"id":8154609,"login":"codectile","gravatar_id":"","url":"https://api.github.com/users/codectile","avatar_url":"https://avatars.githubusercontent.com/u/8154609?"},"repo":{"id":27632889,"name":"codectile/Curving-Knife","url":"https://api.github.com/repos/codectile/Curving-Knife"},"payload":{"push_id":536867524,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c18e468cefe7754ae15b7351584d9a3d2cccbcab","before":"ca42f83f2640df3c47c15a4566a716d3f32f61f1","commits":[{"sha":"c18e468cefe7754ae15b7351584d9a3d2cccbcab","author":{"email":"00fe3da14d6ec402f5bf74e2d92ab3099b2e862d@gmail.com","name":"Codectile"},"message":"Update cknife.inc","distinct":true,"url":"https://api.github.com/repos/codectile/Curving-Knife/commits/c18e468cefe7754ae15b7351584d9a3d2cccbcab"}]},"public":true,"created_at":"2015-01-01T15:16:59Z"} +,{"id":"2489658936","type":"PullRequestEvent","actor":{"id":42865,"login":"rail","gravatar_id":"","url":"https://api.github.com/users/rail","avatar_url":"https://avatars.githubusercontent.com/u/42865?"},"repo":{"id":5844600,"name":"mozilla/build-cloud-tools","url":"https://api.github.com/repos/mozilla/build-cloud-tools"},"payload":{"action":"opened","number":8,"pull_request":{"url":"https://api.github.com/repos/mozilla/build-cloud-tools/pulls/8","id":26743897,"html_url":"https://github.com/mozilla/build-cloud-tools/pull/8","diff_url":"https://github.com/mozilla/build-cloud-tools/pull/8.diff","patch_url":"https://github.com/mozilla/build-cloud-tools/pull/8.patch","issue_url":"https://api.github.com/repos/mozilla/build-cloud-tools/issues/8","number":8,"state":"open","locked":false,"title":"Better spot instance detection","user":{"login":"rail","id":42865,"avatar_url":"https://avatars.githubusercontent.com/u/42865?v=3","gravatar_id":"","url":"https://api.github.com/users/rail","html_url":"https://github.com/rail","followers_url":"https://api.github.com/users/rail/followers","following_url":"https://api.github.com/users/rail/following{/other_user}","gists_url":"https://api.github.com/users/rail/gists{/gist_id}","starred_url":"https://api.github.com/users/rail/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rail/subscriptions","organizations_url":"https://api.github.com/users/rail/orgs","repos_url":"https://api.github.com/users/rail/repos","events_url":"https://api.github.com/users/rail/events{/privacy}","received_events_url":"https://api.github.com/users/rail/received_events","type":"User","site_admin":false},"body":"This will also terminate instances not tagged properly","created_at":"2015-01-01T15:16:59Z","updated_at":"2015-01-01T15:16:59Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/mozilla/build-cloud-tools/pulls/8/commits","review_comments_url":"https://api.github.com/repos/mozilla/build-cloud-tools/pulls/8/comments","review_comment_url":"https://api.github.com/repos/mozilla/build-cloud-tools/pulls/comments/{number}","comments_url":"https://api.github.com/repos/mozilla/build-cloud-tools/issues/8/comments","statuses_url":"https://api.github.com/repos/mozilla/build-cloud-tools/statuses/836b861b28b5675ea3ff45f74abe67681b30f173","head":{"label":"rail:spot_from_instance","ref":"spot_from_instance","sha":"836b861b28b5675ea3ff45f74abe67681b30f173","user":{"login":"rail","id":42865,"avatar_url":"https://avatars.githubusercontent.com/u/42865?v=3","gravatar_id":"","url":"https://api.github.com/users/rail","html_url":"https://github.com/rail","followers_url":"https://api.github.com/users/rail/followers","following_url":"https://api.github.com/users/rail/following{/other_user}","gists_url":"https://api.github.com/users/rail/gists{/gist_id}","starred_url":"https://api.github.com/users/rail/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rail/subscriptions","organizations_url":"https://api.github.com/users/rail/orgs","repos_url":"https://api.github.com/users/rail/repos","events_url":"https://api.github.com/users/rail/events{/privacy}","received_events_url":"https://api.github.com/users/rail/received_events","type":"User","site_admin":false},"repo":{"id":16970836,"name":"build-cloud-tools","full_name":"rail/build-cloud-tools","owner":{"login":"rail","id":42865,"avatar_url":"https://avatars.githubusercontent.com/u/42865?v=3","gravatar_id":"","url":"https://api.github.com/users/rail","html_url":"https://github.com/rail","followers_url":"https://api.github.com/users/rail/followers","following_url":"https://api.github.com/users/rail/following{/other_user}","gists_url":"https://api.github.com/users/rail/gists{/gist_id}","starred_url":"https://api.github.com/users/rail/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rail/subscriptions","organizations_url":"https://api.github.com/users/rail/orgs","repos_url":"https://api.github.com/users/rail/repos","events_url":"https://api.github.com/users/rail/events{/privacy}","received_events_url":"https://api.github.com/users/rail/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/rail/build-cloud-tools","description":"Git mirror of http://hg.mozilla.org/build/cloud-tools/","fork":true,"url":"https://api.github.com/repos/rail/build-cloud-tools","forks_url":"https://api.github.com/repos/rail/build-cloud-tools/forks","keys_url":"https://api.github.com/repos/rail/build-cloud-tools/keys{/key_id}","collaborators_url":"https://api.github.com/repos/rail/build-cloud-tools/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/rail/build-cloud-tools/teams","hooks_url":"https://api.github.com/repos/rail/build-cloud-tools/hooks","issue_events_url":"https://api.github.com/repos/rail/build-cloud-tools/issues/events{/number}","events_url":"https://api.github.com/repos/rail/build-cloud-tools/events","assignees_url":"https://api.github.com/repos/rail/build-cloud-tools/assignees{/user}","branches_url":"https://api.github.com/repos/rail/build-cloud-tools/branches{/branch}","tags_url":"https://api.github.com/repos/rail/build-cloud-tools/tags","blobs_url":"https://api.github.com/repos/rail/build-cloud-tools/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/rail/build-cloud-tools/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/rail/build-cloud-tools/git/refs{/sha}","trees_url":"https://api.github.com/repos/rail/build-cloud-tools/git/trees{/sha}","statuses_url":"https://api.github.com/repos/rail/build-cloud-tools/statuses/{sha}","languages_url":"https://api.github.com/repos/rail/build-cloud-tools/languages","stargazers_url":"https://api.github.com/repos/rail/build-cloud-tools/stargazers","contributors_url":"https://api.github.com/repos/rail/build-cloud-tools/contributors","subscribers_url":"https://api.github.com/repos/rail/build-cloud-tools/subscribers","subscription_url":"https://api.github.com/repos/rail/build-cloud-tools/subscription","commits_url":"https://api.github.com/repos/rail/build-cloud-tools/commits{/sha}","git_commits_url":"https://api.github.com/repos/rail/build-cloud-tools/git/commits{/sha}","comments_url":"https://api.github.com/repos/rail/build-cloud-tools/comments{/number}","issue_comment_url":"https://api.github.com/repos/rail/build-cloud-tools/issues/comments/{number}","contents_url":"https://api.github.com/repos/rail/build-cloud-tools/contents/{+path}","compare_url":"https://api.github.com/repos/rail/build-cloud-tools/compare/{base}...{head}","merges_url":"https://api.github.com/repos/rail/build-cloud-tools/merges","archive_url":"https://api.github.com/repos/rail/build-cloud-tools/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/rail/build-cloud-tools/downloads","issues_url":"https://api.github.com/repos/rail/build-cloud-tools/issues{/number}","pulls_url":"https://api.github.com/repos/rail/build-cloud-tools/pulls{/number}","milestones_url":"https://api.github.com/repos/rail/build-cloud-tools/milestones{/number}","notifications_url":"https://api.github.com/repos/rail/build-cloud-tools/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/rail/build-cloud-tools/labels{/name}","releases_url":"https://api.github.com/repos/rail/build-cloud-tools/releases{/id}","created_at":"2014-02-19T01:59:55Z","updated_at":"2015-01-01T15:14:52Z","pushed_at":"2015-01-01T15:15:16Z","git_url":"git://github.com/rail/build-cloud-tools.git","ssh_url":"git@github.com:rail/build-cloud-tools.git","clone_url":"https://github.com/rail/build-cloud-tools.git","svn_url":"https://github.com/rail/build-cloud-tools","homepage":null,"size":1030,"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":"mozilla:master","ref":"master","sha":"82d436e8cb0f7f59e4c5fd7c52ac23a7c605e8b0","user":{"login":"mozilla","id":131524,"avatar_url":"https://avatars.githubusercontent.com/u/131524?v=3","gravatar_id":"","url":"https://api.github.com/users/mozilla","html_url":"https://github.com/mozilla","followers_url":"https://api.github.com/users/mozilla/followers","following_url":"https://api.github.com/users/mozilla/following{/other_user}","gists_url":"https://api.github.com/users/mozilla/gists{/gist_id}","starred_url":"https://api.github.com/users/mozilla/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mozilla/subscriptions","organizations_url":"https://api.github.com/users/mozilla/orgs","repos_url":"https://api.github.com/users/mozilla/repos","events_url":"https://api.github.com/users/mozilla/events{/privacy}","received_events_url":"https://api.github.com/users/mozilla/received_events","type":"Organization","site_admin":false},"repo":{"id":5844600,"name":"build-cloud-tools","full_name":"mozilla/build-cloud-tools","owner":{"login":"mozilla","id":131524,"avatar_url":"https://avatars.githubusercontent.com/u/131524?v=3","gravatar_id":"","url":"https://api.github.com/users/mozilla","html_url":"https://github.com/mozilla","followers_url":"https://api.github.com/users/mozilla/followers","following_url":"https://api.github.com/users/mozilla/following{/other_user}","gists_url":"https://api.github.com/users/mozilla/gists{/gist_id}","starred_url":"https://api.github.com/users/mozilla/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mozilla/subscriptions","organizations_url":"https://api.github.com/users/mozilla/orgs","repos_url":"https://api.github.com/users/mozilla/repos","events_url":"https://api.github.com/users/mozilla/events{/privacy}","received_events_url":"https://api.github.com/users/mozilla/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/mozilla/build-cloud-tools","description":"Git mirror of http://hg.mozilla.org/build/cloud-tools/","fork":false,"url":"https://api.github.com/repos/mozilla/build-cloud-tools","forks_url":"https://api.github.com/repos/mozilla/build-cloud-tools/forks","keys_url":"https://api.github.com/repos/mozilla/build-cloud-tools/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mozilla/build-cloud-tools/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mozilla/build-cloud-tools/teams","hooks_url":"https://api.github.com/repos/mozilla/build-cloud-tools/hooks","issue_events_url":"https://api.github.com/repos/mozilla/build-cloud-tools/issues/events{/number}","events_url":"https://api.github.com/repos/mozilla/build-cloud-tools/events","assignees_url":"https://api.github.com/repos/mozilla/build-cloud-tools/assignees{/user}","branches_url":"https://api.github.com/repos/mozilla/build-cloud-tools/branches{/branch}","tags_url":"https://api.github.com/repos/mozilla/build-cloud-tools/tags","blobs_url":"https://api.github.com/repos/mozilla/build-cloud-tools/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mozilla/build-cloud-tools/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mozilla/build-cloud-tools/git/refs{/sha}","trees_url":"https://api.github.com/repos/mozilla/build-cloud-tools/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mozilla/build-cloud-tools/statuses/{sha}","languages_url":"https://api.github.com/repos/mozilla/build-cloud-tools/languages","stargazers_url":"https://api.github.com/repos/mozilla/build-cloud-tools/stargazers","contributors_url":"https://api.github.com/repos/mozilla/build-cloud-tools/contributors","subscribers_url":"https://api.github.com/repos/mozilla/build-cloud-tools/subscribers","subscription_url":"https://api.github.com/repos/mozilla/build-cloud-tools/subscription","commits_url":"https://api.github.com/repos/mozilla/build-cloud-tools/commits{/sha}","git_commits_url":"https://api.github.com/repos/mozilla/build-cloud-tools/git/commits{/sha}","comments_url":"https://api.github.com/repos/mozilla/build-cloud-tools/comments{/number}","issue_comment_url":"https://api.github.com/repos/mozilla/build-cloud-tools/issues/comments/{number}","contents_url":"https://api.github.com/repos/mozilla/build-cloud-tools/contents/{+path}","compare_url":"https://api.github.com/repos/mozilla/build-cloud-tools/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mozilla/build-cloud-tools/merges","archive_url":"https://api.github.com/repos/mozilla/build-cloud-tools/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mozilla/build-cloud-tools/downloads","issues_url":"https://api.github.com/repos/mozilla/build-cloud-tools/issues{/number}","pulls_url":"https://api.github.com/repos/mozilla/build-cloud-tools/pulls{/number}","milestones_url":"https://api.github.com/repos/mozilla/build-cloud-tools/milestones{/number}","notifications_url":"https://api.github.com/repos/mozilla/build-cloud-tools/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mozilla/build-cloud-tools/labels{/name}","releases_url":"https://api.github.com/repos/mozilla/build-cloud-tools/releases{/id}","created_at":"2012-09-17T17:33:44Z","updated_at":"2014-12-29T18:10:19Z","pushed_at":"2014-12-29T18:10:18Z","git_url":"git://github.com/mozilla/build-cloud-tools.git","ssh_url":"git@github.com:mozilla/build-cloud-tools.git","clone_url":"https://github.com/mozilla/build-cloud-tools.git","svn_url":"https://github.com/mozilla/build-cloud-tools","homepage":null,"size":3894,"stargazers_count":10,"watchers_count":10,"language":"Python","has_issues":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":9,"mirror_url":null,"open_issues_count":1,"forks":9,"open_issues":1,"watchers":10,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/mozilla/build-cloud-tools/pulls/8"},"html":{"href":"https://github.com/mozilla/build-cloud-tools/pull/8"},"issue":{"href":"https://api.github.com/repos/mozilla/build-cloud-tools/issues/8"},"comments":{"href":"https://api.github.com/repos/mozilla/build-cloud-tools/issues/8/comments"},"review_comments":{"href":"https://api.github.com/repos/mozilla/build-cloud-tools/pulls/8/comments"},"review_comment":{"href":"https://api.github.com/repos/mozilla/build-cloud-tools/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/mozilla/build-cloud-tools/pulls/8/commits"},"statuses":{"href":"https://api.github.com/repos/mozilla/build-cloud-tools/statuses/836b861b28b5675ea3ff45f74abe67681b30f173"}},"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:16:59Z","org":{"id":131524,"login":"mozilla","gravatar_id":"","url":"https://api.github.com/orgs/mozilla","avatar_url":"https://avatars.githubusercontent.com/u/131524?"}} +,{"id":"2489658940","type":"WatchEvent","actor":{"id":1426876,"login":"suenot","gravatar_id":"","url":"https://api.github.com/users/suenot","avatar_url":"https://avatars.githubusercontent.com/u/1426876?"},"repo":{"id":28021828,"name":"jrm2k6/dynamic-json-resume","url":"https://api.github.com/repos/jrm2k6/dynamic-json-resume"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:00Z"} +,{"id":"2489658942","type":"PushEvent","actor":{"id":2419009,"login":"ayufan","gravatar_id":"","url":"https://api.github.com/users/ayufan","avatar_url":"https://avatars.githubusercontent.com/u/2419009?"},"repo":{"id":7078931,"name":"proxmox/pve-common","url":"https://api.github.com/repos/proxmox/pve-common"},"payload":{"push_id":536867526,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"517c11257cfee1b17b1e481f17b42d2bac8a9812","before":"ce0ae1edec5f7c6e818077ebdd76694e7541520a","commits":[{"sha":"517c11257cfee1b17b1e481f17b42d2bac8a9812","author":{"email":"e35e8b2bbfdcf2327cda41ac7fce32f25587cf5b@proxmox.com","name":"Dietmar Maurer"},"message":"Daemon: add helper to create sockets\n\nThose sockets are not closed and reopened at restart.","distinct":true,"url":"https://api.github.com/repos/proxmox/pve-common/commits/517c11257cfee1b17b1e481f17b42d2bac8a9812"}]},"public":true,"created_at":"2015-01-01T15:17:01Z","org":{"id":2678585,"login":"proxmox","gravatar_id":"","url":"https://api.github.com/orgs/proxmox","avatar_url":"https://avatars.githubusercontent.com/u/2678585?"}} +,{"id":"2489658947","type":"PushEvent","actor":{"id":1254399,"login":"jdorleans","gravatar_id":"","url":"https://api.github.com/users/jdorleans","avatar_url":"https://avatars.githubusercontent.com/u/1254399?"},"repo":{"id":26402719,"name":"jdorleans/neoevolution","url":"https://api.github.com/repos/jdorleans/neoevolution"},"payload":{"push_id":536867527,"size":1,"distinct_size":1,"ref":"refs/heads/feature/configurable-creation","head":"657bc50fa5974c183077ae5b2afad3d9754e15ab","before":"13567b044de04cc30e44813f4a38914693ac6815","commits":[{"sha":"657bc50fa5974c183077ae5b2afad3d9754e15ab","author":{"email":"d3297a42ebe2d144ea34aee9f7983ce3ac9eedea@gmail.com","name":"Jonathan D'Orleans"},"message":"NeoEvolution - Fxing method's visibility","distinct":true,"url":"https://api.github.com/repos/jdorleans/neoevolution/commits/657bc50fa5974c183077ae5b2afad3d9754e15ab"}]},"public":true,"created_at":"2015-01-01T15:17:01Z"} +,{"id":"2489658949","type":"PushEvent","actor":{"id":2915850,"login":"robbiehinch","gravatar_id":"","url":"https://api.github.com/users/robbiehinch","avatar_url":"https://avatars.githubusercontent.com/u/2915850?"},"repo":{"id":28688894,"name":"robbiehinch/tvm","url":"https://api.github.com/repos/robbiehinch/tvm"},"payload":{"push_id":536867528,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bc70c98a71c6dc47da726771e0a9125eea122abc","before":"696f11678fca7cbd5539e2bf73bc005befd4341c","commits":[{"sha":"bc70c98a71c6dc47da726771e0a9125eea122abc","author":{"email":"e9897f16033f80392d048ad45b49372dde51d61d@yahoo.com","name":"Rob Hinchliff"},"message":"err variable misnamed -> error","distinct":true,"url":"https://api.github.com/repos/robbiehinch/tvm/commits/bc70c98a71c6dc47da726771e0a9125eea122abc"}]},"public":true,"created_at":"2015-01-01T15:17:01Z"} +,{"id":"2489658950","type":"PushEvent","actor":{"id":4731916,"login":"julianbauer","gravatar_id":"","url":"https://api.github.com/users/julianbauer","avatar_url":"https://avatars.githubusercontent.com/u/4731916?"},"repo":{"id":28053109,"name":"sub2home/dashboard.sub2home.com","url":"https://api.github.com/repos/sub2home/dashboard.sub2home.com"},"payload":{"push_id":536867529,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"429028ebc14695fe1753f7177ab365fc96aa8f5a","before":"b250d13097b96fcb1f2bba5479861c792cb55118","commits":[{"sha":"429028ebc14695fe1753f7177ab365fc96aa8f5a","author":{"email":"354106e416911844661e1603d99ecf7d1c318dda@overnice.de","name":"Julian Bauer"},"message":"fixed counter","distinct":true,"url":"https://api.github.com/repos/sub2home/dashboard.sub2home.com/commits/429028ebc14695fe1753f7177ab365fc96aa8f5a"}]},"public":true,"created_at":"2015-01-01T15:17:01Z","org":{"id":5780998,"login":"sub2home","gravatar_id":"","url":"https://api.github.com/orgs/sub2home","avatar_url":"https://avatars.githubusercontent.com/u/5780998?"}} +,{"id":"2489658959","type":"CommitCommentEvent","actor":{"id":9715,"login":"ttilley","gravatar_id":"","url":"https://api.github.com/users/ttilley","avatar_url":"https://avatars.githubusercontent.com/u/9715?"},"repo":{"id":9384267,"name":"atom/atom-shell","url":"https://api.github.com/repos/atom/atom-shell"},"payload":{"comment":{"url":"https://api.github.com/repos/atom/atom-shell/comments/9132452","html_url":"https://github.com/atom/atom-shell/commit/b94375c7940678229757591388b035662339667c#commitcomment-9132452","id":9132452,"user":{"login":"ttilley","id":9715,"avatar_url":"https://avatars.githubusercontent.com/u/9715?v=3","gravatar_id":"","url":"https://api.github.com/users/ttilley","html_url":"https://github.com/ttilley","followers_url":"https://api.github.com/users/ttilley/followers","following_url":"https://api.github.com/users/ttilley/following{/other_user}","gists_url":"https://api.github.com/users/ttilley/gists{/gist_id}","starred_url":"https://api.github.com/users/ttilley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ttilley/subscriptions","organizations_url":"https://api.github.com/users/ttilley/orgs","repos_url":"https://api.github.com/users/ttilley/repos","events_url":"https://api.github.com/users/ttilley/events{/privacy}","received_events_url":"https://api.github.com/users/ttilley/received_events","type":"User","site_admin":false},"position":77,"line":853,"path":"atom.gyp","commit_id":"b94375c7940678229757591388b035662339667c","created_at":"2015-01-01T15:17:02Z","updated_at":"2015-01-01T15:17:02Z","body":"that's a typo @zcbenz "}},"public":true,"created_at":"2015-01-01T15:17:02Z","org":{"id":1089146,"login":"atom","gravatar_id":"","url":"https://api.github.com/orgs/atom","avatar_url":"https://avatars.githubusercontent.com/u/1089146?"}} +,{"id":"2489658960","type":"CreateEvent","actor":{"id":3244965,"login":"kaikreuzer","gravatar_id":"","url":"https://api.github.com/users/kaikreuzer","avatar_url":"https://avatars.githubusercontent.com/u/3244965?"},"repo":{"id":15803647,"name":"kaikreuzer/smarthome","url":"https://api.github.com/repos/kaikreuzer/smarthome"},"payload":{"ref":"update-license-headers","ref_type":"branch","master_branch":"master","description":"Eclipse SmartHome project","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:02Z"} +,{"id":"2489658962","type":"PushEvent","actor":{"id":1013372,"login":"cweric","gravatar_id":"","url":"https://api.github.com/users/cweric","avatar_url":"https://avatars.githubusercontent.com/u/1013372?"},"repo":{"id":8902398,"name":"cweric/CodeIgniter","url":"https://api.github.com/repos/cweric/CodeIgniter"},"payload":{"push_id":536867531,"size":1,"distinct_size":1,"ref":"refs/heads/patch-1","head":"b9149c4aeb3119749ae662534b6f327c4bd301a7","before":"b0357338d3c566f11397010f803189f42d901522","commits":[{"sha":"b9149c4aeb3119749ae662534b6f327c4bd301a7","author":{"email":"2edb320886e481e89799eb914941b76d2d0b0c47@gmail.com","name":"chihwen"},"message":"Update Cache_memcached.php","distinct":true,"url":"https://api.github.com/repos/cweric/CodeIgniter/commits/b9149c4aeb3119749ae662534b6f327c4bd301a7"}]},"public":true,"created_at":"2015-01-01T15:17:03Z"} +,{"id":"2489658963","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":536867532,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d2451370fb59a90ecadd32bd6c4f4c6e1dff3ef5","before":"13861394934b0ae2f7c990ffdbf24c9800be9fa7","commits":[{"sha":"d2451370fb59a90ecadd32bd6c4f4c6e1dff3ef5","author":{"email":"6b83eded995a0663a8581c4317a76bfbfaf34437@xiaoshitou1","name":"xiaoshitou"},"message":"Translated by 土妹子","distinct":true,"url":"https://api.github.com/repos/gnenbu/gn_enbu_chs/commits/d2451370fb59a90ecadd32bd6c4f4c6e1dff3ef5"}]},"public":true,"created_at":"2015-01-01T15:17:03Z"} +,{"id":"2489658965","type":"PushEvent","actor":{"id":4827986,"login":"starzou","gravatar_id":"","url":"https://api.github.com/users/starzou","avatar_url":"https://avatars.githubusercontent.com/u/4827986?"},"repo":{"id":28683387,"name":"starzou/doFun","url":"https://api.github.com/repos/starzou/doFun"},"payload":{"push_id":536867535,"size":8,"distinct_size":8,"ref":"refs/heads/master","head":"ce15da30e05cb06f533a4d8e9a14ab53b8ea5696","before":"aa699196df3d64c9b759f1f87b5967b87ce1a934","commits":[{"sha":"76a1415da1f3e10edd91f254308fdc11fea2bae0","author":{"email":"190bff87fd93d0f25ffce7bdb385f92f75b76b83@126.com","name":"starzou"},"message":"update","distinct":true,"url":"https://api.github.com/repos/starzou/doFun/commits/76a1415da1f3e10edd91f254308fdc11fea2bae0"},{"sha":"2bbffee8d5dd13362d1d4005d868ddab2923a3fe","author":{"email":"190bff87fd93d0f25ffce7bdb385f92f75b76b83@126.com","name":"starzou"},"message":"重构","distinct":true,"url":"https://api.github.com/repos/starzou/doFun/commits/2bbffee8d5dd13362d1d4005d868ddab2923a3fe"},{"sha":"b8bbc9934879a92f87aaaf76fbb72458c1a27a51","author":{"email":"190bff87fd93d0f25ffce7bdb385f92f75b76b83@126.com","name":"starzou"},"message":"重构","distinct":true,"url":"https://api.github.com/repos/starzou/doFun/commits/b8bbc9934879a92f87aaaf76fbb72458c1a27a51"},{"sha":"7d6dc775b777c8a4fe7bfc0f1237e3b99518bd47","author":{"email":"190bff87fd93d0f25ffce7bdb385f92f75b76b83@126.com","name":"starzou"},"message":"test","distinct":true,"url":"https://api.github.com/repos/starzou/doFun/commits/7d6dc775b777c8a4fe7bfc0f1237e3b99518bd47"},{"sha":"3965b23cf4a16e60d5a20aa3394d87093f0ebd6e","author":{"email":"190bff87fd93d0f25ffce7bdb385f92f75b76b83@126.com","name":"starzou"},"message":"test","distinct":true,"url":"https://api.github.com/repos/starzou/doFun/commits/3965b23cf4a16e60d5a20aa3394d87093f0ebd6e"},{"sha":"af26f98f07f57101cdcd62256c285a68dae04b94","author":{"email":"190bff87fd93d0f25ffce7bdb385f92f75b76b83@126.com","name":"starzou"},"message":"test","distinct":true,"url":"https://api.github.com/repos/starzou/doFun/commits/af26f98f07f57101cdcd62256c285a68dae04b94"},{"sha":"38cd5277f9b2bf2023058447da13a07443cca575","author":{"email":"190bff87fd93d0f25ffce7bdb385f92f75b76b83@126.com","name":"starzou"},"message":"test","distinct":true,"url":"https://api.github.com/repos/starzou/doFun/commits/38cd5277f9b2bf2023058447da13a07443cca575"},{"sha":"ce15da30e05cb06f533a4d8e9a14ab53b8ea5696","author":{"email":"190bff87fd93d0f25ffce7bdb385f92f75b76b83@126.com","name":"starzou"},"message":"test","distinct":true,"url":"https://api.github.com/repos/starzou/doFun/commits/ce15da30e05cb06f533a4d8e9a14ab53b8ea5696"}]},"public":true,"created_at":"2015-01-01T15:17:03Z"} +,{"id":"2489658966","type":"IssuesEvent","actor":{"id":769992,"login":"f0rmat1k","gravatar_id":"","url":"https://api.github.com/users/f0rmat1k","avatar_url":"https://avatars.githubusercontent.com/u/769992?"},"repo":{"id":28394324,"name":"y-components/y-button","url":"https://api.github.com/repos/y-components/y-button"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/y-components/y-button/issues/4","labels_url":"https://api.github.com/repos/y-components/y-button/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/y-components/y-button/issues/4/comments","events_url":"https://api.github.com/repos/y-components/y-button/issues/4/events","html_url":"https://github.com/y-components/y-button/issues/4","id":53067769,"number":4,"title":"Add round-side support","user":{"login":"f0rmat1k","id":769992,"avatar_url":"https://avatars.githubusercontent.com/u/769992?v=3","gravatar_id":"","url":"https://api.github.com/users/f0rmat1k","html_url":"https://github.com/f0rmat1k","followers_url":"https://api.github.com/users/f0rmat1k/followers","following_url":"https://api.github.com/users/f0rmat1k/following{/other_user}","gists_url":"https://api.github.com/users/f0rmat1k/gists{/gist_id}","starred_url":"https://api.github.com/users/f0rmat1k/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/f0rmat1k/subscriptions","organizations_url":"https://api.github.com/users/f0rmat1k/orgs","repos_url":"https://api.github.com/users/f0rmat1k/repos","events_url":"https://api.github.com/users/f0rmat1k/events{/privacy}","received_events_url":"https://api.github.com/users/f0rmat1k/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":{"login":"f0rmat1k","id":769992,"avatar_url":"https://avatars.githubusercontent.com/u/769992?v=3","gravatar_id":"","url":"https://api.github.com/users/f0rmat1k","html_url":"https://github.com/f0rmat1k","followers_url":"https://api.github.com/users/f0rmat1k/followers","following_url":"https://api.github.com/users/f0rmat1k/following{/other_user}","gists_url":"https://api.github.com/users/f0rmat1k/gists{/gist_id}","starred_url":"https://api.github.com/users/f0rmat1k/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/f0rmat1k/subscriptions","organizations_url":"https://api.github.com/users/f0rmat1k/orgs","repos_url":"https://api.github.com/users/f0rmat1k/repos","events_url":"https://api.github.com/users/f0rmat1k/events{/privacy}","received_events_url":"https://api.github.com/users/f0rmat1k/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/y-components/y-button/milestones/1","labels_url":"https://api.github.com/repos/y-components/y-button/milestones/1/labels","id":917078,"number":1,"title":"Roadmap","description":"","creator":{"login":"f0rmat1k","id":769992,"avatar_url":"https://avatars.githubusercontent.com/u/769992?v=3","gravatar_id":"","url":"https://api.github.com/users/f0rmat1k","html_url":"https://github.com/f0rmat1k","followers_url":"https://api.github.com/users/f0rmat1k/followers","following_url":"https://api.github.com/users/f0rmat1k/following{/other_user}","gists_url":"https://api.github.com/users/f0rmat1k/gists{/gist_id}","starred_url":"https://api.github.com/users/f0rmat1k/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/f0rmat1k/subscriptions","organizations_url":"https://api.github.com/users/f0rmat1k/orgs","repos_url":"https://api.github.com/users/f0rmat1k/repos","events_url":"https://api.github.com/users/f0rmat1k/events{/privacy}","received_events_url":"https://api.github.com/users/f0rmat1k/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":4,"state":"open","created_at":"2014-12-29T20:52:32Z","updated_at":"2015-01-01T15:17:03Z","due_on":null,"closed_at":null},"comments":0,"created_at":"2014-12-29T20:07:34Z","updated_at":"2015-01-01T15:17:03Z","closed_at":"2015-01-01T15:17:03Z","body":"For possibility to rounding needed sides only."}},"public":true,"created_at":"2015-01-01T15:17:03Z","org":{"id":10279326,"login":"y-components","gravatar_id":"","url":"https://api.github.com/orgs/y-components","avatar_url":"https://avatars.githubusercontent.com/u/10279326?"}} +,{"id":"2489658967","type":"PullRequestEvent","actor":{"id":769992,"login":"f0rmat1k","gravatar_id":"","url":"https://api.github.com/users/f0rmat1k","avatar_url":"https://avatars.githubusercontent.com/u/769992?"},"repo":{"id":28394324,"name":"y-components/y-button","url":"https://api.github.com/repos/y-components/y-button"},"payload":{"action":"closed","number":11,"pull_request":{"url":"https://api.github.com/repos/y-components/y-button/pulls/11","id":26743895,"html_url":"https://github.com/y-components/y-button/pull/11","diff_url":"https://github.com/y-components/y-button/pull/11.diff","patch_url":"https://github.com/y-components/y-button/pull/11.patch","issue_url":"https://api.github.com/repos/y-components/y-button/issues/11","number":11,"state":"closed","locked":false,"title":"Add round-side support #4","user":{"login":"f0rmat1k","id":769992,"avatar_url":"https://avatars.githubusercontent.com/u/769992?v=3","gravatar_id":"","url":"https://api.github.com/users/f0rmat1k","html_url":"https://github.com/f0rmat1k","followers_url":"https://api.github.com/users/f0rmat1k/followers","following_url":"https://api.github.com/users/f0rmat1k/following{/other_user}","gists_url":"https://api.github.com/users/f0rmat1k/gists{/gist_id}","starred_url":"https://api.github.com/users/f0rmat1k/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/f0rmat1k/subscriptions","organizations_url":"https://api.github.com/users/f0rmat1k/orgs","repos_url":"https://api.github.com/users/f0rmat1k/repos","events_url":"https://api.github.com/users/f0rmat1k/events{/privacy}","received_events_url":"https://api.github.com/users/f0rmat1k/received_events","type":"User","site_admin":false},"body":"Closed #4 ","created_at":"2015-01-01T15:16:40Z","updated_at":"2015-01-01T15:17:03Z","closed_at":"2015-01-01T15:17:03Z","merged_at":"2015-01-01T15:17:03Z","merge_commit_sha":"d82636e99b1ac6b3161ccd48f30c913f79590dad","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/y-components/y-button/pulls/11/commits","review_comments_url":"https://api.github.com/repos/y-components/y-button/pulls/11/comments","review_comment_url":"https://api.github.com/repos/y-components/y-button/pulls/comments/{number}","comments_url":"https://api.github.com/repos/y-components/y-button/issues/11/comments","statuses_url":"https://api.github.com/repos/y-components/y-button/statuses/f6a9db80632a1549cf27cdd9685f3c13294afef1","head":{"label":"f0rmat1k:master","ref":"master","sha":"f6a9db80632a1549cf27cdd9685f3c13294afef1","user":{"login":"f0rmat1k","id":769992,"avatar_url":"https://avatars.githubusercontent.com/u/769992?v=3","gravatar_id":"","url":"https://api.github.com/users/f0rmat1k","html_url":"https://github.com/f0rmat1k","followers_url":"https://api.github.com/users/f0rmat1k/followers","following_url":"https://api.github.com/users/f0rmat1k/following{/other_user}","gists_url":"https://api.github.com/users/f0rmat1k/gists{/gist_id}","starred_url":"https://api.github.com/users/f0rmat1k/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/f0rmat1k/subscriptions","organizations_url":"https://api.github.com/users/f0rmat1k/orgs","repos_url":"https://api.github.com/users/f0rmat1k/repos","events_url":"https://api.github.com/users/f0rmat1k/events{/privacy}","received_events_url":"https://api.github.com/users/f0rmat1k/received_events","type":"User","site_admin":false},"repo":{"id":28592187,"name":"y-button","full_name":"f0rmat1k/y-button","owner":{"login":"f0rmat1k","id":769992,"avatar_url":"https://avatars.githubusercontent.com/u/769992?v=3","gravatar_id":"","url":"https://api.github.com/users/f0rmat1k","html_url":"https://github.com/f0rmat1k","followers_url":"https://api.github.com/users/f0rmat1k/followers","following_url":"https://api.github.com/users/f0rmat1k/following{/other_user}","gists_url":"https://api.github.com/users/f0rmat1k/gists{/gist_id}","starred_url":"https://api.github.com/users/f0rmat1k/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/f0rmat1k/subscriptions","organizations_url":"https://api.github.com/users/f0rmat1k/orgs","repos_url":"https://api.github.com/users/f0rmat1k/repos","events_url":"https://api.github.com/users/f0rmat1k/events{/privacy}","received_events_url":"https://api.github.com/users/f0rmat1k/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/f0rmat1k/y-button","description":"","fork":true,"url":"https://api.github.com/repos/f0rmat1k/y-button","forks_url":"https://api.github.com/repos/f0rmat1k/y-button/forks","keys_url":"https://api.github.com/repos/f0rmat1k/y-button/keys{/key_id}","collaborators_url":"https://api.github.com/repos/f0rmat1k/y-button/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/f0rmat1k/y-button/teams","hooks_url":"https://api.github.com/repos/f0rmat1k/y-button/hooks","issue_events_url":"https://api.github.com/repos/f0rmat1k/y-button/issues/events{/number}","events_url":"https://api.github.com/repos/f0rmat1k/y-button/events","assignees_url":"https://api.github.com/repos/f0rmat1k/y-button/assignees{/user}","branches_url":"https://api.github.com/repos/f0rmat1k/y-button/branches{/branch}","tags_url":"https://api.github.com/repos/f0rmat1k/y-button/tags","blobs_url":"https://api.github.com/repos/f0rmat1k/y-button/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/f0rmat1k/y-button/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/f0rmat1k/y-button/git/refs{/sha}","trees_url":"https://api.github.com/repos/f0rmat1k/y-button/git/trees{/sha}","statuses_url":"https://api.github.com/repos/f0rmat1k/y-button/statuses/{sha}","languages_url":"https://api.github.com/repos/f0rmat1k/y-button/languages","stargazers_url":"https://api.github.com/repos/f0rmat1k/y-button/stargazers","contributors_url":"https://api.github.com/repos/f0rmat1k/y-button/contributors","subscribers_url":"https://api.github.com/repos/f0rmat1k/y-button/subscribers","subscription_url":"https://api.github.com/repos/f0rmat1k/y-button/subscription","commits_url":"https://api.github.com/repos/f0rmat1k/y-button/commits{/sha}","git_commits_url":"https://api.github.com/repos/f0rmat1k/y-button/git/commits{/sha}","comments_url":"https://api.github.com/repos/f0rmat1k/y-button/comments{/number}","issue_comment_url":"https://api.github.com/repos/f0rmat1k/y-button/issues/comments/{number}","contents_url":"https://api.github.com/repos/f0rmat1k/y-button/contents/{+path}","compare_url":"https://api.github.com/repos/f0rmat1k/y-button/compare/{base}...{head}","merges_url":"https://api.github.com/repos/f0rmat1k/y-button/merges","archive_url":"https://api.github.com/repos/f0rmat1k/y-button/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/f0rmat1k/y-button/downloads","issues_url":"https://api.github.com/repos/f0rmat1k/y-button/issues{/number}","pulls_url":"https://api.github.com/repos/f0rmat1k/y-button/pulls{/number}","milestones_url":"https://api.github.com/repos/f0rmat1k/y-button/milestones{/number}","notifications_url":"https://api.github.com/repos/f0rmat1k/y-button/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/f0rmat1k/y-button/labels{/name}","releases_url":"https://api.github.com/repos/f0rmat1k/y-button/releases{/id}","created_at":"2014-12-29T12:52:51Z","updated_at":"2015-01-01T15:16:01Z","pushed_at":"2015-01-01T15:15:59Z","git_url":"git://github.com/f0rmat1k/y-button.git","ssh_url":"git@github.com:f0rmat1k/y-button.git","clone_url":"https://github.com/f0rmat1k/y-button.git","svn_url":"https://github.com/f0rmat1k/y-button","homepage":null,"size":135,"stargazers_count":0,"watchers_count":0,"language":"CSS","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":"y-components:master","ref":"master","sha":"f2dfdeca4549e34fe4ecdcc8bc0b758be6930952","user":{"login":"y-components","id":10279326,"avatar_url":"https://avatars.githubusercontent.com/u/10279326?v=3","gravatar_id":"","url":"https://api.github.com/users/y-components","html_url":"https://github.com/y-components","followers_url":"https://api.github.com/users/y-components/followers","following_url":"https://api.github.com/users/y-components/following{/other_user}","gists_url":"https://api.github.com/users/y-components/gists{/gist_id}","starred_url":"https://api.github.com/users/y-components/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/y-components/subscriptions","organizations_url":"https://api.github.com/users/y-components/orgs","repos_url":"https://api.github.com/users/y-components/repos","events_url":"https://api.github.com/users/y-components/events{/privacy}","received_events_url":"https://api.github.com/users/y-components/received_events","type":"Organization","site_admin":false},"repo":{"id":28394324,"name":"y-button","full_name":"y-components/y-button","owner":{"login":"y-components","id":10279326,"avatar_url":"https://avatars.githubusercontent.com/u/10279326?v=3","gravatar_id":"","url":"https://api.github.com/users/y-components","html_url":"https://github.com/y-components","followers_url":"https://api.github.com/users/y-components/followers","following_url":"https://api.github.com/users/y-components/following{/other_user}","gists_url":"https://api.github.com/users/y-components/gists{/gist_id}","starred_url":"https://api.github.com/users/y-components/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/y-components/subscriptions","organizations_url":"https://api.github.com/users/y-components/orgs","repos_url":"https://api.github.com/users/y-components/repos","events_url":"https://api.github.com/users/y-components/events{/privacy}","received_events_url":"https://api.github.com/users/y-components/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/y-components/y-button","description":"","fork":false,"url":"https://api.github.com/repos/y-components/y-button","forks_url":"https://api.github.com/repos/y-components/y-button/forks","keys_url":"https://api.github.com/repos/y-components/y-button/keys{/key_id}","collaborators_url":"https://api.github.com/repos/y-components/y-button/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/y-components/y-button/teams","hooks_url":"https://api.github.com/repos/y-components/y-button/hooks","issue_events_url":"https://api.github.com/repos/y-components/y-button/issues/events{/number}","events_url":"https://api.github.com/repos/y-components/y-button/events","assignees_url":"https://api.github.com/repos/y-components/y-button/assignees{/user}","branches_url":"https://api.github.com/repos/y-components/y-button/branches{/branch}","tags_url":"https://api.github.com/repos/y-components/y-button/tags","blobs_url":"https://api.github.com/repos/y-components/y-button/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/y-components/y-button/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/y-components/y-button/git/refs{/sha}","trees_url":"https://api.github.com/repos/y-components/y-button/git/trees{/sha}","statuses_url":"https://api.github.com/repos/y-components/y-button/statuses/{sha}","languages_url":"https://api.github.com/repos/y-components/y-button/languages","stargazers_url":"https://api.github.com/repos/y-components/y-button/stargazers","contributors_url":"https://api.github.com/repos/y-components/y-button/contributors","subscribers_url":"https://api.github.com/repos/y-components/y-button/subscribers","subscription_url":"https://api.github.com/repos/y-components/y-button/subscription","commits_url":"https://api.github.com/repos/y-components/y-button/commits{/sha}","git_commits_url":"https://api.github.com/repos/y-components/y-button/git/commits{/sha}","comments_url":"https://api.github.com/repos/y-components/y-button/comments{/number}","issue_comment_url":"https://api.github.com/repos/y-components/y-button/issues/comments/{number}","contents_url":"https://api.github.com/repos/y-components/y-button/contents/{+path}","compare_url":"https://api.github.com/repos/y-components/y-button/compare/{base}...{head}","merges_url":"https://api.github.com/repos/y-components/y-button/merges","archive_url":"https://api.github.com/repos/y-components/y-button/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/y-components/y-button/downloads","issues_url":"https://api.github.com/repos/y-components/y-button/issues{/number}","pulls_url":"https://api.github.com/repos/y-components/y-button/pulls{/number}","milestones_url":"https://api.github.com/repos/y-components/y-button/milestones{/number}","notifications_url":"https://api.github.com/repos/y-components/y-button/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/y-components/y-button/labels{/name}","releases_url":"https://api.github.com/repos/y-components/y-button/releases{/id}","created_at":"2014-12-23T11:23:28Z","updated_at":"2015-01-01T14:04:47Z","pushed_at":"2015-01-01T15:17:03Z","git_url":"git://github.com/y-components/y-button.git","ssh_url":"git@github.com:y-components/y-button.git","clone_url":"https://github.com/y-components/y-button.git","svn_url":"https://github.com/y-components/y-button","homepage":null,"size":132,"stargazers_count":0,"watchers_count":0,"language":"CSS","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":1,"mirror_url":null,"open_issues_count":2,"forks":1,"open_issues":2,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/y-components/y-button/pulls/11"},"html":{"href":"https://github.com/y-components/y-button/pull/11"},"issue":{"href":"https://api.github.com/repos/y-components/y-button/issues/11"},"comments":{"href":"https://api.github.com/repos/y-components/y-button/issues/11/comments"},"review_comments":{"href":"https://api.github.com/repos/y-components/y-button/pulls/11/comments"},"review_comment":{"href":"https://api.github.com/repos/y-components/y-button/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/y-components/y-button/pulls/11/commits"},"statuses":{"href":"https://api.github.com/repos/y-components/y-button/statuses/f6a9db80632a1549cf27cdd9685f3c13294afef1"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"f0rmat1k","id":769992,"avatar_url":"https://avatars.githubusercontent.com/u/769992?v=3","gravatar_id":"","url":"https://api.github.com/users/f0rmat1k","html_url":"https://github.com/f0rmat1k","followers_url":"https://api.github.com/users/f0rmat1k/followers","following_url":"https://api.github.com/users/f0rmat1k/following{/other_user}","gists_url":"https://api.github.com/users/f0rmat1k/gists{/gist_id}","starred_url":"https://api.github.com/users/f0rmat1k/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/f0rmat1k/subscriptions","organizations_url":"https://api.github.com/users/f0rmat1k/orgs","repos_url":"https://api.github.com/users/f0rmat1k/repos","events_url":"https://api.github.com/users/f0rmat1k/events{/privacy}","received_events_url":"https://api.github.com/users/f0rmat1k/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":30,"deletions":5,"changed_files":3}},"public":true,"created_at":"2015-01-01T15:17:03Z","org":{"id":10279326,"login":"y-components","gravatar_id":"","url":"https://api.github.com/orgs/y-components","avatar_url":"https://avatars.githubusercontent.com/u/10279326?"}} +,{"id":"2489658969","type":"PushEvent","actor":{"id":769992,"login":"f0rmat1k","gravatar_id":"","url":"https://api.github.com/users/f0rmat1k","avatar_url":"https://avatars.githubusercontent.com/u/769992?"},"repo":{"id":28394324,"name":"y-components/y-button","url":"https://api.github.com/repos/y-components/y-button"},"payload":{"push_id":536867536,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"9235ff91292e741efa9ae9f05e352deef3a4aac8","before":"f2dfdeca4549e34fe4ecdcc8bc0b758be6930952","commits":[{"sha":"f6a9db80632a1549cf27cdd9685f3c13294afef1","author":{"email":"43208274e15fe2a7791b0f6183ea4406fece79da@yandex-team.ru","name":"Anton Grischenko"},"message":"Add round-side support #4","distinct":true,"url":"https://api.github.com/repos/y-components/y-button/commits/f6a9db80632a1549cf27cdd9685f3c13294afef1"},{"sha":"9235ff91292e741efa9ae9f05e352deef3a4aac8","author":{"email":"dfb88da1ad9ab41fb8f58e7685635906c8400da7@yandex.ru","name":"Anton"},"message":"Merge pull request #11 from f0rmat1k/master\n\nAdd round-side support #4","distinct":true,"url":"https://api.github.com/repos/y-components/y-button/commits/9235ff91292e741efa9ae9f05e352deef3a4aac8"}]},"public":true,"created_at":"2015-01-01T15:17:03Z","org":{"id":10279326,"login":"y-components","gravatar_id":"","url":"https://api.github.com/orgs/y-components","avatar_url":"https://avatars.githubusercontent.com/u/10279326?"}} +,{"id":"2489658972","type":"PushEvent","actor":{"id":299901,"login":"dankempster","gravatar_id":"","url":"https://api.github.com/users/dankempster","avatar_url":"https://avatars.githubusercontent.com/u/299901?"},"repo":{"id":28648383,"name":"dankempster/axstrad-filesystem","url":"https://api.github.com/repos/dankempster/axstrad-filesystem"},"payload":{"push_id":536867540,"size":4,"distinct_size":1,"ref":"refs/heads/develop","head":"2d5ee4277a56e3902d02d00703179109889c6950","before":"9e4889c0903406b13365585ecf9b473f8eda4695","commits":[{"sha":"6016356db5dea247efc48ffecdabb4385ec51561","author":{"email":"34c6fceca75e456f25e7e99531e2425c6c1de443@dankempster.co.uk","name":"Dan Kempster"},"message":"Merge branch 'hotfix/0.1.2'","distinct":false,"url":"https://api.github.com/repos/dankempster/axstrad-filesystem/commits/6016356db5dea247efc48ffecdabb4385ec51561"},{"sha":"234408e9eb4c265c9c40e3f5b604a5c717680149","author":{"email":"185ecb6e940f564d0bbaf249be6b99d11dba4c5f@scrutinizer-ci.com","name":"Scrutinizer Auto-Fixer"},"message":"Scrutinizer Auto-Fixes\n\nThis commit consists of patches automatically generated for this project on https://scrutinizer-ci.com","distinct":false,"url":"https://api.github.com/repos/dankempster/axstrad-filesystem/commits/234408e9eb4c265c9c40e3f5b604a5c717680149"},{"sha":"c3498254c0d1aded7b8c0e3997d2d8f212dab649","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@dankempster.co.uk","name":"Dan Kempster"},"message":"Update InvalidPathException.php","distinct":false,"url":"https://api.github.com/repos/dankempster/axstrad-filesystem/commits/c3498254c0d1aded7b8c0e3997d2d8f212dab649"},{"sha":"2d5ee4277a56e3902d02d00703179109889c6950","author":{"email":"34c6fceca75e456f25e7e99531e2425c6c1de443@dankempster.co.uk","name":"Dan Kempster"},"message":"Merge branch 'scrutinizer-patch-1' into develop","distinct":true,"url":"https://api.github.com/repos/dankempster/axstrad-filesystem/commits/2d5ee4277a56e3902d02d00703179109889c6950"}]},"public":true,"created_at":"2015-01-01T15:17:03Z"} +,{"id":"2489658973","type":"CreateEvent","actor":{"id":311527,"login":"rossf7","gravatar_id":"","url":"https://api.github.com/users/rossf7","avatar_url":"https://avatars.githubusercontent.com/u/311527?"},"repo":{"id":16439076,"name":"rossf7/elasticrawl","url":"https://api.github.com/repos/rossf7/elasticrawl"},"payload":{"ref":"file-counts","ref_type":"branch","master_branch":"master","description":"Launch AWS Elastic MapReduce jobs that process Common Crawl data.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:04Z"} +,{"id":"2489658975","type":"PushEvent","actor":{"id":4697281,"login":"openclonk-mirror","gravatar_id":"","url":"https://api.github.com/users/openclonk-mirror","avatar_url":"https://avatars.githubusercontent.com/u/4697281?"},"repo":{"id":10687368,"name":"openclonk/openclonk","url":"https://api.github.com/repos/openclonk/openclonk"},"payload":{"push_id":536867543,"size":4,"distinct_size":4,"ref":"refs/heads/lights","head":"2a4b2680872e94ceaffa5b3bfecaa7385f1c03a9","before":"2b997b994af5e102c95a1d49742358a0162803ee","commits":[{"sha":"9a87240d472872bde36e5353ed7820a7ed202b5c","author":{"email":"8c3f53b05771bd8015e543b0f67469b7cf6fd74a@goldwipf.de","name":"Sven Eberhardt"},"message":"Fix off-by-one error in landscape X bias calculation.","distinct":true,"url":"https://api.github.com/repos/openclonk/openclonk/commits/9a87240d472872bde36e5353ed7820a7ed202b5c"},{"sha":"12f127b4bd83273ccb25b54e94f329bda0f922f2","author":{"email":"e4cae455f75d5f920ad77611cd77cdef59585fc8@openclonk.org","name":"Tobias Zwick"},"message":"weaken the effect the material normal map has on the total landscape normal calculation","distinct":true,"url":"https://api.github.com/repos/openclonk/openclonk/commits/12f127b4bd83273ccb25b54e94f329bda0f922f2"},{"sha":"196c62fbe88564f539d698787e73671e1e92724c","author":{"email":"e4cae455f75d5f920ad77611cd77cdef59585fc8@openclonk.org","name":"Tobias Zwick"},"message":"slightly elevate the lights in z direction from the landscape (making the light throw less shadows on visible materials and objects)","distinct":true,"url":"https://api.github.com/repos/openclonk/openclonk/commits/196c62fbe88564f539d698787e73671e1e92724c"},{"sha":"2a4b2680872e94ceaffa5b3bfecaa7385f1c03a9","author":{"email":"e4cae455f75d5f920ad77611cd77cdef59585fc8@openclonk.org","name":"Tobias Zwick"},"message":"fix the same bug as Sven2 10 minutes ago, but also clean up the update function, rename variables, add comments, etc.","distinct":true,"url":"https://api.github.com/repos/openclonk/openclonk/commits/2a4b2680872e94ceaffa5b3bfecaa7385f1c03a9"}]},"public":true,"created_at":"2015-01-01T15:17:04Z","org":{"id":4697210,"login":"openclonk","gravatar_id":"","url":"https://api.github.com/orgs/openclonk","avatar_url":"https://avatars.githubusercontent.com/u/4697210?"}} +,{"id":"2489658978","type":"WatchEvent","actor":{"id":426400,"login":"altmer","gravatar_id":"","url":"https://api.github.com/users/altmer","avatar_url":"https://avatars.githubusercontent.com/u/426400?"},"repo":{"id":1844251,"name":"tastejs/todomvc","url":"https://api.github.com/repos/tastejs/todomvc"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:04Z","org":{"id":1733746,"login":"tastejs","gravatar_id":"","url":"https://api.github.com/orgs/tastejs","avatar_url":"https://avatars.githubusercontent.com/u/1733746?"}} +,{"id":"2489658980","type":"PushEvent","actor":{"id":9967754,"login":"MehulMMistry","gravatar_id":"","url":"https://api.github.com/users/MehulMMistry","avatar_url":"https://avatars.githubusercontent.com/u/9967754?"},"repo":{"id":26930874,"name":"GuidoAndFriends/CyberPesten","url":"https://api.github.com/repos/GuidoAndFriends/CyberPesten"},"payload":{"push_id":536867545,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a148a74c8defac7e818cb60088c1678fbe3e9780","before":"57239da905ebabdf5ee60fb3a02e8db5da923a8a","commits":[{"sha":"a148a74c8defac7e818cb60088c1678fbe3e9780","author":{"email":"dda4f8c58afe14c5ceed6ac643114a871928f88e@hotmail.com","name":"MehulMMistry"},"message":"laatste kaart knop\n\nknop staat nu beter en je krijgt message als je erop geklikt hebt","distinct":true,"url":"https://api.github.com/repos/GuidoAndFriends/CyberPesten/commits/a148a74c8defac7e818cb60088c1678fbe3e9780"}]},"public":true,"created_at":"2015-01-01T15:17:04Z","org":{"id":9802004,"login":"GuidoAndFriends","gravatar_id":"","url":"https://api.github.com/orgs/GuidoAndFriends","avatar_url":"https://avatars.githubusercontent.com/u/9802004?"}} +,{"id":"2489658982","type":"PushEvent","actor":{"id":116099,"login":"chadyj","gravatar_id":"","url":"https://api.github.com/users/chadyj","avatar_url":"https://avatars.githubusercontent.com/u/116099?"},"repo":{"id":28675123,"name":"chadyj/chadyj.com","url":"https://api.github.com/repos/chadyj/chadyj.com"},"payload":{"push_id":536867546,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"57201049b86ccea1f313530ad679e73c9e2c5b86","before":"95ae3c032575e0c4f3a18dd3c0dddc1a8397a0d4","commits":[{"sha":"57201049b86ccea1f313530ad679e73c9e2c5b86","author":{"email":"aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d@chadyj.com","name":"chadyj"},"message":"Automated commit at 2015-01-01 15:16:34 UTC by middleman-deploy 1.0.0","distinct":true,"url":"https://api.github.com/repos/chadyj/chadyj.com/commits/57201049b86ccea1f313530ad679e73c9e2c5b86"}]},"public":true,"created_at":"2015-01-01T15:17:04Z"} +,{"id":"2489658984","type":"CreateEvent","actor":{"id":612769,"login":"csabagaspar","gravatar_id":"","url":"https://api.github.com/users/csabagaspar","avatar_url":"https://avatars.githubusercontent.com/u/612769?"},"repo":{"id":28688916,"name":"csabagaspar/example-tools","url":"https://api.github.com/repos/csabagaspar/example-tools"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:05Z"} +,{"id":"2489658985","type":"PushEvent","actor":{"id":1837528,"login":"cenalulu","gravatar_id":"","url":"https://api.github.com/users/cenalulu","avatar_url":"https://avatars.githubusercontent.com/u/1837528?"},"repo":{"id":28670479,"name":"cenalulu/python_euler_solver","url":"https://api.github.com/repos/cenalulu/python_euler_solver"},"payload":{"push_id":536867548,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d24466943c81d2ff2ecc061f90646360448eb10f","before":"5909f3977982d5b333c765b5f28368f8b15950a6","commits":[{"sha":"d24466943c81d2ff2ecc061f90646360448eb10f","author":{"email":"f542c404405d0c21fd5edfa42230ad311938b92b@gmail.com","name":"cenalulu"},"message":"solve question 006","distinct":true,"url":"https://api.github.com/repos/cenalulu/python_euler_solver/commits/d24466943c81d2ff2ecc061f90646360448eb10f"}]},"public":true,"created_at":"2015-01-01T15:17:05Z"} +,{"id":"2489658986","type":"WatchEvent","actor":{"id":4400512,"login":"EdwardQuixote","gravatar_id":"","url":"https://api.github.com/users/EdwardQuixote","avatar_url":"https://avatars.githubusercontent.com/u/4400512?"},"repo":{"id":24627366,"name":"BudCode/Groceries","url":"https://api.github.com/repos/BudCode/Groceries"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:05Z"} +,{"id":"2489658988","type":"GollumEvent","actor":{"id":469989,"login":"bennyn","gravatar_id":"","url":"https://api.github.com/users/bennyn","avatar_url":"https://avatars.githubusercontent.com/u/469989?"},"repo":{"id":26399632,"name":"welovecoding/welovecoding.github.io","url":"https://api.github.com/repos/welovecoding/welovecoding.github.io"},"payload":{"pages":[{"page_name":"Hotkeys","title":"Hotkeys","summary":null,"action":"edited","sha":"e803638b7224b50486b912954f9756f7596c93fb","html_url":"https://github.com/welovecoding/welovecoding.github.io/wiki/Hotkeys"}]},"public":true,"created_at":"2015-01-01T15:17:05Z","org":{"id":8947331,"login":"welovecoding","gravatar_id":"","url":"https://api.github.com/orgs/welovecoding","avatar_url":"https://avatars.githubusercontent.com/u/8947331?"}} +,{"id":"2489658989","type":"PushEvent","actor":{"id":1072795,"login":"sankooc","gravatar_id":"","url":"https://api.github.com/users/sankooc","avatar_url":"https://avatars.githubusercontent.com/u/1072795?"},"repo":{"id":16801899,"name":"sankooc/cateyes.js","url":"https://api.github.com/repos/sankooc/cateyes.js"},"payload":{"push_id":536867549,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6c49c8e58586914f6854a5834fe2b4c584f5679f","before":"f89b84b5ea6b3f68c75952aecf2210e56a7e95b2","commits":[{"sha":"6c49c8e58586914f6854a5834fe2b4c584f5679f","author":{"email":"71c2d313a96607ff81fa64086267c71baec062ae@163.com","name":"sankooc"},"message":"temple","distinct":true,"url":"https://api.github.com/repos/sankooc/cateyes.js/commits/6c49c8e58586914f6854a5834fe2b4c584f5679f"}]},"public":true,"created_at":"2015-01-01T15:17:05Z"} +,{"id":"2489658990","type":"PullRequestReviewCommentEvent","actor":{"id":5095435,"login":"BevapDin","gravatar_id":"","url":"https://api.github.com/users/BevapDin","avatar_url":"https://avatars.githubusercontent.com/u/5095435?"},"repo":{"id":5973855,"name":"CleverRaven/Cataclysm-DDA","url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/pulls/comments/22400152","id":22400152,"diff_hunk":"@@ -1505,7 +1505,13 @@ void iexamine::aggie_plant(player *p, map *m, int examx, int examy)\n } else {\n seed.bday = 0;\n }\n+ // The plant furniture has the NOITEM token wich prevents adding items on that square,","path":"src/iexamine.cpp","position":4,"original_position":4,"commit_id":"889ed360937b3fbc3853d5ee70f7607468e6571a","original_commit_id":"889ed360937b3fbc3853d5ee70f7607468e6571a","user":{"login":"BevapDin","id":5095435,"avatar_url":"https://avatars.githubusercontent.com/u/5095435?v=3","gravatar_id":"","url":"https://api.github.com/users/BevapDin","html_url":"https://github.com/BevapDin","followers_url":"https://api.github.com/users/BevapDin/followers","following_url":"https://api.github.com/users/BevapDin/following{/other_user}","gists_url":"https://api.github.com/users/BevapDin/gists{/gist_id}","starred_url":"https://api.github.com/users/BevapDin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BevapDin/subscriptions","organizations_url":"https://api.github.com/users/BevapDin/orgs","repos_url":"https://api.github.com/users/BevapDin/repos","events_url":"https://api.github.com/users/BevapDin/events{/privacy}","received_events_url":"https://api.github.com/users/BevapDin/received_events","type":"User","site_admin":false},"body":"In this case `add_item` seems to be much better suited than my hack.","created_at":"2015-01-01T15:17:05Z","updated_at":"2015-01-01T15:17:05Z","html_url":"https://github.com/CleverRaven/Cataclysm-DDA/pull/10686#discussion_r22400152","pull_request_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/pulls/10686","_links":{"self":{"href":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/pulls/comments/22400152"},"html":{"href":"https://github.com/CleverRaven/Cataclysm-DDA/pull/10686#discussion_r22400152"},"pull_request":{"href":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/pulls/10686"}}},"pull_request":{"url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/pulls/10686","id":26697687,"html_url":"https://github.com/CleverRaven/Cataclysm-DDA/pull/10686","diff_url":"https://github.com/CleverRaven/Cataclysm-DDA/pull/10686.diff","patch_url":"https://github.com/CleverRaven/Cataclysm-DDA/pull/10686.patch","issue_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/10686","number":10686,"state":"closed","locked":false,"title":"Fix placement of fruits and fertilizer token","user":{"login":"BevapDin","id":5095435,"avatar_url":"https://avatars.githubusercontent.com/u/5095435?v=3","gravatar_id":"","url":"https://api.github.com/users/BevapDin","html_url":"https://github.com/BevapDin","followers_url":"https://api.github.com/users/BevapDin/followers","following_url":"https://api.github.com/users/BevapDin/following{/other_user}","gists_url":"https://api.github.com/users/BevapDin/gists{/gist_id}","starred_url":"https://api.github.com/users/BevapDin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BevapDin/subscriptions","organizations_url":"https://api.github.com/users/BevapDin/orgs","repos_url":"https://api.github.com/users/BevapDin/repos","events_url":"https://api.github.com/users/BevapDin/events{/privacy}","received_events_url":"https://api.github.com/users/BevapDin/received_events","type":"User","site_admin":false},"body":"Fixes #10545 - fruits would spawn on the tree (a NOITEM square) and would move to an adjacent field, now the spawn under the player character.\r\n\r\nFixes placing the fertilizer token (same problem with the NOITEM flag).","created_at":"2014-12-30T18:45:11Z","updated_at":"2015-01-01T15:17:05Z","closed_at":"2014-12-31T04:49:23Z","merged_at":"2014-12-31T04:49:23Z","merge_commit_sha":"f76db0bb2182bbde6b6b411b679e165fbbfbf6df","assignee":{"login":"KA101","id":4195632,"avatar_url":"https://avatars.githubusercontent.com/u/4195632?v=3","gravatar_id":"","url":"https://api.github.com/users/KA101","html_url":"https://github.com/KA101","followers_url":"https://api.github.com/users/KA101/followers","following_url":"https://api.github.com/users/KA101/following{/other_user}","gists_url":"https://api.github.com/users/KA101/gists{/gist_id}","starred_url":"https://api.github.com/users/KA101/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/KA101/subscriptions","organizations_url":"https://api.github.com/users/KA101/orgs","repos_url":"https://api.github.com/users/KA101/repos","events_url":"https://api.github.com/users/KA101/events{/privacy}","received_events_url":"https://api.github.com/users/KA101/received_events","type":"User","site_admin":false},"milestone":null,"commits_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/pulls/10686/commits","review_comments_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/pulls/10686/comments","review_comment_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/pulls/comments/{number}","comments_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/10686/comments","statuses_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/statuses/889ed360937b3fbc3853d5ee70f7607468e6571a","head":{"label":"BevapDin:fruits","ref":"fruits","sha":"889ed360937b3fbc3853d5ee70f7607468e6571a","user":{"login":"BevapDin","id":5095435,"avatar_url":"https://avatars.githubusercontent.com/u/5095435?v=3","gravatar_id":"","url":"https://api.github.com/users/BevapDin","html_url":"https://github.com/BevapDin","followers_url":"https://api.github.com/users/BevapDin/followers","following_url":"https://api.github.com/users/BevapDin/following{/other_user}","gists_url":"https://api.github.com/users/BevapDin/gists{/gist_id}","starred_url":"https://api.github.com/users/BevapDin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BevapDin/subscriptions","organizations_url":"https://api.github.com/users/BevapDin/orgs","repos_url":"https://api.github.com/users/BevapDin/repos","events_url":"https://api.github.com/users/BevapDin/events{/privacy}","received_events_url":"https://api.github.com/users/BevapDin/received_events","type":"User","site_admin":false},"repo":{"id":11775770,"name":"Cataclysm-DDA","full_name":"BevapDin/Cataclysm-DDA","owner":{"login":"BevapDin","id":5095435,"avatar_url":"https://avatars.githubusercontent.com/u/5095435?v=3","gravatar_id":"","url":"https://api.github.com/users/BevapDin","html_url":"https://github.com/BevapDin","followers_url":"https://api.github.com/users/BevapDin/followers","following_url":"https://api.github.com/users/BevapDin/following{/other_user}","gists_url":"https://api.github.com/users/BevapDin/gists{/gist_id}","starred_url":"https://api.github.com/users/BevapDin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BevapDin/subscriptions","organizations_url":"https://api.github.com/users/BevapDin/orgs","repos_url":"https://api.github.com/users/BevapDin/repos","events_url":"https://api.github.com/users/BevapDin/events{/privacy}","received_events_url":"https://api.github.com/users/BevapDin/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/BevapDin/Cataclysm-DDA","description":"Cataclysm - Dark Days Ahead. A fork/variant of Cataclysm Roguelike by Whales.","fork":true,"url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA","forks_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/forks","keys_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/keys{/key_id}","collaborators_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/teams","hooks_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/hooks","issue_events_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/issues/events{/number}","events_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/events","assignees_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/assignees{/user}","branches_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/branches{/branch}","tags_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/tags","blobs_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/git/refs{/sha}","trees_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/git/trees{/sha}","statuses_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/statuses/{sha}","languages_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/languages","stargazers_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/stargazers","contributors_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/contributors","subscribers_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/subscribers","subscription_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/subscription","commits_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/commits{/sha}","git_commits_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/git/commits{/sha}","comments_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/comments{/number}","issue_comment_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/issues/comments/{number}","contents_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/contents/{+path}","compare_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/compare/{base}...{head}","merges_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/merges","archive_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/downloads","issues_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/issues{/number}","pulls_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/pulls{/number}","milestones_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/milestones{/number}","notifications_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/labels{/name}","releases_url":"https://api.github.com/repos/BevapDin/Cataclysm-DDA/releases{/id}","created_at":"2013-07-30T21:12:59Z","updated_at":"2014-09-19T12:18:20Z","pushed_at":"2014-12-31T10:07:33Z","git_url":"git://github.com/BevapDin/Cataclysm-DDA.git","ssh_url":"git@github.com:BevapDin/Cataclysm-DDA.git","clone_url":"https://github.com/BevapDin/Cataclysm-DDA.git","svn_url":"https://github.com/BevapDin/Cataclysm-DDA","homepage":"http://en.cataclysmdda.com/","size":337665,"stargazers_count":1,"watchers_count":1,"language":"C++","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":1,"default_branch":"master"}},"base":{"label":"CleverRaven:master","ref":"master","sha":"edd527f7118215dd632670740039eae6fbeaca6a","user":{"login":"CleverRaven","id":4367009,"avatar_url":"https://avatars.githubusercontent.com/u/4367009?v=3","gravatar_id":"","url":"https://api.github.com/users/CleverRaven","html_url":"https://github.com/CleverRaven","followers_url":"https://api.github.com/users/CleverRaven/followers","following_url":"https://api.github.com/users/CleverRaven/following{/other_user}","gists_url":"https://api.github.com/users/CleverRaven/gists{/gist_id}","starred_url":"https://api.github.com/users/CleverRaven/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/CleverRaven/subscriptions","organizations_url":"https://api.github.com/users/CleverRaven/orgs","repos_url":"https://api.github.com/users/CleverRaven/repos","events_url":"https://api.github.com/users/CleverRaven/events{/privacy}","received_events_url":"https://api.github.com/users/CleverRaven/received_events","type":"Organization","site_admin":false},"repo":{"id":5973855,"name":"Cataclysm-DDA","full_name":"CleverRaven/Cataclysm-DDA","owner":{"login":"CleverRaven","id":4367009,"avatar_url":"https://avatars.githubusercontent.com/u/4367009?v=3","gravatar_id":"","url":"https://api.github.com/users/CleverRaven","html_url":"https://github.com/CleverRaven","followers_url":"https://api.github.com/users/CleverRaven/followers","following_url":"https://api.github.com/users/CleverRaven/following{/other_user}","gists_url":"https://api.github.com/users/CleverRaven/gists{/gist_id}","starred_url":"https://api.github.com/users/CleverRaven/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/CleverRaven/subscriptions","organizations_url":"https://api.github.com/users/CleverRaven/orgs","repos_url":"https://api.github.com/users/CleverRaven/repos","events_url":"https://api.github.com/users/CleverRaven/events{/privacy}","received_events_url":"https://api.github.com/users/CleverRaven/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/CleverRaven/Cataclysm-DDA","description":"Cataclysm - Dark Days Ahead. A fork/variant of Cataclysm Roguelike by Whales.","fork":false,"url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA","forks_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/forks","keys_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/keys{/key_id}","collaborators_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/teams","hooks_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/hooks","issue_events_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/events{/number}","events_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/events","assignees_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/assignees{/user}","branches_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/branches{/branch}","tags_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/tags","blobs_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/git/refs{/sha}","trees_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/git/trees{/sha}","statuses_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/statuses/{sha}","languages_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/languages","stargazers_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/stargazers","contributors_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/contributors","subscribers_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/subscribers","subscription_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/subscription","commits_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/commits{/sha}","git_commits_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/git/commits{/sha}","comments_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/comments{/number}","issue_comment_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/comments/{number}","contents_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/contents/{+path}","compare_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/compare/{base}...{head}","merges_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/merges","archive_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/downloads","issues_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues{/number}","pulls_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/pulls{/number}","milestones_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/milestones{/number}","notifications_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/labels{/name}","releases_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/releases{/id}","created_at":"2012-09-26T22:57:43Z","updated_at":"2015-01-01T06:40:04Z","pushed_at":"2015-01-01T06:40:04Z","git_url":"git://github.com/CleverRaven/Cataclysm-DDA.git","ssh_url":"git@github.com:CleverRaven/Cataclysm-DDA.git","clone_url":"https://github.com/CleverRaven/Cataclysm-DDA.git","svn_url":"https://github.com/CleverRaven/Cataclysm-DDA","homepage":"http://en.cataclysmdda.com/","size":400119,"stargazers_count":556,"watchers_count":556,"language":"C++","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":620,"mirror_url":null,"open_issues_count":772,"forks":620,"open_issues":772,"watchers":556,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/pulls/10686"},"html":{"href":"https://github.com/CleverRaven/Cataclysm-DDA/pull/10686"},"issue":{"href":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/10686"},"comments":{"href":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/10686/comments"},"review_comments":{"href":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/pulls/10686/comments"},"review_comment":{"href":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/pulls/10686/commits"},"statuses":{"href":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/statuses/889ed360937b3fbc3853d5ee70f7607468e6571a"}}}},"public":true,"created_at":"2015-01-01T15:17:05Z","org":{"id":4367009,"login":"CleverRaven","gravatar_id":"","url":"https://api.github.com/orgs/CleverRaven","avatar_url":"https://avatars.githubusercontent.com/u/4367009?"}} +,{"id":"2489658992","type":"PushEvent","actor":{"id":8696891,"login":"Camiel-van-Rijen","gravatar_id":"","url":"https://api.github.com/users/Camiel-van-Rijen","avatar_url":"https://avatars.githubusercontent.com/u/8696891?"},"repo":{"id":28688236,"name":"Camiel-van-Rijen/1-1-2015","url":"https://api.github.com/repos/Camiel-van-Rijen/1-1-2015"},"payload":{"push_id":536867550,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"afb331bcc215027e28e661c729038c7c0c725732","before":"e724428258dc6cefd57f1c306fc75b492c72bc8b","commits":[{"sha":"afb331bcc215027e28e661c729038c7c0c725732","author":{"email":"553e1906e06e526d7239116e0a8d22dc7294c2d4@gmail.com","name":"Camiel van Rijen"},"message":".\n\n(most useful commit ever)","distinct":true,"url":"https://api.github.com/repos/Camiel-van-Rijen/1-1-2015/commits/afb331bcc215027e28e661c729038c7c0c725732"}]},"public":true,"created_at":"2015-01-01T15:17:05Z"} +,{"id":"2489658994","type":"CreateEvent","actor":{"id":8042613,"login":"mts2","gravatar_id":"","url":"https://api.github.com/users/mts2","avatar_url":"https://avatars.githubusercontent.com/u/8042613?"},"repo":{"id":28688734,"name":"mts2/TestingThings","url":"https://api.github.com/repos/mts2/TestingThings"},"payload":{"ref":"newBranch","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:06Z"} +,{"id":"2489658996","type":"PushEvent","actor":{"id":775131,"login":"NiGGa","gravatar_id":"","url":"https://api.github.com/users/NiGGa","avatar_url":"https://avatars.githubusercontent.com/u/775131?"},"repo":{"id":28688733,"name":"NiGGa/nigga.github.io","url":"https://api.github.com/repos/NiGGa/nigga.github.io"},"payload":{"push_id":536867553,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"43c40ec23446ee131db4e8a05e2542f782ab2761","before":"4ecb82b22fbf54c6a1b2fbb1e6b86199a3682e6a","commits":[{"sha":"43c40ec23446ee131db4e8a05e2542f782ab2761","author":{"email":"c924fd592234ac02a06cfa91e20ba598a7a1b8c2@1nd.hu","name":"Hoffmann András"},"message":"init","distinct":true,"url":"https://api.github.com/repos/NiGGa/nigga.github.io/commits/43c40ec23446ee131db4e8a05e2542f782ab2761"}]},"public":true,"created_at":"2015-01-01T15:17:06Z"} +,{"id":"2489658997","type":"PushEvent","actor":{"id":6714248,"login":"TalaatHarb","gravatar_id":"","url":"https://api.github.com/users/TalaatHarb","avatar_url":"https://avatars.githubusercontent.com/u/6714248?"},"repo":{"id":28626570,"name":"TalaatHarb/PredictOceanHealth","url":"https://api.github.com/repos/TalaatHarb/PredictOceanHealth"},"payload":{"push_id":536867554,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"998717a8b6eab59dbedd7b9ffdd86a05b03ec079","before":"b97f6abb975935c2f923e15ef640ed39aecd1fdd","commits":[{"sha":"998717a8b6eab59dbedd7b9ffdd86a05b03ec079","author":{"email":"a0c047b0066c314e8554be056d3f3c0a39d9b4c3@eng.asu.edu.eg","name":"Mohamed Talaat Harb"},"message":"Adding .gitignore file","distinct":true,"url":"https://api.github.com/repos/TalaatHarb/PredictOceanHealth/commits/998717a8b6eab59dbedd7b9ffdd86a05b03ec079"}]},"public":true,"created_at":"2015-01-01T15:17:06Z"} +,{"id":"2489659002","type":"PushEvent","actor":{"id":1978138,"login":"ujhgj","gravatar_id":"","url":"https://api.github.com/users/ujhgj","avatar_url":"https://avatars.githubusercontent.com/u/1978138?"},"repo":{"id":16023330,"name":"ujhgj/moremest_sf2","url":"https://api.github.com/repos/ujhgj/moremest_sf2"},"payload":{"push_id":536867558,"size":1,"distinct_size":1,"ref":"refs/heads/mailing","head":"6a6bae93d96d6bffc322d17051aff0a31c4514b7","before":"b12f2f6fa4bbc5380faa30b587a096f7c4de4143","commits":[{"sha":"6a6bae93d96d6bffc322d17051aff0a31c4514b7","author":{"email":"4b10eecff0b8480357c3a52a7bf0ff1effb947cd@gmail.com","name":"alex"},"message":"mailing service","distinct":true,"url":"https://api.github.com/repos/ujhgj/moremest_sf2/commits/6a6bae93d96d6bffc322d17051aff0a31c4514b7"}]},"public":true,"created_at":"2015-01-01T15:17:07Z"} +,{"id":"2489659005","type":"IssueCommentEvent","actor":{"id":2595532,"login":"clockfly","gravatar_id":"","url":"https://api.github.com/users/clockfly","avatar_url":"https://avatars.githubusercontent.com/u/2595532?"},"repo":{"id":22139167,"name":"intel-hadoop/gearpump","url":"https://api.github.com/repos/intel-hadoop/gearpump"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/intel-hadoop/gearpump/issues/254","labels_url":"https://api.github.com/repos/intel-hadoop/gearpump/issues/254/labels{/name}","comments_url":"https://api.github.com/repos/intel-hadoop/gearpump/issues/254/comments","events_url":"https://api.github.com/repos/intel-hadoop/gearpump/issues/254/events","html_url":"https://github.com/intel-hadoop/gearpump/pull/254","id":53221628,"number":254,"title":"fix #184, fix sbt package settings so that we can have a clean build.","user":{"login":"clockfly","id":2595532,"avatar_url":"https://avatars.githubusercontent.com/u/2595532?v=3","gravatar_id":"","url":"https://api.github.com/users/clockfly","html_url":"https://github.com/clockfly","followers_url":"https://api.github.com/users/clockfly/followers","following_url":"https://api.github.com/users/clockfly/following{/other_user}","gists_url":"https://api.github.com/users/clockfly/gists{/gist_id}","starred_url":"https://api.github.com/users/clockfly/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/clockfly/subscriptions","organizations_url":"https://api.github.com/users/clockfly/orgs","repos_url":"https://api.github.com/users/clockfly/repos","events_url":"https://api.github.com/users/clockfly/events{/privacy}","received_events_url":"https://api.github.com/users/clockfly/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/intel-hadoop/gearpump/labels/in+progress","name":"in progress","color":"ededed"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:14:51Z","updated_at":"2015-01-01T15:17:07Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/intel-hadoop/gearpump/pulls/254","html_url":"https://github.com/intel-hadoop/gearpump/pull/254","diff_url":"https://github.com/intel-hadoop/gearpump/pull/254.diff","patch_url":"https://github.com/intel-hadoop/gearpump/pull/254.patch"},"body":"To build the project\r\n\r\nsbt assembly pack\r\n\r\nTo build to single zip package, \r\n\r\nsbt assembly pack-archive # or abt assembly packArchive\n\n\n[\"Review](https://reviewable.io/reviews/intel-hadoop/gearpump/254)\n\n"},"comment":{"url":"https://api.github.com/repos/intel-hadoop/gearpump/issues/comments/68488857","html_url":"https://github.com/intel-hadoop/gearpump/pull/254#issuecomment-68488857","issue_url":"https://api.github.com/repos/intel-hadoop/gearpump/issues/254","id":68488857,"user":{"login":"clockfly","id":2595532,"avatar_url":"https://avatars.githubusercontent.com/u/2595532?v=3","gravatar_id":"","url":"https://api.github.com/users/clockfly","html_url":"https://github.com/clockfly","followers_url":"https://api.github.com/users/clockfly/followers","following_url":"https://api.github.com/users/clockfly/following{/other_user}","gists_url":"https://api.github.com/users/clockfly/gists{/gist_id}","starred_url":"https://api.github.com/users/clockfly/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/clockfly/subscriptions","organizations_url":"https://api.github.com/users/clockfly/orgs","repos_url":"https://api.github.com/users/clockfly/repos","events_url":"https://api.github.com/users/clockfly/events{/privacy}","received_events_url":"https://api.github.com/users/clockfly/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:17:07Z","updated_at":"2015-01-01T15:17:07Z","body":"Only need to review \r\nhttps://github.com/clockfly/gearpump/commit/465e8a474f46b9cdf66bc8e2439d7b2d537bcdc7\r\n\r\n"}},"public":true,"created_at":"2015-01-01T15:17:07Z","org":{"id":1839373,"login":"intel-hadoop","gravatar_id":"","url":"https://api.github.com/orgs/intel-hadoop","avatar_url":"https://avatars.githubusercontent.com/u/1839373?"}} +,{"id":"2489659014","type":"CreateEvent","actor":{"id":7173209,"login":"dhimelick","gravatar_id":"","url":"https://api.github.com/users/dhimelick","avatar_url":"https://avatars.githubusercontent.com/u/7173209?"},"repo":{"id":28688899,"name":"dhimelick/pong","url":"https://api.github.com/repos/dhimelick/pong"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Pong Visual C++ test","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:07Z"} +,{"id":"2489659015","type":"DeleteEvent","actor":{"id":1212179,"login":"andrewgregory","gravatar_id":"","url":"https://api.github.com/users/andrewgregory","avatar_url":"https://avatars.githubusercontent.com/u/1212179?"},"repo":{"id":6566272,"name":"andrewgregory/pacman","url":"https://api.github.com/repos/andrewgregory/pacman"},"payload":{"ref":"tapsh","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:07Z"} +,{"id":"2489659016","type":"PushEvent","actor":{"id":280571,"login":"kaizhu256","gravatar_id":"","url":"https://api.github.com/users/kaizhu256","avatar_url":"https://avatars.githubusercontent.com/u/280571?"},"repo":{"id":20893223,"name":"kaizhu256/node-utility2","url":"https://api.github.com/repos/kaizhu256/node-utility2"},"payload":{"push_id":536867562,"size":1,"distinct_size":1,"ref":"refs/heads/beta","head":"f59443cd7605fd2efe1d7d5f666213da35c2d17f","before":"4d2133894607fc1157e4720f8ba1277652e513bb","commits":[{"sha":"f59443cd7605fd2efe1d7d5f666213da35c2d17f","author":{"email":"04e1cf5b780afb3b9abbee85d09c384807d01a0a@gmail.com","name":"kai zhu"},"message":"rename shHerokuDeploy to shTestHeroku","distinct":true,"url":"https://api.github.com/repos/kaizhu256/node-utility2/commits/f59443cd7605fd2efe1d7d5f666213da35c2d17f"}]},"public":true,"created_at":"2015-01-01T15:17:07Z"} +,{"id":"2489659018","type":"PushEvent","actor":{"id":890177,"login":"water0426way","gravatar_id":"","url":"https://api.github.com/users/water0426way","avatar_url":"https://avatars.githubusercontent.com/u/890177?"},"repo":{"id":28231698,"name":"water0426way/violin","url":"https://api.github.com/repos/water0426way/violin"},"payload":{"push_id":536867564,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"957aed69c131f9b550525e9d867f7ddb9a941e73","before":"303ad394204545c5c7853a1cf2f040502ac99820","commits":[{"sha":"957aed69c131f9b550525e9d867f7ddb9a941e73","author":{"email":"39c407c7b45b3044eb8cb9a219e502598c748a84@gmail.com","name":"MarioGrabova"},"message":"Update LICENSE","distinct":true,"url":"https://api.github.com/repos/water0426way/violin/commits/957aed69c131f9b550525e9d867f7ddb9a941e73"}]},"public":true,"created_at":"2015-01-01T15:17:08Z"} +,{"id":"2489659020","type":"PushEvent","actor":{"id":156685,"login":"MarkEWaite","gravatar_id":"","url":"https://api.github.com/users/MarkEWaite","avatar_url":"https://avatars.githubusercontent.com/u/156685?"},"repo":{"id":5738469,"name":"MarkEWaite/git-plugin","url":"https://api.github.com/repos/MarkEWaite/git-plugin"},"payload":{"push_id":536867566,"size":3,"distinct_size":0,"ref":"refs/heads/master","head":"32962f85ad79cc427fdb296ca2ae228933a5a24f","before":"efe1692ccd882f9c6ce6464c9ea53598b9acba38","commits":[{"sha":"a0fed10edb44878d5c142d3b691c4031cf7b4134","author":{"email":"2eebcacd08146d5c39a7bd14f99ee0c52588e467@gmail.com","name":"Marcos Klein"},"message":"Correctly set the SCM name in build data when set or unset.","distinct":false,"url":"https://api.github.com/repos/MarkEWaite/git-plugin/commits/a0fed10edb44878d5c142d3b691c4031cf7b4134"},{"sha":"4019f21bc3e137917888c5974423277f53249a60","author":{"email":"2eebcacd08146d5c39a7bd14f99ee0c52588e467@gmail.com","name":"Marcos Klein"},"message":"Add a testcase for the setting of SCM Names between builds.","distinct":false,"url":"https://api.github.com/repos/MarkEWaite/git-plugin/commits/4019f21bc3e137917888c5974423277f53249a60"},{"sha":"32962f85ad79cc427fdb296ca2ae228933a5a24f","author":{"email":"2eebcacd08146d5c39a7bd14f99ee0c52588e467@gmail.com","name":"Marcos Klein"},"message":"Do not set the SCM name on old builds to current SCM name.","distinct":false,"url":"https://api.github.com/repos/MarkEWaite/git-plugin/commits/32962f85ad79cc427fdb296ca2ae228933a5a24f"}]},"public":true,"created_at":"2015-01-01T15:17:08Z"} +,{"id":"2489659023","type":"PushEvent","actor":{"id":8522060,"login":"yoni-mor","gravatar_id":"","url":"https://api.github.com/users/yoni-mor","avatar_url":"https://avatars.githubusercontent.com/u/8522060?"},"repo":{"id":24445581,"name":"yoni-mor/Comverse","url":"https://api.github.com/repos/yoni-mor/Comverse"},"payload":{"push_id":536867567,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"ce1b1d5519e60e343ecc05dd9a827330c10f3876","before":"2fd79973dcb56d34c7ff30d2210646f8539f3743","commits":[{"sha":"ce1b1d5519e60e343ecc05dd9a827330c10f3876","author":{"email":"9f9252450757c80b1bf0034663802dc8697d6d31@hotmail.co.il","name":"Yoni Mor"},"message":"minor style changes","distinct":true,"url":"https://api.github.com/repos/yoni-mor/Comverse/commits/ce1b1d5519e60e343ecc05dd9a827330c10f3876"}]},"public":true,"created_at":"2015-01-01T15:17:08Z"} +,{"id":"2489659024","type":"IssueCommentEvent","actor":{"id":179111,"login":"bong0","gravatar_id":"","url":"https://api.github.com/users/bong0","avatar_url":"https://avatars.githubusercontent.com/u/179111?"},"repo":{"id":16438233,"name":"mapillary/mapillary_issues","url":"https://api.github.com/repos/mapillary/mapillary_issues"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/mapillary/mapillary_issues/issues/527","labels_url":"https://api.github.com/repos/mapillary/mapillary_issues/issues/527/labels{/name}","comments_url":"https://api.github.com/repos/mapillary/mapillary_issues/issues/527/comments","events_url":"https://api.github.com/repos/mapillary/mapillary_issues/issues/527/events","html_url":"https://github.com/mapillary/mapillary_issues/issues/527","id":53221507,"number":527,"title":"App fails to upload specific set of images","user":{"login":"bong0","id":179111,"avatar_url":"https://avatars.githubusercontent.com/u/179111?v=3","gravatar_id":"","url":"https://api.github.com/users/bong0","html_url":"https://github.com/bong0","followers_url":"https://api.github.com/users/bong0/followers","following_url":"https://api.github.com/users/bong0/following{/other_user}","gists_url":"https://api.github.com/users/bong0/gists{/gist_id}","starred_url":"https://api.github.com/users/bong0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bong0/subscriptions","organizations_url":"https://api.github.com/users/bong0/orgs","repos_url":"https://api.github.com/users/bong0/repos","events_url":"https://api.github.com/users/bong0/events{/privacy}","received_events_url":"https://api.github.com/users/bong0/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T15:09:06Z","updated_at":"2015-01-01T15:17:08Z","closed_at":null,"body":"\r\n\r\n\r\n\r\nI have this issue since months now that some specific images cannot be uploaded. After a long time the app cancels the upload and reports it's got a 400 or so... There are several issued pointed out in the log.\r\n\r\nI cannot upload the images to github since they are slightly bigger than 10MB so here's a zip: http://docs.juliankessel.de/mapillary_failedqueue.zip\r\n\r\n\r\n\r\nRedacted log:\r\n\r\n --------- beginning of /dev/log/system\r\n 01-01 15:12:48.567 W/ViewRootImpl( 2757): Dropping event due to root view being removed: MotionEvent { action=ACTION_MOVE, id[0]=0, x[0]=166.21594, y[0]=690.144, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=75546233, downTime=75546224, deviceId=6, source=0x1002 }\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): Performing stop of activity that is not resumed: {app.mapillary/app.mapillary.android.activity.WelcomeActivity}\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): java.lang.RuntimeException: Performing stop of activity that is not resumed: {app.mapillary/app.mapillary.android.activity.WelcomeActivity}\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at android.app.ActivityThread.performStopActivityInner(ActivityThread.java:3237)\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at android.app.ActivityThread.handleStopActivity(ActivityThread.java:3324)\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at android.app.ActivityThread.access(ActivityThread.java:144)\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at android.app.ActivityThread.handleMessage(ActivityThread.java:1273)\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at android.os.Handler.dispatchMessage(Handler.java:102)\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at android.os.Looper.loop(Looper.java:212)\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at android.app.ActivityThread.main(ActivityThread.java:5137)\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at java.lang.reflect.Method.invokeNative(Native Method)\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at java.lang.reflect.Method.invoke(Method.java:515)\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at com.android.internal.os.ZygoteInit.run(ZygoteInit.java:902)\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:718)\r\n 01-01 15:15:51.967 E/ActivityThread( 2757): at dalvik.system.NativeStart.main(Native Method)\r\n --------- beginning of /dev/log/main\r\n 01-01 15:41:58.217 D/app.mapillary.android.service.UploadService( 2757): upload AWS 2015_01_01_14_29_47_678.jpg: HTTP/1.1 204 No Content\r\n 01-01 15:41:58.267 D/app.mapillary.android.activity.Utils( 2757): WiFi: true, Ethernet: false\r\n 01-01 15:41:58.297 D/app.mapillary.android.service.UploadService( 2757): Uploading photo /storage/sdcard1/Android/data/app.mapillary/files/mapillary/2015_01_01_14_29_53_138.jpg\r\n 01-01 15:42:07.827 D/app.mapillary.android.service.UploadService( 2757): upload AWS 2015_01_01_14_29_53_138.jpg: HTTP/1.1 204 No Content\r\n 01-01 15:42:07.847 D/app.mapillary.android.activity.Utils( 2757): WiFi: true, Ethernet: false\r\n 01-01 15:42:07.847 D/app.mapillary.android.service.UploadService( 2757): Uploading photo /storage/sdcard1/Android/data/app.mapillary/files/mapillary/2015_01_01_14_30_00_480.jpg\r\n 01-01 15:42:17.157 D/app.mapillary.android.service.UploadService( 2757): upload AWS 2015_01_01_14_30_00_480.jpg: HTTP/1.1 204 No Content\r\n 01-01 15:42:17.187 D/app.mapillary.android.service.UploadService( 2757): Done, errors Upload failure (400)\r\n 01-01 15:42:17.197 D/app.mapillary.android.service.MapillaryUploadSyncAdapter( 2757): onPerformSync for account[user@host], done.\r\n 01-01 15:53:57.957 D/app.mapillary.android.activity.WelcomeActivity( 2757): Android version: 19\r\n 01-01 15:53:57.957 D/app.mapillary.android.activity.WelcomeActivity( 2757): Mapillary version: 0.38\r\n 01-01 15:53:57.957 D/app.mapillary.android.activity.StorageUtils( 2757): getDefaultImageStoragePath- /storage/sdcard1/Android/data/app.mapillary/files/mapillary\r\n 01-01 15:53:57.957 D/app.mapillary.android.activity.StorageUtils( 2757): getDefaultImageStoragePath- /storage/sdcard1/Android/data/app.mapillary/files/mapillary\r\n 01-01 15:53:58.267 I/Adreno-EGL( 2757): : EGL 1.4 QUALCOMM build: RGURRAM_AU_LINUX_ANDROID_LNX.LA.3.5.2.2_RB1.04.04.04.087.030+PATCH[ES]_msm8974_LNX.LA.3.5.2.2_RB1__release_ENGG ()\r\n 01-01 15:53:58.267 I/Adreno-EGL( 2757): OpenGL ES Shader Compiler Version: E031.24.00.15\r\n 01-01 15:53:58.267 I/Adreno-EGL( 2757): Build Date: 08/12/14 Tue\r\n 01-01 15:53:58.267 I/Adreno-EGL( 2757): Local Branch: \r\n 01-01 15:53:58.267 I/Adreno-EGL( 2757): Remote Branch: quic/LNX.LA.3.5.2.2_rb1\r\n 01-01 15:53:58.267 I/Adreno-EGL( 2757): Local Patches: 8b00bd16f3c1d9d35a2fa902df5e679888d2b2e3 Fixes an llvm crash with mini dEQP apk\r\n 01-01 15:53:58.267 I/Adreno-EGL( 2757): 38bad22e162dead4e008444520a0144c78a347bd Fixes a potential dEQP crash.\r\n 01-01 15:53:58.267 I/Adreno-EGL( 2757): ce345e1c45c2ae2d1fb2cb125c8d2574f1af5f95 Rev\r\n 01-01 15:53:58.377 I/Timeline( 2757): Timeline: Activity_idle id: android.os.BinderProxy@44322818 time:78016065\r\n 01-01 15:54:00.057 I/Timeline( 2757): Timeline: Activity_launch_request id:app.mapillary time:78017742\r\n 01-01 15:54:00.157 D/app.mapillary.android.activity.StorageUtils( 2757): getDefaultImageStoragePath- /storage/sdcard1/Android/data/app.mapillary/files/mapillary\r\n 01-01 15:54:00.167 D/app.mapillary.android.activity.DeleteImagesActivity( 2757): files: 15\r\n 01-01 15:54:00.537 I/Timeline( 2757): Timeline: Activity_idle id: android.os.BinderProxy@44346730 time:78018224\r\n 01-01 15:54:05.357 D/app.mapillary.android.activity.StorageUtils( 2757): getDefaultImageStoragePath- /storage/sdcard1/Android/data/app.mapillary/files/mapillary\r\n 01-01 15:54:05.367 D/app.mapillary.android.activity.DeleteImagesActivity( 2757): files: 15\r\n 01-01 15:54:05.547 I/Timeline( 2757): Timeline: Activity_idle id: android.os.BinderProxy@44346730 time:78023234\r\n 01-01 15:54:06.307 D/app.mapillary.android.activity.StorageUtils( 2757): getDefaultImageStoragePath- /storage/sdcard1/Android/data/app.mapillary/files/mapillary\r\n 01-01 15:54:06.307 D/app.mapillary.android.activity.StorageUtils( 2757): getDefaultImageStoragePath- /storage/sdcard1/Android/data/app.mapillary/files/mapillary\r\n 01-01 15:54:06.337 I/Timeline( 2757): Timeline: Activity_idle id: android.os.BinderProxy@44322818 time:78024028\r\n 01-01 15:54:09.657 D/app.mapillary.android.activity.Utils( 2757): WiFi: true, Ethernet: false\r\n 01-01 15:54:09.807 D/app.mapillary.android.service.MapillaryUploadSyncAdapter( 2757): onPerformSync for account[user@host], manualSync true\r\n 01-01 15:54:09.807 D/app.mapillary.android.service.MapillaryUploadSyncAdapter( 2757): Sync over Cell: false\r\n 01-01 15:54:09.807 D/app.mapillary.android.activity.Utils( 2757): WiFi: true, Ethernet: false\r\n 01-01 15:54:09.807 D/app.mapillary.android.service.UploadService( 2757): UploadService()\r\n 01-01 15:54:09.807 D/app.mapillary.android.activity.StorageUtils( 2757): getDefaultImageStoragePath- /storage/sdcard1/Android/data/app.mapillary/files/mapillary\r\n 01-01 15:54:09.807 D/app.mapillary.android.service.UploadService( 2757): startUpload\r\n 01-01 15:54:09.807 D/app.mapillary.android.activity.StorageUtils( 2757): getDefaultImageStoragePath- /storage/sdcard1/Android/data/app.mapillary/files/mapillary\r\n 01-01 15:54:09.817 D/app.mapillary.android.activity.Utils( 2757): WiFi: true, Ethernet: false\r\n 01-01 15:54:09.817 D/app.mapillary.android.activity.Utils( 2757): WiFi: true, Ethernet: false\r\n 01-01 15:54:09.837 D/app.mapillary.android.service.UploadService( 2757): Uploading photo /storage/sdcard1/Android/data/app.mapillary/files/mapillary/2014_10_14_09_33_00_143.jpg\r\n 01-01 15:54:24.057 D/app.mapillary.android.service.UploadService( 2757): upload AWS 2014_10_14_09_33_00_143.jpg: HTTP/1.1 400 Bad Request\r\n 01-01 15:54:24.057 D/app.mapillary.android.activity.Utils( 2757): WiFi: true, Ethernet: false\r\n 01-01 15:54:24.077 D/app.mapillary.android.service.UploadService( 2757): Uploading photo /storage/sdcard1/Android/data/app.mapillary/files/mapillary/2014_10_14_09_33_06_216.jpg\r\n 01-01 15:54:24.077 W/SingleClientConnManager( 2757): Invalid use of SingleClientConnManager: connection still allocated.\r\n 01-01 15:54:24.077 W/SingleClientConnManager( 2757): Make sure to release the connection before allocating another one.\r\n 01-01 15:54:50.877 D/app.mapillary.android.activity.WelcomeActivity( 2757): Appending log to /storage/emulated/0/mapillary.log\r\n \r\n\r\n\r\n\r\n\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/mapillary/mapillary_issues/issues/comments/68488859","html_url":"https://github.com/mapillary/mapillary_issues/issues/527#issuecomment-68488859","issue_url":"https://api.github.com/repos/mapillary/mapillary_issues/issues/527","id":68488859,"user":{"login":"bong0","id":179111,"avatar_url":"https://avatars.githubusercontent.com/u/179111?v=3","gravatar_id":"","url":"https://api.github.com/users/bong0","html_url":"https://github.com/bong0","followers_url":"https://api.github.com/users/bong0/followers","following_url":"https://api.github.com/users/bong0/following{/other_user}","gists_url":"https://api.github.com/users/bong0/gists{/gist_id}","starred_url":"https://api.github.com/users/bong0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bong0/subscriptions","organizations_url":"https://api.github.com/users/bong0/orgs","repos_url":"https://api.github.com/users/bong0/repos","events_url":"https://api.github.com/users/bong0/events{/privacy}","received_events_url":"https://api.github.com/users/bong0/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:17:08Z","updated_at":"2015-01-01T15:17:08Z","body":"@floscher thanks for pointing that out. Then the app needs to be anjusted to handle this"}},"public":true,"created_at":"2015-01-01T15:17:08Z","org":{"id":5332499,"login":"mapillary","gravatar_id":"","url":"https://api.github.com/orgs/mapillary","avatar_url":"https://avatars.githubusercontent.com/u/5332499?"}} +,{"id":"2489659025","type":"PushEvent","actor":{"id":5353499,"login":"emhoracek","gravatar_id":"","url":"https://api.github.com/users/emhoracek","avatar_url":"https://avatars.githubusercontent.com/u/5353499?"},"repo":{"id":22773970,"name":"emhoracek/exploration-game","url":"https://api.github.com/repos/emhoracek/exploration-game"},"payload":{"push_id":536867568,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"21cc1c24f62aac9609598f9601682823c79e57f2","before":"fd475a7ce75ad7afd2ca65fb6012d8fcc30ed14f","commits":[{"sha":"21cc1c24f62aac9609598f9601682823c79e57f2","author":{"email":"6b50e0eee4438c8ae5099a293de1312b06992b55@daydrea.me","name":"Libby H"},"message":"Fixed formatting of README","distinct":true,"url":"https://api.github.com/repos/emhoracek/exploration-game/commits/21cc1c24f62aac9609598f9601682823c79e57f2"}]},"public":true,"created_at":"2015-01-01T15:17:08Z"} +,{"id":"2489659027","type":"PushEvent","actor":{"id":3111800,"login":"NCCastillo","gravatar_id":"","url":"https://api.github.com/users/NCCastillo","avatar_url":"https://avatars.githubusercontent.com/u/3111800?"},"repo":{"id":28539496,"name":"NCCastillo/tdd_by_example","url":"https://api.github.com/repos/NCCastillo/tdd_by_example"},"payload":{"push_id":536867569,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"191af92566aea4a21df622f803169ceebe49a107","before":"5bf2932ec14a7ced659a6d1af164617b6783b12a","commits":[{"sha":"191af92566aea4a21df622f803169ceebe49a107","author":{"email":"caab7f8885797a0ffa7a9a0888bd4c425e1ba4b9@izea.com","name":"Nestor Castillo"},"message":"Chapter 10, experiment changing Franc#times to return a Money object","distinct":true,"url":"https://api.github.com/repos/NCCastillo/tdd_by_example/commits/191af92566aea4a21df622f803169ceebe49a107"}]},"public":true,"created_at":"2015-01-01T15:17:08Z"} +,{"id":"2489659030","type":"WatchEvent","actor":{"id":674084,"login":"TimPetricola","gravatar_id":"","url":"https://api.github.com/users/TimPetricola","avatar_url":"https://avatars.githubusercontent.com/u/674084?"},"repo":{"id":312262,"name":"philc/vimium","url":"https://api.github.com/repos/philc/vimium"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:09Z"} +,{"id":"2489659032","type":"WatchEvent","actor":{"id":198276,"login":"Nijikokun","gravatar_id":"","url":"https://api.github.com/users/Nijikokun","avatar_url":"https://avatars.githubusercontent.com/u/198276?"},"repo":{"id":10697613,"name":"Netflix/ice","url":"https://api.github.com/repos/Netflix/ice"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:09Z","org":{"id":913567,"login":"Netflix","gravatar_id":"","url":"https://api.github.com/orgs/Netflix","avatar_url":"https://avatars.githubusercontent.com/u/913567?"}} +,{"id":"2489659034","type":"PushEvent","actor":{"id":1288575,"login":"lite3","gravatar_id":"","url":"https://api.github.com/users/lite3","avatar_url":"https://avatars.githubusercontent.com/u/1288575?"},"repo":{"id":22029699,"name":"lite3/DragonBonesCPP","url":"https://api.github.com/repos/lite3/DragonBonesCPP"},"payload":{"push_id":536867571,"size":1,"distinct_size":1,"ref":"refs/heads/ci","head":"4f160fc61ea5fe6cdce5a6261ce3ed3e0a2c7dd3","before":"9f9464eeb89dadae73f7ac67693a597dec946a5a","commits":[{"sha":"4f160fc61ea5fe6cdce5a6261ce3ed3e0a2c7dd3","author":{"email":"f51970cc2a969275f3cedf4e80dbd97c02b34757@qq.com","name":"lite3"},"message":"1","distinct":true,"url":"https://api.github.com/repos/lite3/DragonBonesCPP/commits/4f160fc61ea5fe6cdce5a6261ce3ed3e0a2c7dd3"}]},"public":true,"created_at":"2015-01-01T15:17:09Z"} +,{"id":"2489659035","type":"PushEvent","actor":{"id":1163662,"login":"robertpanzer","gravatar_id":"","url":"https://api.github.com/users/robertpanzer","avatar_url":"https://avatars.githubusercontent.com/u/1163662?"},"repo":{"id":27998582,"name":"robertpanzer/asciidoctorj","url":"https://api.github.com/repos/robertpanzer/asciidoctorj"},"payload":{"push_id":536867572,"size":1,"distinct_size":1,"ref":"refs/heads/AST_alignment","head":"e320a7d9a703a4a29c67fb0ccb68a0fa0dd70981","before":"1a4eb71c60e9bb460886828c92203be00cdff3af","commits":[{"sha":"e320a7d9a703a4a29c67fb0ccb68a0fa0dd70981","author":{"email":"e30faeaaa8708c7906d2c994d001adac36ba78de@me.com","name":"Robert Panzer"},"message":"Aligned AST interfaces with Ruby definitions","distinct":true,"url":"https://api.github.com/repos/robertpanzer/asciidoctorj/commits/e320a7d9a703a4a29c67fb0ccb68a0fa0dd70981"}]},"public":true,"created_at":"2015-01-01T15:17:09Z"} +,{"id":"2489659036","type":"PushEvent","actor":{"id":1698092,"login":"error414","gravatar_id":"","url":"https://api.github.com/users/error414","avatar_url":"https://avatars.githubusercontent.com/u/1698092?"},"repo":{"id":4201132,"name":"error414/settigs-mobile","url":"https://api.github.com/repos/error414/settigs-mobile"},"payload":{"push_id":536867573,"size":2,"distinct_size":2,"ref":"refs/heads/devel","head":"043833c7880e845c40c17e7efcf8bbcb621a7a0d","before":"7f17c13af367b99009dde3e630a94f7b44bc2fbd","commits":[{"sha":"a19442a5508df5c2ed5c1aecc42dcfbef9962eb1","author":{"email":"d13ea34f466b9f96ce7f28f52f298c2109935c15@error414.com","name":"petrcada"},"message":"oprava bugu governoru pri zobraseni rozdilu nastaveni","distinct":true,"url":"https://api.github.com/repos/error414/settigs-mobile/commits/a19442a5508df5c2ed5c1aecc42dcfbef9962eb1"},{"sha":"043833c7880e845c40c17e7efcf8bbcb621a7a0d","author":{"email":"d13ea34f466b9f96ce7f28f52f298c2109935c15@error414.com","name":"petrcada"},"message":"ukldani soubory, osetreni chyb","distinct":true,"url":"https://api.github.com/repos/error414/settigs-mobile/commits/043833c7880e845c40c17e7efcf8bbcb621a7a0d"}]},"public":true,"created_at":"2015-01-01T15:17:09Z"} +,{"id":"2489659037","type":"PushEvent","actor":{"id":946641,"login":"ThomasPr","gravatar_id":"","url":"https://api.github.com/users/ThomasPr","avatar_url":"https://avatars.githubusercontent.com/u/946641?"},"repo":{"id":28464320,"name":"ThomasPr/h2t","url":"https://api.github.com/repos/ThomasPr/h2t"},"payload":{"push_id":536867574,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"528c3b0c2aa5ffc8daef75d176bd21e0224dd847","before":"5c5dc9fd3a1c9f7aaeed2b12af818e1dd071185a","commits":[{"sha":"ab3fa58af6b34e31a1482255be6ca47bf2f7efb3","author":{"email":"5f50a84c1fa3bcff146405017f36aec1a10a9e38@preissler.me","name":"Thomas Preißler"},"message":"added mtrs from h2t.preissler.me","distinct":true,"url":"https://api.github.com/repos/ThomasPr/h2t/commits/ab3fa58af6b34e31a1482255be6ca47bf2f7efb3"},{"sha":"528c3b0c2aa5ffc8daef75d176bd21e0224dd847","author":{"email":"5f50a84c1fa3bcff146405017f36aec1a10a9e38@preissler.me","name":"Thomas Preißler"},"message":"Merge branch 'master' of github.com:ThomasPr/h2t","distinct":true,"url":"https://api.github.com/repos/ThomasPr/h2t/commits/528c3b0c2aa5ffc8daef75d176bd21e0224dd847"}]},"public":true,"created_at":"2015-01-01T15:17:09Z"} +,{"id":"2489659041","type":"PushEvent","actor":{"id":7477873,"login":"cnlizx","gravatar_id":"","url":"https://api.github.com/users/cnlizx","avatar_url":"https://avatars.githubusercontent.com/u/7477873?"},"repo":{"id":26838935,"name":"carvinma/zscq","url":"https://api.github.com/repos/carvinma/zscq"},"payload":{"push_id":536867576,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b885fd63cf910fb05172d16311f8edbe16d37687","before":"9437b15cb6672a0a9f7fb60a531227c7fe6515d2","commits":[{"sha":"b885fd63cf910fb05172d16311f8edbe16d37687","author":{"email":"6fbff7322e6139130fc72d7e556616c6204c22cf@163.com","name":"cnlizx"},"message":"","distinct":true,"url":"https://api.github.com/repos/carvinma/zscq/commits/b885fd63cf910fb05172d16311f8edbe16d37687"}]},"public":true,"created_at":"2015-01-01T15:17:10Z"} +,{"id":"2489659043","type":"WatchEvent","actor":{"id":151544,"login":"fungos","gravatar_id":"","url":"https://api.github.com/users/fungos","avatar_url":"https://avatars.githubusercontent.com/u/151544?"},"repo":{"id":27803040,"name":"totallylegitbiz/sshcrypt","url":"https://api.github.com/repos/totallylegitbiz/sshcrypt"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:11Z","org":{"id":5932607,"login":"totallylegitbiz","gravatar_id":"","url":"https://api.github.com/orgs/totallylegitbiz","avatar_url":"https://avatars.githubusercontent.com/u/5932607?"}} +,{"id":"2489659044","type":"PullRequestEvent","actor":{"id":873670,"login":"ErshKUS","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","avatar_url":"https://avatars.githubusercontent.com/u/873670?"},"repo":{"id":2147969,"name":"ErshKUS/test","url":"https://api.github.com/repos/ErshKUS/test"},"payload":{"action":"closed","number":5,"pull_request":{"url":"https://api.github.com/repos/ErshKUS/test/pulls/5","id":26743894,"html_url":"https://github.com/ErshKUS/test/pull/5","diff_url":"https://github.com/ErshKUS/test/pull/5.diff","patch_url":"https://github.com/ErshKUS/test/pull/5.patch","issue_url":"https://api.github.com/repos/ErshKUS/test/issues/5","number":5,"state":"closed","locked":false,"title":"второй пулл реквест","user":{"login":"e-rsh-p","id":10356326,"avatar_url":"https://avatars.githubusercontent.com/u/10356326?v=3","gravatar_id":"","url":"https://api.github.com/users/e-rsh-p","html_url":"https://github.com/e-rsh-p","followers_url":"https://api.github.com/users/e-rsh-p/followers","following_url":"https://api.github.com/users/e-rsh-p/following{/other_user}","gists_url":"https://api.github.com/users/e-rsh-p/gists{/gist_id}","starred_url":"https://api.github.com/users/e-rsh-p/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-rsh-p/subscriptions","organizations_url":"https://api.github.com/users/e-rsh-p/orgs","repos_url":"https://api.github.com/users/e-rsh-p/repos","events_url":"https://api.github.com/users/e-rsh-p/events{/privacy}","received_events_url":"https://api.github.com/users/e-rsh-p/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:16:33Z","updated_at":"2015-01-01T15:17:11Z","closed_at":"2015-01-01T15:17:11Z","merged_at":"2015-01-01T15:17:11Z","merge_commit_sha":"af7dec711ba30bfaa12318f309191d1bea52f8e2","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/ErshKUS/test/pulls/5/commits","review_comments_url":"https://api.github.com/repos/ErshKUS/test/pulls/5/comments","review_comment_url":"https://api.github.com/repos/ErshKUS/test/pulls/comments/{number}","comments_url":"https://api.github.com/repos/ErshKUS/test/issues/5/comments","statuses_url":"https://api.github.com/repos/ErshKUS/test/statuses/82eb48a21dc4f02e1502175c8daa669806a4a36e","head":{"label":"e-rsh-p:master","ref":"master","sha":"82eb48a21dc4f02e1502175c8daa669806a4a36e","user":{"login":"e-rsh-p","id":10356326,"avatar_url":"https://avatars.githubusercontent.com/u/10356326?v=3","gravatar_id":"","url":"https://api.github.com/users/e-rsh-p","html_url":"https://github.com/e-rsh-p","followers_url":"https://api.github.com/users/e-rsh-p/followers","following_url":"https://api.github.com/users/e-rsh-p/following{/other_user}","gists_url":"https://api.github.com/users/e-rsh-p/gists{/gist_id}","starred_url":"https://api.github.com/users/e-rsh-p/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-rsh-p/subscriptions","organizations_url":"https://api.github.com/users/e-rsh-p/orgs","repos_url":"https://api.github.com/users/e-rsh-p/repos","events_url":"https://api.github.com/users/e-rsh-p/events{/privacy}","received_events_url":"https://api.github.com/users/e-rsh-p/received_events","type":"User","site_admin":false},"repo":{"id":28688502,"name":"test","full_name":"e-rsh-p/test","owner":{"login":"e-rsh-p","id":10356326,"avatar_url":"https://avatars.githubusercontent.com/u/10356326?v=3","gravatar_id":"","url":"https://api.github.com/users/e-rsh-p","html_url":"https://github.com/e-rsh-p","followers_url":"https://api.github.com/users/e-rsh-p/followers","following_url":"https://api.github.com/users/e-rsh-p/following{/other_user}","gists_url":"https://api.github.com/users/e-rsh-p/gists{/gist_id}","starred_url":"https://api.github.com/users/e-rsh-p/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-rsh-p/subscriptions","organizations_url":"https://api.github.com/users/e-rsh-p/orgs","repos_url":"https://api.github.com/users/e-rsh-p/repos","events_url":"https://api.github.com/users/e-rsh-p/events{/privacy}","received_events_url":"https://api.github.com/users/e-rsh-p/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/e-rsh-p/test","description":"","fork":true,"url":"https://api.github.com/repos/e-rsh-p/test","forks_url":"https://api.github.com/repos/e-rsh-p/test/forks","keys_url":"https://api.github.com/repos/e-rsh-p/test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/e-rsh-p/test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/e-rsh-p/test/teams","hooks_url":"https://api.github.com/repos/e-rsh-p/test/hooks","issue_events_url":"https://api.github.com/repos/e-rsh-p/test/issues/events{/number}","events_url":"https://api.github.com/repos/e-rsh-p/test/events","assignees_url":"https://api.github.com/repos/e-rsh-p/test/assignees{/user}","branches_url":"https://api.github.com/repos/e-rsh-p/test/branches{/branch}","tags_url":"https://api.github.com/repos/e-rsh-p/test/tags","blobs_url":"https://api.github.com/repos/e-rsh-p/test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/e-rsh-p/test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/e-rsh-p/test/git/refs{/sha}","trees_url":"https://api.github.com/repos/e-rsh-p/test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/e-rsh-p/test/statuses/{sha}","languages_url":"https://api.github.com/repos/e-rsh-p/test/languages","stargazers_url":"https://api.github.com/repos/e-rsh-p/test/stargazers","contributors_url":"https://api.github.com/repos/e-rsh-p/test/contributors","subscribers_url":"https://api.github.com/repos/e-rsh-p/test/subscribers","subscription_url":"https://api.github.com/repos/e-rsh-p/test/subscription","commits_url":"https://api.github.com/repos/e-rsh-p/test/commits{/sha}","git_commits_url":"https://api.github.com/repos/e-rsh-p/test/git/commits{/sha}","comments_url":"https://api.github.com/repos/e-rsh-p/test/comments{/number}","issue_comment_url":"https://api.github.com/repos/e-rsh-p/test/issues/comments/{number}","contents_url":"https://api.github.com/repos/e-rsh-p/test/contents/{+path}","compare_url":"https://api.github.com/repos/e-rsh-p/test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/e-rsh-p/test/merges","archive_url":"https://api.github.com/repos/e-rsh-p/test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/e-rsh-p/test/downloads","issues_url":"https://api.github.com/repos/e-rsh-p/test/issues{/number}","pulls_url":"https://api.github.com/repos/e-rsh-p/test/pulls{/number}","milestones_url":"https://api.github.com/repos/e-rsh-p/test/milestones{/number}","notifications_url":"https://api.github.com/repos/e-rsh-p/test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/e-rsh-p/test/labels{/name}","releases_url":"https://api.github.com/repos/e-rsh-p/test/releases{/id}","created_at":"2015-01-01T14:54:13Z","updated_at":"2014-12-31T08:31:09Z","pushed_at":"2015-01-01T15:15:04Z","git_url":"git://github.com/e-rsh-p/test.git","ssh_url":"git@github.com:e-rsh-p/test.git","clone_url":"https://github.com/e-rsh-p/test.git","svn_url":"https://github.com/e-rsh-p/test","homepage":"","size":152,"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":"ErshKUS:master","ref":"master","sha":"a50bf27ad665aaba89b20175893948e85ec8338b","user":{"login":"ErshKUS","id":873670,"avatar_url":"https://avatars.githubusercontent.com/u/873670?v=3","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","html_url":"https://github.com/ErshKUS","followers_url":"https://api.github.com/users/ErshKUS/followers","following_url":"https://api.github.com/users/ErshKUS/following{/other_user}","gists_url":"https://api.github.com/users/ErshKUS/gists{/gist_id}","starred_url":"https://api.github.com/users/ErshKUS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ErshKUS/subscriptions","organizations_url":"https://api.github.com/users/ErshKUS/orgs","repos_url":"https://api.github.com/users/ErshKUS/repos","events_url":"https://api.github.com/users/ErshKUS/events{/privacy}","received_events_url":"https://api.github.com/users/ErshKUS/received_events","type":"User","site_admin":false},"repo":{"id":2147969,"name":"test","full_name":"ErshKUS/test","owner":{"login":"ErshKUS","id":873670,"avatar_url":"https://avatars.githubusercontent.com/u/873670?v=3","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","html_url":"https://github.com/ErshKUS","followers_url":"https://api.github.com/users/ErshKUS/followers","following_url":"https://api.github.com/users/ErshKUS/following{/other_user}","gists_url":"https://api.github.com/users/ErshKUS/gists{/gist_id}","starred_url":"https://api.github.com/users/ErshKUS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ErshKUS/subscriptions","organizations_url":"https://api.github.com/users/ErshKUS/orgs","repos_url":"https://api.github.com/users/ErshKUS/repos","events_url":"https://api.github.com/users/ErshKUS/events{/privacy}","received_events_url":"https://api.github.com/users/ErshKUS/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ErshKUS/test","description":"","fork":false,"url":"https://api.github.com/repos/ErshKUS/test","forks_url":"https://api.github.com/repos/ErshKUS/test/forks","keys_url":"https://api.github.com/repos/ErshKUS/test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ErshKUS/test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ErshKUS/test/teams","hooks_url":"https://api.github.com/repos/ErshKUS/test/hooks","issue_events_url":"https://api.github.com/repos/ErshKUS/test/issues/events{/number}","events_url":"https://api.github.com/repos/ErshKUS/test/events","assignees_url":"https://api.github.com/repos/ErshKUS/test/assignees{/user}","branches_url":"https://api.github.com/repos/ErshKUS/test/branches{/branch}","tags_url":"https://api.github.com/repos/ErshKUS/test/tags","blobs_url":"https://api.github.com/repos/ErshKUS/test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ErshKUS/test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ErshKUS/test/git/refs{/sha}","trees_url":"https://api.github.com/repos/ErshKUS/test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ErshKUS/test/statuses/{sha}","languages_url":"https://api.github.com/repos/ErshKUS/test/languages","stargazers_url":"https://api.github.com/repos/ErshKUS/test/stargazers","contributors_url":"https://api.github.com/repos/ErshKUS/test/contributors","subscribers_url":"https://api.github.com/repos/ErshKUS/test/subscribers","subscription_url":"https://api.github.com/repos/ErshKUS/test/subscription","commits_url":"https://api.github.com/repos/ErshKUS/test/commits{/sha}","git_commits_url":"https://api.github.com/repos/ErshKUS/test/git/commits{/sha}","comments_url":"https://api.github.com/repos/ErshKUS/test/comments{/number}","issue_comment_url":"https://api.github.com/repos/ErshKUS/test/issues/comments/{number}","contents_url":"https://api.github.com/repos/ErshKUS/test/contents/{+path}","compare_url":"https://api.github.com/repos/ErshKUS/test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ErshKUS/test/merges","archive_url":"https://api.github.com/repos/ErshKUS/test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ErshKUS/test/downloads","issues_url":"https://api.github.com/repos/ErshKUS/test/issues{/number}","pulls_url":"https://api.github.com/repos/ErshKUS/test/pulls{/number}","milestones_url":"https://api.github.com/repos/ErshKUS/test/milestones{/number}","notifications_url":"https://api.github.com/repos/ErshKUS/test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ErshKUS/test/labels{/name}","releases_url":"https://api.github.com/repos/ErshKUS/test/releases{/id}","created_at":"2011-08-03T10:52:46Z","updated_at":"2014-12-31T08:31:09Z","pushed_at":"2015-01-01T15:17:11Z","git_url":"git://github.com/ErshKUS/test.git","ssh_url":"git@github.com:ErshKUS/test.git","clone_url":"https://github.com/ErshKUS/test.git","svn_url":"https://github.com/ErshKUS/test","homepage":"","size":152,"stargazers_count":1,"watchers_count":1,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/5"},"html":{"href":"https://github.com/ErshKUS/test/pull/5"},"issue":{"href":"https://api.github.com/repos/ErshKUS/test/issues/5"},"comments":{"href":"https://api.github.com/repos/ErshKUS/test/issues/5/comments"},"review_comments":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/5/comments"},"review_comment":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/5/commits"},"statuses":{"href":"https://api.github.com/repos/ErshKUS/test/statuses/82eb48a21dc4f02e1502175c8daa669806a4a36e"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"ErshKUS","id":873670,"avatar_url":"https://avatars.githubusercontent.com/u/873670?v=3","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","html_url":"https://github.com/ErshKUS","followers_url":"https://api.github.com/users/ErshKUS/followers","following_url":"https://api.github.com/users/ErshKUS/following{/other_user}","gists_url":"https://api.github.com/users/ErshKUS/gists{/gist_id}","starred_url":"https://api.github.com/users/ErshKUS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ErshKUS/subscriptions","organizations_url":"https://api.github.com/users/ErshKUS/orgs","repos_url":"https://api.github.com/users/ErshKUS/repos","events_url":"https://api.github.com/users/ErshKUS/events{/privacy}","received_events_url":"https://api.github.com/users/ErshKUS/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":2,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:17:11Z"} +,{"id":"2489659046","type":"IssuesEvent","actor":{"id":9308955,"login":"popoirc","gravatar_id":"","url":"https://api.github.com/users/popoirc","avatar_url":"https://avatars.githubusercontent.com/u/9308955?"},"repo":{"id":24798482,"name":"tokyoshells/issues","url":"https://api.github.com/repos/tokyoshells/issues"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/tokyoshells/issues/issues/26","labels_url":"https://api.github.com/repos/tokyoshells/issues/issues/26/labels{/name}","comments_url":"https://api.github.com/repos/tokyoshells/issues/issues/26/comments","events_url":"https://api.github.com/repos/tokyoshells/issues/issues/26/events","html_url":"https://github.com/tokyoshells/issues/issues/26","id":53221663,"number":26,"title":"request account","user":{"login":"popoirc","id":9308955,"avatar_url":"https://avatars.githubusercontent.com/u/9308955?v=3","gravatar_id":"","url":"https://api.github.com/users/popoirc","html_url":"https://github.com/popoirc","followers_url":"https://api.github.com/users/popoirc/followers","following_url":"https://api.github.com/users/popoirc/following{/other_user}","gists_url":"https://api.github.com/users/popoirc/gists{/gist_id}","starred_url":"https://api.github.com/users/popoirc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/popoirc/subscriptions","organizations_url":"https://api.github.com/users/popoirc/orgs","repos_url":"https://api.github.com/users/popoirc/repos","events_url":"https://api.github.com/users/popoirc/events{/privacy}","received_events_url":"https://api.github.com/users/popoirc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:16:18Z","updated_at":"2015-01-01T15:17:11Z","closed_at":"2015-01-01T15:17:11Z","body":"Preferred username: popoEmail address:popoirc@gmail.comIRC Nickname: beli will be using tokyoshells for eggdrop & znc"}},"public":true,"created_at":"2015-01-01T15:17:11Z","org":{"id":9020654,"login":"tokyoshells","gravatar_id":"","url":"https://api.github.com/orgs/tokyoshells","avatar_url":"https://avatars.githubusercontent.com/u/9020654?"}} +,{"id":"2489659048","type":"CreateEvent","actor":{"id":236535,"login":"yuankui","gravatar_id":"","url":"https://api.github.com/users/yuankui","avatar_url":"https://avatars.githubusercontent.com/u/236535?"},"repo":{"id":28688917,"name":"yuankui/blogs","url":"https://api.github.com/repos/yuankui/blogs"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"my blogs","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:11Z"} +,{"id":"2489659049","type":"PushEvent","actor":{"id":10352537,"login":"richardgrimmett","gravatar_id":"","url":"https://api.github.com/users/richardgrimmett","avatar_url":"https://avatars.githubusercontent.com/u/10352537?"},"repo":{"id":28688467,"name":"richardgrimmett/Strikeometer","url":"https://api.github.com/repos/richardgrimmett/Strikeometer"},"payload":{"push_id":536867578,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fa6b40bc687753a94bb6cfddb80400ac174736f6","before":"46d02d86f2960510ebac505589712813fef4dfe5","commits":[{"sha":"fa6b40bc687753a94bb6cfddb80400ac174736f6","author":{"email":"b798ac433084e8c41f9ee129791fecabdcb1f3b8@mtasltd.co.uk","name":"Richard Grimmett"},"message":"First commit","distinct":true,"url":"https://api.github.com/repos/richardgrimmett/Strikeometer/commits/fa6b40bc687753a94bb6cfddb80400ac174736f6"}]},"public":true,"created_at":"2015-01-01T15:17:11Z"} +,{"id":"2489659050","type":"PushEvent","actor":{"id":306502,"login":"bling","gravatar_id":"","url":"https://api.github.com/users/bling","avatar_url":"https://avatars.githubusercontent.com/u/306502?"},"repo":{"id":21434160,"name":"bling/evil-jumper","url":"https://api.github.com/repos/bling/evil-jumper"},"payload":{"push_id":536867579,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a8f77557894501552ff7c9989d7f1adef48955d6","before":"ab87e865a1ffd815f937c98c2ecf70bf13510715","commits":[{"sha":"a8f77557894501552ff7c9989d7f1adef48955d6","author":{"email":"2299609d52dc7d07d5883e8cb8cdd7f39aa32655@live.ca","name":"Bailey Ling"},"message":"define the minor mode as always global","distinct":true,"url":"https://api.github.com/repos/bling/evil-jumper/commits/a8f77557894501552ff7c9989d7f1adef48955d6"}]},"public":true,"created_at":"2015-01-01T15:17:11Z"} +,{"id":"2489659051","type":"PushEvent","actor":{"id":873670,"login":"ErshKUS","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","avatar_url":"https://avatars.githubusercontent.com/u/873670?"},"repo":{"id":2147969,"name":"ErshKUS/test","url":"https://api.github.com/repos/ErshKUS/test"},"payload":{"push_id":536867580,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"4a4764d8806a6c23beaf28cb161fae5805cc6cfe","before":"a50bf27ad665aaba89b20175893948e85ec8338b","commits":[{"sha":"82eb48a21dc4f02e1502175c8daa669806a4a36e","author":{"email":"7d206429a64aeaaa20169d635c1554cd2e4cdc16@yandex.ru","name":"e-rsh-p"},"message":"второй в форке","distinct":true,"url":"https://api.github.com/repos/ErshKUS/test/commits/82eb48a21dc4f02e1502175c8daa669806a4a36e"},{"sha":"4a4764d8806a6c23beaf28cb161fae5805cc6cfe","author":{"email":"759752891c2da4a45a38d25a390ae29ab3869cac@gmail.com","name":"ErshKUS"},"message":"Merge pull request #5 from e-rsh-p/master\n\nвторой пулл реквест","distinct":true,"url":"https://api.github.com/repos/ErshKUS/test/commits/4a4764d8806a6c23beaf28cb161fae5805cc6cfe"}]},"public":true,"created_at":"2015-01-01T15:17:11Z"} +,{"id":"2489659053","type":"DeleteEvent","actor":{"id":299901,"login":"dankempster","gravatar_id":"","url":"https://api.github.com/users/dankempster","avatar_url":"https://avatars.githubusercontent.com/u/299901?"},"repo":{"id":28648383,"name":"dankempster/axstrad-filesystem","url":"https://api.github.com/repos/dankempster/axstrad-filesystem"},"payload":{"ref":"scrutinizer-patch-1","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:12Z"} +,{"id":"2489659054","type":"PullRequestEvent","actor":{"id":299901,"login":"dankempster","gravatar_id":"","url":"https://api.github.com/users/dankempster","avatar_url":"https://avatars.githubusercontent.com/u/299901?"},"repo":{"id":28648383,"name":"dankempster/axstrad-filesystem","url":"https://api.github.com/repos/dankempster/axstrad-filesystem"},"payload":{"action":"closed","number":2,"pull_request":{"url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/2","id":26712028,"html_url":"https://github.com/dankempster/axstrad-filesystem/pull/2","diff_url":"https://github.com/dankempster/axstrad-filesystem/pull/2.diff","patch_url":"https://github.com/dankempster/axstrad-filesystem/pull/2.patch","issue_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/2","number":2,"state":"closed","locked":false,"title":"Scrutinizer Auto-Fixes","user":{"login":"scrutinizer-auto-fixer","id":6253494,"avatar_url":"https://avatars.githubusercontent.com/u/6253494?v=3","gravatar_id":"","url":"https://api.github.com/users/scrutinizer-auto-fixer","html_url":"https://github.com/scrutinizer-auto-fixer","followers_url":"https://api.github.com/users/scrutinizer-auto-fixer/followers","following_url":"https://api.github.com/users/scrutinizer-auto-fixer/following{/other_user}","gists_url":"https://api.github.com/users/scrutinizer-auto-fixer/gists{/gist_id}","starred_url":"https://api.github.com/users/scrutinizer-auto-fixer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/scrutinizer-auto-fixer/subscriptions","organizations_url":"https://api.github.com/users/scrutinizer-auto-fixer/orgs","repos_url":"https://api.github.com/users/scrutinizer-auto-fixer/repos","events_url":"https://api.github.com/users/scrutinizer-auto-fixer/events{/privacy}","received_events_url":"https://api.github.com/users/scrutinizer-auto-fixer/received_events","type":"User","site_admin":false},"body":"@dankempster requested this pull request.\n\nIt consists of patches automatically generated for this project on Scrutinizer:\nhttps://scrutinizer-ci.com/g/dankempster/axstrad-filesystem/","created_at":"2014-12-31T01:24:15Z","updated_at":"2015-01-01T15:17:12Z","closed_at":"2015-01-01T15:17:12Z","merged_at":null,"merge_commit_sha":"7fc93dc9b082b6e6acb49a7c942f8009d7eecbe2","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/2/commits","review_comments_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/2/comments","review_comment_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/comments/{number}","comments_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/2/comments","statuses_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/statuses/c3498254c0d1aded7b8c0e3997d2d8f212dab649","head":{"label":"dankempster:scrutinizer-patch-1","ref":"scrutinizer-patch-1","sha":"c3498254c0d1aded7b8c0e3997d2d8f212dab649","user":{"login":"dankempster","id":299901,"avatar_url":"https://avatars.githubusercontent.com/u/299901?v=3","gravatar_id":"","url":"https://api.github.com/users/dankempster","html_url":"https://github.com/dankempster","followers_url":"https://api.github.com/users/dankempster/followers","following_url":"https://api.github.com/users/dankempster/following{/other_user}","gists_url":"https://api.github.com/users/dankempster/gists{/gist_id}","starred_url":"https://api.github.com/users/dankempster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dankempster/subscriptions","organizations_url":"https://api.github.com/users/dankempster/orgs","repos_url":"https://api.github.com/users/dankempster/repos","events_url":"https://api.github.com/users/dankempster/events{/privacy}","received_events_url":"https://api.github.com/users/dankempster/received_events","type":"User","site_admin":false},"repo":{"id":28648383,"name":"axstrad-filesystem","full_name":"dankempster/axstrad-filesystem","owner":{"login":"dankempster","id":299901,"avatar_url":"https://avatars.githubusercontent.com/u/299901?v=3","gravatar_id":"","url":"https://api.github.com/users/dankempster","html_url":"https://github.com/dankempster","followers_url":"https://api.github.com/users/dankempster/followers","following_url":"https://api.github.com/users/dankempster/following{/other_user}","gists_url":"https://api.github.com/users/dankempster/gists{/gist_id}","starred_url":"https://api.github.com/users/dankempster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dankempster/subscriptions","organizations_url":"https://api.github.com/users/dankempster/orgs","repos_url":"https://api.github.com/users/dankempster/repos","events_url":"https://api.github.com/users/dankempster/events{/privacy}","received_events_url":"https://api.github.com/users/dankempster/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/dankempster/axstrad-filesystem","description":"","fork":false,"url":"https://api.github.com/repos/dankempster/axstrad-filesystem","forks_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/forks","keys_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/keys{/key_id}","collaborators_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/teams","hooks_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/hooks","issue_events_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/events{/number}","events_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/events","assignees_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/assignees{/user}","branches_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/branches{/branch}","tags_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/tags","blobs_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/refs{/sha}","trees_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/trees{/sha}","statuses_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/statuses/{sha}","languages_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/languages","stargazers_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/stargazers","contributors_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/contributors","subscribers_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/subscribers","subscription_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/subscription","commits_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/commits{/sha}","git_commits_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/commits{/sha}","comments_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/comments{/number}","issue_comment_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/comments/{number}","contents_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/contents/{+path}","compare_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/compare/{base}...{head}","merges_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/merges","archive_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/downloads","issues_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues{/number}","pulls_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls{/number}","milestones_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/milestones{/number}","notifications_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/labels{/name}","releases_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/releases{/id}","created_at":"2014-12-30T22:56:17Z","updated_at":"2015-01-01T15:17:03Z","pushed_at":"2015-01-01T15:17:12Z","git_url":"git://github.com/dankempster/axstrad-filesystem.git","ssh_url":"git@github.com:dankempster/axstrad-filesystem.git","clone_url":"https://github.com/dankempster/axstrad-filesystem.git","svn_url":"https://github.com/dankempster/axstrad-filesystem","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"PHP","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":"develop"}},"base":{"label":"dankempster:master","ref":"master","sha":"6016356db5dea247efc48ffecdabb4385ec51561","user":{"login":"dankempster","id":299901,"avatar_url":"https://avatars.githubusercontent.com/u/299901?v=3","gravatar_id":"","url":"https://api.github.com/users/dankempster","html_url":"https://github.com/dankempster","followers_url":"https://api.github.com/users/dankempster/followers","following_url":"https://api.github.com/users/dankempster/following{/other_user}","gists_url":"https://api.github.com/users/dankempster/gists{/gist_id}","starred_url":"https://api.github.com/users/dankempster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dankempster/subscriptions","organizations_url":"https://api.github.com/users/dankempster/orgs","repos_url":"https://api.github.com/users/dankempster/repos","events_url":"https://api.github.com/users/dankempster/events{/privacy}","received_events_url":"https://api.github.com/users/dankempster/received_events","type":"User","site_admin":false},"repo":{"id":28648383,"name":"axstrad-filesystem","full_name":"dankempster/axstrad-filesystem","owner":{"login":"dankempster","id":299901,"avatar_url":"https://avatars.githubusercontent.com/u/299901?v=3","gravatar_id":"","url":"https://api.github.com/users/dankempster","html_url":"https://github.com/dankempster","followers_url":"https://api.github.com/users/dankempster/followers","following_url":"https://api.github.com/users/dankempster/following{/other_user}","gists_url":"https://api.github.com/users/dankempster/gists{/gist_id}","starred_url":"https://api.github.com/users/dankempster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dankempster/subscriptions","organizations_url":"https://api.github.com/users/dankempster/orgs","repos_url":"https://api.github.com/users/dankempster/repos","events_url":"https://api.github.com/users/dankempster/events{/privacy}","received_events_url":"https://api.github.com/users/dankempster/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/dankempster/axstrad-filesystem","description":"","fork":false,"url":"https://api.github.com/repos/dankempster/axstrad-filesystem","forks_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/forks","keys_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/keys{/key_id}","collaborators_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/teams","hooks_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/hooks","issue_events_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/events{/number}","events_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/events","assignees_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/assignees{/user}","branches_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/branches{/branch}","tags_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/tags","blobs_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/refs{/sha}","trees_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/trees{/sha}","statuses_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/statuses/{sha}","languages_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/languages","stargazers_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/stargazers","contributors_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/contributors","subscribers_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/subscribers","subscription_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/subscription","commits_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/commits{/sha}","git_commits_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/commits{/sha}","comments_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/comments{/number}","issue_comment_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/comments/{number}","contents_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/contents/{+path}","compare_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/compare/{base}...{head}","merges_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/merges","archive_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/downloads","issues_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues{/number}","pulls_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls{/number}","milestones_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/milestones{/number}","notifications_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/labels{/name}","releases_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/releases{/id}","created_at":"2014-12-30T22:56:17Z","updated_at":"2015-01-01T15:17:03Z","pushed_at":"2015-01-01T15:17:12Z","git_url":"git://github.com/dankempster/axstrad-filesystem.git","ssh_url":"git@github.com:dankempster/axstrad-filesystem.git","clone_url":"https://github.com/dankempster/axstrad-filesystem.git","svn_url":"https://github.com/dankempster/axstrad-filesystem","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"PHP","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":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/2"},"html":{"href":"https://github.com/dankempster/axstrad-filesystem/pull/2"},"issue":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/2"},"comments":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/2/comments"},"review_comments":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/2/comments"},"review_comment":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/2/commits"},"statuses":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/statuses/c3498254c0d1aded7b8c0e3997d2d8f212dab649"}},"merged":false,"mergeable":true,"mergeable_state":"clean","merged_by":null,"comments":0,"review_comments":0,"commits":2,"additions":31,"deletions":9,"changed_files":6}},"public":true,"created_at":"2015-01-01T15:17:12Z"} +,{"id":"2489659056","type":"PushEvent","actor":{"id":2177532,"login":"sum2012","gravatar_id":"","url":"https://api.github.com/users/sum2012","avatar_url":"https://avatars.githubusercontent.com/u/2177532?"},"repo":{"id":21997662,"name":"sum2012/ppsspp","url":"https://api.github.com/repos/sum2012/ppsspp"},"payload":{"push_id":536867582,"size":455,"distinct_size":6,"ref":"refs/heads/adhoc-by-ANR2ME(adamN)-","head":"45341ec1d3dc0e1253ab065f41386ebcab41e4ff","before":"9d8fd5c7eca72c765e15f5240e7db0886b10d1fc","commits":[{"sha":"5201f0372086c972e095f5f25688c7f466ff8da2","author":{"email":"8b06dbc1dd5cb47b62193f2370d8b1cae6f5bb34@rosalab.ru","name":"Andrey Bondrov"},"message":"Add a hotkey to swap D-pad and left analog stick keys","distinct":false,"url":"https://api.github.com/repos/sum2012/ppsspp/commits/5201f0372086c972e095f5f25688c7f466ff8da2"},{"sha":"a98980d28b207bb98cebeb13e95162dddb93441c","author":{"email":"4781850ae3b7499860a774ac7be7b30333027be5@gmail.com","name":"level99procrastinator"},"message":"Workaround for graphics glitch in Phantasy Star Portable 2","distinct":false,"url":"https://api.github.com/repos/sum2012/ppsspp/commits/a98980d28b207bb98cebeb13e95162dddb93441c"},{"sha":"6fa0fe48a468d533c9b904bfd361cbd0103d7d68","author":{"email":"4781850ae3b7499860a774ac7be7b30333027be5@gmail.com","name":"level99procrastinator"},"message":"Move the hack from GPU/GLES/StateMapping.cpp to GPU/GLES/ShaderManager.cpp","distinct":false,"url":"https://api.github.com/repos/sum2012/ppsspp/commits/6fa0fe48a468d533c9b904bfd361cbd0103d7d68"},{"sha":"52d6f40ec8824e7347092c55a4a26d9e9609f1c0","author":{"email":"4781850ae3b7499860a774ac7be7b30333027be5@gmail.com","name":"level99procrastinator"},"message":"Make sure no NaN goes into projection matrix.","distinct":false,"url":"https://api.github.com/repos/sum2012/ppsspp/commits/52d6f40ec8824e7347092c55a4a26d9e9609f1c0"},{"sha":"3a15da48ac24f2ca1aa49b7c280db80914115527","author":{"email":"9928dc1aa08017b8bd21240aea39de1678030934@gmail.com","name":"chinhodado"},"message":"Change to pass by reference","distinct":false,"url":"https://api.github.com/repos/sum2012/ppsspp/commits/3a15da48ac24f2ca1aa49b7c280db80914115527"},{"sha":"4cf0913692cc7200b6a8646f7c9b1ed6b6df2380","author":{"email":"36884363863e12fe2cb5f36b207cfbf684864b60@unknownbrackets.org","name":"Unknown W. Brackets"},"message":"x86jit: Sketch some initial SIMD apis.","distinct":false,"url":"https://api.github.com/repos/sum2012/ppsspp/commits/4cf0913692cc7200b6a8646f7c9b1ed6b6df2380"},{"sha":"2862367927fa65081c948c424b125667a4ae99e9","author":{"email":"36884363863e12fe2cb5f36b207cfbf684864b60@unknownbrackets.org","name":"Unknown W. Brackets"},"message":"x86jit: Add force-non-simd to all current ops.\n\nUnless they already use MapRegs, because that will automatically handle\nit.","distinct":false,"url":"https://api.github.com/repos/sum2012/ppsspp/commits/2862367927fa65081c948c424b125667a4ae99e9"},{"sha":"9429359b476e7c307967470f0c46c43db9193aa9","author":{"email":"36884363863e12fe2cb5f36b207cfbf684864b60@unknownbrackets.org","name":"Unknown W. Brackets"},"message":"x86jit: Add fallbacks when moving from VS -> V.","distinct":false,"url":"https://api.github.com/repos/sum2012/ppsspp/commits/9429359b476e7c307967470f0c46c43db9193aa9"},{"sha":"4335bf3346e8993e50664047cdc4e1837ae9898b","author":{"email":"36884363863e12fe2cb5f36b207cfbf684864b60@unknownbrackets.org","name":"Unknown W. Brackets"},"message":"x86jit: Add basic mapping of SIMD regs.\n\nNot tested yet, just sketched out. All very suboptimal.","distinct":false,"url":"https://api.github.com/repos/sum2012/ppsspp/commits/4335bf3346e8993e50664047cdc4e1837ae9898b"},{"sha":"39afeb490fca7f896d2a59eb757e7712ebf484b8","author":{"email":"36884363863e12fe2cb5f36b207cfbf684864b60@unknownbrackets.org","name":"Unknown W. Brackets"},"message":"x86jit: Add some typesafety.","distinct":false,"url":"https://api.github.com/repos/sum2012/ppsspp/commits/39afeb490fca7f896d2a59eb757e7712ebf484b8"},{"sha":"88a753eff3ace2811f5163dc60c4a8648fd484c9","author":{"email":"36884363863e12fe2cb5f36b207cfbf684864b60@unknownbrackets.org","name":"Unknown W. Brackets"},"message":"x86jit: Add an invariant contract to the fpu cache.\n\nThis should help catch things better in debug mode.","distinct":false,"url":"https://api.github.com/repos/sum2012/ppsspp/commits/88a753eff3ace2811f5163dc60c4a8648fd484c9"},{"sha":"aad505e7b3f49bb1b10be8f8cc345f947dbe4ae0","author":{"email":"36884363863e12fe2cb5f36b207cfbf684864b60@unknownbrackets.org","name":"Unknown W. Brackets"},"message":"x86jit: Add a TryMapDirtyInInVS() for 3-op.","distinct":false,"url":"https://api.github.com/repos/sum2012/ppsspp/commits/aad505e7b3f49bb1b10be8f8cc345f947dbe4ae0"},{"sha":"5347431c203b3e56865b7d99ce7eea70e34753f4","author":{"email":"36884363863e12fe2cb5f36b207cfbf684864b60@unknownbrackets.org","name":"Unknown W. Brackets"},"message":"x86jit: Initial simd for VecDo3(). Broken.\n\nI'm not sure why/where it's broken...","distinct":false,"url":"https://api.github.com/repos/sum2012/ppsspp/commits/5347431c203b3e56865b7d99ce7eea70e34753f4"},{"sha":"de566be2ceb6b5f0627613c731ff003eab2d36bc","author":{"email":"36884363863e12fe2cb5f36b207cfbf684864b60@unknownbrackets.org","name":"Unknown W. Brackets"},"message":"x86jit: Split out the logic for loading simd regs.","distinct":false,"url":"https://api.github.com/repos/sum2012/ppsspp/commits/de566be2ceb6b5f0627613c731ff003eab2d36bc"},{"sha":"27148d3712adbcc07c5896efec9b2a5cc5eb2e5e","author":{"email":"36884363863e12fe2cb5f36b207cfbf684864b60@unknownbrackets.org","name":"Unknown W. Brackets"},"message":"x86jit: Add some helpers to check state.","distinct":false,"url":"https://api.github.com/repos/sum2012/ppsspp/commits/27148d3712adbcc07c5896efec9b2a5cc5eb2e5e"},{"sha":"ed501302a2e2925ad1ecd670bd9e25041a8cee4b","author":{"email":"36884363863e12fe2cb5f36b207cfbf684864b60@unknownbrackets.org","name":"Unknown W. Brackets"},"message":"x86jit: Add a check to see if we can map simd.","distinct":false,"url":"https://api.github.com/repos/sum2012/ppsspp/commits/ed501302a2e2925ad1ecd670bd9e25041a8cee4b"},{"sha":"e68eb0a2927a88aea674a3fc1bb080366e29c6dd","author":{"email":"36884363863e12fe2cb5f36b207cfbf684864b60@unknownbrackets.org","name":"Unknown W. Brackets"},"message":"x86jit: Load sequential regs in one shot.","distinct":false,"url":"https://api.github.com/repos/sum2012/ppsspp/commits/e68eb0a2927a88aea674a3fc1bb080366e29c6dd"},{"sha":"921b39ebf55a257df80cafce77b75dde2d3abf1a","author":{"email":"36884363863e12fe2cb5f36b207cfbf684864b60@unknownbrackets.org","name":"Unknown W. Brackets"},"message":"x86jit: Optimize a 2-reg simd load.","distinct":false,"url":"https://api.github.com/repos/sum2012/ppsspp/commits/921b39ebf55a257df80cafce77b75dde2d3abf1a"},{"sha":"74d8a9bdba9b8348e60e8a6b40b01da26b5eb020","author":{"email":"a999e170e992da11398eb9aef877b71c5bf3e751@gmail.com","name":"Henrik Rydgard"},"message":"Clean up after the block linker. armdis: add BKPT","distinct":false,"url":"https://api.github.com/repos/sum2012/ppsspp/commits/74d8a9bdba9b8348e60e8a6b40b01da26b5eb020"},{"sha":"3298c1143f4f5c79845bd9eb46ce6c76e838605b","author":{"email":"a999e170e992da11398eb9aef877b71c5bf3e751@gmail.com","name":"Henrik Rydgard"},"message":"Arm disasm: Coalesce multiple \"BKPT 1\" like we do on x86 for INT 3","distinct":false,"url":"https://api.github.com/repos/sum2012/ppsspp/commits/3298c1143f4f5c79845bd9eb46ce6c76e838605b"}]},"public":true,"created_at":"2015-01-01T15:17:12Z"} +,{"id":"2489659059","type":"PullRequestEvent","actor":{"id":4134018,"login":"PiterEL","gravatar_id":"","url":"https://api.github.com/users/PiterEL","avatar_url":"https://avatars.githubusercontent.com/u/4134018?"},"repo":{"id":4682742,"name":"RMerl/asuswrt-merlin","url":"https://api.github.com/repos/RMerl/asuswrt-merlin"},"payload":{"action":"opened","number":851,"pull_request":{"url":"https://api.github.com/repos/RMerl/asuswrt-merlin/pulls/851","id":26743898,"html_url":"https://github.com/RMerl/asuswrt-merlin/pull/851","diff_url":"https://github.com/RMerl/asuswrt-merlin/pull/851.diff","patch_url":"https://github.com/RMerl/asuswrt-merlin/pull/851.patch","issue_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/issues/851","number":851,"state":"open","locked":false,"title":"Add image for DNS Filtering","user":{"login":"PiterEL","id":4134018,"avatar_url":"https://avatars.githubusercontent.com/u/4134018?v=3","gravatar_id":"","url":"https://api.github.com/users/PiterEL","html_url":"https://github.com/PiterEL","followers_url":"https://api.github.com/users/PiterEL/followers","following_url":"https://api.github.com/users/PiterEL/following{/other_user}","gists_url":"https://api.github.com/users/PiterEL/gists{/gist_id}","starred_url":"https://api.github.com/users/PiterEL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/PiterEL/subscriptions","organizations_url":"https://api.github.com/users/PiterEL/orgs","repos_url":"https://api.github.com/users/PiterEL/repos","events_url":"https://api.github.com/users/PiterEL/events{/privacy}","received_events_url":"https://api.github.com/users/PiterEL/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:17:12Z","updated_at":"2015-01-01T15:17:12Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/pulls/851/commits","review_comments_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/pulls/851/comments","review_comment_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/pulls/comments/{number}","comments_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/issues/851/comments","statuses_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/statuses/b87e814b7ba085473ef24390f25105aa89800e74","head":{"label":"PiterEL:dns","ref":"dns","sha":"b87e814b7ba085473ef24390f25105aa89800e74","user":{"login":"PiterEL","id":4134018,"avatar_url":"https://avatars.githubusercontent.com/u/4134018?v=3","gravatar_id":"","url":"https://api.github.com/users/PiterEL","html_url":"https://github.com/PiterEL","followers_url":"https://api.github.com/users/PiterEL/followers","following_url":"https://api.github.com/users/PiterEL/following{/other_user}","gists_url":"https://api.github.com/users/PiterEL/gists{/gist_id}","starred_url":"https://api.github.com/users/PiterEL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/PiterEL/subscriptions","organizations_url":"https://api.github.com/users/PiterEL/orgs","repos_url":"https://api.github.com/users/PiterEL/repos","events_url":"https://api.github.com/users/PiterEL/events{/privacy}","received_events_url":"https://api.github.com/users/PiterEL/received_events","type":"User","site_admin":false},"repo":{"id":28687994,"name":"asuswrt-merlin","full_name":"PiterEL/asuswrt-merlin","owner":{"login":"PiterEL","id":4134018,"avatar_url":"https://avatars.githubusercontent.com/u/4134018?v=3","gravatar_id":"","url":"https://api.github.com/users/PiterEL","html_url":"https://github.com/PiterEL","followers_url":"https://api.github.com/users/PiterEL/followers","following_url":"https://api.github.com/users/PiterEL/following{/other_user}","gists_url":"https://api.github.com/users/PiterEL/gists{/gist_id}","starred_url":"https://api.github.com/users/PiterEL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/PiterEL/subscriptions","organizations_url":"https://api.github.com/users/PiterEL/orgs","repos_url":"https://api.github.com/users/PiterEL/repos","events_url":"https://api.github.com/users/PiterEL/events{/privacy}","received_events_url":"https://api.github.com/users/PiterEL/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/PiterEL/asuswrt-merlin","description":"Enhanced version of Asus's router firmware (Asuswrt)","fork":true,"url":"https://api.github.com/repos/PiterEL/asuswrt-merlin","forks_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/forks","keys_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/keys{/key_id}","collaborators_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/teams","hooks_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/hooks","issue_events_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/issues/events{/number}","events_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/events","assignees_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/assignees{/user}","branches_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/branches{/branch}","tags_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/tags","blobs_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/git/refs{/sha}","trees_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/git/trees{/sha}","statuses_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/statuses/{sha}","languages_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/languages","stargazers_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/stargazers","contributors_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/contributors","subscribers_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/subscribers","subscription_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/subscription","commits_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/commits{/sha}","git_commits_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/git/commits{/sha}","comments_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/comments{/number}","issue_comment_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/issues/comments/{number}","contents_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/contents/{+path}","compare_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/compare/{base}...{head}","merges_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/merges","archive_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/downloads","issues_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/issues{/number}","pulls_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/pulls{/number}","milestones_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/milestones{/number}","notifications_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/labels{/name}","releases_url":"https://api.github.com/repos/PiterEL/asuswrt-merlin/releases{/id}","created_at":"2015-01-01T14:22:55Z","updated_at":"2015-01-01T14:31:49Z","pushed_at":"2015-01-01T15:16:49Z","git_url":"git://github.com/PiterEL/asuswrt-merlin.git","ssh_url":"git@github.com:PiterEL/asuswrt-merlin.git","clone_url":"https://github.com/PiterEL/asuswrt-merlin.git","svn_url":"https://github.com/PiterEL/asuswrt-merlin","homepage":null,"size":1641672,"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":"RMerl:master","ref":"master","sha":"596f84241d5a48567ea82401b508d9567c2b62bb","user":{"login":"RMerl","id":1661562,"avatar_url":"https://avatars.githubusercontent.com/u/1661562?v=3","gravatar_id":"","url":"https://api.github.com/users/RMerl","html_url":"https://github.com/RMerl","followers_url":"https://api.github.com/users/RMerl/followers","following_url":"https://api.github.com/users/RMerl/following{/other_user}","gists_url":"https://api.github.com/users/RMerl/gists{/gist_id}","starred_url":"https://api.github.com/users/RMerl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RMerl/subscriptions","organizations_url":"https://api.github.com/users/RMerl/orgs","repos_url":"https://api.github.com/users/RMerl/repos","events_url":"https://api.github.com/users/RMerl/events{/privacy}","received_events_url":"https://api.github.com/users/RMerl/received_events","type":"User","site_admin":false},"repo":{"id":4682742,"name":"asuswrt-merlin","full_name":"RMerl/asuswrt-merlin","owner":{"login":"RMerl","id":1661562,"avatar_url":"https://avatars.githubusercontent.com/u/1661562?v=3","gravatar_id":"","url":"https://api.github.com/users/RMerl","html_url":"https://github.com/RMerl","followers_url":"https://api.github.com/users/RMerl/followers","following_url":"https://api.github.com/users/RMerl/following{/other_user}","gists_url":"https://api.github.com/users/RMerl/gists{/gist_id}","starred_url":"https://api.github.com/users/RMerl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RMerl/subscriptions","organizations_url":"https://api.github.com/users/RMerl/orgs","repos_url":"https://api.github.com/users/RMerl/repos","events_url":"https://api.github.com/users/RMerl/events{/privacy}","received_events_url":"https://api.github.com/users/RMerl/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/RMerl/asuswrt-merlin","description":"Enhanced version of Asus's router firmware (Asuswrt)","fork":false,"url":"https://api.github.com/repos/RMerl/asuswrt-merlin","forks_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/forks","keys_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/teams","hooks_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/hooks","issue_events_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/issues/events{/number}","events_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/events","assignees_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/assignees{/user}","branches_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/branches{/branch}","tags_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/tags","blobs_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/git/refs{/sha}","trees_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/statuses/{sha}","languages_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/languages","stargazers_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/stargazers","contributors_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/contributors","subscribers_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/subscribers","subscription_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/subscription","commits_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/commits{/sha}","git_commits_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/git/commits{/sha}","comments_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/comments{/number}","issue_comment_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/issues/comments/{number}","contents_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/contents/{+path}","compare_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/merges","archive_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/downloads","issues_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/issues{/number}","pulls_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/pulls{/number}","milestones_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/milestones{/number}","notifications_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/labels{/name}","releases_url":"https://api.github.com/repos/RMerl/asuswrt-merlin/releases{/id}","created_at":"2012-06-16T06:10:05Z","updated_at":"2015-01-01T04:30:25Z","pushed_at":"2014-12-31T19:46:29Z","git_url":"git://github.com/RMerl/asuswrt-merlin.git","ssh_url":"git@github.com:RMerl/asuswrt-merlin.git","clone_url":"https://github.com/RMerl/asuswrt-merlin.git","svn_url":"https://github.com/RMerl/asuswrt-merlin","homepage":null,"size":1641672,"stargazers_count":882,"watchers_count":882,"language":"C","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":202,"mirror_url":null,"open_issues_count":39,"forks":202,"open_issues":39,"watchers":882,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/RMerl/asuswrt-merlin/pulls/851"},"html":{"href":"https://github.com/RMerl/asuswrt-merlin/pull/851"},"issue":{"href":"https://api.github.com/repos/RMerl/asuswrt-merlin/issues/851"},"comments":{"href":"https://api.github.com/repos/RMerl/asuswrt-merlin/issues/851/comments"},"review_comments":{"href":"https://api.github.com/repos/RMerl/asuswrt-merlin/pulls/851/comments"},"review_comment":{"href":"https://api.github.com/repos/RMerl/asuswrt-merlin/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/RMerl/asuswrt-merlin/pulls/851/commits"},"statuses":{"href":"https://api.github.com/repos/RMerl/asuswrt-merlin/statuses/b87e814b7ba085473ef24390f25105aa89800e74"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":1,"deletions":0,"changed_files":2}},"public":true,"created_at":"2015-01-01T15:17:12Z"} +,{"id":"2489659061","type":"PushEvent","actor":{"id":10330069,"login":"riatreppo","gravatar_id":"","url":"https://api.github.com/users/riatreppo","avatar_url":"https://avatars.githubusercontent.com/u/10330069?"},"repo":{"id":28561569,"name":"riatreppo/riatreppo.github.io","url":"https://api.github.com/repos/riatreppo/riatreppo.github.io"},"payload":{"push_id":536867585,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ada428448a058c11282e6323f22c4da9808fe572","before":"825f257ec6aff3cbbba072ef505c446db92f0045","commits":[{"sha":"ada428448a058c11282e6323f22c4da9808fe572","author":{"email":"2314b2e3a4a1f7db165be2aafbf1efd78f28cc97@treppo.org","name":"Christian Treppo"},"message":"Use less frames","distinct":true,"url":"https://api.github.com/repos/riatreppo/riatreppo.github.io/commits/ada428448a058c11282e6323f22c4da9808fe572"}]},"public":true,"created_at":"2015-01-01T15:17:13Z"} +,{"id":"2489659063","type":"PushEvent","actor":{"id":5810630,"login":"wenpkpk","gravatar_id":"","url":"https://api.github.com/users/wenpkpk","avatar_url":"https://avatars.githubusercontent.com/u/5810630?"},"repo":{"id":27584915,"name":"wenpkpk/12306MobileTrainTicket","url":"https://api.github.com/repos/wenpkpk/12306MobileTrainTicket"},"payload":{"push_id":536867586,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"01112e5ca96485a9a3eb60aa939abad5e097e238","before":"fb08121a93a35a22897fdc36e93a46620534b31f","commits":[{"sha":"01112e5ca96485a9a3eb60aa939abad5e097e238","author":{"email":"16a22622dcdae1cd7d76c8c7b02bedb07943eceb@alibaba-inc.com","name":"鸿蓉"},"message":"login pre","distinct":true,"url":"https://api.github.com/repos/wenpkpk/12306MobileTrainTicket/commits/01112e5ca96485a9a3eb60aa939abad5e097e238"}]},"public":true,"created_at":"2015-01-01T15:17:13Z"} +,{"id":"2489659064","type":"PushEvent","actor":{"id":4731916,"login":"julianbauer","gravatar_id":"","url":"https://api.github.com/users/julianbauer","avatar_url":"https://avatars.githubusercontent.com/u/4731916?"},"repo":{"id":28451122,"name":"sub2home/common-styles","url":"https://api.github.com/repos/sub2home/common-styles"},"payload":{"push_id":536867587,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"acfa90fc507f06c73717aa2dd369e6461d847524","before":"1b887047129e801a204e20467dea6f9efb801256","commits":[{"sha":"acfa90fc507f06c73717aa2dd369e6461d847524","author":{"email":"354106e416911844661e1603d99ecf7d1c318dda@overnice.de","name":"Julian Bauer"},"message":"fixed counter","distinct":true,"url":"https://api.github.com/repos/sub2home/common-styles/commits/acfa90fc507f06c73717aa2dd369e6461d847524"}]},"public":true,"created_at":"2015-01-01T15:17:13Z","org":{"id":5780998,"login":"sub2home","gravatar_id":"","url":"https://api.github.com/orgs/sub2home","avatar_url":"https://avatars.githubusercontent.com/u/5780998?"}} +,{"id":"2489659067","type":"PushEvent","actor":{"id":10352792,"login":"Thaleia-DimitraDoudali","gravatar_id":"","url":"https://api.github.com/users/Thaleia-DimitraDoudali","avatar_url":"https://avatars.githubusercontent.com/u/10352792?"},"repo":{"id":28647449,"name":"Thaleia-DimitraDoudali/pzc","url":"https://api.github.com/repos/Thaleia-DimitraDoudali/pzc"},"payload":{"push_id":536867589,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"58bccde0713e75ad17f9f11233e6607193357831","before":"27b3759723c934a697849ed9e38dbe863711228f","commits":[{"sha":"58bccde0713e75ad17f9f11233e6607193357831","author":{"email":"5d567576267f8ca7eab2af5d60d62ad9b9bf6c1c@gmail.com","name":"Thaleia-Dimitra"},"message":"constant parsing","distinct":true,"url":"https://api.github.com/repos/Thaleia-DimitraDoudali/pzc/commits/58bccde0713e75ad17f9f11233e6607193357831"}]},"public":true,"created_at":"2015-01-01T15:17:14Z"} +,{"id":"2489659069","type":"WatchEvent","actor":{"id":4660722,"login":"SergiusTheBest","gravatar_id":"","url":"https://api.github.com/users/SergiusTheBest","avatar_url":"https://avatars.githubusercontent.com/u/4660722?"},"repo":{"id":1257070,"name":"D-Programming-Language/dmd","url":"https://api.github.com/repos/D-Programming-Language/dmd"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:14Z","org":{"id":565913,"login":"D-Programming-Language","gravatar_id":"","url":"https://api.github.com/orgs/D-Programming-Language","avatar_url":"https://avatars.githubusercontent.com/u/565913?"}} +,{"id":"2489659075","type":"PushEvent","actor":{"id":2419009,"login":"ayufan","gravatar_id":"","url":"https://api.github.com/users/ayufan","avatar_url":"https://avatars.githubusercontent.com/u/2419009?"},"repo":{"id":7078959,"name":"proxmox/pve-manager","url":"https://api.github.com/repos/proxmox/pve-manager"},"payload":{"push_id":536867593,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"216efc25cc6c6dfcf55344509f9d4c16cb570722","before":"e1fb5ac851aae325b7853f691382caafb32c35c3","commits":[{"sha":"216efc25cc6c6dfcf55344509f9d4c16cb570722","author":{"email":"e35e8b2bbfdcf2327cda41ac7fce32f25587cf5b@proxmox.com","name":"Dietmar Maurer"},"message":"spiceproxy: use new helpers from PVE::Daemon","distinct":true,"url":"https://api.github.com/repos/proxmox/pve-manager/commits/216efc25cc6c6dfcf55344509f9d4c16cb570722"}]},"public":true,"created_at":"2015-01-01T15:17:14Z","org":{"id":2678585,"login":"proxmox","gravatar_id":"","url":"https://api.github.com/orgs/proxmox","avatar_url":"https://avatars.githubusercontent.com/u/2678585?"}} +,{"id":"2489659076","type":"PushEvent","actor":{"id":2446182,"login":"warmsea","gravatar_id":"","url":"https://api.github.com/users/warmsea","avatar_url":"https://avatars.githubusercontent.com/u/2446182?"},"repo":{"id":24258897,"name":"warmsea/node-nos-sdk","url":"https://api.github.com/repos/warmsea/node-nos-sdk"},"payload":{"push_id":536867594,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"813780511615aacc3bf296b6409ab08251674367","before":"fd936414f28c05faaafa74db1822be7e3442ad22","commits":[{"sha":"813780511615aacc3bf296b6409ab08251674367","author":{"email":"a0f1490a20d0211c997b44bc357e1972deab8ae3@warmsea.net","name":"Su Su"},"message":"Make \"rfr\" bundled dependency.","distinct":true,"url":"https://api.github.com/repos/warmsea/node-nos-sdk/commits/813780511615aacc3bf296b6409ab08251674367"}]},"public":true,"created_at":"2015-01-01T15:17:14Z"} +,{"id":"2489659077","type":"PushEvent","actor":{"id":4481414,"login":"velnias75","gravatar_id":"","url":"https://api.github.com/users/velnias75","avatar_url":"https://avatars.githubusercontent.com/u/4481414?"},"repo":{"id":25719782,"name":"velnias75/NetMauMau","url":"https://api.github.com/repos/velnias75/NetMauMau"},"payload":{"push_id":536867595,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5717f3851b7106a17d07f57544ea66750cb0d439","before":"fdfd5b662b71606a9afd5af30b15db62f6e35144","commits":[{"sha":"5717f3851b7106a17d07f57544ea66750cb0d439","author":{"email":"9ab5f52a1ca0bcf4f70d6d9008e02f6134b5b8f2@rangun.de","name":"velnias75"},"message":"implemented https://github.com/velnias75/NetMauMau/issues/14","distinct":true,"url":"https://api.github.com/repos/velnias75/NetMauMau/commits/5717f3851b7106a17d07f57544ea66750cb0d439"}]},"public":true,"created_at":"2015-01-01T15:17:15Z"} +,{"id":"2489659078","type":"PushEvent","actor":{"id":7450973,"login":"riemann111","gravatar_id":"","url":"https://api.github.com/users/riemann111","avatar_url":"https://avatars.githubusercontent.com/u/7450973?"},"repo":{"id":28688893,"name":"riemann111/SEssence","url":"https://api.github.com/repos/riemann111/SEssence"},"payload":{"push_id":536867596,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9fc8c3545f820680feac7f7de83b7b1b630e57a6","before":"a2fe4ff3c30e2a0c0dd0d317e49eb50d493690b3","commits":[{"sha":"9fc8c3545f820680feac7f7de83b7b1b630e57a6","author":{"email":"84614a99f94772f6347070da175af4e4e089e556@hydrotechnik.co.uk","name":"Fraser"},"message":"Revert \":boom::camel: Added .gitattributes & .gitignore files\"\n\nThis reverts commit 8d84406d104eb0d8a60af0e70aaa54a649dbadfc.","distinct":true,"url":"https://api.github.com/repos/riemann111/SEssence/commits/9fc8c3545f820680feac7f7de83b7b1b630e57a6"}]},"public":true,"created_at":"2015-01-01T15:17:15Z"} +,{"id":"2489659082","type":"PushEvent","actor":{"id":234171,"login":"vadzim","gravatar_id":"","url":"https://api.github.com/users/vadzim","avatar_url":"https://avatars.githubusercontent.com/u/234171?"},"repo":{"id":28394613,"name":"vadzim/shbin","url":"https://api.github.com/repos/vadzim/shbin"},"payload":{"push_id":536867598,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6bb14d1c90438e5053a9178b62797fa575c75db3","before":"618175862835e43da0912f2ee3c762501aebde1e","commits":[{"sha":"6bb14d1c90438e5053a9178b62797fa575c75db3","author":{"email":"7a38d8cbd20d9932ba948efaa364bb62651d5ad4@vadzim.info","name":"vadzim"},"message":"..","distinct":true,"url":"https://api.github.com/repos/vadzim/shbin/commits/6bb14d1c90438e5053a9178b62797fa575c75db3"}]},"public":true,"created_at":"2015-01-01T15:17:16Z"} +,{"id":"2489659088","type":"IssuesEvent","actor":{"id":3279913,"login":"ThomasGaertner","gravatar_id":"","url":"https://api.github.com/users/ThomasGaertner","avatar_url":"https://avatars.githubusercontent.com/u/3279913?"},"repo":{"id":8221519,"name":"Courseplay/courseplay","url":"https://api.github.com/repos/Courseplay/courseplay"},"payload":{"action":"reopened","issue":{"url":"https://api.github.com/repos/Courseplay/courseplay/issues/888","labels_url":"https://api.github.com/repos/Courseplay/courseplay/issues/888/labels{/name}","comments_url":"https://api.github.com/repos/Courseplay/courseplay/issues/888/comments","events_url":"https://api.github.com/repos/Courseplay/courseplay/issues/888/events","html_url":"https://github.com/Courseplay/courseplay/issues/888","id":53215573,"number":888,"title":"Question about mode 8, slurry transport. ","user":{"login":"Raints","id":3618060,"avatar_url":"https://avatars.githubusercontent.com/u/3618060?v=3","gravatar_id":"","url":"https://api.github.com/users/Raints","html_url":"https://github.com/Raints","followers_url":"https://api.github.com/users/Raints/followers","following_url":"https://api.github.com/users/Raints/following{/other_user}","gists_url":"https://api.github.com/users/Raints/gists{/gist_id}","starred_url":"https://api.github.com/users/Raints/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Raints/subscriptions","organizations_url":"https://api.github.com/users/Raints/orgs","repos_url":"https://api.github.com/users/Raints/repos","events_url":"https://api.github.com/users/Raints/events{/privacy}","received_events_url":"https://api.github.com/users/Raints/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/Courseplay/courseplay/labels/suggestion","name":"suggestion","color":"ffe100"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T08:21:01Z","updated_at":"2015-01-01T15:17:16Z","closed_at":null,"body":"Is it possible to add support for mod http://www.modhoster.com/mods/bgaextension--2 My problem is, when im using slurry tank refilled from farm slurry tank and driving to bga slurry tank, it shows \"....reached overload point\" but never starts to unload. If i manually press \"r\" it starts unload and continues his road to refill at farm again. \r\nBTW: Im using slurry tank from this pack http://www.kyoshos-modfactory.de/MAN_TGS_AGRAR becose ingame slurry tanker wont give me unload option."}},"public":true,"created_at":"2015-01-01T15:17:16Z","org":{"id":3603873,"login":"Courseplay","gravatar_id":"","url":"https://api.github.com/orgs/Courseplay","avatar_url":"https://avatars.githubusercontent.com/u/3603873?"}} +,{"id":"2489659089","type":"CreateEvent","actor":{"id":8470452,"login":"partyajak","gravatar_id":"","url":"https://api.github.com/users/partyajak","avatar_url":"https://avatars.githubusercontent.com/u/8470452?"},"repo":{"id":28688918,"name":"partyajak/android_kernel_lge_g2mstock","url":"https://api.github.com/repos/partyajak/android_kernel_lge_g2mstock"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:16Z"} +,{"id":"2489659090","type":"CreateEvent","actor":{"id":6860877,"login":"cpressey","gravatar_id":"","url":"https://api.github.com/users/cpressey","avatar_url":"https://avatars.githubusercontent.com/u/6860877?"},"repo":{"id":4666208,"name":"catseye/Iphigeneia","url":"https://api.github.com/repos/catseye/Iphigeneia"},"payload":{"ref":"rel_1_0_2015_0101","ref_type":"tag","master_branch":"master","description":"A toy imperative/functional hybrid language [BSD license]","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:16Z","org":{"id":1134322,"login":"catseye","gravatar_id":"","url":"https://api.github.com/orgs/catseye","avatar_url":"https://avatars.githubusercontent.com/u/1134322?"}} +,{"id":"2489659091","type":"PullRequestEvent","actor":{"id":3336166,"login":"Angelfirenze","gravatar_id":"","url":"https://api.github.com/users/Angelfirenze","avatar_url":"https://avatars.githubusercontent.com/u/3336166?"},"repo":{"id":20413356,"name":"deadlyvipers/dojo_rules","url":"https://api.github.com/repos/deadlyvipers/dojo_rules"},"payload":{"action":"opened","number":2977,"pull_request":{"url":"https://api.github.com/repos/deadlyvipers/dojo_rules/pulls/2977","id":26743900,"html_url":"https://github.com/deadlyvipers/dojo_rules/pull/2977","diff_url":"https://github.com/deadlyvipers/dojo_rules/pull/2977.diff","patch_url":"https://github.com/deadlyvipers/dojo_rules/pull/2977.patch","issue_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/issues/2977","number":2977,"state":"open","locked":false,"title":"Deadly Skills","user":{"login":"Angelfirenze","id":3336166,"avatar_url":"https://avatars.githubusercontent.com/u/3336166?v=3","gravatar_id":"","url":"https://api.github.com/users/Angelfirenze","html_url":"https://github.com/Angelfirenze","followers_url":"https://api.github.com/users/Angelfirenze/followers","following_url":"https://api.github.com/users/Angelfirenze/following{/other_user}","gists_url":"https://api.github.com/users/Angelfirenze/gists{/gist_id}","starred_url":"https://api.github.com/users/Angelfirenze/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Angelfirenze/subscriptions","organizations_url":"https://api.github.com/users/Angelfirenze/orgs","repos_url":"https://api.github.com/users/Angelfirenze/repos","events_url":"https://api.github.com/users/Angelfirenze/events{/privacy}","received_events_url":"https://api.github.com/users/Angelfirenze/received_events","type":"User","site_admin":false},"body":"Creating pull request for v1.2.0 tag in Deadly Vipers Dojo Rules project.","created_at":"2015-01-01T15:17:16Z","updated_at":"2015-01-01T15:17:16Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/pulls/2977/commits","review_comments_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/pulls/2977/comments","review_comment_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/pulls/comments/{number}","comments_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/issues/2977/comments","statuses_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/statuses/76a5d6dfef3a085074976952e963ed72fe0ade86","head":{"label":"Angelfirenze:master","ref":"master","sha":"76a5d6dfef3a085074976952e963ed72fe0ade86","user":{"login":"Angelfirenze","id":3336166,"avatar_url":"https://avatars.githubusercontent.com/u/3336166?v=3","gravatar_id":"","url":"https://api.github.com/users/Angelfirenze","html_url":"https://github.com/Angelfirenze","followers_url":"https://api.github.com/users/Angelfirenze/followers","following_url":"https://api.github.com/users/Angelfirenze/following{/other_user}","gists_url":"https://api.github.com/users/Angelfirenze/gists{/gist_id}","starred_url":"https://api.github.com/users/Angelfirenze/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Angelfirenze/subscriptions","organizations_url":"https://api.github.com/users/Angelfirenze/orgs","repos_url":"https://api.github.com/users/Angelfirenze/repos","events_url":"https://api.github.com/users/Angelfirenze/events{/privacy}","received_events_url":"https://api.github.com/users/Angelfirenze/received_events","type":"User","site_admin":false},"repo":{"id":28203649,"name":"dojo_rules","full_name":"Angelfirenze/dojo_rules","owner":{"login":"Angelfirenze","id":3336166,"avatar_url":"https://avatars.githubusercontent.com/u/3336166?v=3","gravatar_id":"","url":"https://api.github.com/users/Angelfirenze","html_url":"https://github.com/Angelfirenze","followers_url":"https://api.github.com/users/Angelfirenze/followers","following_url":"https://api.github.com/users/Angelfirenze/following{/other_user}","gists_url":"https://api.github.com/users/Angelfirenze/gists{/gist_id}","starred_url":"https://api.github.com/users/Angelfirenze/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Angelfirenze/subscriptions","organizations_url":"https://api.github.com/users/Angelfirenze/orgs","repos_url":"https://api.github.com/users/Angelfirenze/repos","events_url":"https://api.github.com/users/Angelfirenze/events{/privacy}","received_events_url":"https://api.github.com/users/Angelfirenze/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Angelfirenze/dojo_rules","description":"","fork":true,"url":"https://api.github.com/repos/Angelfirenze/dojo_rules","forks_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/forks","keys_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/teams","hooks_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/hooks","issue_events_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/issues/events{/number}","events_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/events","assignees_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/assignees{/user}","branches_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/branches{/branch}","tags_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/tags","blobs_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/git/refs{/sha}","trees_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/statuses/{sha}","languages_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/languages","stargazers_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/stargazers","contributors_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/contributors","subscribers_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/subscribers","subscription_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/subscription","commits_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/commits{/sha}","git_commits_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/git/commits{/sha}","comments_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/comments{/number}","issue_comment_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/issues/comments/{number}","contents_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/contents/{+path}","compare_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/merges","archive_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/downloads","issues_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/issues{/number}","pulls_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/pulls{/number}","milestones_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/milestones{/number}","notifications_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/labels{/name}","releases_url":"https://api.github.com/repos/Angelfirenze/dojo_rules/releases{/id}","created_at":"2014-12-18T22:06:16Z","updated_at":"2014-12-25T19:39:38Z","pushed_at":"2015-01-01T15:14:06Z","git_url":"git://github.com/Angelfirenze/dojo_rules.git","ssh_url":"git@github.com:Angelfirenze/dojo_rules.git","clone_url":"https://github.com/Angelfirenze/dojo_rules.git","svn_url":"https://github.com/Angelfirenze/dojo_rules","homepage":null,"size":152,"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":"deadlyvipers:master","ref":"master","sha":"4a2cee3f506998d0b48d62221c9ef66177a6dec4","user":{"login":"deadlyvipers","id":7718750,"avatar_url":"https://avatars.githubusercontent.com/u/7718750?v=3","gravatar_id":"","url":"https://api.github.com/users/deadlyvipers","html_url":"https://github.com/deadlyvipers","followers_url":"https://api.github.com/users/deadlyvipers/followers","following_url":"https://api.github.com/users/deadlyvipers/following{/other_user}","gists_url":"https://api.github.com/users/deadlyvipers/gists{/gist_id}","starred_url":"https://api.github.com/users/deadlyvipers/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deadlyvipers/subscriptions","organizations_url":"https://api.github.com/users/deadlyvipers/orgs","repos_url":"https://api.github.com/users/deadlyvipers/repos","events_url":"https://api.github.com/users/deadlyvipers/events{/privacy}","received_events_url":"https://api.github.com/users/deadlyvipers/received_events","type":"Organization","site_admin":false},"repo":{"id":20413356,"name":"dojo_rules","full_name":"deadlyvipers/dojo_rules","owner":{"login":"deadlyvipers","id":7718750,"avatar_url":"https://avatars.githubusercontent.com/u/7718750?v=3","gravatar_id":"","url":"https://api.github.com/users/deadlyvipers","html_url":"https://github.com/deadlyvipers","followers_url":"https://api.github.com/users/deadlyvipers/followers","following_url":"https://api.github.com/users/deadlyvipers/following{/other_user}","gists_url":"https://api.github.com/users/deadlyvipers/gists{/gist_id}","starred_url":"https://api.github.com/users/deadlyvipers/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deadlyvipers/subscriptions","organizations_url":"https://api.github.com/users/deadlyvipers/orgs","repos_url":"https://api.github.com/users/deadlyvipers/repos","events_url":"https://api.github.com/users/deadlyvipers/events{/privacy}","received_events_url":"https://api.github.com/users/deadlyvipers/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/deadlyvipers/dojo_rules","description":"","fork":false,"url":"https://api.github.com/repos/deadlyvipers/dojo_rules","forks_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/forks","keys_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/keys{/key_id}","collaborators_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/teams","hooks_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/hooks","issue_events_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/issues/events{/number}","events_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/events","assignees_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/assignees{/user}","branches_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/branches{/branch}","tags_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/tags","blobs_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/git/refs{/sha}","trees_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/git/trees{/sha}","statuses_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/statuses/{sha}","languages_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/languages","stargazers_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/stargazers","contributors_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/contributors","subscribers_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/subscribers","subscription_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/subscription","commits_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/commits{/sha}","git_commits_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/git/commits{/sha}","comments_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/comments{/number}","issue_comment_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/issues/comments/{number}","contents_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/contents/{+path}","compare_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/compare/{base}...{head}","merges_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/merges","archive_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/downloads","issues_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/issues{/number}","pulls_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/pulls{/number}","milestones_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/milestones{/number}","notifications_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/labels{/name}","releases_url":"https://api.github.com/repos/deadlyvipers/dojo_rules/releases{/id}","created_at":"2014-06-02T17:42:50Z","updated_at":"2014-12-16T08:18:47Z","pushed_at":"2014-06-06T14:35:25Z","git_url":"git://github.com/deadlyvipers/dojo_rules.git","ssh_url":"git@github.com:deadlyvipers/dojo_rules.git","clone_url":"https://github.com/deadlyvipers/dojo_rules.git","svn_url":"https://github.com/deadlyvipers/dojo_rules","homepage":null,"size":545,"stargazers_count":11,"watchers_count":11,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":1425,"mirror_url":null,"open_issues_count":2454,"forks":1425,"open_issues":2454,"watchers":11,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/deadlyvipers/dojo_rules/pulls/2977"},"html":{"href":"https://github.com/deadlyvipers/dojo_rules/pull/2977"},"issue":{"href":"https://api.github.com/repos/deadlyvipers/dojo_rules/issues/2977"},"comments":{"href":"https://api.github.com/repos/deadlyvipers/dojo_rules/issues/2977/comments"},"review_comments":{"href":"https://api.github.com/repos/deadlyvipers/dojo_rules/pulls/2977/comments"},"review_comment":{"href":"https://api.github.com/repos/deadlyvipers/dojo_rules/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/deadlyvipers/dojo_rules/pulls/2977/commits"},"statuses":{"href":"https://api.github.com/repos/deadlyvipers/dojo_rules/statuses/76a5d6dfef3a085074976952e963ed72fe0ade86"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":12,"additions":34,"deletions":4,"changed_files":9}},"public":true,"created_at":"2015-01-01T15:17:16Z","org":{"id":7718750,"login":"deadlyvipers","gravatar_id":"","url":"https://api.github.com/orgs/deadlyvipers","avatar_url":"https://avatars.githubusercontent.com/u/7718750?"}} +,{"id":"2489659092","type":"PushEvent","actor":{"id":5878360,"login":"weiliy","gravatar_id":"","url":"https://api.github.com/users/weiliy","avatar_url":"https://avatars.githubusercontent.com/u/5878360?"},"repo":{"id":28260882,"name":"weiliy/Introducing-Regular-Expressions","url":"https://api.github.com/repos/weiliy/Introducing-Regular-Expressions"},"payload":{"push_id":536867600,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5c569d5374c765d916616db2338daf7638f6344f","before":"eadfc2513872f8fd46f1e0faa53d3bdf62606d9a","commits":[{"sha":"5c569d5374c765d916616db2338daf7638f6344f","author":{"email":"48b3f8cdcb1b705653ad2d03a86591a505d38596@weiliy.net","name":"Weili"},"message":"note: chapter 1 and 2","distinct":true,"url":"https://api.github.com/repos/weiliy/Introducing-Regular-Expressions/commits/5c569d5374c765d916616db2338daf7638f6344f"}]},"public":true,"created_at":"2015-01-01T15:17:16Z"} +,{"id":"2489659093","type":"PushEvent","actor":{"id":6860877,"login":"cpressey","gravatar_id":"","url":"https://api.github.com/users/cpressey","avatar_url":"https://avatars.githubusercontent.com/u/6860877?"},"repo":{"id":4666208,"name":"catseye/Iphigeneia","url":"https://api.github.com/repos/catseye/Iphigeneia"},"payload":{"push_id":536867601,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5347a647691c04a3c8e64e19480dea8038f51b54","before":"a37bc8d69caaa393bb510b4cb200a3d83ae4eef6","commits":[{"sha":"5347a647691c04a3c8e64e19480dea8038f51b54","author":{"email":"c7632e440b1c466d6ce6e3f0599fca74ae105873@catseye.tc","name":"Chris Pressey"},"message":"Added tag rel_1_0_2015_0101 for changeset 790b939a6405","distinct":true,"url":"https://api.github.com/repos/catseye/Iphigeneia/commits/5347a647691c04a3c8e64e19480dea8038f51b54"}]},"public":true,"created_at":"2015-01-01T15:17:16Z","org":{"id":1134322,"login":"catseye","gravatar_id":"","url":"https://api.github.com/orgs/catseye","avatar_url":"https://avatars.githubusercontent.com/u/1134322?"}} +,{"id":"2489659096","type":"PushEvent","actor":{"id":9968248,"login":"clandgraf","gravatar_id":"","url":"https://api.github.com/users/clandgraf","avatar_url":"https://avatars.githubusercontent.com/u/9968248?"},"repo":{"id":27558246,"name":"clandgraf/kdev","url":"https://api.github.com/repos/clandgraf/kdev"},"payload":{"push_id":536867603,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7c83c6e5f8fa1edda9ef224a4b68f979e98f685f","before":"11de9ffda6e0305528c620d2d7f40721239ea77e","commits":[{"sha":"7c83c6e5f8fa1edda9ef224a4b68f979e98f685f","author":{"email":"5795f3f9114542c89f84d2d6d3db44e16aa51bda@googlemail.com","name":"Christoph Landgraf"},"message":"Kernel logging and timer cleanup\n\nSplit timer/pit driver into platform-specific and independent part\nIntroduced kernel logging macros in kernel/include/klog.h","distinct":true,"url":"https://api.github.com/repos/clandgraf/kdev/commits/7c83c6e5f8fa1edda9ef224a4b68f979e98f685f"}]},"public":true,"created_at":"2015-01-01T15:17:17Z"} +,{"id":"2489659098","type":"WatchEvent","actor":{"id":259816,"login":"mongris","gravatar_id":"","url":"https://api.github.com/users/mongris","avatar_url":"https://avatars.githubusercontent.com/u/259816?"},"repo":{"id":21737266,"name":"sindresorhus/awesome-nodejs","url":"https://api.github.com/repos/sindresorhus/awesome-nodejs"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:17Z"} +,{"id":"2489659100","type":"WatchEvent","actor":{"id":54051,"login":"cowboy","gravatar_id":"","url":"https://api.github.com/users/cowboy","avatar_url":"https://avatars.githubusercontent.com/u/54051?"},"repo":{"id":28588971,"name":"Lasse-B/Sx2vJoy","url":"https://api.github.com/repos/Lasse-B/Sx2vJoy"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:18Z"} +,{"id":"2489659101","type":"PushEvent","actor":{"id":8123600,"login":"linkjoy","gravatar_id":"","url":"https://api.github.com/users/linkjoy","avatar_url":"https://avatars.githubusercontent.com/u/8123600?"},"repo":{"id":28263256,"name":"linkjoy/Phoenix","url":"https://api.github.com/repos/linkjoy/Phoenix"},"payload":{"push_id":536867606,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"df1242a7d42337ec2ad7f6bd863a861cb0a43a5e","before":"6fb9ec3822ec426cfa05a4afbd19ab0088bb3331","commits":[{"sha":"df1242a7d42337ec2ad7f6bd863a861cb0a43a5e","author":{"email":"8c69fc42be55006367cd10c0c4db1af61993dd62@163.com","name":"xuduo"},"message":"move script system to core","distinct":true,"url":"https://api.github.com/repos/linkjoy/Phoenix/commits/df1242a7d42337ec2ad7f6bd863a861cb0a43a5e"}]},"public":true,"created_at":"2015-01-01T15:17:18Z"} +,{"id":"2489659102","type":"PushEvent","actor":{"id":8754546,"login":"hoenirvili","gravatar_id":"","url":"https://api.github.com/users/hoenirvili","avatar_url":"https://avatars.githubusercontent.com/u/8754546?"},"repo":{"id":27566070,"name":"hoenirvili/VirtualSoc","url":"https://api.github.com/repos/hoenirvili/VirtualSoc"},"payload":{"push_id":536867607,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"300089df45ce90fdd2e64bbe6276a84556e116d5","before":"cdf0dd77b0869fefc05d76a257d4c74e56b7ad42","commits":[{"sha":"300089df45ce90fdd2e64bbe6276a84556e116d5","author":{"email":"e0297608eed2f5d80e8f01e5d5df2fa24d66e8fe@gmail.com","name":"Vili Hoenir"},"message":"trying new solution..","distinct":true,"url":"https://api.github.com/repos/hoenirvili/VirtualSoc/commits/300089df45ce90fdd2e64bbe6276a84556e116d5"}]},"public":true,"created_at":"2015-01-01T15:17:18Z"} +,{"id":"2489659107","type":"PushEvent","actor":{"id":3244222,"login":"dan-lyn","gravatar_id":"","url":"https://api.github.com/users/dan-lyn","avatar_url":"https://avatars.githubusercontent.com/u/3244222?"},"repo":{"id":27088726,"name":"dan-lyn/ElasticsearchExplorerBundle","url":"https://api.github.com/repos/dan-lyn/ElasticsearchExplorerBundle"},"payload":{"push_id":536867609,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"66013b4ea241a2a0a31ffb65058186c76ffa2f53","before":"9fccc1329f01f455ede10afc585f3089e5448f7c","commits":[{"sha":"66013b4ea241a2a0a31ffb65058186c76ffa2f53","author":{"email":"0d33f17c2b21dd4853dfb85b73739048fa179b1d@hotmail.com","name":"dan-lyn"},"message":"changed searchfield selecbox to multiple select","distinct":true,"url":"https://api.github.com/repos/dan-lyn/ElasticsearchExplorerBundle/commits/66013b4ea241a2a0a31ffb65058186c76ffa2f53"}]},"public":true,"created_at":"2015-01-01T15:17:19Z"} +,{"id":"2489659108","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":536867610,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"b557b3601dced33481267c568915008f90af27b0","before":"c2ee786fd4fd123ade866af45713e065ca0dad72","commits":[{"sha":"b557b3601dced33481267c568915008f90af27b0","author":{"email":"dab4293f93c7233f547c2dcfbe48efb5ac3ee2f4@mozilla.com","name":"Andreas Tolfsen"},"message":"Should be possible to use pre alone","distinct":true,"url":"https://api.github.com/repos/SeleniumHQ/docs/commits/b557b3601dced33481267c568915008f90af27b0"}]},"public":true,"created_at":"2015-01-01T15:17:19Z","org":{"id":983927,"login":"SeleniumHQ","gravatar_id":"","url":"https://api.github.com/orgs/SeleniumHQ","avatar_url":"https://avatars.githubusercontent.com/u/983927?"}} +,{"id":"2489659109","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":21327694,"name":"hex7c0/top-vhost","url":"https://api.github.com/repos/hex7c0/top-vhost"},"payload":{"push_id":536867611,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ff58369958a32a8ef90374cd5a088ffc6890fd92","before":"f5b04e84a17653dc75e9028431ea9859f8981e95","commits":[{"sha":"ff58369958a32a8ef90374cd5a088ffc6890fd92","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"grunt","distinct":true,"url":"https://api.github.com/repos/hex7c0/top-vhost/commits/ff58369958a32a8ef90374cd5a088ffc6890fd92"}]},"public":true,"created_at":"2015-01-01T15:17:19Z"} +,{"id":"2489659114","type":"WatchEvent","actor":{"id":1075708,"login":"GIANTCRAB","gravatar_id":"","url":"https://api.github.com/users/GIANTCRAB","avatar_url":"https://avatars.githubusercontent.com/u/1075708?"},"repo":{"id":8809763,"name":"g2p/blocks","url":"https://api.github.com/repos/g2p/blocks"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:20Z"} +,{"id":"2489659115","type":"WatchEvent","actor":{"id":321960,"login":"awynne","gravatar_id":"","url":"https://api.github.com/users/awynne","avatar_url":"https://avatars.githubusercontent.com/u/321960?"},"repo":{"id":28580808,"name":"rllynch/honeywell-rth9580wf","url":"https://api.github.com/repos/rllynch/honeywell-rth9580wf"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:20Z"} +,{"id":"2489659116","type":"PushEvent","actor":{"id":1254228,"login":"KonstaT","gravatar_id":"","url":"https://api.github.com/users/KonstaT","avatar_url":"https://avatars.githubusercontent.com/u/1254228?"},"repo":{"id":20455742,"name":"KonstaT/android_kernel_zte_msm8610","url":"https://api.github.com/repos/KonstaT/android_kernel_zte_msm8610"},"payload":{"push_id":536867613,"size":80,"distinct_size":80,"ref":"refs/heads/cm-12.0-test","head":"4014b133f083c80312c17dfa3e9518d258aa19fa","before":"05568268c4d9b71136b603e8e59a5d6b74bd0049","commits":[{"sha":"00b404eb920c14cabb372e82a6086fe121654a3d","author":{"email":"879c510d2a39b8f040e184ea2c0202dd3e019172@codeaurora.org","name":"Ashish Jain"},"message":"ASoC: msm: fix bounds checking for ADM get params\n\nUpdate boundary check in ADM_GET_PARAM response,\nthe param_size returned from DSP is in number\nof bytes, update the same in GET_PARAM_CDM_RSP.\n\nChange-Id: Iac0f0c070a021618499bf8545c455885f2346d6a\nSigned-off-by: Ashish Jain ","distinct":true,"url":"https://api.github.com/repos/KonstaT/android_kernel_zte_msm8610/commits/00b404eb920c14cabb372e82a6086fe121654a3d"},{"sha":"c824194e5375c5a306b97960e7084abc5619ab57","author":{"email":"23f91d89366f4cb0df23994b6daef7a49583b4f7@codeaurora.org","name":"Lynus Vaz"},"message":"msm: kgsl: Continue if an IB couldn't be dumped in snapshot\n\nIf an IB cannot be added to the snapshot list, that's no reason to\nstop dumping the object that uses it. Continuing further will make\nsure that all possible data is dumped into the snapshot, and make\nit available for offline use.\n\nChange-Id: Ia541510754a9919838e7fc337fa3f2515c6f0f05\nSigned-off-by: Lynus Vaz ","distinct":true,"url":"https://api.github.com/repos/KonstaT/android_kernel_zte_msm8610/commits/c824194e5375c5a306b97960e7084abc5619ab57"},{"sha":"dae6acfe6dd82d992fe1b1fafe01b1a7259ea1bd","author":{"email":"f4561ccbe90a02dadc9d168b29bfea0c1b57222c@codeaurora.org","name":"Adrian Salido-Moreno"},"message":"msm: mdss: refactor ping pong completion logic\n\nReplace completion structures with waitq, and track the completion of\nping pong transfer with a single kickoff count variable. This prevents\nrace conditions when using completion structure and provides a cleaner\nway to identify whether wait is required.\n\nChange-Id: Iebb8077d520649db427470fc4963d892967a920c\nSigned-off-by: Adrian Salido-Moreno \nSigned-off-by: Jayant Shekhar \nSigned-off-by: Krishna Chaitanya Devarakonda ","distinct":true,"url":"https://api.github.com/repos/KonstaT/android_kernel_zte_msm8610/commits/dae6acfe6dd82d992fe1b1fafe01b1a7259ea1bd"},{"sha":"a0a233376d833a7dcc87ee7677f53eb9373c5fb6","author":{"email":"44e007e42f7a1553b8387cad56a79625b5879d5f@codeaurora.org","name":"Krishna Chaitanya Parimi"},"message":"msm: mdss: Correct RGB order for LUT programming in mdp3\n\nMDP3 LUT programming has incorrect RGB order as per HW. The\ncorrect order is to have color0 for green, color1 for red\nand color2 for blue. Correcting the order in mdp3.\n\nChange-Id: Ie7b6ab7f83e18495e83a05102e288fee6841e3ab\nSigned-off-by: Krishna Chaitanya Parimi ","distinct":true,"url":"https://api.github.com/repos/KonstaT/android_kernel_zte_msm8610/commits/a0a233376d833a7dcc87ee7677f53eb9373c5fb6"},{"sha":"eab54205fa5bb5cfdc87f6195fefb635987e89ef","author":{"email":"d4b6c51c9a0d66973fb6c9ecdf48c3f781903a82@codeaurora.org","name":"Sagar Dharia"},"message":"ngd_slim: Fix return paths in transfer function\n\nReturn right away if resume fails when runtime-pm is not\nenabled. Consolidate return paths if controller power-on\nvote fails when runtime-pm is enabled.\n\nCRs-Fixed: 677689\nChange-Id: Ia8887dd87df6dba4f93638650794bfcdc7d1ff75\nSigned-off-by: Sagar Dharia ","distinct":true,"url":"https://api.github.com/repos/KonstaT/android_kernel_zte_msm8610/commits/eab54205fa5bb5cfdc87f6195fefb635987e89ef"},{"sha":"8554f159ae6b6fd45360d46d2fc6f68ae12790bf","author":{"email":"d4b6c51c9a0d66973fb6c9ecdf48c3f781903a82@codeaurora.org","name":"Sagar Dharia"},"message":"slim_msm: support non-blocking writes from slimbus MSM controller\n\nProvide non-blocking write support so that clients can queue multiple\nwrites, or larger transfers without performance implications.\nTX buffer is created and descriptors out of this buffer\nare submitted to HW to transmit data.\nDescriptor is returned to 'available' pool of TX buffer when HW\ninterrupt for transmission status is recieved.\n\nChange-Id: Icc2af6bf4f770c8cadb9bd2ef7be0f95eb22c5d8\nSigned-off-by: Sagar Dharia ","distinct":true,"url":"https://api.github.com/repos/KonstaT/android_kernel_zte_msm8610/commits/8554f159ae6b6fd45360d46d2fc6f68ae12790bf"},{"sha":"3e0a74af4834736bc757dbbeb95c7b7093d4bd42","author":{"email":"d4b6c51c9a0d66973fb6c9ecdf48c3f781903a82@codeaurora.org","name":"Sagar Dharia"},"message":"ngd_slim: Ignore pm_runtime_get error when runtime-pm is not enabled\n\nController power-up uses different code-path when runtime-pm is not\nenabled.\n\nChange-Id: Ibe2f119fd8f43edb657f8f623879dea4730811f4\nSigned-off-by: Sagar Dharia ","distinct":true,"url":"https://api.github.com/repos/KonstaT/android_kernel_zte_msm8610/commits/3e0a74af4834736bc757dbbeb95c7b7093d4bd42"},{"sha":"78d2044f6ad71e93a51f8aea8d4cb96e89ada443","author":{"email":"d4b6c51c9a0d66973fb6c9ecdf48c3f781903a82@codeaurora.org","name":"Sagar Dharia"},"message":"slim_ngd: Use DSP before-shutdown notification for DSP SSR\n\nQMI_SERVER_EXIT notification comes too late (after the DSP has\nshutdown). This can result in unclocked access by BAM if there was\nin-flight transaction. Use BEFORE_SHUTDOWN notification of SSR\nframework instead to make sure in-flight transaction is finished\nbefore DSP turns off its resources.\n\nCRs-Fixed: 730552\nChange-Id: If3c2787c74ffa7743772e5e37eac2f768e239050\nSigned-off-by: Sagar Dharia \nSigned-off-by: Dilip Kota ","distinct":true,"url":"https://api.github.com/repos/KonstaT/android_kernel_zte_msm8610/commits/78d2044f6ad71e93a51f8aea8d4cb96e89ada443"},{"sha":"91b77bfe10dcd6a44d01edef68e5466000e7dcd4","author":{"email":"d4b6c51c9a0d66973fb6c9ecdf48c3f781903a82@codeaurora.org","name":"Sagar Dharia"},"message":"slim_ngd: Ensure device state consistency with runtime-pm during SSR\n\nDuring ADSP SSR, client's thread calling runtime-pm resume will\nfail since ADSP is unreachable. Make sure such power-up/resume attempt\nis blocked until ADSP comes up by using mutex during device-state\ntransition.\n\nChange-Id: Ie85e52bb2974aaee9654eb8fa1cc60fe37c61b75\nSigned-off-by: Sagar Dharia ","distinct":true,"url":"https://api.github.com/repos/KonstaT/android_kernel_zte_msm8610/commits/91b77bfe10dcd6a44d01edef68e5466000e7dcd4"},{"sha":"136f9d415cf9b3b310959324434ce3c65db8433c","author":{"email":"fa8a385479f9e6b154c6b04c95fe5ad29b1d0c11@codeaurora.org","name":"Karthik Reddy Katta"},"message":"msm: Increase start voice command timeout\n\nStart voice command timeout is exceeding 300ms\non ADSP.BF.2.2. Increase it to 500ms to avoid\ntimeout errors.\n\nCRs-fixed: 681025\n\nChange-Id: I940a55a6cd8444ea3ff6fdba0576d7a1f7e8d98c\nSigned-off-by: Karthik Reddy Katta ","distinct":true,"url":"https://api.github.com/repos/KonstaT/android_kernel_zte_msm8610/commits/136f9d415cf9b3b310959324434ce3c65db8433c"},{"sha":"e6e8d7b8dd2b46791e4bc6ecf63e20df5421f869","author":{"email":"f0f1ff6ad859cf86b1c3012119d6c01d307b55a4@codeaurora.org","name":"Anand N Sunkad"},"message":"wcnss: send GPIO strength parameter to firmware\n\nTo dynamically configure GPIO strength in firmware\nsend GPIO strength parameter as a part of power manager\nindication to firmware.\n\nChange-Id: Iad9351d079a61321d407ca1032add841f16c8fdd\nCRs-Fixed: 765151\nSigned-off-by: Anand N Sunkad ","distinct":true,"url":"https://api.github.com/repos/KonstaT/android_kernel_zte_msm8610/commits/e6e8d7b8dd2b46791e4bc6ecf63e20df5421f869"},{"sha":"01eae589fc6bbe9d897c2d2d626784829679b8da","author":{"email":"f0f1ff6ad859cf86b1c3012119d6c01d307b55a4@codeaurora.org","name":"Anand N Sunkad"},"message":"ARM: dts: msm: Add GPIO strength parameter for power manager entry\n\nAdd new parameter which represents GPIO strength value for power\nmanager entry for wcnss.\n\nChange-Id: I4ac744c115d1135de5fa6072a94fe823594719d8\nCRs-Fixed: 765151\nSigned-off-by: Anand N Sunkad ","distinct":true,"url":"https://api.github.com/repos/KonstaT/android_kernel_zte_msm8610/commits/01eae589fc6bbe9d897c2d2d626784829679b8da"},{"sha":"f2c4c60bf1274e5ae8c4c726dc3da0a2e4daaa02","author":{"email":"0762133b8a9c799f8baac0b4a37557457201db2b@codeaurora.org","name":"Anupam Sakargayan"},"message":"Revert \"msm: kgsl: Device mutex lock for kgsl_cancel_event\"\n\nThis reverts commit 43371a3f85e286627654e10caae62db22defe6ea.\n\nCRs-Fixed: 765051\nChange-Id: Ic42960234e78a258a6918fcc2875ecc502e0e530\nSigned-off-by: Anupam Sakargayan ","distinct":true,"url":"https://api.github.com/repos/KonstaT/android_kernel_zte_msm8610/commits/f2c4c60bf1274e5ae8c4c726dc3da0a2e4daaa02"},{"sha":"ade2acf82103fa68b97e89c01b1c8aa3bc425796","author":{"email":"0762133b8a9c799f8baac0b4a37557457201db2b@codeaurora.org","name":"Anupam Sakargayan"},"message":"msm: kgsl: Device mutex lock for kgsl_cmdbatch_destroy\n\nkgsl_cancel_event must be called with device->mutex\notherwise it will cause a BUG_ON in kgsl_cancel_event\n\nkgsl_cmdbatch_destroy will call kgsl_cancel_event, hence added\ndevice->mutex lock/unlock wherever kgsl_cmdbatch_destroy is called\n\nChange-Id: I9b9959236d6be0d80987279a64a0715363229f7b\nSigned-off-by: Anupam Sakargayan ","distinct":true,"url":"https://api.github.com/repos/KonstaT/android_kernel_zte_msm8610/commits/ade2acf82103fa68b97e89c01b1c8aa3bc425796"},{"sha":"67f605fd284ecf91cc090efceabd8d74a66f7274","author":{"email":"a9708d19e3aa5ae5e151c718ea7f5e2d17483c8e@codeaurora.org","name":"Sandeep Panda"},"message":"msm: mdss: DSI read support for more than 2 bytes\n\nSupport more than 2 bytes DSI read for DSI v2 driver.\n\nChange-Id: Ie1b1a7990aed6944036ce82cf4202472604e8e87\nSigned-off-by: Sandeep Panda ","distinct":true,"url":"https://api.github.com/repos/KonstaT/android_kernel_zte_msm8610/commits/67f605fd284ecf91cc090efceabd8d74a66f7274"},{"sha":"c7fb8dd6bc15b0e716631aaed95ce177c4733f4c","author":{"email":"d9be9ca3f1b2d450305e034a370ae798faff7dfb@codeaurora.org","name":"Vignesh Radhakrishnan"},"message":"msm: rtb: Add RTB trace support\n\nAdd rtb trace support to support more architectures.\n\nChange-Id: Ic8d42f579f4654db3a4008785fdd7402593a0466\nSigned-off-by: Xiaogang Cui \nSigned-off-by: Vignesh Radhakrishnan ","distinct":true,"url":"https://api.github.com/repos/KonstaT/android_kernel_zte_msm8610/commits/c7fb8dd6bc15b0e716631aaed95ce177c4733f4c"},{"sha":"e40cdf935a61ce7ffbe872ecd0c30199939558da","author":{"email":"d9be9ca3f1b2d450305e034a370ae798faff7dfb@codeaurora.org","name":"Vignesh Radhakrishnan"},"message":"msm: rtb: Add timestamp to rtb logging\n\nRTB logging currently doesn't log the time\nat which the logging was done. This can be\nuseful to compare with dmesg during debug.\nThe bytes for timestamp are taken by reducing\nthe sentinel array size to three from eleven\nthus giving the extra 8 bytes to store time.\nThis maintains the size of the layout at 32.\n\nChange-Id: Ifc7e4d2e89ed14d2a97467891ebefa9515983630\nSigned-off-by: Vignesh Radhakrishnan ","distinct":true,"url":"https://api.github.com/repos/KonstaT/android_kernel_zte_msm8610/commits/e40cdf935a61ce7ffbe872ecd0c30199939558da"},{"sha":"7b3d8ed0f3338bc7b8b608acb0c5eb6f2bce23b0","author":{"email":"ca20cbf1af825e25dbf4356429ee951fea242b6d@codeaurora.org","name":"Nakul Kadannavar"},"message":"NFC: Add error handling to i2c access\n\nThis patch adds error handling to each i2c access\nFurthermore, the timeout for the wake status\nregister of the nfcc is increased to cover corner cases.\n\nCRs-Fixed: 765256\nChange-Id: Ia8f99a89ec2e107dde4256f4afb24b461b50540a\nSigned-off-by: Nakul Kadannavar ","distinct":true,"url":"https://api.github.com/repos/KonstaT/android_kernel_zte_msm8610/commits/7b3d8ed0f3338bc7b8b608acb0c5eb6f2bce23b0"},{"sha":"2b4a8f837a26e0996b7b4149b2b0e979b36a56ab","author":{"email":"d3c7bae90ce2477533ec852edf38b65198016249@localhost","name":"Linux Build Service Account"},"message":"Merge \"msm: rtb: Add RTB trace support\"","distinct":true,"url":"https://api.github.com/repos/KonstaT/android_kernel_zte_msm8610/commits/2b4a8f837a26e0996b7b4149b2b0e979b36a56ab"},{"sha":"48945805fc0945410d93e1ad52eae14ca0d47679","author":{"email":"d3c7bae90ce2477533ec852edf38b65198016249@localhost","name":"Linux Build Service Account"},"message":"Merge \"msm: rtb: Add timestamp to rtb logging\"","distinct":true,"url":"https://api.github.com/repos/KonstaT/android_kernel_zte_msm8610/commits/48945805fc0945410d93e1ad52eae14ca0d47679"}]},"public":true,"created_at":"2015-01-01T15:17:20Z"} +,{"id":"2489659121","type":"PushEvent","actor":{"id":462805,"login":"ah-taktik","gravatar_id":"","url":"https://api.github.com/users/ah-taktik","avatar_url":"https://avatars.githubusercontent.com/u/462805?"},"repo":{"id":27351127,"name":"taktik/pos","url":"https://api.github.com/repos/taktik/pos"},"payload":{"push_id":536867614,"size":1,"distinct_size":1,"ref":"refs/heads/8.0-pos_dynamic_price","head":"90e2579c9b59f0a66ba73ff918dd6d0f94e7f559","before":"3bff8f1c4fbfee02a6f5b86796ebc5cfefa7fd69","commits":[{"sha":"90e2579c9b59f0a66ba73ff918dd6d0f94e7f559","author":{"email":"fd0aa93434507bb33ff096a66a4891c2bc4fa12d@taktik.be","name":"Adil Houmadi"},"message":"[REF] : introduce a new class PricelistEngine to refactor the code\n[IMP] : refresh product UI to reflects while selecting a customer\nFor more details see the first point of this comment : https://github.com/OCA/pos/pull/6#issuecomment-68455367","distinct":true,"url":"https://api.github.com/repos/taktik/pos/commits/90e2579c9b59f0a66ba73ff918dd6d0f94e7f559"}]},"public":true,"created_at":"2015-01-01T15:17:21Z","org":{"id":7781213,"login":"taktik","gravatar_id":"","url":"https://api.github.com/orgs/taktik","avatar_url":"https://avatars.githubusercontent.com/u/7781213?"}} +,{"id":"2489659133","type":"WatchEvent","actor":{"id":6927432,"login":"geekcraik","gravatar_id":"","url":"https://api.github.com/users/geekcraik","avatar_url":"https://avatars.githubusercontent.com/u/6927432?"},"repo":{"id":22711503,"name":"gcc-mirror/gcc","url":"https://api.github.com/repos/gcc-mirror/gcc"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:22Z","org":{"id":8382043,"login":"gcc-mirror","gravatar_id":"","url":"https://api.github.com/orgs/gcc-mirror","avatar_url":"https://avatars.githubusercontent.com/u/8382043?"}} +,{"id":"2489659134","type":"PushEvent","actor":{"id":2804967,"login":"ch3cooli","gravatar_id":"","url":"https://api.github.com/users/ch3cooli","avatar_url":"https://avatars.githubusercontent.com/u/2804967?"},"repo":{"id":6705122,"name":"ch3cooli/TortoiseGit","url":"https://api.github.com/repos/ch3cooli/TortoiseGit"},"payload":{"push_id":536867621,"size":1,"distinct_size":1,"ref":"refs/heads/bugtraq","head":"54553cb44c5c59917999fb946ecb71ed7e7beb6f","before":"0ec2a81e8e71d5dc8c134543e39e08e6f2cd3a8e","commits":[{"sha":"54553cb44c5c59917999fb946ecb71ed7e7beb6f","author":{"email":"9b3ee8bab51aa9521a86dcc56eef9247e9275a11@gmail.com","name":"Sup Yut Sum"},"message":"Add BugTraqWrapper\n\nSigned-off-by: Sup Yut Sum ","distinct":true,"url":"https://api.github.com/repos/ch3cooli/TortoiseGit/commits/54553cb44c5c59917999fb946ecb71ed7e7beb6f"}]},"public":true,"created_at":"2015-01-01T15:17:22Z"} +,{"id":"2489659136","type":"PushEvent","actor":{"id":5594,"login":"commondream","gravatar_id":"","url":"https://api.github.com/users/commondream","avatar_url":"https://avatars.githubusercontent.com/u/5594?"},"repo":{"id":28688852,"name":"commondream/dotvim","url":"https://api.github.com/repos/commondream/dotvim"},"payload":{"push_id":536867622,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a2eef863fee94b866db8fa306887353a945697f3","before":"107e8a296a7acf2d303db3d8cc1f96d8b1db32c4","commits":[{"sha":"a2eef863fee94b866db8fa306887353a945697f3","author":{"email":"91e38e63b890fbb214c8914809fde03c73e7f24d@teamtreehouse.com","name":"Alan Johnson"},"message":"Initial commit","distinct":true,"url":"https://api.github.com/repos/commondream/dotvim/commits/a2eef863fee94b866db8fa306887353a945697f3"}]},"public":true,"created_at":"2015-01-01T15:17:23Z"} +,{"id":"2489659137","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":22913041,"name":"hex7c0/transfer-rate","url":"https://api.github.com/repos/hex7c0/transfer-rate"},"payload":{"push_id":536867623,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"68cd2b2da433c7595662e0f45438085d3995e633","before":"c36db2b48952d145ef7619c46bc651eee5a93c10","commits":[{"sha":"68cd2b2da433c7595662e0f45438085d3995e633","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"grunt","distinct":true,"url":"https://api.github.com/repos/hex7c0/transfer-rate/commits/68cd2b2da433c7595662e0f45438085d3995e633"}]},"public":true,"created_at":"2015-01-01T15:17:23Z"} +,{"id":"2489659144","type":"CreateEvent","actor":{"id":614482,"login":"plancalculus","gravatar_id":"","url":"https://api.github.com/users/plancalculus","avatar_url":"https://avatars.githubusercontent.com/u/614482?"},"repo":{"id":16166911,"name":"plancalculus/hs-webdriver","url":"https://api.github.com/repos/plancalculus/hs-webdriver"},"payload":{"ref":"firefox-fix","ref_type":"branch","master_branch":"master","description":"A Haskell client for the Selenium WebDriver protocol.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:24Z"} +,{"id":"2489659145","type":"ForkEvent","actor":{"id":8842509,"login":"freedream520","gravatar_id":"","url":"https://api.github.com/users/freedream520","avatar_url":"https://avatars.githubusercontent.com/u/8842509?"},"repo":{"id":14009591,"name":"thx/cube","url":"https://api.github.com/repos/thx/cube"},"payload":{"forkee":{"id":28688919,"name":"cube","full_name":"freedream520/cube","owner":{"login":"freedream520","id":8842509,"avatar_url":"https://avatars.githubusercontent.com/u/8842509?v=3","gravatar_id":"","url":"https://api.github.com/users/freedream520","html_url":"https://github.com/freedream520","followers_url":"https://api.github.com/users/freedream520/followers","following_url":"https://api.github.com/users/freedream520/following{/other_user}","gists_url":"https://api.github.com/users/freedream520/gists{/gist_id}","starred_url":"https://api.github.com/users/freedream520/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/freedream520/subscriptions","organizations_url":"https://api.github.com/users/freedream520/orgs","repos_url":"https://api.github.com/users/freedream520/repos","events_url":"https://api.github.com/users/freedream520/events{/privacy}","received_events_url":"https://api.github.com/users/freedream520/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/freedream520/cube","description":"跨终端、响应式、低设计耦合的CSS解决方案","fork":true,"url":"https://api.github.com/repos/freedream520/cube","forks_url":"https://api.github.com/repos/freedream520/cube/forks","keys_url":"https://api.github.com/repos/freedream520/cube/keys{/key_id}","collaborators_url":"https://api.github.com/repos/freedream520/cube/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/freedream520/cube/teams","hooks_url":"https://api.github.com/repos/freedream520/cube/hooks","issue_events_url":"https://api.github.com/repos/freedream520/cube/issues/events{/number}","events_url":"https://api.github.com/repos/freedream520/cube/events","assignees_url":"https://api.github.com/repos/freedream520/cube/assignees{/user}","branches_url":"https://api.github.com/repos/freedream520/cube/branches{/branch}","tags_url":"https://api.github.com/repos/freedream520/cube/tags","blobs_url":"https://api.github.com/repos/freedream520/cube/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/freedream520/cube/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/freedream520/cube/git/refs{/sha}","trees_url":"https://api.github.com/repos/freedream520/cube/git/trees{/sha}","statuses_url":"https://api.github.com/repos/freedream520/cube/statuses/{sha}","languages_url":"https://api.github.com/repos/freedream520/cube/languages","stargazers_url":"https://api.github.com/repos/freedream520/cube/stargazers","contributors_url":"https://api.github.com/repos/freedream520/cube/contributors","subscribers_url":"https://api.github.com/repos/freedream520/cube/subscribers","subscription_url":"https://api.github.com/repos/freedream520/cube/subscription","commits_url":"https://api.github.com/repos/freedream520/cube/commits{/sha}","git_commits_url":"https://api.github.com/repos/freedream520/cube/git/commits{/sha}","comments_url":"https://api.github.com/repos/freedream520/cube/comments{/number}","issue_comment_url":"https://api.github.com/repos/freedream520/cube/issues/comments/{number}","contents_url":"https://api.github.com/repos/freedream520/cube/contents/{+path}","compare_url":"https://api.github.com/repos/freedream520/cube/compare/{base}...{head}","merges_url":"https://api.github.com/repos/freedream520/cube/merges","archive_url":"https://api.github.com/repos/freedream520/cube/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/freedream520/cube/downloads","issues_url":"https://api.github.com/repos/freedream520/cube/issues{/number}","pulls_url":"https://api.github.com/repos/freedream520/cube/pulls{/number}","milestones_url":"https://api.github.com/repos/freedream520/cube/milestones{/number}","notifications_url":"https://api.github.com/repos/freedream520/cube/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/freedream520/cube/labels{/name}","releases_url":"https://api.github.com/repos/freedream520/cube/releases{/id}","created_at":"2015-01-01T15:17:24Z","updated_at":"2014-12-30T09:14:22Z","pushed_at":"2014-09-25T11:29:29Z","git_url":"git://github.com/freedream520/cube.git","ssh_url":"git@github.com:freedream520/cube.git","clone_url":"https://github.com/freedream520/cube.git","svn_url":"https://github.com/freedream520/cube","homepage":"http://thx.github.io/cube/","size":1844,"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":"gh-pages","public":true}},"public":true,"created_at":"2015-01-01T15:17:24Z","org":{"id":4538353,"login":"thx","gravatar_id":"","url":"https://api.github.com/orgs/thx","avatar_url":"https://avatars.githubusercontent.com/u/4538353?"}} +,{"id":"2489659146","type":"PushEvent","actor":{"id":10299268,"login":"COhsrt","gravatar_id":"","url":"https://api.github.com/users/COhsrt","avatar_url":"https://avatars.githubusercontent.com/u/10299268?"},"repo":{"id":28464320,"name":"ThomasPr/h2t","url":"https://api.github.com/repos/ThomasPr/h2t"},"payload":{"push_id":536867629,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"5367d1efba2fdf9b409b87bb0e9e89cfde72d586","before":"528c3b0c2aa5ffc8daef75d176bd21e0224dd847","commits":[{"sha":"5651c276769e00d487cfcd3f94dbf7cea32bc619","author":{"email":"7abde52c298496fa169fb750f91f213a282142af@ostermeier-on.de","name":"cohsrt"},"message":"added mtrs from cohsrt.mine.nu","distinct":true,"url":"https://api.github.com/repos/ThomasPr/h2t/commits/5651c276769e00d487cfcd3f94dbf7cea32bc619"},{"sha":"5367d1efba2fdf9b409b87bb0e9e89cfde72d586","author":{"email":"7abde52c298496fa169fb750f91f213a282142af@ostermeier-on.de","name":"cohsrt"},"message":"Merge branch 'master' of github.com:ThomasPr/h2t","distinct":true,"url":"https://api.github.com/repos/ThomasPr/h2t/commits/5367d1efba2fdf9b409b87bb0e9e89cfde72d586"}]},"public":true,"created_at":"2015-01-01T15:17:24Z"} +,{"id":"2489659148","type":"PushEvent","actor":{"id":6939493,"login":"beslow","gravatar_id":"","url":"https://api.github.com/users/beslow","avatar_url":"https://avatars.githubusercontent.com/u/6939493?"},"repo":{"id":27368426,"name":"wehere/shengxing_system","url":"https://api.github.com/repos/wehere/shengxing_system"},"payload":{"push_id":536867630,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b2603c82d5fc59767a77b4d6ff83a3d8fd3a53f2","before":"739600f2dfd624cc421a3e90b39c6fef9011c032","commits":[{"sha":"b2603c82d5fc59767a77b4d6ff83a3d8fd3a53f2","author":{"email":"18cde5204835f670769351c6bf9760cb941fb2b2@chenxiaopengdeMacBook-Pro.local","name":"陈小朋"},"message":"add orders look","distinct":true,"url":"https://api.github.com/repos/wehere/shengxing_system/commits/b2603c82d5fc59767a77b4d6ff83a3d8fd3a53f2"}]},"public":true,"created_at":"2015-01-01T15:17:24Z","org":{"id":10020682,"login":"wehere","gravatar_id":"","url":"https://api.github.com/orgs/wehere","avatar_url":"https://avatars.githubusercontent.com/u/10020682?"}} +,{"id":"2489659149","type":"IssueCommentEvent","actor":{"id":2887858,"login":"deivid-rodriguez","gravatar_id":"","url":"https://api.github.com/users/deivid-rodriguez","avatar_url":"https://avatars.githubusercontent.com/u/2887858?"},"repo":{"id":8863313,"name":"deivid-rodriguez/byebug","url":"https://api.github.com/repos/deivid-rodriguez/byebug"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/deivid-rodriguez/byebug/issues/100","labels_url":"https://api.github.com/repos/deivid-rodriguez/byebug/issues/100/labels{/name}","comments_url":"https://api.github.com/repos/deivid-rodriguez/byebug/issues/100/comments","events_url":"https://api.github.com/repos/deivid-rodriguez/byebug/issues/100/events","html_url":"https://github.com/deivid-rodriguez/byebug/issues/100","id":53211084,"number":100,"title":"Possible to increment breakpoint position by one line (e.g., issue \"next\" in code)?","user":{"login":"science","id":67948,"avatar_url":"https://avatars.githubusercontent.com/u/67948?v=3","gravatar_id":"","url":"https://api.github.com/users/science","html_url":"https://github.com/science","followers_url":"https://api.github.com/users/science/followers","following_url":"https://api.github.com/users/science/following{/other_user}","gists_url":"https://api.github.com/users/science/gists{/gist_id}","starred_url":"https://api.github.com/users/science/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/science/subscriptions","organizations_url":"https://api.github.com/users/science/orgs","repos_url":"https://api.github.com/users/science/repos","events_url":"https://api.github.com/users/science/events{/privacy}","received_events_url":"https://api.github.com/users/science/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T01:54:18Z","updated_at":"2015-01-01T15:17:24Z","closed_at":null,"body":"I have a generic breakpointing system that allows me to put a \"byebug\" command in my code, but only have it break when a certain test is running. This is handing for my dev workstation's CI system (It lets me debug in my CI terminal).\r\n\r\nThis means my \"byebug\" breakpoint is in its own method. So every time it breaks, I have to issue a \"next\" command to get to the place where I actually want to break. It's not a big deal, but I'm wondering if there might be a way to tell byebug to issue a \"next\" command (or maybe any arbitrary set of commands) when it runs?\r\n\r\nI could imagine a block system to let us inject some code into byebug right before it breaks.. Maybe that's the wrong way to think about it. If you have any tips on getting into your codebase, I might be able to send a pull request.. In my case the code could look something like:\r\n```\r\nbyebug do \r\n next\r\n puts some_universal_watch_var\r\nend if debug\r\n```\r\n\r\nAll input welcome!"},"comment":{"url":"https://api.github.com/repos/deivid-rodriguez/byebug/issues/comments/68488861","html_url":"https://github.com/deivid-rodriguez/byebug/issues/100#issuecomment-68488861","issue_url":"https://api.github.com/repos/deivid-rodriguez/byebug/issues/100","id":68488861,"user":{"login":"deivid-rodriguez","id":2887858,"avatar_url":"https://avatars.githubusercontent.com/u/2887858?v=3","gravatar_id":"","url":"https://api.github.com/users/deivid-rodriguez","html_url":"https://github.com/deivid-rodriguez","followers_url":"https://api.github.com/users/deivid-rodriguez/followers","following_url":"https://api.github.com/users/deivid-rodriguez/following{/other_user}","gists_url":"https://api.github.com/users/deivid-rodriguez/gists{/gist_id}","starred_url":"https://api.github.com/users/deivid-rodriguez/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deivid-rodriguez/subscriptions","organizations_url":"https://api.github.com/users/deivid-rodriguez/orgs","repos_url":"https://api.github.com/users/deivid-rodriguez/repos","events_url":"https://api.github.com/users/deivid-rodriguez/events{/privacy}","received_events_url":"https://api.github.com/users/deivid-rodriguez/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:17:24Z","updated_at":"2015-01-01T15:17:24Z","body":"> I have a generic breakpointing system that allows me to put a \"byebug\" command in my code, but only have it break when a certain test is running. This is handing for my dev workstation's CI system (It lets me debug in my CI terminal).\r\n\r\n> This means my \"byebug\" breakpoint is in its own method. So every time it breaks, I have to issue a \"next\" command to get to the place where I actually want to break. It's not a big deal, but I'm wondering if there might be a way to tell byebug to issue a \"next\" command (or maybe any arbitrary set of commands) when it runs?\r\n\r\nI can see the usefulness of this proposal\r\n\r\n byebug do \r\n next\r\n puts some_universal_watch_var\r\n end if debug\r\n\r\nbut I don't think that's the best approach. Maybe a setting allowing to change the run level of a command to `always` would be better. If you want to dig into `byebug` code base and try to work something out, you can start by looking at this method, and where it's used:\r\n\r\nhttps://github.com/deivid-rodriguez/byebug/blob/master/lib/byebug/processors/command_processor.rb#l111-140\r\n\r\nNotice that there's already a `display` command that does part of want you want (the `puts some_universal_watch_var` part)."}},"public":true,"created_at":"2015-01-01T15:17:24Z"} +,{"id":"2489659152","type":"WatchEvent","actor":{"id":1426876,"login":"suenot","gravatar_id":"","url":"https://api.github.com/users/suenot","avatar_url":"https://avatars.githubusercontent.com/u/1426876?"},"repo":{"id":27932471,"name":"anthonyly/Scrolline.js","url":"https://api.github.com/repos/anthonyly/Scrolline.js"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:25Z"} +,{"id":"2489659153","type":"CreateEvent","actor":{"id":7077428,"login":"entropy9009","gravatar_id":"","url":"https://api.github.com/users/entropy9009","avatar_url":"https://avatars.githubusercontent.com/u/7077428?"},"repo":{"id":28688920,"name":"entropy9009/HaosDemo","url":"https://api.github.com/repos/entropy9009/HaosDemo"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Example code.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:25Z"} +,{"id":"2489659159","type":"WatchEvent","actor":{"id":198276,"login":"Nijikokun","gravatar_id":"","url":"https://api.github.com/users/Nijikokun","avatar_url":"https://avatars.githubusercontent.com/u/198276?"},"repo":{"id":7444512,"name":"peter-murray/node-hue-api","url":"https://api.github.com/repos/peter-murray/node-hue-api"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:26Z"} +,{"id":"2489659160","type":"CreateEvent","actor":{"id":5311358,"login":"walkboy0602","gravatar_id":"","url":"https://api.github.com/users/walkboy0602","avatar_url":"https://avatars.githubusercontent.com/u/5311358?"},"repo":{"id":28688921,"name":"walkboy0602/IT-Street","url":"https://api.github.com/repos/walkboy0602/IT-Street"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"IT Street","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:26Z"} +,{"id":"2489659161","type":"PushEvent","actor":{"id":298061,"login":"krnlyng","gravatar_id":"","url":"https://api.github.com/users/krnlyng","avatar_url":"https://avatars.githubusercontent.com/u/298061?"},"repo":{"id":26788382,"name":"CODeRUS/mupen64plus-sailfish","url":"https://api.github.com/repos/CODeRUS/mupen64plus-sailfish"},"payload":{"push_id":536867632,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"acd388ae1f64799de60c873e213c9f7c72410fc3","before":"19bb3497d0163c181bc2a1ed337aed471dcb8af5","commits":[{"sha":"acd388ae1f64799de60c873e213c9f7c72410fc3","author":{"email":"18e6c246bf7844954619b945a9ac8786f4ae9c30@gmx.at","name":"Franz-Josef Anton Friedrich Haider"},"message":"update glide64mk2 submodule","distinct":true,"url":"https://api.github.com/repos/CODeRUS/mupen64plus-sailfish/commits/acd388ae1f64799de60c873e213c9f7c72410fc3"}]},"public":true,"created_at":"2015-01-01T15:17:26Z"} +,{"id":"2489659171","type":"PushEvent","actor":{"id":5415995,"login":"KasperJanssens","gravatar_id":"","url":"https://api.github.com/users/KasperJanssens","avatar_url":"https://avatars.githubusercontent.com/u/5415995?"},"repo":{"id":28540684,"name":"KasperJanssens/intellij-haskforce","url":"https://api.github.com/repos/KasperJanssens/intellij-haskforce"},"payload":{"push_id":536867637,"size":1,"distinct_size":1,"ref":"refs/heads/issue90TypeInformation","head":"f5193f8656ef85d5291dbe44456df225cef15dd8","before":"e3ad02ab60110312f2b24102817a58741c81b903","commits":[{"sha":"f5193f8656ef85d5291dbe44456df225cef15dd8","author":{"email":"6b2139eca7a2f796e804b11f9a4a9687033124be@gmail.com","name":"Kasper"},"message":"Bugfix: wrong method override in HaskellDocumentationProvider for type generation","distinct":true,"url":"https://api.github.com/repos/KasperJanssens/intellij-haskforce/commits/f5193f8656ef85d5291dbe44456df225cef15dd8"}]},"public":true,"created_at":"2015-01-01T15:17:27Z"} +,{"id":"2489659172","type":"PushEvent","actor":{"id":1456779,"login":"jstefek","gravatar_id":"","url":"https://api.github.com/users/jstefek","avatar_url":"https://avatars.githubusercontent.com/u/1456779?"},"repo":{"id":1864099,"name":"richfaces/richfaces-qa","url":"https://api.github.com/repos/richfaces/richfaces-qa"},"payload":{"push_id":536867636,"size":1,"distinct_size":1,"ref":"refs/heads/plugin","head":"69b54c51b311375e2256ca3ed6be83df491c6c8e","before":"73e4855334117c72862e6f929ba57176e5ca1c84","commits":[{"sha":"69b54c51b311375e2256ca3ed6be83df491c6c8e","author":{"email":"d95eae5452a29d5d23a861386f54838da1bc36ca@redhat.com","name":"Jiri Stefek"},"message":"qa-maven-plugin: enhancements\n* refactored with Guice\n* Mac support\n* firefox and EAP are now unzipped to project.build.directory\n* firefox binaries for various OS/OS version/arch in Jenkins environment are mapped in configuration (in pom.xml)\n* reorganized members/formating\n* support for disabling of some parts of the plugin\n* some properties are now cached\n* added some tests","distinct":true,"url":"https://api.github.com/repos/richfaces/richfaces-qa/commits/69b54c51b311375e2256ca3ed6be83df491c6c8e"}]},"public":true,"created_at":"2015-01-01T15:17:27Z","org":{"id":444479,"login":"richfaces","gravatar_id":"","url":"https://api.github.com/orgs/richfaces","avatar_url":"https://avatars.githubusercontent.com/u/444479?"}} +,{"id":"2489659173","type":"PushEvent","actor":{"id":9769086,"login":"sporter69","gravatar_id":"","url":"https://api.github.com/users/sporter69","avatar_url":"https://avatars.githubusercontent.com/u/9769086?"},"repo":{"id":28312912,"name":"lcrespom/ycs","url":"https://api.github.com/repos/lcrespom/ycs"},"payload":{"push_id":536867638,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"77fdf75a06210c15f2512464a277b4246764fe1a","before":"9badb55b0b4035515ad11b03323eecce3f1be8f8","commits":[{"sha":"77fdf75a06210c15f2512464a277b4246764fe1a","author":{"email":"3c3fae4eb0fb8d0e50830db4a8590e41d7714b5a@gmx.com","name":"admin@mydocumenta.com"},"message":"TextosDAO","distinct":true,"url":"https://api.github.com/repos/lcrespom/ycs/commits/77fdf75a06210c15f2512464a277b4246764fe1a"}]},"public":true,"created_at":"2015-01-01T15:17:27Z"} +,{"id":"2489659182","type":"WatchEvent","actor":{"id":6907399,"login":"thekemkid","gravatar_id":"","url":"https://api.github.com/users/thekemkid","avatar_url":"https://avatars.githubusercontent.com/u/6907399?"},"repo":{"id":6834703,"name":"EnterpriseQualityCoding/FizzBuzzEnterpriseEdition","url":"https://api.github.com/repos/EnterpriseQualityCoding/FizzBuzzEnterpriseEdition"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:28Z","org":{"id":5183851,"login":"EnterpriseQualityCoding","gravatar_id":"","url":"https://api.github.com/orgs/EnterpriseQualityCoding","avatar_url":"https://avatars.githubusercontent.com/u/5183851?"}} +,{"id":"2489659186","type":"WatchEvent","actor":{"id":4995815,"login":"huangshidehaizi","gravatar_id":"","url":"https://api.github.com/users/huangshidehaizi","avatar_url":"https://avatars.githubusercontent.com/u/4995815?"},"repo":{"id":1200050,"name":"ariya/phantomjs","url":"https://api.github.com/repos/ariya/phantomjs"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:28Z"} +,{"id":"2489659187","type":"PullRequestReviewCommentEvent","actor":{"id":1540132,"login":"carltonwhitehead","gravatar_id":"","url":"https://api.github.com/users/carltonwhitehead","avatar_url":"https://avatars.githubusercontent.com/u/1540132?"},"repo":{"id":28649714,"name":"carltonwhitehead/coner","url":"https://api.github.com/repos/carltonwhitehead/coner"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/carltonwhitehead/coner/pulls/comments/22400154","id":22400154,"diff_hunk":"@@ -0,0 +1,145 @@\n+////////////////////////////////////////////////////////////////////////////////\n+// checkstyle: Checks Java source code for adherence to a set of rules.\n+// Copyright (C) 2001-2014 Oliver Burn\n+//\n+// This library is free software; you can redistribute it and/or\n+// modify it under the terms of the GNU Lesser General Public\n+// License as published by the Free Software Foundation; either\n+// version 2.1 of the License, or (at your option) any later version.\n+//\n+// This library is distributed in the hope that it will be useful,\n+// but WITHOUT ANY WARRANTY; without even the implied warranty of\n+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n+// Lesser General Public License for more details.\n+//\n+// You should have received a copy of the GNU Lesser General Public\n+// License along with this library; if not, write to the Free Software\n+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n+////////////////////////////////////////////////////////////////////////////////\n+\n+package org.coner.checks;\n+\n+\n+import com.puppycrawl.tools.checkstyle.api.Check;\n+import com.puppycrawl.tools.checkstyle.api.DetailAST;\n+import com.puppycrawl.tools.checkstyle.api.TokenTypes;\n+\n+/**\n+ *

\n+ * Checks for braces around code blocks.\n+ *

\n+ *

By default the check will check the following blocks:\n+ * {@link TokenTypes#LITERAL_DO LITERAL_DO},\n+ * {@link TokenTypes#LITERAL_ELSE LITERAL_ELSE},\n+ * {@link TokenTypes#LITERAL_FOR LITERAL_FOR},\n+ * {@link TokenTypes#LITERAL_IF LITERAL_IF},\n+ * {@link TokenTypes#LITERAL_WHILE LITERAL_WHILE}.\n+ *

\n+ *

\n+ * An example of how to configure the check is:\n+ *

\n+ *
\n+ * <module name=\"NeedBraces\"/>\n+ * 
\n+ *

An example of how to configure the check for if and\n+ * else blocks is:\n+ *

\n+ *
\n+ * <module name=\"NeedBraces\">\n+ *     <property name=\"tokens\" value=\"LITERAL_IF, LITERAL_ELSE\"/>\n+ * </module>\n+ * 
\n+ * Check has an option allowSingleLineIf which allows one line\n+ * if-statements without braces, e.g.:\n+ *

\n+ * \n+ * if (obj.isValid()) return true;\n+ * \n+ *

\n+ *
\n+ *\n+ * @author Rick Giles","path":"build-tools/src/main/java/org/coner/checks/NeedBraces62Check.java","position":61,"original_position":61,"commit_id":"24b5a889e95a6d63194ed06facb2766a71bc0300","original_commit_id":"24b5a889e95a6d63194ed06facb2766a71bc0300","user":{"login":"carltonwhitehead","id":1540132,"avatar_url":"https://avatars.githubusercontent.com/u/1540132?v=3","gravatar_id":"","url":"https://api.github.com/users/carltonwhitehead","html_url":"https://github.com/carltonwhitehead","followers_url":"https://api.github.com/users/carltonwhitehead/followers","following_url":"https://api.github.com/users/carltonwhitehead/following{/other_user}","gists_url":"https://api.github.com/users/carltonwhitehead/gists{/gist_id}","starred_url":"https://api.github.com/users/carltonwhitehead/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/carltonwhitehead/subscriptions","organizations_url":"https://api.github.com/users/carltonwhitehead/orgs","repos_url":"https://api.github.com/users/carltonwhitehead/repos","events_url":"https://api.github.com/users/carltonwhitehead/events{/privacy}","received_events_url":"https://api.github.com/users/carltonwhitehead/received_events","type":"User","site_admin":false},"body":"Where did you find the original source for this file? If we can't include it as a maven dependency, I'd at least like it to have a link to the original.","created_at":"2015-01-01T15:17:28Z","updated_at":"2015-01-01T15:17:28Z","html_url":"https://github.com/carltonwhitehead/coner/pull/9#discussion_r22400154","pull_request_url":"https://api.github.com/repos/carltonwhitehead/coner/pulls/9","_links":{"self":{"href":"https://api.github.com/repos/carltonwhitehead/coner/pulls/comments/22400154"},"html":{"href":"https://github.com/carltonwhitehead/coner/pull/9#discussion_r22400154"},"pull_request":{"href":"https://api.github.com/repos/carltonwhitehead/coner/pulls/9"}}},"pull_request":{"url":"https://api.github.com/repos/carltonwhitehead/coner/pulls/9","id":26739886,"html_url":"https://github.com/carltonwhitehead/coner/pull/9","diff_url":"https://github.com/carltonwhitehead/coner/pull/9.diff","patch_url":"https://github.com/carltonwhitehead/coner/pull/9.patch","issue_url":"https://api.github.com/repos/carltonwhitehead/coner/issues/9","number":9,"state":"open","locked":false,"title":"Resolves #2: support for checkstyle to be run via maven","user":{"login":"jshort","id":1186444,"avatar_url":"https://avatars.githubusercontent.com/u/1186444?v=3","gravatar_id":"","url":"https://api.github.com/users/jshort","html_url":"https://github.com/jshort","followers_url":"https://api.github.com/users/jshort/followers","following_url":"https://api.github.com/users/jshort/following{/other_user}","gists_url":"https://api.github.com/users/jshort/gists{/gist_id}","starred_url":"https://api.github.com/users/jshort/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jshort/subscriptions","organizations_url":"https://api.github.com/users/jshort/orgs","repos_url":"https://api.github.com/users/jshort/repos","events_url":"https://api.github.com/users/jshort/events{/privacy}","received_events_url":"https://api.github.com/users/jshort/received_events","type":"User","site_admin":false},"body":"Because the latest maven checkstyle plugin uses checkstyle 5.7, I manually added a checkstyle 6.2 check. When checkstyle supports java 8 fully in checkstyle 6.2+ then we can undo this.","created_at":"2015-01-01T02:01:27Z","updated_at":"2015-01-01T15:17:28Z","closed_at":null,"merged_at":null,"merge_commit_sha":"a4daae80f9ebacdae7e962095d23470d14b854bb","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/carltonwhitehead/coner/pulls/9/commits","review_comments_url":"https://api.github.com/repos/carltonwhitehead/coner/pulls/9/comments","review_comment_url":"https://api.github.com/repos/carltonwhitehead/coner/pulls/comments/{number}","comments_url":"https://api.github.com/repos/carltonwhitehead/coner/issues/9/comments","statuses_url":"https://api.github.com/repos/carltonwhitehead/coner/statuses/24b5a889e95a6d63194ed06facb2766a71bc0300","head":{"label":"jshort:jshort-checkstyle","ref":"jshort-checkstyle","sha":"24b5a889e95a6d63194ed06facb2766a71bc0300","user":{"login":"jshort","id":1186444,"avatar_url":"https://avatars.githubusercontent.com/u/1186444?v=3","gravatar_id":"","url":"https://api.github.com/users/jshort","html_url":"https://github.com/jshort","followers_url":"https://api.github.com/users/jshort/followers","following_url":"https://api.github.com/users/jshort/following{/other_user}","gists_url":"https://api.github.com/users/jshort/gists{/gist_id}","starred_url":"https://api.github.com/users/jshort/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jshort/subscriptions","organizations_url":"https://api.github.com/users/jshort/orgs","repos_url":"https://api.github.com/users/jshort/repos","events_url":"https://api.github.com/users/jshort/events{/privacy}","received_events_url":"https://api.github.com/users/jshort/received_events","type":"User","site_admin":false},"repo":{"id":28657090,"name":"coner","full_name":"jshort/coner","owner":{"login":"jshort","id":1186444,"avatar_url":"https://avatars.githubusercontent.com/u/1186444?v=3","gravatar_id":"","url":"https://api.github.com/users/jshort","html_url":"https://github.com/jshort","followers_url":"https://api.github.com/users/jshort/followers","following_url":"https://api.github.com/users/jshort/following{/other_user}","gists_url":"https://api.github.com/users/jshort/gists{/gist_id}","starred_url":"https://api.github.com/users/jshort/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jshort/subscriptions","organizations_url":"https://api.github.com/users/jshort/orgs","repos_url":"https://api.github.com/users/jshort/repos","events_url":"https://api.github.com/users/jshort/events{/privacy}","received_events_url":"https://api.github.com/users/jshort/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/jshort/coner","description":"An autocross event operations system","fork":true,"url":"https://api.github.com/repos/jshort/coner","forks_url":"https://api.github.com/repos/jshort/coner/forks","keys_url":"https://api.github.com/repos/jshort/coner/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jshort/coner/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jshort/coner/teams","hooks_url":"https://api.github.com/repos/jshort/coner/hooks","issue_events_url":"https://api.github.com/repos/jshort/coner/issues/events{/number}","events_url":"https://api.github.com/repos/jshort/coner/events","assignees_url":"https://api.github.com/repos/jshort/coner/assignees{/user}","branches_url":"https://api.github.com/repos/jshort/coner/branches{/branch}","tags_url":"https://api.github.com/repos/jshort/coner/tags","blobs_url":"https://api.github.com/repos/jshort/coner/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jshort/coner/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jshort/coner/git/refs{/sha}","trees_url":"https://api.github.com/repos/jshort/coner/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jshort/coner/statuses/{sha}","languages_url":"https://api.github.com/repos/jshort/coner/languages","stargazers_url":"https://api.github.com/repos/jshort/coner/stargazers","contributors_url":"https://api.github.com/repos/jshort/coner/contributors","subscribers_url":"https://api.github.com/repos/jshort/coner/subscribers","subscription_url":"https://api.github.com/repos/jshort/coner/subscription","commits_url":"https://api.github.com/repos/jshort/coner/commits{/sha}","git_commits_url":"https://api.github.com/repos/jshort/coner/git/commits{/sha}","comments_url":"https://api.github.com/repos/jshort/coner/comments{/number}","issue_comment_url":"https://api.github.com/repos/jshort/coner/issues/comments/{number}","contents_url":"https://api.github.com/repos/jshort/coner/contents/{+path}","compare_url":"https://api.github.com/repos/jshort/coner/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jshort/coner/merges","archive_url":"https://api.github.com/repos/jshort/coner/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jshort/coner/downloads","issues_url":"https://api.github.com/repos/jshort/coner/issues{/number}","pulls_url":"https://api.github.com/repos/jshort/coner/pulls{/number}","milestones_url":"https://api.github.com/repos/jshort/coner/milestones{/number}","notifications_url":"https://api.github.com/repos/jshort/coner/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jshort/coner/labels{/name}","releases_url":"https://api.github.com/repos/jshort/coner/releases{/id}","created_at":"2014-12-31T05:32:36Z","updated_at":"2014-12-31T18:17:50Z","pushed_at":"2015-01-01T02:17:19Z","git_url":"git://github.com/jshort/coner.git","ssh_url":"git@github.com:jshort/coner.git","clone_url":"https://github.com/jshort/coner.git","svn_url":"https://github.com/jshort/coner","homepage":"","size":0,"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":"carltonwhitehead:master","ref":"master","sha":"bf947f1cf78776d256fea0cd812f257547d4ed81","user":{"login":"carltonwhitehead","id":1540132,"avatar_url":"https://avatars.githubusercontent.com/u/1540132?v=3","gravatar_id":"","url":"https://api.github.com/users/carltonwhitehead","html_url":"https://github.com/carltonwhitehead","followers_url":"https://api.github.com/users/carltonwhitehead/followers","following_url":"https://api.github.com/users/carltonwhitehead/following{/other_user}","gists_url":"https://api.github.com/users/carltonwhitehead/gists{/gist_id}","starred_url":"https://api.github.com/users/carltonwhitehead/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/carltonwhitehead/subscriptions","organizations_url":"https://api.github.com/users/carltonwhitehead/orgs","repos_url":"https://api.github.com/users/carltonwhitehead/repos","events_url":"https://api.github.com/users/carltonwhitehead/events{/privacy}","received_events_url":"https://api.github.com/users/carltonwhitehead/received_events","type":"User","site_admin":false},"repo":{"id":28649714,"name":"coner","full_name":"carltonwhitehead/coner","owner":{"login":"carltonwhitehead","id":1540132,"avatar_url":"https://avatars.githubusercontent.com/u/1540132?v=3","gravatar_id":"","url":"https://api.github.com/users/carltonwhitehead","html_url":"https://github.com/carltonwhitehead","followers_url":"https://api.github.com/users/carltonwhitehead/followers","following_url":"https://api.github.com/users/carltonwhitehead/following{/other_user}","gists_url":"https://api.github.com/users/carltonwhitehead/gists{/gist_id}","starred_url":"https://api.github.com/users/carltonwhitehead/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/carltonwhitehead/subscriptions","organizations_url":"https://api.github.com/users/carltonwhitehead/orgs","repos_url":"https://api.github.com/users/carltonwhitehead/repos","events_url":"https://api.github.com/users/carltonwhitehead/events{/privacy}","received_events_url":"https://api.github.com/users/carltonwhitehead/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/carltonwhitehead/coner","description":"An autocross event operations system","fork":false,"url":"https://api.github.com/repos/carltonwhitehead/coner","forks_url":"https://api.github.com/repos/carltonwhitehead/coner/forks","keys_url":"https://api.github.com/repos/carltonwhitehead/coner/keys{/key_id}","collaborators_url":"https://api.github.com/repos/carltonwhitehead/coner/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/carltonwhitehead/coner/teams","hooks_url":"https://api.github.com/repos/carltonwhitehead/coner/hooks","issue_events_url":"https://api.github.com/repos/carltonwhitehead/coner/issues/events{/number}","events_url":"https://api.github.com/repos/carltonwhitehead/coner/events","assignees_url":"https://api.github.com/repos/carltonwhitehead/coner/assignees{/user}","branches_url":"https://api.github.com/repos/carltonwhitehead/coner/branches{/branch}","tags_url":"https://api.github.com/repos/carltonwhitehead/coner/tags","blobs_url":"https://api.github.com/repos/carltonwhitehead/coner/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/carltonwhitehead/coner/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/carltonwhitehead/coner/git/refs{/sha}","trees_url":"https://api.github.com/repos/carltonwhitehead/coner/git/trees{/sha}","statuses_url":"https://api.github.com/repos/carltonwhitehead/coner/statuses/{sha}","languages_url":"https://api.github.com/repos/carltonwhitehead/coner/languages","stargazers_url":"https://api.github.com/repos/carltonwhitehead/coner/stargazers","contributors_url":"https://api.github.com/repos/carltonwhitehead/coner/contributors","subscribers_url":"https://api.github.com/repos/carltonwhitehead/coner/subscribers","subscription_url":"https://api.github.com/repos/carltonwhitehead/coner/subscription","commits_url":"https://api.github.com/repos/carltonwhitehead/coner/commits{/sha}","git_commits_url":"https://api.github.com/repos/carltonwhitehead/coner/git/commits{/sha}","comments_url":"https://api.github.com/repos/carltonwhitehead/coner/comments{/number}","issue_comment_url":"https://api.github.com/repos/carltonwhitehead/coner/issues/comments/{number}","contents_url":"https://api.github.com/repos/carltonwhitehead/coner/contents/{+path}","compare_url":"https://api.github.com/repos/carltonwhitehead/coner/compare/{base}...{head}","merges_url":"https://api.github.com/repos/carltonwhitehead/coner/merges","archive_url":"https://api.github.com/repos/carltonwhitehead/coner/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/carltonwhitehead/coner/downloads","issues_url":"https://api.github.com/repos/carltonwhitehead/coner/issues{/number}","pulls_url":"https://api.github.com/repos/carltonwhitehead/coner/pulls{/number}","milestones_url":"https://api.github.com/repos/carltonwhitehead/coner/milestones{/number}","notifications_url":"https://api.github.com/repos/carltonwhitehead/coner/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/carltonwhitehead/coner/labels{/name}","releases_url":"https://api.github.com/repos/carltonwhitehead/coner/releases{/id}","created_at":"2014-12-30T23:59:21Z","updated_at":"2014-12-31T18:16:21Z","pushed_at":"2014-12-31T22:44:12Z","git_url":"git://github.com/carltonwhitehead/coner.git","ssh_url":"git@github.com:carltonwhitehead/coner.git","clone_url":"https://github.com/carltonwhitehead/coner.git","svn_url":"https://github.com/carltonwhitehead/coner","homepage":"","size":0,"stargazers_count":1,"watchers_count":1,"language":"Java","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":5,"forks":1,"open_issues":5,"watchers":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/carltonwhitehead/coner/pulls/9"},"html":{"href":"https://github.com/carltonwhitehead/coner/pull/9"},"issue":{"href":"https://api.github.com/repos/carltonwhitehead/coner/issues/9"},"comments":{"href":"https://api.github.com/repos/carltonwhitehead/coner/issues/9/comments"},"review_comments":{"href":"https://api.github.com/repos/carltonwhitehead/coner/pulls/9/comments"},"review_comment":{"href":"https://api.github.com/repos/carltonwhitehead/coner/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/carltonwhitehead/coner/pulls/9/commits"},"statuses":{"href":"https://api.github.com/repos/carltonwhitehead/coner/statuses/24b5a889e95a6d63194ed06facb2766a71bc0300"}}}},"public":true,"created_at":"2015-01-01T15:17:28Z"} +,{"id":"2489659192","type":"PullRequestEvent","actor":{"id":187310,"login":"calmofthestorm","gravatar_id":"","url":"https://api.github.com/users/calmofthestorm","avatar_url":"https://avatars.githubusercontent.com/u/187310?"},"repo":{"id":12491239,"name":"dictation-toolbox/aenea","url":"https://api.github.com/repos/dictation-toolbox/aenea"},"payload":{"action":"closed","number":81,"pull_request":{"url":"https://api.github.com/repos/dictation-toolbox/aenea/pulls/81","id":26543377,"html_url":"https://github.com/dictation-toolbox/aenea/pull/81","diff_url":"https://github.com/dictation-toolbox/aenea/pull/81.diff","patch_url":"https://github.com/dictation-toolbox/aenea/pull/81.patch","issue_url":"https://api.github.com/repos/dictation-toolbox/aenea/issues/81","number":81,"state":"closed","locked":false,"title":"support get_context failing to return a pid for a window","user":{"login":"mzizzi","id":6410431,"avatar_url":"https://avatars.githubusercontent.com/u/6410431?v=3","gravatar_id":"","url":"https://api.github.com/users/mzizzi","html_url":"https://github.com/mzizzi","followers_url":"https://api.github.com/users/mzizzi/followers","following_url":"https://api.github.com/users/mzizzi/following{/other_user}","gists_url":"https://api.github.com/users/mzizzi/gists{/gist_id}","starred_url":"https://api.github.com/users/mzizzi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mzizzi/subscriptions","organizations_url":"https://api.github.com/users/mzizzi/orgs","repos_url":"https://api.github.com/users/mzizzi/repos","events_url":"https://api.github.com/users/mzizzi/events{/privacy}","received_events_url":"https://api.github.com/users/mzizzi/received_events","type":"User","site_admin":false},"body":"Sometimes get_context() fails to find a pid. We should gracefully handle this error and eventually fix the issue.","created_at":"2014-12-24T03:19:56Z","updated_at":"2015-01-01T15:17:28Z","closed_at":"2015-01-01T15:17:28Z","merged_at":"2015-01-01T15:17:28Z","merge_commit_sha":"20acc314ef4859e2f79e09847c62bab625001e56","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/dictation-toolbox/aenea/pulls/81/commits","review_comments_url":"https://api.github.com/repos/dictation-toolbox/aenea/pulls/81/comments","review_comment_url":"https://api.github.com/repos/dictation-toolbox/aenea/pulls/comments/{number}","comments_url":"https://api.github.com/repos/dictation-toolbox/aenea/issues/81/comments","statuses_url":"https://api.github.com/repos/dictation-toolbox/aenea/statuses/cf100339191b1eb99df647ce95b61718ab4184be","head":{"label":"mzizzi:master","ref":"master","sha":"cf100339191b1eb99df647ce95b61718ab4184be","user":{"login":"mzizzi","id":6410431,"avatar_url":"https://avatars.githubusercontent.com/u/6410431?v=3","gravatar_id":"","url":"https://api.github.com/users/mzizzi","html_url":"https://github.com/mzizzi","followers_url":"https://api.github.com/users/mzizzi/followers","following_url":"https://api.github.com/users/mzizzi/following{/other_user}","gists_url":"https://api.github.com/users/mzizzi/gists{/gist_id}","starred_url":"https://api.github.com/users/mzizzi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mzizzi/subscriptions","organizations_url":"https://api.github.com/users/mzizzi/orgs","repos_url":"https://api.github.com/users/mzizzi/repos","events_url":"https://api.github.com/users/mzizzi/events{/privacy}","received_events_url":"https://api.github.com/users/mzizzi/received_events","type":"User","site_admin":false},"repo":{"id":22191883,"name":"aenea","full_name":"mzizzi/aenea","owner":{"login":"mzizzi","id":6410431,"avatar_url":"https://avatars.githubusercontent.com/u/6410431?v=3","gravatar_id":"","url":"https://api.github.com/users/mzizzi","html_url":"https://github.com/mzizzi","followers_url":"https://api.github.com/users/mzizzi/followers","following_url":"https://api.github.com/users/mzizzi/following{/other_user}","gists_url":"https://api.github.com/users/mzizzi/gists{/gist_id}","starred_url":"https://api.github.com/users/mzizzi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mzizzi/subscriptions","organizations_url":"https://api.github.com/users/mzizzi/orgs","repos_url":"https://api.github.com/users/mzizzi/repos","events_url":"https://api.github.com/users/mzizzi/events{/privacy}","received_events_url":"https://api.github.com/users/mzizzi/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mzizzi/aenea","description":"Client-server library for using voice macros from Dragon NaturallySpeaking and Dragonfly on remote/non-windows hosts.","fork":true,"url":"https://api.github.com/repos/mzizzi/aenea","forks_url":"https://api.github.com/repos/mzizzi/aenea/forks","keys_url":"https://api.github.com/repos/mzizzi/aenea/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mzizzi/aenea/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mzizzi/aenea/teams","hooks_url":"https://api.github.com/repos/mzizzi/aenea/hooks","issue_events_url":"https://api.github.com/repos/mzizzi/aenea/issues/events{/number}","events_url":"https://api.github.com/repos/mzizzi/aenea/events","assignees_url":"https://api.github.com/repos/mzizzi/aenea/assignees{/user}","branches_url":"https://api.github.com/repos/mzizzi/aenea/branches{/branch}","tags_url":"https://api.github.com/repos/mzizzi/aenea/tags","blobs_url":"https://api.github.com/repos/mzizzi/aenea/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mzizzi/aenea/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mzizzi/aenea/git/refs{/sha}","trees_url":"https://api.github.com/repos/mzizzi/aenea/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mzizzi/aenea/statuses/{sha}","languages_url":"https://api.github.com/repos/mzizzi/aenea/languages","stargazers_url":"https://api.github.com/repos/mzizzi/aenea/stargazers","contributors_url":"https://api.github.com/repos/mzizzi/aenea/contributors","subscribers_url":"https://api.github.com/repos/mzizzi/aenea/subscribers","subscription_url":"https://api.github.com/repos/mzizzi/aenea/subscription","commits_url":"https://api.github.com/repos/mzizzi/aenea/commits{/sha}","git_commits_url":"https://api.github.com/repos/mzizzi/aenea/git/commits{/sha}","comments_url":"https://api.github.com/repos/mzizzi/aenea/comments{/number}","issue_comment_url":"https://api.github.com/repos/mzizzi/aenea/issues/comments/{number}","contents_url":"https://api.github.com/repos/mzizzi/aenea/contents/{+path}","compare_url":"https://api.github.com/repos/mzizzi/aenea/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mzizzi/aenea/merges","archive_url":"https://api.github.com/repos/mzizzi/aenea/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mzizzi/aenea/downloads","issues_url":"https://api.github.com/repos/mzizzi/aenea/issues{/number}","pulls_url":"https://api.github.com/repos/mzizzi/aenea/pulls{/number}","milestones_url":"https://api.github.com/repos/mzizzi/aenea/milestones{/number}","notifications_url":"https://api.github.com/repos/mzizzi/aenea/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mzizzi/aenea/labels{/name}","releases_url":"https://api.github.com/repos/mzizzi/aenea/releases{/id}","created_at":"2014-07-24T01:39:07Z","updated_at":"2014-12-24T03:16:13Z","pushed_at":"2014-12-24T03:16:13Z","git_url":"git://github.com/mzizzi/aenea.git","ssh_url":"git@github.com:mzizzi/aenea.git","clone_url":"https://github.com/mzizzi/aenea.git","svn_url":"https://github.com/mzizzi/aenea","homepage":"","size":29684,"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":"dictation-toolbox:master","ref":"master","sha":"85c0b17ffb890c34ed36b52f509ecf06f33295af","user":{"login":"dictation-toolbox","id":8006718,"avatar_url":"https://avatars.githubusercontent.com/u/8006718?v=3","gravatar_id":"","url":"https://api.github.com/users/dictation-toolbox","html_url":"https://github.com/dictation-toolbox","followers_url":"https://api.github.com/users/dictation-toolbox/followers","following_url":"https://api.github.com/users/dictation-toolbox/following{/other_user}","gists_url":"https://api.github.com/users/dictation-toolbox/gists{/gist_id}","starred_url":"https://api.github.com/users/dictation-toolbox/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dictation-toolbox/subscriptions","organizations_url":"https://api.github.com/users/dictation-toolbox/orgs","repos_url":"https://api.github.com/users/dictation-toolbox/repos","events_url":"https://api.github.com/users/dictation-toolbox/events{/privacy}","received_events_url":"https://api.github.com/users/dictation-toolbox/received_events","type":"Organization","site_admin":false},"repo":{"id":12491239,"name":"aenea","full_name":"dictation-toolbox/aenea","owner":{"login":"dictation-toolbox","id":8006718,"avatar_url":"https://avatars.githubusercontent.com/u/8006718?v=3","gravatar_id":"","url":"https://api.github.com/users/dictation-toolbox","html_url":"https://github.com/dictation-toolbox","followers_url":"https://api.github.com/users/dictation-toolbox/followers","following_url":"https://api.github.com/users/dictation-toolbox/following{/other_user}","gists_url":"https://api.github.com/users/dictation-toolbox/gists{/gist_id}","starred_url":"https://api.github.com/users/dictation-toolbox/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dictation-toolbox/subscriptions","organizations_url":"https://api.github.com/users/dictation-toolbox/orgs","repos_url":"https://api.github.com/users/dictation-toolbox/repos","events_url":"https://api.github.com/users/dictation-toolbox/events{/privacy}","received_events_url":"https://api.github.com/users/dictation-toolbox/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/dictation-toolbox/aenea","description":"Client-server library for using voice macros from Dragon NaturallySpeaking and Dragonfly on remote/non-windows hosts.","fork":false,"url":"https://api.github.com/repos/dictation-toolbox/aenea","forks_url":"https://api.github.com/repos/dictation-toolbox/aenea/forks","keys_url":"https://api.github.com/repos/dictation-toolbox/aenea/keys{/key_id}","collaborators_url":"https://api.github.com/repos/dictation-toolbox/aenea/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/dictation-toolbox/aenea/teams","hooks_url":"https://api.github.com/repos/dictation-toolbox/aenea/hooks","issue_events_url":"https://api.github.com/repos/dictation-toolbox/aenea/issues/events{/number}","events_url":"https://api.github.com/repos/dictation-toolbox/aenea/events","assignees_url":"https://api.github.com/repos/dictation-toolbox/aenea/assignees{/user}","branches_url":"https://api.github.com/repos/dictation-toolbox/aenea/branches{/branch}","tags_url":"https://api.github.com/repos/dictation-toolbox/aenea/tags","blobs_url":"https://api.github.com/repos/dictation-toolbox/aenea/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/dictation-toolbox/aenea/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/dictation-toolbox/aenea/git/refs{/sha}","trees_url":"https://api.github.com/repos/dictation-toolbox/aenea/git/trees{/sha}","statuses_url":"https://api.github.com/repos/dictation-toolbox/aenea/statuses/{sha}","languages_url":"https://api.github.com/repos/dictation-toolbox/aenea/languages","stargazers_url":"https://api.github.com/repos/dictation-toolbox/aenea/stargazers","contributors_url":"https://api.github.com/repos/dictation-toolbox/aenea/contributors","subscribers_url":"https://api.github.com/repos/dictation-toolbox/aenea/subscribers","subscription_url":"https://api.github.com/repos/dictation-toolbox/aenea/subscription","commits_url":"https://api.github.com/repos/dictation-toolbox/aenea/commits{/sha}","git_commits_url":"https://api.github.com/repos/dictation-toolbox/aenea/git/commits{/sha}","comments_url":"https://api.github.com/repos/dictation-toolbox/aenea/comments{/number}","issue_comment_url":"https://api.github.com/repos/dictation-toolbox/aenea/issues/comments/{number}","contents_url":"https://api.github.com/repos/dictation-toolbox/aenea/contents/{+path}","compare_url":"https://api.github.com/repos/dictation-toolbox/aenea/compare/{base}...{head}","merges_url":"https://api.github.com/repos/dictation-toolbox/aenea/merges","archive_url":"https://api.github.com/repos/dictation-toolbox/aenea/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/dictation-toolbox/aenea/downloads","issues_url":"https://api.github.com/repos/dictation-toolbox/aenea/issues{/number}","pulls_url":"https://api.github.com/repos/dictation-toolbox/aenea/pulls{/number}","milestones_url":"https://api.github.com/repos/dictation-toolbox/aenea/milestones{/number}","notifications_url":"https://api.github.com/repos/dictation-toolbox/aenea/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/dictation-toolbox/aenea/labels{/name}","releases_url":"https://api.github.com/repos/dictation-toolbox/aenea/releases{/id}","created_at":"2013-08-30T16:57:34Z","updated_at":"2015-01-01T11:56:16Z","pushed_at":"2015-01-01T15:17:29Z","git_url":"git://github.com/dictation-toolbox/aenea.git","ssh_url":"git@github.com:dictation-toolbox/aenea.git","clone_url":"https://github.com/dictation-toolbox/aenea.git","svn_url":"https://github.com/dictation-toolbox/aenea","homepage":"","size":31549,"stargazers_count":44,"watchers_count":44,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":17,"mirror_url":null,"open_issues_count":6,"forks":17,"open_issues":6,"watchers":44,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/dictation-toolbox/aenea/pulls/81"},"html":{"href":"https://github.com/dictation-toolbox/aenea/pull/81"},"issue":{"href":"https://api.github.com/repos/dictation-toolbox/aenea/issues/81"},"comments":{"href":"https://api.github.com/repos/dictation-toolbox/aenea/issues/81/comments"},"review_comments":{"href":"https://api.github.com/repos/dictation-toolbox/aenea/pulls/81/comments"},"review_comment":{"href":"https://api.github.com/repos/dictation-toolbox/aenea/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/dictation-toolbox/aenea/pulls/81/commits"},"statuses":{"href":"https://api.github.com/repos/dictation-toolbox/aenea/statuses/cf100339191b1eb99df647ce95b61718ab4184be"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"calmofthestorm","id":187310,"avatar_url":"https://avatars.githubusercontent.com/u/187310?v=3","gravatar_id":"","url":"https://api.github.com/users/calmofthestorm","html_url":"https://github.com/calmofthestorm","followers_url":"https://api.github.com/users/calmofthestorm/followers","following_url":"https://api.github.com/users/calmofthestorm/following{/other_user}","gists_url":"https://api.github.com/users/calmofthestorm/gists{/gist_id}","starred_url":"https://api.github.com/users/calmofthestorm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/calmofthestorm/subscriptions","organizations_url":"https://api.github.com/users/calmofthestorm/orgs","repos_url":"https://api.github.com/users/calmofthestorm/repos","events_url":"https://api.github.com/users/calmofthestorm/events{/privacy}","received_events_url":"https://api.github.com/users/calmofthestorm/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":21,"deletions":17,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:17:29Z","org":{"id":8006718,"login":"dictation-toolbox","gravatar_id":"","url":"https://api.github.com/orgs/dictation-toolbox","avatar_url":"https://avatars.githubusercontent.com/u/8006718?"}} +,{"id":"2489659195","type":"PullRequestEvent","actor":{"id":3244965,"login":"kaikreuzer","gravatar_id":"","url":"https://api.github.com/users/kaikreuzer","avatar_url":"https://avatars.githubusercontent.com/u/3244965?"},"repo":{"id":15778981,"name":"eclipse/smarthome","url":"https://api.github.com/repos/eclipse/smarthome"},"payload":{"action":"opened","number":140,"pull_request":{"url":"https://api.github.com/repos/eclipse/smarthome/pulls/140","id":26743902,"html_url":"https://github.com/eclipse/smarthome/pull/140","diff_url":"https://github.com/eclipse/smarthome/pull/140.diff","patch_url":"https://github.com/eclipse/smarthome/pull/140.patch","issue_url":"https://api.github.com/repos/eclipse/smarthome/issues/140","number":140,"state":"open","locked":false,"title":"updated license headers for 2015","user":{"login":"kaikreuzer","id":3244965,"avatar_url":"https://avatars.githubusercontent.com/u/3244965?v=3","gravatar_id":"","url":"https://api.github.com/users/kaikreuzer","html_url":"https://github.com/kaikreuzer","followers_url":"https://api.github.com/users/kaikreuzer/followers","following_url":"https://api.github.com/users/kaikreuzer/following{/other_user}","gists_url":"https://api.github.com/users/kaikreuzer/gists{/gist_id}","starred_url":"https://api.github.com/users/kaikreuzer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kaikreuzer/subscriptions","organizations_url":"https://api.github.com/users/kaikreuzer/orgs","repos_url":"https://api.github.com/users/kaikreuzer/repos","events_url":"https://api.github.com/users/kaikreuzer/events{/privacy}","received_events_url":"https://api.github.com/users/kaikreuzer/received_events","type":"User","site_admin":false},"body":"Signed-off-by: Kai Kreuzer ","created_at":"2015-01-01T15:17:28Z","updated_at":"2015-01-01T15:17:28Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/eclipse/smarthome/pulls/140/commits","review_comments_url":"https://api.github.com/repos/eclipse/smarthome/pulls/140/comments","review_comment_url":"https://api.github.com/repos/eclipse/smarthome/pulls/comments/{number}","comments_url":"https://api.github.com/repos/eclipse/smarthome/issues/140/comments","statuses_url":"https://api.github.com/repos/eclipse/smarthome/statuses/6f72b79addb94a0325afc7319f33370220c48f98","head":{"label":"kaikreuzer:update-license-headers","ref":"update-license-headers","sha":"6f72b79addb94a0325afc7319f33370220c48f98","user":{"login":"kaikreuzer","id":3244965,"avatar_url":"https://avatars.githubusercontent.com/u/3244965?v=3","gravatar_id":"","url":"https://api.github.com/users/kaikreuzer","html_url":"https://github.com/kaikreuzer","followers_url":"https://api.github.com/users/kaikreuzer/followers","following_url":"https://api.github.com/users/kaikreuzer/following{/other_user}","gists_url":"https://api.github.com/users/kaikreuzer/gists{/gist_id}","starred_url":"https://api.github.com/users/kaikreuzer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kaikreuzer/subscriptions","organizations_url":"https://api.github.com/users/kaikreuzer/orgs","repos_url":"https://api.github.com/users/kaikreuzer/repos","events_url":"https://api.github.com/users/kaikreuzer/events{/privacy}","received_events_url":"https://api.github.com/users/kaikreuzer/received_events","type":"User","site_admin":false},"repo":{"id":15803647,"name":"smarthome","full_name":"kaikreuzer/smarthome","owner":{"login":"kaikreuzer","id":3244965,"avatar_url":"https://avatars.githubusercontent.com/u/3244965?v=3","gravatar_id":"","url":"https://api.github.com/users/kaikreuzer","html_url":"https://github.com/kaikreuzer","followers_url":"https://api.github.com/users/kaikreuzer/followers","following_url":"https://api.github.com/users/kaikreuzer/following{/other_user}","gists_url":"https://api.github.com/users/kaikreuzer/gists{/gist_id}","starred_url":"https://api.github.com/users/kaikreuzer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kaikreuzer/subscriptions","organizations_url":"https://api.github.com/users/kaikreuzer/orgs","repos_url":"https://api.github.com/users/kaikreuzer/repos","events_url":"https://api.github.com/users/kaikreuzer/events{/privacy}","received_events_url":"https://api.github.com/users/kaikreuzer/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/kaikreuzer/smarthome","description":"Eclipse SmartHome project","fork":true,"url":"https://api.github.com/repos/kaikreuzer/smarthome","forks_url":"https://api.github.com/repos/kaikreuzer/smarthome/forks","keys_url":"https://api.github.com/repos/kaikreuzer/smarthome/keys{/key_id}","collaborators_url":"https://api.github.com/repos/kaikreuzer/smarthome/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/kaikreuzer/smarthome/teams","hooks_url":"https://api.github.com/repos/kaikreuzer/smarthome/hooks","issue_events_url":"https://api.github.com/repos/kaikreuzer/smarthome/issues/events{/number}","events_url":"https://api.github.com/repos/kaikreuzer/smarthome/events","assignees_url":"https://api.github.com/repos/kaikreuzer/smarthome/assignees{/user}","branches_url":"https://api.github.com/repos/kaikreuzer/smarthome/branches{/branch}","tags_url":"https://api.github.com/repos/kaikreuzer/smarthome/tags","blobs_url":"https://api.github.com/repos/kaikreuzer/smarthome/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/kaikreuzer/smarthome/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/kaikreuzer/smarthome/git/refs{/sha}","trees_url":"https://api.github.com/repos/kaikreuzer/smarthome/git/trees{/sha}","statuses_url":"https://api.github.com/repos/kaikreuzer/smarthome/statuses/{sha}","languages_url":"https://api.github.com/repos/kaikreuzer/smarthome/languages","stargazers_url":"https://api.github.com/repos/kaikreuzer/smarthome/stargazers","contributors_url":"https://api.github.com/repos/kaikreuzer/smarthome/contributors","subscribers_url":"https://api.github.com/repos/kaikreuzer/smarthome/subscribers","subscription_url":"https://api.github.com/repos/kaikreuzer/smarthome/subscription","commits_url":"https://api.github.com/repos/kaikreuzer/smarthome/commits{/sha}","git_commits_url":"https://api.github.com/repos/kaikreuzer/smarthome/git/commits{/sha}","comments_url":"https://api.github.com/repos/kaikreuzer/smarthome/comments{/number}","issue_comment_url":"https://api.github.com/repos/kaikreuzer/smarthome/issues/comments/{number}","contents_url":"https://api.github.com/repos/kaikreuzer/smarthome/contents/{+path}","compare_url":"https://api.github.com/repos/kaikreuzer/smarthome/compare/{base}...{head}","merges_url":"https://api.github.com/repos/kaikreuzer/smarthome/merges","archive_url":"https://api.github.com/repos/kaikreuzer/smarthome/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/kaikreuzer/smarthome/downloads","issues_url":"https://api.github.com/repos/kaikreuzer/smarthome/issues{/number}","pulls_url":"https://api.github.com/repos/kaikreuzer/smarthome/pulls{/number}","milestones_url":"https://api.github.com/repos/kaikreuzer/smarthome/milestones{/number}","notifications_url":"https://api.github.com/repos/kaikreuzer/smarthome/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/kaikreuzer/smarthome/labels{/name}","releases_url":"https://api.github.com/repos/kaikreuzer/smarthome/releases{/id}","created_at":"2014-01-10T16:46:33Z","updated_at":"2014-03-10T15:41:51Z","pushed_at":"2015-01-01T15:17:02Z","git_url":"git://github.com/kaikreuzer/smarthome.git","ssh_url":"git@github.com:kaikreuzer/smarthome.git","clone_url":"https://github.com/kaikreuzer/smarthome.git","svn_url":"https://github.com/kaikreuzer/smarthome","homepage":null,"size":5744,"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":0,"forks":0,"open_issues":0,"watchers":1,"default_branch":"master"}},"base":{"label":"eclipse:master","ref":"master","sha":"0800e825b4a4895ad0ab5e3e48b142c3c285e343","user":{"login":"eclipse","id":56974,"avatar_url":"https://avatars.githubusercontent.com/u/56974?v=3","gravatar_id":"","url":"https://api.github.com/users/eclipse","html_url":"https://github.com/eclipse","followers_url":"https://api.github.com/users/eclipse/followers","following_url":"https://api.github.com/users/eclipse/following{/other_user}","gists_url":"https://api.github.com/users/eclipse/gists{/gist_id}","starred_url":"https://api.github.com/users/eclipse/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eclipse/subscriptions","organizations_url":"https://api.github.com/users/eclipse/orgs","repos_url":"https://api.github.com/users/eclipse/repos","events_url":"https://api.github.com/users/eclipse/events{/privacy}","received_events_url":"https://api.github.com/users/eclipse/received_events","type":"Organization","site_admin":false},"repo":{"id":15778981,"name":"smarthome","full_name":"eclipse/smarthome","owner":{"login":"eclipse","id":56974,"avatar_url":"https://avatars.githubusercontent.com/u/56974?v=3","gravatar_id":"","url":"https://api.github.com/users/eclipse","html_url":"https://github.com/eclipse","followers_url":"https://api.github.com/users/eclipse/followers","following_url":"https://api.github.com/users/eclipse/following{/other_user}","gists_url":"https://api.github.com/users/eclipse/gists{/gist_id}","starred_url":"https://api.github.com/users/eclipse/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eclipse/subscriptions","organizations_url":"https://api.github.com/users/eclipse/orgs","repos_url":"https://api.github.com/users/eclipse/repos","events_url":"https://api.github.com/users/eclipse/events{/privacy}","received_events_url":"https://api.github.com/users/eclipse/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/eclipse/smarthome","description":"Eclipse SmartHome project","fork":false,"url":"https://api.github.com/repos/eclipse/smarthome","forks_url":"https://api.github.com/repos/eclipse/smarthome/forks","keys_url":"https://api.github.com/repos/eclipse/smarthome/keys{/key_id}","collaborators_url":"https://api.github.com/repos/eclipse/smarthome/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/eclipse/smarthome/teams","hooks_url":"https://api.github.com/repos/eclipse/smarthome/hooks","issue_events_url":"https://api.github.com/repos/eclipse/smarthome/issues/events{/number}","events_url":"https://api.github.com/repos/eclipse/smarthome/events","assignees_url":"https://api.github.com/repos/eclipse/smarthome/assignees{/user}","branches_url":"https://api.github.com/repos/eclipse/smarthome/branches{/branch}","tags_url":"https://api.github.com/repos/eclipse/smarthome/tags","blobs_url":"https://api.github.com/repos/eclipse/smarthome/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/eclipse/smarthome/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/eclipse/smarthome/git/refs{/sha}","trees_url":"https://api.github.com/repos/eclipse/smarthome/git/trees{/sha}","statuses_url":"https://api.github.com/repos/eclipse/smarthome/statuses/{sha}","languages_url":"https://api.github.com/repos/eclipse/smarthome/languages","stargazers_url":"https://api.github.com/repos/eclipse/smarthome/stargazers","contributors_url":"https://api.github.com/repos/eclipse/smarthome/contributors","subscribers_url":"https://api.github.com/repos/eclipse/smarthome/subscribers","subscription_url":"https://api.github.com/repos/eclipse/smarthome/subscription","commits_url":"https://api.github.com/repos/eclipse/smarthome/commits{/sha}","git_commits_url":"https://api.github.com/repos/eclipse/smarthome/git/commits{/sha}","comments_url":"https://api.github.com/repos/eclipse/smarthome/comments{/number}","issue_comment_url":"https://api.github.com/repos/eclipse/smarthome/issues/comments/{number}","contents_url":"https://api.github.com/repos/eclipse/smarthome/contents/{+path}","compare_url":"https://api.github.com/repos/eclipse/smarthome/compare/{base}...{head}","merges_url":"https://api.github.com/repos/eclipse/smarthome/merges","archive_url":"https://api.github.com/repos/eclipse/smarthome/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/eclipse/smarthome/downloads","issues_url":"https://api.github.com/repos/eclipse/smarthome/issues{/number}","pulls_url":"https://api.github.com/repos/eclipse/smarthome/pulls{/number}","milestones_url":"https://api.github.com/repos/eclipse/smarthome/milestones{/number}","notifications_url":"https://api.github.com/repos/eclipse/smarthome/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/eclipse/smarthome/labels{/name}","releases_url":"https://api.github.com/repos/eclipse/smarthome/releases{/id}","created_at":"2014-01-09T20:47:19Z","updated_at":"2014-12-30T09:22:07Z","pushed_at":"2014-12-30T09:22:06Z","git_url":"git://github.com/eclipse/smarthome.git","ssh_url":"git@github.com:eclipse/smarthome.git","clone_url":"https://github.com/eclipse/smarthome.git","svn_url":"https://github.com/eclipse/smarthome","homepage":null,"size":7651,"stargazers_count":78,"watchers_count":78,"language":"Java","has_issues":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":74,"mirror_url":null,"open_issues_count":5,"forks":74,"open_issues":5,"watchers":78,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/eclipse/smarthome/pulls/140"},"html":{"href":"https://github.com/eclipse/smarthome/pull/140"},"issue":{"href":"https://api.github.com/repos/eclipse/smarthome/issues/140"},"comments":{"href":"https://api.github.com/repos/eclipse/smarthome/issues/140/comments"},"review_comments":{"href":"https://api.github.com/repos/eclipse/smarthome/pulls/140/comments"},"review_comment":{"href":"https://api.github.com/repos/eclipse/smarthome/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/eclipse/smarthome/pulls/140/commits"},"statuses":{"href":"https://api.github.com/repos/eclipse/smarthome/statuses/6f72b79addb94a0325afc7319f33370220c48f98"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":410,"deletions":283,"changed_files":638}},"public":true,"created_at":"2015-01-01T15:17:29Z","org":{"id":56974,"login":"eclipse","gravatar_id":"","url":"https://api.github.com/orgs/eclipse","avatar_url":"https://avatars.githubusercontent.com/u/56974?"}} +,{"id":"2489659196","type":"PushEvent","actor":{"id":187310,"login":"calmofthestorm","gravatar_id":"","url":"https://api.github.com/users/calmofthestorm","avatar_url":"https://avatars.githubusercontent.com/u/187310?"},"repo":{"id":12491239,"name":"dictation-toolbox/aenea","url":"https://api.github.com/repos/dictation-toolbox/aenea"},"payload":{"push_id":536867646,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"7d6588fef9668b26e23ac4d335412ae617666997","before":"85c0b17ffb890c34ed36b52f509ecf06f33295af","commits":[{"sha":"cf100339191b1eb99df647ce95b61718ab4184be","author":{"email":"d2aa297dc07a37a377c3fb123a09969f7a199bcc@bandwidth.com","name":"mzizzi"},"message":"support get_context failing to return a pid for a window","distinct":true,"url":"https://api.github.com/repos/dictation-toolbox/aenea/commits/cf100339191b1eb99df647ce95b61718ab4184be"},{"sha":"7d6588fef9668b26e23ac4d335412ae617666997","author":{"email":"60c6d277a8bd81de7fdde19201bf9c58a3df08f4@aroper.net","name":"Alex Roper"},"message":"Merge pull request #81 from mzizzi/master\n\nsupport get_context failing to return a pid for a window","distinct":true,"url":"https://api.github.com/repos/dictation-toolbox/aenea/commits/7d6588fef9668b26e23ac4d335412ae617666997"}]},"public":true,"created_at":"2015-01-01T15:17:29Z","org":{"id":8006718,"login":"dictation-toolbox","gravatar_id":"","url":"https://api.github.com/orgs/dictation-toolbox","avatar_url":"https://avatars.githubusercontent.com/u/8006718?"}} +,{"id":"2489659199","type":"WatchEvent","actor":{"id":831962,"login":"bgruszka","gravatar_id":"","url":"https://api.github.com/users/bgruszka","avatar_url":"https://avatars.githubusercontent.com/u/831962?"},"repo":{"id":12512833,"name":"philipwalton/solved-by-flexbox","url":"https://api.github.com/repos/philipwalton/solved-by-flexbox"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:29Z"} +,{"id":"2489659203","type":"PushEvent","actor":{"id":6405468,"login":"AHartNtkn","gravatar_id":"","url":"https://api.github.com/users/AHartNtkn","avatar_url":"https://avatars.githubusercontent.com/u/6405468?"},"repo":{"id":27180969,"name":"AHartNtkn/Misc-Agda-Files","url":"https://api.github.com/repos/AHartNtkn/Misc-Agda-Files"},"payload":{"push_id":536867650,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6eff808bad5f77f069e472c201eeabd28a67b9c8","before":"281a46b27d7b4d6f48191d380a49efb9841e0b91","commits":[{"sha":"6eff808bad5f77f069e472c201eeabd28a67b9c8","author":{"email":"8966ce2ddb13c4ca62ee342759327136f0020195@gmail.com","name":"AHartNtkn"},"message":"simplify code","distinct":true,"url":"https://api.github.com/repos/AHartNtkn/Misc-Agda-Files/commits/6eff808bad5f77f069e472c201eeabd28a67b9c8"}]},"public":true,"created_at":"2015-01-01T15:17:30Z"} +,{"id":"2489659210","type":"ForkEvent","actor":{"id":3174391,"login":"joobn72","gravatar_id":"","url":"https://api.github.com/users/joobn72","avatar_url":"https://avatars.githubusercontent.com/u/3174391?"},"repo":{"id":22722307,"name":"xpadro/concurrency","url":"https://api.github.com/repos/xpadro/concurrency"},"payload":{"forkee":{"id":28688922,"name":"concurrency","full_name":"joobn72/concurrency","owner":{"login":"joobn72","id":3174391,"avatar_url":"https://avatars.githubusercontent.com/u/3174391?v=3","gravatar_id":"","url":"https://api.github.com/users/joobn72","html_url":"https://github.com/joobn72","followers_url":"https://api.github.com/users/joobn72/followers","following_url":"https://api.github.com/users/joobn72/following{/other_user}","gists_url":"https://api.github.com/users/joobn72/gists{/gist_id}","starred_url":"https://api.github.com/users/joobn72/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/joobn72/subscriptions","organizations_url":"https://api.github.com/users/joobn72/orgs","repos_url":"https://api.github.com/users/joobn72/repos","events_url":"https://api.github.com/users/joobn72/events{/privacy}","received_events_url":"https://api.github.com/users/joobn72/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/joobn72/concurrency","description":"Java Concurrency Samples","fork":true,"url":"https://api.github.com/repos/joobn72/concurrency","forks_url":"https://api.github.com/repos/joobn72/concurrency/forks","keys_url":"https://api.github.com/repos/joobn72/concurrency/keys{/key_id}","collaborators_url":"https://api.github.com/repos/joobn72/concurrency/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/joobn72/concurrency/teams","hooks_url":"https://api.github.com/repos/joobn72/concurrency/hooks","issue_events_url":"https://api.github.com/repos/joobn72/concurrency/issues/events{/number}","events_url":"https://api.github.com/repos/joobn72/concurrency/events","assignees_url":"https://api.github.com/repos/joobn72/concurrency/assignees{/user}","branches_url":"https://api.github.com/repos/joobn72/concurrency/branches{/branch}","tags_url":"https://api.github.com/repos/joobn72/concurrency/tags","blobs_url":"https://api.github.com/repos/joobn72/concurrency/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/joobn72/concurrency/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/joobn72/concurrency/git/refs{/sha}","trees_url":"https://api.github.com/repos/joobn72/concurrency/git/trees{/sha}","statuses_url":"https://api.github.com/repos/joobn72/concurrency/statuses/{sha}","languages_url":"https://api.github.com/repos/joobn72/concurrency/languages","stargazers_url":"https://api.github.com/repos/joobn72/concurrency/stargazers","contributors_url":"https://api.github.com/repos/joobn72/concurrency/contributors","subscribers_url":"https://api.github.com/repos/joobn72/concurrency/subscribers","subscription_url":"https://api.github.com/repos/joobn72/concurrency/subscription","commits_url":"https://api.github.com/repos/joobn72/concurrency/commits{/sha}","git_commits_url":"https://api.github.com/repos/joobn72/concurrency/git/commits{/sha}","comments_url":"https://api.github.com/repos/joobn72/concurrency/comments{/number}","issue_comment_url":"https://api.github.com/repos/joobn72/concurrency/issues/comments/{number}","contents_url":"https://api.github.com/repos/joobn72/concurrency/contents/{+path}","compare_url":"https://api.github.com/repos/joobn72/concurrency/compare/{base}...{head}","merges_url":"https://api.github.com/repos/joobn72/concurrency/merges","archive_url":"https://api.github.com/repos/joobn72/concurrency/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/joobn72/concurrency/downloads","issues_url":"https://api.github.com/repos/joobn72/concurrency/issues{/number}","pulls_url":"https://api.github.com/repos/joobn72/concurrency/pulls{/number}","milestones_url":"https://api.github.com/repos/joobn72/concurrency/milestones{/number}","notifications_url":"https://api.github.com/repos/joobn72/concurrency/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/joobn72/concurrency/labels{/name}","releases_url":"https://api.github.com/repos/joobn72/concurrency/releases{/id}","created_at":"2015-01-01T15:17:31Z","updated_at":"2014-09-28T06:45:42Z","pushed_at":"2014-09-01T15:19:49Z","git_url":"git://github.com/joobn72/concurrency.git","ssh_url":"git@github.com:joobn72/concurrency.git","clone_url":"https://github.com/joobn72/concurrency.git","svn_url":"https://github.com/joobn72/concurrency","homepage":null,"size":292,"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:17:31Z"} +,{"id":"2489659213","type":"PushEvent","actor":{"id":963332,"login":"srjohn","gravatar_id":"","url":"https://api.github.com/users/srjohn","avatar_url":"https://avatars.githubusercontent.com/u/963332?"},"repo":{"id":28641735,"name":"srjohn/johnson.net","url":"https://api.github.com/repos/srjohn/johnson.net"},"payload":{"push_id":536867652,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bb5036ab0831e21f43e0b93b49ed74b133bf2212","before":"e1d40d79fe6e7e11a6544fd685f3fb7d0e755c6e","commits":[{"sha":"bb5036ab0831e21f43e0b93b49ed74b133bf2212","author":{"email":"2d0d6e067e8bcc899be99ccee58b7d2eac3733c3@gmail.com","name":"sercan.akmaz"},"message":"nugets created","distinct":true,"url":"https://api.github.com/repos/srjohn/johnson.net/commits/bb5036ab0831e21f43e0b93b49ed74b133bf2212"}]},"public":true,"created_at":"2015-01-01T15:17:32Z"} +,{"id":"2489659216","type":"IssueCommentEvent","actor":{"id":1588951,"login":"TAGC","gravatar_id":"","url":"https://api.github.com/users/TAGC","avatar_url":"https://avatars.githubusercontent.com/u/1588951?"},"repo":{"id":4810310,"name":"SonarCommunity/sonar-groovy","url":"https://api.github.com/repos/SonarCommunity/sonar-groovy"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/SonarCommunity/sonar-groovy/issues/3","labels_url":"https://api.github.com/repos/SonarCommunity/sonar-groovy/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/SonarCommunity/sonar-groovy/issues/3/comments","events_url":"https://api.github.com/repos/SonarCommunity/sonar-groovy/issues/3/events","html_url":"https://github.com/SonarCommunity/sonar-groovy/pull/3","id":14589005,"number":3,"title":"Added jacoco support for groovy projects","user":{"login":"asaarela","id":4489467,"avatar_url":"https://avatars.githubusercontent.com/u/4489467?v=3","gravatar_id":"","url":"https://api.github.com/users/asaarela","html_url":"https://github.com/asaarela","followers_url":"https://api.github.com/users/asaarela/followers","following_url":"https://api.github.com/users/asaarela/following{/other_user}","gists_url":"https://api.github.com/users/asaarela/gists{/gist_id}","starred_url":"https://api.github.com/users/asaarela/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asaarela/subscriptions","organizations_url":"https://api.github.com/users/asaarela/orgs","repos_url":"https://api.github.com/users/asaarela/repos","events_url":"https://api.github.com/users/asaarela/events{/privacy}","received_events_url":"https://api.github.com/users/asaarela/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":14,"created_at":"2013-05-21T20:25:30Z","updated_at":"2015-01-01T15:17:33Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/SonarCommunity/sonar-groovy/pulls/3","html_url":"https://github.com/SonarCommunity/sonar-groovy/pull/3","diff_url":"https://github.com/SonarCommunity/sonar-groovy/pull/3.diff","patch_url":"https://github.com/SonarCommunity/sonar-groovy/pull/3.patch"},"body":"Standing on the shoulders of the java-jacoco sonar plugin, a quick implementation of groovy-jacoco support for sonar. Works for both unit and integration tests."},"comment":{"url":"https://api.github.com/repos/SonarCommunity/sonar-groovy/issues/comments/68488863","html_url":"https://github.com/SonarCommunity/sonar-groovy/pull/3#issuecomment-68488863","issue_url":"https://api.github.com/repos/SonarCommunity/sonar-groovy/issues/3","id":68488863,"user":{"login":"TAGC","id":1588951,"avatar_url":"https://avatars.githubusercontent.com/u/1588951?v=3","gravatar_id":"","url":"https://api.github.com/users/TAGC","html_url":"https://github.com/TAGC","followers_url":"https://api.github.com/users/TAGC/followers","following_url":"https://api.github.com/users/TAGC/following{/other_user}","gists_url":"https://api.github.com/users/TAGC/gists{/gist_id}","starred_url":"https://api.github.com/users/TAGC/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TAGC/subscriptions","organizations_url":"https://api.github.com/users/TAGC/orgs","repos_url":"https://api.github.com/users/TAGC/repos","events_url":"https://api.github.com/users/TAGC/events{/privacy}","received_events_url":"https://api.github.com/users/TAGC/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:17:33Z","updated_at":"2015-01-01T15:17:33Z","body":"I'm just throwing in my vocal support for this patch since I'm forced to use Jacoco to analyse my project (written in Groovy) and would like to see coverage metrics on Sonar."}},"public":true,"created_at":"2015-01-01T15:17:33Z","org":{"id":1303819,"login":"SonarCommunity","gravatar_id":"","url":"https://api.github.com/orgs/SonarCommunity","avatar_url":"https://avatars.githubusercontent.com/u/1303819?"}} +,{"id":"2489659217","type":"PushEvent","actor":{"id":395659,"login":"timocramer","gravatar_id":"","url":"https://api.github.com/users/timocramer","avatar_url":"https://avatars.githubusercontent.com/u/395659?"},"repo":{"id":10891555,"name":"timocramer/gbasm","url":"https://api.github.com/repos/timocramer/gbasm"},"payload":{"push_id":536867654,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5f529db1e63fe234b9bc0dd366b488167444fc5f","before":"f4bcbc88f8d917d2f792134e2e146c127cf6746e","commits":[{"sha":"5f529db1e63fe234b9bc0dd366b488167444fc5f","author":{"email":"1564bf4362a53f49d845b92fb8689f42f7951909@tu-dortmund.de","name":"Timo Cramer"},"message":"change Makefile and PKGBUILD to install correctly","distinct":true,"url":"https://api.github.com/repos/timocramer/gbasm/commits/5f529db1e63fe234b9bc0dd366b488167444fc5f"}]},"public":true,"created_at":"2015-01-01T15:17:33Z"} +,{"id":"2489659219","type":"PullRequestEvent","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":{"action":"opened","number":1,"pull_request":{"url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/pulls/1","id":26743903,"html_url":"https://github.com/AxelRL/AxelRL.github.io/pull/1","diff_url":"https://github.com/AxelRL/AxelRL.github.io/pull/1.diff","patch_url":"https://github.com/AxelRL/AxelRL.github.io/pull/1.patch","issue_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/issues/1","number":1,"state":"open","locked":false,"title":"Byta till svenska","user":{"login":"AxelRL","id":10364582,"avatar_url":"https://avatars.githubusercontent.com/u/10364582?v=3","gravatar_id":"","url":"https://api.github.com/users/AxelRL","html_url":"https://github.com/AxelRL","followers_url":"https://api.github.com/users/AxelRL/followers","following_url":"https://api.github.com/users/AxelRL/following{/other_user}","gists_url":"https://api.github.com/users/AxelRL/gists{/gist_id}","starred_url":"https://api.github.com/users/AxelRL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AxelRL/subscriptions","organizations_url":"https://api.github.com/users/AxelRL/orgs","repos_url":"https://api.github.com/users/AxelRL/repos","events_url":"https://api.github.com/users/AxelRL/events{/privacy}","received_events_url":"https://api.github.com/users/AxelRL/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:17:33Z","updated_at":"2015-01-01T15:17:33Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/pulls/1/commits","review_comments_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/pulls/1/comments","review_comment_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/pulls/comments/{number}","comments_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/issues/1/comments","statuses_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/statuses/f89c6b1aa9aa0572fcdd2507b798f5ba4bcbcea6","head":{"label":"AxelRL:byta-till-svenska","ref":"byta-till-svenska","sha":"f89c6b1aa9aa0572fcdd2507b798f5ba4bcbcea6","user":{"login":"AxelRL","id":10364582,"avatar_url":"https://avatars.githubusercontent.com/u/10364582?v=3","gravatar_id":"","url":"https://api.github.com/users/AxelRL","html_url":"https://github.com/AxelRL","followers_url":"https://api.github.com/users/AxelRL/followers","following_url":"https://api.github.com/users/AxelRL/following{/other_user}","gists_url":"https://api.github.com/users/AxelRL/gists{/gist_id}","starred_url":"https://api.github.com/users/AxelRL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AxelRL/subscriptions","organizations_url":"https://api.github.com/users/AxelRL/orgs","repos_url":"https://api.github.com/users/AxelRL/repos","events_url":"https://api.github.com/users/AxelRL/events{/privacy}","received_events_url":"https://api.github.com/users/AxelRL/received_events","type":"User","site_admin":false},"repo":{"id":28688617,"name":"AxelRL.github.io","full_name":"AxelRL/AxelRL.github.io","owner":{"login":"AxelRL","id":10364582,"avatar_url":"https://avatars.githubusercontent.com/u/10364582?v=3","gravatar_id":"","url":"https://api.github.com/users/AxelRL","html_url":"https://github.com/AxelRL","followers_url":"https://api.github.com/users/AxelRL/followers","following_url":"https://api.github.com/users/AxelRL/following{/other_user}","gists_url":"https://api.github.com/users/AxelRL/gists{/gist_id}","starred_url":"https://api.github.com/users/AxelRL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AxelRL/subscriptions","organizations_url":"https://api.github.com/users/AxelRL/orgs","repos_url":"https://api.github.com/users/AxelRL/repos","events_url":"https://api.github.com/users/AxelRL/events{/privacy}","received_events_url":"https://api.github.com/users/AxelRL/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/AxelRL/AxelRL.github.io","description":"Min hemsida","fork":false,"url":"https://api.github.com/repos/AxelRL/AxelRL.github.io","forks_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/forks","keys_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/teams","hooks_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/hooks","issue_events_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/events","assignees_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/tags","blobs_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/languages","stargazers_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/stargazers","contributors_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/contributors","subscribers_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/subscribers","subscription_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/subscription","commits_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/merges","archive_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/downloads","issues_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/labels{/name}","releases_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/releases{/id}","created_at":"2015-01-01T15:01:13Z","updated_at":"2015-01-01T15:01:13Z","pushed_at":"2015-01-01T15:16:32Z","git_url":"git://github.com/AxelRL/AxelRL.github.io.git","ssh_url":"git@github.com:AxelRL/AxelRL.github.io.git","clone_url":"https://github.com/AxelRL/AxelRL.github.io.git","svn_url":"https://github.com/AxelRL/AxelRL.github.io","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"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"}},"base":{"label":"AxelRL:master","ref":"master","sha":"30765d4e5d4043954ee74a51e00c4132adbecbe4","user":{"login":"AxelRL","id":10364582,"avatar_url":"https://avatars.githubusercontent.com/u/10364582?v=3","gravatar_id":"","url":"https://api.github.com/users/AxelRL","html_url":"https://github.com/AxelRL","followers_url":"https://api.github.com/users/AxelRL/followers","following_url":"https://api.github.com/users/AxelRL/following{/other_user}","gists_url":"https://api.github.com/users/AxelRL/gists{/gist_id}","starred_url":"https://api.github.com/users/AxelRL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AxelRL/subscriptions","organizations_url":"https://api.github.com/users/AxelRL/orgs","repos_url":"https://api.github.com/users/AxelRL/repos","events_url":"https://api.github.com/users/AxelRL/events{/privacy}","received_events_url":"https://api.github.com/users/AxelRL/received_events","type":"User","site_admin":false},"repo":{"id":28688617,"name":"AxelRL.github.io","full_name":"AxelRL/AxelRL.github.io","owner":{"login":"AxelRL","id":10364582,"avatar_url":"https://avatars.githubusercontent.com/u/10364582?v=3","gravatar_id":"","url":"https://api.github.com/users/AxelRL","html_url":"https://github.com/AxelRL","followers_url":"https://api.github.com/users/AxelRL/followers","following_url":"https://api.github.com/users/AxelRL/following{/other_user}","gists_url":"https://api.github.com/users/AxelRL/gists{/gist_id}","starred_url":"https://api.github.com/users/AxelRL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AxelRL/subscriptions","organizations_url":"https://api.github.com/users/AxelRL/orgs","repos_url":"https://api.github.com/users/AxelRL/repos","events_url":"https://api.github.com/users/AxelRL/events{/privacy}","received_events_url":"https://api.github.com/users/AxelRL/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/AxelRL/AxelRL.github.io","description":"Min hemsida","fork":false,"url":"https://api.github.com/repos/AxelRL/AxelRL.github.io","forks_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/forks","keys_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/teams","hooks_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/hooks","issue_events_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/events","assignees_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/tags","blobs_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/languages","stargazers_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/stargazers","contributors_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/contributors","subscribers_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/subscribers","subscription_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/subscription","commits_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/merges","archive_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/downloads","issues_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/labels{/name}","releases_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/releases{/id}","created_at":"2015-01-01T15:01:13Z","updated_at":"2015-01-01T15:01:13Z","pushed_at":"2015-01-01T15:16:32Z","git_url":"git://github.com/AxelRL/AxelRL.github.io.git","ssh_url":"git@github.com:AxelRL/AxelRL.github.io.git","clone_url":"https://github.com/AxelRL/AxelRL.github.io.git","svn_url":"https://github.com/AxelRL/AxelRL.github.io","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"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/AxelRL/AxelRL.github.io/pulls/1"},"html":{"href":"https://github.com/AxelRL/AxelRL.github.io/pull/1"},"issue":{"href":"https://api.github.com/repos/AxelRL/AxelRL.github.io/issues/1"},"comments":{"href":"https://api.github.com/repos/AxelRL/AxelRL.github.io/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/AxelRL/AxelRL.github.io/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/AxelRL/AxelRL.github.io/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/AxelRL/AxelRL.github.io/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/AxelRL/AxelRL.github.io/statuses/f89c6b1aa9aa0572fcdd2507b798f5ba4bcbcea6"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":2,"additions":3,"deletions":3,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:17:33Z"} +,{"id":"2489659220","type":"PushEvent","actor":{"id":4303,"login":"jdalton","gravatar_id":"","url":"https://api.github.com/users/jdalton","avatar_url":"https://avatars.githubusercontent.com/u/4303?"},"repo":{"id":12422224,"name":"lodash/lodash-cli","url":"https://api.github.com/repos/lodash/lodash-cli"},"payload":{"push_id":536867655,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"abfd86f33f51cbe34160943ee5c2eecf4581d517","before":"b3522b2ed94476950b44a88b556eaad5892d3ba3","commits":[{"sha":"7bf8b5c6aa825e24ff3812b7a080076bcb9145cc","author":{"email":"16ff413dde82a787f909315ffd4d518aef07016d@gmail.com","name":"John-David Dalton"},"message":"Fix build test fails.","distinct":true,"url":"https://api.github.com/repos/lodash/lodash-cli/commits/7bf8b5c6aa825e24ff3812b7a080076bcb9145cc"},{"sha":"7835e442ac2fe79cfea94b47d8dc0e9795b45070","author":{"email":"16ff413dde82a787f909315ffd4d518aef07016d@gmail.com","name":"John-David Dalton"},"message":"Sort lists for easier inspection.","distinct":true,"url":"https://api.github.com/repos/lodash/lodash-cli/commits/7835e442ac2fe79cfea94b47d8dc0e9795b45070"},{"sha":"abfd86f33f51cbe34160943ee5c2eecf4581d517","author":{"email":"16ff413dde82a787f909315ffd4d518aef07016d@gmail.com","name":"John-David Dalton"},"message":"Minor style nit.","distinct":true,"url":"https://api.github.com/repos/lodash/lodash-cli/commits/abfd86f33f51cbe34160943ee5c2eecf4581d517"}]},"public":true,"created_at":"2015-01-01T15:17:34Z","org":{"id":2565403,"login":"lodash","gravatar_id":"","url":"https://api.github.com/orgs/lodash","avatar_url":"https://avatars.githubusercontent.com/u/2565403?"}} +,{"id":"2489659222","type":"PushEvent","actor":{"id":446052,"login":"nolsto","gravatar_id":"","url":"https://api.github.com/users/nolsto","avatar_url":"https://avatars.githubusercontent.com/u/446052?"},"repo":{"id":28276935,"name":"nolsto/beets-follow","url":"https://api.github.com/repos/nolsto/beets-follow"},"payload":{"push_id":536867657,"size":5,"distinct_size":0,"ref":"refs/heads/master","head":"1dc0aa79b519ed7c63b5375deecc9c1418b15262","before":"7158e903d7d0c94af3f69b5f7e0df40aa3e112f0","commits":[{"sha":"89c5e4b614bffc33d907b5ad2ef9adcd2c088d2b","author":{"email":"2b78f1a11b050030c931d98cf25a8c2d3b85b913@nolsto.com","name":"Nolan"},"message":"Added license, Python package and beginning of setup.","distinct":false,"url":"https://api.github.com/repos/nolsto/beets-follow/commits/89c5e4b614bffc33d907b5ad2ef9adcd2c088d2b"},{"sha":"092942e9494bd61bdc51a86c9bc697aa127b7915","author":{"email":"2b78f1a11b050030c931d98cf25a8c2d3b85b913@nolsto.com","name":"Nolan"},"message":"Modified readme for package distribution. Added readme as long form description in package setup.","distinct":false,"url":"https://api.github.com/repos/nolsto/beets-follow/commits/092942e9494bd61bdc51a86c9bc697aa127b7915"},{"sha":"9969715e72fed3d559df9b28b5384dc26c4348d7","author":{"email":"2b78f1a11b050030c931d98cf25a8c2d3b85b913@nolsto.com","name":"Nolan"},"message":"Readme layout.","distinct":false,"url":"https://api.github.com/repos/nolsto/beets-follow/commits/9969715e72fed3d559df9b28b5384dc26c4348d7"},{"sha":"0862ac815ab473505d293c12362a1d470a415379","author":{"email":"2b78f1a11b050030c931d98cf25a8c2d3b85b913@nolsto.com","name":"Nolan"},"message":"Readme layout.","distinct":false,"url":"https://api.github.com/repos/nolsto/beets-follow/commits/0862ac815ab473505d293c12362a1d470a415379"},{"sha":"1dc0aa79b519ed7c63b5375deecc9c1418b15262","author":{"email":"2b78f1a11b050030c931d98cf25a8c2d3b85b913@nolsto.com","name":"Nolan"},"message":"Removed muspy userid shell script.","distinct":false,"url":"https://api.github.com/repos/nolsto/beets-follow/commits/1dc0aa79b519ed7c63b5375deecc9c1418b15262"}]},"public":true,"created_at":"2015-01-01T15:17:34Z"} +,{"id":"2489659223","type":"PushEvent","actor":{"id":508784,"login":"ophthal","gravatar_id":"","url":"https://api.github.com/users/ophthal","avatar_url":"https://avatars.githubusercontent.com/u/508784?"},"repo":{"id":26591101,"name":"ophthal/openemr","url":"https://api.github.com/repos/ophthal/openemr"},"payload":{"push_id":536867658,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"408aca3ca80ab39b761785278948e614e7a4b5c5","before":"c48b3f37e6a6da20b9775fc18c2ee961aed9ed0e","commits":[{"sha":"408aca3ca80ab39b761785278948e614e7a4b5c5","author":{"email":"79f60b0ddc7266f95cc03a2ad298a03ed3254202@ophthal.org","name":"ophthal"},"message":"Documents directory et al.\n\nChange where drawings are stored to within documents directory\ndocuments/$pid/eye_mag/encounter.\nAdd fields to DB table.\nCheckbox persistence.","distinct":true,"url":"https://api.github.com/repos/ophthal/openemr/commits/408aca3ca80ab39b761785278948e614e7a4b5c5"}]},"public":true,"created_at":"2015-01-01T15:17:34Z"} +,{"id":"2489659224","type":"CreateEvent","actor":{"id":7611308,"login":"mitchki","gravatar_id":"","url":"https://api.github.com/users/mitchki","avatar_url":"https://avatars.githubusercontent.com/u/7611308?"},"repo":{"id":28688923,"name":"mitchki/Poverty","url":"https://api.github.com/repos/mitchki/Poverty"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"analyze poverty data","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:34Z"} +,{"id":"2489659225","type":"PushEvent","actor":{"id":126033,"login":"Sanuch","gravatar_id":"","url":"https://api.github.com/users/Sanuch","avatar_url":"https://avatars.githubusercontent.com/u/126033?"},"repo":{"id":26536687,"name":"Sanuch/magento2","url":"https://api.github.com/repos/Sanuch/magento2"},"payload":{"push_id":536867659,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"7a474548c2f8d4ea7926a8a97467eae5574c0cac","before":"68c6a168a0a50481b18efde2496ec78a179a3235","commits":[{"sha":"7a474548c2f8d4ea7926a8a97467eae5574c0cac","author":{"email":"6d511d4f24ee64f7c1180f900655540729e4499b@ebay.com","name":"Oleksandr Ivashchenko"},"message":"Support HHVM","distinct":true,"url":"https://api.github.com/repos/Sanuch/magento2/commits/7a474548c2f8d4ea7926a8a97467eae5574c0cac"}]},"public":true,"created_at":"2015-01-01T15:17:34Z"} +,{"id":"2489659229","type":"WatchEvent","actor":{"id":30607,"login":"aborruso","gravatar_id":"","url":"https://api.github.com/users/aborruso","avatar_url":"https://avatars.githubusercontent.com/u/30607?"},"repo":{"id":7424579,"name":"tdt/core","url":"https://api.github.com/repos/tdt/core"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:34Z","org":{"id":3176991,"login":"tdt","gravatar_id":"","url":"https://api.github.com/orgs/tdt","avatar_url":"https://avatars.githubusercontent.com/u/3176991?"}} +,{"id":"2489659230","type":"WatchEvent","actor":{"id":2513193,"login":"dmitriz","gravatar_id":"","url":"https://api.github.com/users/dmitriz","avatar_url":"https://avatars.githubusercontent.com/u/2513193?"},"repo":{"id":9309093,"name":"Semantic-Org/Semantic-UI","url":"https://api.github.com/repos/Semantic-Org/Semantic-UI"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:34Z","org":{"id":5796209,"login":"Semantic-Org","gravatar_id":"","url":"https://api.github.com/orgs/Semantic-Org","avatar_url":"https://avatars.githubusercontent.com/u/5796209?"}} +,{"id":"2489659236","type":"PushEvent","actor":{"id":2316989,"login":"tdg5","gravatar_id":"","url":"https://api.github.com/users/tdg5","avatar_url":"https://avatars.githubusercontent.com/u/2316989?"},"repo":{"id":28665608,"name":"tdg5/heroku-buildpack-apache","url":"https://api.github.com/repos/tdg5/heroku-buildpack-apache"},"payload":{"push_id":536867662,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"46796d072f29d6954c6883fe008b6bdce846ed92","before":"fd4926a7f47d35a867d2191763a46e02b92e3e2f","commits":[{"sha":"46796d072f29d6954c6883fe008b6bdce846ed92","author":{"email":"bb9a1eadfa69e9dee64cfe3e7d7508685564dab1@gmail.com","name":"Danny Guinther"},"message":"Debug symlink collision","distinct":true,"url":"https://api.github.com/repos/tdg5/heroku-buildpack-apache/commits/46796d072f29d6954c6883fe008b6bdce846ed92"}]},"public":true,"created_at":"2015-01-01T15:17:36Z"} +,{"id":"2489659239","type":"WatchEvent","actor":{"id":3296912,"login":"GuorgMa","gravatar_id":"","url":"https://api.github.com/users/GuorgMa","avatar_url":"https://avatars.githubusercontent.com/u/3296912?"},"repo":{"id":22670857,"name":"enaqx/awesome-react","url":"https://api.github.com/repos/enaqx/awesome-react"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:36Z"} +,{"id":"2489659240","type":"PullRequestEvent","actor":{"id":976345,"login":"dan-blanchard","gravatar_id":"","url":"https://api.github.com/users/dan-blanchard","avatar_url":"https://avatars.githubusercontent.com/u/976345?"},"repo":{"id":5196969,"name":"chardet/chardet","url":"https://api.github.com/repos/chardet/chardet"},"payload":{"action":"closed","number":47,"pull_request":{"url":"https://api.github.com/repos/chardet/chardet/pulls/47","id":26743035,"html_url":"https://github.com/chardet/chardet/pull/47","diff_url":"https://github.com/chardet/chardet/pull/47.diff","patch_url":"https://github.com/chardet/chardet/pull/47.patch","issue_url":"https://api.github.com/repos/chardet/chardet/issues/47","number":47,"state":"closed","locked":false,"title":"Use travis' new build workers","user":{"login":"thedrow","id":48936,"avatar_url":"https://avatars.githubusercontent.com/u/48936?v=3","gravatar_id":"","url":"https://api.github.com/users/thedrow","html_url":"https://github.com/thedrow","followers_url":"https://api.github.com/users/thedrow/followers","following_url":"https://api.github.com/users/thedrow/following{/other_user}","gists_url":"https://api.github.com/users/thedrow/gists{/gist_id}","starred_url":"https://api.github.com/users/thedrow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thedrow/subscriptions","organizations_url":"https://api.github.com/users/thedrow/orgs","repos_url":"https://api.github.com/users/thedrow/repos","events_url":"https://api.github.com/users/thedrow/events{/privacy}","received_events_url":"https://api.github.com/users/thedrow/received_events","type":"User","site_admin":false},"body":"They boot faster and since we don't use sudo we can use them.","created_at":"2015-01-01T13:15:38Z","updated_at":"2015-01-01T15:17:35Z","closed_at":"2015-01-01T15:17:35Z","merged_at":"2015-01-01T15:17:35Z","merge_commit_sha":"1f4dcf2d34619818f25cd9629d64d4f485082fcb","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/chardet/chardet/pulls/47/commits","review_comments_url":"https://api.github.com/repos/chardet/chardet/pulls/47/comments","review_comment_url":"https://api.github.com/repos/chardet/chardet/pulls/comments/{number}","comments_url":"https://api.github.com/repos/chardet/chardet/issues/47/comments","statuses_url":"https://api.github.com/repos/chardet/chardet/statuses/0fddc29721025406735335269b3782487ad592f2","head":{"label":"thedrow:patch-1","ref":"patch-1","sha":"0fddc29721025406735335269b3782487ad592f2","user":{"login":"thedrow","id":48936,"avatar_url":"https://avatars.githubusercontent.com/u/48936?v=3","gravatar_id":"","url":"https://api.github.com/users/thedrow","html_url":"https://github.com/thedrow","followers_url":"https://api.github.com/users/thedrow/followers","following_url":"https://api.github.com/users/thedrow/following{/other_user}","gists_url":"https://api.github.com/users/thedrow/gists{/gist_id}","starred_url":"https://api.github.com/users/thedrow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thedrow/subscriptions","organizations_url":"https://api.github.com/users/thedrow/orgs","repos_url":"https://api.github.com/users/thedrow/repos","events_url":"https://api.github.com/users/thedrow/events{/privacy}","received_events_url":"https://api.github.com/users/thedrow/received_events","type":"User","site_admin":false},"repo":{"id":28685358,"name":"chardet","full_name":"thedrow/chardet","owner":{"login":"thedrow","id":48936,"avatar_url":"https://avatars.githubusercontent.com/u/48936?v=3","gravatar_id":"","url":"https://api.github.com/users/thedrow","html_url":"https://github.com/thedrow","followers_url":"https://api.github.com/users/thedrow/followers","following_url":"https://api.github.com/users/thedrow/following{/other_user}","gists_url":"https://api.github.com/users/thedrow/gists{/gist_id}","starred_url":"https://api.github.com/users/thedrow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thedrow/subscriptions","organizations_url":"https://api.github.com/users/thedrow/orgs","repos_url":"https://api.github.com/users/thedrow/repos","events_url":"https://api.github.com/users/thedrow/events{/privacy}","received_events_url":"https://api.github.com/users/thedrow/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/thedrow/chardet","description":"Python 2/3 compatible character encoding detector.","fork":true,"url":"https://api.github.com/repos/thedrow/chardet","forks_url":"https://api.github.com/repos/thedrow/chardet/forks","keys_url":"https://api.github.com/repos/thedrow/chardet/keys{/key_id}","collaborators_url":"https://api.github.com/repos/thedrow/chardet/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/thedrow/chardet/teams","hooks_url":"https://api.github.com/repos/thedrow/chardet/hooks","issue_events_url":"https://api.github.com/repos/thedrow/chardet/issues/events{/number}","events_url":"https://api.github.com/repos/thedrow/chardet/events","assignees_url":"https://api.github.com/repos/thedrow/chardet/assignees{/user}","branches_url":"https://api.github.com/repos/thedrow/chardet/branches{/branch}","tags_url":"https://api.github.com/repos/thedrow/chardet/tags","blobs_url":"https://api.github.com/repos/thedrow/chardet/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/thedrow/chardet/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/thedrow/chardet/git/refs{/sha}","trees_url":"https://api.github.com/repos/thedrow/chardet/git/trees{/sha}","statuses_url":"https://api.github.com/repos/thedrow/chardet/statuses/{sha}","languages_url":"https://api.github.com/repos/thedrow/chardet/languages","stargazers_url":"https://api.github.com/repos/thedrow/chardet/stargazers","contributors_url":"https://api.github.com/repos/thedrow/chardet/contributors","subscribers_url":"https://api.github.com/repos/thedrow/chardet/subscribers","subscription_url":"https://api.github.com/repos/thedrow/chardet/subscription","commits_url":"https://api.github.com/repos/thedrow/chardet/commits{/sha}","git_commits_url":"https://api.github.com/repos/thedrow/chardet/git/commits{/sha}","comments_url":"https://api.github.com/repos/thedrow/chardet/comments{/number}","issue_comment_url":"https://api.github.com/repos/thedrow/chardet/issues/comments/{number}","contents_url":"https://api.github.com/repos/thedrow/chardet/contents/{+path}","compare_url":"https://api.github.com/repos/thedrow/chardet/compare/{base}...{head}","merges_url":"https://api.github.com/repos/thedrow/chardet/merges","archive_url":"https://api.github.com/repos/thedrow/chardet/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/thedrow/chardet/downloads","issues_url":"https://api.github.com/repos/thedrow/chardet/issues{/number}","pulls_url":"https://api.github.com/repos/thedrow/chardet/pulls{/number}","milestones_url":"https://api.github.com/repos/thedrow/chardet/milestones{/number}","notifications_url":"https://api.github.com/repos/thedrow/chardet/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/thedrow/chardet/labels{/name}","releases_url":"https://api.github.com/repos/thedrow/chardet/releases{/id}","created_at":"2015-01-01T11:23:34Z","updated_at":"2015-01-01T11:23:35Z","pushed_at":"2015-01-01T13:15:32Z","git_url":"git://github.com/thedrow/chardet.git","ssh_url":"git@github.com:thedrow/chardet.git","clone_url":"https://github.com/thedrow/chardet.git","svn_url":"https://github.com/thedrow/chardet","homepage":"","size":3513,"stargazers_count":0,"watchers_count":0,"language":"Python","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":"chardet:master","ref":"master","sha":"0ad6242c845b913c179d75db616b8599b59c2eaa","user":{"login":"chardet","id":6211498,"avatar_url":"https://avatars.githubusercontent.com/u/6211498?v=3","gravatar_id":"","url":"https://api.github.com/users/chardet","html_url":"https://github.com/chardet","followers_url":"https://api.github.com/users/chardet/followers","following_url":"https://api.github.com/users/chardet/following{/other_user}","gists_url":"https://api.github.com/users/chardet/gists{/gist_id}","starred_url":"https://api.github.com/users/chardet/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chardet/subscriptions","organizations_url":"https://api.github.com/users/chardet/orgs","repos_url":"https://api.github.com/users/chardet/repos","events_url":"https://api.github.com/users/chardet/events{/privacy}","received_events_url":"https://api.github.com/users/chardet/received_events","type":"Organization","site_admin":false},"repo":{"id":5196969,"name":"chardet","full_name":"chardet/chardet","owner":{"login":"chardet","id":6211498,"avatar_url":"https://avatars.githubusercontent.com/u/6211498?v=3","gravatar_id":"","url":"https://api.github.com/users/chardet","html_url":"https://github.com/chardet","followers_url":"https://api.github.com/users/chardet/followers","following_url":"https://api.github.com/users/chardet/following{/other_user}","gists_url":"https://api.github.com/users/chardet/gists{/gist_id}","starred_url":"https://api.github.com/users/chardet/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chardet/subscriptions","organizations_url":"https://api.github.com/users/chardet/orgs","repos_url":"https://api.github.com/users/chardet/repos","events_url":"https://api.github.com/users/chardet/events{/privacy}","received_events_url":"https://api.github.com/users/chardet/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/chardet/chardet","description":"Python 2/3 compatible character encoding detector.","fork":false,"url":"https://api.github.com/repos/chardet/chardet","forks_url":"https://api.github.com/repos/chardet/chardet/forks","keys_url":"https://api.github.com/repos/chardet/chardet/keys{/key_id}","collaborators_url":"https://api.github.com/repos/chardet/chardet/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/chardet/chardet/teams","hooks_url":"https://api.github.com/repos/chardet/chardet/hooks","issue_events_url":"https://api.github.com/repos/chardet/chardet/issues/events{/number}","events_url":"https://api.github.com/repos/chardet/chardet/events","assignees_url":"https://api.github.com/repos/chardet/chardet/assignees{/user}","branches_url":"https://api.github.com/repos/chardet/chardet/branches{/branch}","tags_url":"https://api.github.com/repos/chardet/chardet/tags","blobs_url":"https://api.github.com/repos/chardet/chardet/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/chardet/chardet/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/chardet/chardet/git/refs{/sha}","trees_url":"https://api.github.com/repos/chardet/chardet/git/trees{/sha}","statuses_url":"https://api.github.com/repos/chardet/chardet/statuses/{sha}","languages_url":"https://api.github.com/repos/chardet/chardet/languages","stargazers_url":"https://api.github.com/repos/chardet/chardet/stargazers","contributors_url":"https://api.github.com/repos/chardet/chardet/contributors","subscribers_url":"https://api.github.com/repos/chardet/chardet/subscribers","subscription_url":"https://api.github.com/repos/chardet/chardet/subscription","commits_url":"https://api.github.com/repos/chardet/chardet/commits{/sha}","git_commits_url":"https://api.github.com/repos/chardet/chardet/git/commits{/sha}","comments_url":"https://api.github.com/repos/chardet/chardet/comments{/number}","issue_comment_url":"https://api.github.com/repos/chardet/chardet/issues/comments/{number}","contents_url":"https://api.github.com/repos/chardet/chardet/contents/{+path}","compare_url":"https://api.github.com/repos/chardet/chardet/compare/{base}...{head}","merges_url":"https://api.github.com/repos/chardet/chardet/merges","archive_url":"https://api.github.com/repos/chardet/chardet/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/chardet/chardet/downloads","issues_url":"https://api.github.com/repos/chardet/chardet/issues{/number}","pulls_url":"https://api.github.com/repos/chardet/chardet/pulls{/number}","milestones_url":"https://api.github.com/repos/chardet/chardet/milestones{/number}","notifications_url":"https://api.github.com/repos/chardet/chardet/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/chardet/chardet/labels{/name}","releases_url":"https://api.github.com/repos/chardet/chardet/releases{/id}","created_at":"2012-07-26T20:30:54Z","updated_at":"2015-01-01T15:17:36Z","pushed_at":"2015-01-01T15:17:35Z","git_url":"git://github.com/chardet/chardet.git","ssh_url":"git@github.com:chardet/chardet.git","clone_url":"https://github.com/chardet/chardet.git","svn_url":"https://github.com/chardet/chardet","homepage":"","size":3513,"stargazers_count":238,"watchers_count":238,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":48,"mirror_url":null,"open_issues_count":13,"forks":48,"open_issues":13,"watchers":238,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/chardet/chardet/pulls/47"},"html":{"href":"https://github.com/chardet/chardet/pull/47"},"issue":{"href":"https://api.github.com/repos/chardet/chardet/issues/47"},"comments":{"href":"https://api.github.com/repos/chardet/chardet/issues/47/comments"},"review_comments":{"href":"https://api.github.com/repos/chardet/chardet/pulls/47/comments"},"review_comment":{"href":"https://api.github.com/repos/chardet/chardet/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/chardet/chardet/pulls/47/commits"},"statuses":{"href":"https://api.github.com/repos/chardet/chardet/statuses/0fddc29721025406735335269b3782487ad592f2"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"dan-blanchard","id":976345,"avatar_url":"https://avatars.githubusercontent.com/u/976345?v=3","gravatar_id":"","url":"https://api.github.com/users/dan-blanchard","html_url":"https://github.com/dan-blanchard","followers_url":"https://api.github.com/users/dan-blanchard/followers","following_url":"https://api.github.com/users/dan-blanchard/following{/other_user}","gists_url":"https://api.github.com/users/dan-blanchard/gists{/gist_id}","starred_url":"https://api.github.com/users/dan-blanchard/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dan-blanchard/subscriptions","organizations_url":"https://api.github.com/users/dan-blanchard/orgs","repos_url":"https://api.github.com/users/dan-blanchard/repos","events_url":"https://api.github.com/users/dan-blanchard/events{/privacy}","received_events_url":"https://api.github.com/users/dan-blanchard/received_events","type":"User","site_admin":false},"comments":2,"review_comments":0,"commits":1,"additions":1,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:17:36Z","org":{"id":6211498,"login":"chardet","gravatar_id":"","url":"https://api.github.com/orgs/chardet","avatar_url":"https://avatars.githubusercontent.com/u/6211498?"}} +,{"id":"2489659241","type":"PushEvent","actor":{"id":976345,"login":"dan-blanchard","gravatar_id":"","url":"https://api.github.com/users/dan-blanchard","avatar_url":"https://avatars.githubusercontent.com/u/976345?"},"repo":{"id":5196969,"name":"chardet/chardet","url":"https://api.github.com/repos/chardet/chardet"},"payload":{"push_id":536867665,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"e9694dca7648c2de8f70920a14f5d4ff99cd330e","before":"0ad6242c845b913c179d75db616b8599b59c2eaa","commits":[{"sha":"0fddc29721025406735335269b3782487ad592f2","author":{"email":"9e13da4a0a493e91b7b258142bd6c748198a4d46@gmail.com","name":"Omer Katz"},"message":"Use travis' new build workers.\n\nThey boot faster and since we don't use sudo we can use them.","distinct":true,"url":"https://api.github.com/repos/chardet/chardet/commits/0fddc29721025406735335269b3782487ad592f2"},{"sha":"e9694dca7648c2de8f70920a14f5d4ff99cd330e","author":{"email":"013ef78343d7d6500b0a3b47fdd5af67d6f1b43d@gmail.com","name":"Dan Blanchard"},"message":"Merge pull request #47 from thedrow/patch-1\n\nUse travis' new build workers","distinct":true,"url":"https://api.github.com/repos/chardet/chardet/commits/e9694dca7648c2de8f70920a14f5d4ff99cd330e"}]},"public":true,"created_at":"2015-01-01T15:17:36Z","org":{"id":6211498,"login":"chardet","gravatar_id":"","url":"https://api.github.com/orgs/chardet","avatar_url":"https://avatars.githubusercontent.com/u/6211498?"}} +,{"id":"2489659243","type":"CreateEvent","actor":{"id":7595862,"login":"Chrisxwh","gravatar_id":"","url":"https://api.github.com/users/Chrisxwh","avatar_url":"https://avatars.githubusercontent.com/u/7595862?"},"repo":{"id":28688913,"name":"Chrisxwh/Simple-UDP-Script","url":"https://api.github.com/repos/Chrisxwh/Simple-UDP-Script"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:36Z"} +,{"id":"2489659246","type":"PushEvent","actor":{"id":1022904,"login":"matjazp","gravatar_id":"","url":"https://api.github.com/users/matjazp","avatar_url":"https://avatars.githubusercontent.com/u/1022904?"},"repo":{"id":28054009,"name":"matjazp/devstack-vm","url":"https://api.github.com/repos/matjazp/devstack-vm"},"payload":{"push_id":536867667,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b61abdb231bf2af1089a3bf2893a88d172934a9d","before":"a09200639eea05317af5da06802a035572c738c9","commits":[{"sha":"b61abdb231bf2af1089a3bf2893a88d172934a9d","author":{"email":"20a6ff8f1ca365fb1d89914907a3fa23fde05b7e@fri.uni-lj.si","name":"Matjaz Pancur"},"message":"devstack.yaml and template cleanup","distinct":true,"url":"https://api.github.com/repos/matjazp/devstack-vm/commits/b61abdb231bf2af1089a3bf2893a88d172934a9d"}]},"public":true,"created_at":"2015-01-01T15:17:37Z"} +,{"id":"2489659251","type":"IssueCommentEvent","actor":{"id":190363,"login":"andrewmcveigh","gravatar_id":"","url":"https://api.github.com/users/andrewmcveigh","avatar_url":"https://avatars.githubusercontent.com/u/190363?"},"repo":{"id":12434601,"name":"andrewmcveigh/cljs-time","url":"https://api.github.com/repos/andrewmcveigh/cljs-time"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/issues/14","labels_url":"https://api.github.com/repos/andrewmcveigh/cljs-time/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/andrewmcveigh/cljs-time/issues/14/comments","events_url":"https://api.github.com/repos/andrewmcveigh/cljs-time/issues/14/events","html_url":"https://github.com/andrewmcveigh/cljs-time/issues/14","id":48161941,"number":14,"title":"Problem with `to-time-zone`","user":{"login":"matthewgertner","id":870558,"avatar_url":"https://avatars.githubusercontent.com/u/870558?v=3","gravatar_id":"","url":"https://api.github.com/users/matthewgertner","html_url":"https://github.com/matthewgertner","followers_url":"https://api.github.com/users/matthewgertner/followers","following_url":"https://api.github.com/users/matthewgertner/following{/other_user}","gists_url":"https://api.github.com/users/matthewgertner/gists{/gist_id}","starred_url":"https://api.github.com/users/matthewgertner/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matthewgertner/subscriptions","organizations_url":"https://api.github.com/users/matthewgertner/orgs","repos_url":"https://api.github.com/users/matthewgertner/repos","events_url":"https://api.github.com/users/matthewgertner/events{/privacy}","received_events_url":"https://api.github.com/users/matthewgertner/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":7,"created_at":"2014-11-08T10:13:53Z","updated_at":"2015-01-01T15:17:38Z","closed_at":"2015-01-01T15:17:38Z","body":"Great library! However, I'm having a problem with the `cljs-time.core/to-time-zone` method. As far as I can see, `goog.date.DateTime` doesn't have a `withZone` method. I spent a few minutes surfing around and it isn't clear to me how to convert a datetime from one timezone to another using the Closure stuff (which I am not very familiar with). Specifically, I am receiving serialized datetimes in UTC and I want to convert them to the local (default) timezone."},"comment":{"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/issues/comments/68488864","html_url":"https://github.com/andrewmcveigh/cljs-time/issues/14#issuecomment-68488864","issue_url":"https://api.github.com/repos/andrewmcveigh/cljs-time/issues/14","id":68488864,"user":{"login":"andrewmcveigh","id":190363,"avatar_url":"https://avatars.githubusercontent.com/u/190363?v=3","gravatar_id":"","url":"https://api.github.com/users/andrewmcveigh","html_url":"https://github.com/andrewmcveigh","followers_url":"https://api.github.com/users/andrewmcveigh/followers","following_url":"https://api.github.com/users/andrewmcveigh/following{/other_user}","gists_url":"https://api.github.com/users/andrewmcveigh/gists{/gist_id}","starred_url":"https://api.github.com/users/andrewmcveigh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andrewmcveigh/subscriptions","organizations_url":"https://api.github.com/users/andrewmcveigh/orgs","repos_url":"https://api.github.com/users/andrewmcveigh/repos","events_url":"https://api.github.com/users/andrewmcveigh/events{/privacy}","received_events_url":"https://api.github.com/users/andrewmcveigh/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:17:37Z","updated_at":"2015-01-01T15:17:37Z","body":"This functionality should now be available in v0.3.0 4e4d903f169fffffa61b3664f0173f635fbd067e (deployed to clojars).\r\n\r\n`#'cljs-time.core/to-default-time-zone` and `#'cljs-time.core/from-default-time-zone` function much like the `to/from-time-zone` functions in clj-time, but use the \"local\" system time-zone."}},"public":true,"created_at":"2015-01-01T15:17:38Z"} +,{"id":"2489659252","type":"IssuesEvent","actor":{"id":190363,"login":"andrewmcveigh","gravatar_id":"","url":"https://api.github.com/users/andrewmcveigh","avatar_url":"https://avatars.githubusercontent.com/u/190363?"},"repo":{"id":12434601,"name":"andrewmcveigh/cljs-time","url":"https://api.github.com/repos/andrewmcveigh/cljs-time"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/andrewmcveigh/cljs-time/issues/14","labels_url":"https://api.github.com/repos/andrewmcveigh/cljs-time/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/andrewmcveigh/cljs-time/issues/14/comments","events_url":"https://api.github.com/repos/andrewmcveigh/cljs-time/issues/14/events","html_url":"https://github.com/andrewmcveigh/cljs-time/issues/14","id":48161941,"number":14,"title":"Problem with `to-time-zone`","user":{"login":"matthewgertner","id":870558,"avatar_url":"https://avatars.githubusercontent.com/u/870558?v=3","gravatar_id":"","url":"https://api.github.com/users/matthewgertner","html_url":"https://github.com/matthewgertner","followers_url":"https://api.github.com/users/matthewgertner/followers","following_url":"https://api.github.com/users/matthewgertner/following{/other_user}","gists_url":"https://api.github.com/users/matthewgertner/gists{/gist_id}","starred_url":"https://api.github.com/users/matthewgertner/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matthewgertner/subscriptions","organizations_url":"https://api.github.com/users/matthewgertner/orgs","repos_url":"https://api.github.com/users/matthewgertner/repos","events_url":"https://api.github.com/users/matthewgertner/events{/privacy}","received_events_url":"https://api.github.com/users/matthewgertner/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":7,"created_at":"2014-11-08T10:13:53Z","updated_at":"2015-01-01T15:17:38Z","closed_at":"2015-01-01T15:17:38Z","body":"Great library! However, I'm having a problem with the `cljs-time.core/to-time-zone` method. As far as I can see, `goog.date.DateTime` doesn't have a `withZone` method. I spent a few minutes surfing around and it isn't clear to me how to convert a datetime from one timezone to another using the Closure stuff (which I am not very familiar with). Specifically, I am receiving serialized datetimes in UTC and I want to convert them to the local (default) timezone."}},"public":true,"created_at":"2015-01-01T15:17:38Z"} +,{"id":"2489659256","type":"CreateEvent","actor":{"id":5563373,"login":"ju2ta2","gravatar_id":"","url":"https://api.github.com/users/ju2ta2","avatar_url":"https://avatars.githubusercontent.com/u/5563373?"},"repo":{"id":28688925,"name":"ju2ta2/VB_CourseWork","url":"https://api.github.com/repos/ju2ta2/VB_CourseWork"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:38Z"} +,{"id":"2489659262","type":"CreateEvent","actor":{"id":10364848,"login":"almaredan","gravatar_id":"","url":"https://api.github.com/users/almaredan","avatar_url":"https://avatars.githubusercontent.com/u/10364848?"},"repo":{"id":28688902,"name":"almaredan/first_app","url":"https://api.github.com/repos/almaredan/first_app"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"First app for the Ruby on Rails Tutorial","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:39Z"} +,{"id":"2489659264","type":"PushEvent","actor":{"id":1479570,"login":"jimpatricksullivan","gravatar_id":"","url":"https://api.github.com/users/jimpatricksullivan","avatar_url":"https://avatars.githubusercontent.com/u/1479570?"},"repo":{"id":21105091,"name":"jimpatricksullivan/bgg-game-picker","url":"https://api.github.com/repos/jimpatricksullivan/bgg-game-picker"},"payload":{"push_id":536867672,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d468634feba873c2f89b605784ed7496d0776ba3","before":"c9f432b283ee7172d4ad6a6c5b3b5986fa356c59","commits":[{"sha":"d468634feba873c2f89b605784ed7496d0776ba3","author":{"email":"79d08d6d1fc88a9619630843fce9b740397d70fe@gmail.com","name":"Jim Sullivan"},"message":"Get some notifications working","distinct":true,"url":"https://api.github.com/repos/jimpatricksullivan/bgg-game-picker/commits/d468634feba873c2f89b605784ed7496d0776ba3"}]},"public":true,"created_at":"2015-01-01T15:17:39Z"} +,{"id":"2489659265","type":"PushEvent","actor":{"id":200609,"login":"assertchris","gravatar_id":"","url":"https://api.github.com/users/assertchris","avatar_url":"https://avatars.githubusercontent.com/u/200609?"},"repo":{"id":28626349,"name":"revolvephp/framework","url":"https://api.github.com/repos/revolvephp/framework"},"payload":{"push_id":536867673,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b4c951e5e36f12450f8f39b345f17c00dcdc79be","before":"4b58ea6f0bc0266e7d5b9536bcf3b7df6215914e","commits":[{"sha":"b4c951e5e36f12450f8f39b345f17c00dcdc79be","author":{"email":"68999c97ac656119545c1b14bd9654c1baf3563a@gmail.com","name":"Christopher Pitt"},"message":"Added Travis key","distinct":true,"url":"https://api.github.com/repos/revolvephp/framework/commits/b4c951e5e36f12450f8f39b345f17c00dcdc79be"}]},"public":true,"created_at":"2015-01-01T15:17:39Z","org":{"id":10348183,"login":"revolvephp","gravatar_id":"","url":"https://api.github.com/orgs/revolvephp","avatar_url":"https://avatars.githubusercontent.com/u/10348183?"}} +,{"id":"2489659268","type":"PushEvent","actor":{"id":5095603,"login":"gnomesysadmins","gravatar_id":"","url":"https://api.github.com/users/gnomesysadmins","avatar_url":"https://avatars.githubusercontent.com/u/5095603?"},"repo":{"id":4579671,"name":"GNOME/gitg","url":"https://api.github.com/repos/GNOME/gitg"},"payload":{"push_id":536867674,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bf57a64b8d3c70a107cada41f21f35404e016697","before":"5faffd7c65ea544ac422602e288a56af06dcf537","commits":[{"sha":"bf57a64b8d3c70a107cada41f21f35404e016697","author":{"email":"52b035491226bbe0369cb725a1f9ad68204c786f@src.gnome.org","name":"Yosef Or Boczko"},"message":"Updated Hebrew translation","distinct":true,"url":"https://api.github.com/repos/GNOME/gitg/commits/bf57a64b8d3c70a107cada41f21f35404e016697"}]},"public":true,"created_at":"2015-01-01T15:17:39Z","org":{"id":1801039,"login":"GNOME","gravatar_id":"","url":"https://api.github.com/orgs/GNOME","avatar_url":"https://avatars.githubusercontent.com/u/1801039?"}} +,{"id":"2489659277","type":"IssueCommentEvent","actor":{"id":187310,"login":"calmofthestorm","gravatar_id":"","url":"https://api.github.com/users/calmofthestorm","avatar_url":"https://avatars.githubusercontent.com/u/187310?"},"repo":{"id":12491239,"name":"dictation-toolbox/aenea","url":"https://api.github.com/repos/dictation-toolbox/aenea"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/dictation-toolbox/aenea/issues/81","labels_url":"https://api.github.com/repos/dictation-toolbox/aenea/issues/81/labels{/name}","comments_url":"https://api.github.com/repos/dictation-toolbox/aenea/issues/81/comments","events_url":"https://api.github.com/repos/dictation-toolbox/aenea/issues/81/events","html_url":"https://github.com/dictation-toolbox/aenea/pull/81","id":52792959,"number":81,"title":"support get_context failing to return a pid for a window","user":{"login":"mzizzi","id":6410431,"avatar_url":"https://avatars.githubusercontent.com/u/6410431?v=3","gravatar_id":"","url":"https://api.github.com/users/mzizzi","html_url":"https://github.com/mzizzi","followers_url":"https://api.github.com/users/mzizzi/followers","following_url":"https://api.github.com/users/mzizzi/following{/other_user}","gists_url":"https://api.github.com/users/mzizzi/gists{/gist_id}","starred_url":"https://api.github.com/users/mzizzi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mzizzi/subscriptions","organizations_url":"https://api.github.com/users/mzizzi/orgs","repos_url":"https://api.github.com/users/mzizzi/repos","events_url":"https://api.github.com/users/mzizzi/events{/privacy}","received_events_url":"https://api.github.com/users/mzizzi/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-24T03:19:56Z","updated_at":"2015-01-01T15:17:40Z","closed_at":"2015-01-01T15:17:28Z","pull_request":{"url":"https://api.github.com/repos/dictation-toolbox/aenea/pulls/81","html_url":"https://github.com/dictation-toolbox/aenea/pull/81","diff_url":"https://github.com/dictation-toolbox/aenea/pull/81.diff","patch_url":"https://github.com/dictation-toolbox/aenea/pull/81.patch"},"body":"Sometimes get_context() fails to find a pid. We should gracefully handle this error and eventually fix the issue."},"comment":{"url":"https://api.github.com/repos/dictation-toolbox/aenea/issues/comments/68488865","html_url":"https://github.com/dictation-toolbox/aenea/pull/81#issuecomment-68488865","issue_url":"https://api.github.com/repos/dictation-toolbox/aenea/issues/81","id":68488865,"user":{"login":"calmofthestorm","id":187310,"avatar_url":"https://avatars.githubusercontent.com/u/187310?v=3","gravatar_id":"","url":"https://api.github.com/users/calmofthestorm","html_url":"https://github.com/calmofthestorm","followers_url":"https://api.github.com/users/calmofthestorm/followers","following_url":"https://api.github.com/users/calmofthestorm/following{/other_user}","gists_url":"https://api.github.com/users/calmofthestorm/gists{/gist_id}","starred_url":"https://api.github.com/users/calmofthestorm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/calmofthestorm/subscriptions","organizations_url":"https://api.github.com/users/calmofthestorm/orgs","repos_url":"https://api.github.com/users/calmofthestorm/repos","events_url":"https://api.github.com/users/calmofthestorm/events{/privacy}","received_events_url":"https://api.github.com/users/calmofthestorm/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:17:40Z","updated_at":"2015-01-01T15:17:40Z","body":"Thanks, and sorry for the delay in getting this reviewed!"}},"public":true,"created_at":"2015-01-01T15:17:40Z","org":{"id":8006718,"login":"dictation-toolbox","gravatar_id":"","url":"https://api.github.com/orgs/dictation-toolbox","avatar_url":"https://avatars.githubusercontent.com/u/8006718?"}} +,{"id":"2489659279","type":"PushEvent","actor":{"id":10322234,"login":"gerigjylbegu","gravatar_id":"","url":"https://api.github.com/users/gerigjylbegu","avatar_url":"https://avatars.githubusercontent.com/u/10322234?"},"repo":{"id":28596491,"name":"gerigjylbegu/Blog","url":"https://api.github.com/repos/gerigjylbegu/Blog"},"payload":{"push_id":536867676,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"9285bad995707d20b05e00c5a5026e627620b07f","before":"098e21436ecf132ca2f1df4bea813e586e3da180","commits":[{"sha":"9285bad995707d20b05e00c5a5026e627620b07f","author":{"email":"5d364efc371fe3cf76badc72842740c09acb86f6@gmail.com","name":"gerigjylbegu"},"message":"Update 2014-12-31-linuxmint.md","distinct":true,"url":"https://api.github.com/repos/gerigjylbegu/Blog/commits/9285bad995707d20b05e00c5a5026e627620b07f"}]},"public":true,"created_at":"2015-01-01T15:17:40Z"} +,{"id":"2489659281","type":"PushEvent","actor":{"id":37787,"login":"daleharvey","gravatar_id":"","url":"https://api.github.com/users/daleharvey","avatar_url":"https://avatars.githubusercontent.com/u/37787?"},"repo":{"id":714074,"name":"pouchdb/pouchdb","url":"https://api.github.com/repos/pouchdb/pouchdb"},"payload":{"push_id":536867675,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"65a3d95aab32585e344d806058a1662b7b0e99d0","before":"85ffee354b1734a6793d3fb61963bfe1797222f4","commits":[{"sha":"65a3d95aab32585e344d806058a1662b7b0e99d0","author":{"email":"8d228162edd35036000dffdf5bad2457553cab61@gmail.com","name":"Will Holley"},"message":"(#136) - Fix \"Testing allDocs with some conflicts\" / CouchDB 2.0\n\nWhen testing against CouchDB 2.0, skip assertion that update_seq\nshould be within a known range. CouchDB 2.0 sequence numbers are\nnot guaranteed to be incremental.","distinct":true,"url":"https://api.github.com/repos/pouchdb/pouchdb/commits/65a3d95aab32585e344d806058a1662b7b0e99d0"}]},"public":true,"created_at":"2015-01-01T15:17:40Z","org":{"id":3406112,"login":"pouchdb","gravatar_id":"","url":"https://api.github.com/orgs/pouchdb","avatar_url":"https://avatars.githubusercontent.com/u/3406112?"}} +,{"id":"2489659284","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":536867678,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c3b1e583fe662d7c26df97188d6b61640c4ce25e","before":"a76dc89cd4ee5cc9dd5c0bf95e185d518ceee2d1","commits":[{"sha":"c3b1e583fe662d7c26df97188d6b61640c4ce25e","author":{"email":"de163e90d3aeef9f404d1de71c48e234a211e3c3@gmail.com","name":"KT"},"message":"Update","distinct":true,"url":"https://api.github.com/repos/qdm/qdm.github.io/commits/c3b1e583fe662d7c26df97188d6b61640c4ce25e"}]},"public":true,"created_at":"2015-01-01T15:17:41Z"} +,{"id":"2489659286","type":"PushEvent","actor":{"id":1238468,"login":"adambutler","gravatar_id":"","url":"https://api.github.com/users/adambutler","avatar_url":"https://avatars.githubusercontent.com/u/1238468?"},"repo":{"id":25428523,"name":"adambutler/wedding-on-rails","url":"https://api.github.com/repos/adambutler/wedding-on-rails"},"payload":{"push_id":536867679,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a3113a0650859ffb6e42af97d5dc5c7778a75175","before":"9d79fa353436424efbb01f95ecfb43133fcfeed7","commits":[{"sha":"a3113a0650859ffb6e42af97d5dc5c7778a75175","author":{"email":"0e18f44c1fec03ec4083422cb58ba6a09ac4fb2a@lab.io","name":"Adam Butler"},"message":"Add SMTP settings to production.rb","distinct":true,"url":"https://api.github.com/repos/adambutler/wedding-on-rails/commits/a3113a0650859ffb6e42af97d5dc5c7778a75175"}]},"public":true,"created_at":"2015-01-01T15:17:41Z"} +,{"id":"2489659288","type":"PushEvent","actor":{"id":1112193,"login":"ghalusa","gravatar_id":"","url":"https://api.github.com/users/ghalusa","avatar_url":"https://avatars.githubusercontent.com/u/1112193?"},"repo":{"id":28548752,"name":"ghalusa/PHP-Skeleton-App","url":"https://api.github.com/repos/ghalusa/PHP-Skeleton-App"},"payload":{"push_id":536867680,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9eddb25195292f0841a4876f14314e7010fa6f9f","before":"0519f65572783f8f952fdade03a898e4cb6ab1ae","commits":[{"sha":"9eddb25195292f0841a4876f14314e7010fa6f9f","author":{"email":"611cd99f18808bf7c209cc8d7c8c3eb010436b4a@gmail.com","name":"Goran Halusa"},"message":"Changed the name of the \"Modules\" module to \"Dashboard\".","distinct":true,"url":"https://api.github.com/repos/ghalusa/PHP-Skeleton-App/commits/9eddb25195292f0841a4876f14314e7010fa6f9f"}]},"public":true,"created_at":"2015-01-01T15:17:42Z"} +,{"id":"2489659292","type":"PushEvent","actor":{"id":891048,"login":"msbone","gravatar_id":"","url":"https://api.github.com/users/msbone","avatar_url":"https://avatars.githubusercontent.com/u/891048?"},"repo":{"id":28643462,"name":"msbone/LCS","url":"https://api.github.com/repos/msbone/LCS"},"payload":{"push_id":536867681,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"21027e4afa624295dc95b5950d90d86c61ca13ba","before":"bafbb75363bf9b7e074a0da75704f33257b7a9e5","commits":[{"sha":"21027e4afa624295dc95b5950d90d86c61ca13ba","author":{"email":"bf955f9e644b9add92ed736308dd3e5417015ad7@gmail.com","name":"Ole Mathias Aa. Heggem"},"message":"dhcp magic","distinct":true,"url":"https://api.github.com/repos/msbone/LCS/commits/21027e4afa624295dc95b5950d90d86c61ca13ba"}]},"public":true,"created_at":"2015-01-01T15:17:42Z"} +,{"id":"2489659293","type":"PushEvent","actor":{"id":9557325,"login":"St7ven","gravatar_id":"","url":"https://api.github.com/users/St7ven","avatar_url":"https://avatars.githubusercontent.com/u/9557325?"},"repo":{"id":28597134,"name":"St7ven/cleanflight","url":"https://api.github.com/repos/St7ven/cleanflight"},"payload":{"push_id":536867682,"size":1,"distinct_size":1,"ref":"refs/heads/Neopixel_Ring","head":"6a0d39c9dfe65ccc6ad9f6a2b4c12cc45e72b75b","before":"2fbbf6e42999118f3f28432f02d1b4f59e89a4c1","commits":[{"sha":"6a0d39c9dfe65ccc6ad9f6a2b4c12cc45e72b75b","author":{"email":"e221caf3950bcac0e0c4023383430f4220cc4ea6@gmail.com","name":"St7ven"},"message":"Change for ledring","distinct":true,"url":"https://api.github.com/repos/St7ven/cleanflight/commits/6a0d39c9dfe65ccc6ad9f6a2b4c12cc45e72b75b"}]},"public":true,"created_at":"2015-01-01T15:17:42Z"} +,{"id":"2489659294","type":"WatchEvent","actor":{"id":3967153,"login":"mixmode","gravatar_id":"","url":"https://api.github.com/users/mixmode","avatar_url":"https://avatars.githubusercontent.com/u/3967153?"},"repo":{"id":2837961,"name":"horaci/node-mitm-proxy","url":"https://api.github.com/repos/horaci/node-mitm-proxy"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:42Z"} +,{"id":"2489659296","type":"IssueCommentEvent","actor":{"id":1563559,"login":"jaswsinc","gravatar_id":"","url":"https://api.github.com/users/jaswsinc","avatar_url":"https://avatars.githubusercontent.com/u/1563559?"},"repo":{"id":26142240,"name":"websharks/zencache","url":"https://api.github.com/repos/websharks/zencache"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/websharks/zencache/issues/10","labels_url":"https://api.github.com/repos/websharks/zencache/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/websharks/zencache/issues/10/comments","events_url":"https://api.github.com/repos/websharks/zencache/issues/10/events","html_url":"https://github.com/websharks/zencache/issues/10","id":51170262,"number":10,"title":"Reword ZenCache activation error message when Quick Cache is active","user":{"login":"raamdev","id":53005,"avatar_url":"https://avatars.githubusercontent.com/u/53005?v=3","gravatar_id":"","url":"https://api.github.com/users/raamdev","html_url":"https://github.com/raamdev","followers_url":"https://api.github.com/users/raamdev/followers","following_url":"https://api.github.com/users/raamdev/following{/other_user}","gists_url":"https://api.github.com/users/raamdev/gists{/gist_id}","starred_url":"https://api.github.com/users/raamdev/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/raamdev/subscriptions","organizations_url":"https://api.github.com/users/raamdev/orgs","repos_url":"https://api.github.com/users/raamdev/repos","events_url":"https://api.github.com/users/raamdev/events{/privacy}","received_events_url":"https://api.github.com/users/raamdev/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/websharks/zencache/labels/in+progress","name":"in progress","color":"ededed"},{"url":"https://api.github.com/repos/websharks/zencache/labels/todo","name":"todo","color":"bfd4f2"}],"state":"open","locked":false,"assignee":{"login":"jaswsinc","id":1563559,"avatar_url":"https://avatars.githubusercontent.com/u/1563559?v=3","gravatar_id":"","url":"https://api.github.com/users/jaswsinc","html_url":"https://github.com/jaswsinc","followers_url":"https://api.github.com/users/jaswsinc/followers","following_url":"https://api.github.com/users/jaswsinc/following{/other_user}","gists_url":"https://api.github.com/users/jaswsinc/gists{/gist_id}","starred_url":"https://api.github.com/users/jaswsinc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jaswsinc/subscriptions","organizations_url":"https://api.github.com/users/jaswsinc/orgs","repos_url":"https://api.github.com/users/jaswsinc/repos","events_url":"https://api.github.com/users/jaswsinc/events{/privacy}","received_events_url":"https://api.github.com/users/jaswsinc/received_events","type":"User","site_admin":false},"milestone":null,"comments":1,"created_at":"2014-12-06T04:15:07Z","updated_at":"2015-01-01T15:17:42Z","closed_at":null,"body":"Forked from #9.\r\n\r\nNeed to reword/improve the ZenCache Dashboard message that appears when Quick Cache is also active.\r\n\r\n![2014-11-28_17-19-50](https://cloud.githubusercontent.com/assets/53005/5232604/d4a6e0a6-7722-11e4-940d-bc74b45c21ba.png)\r\n\r\nThis would be an improvement: \r\n\r\n> \"**ZenCache** is NOT running. A conflicting plugin, **Quick Cache**, is currently active. Please deactivate the Quick Cache plugin to clear this message.\""},"comment":{"url":"https://api.github.com/repos/websharks/zencache/issues/comments/68488866","html_url":"https://github.com/websharks/zencache/issues/10#issuecomment-68488866","issue_url":"https://api.github.com/repos/websharks/zencache/issues/10","id":68488866,"user":{"login":"jaswsinc","id":1563559,"avatar_url":"https://avatars.githubusercontent.com/u/1563559?v=3","gravatar_id":"","url":"https://api.github.com/users/jaswsinc","html_url":"https://github.com/jaswsinc","followers_url":"https://api.github.com/users/jaswsinc/followers","following_url":"https://api.github.com/users/jaswsinc/following{/other_user}","gists_url":"https://api.github.com/users/jaswsinc/gists{/gist_id}","starred_url":"https://api.github.com/users/jaswsinc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jaswsinc/subscriptions","organizations_url":"https://api.github.com/users/jaswsinc/orgs","repos_url":"https://api.github.com/users/jaswsinc/repos","events_url":"https://api.github.com/users/jaswsinc/events{/privacy}","received_events_url":"https://api.github.com/users/jaswsinc/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:17:42Z","updated_at":"2015-01-01T15:17:42Z","body":"Working on this now.\r\n\r\n![2015-01-01_06-17-17](https://cloud.githubusercontent.com/assets/1563559/5592474/e2264ad0-917d-11e4-905b-19719fbccc78.png)\r\n"}},"public":true,"created_at":"2015-01-01T15:17:42Z","org":{"id":1563690,"login":"websharks","gravatar_id":"","url":"https://api.github.com/orgs/websharks","avatar_url":"https://avatars.githubusercontent.com/u/1563690?"}} +,{"id":"2489659298","type":"PushEvent","actor":{"id":8649463,"login":"matepi","gravatar_id":"","url":"https://api.github.com/users/matepi","avatar_url":"https://avatars.githubusercontent.com/u/8649463?"},"repo":{"id":23643747,"name":"matepi/matepi.github.io","url":"https://api.github.com/repos/matepi/matepi.github.io"},"payload":{"push_id":536867684,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"402270cd051eac85a7ba25bbfc9d4038fb346044","before":"69ae31dfce8ed53c2af00e06d62512c97152bb3f","commits":[{"sha":"402270cd051eac85a7ba25bbfc9d4038fb346044","author":{"email":"1c3a6de4ecc74c8d6e5f641d3e72e5afbe1f1b91@126.com","name":"matepi"},"message":"Update index.htm","distinct":true,"url":"https://api.github.com/repos/matepi/matepi.github.io/commits/402270cd051eac85a7ba25bbfc9d4038fb346044"}]},"public":true,"created_at":"2015-01-01T15:17:43Z"} +,{"id":"2489659300","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":536867685,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a8cf8eb4cfb285e8d3acf6db6e1026b170b0e9ee","before":"e59277327686092cd2c7b427a264c484d8464df6","commits":[{"sha":"a8cf8eb4cfb285e8d3acf6db6e1026b170b0e9ee","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420125461329\n\nTNKAtZz4ygV914o1xzXU6O8lAjRyUnd3j5Z2wFdc32M=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/a8cf8eb4cfb285e8d3acf6db6e1026b170b0e9ee"}]},"public":true,"created_at":"2015-01-01T15:17:43Z"} +,{"id":"2489659302","type":"WatchEvent","actor":{"id":411098,"login":"yassipo","gravatar_id":"","url":"https://api.github.com/users/yassipo","avatar_url":"https://avatars.githubusercontent.com/u/411098?"},"repo":{"id":28682754,"name":"SanketDG/djangoblog","url":"https://api.github.com/repos/SanketDG/djangoblog"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:43Z"} +,{"id":"2489659303","type":"PushEvent","actor":{"id":219799,"login":"tario","gravatar_id":"","url":"https://api.github.com/users/tario","avatar_url":"https://avatars.githubusercontent.com/u/219799?"},"repo":{"id":24202452,"name":"tario/music.js","url":"https://api.github.com/repos/tario/music.js"},"payload":{"push_id":536867687,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"61fbf403bb5a8bc1cadd4a32a4fa9b6b8f342259","before":"3f3d70cb2bfd6256db697a5a649561c341c01c9f","commits":[{"sha":"61fbf403bb5a8bc1cadd4a32a4fa9b6b8f342259","author":{"email":"2a1201d6dddb3b0a2d3d3acdf418d28553c301dd@gmail.com","name":"Dario Seminara"},"message":"fixed delay node","distinct":true,"url":"https://api.github.com/repos/tario/music.js/commits/61fbf403bb5a8bc1cadd4a32a4fa9b6b8f342259"}]},"public":true,"created_at":"2015-01-01T15:17:43Z"} +,{"id":"2489659305","type":"IssueCommentEvent","actor":{"id":3623672,"login":"m7md88","gravatar_id":"","url":"https://api.github.com/users/m7md88","avatar_url":"https://avatars.githubusercontent.com/u/3623672?"},"repo":{"id":8681349,"name":"cantino/huginn","url":"https://api.github.com/repos/cantino/huginn"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/cantino/huginn/issues/592","labels_url":"https://api.github.com/repos/cantino/huginn/issues/592/labels{/name}","comments_url":"https://api.github.com/repos/cantino/huginn/issues/592/comments","events_url":"https://api.github.com/repos/cantino/huginn/issues/592/events","html_url":"https://github.com/cantino/huginn/issues/592","id":46894442,"number":592,"title":"Official Icon / Logo for Huginn","user":{"login":"knu","id":10236,"avatar_url":"https://avatars.githubusercontent.com/u/10236?v=3","gravatar_id":"","url":"https://api.github.com/users/knu","html_url":"https://github.com/knu","followers_url":"https://api.github.com/users/knu/followers","following_url":"https://api.github.com/users/knu/following{/other_user}","gists_url":"https://api.github.com/users/knu/gists{/gist_id}","starred_url":"https://api.github.com/users/knu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/knu/subscriptions","organizations_url":"https://api.github.com/users/knu/orgs","repos_url":"https://api.github.com/users/knu/repos","events_url":"https://api.github.com/users/knu/events{/privacy}","received_events_url":"https://api.github.com/users/knu/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/cantino/huginn/labels/discussion","name":"discussion","color":"fbca04"},{"url":"https://api.github.com/repos/cantino/huginn/labels/UI","name":"UI","color":"bfdadc"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":40,"created_at":"2014-10-27T11:24:53Z","updated_at":"2015-01-01T15:17:43Z","closed_at":null,"body":"It would be great to have a scalable icon and/or logo for Huginn that we could use for the site brand including favicon, mobile apps and so on.\r\n\r\nI'd like something really simple, like a monochrome face of a raven looking toward the world.\r\nWhat do you guys think?"},"comment":{"url":"https://api.github.com/repos/cantino/huginn/issues/comments/68488867","html_url":"https://github.com/cantino/huginn/issues/592#issuecomment-68488867","issue_url":"https://api.github.com/repos/cantino/huginn/issues/592","id":68488867,"user":{"login":"m7md88","id":3623672,"avatar_url":"https://avatars.githubusercontent.com/u/3623672?v=3","gravatar_id":"","url":"https://api.github.com/users/m7md88","html_url":"https://github.com/m7md88","followers_url":"https://api.github.com/users/m7md88/followers","following_url":"https://api.github.com/users/m7md88/following{/other_user}","gists_url":"https://api.github.com/users/m7md88/gists{/gist_id}","starred_url":"https://api.github.com/users/m7md88/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/m7md88/subscriptions","organizations_url":"https://api.github.com/users/m7md88/orgs","repos_url":"https://api.github.com/users/m7md88/repos","events_url":"https://api.github.com/users/m7md88/events{/privacy}","received_events_url":"https://api.github.com/users/m7md88/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:17:43Z","updated_at":"2015-01-01T15:17:43Z","body":"It's been a while since my last comment , Happy new year guys :fireworks: \r\nNow let's get back to work !\r\nI really really like what @willyg302 did , more professional logo with some really nice details .\r\nThe headset is what I like the most , it's definitely a great idea and suits the concept of this project .\r\n"}},"public":true,"created_at":"2015-01-01T15:17:43Z"} +,{"id":"2489659306","type":"PushEvent","actor":{"id":54998,"login":"barbie","gravatar_id":"","url":"https://api.github.com/users/barbie","avatar_url":"https://avatars.githubusercontent.com/u/54998?"},"repo":{"id":21087874,"name":"barbie/template-plugin-lingua-en-fractions","url":"https://api.github.com/repos/barbie/template-plugin-lingua-en-fractions"},"payload":{"push_id":536867688,"size":5,"distinct_size":5,"ref":"refs/heads/master","head":"f1f5646636d151118288811b0373d12eeaff643c","before":"5b1d4d26bcee91da2cea2ba92524756c3581a969","commits":[{"sha":"cb81d0d5de1c1750a22fa5ed5e9945a84d03f9cc","author":{"email":"a64431388c02ce7fa2ae6a622befa56cf7f21c95@missbarbell.co.uk","name":"Barbie"},"message":"fixed license fields in META.json to be lists","distinct":true,"url":"https://api.github.com/repos/barbie/template-plugin-lingua-en-fractions/commits/cb81d0d5de1c1750a22fa5ed5e9945a84d03f9cc"},{"sha":"89883fb57e970ab23d79b8679582bdbdfae222c7","author":{"email":"a64431388c02ce7fa2ae6a622befa56cf7f21c95@missbarbell.co.uk","name":"Barbie"},"message":"fixed lead module name","distinct":true,"url":"https://api.github.com/repos/barbie/template-plugin-lingua-en-fractions/commits/89883fb57e970ab23d79b8679582bdbdfae222c7"},{"sha":"fdcffe76a1c6eba592a236819e3695bc16f0c289","author":{"email":"a64431388c02ce7fa2ae6a622befa56cf7f21c95@missbarbell.co.uk","name":"Barbie"},"message":"fixed test comment","distinct":true,"url":"https://api.github.com/repos/barbie/template-plugin-lingua-en-fractions/commits/fdcffe76a1c6eba592a236819e3695bc16f0c289"},{"sha":"d52ba784dc646e683461e0c6822049017f0da829","author":{"email":"a64431388c02ce7fa2ae6a622befa56cf7f21c95@missbarbell.co.uk","name":"Barbie"},"message":"updated copyright year","distinct":true,"url":"https://api.github.com/repos/barbie/template-plugin-lingua-en-fractions/commits/d52ba784dc646e683461e0c6822049017f0da829"},{"sha":"f1f5646636d151118288811b0373d12eeaff643c","author":{"email":"a64431388c02ce7fa2ae6a622befa56cf7f21c95@missbarbell.co.uk","name":"Barbie"},"message":"upped version","distinct":true,"url":"https://api.github.com/repos/barbie/template-plugin-lingua-en-fractions/commits/f1f5646636d151118288811b0373d12eeaff643c"}]},"public":true,"created_at":"2015-01-01T15:17:43Z"} +,{"id":"2489659311","type":"CreateEvent","actor":{"id":1883558,"login":"mikegleen","gravatar_id":"","url":"https://api.github.com/users/mikegleen","avatar_url":"https://avatars.githubusercontent.com/u/1883558?"},"repo":{"id":28688496,"name":"mikegleen/cheney","url":"https://api.github.com/repos/mikegleen/cheney"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:44Z"} +,{"id":"2489659313","type":"PushEvent","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":{"push_id":536867691,"size":2,"distinct_size":2,"ref":"refs/heads/PLMd947b4e6a13377b40991666c05e75a358bade38c","head":"2093d28d9fc1e0cb60de24870bd7fc203fc0ba4b","before":"1854418e821bac0fa0f4d0967bc8048bfc1f78f4","commits":[{"sha":"91368f5c6c1dd1a8409d55846e63dbd5dfbbfb3d","author":{"email":"af0188f34285ce3b31574866070b9a5066df7355@plm.net","name":"John Doe"},"message":"{\"kind\":\"switched\",\"exo\":\"welcome.lessons.welcome.methods.picture.PictureMono2\",\"course\":\"\",\"switchto\":\"welcome.lessons.welcome.methods.picture.PictureMono1\",\"totaltests\":\"1\",\"passedtests\":\"0\",\"outcome\":\"fail\",\"lang\":\"Python\"}","distinct":true,"url":"https://api.github.com/repos/mquinson/PLM-data/commits/91368f5c6c1dd1a8409d55846e63dbd5dfbbfb3d"},{"sha":"2093d28d9fc1e0cb60de24870bd7fc203fc0ba4b","author":{"email":"af0188f34285ce3b31574866070b9a5066df7355@plm.net","name":"John Doe"},"message":"{\"kind\":\"switched\",\"exo\":\"welcome.lessons.welcome.methods.picture.PictureMono1\",\"course\":\"\",\"switchto\":\"welcome.lessons.welcome.methods.picture.PictureMono2\",\"outcome\":\"pass\",\"lang\":\"Python\"}","distinct":true,"url":"https://api.github.com/repos/mquinson/PLM-data/commits/2093d28d9fc1e0cb60de24870bd7fc203fc0ba4b"}]},"public":true,"created_at":"2015-01-01T15:17:44Z"} +,{"id":"2489659315","type":"PushEvent","actor":{"id":534245,"login":"toopay","gravatar_id":"","url":"https://api.github.com/users/toopay","avatar_url":"https://avatars.githubusercontent.com/u/534245?"},"repo":{"id":28684236,"name":"toopay/toopay.github.io","url":"https://api.github.com/repos/toopay/toopay.github.io"},"payload":{"push_id":536867692,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5e19b14717dfd6d254ddc8160a5f812ec68a8b08","before":"75f969f60bc593bb35b44d48e846c0942ccefbc9","commits":[{"sha":"5e19b14717dfd6d254ddc8160a5f812ec68a8b08","author":{"email":"a09aa4f83f3ba395eae09fa61c86d43902f6e74e@taufanaditya.com","name":"Taufan Aditya"},"message":"Jan post [continued]","distinct":true,"url":"https://api.github.com/repos/toopay/toopay.github.io/commits/5e19b14717dfd6d254ddc8160a5f812ec68a8b08"}]},"public":true,"created_at":"2015-01-01T15:17:44Z"} +,{"id":"2489659316","type":"CreateEvent","actor":{"id":193686,"login":"itswindtw","gravatar_id":"","url":"https://api.github.com/users/itswindtw","avatar_url":"https://avatars.githubusercontent.com/u/193686?"},"repo":{"id":28688926,"name":"itswindtw/restless-obscure","url":"https://api.github.com/repos/itswindtw/restless-obscure"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:44Z"} +,{"id":"2489659322","type":"CreateEvent","actor":{"id":7611308,"login":"mitchki","gravatar_id":"","url":"https://api.github.com/users/mitchki","avatar_url":"https://avatars.githubusercontent.com/u/7611308?"},"repo":{"id":28688923,"name":"mitchki/Poverty","url":"https://api.github.com/repos/mitchki/Poverty"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"analyze poverty data","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:45Z"} +,{"id":"2489659324","type":"PushEvent","actor":{"id":8214096,"login":"wmst","gravatar_id":"","url":"https://api.github.com/users/wmst","avatar_url":"https://avatars.githubusercontent.com/u/8214096?"},"repo":{"id":22027821,"name":"wmst/wmidbot","url":"https://api.github.com/repos/wmst/wmidbot"},"payload":{"push_id":536867695,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"124a837028b4b25afffe5556ee1fbebb069efed5","before":"c1f3bc84c9f3757a2d419356cedc354cefc36512","commits":[{"sha":"124a837028b4b25afffe5556ee1fbebb069efed5","author":{"email":"88c7f6fa894fd89755d31607021f2dfc841bf290@gmail.com","name":"Kazakov"},"message":"admin commit","distinct":true,"url":"https://api.github.com/repos/wmst/wmidbot/commits/124a837028b4b25afffe5556ee1fbebb069efed5"}]},"public":true,"created_at":"2015-01-01T15:17:45Z"} +,{"id":"2489659326","type":"IssueCommentEvent","actor":{"id":6563111,"login":"tkdrg","gravatar_id":"","url":"https://api.github.com/users/tkdrg","avatar_url":"https://avatars.githubusercontent.com/u/6563111?"},"repo":{"id":3234987,"name":"tgstation/-tg-station","url":"https://api.github.com/repos/tgstation/-tg-station"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/tgstation/-tg-station/issues/5646","labels_url":"https://api.github.com/repos/tgstation/-tg-station/issues/5646/labels{/name}","comments_url":"https://api.github.com/repos/tgstation/-tg-station/issues/5646/comments","events_url":"https://api.github.com/repos/tgstation/-tg-station/issues/5646/events","html_url":"https://github.com/tgstation/-tg-station/pull/5646","id":47631348,"number":5646,"title":"Adds Nien's HoS formal sprites so they dont look like a Prince suit.","user":{"login":"Miauw62","id":3975713,"avatar_url":"https://avatars.githubusercontent.com/u/3975713?v=3","gravatar_id":"","url":"https://api.github.com/users/Miauw62","html_url":"https://github.com/Miauw62","followers_url":"https://api.github.com/users/Miauw62/followers","following_url":"https://api.github.com/users/Miauw62/following{/other_user}","gists_url":"https://api.github.com/users/Miauw62/gists{/gist_id}","starred_url":"https://api.github.com/users/Miauw62/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Miauw62/subscriptions","organizations_url":"https://api.github.com/users/Miauw62/orgs","repos_url":"https://api.github.com/users/Miauw62/repos","events_url":"https://api.github.com/users/Miauw62/events{/privacy}","received_events_url":"https://api.github.com/users/Miauw62/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/tgstation/-tg-station/labels/Feature","name":"Feature","color":"009800"},{"url":"https://api.github.com/repos/tgstation/-tg-station/labels/Merge+Conflict","name":"Merge Conflict","color":"006b75"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":12,"created_at":"2014-11-03T19:09:22Z","updated_at":"2015-01-01T15:17:46Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/tgstation/-tg-station/pulls/5646","html_url":"https://github.com/tgstation/-tg-station/pull/5646","diff_url":"https://github.com/tgstation/-tg-station/pull/5646.diff","patch_url":"https://github.com/tgstation/-tg-station/pull/5646.patch"},"body":"\r\n![](http://i.imgur.com/2JQuJp1.png)\r\n"},"comment":{"url":"https://api.github.com/repos/tgstation/-tg-station/issues/comments/68488868","html_url":"https://github.com/tgstation/-tg-station/pull/5646#issuecomment-68488868","issue_url":"https://api.github.com/repos/tgstation/-tg-station/issues/5646","id":68488868,"user":{"login":"tkdrg","id":6563111,"avatar_url":"https://avatars.githubusercontent.com/u/6563111?v=3","gravatar_id":"","url":"https://api.github.com/users/tkdrg","html_url":"https://github.com/tkdrg","followers_url":"https://api.github.com/users/tkdrg/followers","following_url":"https://api.github.com/users/tkdrg/following{/other_user}","gists_url":"https://api.github.com/users/tkdrg/gists{/gist_id}","starred_url":"https://api.github.com/users/tkdrg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tkdrg/subscriptions","organizations_url":"https://api.github.com/users/tkdrg/orgs","repos_url":"https://api.github.com/users/tkdrg/repos","events_url":"https://api.github.com/users/tkdrg/events{/privacy}","received_events_url":"https://api.github.com/users/tkdrg/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:17:46Z","updated_at":"2015-01-01T15:17:46Z","body":"@Miauw62 are you still working on this?"}},"public":true,"created_at":"2015-01-01T15:17:46Z","org":{"id":1363778,"login":"tgstation","gravatar_id":"","url":"https://api.github.com/orgs/tgstation","avatar_url":"https://avatars.githubusercontent.com/u/1363778?"}} +,{"id":"2489659332","type":"PushEvent","actor":{"id":8097968,"login":"mfeemster","gravatar_id":"","url":"https://api.github.com/users/mfeemster","avatar_url":"https://avatars.githubusercontent.com/u/8097968?"},"repo":{"id":21602548,"name":"mfeemster/fractorium","url":"https://api.github.com/repos/mfeemster/fractorium"},"payload":{"push_id":536867696,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3cf6141e274a2db16571fd2cd1c2b7ca3ac5a33f","before":"9502ae57ab4089379b1652729f8e1649e7bb8c3f","commits":[{"sha":"3cf6141e274a2db16571fd2cd1c2b7ca3ac5a33f","author":{"email":"82d8e2dd4d506b4c274e0e64d2dcda4b45cacfff@gmail.com","name":"mfeemster"},"message":"Derive from QOpenGLWidget instead of QGLWidget.\n\nDerive from QOpenGLWidget instead of QGLWidget.\nMore commits to follow.","distinct":true,"url":"https://api.github.com/repos/mfeemster/fractorium/commits/3cf6141e274a2db16571fd2cd1c2b7ca3ac5a33f"}]},"public":true,"created_at":"2015-01-01T15:17:47Z"} +,{"id":"2489659335","type":"IssuesEvent","actor":{"id":6140819,"login":"Tikitoo","gravatar_id":"","url":"https://api.github.com/users/Tikitoo","avatar_url":"https://avatars.githubusercontent.com/u/6140819?"},"repo":{"id":25078525,"name":"Tikitoo/blog","url":"https://api.github.com/repos/Tikitoo/blog"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/Tikitoo/blog/issues/22","labels_url":"https://api.github.com/repos/Tikitoo/blog/issues/22/labels{/name}","comments_url":"https://api.github.com/repos/Tikitoo/blog/issues/22/comments","events_url":"https://api.github.com/repos/Tikitoo/blog/issues/22/events","html_url":"https://github.com/Tikitoo/blog/issues/22","id":53221691,"number":22,"title":"IntelliJ IDEA/Android Studio 使用指南","user":{"login":"Tikitoo","id":6140819,"avatar_url":"https://avatars.githubusercontent.com/u/6140819?v=3","gravatar_id":"","url":"https://api.github.com/users/Tikitoo","html_url":"https://github.com/Tikitoo","followers_url":"https://api.github.com/users/Tikitoo/followers","following_url":"https://api.github.com/users/Tikitoo/following{/other_user}","gists_url":"https://api.github.com/users/Tikitoo/gists{/gist_id}","starred_url":"https://api.github.com/users/Tikitoo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Tikitoo/subscriptions","organizations_url":"https://api.github.com/users/Tikitoo/orgs","repos_url":"https://api.github.com/users/Tikitoo/repos","events_url":"https://api.github.com/users/Tikitoo/events{/privacy}","received_events_url":"https://api.github.com/users/Tikitoo/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/Tikitoo/blog/labels/Android","name":"Android","color":"009800"},{"url":"https://api.github.com/repos/Tikitoo/blog/labels/Tools","name":"Tools","color":"fef2c0"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:17:47Z","updated_at":"2015-01-01T15:17:47Z","closed_at":null,"body":"自从买了电脑之后,就没有配鼠标,大概是嫌弃鼠标不舒服,笔记本的触控版快被摸了,最近安装了Ubuntu,使用Android Studio 不是太卡了,体验还不错,今天在看官方文档翻到了Android Studio 的指南,索性就做点笔记,以备以后使用(特别是快捷键);\r\n\r\n因为Android Studio 是基于Intellij IDEA 开源版实现的,所以两者的快捷键基本上的都差不多,那就来说说如何使用基本操作;\r\n\r\n## 工程和文件结构\r\n![图片来自jetbrains](https://www.jetbrains.com/img/webhelp/uiEditor.png)\r\n\r\n1. 文件编辑区域\r\n2. 编辑区域左边(显示行号的)\r\n3. 输入提示区域\r\n4. 文档切换区域\r\n * ``Alt + Left`` 或者``Alt + Right``,不同的Tab 切换\r\n * ``Ctrl + Tab``:切换不同的区域\r\n5. 其他功能区域(右边)\r\n\r\n\r\n*新建文件或者插入方法*\r\n``ALT + INSERT``(``COMMAND + N`` Mac)\r\n- 在``编辑区``域是插入方法(构造方法,Get Set 方法等等);\r\n- 在``工程结构``新建文件\r\n\r\n## 罗列一些常用的快捷键\r\n\r\n全局快捷键(比较重要的) | |\r\n----------| -----------------\r\nALT + ENTER| 工程快速修复\r\nCTRL + SHIFT + A| 快速查找\r\nCTRL + ALT + L (Win)| 格式化代码(我的锁屏的快捷键占了)\r\nCTRL + Q (Win)| 查看文档\r\nSHIFT + ESC | 当切换非编辑区域时,关闭该区域,返回编辑区域\r\n\r\n编辑区快捷键| |\r\n---- |----\r\nCTRL + B / F4 | 查看源码\r\nCTRL + Q | 查看文档\r\nSHIFT + ESC | 当切换非编辑区域时,关闭该区域,返回编辑区域\r\nATRL + / | 上下文联想\r\nALT + LEFT / RIGHT | 不同文档左右切换\r\nALT + TOP / BOTTOM | 跳转到上一个 / 下一方法\r\n\r\n\r\n注释 | |\r\n---- |----\r\nCTRL + / | 注视当前行\r\nCTRL + SHIFT + / | 文档注视\r\n\r\n\r\n复制 / 粘贴| |\r\n---- |----\r\nCTRL + C | 复制该行\r\nCTRL + V | 粘贴\r\nCTRL + X | 剪切\r\nCTRL + Y | 删除该行\r\n\r\n查找| |\r\n---- |----\r\nCtrl+Shift+A | 查找所有行为\r\nCtrl + F | 查找当前编辑的文档\r\nCtrl + R | 查找并替代\r\nCtrl + N | 查找类(class)\r\nCtrl + SHIFT + N | 查找文件\r\n\r\n\r\n\r\n待补充。。。。。。\r\n\r\n\r\n\r\n\r\n## 参考\r\n- http://developer.android.com/tools/studio/index.html\r\n- http://developer.android.com/sdk/installing/studio-tips.html\r\n- https://www.jetbrains.com/idea/help/intellij-idea-editor.html\r\n- https://www.jetbrains.com/idea/docs/IntelliJIDEA_ReferenceCard.pdf"}},"public":true,"created_at":"2015-01-01T15:17:47Z"} +,{"id":"2489659340","type":"IssueCommentEvent","actor":{"id":10241253,"login":"eddyghabachlcu","gravatar_id":"","url":"https://api.github.com/users/eddyghabachlcu","avatar_url":"https://avatars.githubusercontent.com/u/10241253?"},"repo":{"id":28239411,"name":"SavioAbdou/IFT215-SavioAbdou","url":"https://api.github.com/repos/SavioAbdou/IFT215-SavioAbdou"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/SavioAbdou/IFT215-SavioAbdou/issues/1","labels_url":"https://api.github.com/repos/SavioAbdou/IFT215-SavioAbdou/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/SavioAbdou/IFT215-SavioAbdou/issues/1/comments","events_url":"https://api.github.com/repos/SavioAbdou/IFT215-SavioAbdou/issues/1/events","html_url":"https://github.com/SavioAbdou/IFT215-SavioAbdou/issues/1","id":52804956,"number":1,"title":"Questions","user":{"login":"SavioAbdou","id":10245613,"avatar_url":"https://avatars.githubusercontent.com/u/10245613?v=3","gravatar_id":"","url":"https://api.github.com/users/SavioAbdou","html_url":"https://github.com/SavioAbdou","followers_url":"https://api.github.com/users/SavioAbdou/followers","following_url":"https://api.github.com/users/SavioAbdou/following{/other_user}","gists_url":"https://api.github.com/users/SavioAbdou/gists{/gist_id}","starred_url":"https://api.github.com/users/SavioAbdou/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SavioAbdou/subscriptions","organizations_url":"https://api.github.com/users/SavioAbdou/orgs","repos_url":"https://api.github.com/users/SavioAbdou/repos","events_url":"https://api.github.com/users/SavioAbdou/events{/privacy}","received_events_url":"https://api.github.com/users/SavioAbdou/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":20,"created_at":"2014-12-24T08:42:27Z","updated_at":"2015-01-01T15:17:48Z","closed_at":null,"body":"how can I allow to add number in a text field without accepting any text value?"},"comment":{"url":"https://api.github.com/repos/SavioAbdou/IFT215-SavioAbdou/issues/comments/68488869","html_url":"https://github.com/SavioAbdou/IFT215-SavioAbdou/issues/1#issuecomment-68488869","issue_url":"https://api.github.com/repos/SavioAbdou/IFT215-SavioAbdou/issues/1","id":68488869,"user":{"login":"eddyghabachlcu","id":10241253,"avatar_url":"https://avatars.githubusercontent.com/u/10241253?v=3","gravatar_id":"","url":"https://api.github.com/users/eddyghabachlcu","html_url":"https://github.com/eddyghabachlcu","followers_url":"https://api.github.com/users/eddyghabachlcu/followers","following_url":"https://api.github.com/users/eddyghabachlcu/following{/other_user}","gists_url":"https://api.github.com/users/eddyghabachlcu/gists{/gist_id}","starred_url":"https://api.github.com/users/eddyghabachlcu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eddyghabachlcu/subscriptions","organizations_url":"https://api.github.com/users/eddyghabachlcu/orgs","repos_url":"https://api.github.com/users/eddyghabachlcu/repos","events_url":"https://api.github.com/users/eddyghabachlcu/events{/privacy}","received_events_url":"https://api.github.com/users/eddyghabachlcu/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:17:48Z","updated_at":"2015-01-01T15:17:48Z","body":"Yes of course, the parameters that you are sending to the constructor aren't of the same type of the constructor's parameters. In addition, you added some EXTRA code everywhere. You have to understand each instruction what it is going to do, and how to use it."}},"public":true,"created_at":"2015-01-01T15:17:48Z"} +,{"id":"2489659341","type":"IssuesEvent","actor":{"id":7845867,"login":"bionicbone","gravatar_id":"","url":"https://api.github.com/users/bionicbone","avatar_url":"https://avatars.githubusercontent.com/u/7845867?"},"repo":{"id":28538910,"name":"bionicbone/Sanofi_Big_Clock_3","url":"https://api.github.com/repos/bionicbone/Sanofi_Big_Clock_3"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/bionicbone/Sanofi_Big_Clock_3/issues/10","labels_url":"https://api.github.com/repos/bionicbone/Sanofi_Big_Clock_3/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/bionicbone/Sanofi_Big_Clock_3/issues/10/comments","events_url":"https://api.github.com/repos/bionicbone/Sanofi_Big_Clock_3/issues/10/events","html_url":"https://github.com/bionicbone/Sanofi_Big_Clock_3/issues/10","id":53221692,"number":10,"title":"Save / Open Cycle - Are you sure?","user":{"login":"bionicbone","id":7845867,"avatar_url":"https://avatars.githubusercontent.com/u/7845867?v=3","gravatar_id":"","url":"https://api.github.com/users/bionicbone","html_url":"https://github.com/bionicbone","followers_url":"https://api.github.com/users/bionicbone/followers","following_url":"https://api.github.com/users/bionicbone/following{/other_user}","gists_url":"https://api.github.com/users/bionicbone/gists{/gist_id}","starred_url":"https://api.github.com/users/bionicbone/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bionicbone/subscriptions","organizations_url":"https://api.github.com/users/bionicbone/orgs","repos_url":"https://api.github.com/users/bionicbone/repos","events_url":"https://api.github.com/users/bionicbone/events{/privacy}","received_events_url":"https://api.github.com/users/bionicbone/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:17:48Z","updated_at":"2015-01-01T15:17:48Z","closed_at":null,"body":""}},"public":true,"created_at":"2015-01-01T15:17:48Z"} +,{"id":"2489659342","type":"CreateEvent","actor":{"id":54998,"login":"barbie","gravatar_id":"","url":"https://api.github.com/users/barbie","avatar_url":"https://avatars.githubusercontent.com/u/54998?"},"repo":{"id":21087874,"name":"barbie/template-plugin-lingua-en-fractions","url":"https://api.github.com/repos/barbie/template-plugin-lingua-en-fractions"},"payload":{"ref":"release-0.02","ref_type":"tag","master_branch":"master","description":"TT2 interface to Lingua::EN::Fractions module","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:48Z"} +,{"id":"2489659345","type":"PushEvent","actor":{"id":9975304,"login":"Aercus","gravatar_id":"","url":"https://api.github.com/users/Aercus","avatar_url":"https://avatars.githubusercontent.com/u/9975304?"},"repo":{"id":27220613,"name":"Aercus/p2p-chat-room","url":"https://api.github.com/repos/Aercus/p2p-chat-room"},"payload":{"push_id":536867699,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a6df05fb4ca2e242ff9e97165f6d1bb06b35f32f","before":"d66960e0bebd2477b8678d4a22409beb3b3795d5","commits":[{"sha":"a6df05fb4ca2e242ff9e97165f6d1bb06b35f32f","author":{"email":"14582e2508b526638c0aceefbec7761c95d0f50c@gmail.com","name":"Aercus"},"message":"chord ver.","distinct":true,"url":"https://api.github.com/repos/Aercus/p2p-chat-room/commits/a6df05fb4ca2e242ff9e97165f6d1bb06b35f32f"}]},"public":true,"created_at":"2015-01-01T15:17:48Z"} +,{"id":"2489659347","type":"CreateEvent","actor":{"id":5303727,"login":"Brijendrasial","gravatar_id":"","url":"https://api.github.com/users/Brijendrasial","avatar_url":"https://avatars.githubusercontent.com/u/5303727?"},"repo":{"id":28688927,"name":"Brijendrasial/Csgolounge.com-Automated-Bump","url":"https://api.github.com/repos/Brijendrasial/Csgolounge.com-Automated-Bump"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Auto Bump Script for Csgolounge.com","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:49Z"} +,{"id":"2489659349","type":"CreateEvent","actor":{"id":2266445,"login":"littleguy77","gravatar_id":"","url":"https://api.github.com/users/littleguy77","avatar_url":"https://avatars.githubusercontent.com/u/2266445?"},"repo":{"id":16059800,"name":"mupen64plus-ae/mupen64plus-rsp-hle","url":"https://api.github.com/repos/mupen64plus-ae/mupen64plus-rsp-hle"},"payload":{"ref":"obsolete","ref_type":"branch","master_branch":"master","description":"RSP processor plugin for the Mupen64Plus v2.0 project. This plugin is based on the Mupen64 HLE RSP plugin v0.2 with Azimers code by Hacktarux","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:49Z","org":{"id":6227843,"login":"mupen64plus-ae","gravatar_id":"","url":"https://api.github.com/orgs/mupen64plus-ae","avatar_url":"https://avatars.githubusercontent.com/u/6227843?"}} +,{"id":"2489659351","type":"WatchEvent","actor":{"id":2149294,"login":"peeping4dsun","gravatar_id":"","url":"https://api.github.com/users/peeping4dsun","avatar_url":"https://avatars.githubusercontent.com/u/2149294?"},"repo":{"id":1563595,"name":"cliftonc/calipso","url":"https://api.github.com/repos/cliftonc/calipso"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:49Z"} +,{"id":"2489659354","type":"ForkEvent","actor":{"id":29861,"login":"killfill","gravatar_id":"","url":"https://api.github.com/users/killfill","avatar_url":"https://avatars.githubusercontent.com/u/29861?"},"repo":{"id":23352114,"name":"zilverline/react-tap-event-plugin","url":"https://api.github.com/repos/zilverline/react-tap-event-plugin"},"payload":{"forkee":{"id":28688928,"name":"react-tap-event-plugin","full_name":"killfill/react-tap-event-plugin","owner":{"login":"killfill","id":29861,"avatar_url":"https://avatars.githubusercontent.com/u/29861?v=3","gravatar_id":"","url":"https://api.github.com/users/killfill","html_url":"https://github.com/killfill","followers_url":"https://api.github.com/users/killfill/followers","following_url":"https://api.github.com/users/killfill/following{/other_user}","gists_url":"https://api.github.com/users/killfill/gists{/gist_id}","starred_url":"https://api.github.com/users/killfill/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/killfill/subscriptions","organizations_url":"https://api.github.com/users/killfill/orgs","repos_url":"https://api.github.com/users/killfill/repos","events_url":"https://api.github.com/users/killfill/events{/privacy}","received_events_url":"https://api.github.com/users/killfill/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/killfill/react-tap-event-plugin","description":"Instant TapEvents for React","fork":true,"url":"https://api.github.com/repos/killfill/react-tap-event-plugin","forks_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/forks","keys_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/keys{/key_id}","collaborators_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/teams","hooks_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/hooks","issue_events_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/issues/events{/number}","events_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/events","assignees_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/assignees{/user}","branches_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/branches{/branch}","tags_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/tags","blobs_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/git/refs{/sha}","trees_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/git/trees{/sha}","statuses_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/statuses/{sha}","languages_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/languages","stargazers_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/stargazers","contributors_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/contributors","subscribers_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/subscribers","subscription_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/subscription","commits_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/commits{/sha}","git_commits_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/git/commits{/sha}","comments_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/comments{/number}","issue_comment_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/issues/comments/{number}","contents_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/contents/{+path}","compare_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/compare/{base}...{head}","merges_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/merges","archive_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/downloads","issues_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/issues{/number}","pulls_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/pulls{/number}","milestones_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/milestones{/number}","notifications_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/labels{/name}","releases_url":"https://api.github.com/repos/killfill/react-tap-event-plugin/releases{/id}","created_at":"2015-01-01T15:17:49Z","updated_at":"2014-12-31T08:08:33Z","pushed_at":"2014-11-04T10:01:44Z","git_url":"git://github.com/killfill/react-tap-event-plugin.git","ssh_url":"git@github.com:killfill/react-tap-event-plugin.git","clone_url":"https://github.com/killfill/react-tap-event-plugin.git","svn_url":"https://github.com/killfill/react-tap-event-plugin","homepage":"http://facebook.github.io/react/","size":33387,"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:17:49Z","org":{"id":159022,"login":"zilverline","gravatar_id":"","url":"https://api.github.com/orgs/zilverline","avatar_url":"https://avatars.githubusercontent.com/u/159022?"}} +,{"id":"2489659356","type":"PushEvent","actor":{"id":3236388,"login":"antoniocapelo","gravatar_id":"","url":"https://api.github.com/users/antoniocapelo","avatar_url":"https://avatars.githubusercontent.com/u/3236388?"},"repo":{"id":11704998,"name":"antoniocapelo/antoniocapelo.github.com","url":"https://api.github.com/repos/antoniocapelo/antoniocapelo.github.com"},"payload":{"push_id":536867704,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"95f4999554358738cfc3265fd918a144af5cbb20","before":"7ce68ebc586ba3736d4a0926434722fa0af2fc88","commits":[{"sha":"95f4999554358738cfc3265fd918a144af5cbb20","author":{"email":"eb9cb6f4a799780864416a734a1a651c1b0055b7@gmail.com","name":"Capelo"},"message":"Fixing typos","distinct":true,"url":"https://api.github.com/repos/antoniocapelo/antoniocapelo.github.com/commits/95f4999554358738cfc3265fd918a144af5cbb20"}]},"public":true,"created_at":"2015-01-01T15:17:49Z"} +,{"id":"2489659357","type":"IssuesEvent","actor":{"id":5834891,"login":"pieroblunda","gravatar_id":"","url":"https://api.github.com/users/pieroblunda","avatar_url":"https://avatars.githubusercontent.com/u/5834891?"},"repo":{"id":14687040,"name":"pieroblunda/pbModal","url":"https://api.github.com/repos/pieroblunda/pbModal"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/pieroblunda/pbModal/issues/9","labels_url":"https://api.github.com/repos/pieroblunda/pbModal/issues/9/labels{/name}","comments_url":"https://api.github.com/repos/pieroblunda/pbModal/issues/9/comments","events_url":"https://api.github.com/repos/pieroblunda/pbModal/issues/9/events","html_url":"https://github.com/pieroblunda/pbModal/issues/9","id":53221693,"number":9,"title":"Validacion","user":{"login":"pieroblunda","id":5834891,"avatar_url":"https://avatars.githubusercontent.com/u/5834891?v=3","gravatar_id":"","url":"https://api.github.com/users/pieroblunda","html_url":"https://github.com/pieroblunda","followers_url":"https://api.github.com/users/pieroblunda/followers","following_url":"https://api.github.com/users/pieroblunda/following{/other_user}","gists_url":"https://api.github.com/users/pieroblunda/gists{/gist_id}","starred_url":"https://api.github.com/users/pieroblunda/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pieroblunda/subscriptions","organizations_url":"https://api.github.com/users/pieroblunda/orgs","repos_url":"https://api.github.com/users/pieroblunda/repos","events_url":"https://api.github.com/users/pieroblunda/events{/privacy}","received_events_url":"https://api.github.com/users/pieroblunda/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/pieroblunda/pbModal/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:17:49Z","updated_at":"2015-01-01T15:17:49Z","closed_at":null,"body":"Hoy necesito llamar al metodo .close si muestro dos mensajes seguidos.\r\n\r\nIncormorar pb.modal.close() antes de abrir un nuevo popUp\r\n\r\nProblema detectado en SangorSeguros/Ros/admin"}},"public":true,"created_at":"2015-01-01T15:17:49Z"} +,{"id":"2489659365","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":536867706,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4607a713be383c2f67f426efbea8f920d7c07b28","before":"d13cbd1e5c68b189fc91cfa14fdae1f52ef6f9e1","commits":[{"sha":"4607a713be383c2f67f426efbea8f920d7c07b28","author":{"email":"3e9bbe622d800410f1d4d0a4bb92004e147f1b1e@163.com","name":"jdilt"},"message":"add margin to panel-heading","distinct":true,"url":"https://api.github.com/repos/jdilt/jdilt.github.io/commits/4607a713be383c2f67f426efbea8f920d7c07b28"}]},"public":true,"created_at":"2015-01-01T15:17:50Z"} +,{"id":"2489659366","type":"WatchEvent","actor":{"id":1325941,"login":"mitharris","gravatar_id":"","url":"https://api.github.com/users/mitharris","avatar_url":"https://avatars.githubusercontent.com/u/1325941?"},"repo":{"id":18198998,"name":"jcalazan/ansible-django-stack","url":"https://api.github.com/repos/jcalazan/ansible-django-stack"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:50Z"} +,{"id":"2489659373","type":"MemberEvent","actor":{"id":4202614,"login":"Raiseupcreativity","gravatar_id":"","url":"https://api.github.com/users/Raiseupcreativity","avatar_url":"https://avatars.githubusercontent.com/u/4202614?"},"repo":{"id":27391233,"name":"Raiseupcreativity/dojo_rules","url":"https://api.github.com/repos/Raiseupcreativity/dojo_rules"},"payload":{"member":{"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},"action":"added"},"public":true,"created_at":"2015-01-01T15:17:52Z"} +,{"id":"2489659374","type":"PushEvent","actor":{"id":3587553,"login":"koturn","gravatar_id":"","url":"https://api.github.com/users/koturn","avatar_url":"https://avatars.githubusercontent.com/u/3587553?"},"repo":{"id":28364033,"name":"koturn/TermUtil","url":"https://api.github.com/repos/koturn/TermUtil"},"payload":{"push_id":536867709,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5e19b9804e06610bc8045cb453821ba0d450568c","before":"f71971547e486a4249cc1a22fcb0de74ae5bb857","commits":[{"sha":"5e19b9804e06610bc8045cb453821ba0d450568c","author":{"email":"022c70e7122f4a295235f7f7e8071471e6441bb1@gmail.com","name":"koturn"},"message":"Fix one warning","distinct":true,"url":"https://api.github.com/repos/koturn/TermUtil/commits/5e19b9804e06610bc8045cb453821ba0d450568c"}]},"public":true,"created_at":"2015-01-01T15:17:52Z"} +,{"id":"2489659376","type":"PushEvent","actor":{"id":9321890,"login":"nadborduedil","gravatar_id":"","url":"https://api.github.com/users/nadborduedil","avatar_url":"https://avatars.githubusercontent.com/u/9321890?"},"repo":{"id":28224558,"name":"nadborduedil/networks","url":"https://api.github.com/repos/nadborduedil/networks"},"payload":{"push_id":536867711,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bd8d0c541af0fa32f3bd6f350bd0cec6890abbda","before":"936a7e3382684ad88c17ac267c599ba1ed62d64f","commits":[{"sha":"bd8d0c541af0fa32f3bd6f350bd0cec6890abbda","author":{"email":"edf97615dbd3cb30c1fd1a8e9adea398818d4c2c@duedil.com","name":"nadborduedil"},"message":"Create README.md","distinct":true,"url":"https://api.github.com/repos/nadborduedil/networks/commits/bd8d0c541af0fa32f3bd6f350bd0cec6890abbda"}]},"public":true,"created_at":"2015-01-01T15:17:53Z"} +,{"id":"2489659378","type":"ForkEvent","actor":{"id":699165,"login":"ogf","gravatar_id":"","url":"https://api.github.com/users/ogf","avatar_url":"https://avatars.githubusercontent.com/u/699165?"},"repo":{"id":17910978,"name":"martintrojer/dotfiles","url":"https://api.github.com/repos/martintrojer/dotfiles"},"payload":{"forkee":{"id":28688929,"name":"dotfiles","full_name":"ogf/dotfiles","owner":{"login":"ogf","id":699165,"avatar_url":"https://avatars.githubusercontent.com/u/699165?v=3","gravatar_id":"","url":"https://api.github.com/users/ogf","html_url":"https://github.com/ogf","followers_url":"https://api.github.com/users/ogf/followers","following_url":"https://api.github.com/users/ogf/following{/other_user}","gists_url":"https://api.github.com/users/ogf/gists{/gist_id}","starred_url":"https://api.github.com/users/ogf/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ogf/subscriptions","organizations_url":"https://api.github.com/users/ogf/orgs","repos_url":"https://api.github.com/users/ogf/repos","events_url":"https://api.github.com/users/ogf/events{/privacy}","received_events_url":"https://api.github.com/users/ogf/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ogf/dotfiles","description":"","fork":true,"url":"https://api.github.com/repos/ogf/dotfiles","forks_url":"https://api.github.com/repos/ogf/dotfiles/forks","keys_url":"https://api.github.com/repos/ogf/dotfiles/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ogf/dotfiles/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ogf/dotfiles/teams","hooks_url":"https://api.github.com/repos/ogf/dotfiles/hooks","issue_events_url":"https://api.github.com/repos/ogf/dotfiles/issues/events{/number}","events_url":"https://api.github.com/repos/ogf/dotfiles/events","assignees_url":"https://api.github.com/repos/ogf/dotfiles/assignees{/user}","branches_url":"https://api.github.com/repos/ogf/dotfiles/branches{/branch}","tags_url":"https://api.github.com/repos/ogf/dotfiles/tags","blobs_url":"https://api.github.com/repos/ogf/dotfiles/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ogf/dotfiles/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ogf/dotfiles/git/refs{/sha}","trees_url":"https://api.github.com/repos/ogf/dotfiles/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ogf/dotfiles/statuses/{sha}","languages_url":"https://api.github.com/repos/ogf/dotfiles/languages","stargazers_url":"https://api.github.com/repos/ogf/dotfiles/stargazers","contributors_url":"https://api.github.com/repos/ogf/dotfiles/contributors","subscribers_url":"https://api.github.com/repos/ogf/dotfiles/subscribers","subscription_url":"https://api.github.com/repos/ogf/dotfiles/subscription","commits_url":"https://api.github.com/repos/ogf/dotfiles/commits{/sha}","git_commits_url":"https://api.github.com/repos/ogf/dotfiles/git/commits{/sha}","comments_url":"https://api.github.com/repos/ogf/dotfiles/comments{/number}","issue_comment_url":"https://api.github.com/repos/ogf/dotfiles/issues/comments/{number}","contents_url":"https://api.github.com/repos/ogf/dotfiles/contents/{+path}","compare_url":"https://api.github.com/repos/ogf/dotfiles/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ogf/dotfiles/merges","archive_url":"https://api.github.com/repos/ogf/dotfiles/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ogf/dotfiles/downloads","issues_url":"https://api.github.com/repos/ogf/dotfiles/issues{/number}","pulls_url":"https://api.github.com/repos/ogf/dotfiles/pulls{/number}","milestones_url":"https://api.github.com/repos/ogf/dotfiles/milestones{/number}","notifications_url":"https://api.github.com/repos/ogf/dotfiles/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ogf/dotfiles/labels{/name}","releases_url":"https://api.github.com/repos/ogf/dotfiles/releases{/id}","created_at":"2015-01-01T15:17:53Z","updated_at":"2015-01-01T01:49:24Z","pushed_at":"2014-12-21T13:15:06Z","git_url":"git://github.com/ogf/dotfiles.git","ssh_url":"git@github.com:ogf/dotfiles.git","clone_url":"https://github.com/ogf/dotfiles.git","svn_url":"https://github.com/ogf/dotfiles","homepage":null,"size":883,"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:17:53Z"} +,{"id":"2489659381","type":"PushEvent","actor":{"id":9769086,"login":"sporter69","gravatar_id":"","url":"https://api.github.com/users/sporter69","avatar_url":"https://avatars.githubusercontent.com/u/9769086?"},"repo":{"id":28312912,"name":"lcrespom/ycs","url":"https://api.github.com/repos/lcrespom/ycs"},"payload":{"push_id":536867712,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7d757fd6d6f20bed1ef724f92be9a77c14f814d2","before":"77fdf75a06210c15f2512464a277b4246764fe1a","commits":[{"sha":"7d757fd6d6f20bed1ef724f92be9a77c14f814d2","author":{"email":"3c3fae4eb0fb8d0e50830db4a8590e41d7714b5a@gmx.com","name":"admin@mydocumenta.com"},"message":"TextosDAO","distinct":true,"url":"https://api.github.com/repos/lcrespom/ycs/commits/7d757fd6d6f20bed1ef724f92be9a77c14f814d2"}]},"public":true,"created_at":"2015-01-01T15:17:53Z"} +,{"id":"2489659383","type":"IssueCommentEvent","actor":{"id":5636,"login":"purcell","gravatar_id":"","url":"https://api.github.com/users/purcell","avatar_url":"https://avatars.githubusercontent.com/u/5636?"},"repo":{"id":2517120,"name":"milkypostman/melpa","url":"https://api.github.com/repos/milkypostman/melpa"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/milkypostman/melpa/issues/2333","labels_url":"https://api.github.com/repos/milkypostman/melpa/issues/2333/labels{/name}","comments_url":"https://api.github.com/repos/milkypostman/melpa/issues/2333/comments","events_url":"https://api.github.com/repos/milkypostman/melpa/issues/2333/events","html_url":"https://github.com/milkypostman/melpa/pull/2333","id":53220868,"number":2333,"title":"add recipe for phi-grep","user":{"login":"zk-phi","id":3530521,"avatar_url":"https://avatars.githubusercontent.com/u/3530521?v=3","gravatar_id":"","url":"https://api.github.com/users/zk-phi","html_url":"https://github.com/zk-phi","followers_url":"https://api.github.com/users/zk-phi/followers","following_url":"https://api.github.com/users/zk-phi/following{/other_user}","gists_url":"https://api.github.com/users/zk-phi/gists{/gist_id}","starred_url":"https://api.github.com/users/zk-phi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zk-phi/subscriptions","organizations_url":"https://api.github.com/users/zk-phi/orgs","repos_url":"https://api.github.com/users/zk-phi/repos","events_url":"https://api.github.com/users/zk-phi/events{/privacy}","received_events_url":"https://api.github.com/users/zk-phi/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T14:35:04Z","updated_at":"2015-01-01T15:17:53Z","closed_at":"2015-01-01T15:16:52Z","pull_request":{"url":"https://api.github.com/repos/milkypostman/melpa/pulls/2333","html_url":"https://github.com/milkypostman/melpa/pull/2333","diff_url":"https://github.com/milkypostman/melpa/pull/2333.diff","patch_url":"https://github.com/milkypostman/melpa/pull/2333.patch"},"body":"please add phi-grep."},"comment":{"url":"https://api.github.com/repos/milkypostman/melpa/issues/comments/68488871","html_url":"https://github.com/milkypostman/melpa/pull/2333#issuecomment-68488871","issue_url":"https://api.github.com/repos/milkypostman/melpa/issues/2333","id":68488871,"user":{"login":"purcell","id":5636,"avatar_url":"https://avatars.githubusercontent.com/u/5636?v=3","gravatar_id":"","url":"https://api.github.com/users/purcell","html_url":"https://github.com/purcell","followers_url":"https://api.github.com/users/purcell/followers","following_url":"https://api.github.com/users/purcell/following{/other_user}","gists_url":"https://api.github.com/users/purcell/gists{/gist_id}","starred_url":"https://api.github.com/users/purcell/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/purcell/subscriptions","organizations_url":"https://api.github.com/users/purcell/orgs","repos_url":"https://api.github.com/users/purcell/repos","events_url":"https://api.github.com/users/purcell/events{/privacy}","received_events_url":"https://api.github.com/users/purcell/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:17:53Z","updated_at":"2015-01-01T15:17:53Z","body":"Thanks. I suggest you consider using `grep-find-ignored-files` and `grep-find-ignored-directories` instead of creating your own lists of patterns. Those variables seem to be the canonical place to specify ignore patterns."}},"public":true,"created_at":"2015-01-01T15:17:53Z"} +,{"id":"2489659384","type":"PushEvent","actor":{"id":3639811,"login":"deepakkarki","gravatar_id":"","url":"https://api.github.com/users/deepakkarki","avatar_url":"https://avatars.githubusercontent.com/u/3639811?"},"repo":{"id":28554009,"name":"deepakkarki/deepakkarki.github.io","url":"https://api.github.com/repos/deepakkarki/deepakkarki.github.io"},"payload":{"push_id":536867713,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"75dc50d57db1177984441236a932bef8ccc2a46b","before":"1bad71ead863a2c8c4edfb983bd1cacc8a818706","commits":[{"sha":"75dc50d57db1177984441236a932bef8ccc2a46b","author":{"email":"feab7e89b2a615c881e1dc2e0892c0c41e34c46f@gmail.com","name":"deepakkarki"},"message":"changed title to look nicer","distinct":true,"url":"https://api.github.com/repos/deepakkarki/deepakkarki.github.io/commits/75dc50d57db1177984441236a932bef8ccc2a46b"}]},"public":true,"created_at":"2015-01-01T15:17:53Z"} +,{"id":"2489659385","type":"PushEvent","actor":{"id":474878,"login":"wesyoung","gravatar_id":"","url":"https://api.github.com/users/wesyoung","avatar_url":"https://avatars.githubusercontent.com/u/474878?"},"repo":{"id":15674129,"name":"csirtgadgets/massive-octo-spice","url":"https://api.github.com/repos/csirtgadgets/massive-octo-spice"},"payload":{"push_id":536867714,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"b43582d34061c638c57dbeed05fe0550f158034f","before":"ce3160a2ba9a3f47c02c0e37ff70a5877b6ebda4","commits":[{"sha":"b43582d34061c638c57dbeed05fe0550f158034f","author":{"email":"dd516747aaff812d65b57b832bbf2900e5471cbc@barely3am.com","name":"Wes Young"},"message":"fixes #137","distinct":true,"url":"https://api.github.com/repos/csirtgadgets/massive-octo-spice/commits/b43582d34061c638c57dbeed05fe0550f158034f"}]},"public":true,"created_at":"2015-01-01T15:17:53Z","org":{"id":5203786,"login":"csirtgadgets","gravatar_id":"","url":"https://api.github.com/orgs/csirtgadgets","avatar_url":"https://avatars.githubusercontent.com/u/5203786?"}} +,{"id":"2489659386","type":"PushEvent","actor":{"id":1951181,"login":"theetcher","gravatar_id":"","url":"https://api.github.com/users/theetcher","avatar_url":"https://avatars.githubusercontent.com/u/1951181?"},"repo":{"id":22078319,"name":"theetcher/fxpt","url":"https://api.github.com/repos/theetcher/fxpt"},"payload":{"push_id":536867715,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"702ab8559782ba07572534d68c2b516405983ed2","before":"9f2ae290809a40118a90d6c161b2a27574a6f759","commits":[{"sha":"702ab8559782ba07572534d68c2b516405983ed2","author":{"email":"3e87611f5e4cf4a51ba806f507e6209e4918b660@gmail.com","name":"Eugene Davydenko"},"message":"textureManager in progress","distinct":true,"url":"https://api.github.com/repos/theetcher/fxpt/commits/702ab8559782ba07572534d68c2b516405983ed2"}]},"public":true,"created_at":"2015-01-01T15:17:54Z"} +,{"id":"2489659387","type":"PushEvent","actor":{"id":1985040,"login":"adrelanos","gravatar_id":"","url":"https://api.github.com/users/adrelanos","avatar_url":"https://avatars.githubusercontent.com/u/1985040?"},"repo":{"id":27195155,"name":"adrelanos/whonix-setup-wizard","url":"https://api.github.com/repos/adrelanos/whonix-setup-wizard"},"payload":{"push_id":536867716,"size":4,"distinct_size":4,"ref":"refs/heads/master","head":"3bea11fc39cf80cf91b18cc8b065ded1e84a718f","before":"ad961566eed3210b57b83a0725fa79bcfd52f8b0","commits":[{"sha":"353850bcdcaed42869def3ecf021c92c75c2a052","author":{"email":"761f1023005d50561972ec6c0d1e9ee67a7230c2@riseup.net","name":"troubadoour"},"message":"os.mkdir() instead of calling a shell.","distinct":true,"url":"https://api.github.com/repos/adrelanos/whonix-setup-wizard/commits/353850bcdcaed42869def3ecf021c92c75c2a052"},{"sha":"006060e78c388072d4a50f69b171f25a10bef96a","author":{"email":"761f1023005d50561972ec6c0d1e9ee67a7230c2@riseup.net","name":"troubadoour"},"message":"cannot_connect page.","distinct":true,"url":"https://api.github.com/repos/adrelanos/whonix-setup-wizard/commits/006060e78c388072d4a50f69b171f25a10bef96a"},{"sha":"80de9027847eb6aaebfc795e083909513b007343","author":{"email":"5a50a88c5fa8d150d86d352032835284723dc86f@riseup.net","name":"Patrick Schleizer"},"message":"Merge remote-tracking branch 'troubadoour/master'","distinct":true,"url":"https://api.github.com/repos/adrelanos/whonix-setup-wizard/commits/80de9027847eb6aaebfc795e083909513b007343"},{"sha":"3bea11fc39cf80cf91b18cc8b065ded1e84a718f","author":{"email":"5a50a88c5fa8d150d86d352032835284723dc86f@riseup.net","name":"Patrick Schleizer"},"message":"moved /etc/xdg/autostart/whonixsetup.desktop from whonixsetup to whonix-setup-wizard /etc/xdg/autostart/whonix-setup-wizard.desktop","distinct":true,"url":"https://api.github.com/repos/adrelanos/whonix-setup-wizard/commits/3bea11fc39cf80cf91b18cc8b065ded1e84a718f"}]},"public":true,"created_at":"2015-01-01T15:17:54Z"} +,{"id":"2489659389","type":"PushEvent","actor":{"id":1985040,"login":"adrelanos","gravatar_id":"","url":"https://api.github.com/users/adrelanos","avatar_url":"https://avatars.githubusercontent.com/u/1985040?"},"repo":{"id":27195144,"name":"Whonix/whonix-setup-wizard","url":"https://api.github.com/repos/Whonix/whonix-setup-wizard"},"payload":{"push_id":536867718,"size":4,"distinct_size":4,"ref":"refs/heads/master","head":"3bea11fc39cf80cf91b18cc8b065ded1e84a718f","before":"ad961566eed3210b57b83a0725fa79bcfd52f8b0","commits":[{"sha":"353850bcdcaed42869def3ecf021c92c75c2a052","author":{"email":"761f1023005d50561972ec6c0d1e9ee67a7230c2@riseup.net","name":"troubadoour"},"message":"os.mkdir() instead of calling a shell.","distinct":true,"url":"https://api.github.com/repos/Whonix/whonix-setup-wizard/commits/353850bcdcaed42869def3ecf021c92c75c2a052"},{"sha":"006060e78c388072d4a50f69b171f25a10bef96a","author":{"email":"761f1023005d50561972ec6c0d1e9ee67a7230c2@riseup.net","name":"troubadoour"},"message":"cannot_connect page.","distinct":true,"url":"https://api.github.com/repos/Whonix/whonix-setup-wizard/commits/006060e78c388072d4a50f69b171f25a10bef96a"},{"sha":"80de9027847eb6aaebfc795e083909513b007343","author":{"email":"5a50a88c5fa8d150d86d352032835284723dc86f@riseup.net","name":"Patrick Schleizer"},"message":"Merge remote-tracking branch 'troubadoour/master'","distinct":true,"url":"https://api.github.com/repos/Whonix/whonix-setup-wizard/commits/80de9027847eb6aaebfc795e083909513b007343"},{"sha":"3bea11fc39cf80cf91b18cc8b065ded1e84a718f","author":{"email":"5a50a88c5fa8d150d86d352032835284723dc86f@riseup.net","name":"Patrick Schleizer"},"message":"moved /etc/xdg/autostart/whonixsetup.desktop from whonixsetup to whonix-setup-wizard /etc/xdg/autostart/whonix-setup-wizard.desktop","distinct":true,"url":"https://api.github.com/repos/Whonix/whonix-setup-wizard/commits/3bea11fc39cf80cf91b18cc8b065ded1e84a718f"}]},"public":true,"created_at":"2015-01-01T15:17:54Z","org":{"id":4500165,"login":"Whonix","gravatar_id":"","url":"https://api.github.com/orgs/Whonix","avatar_url":"https://avatars.githubusercontent.com/u/4500165?"}} +,{"id":"2489659390","type":"IssuesEvent","actor":{"id":2156237,"login":"arkascha","gravatar_id":"","url":"https://api.github.com/users/arkascha","avatar_url":"https://avatars.githubusercontent.com/u/2156237?"},"repo":{"id":8987090,"name":"owncloud/shorty","url":"https://api.github.com/repos/owncloud/shorty"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/owncloud/shorty/issues/88","labels_url":"https://api.github.com/repos/owncloud/shorty/issues/88/labels{/name}","comments_url":"https://api.github.com/repos/owncloud/shorty/issues/88/comments","events_url":"https://api.github.com/repos/owncloud/shorty/issues/88/events","html_url":"https://github.com/owncloud/shorty/issues/88","id":53221695,"number":88,"title":"There should be a one-click option to copy an existing Shorty URL","user":{"login":"arkascha","id":2156237,"avatar_url":"https://avatars.githubusercontent.com/u/2156237?v=3","gravatar_id":"","url":"https://api.github.com/users/arkascha","html_url":"https://github.com/arkascha","followers_url":"https://api.github.com/users/arkascha/followers","following_url":"https://api.github.com/users/arkascha/following{/other_user}","gists_url":"https://api.github.com/users/arkascha/gists{/gist_id}","starred_url":"https://api.github.com/users/arkascha/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arkascha/subscriptions","organizations_url":"https://api.github.com/users/arkascha/orgs","repos_url":"https://api.github.com/users/arkascha/repos","events_url":"https://api.github.com/users/arkascha/events{/privacy}","received_events_url":"https://api.github.com/users/arkascha/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:17:54Z","updated_at":"2015-01-01T15:17:54Z","closed_at":null,"body":"The only purpose of creating a Shorty is to use that Shorty URL to post it or otherwise share it. \r\nFor this it makes sense to be able to access (copy) that URL as simple and fast as possible: one single click. \r\n\r\nProblem here: cross browser copy-to-clipboard does not (yet) work. "}},"public":true,"created_at":"2015-01-01T15:17:54Z","org":{"id":1645051,"login":"owncloud","gravatar_id":"","url":"https://api.github.com/orgs/owncloud","avatar_url":"https://avatars.githubusercontent.com/u/1645051?"}} +,{"id":"2489659391","type":"PushEvent","actor":{"id":7595862,"login":"Chrisxwh","gravatar_id":"","url":"https://api.github.com/users/Chrisxwh","avatar_url":"https://avatars.githubusercontent.com/u/7595862?"},"repo":{"id":28688913,"name":"Chrisxwh/Simple-UDP-Script","url":"https://api.github.com/repos/Chrisxwh/Simple-UDP-Script"},"payload":{"push_id":536867719,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"91d0f2d7254feec08a6516675369857857539d97","before":"8883a55de78d50c8e92a26df3c38986626a1d5dd","commits":[{"sha":"91d0f2d7254feec08a6516675369857857539d97","author":{"email":"c9180f2bf4d6a7af150e29f041048a109c8b8b9d@gmail.com","name":"Chrisxwh"},"message":"Create udp.pl","distinct":true,"url":"https://api.github.com/repos/Chrisxwh/Simple-UDP-Script/commits/91d0f2d7254feec08a6516675369857857539d97"}]},"public":true,"created_at":"2015-01-01T15:17:54Z"} +,{"id":"2489659393","type":"PushEvent","actor":{"id":9810998,"login":"mickoo","gravatar_id":"","url":"https://api.github.com/users/mickoo","avatar_url":"https://avatars.githubusercontent.com/u/9810998?"},"repo":{"id":26881836,"name":"mickoo/pp1domaci","url":"https://api.github.com/repos/mickoo/pp1domaci"},"payload":{"push_id":536867721,"size":1,"distinct_size":1,"ref":"refs/heads/Opet-moram-greske","head":"15301d2807fe29ea3b054da7089d42105eb1f2be","before":"49138deafcf0217e94eebe48dfd90f4c99372542","commits":[{"sha":"15301d2807fe29ea3b054da7089d42105eb1f2be","author":{"email":"baaddac5927b9b9baf4a9411ac4735ff448532a7@live.com","name":"mickoo"},"message":"Greske zavrsene jos testovi","distinct":true,"url":"https://api.github.com/repos/mickoo/pp1domaci/commits/15301d2807fe29ea3b054da7089d42105eb1f2be"}]},"public":true,"created_at":"2015-01-01T15:17:55Z"} +,{"id":"2489659394","type":"PushEvent","actor":{"id":3507456,"login":"mbreecher","gravatar_id":"","url":"https://api.github.com/users/mbreecher","avatar_url":"https://avatars.githubusercontent.com/u/3507456?"},"repo":{"id":28246716,"name":"mbreecher/42","url":"https://api.github.com/repos/mbreecher/42"},"payload":{"push_id":536867722,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5a5122ac5fdccee498eac407ab1ff77a2bb87037","before":"0baea1710cd580950eea69ade25cc79f6c27a06f","commits":[{"sha":"5a5122ac5fdccee498eac407ab1ff77a2bb87037","author":{"email":"0da3cbc61e00123eec1be1071f5ec0df91619398@gmail.com","name":"mike breecher"},"message":"made Q-K full service roll forwards 10-K fsrfs","distinct":true,"url":"https://api.github.com/repos/mbreecher/42/commits/5a5122ac5fdccee498eac407ab1ff77a2bb87037"}]},"public":true,"created_at":"2015-01-01T15:17:55Z"} +,{"id":"2489659395","type":"WatchEvent","actor":{"id":193187,"login":"sherbondy","gravatar_id":"","url":"https://api.github.com/users/sherbondy","avatar_url":"https://avatars.githubusercontent.com/u/193187?"},"repo":{"id":8262612,"name":"azer/emacs","url":"https://api.github.com/repos/azer/emacs"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:55Z"} +,{"id":"2489659396","type":"PushEvent","actor":{"id":8323759,"login":"MozillaPootleL10nBot","gravatar_id":"","url":"https://api.github.com/users/MozillaPootleL10nBot","avatar_url":"https://avatars.githubusercontent.com/u/8323759?"},"repo":{"id":6078184,"name":"translate/mozilla-l10n","url":"https://api.github.com/repos/translate/mozilla-l10n"},"payload":{"push_id":536867723,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b24db1a4172d0e3d9fcf7e57ce76d2c47c9371f7","before":"baa4076245552d051c766fc9a7766f972372c46d","commits":[{"sha":"b24db1a4172d0e3d9fcf7e57ce76d2c47c9371f7","author":{"email":"f02c4b7f151600c94fb4d6f03844f716aeaa6d62@translate.org.za","name":"Mozilla Pootle L10n Robot"},"message":"[es_MX] pull from Pootle (firefox)","distinct":true,"url":"https://api.github.com/repos/translate/mozilla-l10n/commits/b24db1a4172d0e3d9fcf7e57ce76d2c47c9371f7"}]},"public":true,"created_at":"2015-01-01T15:17:55Z","org":{"id":1538178,"login":"translate","gravatar_id":"","url":"https://api.github.com/orgs/translate","avatar_url":"https://avatars.githubusercontent.com/u/1538178?"}} +,{"id":"2489659397","type":"WatchEvent","actor":{"id":1947204,"login":"danieljl","gravatar_id":"","url":"https://api.github.com/users/danieljl","avatar_url":"https://avatars.githubusercontent.com/u/1947204?"},"repo":{"id":24823224,"name":"Deathamns/uBlock","url":"https://api.github.com/repos/Deathamns/uBlock"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:56Z"} +,{"id":"2489659401","type":"PushEvent","actor":{"id":4686622,"login":"raryosu","gravatar_id":"","url":"https://api.github.com/users/raryosu","avatar_url":"https://avatars.githubusercontent.com/u/4686622?"},"repo":{"id":25871284,"name":"raryosu/djangoblog","url":"https://api.github.com/repos/raryosu/djangoblog"},"payload":{"push_id":536867725,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e8e8fb22df8722c87eb5d9403b51bf73d841bc6a","before":"ed52d895e0bfe4b01f48bae864ee1342cf23a740","commits":[{"sha":"e8e8fb22df8722c87eb5d9403b51bf73d841bc6a","author":{"email":"667a5e8e59299633e9d6b965cbb15b0075275d47@gmail.com","name":"raryosu"},"message":"fix visual","distinct":true,"url":"https://api.github.com/repos/raryosu/djangoblog/commits/e8e8fb22df8722c87eb5d9403b51bf73d841bc6a"}]},"public":true,"created_at":"2015-01-01T15:17:57Z"} +,{"id":"2489659403","type":"PushEvent","actor":{"id":723226,"login":"svisser","gravatar_id":"","url":"https://api.github.com/users/svisser","avatar_url":"https://avatars.githubusercontent.com/u/723226?"},"repo":{"id":28678921,"name":"svisser/tracker","url":"https://api.github.com/repos/svisser/tracker"},"payload":{"push_id":536867726,"size":4,"distinct_size":4,"ref":"refs/heads/master","head":"1d89f63601c7b5e103c3d96261bd47fcf32340ab","before":"cd45a54bba7116bf53788016cb67ebb4e927db64","commits":[{"sha":"89d4a95cc064b7323b2c450b1c232a2fe1a53d42","author":{"email":"4a71736761604f7b84bde37705b41ee07383a738@gmail.com","name":"Simeon Visser"},"message":"Refactored common init logic into its own function","distinct":true,"url":"https://api.github.com/repos/svisser/tracker/commits/89d4a95cc064b7323b2c450b1c232a2fe1a53d42"},{"sha":"9f274155b5799e506a17e278febd3e1daeda0c57","author":{"email":"4a71736761604f7b84bde37705b41ee07383a738@gmail.com","name":"Simeon Visser"},"message":"Make sure nested objects are also persisted to the database","distinct":true,"url":"https://api.github.com/repos/svisser/tracker/commits/9f274155b5799e506a17e278febd3e1daeda0c57"},{"sha":"1bf8deec71c3d7a73766d3539eec482739f3c2b7","author":{"email":"4a71736761604f7b84bde37705b41ee07383a738@gmail.com","name":"Simeon Visser"},"message":"Added ability to add new objects to the database","distinct":true,"url":"https://api.github.com/repos/svisser/tracker/commits/1bf8deec71c3d7a73766d3539eec482739f3c2b7"},{"sha":"1d89f63601c7b5e103c3d96261bd47fcf32340ab","author":{"email":"4a71736761604f7b84bde37705b41ee07383a738@gmail.com","name":"Simeon Visser"},"message":"Added ability to view facts related to an object as stored in the database","distinct":true,"url":"https://api.github.com/repos/svisser/tracker/commits/1d89f63601c7b5e103c3d96261bd47fcf32340ab"}]},"public":true,"created_at":"2015-01-01T15:17:57Z"} +,{"id":"2489659404","type":"IssueCommentEvent","actor":{"id":10180062,"login":"mjn33","gravatar_id":"","url":"https://api.github.com/users/mjn33","avatar_url":"https://avatars.githubusercontent.com/u/10180062?"},"repo":{"id":26627547,"name":"Crzyrndm/Pilot-Assistant","url":"https://api.github.com/repos/Crzyrndm/Pilot-Assistant"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/Crzyrndm/Pilot-Assistant/issues/7","labels_url":"https://api.github.com/repos/Crzyrndm/Pilot-Assistant/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/Crzyrndm/Pilot-Assistant/issues/7/comments","events_url":"https://api.github.com/repos/Crzyrndm/Pilot-Assistant/issues/7/events","html_url":"https://github.com/Crzyrndm/Pilot-Assistant/pull/7","id":52960162,"number":7,"title":"Forked version","user":{"login":"mjn33","id":10180062,"avatar_url":"https://avatars.githubusercontent.com/u/10180062?v=3","gravatar_id":"","url":"https://api.github.com/users/mjn33","html_url":"https://github.com/mjn33","followers_url":"https://api.github.com/users/mjn33/followers","following_url":"https://api.github.com/users/mjn33/following{/other_user}","gists_url":"https://api.github.com/users/mjn33/gists{/gist_id}","starred_url":"https://api.github.com/users/mjn33/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mjn33/subscriptions","organizations_url":"https://api.github.com/users/mjn33/orgs","repos_url":"https://api.github.com/users/mjn33/repos","events_url":"https://api.github.com/users/mjn33/events{/privacy}","received_events_url":"https://api.github.com/users/mjn33/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-27T16:07:48Z","updated_at":"2015-01-01T15:17:57Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/Crzyrndm/Pilot-Assistant/pulls/7","html_url":"https://github.com/Crzyrndm/Pilot-Assistant/pull/7","diff_url":"https://github.com/Crzyrndm/Pilot-Assistant/pull/7.diff","patch_url":"https://github.com/Crzyrndm/Pilot-Assistant/pull/7.patch"},"body":"Hello again,\r\n\r\nThis pull request is to let you know about the rework I have done on Pilot Assistant, which might contain some things of interest.\r\n\r\nI have refactored most of the code, some changes include:\r\n * Using \"private\" instead of \"internal\" in most places. \r\n * Reducing tight coupling between components.\r\n * Tried to separate GUI drawing and behavioural stuff.\r\n\r\nOther changes include:\r\n * My original GUI changes.\r\n * The SAS GUI has been redone, and should (hopefully) be simpler to understand. \r\n * Text fields now have input lock, this blocks vessel control and time warp.\r\n * Also SAS an PA were modified to also respect these input locks.\r\n * Files for building on Linux (using xbuild)\r\n * Maintained feature parity with your version. \r\n\r\nOverall the code base is quite different in many ways, and I shall continue to maintain my version.\r\n\r\nMatthew. "},"comment":{"url":"https://api.github.com/repos/Crzyrndm/Pilot-Assistant/issues/comments/68488872","html_url":"https://github.com/Crzyrndm/Pilot-Assistant/pull/7#issuecomment-68488872","issue_url":"https://api.github.com/repos/Crzyrndm/Pilot-Assistant/issues/7","id":68488872,"user":{"login":"mjn33","id":10180062,"avatar_url":"https://avatars.githubusercontent.com/u/10180062?v=3","gravatar_id":"","url":"https://api.github.com/users/mjn33","html_url":"https://github.com/mjn33","followers_url":"https://api.github.com/users/mjn33/followers","following_url":"https://api.github.com/users/mjn33/following{/other_user}","gists_url":"https://api.github.com/users/mjn33/gists{/gist_id}","starred_url":"https://api.github.com/users/mjn33/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mjn33/subscriptions","organizations_url":"https://api.github.com/users/mjn33/orgs","repos_url":"https://api.github.com/users/mjn33/repos","events_url":"https://api.github.com/users/mjn33/events{/privacy}","received_events_url":"https://api.github.com/users/mjn33/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:17:57Z","updated_at":"2015-01-01T15:17:57Z","body":"I've made a few updates, changes include:\r\n* SSAS can now handle switching between multiple vessels better.\r\n* New PauseManager() code which also provides joystick/controller support for SSAS.\r\n* Joystick/controller support added to PilotAssistant.\r\n* Many various small changes, improvements, bugfixes etc.\r\n* Binned Monitor.cs, InputModerator.cs and ModeratorMainWindow.cs\r\n\r\nMatthew. "}},"public":true,"created_at":"2015-01-01T15:17:57Z"} +,{"id":"2489659405","type":"WatchEvent","actor":{"id":2282880,"login":"cloudtrends","gravatar_id":"","url":"https://api.github.com/users/cloudtrends","avatar_url":"https://avatars.githubusercontent.com/u/2282880?"},"repo":{"id":6247705,"name":"stretchr/testify","url":"https://api.github.com/repos/stretchr/testify"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:57Z","org":{"id":1841476,"login":"stretchr","gravatar_id":"","url":"https://api.github.com/orgs/stretchr","avatar_url":"https://avatars.githubusercontent.com/u/1841476?"}} +,{"id":"2489659407","type":"WatchEvent","actor":{"id":4741760,"login":"webislife","gravatar_id":"","url":"https://api.github.com/users/webislife","avatar_url":"https://avatars.githubusercontent.com/u/4741760?"},"repo":{"id":23400067,"name":"webislife/mod_webislifeajaxform","url":"https://api.github.com/repos/webislife/mod_webislifeajaxform"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:17:58Z"} +,{"id":"2489659411","type":"CreateEvent","actor":{"id":5303727,"login":"Brijendrasial","gravatar_id":"","url":"https://api.github.com/users/Brijendrasial","avatar_url":"https://avatars.githubusercontent.com/u/5303727?"},"repo":{"id":28688927,"name":"Brijendrasial/Csgolounge.com-Automated-Bump","url":"https://api.github.com/repos/Brijendrasial/Csgolounge.com-Automated-Bump"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Auto Bump Script for Csgolounge.com","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:17:58Z"} +,{"id":"2489659412","type":"IssueCommentEvent","actor":{"id":37787,"login":"daleharvey","gravatar_id":"","url":"https://api.github.com/users/daleharvey","avatar_url":"https://avatars.githubusercontent.com/u/37787?"},"repo":{"id":714074,"name":"pouchdb/pouchdb","url":"https://api.github.com/repos/pouchdb/pouchdb"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3312","labels_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3312/labels{/name}","comments_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3312/comments","events_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3312/events","html_url":"https://github.com/pouchdb/pouchdb/pull/3312","id":53131907,"number":3312,"title":"(#136) - Fix \"Testing allDocs with some conflicts\" / CouchDB 2.0","user":{"login":"willholley","id":97787,"avatar_url":"https://avatars.githubusercontent.com/u/97787?v=3","gravatar_id":"","url":"https://api.github.com/users/willholley","html_url":"https://github.com/willholley","followers_url":"https://api.github.com/users/willholley/followers","following_url":"https://api.github.com/users/willholley/following{/other_user}","gists_url":"https://api.github.com/users/willholley/gists{/gist_id}","starred_url":"https://api.github.com/users/willholley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/willholley/subscriptions","organizations_url":"https://api.github.com/users/willholley/orgs","repos_url":"https://api.github.com/users/willholley/repos","events_url":"https://api.github.com/users/willholley/events{/privacy}","received_events_url":"https://api.github.com/users/willholley/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-30T17:32:28Z","updated_at":"2015-01-01T15:17:58Z","closed_at":"2015-01-01T15:17:58Z","pull_request":{"url":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3312","html_url":"https://github.com/pouchdb/pouchdb/pull/3312","diff_url":"https://github.com/pouchdb/pouchdb/pull/3312.diff","patch_url":"https://github.com/pouchdb/pouchdb/pull/3312.patch"},"body":"When testing against CouchDB 2.0, skip assertion that update_seq should be within a known range. CouchDB 2.0 sequence numbers are not guaranteed to be incremental."},"comment":{"url":"https://api.github.com/repos/pouchdb/pouchdb/issues/comments/68488873","html_url":"https://github.com/pouchdb/pouchdb/pull/3312#issuecomment-68488873","issue_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3312","id":68488873,"user":{"login":"daleharvey","id":37787,"avatar_url":"https://avatars.githubusercontent.com/u/37787?v=3","gravatar_id":"","url":"https://api.github.com/users/daleharvey","html_url":"https://github.com/daleharvey","followers_url":"https://api.github.com/users/daleharvey/followers","following_url":"https://api.github.com/users/daleharvey/following{/other_user}","gists_url":"https://api.github.com/users/daleharvey/gists{/gist_id}","starred_url":"https://api.github.com/users/daleharvey/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/daleharvey/subscriptions","organizations_url":"https://api.github.com/users/daleharvey/orgs","repos_url":"https://api.github.com/users/daleharvey/repos","events_url":"https://api.github.com/users/daleharvey/events{/privacy}","received_events_url":"https://api.github.com/users/daleharvey/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:17:58Z","updated_at":"2015-01-01T15:17:58Z","body":"Cheers - https://github.com/pouchdb/pouchdb/commit/65a3d95aab32585e344d806058a1662b7b0e99d0"}},"public":true,"created_at":"2015-01-01T15:17:58Z","org":{"id":3406112,"login":"pouchdb","gravatar_id":"","url":"https://api.github.com/orgs/pouchdb","avatar_url":"https://avatars.githubusercontent.com/u/3406112?"}} +,{"id":"2489659413","type":"PullRequestEvent","actor":{"id":37787,"login":"daleharvey","gravatar_id":"","url":"https://api.github.com/users/daleharvey","avatar_url":"https://avatars.githubusercontent.com/u/37787?"},"repo":{"id":714074,"name":"pouchdb/pouchdb","url":"https://api.github.com/repos/pouchdb/pouchdb"},"payload":{"action":"closed","number":3312,"pull_request":{"url":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3312","id":26694733,"html_url":"https://github.com/pouchdb/pouchdb/pull/3312","diff_url":"https://github.com/pouchdb/pouchdb/pull/3312.diff","patch_url":"https://github.com/pouchdb/pouchdb/pull/3312.patch","issue_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3312","number":3312,"state":"closed","locked":false,"title":"(#136) - Fix \"Testing allDocs with some conflicts\" / CouchDB 2.0","user":{"login":"willholley","id":97787,"avatar_url":"https://avatars.githubusercontent.com/u/97787?v=3","gravatar_id":"","url":"https://api.github.com/users/willholley","html_url":"https://github.com/willholley","followers_url":"https://api.github.com/users/willholley/followers","following_url":"https://api.github.com/users/willholley/following{/other_user}","gists_url":"https://api.github.com/users/willholley/gists{/gist_id}","starred_url":"https://api.github.com/users/willholley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/willholley/subscriptions","organizations_url":"https://api.github.com/users/willholley/orgs","repos_url":"https://api.github.com/users/willholley/repos","events_url":"https://api.github.com/users/willholley/events{/privacy}","received_events_url":"https://api.github.com/users/willholley/received_events","type":"User","site_admin":false},"body":"When testing against CouchDB 2.0, skip assertion that update_seq should be within a known range. CouchDB 2.0 sequence numbers are not guaranteed to be incremental.","created_at":"2014-12-30T17:32:28Z","updated_at":"2015-01-01T15:17:58Z","closed_at":"2015-01-01T15:17:58Z","merged_at":null,"merge_commit_sha":"c66247c57edac56d5f834b3b61556272c11898b1","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3312/commits","review_comments_url":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3312/comments","review_comment_url":"https://api.github.com/repos/pouchdb/pouchdb/pulls/comments/{number}","comments_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3312/comments","statuses_url":"https://api.github.com/repos/pouchdb/pouchdb/statuses/13c2c3cf53cb6f24f845d05d9634a88e9a3bb85e","head":{"label":"willholley:136-replication-testing-alldocs-conflicts","ref":"136-replication-testing-alldocs-conflicts","sha":"13c2c3cf53cb6f24f845d05d9634a88e9a3bb85e","user":{"login":"willholley","id":97787,"avatar_url":"https://avatars.githubusercontent.com/u/97787?v=3","gravatar_id":"","url":"https://api.github.com/users/willholley","html_url":"https://github.com/willholley","followers_url":"https://api.github.com/users/willholley/followers","following_url":"https://api.github.com/users/willholley/following{/other_user}","gists_url":"https://api.github.com/users/willholley/gists{/gist_id}","starred_url":"https://api.github.com/users/willholley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/willholley/subscriptions","organizations_url":"https://api.github.com/users/willholley/orgs","repos_url":"https://api.github.com/users/willholley/repos","events_url":"https://api.github.com/users/willholley/events{/privacy}","received_events_url":"https://api.github.com/users/willholley/received_events","type":"User","site_admin":false},"repo":{"id":9749351,"name":"pouchdb","full_name":"willholley/pouchdb","owner":{"login":"willholley","id":97787,"avatar_url":"https://avatars.githubusercontent.com/u/97787?v=3","gravatar_id":"","url":"https://api.github.com/users/willholley","html_url":"https://github.com/willholley","followers_url":"https://api.github.com/users/willholley/followers","following_url":"https://api.github.com/users/willholley/following{/other_user}","gists_url":"https://api.github.com/users/willholley/gists{/gist_id}","starred_url":"https://api.github.com/users/willholley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/willholley/subscriptions","organizations_url":"https://api.github.com/users/willholley/orgs","repos_url":"https://api.github.com/users/willholley/repos","events_url":"https://api.github.com/users/willholley/events{/privacy}","received_events_url":"https://api.github.com/users/willholley/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/willholley/pouchdb","description":"PouchDB is a pocket-sized database.","fork":true,"url":"https://api.github.com/repos/willholley/pouchdb","forks_url":"https://api.github.com/repos/willholley/pouchdb/forks","keys_url":"https://api.github.com/repos/willholley/pouchdb/keys{/key_id}","collaborators_url":"https://api.github.com/repos/willholley/pouchdb/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/willholley/pouchdb/teams","hooks_url":"https://api.github.com/repos/willholley/pouchdb/hooks","issue_events_url":"https://api.github.com/repos/willholley/pouchdb/issues/events{/number}","events_url":"https://api.github.com/repos/willholley/pouchdb/events","assignees_url":"https://api.github.com/repos/willholley/pouchdb/assignees{/user}","branches_url":"https://api.github.com/repos/willholley/pouchdb/branches{/branch}","tags_url":"https://api.github.com/repos/willholley/pouchdb/tags","blobs_url":"https://api.github.com/repos/willholley/pouchdb/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/willholley/pouchdb/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/willholley/pouchdb/git/refs{/sha}","trees_url":"https://api.github.com/repos/willholley/pouchdb/git/trees{/sha}","statuses_url":"https://api.github.com/repos/willholley/pouchdb/statuses/{sha}","languages_url":"https://api.github.com/repos/willholley/pouchdb/languages","stargazers_url":"https://api.github.com/repos/willholley/pouchdb/stargazers","contributors_url":"https://api.github.com/repos/willholley/pouchdb/contributors","subscribers_url":"https://api.github.com/repos/willholley/pouchdb/subscribers","subscription_url":"https://api.github.com/repos/willholley/pouchdb/subscription","commits_url":"https://api.github.com/repos/willholley/pouchdb/commits{/sha}","git_commits_url":"https://api.github.com/repos/willholley/pouchdb/git/commits{/sha}","comments_url":"https://api.github.com/repos/willholley/pouchdb/comments{/number}","issue_comment_url":"https://api.github.com/repos/willholley/pouchdb/issues/comments/{number}","contents_url":"https://api.github.com/repos/willholley/pouchdb/contents/{+path}","compare_url":"https://api.github.com/repos/willholley/pouchdb/compare/{base}...{head}","merges_url":"https://api.github.com/repos/willholley/pouchdb/merges","archive_url":"https://api.github.com/repos/willholley/pouchdb/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/willholley/pouchdb/downloads","issues_url":"https://api.github.com/repos/willholley/pouchdb/issues{/number}","pulls_url":"https://api.github.com/repos/willholley/pouchdb/pulls{/number}","milestones_url":"https://api.github.com/repos/willholley/pouchdb/milestones{/number}","notifications_url":"https://api.github.com/repos/willholley/pouchdb/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/willholley/pouchdb/labels{/name}","releases_url":"https://api.github.com/repos/willholley/pouchdb/releases{/id}","created_at":"2013-04-29T14:00:59Z","updated_at":"2014-12-30T11:30:36Z","pushed_at":"2014-12-30T18:05:39Z","git_url":"git://github.com/willholley/pouchdb.git","ssh_url":"git@github.com:willholley/pouchdb.git","clone_url":"https://github.com/willholley/pouchdb.git","svn_url":"https://github.com/willholley/pouchdb","homepage":"","size":71975,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","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":"pouchdb:master","ref":"master","sha":"9144e18a27ad15e80c7abd3bfe69d1f3a5e3df74","user":{"login":"pouchdb","id":3406112,"avatar_url":"https://avatars.githubusercontent.com/u/3406112?v=3","gravatar_id":"","url":"https://api.github.com/users/pouchdb","html_url":"https://github.com/pouchdb","followers_url":"https://api.github.com/users/pouchdb/followers","following_url":"https://api.github.com/users/pouchdb/following{/other_user}","gists_url":"https://api.github.com/users/pouchdb/gists{/gist_id}","starred_url":"https://api.github.com/users/pouchdb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pouchdb/subscriptions","organizations_url":"https://api.github.com/users/pouchdb/orgs","repos_url":"https://api.github.com/users/pouchdb/repos","events_url":"https://api.github.com/users/pouchdb/events{/privacy}","received_events_url":"https://api.github.com/users/pouchdb/received_events","type":"Organization","site_admin":false},"repo":{"id":714074,"name":"pouchdb","full_name":"pouchdb/pouchdb","owner":{"login":"pouchdb","id":3406112,"avatar_url":"https://avatars.githubusercontent.com/u/3406112?v=3","gravatar_id":"","url":"https://api.github.com/users/pouchdb","html_url":"https://github.com/pouchdb","followers_url":"https://api.github.com/users/pouchdb/followers","following_url":"https://api.github.com/users/pouchdb/following{/other_user}","gists_url":"https://api.github.com/users/pouchdb/gists{/gist_id}","starred_url":"https://api.github.com/users/pouchdb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pouchdb/subscriptions","organizations_url":"https://api.github.com/users/pouchdb/orgs","repos_url":"https://api.github.com/users/pouchdb/repos","events_url":"https://api.github.com/users/pouchdb/events{/privacy}","received_events_url":"https://api.github.com/users/pouchdb/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/pouchdb/pouchdb","description":"PouchDB is a pocket-sized database.","fork":false,"url":"https://api.github.com/repos/pouchdb/pouchdb","forks_url":"https://api.github.com/repos/pouchdb/pouchdb/forks","keys_url":"https://api.github.com/repos/pouchdb/pouchdb/keys{/key_id}","collaborators_url":"https://api.github.com/repos/pouchdb/pouchdb/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/pouchdb/pouchdb/teams","hooks_url":"https://api.github.com/repos/pouchdb/pouchdb/hooks","issue_events_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/events{/number}","events_url":"https://api.github.com/repos/pouchdb/pouchdb/events","assignees_url":"https://api.github.com/repos/pouchdb/pouchdb/assignees{/user}","branches_url":"https://api.github.com/repos/pouchdb/pouchdb/branches{/branch}","tags_url":"https://api.github.com/repos/pouchdb/pouchdb/tags","blobs_url":"https://api.github.com/repos/pouchdb/pouchdb/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/pouchdb/pouchdb/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/pouchdb/pouchdb/git/refs{/sha}","trees_url":"https://api.github.com/repos/pouchdb/pouchdb/git/trees{/sha}","statuses_url":"https://api.github.com/repos/pouchdb/pouchdb/statuses/{sha}","languages_url":"https://api.github.com/repos/pouchdb/pouchdb/languages","stargazers_url":"https://api.github.com/repos/pouchdb/pouchdb/stargazers","contributors_url":"https://api.github.com/repos/pouchdb/pouchdb/contributors","subscribers_url":"https://api.github.com/repos/pouchdb/pouchdb/subscribers","subscription_url":"https://api.github.com/repos/pouchdb/pouchdb/subscription","commits_url":"https://api.github.com/repos/pouchdb/pouchdb/commits{/sha}","git_commits_url":"https://api.github.com/repos/pouchdb/pouchdb/git/commits{/sha}","comments_url":"https://api.github.com/repos/pouchdb/pouchdb/comments{/number}","issue_comment_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/comments/{number}","contents_url":"https://api.github.com/repos/pouchdb/pouchdb/contents/{+path}","compare_url":"https://api.github.com/repos/pouchdb/pouchdb/compare/{base}...{head}","merges_url":"https://api.github.com/repos/pouchdb/pouchdb/merges","archive_url":"https://api.github.com/repos/pouchdb/pouchdb/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/pouchdb/pouchdb/downloads","issues_url":"https://api.github.com/repos/pouchdb/pouchdb/issues{/number}","pulls_url":"https://api.github.com/repos/pouchdb/pouchdb/pulls{/number}","milestones_url":"https://api.github.com/repos/pouchdb/pouchdb/milestones{/number}","notifications_url":"https://api.github.com/repos/pouchdb/pouchdb/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/pouchdb/pouchdb/labels{/name}","releases_url":"https://api.github.com/repos/pouchdb/pouchdb/releases{/id}","created_at":"2010-06-10T18:34:24Z","updated_at":"2015-01-01T15:17:38Z","pushed_at":"2015-01-01T15:17:38Z","git_url":"git://github.com/pouchdb/pouchdb.git","ssh_url":"git@github.com:pouchdb/pouchdb.git","clone_url":"https://github.com/pouchdb/pouchdb.git","svn_url":"https://github.com/pouchdb/pouchdb","homepage":"http://pouchdb.com/","size":152232,"stargazers_count":3578,"watchers_count":3578,"language":"JavaScript","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":414,"mirror_url":null,"open_issues_count":311,"forks":414,"open_issues":311,"watchers":3578,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3312"},"html":{"href":"https://github.com/pouchdb/pouchdb/pull/3312"},"issue":{"href":"https://api.github.com/repos/pouchdb/pouchdb/issues/3312"},"comments":{"href":"https://api.github.com/repos/pouchdb/pouchdb/issues/3312/comments"},"review_comments":{"href":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3312/comments"},"review_comment":{"href":"https://api.github.com/repos/pouchdb/pouchdb/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3312/commits"},"statuses":{"href":"https://api.github.com/repos/pouchdb/pouchdb/statuses/13c2c3cf53cb6f24f845d05d9634a88e9a3bb85e"}},"merged":false,"mergeable":true,"mergeable_state":"unstable","merged_by":null,"comments":1,"review_comments":0,"commits":1,"additions":3,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:17:58Z","org":{"id":3406112,"login":"pouchdb","gravatar_id":"","url":"https://api.github.com/orgs/pouchdb","avatar_url":"https://avatars.githubusercontent.com/u/3406112?"}} +,{"id":"2489659414","type":"PushEvent","actor":{"id":5094756,"login":"tengqm","gravatar_id":"","url":"https://api.github.com/users/tengqm","avatar_url":"https://avatars.githubusercontent.com/u/5094756?"},"repo":{"id":28478662,"name":"tengqm/senlin","url":"https://api.github.com/repos/tengqm/senlin"},"payload":{"push_id":536867731,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"2547595eb2a2675fb8a3693a4c8e44a1b7adea07","before":"e641f7a49883f625ff59cb17b1b40367d5669cbc","commits":[{"sha":"c73d780e9daaaa9669f9197bf52f2c3a2def809b","author":{"email":"82cd30dbf5230c5355777b67e3811d6faec74c72@cn.ibm.com","name":"tengqm"},"message":"Initial version","distinct":true,"url":"https://api.github.com/repos/tengqm/senlin/commits/c73d780e9daaaa9669f9197bf52f2c3a2def809b"},{"sha":"2547595eb2a2675fb8a3693a4c8e44a1b7adea07","author":{"email":"82cd30dbf5230c5355777b67e3811d6faec74c72@cn.ibm.com","name":"tengqm"},"message":"Added node_migrate API\n\nThe 'node_migrate' API is used to change the cluster_id of a node.\nThe 'from_cluster' can be None, which means the node was an orphan node\nbefore joining a new cluster ('to_cluster').\nThe 'to_cluster' can be None, which means the node is leaving its\ncurrent cluster ('from_cluster').\nWhen both 'from_cluster' and 'to_cluster' are not None, a node is\nmigrated from the former one to the later one.","distinct":true,"url":"https://api.github.com/repos/tengqm/senlin/commits/2547595eb2a2675fb8a3693a4c8e44a1b7adea07"}]},"public":true,"created_at":"2015-01-01T15:17:58Z"} +,{"id":"2489659416","type":"PullRequestReviewCommentEvent","actor":{"id":4483,"login":"arfon","gravatar_id":"","url":"https://api.github.com/users/arfon","avatar_url":"https://avatars.githubusercontent.com/u/4483?"},"repo":{"id":1725199,"name":"github/linguist","url":"https://api.github.com/repos/github/linguist"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/github/linguist/pulls/comments/22400157","id":22400157,"diff_hunk":"@@ -11,14 +11,16 @@ class DataLoadedError < StandardError; end\n \n def generated_without_loading_data(name)\n blob = File.join(samples_path, name)\n- assert_nothing_raised(DataLoadedError, \"Data was loaded when calling generated? on #{name}\") do\n+ begin\n Generated.generated?(blob, lambda { raise DataLoadedError.new })\n+ rescue DataLoadedError\n+ assert false, \"Data was loaded when calling generated? on #{name}\"","path":"test/test_generated.rb","position":16,"original_position":16,"commit_id":"65296e86a3646579dde2ecb422f7724d5daf9f44","original_commit_id":"65296e86a3646579dde2ecb422f7724d5daf9f44","user":{"login":"arfon","id":4483,"avatar_url":"https://avatars.githubusercontent.com/u/4483?v=3","gravatar_id":"","url":"https://api.github.com/users/arfon","html_url":"https://github.com/arfon","followers_url":"https://api.github.com/users/arfon/followers","following_url":"https://api.github.com/users/arfon/following{/other_user}","gists_url":"https://api.github.com/users/arfon/gists{/gist_id}","starred_url":"https://api.github.com/users/arfon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arfon/subscriptions","organizations_url":"https://api.github.com/users/arfon/orgs","repos_url":"https://api.github.com/users/arfon/repos","events_url":"https://api.github.com/users/arfon/events{/privacy}","received_events_url":"https://api.github.com/users/arfon/received_events","type":"User","site_admin":true},"body":"I think rescuing and reporting a failure is :+1: ","created_at":"2015-01-01T15:17:59Z","updated_at":"2015-01-01T15:17:59Z","html_url":"https://github.com/github/linguist/pull/1930#discussion_r22400157","pull_request_url":"https://api.github.com/repos/github/linguist/pulls/1930","_links":{"self":{"href":"https://api.github.com/repos/github/linguist/pulls/comments/22400157"},"html":{"href":"https://github.com/github/linguist/pull/1930#discussion_r22400157"},"pull_request":{"href":"https://api.github.com/repos/github/linguist/pulls/1930"}}},"pull_request":{"url":"https://api.github.com/repos/github/linguist/pulls/1930","id":26727470,"html_url":"https://github.com/github/linguist/pull/1930","diff_url":"https://github.com/github/linguist/pull/1930.diff","patch_url":"https://github.com/github/linguist/pull/1930.patch","issue_url":"https://api.github.com/repos/github/linguist/issues/1930","number":1930,"state":"open","locked":false,"title":"Switch to Minitest::Test instead of Test::Unit::TestCase","user":{"login":"aroben","id":917945,"avatar_url":"https://avatars.githubusercontent.com/u/917945?v=3","gravatar_id":"","url":"https://api.github.com/users/aroben","html_url":"https://github.com/aroben","followers_url":"https://api.github.com/users/aroben/followers","following_url":"https://api.github.com/users/aroben/following{/other_user}","gists_url":"https://api.github.com/users/aroben/gists{/gist_id}","starred_url":"https://api.github.com/users/aroben/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aroben/subscriptions","organizations_url":"https://api.github.com/users/aroben/orgs","repos_url":"https://api.github.com/users/aroben/repos","events_url":"https://api.github.com/users/aroben/events{/privacy}","received_events_url":"https://api.github.com/users/aroben/received_events","type":"User","site_admin":true},"body":"This gives us a consistent test framework across all Ruby versions which should help avoid errors that are only found when CI runs the tests on different Rubies. (And this fixes an immediate bug where there's no `skip` method in the version of test-unit we're currently using only on Ruby 2.2.)\r\n\r\n/cc @arfon @bkeepers ","created_at":"2014-12-31T15:53:14Z","updated_at":"2015-01-01T15:17:59Z","closed_at":null,"merged_at":null,"merge_commit_sha":"b74542087ca67efbf4a8547ef232647b22f23ec6","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/github/linguist/pulls/1930/commits","review_comments_url":"https://api.github.com/repos/github/linguist/pulls/1930/comments","review_comment_url":"https://api.github.com/repos/github/linguist/pulls/comments/{number}","comments_url":"https://api.github.com/repos/github/linguist/issues/1930/comments","statuses_url":"https://api.github.com/repos/github/linguist/statuses/65296e86a3646579dde2ecb422f7724d5daf9f44","head":{"label":"github:minitest","ref":"minitest","sha":"65296e86a3646579dde2ecb422f7724d5daf9f44","user":{"login":"github","id":9919,"avatar_url":"https://avatars.githubusercontent.com/u/9919?v=3","gravatar_id":"","url":"https://api.github.com/users/github","html_url":"https://github.com/github","followers_url":"https://api.github.com/users/github/followers","following_url":"https://api.github.com/users/github/following{/other_user}","gists_url":"https://api.github.com/users/github/gists{/gist_id}","starred_url":"https://api.github.com/users/github/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github/subscriptions","organizations_url":"https://api.github.com/users/github/orgs","repos_url":"https://api.github.com/users/github/repos","events_url":"https://api.github.com/users/github/events{/privacy}","received_events_url":"https://api.github.com/users/github/received_events","type":"Organization","site_admin":false},"repo":{"id":1725199,"name":"linguist","full_name":"github/linguist","owner":{"login":"github","id":9919,"avatar_url":"https://avatars.githubusercontent.com/u/9919?v=3","gravatar_id":"","url":"https://api.github.com/users/github","html_url":"https://github.com/github","followers_url":"https://api.github.com/users/github/followers","following_url":"https://api.github.com/users/github/following{/other_user}","gists_url":"https://api.github.com/users/github/gists{/gist_id}","starred_url":"https://api.github.com/users/github/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github/subscriptions","organizations_url":"https://api.github.com/users/github/orgs","repos_url":"https://api.github.com/users/github/repos","events_url":"https://api.github.com/users/github/events{/privacy}","received_events_url":"https://api.github.com/users/github/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/github/linguist","description":"Language Savant. If your repository's language is being reported incorrectly, send us a pull request!","fork":false,"url":"https://api.github.com/repos/github/linguist","forks_url":"https://api.github.com/repos/github/linguist/forks","keys_url":"https://api.github.com/repos/github/linguist/keys{/key_id}","collaborators_url":"https://api.github.com/repos/github/linguist/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/github/linguist/teams","hooks_url":"https://api.github.com/repos/github/linguist/hooks","issue_events_url":"https://api.github.com/repos/github/linguist/issues/events{/number}","events_url":"https://api.github.com/repos/github/linguist/events","assignees_url":"https://api.github.com/repos/github/linguist/assignees{/user}","branches_url":"https://api.github.com/repos/github/linguist/branches{/branch}","tags_url":"https://api.github.com/repos/github/linguist/tags","blobs_url":"https://api.github.com/repos/github/linguist/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/github/linguist/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/github/linguist/git/refs{/sha}","trees_url":"https://api.github.com/repos/github/linguist/git/trees{/sha}","statuses_url":"https://api.github.com/repos/github/linguist/statuses/{sha}","languages_url":"https://api.github.com/repos/github/linguist/languages","stargazers_url":"https://api.github.com/repos/github/linguist/stargazers","contributors_url":"https://api.github.com/repos/github/linguist/contributors","subscribers_url":"https://api.github.com/repos/github/linguist/subscribers","subscription_url":"https://api.github.com/repos/github/linguist/subscription","commits_url":"https://api.github.com/repos/github/linguist/commits{/sha}","git_commits_url":"https://api.github.com/repos/github/linguist/git/commits{/sha}","comments_url":"https://api.github.com/repos/github/linguist/comments{/number}","issue_comment_url":"https://api.github.com/repos/github/linguist/issues/comments/{number}","contents_url":"https://api.github.com/repos/github/linguist/contents/{+path}","compare_url":"https://api.github.com/repos/github/linguist/compare/{base}...{head}","merges_url":"https://api.github.com/repos/github/linguist/merges","archive_url":"https://api.github.com/repos/github/linguist/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/github/linguist/downloads","issues_url":"https://api.github.com/repos/github/linguist/issues{/number}","pulls_url":"https://api.github.com/repos/github/linguist/pulls{/number}","milestones_url":"https://api.github.com/repos/github/linguist/milestones{/number}","notifications_url":"https://api.github.com/repos/github/linguist/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/github/linguist/labels{/name}","releases_url":"https://api.github.com/repos/github/linguist/releases{/id}","created_at":"2011-05-09T22:53:13Z","updated_at":"2015-01-01T15:16:30Z","pushed_at":"2015-01-01T15:16:29Z","git_url":"git://github.com/github/linguist.git","ssh_url":"git@github.com:github/linguist.git","clone_url":"https://github.com/github/linguist.git","svn_url":"https://github.com/github/linguist","homepage":"","size":43291,"stargazers_count":2525,"watchers_count":2525,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":1054,"mirror_url":null,"open_issues_count":92,"forks":1054,"open_issues":92,"watchers":2525,"default_branch":"master"}},"base":{"label":"github:master","ref":"master","sha":"795f42cbaaa7c9c10ecf522228ca206ad3b61f5f","user":{"login":"github","id":9919,"avatar_url":"https://avatars.githubusercontent.com/u/9919?v=3","gravatar_id":"","url":"https://api.github.com/users/github","html_url":"https://github.com/github","followers_url":"https://api.github.com/users/github/followers","following_url":"https://api.github.com/users/github/following{/other_user}","gists_url":"https://api.github.com/users/github/gists{/gist_id}","starred_url":"https://api.github.com/users/github/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github/subscriptions","organizations_url":"https://api.github.com/users/github/orgs","repos_url":"https://api.github.com/users/github/repos","events_url":"https://api.github.com/users/github/events{/privacy}","received_events_url":"https://api.github.com/users/github/received_events","type":"Organization","site_admin":false},"repo":{"id":1725199,"name":"linguist","full_name":"github/linguist","owner":{"login":"github","id":9919,"avatar_url":"https://avatars.githubusercontent.com/u/9919?v=3","gravatar_id":"","url":"https://api.github.com/users/github","html_url":"https://github.com/github","followers_url":"https://api.github.com/users/github/followers","following_url":"https://api.github.com/users/github/following{/other_user}","gists_url":"https://api.github.com/users/github/gists{/gist_id}","starred_url":"https://api.github.com/users/github/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github/subscriptions","organizations_url":"https://api.github.com/users/github/orgs","repos_url":"https://api.github.com/users/github/repos","events_url":"https://api.github.com/users/github/events{/privacy}","received_events_url":"https://api.github.com/users/github/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/github/linguist","description":"Language Savant. If your repository's language is being reported incorrectly, send us a pull request!","fork":false,"url":"https://api.github.com/repos/github/linguist","forks_url":"https://api.github.com/repos/github/linguist/forks","keys_url":"https://api.github.com/repos/github/linguist/keys{/key_id}","collaborators_url":"https://api.github.com/repos/github/linguist/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/github/linguist/teams","hooks_url":"https://api.github.com/repos/github/linguist/hooks","issue_events_url":"https://api.github.com/repos/github/linguist/issues/events{/number}","events_url":"https://api.github.com/repos/github/linguist/events","assignees_url":"https://api.github.com/repos/github/linguist/assignees{/user}","branches_url":"https://api.github.com/repos/github/linguist/branches{/branch}","tags_url":"https://api.github.com/repos/github/linguist/tags","blobs_url":"https://api.github.com/repos/github/linguist/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/github/linguist/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/github/linguist/git/refs{/sha}","trees_url":"https://api.github.com/repos/github/linguist/git/trees{/sha}","statuses_url":"https://api.github.com/repos/github/linguist/statuses/{sha}","languages_url":"https://api.github.com/repos/github/linguist/languages","stargazers_url":"https://api.github.com/repos/github/linguist/stargazers","contributors_url":"https://api.github.com/repos/github/linguist/contributors","subscribers_url":"https://api.github.com/repos/github/linguist/subscribers","subscription_url":"https://api.github.com/repos/github/linguist/subscription","commits_url":"https://api.github.com/repos/github/linguist/commits{/sha}","git_commits_url":"https://api.github.com/repos/github/linguist/git/commits{/sha}","comments_url":"https://api.github.com/repos/github/linguist/comments{/number}","issue_comment_url":"https://api.github.com/repos/github/linguist/issues/comments/{number}","contents_url":"https://api.github.com/repos/github/linguist/contents/{+path}","compare_url":"https://api.github.com/repos/github/linguist/compare/{base}...{head}","merges_url":"https://api.github.com/repos/github/linguist/merges","archive_url":"https://api.github.com/repos/github/linguist/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/github/linguist/downloads","issues_url":"https://api.github.com/repos/github/linguist/issues{/number}","pulls_url":"https://api.github.com/repos/github/linguist/pulls{/number}","milestones_url":"https://api.github.com/repos/github/linguist/milestones{/number}","notifications_url":"https://api.github.com/repos/github/linguist/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/github/linguist/labels{/name}","releases_url":"https://api.github.com/repos/github/linguist/releases{/id}","created_at":"2011-05-09T22:53:13Z","updated_at":"2015-01-01T15:16:30Z","pushed_at":"2015-01-01T15:16:29Z","git_url":"git://github.com/github/linguist.git","ssh_url":"git@github.com:github/linguist.git","clone_url":"https://github.com/github/linguist.git","svn_url":"https://github.com/github/linguist","homepage":"","size":43291,"stargazers_count":2525,"watchers_count":2525,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":1054,"mirror_url":null,"open_issues_count":92,"forks":1054,"open_issues":92,"watchers":2525,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/github/linguist/pulls/1930"},"html":{"href":"https://github.com/github/linguist/pull/1930"},"issue":{"href":"https://api.github.com/repos/github/linguist/issues/1930"},"comments":{"href":"https://api.github.com/repos/github/linguist/issues/1930/comments"},"review_comments":{"href":"https://api.github.com/repos/github/linguist/pulls/1930/comments"},"review_comment":{"href":"https://api.github.com/repos/github/linguist/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/github/linguist/pulls/1930/commits"},"statuses":{"href":"https://api.github.com/repos/github/linguist/statuses/65296e86a3646579dde2ecb422f7724d5daf9f44"}}}},"public":true,"created_at":"2015-01-01T15:17:59Z","org":{"id":9919,"login":"github","gravatar_id":"","url":"https://api.github.com/orgs/github","avatar_url":"https://avatars.githubusercontent.com/u/9919?"}} +,{"id":"2489659420","type":"PushEvent","actor":{"id":3486644,"login":"tsara27","gravatar_id":"","url":"https://api.github.com/users/tsara27","avatar_url":"https://avatars.githubusercontent.com/u/3486644?"},"repo":{"id":28661848,"name":"tsara27/recipe_directories","url":"https://api.github.com/repos/tsara27/recipe_directories"},"payload":{"push_id":536867734,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"7ca2f42be9142502416fbe132d47fe395f0ee741","before":"0a0850c17ddba5aaea78e1e62d13e7e232cac2d9","commits":[{"sha":"732d835a252b2fcd67f90cab046bb026cb01d958","author":{"email":"0605a6ae87910840ef0ec5661ff611034d7e634f@gmail.com","name":"tsara27"},"message":"add rspec gem","distinct":true,"url":"https://api.github.com/repos/tsara27/recipe_directories/commits/732d835a252b2fcd67f90cab046bb026cb01d958"},{"sha":"7ca2f42be9142502416fbe132d47fe395f0ee741","author":{"email":"0605a6ae87910840ef0ec5661ff611034d7e634f@gmail.com","name":"tsara27"},"message":"generate rspec","distinct":true,"url":"https://api.github.com/repos/tsara27/recipe_directories/commits/7ca2f42be9142502416fbe132d47fe395f0ee741"}]},"public":true,"created_at":"2015-01-01T15:18:00Z"} +,{"id":"2489659424","type":"PushEvent","actor":{"id":9962941,"login":"songzigw","gravatar_id":"","url":"https://api.github.com/users/songzigw","avatar_url":"https://avatars.githubusercontent.com/u/9962941?"},"repo":{"id":28650575,"name":"songzigw/song-opndp-web","url":"https://api.github.com/repos/songzigw/song-opndp-web"},"payload":{"push_id":536867736,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2e56ff440e6e1591749dd55a14d1ade4cdd77036","before":"7377ce9d5255ddce4885e1114a5d22a443f62114","commits":[{"sha":"2e56ff440e6e1591749dd55a14d1ade4cdd77036","author":{"email":"e9097cf4f5e96daec4bedce5317ea67a39523fd9@163.com","name":"songzigw"},"message":"改","distinct":true,"url":"https://api.github.com/repos/songzigw/song-opndp-web/commits/2e56ff440e6e1591749dd55a14d1ade4cdd77036"}]},"public":true,"created_at":"2015-01-01T15:18:00Z"} +,{"id":"2489659425","type":"CreateEvent","actor":{"id":10363351,"login":"HmZ0","gravatar_id":"","url":"https://api.github.com/users/HmZ0","avatar_url":"https://avatars.githubusercontent.com/u/10363351?"},"repo":{"id":28688930,"name":"HmZ0/ProgressBar","url":"https://api.github.com/repos/HmZ0/ProgressBar"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Progress bar based on Minetools API.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:00Z"} +,{"id":"2489659431","type":"PushEvent","actor":{"id":6781828,"login":"surikat","gravatar_id":"","url":"https://api.github.com/users/surikat","avatar_url":"https://avatars.githubusercontent.com/u/6781828?"},"repo":{"id":20228265,"name":"surikat/Autonomous","url":"https://api.github.com/repos/surikat/Autonomous"},"payload":{"push_id":536867738,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6e71fcadea4bb21c633b7774de1a3ee41526b6a4","before":"57a870516dee46c3cc6541c03112d16c4ccc307c","commits":[{"sha":"6e71fcadea4bb21c633b7774de1a3ee41526b6a4","author":{"email":"bd73d35759d75cc215150d1bbc94f1b1078bee01@surikat.pro","name":"surikat"},"message":"bugfix + clean","distinct":true,"url":"https://api.github.com/repos/surikat/Autonomous/commits/6e71fcadea4bb21c633b7774de1a3ee41526b6a4"}]},"public":true,"created_at":"2015-01-01T15:18:02Z"} +,{"id":"2489659432","type":"PushEvent","actor":{"id":2175262,"login":"jaeming","gravatar_id":"","url":"https://api.github.com/users/jaeming","avatar_url":"https://avatars.githubusercontent.com/u/2175262?"},"repo":{"id":26859406,"name":"jaeming/benjidalton.com-rails","url":"https://api.github.com/repos/jaeming/benjidalton.com-rails"},"payload":{"push_id":536867739,"size":15,"distinct_size":15,"ref":"refs/heads/master","head":"cd559006a5f251177785f22f2f225d1e3ca52232","before":"8431e04902028ec546d6fa044e149278e3b32587","commits":[{"sha":"eab854461b22d80077da6370e15b4efe80320d44","author":{"email":"d39d27a5eeafdbd0faf14e584ad62f6ebbc5a12b@gmail.com","name":"Benji Dalton"},"message":"fixes syntax in gemfile","distinct":true,"url":"https://api.github.com/repos/jaeming/benjidalton.com-rails/commits/eab854461b22d80077da6370e15b4efe80320d44"},{"sha":"053c01c720b5423975b2e418c7b2f01be07de584","author":{"email":"d39d27a5eeafdbd0faf14e584ad62f6ebbc5a12b@gmail.com","name":"Benji Dalton"},"message":"removes unneeded nokogiri gem","distinct":true,"url":"https://api.github.com/repos/jaeming/benjidalton.com-rails/commits/053c01c720b5423975b2e418c7b2f01be07de584"},{"sha":"51fe06016dc2fb3a3c77ac3705470e0c127c3965","author":{"email":"d39d27a5eeafdbd0faf14e584ad62f6ebbc5a12b@gmail.com","name":"Benji Dalton"},"message":"fixes gems for deployment","distinct":true,"url":"https://api.github.com/repos/jaeming/benjidalton.com-rails/commits/51fe06016dc2fb3a3c77ac3705470e0c127c3965"},{"sha":"a8790df77e2da1a76bfb6480c5db42dddd1050d5","author":{"email":"d39d27a5eeafdbd0faf14e584ad62f6ebbc5a12b@gmail.com","name":"Benji Dalton"},"message":"prunes branches","distinct":true,"url":"https://api.github.com/repos/jaeming/benjidalton.com-rails/commits/a8790df77e2da1a76bfb6480c5db42dddd1050d5"},{"sha":"ab64b42ce9a4f2f11d322ec9bcbfd222159ebcd7","author":{"email":"d39d27a5eeafdbd0faf14e584ad62f6ebbc5a12b@gmail.com","name":"Benji Dalton"},"message":"deployment issues with openshift","distinct":true,"url":"https://api.github.com/repos/jaeming/benjidalton.com-rails/commits/ab64b42ce9a4f2f11d322ec9bcbfd222159ebcd7"},{"sha":"41e886c76b0f730514aea36bd1e7f2b23e9034d0","author":{"email":"d39d27a5eeafdbd0faf14e584ad62f6ebbc5a12b@gmail.com","name":"Benji Dalton"},"message":"budle installs","distinct":true,"url":"https://api.github.com/repos/jaeming/benjidalton.com-rails/commits/41e886c76b0f730514aea36bd1e7f2b23e9034d0"},{"sha":"aad36070fa0f8ca05fcac88efe5da13fd2bf0155","author":{"email":"d39d27a5eeafdbd0faf14e584ad62f6ebbc5a12b@gmail.com","name":"Benji Dalton"},"message":"troubleshooting gems for deployment","distinct":true,"url":"https://api.github.com/repos/jaeming/benjidalton.com-rails/commits/aad36070fa0f8ca05fcac88efe5da13fd2bf0155"},{"sha":"687adef1ee568bb6f10e25800c4bbfce18803388","author":{"email":"d39d27a5eeafdbd0faf14e584ad62f6ebbc5a12b@gmail.com","name":"Benji Dalton"},"message":"troublshooting deployment","distinct":true,"url":"https://api.github.com/repos/jaeming/benjidalton.com-rails/commits/687adef1ee568bb6f10e25800c4bbfce18803388"},{"sha":"32ff4136cd43fe2d32718a8059f380bc2fac3b8c","author":{"email":"d39d27a5eeafdbd0faf14e584ad62f6ebbc5a12b@gmail.com","name":"Benji Dalton"},"message":"Production database fix","distinct":true,"url":"https://api.github.com/repos/jaeming/benjidalton.com-rails/commits/32ff4136cd43fe2d32718a8059f380bc2fac3b8c"},{"sha":"8ee9cd2695908c748cf205a00a6be948b6e3f230","author":{"email":"d39d27a5eeafdbd0faf14e584ad62f6ebbc5a12b@gmail.com","name":"Benji Dalton"},"message":"deployment issues cont.","distinct":true,"url":"https://api.github.com/repos/jaeming/benjidalton.com-rails/commits/8ee9cd2695908c748cf205a00a6be948b6e3f230"},{"sha":"8fa60f567959157c385f6a127ab6a9b1a204000c","author":{"email":"d39d27a5eeafdbd0faf14e584ad62f6ebbc5a12b@gmail.com","name":"Benji Dalton"},"message":"fixes db","distinct":true,"url":"https://api.github.com/repos/jaeming/benjidalton.com-rails/commits/8fa60f567959157c385f6a127ab6a9b1a204000c"},{"sha":"9677532e86fc080be3b8d28a98718369306cde05","author":{"email":"d39d27a5eeafdbd0faf14e584ad62f6ebbc5a12b@gmail.com","name":"Benji Dalton"},"message":"recreates openshift gear","distinct":true,"url":"https://api.github.com/repos/jaeming/benjidalton.com-rails/commits/9677532e86fc080be3b8d28a98718369306cde05"},{"sha":"92f9903744ccccc939a998be3127bdef25bc0c05","author":{"email":"d39d27a5eeafdbd0faf14e584ad62f6ebbc5a12b@gmail.com","name":"Benji Dalton"},"message":"switch to heroku deploment","distinct":true,"url":"https://api.github.com/repos/jaeming/benjidalton.com-rails/commits/92f9903744ccccc939a998be3127bdef25bc0c05"},{"sha":"c7a4fee8438bc4c511aa3bde73ce47158ad5541d","author":{"email":"d39d27a5eeafdbd0faf14e584ad62f6ebbc5a12b@gmail.com","name":"Benji Dalton"},"message":"desc order on articles","distinct":true,"url":"https://api.github.com/repos/jaeming/benjidalton.com-rails/commits/c7a4fee8438bc4c511aa3bde73ce47158ad5541d"},{"sha":"cd559006a5f251177785f22f2f225d1e3ca52232","author":{"email":"d39d27a5eeafdbd0faf14e584ad62f6ebbc5a12b@gmail.com","name":"Benji Dalton"},"message":"adds new-relic","distinct":true,"url":"https://api.github.com/repos/jaeming/benjidalton.com-rails/commits/cd559006a5f251177785f22f2f225d1e3ca52232"}]},"public":true,"created_at":"2015-01-01T15:18:02Z"} +,{"id":"2489659435","type":"PushEvent","actor":{"id":8228571,"login":"jonakand","gravatar_id":"","url":"https://api.github.com/users/jonakand","avatar_url":"https://avatars.githubusercontent.com/u/8228571?"},"repo":{"id":28688342,"name":"jonakand/.emacs.d","url":"https://api.github.com/repos/jonakand/.emacs.d"},"payload":{"push_id":536867740,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"dbbd3764475cd88e2a9e938020518a4c48b25a6b","before":"24059f0f265f783d325198c6542f1bdc6474fc89","commits":[{"sha":"dbbd3764475cd88e2a9e938020518a4c48b25a6b","author":{"email":"a3fbf780b3a0a6aae3247ee474592c1da08bc4fc@gmail.com","name":"Jonakand"},"message":"Initial add","distinct":true,"url":"https://api.github.com/repos/jonakand/.emacs.d/commits/dbbd3764475cd88e2a9e938020518a4c48b25a6b"}]},"public":true,"created_at":"2015-01-01T15:18:02Z"} +,{"id":"2489659436","type":"ForkEvent","actor":{"id":6264696,"login":"AbdullahAlger","gravatar_id":"","url":"https://api.github.com/users/AbdullahAlger","avatar_url":"https://avatars.githubusercontent.com/u/6264696?"},"repo":{"id":1653882,"name":"thoughtbot/bourbon","url":"https://api.github.com/repos/thoughtbot/bourbon"},"payload":{"forkee":{"id":28688931,"name":"bourbon","full_name":"AbdullahAlger/bourbon","owner":{"login":"AbdullahAlger","id":6264696,"avatar_url":"https://avatars.githubusercontent.com/u/6264696?v=3","gravatar_id":"","url":"https://api.github.com/users/AbdullahAlger","html_url":"https://github.com/AbdullahAlger","followers_url":"https://api.github.com/users/AbdullahAlger/followers","following_url":"https://api.github.com/users/AbdullahAlger/following{/other_user}","gists_url":"https://api.github.com/users/AbdullahAlger/gists{/gist_id}","starred_url":"https://api.github.com/users/AbdullahAlger/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AbdullahAlger/subscriptions","organizations_url":"https://api.github.com/users/AbdullahAlger/orgs","repos_url":"https://api.github.com/users/AbdullahAlger/repos","events_url":"https://api.github.com/users/AbdullahAlger/events{/privacy}","received_events_url":"https://api.github.com/users/AbdullahAlger/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/AbdullahAlger/bourbon","description":"A simple and lightweight mixin library for Sass.","fork":true,"url":"https://api.github.com/repos/AbdullahAlger/bourbon","forks_url":"https://api.github.com/repos/AbdullahAlger/bourbon/forks","keys_url":"https://api.github.com/repos/AbdullahAlger/bourbon/keys{/key_id}","collaborators_url":"https://api.github.com/repos/AbdullahAlger/bourbon/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/AbdullahAlger/bourbon/teams","hooks_url":"https://api.github.com/repos/AbdullahAlger/bourbon/hooks","issue_events_url":"https://api.github.com/repos/AbdullahAlger/bourbon/issues/events{/number}","events_url":"https://api.github.com/repos/AbdullahAlger/bourbon/events","assignees_url":"https://api.github.com/repos/AbdullahAlger/bourbon/assignees{/user}","branches_url":"https://api.github.com/repos/AbdullahAlger/bourbon/branches{/branch}","tags_url":"https://api.github.com/repos/AbdullahAlger/bourbon/tags","blobs_url":"https://api.github.com/repos/AbdullahAlger/bourbon/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/AbdullahAlger/bourbon/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/AbdullahAlger/bourbon/git/refs{/sha}","trees_url":"https://api.github.com/repos/AbdullahAlger/bourbon/git/trees{/sha}","statuses_url":"https://api.github.com/repos/AbdullahAlger/bourbon/statuses/{sha}","languages_url":"https://api.github.com/repos/AbdullahAlger/bourbon/languages","stargazers_url":"https://api.github.com/repos/AbdullahAlger/bourbon/stargazers","contributors_url":"https://api.github.com/repos/AbdullahAlger/bourbon/contributors","subscribers_url":"https://api.github.com/repos/AbdullahAlger/bourbon/subscribers","subscription_url":"https://api.github.com/repos/AbdullahAlger/bourbon/subscription","commits_url":"https://api.github.com/repos/AbdullahAlger/bourbon/commits{/sha}","git_commits_url":"https://api.github.com/repos/AbdullahAlger/bourbon/git/commits{/sha}","comments_url":"https://api.github.com/repos/AbdullahAlger/bourbon/comments{/number}","issue_comment_url":"https://api.github.com/repos/AbdullahAlger/bourbon/issues/comments/{number}","contents_url":"https://api.github.com/repos/AbdullahAlger/bourbon/contents/{+path}","compare_url":"https://api.github.com/repos/AbdullahAlger/bourbon/compare/{base}...{head}","merges_url":"https://api.github.com/repos/AbdullahAlger/bourbon/merges","archive_url":"https://api.github.com/repos/AbdullahAlger/bourbon/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/AbdullahAlger/bourbon/downloads","issues_url":"https://api.github.com/repos/AbdullahAlger/bourbon/issues{/number}","pulls_url":"https://api.github.com/repos/AbdullahAlger/bourbon/pulls{/number}","milestones_url":"https://api.github.com/repos/AbdullahAlger/bourbon/milestones{/number}","notifications_url":"https://api.github.com/repos/AbdullahAlger/bourbon/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/AbdullahAlger/bourbon/labels{/name}","releases_url":"https://api.github.com/repos/AbdullahAlger/bourbon/releases{/id}","created_at":"2015-01-01T15:18:02Z","updated_at":"2015-01-01T07:48:14Z","pushed_at":"2014-12-31T19:44:22Z","git_url":"git://github.com/AbdullahAlger/bourbon.git","ssh_url":"git@github.com:AbdullahAlger/bourbon.git","clone_url":"https://github.com/AbdullahAlger/bourbon.git","svn_url":"https://github.com/AbdullahAlger/bourbon","homepage":"http://bourbon.io","size":6350,"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:18:02Z","org":{"id":6183,"login":"thoughtbot","gravatar_id":"","url":"https://api.github.com/orgs/thoughtbot","avatar_url":"https://avatars.githubusercontent.com/u/6183?"}} +,{"id":"2489659437","type":"PushEvent","actor":{"id":474878,"login":"wesyoung","gravatar_id":"","url":"https://api.github.com/users/wesyoung","avatar_url":"https://avatars.githubusercontent.com/u/474878?"},"repo":{"id":15674129,"name":"csirtgadgets/massive-octo-spice","url":"https://api.github.com/repos/csirtgadgets/massive-octo-spice"},"payload":{"push_id":536867741,"size":2,"distinct_size":0,"ref":"refs/heads/staging","head":"b43582d34061c638c57dbeed05fe0550f158034f","before":"14032e0bdd46c4666855bf5969010d0024e9e83e","commits":[{"sha":"ce3160a2ba9a3f47c02c0e37ff70a5877b6ebda4","author":{"email":"dd516747aaff812d65b57b832bbf2900e5471cbc@barely3am.com","name":"Wes Young"},"message":"fixes #135","distinct":false,"url":"https://api.github.com/repos/csirtgadgets/massive-octo-spice/commits/ce3160a2ba9a3f47c02c0e37ff70a5877b6ebda4"},{"sha":"b43582d34061c638c57dbeed05fe0550f158034f","author":{"email":"dd516747aaff812d65b57b832bbf2900e5471cbc@barely3am.com","name":"Wes Young"},"message":"fixes #137","distinct":false,"url":"https://api.github.com/repos/csirtgadgets/massive-octo-spice/commits/b43582d34061c638c57dbeed05fe0550f158034f"}]},"public":true,"created_at":"2015-01-01T15:18:02Z","org":{"id":5203786,"login":"csirtgadgets","gravatar_id":"","url":"https://api.github.com/orgs/csirtgadgets","avatar_url":"https://avatars.githubusercontent.com/u/5203786?"}} +,{"id":"2489659438","type":"PushEvent","actor":{"id":142054,"login":"ekowabaka","gravatar_id":"","url":"https://api.github.com/users/ekowabaka","avatar_url":"https://avatars.githubusercontent.com/u/142054?"},"repo":{"id":22584612,"name":"ekowabaka/yentu","url":"https://api.github.com/repos/ekowabaka/yentu"},"payload":{"push_id":536867742,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cfdc090173aa4359a7d164c92594ac05e1d4cc5c","before":"fddd16ee55d6b169f2ed925d8a13b1e10fd002cd","commits":[{"sha":"cfdc090173aa4359a7d164c92594ac05e1d4cc5c","author":{"email":"22ab76201acf60dcb216a113f0200a178f6b9d5b@gmail.com","name":"Ekow Abaka Ainooson"},"message":"Fixed a bug which prevented chaining of foreign keys.\nSchema's which are marked as reference schema would not put tables on the encapsulation stack.","distinct":true,"url":"https://api.github.com/repos/ekowabaka/yentu/commits/cfdc090173aa4359a7d164c92594ac05e1d4cc5c"}]},"public":true,"created_at":"2015-01-01T15:18:02Z"} +,{"id":"2489659439","type":"PushEvent","actor":{"id":10364823,"login":"Arunkumarakp","gravatar_id":"","url":"https://api.github.com/users/Arunkumarakp","avatar_url":"https://avatars.githubusercontent.com/u/10364823?"},"repo":{"id":28688872,"name":"Arunkumarakp/hello","url":"https://api.github.com/repos/Arunkumarakp/hello"},"payload":{"push_id":536867743,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"15ec41fe185f581ef1c436e191a8cddef40f13c0","before":"d1c23f0db0eaa646002dc7b295e018d228b64e25","commits":[{"sha":"15ec41fe185f581ef1c436e191a8cddef40f13c0","author":{"email":"62489b7b83340bb55a1f4054939c3873d27f0cab@gmail.com","name":"Arunkumarakp"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/Arunkumarakp/hello/commits/15ec41fe185f581ef1c436e191a8cddef40f13c0"}]},"public":true,"created_at":"2015-01-01T15:18:02Z"} +,{"id":"2489659440","type":"CreateEvent","actor":{"id":2971225,"login":"sebastienadam","gravatar_id":"","url":"https://api.github.com/users/sebastienadam","avatar_url":"https://avatars.githubusercontent.com/u/2971225?"},"repo":{"id":28688932,"name":"sebastienadam/ephec_csharp_oo","url":"https://api.github.com/repos/sebastienadam/ephec_csharp_oo"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Exercices réalisé lors du cours de C# OO en 2014-2015","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:02Z"} +,{"id":"2489659443","type":"CreateEvent","actor":{"id":9401403,"login":"jcbbsr","gravatar_id":"","url":"https://api.github.com/users/jcbbsr","avatar_url":"https://avatars.githubusercontent.com/u/9401403?"},"repo":{"id":27465676,"name":"jcbbsr/Knot","url":"https://api.github.com/repos/jcbbsr/Knot"},"payload":{"ref":"first","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:04Z"} +,{"id":"2489659448","type":"PullRequestEvent","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":{"action":"closed","number":1,"pull_request":{"url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/pulls/1","id":26743903,"html_url":"https://github.com/AxelRL/AxelRL.github.io/pull/1","diff_url":"https://github.com/AxelRL/AxelRL.github.io/pull/1.diff","patch_url":"https://github.com/AxelRL/AxelRL.github.io/pull/1.patch","issue_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/issues/1","number":1,"state":"closed","locked":false,"title":"Byta till svenska","user":{"login":"AxelRL","id":10364582,"avatar_url":"https://avatars.githubusercontent.com/u/10364582?v=3","gravatar_id":"","url":"https://api.github.com/users/AxelRL","html_url":"https://github.com/AxelRL","followers_url":"https://api.github.com/users/AxelRL/followers","following_url":"https://api.github.com/users/AxelRL/following{/other_user}","gists_url":"https://api.github.com/users/AxelRL/gists{/gist_id}","starred_url":"https://api.github.com/users/AxelRL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AxelRL/subscriptions","organizations_url":"https://api.github.com/users/AxelRL/orgs","repos_url":"https://api.github.com/users/AxelRL/repos","events_url":"https://api.github.com/users/AxelRL/events{/privacy}","received_events_url":"https://api.github.com/users/AxelRL/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:17:33Z","updated_at":"2015-01-01T15:18:04Z","closed_at":"2015-01-01T15:18:04Z","merged_at":"2015-01-01T15:18:04Z","merge_commit_sha":"741814c64b8f3726d783a77bf35a5645e5bd0199","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/pulls/1/commits","review_comments_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/pulls/1/comments","review_comment_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/pulls/comments/{number}","comments_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/issues/1/comments","statuses_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/statuses/f89c6b1aa9aa0572fcdd2507b798f5ba4bcbcea6","head":{"label":"AxelRL:byta-till-svenska","ref":"byta-till-svenska","sha":"f89c6b1aa9aa0572fcdd2507b798f5ba4bcbcea6","user":{"login":"AxelRL","id":10364582,"avatar_url":"https://avatars.githubusercontent.com/u/10364582?v=3","gravatar_id":"","url":"https://api.github.com/users/AxelRL","html_url":"https://github.com/AxelRL","followers_url":"https://api.github.com/users/AxelRL/followers","following_url":"https://api.github.com/users/AxelRL/following{/other_user}","gists_url":"https://api.github.com/users/AxelRL/gists{/gist_id}","starred_url":"https://api.github.com/users/AxelRL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AxelRL/subscriptions","organizations_url":"https://api.github.com/users/AxelRL/orgs","repos_url":"https://api.github.com/users/AxelRL/repos","events_url":"https://api.github.com/users/AxelRL/events{/privacy}","received_events_url":"https://api.github.com/users/AxelRL/received_events","type":"User","site_admin":false},"repo":{"id":28688617,"name":"AxelRL.github.io","full_name":"AxelRL/AxelRL.github.io","owner":{"login":"AxelRL","id":10364582,"avatar_url":"https://avatars.githubusercontent.com/u/10364582?v=3","gravatar_id":"","url":"https://api.github.com/users/AxelRL","html_url":"https://github.com/AxelRL","followers_url":"https://api.github.com/users/AxelRL/followers","following_url":"https://api.github.com/users/AxelRL/following{/other_user}","gists_url":"https://api.github.com/users/AxelRL/gists{/gist_id}","starred_url":"https://api.github.com/users/AxelRL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AxelRL/subscriptions","organizations_url":"https://api.github.com/users/AxelRL/orgs","repos_url":"https://api.github.com/users/AxelRL/repos","events_url":"https://api.github.com/users/AxelRL/events{/privacy}","received_events_url":"https://api.github.com/users/AxelRL/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/AxelRL/AxelRL.github.io","description":"Min hemsida","fork":false,"url":"https://api.github.com/repos/AxelRL/AxelRL.github.io","forks_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/forks","keys_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/teams","hooks_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/hooks","issue_events_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/events","assignees_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/tags","blobs_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/languages","stargazers_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/stargazers","contributors_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/contributors","subscribers_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/subscribers","subscription_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/subscription","commits_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/merges","archive_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/downloads","issues_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/labels{/name}","releases_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/releases{/id}","created_at":"2015-01-01T15:01:13Z","updated_at":"2015-01-01T15:01:13Z","pushed_at":"2015-01-01T15:18:04Z","git_url":"git://github.com/AxelRL/AxelRL.github.io.git","ssh_url":"git@github.com:AxelRL/AxelRL.github.io.git","clone_url":"https://github.com/AxelRL/AxelRL.github.io.git","svn_url":"https://github.com/AxelRL/AxelRL.github.io","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"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":"AxelRL:master","ref":"master","sha":"30765d4e5d4043954ee74a51e00c4132adbecbe4","user":{"login":"AxelRL","id":10364582,"avatar_url":"https://avatars.githubusercontent.com/u/10364582?v=3","gravatar_id":"","url":"https://api.github.com/users/AxelRL","html_url":"https://github.com/AxelRL","followers_url":"https://api.github.com/users/AxelRL/followers","following_url":"https://api.github.com/users/AxelRL/following{/other_user}","gists_url":"https://api.github.com/users/AxelRL/gists{/gist_id}","starred_url":"https://api.github.com/users/AxelRL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AxelRL/subscriptions","organizations_url":"https://api.github.com/users/AxelRL/orgs","repos_url":"https://api.github.com/users/AxelRL/repos","events_url":"https://api.github.com/users/AxelRL/events{/privacy}","received_events_url":"https://api.github.com/users/AxelRL/received_events","type":"User","site_admin":false},"repo":{"id":28688617,"name":"AxelRL.github.io","full_name":"AxelRL/AxelRL.github.io","owner":{"login":"AxelRL","id":10364582,"avatar_url":"https://avatars.githubusercontent.com/u/10364582?v=3","gravatar_id":"","url":"https://api.github.com/users/AxelRL","html_url":"https://github.com/AxelRL","followers_url":"https://api.github.com/users/AxelRL/followers","following_url":"https://api.github.com/users/AxelRL/following{/other_user}","gists_url":"https://api.github.com/users/AxelRL/gists{/gist_id}","starred_url":"https://api.github.com/users/AxelRL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AxelRL/subscriptions","organizations_url":"https://api.github.com/users/AxelRL/orgs","repos_url":"https://api.github.com/users/AxelRL/repos","events_url":"https://api.github.com/users/AxelRL/events{/privacy}","received_events_url":"https://api.github.com/users/AxelRL/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/AxelRL/AxelRL.github.io","description":"Min hemsida","fork":false,"url":"https://api.github.com/repos/AxelRL/AxelRL.github.io","forks_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/forks","keys_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/teams","hooks_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/hooks","issue_events_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/events","assignees_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/tags","blobs_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/languages","stargazers_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/stargazers","contributors_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/contributors","subscribers_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/subscribers","subscription_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/subscription","commits_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/merges","archive_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/downloads","issues_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/labels{/name}","releases_url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/releases{/id}","created_at":"2015-01-01T15:01:13Z","updated_at":"2015-01-01T15:01:13Z","pushed_at":"2015-01-01T15:18:04Z","git_url":"git://github.com/AxelRL/AxelRL.github.io.git","ssh_url":"git@github.com:AxelRL/AxelRL.github.io.git","clone_url":"https://github.com/AxelRL/AxelRL.github.io.git","svn_url":"https://github.com/AxelRL/AxelRL.github.io","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"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/AxelRL/AxelRL.github.io/pulls/1"},"html":{"href":"https://github.com/AxelRL/AxelRL.github.io/pull/1"},"issue":{"href":"https://api.github.com/repos/AxelRL/AxelRL.github.io/issues/1"},"comments":{"href":"https://api.github.com/repos/AxelRL/AxelRL.github.io/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/AxelRL/AxelRL.github.io/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/AxelRL/AxelRL.github.io/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/AxelRL/AxelRL.github.io/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/AxelRL/AxelRL.github.io/statuses/f89c6b1aa9aa0572fcdd2507b798f5ba4bcbcea6"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"AxelRL","id":10364582,"avatar_url":"https://avatars.githubusercontent.com/u/10364582?v=3","gravatar_id":"","url":"https://api.github.com/users/AxelRL","html_url":"https://github.com/AxelRL","followers_url":"https://api.github.com/users/AxelRL/followers","following_url":"https://api.github.com/users/AxelRL/following{/other_user}","gists_url":"https://api.github.com/users/AxelRL/gists{/gist_id}","starred_url":"https://api.github.com/users/AxelRL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AxelRL/subscriptions","organizations_url":"https://api.github.com/users/AxelRL/orgs","repos_url":"https://api.github.com/users/AxelRL/repos","events_url":"https://api.github.com/users/AxelRL/events{/privacy}","received_events_url":"https://api.github.com/users/AxelRL/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":2,"additions":3,"deletions":3,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:18:04Z"} +,{"id":"2489659449","type":"WatchEvent","actor":{"id":321960,"login":"awynne","gravatar_id":"","url":"https://api.github.com/users/awynne","avatar_url":"https://avatars.githubusercontent.com/u/321960?"},"repo":{"id":11692917,"name":"rllynch/pi_garage_alert","url":"https://api.github.com/repos/rllynch/pi_garage_alert"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:18:04Z"} +,{"id":"2489659450","type":"PushEvent","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":{"push_id":536867749,"size":3,"distinct_size":1,"ref":"refs/heads/master","head":"1c01a67f7bc9e3e02434fdf3fa40994f9f1d55cf","before":"30765d4e5d4043954ee74a51e00c4132adbecbe4","commits":[{"sha":"8d70d849446f5dd1aa8258ea2dd38fa65ff5e162","author":{"email":"5e90cfa9dbc5ac079dbcc98533d2f146750bcf00@gmail.com","name":"AxelRL"},"message":"ny linje i slutet av filen","distinct":false,"url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/commits/8d70d849446f5dd1aa8258ea2dd38fa65ff5e162"},{"sha":"f89c6b1aa9aa0572fcdd2507b798f5ba4bcbcea6","author":{"email":"5e90cfa9dbc5ac079dbcc98533d2f146750bcf00@gmail.com","name":"AxelRL"},"message":"byt till svenska","distinct":false,"url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/commits/f89c6b1aa9aa0572fcdd2507b798f5ba4bcbcea6"},{"sha":"1c01a67f7bc9e3e02434fdf3fa40994f9f1d55cf","author":{"email":"5e90cfa9dbc5ac079dbcc98533d2f146750bcf00@gmail..com","name":"AxelRL"},"message":"Merge pull request #1 from AxelRL/byta-till-svenska\n\nByta till svenska","distinct":true,"url":"https://api.github.com/repos/AxelRL/AxelRL.github.io/commits/1c01a67f7bc9e3e02434fdf3fa40994f9f1d55cf"}]},"public":true,"created_at":"2015-01-01T15:18:04Z"} +,{"id":"2489659453","type":"PushEvent","actor":{"id":649492,"login":"brockallen","gravatar_id":"","url":"https://api.github.com/users/brockallen","avatar_url":"https://avatars.githubusercontent.com/u/649492?"},"repo":{"id":15714062,"name":"thinktecture/Thinktecture.IdentityServer.v3","url":"https://api.github.com/repos/thinktecture/Thinktecture.IdentityServer.v3"},"payload":{"push_id":536867751,"size":2,"distinct_size":2,"ref":"refs/heads/dev","head":"c887e5f998823bac133e01adfb25af772171d299","before":"01dbe6443284f516208a3d3814a645ef2e9d5df7","commits":[{"sha":"9e0398b2bab751a0e8ada2f2dc3b5aef878ac1ec","author":{"email":"dbf9df18bc49b7c7cc6e6aa8b38f8966917b12a0@gmail.com","name":"Brock Allen"},"message":"update ","distinct":true,"url":"https://api.github.com/repos/thinktecture/Thinktecture.IdentityServer.v3/commits/9e0398b2bab751a0e8ada2f2dc3b5aef878ac1ec"},{"sha":"c887e5f998823bac133e01adfb25af772171d299","author":{"email":"dbf9df18bc49b7c7cc6e6aa8b38f8966917b12a0@gmail.com","name":"Brock Allen"},"message":"more XML code comments","distinct":true,"url":"https://api.github.com/repos/thinktecture/Thinktecture.IdentityServer.v3/commits/c887e5f998823bac133e01adfb25af772171d299"}]},"public":true,"created_at":"2015-01-01T15:18:05Z","org":{"id":1458091,"login":"thinktecture","gravatar_id":"","url":"https://api.github.com/orgs/thinktecture","avatar_url":"https://avatars.githubusercontent.com/u/1458091?"}} +,{"id":"2489659454","type":"PushEvent","actor":{"id":3797972,"login":"oceanjack","gravatar_id":"","url":"https://api.github.com/users/oceanjack","avatar_url":"https://avatars.githubusercontent.com/u/3797972?"},"repo":{"id":27213484,"name":"oceanjack/oceanjack.github.io","url":"https://api.github.com/repos/oceanjack/oceanjack.github.io"},"payload":{"push_id":536867752,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0753ed4cf82db7104c5bb6a0f86ed85adf091bee","before":"b35505285aa102ed5c3d2df468a3cc2cb2c08ce5","commits":[{"sha":"0753ed4cf82db7104c5bb6a0f86ed85adf091bee","author":{"email":"e7962a36105d0ad4343dd588376fafc81e75f2e2@gmail.com","name":"oceanjack"},"message":"update","distinct":true,"url":"https://api.github.com/repos/oceanjack/oceanjack.github.io/commits/0753ed4cf82db7104c5bb6a0f86ed85adf091bee"}]},"public":true,"created_at":"2015-01-01T15:18:05Z"} +,{"id":"2489659456","type":"CreateEvent","actor":{"id":615531,"login":"tjpnz","gravatar_id":"","url":"https://api.github.com/users/tjpnz","avatar_url":"https://avatars.githubusercontent.com/u/615531?"},"repo":{"id":28688934,"name":"tjpnz/sphinx-example","url":"https://api.github.com/repos/tjpnz/sphinx-example"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"PyBuilder example demonstrating Sphinx plugin","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:05Z"} +,{"id":"2489659457","type":"IssueCommentEvent","actor":{"id":58074,"login":"dshafik","gravatar_id":"","url":"https://api.github.com/users/dshafik","avatar_url":"https://avatars.githubusercontent.com/u/58074?"},"repo":{"id":20808417,"name":"auraphp/Aura.Auth","url":"https://api.github.com/repos/auraphp/Aura.Auth"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/auraphp/Aura.Auth/issues/62","labels_url":"https://api.github.com/repos/auraphp/Aura.Auth/issues/62/labels{/name}","comments_url":"https://api.github.com/repos/auraphp/Aura.Auth/issues/62/comments","events_url":"https://api.github.com/repos/auraphp/Aura.Auth/issues/62/events","html_url":"https://github.com/auraphp/Aura.Auth/issues/62","id":53221217,"number":62,"title":"Rehash","user":{"login":"harikt","id":120454,"avatar_url":"https://avatars.githubusercontent.com/u/120454?v=3","gravatar_id":"","url":"https://api.github.com/users/harikt","html_url":"https://github.com/harikt","followers_url":"https://api.github.com/users/harikt/followers","following_url":"https://api.github.com/users/harikt/following{/other_user}","gists_url":"https://api.github.com/users/harikt/gists{/gist_id}","starred_url":"https://api.github.com/users/harikt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/harikt/subscriptions","organizations_url":"https://api.github.com/users/harikt/orgs","repos_url":"https://api.github.com/users/harikt/repos","events_url":"https://api.github.com/users/harikt/events{/privacy}","received_events_url":"https://api.github.com/users/harikt/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T14:53:53Z","updated_at":"2015-01-01T15:18:06Z","closed_at":null,"body":"Hi Paul, \r\n\r\nIt seems that it will be good to update the password making use of http://php.net/manual/en/function.password-needs-rehash.php . \r\n\r\nElse the problem is developers probably will never make use of rehashing and will forget about it.\r\n\r\nFor the sake of good to happen I feel it is good to make use of the rehashing at the library level .\r\n\r\nThanks"},"comment":{"url":"https://api.github.com/repos/auraphp/Aura.Auth/issues/comments/68488875","html_url":"https://github.com/auraphp/Aura.Auth/issues/62#issuecomment-68488875","issue_url":"https://api.github.com/repos/auraphp/Aura.Auth/issues/62","id":68488875,"user":{"login":"dshafik","id":58074,"avatar_url":"https://avatars.githubusercontent.com/u/58074?v=3","gravatar_id":"","url":"https://api.github.com/users/dshafik","html_url":"https://github.com/dshafik","followers_url":"https://api.github.com/users/dshafik/followers","following_url":"https://api.github.com/users/dshafik/following{/other_user}","gists_url":"https://api.github.com/users/dshafik/gists{/gist_id}","starred_url":"https://api.github.com/users/dshafik/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dshafik/subscriptions","organizations_url":"https://api.github.com/users/dshafik/orgs","repos_url":"https://api.github.com/users/dshafik/repos","events_url":"https://api.github.com/users/dshafik/events{/privacy}","received_events_url":"https://api.github.com/users/dshafik/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:18:06Z","updated_at":"2015-01-01T15:18:06Z","body":"[More info here](https://github.com/dshafik/securepasswords.info/pull/15#issuecomment-68488836)"}},"public":true,"created_at":"2015-01-01T15:18:06Z","org":{"id":611900,"login":"auraphp","gravatar_id":"","url":"https://api.github.com/orgs/auraphp","avatar_url":"https://avatars.githubusercontent.com/u/611900?"}} +,{"id":"2489659458","type":"WatchEvent","actor":{"id":38495,"login":"mathieuravaux","gravatar_id":"","url":"https://api.github.com/users/mathieuravaux","avatar_url":"https://avatars.githubusercontent.com/u/38495?"},"repo":{"id":20295350,"name":"hdiedrich/mw","url":"https://api.github.com/repos/hdiedrich/mw"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:18:06Z"} +,{"id":"2489659459","type":"PushEvent","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":{"push_id":536867753,"size":1,"distinct_size":1,"ref":"refs/heads/PLM2085ff6e33c686a14ce5f1b978157b9fa0439577","head":"cd158ded62db1e2623520ebbf698ca3d92e14bd1","before":"99852296f895c7265d9c3690847d0f11e8176cfe","commits":[{"sha":"cd158ded62db1e2623520ebbf698ca3d92e14bd1","author":{"email":"af0188f34285ce3b31574866070b9a5066df7355@plm.net","name":"John Doe"},"message":"{\"kind\":\"started\",\"os\":\"Linux (version: 3.16-2-amd64; arch: amd64)\",\"plm\":\"2.6-pre (20141130)\",\"java\":\"1.7.0_65 (VM: OpenJDK 64-Bit Server VM; version: 24.65-b04)\"}","distinct":true,"url":"https://api.github.com/repos/mquinson/PLM-data/commits/cd158ded62db1e2623520ebbf698ca3d92e14bd1"}]},"public":true,"created_at":"2015-01-01T15:18:06Z"} +,{"id":"2489659463","type":"PushEvent","actor":{"id":8132102,"login":"the-cdnjs-curator","gravatar_id":"","url":"https://api.github.com/users/the-cdnjs-curator","avatar_url":"https://avatars.githubusercontent.com/u/8132102?"},"repo":{"id":18663590,"name":"cdnjs/new-website","url":"https://api.github.com/repos/cdnjs/new-website"},"payload":{"push_id":536867756,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3aa3e997f2a087d6fe51f2a32be5a133ea22951c","before":"97653fed23af84b6f2e0d0a7f706378385cacc4a","commits":[{"sha":"3aa3e997f2a087d6fe51f2a32be5a133ea22951c","author":{"email":"a81c8330dae20b275f250c899f16a97692457035@gmail.com","name":"the-cdnjs-curator"},"message":"added ner files","distinct":true,"url":"https://api.github.com/repos/cdnjs/new-website/commits/3aa3e997f2a087d6fe51f2a32be5a133ea22951c"}]},"public":true,"created_at":"2015-01-01T15:18:06Z","org":{"id":637362,"login":"cdnjs","gravatar_id":"","url":"https://api.github.com/orgs/cdnjs","avatar_url":"https://avatars.githubusercontent.com/u/637362?"}} +,{"id":"2489659466","type":"WatchEvent","actor":{"id":2149294,"login":"peeping4dsun","gravatar_id":"","url":"https://api.github.com/users/peeping4dsun","avatar_url":"https://avatars.githubusercontent.com/u/2149294?"},"repo":{"id":11116372,"name":"keystonejs/keystone","url":"https://api.github.com/repos/keystonejs/keystone"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:18:07Z","org":{"id":6118534,"login":"keystonejs","gravatar_id":"","url":"https://api.github.com/orgs/keystonejs","avatar_url":"https://avatars.githubusercontent.com/u/6118534?"}} +,{"id":"2489659467","type":"PushEvent","actor":{"id":7806891,"login":"pratikborsadiya","gravatar_id":"","url":"https://api.github.com/users/pratikborsadiya","avatar_url":"https://avatars.githubusercontent.com/u/7806891?"},"repo":{"id":27918140,"name":"pratikborsadiya/WireCMS","url":"https://api.github.com/repos/pratikborsadiya/WireCMS"},"payload":{"push_id":536867757,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"ff4c6df5549f277bca04e86866ebb65e1585d394","before":"7e6f7440a9a960a850a4cf5cf134c6806d391bcd","commits":[{"sha":"768a8518d3365ec53d3326b8fe599a789a80d4ee","author":{"email":"e43fa8fef02633d13d6cfa9722c8206db6d36d04@gmail.com","name":"Pratik Borsadiya"},"message":"Ripples Fix 2","distinct":true,"url":"https://api.github.com/repos/pratikborsadiya/WireCMS/commits/768a8518d3365ec53d3326b8fe599a789a80d4ee"},{"sha":"a2db51272e2ec03c9f771d89ccfbe5fff35d8e1d","author":{"email":"e43fa8fef02633d13d6cfa9722c8206db6d36d04@gmail.com","name":"Pratik Borsadiya"},"message":"Generate List Update","distinct":true,"url":"https://api.github.com/repos/pratikborsadiya/WireCMS/commits/a2db51272e2ec03c9f771d89ccfbe5fff35d8e1d"},{"sha":"ff4c6df5549f277bca04e86866ebb65e1585d394","author":{"email":"e43fa8fef02633d13d6cfa9722c8206db6d36d04@gmail.com","name":"Pratik Borsadiya"},"message":"Merge branch 'master' of https://github.com/pratikborsadiya/WireCMS","distinct":true,"url":"https://api.github.com/repos/pratikborsadiya/WireCMS/commits/ff4c6df5549f277bca04e86866ebb65e1585d394"}]},"public":true,"created_at":"2015-01-01T15:18:07Z"} +,{"id":"2489659470","type":"PushEvent","actor":{"id":151859,"login":"Mirroar","gravatar_id":"","url":"https://api.github.com/users/Mirroar","avatar_url":"https://avatars.githubusercontent.com/u/151859?"},"repo":{"id":369142,"name":"Mirroar/TopFit","url":"https://api.github.com/repos/Mirroar/TopFit"},"payload":{"push_id":536867758,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"89420d852e6846fc23b7c42045257e1413dd6d46","before":"9e6fa1ce4809b8689ace99ab448ba04df3873271","commits":[{"sha":"46ae95d0dbef789812a915f0223be6c79fddd977","author":{"email":"449100c3b2a775fde2c84b7675f10d0d94bcc7ee@gmail.com","name":"David Franke"},"message":"Fix error when caps are set","distinct":true,"url":"https://api.github.com/repos/Mirroar/TopFit/commits/46ae95d0dbef789812a915f0223be6c79fddd977"},{"sha":"89420d852e6846fc23b7c42045257e1413dd6d46","author":{"email":"449100c3b2a775fde2c84b7675f10d0d94bcc7ee@gmail.com","name":"David Franke"},"message":"continue rewriting item handling in calculation","distinct":true,"url":"https://api.github.com/repos/Mirroar/TopFit/commits/89420d852e6846fc23b7c42045257e1413dd6d46"}]},"public":true,"created_at":"2015-01-01T15:18:07Z"} +,{"id":"2489659475","type":"PushEvent","actor":{"id":63402,"login":"h2non","gravatar_id":"","url":"https://api.github.com/users/h2non","avatar_url":"https://avatars.githubusercontent.com/u/63402?"},"repo":{"id":24670190,"name":"resilient-http/resilient-http.github.io","url":"https://api.github.com/repos/resilient-http/resilient-http.github.io"},"payload":{"push_id":536867763,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0af623934388e01d7a03c3f7cc52f8c740f0f9d4","before":"7468a6e170bc09f08061951064b5856ab86a925c","commits":[{"sha":"0af623934388e01d7a03c3f7cc52f8c740f0f9d4","author":{"email":"2bc6038c3dfca09b2da23c8b6da8ba884dc2dcc2@aparicio.me","name":"Tomás Aparicio"},"message":"chore: update page title","distinct":true,"url":"https://api.github.com/repos/resilient-http/resilient-http.github.io/commits/0af623934388e01d7a03c3f7cc52f8c740f0f9d4"}]},"public":true,"created_at":"2015-01-01T15:18:08Z","org":{"id":8968418,"login":"resilient-http","gravatar_id":"","url":"https://api.github.com/orgs/resilient-http","avatar_url":"https://avatars.githubusercontent.com/u/8968418?"}} +,{"id":"2489659477","type":"WatchEvent","actor":{"id":23876,"login":"elygre","gravatar_id":"","url":"https://api.github.com/users/elygre","avatar_url":"https://avatars.githubusercontent.com/u/23876?"},"repo":{"id":15150300,"name":"tobiasahlin/SpinKit","url":"https://api.github.com/repos/tobiasahlin/SpinKit"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:18:08Z"} +,{"id":"2489659478","type":"PushEvent","actor":{"id":2862953,"login":"DennisPallett","gravatar_id":"","url":"https://api.github.com/users/DennisPallett","avatar_url":"https://avatars.githubusercontent.com/u/2862953?"},"repo":{"id":27262546,"name":"DennisPallett/mssql2monetdb","url":"https://api.github.com/repos/DennisPallett/mssql2monetdb"},"payload":{"push_id":536867764,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"346fc6f0db3d842e5b932fa17473a741443ffb8a","before":"d4fcf9e2bf2aa34e6fdc7a1bd285e1be904c1999","commits":[{"sha":"346fc6f0db3d842e5b932fa17473a741443ffb8a","author":{"email":"7965a665163253a12f43312bf69d07012a113a2a@pallett.nl","name":"Dennis Pallett"},"message":"Support for trigger source\n\nThis commit (re)adds support for a trigger source/column that gives\nan indication of new data. This way data only gets copied when\nthere is actually any new data.","distinct":true,"url":"https://api.github.com/repos/DennisPallett/mssql2monetdb/commits/346fc6f0db3d842e5b932fa17473a741443ffb8a"}]},"public":true,"created_at":"2015-01-01T15:18:08Z"} +,{"id":"2489659481","type":"CreateEvent","actor":{"id":5311358,"login":"walkboy0602","gravatar_id":"","url":"https://api.github.com/users/walkboy0602","avatar_url":"https://avatars.githubusercontent.com/u/5311358?"},"repo":{"id":28688921,"name":"walkboy0602/IT-Street","url":"https://api.github.com/repos/walkboy0602/IT-Street"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"IT Street","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:09Z"} +,{"id":"2489659482","type":"PushEvent","actor":{"id":8531400,"login":"diabaths","gravatar_id":"","url":"https://api.github.com/users/diabaths","avatar_url":"https://avatars.githubusercontent.com/u/8531400?"},"repo":{"id":25733761,"name":"diabaths/sharperino","url":"https://api.github.com/repos/diabaths/sharperino"},"payload":{"push_id":536867767,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"20f0af7f24469322af825a61102e1aa656887160","before":"edc8ba4a2177baa2147c82aa821816f96500ed62","commits":[{"sha":"20f0af7f24469322af825a61102e1aa656887160","author":{"email":"a5d2adeb671dd88ed7d6b8b45c9d79df1ea1d7de@gmail.com","name":"diabaths"},"message":"remove printchat","distinct":true,"url":"https://api.github.com/repos/diabaths/sharperino/commits/20f0af7f24469322af825a61102e1aa656887160"}]},"public":true,"created_at":"2015-01-01T15:18:09Z"} +,{"id":"2489659484","type":"PushEvent","actor":{"id":10249189,"login":"PHPerWu","gravatar_id":"","url":"https://api.github.com/users/PHPerWu","avatar_url":"https://avatars.githubusercontent.com/u/10249189?"},"repo":{"id":28688434,"name":"PHPerWu/Student","url":"https://api.github.com/repos/PHPerWu/Student"},"payload":{"push_id":536867769,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9a029df5c79cb1e924fb238f7c1a52c3695fdde4","before":"b04593d7570538e64d13d3a47ac9901168aa2a3f","commits":[{"sha":"9a029df5c79cb1e924fb238f7c1a52c3695fdde4","author":{"email":"cbe752ec51ab32ae5ca4296575fd9296ebe93d84@qq.com","name":"PHPer_Wu"},"message":"no message","distinct":true,"url":"https://api.github.com/repos/PHPerWu/Student/commits/9a029df5c79cb1e924fb238f7c1a52c3695fdde4"}]},"public":true,"created_at":"2015-01-01T15:18:09Z"} +,{"id":"2489659496","type":"CreateEvent","actor":{"id":10364792,"login":"mtapnoi","gravatar_id":"","url":"https://api.github.com/users/mtapnoi","avatar_url":"https://avatars.githubusercontent.com/u/10364792?"},"repo":{"id":28688935,"name":"mtapnoi/PerFin","url":"https://api.github.com/repos/mtapnoi/PerFin"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Open source java-based personal finance application","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:11Z"} +,{"id":"2489659498","type":"ForkEvent","actor":{"id":321960,"login":"awynne","gravatar_id":"","url":"https://api.github.com/users/awynne","avatar_url":"https://avatars.githubusercontent.com/u/321960?"},"repo":{"id":11692917,"name":"rllynch/pi_garage_alert","url":"https://api.github.com/repos/rllynch/pi_garage_alert"},"payload":{"forkee":{"id":28688936,"name":"pi_garage_alert","full_name":"awynne/pi_garage_alert","owner":{"login":"awynne","id":321960,"avatar_url":"https://avatars.githubusercontent.com/u/321960?v=3","gravatar_id":"","url":"https://api.github.com/users/awynne","html_url":"https://github.com/awynne","followers_url":"https://api.github.com/users/awynne/followers","following_url":"https://api.github.com/users/awynne/following{/other_user}","gists_url":"https://api.github.com/users/awynne/gists{/gist_id}","starred_url":"https://api.github.com/users/awynne/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/awynne/subscriptions","organizations_url":"https://api.github.com/users/awynne/orgs","repos_url":"https://api.github.com/users/awynne/repos","events_url":"https://api.github.com/users/awynne/events{/privacy}","received_events_url":"https://api.github.com/users/awynne/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/awynne/pi_garage_alert","description":"Email/tweet/SMS if a garage door is left open","fork":true,"url":"https://api.github.com/repos/awynne/pi_garage_alert","forks_url":"https://api.github.com/repos/awynne/pi_garage_alert/forks","keys_url":"https://api.github.com/repos/awynne/pi_garage_alert/keys{/key_id}","collaborators_url":"https://api.github.com/repos/awynne/pi_garage_alert/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/awynne/pi_garage_alert/teams","hooks_url":"https://api.github.com/repos/awynne/pi_garage_alert/hooks","issue_events_url":"https://api.github.com/repos/awynne/pi_garage_alert/issues/events{/number}","events_url":"https://api.github.com/repos/awynne/pi_garage_alert/events","assignees_url":"https://api.github.com/repos/awynne/pi_garage_alert/assignees{/user}","branches_url":"https://api.github.com/repos/awynne/pi_garage_alert/branches{/branch}","tags_url":"https://api.github.com/repos/awynne/pi_garage_alert/tags","blobs_url":"https://api.github.com/repos/awynne/pi_garage_alert/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/awynne/pi_garage_alert/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/awynne/pi_garage_alert/git/refs{/sha}","trees_url":"https://api.github.com/repos/awynne/pi_garage_alert/git/trees{/sha}","statuses_url":"https://api.github.com/repos/awynne/pi_garage_alert/statuses/{sha}","languages_url":"https://api.github.com/repos/awynne/pi_garage_alert/languages","stargazers_url":"https://api.github.com/repos/awynne/pi_garage_alert/stargazers","contributors_url":"https://api.github.com/repos/awynne/pi_garage_alert/contributors","subscribers_url":"https://api.github.com/repos/awynne/pi_garage_alert/subscribers","subscription_url":"https://api.github.com/repos/awynne/pi_garage_alert/subscription","commits_url":"https://api.github.com/repos/awynne/pi_garage_alert/commits{/sha}","git_commits_url":"https://api.github.com/repos/awynne/pi_garage_alert/git/commits{/sha}","comments_url":"https://api.github.com/repos/awynne/pi_garage_alert/comments{/number}","issue_comment_url":"https://api.github.com/repos/awynne/pi_garage_alert/issues/comments/{number}","contents_url":"https://api.github.com/repos/awynne/pi_garage_alert/contents/{+path}","compare_url":"https://api.github.com/repos/awynne/pi_garage_alert/compare/{base}...{head}","merges_url":"https://api.github.com/repos/awynne/pi_garage_alert/merges","archive_url":"https://api.github.com/repos/awynne/pi_garage_alert/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/awynne/pi_garage_alert/downloads","issues_url":"https://api.github.com/repos/awynne/pi_garage_alert/issues{/number}","pulls_url":"https://api.github.com/repos/awynne/pi_garage_alert/pulls{/number}","milestones_url":"https://api.github.com/repos/awynne/pi_garage_alert/milestones{/number}","notifications_url":"https://api.github.com/repos/awynne/pi_garage_alert/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/awynne/pi_garage_alert/labels{/name}","releases_url":"https://api.github.com/repos/awynne/pi_garage_alert/releases{/id}","created_at":"2015-01-01T15:18:11Z","updated_at":"2015-01-01T15:18:04Z","pushed_at":"2014-09-28T23:48:40Z","git_url":"git://github.com/awynne/pi_garage_alert.git","ssh_url":"git@github.com:awynne/pi_garage_alert.git","clone_url":"https://github.com/awynne/pi_garage_alert.git","svn_url":"https://github.com/awynne/pi_garage_alert","homepage":"","size":215,"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:18:11Z"} +,{"id":"2489659501","type":"PullRequestEvent","actor":{"id":8042613,"login":"mts2","gravatar_id":"","url":"https://api.github.com/users/mts2","avatar_url":"https://avatars.githubusercontent.com/u/8042613?"},"repo":{"id":28688734,"name":"mts2/TestingThings","url":"https://api.github.com/repos/mts2/TestingThings"},"payload":{"action":"opened","number":1,"pull_request":{"url":"https://api.github.com/repos/mts2/TestingThings/pulls/1","id":26743906,"html_url":"https://github.com/mts2/TestingThings/pull/1","diff_url":"https://github.com/mts2/TestingThings/pull/1.diff","patch_url":"https://github.com/mts2/TestingThings/pull/1.patch","issue_url":"https://api.github.com/repos/mts2/TestingThings/issues/1","number":1,"state":"open","locked":false,"title":"Branch Commit","user":{"login":"mts2","id":8042613,"avatar_url":"https://avatars.githubusercontent.com/u/8042613?v=3","gravatar_id":"","url":"https://api.github.com/users/mts2","html_url":"https://github.com/mts2","followers_url":"https://api.github.com/users/mts2/followers","following_url":"https://api.github.com/users/mts2/following{/other_user}","gists_url":"https://api.github.com/users/mts2/gists{/gist_id}","starred_url":"https://api.github.com/users/mts2/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mts2/subscriptions","organizations_url":"https://api.github.com/users/mts2/orgs","repos_url":"https://api.github.com/users/mts2/repos","events_url":"https://api.github.com/users/mts2/events{/privacy}","received_events_url":"https://api.github.com/users/mts2/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:18:11Z","updated_at":"2015-01-01T15:18:11Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/mts2/TestingThings/pulls/1/commits","review_comments_url":"https://api.github.com/repos/mts2/TestingThings/pulls/1/comments","review_comment_url":"https://api.github.com/repos/mts2/TestingThings/pulls/comments/{number}","comments_url":"https://api.github.com/repos/mts2/TestingThings/issues/1/comments","statuses_url":"https://api.github.com/repos/mts2/TestingThings/statuses/d5d6ff647c315ee79f23cdb1166104a043fd048b","head":{"label":"mts2:newBranch","ref":"newBranch","sha":"d5d6ff647c315ee79f23cdb1166104a043fd048b","user":{"login":"mts2","id":8042613,"avatar_url":"https://avatars.githubusercontent.com/u/8042613?v=3","gravatar_id":"","url":"https://api.github.com/users/mts2","html_url":"https://github.com/mts2","followers_url":"https://api.github.com/users/mts2/followers","following_url":"https://api.github.com/users/mts2/following{/other_user}","gists_url":"https://api.github.com/users/mts2/gists{/gist_id}","starred_url":"https://api.github.com/users/mts2/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mts2/subscriptions","organizations_url":"https://api.github.com/users/mts2/orgs","repos_url":"https://api.github.com/users/mts2/repos","events_url":"https://api.github.com/users/mts2/events{/privacy}","received_events_url":"https://api.github.com/users/mts2/received_events","type":"User","site_admin":false},"repo":{"id":28688734,"name":"TestingThings","full_name":"mts2/TestingThings","owner":{"login":"mts2","id":8042613,"avatar_url":"https://avatars.githubusercontent.com/u/8042613?v=3","gravatar_id":"","url":"https://api.github.com/users/mts2","html_url":"https://github.com/mts2","followers_url":"https://api.github.com/users/mts2/followers","following_url":"https://api.github.com/users/mts2/following{/other_user}","gists_url":"https://api.github.com/users/mts2/gists{/gist_id}","starred_url":"https://api.github.com/users/mts2/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mts2/subscriptions","organizations_url":"https://api.github.com/users/mts2/orgs","repos_url":"https://api.github.com/users/mts2/repos","events_url":"https://api.github.com/users/mts2/events{/privacy}","received_events_url":"https://api.github.com/users/mts2/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mts2/TestingThings","description":"","fork":false,"url":"https://api.github.com/repos/mts2/TestingThings","forks_url":"https://api.github.com/repos/mts2/TestingThings/forks","keys_url":"https://api.github.com/repos/mts2/TestingThings/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mts2/TestingThings/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mts2/TestingThings/teams","hooks_url":"https://api.github.com/repos/mts2/TestingThings/hooks","issue_events_url":"https://api.github.com/repos/mts2/TestingThings/issues/events{/number}","events_url":"https://api.github.com/repos/mts2/TestingThings/events","assignees_url":"https://api.github.com/repos/mts2/TestingThings/assignees{/user}","branches_url":"https://api.github.com/repos/mts2/TestingThings/branches{/branch}","tags_url":"https://api.github.com/repos/mts2/TestingThings/tags","blobs_url":"https://api.github.com/repos/mts2/TestingThings/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mts2/TestingThings/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mts2/TestingThings/git/refs{/sha}","trees_url":"https://api.github.com/repos/mts2/TestingThings/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mts2/TestingThings/statuses/{sha}","languages_url":"https://api.github.com/repos/mts2/TestingThings/languages","stargazers_url":"https://api.github.com/repos/mts2/TestingThings/stargazers","contributors_url":"https://api.github.com/repos/mts2/TestingThings/contributors","subscribers_url":"https://api.github.com/repos/mts2/TestingThings/subscribers","subscription_url":"https://api.github.com/repos/mts2/TestingThings/subscription","commits_url":"https://api.github.com/repos/mts2/TestingThings/commits{/sha}","git_commits_url":"https://api.github.com/repos/mts2/TestingThings/git/commits{/sha}","comments_url":"https://api.github.com/repos/mts2/TestingThings/comments{/number}","issue_comment_url":"https://api.github.com/repos/mts2/TestingThings/issues/comments/{number}","contents_url":"https://api.github.com/repos/mts2/TestingThings/contents/{+path}","compare_url":"https://api.github.com/repos/mts2/TestingThings/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mts2/TestingThings/merges","archive_url":"https://api.github.com/repos/mts2/TestingThings/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mts2/TestingThings/downloads","issues_url":"https://api.github.com/repos/mts2/TestingThings/issues{/number}","pulls_url":"https://api.github.com/repos/mts2/TestingThings/pulls{/number}","milestones_url":"https://api.github.com/repos/mts2/TestingThings/milestones{/number}","notifications_url":"https://api.github.com/repos/mts2/TestingThings/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mts2/TestingThings/labels{/name}","releases_url":"https://api.github.com/repos/mts2/TestingThings/releases{/id}","created_at":"2015-01-01T15:07:45Z","updated_at":"2015-01-01T15:07:45Z","pushed_at":"2015-01-01T15:17:06Z","git_url":"git://github.com/mts2/TestingThings.git","ssh_url":"git@github.com:mts2/TestingThings.git","clone_url":"https://github.com/mts2/TestingThings.git","svn_url":"https://github.com/mts2/TestingThings","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"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":"mts2:master","ref":"master","sha":"dc28da2f6ad139a9e44e1ee7d28b9f7fa7ad0af5","user":{"login":"mts2","id":8042613,"avatar_url":"https://avatars.githubusercontent.com/u/8042613?v=3","gravatar_id":"","url":"https://api.github.com/users/mts2","html_url":"https://github.com/mts2","followers_url":"https://api.github.com/users/mts2/followers","following_url":"https://api.github.com/users/mts2/following{/other_user}","gists_url":"https://api.github.com/users/mts2/gists{/gist_id}","starred_url":"https://api.github.com/users/mts2/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mts2/subscriptions","organizations_url":"https://api.github.com/users/mts2/orgs","repos_url":"https://api.github.com/users/mts2/repos","events_url":"https://api.github.com/users/mts2/events{/privacy}","received_events_url":"https://api.github.com/users/mts2/received_events","type":"User","site_admin":false},"repo":{"id":28688734,"name":"TestingThings","full_name":"mts2/TestingThings","owner":{"login":"mts2","id":8042613,"avatar_url":"https://avatars.githubusercontent.com/u/8042613?v=3","gravatar_id":"","url":"https://api.github.com/users/mts2","html_url":"https://github.com/mts2","followers_url":"https://api.github.com/users/mts2/followers","following_url":"https://api.github.com/users/mts2/following{/other_user}","gists_url":"https://api.github.com/users/mts2/gists{/gist_id}","starred_url":"https://api.github.com/users/mts2/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mts2/subscriptions","organizations_url":"https://api.github.com/users/mts2/orgs","repos_url":"https://api.github.com/users/mts2/repos","events_url":"https://api.github.com/users/mts2/events{/privacy}","received_events_url":"https://api.github.com/users/mts2/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mts2/TestingThings","description":"","fork":false,"url":"https://api.github.com/repos/mts2/TestingThings","forks_url":"https://api.github.com/repos/mts2/TestingThings/forks","keys_url":"https://api.github.com/repos/mts2/TestingThings/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mts2/TestingThings/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mts2/TestingThings/teams","hooks_url":"https://api.github.com/repos/mts2/TestingThings/hooks","issue_events_url":"https://api.github.com/repos/mts2/TestingThings/issues/events{/number}","events_url":"https://api.github.com/repos/mts2/TestingThings/events","assignees_url":"https://api.github.com/repos/mts2/TestingThings/assignees{/user}","branches_url":"https://api.github.com/repos/mts2/TestingThings/branches{/branch}","tags_url":"https://api.github.com/repos/mts2/TestingThings/tags","blobs_url":"https://api.github.com/repos/mts2/TestingThings/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mts2/TestingThings/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mts2/TestingThings/git/refs{/sha}","trees_url":"https://api.github.com/repos/mts2/TestingThings/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mts2/TestingThings/statuses/{sha}","languages_url":"https://api.github.com/repos/mts2/TestingThings/languages","stargazers_url":"https://api.github.com/repos/mts2/TestingThings/stargazers","contributors_url":"https://api.github.com/repos/mts2/TestingThings/contributors","subscribers_url":"https://api.github.com/repos/mts2/TestingThings/subscribers","subscription_url":"https://api.github.com/repos/mts2/TestingThings/subscription","commits_url":"https://api.github.com/repos/mts2/TestingThings/commits{/sha}","git_commits_url":"https://api.github.com/repos/mts2/TestingThings/git/commits{/sha}","comments_url":"https://api.github.com/repos/mts2/TestingThings/comments{/number}","issue_comment_url":"https://api.github.com/repos/mts2/TestingThings/issues/comments/{number}","contents_url":"https://api.github.com/repos/mts2/TestingThings/contents/{+path}","compare_url":"https://api.github.com/repos/mts2/TestingThings/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mts2/TestingThings/merges","archive_url":"https://api.github.com/repos/mts2/TestingThings/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mts2/TestingThings/downloads","issues_url":"https://api.github.com/repos/mts2/TestingThings/issues{/number}","pulls_url":"https://api.github.com/repos/mts2/TestingThings/pulls{/number}","milestones_url":"https://api.github.com/repos/mts2/TestingThings/milestones{/number}","notifications_url":"https://api.github.com/repos/mts2/TestingThings/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mts2/TestingThings/labels{/name}","releases_url":"https://api.github.com/repos/mts2/TestingThings/releases{/id}","created_at":"2015-01-01T15:07:45Z","updated_at":"2015-01-01T15:07:45Z","pushed_at":"2015-01-01T15:17:06Z","git_url":"git://github.com/mts2/TestingThings.git","ssh_url":"git@github.com:mts2/TestingThings.git","clone_url":"https://github.com/mts2/TestingThings.git","svn_url":"https://github.com/mts2/TestingThings","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"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/mts2/TestingThings/pulls/1"},"html":{"href":"https://github.com/mts2/TestingThings/pull/1"},"issue":{"href":"https://api.github.com/repos/mts2/TestingThings/issues/1"},"comments":{"href":"https://api.github.com/repos/mts2/TestingThings/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/mts2/TestingThings/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/mts2/TestingThings/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/mts2/TestingThings/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/mts2/TestingThings/statuses/d5d6ff647c315ee79f23cdb1166104a043fd048b"}},"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:18:11Z"} +,{"id":"2489659503","type":"PushEvent","actor":{"id":228649,"login":"uribo","gravatar_id":"","url":"https://api.github.com/users/uribo","avatar_url":"https://avatars.githubusercontent.com/u/228649?"},"repo":{"id":27820457,"name":"uribo/motivator","url":"https://api.github.com/repos/uribo/motivator"},"payload":{"push_id":536867774,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"755ea2cf6d1651b1117ece30954612f01f090997","before":"9a15bb173980760d7dea46fa998ba8eaf65f37c9","commits":[{"sha":"4baaab84cdd07a419bbee7217f782860e3b805a4","author":{"email":"dbc806676ad0dc84219dee774101a0c2c1165c6a@gmail.com","name":"uribo"},"message":"[change]fix to 0.1.1","distinct":true,"url":"https://api.github.com/repos/uribo/motivator/commits/4baaab84cdd07a419bbee7217f782860e3b805a4"},{"sha":"755ea2cf6d1651b1117ece30954612f01f090997","author":{"email":"dbc806676ad0dc84219dee774101a0c2c1165c6a@gmail.com","name":"uribo"},"message":"[change]header class","distinct":true,"url":"https://api.github.com/repos/uribo/motivator/commits/755ea2cf6d1651b1117ece30954612f01f090997"}]},"public":true,"created_at":"2015-01-01T15:18:12Z"} +,{"id":"2489659506","type":"CreateEvent","actor":{"id":193686,"login":"itswindtw","gravatar_id":"","url":"https://api.github.com/users/itswindtw","avatar_url":"https://avatars.githubusercontent.com/u/193686?"},"repo":{"id":28688937,"name":"itswindtw/restless-obscure","url":"https://api.github.com/repos/itswindtw/restless-obscure"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:12Z"} +,{"id":"2489659509","type":"PushEvent","actor":{"id":1052218,"login":"grro","gravatar_id":"","url":"https://api.github.com/users/grro","avatar_url":"https://avatars.githubusercontent.com/u/1052218?"},"repo":{"id":28081244,"name":"1and1/Troilus","url":"https://api.github.com/repos/1and1/Troilus"},"payload":{"push_id":536867778,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2c1ff5d1b8f7bb8f013c23e31dd430cc42c4975d","before":"b301bb38486c99409d7a450afec9f8ca080ddd44","commits":[{"sha":"2c1ff5d1b8f7bb8f013c23e31dd430cc42c4975d","author":{"email":"6e2d7952b045bf5b23a077805bed0560c98b29ad@LWKA-JH5WKX1.united.domain","name":"unknown"},"message":"internal refactoring","distinct":true,"url":"https://api.github.com/repos/1and1/Troilus/commits/2c1ff5d1b8f7bb8f013c23e31dd430cc42c4975d"}]},"public":true,"created_at":"2015-01-01T15:18:12Z","org":{"id":743115,"login":"1and1","gravatar_id":"","url":"https://api.github.com/orgs/1and1","avatar_url":"https://avatars.githubusercontent.com/u/743115?"}} +,{"id":"2489659510","type":"ForkEvent","actor":{"id":10364860,"login":"ibrahimarslan66","gravatar_id":"","url":"https://api.github.com/users/ibrahimarslan66","avatar_url":"https://avatars.githubusercontent.com/u/10364860?"},"repo":{"id":1066214,"name":"philipbeel/contactable","url":"https://api.github.com/repos/philipbeel/contactable"},"payload":{"forkee":{"id":28688938,"name":"contactable","full_name":"ibrahimarslan66/contactable","owner":{"login":"ibrahimarslan66","id":10364860,"avatar_url":"https://avatars.githubusercontent.com/u/10364860?v=3","gravatar_id":"","url":"https://api.github.com/users/ibrahimarslan66","html_url":"https://github.com/ibrahimarslan66","followers_url":"https://api.github.com/users/ibrahimarslan66/followers","following_url":"https://api.github.com/users/ibrahimarslan66/following{/other_user}","gists_url":"https://api.github.com/users/ibrahimarslan66/gists{/gist_id}","starred_url":"https://api.github.com/users/ibrahimarslan66/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ibrahimarslan66/subscriptions","organizations_url":"https://api.github.com/users/ibrahimarslan66/orgs","repos_url":"https://api.github.com/users/ibrahimarslan66/repos","events_url":"https://api.github.com/users/ibrahimarslan66/events{/privacy}","received_events_url":"https://api.github.com/users/ibrahimarslan66/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ibrahimarslan66/contactable","description":"A jQuery and PHP slide out contact form","fork":true,"url":"https://api.github.com/repos/ibrahimarslan66/contactable","forks_url":"https://api.github.com/repos/ibrahimarslan66/contactable/forks","keys_url":"https://api.github.com/repos/ibrahimarslan66/contactable/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ibrahimarslan66/contactable/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ibrahimarslan66/contactable/teams","hooks_url":"https://api.github.com/repos/ibrahimarslan66/contactable/hooks","issue_events_url":"https://api.github.com/repos/ibrahimarslan66/contactable/issues/events{/number}","events_url":"https://api.github.com/repos/ibrahimarslan66/contactable/events","assignees_url":"https://api.github.com/repos/ibrahimarslan66/contactable/assignees{/user}","branches_url":"https://api.github.com/repos/ibrahimarslan66/contactable/branches{/branch}","tags_url":"https://api.github.com/repos/ibrahimarslan66/contactable/tags","blobs_url":"https://api.github.com/repos/ibrahimarslan66/contactable/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ibrahimarslan66/contactable/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ibrahimarslan66/contactable/git/refs{/sha}","trees_url":"https://api.github.com/repos/ibrahimarslan66/contactable/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ibrahimarslan66/contactable/statuses/{sha}","languages_url":"https://api.github.com/repos/ibrahimarslan66/contactable/languages","stargazers_url":"https://api.github.com/repos/ibrahimarslan66/contactable/stargazers","contributors_url":"https://api.github.com/repos/ibrahimarslan66/contactable/contributors","subscribers_url":"https://api.github.com/repos/ibrahimarslan66/contactable/subscribers","subscription_url":"https://api.github.com/repos/ibrahimarslan66/contactable/subscription","commits_url":"https://api.github.com/repos/ibrahimarslan66/contactable/commits{/sha}","git_commits_url":"https://api.github.com/repos/ibrahimarslan66/contactable/git/commits{/sha}","comments_url":"https://api.github.com/repos/ibrahimarslan66/contactable/comments{/number}","issue_comment_url":"https://api.github.com/repos/ibrahimarslan66/contactable/issues/comments/{number}","contents_url":"https://api.github.com/repos/ibrahimarslan66/contactable/contents/{+path}","compare_url":"https://api.github.com/repos/ibrahimarslan66/contactable/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ibrahimarslan66/contactable/merges","archive_url":"https://api.github.com/repos/ibrahimarslan66/contactable/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ibrahimarslan66/contactable/downloads","issues_url":"https://api.github.com/repos/ibrahimarslan66/contactable/issues{/number}","pulls_url":"https://api.github.com/repos/ibrahimarslan66/contactable/pulls{/number}","milestones_url":"https://api.github.com/repos/ibrahimarslan66/contactable/milestones{/number}","notifications_url":"https://api.github.com/repos/ibrahimarslan66/contactable/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ibrahimarslan66/contactable/labels{/name}","releases_url":"https://api.github.com/repos/ibrahimarslan66/contactable/releases{/id}","created_at":"2015-01-01T15:18:12Z","updated_at":"2014-12-22T23:02:41Z","pushed_at":"2014-08-30T20:16:48Z","git_url":"git://github.com/ibrahimarslan66/contactable.git","ssh_url":"git@github.com:ibrahimarslan66/contactable.git","clone_url":"https://github.com/ibrahimarslan66/contactable.git","svn_url":"https://github.com/ibrahimarslan66/contactable","homepage":"https://github.com/philipbeel/contactable","size":364,"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:18:12Z"} +,{"id":"2489659517","type":"WatchEvent","actor":{"id":65101,"login":"jpeckham","gravatar_id":"","url":"https://api.github.com/users/jpeckham","avatar_url":"https://avatars.githubusercontent.com/u/65101?"},"repo":{"id":2649361,"name":"sylvanaar/IDLua","url":"https://api.github.com/repos/sylvanaar/IDLua"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:18:13Z"} +,{"id":"2489659518","type":"PushEvent","actor":{"id":2446182,"login":"warmsea","gravatar_id":"","url":"https://api.github.com/users/warmsea","avatar_url":"https://avatars.githubusercontent.com/u/2446182?"},"repo":{"id":24258897,"name":"warmsea/node-nos-sdk","url":"https://api.github.com/repos/warmsea/node-nos-sdk"},"payload":{"push_id":536867781,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9912010f357c30ea4ed900f92f858c44abd8d33b","before":"813780511615aacc3bf296b6409ab08251674367","commits":[{"sha":"9912010f357c30ea4ed900f92f858c44abd8d33b","author":{"email":"a0f1490a20d0211c997b44bc357e1972deab8ae3@warmsea.net","name":"Su Su"},"message":"Make \"rfr\" bundled dependency.","distinct":true,"url":"https://api.github.com/repos/warmsea/node-nos-sdk/commits/9912010f357c30ea4ed900f92f858c44abd8d33b"}]},"public":true,"created_at":"2015-01-01T15:18:13Z"} +,{"id":"2489659520","type":"CreateEvent","actor":{"id":7887230,"login":"serhiybilous","gravatar_id":"","url":"https://api.github.com/users/serhiybilous","avatar_url":"https://avatars.githubusercontent.com/u/7887230?"},"repo":{"id":28688939,"name":"serhiybilous/content","url":"https://api.github.com/repos/serhiybilous/content"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Content","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:14Z"} +,{"id":"2489659522","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":21327694,"name":"hex7c0/top-vhost","url":"https://api.github.com/repos/hex7c0/top-vhost"},"payload":{"push_id":536867782,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ac5b07f4f2bb32015ec4838cb7a43756827eace4","before":"ff58369958a32a8ef90374cd5a088ffc6890fd92","commits":[{"sha":"ac5b07f4f2bb32015ec4838cb7a43756827eace4","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"1.7.18","distinct":true,"url":"https://api.github.com/repos/hex7c0/top-vhost/commits/ac5b07f4f2bb32015ec4838cb7a43756827eace4"}]},"public":true,"created_at":"2015-01-01T15:18:14Z"} +,{"id":"2489659524","type":"PushEvent","actor":{"id":10226487,"login":"WJSabey","gravatar_id":"","url":"https://api.github.com/users/WJSabey","avatar_url":"https://avatars.githubusercontent.com/u/10226487?"},"repo":{"id":28688326,"name":"WJSabey/Corruption-of-Champions","url":"https://api.github.com/repos/WJSabey/Corruption-of-Champions"},"payload":{"push_id":536867783,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cf45493079a91bbc1a5045ad9623687dd6936197","before":"7c69e187b9d888b77151b72a784d2d9b907b8fa2","commits":[{"sha":"cf45493079a91bbc1a5045ad9623687dd6936197","author":{"email":"1149b74a13a1068bbf481a2ebb3d35cb5e4ccc0e@gmail.com","name":"William Sabey"},"message":"Fix for case where player enters Owca pit at 2000","distinct":true,"url":"https://api.github.com/repos/WJSabey/Corruption-of-Champions/commits/cf45493079a91bbc1a5045ad9623687dd6936197"}]},"public":true,"created_at":"2015-01-01T15:18:14Z"} +,{"id":"2489659525","type":"PushEvent","actor":{"id":511294,"login":"lichuan","gravatar_id":"","url":"https://api.github.com/users/lichuan","avatar_url":"https://avatars.githubusercontent.com/u/511294?"},"repo":{"id":28216990,"name":"lichuan/docker","url":"https://api.github.com/repos/lichuan/docker"},"payload":{"push_id":536867784,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9ae04f4b0ae4a1da4acd1dc22a0d179511c19d9f","before":"3b90a20f9d2c7c6a123e09cfb9161f039ce065b1","commits":[{"sha":"9ae04f4b0ae4a1da4acd1dc22a0d179511c19d9f","author":{"email":"5a705466a5cb36d1e25afbd00f72d72461df6c5c@qq.com","name":"lichuan"},"message":".","distinct":true,"url":"https://api.github.com/repos/lichuan/docker/commits/9ae04f4b0ae4a1da4acd1dc22a0d179511c19d9f"}]},"public":true,"created_at":"2015-01-01T15:18:14Z"} +,{"id":"2489659526","type":"PushEvent","actor":{"id":1430328,"login":"geevi","gravatar_id":"","url":"https://api.github.com/users/geevi","avatar_url":"https://avatars.githubusercontent.com/u/1430328?"},"repo":{"id":27860137,"name":"geevi/geevi.github.io","url":"https://api.github.com/repos/geevi/geevi.github.io"},"payload":{"push_id":536867785,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a3464ec171a711abab10e339b44fb7e0059859b7","before":"aac0d11a1180e700ca1fa60dada33857ff6d171e","commits":[{"sha":"a3464ec171a711abab10e339b44fb7e0059859b7","author":{"email":"1ec864de849417f43b76cec5b6a73074a27faeb5@outlook.com","name":"Girish Varma"},"message":"Update index.html","distinct":true,"url":"https://api.github.com/repos/geevi/geevi.github.io/commits/a3464ec171a711abab10e339b44fb7e0059859b7"}]},"public":true,"created_at":"2015-01-01T15:18:14Z"} +,{"id":"2489659528","type":"CreateEvent","actor":{"id":2971225,"login":"sebastienadam","gravatar_id":"","url":"https://api.github.com/users/sebastienadam","avatar_url":"https://avatars.githubusercontent.com/u/2971225?"},"repo":{"id":28688932,"name":"sebastienadam/ephec_csharp_oo","url":"https://api.github.com/repos/sebastienadam/ephec_csharp_oo"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Exercices réalisé lors du cours de C# OO en 2014-2015","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:15Z"} +,{"id":"2489659529","type":"PullRequestEvent","actor":{"id":1013372,"login":"cweric","gravatar_id":"","url":"https://api.github.com/users/cweric","avatar_url":"https://avatars.githubusercontent.com/u/1013372?"},"repo":{"id":2234102,"name":"bcit-ci/CodeIgniter","url":"https://api.github.com/repos/bcit-ci/CodeIgniter"},"payload":{"action":"opened","number":3452,"pull_request":{"url":"https://api.github.com/repos/bcit-ci/CodeIgniter/pulls/3452","id":26743907,"html_url":"https://github.com/bcit-ci/CodeIgniter/pull/3452","diff_url":"https://github.com/bcit-ci/CodeIgniter/pull/3452.diff","patch_url":"https://github.com/bcit-ci/CodeIgniter/pull/3452.patch","issue_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/issues/3452","number":3452,"state":"open","locked":false,"title":"Update Cache_memcached.php typo error","user":{"login":"cweric","id":1013372,"avatar_url":"https://avatars.githubusercontent.com/u/1013372?v=3","gravatar_id":"","url":"https://api.github.com/users/cweric","html_url":"https://github.com/cweric","followers_url":"https://api.github.com/users/cweric/followers","following_url":"https://api.github.com/users/cweric/following{/other_user}","gists_url":"https://api.github.com/users/cweric/gists{/gist_id}","starred_url":"https://api.github.com/users/cweric/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cweric/subscriptions","organizations_url":"https://api.github.com/users/cweric/orgs","repos_url":"https://api.github.com/users/cweric/repos","events_url":"https://api.github.com/users/cweric/events{/privacy}","received_events_url":"https://api.github.com/users/cweric/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:18:14Z","updated_at":"2015-01-01T15:18:14Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/pulls/3452/commits","review_comments_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/pulls/3452/comments","review_comment_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/pulls/comments/{number}","comments_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/issues/3452/comments","statuses_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/statuses/b9149c4aeb3119749ae662534b6f327c4bd301a7","head":{"label":"cweric:patch-1","ref":"patch-1","sha":"b9149c4aeb3119749ae662534b6f327c4bd301a7","user":{"login":"cweric","id":1013372,"avatar_url":"https://avatars.githubusercontent.com/u/1013372?v=3","gravatar_id":"","url":"https://api.github.com/users/cweric","html_url":"https://github.com/cweric","followers_url":"https://api.github.com/users/cweric/followers","following_url":"https://api.github.com/users/cweric/following{/other_user}","gists_url":"https://api.github.com/users/cweric/gists{/gist_id}","starred_url":"https://api.github.com/users/cweric/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cweric/subscriptions","organizations_url":"https://api.github.com/users/cweric/orgs","repos_url":"https://api.github.com/users/cweric/repos","events_url":"https://api.github.com/users/cweric/events{/privacy}","received_events_url":"https://api.github.com/users/cweric/received_events","type":"User","site_admin":false},"repo":{"id":8902398,"name":"CodeIgniter","full_name":"cweric/CodeIgniter","owner":{"login":"cweric","id":1013372,"avatar_url":"https://avatars.githubusercontent.com/u/1013372?v=3","gravatar_id":"","url":"https://api.github.com/users/cweric","html_url":"https://github.com/cweric","followers_url":"https://api.github.com/users/cweric/followers","following_url":"https://api.github.com/users/cweric/following{/other_user}","gists_url":"https://api.github.com/users/cweric/gists{/gist_id}","starred_url":"https://api.github.com/users/cweric/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cweric/subscriptions","organizations_url":"https://api.github.com/users/cweric/orgs","repos_url":"https://api.github.com/users/cweric/repos","events_url":"https://api.github.com/users/cweric/events{/privacy}","received_events_url":"https://api.github.com/users/cweric/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/cweric/CodeIgniter","description":"EllisLab's Open Source PHP Framework","fork":true,"url":"https://api.github.com/repos/cweric/CodeIgniter","forks_url":"https://api.github.com/repos/cweric/CodeIgniter/forks","keys_url":"https://api.github.com/repos/cweric/CodeIgniter/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cweric/CodeIgniter/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cweric/CodeIgniter/teams","hooks_url":"https://api.github.com/repos/cweric/CodeIgniter/hooks","issue_events_url":"https://api.github.com/repos/cweric/CodeIgniter/issues/events{/number}","events_url":"https://api.github.com/repos/cweric/CodeIgniter/events","assignees_url":"https://api.github.com/repos/cweric/CodeIgniter/assignees{/user}","branches_url":"https://api.github.com/repos/cweric/CodeIgniter/branches{/branch}","tags_url":"https://api.github.com/repos/cweric/CodeIgniter/tags","blobs_url":"https://api.github.com/repos/cweric/CodeIgniter/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cweric/CodeIgniter/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cweric/CodeIgniter/git/refs{/sha}","trees_url":"https://api.github.com/repos/cweric/CodeIgniter/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cweric/CodeIgniter/statuses/{sha}","languages_url":"https://api.github.com/repos/cweric/CodeIgniter/languages","stargazers_url":"https://api.github.com/repos/cweric/CodeIgniter/stargazers","contributors_url":"https://api.github.com/repos/cweric/CodeIgniter/contributors","subscribers_url":"https://api.github.com/repos/cweric/CodeIgniter/subscribers","subscription_url":"https://api.github.com/repos/cweric/CodeIgniter/subscription","commits_url":"https://api.github.com/repos/cweric/CodeIgniter/commits{/sha}","git_commits_url":"https://api.github.com/repos/cweric/CodeIgniter/git/commits{/sha}","comments_url":"https://api.github.com/repos/cweric/CodeIgniter/comments{/number}","issue_comment_url":"https://api.github.com/repos/cweric/CodeIgniter/issues/comments/{number}","contents_url":"https://api.github.com/repos/cweric/CodeIgniter/contents/{+path}","compare_url":"https://api.github.com/repos/cweric/CodeIgniter/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cweric/CodeIgniter/merges","archive_url":"https://api.github.com/repos/cweric/CodeIgniter/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cweric/CodeIgniter/downloads","issues_url":"https://api.github.com/repos/cweric/CodeIgniter/issues{/number}","pulls_url":"https://api.github.com/repos/cweric/CodeIgniter/pulls{/number}","milestones_url":"https://api.github.com/repos/cweric/CodeIgniter/milestones{/number}","notifications_url":"https://api.github.com/repos/cweric/CodeIgniter/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cweric/CodeIgniter/labels{/name}","releases_url":"https://api.github.com/repos/cweric/CodeIgniter/releases{/id}","created_at":"2013-03-20T11:15:09Z","updated_at":"2014-10-06T17:38:09Z","pushed_at":"2015-01-01T15:17:02Z","git_url":"git://github.com/cweric/CodeIgniter.git","ssh_url":"git@github.com:cweric/CodeIgniter.git","clone_url":"https://github.com/cweric/CodeIgniter.git","svn_url":"https://github.com/cweric/CodeIgniter","homepage":"http://codeigniter.com/","size":34361,"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":"develop"}},"base":{"label":"bcit-ci:develop","ref":"develop","sha":"b0357338d3c566f11397010f803189f42d901522","user":{"login":"bcit-ci","id":8863432,"avatar_url":"https://avatars.githubusercontent.com/u/8863432?v=3","gravatar_id":"","url":"https://api.github.com/users/bcit-ci","html_url":"https://github.com/bcit-ci","followers_url":"https://api.github.com/users/bcit-ci/followers","following_url":"https://api.github.com/users/bcit-ci/following{/other_user}","gists_url":"https://api.github.com/users/bcit-ci/gists{/gist_id}","starred_url":"https://api.github.com/users/bcit-ci/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bcit-ci/subscriptions","organizations_url":"https://api.github.com/users/bcit-ci/orgs","repos_url":"https://api.github.com/users/bcit-ci/repos","events_url":"https://api.github.com/users/bcit-ci/events{/privacy}","received_events_url":"https://api.github.com/users/bcit-ci/received_events","type":"Organization","site_admin":false},"repo":{"id":2234102,"name":"CodeIgniter","full_name":"bcit-ci/CodeIgniter","owner":{"login":"bcit-ci","id":8863432,"avatar_url":"https://avatars.githubusercontent.com/u/8863432?v=3","gravatar_id":"","url":"https://api.github.com/users/bcit-ci","html_url":"https://github.com/bcit-ci","followers_url":"https://api.github.com/users/bcit-ci/followers","following_url":"https://api.github.com/users/bcit-ci/following{/other_user}","gists_url":"https://api.github.com/users/bcit-ci/gists{/gist_id}","starred_url":"https://api.github.com/users/bcit-ci/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bcit-ci/subscriptions","organizations_url":"https://api.github.com/users/bcit-ci/orgs","repos_url":"https://api.github.com/users/bcit-ci/repos","events_url":"https://api.github.com/users/bcit-ci/events{/privacy}","received_events_url":"https://api.github.com/users/bcit-ci/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/bcit-ci/CodeIgniter","description":"Open Source PHP Framework (originally from EllisLab)","fork":false,"url":"https://api.github.com/repos/bcit-ci/CodeIgniter","forks_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/forks","keys_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/keys{/key_id}","collaborators_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/teams","hooks_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/hooks","issue_events_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/issues/events{/number}","events_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/events","assignees_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/assignees{/user}","branches_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/branches{/branch}","tags_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/tags","blobs_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/git/refs{/sha}","trees_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/git/trees{/sha}","statuses_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/statuses/{sha}","languages_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/languages","stargazers_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/stargazers","contributors_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/contributors","subscribers_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/subscribers","subscription_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/subscription","commits_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/commits{/sha}","git_commits_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/git/commits{/sha}","comments_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/comments{/number}","issue_comment_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/issues/comments/{number}","contents_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/contents/{+path}","compare_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/compare/{base}...{head}","merges_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/merges","archive_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/downloads","issues_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/issues{/number}","pulls_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/pulls{/number}","milestones_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/milestones{/number}","notifications_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/labels{/name}","releases_url":"https://api.github.com/repos/bcit-ci/CodeIgniter/releases{/id}","created_at":"2011-08-19T13:34:00Z","updated_at":"2015-01-01T13:22:59Z","pushed_at":"2014-12-25T00:06:12Z","git_url":"git://github.com/bcit-ci/CodeIgniter.git","ssh_url":"git@github.com:bcit-ci/CodeIgniter.git","clone_url":"https://github.com/bcit-ci/CodeIgniter.git","svn_url":"https://github.com/bcit-ci/CodeIgniter","homepage":"http://codeigniter.com/","size":64950,"stargazers_count":8851,"watchers_count":8851,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":4572,"mirror_url":null,"open_issues_count":70,"forks":4572,"open_issues":70,"watchers":8851,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/bcit-ci/CodeIgniter/pulls/3452"},"html":{"href":"https://github.com/bcit-ci/CodeIgniter/pull/3452"},"issue":{"href":"https://api.github.com/repos/bcit-ci/CodeIgniter/issues/3452"},"comments":{"href":"https://api.github.com/repos/bcit-ci/CodeIgniter/issues/3452/comments"},"review_comments":{"href":"https://api.github.com/repos/bcit-ci/CodeIgniter/pulls/3452/comments"},"review_comment":{"href":"https://api.github.com/repos/bcit-ci/CodeIgniter/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/bcit-ci/CodeIgniter/pulls/3452/commits"},"statuses":{"href":"https://api.github.com/repos/bcit-ci/CodeIgniter/statuses/b9149c4aeb3119749ae662534b6f327c4bd301a7"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":2,"deletions":2,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:18:15Z","org":{"id":8863432,"login":"bcit-ci","gravatar_id":"","url":"https://api.github.com/orgs/bcit-ci","avatar_url":"https://avatars.githubusercontent.com/u/8863432?"}} +,{"id":"2489659531","type":"WatchEvent","actor":{"id":409490,"login":"aokon","gravatar_id":"","url":"https://api.github.com/users/aokon","avatar_url":"https://avatars.githubusercontent.com/u/409490?"},"repo":{"id":23366828,"name":"tenderlove/the_metal","url":"https://api.github.com/repos/tenderlove/the_metal"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:18:15Z"} +,{"id":"2489659532","type":"PushEvent","actor":{"id":5448134,"login":"t94j0","gravatar_id":"","url":"https://api.github.com/users/t94j0","avatar_url":"https://avatars.githubusercontent.com/u/5448134?"},"repo":{"id":28675559,"name":"t94j0/javascriptGalaga","url":"https://api.github.com/repos/t94j0/javascriptGalaga"},"payload":{"push_id":536867789,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"caca68e7845b0e28f410f2621df7fc373a545013","before":"508125d55b0206f72303ded67ed4a3c863dac1af","commits":[{"sha":"caca68e7845b0e28f410f2621df7fc373a545013","author":{"email":"ea2917724545b5c02f85f1c2ec66a97f1e597879@gmail.com","name":"t94j0"},"message":"Adding enemies","distinct":true,"url":"https://api.github.com/repos/t94j0/javascriptGalaga/commits/caca68e7845b0e28f410f2621df7fc373a545013"}]},"public":true,"created_at":"2015-01-01T15:18:15Z"} +,{"id":"2489659533","type":"WatchEvent","actor":{"id":6266887,"login":"Onatcer","gravatar_id":"","url":"https://api.github.com/users/Onatcer","avatar_url":"https://avatars.githubusercontent.com/u/6266887?"},"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:18:15Z"} +,{"id":"2489659535","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":536867790,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1b00330071aeb300c4c72d6cd7c183e343367379","before":"4facd5246e793a5f37bd2b6fe5681139bcf57193","commits":[{"sha":"1b00330071aeb300c4c72d6cd7c183e343367379","author":{"email":"be51eeb01ab0ddac52571dd736dd0fd5d13a6a37@gmail.com","name":"Gudakesh Ankur Vatsa"},"message":"Create Palindrome.cpp\n\nCommitting only to ensure cppcode folder is saved as well","distinct":true,"url":"https://api.github.com/repos/vatsaaa/mycodesnips/commits/1b00330071aeb300c4c72d6cd7c183e343367379"}]},"public":true,"created_at":"2015-01-01T15:18:16Z"} +,{"id":"2489659536","type":"PullRequestReviewCommentEvent","actor":{"id":1428812,"login":"iliapolo","gravatar_id":"","url":"https://api.github.com/users/iliapolo","avatar_url":"https://avatars.githubusercontent.com/u/1428812?"},"repo":{"id":18326574,"name":"cloudify-cosmo/cloudify-manager","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/pulls/comments/22400158","id":22400158,"diff_hunk":"@@ -1,287 +1,348 @@\n ##################################################################################\n # Base type definitions\n ##################################################################################\n+\n node_types:\n- # base type for provided cloudify types\n- cloudify.nodes.Root:\n- interfaces:\n- cloudify.interfaces.lifecycle:\n- create: {}\n- configure: {}\n- start: {}\n- stop: {}\n- delete: {}\n- cloudify.interfaces.validation:\n- creation: {}\n- deletion: {}\n- cloudify.interfaces.monitoring:\n- start: {}\n- stop: {}\n-\n- # A tier in a topology\n- cloudify.nodes.Tier:\n- derived_from: cloudify.nodes.Root\n-\n- # A host (physical / virtual or LXC) in a topology\n- cloudify.nodes.Compute:\n- derived_from: cloudify.nodes.Root\n- interfaces:\n- cloudify.interfaces.worker_installer:\n- install:\n- implementation: agent_installer.worker_installer.tasks.install\n- inputs: {}\n- start:\n- implementation: agent_installer.worker_installer.tasks.start\n- inputs: {}\n- stop:\n- implementation: agent_installer.worker_installer.tasks.stop\n- inputs: {}\n- uninstall:\n- implementation: agent_installer.worker_installer.tasks.uninstall\n- inputs: {}\n- restart:\n- implementation: agent_installer.worker_installer.tasks.restart\n- inputs: {}\n- cloudify.interfaces.plugin_installer:\n- install:\n- implementation: plugin_installer.plugin_installer.tasks.install\n- inputs: {}\n- cloudify.interfaces.host:\n- get_state: {}\n- cloudify.interfaces.monitoring_agent:\n- install: {}\n- start: {}\n- stop: {}\n- uninstall: {}\n- properties:\n- install_agent:\n- default: true\n- cloudify_agent:\n- default: {}\n- ip:\n- default: ''\n-\n- # A Linux container with or without docker\n- cloudify.nodes.Container:\n- derived_from: cloudify.nodes.Compute\n-\n- # A storage volume in a topology\n- cloudify.nodes.Volume:\n- derived_from: cloudify.nodes.Root\n-\n- # A storage Container (Object Store segment)\n- cloudify.nodes.ObjectStorage:\n- derived_from: cloudify.nodes.Root\n-\n- # An isolated virtual layer 2 domain or a logical / virtual switch\n- cloudify.nodes.Network:\n- derived_from: cloudify.nodes.Root\n-\n- # An isolated virtual layer 3 subnet with IP range\n- cloudify.nodes.Subnet:\n- derived_from: cloudify.nodes.Root\n-\n- cloudify.nodes.Port:\n- derived_from: cloudify.nodes.Root\n-\n- # A network router\n- cloudify.nodes.Router:\n- derived_from: cloudify.nodes.Root\n-\n- # A virtual Load Balancer\n- cloudify.nodes.LoadBalancer:\n- derived_from: cloudify.nodes.Root\n-\n- # A virtual floating IP\n- cloudify.nodes.VirtualIP:\n- derived_from: cloudify.nodes.Root\n-\n- # A security group\n- cloudify.nodes.SecurityGroup:\n- derived_from: cloudify.nodes.Root\n-\n- # A middleware component in a topology\n- cloudify.nodes.SoftwareComponent:\n- derived_from: cloudify.nodes.Root\n-\n- cloudify.nodes.DBMS:\n- derived_from: cloudify.nodes.SoftwareComponent\n-\n- cloudify.nodes.Database:\n- derived_from: cloudify.nodes.Root\n-\n- cloudify.nodes.WebServer:\n- derived_from: cloudify.nodes.SoftwareComponent\n- properties:\n- port:\n- default: 80\n-\n- cloudify.nodes.ApplicationServer:\n- derived_from: cloudify.nodes.SoftwareComponent\n-\n- cloudify.nodes.MessageBusServer:\n- derived_from: cloudify.nodes.SoftwareComponent\n-\n- # An application artifact to deploy\n- cloudify.nodes.ApplicationModule:\n- derived_from: cloudify.nodes.Root\n-\n- # A type for a Cloudify Manager, to be used in manager blueprints\n- cloudify.nodes.CloudifyManager:\n- derived_from: cloudify.nodes.SoftwareComponent\n- properties:\n- cloudify:\n- description: >\n- Configuration for Cloudify Manager\n- default:\n- resources_prefix: ''\n-\n- cloudify_agent:\n- min_workers: 2\n- max_workers: 5\n- remote_execution_port: 22\n- user: ubuntu\n-\n- workflows:\n- task_retries: -1 # this means forever\n- task_retry_interval: 30\n-\n- policy_engine:\n- start_timeout: 30\n- cloudify_packages:\n- description: >\n- Links to Cloudify packages to be installed on the manager\n \n+ # base type for provided cloudify types\n+ cloudify.nodes.Root:\n+ interfaces:\n+ cloudify.interfaces.lifecycle:\n+ create: {}\n+ configure: {}\n+ start: {}\n+ stop: {}\n+ delete: {}\n+ cloudify.interfaces.validation:\n+ creation: {}\n+ deletion: {}\n+ cloudify.interfaces.monitoring:\n+ start: {}\n+ stop: {}\n+\n+ # A tier in a topology\n+ cloudify.nodes.Tier:\n+ derived_from: cloudify.nodes.Root\n+\n+ # A host (physical / virtual or LXC) in a topology\n+ cloudify.nodes.Compute:\n+ derived_from: cloudify.nodes.Root\n+ properties:\n+ install_agent:\n+ default: true\n+ cloudify_agent:\n+ default: {}\n+ ip:\n+ default: ''\n+ interfaces:\n+ cloudify.interfaces.worker_installer:\n+ install: agent_installer.worker_installer.tasks.install\n+ start: agent_installer.worker_installer.tasks.start\n+ stop: agent_installer.worker_installer.tasks.stop\n+ uninstall: agent_installer.worker_installer.tasks.uninstall\n+ restart: agent_installer.worker_installer.tasks.restart\n+ cloudify.interfaces.plugin_installer:\n+ install: plugin_installer.plugin_installer.tasks.install\n+ cloudify.interfaces.host:\n+ get_state: {}\n+ cloudify.interfaces.monitoring_agent:\n+ install: {}\n+ start: {}\n+ stop: {}\n+ uninstall: {}\n+\n+ # A Linux container with or without docker\n+ cloudify.nodes.Container:\n+ derived_from: cloudify.nodes.Compute\n+\n+ # A storage volume in a topology\n+ cloudify.nodes.Volume:\n+ derived_from: cloudify.nodes.Root\n+\n+ # A file system a volume should be formatted to\n+ cloudify.nodes.FileSystem:\n+ derived_from: cloudify.nodes.Root\n+ properties:\n+ use_external_resource:\n+ description: >\n+ Enables the use of already foramtted volumes.\n+ type: boolean\n+ default: false\n+ format_after_unmount:","path":"resources/rest-service/cloudify/types/types.yaml","position":220,"original_position":220,"commit_id":"d0b3a74adda20a44ff8443fea3a5c8ed33a16593","original_commit_id":"d0b3a74adda20a44ff8443fea3a5c8ed33a16593","user":{"login":"iliapolo","id":1428812,"avatar_url":"https://avatars.githubusercontent.com/u/1428812?v=3","gravatar_id":"","url":"https://api.github.com/users/iliapolo","html_url":"https://github.com/iliapolo","followers_url":"https://api.github.com/users/iliapolo/followers","following_url":"https://api.github.com/users/iliapolo/following{/other_user}","gists_url":"https://api.github.com/users/iliapolo/gists{/gist_id}","starred_url":"https://api.github.com/users/iliapolo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iliapolo/subscriptions","organizations_url":"https://api.github.com/users/iliapolo/orgs","repos_url":"https://api.github.com/users/iliapolo/repos","events_url":"https://api.github.com/users/iliapolo/events{/privacy}","received_events_url":"https://api.github.com/users/iliapolo/received_events","type":"User","site_admin":false},"body":"remove, not used for now","created_at":"2015-01-01T15:18:16Z","updated_at":"2015-01-01T15:18:16Z","html_url":"https://github.com/cloudify-cosmo/cloudify-manager/pull/185#discussion_r22400158","pull_request_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/pulls/185","_links":{"self":{"href":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/pulls/comments/22400158"},"html":{"href":"https://github.com/cloudify-cosmo/cloudify-manager/pull/185#discussion_r22400158"},"pull_request":{"href":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/pulls/185"}}},"pull_request":{"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/pulls/185","id":26520655,"html_url":"https://github.com/cloudify-cosmo/cloudify-manager/pull/185","diff_url":"https://github.com/cloudify-cosmo/cloudify-manager/pull/185.diff","patch_url":"https://github.com/cloudify-cosmo/cloudify-manager/pull/185.patch","issue_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/issues/185","number":185,"state":"open","locked":false,"title":"Cfy 1761 add fs type","user":{"login":"iliapolo","id":1428812,"avatar_url":"https://avatars.githubusercontent.com/u/1428812?v=3","gravatar_id":"","url":"https://api.github.com/users/iliapolo","html_url":"https://github.com/iliapolo","followers_url":"https://api.github.com/users/iliapolo/followers","following_url":"https://api.github.com/users/iliapolo/following{/other_user}","gists_url":"https://api.github.com/users/iliapolo/gists{/gist_id}","starred_url":"https://api.github.com/users/iliapolo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iliapolo/subscriptions","organizations_url":"https://api.github.com/users/iliapolo/orgs","repos_url":"https://api.github.com/users/iliapolo/repos","events_url":"https://api.github.com/users/iliapolo/events{/privacy}","received_events_url":"https://api.github.com/users/iliapolo/received_events","type":"User","site_admin":false},"body":"","created_at":"2014-12-23T16:58:55Z","updated_at":"2015-01-01T15:18:16Z","closed_at":null,"merged_at":null,"merge_commit_sha":"e2fa6a134aaa049da1c61ff85a549939f45504b7","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/pulls/185/commits","review_comments_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/pulls/185/comments","review_comment_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/pulls/comments/{number}","comments_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/issues/185/comments","statuses_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/statuses/d0b3a74adda20a44ff8443fea3a5c8ed33a16593","head":{"label":"cloudify-cosmo:CFY-1761-add-fs-type","ref":"CFY-1761-add-fs-type","sha":"d0b3a74adda20a44ff8443fea3a5c8ed33a16593","user":{"login":"cloudify-cosmo","id":6260555,"avatar_url":"https://avatars.githubusercontent.com/u/6260555?v=3","gravatar_id":"","url":"https://api.github.com/users/cloudify-cosmo","html_url":"https://github.com/cloudify-cosmo","followers_url":"https://api.github.com/users/cloudify-cosmo/followers","following_url":"https://api.github.com/users/cloudify-cosmo/following{/other_user}","gists_url":"https://api.github.com/users/cloudify-cosmo/gists{/gist_id}","starred_url":"https://api.github.com/users/cloudify-cosmo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cloudify-cosmo/subscriptions","organizations_url":"https://api.github.com/users/cloudify-cosmo/orgs","repos_url":"https://api.github.com/users/cloudify-cosmo/repos","events_url":"https://api.github.com/users/cloudify-cosmo/events{/privacy}","received_events_url":"https://api.github.com/users/cloudify-cosmo/received_events","type":"Organization","site_admin":false},"repo":{"id":18326574,"name":"cloudify-manager","full_name":"cloudify-cosmo/cloudify-manager","owner":{"login":"cloudify-cosmo","id":6260555,"avatar_url":"https://avatars.githubusercontent.com/u/6260555?v=3","gravatar_id":"","url":"https://api.github.com/users/cloudify-cosmo","html_url":"https://github.com/cloudify-cosmo","followers_url":"https://api.github.com/users/cloudify-cosmo/followers","following_url":"https://api.github.com/users/cloudify-cosmo/following{/other_user}","gists_url":"https://api.github.com/users/cloudify-cosmo/gists{/gist_id}","starred_url":"https://api.github.com/users/cloudify-cosmo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cloudify-cosmo/subscriptions","organizations_url":"https://api.github.com/users/cloudify-cosmo/orgs","repos_url":"https://api.github.com/users/cloudify-cosmo/repos","events_url":"https://api.github.com/users/cloudify-cosmo/events{/privacy}","received_events_url":"https://api.github.com/users/cloudify-cosmo/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/cloudify-cosmo/cloudify-manager","description":"Cloudify's manager related code","fork":false,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager","forks_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/forks","keys_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/teams","hooks_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/hooks","issue_events_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/issues/events{/number}","events_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/events","assignees_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/assignees{/user}","branches_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/branches{/branch}","tags_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/tags","blobs_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/git/refs{/sha}","trees_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/statuses/{sha}","languages_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/languages","stargazers_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/stargazers","contributors_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/contributors","subscribers_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/subscribers","subscription_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/subscription","commits_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/commits{/sha}","git_commits_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/git/commits{/sha}","comments_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/comments{/number}","issue_comment_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/issues/comments/{number}","contents_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/contents/{+path}","compare_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/merges","archive_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/downloads","issues_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/issues{/number}","pulls_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/pulls{/number}","milestones_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/milestones{/number}","notifications_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/labels{/name}","releases_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/releases{/id}","created_at":"2014-04-01T11:06:47Z","updated_at":"2015-01-01T10:36:28Z","pushed_at":"2015-01-01T15:03:47Z","git_url":"git://github.com/cloudify-cosmo/cloudify-manager.git","ssh_url":"git@github.com:cloudify-cosmo/cloudify-manager.git","clone_url":"https://github.com/cloudify-cosmo/cloudify-manager.git","svn_url":"https://github.com/cloudify-cosmo/cloudify-manager","homepage":null,"size":15972,"stargazers_count":8,"watchers_count":8,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":11,"mirror_url":null,"open_issues_count":2,"forks":11,"open_issues":2,"watchers":8,"default_branch":"master"}},"base":{"label":"cloudify-cosmo:master","ref":"master","sha":"88ca842d58426cd66cafb03d2ab2f31617c0102e","user":{"login":"cloudify-cosmo","id":6260555,"avatar_url":"https://avatars.githubusercontent.com/u/6260555?v=3","gravatar_id":"","url":"https://api.github.com/users/cloudify-cosmo","html_url":"https://github.com/cloudify-cosmo","followers_url":"https://api.github.com/users/cloudify-cosmo/followers","following_url":"https://api.github.com/users/cloudify-cosmo/following{/other_user}","gists_url":"https://api.github.com/users/cloudify-cosmo/gists{/gist_id}","starred_url":"https://api.github.com/users/cloudify-cosmo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cloudify-cosmo/subscriptions","organizations_url":"https://api.github.com/users/cloudify-cosmo/orgs","repos_url":"https://api.github.com/users/cloudify-cosmo/repos","events_url":"https://api.github.com/users/cloudify-cosmo/events{/privacy}","received_events_url":"https://api.github.com/users/cloudify-cosmo/received_events","type":"Organization","site_admin":false},"repo":{"id":18326574,"name":"cloudify-manager","full_name":"cloudify-cosmo/cloudify-manager","owner":{"login":"cloudify-cosmo","id":6260555,"avatar_url":"https://avatars.githubusercontent.com/u/6260555?v=3","gravatar_id":"","url":"https://api.github.com/users/cloudify-cosmo","html_url":"https://github.com/cloudify-cosmo","followers_url":"https://api.github.com/users/cloudify-cosmo/followers","following_url":"https://api.github.com/users/cloudify-cosmo/following{/other_user}","gists_url":"https://api.github.com/users/cloudify-cosmo/gists{/gist_id}","starred_url":"https://api.github.com/users/cloudify-cosmo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cloudify-cosmo/subscriptions","organizations_url":"https://api.github.com/users/cloudify-cosmo/orgs","repos_url":"https://api.github.com/users/cloudify-cosmo/repos","events_url":"https://api.github.com/users/cloudify-cosmo/events{/privacy}","received_events_url":"https://api.github.com/users/cloudify-cosmo/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/cloudify-cosmo/cloudify-manager","description":"Cloudify's manager related code","fork":false,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager","forks_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/forks","keys_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/teams","hooks_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/hooks","issue_events_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/issues/events{/number}","events_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/events","assignees_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/assignees{/user}","branches_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/branches{/branch}","tags_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/tags","blobs_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/git/refs{/sha}","trees_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/statuses/{sha}","languages_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/languages","stargazers_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/stargazers","contributors_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/contributors","subscribers_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/subscribers","subscription_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/subscription","commits_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/commits{/sha}","git_commits_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/git/commits{/sha}","comments_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/comments{/number}","issue_comment_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/issues/comments/{number}","contents_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/contents/{+path}","compare_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/merges","archive_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/downloads","issues_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/issues{/number}","pulls_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/pulls{/number}","milestones_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/milestones{/number}","notifications_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/labels{/name}","releases_url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/releases{/id}","created_at":"2014-04-01T11:06:47Z","updated_at":"2015-01-01T10:36:28Z","pushed_at":"2015-01-01T15:03:47Z","git_url":"git://github.com/cloudify-cosmo/cloudify-manager.git","ssh_url":"git@github.com:cloudify-cosmo/cloudify-manager.git","clone_url":"https://github.com/cloudify-cosmo/cloudify-manager.git","svn_url":"https://github.com/cloudify-cosmo/cloudify-manager","homepage":null,"size":15972,"stargazers_count":8,"watchers_count":8,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":11,"mirror_url":null,"open_issues_count":2,"forks":11,"open_issues":2,"watchers":8,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/pulls/185"},"html":{"href":"https://github.com/cloudify-cosmo/cloudify-manager/pull/185"},"issue":{"href":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/issues/185"},"comments":{"href":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/issues/185/comments"},"review_comments":{"href":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/pulls/185/comments"},"review_comment":{"href":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/pulls/185/commits"},"statuses":{"href":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/statuses/d0b3a74adda20a44ff8443fea3a5c8ed33a16593"}}}},"public":true,"created_at":"2015-01-01T15:18: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":"2489659537","type":"PushEvent","actor":{"id":1985040,"login":"adrelanos","gravatar_id":"","url":"https://api.github.com/users/adrelanos","avatar_url":"https://avatars.githubusercontent.com/u/1985040?"},"repo":{"id":27195144,"name":"Whonix/whonix-setup-wizard","url":"https://api.github.com/repos/Whonix/whonix-setup-wizard"},"payload":{"push_id":536867791,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"292c17e7eb646909c65bd8d70b54386aac7771be","before":"3bea11fc39cf80cf91b18cc8b065ded1e84a718f","commits":[{"sha":"292c17e7eb646909c65bd8d70b54386aac7771be","author":{"email":"5a50a88c5fa8d150d86d352032835284723dc86f@riseup.net","name":"Patrick Schleizer"},"message":"bumped version number","distinct":true,"url":"https://api.github.com/repos/Whonix/whonix-setup-wizard/commits/292c17e7eb646909c65bd8d70b54386aac7771be"}]},"public":true,"created_at":"2015-01-01T15:18:16Z","org":{"id":4500165,"login":"Whonix","gravatar_id":"","url":"https://api.github.com/orgs/Whonix","avatar_url":"https://avatars.githubusercontent.com/u/4500165?"}} +,{"id":"2489659540","type":"PushEvent","actor":{"id":1985040,"login":"adrelanos","gravatar_id":"","url":"https://api.github.com/users/adrelanos","avatar_url":"https://avatars.githubusercontent.com/u/1985040?"},"repo":{"id":27195155,"name":"adrelanos/whonix-setup-wizard","url":"https://api.github.com/repos/adrelanos/whonix-setup-wizard"},"payload":{"push_id":536867792,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"292c17e7eb646909c65bd8d70b54386aac7771be","before":"3bea11fc39cf80cf91b18cc8b065ded1e84a718f","commits":[{"sha":"292c17e7eb646909c65bd8d70b54386aac7771be","author":{"email":"5a50a88c5fa8d150d86d352032835284723dc86f@riseup.net","name":"Patrick Schleizer"},"message":"bumped version number","distinct":true,"url":"https://api.github.com/repos/adrelanos/whonix-setup-wizard/commits/292c17e7eb646909c65bd8d70b54386aac7771be"}]},"public":true,"created_at":"2015-01-01T15:18:16Z"} +,{"id":"2489659542","type":"GollumEvent","actor":{"id":240038,"login":"faithandbrave","gravatar_id":"","url":"https://api.github.com/users/faithandbrave","avatar_url":"https://avatars.githubusercontent.com/u/240038?"},"repo":{"id":8750617,"name":"cpprefjp/site","url":"https://api.github.com/repos/cpprefjp/site"},"payload":{"pages":[{"page_name":"cpp14","title":"cpp14","summary":null,"action":"edited","sha":"f7890294c3ff13331edb0e360beabc9bf3c2a972","html_url":"https://github.com/cpprefjp/site/wiki/cpp14"}]},"public":true,"created_at":"2015-01-01T15:18:16Z","org":{"id":3665874,"login":"cpprefjp","gravatar_id":"","url":"https://api.github.com/orgs/cpprefjp","avatar_url":"https://avatars.githubusercontent.com/u/3665874?"}} +,{"id":"2489659544","type":"PushEvent","actor":{"id":5353499,"login":"emhoracek","gravatar_id":"","url":"https://api.github.com/users/emhoracek","avatar_url":"https://avatars.githubusercontent.com/u/5353499?"},"repo":{"id":22773970,"name":"emhoracek/exploration-game","url":"https://api.github.com/repos/emhoracek/exploration-game"},"payload":{"push_id":536867794,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"43ce91abfcd3f01ea649f6b69e71c51695058565","before":"21cc1c24f62aac9609598f9601682823c79e57f2","commits":[{"sha":"43ce91abfcd3f01ea649f6b69e71c51695058565","author":{"email":"6b50e0eee4438c8ae5099a293de1312b06992b55@daydrea.me","name":"Libby H"},"message":"Fixed formatting of README","distinct":true,"url":"https://api.github.com/repos/emhoracek/exploration-game/commits/43ce91abfcd3f01ea649f6b69e71c51695058565"}]},"public":true,"created_at":"2015-01-01T15:18:17Z"} +,{"id":"2489659545","type":"PushEvent","actor":{"id":1510942,"login":"zenja","gravatar_id":"","url":"https://api.github.com/users/zenja","avatar_url":"https://avatars.githubusercontent.com/u/1510942?"},"repo":{"id":28035206,"name":"zenja/markever","url":"https://api.github.com/repos/zenja/markever"},"payload":{"push_id":536867795,"size":4,"distinct_size":4,"ref":"refs/heads/master","head":"54f73d46aacda0aeb0d7c84a04fd1d20a759abfa","before":"c070fd8d8d65e61f9b81535eda5ad6f26fe69f0e","commits":[{"sha":"823d28e3cd9d3b875dcbe527f278bf2efa0e0c18","author":{"email":"6bab2d4e603241388c768fa3121f703469fc2eda@gmail.com","name":"Xing, Wang"},"message":"some scala code refactor & add some TODO\n\nScala code refactor:\n1. remove 'return'\n2. some Option.get -> pattern matching","distinct":true,"url":"https://api.github.com/repos/zenja/markever/commits/823d28e3cd9d3b875dcbe527f278bf2efa0e0c18"},{"sha":"fffb1af533e6e159dca93cd399f48bb0e89636a3","author":{"email":"6bab2d4e603241388c768fa3121f703469fc2eda@gmail.com","name":"Xing, Wang"},"message":"only load ace editor once\n\nsomehow, ace's onload will be triggered twice...","distinct":true,"url":"https://api.github.com/repos/zenja/markever/commits/fffb1af533e6e159dca93cd399f48bb0e89636a3"},{"sha":"a7f500f91e1ec0012eb04e3c3e76e826a9e6ae35","author":{"email":"6bab2d4e603241388c768fa3121f703469fc2eda@gmail.com","name":"Xing, Wang"},"message":"disable Mathjax menu","distinct":true,"url":"https://api.github.com/repos/zenja/markever/commits/a7f500f91e1ec0012eb04e3c3e76e826a9e6ae35"},{"sha":"54f73d46aacda0aeb0d7c84a04fd1d20a759abfa","author":{"email":"6bab2d4e603241388c768fa3121f703469fc2eda@gmail.com","name":"Xing, Wang"},"message":"insert image by pasting","distinct":true,"url":"https://api.github.com/repos/zenja/markever/commits/54f73d46aacda0aeb0d7c84a04fd1d20a759abfa"}]},"public":true,"created_at":"2015-01-01T15:18:17Z"} +,{"id":"2489659547","type":"PushEvent","actor":{"id":10062233,"login":"wangyang602117818","gravatar_id":"","url":"https://api.github.com/users/wangyang602117818","avatar_url":"https://avatars.githubusercontent.com/u/10062233?"},"repo":{"id":27633570,"name":"wangyang602117818/learngit","url":"https://api.github.com/repos/wangyang602117818/learngit"},"payload":{"push_id":536867796,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"b9db838f59361e2cb166b5e0d1ce1be7fe3425a4","before":"005064b80ff1b074d705e680cdb9ba96d788cd9e","commits":[{"sha":"a928808ff9786b7f21f66d1528eca13d1b34f105","author":{"email":"520d1ff391263bbb0b12e42fca375ce882dd50a4@qq.com","name":"wangyanghome"},"message":"a","distinct":true,"url":"https://api.github.com/repos/wangyang602117818/learngit/commits/a928808ff9786b7f21f66d1528eca13d1b34f105"},{"sha":"b9db838f59361e2cb166b5e0d1ce1be7fe3425a4","author":{"email":"520d1ff391263bbb0b12e42fca375ce882dd50a4@qq.com","name":"wangyanghome"},"message":"conflict","distinct":true,"url":"https://api.github.com/repos/wangyang602117818/learngit/commits/b9db838f59361e2cb166b5e0d1ce1be7fe3425a4"}]},"public":true,"created_at":"2015-01-01T15:18:17Z"} +,{"id":"2489659549","type":"WatchEvent","actor":{"id":7368588,"login":"wasdchenhao","gravatar_id":"","url":"https://api.github.com/users/wasdchenhao","avatar_url":"https://avatars.githubusercontent.com/u/7368588?"},"repo":{"id":4455789,"name":"Issacw0ng/SwitchButton","url":"https://api.github.com/repos/Issacw0ng/SwitchButton"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:18:18Z"} +,{"id":"2489659552","type":"IssueCommentEvent","actor":{"id":5091,"login":"dmitry","gravatar_id":"","url":"https://api.github.com/users/dmitry","avatar_url":"https://avatars.githubusercontent.com/u/5091?"},"repo":{"id":10744615,"name":"D-Alex/ropencv","url":"https://api.github.com/repos/D-Alex/ropencv"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/D-Alex/ropencv/issues/7","labels_url":"https://api.github.com/repos/D-Alex/ropencv/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/D-Alex/ropencv/issues/7/comments","events_url":"https://api.github.com/repos/D-Alex/ropencv/issues/7/events","html_url":"https://github.com/D-Alex/ropencv/pull/7","id":24177849,"number":7,"title":"Added example: extract foreground via GrabCut algorithm","user":{"login":"olegkurchin","id":5749140,"avatar_url":"https://avatars.githubusercontent.com/u/5749140?v=3","gravatar_id":"","url":"https://api.github.com/users/olegkurchin","html_url":"https://github.com/olegkurchin","followers_url":"https://api.github.com/users/olegkurchin/followers","following_url":"https://api.github.com/users/olegkurchin/following{/other_user}","gists_url":"https://api.github.com/users/olegkurchin/gists{/gist_id}","starred_url":"https://api.github.com/users/olegkurchin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/olegkurchin/subscriptions","organizations_url":"https://api.github.com/users/olegkurchin/orgs","repos_url":"https://api.github.com/users/olegkurchin/repos","events_url":"https://api.github.com/users/olegkurchin/events{/privacy}","received_events_url":"https://api.github.com/users/olegkurchin/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2013-12-12T13:23:25Z","updated_at":"2015-01-01T15:18:19Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/D-Alex/ropencv/pulls/7","html_url":"https://github.com/D-Alex/ropencv/pull/7","diff_url":"https://github.com/D-Alex/ropencv/pull/7.diff","patch_url":"https://github.com/D-Alex/ropencv/pull/7.patch"},"body":"Let's add one more example of using ropencv. I believe it's helpful for easier gem adoption"},"comment":{"url":"https://api.github.com/repos/D-Alex/ropencv/issues/comments/68488878","html_url":"https://github.com/D-Alex/ropencv/pull/7#issuecomment-68488878","issue_url":"https://api.github.com/repos/D-Alex/ropencv/issues/7","id":68488878,"user":{"login":"dmitry","id":5091,"avatar_url":"https://avatars.githubusercontent.com/u/5091?v=3","gravatar_id":"","url":"https://api.github.com/users/dmitry","html_url":"https://github.com/dmitry","followers_url":"https://api.github.com/users/dmitry/followers","following_url":"https://api.github.com/users/dmitry/following{/other_user}","gists_url":"https://api.github.com/users/dmitry/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitry/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitry/subscriptions","organizations_url":"https://api.github.com/users/dmitry/orgs","repos_url":"https://api.github.com/users/dmitry/repos","events_url":"https://api.github.com/users/dmitry/events{/privacy}","received_events_url":"https://api.github.com/users/dmitry/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:18:19Z","updated_at":"2015-01-01T15:18:19Z","body":"It works."}},"public":true,"created_at":"2015-01-01T15:18:19Z"} +,{"id":"2489659554","type":"PushEvent","actor":{"id":373351,"login":"SimonKagstrom","gravatar_id":"","url":"https://api.github.com/users/SimonKagstrom","avatar_url":"https://avatars.githubusercontent.com/u/373351?"},"repo":{"id":856461,"name":"SimonKagstrom/kcov","url":"https://api.github.com/repos/SimonKagstrom/kcov"},"payload":{"push_id":536867799,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2ebc5f5060f9f84a99f04a9d8dafee0891df7a44","before":"28bbb04ea3433d5557bff075eda5540658a650a6","commits":[{"sha":"2ebc5f5060f9f84a99f04a9d8dafee0891df7a44","author":{"email":"55f06860226d5500245ed5c8a62a0a8911dc9a7e@gmail.com","name":"Simon Kagstrom"},"message":"travis: Correct dir name for 32-bit builds","distinct":true,"url":"https://api.github.com/repos/SimonKagstrom/kcov/commits/2ebc5f5060f9f84a99f04a9d8dafee0891df7a44"}]},"public":true,"created_at":"2015-01-01T15:18:19Z"} +,{"id":"2489659560","type":"CreateEvent","actor":{"id":10364794,"login":"usbookmarket","gravatar_id":"","url":"https://api.github.com/users/usbookmarket","avatar_url":"https://avatars.githubusercontent.com/u/10364794?"},"repo":{"id":28688941,"name":"usbookmarket/Documents","url":"https://api.github.com/repos/usbookmarket/Documents"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":null,"pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:20Z"} +,{"id":"2489659564","type":"PullRequestEvent","actor":{"id":8042613,"login":"mts2","gravatar_id":"","url":"https://api.github.com/users/mts2","avatar_url":"https://avatars.githubusercontent.com/u/8042613?"},"repo":{"id":28688734,"name":"mts2/TestingThings","url":"https://api.github.com/repos/mts2/TestingThings"},"payload":{"action":"closed","number":1,"pull_request":{"url":"https://api.github.com/repos/mts2/TestingThings/pulls/1","id":26743906,"html_url":"https://github.com/mts2/TestingThings/pull/1","diff_url":"https://github.com/mts2/TestingThings/pull/1.diff","patch_url":"https://github.com/mts2/TestingThings/pull/1.patch","issue_url":"https://api.github.com/repos/mts2/TestingThings/issues/1","number":1,"state":"closed","locked":false,"title":"Branch Commit","user":{"login":"mts2","id":8042613,"avatar_url":"https://avatars.githubusercontent.com/u/8042613?v=3","gravatar_id":"","url":"https://api.github.com/users/mts2","html_url":"https://github.com/mts2","followers_url":"https://api.github.com/users/mts2/followers","following_url":"https://api.github.com/users/mts2/following{/other_user}","gists_url":"https://api.github.com/users/mts2/gists{/gist_id}","starred_url":"https://api.github.com/users/mts2/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mts2/subscriptions","organizations_url":"https://api.github.com/users/mts2/orgs","repos_url":"https://api.github.com/users/mts2/repos","events_url":"https://api.github.com/users/mts2/events{/privacy}","received_events_url":"https://api.github.com/users/mts2/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:18:11Z","updated_at":"2015-01-01T15:18:20Z","closed_at":"2015-01-01T15:18:20Z","merged_at":"2015-01-01T15:18:20Z","merge_commit_sha":"ba963b7cbcf66c1ed4ec886f82f8c830647351a9","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/mts2/TestingThings/pulls/1/commits","review_comments_url":"https://api.github.com/repos/mts2/TestingThings/pulls/1/comments","review_comment_url":"https://api.github.com/repos/mts2/TestingThings/pulls/comments/{number}","comments_url":"https://api.github.com/repos/mts2/TestingThings/issues/1/comments","statuses_url":"https://api.github.com/repos/mts2/TestingThings/statuses/d5d6ff647c315ee79f23cdb1166104a043fd048b","head":{"label":"mts2:newBranch","ref":"newBranch","sha":"d5d6ff647c315ee79f23cdb1166104a043fd048b","user":{"login":"mts2","id":8042613,"avatar_url":"https://avatars.githubusercontent.com/u/8042613?v=3","gravatar_id":"","url":"https://api.github.com/users/mts2","html_url":"https://github.com/mts2","followers_url":"https://api.github.com/users/mts2/followers","following_url":"https://api.github.com/users/mts2/following{/other_user}","gists_url":"https://api.github.com/users/mts2/gists{/gist_id}","starred_url":"https://api.github.com/users/mts2/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mts2/subscriptions","organizations_url":"https://api.github.com/users/mts2/orgs","repos_url":"https://api.github.com/users/mts2/repos","events_url":"https://api.github.com/users/mts2/events{/privacy}","received_events_url":"https://api.github.com/users/mts2/received_events","type":"User","site_admin":false},"repo":{"id":28688734,"name":"TestingThings","full_name":"mts2/TestingThings","owner":{"login":"mts2","id":8042613,"avatar_url":"https://avatars.githubusercontent.com/u/8042613?v=3","gravatar_id":"","url":"https://api.github.com/users/mts2","html_url":"https://github.com/mts2","followers_url":"https://api.github.com/users/mts2/followers","following_url":"https://api.github.com/users/mts2/following{/other_user}","gists_url":"https://api.github.com/users/mts2/gists{/gist_id}","starred_url":"https://api.github.com/users/mts2/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mts2/subscriptions","organizations_url":"https://api.github.com/users/mts2/orgs","repos_url":"https://api.github.com/users/mts2/repos","events_url":"https://api.github.com/users/mts2/events{/privacy}","received_events_url":"https://api.github.com/users/mts2/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mts2/TestingThings","description":"","fork":false,"url":"https://api.github.com/repos/mts2/TestingThings","forks_url":"https://api.github.com/repos/mts2/TestingThings/forks","keys_url":"https://api.github.com/repos/mts2/TestingThings/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mts2/TestingThings/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mts2/TestingThings/teams","hooks_url":"https://api.github.com/repos/mts2/TestingThings/hooks","issue_events_url":"https://api.github.com/repos/mts2/TestingThings/issues/events{/number}","events_url":"https://api.github.com/repos/mts2/TestingThings/events","assignees_url":"https://api.github.com/repos/mts2/TestingThings/assignees{/user}","branches_url":"https://api.github.com/repos/mts2/TestingThings/branches{/branch}","tags_url":"https://api.github.com/repos/mts2/TestingThings/tags","blobs_url":"https://api.github.com/repos/mts2/TestingThings/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mts2/TestingThings/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mts2/TestingThings/git/refs{/sha}","trees_url":"https://api.github.com/repos/mts2/TestingThings/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mts2/TestingThings/statuses/{sha}","languages_url":"https://api.github.com/repos/mts2/TestingThings/languages","stargazers_url":"https://api.github.com/repos/mts2/TestingThings/stargazers","contributors_url":"https://api.github.com/repos/mts2/TestingThings/contributors","subscribers_url":"https://api.github.com/repos/mts2/TestingThings/subscribers","subscription_url":"https://api.github.com/repos/mts2/TestingThings/subscription","commits_url":"https://api.github.com/repos/mts2/TestingThings/commits{/sha}","git_commits_url":"https://api.github.com/repos/mts2/TestingThings/git/commits{/sha}","comments_url":"https://api.github.com/repos/mts2/TestingThings/comments{/number}","issue_comment_url":"https://api.github.com/repos/mts2/TestingThings/issues/comments/{number}","contents_url":"https://api.github.com/repos/mts2/TestingThings/contents/{+path}","compare_url":"https://api.github.com/repos/mts2/TestingThings/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mts2/TestingThings/merges","archive_url":"https://api.github.com/repos/mts2/TestingThings/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mts2/TestingThings/downloads","issues_url":"https://api.github.com/repos/mts2/TestingThings/issues{/number}","pulls_url":"https://api.github.com/repos/mts2/TestingThings/pulls{/number}","milestones_url":"https://api.github.com/repos/mts2/TestingThings/milestones{/number}","notifications_url":"https://api.github.com/repos/mts2/TestingThings/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mts2/TestingThings/labels{/name}","releases_url":"https://api.github.com/repos/mts2/TestingThings/releases{/id}","created_at":"2015-01-01T15:07:45Z","updated_at":"2015-01-01T15:07:45Z","pushed_at":"2015-01-01T15:18:20Z","git_url":"git://github.com/mts2/TestingThings.git","ssh_url":"git@github.com:mts2/TestingThings.git","clone_url":"https://github.com/mts2/TestingThings.git","svn_url":"https://github.com/mts2/TestingThings","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"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":"mts2:master","ref":"master","sha":"dc28da2f6ad139a9e44e1ee7d28b9f7fa7ad0af5","user":{"login":"mts2","id":8042613,"avatar_url":"https://avatars.githubusercontent.com/u/8042613?v=3","gravatar_id":"","url":"https://api.github.com/users/mts2","html_url":"https://github.com/mts2","followers_url":"https://api.github.com/users/mts2/followers","following_url":"https://api.github.com/users/mts2/following{/other_user}","gists_url":"https://api.github.com/users/mts2/gists{/gist_id}","starred_url":"https://api.github.com/users/mts2/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mts2/subscriptions","organizations_url":"https://api.github.com/users/mts2/orgs","repos_url":"https://api.github.com/users/mts2/repos","events_url":"https://api.github.com/users/mts2/events{/privacy}","received_events_url":"https://api.github.com/users/mts2/received_events","type":"User","site_admin":false},"repo":{"id":28688734,"name":"TestingThings","full_name":"mts2/TestingThings","owner":{"login":"mts2","id":8042613,"avatar_url":"https://avatars.githubusercontent.com/u/8042613?v=3","gravatar_id":"","url":"https://api.github.com/users/mts2","html_url":"https://github.com/mts2","followers_url":"https://api.github.com/users/mts2/followers","following_url":"https://api.github.com/users/mts2/following{/other_user}","gists_url":"https://api.github.com/users/mts2/gists{/gist_id}","starred_url":"https://api.github.com/users/mts2/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mts2/subscriptions","organizations_url":"https://api.github.com/users/mts2/orgs","repos_url":"https://api.github.com/users/mts2/repos","events_url":"https://api.github.com/users/mts2/events{/privacy}","received_events_url":"https://api.github.com/users/mts2/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mts2/TestingThings","description":"","fork":false,"url":"https://api.github.com/repos/mts2/TestingThings","forks_url":"https://api.github.com/repos/mts2/TestingThings/forks","keys_url":"https://api.github.com/repos/mts2/TestingThings/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mts2/TestingThings/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mts2/TestingThings/teams","hooks_url":"https://api.github.com/repos/mts2/TestingThings/hooks","issue_events_url":"https://api.github.com/repos/mts2/TestingThings/issues/events{/number}","events_url":"https://api.github.com/repos/mts2/TestingThings/events","assignees_url":"https://api.github.com/repos/mts2/TestingThings/assignees{/user}","branches_url":"https://api.github.com/repos/mts2/TestingThings/branches{/branch}","tags_url":"https://api.github.com/repos/mts2/TestingThings/tags","blobs_url":"https://api.github.com/repos/mts2/TestingThings/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mts2/TestingThings/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mts2/TestingThings/git/refs{/sha}","trees_url":"https://api.github.com/repos/mts2/TestingThings/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mts2/TestingThings/statuses/{sha}","languages_url":"https://api.github.com/repos/mts2/TestingThings/languages","stargazers_url":"https://api.github.com/repos/mts2/TestingThings/stargazers","contributors_url":"https://api.github.com/repos/mts2/TestingThings/contributors","subscribers_url":"https://api.github.com/repos/mts2/TestingThings/subscribers","subscription_url":"https://api.github.com/repos/mts2/TestingThings/subscription","commits_url":"https://api.github.com/repos/mts2/TestingThings/commits{/sha}","git_commits_url":"https://api.github.com/repos/mts2/TestingThings/git/commits{/sha}","comments_url":"https://api.github.com/repos/mts2/TestingThings/comments{/number}","issue_comment_url":"https://api.github.com/repos/mts2/TestingThings/issues/comments/{number}","contents_url":"https://api.github.com/repos/mts2/TestingThings/contents/{+path}","compare_url":"https://api.github.com/repos/mts2/TestingThings/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mts2/TestingThings/merges","archive_url":"https://api.github.com/repos/mts2/TestingThings/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mts2/TestingThings/downloads","issues_url":"https://api.github.com/repos/mts2/TestingThings/issues{/number}","pulls_url":"https://api.github.com/repos/mts2/TestingThings/pulls{/number}","milestones_url":"https://api.github.com/repos/mts2/TestingThings/milestones{/number}","notifications_url":"https://api.github.com/repos/mts2/TestingThings/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mts2/TestingThings/labels{/name}","releases_url":"https://api.github.com/repos/mts2/TestingThings/releases{/id}","created_at":"2015-01-01T15:07:45Z","updated_at":"2015-01-01T15:07:45Z","pushed_at":"2015-01-01T15:18:20Z","git_url":"git://github.com/mts2/TestingThings.git","ssh_url":"git@github.com:mts2/TestingThings.git","clone_url":"https://github.com/mts2/TestingThings.git","svn_url":"https://github.com/mts2/TestingThings","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"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/mts2/TestingThings/pulls/1"},"html":{"href":"https://github.com/mts2/TestingThings/pull/1"},"issue":{"href":"https://api.github.com/repos/mts2/TestingThings/issues/1"},"comments":{"href":"https://api.github.com/repos/mts2/TestingThings/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/mts2/TestingThings/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/mts2/TestingThings/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/mts2/TestingThings/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/mts2/TestingThings/statuses/d5d6ff647c315ee79f23cdb1166104a043fd048b"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"mts2","id":8042613,"avatar_url":"https://avatars.githubusercontent.com/u/8042613?v=3","gravatar_id":"","url":"https://api.github.com/users/mts2","html_url":"https://github.com/mts2","followers_url":"https://api.github.com/users/mts2/followers","following_url":"https://api.github.com/users/mts2/following{/other_user}","gists_url":"https://api.github.com/users/mts2/gists{/gist_id}","starred_url":"https://api.github.com/users/mts2/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mts2/subscriptions","organizations_url":"https://api.github.com/users/mts2/orgs","repos_url":"https://api.github.com/users/mts2/repos","events_url":"https://api.github.com/users/mts2/events{/privacy}","received_events_url":"https://api.github.com/users/mts2/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":1,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:18:20Z"} +,{"id":"2489659566","type":"WatchEvent","actor":{"id":4118134,"login":"thomacer","gravatar_id":"","url":"https://api.github.com/users/thomacer","avatar_url":"https://avatars.githubusercontent.com/u/4118134?"},"repo":{"id":28289329,"name":"Z1MM32M4N/vim-superman","url":"https://api.github.com/repos/Z1MM32M4N/vim-superman"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:18:21Z"} +,{"id":"2489659567","type":"PushEvent","actor":{"id":8042613,"login":"mts2","gravatar_id":"","url":"https://api.github.com/users/mts2","avatar_url":"https://avatars.githubusercontent.com/u/8042613?"},"repo":{"id":28688734,"name":"mts2/TestingThings","url":"https://api.github.com/repos/mts2/TestingThings"},"payload":{"push_id":536867804,"size":2,"distinct_size":1,"ref":"refs/heads/master","head":"d19a5181cae0baf4afd69aac8c601a575cb93294","before":"dc28da2f6ad139a9e44e1ee7d28b9f7fa7ad0af5","commits":[{"sha":"d5d6ff647c315ee79f23cdb1166104a043fd048b","author":{"email":"607e5ef392376dc7903cadab7b1e345e27f315d5@hotmail.ca","name":"Michael Socha"},"message":"Branch Commit","distinct":false,"url":"https://api.github.com/repos/mts2/TestingThings/commits/d5d6ff647c315ee79f23cdb1166104a043fd048b"},{"sha":"d19a5181cae0baf4afd69aac8c601a575cb93294","author":{"email":"607e5ef392376dc7903cadab7b1e345e27f315d5@hotmail.ca","name":"mts2"},"message":"Merge pull request #1 from mts2/newBranch\n\nBranch Commit","distinct":true,"url":"https://api.github.com/repos/mts2/TestingThings/commits/d19a5181cae0baf4afd69aac8c601a575cb93294"}]},"public":true,"created_at":"2015-01-01T15:18:21Z"} +,{"id":"2489659568","type":"CreateEvent","actor":{"id":9304960,"login":"JavaZhikun","gravatar_id":"","url":"https://api.github.com/users/JavaZhikun","avatar_url":"https://avatars.githubusercontent.com/u/9304960?"},"repo":{"id":28688942,"name":"JavaZhikun/thinkingInJava11","url":"https://api.github.com/repos/JavaZhikun/thinkingInJava11"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"concurrent","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:21Z"} +,{"id":"2489659570","type":"PushEvent","actor":{"id":816539,"login":"melpon","gravatar_id":"","url":"https://api.github.com/users/melpon","avatar_url":"https://avatars.githubusercontent.com/u/816539?"},"repo":{"id":24560345,"name":"cpprefjp/cpprefjp.github.io","url":"https://api.github.com/repos/cpprefjp/cpprefjp.github.io"},"payload":{"push_id":536867806,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ec70a87b053a73647e4abac84c14b711d89452f0","before":"06aecda6f2c2342403750fd60e817b7785c3696f","commits":[{"sha":"ec70a87b053a73647e4abac84c14b711d89452f0","author":{"email":"24dd6dbc8e99c6fec7b5e7f42cfecf95f2aa61dd@gmail.com","name":"cpprefjp-autoupdate"},"message":"update automatically","distinct":true,"url":"https://api.github.com/repos/cpprefjp/cpprefjp.github.io/commits/ec70a87b053a73647e4abac84c14b711d89452f0"}]},"public":true,"created_at":"2015-01-01T15:18:21Z","org":{"id":3665874,"login":"cpprefjp","gravatar_id":"","url":"https://api.github.com/orgs/cpprefjp","avatar_url":"https://avatars.githubusercontent.com/u/3665874?"}} +,{"id":"2489659572","type":"PushEvent","actor":{"id":6679325,"login":"MakeNowJust","gravatar_id":"","url":"https://api.github.com/users/MakeNowJust","avatar_url":"https://avatars.githubusercontent.com/u/6679325?"},"repo":{"id":28681538,"name":"MakeNowJust/bloem.js","url":"https://api.github.com/repos/MakeNowJust/bloem.js"},"payload":{"push_id":536867808,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"72150e0346ade38ce2248f646922a8a6a6e3b6c8","before":"4faf8242424e998df2248f8e2e0aa4483eea071e","commits":[{"sha":"3a5ac87fb24d20c903cc101ff5d62b7414a0bfb0","author":{"email":"1223806812fb6933d6a3df87f623553c2602d938@gmail.com","name":"TSUYUSATO Kitsune"},"message":"add tests for Enumerable#when","distinct":true,"url":"https://api.github.com/repos/MakeNowJust/bloem.js/commits/3a5ac87fb24d20c903cc101ff5d62b7414a0bfb0"},{"sha":"72150e0346ade38ce2248f646922a8a6a6e3b6c8","author":{"email":"1223806812fb6933d6a3df87f623553c2602d938@gmail.com","name":"TSUYUSATO Kitsune"},"message":"add Enumerable#when","distinct":true,"url":"https://api.github.com/repos/MakeNowJust/bloem.js/commits/72150e0346ade38ce2248f646922a8a6a6e3b6c8"}]},"public":true,"created_at":"2015-01-01T15:18:22Z"} +,{"id":"2489659577","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":3451238,"name":"yiisoft/yii","url":"https://api.github.com/repos/yiisoft/yii"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/yiisoft/yii/issues/3688","labels_url":"https://api.github.com/repos/yiisoft/yii/issues/3688/labels{/name}","comments_url":"https://api.github.com/repos/yiisoft/yii/issues/3688/comments","events_url":"https://api.github.com/repos/yiisoft/yii/issues/3688/events","html_url":"https://github.com/yiisoft/yii/issues/3688","id":53218063,"number":3688,"title":"release archives could not be downloaded in China","user":{"login":"muhammadjava","id":9152281,"avatar_url":"https://avatars.githubusercontent.com/u/9152281?v=3","gravatar_id":"","url":"https://api.github.com/users/muhammadjava","html_url":"https://github.com/muhammadjava","followers_url":"https://api.github.com/users/muhammadjava/followers","following_url":"https://api.github.com/users/muhammadjava/following{/other_user}","gists_url":"https://api.github.com/users/muhammadjava/gists{/gist_id}","starred_url":"https://api.github.com/users/muhammadjava/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/muhammadjava/subscriptions","organizations_url":"https://api.github.com/users/muhammadjava/orgs","repos_url":"https://api.github.com/users/muhammadjava/repos","events_url":"https://api.github.com/users/muhammadjava/events{/privacy}","received_events_url":"https://api.github.com/users/muhammadjava/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T11:37:38Z","updated_at":"2015-01-01T15:18:22Z","closed_at":"2015-01-01T15:18:22Z","body":"First of all, thanks for the great work. I'm a big fan of Yii.\r\n\r\nRecently, I'm having issues downloading .tar/.zip releases (1.1.15 and on). My browser hangs a long time at this URL \"https://s3.amazonaws.com/github-cloud/releases...\" until timeout, or when connected just receives \"Access Denied\" XML file.\r\n\r\nIs there any way do make it available for download at other hosts?\r\n\r\nBy the way, the \"Source Code\" link (on \"releases\" page) works though. The download file also contains \"framework\", so can it be used for production the as well?\r\n\r\nThanks."},"comment":{"url":"https://api.github.com/repos/yiisoft/yii/issues/comments/68488880","html_url":"https://github.com/yiisoft/yii/issues/3688#issuecomment-68488880","issue_url":"https://api.github.com/repos/yiisoft/yii/issues/3688","id":68488880,"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:18:22Z","updated_at":"2015-01-01T15:18:22Z","body":"You may clone the git repository and check out the desired version:\r\n\r\n```sh\r\ngit clone https://github.com/yiisoft/yii.git\r\ncd yii\r\ngit checkout 1.1.16\r\n```\r\n\r\nThis is the same as the framework release, it just includes more files like documentation and examples so you can use it too."}},"public":true,"created_at":"2015-01-01T15:18:22Z","org":{"id":993323,"login":"yiisoft","gravatar_id":"","url":"https://api.github.com/orgs/yiisoft","avatar_url":"https://avatars.githubusercontent.com/u/993323?"}} +,{"id":"2489659578","type":"IssuesEvent","actor":{"id":189796,"login":"cebe","gravatar_id":"","url":"https://api.github.com/users/cebe","avatar_url":"https://avatars.githubusercontent.com/u/189796?"},"repo":{"id":3451238,"name":"yiisoft/yii","url":"https://api.github.com/repos/yiisoft/yii"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/yiisoft/yii/issues/3688","labels_url":"https://api.github.com/repos/yiisoft/yii/issues/3688/labels{/name}","comments_url":"https://api.github.com/repos/yiisoft/yii/issues/3688/comments","events_url":"https://api.github.com/repos/yiisoft/yii/issues/3688/events","html_url":"https://github.com/yiisoft/yii/issues/3688","id":53218063,"number":3688,"title":"release archives could not be downloaded in China","user":{"login":"muhammadjava","id":9152281,"avatar_url":"https://avatars.githubusercontent.com/u/9152281?v=3","gravatar_id":"","url":"https://api.github.com/users/muhammadjava","html_url":"https://github.com/muhammadjava","followers_url":"https://api.github.com/users/muhammadjava/followers","following_url":"https://api.github.com/users/muhammadjava/following{/other_user}","gists_url":"https://api.github.com/users/muhammadjava/gists{/gist_id}","starred_url":"https://api.github.com/users/muhammadjava/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/muhammadjava/subscriptions","organizations_url":"https://api.github.com/users/muhammadjava/orgs","repos_url":"https://api.github.com/users/muhammadjava/repos","events_url":"https://api.github.com/users/muhammadjava/events{/privacy}","received_events_url":"https://api.github.com/users/muhammadjava/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T11:37:38Z","updated_at":"2015-01-01T15:18:22Z","closed_at":"2015-01-01T15:18:22Z","body":"First of all, thanks for the great work. I'm a big fan of Yii.\r\n\r\nRecently, I'm having issues downloading .tar/.zip releases (1.1.15 and on). My browser hangs a long time at this URL \"https://s3.amazonaws.com/github-cloud/releases...\" until timeout, or when connected just receives \"Access Denied\" XML file.\r\n\r\nIs there any way do make it available for download at other hosts?\r\n\r\nBy the way, the \"Source Code\" link (on \"releases\" page) works though. The download file also contains \"framework\", so can it be used for production the as well?\r\n\r\nThanks."}},"public":true,"created_at":"2015-01-01T15:18:22Z","org":{"id":993323,"login":"yiisoft","gravatar_id":"","url":"https://api.github.com/orgs/yiisoft","avatar_url":"https://avatars.githubusercontent.com/u/993323?"}} +,{"id":"2489659580","type":"PushEvent","actor":{"id":2351425,"login":"galli-a","gravatar_id":"","url":"https://api.github.com/users/galli-a","avatar_url":"https://avatars.githubusercontent.com/u/2351425?"},"repo":{"id":5828973,"name":"galli-a/vim-settings","url":"https://api.github.com/repos/galli-a/vim-settings"},"payload":{"push_id":536867811,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"dc950bf1f59051b42f84ecba0dde3abfdb593c56","before":"f287fb234d22ddc4a9d0db84ff3aa0ab5483a0d9","commits":[{"sha":"dc950bf1f59051b42f84ecba0dde3abfdb593c56","author":{"email":"7c541a7579d00b53349af3a71c765067fda63676@gmail.com","name":"a_galli"},"message":"corrected syntax error in vimrc","distinct":true,"url":"https://api.github.com/repos/galli-a/vim-settings/commits/dc950bf1f59051b42f84ecba0dde3abfdb593c56"}]},"public":true,"created_at":"2015-01-01T15:18:23Z"} +,{"id":"2489659581","type":"PushEvent","actor":{"id":5414189,"login":"sbarb","gravatar_id":"","url":"https://api.github.com/users/sbarb","avatar_url":"https://avatars.githubusercontent.com/u/5414189?"},"repo":{"id":28626423,"name":"sbarb/template","url":"https://api.github.com/repos/sbarb/template"},"payload":{"push_id":536867810,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3cd8057f014a028abe216ff3b842176e6b7474ad","before":"b3939d185ae4c12dcda385f61d4251cb570d651d","commits":[{"sha":"3cd8057f014a028abe216ff3b842176e6b7474ad","author":{"email":"4d354d56990c2306306260b1365e03cfef28d551@eagles.usm.edu","name":"steven"},"message":"getting started","distinct":true,"url":"https://api.github.com/repos/sbarb/template/commits/3cd8057f014a028abe216ff3b842176e6b7474ad"}]},"public":true,"created_at":"2015-01-01T15:18:23Z"} +,{"id":"2489659582","type":"PushEvent","actor":{"id":2580896,"login":"Safatullah","gravatar_id":"","url":"https://api.github.com/users/Safatullah","avatar_url":"https://avatars.githubusercontent.com/u/2580896?"},"repo":{"id":28688795,"name":"Safatullah/hello-world","url":"https://api.github.com/repos/Safatullah/hello-world"},"payload":{"push_id":536867812,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5368dfaf6fc8aab5a4a414e1f8a0b1170d79f2e6","before":"22bdfddb56c39b6f9facaf15374b3bd7118d090a","commits":[{"sha":"5368dfaf6fc8aab5a4a414e1f8a0b1170d79f2e6","author":{"email":"f92cce360470c0f13032ff52e35b5061d2412f13@gmail.com","name":"Safatullah Sheikh"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/Safatullah/hello-world/commits/5368dfaf6fc8aab5a4a414e1f8a0b1170d79f2e6"}]},"public":true,"created_at":"2015-01-01T15:18:23Z"} +,{"id":"2489659585","type":"PushEvent","actor":{"id":7555251,"login":"cleardusk","gravatar_id":"","url":"https://api.github.com/users/cleardusk","avatar_url":"https://avatars.githubusercontent.com/u/7555251?"},"repo":{"id":28683508,"name":"cleardusk/CrossroadSimulation_2","url":"https://api.github.com/repos/cleardusk/CrossroadSimulation_2"},"payload":{"push_id":536867813,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"66d800d2ec341b0ddb5071de86c849afd7b1d553","before":"172d5b81a66f76508cc57ae0823ef5f34f741793","commits":[{"sha":"66d800d2ec341b0ddb5071de86c849afd7b1d553","author":{"email":"78bc8db60bb64a0d51c935070f5f2975ed1f7cf1@qq.com","name":"cleardusk"},"message":"release some resource allocated","distinct":true,"url":"https://api.github.com/repos/cleardusk/CrossroadSimulation_2/commits/66d800d2ec341b0ddb5071de86c849afd7b1d553"}]},"public":true,"created_at":"2015-01-01T15:18:23Z"} +,{"id":"2489659586","type":"CreateEvent","actor":{"id":557961,"login":"e-jigsaw","gravatar_id":"","url":"https://api.github.com/users/e-jigsaw","avatar_url":"https://avatars.githubusercontent.com/u/557961?"},"repo":{"id":21883081,"name":"jgsme/dev","url":"https://api.github.com/repos/jgsme/dev"},"payload":{"ref":"dont-show-disqus-in-index","ref_type":"branch","master_branch":"master","description":"Development log","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:23Z","org":{"id":8819590,"login":"jgsme","gravatar_id":"","url":"https://api.github.com/orgs/jgsme","avatar_url":"https://avatars.githubusercontent.com/u/8819590?"}} +,{"id":"2489659589","type":"CreateEvent","actor":{"id":1827709,"login":"ComFreek","gravatar_id":"","url":"https://api.github.com/users/ComFreek","avatar_url":"https://avatars.githubusercontent.com/u/1827709?"},"repo":{"id":28688943,"name":"ComFreek/chocolatey-packages","url":"https://api.github.com/repos/ComFreek/chocolatey-packages"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Packages I maintain.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:24Z"} +,{"id":"2489659591","type":"PushEvent","actor":{"id":8409223,"login":"joephysics62","gravatar_id":"","url":"https://api.github.com/users/joephysics62","avatar_url":"https://avatars.githubusercontent.com/u/8409223?"},"repo":{"id":22813247,"name":"joephysics62/sudoku","url":"https://api.github.com/repos/joephysics62/sudoku"},"payload":{"push_id":536867817,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e2155a26d5a257270f8081bd15701db6244cf147","before":"554f521cac62b0c2787498982da0a5d7dc325496","commits":[{"sha":"e2155a26d5a257270f8081bd15701db6244cf147","author":{"email":"f723ba7544283284e60d085c87d3ac60c4fa2afb@hotmail.com","name":"joephyics62"},"message":"extract useful class","distinct":true,"url":"https://api.github.com/repos/joephysics62/sudoku/commits/e2155a26d5a257270f8081bd15701db6244cf147"}]},"public":true,"created_at":"2015-01-01T15:18:24Z"} +,{"id":"2489659592","type":"PushEvent","actor":{"id":4434568,"login":"KeenS","gravatar_id":"","url":"https://api.github.com/users/KeenS","avatar_url":"https://avatars.githubusercontent.com/u/4434568?"},"repo":{"id":14184082,"name":"KeenS/CIM","url":"https://api.github.com/repos/KeenS/CIM"},"payload":{"push_id":536867818,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"082bf2a804f079c74ddb789a51a854aced642b91","before":"d56d81d8ed7d75975b77d38a2724827dbf807ab3","commits":[{"sha":"a0a00745cb2caa8984834848df04c88b435cf17c","author":{"email":"84352cc5f06a8239adbfee79efcf0db319fb5e9a@gmail.com","name":"Sunrin SHIMURA (keen)"},"message":"the latest sbcl is 1.2.7","distinct":true,"url":"https://api.github.com/repos/KeenS/CIM/commits/a0a00745cb2caa8984834848df04c88b435cf17c"},{"sha":"fc678ad3e8b361abd938fa72cbfe77f1777d027a","author":{"email":"84352cc5f06a8239adbfee79efcf0db319fb5e9a@gmail.com","name":"Sunrin SHIMURA (keen)"},"message":"update VERSION","distinct":true,"url":"https://api.github.com/repos/KeenS/CIM/commits/fc678ad3e8b361abd938fa72cbfe77f1777d027a"},{"sha":"082bf2a804f079c74ddb789a51a854aced642b91","author":{"email":"84352cc5f06a8239adbfee79efcf0db319fb5e9a@gmail.com","name":"Sunrin SHIMURA (keen)"},"message":"Update News","distinct":true,"url":"https://api.github.com/repos/KeenS/CIM/commits/082bf2a804f079c74ddb789a51a854aced642b91"}]},"public":true,"created_at":"2015-01-01T15:18:24Z"} +,{"id":"2489659593","type":"DeleteEvent","actor":{"id":1401042,"login":"plushmonkey","gravatar_id":"","url":"https://api.github.com/users/plushmonkey","avatar_url":"https://avatars.githubusercontent.com/u/1401042?"},"repo":{"id":22568749,"name":"plushmonkey/monkeybot","url":"https://api.github.com/repos/plushmonkey/monkeybot"},"payload":{"ref":"v2.91","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:24Z"} +,{"id":"2489659594","type":"PushEvent","actor":{"id":1166903,"login":"grozen","gravatar_id":"","url":"https://api.github.com/users/grozen","avatar_url":"https://avatars.githubusercontent.com/u/1166903?"},"repo":{"id":28400829,"name":"klarna/klarna-on-demand-ios","url":"https://api.github.com/repos/klarna/klarna-on-demand-ios"},"payload":{"push_id":536867820,"size":1,"distinct_size":1,"ref":"refs/heads/feature/IACO-552-document-purchase","head":"f70f714fc3aedadf26ddbcfc29966e74fc36c894","before":"a5b319a6e9f7009427876350b8475be02bb80b43","commits":[{"sha":"f70f714fc3aedadf26ddbcfc29966e74fc36c894","author":{"email":"ea20cbc791a5b0311772af0b9a01d48a99e9adda@gmail.com","name":"Guy Rozen"},"message":"Added a section about signing requests","distinct":true,"url":"https://api.github.com/repos/klarna/klarna-on-demand-ios/commits/f70f714fc3aedadf26ddbcfc29966e74fc36c894"}]},"public":true,"created_at":"2015-01-01T15:18:24Z","org":{"id":394540,"login":"klarna","gravatar_id":"","url":"https://api.github.com/orgs/klarna","avatar_url":"https://avatars.githubusercontent.com/u/394540?"}} +,{"id":"2489659597","type":"PushEvent","actor":{"id":427931,"login":"lauthiamkok","gravatar_id":"","url":"https://api.github.com/users/lauthiamkok","avatar_url":"https://avatars.githubusercontent.com/u/427931?"},"repo":{"id":26815351,"name":"lauthiamkok/cms-master","url":"https://api.github.com/repos/lauthiamkok/cms-master"},"payload":{"push_id":536867821,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1c6837f8370007f02c443aeee3a19962176166af","before":"4d7c84981ccc624f2e28f7276bf528d378148856","commits":[{"sha":"1c6837f8370007f02c443aeee3a19962176166af","author":{"email":"25a6767ced77cdcf1e3def3890f54d4550e3b602@yahoo.co.uk","name":"Lau Thiam Kok"},"message":"CMS image module updated","distinct":true,"url":"https://api.github.com/repos/lauthiamkok/cms-master/commits/1c6837f8370007f02c443aeee3a19962176166af"}]},"public":true,"created_at":"2015-01-01T15:18:25Z"} +,{"id":"2489659603","type":"PushEvent","actor":{"id":50665,"login":"gvvaughan","gravatar_id":"","url":"https://api.github.com/users/gvvaughan","avatar_url":"https://avatars.githubusercontent.com/u/50665?"},"repo":{"id":8834157,"name":"gvvaughan/lyaml","url":"https://api.github.com/repos/gvvaughan/lyaml"},"payload":{"push_id":536867825,"size":1,"distinct_size":1,"ref":"refs/heads/release","head":"982448aca818f31a470ec504c5ebb545b89349bf","before":"81553f5ede53977f7b7a168e4f409559fa6fccfa","commits":[{"sha":"982448aca818f31a470ec504c5ebb545b89349bf","author":{"email":"f9023000f29773649f3850298becb9544b5fd6a9@gnu.org","name":"Gary V. Vaughan"},"message":"Release v5.1.3.\n\nSigned-off-by: Gary V. Vaughan ","distinct":true,"url":"https://api.github.com/repos/gvvaughan/lyaml/commits/982448aca818f31a470ec504c5ebb545b89349bf"}]},"public":true,"created_at":"2015-01-01T15:18:26Z"} +,{"id":"2489659604","type":"CreateEvent","actor":{"id":10309038,"login":"seeker49","gravatar_id":"","url":"https://api.github.com/users/seeker49","avatar_url":"https://avatars.githubusercontent.com/u/10309038?"},"repo":{"id":28688582,"name":"seeker49/frontend","url":"https://api.github.com/repos/seeker49/frontend"},"payload":{"ref":"gh-pages","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:26Z"} +,{"id":"2489659606","type":"PushEvent","actor":{"id":10358687,"login":"kingmcheung723","gravatar_id":"","url":"https://api.github.com/users/kingmcheung723","avatar_url":"https://avatars.githubusercontent.com/u/10358687?"},"repo":{"id":28681438,"name":"kingmcheung723/FYP-Server","url":"https://api.github.com/repos/kingmcheung723/FYP-Server"},"payload":{"push_id":536867828,"size":3,"distinct_size":3,"ref":"refs/heads/develop","head":"d7ee61536eb614ecdcb592cea03e7253f87337c2","before":"990d9311d52450c37bfdf0b273a339000e81bda5","commits":[{"sha":"4913a1616f07477aa897c185ca0de2c9d8ec233c","author":{"email":"b221286fb167506f11e3fce89f24cb9f0b50fd56@gmail.com","name":"King Cheung"},"message":"Change DataGrabber to class","distinct":true,"url":"https://api.github.com/repos/kingmcheung723/FYP-Server/commits/4913a1616f07477aa897c185ca0de2c9d8ec233c"},{"sha":"782f5415a5f44748c0fab4b88212a28fec8492d4","author":{"email":"b221286fb167506f11e3fce89f24cb9f0b50fd56@gmail.com","name":"King Cheung"},"message":"Call read html in main","distinct":true,"url":"https://api.github.com/repos/kingmcheung723/FYP-Server/commits/782f5415a5f44748c0fab4b88212a28fec8492d4"},{"sha":"d7ee61536eb614ecdcb592cea03e7253f87337c2","author":{"email":"b221286fb167506f11e3fce89f24cb9f0b50fd56@gmail.com","name":"King Cheung"},"message":"Read the goods table","distinct":true,"url":"https://api.github.com/repos/kingmcheung723/FYP-Server/commits/d7ee61536eb614ecdcb592cea03e7253f87337c2"}]},"public":true,"created_at":"2015-01-01T15:18:26Z"} +,{"id":"2489659607","type":"DeleteEvent","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":"byta-till-svenska","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:27Z"} +,{"id":"2489659608","type":"PushEvent","actor":{"id":7267904,"login":"d-an","gravatar_id":"","url":"https://api.github.com/users/d-an","avatar_url":"https://avatars.githubusercontent.com/u/7267904?"},"repo":{"id":28602454,"name":"d-an/stats","url":"https://api.github.com/repos/d-an/stats"},"payload":{"push_id":536867829,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a707c3207bba0a0ac87209220afd899950b7fc31","before":"92dd0d6a65a2e62e9f3bf786de8ce5a12155db1b","commits":[{"sha":"a707c3207bba0a0ac87209220afd899950b7fc31","author":{"email":"c3ea3780f69ec3ea2d36d1fdcd698f35d8e7a569@centrum.cz","name":"Daniel Dvořák"},"message":"chisq_test","distinct":true,"url":"https://api.github.com/repos/d-an/stats/commits/a707c3207bba0a0ac87209220afd899950b7fc31"}]},"public":true,"created_at":"2015-01-01T15:18:27Z"} +,{"id":"2489659609","type":"IssueCommentEvent","actor":{"id":6705804,"login":"ottonet","gravatar_id":"","url":"https://api.github.com/users/ottonet","avatar_url":"https://avatars.githubusercontent.com/u/6705804?"},"repo":{"id":13079217,"name":"webcomm/magento-boilerplate","url":"https://api.github.com/repos/webcomm/magento-boilerplate"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/webcomm/magento-boilerplate/issues/106","labels_url":"https://api.github.com/repos/webcomm/magento-boilerplate/issues/106/labels{/name}","comments_url":"https://api.github.com/repos/webcomm/magento-boilerplate/issues/106/comments","events_url":"https://api.github.com/repos/webcomm/magento-boilerplate/issues/106/events","html_url":"https://github.com/webcomm/magento-boilerplate/issues/106","id":53220241,"number":106,"title":"/development -> unbound variables generate gulp error","user":{"login":"ottonet","id":6705804,"avatar_url":"https://avatars.githubusercontent.com/u/6705804?v=3","gravatar_id":"","url":"https://api.github.com/users/ottonet","html_url":"https://github.com/ottonet","followers_url":"https://api.github.com/users/ottonet/followers","following_url":"https://api.github.com/users/ottonet/following{/other_user}","gists_url":"https://api.github.com/users/ottonet/gists{/gist_id}","starred_url":"https://api.github.com/users/ottonet/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ottonet/subscriptions","organizations_url":"https://api.github.com/users/ottonet/orgs","repos_url":"https://api.github.com/users/ottonet/repos","events_url":"https://api.github.com/users/ottonet/events{/privacy}","received_events_url":"https://api.github.com/users/ottonet/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T14:01:03Z","updated_at":"2015-01-01T15:18:27Z","closed_at":null,"body":"boilerplate/development generates following error running gulp:\r\n\r\n[14:50:59] gulp-notify: [Error running Gulp] bower_components/magento-boilerplate/assets/stylesheets/magento-boilerplate:57: unbound variable $include-grid-component\r\n\r\nApparently this whole thing is not working, as commenting out above line just generates an error on the next line: \r\n> // We only include the components out of Foundation that are required. These variables appear to never be defined,\r\n> // however they're dynamically generated by the Boilerplate's Gulpfile. This allows these components, in\r\n> // conjunction with their JavaScript counterparts, to be included, conditionally, per site. Rock on!\r\n\r\nNew to foundation and sass so no idea (yet) what's going on here... "},"comment":{"url":"https://api.github.com/repos/webcomm/magento-boilerplate/issues/comments/68488882","html_url":"https://github.com/webcomm/magento-boilerplate/issues/106#issuecomment-68488882","issue_url":"https://api.github.com/repos/webcomm/magento-boilerplate/issues/106","id":68488882,"user":{"login":"ottonet","id":6705804,"avatar_url":"https://avatars.githubusercontent.com/u/6705804?v=3","gravatar_id":"","url":"https://api.github.com/users/ottonet","html_url":"https://github.com/ottonet","followers_url":"https://api.github.com/users/ottonet/followers","following_url":"https://api.github.com/users/ottonet/following{/other_user}","gists_url":"https://api.github.com/users/ottonet/gists{/gist_id}","starred_url":"https://api.github.com/users/ottonet/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ottonet/subscriptions","organizations_url":"https://api.github.com/users/ottonet/orgs","repos_url":"https://api.github.com/users/ottonet/repos","events_url":"https://api.github.com/users/ottonet/events{/privacy}","received_events_url":"https://api.github.com/users/ottonet/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:18:27Z","updated_at":"2015-01-01T15:18:27Z","body":"Of course changing config.json helps; there is no scss to compile in the new package - so it compiles just fine. Back to square one :( "}},"public":true,"created_at":"2015-01-01T15:18:27Z","org":{"id":2819333,"login":"webcomm","gravatar_id":"","url":"https://api.github.com/orgs/webcomm","avatar_url":"https://avatars.githubusercontent.com/u/2819333?"}} +,{"id":"2489659610","type":"IssuesEvent","actor":{"id":6705804,"login":"ottonet","gravatar_id":"","url":"https://api.github.com/users/ottonet","avatar_url":"https://avatars.githubusercontent.com/u/6705804?"},"repo":{"id":13079217,"name":"webcomm/magento-boilerplate","url":"https://api.github.com/repos/webcomm/magento-boilerplate"},"payload":{"action":"reopened","issue":{"url":"https://api.github.com/repos/webcomm/magento-boilerplate/issues/106","labels_url":"https://api.github.com/repos/webcomm/magento-boilerplate/issues/106/labels{/name}","comments_url":"https://api.github.com/repos/webcomm/magento-boilerplate/issues/106/comments","events_url":"https://api.github.com/repos/webcomm/magento-boilerplate/issues/106/events","html_url":"https://github.com/webcomm/magento-boilerplate/issues/106","id":53220241,"number":106,"title":"/development -> unbound variables generate gulp error","user":{"login":"ottonet","id":6705804,"avatar_url":"https://avatars.githubusercontent.com/u/6705804?v=3","gravatar_id":"","url":"https://api.github.com/users/ottonet","html_url":"https://github.com/ottonet","followers_url":"https://api.github.com/users/ottonet/followers","following_url":"https://api.github.com/users/ottonet/following{/other_user}","gists_url":"https://api.github.com/users/ottonet/gists{/gist_id}","starred_url":"https://api.github.com/users/ottonet/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ottonet/subscriptions","organizations_url":"https://api.github.com/users/ottonet/orgs","repos_url":"https://api.github.com/users/ottonet/repos","events_url":"https://api.github.com/users/ottonet/events{/privacy}","received_events_url":"https://api.github.com/users/ottonet/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T14:01:03Z","updated_at":"2015-01-01T15:18:27Z","closed_at":null,"body":"boilerplate/development generates following error running gulp:\r\n\r\n[14:50:59] gulp-notify: [Error running Gulp] bower_components/magento-boilerplate/assets/stylesheets/magento-boilerplate:57: unbound variable $include-grid-component\r\n\r\nApparently this whole thing is not working, as commenting out above line just generates an error on the next line: \r\n> // We only include the components out of Foundation that are required. These variables appear to never be defined,\r\n> // however they're dynamically generated by the Boilerplate's Gulpfile. This allows these components, in\r\n> // conjunction with their JavaScript counterparts, to be included, conditionally, per site. Rock on!\r\n\r\nNew to foundation and sass so no idea (yet) what's going on here... "}},"public":true,"created_at":"2015-01-01T15:18:27Z","org":{"id":2819333,"login":"webcomm","gravatar_id":"","url":"https://api.github.com/orgs/webcomm","avatar_url":"https://avatars.githubusercontent.com/u/2819333?"}} +,{"id":"2489659614","type":"PushEvent","actor":{"id":8367837,"login":"junwang6302","gravatar_id":"","url":"https://api.github.com/users/junwang6302","avatar_url":"https://avatars.githubusercontent.com/u/8367837?"},"repo":{"id":22660905,"name":"junwang6302/weddesignerjun.com","url":"https://api.github.com/repos/junwang6302/weddesignerjun.com"},"payload":{"push_id":536867831,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cdff628a89fb7b7aa1b84ebf4a3f15ae668b0102","before":"7bde661af84d59078fd988f57e638f6ded9c8bf7","commits":[{"sha":"cdff628a89fb7b7aa1b84ebf4a3f15ae668b0102","author":{"email":"6d90df3be4d0d43b08e3fb47f55e09b5b06dae3e@Juns-MacBook-Air.local","name":"Jun"},"message":"add wscontroller.","distinct":true,"url":"https://api.github.com/repos/junwang6302/weddesignerjun.com/commits/cdff628a89fb7b7aa1b84ebf4a3f15ae668b0102"}]},"public":true,"created_at":"2015-01-01T15:18:28Z"} +,{"id":"2489659615","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":536867832,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f5190ec40d9e2b9d23cc1769c45798c197f50f1f","before":"a8cf8eb4cfb285e8d3acf6db6e1026b170b0e9ee","commits":[{"sha":"f5190ec40d9e2b9d23cc1769c45798c197f50f1f","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420125506734\n\nHqcWKajyi+bfFjbZmQTYjR1Vd1KR0rOnZ+GjjgFB3lQ=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/f5190ec40d9e2b9d23cc1769c45798c197f50f1f"}]},"public":true,"created_at":"2015-01-01T15:18:28Z"} +,{"id":"2489659616","type":"CreateEvent","actor":{"id":9016448,"login":"aadushkin","gravatar_id":"","url":"https://api.github.com/users/aadushkin","avatar_url":"https://avatars.githubusercontent.com/u/9016448?"},"repo":{"id":28688944,"name":"aadushkin/LearnReader","url":"https://api.github.com/repos/aadushkin/LearnReader"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:28Z"} +,{"id":"2489659617","type":"IssuesEvent","actor":{"id":8983142,"login":"Elmister","gravatar_id":"","url":"https://api.github.com/users/Elmister","avatar_url":"https://avatars.githubusercontent.com/u/8983142?"},"repo":{"id":9785440,"name":"ThemeBoy/SportsPress","url":"https://api.github.com/repos/ThemeBoy/SportsPress"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/ThemeBoy/SportsPress/issues/102","labels_url":"https://api.github.com/repos/ThemeBoy/SportsPress/issues/102/labels{/name}","comments_url":"https://api.github.com/repos/ThemeBoy/SportsPress/issues/102/comments","events_url":"https://api.github.com/repos/ThemeBoy/SportsPress/issues/102/events","html_url":"https://github.com/ThemeBoy/SportsPress/issues/102","id":53221700,"number":102,"title":"round pls :)","user":{"login":"Elmister","id":8983142,"avatar_url":"https://avatars.githubusercontent.com/u/8983142?v=3","gravatar_id":"","url":"https://api.github.com/users/Elmister","html_url":"https://github.com/Elmister","followers_url":"https://api.github.com/users/Elmister/followers","following_url":"https://api.github.com/users/Elmister/following{/other_user}","gists_url":"https://api.github.com/users/Elmister/gists{/gist_id}","starred_url":"https://api.github.com/users/Elmister/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Elmister/subscriptions","organizations_url":"https://api.github.com/users/Elmister/orgs","repos_url":"https://api.github.com/users/Elmister/repos","events_url":"https://api.github.com/users/Elmister/events{/privacy}","received_events_url":"https://api.github.com/users/Elmister/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:18:28Z","updated_at":"2015-01-01T15:18:28Z","closed_at":null,"body":"Football (socer).\r\nDisplaying events from last (and future) round in widget/shortcode etc.\r\nIt should switch automaticly to next round after (date from last event round) < (date from first events round ++)"}},"public":true,"created_at":"2015-01-01T15:18:28Z"} +,{"id":"2489659618","type":"WatchEvent","actor":{"id":3810392,"login":"imfangli","gravatar_id":"","url":"https://api.github.com/users/imfangli","avatar_url":"https://avatars.githubusercontent.com/u/3810392?"},"repo":{"id":6093775,"name":"johnpolacek/Responsivator","url":"https://api.github.com/repos/johnpolacek/Responsivator"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:18:28Z"} +,{"id":"2489659620","type":"PushEvent","actor":{"id":4783280,"login":"kevinbellinger","gravatar_id":"","url":"https://api.github.com/users/kevinbellinger","avatar_url":"https://avatars.githubusercontent.com/u/4783280?"},"repo":{"id":28688063,"name":"kevinbellinger/weddingsite","url":"https://api.github.com/repos/kevinbellinger/weddingsite"},"payload":{"push_id":536867834,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8d2f037c912a400c930dc65fb097306b21d87725","before":"4b250fe2f8b20352223678b64996f8c37e12bb27","commits":[{"sha":"8d2f037c912a400c930dc65fb097306b21d87725","author":{"email":"ffb4761cba839470133bee36aeb139f58d7dbaa9@glider.io","name":"Kevin Bellinger"},"message":"wedding slight changes","distinct":true,"url":"https://api.github.com/repos/kevinbellinger/weddingsite/commits/8d2f037c912a400c930dc65fb097306b21d87725"}]},"public":true,"created_at":"2015-01-01T15:18:29Z"} +,{"id":"2489659622","type":"PushEvent","actor":{"id":9612599,"login":"rocketraceheroes","gravatar_id":"","url":"https://api.github.com/users/rocketraceheroes","avatar_url":"https://avatars.githubusercontent.com/u/9612599?"},"repo":{"id":26330000,"name":"rocketraceheroes/clan-site","url":"https://api.github.com/repos/rocketraceheroes/clan-site"},"payload":{"push_id":536867835,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"15f456cfac81cf23b2c9fba8e9c8efc7c021a4d8","before":"95e5f4c1070ee773637f2399338fa9a5791f7671","commits":[{"sha":"15f456cfac81cf23b2c9fba8e9c8efc7c021a4d8","author":{"email":"98be7db3301a24a53495a8dd72473a84a1d5edff@gmail.com","name":"rocketraceheroes"},"message":"Update footer.html","distinct":true,"url":"https://api.github.com/repos/rocketraceheroes/clan-site/commits/15f456cfac81cf23b2c9fba8e9c8efc7c021a4d8"}]},"public":true,"created_at":"2015-01-01T15:18:29Z"} +,{"id":"2489659624","type":"IssuesEvent","actor":{"id":1368533,"login":"derekpa","gravatar_id":"","url":"https://api.github.com/users/derekpa","avatar_url":"https://avatars.githubusercontent.com/u/1368533?"},"repo":{"id":16201366,"name":"fairdemocracy/vilfredo-client","url":"https://api.github.com/repos/fairdemocracy/vilfredo-client"},"payload":{"action":"reopened","issue":{"url":"https://api.github.com/repos/fairdemocracy/vilfredo-client/issues/27","labels_url":"https://api.github.com/repos/fairdemocracy/vilfredo-client/issues/27/labels{/name}","comments_url":"https://api.github.com/repos/fairdemocracy/vilfredo-client/issues/27/comments","events_url":"https://api.github.com/repos/fairdemocracy/vilfredo-client/issues/27/events","html_url":"https://github.com/fairdemocracy/vilfredo-client/issues/27","id":46606800,"number":27,"title":"After you are in, it should tell it.","user":{"login":"pietrosperoni","id":1333674,"avatar_url":"https://avatars.githubusercontent.com/u/1333674?v=3","gravatar_id":"","url":"https://api.github.com/users/pietrosperoni","html_url":"https://github.com/pietrosperoni","followers_url":"https://api.github.com/users/pietrosperoni/followers","following_url":"https://api.github.com/users/pietrosperoni/following{/other_user}","gists_url":"https://api.github.com/users/pietrosperoni/gists{/gist_id}","starred_url":"https://api.github.com/users/pietrosperoni/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pietrosperoni/subscriptions","organizations_url":"https://api.github.com/users/pietrosperoni/orgs","repos_url":"https://api.github.com/users/pietrosperoni/repos","events_url":"https://api.github.com/users/pietrosperoni/events{/privacy}","received_events_url":"https://api.github.com/users/pietrosperoni/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/fairdemocracy/vilfredo-client/labels/enhancement","name":"enhancement","color":"84b6eb"},{"url":"https://api.github.com/repos/fairdemocracy/vilfredo-client/labels/in+progress","name":"in progress","color":"ededed"}],"state":"open","locked":false,"assignee":{"login":"giovanisp","id":180794,"avatar_url":"https://avatars.githubusercontent.com/u/180794?v=3","gravatar_id":"","url":"https://api.github.com/users/giovanisp","html_url":"https://github.com/giovanisp","followers_url":"https://api.github.com/users/giovanisp/followers","following_url":"https://api.github.com/users/giovanisp/following{/other_user}","gists_url":"https://api.github.com/users/giovanisp/gists{/gist_id}","starred_url":"https://api.github.com/users/giovanisp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/giovanisp/subscriptions","organizations_url":"https://api.github.com/users/giovanisp/orgs","repos_url":"https://api.github.com/users/giovanisp/repos","events_url":"https://api.github.com/users/giovanisp/events{/privacy}","received_events_url":"https://api.github.com/users/giovanisp/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/fairdemocracy/vilfredo-client/milestones/1","labels_url":"https://api.github.com/repos/fairdemocracy/vilfredo-client/milestones/1/labels","id":832522,"number":1,"title":"2.0.0 - RC1","description":"","creator":{"login":"giovanisp","id":180794,"avatar_url":"https://avatars.githubusercontent.com/u/180794?v=3","gravatar_id":"","url":"https://api.github.com/users/giovanisp","html_url":"https://github.com/giovanisp","followers_url":"https://api.github.com/users/giovanisp/followers","following_url":"https://api.github.com/users/giovanisp/following{/other_user}","gists_url":"https://api.github.com/users/giovanisp/gists{/gist_id}","starred_url":"https://api.github.com/users/giovanisp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/giovanisp/subscriptions","organizations_url":"https://api.github.com/users/giovanisp/orgs","repos_url":"https://api.github.com/users/giovanisp/repos","events_url":"https://api.github.com/users/giovanisp/events{/privacy}","received_events_url":"https://api.github.com/users/giovanisp/received_events","type":"User","site_admin":false},"open_issues":29,"closed_issues":42,"state":"open","created_at":"2014-10-20T10:35:02Z","updated_at":"2015-01-01T15:18:29Z","due_on":"2015-01-22T23:00:00Z","closed_at":null},"comments":24,"created_at":"2014-10-23T09:49:43Z","updated_at":"2015-01-01T15:18:29Z","closed_at":null,"body":"Something like: \"Welcome Carlo!\" Written in big and disappearing"}},"public":true,"created_at":"2015-01-01T15:18:29Z","org":{"id":5912333,"login":"fairdemocracy","gravatar_id":"","url":"https://api.github.com/orgs/fairdemocracy","avatar_url":"https://avatars.githubusercontent.com/u/5912333?"}} +,{"id":"2489659626","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":536867837,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"20749b5367cd81687c45358b2e33b2f2583f62ab","before":"8304ce8a6ad0f07de4f3c64d1a620136f2200346","commits":[{"sha":"20749b5367cd81687c45358b2e33b2f2583f62ab","author":{"email":"798520c19e899fb2be364efde581283231d48b6f@126.com","name":"quhezheng"},"message":"update","distinct":true,"url":"https://api.github.com/repos/quhezheng/HomeIP/commits/20749b5367cd81687c45358b2e33b2f2583f62ab"}]},"public":true,"created_at":"2015-01-01T15:18:30Z"} +,{"id":"2489659628","type":"IssueCommentEvent","actor":{"id":4401998,"login":"Thebester5","gravatar_id":"","url":"https://api.github.com/users/Thebester5","avatar_url":"https://avatars.githubusercontent.com/u/4401998?"},"repo":{"id":20138941,"name":"Kitsune-/Kitsune","url":"https://api.github.com/repos/Kitsune-/Kitsune"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/Kitsune-/Kitsune/issues/25","labels_url":"https://api.github.com/repos/Kitsune-/Kitsune/issues/25/labels{/name}","comments_url":"https://api.github.com/repos/Kitsune-/Kitsune/issues/25/comments","events_url":"https://api.github.com/repos/Kitsune-/Kitsune/issues/25/events","html_url":"https://github.com/Kitsune-/Kitsune/issues/25","id":53215315,"number":25,"title":"Multiplayer issue.","user":{"login":"Thebester5","id":4401998,"avatar_url":"https://avatars.githubusercontent.com/u/4401998?v=3","gravatar_id":"","url":"https://api.github.com/users/Thebester5","html_url":"https://github.com/Thebester5","followers_url":"https://api.github.com/users/Thebester5/followers","following_url":"https://api.github.com/users/Thebester5/following{/other_user}","gists_url":"https://api.github.com/users/Thebester5/gists{/gist_id}","starred_url":"https://api.github.com/users/Thebester5/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Thebester5/subscriptions","organizations_url":"https://api.github.com/users/Thebester5/orgs","repos_url":"https://api.github.com/users/Thebester5/repos","events_url":"https://api.github.com/users/Thebester5/events{/privacy}","received_events_url":"https://api.github.com/users/Thebester5/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2015-01-01T08:00:01Z","updated_at":"2015-01-01T15:18:30Z","closed_at":null,"body":"Whenever joining a board with another person, the server never knows how to handle the packet s%bi#ack. This is the packet that is getting sent with find four. This makes find four unplayable. http://prntscr.com/5n728y"},"comment":{"url":"https://api.github.com/repos/Kitsune-/Kitsune/issues/comments/68488883","html_url":"https://github.com/Kitsune-/Kitsune/issues/25#issuecomment-68488883","issue_url":"https://api.github.com/repos/Kitsune-/Kitsune/issues/25","id":68488883,"user":{"login":"Thebester5","id":4401998,"avatar_url":"https://avatars.githubusercontent.com/u/4401998?v=3","gravatar_id":"","url":"https://api.github.com/users/Thebester5","html_url":"https://github.com/Thebester5","followers_url":"https://api.github.com/users/Thebester5/followers","following_url":"https://api.github.com/users/Thebester5/following{/other_user}","gists_url":"https://api.github.com/users/Thebester5/gists{/gist_id}","starred_url":"https://api.github.com/users/Thebester5/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Thebester5/subscriptions","organizations_url":"https://api.github.com/users/Thebester5/orgs","repos_url":"https://api.github.com/users/Thebester5/repos","events_url":"https://api.github.com/users/Thebester5/events{/privacy}","received_events_url":"https://api.github.com/users/Thebester5/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:18:30Z","updated_at":"2015-01-01T15:18:30Z","body":"Here it is http://pastebin.com/pQY1vSC5"}},"public":true,"created_at":"2015-01-01T15:18:30Z","org":{"id":8609723,"login":"Kitsune-","gravatar_id":"","url":"https://api.github.com/orgs/Kitsune-","avatar_url":"https://avatars.githubusercontent.com/u/8609723?"}} +,{"id":"2489659630","type":"PushEvent","actor":{"id":5303727,"login":"Brijendrasial","gravatar_id":"","url":"https://api.github.com/users/Brijendrasial","avatar_url":"https://avatars.githubusercontent.com/u/5303727?"},"repo":{"id":28688927,"name":"Brijendrasial/Csgolounge.com-Automated-Bump","url":"https://api.github.com/repos/Brijendrasial/Csgolounge.com-Automated-Bump"},"payload":{"push_id":536867840,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1d24854219ded54a926d9726129f01cdc140778c","before":"67c17deb98f7251b1413652e9b4a4d70d2d50685","commits":[{"sha":"1d24854219ded54a926d9726129f01cdc140778c","author":{"email":"a37386101fbb31138f49fbe6b74368b181ecfde6@gmail.com","name":"Brijendra Sial"},"message":"Create README.md","distinct":true,"url":"https://api.github.com/repos/Brijendrasial/Csgolounge.com-Automated-Bump/commits/1d24854219ded54a926d9726129f01cdc140778c"}]},"public":true,"created_at":"2015-01-01T15:18:30Z"} +,{"id":"2489659633","type":"PushEvent","actor":{"id":8084608,"login":"lmbrs","gravatar_id":"","url":"https://api.github.com/users/lmbrs","avatar_url":"https://avatars.githubusercontent.com/u/8084608?"},"repo":{"id":26714268,"name":"lmbrs/arch","url":"https://api.github.com/repos/lmbrs/arch"},"payload":{"push_id":536867841,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d01be3f6b6bff9aca449f98380365e6533bbd636","before":"dad689e098bf54926c29417267e0692d2db9c89b","commits":[{"sha":"d01be3f6b6bff9aca449f98380365e6533bbd636","author":{"email":"1a73af9e7ae00182733b2292511b814be66f065f@lmbrs.de","name":"lmbrs"},"message":"Update setup.sh","distinct":true,"url":"https://api.github.com/repos/lmbrs/arch/commits/d01be3f6b6bff9aca449f98380365e6533bbd636"}]},"public":true,"created_at":"2015-01-01T15:18:30Z"} +,{"id":"2489659634","type":"PushEvent","actor":{"id":98013,"login":"bluefeet","gravatar_id":"","url":"https://api.github.com/users/bluefeet","avatar_url":"https://avatars.githubusercontent.com/u/98013?"},"repo":{"id":233954,"name":"bluefeet/Games-EveOnline-API","url":"https://api.github.com/repos/bluefeet/Games-EveOnline-API"},"payload":{"push_id":536867842,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0abb9b2d84e78b175b663bae1cac29eede6f9427","before":"653fd139d54366a00aaa044ebce4b02d5ba38c41","commits":[{"sha":"0abb9b2d84e78b175b663bae1cac29eede6f9427","author":{"email":"ac81ccee659ffbb331d87202ec09bb0cf2f9446f@ziprecruiter.com","name":"Aran Deltac"},"message":"Update Changes and a couple doc formatting tweaks.","distinct":true,"url":"https://api.github.com/repos/bluefeet/Games-EveOnline-API/commits/0abb9b2d84e78b175b663bae1cac29eede6f9427"}]},"public":true,"created_at":"2015-01-01T15:18:30Z"} +,{"id":"2489659636","type":"IssueCommentEvent","actor":{"id":4823878,"login":"Max98","gravatar_id":"","url":"https://api.github.com/users/Max98","avatar_url":"https://avatars.githubusercontent.com/u/4823878?"},"repo":{"id":28491178,"name":"RigsOfRods/ror-server","url":"https://api.github.com/repos/RigsOfRods/ror-server"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/RigsOfRods/ror-server/issues/3","labels_url":"https://api.github.com/repos/RigsOfRods/ror-server/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/RigsOfRods/ror-server/issues/3/comments","events_url":"https://api.github.com/repos/RigsOfRods/ror-server/issues/3/events","html_url":"https://github.com/RigsOfRods/ror-server/pull/3","id":53137212,"number":3,"title":"updated dependencies","user":{"login":"Hiradur","id":6960065,"avatar_url":"https://avatars.githubusercontent.com/u/6960065?v=3","gravatar_id":"","url":"https://api.github.com/users/Hiradur","html_url":"https://github.com/Hiradur","followers_url":"https://api.github.com/users/Hiradur/followers","following_url":"https://api.github.com/users/Hiradur/following{/other_user}","gists_url":"https://api.github.com/users/Hiradur/gists{/gist_id}","starred_url":"https://api.github.com/users/Hiradur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Hiradur/subscriptions","organizations_url":"https://api.github.com/users/Hiradur/orgs","repos_url":"https://api.github.com/users/Hiradur/repos","events_url":"https://api.github.com/users/Hiradur/events{/privacy}","received_events_url":"https://api.github.com/users/Hiradur/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":5,"created_at":"2014-12-30T18:49:18Z","updated_at":"2015-01-01T15:18:31Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/RigsOfRods/ror-server/pulls/3","html_url":"https://github.com/RigsOfRods/ror-server/pull/3","diff_url":"https://github.com/RigsOfRods/ror-server/pull/3.diff","patch_url":"https://github.com/RigsOfRods/ror-server/pull/3.patch"},"body":"I just replaced the dependencies with newer files, other than that I didn't touch the code. It still compiles and apparently runs fine."},"comment":{"url":"https://api.github.com/repos/RigsOfRods/ror-server/issues/comments/68488885","html_url":"https://github.com/RigsOfRods/ror-server/pull/3#issuecomment-68488885","issue_url":"https://api.github.com/repos/RigsOfRods/ror-server/issues/3","id":68488885,"user":{"login":"Max98","id":4823878,"avatar_url":"https://avatars.githubusercontent.com/u/4823878?v=3","gravatar_id":"","url":"https://api.github.com/users/Max98","html_url":"https://github.com/Max98","followers_url":"https://api.github.com/users/Max98/followers","following_url":"https://api.github.com/users/Max98/following{/other_user}","gists_url":"https://api.github.com/users/Max98/gists{/gist_id}","starred_url":"https://api.github.com/users/Max98/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Max98/subscriptions","organizations_url":"https://api.github.com/users/Max98/orgs","repos_url":"https://api.github.com/users/Max98/repos","events_url":"https://api.github.com/users/Max98/events{/privacy}","received_events_url":"https://api.github.com/users/Max98/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:18:31Z","updated_at":"2015-01-01T15:18:31Z","body":"I can try it out for windows if you need, just pm me."}},"public":true,"created_at":"2015-01-01T15:18:31Z","org":{"id":10160761,"login":"RigsOfRods","gravatar_id":"","url":"https://api.github.com/orgs/RigsOfRods","avatar_url":"https://avatars.githubusercontent.com/u/10160761?"}} +,{"id":"2489659637","type":"CreateEvent","actor":{"id":1067105,"login":"wassimahmed","gravatar_id":"","url":"https://api.github.com/users/wassimahmed","avatar_url":"https://avatars.githubusercontent.com/u/1067105?"},"repo":{"id":28688885,"name":"wassimahmed/mean","url":"https://api.github.com/repos/wassimahmed/mean"},"payload":{"ref":"assignment","ref_type":"branch","master_branch":"master","description":"MEAN (Mongo, Express, Angular, Node) - A Simple, Scalable and Easy starting point for full stack javascript web development - utilizing many of the best practices we've found on the way","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:31Z"} +,{"id":"2489659638","type":"PullRequestEvent","actor":{"id":4894735,"login":"MaxRink","gravatar_id":"","url":"https://api.github.com/users/MaxRink","avatar_url":"https://avatars.githubusercontent.com/u/4894735?"},"repo":{"id":28688863,"name":"MaxRink/seat","url":"https://api.github.com/repos/MaxRink/seat"},"payload":{"action":"opened","number":2,"pull_request":{"url":"https://api.github.com/repos/MaxRink/seat/pulls/2","id":26743908,"html_url":"https://github.com/MaxRink/seat/pull/2","diff_url":"https://github.com/MaxRink/seat/pull/2.diff","patch_url":"https://github.com/MaxRink/seat/pull/2.patch","issue_url":"https://api.github.com/repos/MaxRink/seat/issues/2","number":2,"state":"open","locked":false,"title":"Corporation sec titles","user":{"login":"MaxRink","id":4894735,"avatar_url":"https://avatars.githubusercontent.com/u/4894735?v=3","gravatar_id":"","url":"https://api.github.com/users/MaxRink","html_url":"https://github.com/MaxRink","followers_url":"https://api.github.com/users/MaxRink/followers","following_url":"https://api.github.com/users/MaxRink/following{/other_user}","gists_url":"https://api.github.com/users/MaxRink/gists{/gist_id}","starred_url":"https://api.github.com/users/MaxRink/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MaxRink/subscriptions","organizations_url":"https://api.github.com/users/MaxRink/orgs","repos_url":"https://api.github.com/users/MaxRink/repos","events_url":"https://api.github.com/users/MaxRink/events{/privacy}","received_events_url":"https://api.github.com/users/MaxRink/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:18:31Z","updated_at":"2015-01-01T15:18:31Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/MaxRink/seat/pulls/2/commits","review_comments_url":"https://api.github.com/repos/MaxRink/seat/pulls/2/comments","review_comment_url":"https://api.github.com/repos/MaxRink/seat/pulls/comments/{number}","comments_url":"https://api.github.com/repos/MaxRink/seat/issues/2/comments","statuses_url":"https://api.github.com/repos/MaxRink/seat/statuses/7a23837e95944052db2f77c5f69b8ce7c1cf01f4","head":{"label":"LunarchildEU:corporation-sec-titles","ref":"corporation-sec-titles","sha":"7a23837e95944052db2f77c5f69b8ce7c1cf01f4","user":{"login":"LunarchildEU","id":2454083,"avatar_url":"https://avatars.githubusercontent.com/u/2454083?v=3","gravatar_id":"","url":"https://api.github.com/users/LunarchildEU","html_url":"https://github.com/LunarchildEU","followers_url":"https://api.github.com/users/LunarchildEU/followers","following_url":"https://api.github.com/users/LunarchildEU/following{/other_user}","gists_url":"https://api.github.com/users/LunarchildEU/gists{/gist_id}","starred_url":"https://api.github.com/users/LunarchildEU/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/LunarchildEU/subscriptions","organizations_url":"https://api.github.com/users/LunarchildEU/orgs","repos_url":"https://api.github.com/users/LunarchildEU/repos","events_url":"https://api.github.com/users/LunarchildEU/events{/privacy}","received_events_url":"https://api.github.com/users/LunarchildEU/received_events","type":"User","site_admin":false},"repo":{"id":19405926,"name":"seat","full_name":"LunarchildEU/seat","owner":{"login":"LunarchildEU","id":2454083,"avatar_url":"https://avatars.githubusercontent.com/u/2454083?v=3","gravatar_id":"","url":"https://api.github.com/users/LunarchildEU","html_url":"https://github.com/LunarchildEU","followers_url":"https://api.github.com/users/LunarchildEU/followers","following_url":"https://api.github.com/users/LunarchildEU/following{/other_user}","gists_url":"https://api.github.com/users/LunarchildEU/gists{/gist_id}","starred_url":"https://api.github.com/users/LunarchildEU/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/LunarchildEU/subscriptions","organizations_url":"https://api.github.com/users/LunarchildEU/orgs","repos_url":"https://api.github.com/users/LunarchildEU/repos","events_url":"https://api.github.com/users/LunarchildEU/events{/privacy}","received_events_url":"https://api.github.com/users/LunarchildEU/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/LunarchildEU/seat","description":"Simple (or Stupid) EVE Online API Tool","fork":true,"url":"https://api.github.com/repos/LunarchildEU/seat","forks_url":"https://api.github.com/repos/LunarchildEU/seat/forks","keys_url":"https://api.github.com/repos/LunarchildEU/seat/keys{/key_id}","collaborators_url":"https://api.github.com/repos/LunarchildEU/seat/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/LunarchildEU/seat/teams","hooks_url":"https://api.github.com/repos/LunarchildEU/seat/hooks","issue_events_url":"https://api.github.com/repos/LunarchildEU/seat/issues/events{/number}","events_url":"https://api.github.com/repos/LunarchildEU/seat/events","assignees_url":"https://api.github.com/repos/LunarchildEU/seat/assignees{/user}","branches_url":"https://api.github.com/repos/LunarchildEU/seat/branches{/branch}","tags_url":"https://api.github.com/repos/LunarchildEU/seat/tags","blobs_url":"https://api.github.com/repos/LunarchildEU/seat/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/LunarchildEU/seat/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/LunarchildEU/seat/git/refs{/sha}","trees_url":"https://api.github.com/repos/LunarchildEU/seat/git/trees{/sha}","statuses_url":"https://api.github.com/repos/LunarchildEU/seat/statuses/{sha}","languages_url":"https://api.github.com/repos/LunarchildEU/seat/languages","stargazers_url":"https://api.github.com/repos/LunarchildEU/seat/stargazers","contributors_url":"https://api.github.com/repos/LunarchildEU/seat/contributors","subscribers_url":"https://api.github.com/repos/LunarchildEU/seat/subscribers","subscription_url":"https://api.github.com/repos/LunarchildEU/seat/subscription","commits_url":"https://api.github.com/repos/LunarchildEU/seat/commits{/sha}","git_commits_url":"https://api.github.com/repos/LunarchildEU/seat/git/commits{/sha}","comments_url":"https://api.github.com/repos/LunarchildEU/seat/comments{/number}","issue_comment_url":"https://api.github.com/repos/LunarchildEU/seat/issues/comments/{number}","contents_url":"https://api.github.com/repos/LunarchildEU/seat/contents/{+path}","compare_url":"https://api.github.com/repos/LunarchildEU/seat/compare/{base}...{head}","merges_url":"https://api.github.com/repos/LunarchildEU/seat/merges","archive_url":"https://api.github.com/repos/LunarchildEU/seat/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/LunarchildEU/seat/downloads","issues_url":"https://api.github.com/repos/LunarchildEU/seat/issues{/number}","pulls_url":"https://api.github.com/repos/LunarchildEU/seat/pulls{/number}","milestones_url":"https://api.github.com/repos/LunarchildEU/seat/milestones{/number}","notifications_url":"https://api.github.com/repos/LunarchildEU/seat/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/LunarchildEU/seat/labels{/name}","releases_url":"https://api.github.com/repos/LunarchildEU/seat/releases{/id}","created_at":"2014-05-03T15:29:59Z","updated_at":"2014-12-31T18:12:05Z","pushed_at":"2014-12-31T21:01:11Z","git_url":"git://github.com/LunarchildEU/seat.git","ssh_url":"git@github.com:LunarchildEU/seat.git","clone_url":"https://github.com/LunarchildEU/seat.git","svn_url":"https://github.com/LunarchildEU/seat","homepage":null,"size":2967,"stargazers_count":0,"watchers_count":0,"language":"PHP","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":"dev"}},"base":{"label":"MaxRink:master","ref":"master","sha":"62d517153a9ff700bf4cd6884a709b5bc048c041","user":{"login":"MaxRink","id":4894735,"avatar_url":"https://avatars.githubusercontent.com/u/4894735?v=3","gravatar_id":"","url":"https://api.github.com/users/MaxRink","html_url":"https://github.com/MaxRink","followers_url":"https://api.github.com/users/MaxRink/followers","following_url":"https://api.github.com/users/MaxRink/following{/other_user}","gists_url":"https://api.github.com/users/MaxRink/gists{/gist_id}","starred_url":"https://api.github.com/users/MaxRink/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MaxRink/subscriptions","organizations_url":"https://api.github.com/users/MaxRink/orgs","repos_url":"https://api.github.com/users/MaxRink/repos","events_url":"https://api.github.com/users/MaxRink/events{/privacy}","received_events_url":"https://api.github.com/users/MaxRink/received_events","type":"User","site_admin":false},"repo":{"id":28688863,"name":"seat","full_name":"MaxRink/seat","owner":{"login":"MaxRink","id":4894735,"avatar_url":"https://avatars.githubusercontent.com/u/4894735?v=3","gravatar_id":"","url":"https://api.github.com/users/MaxRink","html_url":"https://github.com/MaxRink","followers_url":"https://api.github.com/users/MaxRink/followers","following_url":"https://api.github.com/users/MaxRink/following{/other_user}","gists_url":"https://api.github.com/users/MaxRink/gists{/gist_id}","starred_url":"https://api.github.com/users/MaxRink/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MaxRink/subscriptions","organizations_url":"https://api.github.com/users/MaxRink/orgs","repos_url":"https://api.github.com/users/MaxRink/repos","events_url":"https://api.github.com/users/MaxRink/events{/privacy}","received_events_url":"https://api.github.com/users/MaxRink/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/MaxRink/seat","description":"Simple (or Stupid) EVE Online API Tool","fork":true,"url":"https://api.github.com/repos/MaxRink/seat","forks_url":"https://api.github.com/repos/MaxRink/seat/forks","keys_url":"https://api.github.com/repos/MaxRink/seat/keys{/key_id}","collaborators_url":"https://api.github.com/repos/MaxRink/seat/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/MaxRink/seat/teams","hooks_url":"https://api.github.com/repos/MaxRink/seat/hooks","issue_events_url":"https://api.github.com/repos/MaxRink/seat/issues/events{/number}","events_url":"https://api.github.com/repos/MaxRink/seat/events","assignees_url":"https://api.github.com/repos/MaxRink/seat/assignees{/user}","branches_url":"https://api.github.com/repos/MaxRink/seat/branches{/branch}","tags_url":"https://api.github.com/repos/MaxRink/seat/tags","blobs_url":"https://api.github.com/repos/MaxRink/seat/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/MaxRink/seat/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/MaxRink/seat/git/refs{/sha}","trees_url":"https://api.github.com/repos/MaxRink/seat/git/trees{/sha}","statuses_url":"https://api.github.com/repos/MaxRink/seat/statuses/{sha}","languages_url":"https://api.github.com/repos/MaxRink/seat/languages","stargazers_url":"https://api.github.com/repos/MaxRink/seat/stargazers","contributors_url":"https://api.github.com/repos/MaxRink/seat/contributors","subscribers_url":"https://api.github.com/repos/MaxRink/seat/subscribers","subscription_url":"https://api.github.com/repos/MaxRink/seat/subscription","commits_url":"https://api.github.com/repos/MaxRink/seat/commits{/sha}","git_commits_url":"https://api.github.com/repos/MaxRink/seat/git/commits{/sha}","comments_url":"https://api.github.com/repos/MaxRink/seat/comments{/number}","issue_comment_url":"https://api.github.com/repos/MaxRink/seat/issues/comments/{number}","contents_url":"https://api.github.com/repos/MaxRink/seat/contents/{+path}","compare_url":"https://api.github.com/repos/MaxRink/seat/compare/{base}...{head}","merges_url":"https://api.github.com/repos/MaxRink/seat/merges","archive_url":"https://api.github.com/repos/MaxRink/seat/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/MaxRink/seat/downloads","issues_url":"https://api.github.com/repos/MaxRink/seat/issues{/number}","pulls_url":"https://api.github.com/repos/MaxRink/seat/pulls{/number}","milestones_url":"https://api.github.com/repos/MaxRink/seat/milestones{/number}","notifications_url":"https://api.github.com/repos/MaxRink/seat/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/MaxRink/seat/labels{/name}","releases_url":"https://api.github.com/repos/MaxRink/seat/releases{/id}","created_at":"2015-01-01T15:14:05Z","updated_at":"2015-01-01T15:14:07Z","pushed_at":"2014-12-30T19:06:49Z","git_url":"git://github.com/MaxRink/seat.git","ssh_url":"git@github.com:MaxRink/seat.git","clone_url":"https://github.com/MaxRink/seat.git","svn_url":"https://github.com/MaxRink/seat","homepage":"http://eve-seat.github.io/seat","size":5303,"stargazers_count":0,"watchers_count":0,"language":"PHP","has_issues":false,"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/MaxRink/seat/pulls/2"},"html":{"href":"https://github.com/MaxRink/seat/pull/2"},"issue":{"href":"https://api.github.com/repos/MaxRink/seat/issues/2"},"comments":{"href":"https://api.github.com/repos/MaxRink/seat/issues/2/comments"},"review_comments":{"href":"https://api.github.com/repos/MaxRink/seat/pulls/2/comments"},"review_comment":{"href":"https://api.github.com/repos/MaxRink/seat/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/MaxRink/seat/pulls/2/commits"},"statuses":{"href":"https://api.github.com/repos/MaxRink/seat/statuses/7a23837e95944052db2f77c5f69b8ce7c1cf01f4"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":9,"additions":700,"deletions":12,"changed_files":17}},"public":true,"created_at":"2015-01-01T15:18:31Z"} +,{"id":"2489659639","type":"CreateEvent","actor":{"id":10364794,"login":"usbookmarket","gravatar_id":"","url":"https://api.github.com/users/usbookmarket","avatar_url":"https://avatars.githubusercontent.com/u/10364794?"},"repo":{"id":28688941,"name":"usbookmarket/Documents","url":"https://api.github.com/repos/usbookmarket/Documents"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":null,"pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:31Z"} +,{"id":"2489659640","type":"GollumEvent","actor":{"id":89915,"login":"somenxavier","gravatar_id":"","url":"https://api.github.com/users/somenxavier","avatar_url":"https://avatars.githubusercontent.com/u/89915?"},"repo":{"id":24139380,"name":"somenxavier/falco","url":"https://api.github.com/repos/somenxavier/falco"},"payload":{"pages":[{"page_name":"Events-log","title":"Events log","summary":null,"action":"edited","sha":"b0b2e3cc47f527072b6e96eb88f77efd56796e4c","html_url":"https://github.com/somenxavier/falco/wiki/Events-log"}]},"public":true,"created_at":"2015-01-01T15:18:31Z"} +,{"id":"2489659641","type":"PushEvent","actor":{"id":1906511,"login":"jayhansim","gravatar_id":"","url":"https://api.github.com/users/jayhansim","avatar_url":"https://avatars.githubusercontent.com/u/1906511?"},"repo":{"id":23688615,"name":"jayhansim/jayhansim.github.io","url":"https://api.github.com/repos/jayhansim/jayhansim.github.io"},"payload":{"push_id":536867844,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"11b13911ed74e40a08a281d4df338c5c754f8e15","before":"4f1113d979ba6de9bec644244ec6060e50cda850","commits":[{"sha":"11b13911ed74e40a08a281d4df338c5c754f8e15","author":{"email":"b67f9ef2e7be67c73b8f1aeed2b65ba071e0331b@gmail.com","name":"Jayhan Sim"},"message":"update","distinct":true,"url":"https://api.github.com/repos/jayhansim/jayhansim.github.io/commits/11b13911ed74e40a08a281d4df338c5c754f8e15"}]},"public":true,"created_at":"2015-01-01T15:18:31Z"} +,{"id":"2489659642","type":"PushEvent","actor":{"id":5880601,"login":"LVince","gravatar_id":"","url":"https://api.github.com/users/LVince","avatar_url":"https://avatars.githubusercontent.com/u/5880601?"},"repo":{"id":24672280,"name":"VT1-InterfaceDeSaisieWeb/ProjetR-D","url":"https://api.github.com/repos/VT1-InterfaceDeSaisieWeb/ProjetR-D"},"payload":{"push_id":536867847,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f278baf0912e5a036bc04f2c293d5711c3190ae1","before":"74347dc8804fdd6a52ec2bb0ea15f4f1cfc148d4","commits":[{"sha":"f278baf0912e5a036bc04f2c293d5711c3190ae1","author":{"email":"3c81d6b44dbfb8d80e5ebd6a16bc32da520ad22f@hotmail.com","name":"Lainy VINCENT"},"message":"Petite correction de code sur le fichier Index.twig car sur la dernière version que j'ai récupéré, les formulaires (matière et enseignement) n'apparaissaient plus. Ceci était dû à une dupplication du code des formulaires.\nCorrection d'une petite faute de frappe sur la page de login.","distinct":true,"url":"https://api.github.com/repos/VT1-InterfaceDeSaisieWeb/ProjetR-D/commits/f278baf0912e5a036bc04f2c293d5711c3190ae1"}]},"public":true,"created_at":"2015-01-01T15:18:32Z","org":{"id":8982324,"login":"VT1-InterfaceDeSaisieWeb","gravatar_id":"","url":"https://api.github.com/orgs/VT1-InterfaceDeSaisieWeb","avatar_url":"https://avatars.githubusercontent.com/u/8982324?"}} +,{"id":"2489659647","type":"CreateEvent","actor":{"id":6641660,"login":"purnendu-roy","gravatar_id":"","url":"https://api.github.com/users/purnendu-roy","avatar_url":"https://avatars.githubusercontent.com/u/6641660?"},"repo":{"id":28688842,"name":"purnendu-roy/swe","url":"https://api.github.com/repos/purnendu-roy/swe"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"4th sem project","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:33Z"} +,{"id":"2489659654","type":"WatchEvent","actor":{"id":592840,"login":"dmitriko","gravatar_id":"","url":"https://api.github.com/users/dmitriko","avatar_url":"https://avatars.githubusercontent.com/u/592840?"},"repo":{"id":23924195,"name":"benanne/Lasagne","url":"https://api.github.com/repos/benanne/Lasagne"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:18:35Z"} +,{"id":"2489659655","type":"WatchEvent","actor":{"id":61002,"login":"devosc","gravatar_id":"","url":"https://api.github.com/users/devosc","avatar_url":"https://avatars.githubusercontent.com/u/61002?"},"repo":{"id":21496548,"name":"Halleck45/PhpMetrics-jetbrains","url":"https://api.github.com/repos/Halleck45/PhpMetrics-jetbrains"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:18:35Z"} +,{"id":"2489659657","type":"PushEvent","actor":{"id":1593511,"login":"yzf","gravatar_id":"","url":"https://api.github.com/users/yzf","avatar_url":"https://avatars.githubusercontent.com/u/1593511?"},"repo":{"id":28538579,"name":"yzf/VimConfig","url":"https://api.github.com/repos/yzf/VimConfig"},"payload":{"push_id":536867852,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4f3bc316a49c0be7dcd21899a7233926ec80286b","before":"5574b1351ef02d53702842dd50ceda1dc419bf9c","commits":[{"sha":"4f3bc316a49c0be7dcd21899a7233926ec80286b","author":{"email":"1e9dfc7599846723fc079f863ef5e66f36e67578@qq.com","name":"yzf"},"message":"Delete the old color schemes' files as we use plugin 'vim-colorschemes' now","distinct":true,"url":"https://api.github.com/repos/yzf/VimConfig/commits/4f3bc316a49c0be7dcd21899a7233926ec80286b"}]},"public":true,"created_at":"2015-01-01T15:18:35Z"} +,{"id":"2489659658","type":"PushEvent","actor":{"id":534245,"login":"toopay","gravatar_id":"","url":"https://api.github.com/users/toopay","avatar_url":"https://avatars.githubusercontent.com/u/534245?"},"repo":{"id":28684236,"name":"toopay/toopay.github.io","url":"https://api.github.com/repos/toopay/toopay.github.io"},"payload":{"push_id":536867853,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"62287f1fc42bd38741b3eb083fd0b72bb6844fac","before":"5e19b14717dfd6d254ddc8160a5f812ec68a8b08","commits":[{"sha":"62287f1fc42bd38741b3eb083fd0b72bb6844fac","author":{"email":"a09aa4f83f3ba395eae09fa61c86d43902f6e74e@taufanaditya.com","name":"Taufan Aditya"},"message":"Jan post [continued]","distinct":true,"url":"https://api.github.com/repos/toopay/toopay.github.io/commits/62287f1fc42bd38741b3eb083fd0b72bb6844fac"}]},"public":true,"created_at":"2015-01-01T15:18:35Z"} +,{"id":"2489659660","type":"PushEvent","actor":{"id":10223630,"login":"tanvirpathan","gravatar_id":"","url":"https://api.github.com/users/tanvirpathan","avatar_url":"https://avatars.githubusercontent.com/u/10223630?"},"repo":{"id":28428571,"name":"tanvirpathan/tanvirpathan.github.io","url":"https://api.github.com/repos/tanvirpathan/tanvirpathan.github.io"},"payload":{"push_id":536867854,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6e6f0dac3a0eaa30e1cdb5abe97fbbc75661653c","before":"fbe9d6a32788419b0f8fe72ae4ba46e655f49528","commits":[{"sha":"6e6f0dac3a0eaa30e1cdb5abe97fbbc75661653c","author":{"email":"7093d3eba14a0fb8b43f4d5466a49ee84493fcbd@gmail.com","name":"tanvirpathan"},"message":"mobile sucks","distinct":true,"url":"https://api.github.com/repos/tanvirpathan/tanvirpathan.github.io/commits/6e6f0dac3a0eaa30e1cdb5abe97fbbc75661653c"}]},"public":true,"created_at":"2015-01-01T15:18:36Z"} +,{"id":"2489659661","type":"PushEvent","actor":{"id":1270024,"login":"jfoug","gravatar_id":"","url":"https://api.github.com/users/jfoug","avatar_url":"https://avatars.githubusercontent.com/u/1270024?"},"repo":{"id":4683915,"name":"magnumripper/jtrTestSuite","url":"https://api.github.com/repos/magnumripper/jtrTestSuite"},"payload":{"push_id":536867855,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a61ef88c83f6e55a362ac2b1fc60381cc3eb26fb","before":"9b64721e5f4bbe44f16e60e2c608bb7f73c64832","commits":[{"sha":"a61ef88c83f6e55a362ac2b1fc60381cc3eb26fb","author":{"email":"ae60f80a005c6c1b805ce7dd9a2d378668639e1d@cox.net","name":"jfoug"},"message":"-internal changes. Also a missed error +=1 case","distinct":true,"url":"https://api.github.com/repos/magnumripper/jtrTestSuite/commits/a61ef88c83f6e55a362ac2b1fc60381cc3eb26fb"}]},"public":true,"created_at":"2015-01-01T15:18:36Z"} +,{"id":"2489659662","type":"PushEvent","actor":{"id":3111800,"login":"NCCastillo","gravatar_id":"","url":"https://api.github.com/users/NCCastillo","avatar_url":"https://avatars.githubusercontent.com/u/3111800?"},"repo":{"id":28539496,"name":"NCCastillo/tdd_by_example","url":"https://api.github.com/repos/NCCastillo/tdd_by_example"},"payload":{"push_id":536867856,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2b26623b107d5de2c466508e23331260e328d8d6","before":"191af92566aea4a21df622f803169ceebe49a107","commits":[{"sha":"2b26623b107d5de2c466508e23331260e328d8d6","author":{"email":"caab7f8885797a0ffa7a9a0888bd4c425e1ba4b9@izea.com","name":"Nestor Castillo"},"message":"Chapter 10, reverting changes to Franc#times from previous experiment.","distinct":true,"url":"https://api.github.com/repos/NCCastillo/tdd_by_example/commits/2b26623b107d5de2c466508e23331260e328d8d6"}]},"public":true,"created_at":"2015-01-01T15:18:36Z"} +,{"id":"2489659664","type":"WatchEvent","actor":{"id":261418,"login":"send2vinnie","gravatar_id":"","url":"https://api.github.com/users/send2vinnie","avatar_url":"https://avatars.githubusercontent.com/u/261418?"},"repo":{"id":7769821,"name":"HenrikJoreteg/SimpleWebRTC","url":"https://api.github.com/repos/HenrikJoreteg/SimpleWebRTC"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:18:36Z"} +,{"id":"2489659667","type":"IssuesEvent","actor":{"id":4481414,"login":"velnias75","gravatar_id":"","url":"https://api.github.com/users/velnias75","avatar_url":"https://avatars.githubusercontent.com/u/4481414?"},"repo":{"id":25719782,"name":"velnias75/NetMauMau","url":"https://api.github.com/repos/velnias75/NetMauMau"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/velnias75/NetMauMau/issues/14","labels_url":"https://api.github.com/repos/velnias75/NetMauMau/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/velnias75/NetMauMau/issues/14/comments","events_url":"https://api.github.com/repos/velnias75/NetMauMau/issues/14/events","html_url":"https://github.com/velnias75/NetMauMau/issues/14","id":53195808,"number":14,"title":"Enhance ace rounds to Ace/Queen/King rounds [$5]","user":{"login":"velnias75","id":4481414,"avatar_url":"https://avatars.githubusercontent.com/u/4481414?v=3","gravatar_id":"","url":"https://api.github.com/users/velnias75","html_url":"https://github.com/velnias75","followers_url":"https://api.github.com/users/velnias75/followers","following_url":"https://api.github.com/users/velnias75/following{/other_user}","gists_url":"https://api.github.com/users/velnias75/gists{/gist_id}","starred_url":"https://api.github.com/users/velnias75/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/velnias75/subscriptions","organizations_url":"https://api.github.com/users/velnias75/orgs","repos_url":"https://api.github.com/users/velnias75/repos","events_url":"https://api.github.com/users/velnias75/events{/privacy}","received_events_url":"https://api.github.com/users/velnias75/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/velnias75/NetMauMau/labels/bounty","name":"bounty","color":"129e5e"},{"url":"https://api.github.com/repos/velnias75/NetMauMau/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"closed","locked":false,"assignee":{"login":"velnias75","id":4481414,"avatar_url":"https://avatars.githubusercontent.com/u/4481414?v=3","gravatar_id":"","url":"https://api.github.com/users/velnias75","html_url":"https://github.com/velnias75","followers_url":"https://api.github.com/users/velnias75/followers","following_url":"https://api.github.com/users/velnias75/following{/other_user}","gists_url":"https://api.github.com/users/velnias75/gists{/gist_id}","starred_url":"https://api.github.com/users/velnias75/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/velnias75/subscriptions","organizations_url":"https://api.github.com/users/velnias75/orgs","repos_url":"https://api.github.com/users/velnias75/repos","events_url":"https://api.github.com/users/velnias75/events{/privacy}","received_events_url":"https://api.github.com/users/velnias75/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/velnias75/NetMauMau/milestones/3","labels_url":"https://api.github.com/repos/velnias75/NetMauMau/milestones/3/labels","id":915122,"number":3,"title":"0.8","description":"","creator":{"login":"velnias75","id":4481414,"avatar_url":"https://avatars.githubusercontent.com/u/4481414?v=3","gravatar_id":"","url":"https://api.github.com/users/velnias75","html_url":"https://github.com/velnias75","followers_url":"https://api.github.com/users/velnias75/followers","following_url":"https://api.github.com/users/velnias75/following{/other_user}","gists_url":"https://api.github.com/users/velnias75/gists{/gist_id}","starred_url":"https://api.github.com/users/velnias75/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/velnias75/subscriptions","organizations_url":"https://api.github.com/users/velnias75/orgs","repos_url":"https://api.github.com/users/velnias75/repos","events_url":"https://api.github.com/users/velnias75/events{/privacy}","received_events_url":"https://api.github.com/users/velnias75/received_events","type":"User","site_admin":false},"open_issues":0,"closed_issues":4,"state":"open","created_at":"2014-12-26T11:33:52Z","updated_at":"2015-01-01T15:18:37Z","due_on":"2015-01-02T23:00:00Z","closed_at":null},"comments":0,"created_at":"2014-12-31T18:07:00Z","updated_at":"2015-01-01T15:18:37Z","closed_at":"2015-01-01T15:18:37Z","body":"See on [Wikipedia](http://de.wikipedia.org/wiki/Mau-Mau_%28Kartenspiel%29#Varianten) (in German)\r\n\r\n\r\n\r\n---\r\nThere is a **[$5 open bounty](https://www.bountysource.com/issues/7412583-enhance-ace-rounds-to-ace-queen-king-rounds?utm_campaign=plugin&utm_content=tracker%2F7581728&utm_medium=issues&utm_source=github)** on this issue. Add to the bounty at [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F7581728&utm_medium=issues&utm_source=github).\r\n"}},"public":true,"created_at":"2015-01-01T15:18:37Z"} +,{"id":"2489659669","type":"PushEvent","actor":{"id":1191465,"login":"Christopherpl","gravatar_id":"","url":"https://api.github.com/users/Christopherpl","avatar_url":"https://avatars.githubusercontent.com/u/1191465?"},"repo":{"id":28539930,"name":"Christopherpl/finalfmt","url":"https://api.github.com/repos/Christopherpl/finalfmt"},"payload":{"push_id":536867860,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3fef2d5834bb6591463a560794dd5437e87c6790","before":"eb54c7e80c1e87b64a93096b05a894b53fcc6c73","commits":[{"sha":"3fef2d5834bb6591463a560794dd5437e87c6790","author":{"email":"63c212c346219f48a3b94b47fb2fa2f5ae58b3b0@gmail.com","name":"christopherpl"},"message":"more php","distinct":true,"url":"https://api.github.com/repos/Christopherpl/finalfmt/commits/3fef2d5834bb6591463a560794dd5437e87c6790"}]},"public":true,"created_at":"2015-01-01T15:18:37Z"} +,{"id":"2489659670","type":"IssueCommentEvent","actor":{"id":4788347,"login":"TheAnthonyNL","gravatar_id":"","url":"https://api.github.com/users/TheAnthonyNL","avatar_url":"https://avatars.githubusercontent.com/u/4788347?"},"repo":{"id":8165636,"name":"SteamDatabase/SteamDatabase","url":"https://api.github.com/repos/SteamDatabase/SteamDatabase"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/SteamDatabase/SteamDatabase/issues/295","labels_url":"https://api.github.com/repos/SteamDatabase/SteamDatabase/issues/295/labels{/name}","comments_url":"https://api.github.com/repos/SteamDatabase/SteamDatabase/issues/295/comments","events_url":"https://api.github.com/repos/SteamDatabase/SteamDatabase/issues/295/events","html_url":"https://github.com/SteamDatabase/SteamDatabase/issues/295","id":53220888,"number":295,"title":"SteamDatabaseBackend pooling issue","user":{"login":"TheAnthonyNL","id":4788347,"avatar_url":"https://avatars.githubusercontent.com/u/4788347?v=3","gravatar_id":"","url":"https://api.github.com/users/TheAnthonyNL","html_url":"https://github.com/TheAnthonyNL","followers_url":"https://api.github.com/users/TheAnthonyNL/followers","following_url":"https://api.github.com/users/TheAnthonyNL/following{/other_user}","gists_url":"https://api.github.com/users/TheAnthonyNL/gists{/gist_id}","starred_url":"https://api.github.com/users/TheAnthonyNL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TheAnthonyNL/subscriptions","organizations_url":"https://api.github.com/users/TheAnthonyNL/orgs","repos_url":"https://api.github.com/users/TheAnthonyNL/repos","events_url":"https://api.github.com/users/TheAnthonyNL/events{/privacy}","received_events_url":"https://api.github.com/users/TheAnthonyNL/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2015-01-01T14:36:20Z","updated_at":"2015-01-01T15:18:37Z","closed_at":null,"body":"The timeout period elapsed prior to obtaining a connection from the pool. \r\n\r\nThis may have occurred because all pooled connections were in use and max pool size was reached.\r\n\r\nAny idea how to solve this?"},"comment":{"url":"https://api.github.com/repos/SteamDatabase/SteamDatabase/issues/comments/68488886","html_url":"https://github.com/SteamDatabase/SteamDatabase/issues/295#issuecomment-68488886","issue_url":"https://api.github.com/repos/SteamDatabase/SteamDatabase/issues/295","id":68488886,"user":{"login":"TheAnthonyNL","id":4788347,"avatar_url":"https://avatars.githubusercontent.com/u/4788347?v=3","gravatar_id":"","url":"https://api.github.com/users/TheAnthonyNL","html_url":"https://github.com/TheAnthonyNL","followers_url":"https://api.github.com/users/TheAnthonyNL/followers","following_url":"https://api.github.com/users/TheAnthonyNL/following{/other_user}","gists_url":"https://api.github.com/users/TheAnthonyNL/gists{/gist_id}","starred_url":"https://api.github.com/users/TheAnthonyNL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TheAnthonyNL/subscriptions","organizations_url":"https://api.github.com/users/TheAnthonyNL/orgs","repos_url":"https://api.github.com/users/TheAnthonyNL/repos","events_url":"https://api.github.com/users/TheAnthonyNL/events{/privacy}","received_events_url":"https://api.github.com/users/TheAnthonyNL/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:18:37Z","updated_at":"2015-01-01T15:18:37Z","body":"MySql.Data.MySqlClient.MySqlException was unhandled by user code\r\n HResult=-2147467259\r\n Message=error connecting: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached.\r\n Source=MySql.Data\r\n ErrorCode=-2147467259\r\n Number=0\r\n StackTrace:\r\n bij MySql.Data.MySqlClient.MySqlPool.GetConnection()\r\n bij MySql.Data.MySqlClient.MySqlConnection.Open()\r\n bij MySql.Data.MySqlClient.MySqlHelper.ExecuteReader(String connectionString, String commandText, MySqlParameter[] commandParameters)\r\n bij SteamDatabaseBackend.DbWorker.ExecuteReader(String text, MySqlParameter[] parameters) in c:\\Users\\A\\Desktop\\SteamDatabaseBackend-master\\Util\\DbWorker.cs:regel 25\r\n bij SteamDatabaseBackend.SubProcessor.Process(PICSProductInfo productInfo) in c:\\Users\\A\\Desktop\\SteamDatabaseBackend-master\\Processors\\SubProcessor.cs:regel 42\r\n bij SteamDatabaseBackend.PICSProductInfo.<>c__DisplayClasse.<b__3>d__17.MoveNext() in c:\\Users\\A\\Desktop\\SteamDatabaseBackend-master\\Steam\\PICSProductInfo.cs:regel 86\r\n InnerException: \r\n"}},"public":true,"created_at":"2015-01-01T15:18:37Z","org":{"id":3866120,"login":"SteamDatabase","gravatar_id":"","url":"https://api.github.com/orgs/SteamDatabase","avatar_url":"https://avatars.githubusercontent.com/u/3866120?"}} +,{"id":"2489659673","type":"PushEvent","actor":{"id":1216105,"login":"ryujiin","gravatar_id":"","url":"https://api.github.com/users/ryujiin","avatar_url":"https://avatars.githubusercontent.com/u/1216105?"},"repo":{"id":27490688,"name":"ryujiin/tiendaloviz","url":"https://api.github.com/repos/ryujiin/tiendaloviz"},"payload":{"push_id":536867863,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fb4f4bc5680a43d027e399a55d651a21ce1a3a40","before":"a27872a8d898382e1c9e7bf99c3dc9d3607c009f","commits":[{"sha":"fb4f4bc5680a43d027e399a55d651a21ce1a3a40","author":{"email":"65e734025d09d334bd2dc6fab4004cb0985797b9@gmail.com","name":"ryujiin"},"message":"lista pa gunicorn","distinct":true,"url":"https://api.github.com/repos/ryujiin/tiendaloviz/commits/fb4f4bc5680a43d027e399a55d651a21ce1a3a40"}]},"public":true,"created_at":"2015-01-01T15:18:38Z"} +,{"id":"2489659674","type":"PushEvent","actor":{"id":4121420,"login":"tom--bo","gravatar_id":"","url":"https://api.github.com/users/tom--bo","avatar_url":"https://avatars.githubusercontent.com/u/4121420?"},"repo":{"id":28679530,"name":"tom--bo/spider","url":"https://api.github.com/repos/tom--bo/spider"},"payload":{"push_id":536867864,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"f437054f5d6bd109e310622e0c9f2b6e078c5d84","before":"9231767395e098209a2269be1db4b9314a3ca7a7","commits":[{"sha":"6b8b5611530b73434c03aee253be783d5fc0c916","author":{"email":"f0c3638a075c5896cd4d0620e32a9d2417cc22b6@gmail.com","name":"tom--bo"},"message":"階層の強制","distinct":true,"url":"https://api.github.com/repos/tom--bo/spider/commits/6b8b5611530b73434c03aee253be783d5fc0c916"},{"sha":"f437054f5d6bd109e310622e0c9f2b6e078c5d84","author":{"email":"f0c3638a075c5896cd4d0620e32a9d2417cc22b6@gmail.com","name":"tom--bo"},"message":"navitime 自転車","distinct":true,"url":"https://api.github.com/repos/tom--bo/spider/commits/f437054f5d6bd109e310622e0c9f2b6e078c5d84"}]},"public":true,"created_at":"2015-01-01T15:18:38Z"} +,{"id":"2489659678","type":"IssuesEvent","actor":{"id":3893707,"login":"skyhills13","gravatar_id":"","url":"https://api.github.com/users/skyhills13","avatar_url":"https://avatars.githubusercontent.com/u/3893707?"},"repo":{"id":23691347,"name":"skyhills13/PhotoMosaic","url":"https://api.github.com/repos/skyhills13/PhotoMosaic"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/skyhills13/PhotoMosaic/issues/225","labels_url":"https://api.github.com/repos/skyhills13/PhotoMosaic/issues/225/labels{/name}","comments_url":"https://api.github.com/repos/skyhills13/PhotoMosaic/issues/225/comments","events_url":"https://api.github.com/repos/skyhills13/PhotoMosaic/issues/225/events","html_url":"https://github.com/skyhills13/PhotoMosaic/issues/225","id":53221702,"number":225,"title":"MosaicHandler의 judgeOrientation 메소드를 객체에 위임","user":{"login":"skyhills13","id":3893707,"avatar_url":"https://avatars.githubusercontent.com/u/3893707?v=3","gravatar_id":"","url":"https://api.github.com/users/skyhills13","html_url":"https://github.com/skyhills13","followers_url":"https://api.github.com/users/skyhills13/followers","following_url":"https://api.github.com/users/skyhills13/following{/other_user}","gists_url":"https://api.github.com/users/skyhills13/gists{/gist_id}","starred_url":"https://api.github.com/users/skyhills13/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skyhills13/subscriptions","organizations_url":"https://api.github.com/users/skyhills13/orgs","repos_url":"https://api.github.com/users/skyhills13/repos","events_url":"https://api.github.com/users/skyhills13/events{/privacy}","received_events_url":"https://api.github.com/users/skyhills13/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/skyhills13/PhotoMosaic/labels/%E2%98%85","name":"★","color":"e11d21"},{"url":"https://api.github.com/repos/skyhills13/PhotoMosaic/labels/%EA%B0%9C%EC%84%A0","name":"개선","color":"009800"},{"url":"https://api.github.com/repos/skyhills13/PhotoMosaic/labels/%EB%B6%84%EC%95%BC%3A+Server","name":"분야: Server","color":"fbca04"}],"state":"open","locked":false,"assignee":{"login":"skyhills13","id":3893707,"avatar_url":"https://avatars.githubusercontent.com/u/3893707?v=3","gravatar_id":"","url":"https://api.github.com/users/skyhills13","html_url":"https://github.com/skyhills13","followers_url":"https://api.github.com/users/skyhills13/followers","following_url":"https://api.github.com/users/skyhills13/following{/other_user}","gists_url":"https://api.github.com/users/skyhills13/gists{/gist_id}","starred_url":"https://api.github.com/users/skyhills13/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skyhills13/subscriptions","organizations_url":"https://api.github.com/users/skyhills13/orgs","repos_url":"https://api.github.com/users/skyhills13/repos","events_url":"https://api.github.com/users/skyhills13/events{/privacy}","received_events_url":"https://api.github.com/users/skyhills13/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/skyhills13/PhotoMosaic/milestones/14","labels_url":"https://api.github.com/repos/skyhills13/PhotoMosaic/milestones/14/labels","id":919110,"number":14,"title":"Refactoring","description":"refactoring by skyhills13","creator":{"login":"skyhills13","id":3893707,"avatar_url":"https://avatars.githubusercontent.com/u/3893707?v=3","gravatar_id":"","url":"https://api.github.com/users/skyhills13","html_url":"https://github.com/skyhills13","followers_url":"https://api.github.com/users/skyhills13/followers","following_url":"https://api.github.com/users/skyhills13/following{/other_user}","gists_url":"https://api.github.com/users/skyhills13/gists{/gist_id}","starred_url":"https://api.github.com/users/skyhills13/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skyhills13/subscriptions","organizations_url":"https://api.github.com/users/skyhills13/orgs","repos_url":"https://api.github.com/users/skyhills13/repos","events_url":"https://api.github.com/users/skyhills13/events{/privacy}","received_events_url":"https://api.github.com/users/skyhills13/received_events","type":"User","site_admin":false},"open_issues":4,"closed_issues":1,"state":"open","created_at":"2015-01-01T14:39:31Z","updated_at":"2015-01-01T15:18:38Z","due_on":"2015-02-27T15:00:00Z","closed_at":null},"comments":0,"created_at":"2015-01-01T15:18:38Z","updated_at":"2015-01-01T15:18:38Z","closed_at":null,"body":"객체객체객체지향"}},"public":true,"created_at":"2015-01-01T15:18:38Z"} +,{"id":"2489659680","type":"PushEvent","actor":{"id":1049678,"login":"tkurki","gravatar_id":"","url":"https://api.github.com/users/tkurki","avatar_url":"https://avatars.githubusercontent.com/u/1049678?"},"repo":{"id":28259249,"name":"SignalK/instrumentpanel","url":"https://api.github.com/repos/SignalK/instrumentpanel"},"payload":{"push_id":536867866,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d62f7e92aa23733ec7f8cd3e5194876621c2473c","before":"e417afd3a4fae8c5154942c15d6e08c7a86bd09c","commits":[{"sha":"d62f7e92aa23733ec7f8cd3e5194876621c2473c","author":{"email":"1d594d9859d3af75ff1fded342cfcb9fd05d788b@iki.fi","name":"Teppo Kurki"},"message":"Add initial version of LeafletMap (wip)","distinct":true,"url":"https://api.github.com/repos/SignalK/instrumentpanel/commits/d62f7e92aa23733ec7f8cd3e5194876621c2473c"}]},"public":true,"created_at":"2015-01-01T15:18:38Z","org":{"id":7126740,"login":"SignalK","gravatar_id":"","url":"https://api.github.com/orgs/SignalK","avatar_url":"https://avatars.githubusercontent.com/u/7126740?"}} +,{"id":"2489659688","type":"CreateEvent","actor":{"id":4174092,"login":"adirhalely","gravatar_id":"","url":"https://api.github.com/users/adirhalely","avatar_url":"https://avatars.githubusercontent.com/u/4174092?"},"repo":{"id":28688946,"name":"adirhalely/.awesome","url":"https://api.github.com/repos/adirhalely/.awesome"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"My awesome WM directory","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:39Z"} +,{"id":"2489659693","type":"PushEvent","actor":{"id":1985040,"login":"adrelanos","gravatar_id":"","url":"https://api.github.com/users/adrelanos","avatar_url":"https://avatars.githubusercontent.com/u/1985040?"},"repo":{"id":21161528,"name":"adrelanos/whonixsetup","url":"https://api.github.com/repos/adrelanos/whonixsetup"},"payload":{"push_id":536867869,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7e75ad1c75cb9164d2485a4ccbb8619e75b34f83","before":"bf90b2a9888a87f1b497b416e2958323bea5a475","commits":[{"sha":"7e75ad1c75cb9164d2485a4ccbb8619e75b34f83","author":{"email":"5a50a88c5fa8d150d86d352032835284723dc86f@riseup.net","name":"Patrick Schleizer"},"message":"moved /etc/xdg/autostart/whonixsetup.desktop from whonixsetup to whonix-setup-wizard /etc/xdg/autostart/whonix-setup-wizard.desktop","distinct":true,"url":"https://api.github.com/repos/adrelanos/whonixsetup/commits/7e75ad1c75cb9164d2485a4ccbb8619e75b34f83"}]},"public":true,"created_at":"2015-01-01T15:18:40Z"} +,{"id":"2489659694","type":"PushEvent","actor":{"id":1985040,"login":"adrelanos","gravatar_id":"","url":"https://api.github.com/users/adrelanos","avatar_url":"https://avatars.githubusercontent.com/u/1985040?"},"repo":{"id":20359888,"name":"Whonix/whonixsetup","url":"https://api.github.com/repos/Whonix/whonixsetup"},"payload":{"push_id":536867870,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7e75ad1c75cb9164d2485a4ccbb8619e75b34f83","before":"bf90b2a9888a87f1b497b416e2958323bea5a475","commits":[{"sha":"7e75ad1c75cb9164d2485a4ccbb8619e75b34f83","author":{"email":"5a50a88c5fa8d150d86d352032835284723dc86f@riseup.net","name":"Patrick Schleizer"},"message":"moved /etc/xdg/autostart/whonixsetup.desktop from whonixsetup to whonix-setup-wizard /etc/xdg/autostart/whonix-setup-wizard.desktop","distinct":true,"url":"https://api.github.com/repos/Whonix/whonixsetup/commits/7e75ad1c75cb9164d2485a4ccbb8619e75b34f83"}]},"public":true,"created_at":"2015-01-01T15:18:40Z","org":{"id":4500165,"login":"Whonix","gravatar_id":"","url":"https://api.github.com/orgs/Whonix","avatar_url":"https://avatars.githubusercontent.com/u/4500165?"}} +,{"id":"2489659695","type":"PushEvent","actor":{"id":1552651,"login":"hermione521","gravatar_id":"","url":"https://api.github.com/users/hermione521","avatar_url":"https://avatars.githubusercontent.com/u/1552651?"},"repo":{"id":27213433,"name":"PM-XingYi/XingYi","url":"https://api.github.com/repos/PM-XingYi/XingYi"},"payload":{"push_id":536867871,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"a77e12e13eda5b34e1d5bc180c60a706382e25a8","before":"9d65db427f705921d4fcf272e625e5fc57d66bee","commits":[{"sha":"a77e12e13eda5b34e1d5bc180c60a706382e25a8","author":{"email":"1b0681a42dafbebbb20e1cb82d818d514c4417e5@gmail.com","name":"Hermione"},"message":"finish organiazation_project_expenditure","distinct":true,"url":"https://api.github.com/repos/PM-XingYi/XingYi/commits/a77e12e13eda5b34e1d5bc180c60a706382e25a8"}]},"public":true,"created_at":"2015-01-01T15:18:40Z","org":{"id":9973284,"login":"PM-XingYi","gravatar_id":"","url":"https://api.github.com/orgs/PM-XingYi","avatar_url":"https://avatars.githubusercontent.com/u/9973284?"}} +,{"id":"2489659698","type":"PushEvent","actor":{"id":5253278,"login":"yhfyhf","gravatar_id":"","url":"https://api.github.com/users/yhfyhf","avatar_url":"https://avatars.githubusercontent.com/u/5253278?"},"repo":{"id":28297509,"name":"yhfyhf/Wenwen","url":"https://api.github.com/repos/yhfyhf/Wenwen"},"payload":{"push_id":536867873,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c3c30e326908f9345e898e6fdf8c50604d49ae70","before":"abb79cb466ff16c9c7006145d75eb38065bfa00b","commits":[{"sha":"c3c30e326908f9345e898e6fdf8c50604d49ae70","author":{"email":"71c4a434a68850de99bdf7cf6cd8c32ea9d615fc@gmail.com","name":"yhfyhf"},"message":"update README","distinct":true,"url":"https://api.github.com/repos/yhfyhf/Wenwen/commits/c3c30e326908f9345e898e6fdf8c50604d49ae70"}]},"public":true,"created_at":"2015-01-01T15:18:41Z"} +,{"id":"2489659699","type":"PushEvent","actor":{"id":1456610,"login":"JamesWilko","gravatar_id":"","url":"https://api.github.com/users/JamesWilko","avatar_url":"https://avatars.githubusercontent.com/u/1456610?"},"repo":{"id":21642862,"name":"JamesWilko/GoonMod","url":"https://api.github.com/repos/JamesWilko/GoonMod"},"payload":{"push_id":536867874,"size":1,"distinct_size":1,"ref":"refs/heads/WeaponCustomizerBeta","head":"b5f0e0de96f3126d2257ca6320b5f22d9c45ec07","before":"59ff022f844e93387b6d8410fb7c9199e1fe3f44","commits":[{"sha":"b5f0e0de96f3126d2257ca6320b5f22d9c45ec07","author":{"email":"9ec2b9d5f2203d75c2b0f7885bd663d9d57a2d20@jameswilko.com","name":"James Wilkinson"},"message":"Fix for \"No Material\" being unselectable after customizing the first weapon\nCan right click items in the Modifying list to select everything except that item","distinct":true,"url":"https://api.github.com/repos/JamesWilko/GoonMod/commits/b5f0e0de96f3126d2257ca6320b5f22d9c45ec07"}]},"public":true,"created_at":"2015-01-01T15:18:41Z"} +,{"id":"2489659700","type":"PushEvent","actor":{"id":289960,"login":"Blaisorblade","gravatar_id":"","url":"https://api.github.com/users/Blaisorblade","avatar_url":"https://avatars.githubusercontent.com/u/289960?"},"repo":{"id":20581297,"name":"inc-lc/ilc-scala","url":"https://api.github.com/repos/inc-lc/ilc-scala"},"payload":{"push_id":536867875,"size":10,"distinct_size":8,"ref":"refs/heads/topic/names","head":"69bb39a1a96e203ff4a57f99d6a5710983a57c9a","before":"3d418ef34c41bdb952fb187323fcde6d7dcc3e92","commits":[{"sha":"c57ac5242cfb2fc7d623d7e0a6c37abbc5db9058","author":{"email":"7d29c16196417912ba1e9a6133cd4095f2f879e8@gmail.com","name":"Paolo G. Giarrusso"},"message":"Improve documentation of BetaReduction","distinct":false,"url":"https://api.github.com/repos/inc-lc/ilc-scala/commits/c57ac5242cfb2fc7d623d7e0a6c37abbc5db9058"},{"sha":"b67456941ebfba044b0d28a93fe6fbc56edfab07","author":{"email":"7d29c16196417912ba1e9a6133cd4095f2f879e8@gmail.com","name":"Paolo G. Giarrusso"},"message":"Cleanup: rename fields to better names","distinct":false,"url":"https://api.github.com/repos/inc-lc/ilc-scala/commits/b67456941ebfba044b0d28a93fe6fbc56edfab07"},{"sha":"fdd1683fe86829ecc62b9f4eec00800e4138dbbd","author":{"email":"7d29c16196417912ba1e9a6133cd4095f2f879e8@gmail.com","name":"Paolo G. Giarrusso"},"message":"Cleanup: Rename freshName\n\nWe need 'freshName' for the newly introduced method. It's not clear to\nme whether we need both ones, but I think yes.","distinct":true,"url":"https://api.github.com/repos/inc-lc/ilc-scala/commits/fdd1683fe86829ecc62b9f4eec00800e4138dbbd"},{"sha":"1fb85f794a18a278f98cf4a25a027df6527623d0","author":{"email":"7d29c16196417912ba1e9a6133cd4095f2f879e8@gmail.com","name":"Paolo G. Giarrusso"},"message":"Change pretty-printing for type variables\n\nThis is needed to look at types, but it might make some error messages\nin type inference worse.\n\nWe probably need to split toString and pretty-printing also for\ntypes (see #12).","distinct":true,"url":"https://api.github.com/repos/inc-lc/ilc-scala/commits/1fb85f794a18a278f98cf4a25a027df6527623d0"},{"sha":"2d85606cdd12cc6e68cb06f7044f4ad10f9caada","author":{"email":"7d29c16196417912ba1e9a6133cd4095f2f879e8@gmail.com","name":"Paolo G. Giarrusso"},"message":"Separate generation of fresh names from fresh vars\n\nGenerating fresh variables is just a convenience method, and now with\nCBPV we also need to generate fresh names.","distinct":true,"url":"https://api.github.com/repos/inc-lc/ilc-scala/commits/2d85606cdd12cc6e68cb06f7044f4ad10f9caada"},{"sha":"a445c84541c4cb5e546a311e0414ee189888769a","author":{"email":"7d29c16196417912ba1e9a6133cd4095f2f879e8@gmail.com","name":"Paolo G. Giarrusso"},"message":"Allow converting Names to Terms directly\n\nThis is done, however, through the TermBuilder infrastructure.","distinct":true,"url":"https://api.github.com/repos/inc-lc/ilc-scala/commits/a445c84541c4cb5e546a311e0414ee189888769a"},{"sha":"2b5583cd0f7cdb6ba0488b81cee695c44a13bf0e","author":{"email":"7d29c16196417912ba1e9a6133cd4095f2f879e8@gmail.com","name":"Paolo G. Giarrusso"},"message":"Cleanup type construction in inference","distinct":true,"url":"https://api.github.com/repos/inc-lc/ilc-scala/commits/2b5583cd0f7cdb6ba0488b81cee695c44a13bf0e"},{"sha":"c0eb4472ebf5bfaf70da0535a267a54b8066642f","author":{"email":"7d29c16196417912ba1e9a6133cd4095f2f879e8@gmail.com","name":"Paolo G. Giarrusso"},"message":"Move syntactic sugar from gcc to base package\n\nThis new API (unlike the old) will be supported after the upcoming\ncommits.","distinct":true,"url":"https://api.github.com/repos/inc-lc/ilc-scala/commits/c0eb4472ebf5bfaf70da0535a267a54b8066642f"},{"sha":"4795d5e3b3136d62b09aa502380cd2945436b073","author":{"email":"7d29c16196417912ba1e9a6133cd4095f2f879e8@gmail.com","name":"Paolo G. Giarrusso"},"message":"Use Name for all names (in UntypedSyntax etc.)\n\nThe previous code used instead String for names; this is ugly, and\nannoying whenever one needs to convert Terms to UntypedTerms and thus\nNames to Strings (as in the current CPS transform).\nDo this also in PrettySyntax.\n\n* Also add an implicit conversion from Name to UVar, so that one can\nreplace String by Name when building an UntypedTerm.\n\n* Add Symbol->Name implicit conversion\n\n* Replace Symbol by Name in SyntaxSugar\n\n* Fixup gcc code for the Symbol->Name change, and meanwhile cleanup\n freshening.","distinct":true,"url":"https://api.github.com/repos/inc-lc/ilc-scala/commits/4795d5e3b3136d62b09aa502380cd2945436b073"},{"sha":"69bb39a1a96e203ff4a57f99d6a5710983a57c9a","author":{"email":"7d29c16196417912ba1e9a6133cd4095f2f879e8@gmail.com","name":"Paolo G. Giarrusso"},"message":"Drop Name->String conversions for FullErasure","distinct":true,"url":"https://api.github.com/repos/inc-lc/ilc-scala/commits/69bb39a1a96e203ff4a57f99d6a5710983a57c9a"}]},"public":true,"created_at":"2015-01-01T15:18:41Z","org":{"id":7059607,"login":"inc-lc","gravatar_id":"","url":"https://api.github.com/orgs/inc-lc","avatar_url":"https://avatars.githubusercontent.com/u/7059607?"}} +,{"id":"2489659703","type":"PushEvent","actor":{"id":9280795,"login":"Zapaan","gravatar_id":"","url":"https://api.github.com/users/Zapaan","avatar_url":"https://avatars.githubusercontent.com/u/9280795?"},"repo":{"id":27874172,"name":"Zapaan/Spautifaille","url":"https://api.github.com/repos/Zapaan/Spautifaille"},"payload":{"push_id":536867876,"size":1,"distinct_size":1,"ref":"refs/heads/alambic","head":"e25f1988654af1f5c91a00ae53c3cbbfe31385aa","before":"f5c7b2e528a3f85d2ef1ca07245d84b3c269b042","commits":[{"sha":"e25f1988654af1f5c91a00ae53c3cbbfe31385aa","author":{"email":"7250f0b75467b078c7f8c7b472fa2cd30854f32d@u-psud.fr","name":"Francky"},"message":"Added Artist part, catalog display and inscrption","distinct":true,"url":"https://api.github.com/repos/Zapaan/Spautifaille/commits/e25f1988654af1f5c91a00ae53c3cbbfe31385aa"}]},"public":true,"created_at":"2015-01-01T15:18:41Z"} +,{"id":"2489659704","type":"PushEvent","actor":{"id":10364776,"login":"abeika","gravatar_id":"","url":"https://api.github.com/users/abeika","avatar_url":"https://avatars.githubusercontent.com/u/10364776?"},"repo":{"id":28688809,"name":"abeika/test","url":"https://api.github.com/repos/abeika/test"},"payload":{"push_id":536867877,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cfbb1866d83c119ff050bc3d58abedce859ea31f","before":"34a3c22dcf487dace783b5591a6ba0cb17a96c50","commits":[{"sha":"cfbb1866d83c119ff050bc3d58abedce859ea31f","author":{"email":"5b0c0f19bb2bb431254bf16d5129b995a42aebb8@yahoo.co.jp","name":"abeika"},"message":"Add hello world script by php","distinct":true,"url":"https://api.github.com/repos/abeika/test/commits/cfbb1866d83c119ff050bc3d58abedce859ea31f"}]},"public":true,"created_at":"2015-01-01T15:18:42Z"} +,{"id":"2489659707","type":"PushEvent","actor":{"id":5952679,"login":"LightingDeng","gravatar_id":"","url":"https://api.github.com/users/LightingDeng","avatar_url":"https://avatars.githubusercontent.com/u/5952679?"},"repo":{"id":28002208,"name":"SingleByte/TrainStatus","url":"https://api.github.com/repos/SingleByte/TrainStatus"},"payload":{"push_id":536867879,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1dc05680290c587169c3d10c357f36165629e26b","before":"22a6ec80d307f5d0ecec411fe9525d6e88c92885","commits":[{"sha":"1dc05680290c587169c3d10c357f36165629e26b","author":{"email":"0ef6c65cd7661ff4bef1a3911ae65dfd7cff551d@yeah.net","name":"LightingDeng"},"message":"update by lightingdeng\n\n修改样式,增加js脚本","distinct":true,"url":"https://api.github.com/repos/SingleByte/TrainStatus/commits/1dc05680290c587169c3d10c357f36165629e26b"}]},"public":true,"created_at":"2015-01-01T15:18:42Z"} +,{"id":"2489659708","type":"IssueCommentEvent","actor":{"id":3611852,"login":"xion87","gravatar_id":"","url":"https://api.github.com/users/xion87","avatar_url":"https://avatars.githubusercontent.com/u/3611852?"},"repo":{"id":25823670,"name":"IntellectualCrafters/PlotSquared","url":"https://api.github.com/repos/IntellectualCrafters/PlotSquared"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/IntellectualCrafters/PlotSquared/issues/65","labels_url":"https://api.github.com/repos/IntellectualCrafters/PlotSquared/issues/65/labels{/name}","comments_url":"https://api.github.com/repos/IntellectualCrafters/PlotSquared/issues/65/comments","events_url":"https://api.github.com/repos/IntellectualCrafters/PlotSquared/issues/65/events","html_url":"https://github.com/IntellectualCrafters/PlotSquared/issues/65","id":53014131,"number":65,"title":"Economy not working","user":{"login":"Lubenica","id":1998144,"avatar_url":"https://avatars.githubusercontent.com/u/1998144?v=3","gravatar_id":"","url":"https://api.github.com/users/Lubenica","html_url":"https://github.com/Lubenica","followers_url":"https://api.github.com/users/Lubenica/followers","following_url":"https://api.github.com/users/Lubenica/following{/other_user}","gists_url":"https://api.github.com/users/Lubenica/gists{/gist_id}","starred_url":"https://api.github.com/users/Lubenica/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Lubenica/subscriptions","organizations_url":"https://api.github.com/users/Lubenica/orgs","repos_url":"https://api.github.com/users/Lubenica/repos","events_url":"https://api.github.com/users/Lubenica/events{/privacy}","received_events_url":"https://api.github.com/users/Lubenica/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-29T00:50:38Z","updated_at":"2015-01-01T15:18:42Z","closed_at":null,"body":"Hello,\r\nEconomy is not working for me. I have the latest version of PlotSquared and have Vault. I do not get any errors in the console, it just does not work. Can you look into it please?\r\nMany thanks! :)"},"comment":{"url":"https://api.github.com/repos/IntellectualCrafters/PlotSquared/issues/comments/68488889","html_url":"https://github.com/IntellectualCrafters/PlotSquared/issues/65#issuecomment-68488889","issue_url":"https://api.github.com/repos/IntellectualCrafters/PlotSquared/issues/65","id":68488889,"user":{"login":"xion87","id":3611852,"avatar_url":"https://avatars.githubusercontent.com/u/3611852?v=3","gravatar_id":"","url":"https://api.github.com/users/xion87","html_url":"https://github.com/xion87","followers_url":"https://api.github.com/users/xion87/followers","following_url":"https://api.github.com/users/xion87/following{/other_user}","gists_url":"https://api.github.com/users/xion87/gists{/gist_id}","starred_url":"https://api.github.com/users/xion87/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xion87/subscriptions","organizations_url":"https://api.github.com/users/xion87/orgs","repos_url":"https://api.github.com/users/xion87/repos","events_url":"https://api.github.com/users/xion87/events{/privacy}","received_events_url":"https://api.github.com/users/xion87/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:18:42Z","updated_at":"2015-01-01T15:18:42Z","body":"you have enalbed in the config?"}},"public":true,"created_at":"2015-01-01T15:18:42Z","org":{"id":6443523,"login":"IntellectualCrafters","gravatar_id":"","url":"https://api.github.com/orgs/IntellectualCrafters","avatar_url":"https://avatars.githubusercontent.com/u/6443523?"}} +,{"id":"2489659711","type":"DeleteEvent","actor":{"id":677704,"login":"adamralph","gravatar_id":"","url":"https://api.github.com/users/adamralph","avatar_url":"https://avatars.githubusercontent.com/u/677704?"},"repo":{"id":9952109,"name":"adamralph/xunit","url":"https://api.github.com/repos/adamralph/xunit"},"payload":{"ref":"xunittestrunner-extensibility","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:42Z"} +,{"id":"2489659716","type":"IssueCommentEvent","actor":{"id":3438489,"login":"pylerSM","gravatar_id":"","url":"https://api.github.com/users/pylerSM","avatar_url":"https://avatars.githubusercontent.com/u/3438489?"},"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/252","labels_url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/252/labels{/name}","comments_url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/252/comments","events_url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/252/events","html_url":"https://github.com/rovo89/XposedInstaller/pull/252","id":53181167,"number":252,"title":" Show warning if module is not installed on internal storage","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":[{"url":"https://api.github.com/repos/rovo89/XposedInstaller/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":10,"created_at":"2014-12-31T12:11:54Z","updated_at":"2015-01-01T15:18:43Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/rovo89/XposedInstaller/pulls/252","html_url":"https://github.com/rovo89/XposedInstaller/pull/252","diff_url":"https://github.com/rovo89/XposedInstaller/pull/252.diff","patch_url":"https://github.com/rovo89/XposedInstaller/pull/252.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/comments/68488890","html_url":"https://github.com/rovo89/XposedInstaller/pull/252#issuecomment-68488890","issue_url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/252","id":68488890,"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},"created_at":"2015-01-01T15:18:43Z","updated_at":"2015-01-01T15:18:43Z","body":"Ok, I will rewrite it.\r\n\r\n\r\nBTW (off topic) https://github.com/rovo89/XposedInstaller/blob/cdb3f47895f5543eca0ff94861f5a98b343213c6/src/de/robv/android/xposed/installer/InstallerFragment.java#L902 --> executing \"reboot recovery\" don't work on some devices?"}},"public":true,"created_at":"2015-01-01T15:18:43Z"} +,{"id":"2489659718","type":"PushEvent","actor":{"id":3257822,"login":"wbsking","gravatar_id":"","url":"https://api.github.com/users/wbsking","avatar_url":"https://avatars.githubusercontent.com/u/3257822?"},"repo":{"id":28669559,"name":"wbsking/rasberryPi","url":"https://api.github.com/repos/wbsking/rasberryPi"},"payload":{"push_id":536867884,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"13d6f1d79ecd7541967ca6cd3443ab45acb99c4d","before":"82ec4bbc5240017fc2a563d85a31c90eaac2e565","commits":[{"sha":"13d6f1d79ecd7541967ca6cd3443ab45acb99c4d","author":{"email":"bc9946842d941cf6ed7d1a715e7184d63b473522@gmail.com","name":"sking"},"message":"feat(led):use bcm2835 package","distinct":true,"url":"https://api.github.com/repos/wbsking/rasberryPi/commits/13d6f1d79ecd7541967ca6cd3443ab45acb99c4d"}]},"public":true,"created_at":"2015-01-01T15:18:44Z"} +,{"id":"2489659723","type":"PushEvent","actor":{"id":1985040,"login":"adrelanos","gravatar_id":"","url":"https://api.github.com/users/adrelanos","avatar_url":"https://avatars.githubusercontent.com/u/1985040?"},"repo":{"id":4475109,"name":"Whonix/Whonix","url":"https://api.github.com/repos/Whonix/Whonix"},"payload":{"push_id":536867888,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6c594a8f87cc3f55c3dba7fb9d1536851942a8d3","before":"e2d749cca9ad7e4dc477f2ff281b55a99e210a3a","commits":[{"sha":"6c594a8f87cc3f55c3dba7fb9d1536851942a8d3","author":{"email":"5a50a88c5fa8d150d86d352032835284723dc86f@riseup.net","name":"Patrick Schleizer"},"message":".","distinct":true,"url":"https://api.github.com/repos/Whonix/Whonix/commits/6c594a8f87cc3f55c3dba7fb9d1536851942a8d3"}]},"public":true,"created_at":"2015-01-01T15:18:45Z","org":{"id":4500165,"login":"Whonix","gravatar_id":"","url":"https://api.github.com/orgs/Whonix","avatar_url":"https://avatars.githubusercontent.com/u/4500165?"}} +,{"id":"2489659725","type":"PushEvent","actor":{"id":1985040,"login":"adrelanos","gravatar_id":"","url":"https://api.github.com/users/adrelanos","avatar_url":"https://avatars.githubusercontent.com/u/1985040?"},"repo":{"id":10221464,"name":"adrelanos/Whonix","url":"https://api.github.com/repos/adrelanos/Whonix"},"payload":{"push_id":536867890,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6c594a8f87cc3f55c3dba7fb9d1536851942a8d3","before":"e2d749cca9ad7e4dc477f2ff281b55a99e210a3a","commits":[{"sha":"6c594a8f87cc3f55c3dba7fb9d1536851942a8d3","author":{"email":"5a50a88c5fa8d150d86d352032835284723dc86f@riseup.net","name":"Patrick Schleizer"},"message":".","distinct":true,"url":"https://api.github.com/repos/adrelanos/Whonix/commits/6c594a8f87cc3f55c3dba7fb9d1536851942a8d3"}]},"public":true,"created_at":"2015-01-01T15:18:45Z"} +,{"id":"2489659730","type":"PushEvent","actor":{"id":200609,"login":"assertchris","gravatar_id":"","url":"https://api.github.com/users/assertchris","avatar_url":"https://avatars.githubusercontent.com/u/200609?"},"repo":{"id":28626349,"name":"revolvephp/framework","url":"https://api.github.com/repos/revolvephp/framework"},"payload":{"push_id":536867891,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"db4fab76c5a0c398d1c15e7081104d454acdca09","before":"30b60357dcae795eddc5d49244c73747bb847a32","commits":[{"sha":"db4fab76c5a0c398d1c15e7081104d454acdca09","author":{"email":"e6cc0fb2b8dad4110ef62e9a33e5a8aa4e0f86d7@travis-ci.org","name":"Travis"},"message":"Travis pushed coverage of b4c951e5e36f12450f8f39b345f17c00dcdc79be@master to gh-pages","distinct":true,"url":"https://api.github.com/repos/revolvephp/framework/commits/db4fab76c5a0c398d1c15e7081104d454acdca09"}]},"public":true,"created_at":"2015-01-01T15:18:45Z","org":{"id":10348183,"login":"revolvephp","gravatar_id":"","url":"https://api.github.com/orgs/revolvephp","avatar_url":"https://avatars.githubusercontent.com/u/10348183?"}} +,{"id":"2489659732","type":"CreateEvent","actor":{"id":50665,"login":"gvvaughan","gravatar_id":"","url":"https://api.github.com/users/gvvaughan","avatar_url":"https://avatars.githubusercontent.com/u/50665?"},"repo":{"id":8834157,"name":"gvvaughan/lyaml","url":"https://api.github.com/repos/gvvaughan/lyaml"},"payload":{"ref":"release-v5.1.3","ref_type":"tag","master_branch":"master","description":"LibYAML binding for Lua.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:45Z"} +,{"id":"2489659733","type":"WatchEvent","actor":{"id":2222702,"login":"mubaidr","gravatar_id":"","url":"https://api.github.com/users/mubaidr","avatar_url":"https://avatars.githubusercontent.com/u/2222702?"},"repo":{"id":13421816,"name":"DominikGorecki/block-scroll","url":"https://api.github.com/repos/DominikGorecki/block-scroll"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:18:46Z"} +,{"id":"2489659734","type":"IssueCommentEvent","actor":{"id":4801917,"login":"andreas-venturini","gravatar_id":"","url":"https://api.github.com/users/andreas-venturini","avatar_url":"https://avatars.githubusercontent.com/u/4801917?"},"repo":{"id":19748680,"name":"progrium/logspout","url":"https://api.github.com/repos/progrium/logspout"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/progrium/logspout/issues/5","labels_url":"https://api.github.com/repos/progrium/logspout/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/progrium/logspout/issues/5/comments","events_url":"https://api.github.com/repos/progrium/logspout/issues/5/events","html_url":"https://github.com/progrium/logspout/issues/5","id":36617824,"number":5,"title":"Duplicate logs","user":{"login":"jbergknoff","id":2678832,"avatar_url":"https://avatars.githubusercontent.com/u/2678832?v=3","gravatar_id":"","url":"https://api.github.com/users/jbergknoff","html_url":"https://github.com/jbergknoff","followers_url":"https://api.github.com/users/jbergknoff/followers","following_url":"https://api.github.com/users/jbergknoff/following{/other_user}","gists_url":"https://api.github.com/users/jbergknoff/gists{/gist_id}","starred_url":"https://api.github.com/users/jbergknoff/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jbergknoff/subscriptions","organizations_url":"https://api.github.com/users/jbergknoff/orgs","repos_url":"https://api.github.com/users/jbergknoff/repos","events_url":"https://api.github.com/users/jbergknoff/events{/privacy}","received_events_url":"https://api.github.com/users/jbergknoff/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":13,"created_at":"2014-06-26T21:41:14Z","updated_at":"2015-01-01T15:18:46Z","closed_at":"2014-07-30T23:15:11Z","body":"When I try to use logspout, I see duplicate logs arrive in papertrail, and it seems that the log is truly being sent twice to papertrail (i.e. the problem is not on papertrail's end). Here is my setup:\r\n\r\n```bash\r\n$ sudo docker -v\r\nDocker version 1.0.1, build 990021a\r\n\r\n$ sudo docker run --rm -e \"DEBUG=1\" -h=\"logspout-test\" -v=/var/run/docker.sock:/tmp/docker.sock progrium/logspout syslog://logs.papertrailapp.com:xxxxx\r\n```\r\n\r\nIn another terminal,\r\n\r\n```\r\n$ sudo docker run --rm flynn/busybox echo hello world\r\nhello world\r\n```\r\n\r\nThe logspout output:\r\n\r\n```\r\n2014/06/26 21:30:57 attach: 64811a11783c success\r\n2014/06/26 21:30:57 routing all to syslog://logs.papertrailapp.com:xxxxx\r\n2014/06/26 21:30:57 loading and persisting routes in /mnt/routes\r\n2014/06/26 21:30:57 logspout serving http on :8000\r\n2014/06/26 21:31:03 event: 33a4cd018d64 create\r\n2014/06/26 21:31:03 event: 33a4cd018d64 create\r\n2014/06/26 21:31:03 event: 33a4cd018d64 start\r\n2014/06/26 21:31:03 event: 33a4cd018d64 start\r\n2014/06/26 21:31:03 attach: 33a4cd018d64 success\r\n2014/06/26 21:31:03 attach: 33a4cd018d64 success\r\n2014/06/26 21:31:03 attach: 33a4cd018d64 finished\r\n2014/06/26 21:31:03 attach: 33a4cd018d64 finished\r\n2014/06/26 21:31:04 event: 33a4cd018d64 die\r\n2014/06/26 21:31:04 event: 33a4cd018d64 die\r\n2014/06/26 21:31:04 event: 33a4cd018d64 destroy\r\n2014/06/26 21:31:04 event: 33a4cd018d64 destroy\r\n```\r\n\r\nand the corresponding papertrail output:\r\n\r\n```\r\nJun 26 14:30:56 logspout-test stupefied_engelbart: 2014/06/26 21:30:57 routing all to syslog://logs.papertrailapp.com:xxxxx\r\nJun 26 14:30:56 logspout-test stupefied_engelbart: 2014/06/26 21:30:57 loading and persisting routes in /mnt/routes \r\nJun 26 14:30:56 logspout-test stupefied_engelbart: 2014/06/26 21:30:57 logspout serving http on :8000 \r\nJun 26 14:31:01 logspout-test stupefied_engelbart: 2014/06/26 21:31:03 event: 33a4cd018d64 create \r\nJun 26 14:31:01 logspout-test stupefied_engelbart: 2014/06/26 21:31:03 event: 33a4cd018d64 create \r\nJun 26 14:31:02 logspout-test stupefied_engelbart: 2014/06/26 21:31:03 event: 33a4cd018d64 start \r\nJun 26 14:31:02 logspout-test happy_feynman: hello world \r\nJun 26 14:31:02 logspout-test happy_feynman: hello world \r\nJun 26 14:31:02 logspout-test stupefied_engelbart: 2014/06/26 21:31:03 event: 33a4cd018d64 start \r\nJun 26 14:31:02 logspout-test stupefied_engelbart: 2014/06/26 21:31:03 attach: 33a4cd018d64 success \r\nJun 26 14:31:02 logspout-test stupefied_engelbart: 2014/06/26 21:31:03 attach: 33a4cd018d64 success \r\nJun 26 14:31:02 logspout-test stupefied_engelbart: 2014/06/26 21:31:03 attach: 33a4cd018d64 finished \r\nJun 26 14:31:02 logspout-test stupefied_engelbart: 2014/06/26 21:31:03 attach: 33a4cd018d64 finished \r\nJun 26 14:31:02 logspout-test stupefied_engelbart: 2014/06/26 21:31:04 event: 33a4cd018d64 die \r\nJun 26 14:31:02 logspout-test stupefied_engelbart: 2014/06/26 21:31:04 event: 33a4cd018d64 die \r\nJun 26 14:31:02 logspout-test stupefied_engelbart: 2014/06/26 21:31:04 event: 33a4cd018d64 destroy \r\nJun 26 14:31:02 logspout-test stupefied_engelbart: 2014/06/26 21:31:04 event: 33a4cd018d64 destroy \r\n```\r\n\r\nThis is with the most recent `progrium/logspout` image from the public docker registry. I am able to consistently reproduce this issue in both Ubuntu 14.04 and in boot2docker.\r\n\r\nI built my own logspout image with [these two lines](https://github.com/progrium/logspout/blob/master/attacher.go#L34-L35) commented out. This fixes the duplicate logging, but I guess it probably reintroduces the problem with the go-dockerclient bug it's intended to work around."},"comment":{"url":"https://api.github.com/repos/progrium/logspout/issues/comments/68488891","html_url":"https://github.com/progrium/logspout/issues/5#issuecomment-68488891","issue_url":"https://api.github.com/repos/progrium/logspout/issues/5","id":68488891,"user":{"login":"andreas-venturini","id":4801917,"avatar_url":"https://avatars.githubusercontent.com/u/4801917?v=3","gravatar_id":"","url":"https://api.github.com/users/andreas-venturini","html_url":"https://github.com/andreas-venturini","followers_url":"https://api.github.com/users/andreas-venturini/followers","following_url":"https://api.github.com/users/andreas-venturini/following{/other_user}","gists_url":"https://api.github.com/users/andreas-venturini/gists{/gist_id}","starred_url":"https://api.github.com/users/andreas-venturini/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andreas-venturini/subscriptions","organizations_url":"https://api.github.com/users/andreas-venturini/orgs","repos_url":"https://api.github.com/users/andreas-venturini/repos","events_url":"https://api.github.com/users/andreas-venturini/events{/privacy}","received_events_url":"https://api.github.com/users/andreas-venturini/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:18:46Z","updated_at":"2015-01-01T15:18:46Z","body":"great, thanks"}},"public":true,"created_at":"2015-01-01T15:18:46Z"} +,{"id":"2489659736","type":"PushEvent","actor":{"id":10178018,"login":"ttmmghmm","gravatar_id":"","url":"https://api.github.com/users/ttmmghmm","avatar_url":"https://avatars.githubusercontent.com/u/10178018?"},"repo":{"id":28507874,"name":"ttmmghmm/ttmmghmm.github.com","url":"https://api.github.com/repos/ttmmghmm/ttmmghmm.github.com"},"payload":{"push_id":536867892,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"425e3da3f7dcff50f1a8455cdc2341dd5036980d","before":"eb0fd3a9d997af1125a9d5752a37aeefb2f87310","commits":[{"sha":"425e3da3f7dcff50f1a8455cdc2341dd5036980d","author":{"email":"2c5f8821bec2b3af783f68147735a5cd90ce01a8@gmail.com","name":"ttmmghmm"},"message":"move build icon","distinct":true,"url":"https://api.github.com/repos/ttmmghmm/ttmmghmm.github.com/commits/425e3da3f7dcff50f1a8455cdc2341dd5036980d"}]},"public":true,"created_at":"2015-01-01T15:18:46Z"} +,{"id":"2489659737","type":"PushEvent","actor":{"id":8102551,"login":"Touched","gravatar_id":"","url":"https://api.github.com/users/Touched","avatar_url":"https://avatars.githubusercontent.com/u/8102551?"},"repo":{"id":28539576,"name":"Touched/wynaut","url":"https://api.github.com/repos/Touched/wynaut"},"payload":{"push_id":536867893,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"faf5809ab7b1e69dcd27133c4e3034682a4c0f8e","before":"3c6293a69702ddf6f6a7f1148dc0f9a3d567864f","commits":[{"sha":"5d54ee3a64889a0722e835182fc5622657908e38","author":{"email":"9b7a71511a1d4cbe331b7916ba95db0e21ded05c@users.noreply.github.com","name":"Touched"},"message":"Created basic script handler for compiiler","distinct":true,"url":"https://api.github.com/repos/Touched/wynaut/commits/5d54ee3a64889a0722e835182fc5622657908e38"},{"sha":"23df5bfecfefc57af69a7e6bf0517347211a0ac1","author":{"email":"9b7a71511a1d4cbe331b7916ba95db0e21ded05c@users.noreply.github.com","name":"Touched"},"message":"Added compiler class implementation files","distinct":true,"url":"https://api.github.com/repos/Touched/wynaut/commits/23df5bfecfefc57af69a7e6bf0517347211a0ac1"},{"sha":"faf5809ab7b1e69dcd27133c4e3034682a4c0f8e","author":{"email":"9b7a71511a1d4cbe331b7916ba95db0e21ded05c@users.noreply.github.com","name":"Touched"},"message":"Added .gitignore to ignore Bison and flex output.","distinct":true,"url":"https://api.github.com/repos/Touched/wynaut/commits/faf5809ab7b1e69dcd27133c4e3034682a4c0f8e"}]},"public":true,"created_at":"2015-01-01T15:18:46Z"} +,{"id":"2489659746","type":"PullRequestEvent","actor":{"id":306502,"login":"bling","gravatar_id":"","url":"https://api.github.com/users/bling","avatar_url":"https://avatars.githubusercontent.com/u/306502?"},"repo":{"id":11075527,"name":"bling/vim-airline","url":"https://api.github.com/repos/bling/vim-airline"},"payload":{"action":"closed","number":680,"pull_request":{"url":"https://api.github.com/repos/bling/vim-airline/pulls/680","id":26607531,"html_url":"https://github.com/bling/vim-airline/pull/680","diff_url":"https://github.com/bling/vim-airline/pull/680.diff","patch_url":"https://github.com/bling/vim-airline/pull/680.patch","issue_url":"https://api.github.com/repos/bling/vim-airline/issues/680","number":680,"state":"closed","locked":false,"title":"Added tabline#show_tabs to disable tab bar","user":{"login":"psychomario","id":1041406,"avatar_url":"https://avatars.githubusercontent.com/u/1041406?v=3","gravatar_id":"","url":"https://api.github.com/users/psychomario","html_url":"https://github.com/psychomario","followers_url":"https://api.github.com/users/psychomario/followers","following_url":"https://api.github.com/users/psychomario/following{/other_user}","gists_url":"https://api.github.com/users/psychomario/gists{/gist_id}","starred_url":"https://api.github.com/users/psychomario/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/psychomario/subscriptions","organizations_url":"https://api.github.com/users/psychomario/orgs","repos_url":"https://api.github.com/users/psychomario/repos","events_url":"https://api.github.com/users/psychomario/events{/privacy}","received_events_url":"https://api.github.com/users/psychomario/received_events","type":"User","site_admin":false},"body":"This patch allows you to disable the tab bar and only show the buffer bar, regardless of how many tabs are open. \r\n\r\nDefaults to the old behaviour.","created_at":"2014-12-26T21:54:45Z","updated_at":"2015-01-01T15:18:48Z","closed_at":"2015-01-01T15:18:48Z","merged_at":"2015-01-01T15:18:48Z","merge_commit_sha":"d432ea72239b7779cafadcc168a27bf01cc4ac33","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/bling/vim-airline/pulls/680/commits","review_comments_url":"https://api.github.com/repos/bling/vim-airline/pulls/680/comments","review_comment_url":"https://api.github.com/repos/bling/vim-airline/pulls/comments/{number}","comments_url":"https://api.github.com/repos/bling/vim-airline/issues/680/comments","statuses_url":"https://api.github.com/repos/bling/vim-airline/statuses/527e6661e65713fb7269f3d7a1072fa268f4d756","head":{"label":"psychomario:show-tabs","ref":"show-tabs","sha":"527e6661e65713fb7269f3d7a1072fa268f4d756","user":{"login":"psychomario","id":1041406,"avatar_url":"https://avatars.githubusercontent.com/u/1041406?v=3","gravatar_id":"","url":"https://api.github.com/users/psychomario","html_url":"https://github.com/psychomario","followers_url":"https://api.github.com/users/psychomario/followers","following_url":"https://api.github.com/users/psychomario/following{/other_user}","gists_url":"https://api.github.com/users/psychomario/gists{/gist_id}","starred_url":"https://api.github.com/users/psychomario/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/psychomario/subscriptions","organizations_url":"https://api.github.com/users/psychomario/orgs","repos_url":"https://api.github.com/users/psychomario/repos","events_url":"https://api.github.com/users/psychomario/events{/privacy}","received_events_url":"https://api.github.com/users/psychomario/received_events","type":"User","site_admin":false},"repo":{"id":28521973,"name":"vim-airline","full_name":"psychomario/vim-airline","owner":{"login":"psychomario","id":1041406,"avatar_url":"https://avatars.githubusercontent.com/u/1041406?v=3","gravatar_id":"","url":"https://api.github.com/users/psychomario","html_url":"https://github.com/psychomario","followers_url":"https://api.github.com/users/psychomario/followers","following_url":"https://api.github.com/users/psychomario/following{/other_user}","gists_url":"https://api.github.com/users/psychomario/gists{/gist_id}","starred_url":"https://api.github.com/users/psychomario/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/psychomario/subscriptions","organizations_url":"https://api.github.com/users/psychomario/orgs","repos_url":"https://api.github.com/users/psychomario/repos","events_url":"https://api.github.com/users/psychomario/events{/privacy}","received_events_url":"https://api.github.com/users/psychomario/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/psychomario/vim-airline","description":"lean & mean status/tabline for vim that's light as air","fork":true,"url":"https://api.github.com/repos/psychomario/vim-airline","forks_url":"https://api.github.com/repos/psychomario/vim-airline/forks","keys_url":"https://api.github.com/repos/psychomario/vim-airline/keys{/key_id}","collaborators_url":"https://api.github.com/repos/psychomario/vim-airline/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/psychomario/vim-airline/teams","hooks_url":"https://api.github.com/repos/psychomario/vim-airline/hooks","issue_events_url":"https://api.github.com/repos/psychomario/vim-airline/issues/events{/number}","events_url":"https://api.github.com/repos/psychomario/vim-airline/events","assignees_url":"https://api.github.com/repos/psychomario/vim-airline/assignees{/user}","branches_url":"https://api.github.com/repos/psychomario/vim-airline/branches{/branch}","tags_url":"https://api.github.com/repos/psychomario/vim-airline/tags","blobs_url":"https://api.github.com/repos/psychomario/vim-airline/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/psychomario/vim-airline/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/psychomario/vim-airline/git/refs{/sha}","trees_url":"https://api.github.com/repos/psychomario/vim-airline/git/trees{/sha}","statuses_url":"https://api.github.com/repos/psychomario/vim-airline/statuses/{sha}","languages_url":"https://api.github.com/repos/psychomario/vim-airline/languages","stargazers_url":"https://api.github.com/repos/psychomario/vim-airline/stargazers","contributors_url":"https://api.github.com/repos/psychomario/vim-airline/contributors","subscribers_url":"https://api.github.com/repos/psychomario/vim-airline/subscribers","subscription_url":"https://api.github.com/repos/psychomario/vim-airline/subscription","commits_url":"https://api.github.com/repos/psychomario/vim-airline/commits{/sha}","git_commits_url":"https://api.github.com/repos/psychomario/vim-airline/git/commits{/sha}","comments_url":"https://api.github.com/repos/psychomario/vim-airline/comments{/number}","issue_comment_url":"https://api.github.com/repos/psychomario/vim-airline/issues/comments/{number}","contents_url":"https://api.github.com/repos/psychomario/vim-airline/contents/{+path}","compare_url":"https://api.github.com/repos/psychomario/vim-airline/compare/{base}...{head}","merges_url":"https://api.github.com/repos/psychomario/vim-airline/merges","archive_url":"https://api.github.com/repos/psychomario/vim-airline/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/psychomario/vim-airline/downloads","issues_url":"https://api.github.com/repos/psychomario/vim-airline/issues{/number}","pulls_url":"https://api.github.com/repos/psychomario/vim-airline/pulls{/number}","milestones_url":"https://api.github.com/repos/psychomario/vim-airline/milestones{/number}","notifications_url":"https://api.github.com/repos/psychomario/vim-airline/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/psychomario/vim-airline/labels{/name}","releases_url":"https://api.github.com/repos/psychomario/vim-airline/releases{/id}","created_at":"2014-12-26T21:46:43Z","updated_at":"2014-12-26T21:46:44Z","pushed_at":"2014-12-26T21:50:50Z","git_url":"git://github.com/psychomario/vim-airline.git","ssh_url":"git@github.com:psychomario/vim-airline.git","clone_url":"https://github.com/psychomario/vim-airline.git","svn_url":"https://github.com/psychomario/vim-airline","homepage":"","size":1517,"stargazers_count":0,"watchers_count":0,"language":"VimL","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":"bling:master","ref":"master","sha":"6387268f13c513d8afeb98d0621bd3da8219dfc6","user":{"login":"bling","id":306502,"avatar_url":"https://avatars.githubusercontent.com/u/306502?v=3","gravatar_id":"","url":"https://api.github.com/users/bling","html_url":"https://github.com/bling","followers_url":"https://api.github.com/users/bling/followers","following_url":"https://api.github.com/users/bling/following{/other_user}","gists_url":"https://api.github.com/users/bling/gists{/gist_id}","starred_url":"https://api.github.com/users/bling/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bling/subscriptions","organizations_url":"https://api.github.com/users/bling/orgs","repos_url":"https://api.github.com/users/bling/repos","events_url":"https://api.github.com/users/bling/events{/privacy}","received_events_url":"https://api.github.com/users/bling/received_events","type":"User","site_admin":false},"repo":{"id":11075527,"name":"vim-airline","full_name":"bling/vim-airline","owner":{"login":"bling","id":306502,"avatar_url":"https://avatars.githubusercontent.com/u/306502?v=3","gravatar_id":"","url":"https://api.github.com/users/bling","html_url":"https://github.com/bling","followers_url":"https://api.github.com/users/bling/followers","following_url":"https://api.github.com/users/bling/following{/other_user}","gists_url":"https://api.github.com/users/bling/gists{/gist_id}","starred_url":"https://api.github.com/users/bling/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bling/subscriptions","organizations_url":"https://api.github.com/users/bling/orgs","repos_url":"https://api.github.com/users/bling/repos","events_url":"https://api.github.com/users/bling/events{/privacy}","received_events_url":"https://api.github.com/users/bling/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/bling/vim-airline","description":"lean & mean status/tabline for vim that's light as air","fork":false,"url":"https://api.github.com/repos/bling/vim-airline","forks_url":"https://api.github.com/repos/bling/vim-airline/forks","keys_url":"https://api.github.com/repos/bling/vim-airline/keys{/key_id}","collaborators_url":"https://api.github.com/repos/bling/vim-airline/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/bling/vim-airline/teams","hooks_url":"https://api.github.com/repos/bling/vim-airline/hooks","issue_events_url":"https://api.github.com/repos/bling/vim-airline/issues/events{/number}","events_url":"https://api.github.com/repos/bling/vim-airline/events","assignees_url":"https://api.github.com/repos/bling/vim-airline/assignees{/user}","branches_url":"https://api.github.com/repos/bling/vim-airline/branches{/branch}","tags_url":"https://api.github.com/repos/bling/vim-airline/tags","blobs_url":"https://api.github.com/repos/bling/vim-airline/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/bling/vim-airline/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/bling/vim-airline/git/refs{/sha}","trees_url":"https://api.github.com/repos/bling/vim-airline/git/trees{/sha}","statuses_url":"https://api.github.com/repos/bling/vim-airline/statuses/{sha}","languages_url":"https://api.github.com/repos/bling/vim-airline/languages","stargazers_url":"https://api.github.com/repos/bling/vim-airline/stargazers","contributors_url":"https://api.github.com/repos/bling/vim-airline/contributors","subscribers_url":"https://api.github.com/repos/bling/vim-airline/subscribers","subscription_url":"https://api.github.com/repos/bling/vim-airline/subscription","commits_url":"https://api.github.com/repos/bling/vim-airline/commits{/sha}","git_commits_url":"https://api.github.com/repos/bling/vim-airline/git/commits{/sha}","comments_url":"https://api.github.com/repos/bling/vim-airline/comments{/number}","issue_comment_url":"https://api.github.com/repos/bling/vim-airline/issues/comments/{number}","contents_url":"https://api.github.com/repos/bling/vim-airline/contents/{+path}","compare_url":"https://api.github.com/repos/bling/vim-airline/compare/{base}...{head}","merges_url":"https://api.github.com/repos/bling/vim-airline/merges","archive_url":"https://api.github.com/repos/bling/vim-airline/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/bling/vim-airline/downloads","issues_url":"https://api.github.com/repos/bling/vim-airline/issues{/number}","pulls_url":"https://api.github.com/repos/bling/vim-airline/pulls{/number}","milestones_url":"https://api.github.com/repos/bling/vim-airline/milestones{/number}","notifications_url":"https://api.github.com/repos/bling/vim-airline/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/bling/vim-airline/labels{/name}","releases_url":"https://api.github.com/repos/bling/vim-airline/releases{/id}","created_at":"2013-06-30T18:49:56Z","updated_at":"2015-01-01T14:47:08Z","pushed_at":"2015-01-01T15:18:48Z","git_url":"git://github.com/bling/vim-airline.git","ssh_url":"git@github.com:bling/vim-airline.git","clone_url":"https://github.com/bling/vim-airline.git","svn_url":"https://github.com/bling/vim-airline","homepage":"","size":4505,"stargazers_count":4338,"watchers_count":4338,"language":"VimL","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":277,"mirror_url":null,"open_issues_count":85,"forks":277,"open_issues":85,"watchers":4338,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/bling/vim-airline/pulls/680"},"html":{"href":"https://github.com/bling/vim-airline/pull/680"},"issue":{"href":"https://api.github.com/repos/bling/vim-airline/issues/680"},"comments":{"href":"https://api.github.com/repos/bling/vim-airline/issues/680/comments"},"review_comments":{"href":"https://api.github.com/repos/bling/vim-airline/pulls/680/comments"},"review_comment":{"href":"https://api.github.com/repos/bling/vim-airline/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/bling/vim-airline/pulls/680/commits"},"statuses":{"href":"https://api.github.com/repos/bling/vim-airline/statuses/527e6661e65713fb7269f3d7a1072fa268f4d756"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"bling","id":306502,"avatar_url":"https://avatars.githubusercontent.com/u/306502?v=3","gravatar_id":"","url":"https://api.github.com/users/bling","html_url":"https://github.com/bling","followers_url":"https://api.github.com/users/bling/followers","following_url":"https://api.github.com/users/bling/following{/other_user}","gists_url":"https://api.github.com/users/bling/gists{/gist_id}","starred_url":"https://api.github.com/users/bling/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bling/subscriptions","organizations_url":"https://api.github.com/users/bling/orgs","repos_url":"https://api.github.com/users/bling/repos","events_url":"https://api.github.com/users/bling/events{/privacy}","received_events_url":"https://api.github.com/users/bling/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":5,"deletions":1,"changed_files":2}},"public":true,"created_at":"2015-01-01T15:18:48Z"} +,{"id":"2489659747","type":"WatchEvent","actor":{"id":78057,"login":"jrf","gravatar_id":"","url":"https://api.github.com/users/jrf","avatar_url":"https://avatars.githubusercontent.com/u/78057?"},"repo":{"id":23609132,"name":"yuriks/SmallVCM-rs","url":"https://api.github.com/repos/yuriks/SmallVCM-rs"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:18:48Z"} +,{"id":"2489659748","type":"PushEvent","actor":{"id":18138,"login":"maio","gravatar_id":"","url":"https://api.github.com/users/maio","avatar_url":"https://avatars.githubusercontent.com/u/18138?"},"repo":{"id":28668147,"name":"maio/xalbum","url":"https://api.github.com/repos/maio/xalbum"},"payload":{"push_id":536867897,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"f29732943d014b2d3b81ed0e2c6c932fe4468fc3","before":"32210e1e0c8ca4c58b1c075ea3a32245096539f3","commits":[{"sha":"fe47b1f275fc7b35a6a01b22aeadf3019bc8ced7","author":{"email":"707eb5604cf3633890047e8994bcca23341ddf13@gmail.com","name":"Marian Schubert"},"message":"improve layout of thumbnails at album page using justifiedGallery\n\nhttp://miromannino.github.io/Justified-Gallery/","distinct":true,"url":"https://api.github.com/repos/maio/xalbum/commits/fe47b1f275fc7b35a6a01b22aeadf3019bc8ced7"},{"sha":"8b230b56c2489ad9e86dceb39eb69e4d8c0e08b1","author":{"email":"707eb5604cf3633890047e8994bcca23341ddf13@gmail.com","name":"Marian Schubert"},"message":"improve(?!) styles","distinct":true,"url":"https://api.github.com/repos/maio/xalbum/commits/8b230b56c2489ad9e86dceb39eb69e4d8c0e08b1"},{"sha":"f29732943d014b2d3b81ed0e2c6c932fe4468fc3","author":{"email":"707eb5604cf3633890047e8994bcca23341ddf13@gmail.com","name":"Marian Schubert"},"message":"Makefile build target","distinct":true,"url":"https://api.github.com/repos/maio/xalbum/commits/f29732943d014b2d3b81ed0e2c6c932fe4468fc3"}]},"public":true,"created_at":"2015-01-01T15:18:48Z"} +,{"id":"2489659750","type":"PushEvent","actor":{"id":306502,"login":"bling","gravatar_id":"","url":"https://api.github.com/users/bling","avatar_url":"https://avatars.githubusercontent.com/u/306502?"},"repo":{"id":11075527,"name":"bling/vim-airline","url":"https://api.github.com/repos/bling/vim-airline"},"payload":{"push_id":536867898,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"1fd98862198c0898146eba0798cb0af67bf7c522","before":"6387268f13c513d8afeb98d0621bd3da8219dfc6","commits":[{"sha":"527e6661e65713fb7269f3d7a1072fa268f4d756","author":{"email":"10181cf0bf6e90f6c426f58ed79b4581477db462@gmail.com","name":"PsychoMario"},"message":"added tabline#show_tabs to disable tab bar","distinct":true,"url":"https://api.github.com/repos/bling/vim-airline/commits/527e6661e65713fb7269f3d7a1072fa268f4d756"},{"sha":"1fd98862198c0898146eba0798cb0af67bf7c522","author":{"email":"2299609d52dc7d07d5883e8cb8cdd7f39aa32655@live.ca","name":"Bailey Ling"},"message":"Merge pull request #680 from psychomario/show-tabs\n\nAdded tabline#show_tabs to disable tab bar","distinct":true,"url":"https://api.github.com/repos/bling/vim-airline/commits/1fd98862198c0898146eba0798cb0af67bf7c522"}]},"public":true,"created_at":"2015-01-01T15:18:49Z"} +,{"id":"2489659756","type":"CreateEvent","actor":{"id":138401,"login":"jbenet","gravatar_id":"","url":"https://api.github.com/users/jbenet","avatar_url":"https://avatars.githubusercontent.com/u/138401?"},"repo":{"id":21233191,"name":"jbenet/go-ipfs","url":"https://api.github.com/repos/jbenet/go-ipfs"},"payload":{"ref":"use-muxado","ref_type":"branch","master_branch":"master","description":"ipfs implementation in go","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:49Z"} +,{"id":"2489659757","type":"PushEvent","actor":{"id":6272947,"login":"yonidor","gravatar_id":"","url":"https://api.github.com/users/yonidor","avatar_url":"https://avatars.githubusercontent.com/u/6272947?"},"repo":{"id":27189223,"name":"yonidor/node-bourbon","url":"https://api.github.com/repos/yonidor/node-bourbon"},"payload":{"push_id":536867902,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c41bdd28e9bca7215e0d11be0195e2d049a0cbf3","before":"9fd7cfb713e38403845081e578808a8fa37d30d2","commits":[{"sha":"c41bdd28e9bca7215e0d11be0195e2d049a0cbf3","author":{"email":"7a85ef5a7bc5b0efac91f84d3aa9009bcdc8ca01@sears.co.il","name":"yonid"},"message":"add flexbox prefixes","distinct":true,"url":"https://api.github.com/repos/yonidor/node-bourbon/commits/c41bdd28e9bca7215e0d11be0195e2d049a0cbf3"}]},"public":true,"created_at":"2015-01-01T15:18:49Z"} +,{"id":"2489659760","type":"IssueCommentEvent","actor":{"id":1271146,"login":"gep13","gravatar_id":"","url":"https://api.github.com/users/gep13","avatar_url":"https://avatars.githubusercontent.com/u/1271146?"},"repo":{"id":12399790,"name":"ParticularLabs/GitVersion","url":"https://api.github.com/repos/ParticularLabs/GitVersion"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/ParticularLabs/GitVersion/issues/331","labels_url":"https://api.github.com/repos/ParticularLabs/GitVersion/issues/331/labels{/name}","comments_url":"https://api.github.com/repos/ParticularLabs/GitVersion/issues/331/comments","events_url":"https://api.github.com/repos/ParticularLabs/GitVersion/issues/331/events","html_url":"https://github.com/ParticularLabs/GitVersion/issues/331","id":53211861,"number":331,"title":"Release branch with GitHubFlowVersion doesn't append beta tag","user":{"login":"robdmoore","id":573791,"avatar_url":"https://avatars.githubusercontent.com/u/573791?v=3","gravatar_id":"","url":"https://api.github.com/users/robdmoore","html_url":"https://github.com/robdmoore","followers_url":"https://api.github.com/users/robdmoore/followers","following_url":"https://api.github.com/users/robdmoore/following{/other_user}","gists_url":"https://api.github.com/users/robdmoore/gists{/gist_id}","starred_url":"https://api.github.com/users/robdmoore/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robdmoore/subscriptions","organizations_url":"https://api.github.com/users/robdmoore/orgs","repos_url":"https://api.github.com/users/robdmoore/repos","events_url":"https://api.github.com/users/robdmoore/events{/privacy}","received_events_url":"https://api.github.com/users/robdmoore/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T03:01:47Z","updated_at":"2015-01-01T15:18:50Z","closed_at":null,"body":"I'm using the latest version of gitversion on chocolatey on my build server and I am building a release branch for a project `release-2.0.0`, but the variables that are generated don't include the beta tag like I would expect from https://github.com/ParticularLabs/GitVersion/wiki/GitHubFlowExamples.\r\n\r\nMy variables are:\r\n\r\n```\r\n##teamcity[buildNumber '2.0.0+49']\r\n[10:58:59]Executing GenerateBuildLogOutput for 'TeamCity'.\r\n[10:58:59]##teamcity[setParameter name='GitVersion.Major' value='2']\r\n[10:58:59]##teamcity[setParameter name='system.GitVersion.Major' value='2']\r\n[10:58:59]##teamcity[setParameter name='GitVersion.Minor' value='0']\r\n[10:58:59]##teamcity[setParameter name='system.GitVersion.Minor' value='0']\r\n[10:58:59]##teamcity[setParameter name='GitVersion.Patch' value='0']\r\n[10:58:59]##teamcity[setParameter name='system.GitVersion.Patch' value='0']\r\n[10:58:59]##teamcity[setParameter name='GitVersion.PreReleaseTag' value='']\r\n[10:58:59]##teamcity[setParameter name='system.GitVersion.PreReleaseTag' value='']\r\n[10:58:59]##teamcity[setParameter name='GitVersion.PreReleaseTagWithDash' value='']\r\n[10:58:59]##teamcity[setParameter name='system.GitVersion.PreReleaseTagWithDash' value='']\r\n[10:58:59]##teamcity[setParameter name='GitVersion.BuildMetaData' value='49']\r\n[10:58:59]##teamcity[setParameter name='system.GitVersion.BuildMetaData' value='49']\r\n[10:58:59]##teamcity[setParameter name='GitVersion.FullBuildMetaData' value='49.Branch.release-2.0.0.Sha.3cc5f402b339e282aa55e739c08a5c36c45f5533']\r\n[10:58:59]##teamcity[setParameter name='system.GitVersion.FullBuildMetaData' value='49.Branch.release-2.0.0.Sha.3cc5f402b339e282aa55e739c08a5c36c45f5533']\r\n[10:58:59]##teamcity[setParameter name='GitVersion.MajorMinorPatch' value='2.0.0']\r\n[10:58:59]##teamcity[setParameter name='system.GitVersion.MajorMinorPatch' value='2.0.0']\r\n[10:58:59]##teamcity[setParameter name='GitVersion.SemVer' value='2.0.0']\r\n[10:58:59]##teamcity[setParameter name='system.GitVersion.SemVer' value='2.0.0']\r\n[10:58:59]##teamcity[setParameter name='GitVersion.LegacySemVer' value='2.0.0']\r\n[10:58:59]##teamcity[setParameter name='system.GitVersion.LegacySemVer' value='2.0.0']\r\n[10:58:59]##teamcity[setParameter name='GitVersion.LegacySemVerPadded' value='2.0.0']\r\n[10:58:59]##teamcity[setParameter name='system.GitVersion.LegacySemVerPadded' value='2.0.0']\r\n[10:58:59]##teamcity[setParameter name='GitVersion.AssemblySemVer' value='2.0.0.0']\r\n[10:58:59]##teamcity[setParameter name='system.GitVersion.AssemblySemVer' value='2.0.0.0']\r\n[10:58:59]##teamcity[setParameter name='GitVersion.AssemblyFileSemVer' value='2.0.0.0']\r\n[10:58:59]##teamcity[setParameter name='system.GitVersion.AssemblyFileSemVer' value='2.0.0.0']\r\n[10:58:59]##teamcity[setParameter name='GitVersion.FullSemVer' value='2.0.0+49']\r\n[10:58:59]##teamcity[setParameter name='system.GitVersion.FullSemVer' value='2.0.0+49']\r\n[10:58:59]##teamcity[setParameter name='GitVersion.InformationalVersion' value='2.0.0+49.Branch.release-2.0.0.Sha.3cc5f402b339e282aa55e739c08a5c36c45f5533']\r\n[10:58:59]##teamcity[setParameter name='system.GitVersion.InformationalVersion' value='2.0.0+49.Branch.release-2.0.0.Sha.3cc5f402b339e282aa55e739c08a5c36c45f5533']\r\n[10:58:59]##teamcity[setParameter name='GitVersion.ClassicVersion' value='2.0.0.49']\r\n[10:58:59]##teamcity[setParameter name='system.GitVersion.ClassicVersion' value='2.0.0.49']\r\n[10:58:59]##teamcity[setParameter name='GitVersion.ClassicVersionWithTag' value='2.0.0.49']\r\n[10:58:59]##teamcity[setParameter name='system.GitVersion.ClassicVersionWithTag' value='2.0.0.49']\r\n[10:58:59]##teamcity[setParameter name='GitVersion.BranchName' value='release-2.0.0']\r\n[10:58:59]##teamcity[setParameter name='system.GitVersion.BranchName' value='release-2.0.0']\r\n[10:58:59]##teamcity[setParameter name='GitVersion.Sha' value='3cc5f402b339e282aa55e739c08a5c36c45f5533']\r\n[10:58:59]##teamcity[setParameter name='system.GitVersion.Sha' value='3cc5f402b339e282aa55e739c08a5c36c45f5533']\r\n[10:58:59]##teamcity[setParameter name='GitVersion.NuGetVersionV2' value='2.0.0']\r\n[10:58:59]##teamcity[setParameter name='system.GitVersion.NuGetVersionV2' value='2.0.0']\r\n[10:58:59]##teamcity[setParameter name='GitVersion.NuGetVersion' value='2.0.0']\r\n[10:58:59]##teamcity[setParameter name='system.GitVersion.NuGetVersion' value='2.0.0']\r\n```\r\n\r\nThe build is at http://ci.robdmoore.id.au:8010/viewLog.html?buildId=3462&buildTypeId=NTestDataBuilder_CI&tab=buildLog (you can log in as guest)."},"comment":{"url":"https://api.github.com/repos/ParticularLabs/GitVersion/issues/comments/68488893","html_url":"https://github.com/ParticularLabs/GitVersion/issues/331#issuecomment-68488893","issue_url":"https://api.github.com/repos/ParticularLabs/GitVersion/issues/331","id":68488893,"user":{"login":"gep13","id":1271146,"avatar_url":"https://avatars.githubusercontent.com/u/1271146?v=3","gravatar_id":"","url":"https://api.github.com/users/gep13","html_url":"https://github.com/gep13","followers_url":"https://api.github.com/users/gep13/followers","following_url":"https://api.github.com/users/gep13/following{/other_user}","gists_url":"https://api.github.com/users/gep13/gists{/gist_id}","starred_url":"https://api.github.com/users/gep13/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gep13/subscriptions","organizations_url":"https://api.github.com/users/gep13/orgs","repos_url":"https://api.github.com/users/gep13/repos","events_url":"https://api.github.com/users/gep13/events{/privacy}","received_events_url":"https://api.github.com/users/gep13/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:18:50Z","updated_at":"2015-01-01T15:18:50Z","body":"Hmmm, I haven't created a release branch for any of my projects with the new version of GitVersion, but based on the tests, I would have expected this to work:\r\n\r\n![image](https://cloud.githubusercontent.com/assets/1271146/5592475/61c597fa-91c9-11e4-9a43-f61820ace32f.png)\r\n\r\ni.e. include the ReleaseBranchTag (which defaults to beta) in the Full SemVer Version."}},"public":true,"created_at":"2015-01-01T15:18:50Z","org":{"id":9639057,"login":"ParticularLabs","gravatar_id":"","url":"https://api.github.com/orgs/ParticularLabs","avatar_url":"https://avatars.githubusercontent.com/u/9639057?"}} +,{"id":"2489659762","type":"IssueCommentEvent","actor":{"id":306502,"login":"bling","gravatar_id":"","url":"https://api.github.com/users/bling","avatar_url":"https://avatars.githubusercontent.com/u/306502?"},"repo":{"id":11075527,"name":"bling/vim-airline","url":"https://api.github.com/repos/bling/vim-airline"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/bling/vim-airline/issues/680","labels_url":"https://api.github.com/repos/bling/vim-airline/issues/680/labels{/name}","comments_url":"https://api.github.com/repos/bling/vim-airline/issues/680/comments","events_url":"https://api.github.com/repos/bling/vim-airline/issues/680/events","html_url":"https://github.com/bling/vim-airline/pull/680","id":52940333,"number":680,"title":"Added tabline#show_tabs to disable tab bar","user":{"login":"psychomario","id":1041406,"avatar_url":"https://avatars.githubusercontent.com/u/1041406?v=3","gravatar_id":"","url":"https://api.github.com/users/psychomario","html_url":"https://github.com/psychomario","followers_url":"https://api.github.com/users/psychomario/followers","following_url":"https://api.github.com/users/psychomario/following{/other_user}","gists_url":"https://api.github.com/users/psychomario/gists{/gist_id}","starred_url":"https://api.github.com/users/psychomario/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/psychomario/subscriptions","organizations_url":"https://api.github.com/users/psychomario/orgs","repos_url":"https://api.github.com/users/psychomario/repos","events_url":"https://api.github.com/users/psychomario/events{/privacy}","received_events_url":"https://api.github.com/users/psychomario/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-26T21:54:45Z","updated_at":"2015-01-01T15:18:50Z","closed_at":"2015-01-01T15:18:48Z","pull_request":{"url":"https://api.github.com/repos/bling/vim-airline/pulls/680","html_url":"https://github.com/bling/vim-airline/pull/680","diff_url":"https://github.com/bling/vim-airline/pull/680.diff","patch_url":"https://github.com/bling/vim-airline/pull/680.patch"},"body":"This patch allows you to disable the tab bar and only show the buffer bar, regardless of how many tabs are open. \r\n\r\nDefaults to the old behaviour."},"comment":{"url":"https://api.github.com/repos/bling/vim-airline/issues/comments/68488894","html_url":"https://github.com/bling/vim-airline/pull/680#issuecomment-68488894","issue_url":"https://api.github.com/repos/bling/vim-airline/issues/680","id":68488894,"user":{"login":"bling","id":306502,"avatar_url":"https://avatars.githubusercontent.com/u/306502?v=3","gravatar_id":"","url":"https://api.github.com/users/bling","html_url":"https://github.com/bling","followers_url":"https://api.github.com/users/bling/followers","following_url":"https://api.github.com/users/bling/following{/other_user}","gists_url":"https://api.github.com/users/bling/gists{/gist_id}","starred_url":"https://api.github.com/users/bling/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bling/subscriptions","organizations_url":"https://api.github.com/users/bling/orgs","repos_url":"https://api.github.com/users/bling/repos","events_url":"https://api.github.com/users/bling/events{/privacy}","received_events_url":"https://api.github.com/users/bling/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:18:50Z","updated_at":"2015-01-01T15:18:50Z","body":"thanks!"}},"public":true,"created_at":"2015-01-01T15:18:50Z"} +,{"id":"2489659763","type":"PushEvent","actor":{"id":4725234,"login":"xuhf","gravatar_id":"","url":"https://api.github.com/users/xuhf","avatar_url":"https://avatars.githubusercontent.com/u/4725234?"},"repo":{"id":28372569,"name":"xuhf/framework","url":"https://api.github.com/repos/xuhf/framework"},"payload":{"push_id":536867905,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7e05a24bc91a6b448ad475a543434a5728a9fcb2","before":"2c129db9ed852009527cf71b47795307313ae5f1","commits":[{"sha":"7e05a24bc91a6b448ad475a543434a5728a9fcb2","author":{"email":"c382e2a699a24b40ebbf1750e79aa3febf9a9e56@163.com","name":"xuhf"},"message":"修改缓存配置","distinct":true,"url":"https://api.github.com/repos/xuhf/framework/commits/7e05a24bc91a6b448ad475a543434a5728a9fcb2"}]},"public":true,"created_at":"2015-01-01T15:18:51Z"} +,{"id":"2489659767","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":536867908,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5fff4d9b48c523d17ce99fe8f1503560a92e26c9","before":"41ea1332747c3d06af9db0db746c80b9890e7615","commits":[{"sha":"5fff4d9b48c523d17ce99fe8f1503560a92e26c9","author":{"email":"07f907d0a05f63ed1e641aa2775520c26d6f16b2@163.com","name":"frank-deng"},"message":"New route added","distinct":true,"url":"https://api.github.com/repos/frank-deng/fgfs-tools/commits/5fff4d9b48c523d17ce99fe8f1503560a92e26c9"}]},"public":true,"created_at":"2015-01-01T15:18:51Z"} +,{"id":"2489659770","type":"PullRequestEvent","actor":{"id":14610,"login":"frozzare","gravatar_id":"","url":"https://api.github.com/users/frozzare","avatar_url":"https://avatars.githubusercontent.com/u/14610?"},"repo":{"id":22603715,"name":"wp-papi/wp-papi.github.io","url":"https://api.github.com/repos/wp-papi/wp-papi.github.io"},"payload":{"action":"closed","number":1,"pull_request":{"url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/pulls/1","id":26743067,"html_url":"https://github.com/wp-papi/wp-papi.github.io/pull/1","diff_url":"https://github.com/wp-papi/wp-papi.github.io/pull/1.diff","patch_url":"https://github.com/wp-papi/wp-papi.github.io/pull/1.patch","issue_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/issues/1","number":1,"state":"closed","locked":false,"title":"Dont enforce version as Composer guesses the best version contraint","user":{"login":"MujibAzizi","id":1754708,"avatar_url":"https://avatars.githubusercontent.com/u/1754708?v=3","gravatar_id":"","url":"https://api.github.com/users/MujibAzizi","html_url":"https://github.com/MujibAzizi","followers_url":"https://api.github.com/users/MujibAzizi/followers","following_url":"https://api.github.com/users/MujibAzizi/following{/other_user}","gists_url":"https://api.github.com/users/MujibAzizi/gists{/gist_id}","starred_url":"https://api.github.com/users/MujibAzizi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MujibAzizi/subscriptions","organizations_url":"https://api.github.com/users/MujibAzizi/orgs","repos_url":"https://api.github.com/users/MujibAzizi/repos","events_url":"https://api.github.com/users/MujibAzizi/events{/privacy}","received_events_url":"https://api.github.com/users/MujibAzizi/received_events","type":"User","site_admin":false},"body":"Since Composer 1.0 alpha9 it's not necessary to specify a version when requiring using `composer require`. \r\n\r\nSource: http://seld.be/notes/composer-1-0-alpha9","created_at":"2015-01-01T13:20:04Z","updated_at":"2015-01-01T15:18:51Z","closed_at":"2015-01-01T15:18:51Z","merged_at":"2015-01-01T15:18:51Z","merge_commit_sha":"3492a0b03343258e268b37c0267cce8af393d672","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/pulls/1/commits","review_comments_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/pulls/1/comments","review_comment_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/pulls/comments/{number}","comments_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/issues/1/comments","statuses_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/statuses/28498ee57cad1c0b2b4ff8b0b2d902b7b0a6e082","head":{"label":"MujibAzizi:require-version","ref":"require-version","sha":"28498ee57cad1c0b2b4ff8b0b2d902b7b0a6e082","user":{"login":"MujibAzizi","id":1754708,"avatar_url":"https://avatars.githubusercontent.com/u/1754708?v=3","gravatar_id":"","url":"https://api.github.com/users/MujibAzizi","html_url":"https://github.com/MujibAzizi","followers_url":"https://api.github.com/users/MujibAzizi/followers","following_url":"https://api.github.com/users/MujibAzizi/following{/other_user}","gists_url":"https://api.github.com/users/MujibAzizi/gists{/gist_id}","starred_url":"https://api.github.com/users/MujibAzizi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MujibAzizi/subscriptions","organizations_url":"https://api.github.com/users/MujibAzizi/orgs","repos_url":"https://api.github.com/users/MujibAzizi/repos","events_url":"https://api.github.com/users/MujibAzizi/events{/privacy}","received_events_url":"https://api.github.com/users/MujibAzizi/received_events","type":"User","site_admin":false},"repo":{"id":28686820,"name":"wp-papi.github.io","full_name":"MujibAzizi/wp-papi.github.io","owner":{"login":"MujibAzizi","id":1754708,"avatar_url":"https://avatars.githubusercontent.com/u/1754708?v=3","gravatar_id":"","url":"https://api.github.com/users/MujibAzizi","html_url":"https://github.com/MujibAzizi","followers_url":"https://api.github.com/users/MujibAzizi/followers","following_url":"https://api.github.com/users/MujibAzizi/following{/other_user}","gists_url":"https://api.github.com/users/MujibAzizi/gists{/gist_id}","starred_url":"https://api.github.com/users/MujibAzizi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MujibAzizi/subscriptions","organizations_url":"https://api.github.com/users/MujibAzizi/orgs","repos_url":"https://api.github.com/users/MujibAzizi/repos","events_url":"https://api.github.com/users/MujibAzizi/events{/privacy}","received_events_url":"https://api.github.com/users/MujibAzizi/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/MujibAzizi/wp-papi.github.io","description":"Landning site for Papi","fork":true,"url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io","forks_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/forks","keys_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/teams","hooks_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/hooks","issue_events_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/events","assignees_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/tags","blobs_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/languages","stargazers_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/stargazers","contributors_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/contributors","subscribers_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/subscribers","subscription_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/subscription","commits_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/merges","archive_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/downloads","issues_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/labels{/name}","releases_url":"https://api.github.com/repos/MujibAzizi/wp-papi.github.io/releases{/id}","created_at":"2015-01-01T13:14:12Z","updated_at":"2015-01-01T13:14:12Z","pushed_at":"2015-01-01T13:18:33Z","git_url":"git://github.com/MujibAzizi/wp-papi.github.io.git","ssh_url":"git@github.com:MujibAzizi/wp-papi.github.io.git","clone_url":"https://github.com/MujibAzizi/wp-papi.github.io.git","svn_url":"https://github.com/MujibAzizi/wp-papi.github.io","homepage":"http://wp-papi.github.io","size":472,"stargazers_count":0,"watchers_count":0,"language":"CSS","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":"wp-papi:master","ref":"master","sha":"ba8ee86582f0276221cdc2cf567fe817f72b131d","user":{"login":"wp-papi","id":6768662,"avatar_url":"https://avatars.githubusercontent.com/u/6768662?v=3","gravatar_id":"","url":"https://api.github.com/users/wp-papi","html_url":"https://github.com/wp-papi","followers_url":"https://api.github.com/users/wp-papi/followers","following_url":"https://api.github.com/users/wp-papi/following{/other_user}","gists_url":"https://api.github.com/users/wp-papi/gists{/gist_id}","starred_url":"https://api.github.com/users/wp-papi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wp-papi/subscriptions","organizations_url":"https://api.github.com/users/wp-papi/orgs","repos_url":"https://api.github.com/users/wp-papi/repos","events_url":"https://api.github.com/users/wp-papi/events{/privacy}","received_events_url":"https://api.github.com/users/wp-papi/received_events","type":"Organization","site_admin":false},"repo":{"id":22603715,"name":"wp-papi.github.io","full_name":"wp-papi/wp-papi.github.io","owner":{"login":"wp-papi","id":6768662,"avatar_url":"https://avatars.githubusercontent.com/u/6768662?v=3","gravatar_id":"","url":"https://api.github.com/users/wp-papi","html_url":"https://github.com/wp-papi","followers_url":"https://api.github.com/users/wp-papi/followers","following_url":"https://api.github.com/users/wp-papi/following{/other_user}","gists_url":"https://api.github.com/users/wp-papi/gists{/gist_id}","starred_url":"https://api.github.com/users/wp-papi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wp-papi/subscriptions","organizations_url":"https://api.github.com/users/wp-papi/orgs","repos_url":"https://api.github.com/users/wp-papi/repos","events_url":"https://api.github.com/users/wp-papi/events{/privacy}","received_events_url":"https://api.github.com/users/wp-papi/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/wp-papi/wp-papi.github.io","description":"Landning site for Papi","fork":false,"url":"https://api.github.com/repos/wp-papi/wp-papi.github.io","forks_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/forks","keys_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/teams","hooks_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/hooks","issue_events_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/events","assignees_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/tags","blobs_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/languages","stargazers_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/stargazers","contributors_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/contributors","subscribers_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/subscribers","subscription_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/subscription","commits_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/merges","archive_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/downloads","issues_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/labels{/name}","releases_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/releases{/id}","created_at":"2014-08-04T12:44:29Z","updated_at":"2014-12-21T13:23:11Z","pushed_at":"2015-01-01T15:18:51Z","git_url":"git://github.com/wp-papi/wp-papi.github.io.git","ssh_url":"git@github.com:wp-papi/wp-papi.github.io.git","clone_url":"https://github.com/wp-papi/wp-papi.github.io.git","svn_url":"https://github.com/wp-papi/wp-papi.github.io","homepage":"http://wp-papi.github.io","size":692,"stargazers_count":1,"watchers_count":1,"language":"CSS","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/wp-papi/wp-papi.github.io/pulls/1"},"html":{"href":"https://github.com/wp-papi/wp-papi.github.io/pull/1"},"issue":{"href":"https://api.github.com/repos/wp-papi/wp-papi.github.io/issues/1"},"comments":{"href":"https://api.github.com/repos/wp-papi/wp-papi.github.io/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/wp-papi/wp-papi.github.io/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/wp-papi/wp-papi.github.io/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/wp-papi/wp-papi.github.io/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/wp-papi/wp-papi.github.io/statuses/28498ee57cad1c0b2b4ff8b0b2d902b7b0a6e082"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"frozzare","id":14610,"avatar_url":"https://avatars.githubusercontent.com/u/14610?v=3","gravatar_id":"","url":"https://api.github.com/users/frozzare","html_url":"https://github.com/frozzare","followers_url":"https://api.github.com/users/frozzare/followers","following_url":"https://api.github.com/users/frozzare/following{/other_user}","gists_url":"https://api.github.com/users/frozzare/gists{/gist_id}","starred_url":"https://api.github.com/users/frozzare/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/frozzare/subscriptions","organizations_url":"https://api.github.com/users/frozzare/orgs","repos_url":"https://api.github.com/users/frozzare/repos","events_url":"https://api.github.com/users/frozzare/events{/privacy}","received_events_url":"https://api.github.com/users/frozzare/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":1,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:18:52Z","org":{"id":6768662,"login":"wp-papi","gravatar_id":"","url":"https://api.github.com/orgs/wp-papi","avatar_url":"https://avatars.githubusercontent.com/u/6768662?"}} +,{"id":"2489659771","type":"CreateEvent","actor":{"id":612769,"login":"csabagaspar","gravatar_id":"","url":"https://api.github.com/users/csabagaspar","avatar_url":"https://avatars.githubusercontent.com/u/612769?"},"repo":{"id":28688947,"name":"csabagaspar/example-javatools","url":"https://api.github.com/repos/csabagaspar/example-javatools"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:52Z"} +,{"id":"2489659772","type":"IssueCommentEvent","actor":{"id":6000299,"login":"SecUpwN","gravatar_id":"","url":"https://api.github.com/users/SecUpwN","avatar_url":"https://avatars.githubusercontent.com/u/6000299?"},"repo":{"id":14640193,"name":"SecUpwN/Android-IMSI-Catcher-Detector","url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector/issues/251","labels_url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector/issues/251/labels{/name}","comments_url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector/issues/251/comments","events_url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector/issues/251/events","html_url":"https://github.com/SecUpwN/Android-IMSI-Catcher-Detector/issues/251","id":53220939,"number":251,"title":"Suppress multiple Notifications","user":{"login":"SecUpwN","id":6000299,"avatar_url":"https://avatars.githubusercontent.com/u/6000299?v=3","gravatar_id":"","url":"https://api.github.com/users/SecUpwN","html_url":"https://github.com/SecUpwN","followers_url":"https://api.github.com/users/SecUpwN/followers","following_url":"https://api.github.com/users/SecUpwN/following{/other_user}","gists_url":"https://api.github.com/users/SecUpwN/gists{/gist_id}","starred_url":"https://api.github.com/users/SecUpwN/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SecUpwN/subscriptions","organizations_url":"https://api.github.com/users/SecUpwN/orgs","repos_url":"https://api.github.com/users/SecUpwN/repos","events_url":"https://api.github.com/users/SecUpwN/events{/privacy}","received_events_url":"https://api.github.com/users/SecUpwN/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector/labels/ENHANCEMENT","name":"ENHANCEMENT","color":"c7def8"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T14:39:21Z","updated_at":"2015-01-01T15:18:52Z","closed_at":null,"body":"Hey folks! A few of my friends recently reported that our App displays notifications too often, especially the one with disabled `Location Services`. This makes the impression our App wants to \"call home\":\r\n\r\n[![Location Services Disabled](https://github.com/SecUpwN/Android-IMSI-Catcher-Detector/raw/master/SCREENSHOTS/LocationServices_Disabled.png)](https://github.com/SecUpwN/Android-IMSI-Catcher-Detector/issues/251)\r\n\r\nThe best thing would be if our App would only notify the user **once**. Feel free to propose any other solution for this, but I noticed myself that it is pretty annoying having to click `CANCEL` every single time.."},"comment":{"url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector/issues/comments/68488895","html_url":"https://github.com/SecUpwN/Android-IMSI-Catcher-Detector/issues/251#issuecomment-68488895","issue_url":"https://api.github.com/repos/SecUpwN/Android-IMSI-Catcher-Detector/issues/251","id":68488895,"user":{"login":"SecUpwN","id":6000299,"avatar_url":"https://avatars.githubusercontent.com/u/6000299?v=3","gravatar_id":"","url":"https://api.github.com/users/SecUpwN","html_url":"https://github.com/SecUpwN","followers_url":"https://api.github.com/users/SecUpwN/followers","following_url":"https://api.github.com/users/SecUpwN/following{/other_user}","gists_url":"https://api.github.com/users/SecUpwN/gists{/gist_id}","starred_url":"https://api.github.com/users/SecUpwN/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SecUpwN/subscriptions","organizations_url":"https://api.github.com/users/SecUpwN/orgs","repos_url":"https://api.github.com/users/SecUpwN/repos","events_url":"https://api.github.com/users/SecUpwN/events{/privacy}","received_events_url":"https://api.github.com/users/SecUpwN/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:18:52Z","updated_at":"2015-01-01T15:18:52Z","body":"@E3V3A, which second message? I don't get one. Just the above from OP."}},"public":true,"created_at":"2015-01-01T15:18:52Z"} +,{"id":"2489659773","type":"PushEvent","actor":{"id":14610,"login":"frozzare","gravatar_id":"","url":"https://api.github.com/users/frozzare","avatar_url":"https://avatars.githubusercontent.com/u/14610?"},"repo":{"id":22603715,"name":"wp-papi/wp-papi.github.io","url":"https://api.github.com/repos/wp-papi/wp-papi.github.io"},"payload":{"push_id":536867909,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"cb45a6b1061200a9ea31955ea6fcb3624ae8d1c7","before":"ba8ee86582f0276221cdc2cf567fe817f72b131d","commits":[{"sha":"28498ee57cad1c0b2b4ff8b0b2d902b7b0a6e082","author":{"email":"5c03c9ea93e726bb4852dccb458af7ab0e1d3163@nilvola.nl","name":"Mujib Azizi"},"message":"Dont enforce version as Composer guesses the best version contraint","distinct":true,"url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/commits/28498ee57cad1c0b2b4ff8b0b2d902b7b0a6e082"},{"sha":"cb45a6b1061200a9ea31955ea6fcb3624ae8d1c7","author":{"email":"5c635c68fb1818d8050efe55153434cde482f3b3@users.noreply.github.com","name":"Fredrik Forsmo"},"message":"Merge pull request #1 from MujibAzizi/require-version\n\nDont enforce version as Composer guesses the best version contraint","distinct":true,"url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/commits/cb45a6b1061200a9ea31955ea6fcb3624ae8d1c7"}]},"public":true,"created_at":"2015-01-01T15:18:52Z","org":{"id":6768662,"login":"wp-papi","gravatar_id":"","url":"https://api.github.com/orgs/wp-papi","avatar_url":"https://avatars.githubusercontent.com/u/6768662?"}} +,{"id":"2489659776","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":22913041,"name":"hex7c0/transfer-rate","url":"https://api.github.com/repos/hex7c0/transfer-rate"},"payload":{"push_id":536867911,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ef77e49941c1a1940d1b660439d118515d0be305","before":"68cd2b2da433c7595662e0f45438085d3995e633","commits":[{"sha":"ef77e49941c1a1940d1b660439d118515d0be305","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"1.0.5","distinct":true,"url":"https://api.github.com/repos/hex7c0/transfer-rate/commits/ef77e49941c1a1940d1b660439d118515d0be305"}]},"public":true,"created_at":"2015-01-01T15:18:52Z"} +,{"id":"2489659778","type":"PullRequestEvent","actor":{"id":557961,"login":"e-jigsaw","gravatar_id":"","url":"https://api.github.com/users/e-jigsaw","avatar_url":"https://avatars.githubusercontent.com/u/557961?"},"repo":{"id":21883081,"name":"jgsme/dev","url":"https://api.github.com/repos/jgsme/dev"},"payload":{"action":"opened","number":19,"pull_request":{"url":"https://api.github.com/repos/jgsme/dev/pulls/19","id":26743910,"html_url":"https://github.com/jgsme/dev/pull/19","diff_url":"https://github.com/jgsme/dev/pull/19.diff","patch_url":"https://github.com/jgsme/dev/pull/19.patch","issue_url":"https://api.github.com/repos/jgsme/dev/issues/19","number":19,"state":"open","locked":false,"title":"Don't show disqus in index page","user":{"login":"e-jigsaw","id":557961,"avatar_url":"https://avatars.githubusercontent.com/u/557961?v=3","gravatar_id":"","url":"https://api.github.com/users/e-jigsaw","html_url":"https://github.com/e-jigsaw","followers_url":"https://api.github.com/users/e-jigsaw/followers","following_url":"https://api.github.com/users/e-jigsaw/following{/other_user}","gists_url":"https://api.github.com/users/e-jigsaw/gists{/gist_id}","starred_url":"https://api.github.com/users/e-jigsaw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-jigsaw/subscriptions","organizations_url":"https://api.github.com/users/e-jigsaw/orgs","repos_url":"https://api.github.com/users/e-jigsaw/repos","events_url":"https://api.github.com/users/e-jigsaw/events{/privacy}","received_events_url":"https://api.github.com/users/e-jigsaw/received_events","type":"User","site_admin":false},"body":"for #13 ","created_at":"2015-01-01T15:18:53Z","updated_at":"2015-01-01T15:18:53Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/jgsme/dev/pulls/19/commits","review_comments_url":"https://api.github.com/repos/jgsme/dev/pulls/19/comments","review_comment_url":"https://api.github.com/repos/jgsme/dev/pulls/comments/{number}","comments_url":"https://api.github.com/repos/jgsme/dev/issues/19/comments","statuses_url":"https://api.github.com/repos/jgsme/dev/statuses/2be747e0f8e0f0486ec056baf38a07085d932da8","head":{"label":"jgsme:dont-show-disqus-in-index","ref":"dont-show-disqus-in-index","sha":"2be747e0f8e0f0486ec056baf38a07085d932da8","user":{"login":"jgsme","id":8819590,"avatar_url":"https://avatars.githubusercontent.com/u/8819590?v=3","gravatar_id":"","url":"https://api.github.com/users/jgsme","html_url":"https://github.com/jgsme","followers_url":"https://api.github.com/users/jgsme/followers","following_url":"https://api.github.com/users/jgsme/following{/other_user}","gists_url":"https://api.github.com/users/jgsme/gists{/gist_id}","starred_url":"https://api.github.com/users/jgsme/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jgsme/subscriptions","organizations_url":"https://api.github.com/users/jgsme/orgs","repos_url":"https://api.github.com/users/jgsme/repos","events_url":"https://api.github.com/users/jgsme/events{/privacy}","received_events_url":"https://api.github.com/users/jgsme/received_events","type":"Organization","site_admin":false},"repo":{"id":21883081,"name":"dev","full_name":"jgsme/dev","owner":{"login":"jgsme","id":8819590,"avatar_url":"https://avatars.githubusercontent.com/u/8819590?v=3","gravatar_id":"","url":"https://api.github.com/users/jgsme","html_url":"https://github.com/jgsme","followers_url":"https://api.github.com/users/jgsme/followers","following_url":"https://api.github.com/users/jgsme/following{/other_user}","gists_url":"https://api.github.com/users/jgsme/gists{/gist_id}","starred_url":"https://api.github.com/users/jgsme/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jgsme/subscriptions","organizations_url":"https://api.github.com/users/jgsme/orgs","repos_url":"https://api.github.com/users/jgsme/repos","events_url":"https://api.github.com/users/jgsme/events{/privacy}","received_events_url":"https://api.github.com/users/jgsme/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/jgsme/dev","description":"Development log","fork":false,"url":"https://api.github.com/repos/jgsme/dev","forks_url":"https://api.github.com/repos/jgsme/dev/forks","keys_url":"https://api.github.com/repos/jgsme/dev/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jgsme/dev/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jgsme/dev/teams","hooks_url":"https://api.github.com/repos/jgsme/dev/hooks","issue_events_url":"https://api.github.com/repos/jgsme/dev/issues/events{/number}","events_url":"https://api.github.com/repos/jgsme/dev/events","assignees_url":"https://api.github.com/repos/jgsme/dev/assignees{/user}","branches_url":"https://api.github.com/repos/jgsme/dev/branches{/branch}","tags_url":"https://api.github.com/repos/jgsme/dev/tags","blobs_url":"https://api.github.com/repos/jgsme/dev/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jgsme/dev/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jgsme/dev/git/refs{/sha}","trees_url":"https://api.github.com/repos/jgsme/dev/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jgsme/dev/statuses/{sha}","languages_url":"https://api.github.com/repos/jgsme/dev/languages","stargazers_url":"https://api.github.com/repos/jgsme/dev/stargazers","contributors_url":"https://api.github.com/repos/jgsme/dev/contributors","subscribers_url":"https://api.github.com/repos/jgsme/dev/subscribers","subscription_url":"https://api.github.com/repos/jgsme/dev/subscription","commits_url":"https://api.github.com/repos/jgsme/dev/commits{/sha}","git_commits_url":"https://api.github.com/repos/jgsme/dev/git/commits{/sha}","comments_url":"https://api.github.com/repos/jgsme/dev/comments{/number}","issue_comment_url":"https://api.github.com/repos/jgsme/dev/issues/comments/{number}","contents_url":"https://api.github.com/repos/jgsme/dev/contents/{+path}","compare_url":"https://api.github.com/repos/jgsme/dev/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jgsme/dev/merges","archive_url":"https://api.github.com/repos/jgsme/dev/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jgsme/dev/downloads","issues_url":"https://api.github.com/repos/jgsme/dev/issues{/number}","pulls_url":"https://api.github.com/repos/jgsme/dev/pulls{/number}","milestones_url":"https://api.github.com/repos/jgsme/dev/milestones{/number}","notifications_url":"https://api.github.com/repos/jgsme/dev/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jgsme/dev/labels{/name}","releases_url":"https://api.github.com/repos/jgsme/dev/releases{/id}","created_at":"2014-07-16T02:10:23Z","updated_at":"2015-01-01T15:15:29Z","pushed_at":"2015-01-01T15:18:23Z","git_url":"git://github.com/jgsme/dev.git","ssh_url":"git@github.com:jgsme/dev.git","clone_url":"https://github.com/jgsme/dev.git","svn_url":"https://github.com/jgsme/dev","homepage":"http://dev.jgs.me","size":2720,"stargazers_count":1,"watchers_count":1,"language":"CoffeeScript","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":8,"forks":0,"open_issues":8,"watchers":1,"default_branch":"master"}},"base":{"label":"jgsme:master","ref":"master","sha":"0812a374b6e968cffcd237306588eb4d98f21a92","user":{"login":"jgsme","id":8819590,"avatar_url":"https://avatars.githubusercontent.com/u/8819590?v=3","gravatar_id":"","url":"https://api.github.com/users/jgsme","html_url":"https://github.com/jgsme","followers_url":"https://api.github.com/users/jgsme/followers","following_url":"https://api.github.com/users/jgsme/following{/other_user}","gists_url":"https://api.github.com/users/jgsme/gists{/gist_id}","starred_url":"https://api.github.com/users/jgsme/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jgsme/subscriptions","organizations_url":"https://api.github.com/users/jgsme/orgs","repos_url":"https://api.github.com/users/jgsme/repos","events_url":"https://api.github.com/users/jgsme/events{/privacy}","received_events_url":"https://api.github.com/users/jgsme/received_events","type":"Organization","site_admin":false},"repo":{"id":21883081,"name":"dev","full_name":"jgsme/dev","owner":{"login":"jgsme","id":8819590,"avatar_url":"https://avatars.githubusercontent.com/u/8819590?v=3","gravatar_id":"","url":"https://api.github.com/users/jgsme","html_url":"https://github.com/jgsme","followers_url":"https://api.github.com/users/jgsme/followers","following_url":"https://api.github.com/users/jgsme/following{/other_user}","gists_url":"https://api.github.com/users/jgsme/gists{/gist_id}","starred_url":"https://api.github.com/users/jgsme/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jgsme/subscriptions","organizations_url":"https://api.github.com/users/jgsme/orgs","repos_url":"https://api.github.com/users/jgsme/repos","events_url":"https://api.github.com/users/jgsme/events{/privacy}","received_events_url":"https://api.github.com/users/jgsme/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/jgsme/dev","description":"Development log","fork":false,"url":"https://api.github.com/repos/jgsme/dev","forks_url":"https://api.github.com/repos/jgsme/dev/forks","keys_url":"https://api.github.com/repos/jgsme/dev/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jgsme/dev/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jgsme/dev/teams","hooks_url":"https://api.github.com/repos/jgsme/dev/hooks","issue_events_url":"https://api.github.com/repos/jgsme/dev/issues/events{/number}","events_url":"https://api.github.com/repos/jgsme/dev/events","assignees_url":"https://api.github.com/repos/jgsme/dev/assignees{/user}","branches_url":"https://api.github.com/repos/jgsme/dev/branches{/branch}","tags_url":"https://api.github.com/repos/jgsme/dev/tags","blobs_url":"https://api.github.com/repos/jgsme/dev/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jgsme/dev/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jgsme/dev/git/refs{/sha}","trees_url":"https://api.github.com/repos/jgsme/dev/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jgsme/dev/statuses/{sha}","languages_url":"https://api.github.com/repos/jgsme/dev/languages","stargazers_url":"https://api.github.com/repos/jgsme/dev/stargazers","contributors_url":"https://api.github.com/repos/jgsme/dev/contributors","subscribers_url":"https://api.github.com/repos/jgsme/dev/subscribers","subscription_url":"https://api.github.com/repos/jgsme/dev/subscription","commits_url":"https://api.github.com/repos/jgsme/dev/commits{/sha}","git_commits_url":"https://api.github.com/repos/jgsme/dev/git/commits{/sha}","comments_url":"https://api.github.com/repos/jgsme/dev/comments{/number}","issue_comment_url":"https://api.github.com/repos/jgsme/dev/issues/comments/{number}","contents_url":"https://api.github.com/repos/jgsme/dev/contents/{+path}","compare_url":"https://api.github.com/repos/jgsme/dev/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jgsme/dev/merges","archive_url":"https://api.github.com/repos/jgsme/dev/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jgsme/dev/downloads","issues_url":"https://api.github.com/repos/jgsme/dev/issues{/number}","pulls_url":"https://api.github.com/repos/jgsme/dev/pulls{/number}","milestones_url":"https://api.github.com/repos/jgsme/dev/milestones{/number}","notifications_url":"https://api.github.com/repos/jgsme/dev/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jgsme/dev/labels{/name}","releases_url":"https://api.github.com/repos/jgsme/dev/releases{/id}","created_at":"2014-07-16T02:10:23Z","updated_at":"2015-01-01T15:15:29Z","pushed_at":"2015-01-01T15:18:23Z","git_url":"git://github.com/jgsme/dev.git","ssh_url":"git@github.com:jgsme/dev.git","clone_url":"https://github.com/jgsme/dev.git","svn_url":"https://github.com/jgsme/dev","homepage":"http://dev.jgs.me","size":2720,"stargazers_count":1,"watchers_count":1,"language":"CoffeeScript","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":8,"forks":0,"open_issues":8,"watchers":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/jgsme/dev/pulls/19"},"html":{"href":"https://github.com/jgsme/dev/pull/19"},"issue":{"href":"https://api.github.com/repos/jgsme/dev/issues/19"},"comments":{"href":"https://api.github.com/repos/jgsme/dev/issues/19/comments"},"review_comments":{"href":"https://api.github.com/repos/jgsme/dev/pulls/19/comments"},"review_comment":{"href":"https://api.github.com/repos/jgsme/dev/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/jgsme/dev/pulls/19/commits"},"statuses":{"href":"https://api.github.com/repos/jgsme/dev/statuses/2be747e0f8e0f0486ec056baf38a07085d932da8"}},"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:18:53Z","org":{"id":8819590,"login":"jgsme","gravatar_id":"","url":"https://api.github.com/orgs/jgsme","avatar_url":"https://avatars.githubusercontent.com/u/8819590?"}} +,{"id":"2489659781","type":"PushEvent","actor":{"id":6764693,"login":"nstrayer","gravatar_id":"","url":"https://api.github.com/users/nstrayer","avatar_url":"https://avatars.githubusercontent.com/u/6764693?"},"repo":{"id":28524365,"name":"nstrayer/europeBlog","url":"https://api.github.com/repos/nstrayer/europeBlog"},"payload":{"push_id":536867912,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"99a3f5e247a26776f1105bed0c355f97e874feea","before":"77eab9b34a576eb965ea4c733ea9dccb3e259fb5","commits":[{"sha":"99a3f5e247a26776f1105bed0c355f97e874feea","author":{"email":"423599136cb56af1e203d54c99b57b46b78f2b58@uvm.edu","name":"Nick Strayer"},"message":"New post","distinct":true,"url":"https://api.github.com/repos/nstrayer/europeBlog/commits/99a3f5e247a26776f1105bed0c355f97e874feea"}]},"public":true,"created_at":"2015-01-01T15:18:53Z"} +,{"id":"2489659783","type":"IssueCommentEvent","actor":{"id":14610,"login":"frozzare","gravatar_id":"","url":"https://api.github.com/users/frozzare","avatar_url":"https://avatars.githubusercontent.com/u/14610?"},"repo":{"id":22603715,"name":"wp-papi/wp-papi.github.io","url":"https://api.github.com/repos/wp-papi/wp-papi.github.io"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/issues/1","labels_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/issues/1/comments","events_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/issues/1/events","html_url":"https://github.com/wp-papi/wp-papi.github.io/pull/1","id":53219553,"number":1,"title":"Dont enforce version as Composer guesses the best version contraint","user":{"login":"MujibAzizi","id":1754708,"avatar_url":"https://avatars.githubusercontent.com/u/1754708?v=3","gravatar_id":"","url":"https://api.github.com/users/MujibAzizi","html_url":"https://github.com/MujibAzizi","followers_url":"https://api.github.com/users/MujibAzizi/followers","following_url":"https://api.github.com/users/MujibAzizi/following{/other_user}","gists_url":"https://api.github.com/users/MujibAzizi/gists{/gist_id}","starred_url":"https://api.github.com/users/MujibAzizi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MujibAzizi/subscriptions","organizations_url":"https://api.github.com/users/MujibAzizi/orgs","repos_url":"https://api.github.com/users/MujibAzizi/repos","events_url":"https://api.github.com/users/MujibAzizi/events{/privacy}","received_events_url":"https://api.github.com/users/MujibAzizi/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T13:20:04Z","updated_at":"2015-01-01T15:18:54Z","closed_at":"2015-01-01T15:18:51Z","pull_request":{"url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/pulls/1","html_url":"https://github.com/wp-papi/wp-papi.github.io/pull/1","diff_url":"https://github.com/wp-papi/wp-papi.github.io/pull/1.diff","patch_url":"https://github.com/wp-papi/wp-papi.github.io/pull/1.patch"},"body":"Since Composer 1.0 alpha9 it's not necessary to specify a version when requiring using `composer require`. \r\n\r\nSource: http://seld.be/notes/composer-1-0-alpha9"},"comment":{"url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/issues/comments/68488896","html_url":"https://github.com/wp-papi/wp-papi.github.io/pull/1#issuecomment-68488896","issue_url":"https://api.github.com/repos/wp-papi/wp-papi.github.io/issues/1","id":68488896,"user":{"login":"frozzare","id":14610,"avatar_url":"https://avatars.githubusercontent.com/u/14610?v=3","gravatar_id":"","url":"https://api.github.com/users/frozzare","html_url":"https://github.com/frozzare","followers_url":"https://api.github.com/users/frozzare/followers","following_url":"https://api.github.com/users/frozzare/following{/other_user}","gists_url":"https://api.github.com/users/frozzare/gists{/gist_id}","starred_url":"https://api.github.com/users/frozzare/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/frozzare/subscriptions","organizations_url":"https://api.github.com/users/frozzare/orgs","repos_url":"https://api.github.com/users/frozzare/repos","events_url":"https://api.github.com/users/frozzare/events{/privacy}","received_events_url":"https://api.github.com/users/frozzare/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:18:54Z","updated_at":"2015-01-01T15:18:54Z","body":"Thanks"}},"public":true,"created_at":"2015-01-01T15:18:54Z","org":{"id":6768662,"login":"wp-papi","gravatar_id":"","url":"https://api.github.com/orgs/wp-papi","avatar_url":"https://avatars.githubusercontent.com/u/6768662?"}} +,{"id":"2489659784","type":"PushEvent","actor":{"id":3893707,"login":"skyhills13","gravatar_id":"","url":"https://api.github.com/users/skyhills13","avatar_url":"https://avatars.githubusercontent.com/u/3893707?"},"repo":{"id":23691347,"name":"skyhills13/PhotoMosaic","url":"https://api.github.com/repos/skyhills13/PhotoMosaic"},"payload":{"push_id":536867913,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"2a2c999a3a716524ac4b9c9d2c8638e80034349d","before":"5315e15efdfb050aecbd590848ee1fae946d9e01","commits":[{"sha":"2a2c999a3a716524ac4b9c9d2c8638e80034349d","author":{"email":"8133434cd628e9190d4cd2d5a00228d5b2685fcf@gmail.com","name":"skyhills13"},"message":"#225","distinct":true,"url":"https://api.github.com/repos/skyhills13/PhotoMosaic/commits/2a2c999a3a716524ac4b9c9d2c8638e80034349d"}]},"public":true,"created_at":"2015-01-01T15:18:54Z"} +,{"id":"2489659786","type":"CreateEvent","actor":{"id":4081044,"login":"sosohu","gravatar_id":"","url":"https://api.github.com/users/sosohu","avatar_url":"https://avatars.githubusercontent.com/u/4081044?"},"repo":{"id":28688948,"name":"sosohu/latex","url":"https://api.github.com/repos/sosohu/latex"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"My personal latex template, such as ppt, article and book","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:18:55Z"} +,{"id":"2489659787","type":"WatchEvent","actor":{"id":282788,"login":"garethrees","gravatar_id":"","url":"https://api.github.com/users/garethrees","avatar_url":"https://avatars.githubusercontent.com/u/282788?"},"repo":{"id":3271130,"name":"joeyh/github-backup","url":"https://api.github.com/repos/joeyh/github-backup"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:18:56Z"} +,{"id":"2489659797","type":"PushEvent","actor":{"id":561882,"login":"vicever","gravatar_id":"","url":"https://api.github.com/users/vicever","avatar_url":"https://avatars.githubusercontent.com/u/561882?"},"repo":{"id":28688879,"name":"vicever/server-monitor","url":"https://api.github.com/repos/vicever/server-monitor"},"payload":{"push_id":536867917,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8d700fe59e2be94f4a169ad9b4e9b4d0f613d252","before":"0c5536f6cf0b9ddeb4eab4488cfa893860ef884f","commits":[{"sha":"8d700fe59e2be94f4a169ad9b4e9b4d0f613d252","author":{"email":"ad2e9d551f19738724059b0f0113dac725d5705a@gmail.com","name":"vicever"},"message":"init version, with TODO: timeout","distinct":true,"url":"https://api.github.com/repos/vicever/server-monitor/commits/8d700fe59e2be94f4a169ad9b4e9b4d0f613d252"}]},"public":true,"created_at":"2015-01-01T15:18:56Z"} +,{"id":"2489659801","type":"PushEvent","actor":{"id":512573,"login":"SamWhited","gravatar_id":"","url":"https://api.github.com/users/SamWhited","avatar_url":"https://avatars.githubusercontent.com/u/512573?"},"repo":{"id":28072019,"name":"SamWhited/ph.sh","url":"https://api.github.com/repos/SamWhited/ph.sh"},"payload":{"push_id":536867919,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"afed5fe7b3e531c0d38600c6a7748d4297706110","before":"484acc46ae5d94e3565c398ef755486876b2a274","commits":[{"sha":"afed5fe7b3e531c0d38600c6a7748d4297706110","author":{"email":"f16bed56189e249fe4ca8ed10a1ecae60e8ceac0@samwhited.com","name":"Sam Whited"},"message":"Move IfdEntry out of outer class","distinct":true,"url":"https://api.github.com/repos/SamWhited/ph.sh/commits/afed5fe7b3e531c0d38600c6a7748d4297706110"}]},"public":true,"created_at":"2015-01-01T15:18:57Z"} +,{"id":"2489659806","type":"WatchEvent","actor":{"id":2684154,"login":"mohd-bh","gravatar_id":"","url":"https://api.github.com/users/mohd-bh","avatar_url":"https://avatars.githubusercontent.com/u/2684154?"},"repo":{"id":3744545,"name":"eternicode/bootstrap-datepicker","url":"https://api.github.com/repos/eternicode/bootstrap-datepicker"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:18:58Z"} +,{"id":"2489659814","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":536867924,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9fa2e4c6772b1c499d762913eb47046556fa22ed","before":"4d5cf85780b15e3099ffc09f46a7bd07dd7358e1","commits":[{"sha":"9fa2e4c6772b1c499d762913eb47046556fa22ed","author":{"email":"414ad89ad538463e0ddf73118b04c3f329e260aa@gmx.net","name":"poliander"},"message":"removed utilisation of graphics pack","distinct":true,"url":"https://api.github.com/repos/poliander/skeleton-sdcc-cpc/commits/9fa2e4c6772b1c499d762913eb47046556fa22ed"}]},"public":true,"created_at":"2015-01-01T15:18:58Z"} +,{"id":"2489659820","type":"PushEvent","actor":{"id":640639,"login":"JohannesHoppe","gravatar_id":"","url":"https://api.github.com/users/JohannesHoppe","avatar_url":"https://avatars.githubusercontent.com/u/640639?"},"repo":{"id":24263980,"name":"JohannesHoppe/Artikel","url":"https://api.github.com/repos/JohannesHoppe/Artikel"},"payload":{"push_id":536867928,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c870b7afdd314fc77cac9058af34c12ac97d3f77","before":"9f1f279ed7846337210e8e651c680deb13dd5a83","commits":[{"sha":"c870b7afdd314fc77cac9058af34c12ac97d3f77","author":{"email":"be134d3fd9f51862bbaaa6fabe8251b2578f0700@haushoppe-its.de","name":"JohannesHoppe"},"message":"text","distinct":true,"url":"https://api.github.com/repos/JohannesHoppe/Artikel/commits/c870b7afdd314fc77cac9058af34c12ac97d3f77"}]},"public":true,"created_at":"2015-01-01T15:18:59Z"} +,{"id":"2489659822","type":"PushEvent","actor":{"id":312301,"login":"davidturner","gravatar_id":"","url":"https://api.github.com/users/davidturner","avatar_url":"https://avatars.githubusercontent.com/u/312301?"},"repo":{"id":26051556,"name":"davidturner/dotfiles","url":"https://api.github.com/repos/davidturner/dotfiles"},"payload":{"push_id":536867929,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"6a25680771819a37fb27243c9236fd34b1d2d07a","before":"c526773632b35732e3955e054dc4d7248ab49238","commits":[{"sha":"114512f1810fd7a0aebc4b503d6425487311bb93","author":{"email":"aa743a0aaec8f7d7a1f01442503957f4d7a2d634@davidturner.name","name":"David Turner"},"message":"Removed echos from aliases.","distinct":true,"url":"https://api.github.com/repos/davidturner/dotfiles/commits/114512f1810fd7a0aebc4b503d6425487311bb93"},{"sha":"6a25680771819a37fb27243c9236fd34b1d2d07a","author":{"email":"aa743a0aaec8f7d7a1f01442503957f4d7a2d634@davidturner.name","name":"David Turner"},"message":"Added in iTerm 2 preferences","distinct":true,"url":"https://api.github.com/repos/davidturner/dotfiles/commits/6a25680771819a37fb27243c9236fd34b1d2d07a"}]},"public":true,"created_at":"2015-01-01T15:18:59Z"} +,{"id":"2489659825","type":"PushEvent","actor":{"id":1829699,"login":"dfcoffin","gravatar_id":"","url":"https://api.github.com/users/dfcoffin","avatar_url":"https://avatars.githubusercontent.com/u/1829699?"},"repo":{"id":15364013,"name":"dfcoffin/OpenESPI-GreenButtonCMDTest","url":"https://api.github.com/repos/dfcoffin/OpenESPI-GreenButtonCMDTest"},"payload":{"push_id":536867931,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"d33182d5ab44b826f1e770ac9d3e256dcb0d36f7","before":"0d256d47eb8eb4f7271dadbc61bf1b7d631d0ff4","commits":[{"sha":"203a7cfa3654fa5b4a6639d6e066c05433ba3e00","author":{"email":"ffa87c2f5e60eff24924e72e3c498bac16037f23@hypertek.us","name":"MartyBurns"},"message":"corrected application information parser for correct tag for DataCustodianSelectionScreen'URI'","distinct":true,"url":"https://api.github.com/repos/dfcoffin/OpenESPI-GreenButtonCMDTest/commits/203a7cfa3654fa5b4a6639d6e066c05433ba3e00"},{"sha":"d33182d5ab44b826f1e770ac9d3e256dcb0d36f7","author":{"email":"ffa87c2f5e60eff24924e72e3c498bac16037f23@hypertek.us","name":"Marty Burns"},"message":"Merge pull request #161 from MartyBurns/master\n\ncorrected application information parser for correct tag for DataCustodianSelectionScreen'URI'","distinct":true,"url":"https://api.github.com/repos/dfcoffin/OpenESPI-GreenButtonCMDTest/commits/d33182d5ab44b826f1e770ac9d3e256dcb0d36f7"}]},"public":true,"created_at":"2015-01-01T15:19:00Z"} +,{"id":"2489659828","type":"PushEvent","actor":{"id":512573,"login":"SamWhited","gravatar_id":"","url":"https://api.github.com/users/SamWhited","avatar_url":"https://avatars.githubusercontent.com/u/512573?"},"repo":{"id":27289261,"name":"campaul/ph.sh","url":"https://api.github.com/repos/campaul/ph.sh"},"payload":{"push_id":536867934,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"afed5fe7b3e531c0d38600c6a7748d4297706110","before":"484acc46ae5d94e3565c398ef755486876b2a274","commits":[{"sha":"afed5fe7b3e531c0d38600c6a7748d4297706110","author":{"email":"f16bed56189e249fe4ca8ed10a1ecae60e8ceac0@samwhited.com","name":"Sam Whited"},"message":"Move IfdEntry out of outer class","distinct":true,"url":"https://api.github.com/repos/campaul/ph.sh/commits/afed5fe7b3e531c0d38600c6a7748d4297706110"}]},"public":true,"created_at":"2015-01-01T15:19:02Z"} +,{"id":"2489659830","type":"PushEvent","actor":{"id":5975070,"login":"marcellodibello","gravatar_id":"","url":"https://api.github.com/users/marcellodibello","avatar_url":"https://avatars.githubusercontent.com/u/5975070?"},"repo":{"id":17580814,"name":"marcellodibello/marcellodibello.github.io","url":"https://api.github.com/repos/marcellodibello/marcellodibello.github.io"},"payload":{"push_id":536867935,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"47bb8a9a16f321594d675bfc746b4e7bda5f7f44","before":"8f8f837da7798a930fe227ac0f75146d76013da6","commits":[{"sha":"47bb8a9a16f321594d675bfc746b4e7bda5f7f44","author":{"email":"babd00909fb78351e79d40af26c77fc37bb4ed59@gmail.com","name":"marcellodibello"},"message":"Update bootstrap.css","distinct":true,"url":"https://api.github.com/repos/marcellodibello/marcellodibello.github.io/commits/47bb8a9a16f321594d675bfc746b4e7bda5f7f44"}]},"public":true,"created_at":"2015-01-01T15:19:02Z"} +,{"id":"2489659834","type":"MemberEvent","actor":{"id":3625244,"login":"ghaiklor","gravatar_id":"","url":"https://api.github.com/users/ghaiklor","avatar_url":"https://avatars.githubusercontent.com/u/3625244?"},"repo":{"id":28688805,"name":"ghaiklor/patchwork","url":"https://api.github.com/repos/ghaiklor/patchwork"},"payload":{"member":{"login":"reporobot","id":6313872,"avatar_url":"https://avatars.githubusercontent.com/u/6313872?v=3","gravatar_id":"","url":"https://api.github.com/users/reporobot","html_url":"https://github.com/reporobot","followers_url":"https://api.github.com/users/reporobot/followers","following_url":"https://api.github.com/users/reporobot/following{/other_user}","gists_url":"https://api.github.com/users/reporobot/gists{/gist_id}","starred_url":"https://api.github.com/users/reporobot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/reporobot/subscriptions","organizations_url":"https://api.github.com/users/reporobot/orgs","repos_url":"https://api.github.com/users/reporobot/repos","events_url":"https://api.github.com/users/reporobot/events{/privacy}","received_events_url":"https://api.github.com/users/reporobot/received_events","type":"User","site_admin":false},"action":"added"},"public":true,"created_at":"2015-01-01T15:19:03Z"} +,{"id":"2489659840","type":"PushEvent","actor":{"id":661330,"login":"jahvi","gravatar_id":"","url":"https://api.github.com/users/jahvi","avatar_url":"https://avatars.githubusercontent.com/u/661330?"},"repo":{"id":28493611,"name":"jahvi/Vaprobash","url":"https://api.github.com/repos/jahvi/Vaprobash"},"payload":{"push_id":536867938,"size":1,"distinct_size":1,"ref":"refs/heads/magento","head":"1320113980ce2f223fb7debb7391f232730eeb8e","before":"7ef9dab292fea094ebc0910454c4818a6114f189","commits":[{"sha":"1320113980ce2f223fb7debb7391f232730eeb8e","author":{"email":"6c6402297ec9692bf394407f610f997fef969ef7@gmail.com","name":"Javier Villanueva"},"message":"Simplify nginx vhost script","distinct":true,"url":"https://api.github.com/repos/jahvi/Vaprobash/commits/1320113980ce2f223fb7debb7391f232730eeb8e"}]},"public":true,"created_at":"2015-01-01T15:19:04Z"} +,{"id":"2489659844","type":"PushEvent","actor":{"id":1809093,"login":"florpor","gravatar_id":"","url":"https://api.github.com/users/florpor","avatar_url":"https://avatars.githubusercontent.com/u/1809093?"},"repo":{"id":7504595,"name":"niryariv/opentaba-server","url":"https://api.github.com/repos/niryariv/opentaba-server"},"payload":{"push_id":536867939,"size":1,"distinct_size":1,"ref":"refs/heads/social_poster","head":"35346529d1147f2b5b272d335f88091b28ec4a75","before":"17cd2330b1b2152cfc3dcd487e66f80ca86f7c8e","commits":[{"sha":"35346529d1147f2b5b272d335f88091b28ec4a75","author":{"email":"d7f0e72e1f27c5895e1d0d0f8f982320809d9337@gmail.com","name":"florpor"},"message":"fix tests","distinct":true,"url":"https://api.github.com/repos/niryariv/opentaba-server/commits/35346529d1147f2b5b272d335f88091b28ec4a75"}]},"public":true,"created_at":"2015-01-01T15:19:04Z"} +,{"id":"2489659848","type":"PushEvent","actor":{"id":110883,"login":"bontibon","gravatar_id":"","url":"https://api.github.com/users/bontibon","avatar_url":"https://avatars.githubusercontent.com/u/110883?"},"repo":{"id":26129226,"name":"layeh/gumble","url":"https://api.github.com/repos/layeh/gumble"},"payload":{"push_id":536867941,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fdf1c7d8480d08fdedd1bfacdf496eb60c5c8e20","before":"3cd128b4ee4f846c235d3b44aa9586c97f1db154","commits":[{"sha":"fdf1c7d8480d08fdedd1bfacdf496eb60c5c8e20","author":{"email":"b7aba0cee2877ef342b5f08d0bd351a3ac7200ec@layeh.com","name":"Tim Cooper"},"message":"update protobuf package path\n\nthis removes the mercurial dependency","distinct":true,"url":"https://api.github.com/repos/layeh/gumble/commits/fdf1c7d8480d08fdedd1bfacdf496eb60c5c8e20"}]},"public":true,"created_at":"2015-01-01T15:19:04Z","org":{"id":306910,"login":"layeh","gravatar_id":"","url":"https://api.github.com/orgs/layeh","avatar_url":"https://avatars.githubusercontent.com/u/306910?"}} +,{"id":"2489659851","type":"WatchEvent","actor":{"id":774297,"login":"aspires","gravatar_id":"","url":"https://api.github.com/users/aspires","avatar_url":"https://avatars.githubusercontent.com/u/774297?"},"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:19:05Z"} +,{"id":"2489659859","type":"IssueCommentEvent","actor":{"id":2354108,"login":"coveralls","gravatar_id":"","url":"https://api.github.com/users/coveralls","avatar_url":"https://avatars.githubusercontent.com/u/2354108?"},"repo":{"id":5844600,"name":"mozilla/build-cloud-tools","url":"https://api.github.com/repos/mozilla/build-cloud-tools"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/mozilla/build-cloud-tools/issues/8","labels_url":"https://api.github.com/repos/mozilla/build-cloud-tools/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/mozilla/build-cloud-tools/issues/8/comments","events_url":"https://api.github.com/repos/mozilla/build-cloud-tools/issues/8/events","html_url":"https://github.com/mozilla/build-cloud-tools/pull/8","id":53221678,"number":8,"title":"Better spot instance detection","user":{"login":"rail","id":42865,"avatar_url":"https://avatars.githubusercontent.com/u/42865?v=3","gravatar_id":"","url":"https://api.github.com/users/rail","html_url":"https://github.com/rail","followers_url":"https://api.github.com/users/rail/followers","following_url":"https://api.github.com/users/rail/following{/other_user}","gists_url":"https://api.github.com/users/rail/gists{/gist_id}","starred_url":"https://api.github.com/users/rail/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rail/subscriptions","organizations_url":"https://api.github.com/users/rail/orgs","repos_url":"https://api.github.com/users/rail/repos","events_url":"https://api.github.com/users/rail/events{/privacy}","received_events_url":"https://api.github.com/users/rail/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:16:59Z","updated_at":"2015-01-01T15:19:05Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/mozilla/build-cloud-tools/pulls/8","html_url":"https://github.com/mozilla/build-cloud-tools/pull/8","diff_url":"https://github.com/mozilla/build-cloud-tools/pull/8.diff","patch_url":"https://github.com/mozilla/build-cloud-tools/pull/8.patch"},"body":"This will also terminate instances not tagged properly"},"comment":{"url":"https://api.github.com/repos/mozilla/build-cloud-tools/issues/comments/68488899","html_url":"https://github.com/mozilla/build-cloud-tools/pull/8#issuecomment-68488899","issue_url":"https://api.github.com/repos/mozilla/build-cloud-tools/issues/8","id":68488899,"user":{"login":"coveralls","id":2354108,"avatar_url":"https://avatars.githubusercontent.com/u/2354108?v=3","gravatar_id":"","url":"https://api.github.com/users/coveralls","html_url":"https://github.com/coveralls","followers_url":"https://api.github.com/users/coveralls/followers","following_url":"https://api.github.com/users/coveralls/following{/other_user}","gists_url":"https://api.github.com/users/coveralls/gists{/gist_id}","starred_url":"https://api.github.com/users/coveralls/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/coveralls/subscriptions","organizations_url":"https://api.github.com/users/coveralls/orgs","repos_url":"https://api.github.com/users/coveralls/repos","events_url":"https://api.github.com/users/coveralls/events{/privacy}","received_events_url":"https://api.github.com/users/coveralls/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:19:05Z","updated_at":"2015-01-01T15:19:05Z","body":"\n[![Coverage Status](https://coveralls.io/builds/1680444/badge)](https://coveralls.io/builds/1680444)\n\nCoverage remained the same when pulling **836b861b28b5675ea3ff45f74abe67681b30f173 on rail:spot_from_instance** into **82d436e8cb0f7f59e4c5fd7c52ac23a7c605e8b0 on mozilla:master**.\n"}},"public":true,"created_at":"2015-01-01T15:19:06Z","org":{"id":131524,"login":"mozilla","gravatar_id":"","url":"https://api.github.com/orgs/mozilla","avatar_url":"https://avatars.githubusercontent.com/u/131524?"}} +,{"id":"2489659861","type":"IssueCommentEvent","actor":{"id":833997,"login":"jgranick","gravatar_id":"","url":"https://api.github.com/users/jgranick","avatar_url":"https://avatars.githubusercontent.com/u/833997?"},"repo":{"id":8869463,"name":"openfl/openfl","url":"https://api.github.com/repos/openfl/openfl"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/openfl/openfl/issues/419","labels_url":"https://api.github.com/repos/openfl/openfl/issues/419/labels{/name}","comments_url":"https://api.github.com/repos/openfl/openfl/issues/419/comments","events_url":"https://api.github.com/repos/openfl/openfl/issues/419/events","html_url":"https://github.com/openfl/openfl/issues/419","id":51385393,"number":419,"title":"getObjectsUnderPoint() returns wrong value (html5 & neko)","user":{"login":"T1mL3arn","id":9349164,"avatar_url":"https://avatars.githubusercontent.com/u/9349164?v=3","gravatar_id":"","url":"https://api.github.com/users/T1mL3arn","html_url":"https://github.com/T1mL3arn","followers_url":"https://api.github.com/users/T1mL3arn/followers","following_url":"https://api.github.com/users/T1mL3arn/following{/other_user}","gists_url":"https://api.github.com/users/T1mL3arn/gists{/gist_id}","starred_url":"https://api.github.com/users/T1mL3arn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/T1mL3arn/subscriptions","organizations_url":"https://api.github.com/users/T1mL3arn/orgs","repos_url":"https://api.github.com/users/T1mL3arn/repos","events_url":"https://api.github.com/users/T1mL3arn/events{/privacy}","received_events_url":"https://api.github.com/users/T1mL3arn/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-12-09T03:58:09Z","updated_at":"2015-01-01T15:19:05Z","closed_at":"2014-12-31T22:54:54Z","body":"Sample code:\r\n```Haxe\r\n // in Main (document class)\r\n\r\n public function new() {\r\n super(); \r\n addEventListener(Event.ADDED_TO_STAGE, added);\r\n }\r\n\r\n function added()\r\n {\r\n var shape = new Shape();\r\n shape.graphics.beginFill(0);\r\n shape.graphics.drawCircle(0, 0, 2);\r\n this.addChild(shape);\r\n \r\n shape = new Shape();\r\n shape.graphics.beginFill(0);\r\n shape.graphics.drawCircle(0, 0, 2);\r\n this.addChild(shape);\r\n \r\n trace('numChildren is ' + this.numChildren);\r\n trace('this objects under point count ' + this.getObjectsUnderPoint(new Point()).length);\r\n trace('stage objects under point count ' + stage.getObjectsUnderPoint(new Point()).length);\r\n\r\n stage.addEventListener(Event.ENTER_FRAME, onFrame);\r\n }\r\n\tfunction onFrame(e:Event):Void\r\n\t{\r\n\t\tstage.removeEventListener(Event.ENTER_FRAME, onFrame);\r\n\t\ttrace('After frame event----------------------------');\r\n\t\ttrace('this objects under point count ' + this.getObjectsUnderPoint(new Point()).length);\r\n\t\ttrace('stage objects under point count ' + stage.getObjectsUnderPoint(new Point()).length);\r\n\t}\r\n```\r\nFlash output\r\n\r\n\tMain.hx:171: this numChildren : 2\r\n\tMain.hx:172: this objects under point count 2\r\n\tMain.hx:173: stage objects under point count 2\r\n\tMain.hx:183: After frame event----------------------------\r\n\tMain.hx:184: this objects under point count 2\r\n\tMain.hx:185: stage objects under point count 2\r\n\r\nHTML5 canvas output\r\n\r\n\t\"this numChildren : 2\" \r\n\t\"this objects under point count 1\"\r\n\t\"stage objects under point count 0\"\r\n\t\"After frame event----------------------------\" \r\n\t\"this objects under point count 1\" \r\n\t\"stage objects under point count 3\"\r\n\r\nNeko output\r\n\r\n\tMain.hx:171: this numChildren : 2\r\n\tMain.hx:172: this objects under point count 0\r\n\tMain.hx:173: stage objects under point count 0\r\n\tMain.hx:185: After frame event----------------------------\r\n\tMain.hx:186: this objects under point count 2\r\n\tMain.hx:187: stage objects under point count 2\r\n\r\nI tried to find a way to get correct value and I found ENTER_FRAME solution. But html5 still returns wrong count of objects.\r\n\r\nopenfl v 2.1.6"},"comment":{"url":"https://api.github.com/repos/openfl/openfl/issues/comments/68488900","html_url":"https://github.com/openfl/openfl/issues/419#issuecomment-68488900","issue_url":"https://api.github.com/repos/openfl/openfl/issues/419","id":68488900,"user":{"login":"jgranick","id":833997,"avatar_url":"https://avatars.githubusercontent.com/u/833997?v=3","gravatar_id":"","url":"https://api.github.com/users/jgranick","html_url":"https://github.com/jgranick","followers_url":"https://api.github.com/users/jgranick/followers","following_url":"https://api.github.com/users/jgranick/following{/other_user}","gists_url":"https://api.github.com/users/jgranick/gists{/gist_id}","starred_url":"https://api.github.com/users/jgranick/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jgranick/subscriptions","organizations_url":"https://api.github.com/users/jgranick/orgs","repos_url":"https://api.github.com/users/jgranick/repos","events_url":"https://api.github.com/users/jgranick/events{/privacy}","received_events_url":"https://api.github.com/users/jgranick/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:19:05Z","updated_at":"2015-01-01T15:19:05Z","body":"Thank you :smile:\r\n\r\nYour new test revealed a different issue. While the `getObjectsUnderPoint` list was much more accurate after the fixes, the coordinates for the shapes were not being calculated properly in the hit test, unless the ENTER_FRAME had occurred after they were created. The transform matrix for Sprite and Shape graphics was not being updated if a render had not occurred. This has been fixed.\r\n\r\nI also found a better way to handle the main class, so that we don't have to wait for the ENTER_FRAME. Now instead of hardcoding \"stage\" to work, I actually have the main class being added to the stage before it's `super ()` function is called. Native v2 still needs the render in order for `getObjectsUnderPoint` to work properly, but now HTML5 and native \"next\" return the same values before or after. It's the same as Flash now, except Flash still has the extra TextField, you can see it if you trace `stage.getObjectsUnderPoint(new Point(0, 0))` rather than only checking the `length` :smile: "}},"public":true,"created_at":"2015-01-01T15:19:06Z","org":{"id":4061208,"login":"openfl","gravatar_id":"","url":"https://api.github.com/orgs/openfl","avatar_url":"https://avatars.githubusercontent.com/u/4061208?"}} +,{"id":"2489659863","type":"WatchEvent","actor":{"id":6266887,"login":"Onatcer","gravatar_id":"","url":"https://api.github.com/users/Onatcer","avatar_url":"https://avatars.githubusercontent.com/u/6266887?"},"repo":{"id":28081156,"name":"lexrus/VPNOn","url":"https://api.github.com/repos/lexrus/VPNOn"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:19:06Z"} +,{"id":"2489659864","type":"CreateEvent","actor":{"id":907624,"login":"ysb33r","gravatar_id":"","url":"https://api.github.com/users/ysb33r","avatar_url":"https://avatars.githubusercontent.com/u/907624?"},"repo":{"id":28688949,"name":"ysb33r/doxygen-gradle-plugin","url":"https://api.github.com/repos/ysb33r/doxygen-gradle-plugin"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Run Doxygen documentation tasks from Gradle","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:19:06Z"} +,{"id":"2489659867","type":"PushEvent","actor":{"id":3797972,"login":"oceanjack","gravatar_id":"","url":"https://api.github.com/users/oceanjack","avatar_url":"https://avatars.githubusercontent.com/u/3797972?"},"repo":{"id":27213484,"name":"oceanjack/oceanjack.github.io","url":"https://api.github.com/repos/oceanjack/oceanjack.github.io"},"payload":{"push_id":536867947,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d1b951f71ea987a0b47754c5fa131733b6987582","before":"0753ed4cf82db7104c5bb6a0f86ed85adf091bee","commits":[{"sha":"d1b951f71ea987a0b47754c5fa131733b6987582","author":{"email":"e7962a36105d0ad4343dd588376fafc81e75f2e2@gmail.com","name":"oceanjack"},"message":"update","distinct":true,"url":"https://api.github.com/repos/oceanjack/oceanjack.github.io/commits/d1b951f71ea987a0b47754c5fa131733b6987582"}]},"public":true,"created_at":"2015-01-01T15:19:07Z"} +,{"id":"2489659869","type":"PushEvent","actor":{"id":3029165,"login":"haguenau","gravatar_id":"","url":"https://api.github.com/users/haguenau","avatar_url":"https://avatars.githubusercontent.com/u/3029165?"},"repo":{"id":28310648,"name":"haguenau/cv","url":"https://api.github.com/repos/haguenau/cv"},"payload":{"push_id":536867948,"size":7,"distinct_size":7,"ref":"refs/heads/master","head":"145c76f7cdc96e7857599c7d24488fb69af8a454","before":"410a0668289b15f1ff7ad2c7e2cde522bfa20440","commits":[{"sha":"d4de4d7911dd4006a83d6dc0c1d9bfce17abc7db","author":{"email":"18d1d67726319fed4f391d7bf0b3056e01579f9e@cqfd-corp.org","name":"Xfennec"},"message":"Merge pull request #37 from haguenau/master\n\nTweaked README.","distinct":true,"url":"https://api.github.com/repos/haguenau/cv/commits/d4de4d7911dd4006a83d6dc0c1d9bfce17abc7db"},{"sha":"8376e7e8f2e62b1509ea8e401e50727fe5cf41cd","author":{"email":"18d1d67726319fed4f391d7bf0b3056e01579f9e@cqfd-corp.org","name":"Xfennec"},"message":"Added -p support for PID monitoring. Fixed a bit indentation.","distinct":true,"url":"https://api.github.com/repos/haguenau/cv/commits/8376e7e8f2e62b1509ea8e401e50727fe5cf41cd"},{"sha":"db6eea5de9a7f486c131b1718bf163bd165dc50a","author":{"email":"18d1d67726319fed4f391d7bf0b3056e01579f9e@cqfd-corp.org","name":"Xfennec"},"message":"Updated documentation about -p option. Version is now 0.6.","distinct":true,"url":"https://api.github.com/repos/haguenau/cv/commits/db6eea5de9a7f486c131b1718bf163bd165dc50a"},{"sha":"e768d5796d5e6f2362022253a276eb62167c1ee4","author":{"email":"a2b4f67b2c6d6949f72679a1313f63db30e86780@gmail.com","name":"FeRD (Frank Dana)"},"message":"Cleaned up --help output, expanded manpage\n\n* Options list in --help output sorted into natural/priority order\n* -p flag added to --help synopsis, documented in manpage\n* Manpage SYNOPSIS section formatting is now more robust/canonical\n* Ordered usage, options list in manpage to match --help message\n* Added EXAMPLES from README.md to man page\n* Minor copyediting/expansion of documentation and help","distinct":true,"url":"https://api.github.com/repos/haguenau/cv/commits/e768d5796d5e6f2362022253a276eb62167c1ee4"},{"sha":"bd53fd77c314d355a59d1fe1af0d279bc56770ab","author":{"email":"a2b4f67b2c6d6949f72679a1313f63db30e86780@gmail.com","name":"Frank Dana"},"message":"Typo\n\nRemove a spurious colon from EXAMPLES","distinct":true,"url":"https://api.github.com/repos/haguenau/cv/commits/bd53fd77c314d355a59d1fe1af0d279bc56770ab"},{"sha":"be8ae41e8987ff999a54a7957d92f2089e5055eb","author":{"email":"18d1d67726319fed4f391d7bf0b3056e01579f9e@cqfd-corp.org","name":"Xfennec"},"message":"Merge pull request #38 from ferdnyc/doc-fixes\n\nCleaned up --help output, expanded manpage","distinct":true,"url":"https://api.github.com/repos/haguenau/cv/commits/be8ae41e8987ff999a54a7957d92f2089e5055eb"},{"sha":"145c76f7cdc96e7857599c7d24488fb69af8a454","author":{"email":"b331fc67af2f8f62216dc7677e33fa9ad545b96d@kurokatta.org","name":"David Haguenauer"},"message":"Made man page up to date with README.","distinct":true,"url":"https://api.github.com/repos/haguenau/cv/commits/145c76f7cdc96e7857599c7d24488fb69af8a454"}]},"public":true,"created_at":"2015-01-01T15:19:07Z"} +,{"id":"2489659872","type":"CreateEvent","actor":{"id":61840,"login":"derekgottlieb","gravatar_id":"","url":"https://api.github.com/users/derekgottlieb","avatar_url":"https://avatars.githubusercontent.com/u/61840?"},"repo":{"id":28688950,"name":"derekgottlieb/zfs-scripts","url":"https://api.github.com/repos/derekgottlieb/zfs-scripts"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:19:07Z"} +,{"id":"2489659873","type":"PushEvent","actor":{"id":8004265,"login":"sistem442","gravatar_id":"","url":"https://api.github.com/users/sistem442","avatar_url":"https://avatars.githubusercontent.com/u/8004265?"},"repo":{"id":28669142,"name":"sistem442/tagnotes","url":"https://api.github.com/repos/sistem442/tagnotes"},"payload":{"push_id":536867950,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"198ef3887587e750167ae04f202730b89758d5ef","before":"8d605bb337f1a0dd313bd5ae4348487c4a6347f7","commits":[{"sha":"77ede1698f4c4e172d4568cb8ecf463dc9e3529c","author":{"email":"d09f77ee14bbde865392d2040212f649b25524b4@Galuk","name":"boris"},"message":"Initial commit","distinct":true,"url":"https://api.github.com/repos/sistem442/tagnotes/commits/77ede1698f4c4e172d4568cb8ecf463dc9e3529c"},{"sha":"198ef3887587e750167ae04f202730b89758d5ef","author":{"email":"d09f77ee14bbde865392d2040212f649b25524b4@Galuk","name":"boris"},"message":"Initial commit","distinct":true,"url":"https://api.github.com/repos/sistem442/tagnotes/commits/198ef3887587e750167ae04f202730b89758d5ef"}]},"public":true,"created_at":"2015-01-01T15:19:07Z"} +,{"id":"2489659874","type":"ForkEvent","actor":{"id":10364888,"login":"zamanaziz","gravatar_id":"","url":"https://api.github.com/users/zamanaziz","avatar_url":"https://avatars.githubusercontent.com/u/10364888?"},"repo":{"id":2562751,"name":"zxing/zxing","url":"https://api.github.com/repos/zxing/zxing"},"payload":{"forkee":{"id":28688951,"name":"zxing","full_name":"zamanaziz/zxing","owner":{"login":"zamanaziz","id":10364888,"avatar_url":"https://avatars.githubusercontent.com/u/10364888?v=3","gravatar_id":"","url":"https://api.github.com/users/zamanaziz","html_url":"https://github.com/zamanaziz","followers_url":"https://api.github.com/users/zamanaziz/followers","following_url":"https://api.github.com/users/zamanaziz/following{/other_user}","gists_url":"https://api.github.com/users/zamanaziz/gists{/gist_id}","starred_url":"https://api.github.com/users/zamanaziz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zamanaziz/subscriptions","organizations_url":"https://api.github.com/users/zamanaziz/orgs","repos_url":"https://api.github.com/users/zamanaziz/repos","events_url":"https://api.github.com/users/zamanaziz/events{/privacy}","received_events_url":"https://api.github.com/users/zamanaziz/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/zamanaziz/zxing","description":"Official ZXing (\"Zebra Crossing\") project home","fork":true,"url":"https://api.github.com/repos/zamanaziz/zxing","forks_url":"https://api.github.com/repos/zamanaziz/zxing/forks","keys_url":"https://api.github.com/repos/zamanaziz/zxing/keys{/key_id}","collaborators_url":"https://api.github.com/repos/zamanaziz/zxing/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/zamanaziz/zxing/teams","hooks_url":"https://api.github.com/repos/zamanaziz/zxing/hooks","issue_events_url":"https://api.github.com/repos/zamanaziz/zxing/issues/events{/number}","events_url":"https://api.github.com/repos/zamanaziz/zxing/events","assignees_url":"https://api.github.com/repos/zamanaziz/zxing/assignees{/user}","branches_url":"https://api.github.com/repos/zamanaziz/zxing/branches{/branch}","tags_url":"https://api.github.com/repos/zamanaziz/zxing/tags","blobs_url":"https://api.github.com/repos/zamanaziz/zxing/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/zamanaziz/zxing/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/zamanaziz/zxing/git/refs{/sha}","trees_url":"https://api.github.com/repos/zamanaziz/zxing/git/trees{/sha}","statuses_url":"https://api.github.com/repos/zamanaziz/zxing/statuses/{sha}","languages_url":"https://api.github.com/repos/zamanaziz/zxing/languages","stargazers_url":"https://api.github.com/repos/zamanaziz/zxing/stargazers","contributors_url":"https://api.github.com/repos/zamanaziz/zxing/contributors","subscribers_url":"https://api.github.com/repos/zamanaziz/zxing/subscribers","subscription_url":"https://api.github.com/repos/zamanaziz/zxing/subscription","commits_url":"https://api.github.com/repos/zamanaziz/zxing/commits{/sha}","git_commits_url":"https://api.github.com/repos/zamanaziz/zxing/git/commits{/sha}","comments_url":"https://api.github.com/repos/zamanaziz/zxing/comments{/number}","issue_comment_url":"https://api.github.com/repos/zamanaziz/zxing/issues/comments/{number}","contents_url":"https://api.github.com/repos/zamanaziz/zxing/contents/{+path}","compare_url":"https://api.github.com/repos/zamanaziz/zxing/compare/{base}...{head}","merges_url":"https://api.github.com/repos/zamanaziz/zxing/merges","archive_url":"https://api.github.com/repos/zamanaziz/zxing/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/zamanaziz/zxing/downloads","issues_url":"https://api.github.com/repos/zamanaziz/zxing/issues{/number}","pulls_url":"https://api.github.com/repos/zamanaziz/zxing/pulls{/number}","milestones_url":"https://api.github.com/repos/zamanaziz/zxing/milestones{/number}","notifications_url":"https://api.github.com/repos/zamanaziz/zxing/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/zamanaziz/zxing/labels{/name}","releases_url":"https://api.github.com/repos/zamanaziz/zxing/releases{/id}","created_at":"2015-01-01T15:19:07Z","updated_at":"2015-01-01T14:54:15Z","pushed_at":"2014-12-28T20:06:54Z","git_url":"git://github.com/zamanaziz/zxing.git","ssh_url":"git@github.com:zamanaziz/zxing.git","clone_url":"https://github.com/zamanaziz/zxing.git","svn_url":"https://github.com/zamanaziz/zxing","homepage":"","size":270368,"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:19:07Z","org":{"id":1122572,"login":"zxing","gravatar_id":"","url":"https://api.github.com/orgs/zxing","avatar_url":"https://avatars.githubusercontent.com/u/1122572?"}} +,{"id":"2489659877","type":"PullRequestEvent","actor":{"id":1262317,"login":"ToOLs-PL","gravatar_id":"","url":"https://api.github.com/users/ToOLs-PL","avatar_url":"https://avatars.githubusercontent.com/u/1262317?"},"repo":{"id":28687496,"name":"ToOLs-PL/dojo_rules","url":"https://api.github.com/repos/ToOLs-PL/dojo_rules"},"payload":{"action":"opened","number":1,"pull_request":{"url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls/1","id":26743912,"html_url":"https://github.com/ToOLs-PL/dojo_rules/pull/1","diff_url":"https://github.com/ToOLs-PL/dojo_rules/pull/1.diff","patch_url":"https://github.com/ToOLs-PL/dojo_rules/pull/1.patch","issue_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/issues/1","number":1,"state":"open","locked":false,"title":"Add deadly skills.","user":{"login":"ToOLs-PL","id":1262317,"avatar_url":"https://avatars.githubusercontent.com/u/1262317?v=3","gravatar_id":"","url":"https://api.github.com/users/ToOLs-PL","html_url":"https://github.com/ToOLs-PL","followers_url":"https://api.github.com/users/ToOLs-PL/followers","following_url":"https://api.github.com/users/ToOLs-PL/following{/other_user}","gists_url":"https://api.github.com/users/ToOLs-PL/gists{/gist_id}","starred_url":"https://api.github.com/users/ToOLs-PL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ToOLs-PL/subscriptions","organizations_url":"https://api.github.com/users/ToOLs-PL/orgs","repos_url":"https://api.github.com/users/ToOLs-PL/repos","events_url":"https://api.github.com/users/ToOLs-PL/events{/privacy}","received_events_url":"https://api.github.com/users/ToOLs-PL/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:19:08Z","updated_at":"2015-01-01T15:19:08Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls/1/commits","review_comments_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls/1/comments","review_comment_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls/comments/{number}","comments_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/issues/1/comments","statuses_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/statuses/07b4d2b215a3afb9ae39fcbc025d6d1581ab1ff3","head":{"label":"ToOLs-PL:deadly_skills","ref":"deadly_skills","sha":"07b4d2b215a3afb9ae39fcbc025d6d1581ab1ff3","user":{"login":"ToOLs-PL","id":1262317,"avatar_url":"https://avatars.githubusercontent.com/u/1262317?v=3","gravatar_id":"","url":"https://api.github.com/users/ToOLs-PL","html_url":"https://github.com/ToOLs-PL","followers_url":"https://api.github.com/users/ToOLs-PL/followers","following_url":"https://api.github.com/users/ToOLs-PL/following{/other_user}","gists_url":"https://api.github.com/users/ToOLs-PL/gists{/gist_id}","starred_url":"https://api.github.com/users/ToOLs-PL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ToOLs-PL/subscriptions","organizations_url":"https://api.github.com/users/ToOLs-PL/orgs","repos_url":"https://api.github.com/users/ToOLs-PL/repos","events_url":"https://api.github.com/users/ToOLs-PL/events{/privacy}","received_events_url":"https://api.github.com/users/ToOLs-PL/received_events","type":"User","site_admin":false},"repo":{"id":28687496,"name":"dojo_rules","full_name":"ToOLs-PL/dojo_rules","owner":{"login":"ToOLs-PL","id":1262317,"avatar_url":"https://avatars.githubusercontent.com/u/1262317?v=3","gravatar_id":"","url":"https://api.github.com/users/ToOLs-PL","html_url":"https://github.com/ToOLs-PL","followers_url":"https://api.github.com/users/ToOLs-PL/followers","following_url":"https://api.github.com/users/ToOLs-PL/following{/other_user}","gists_url":"https://api.github.com/users/ToOLs-PL/gists{/gist_id}","starred_url":"https://api.github.com/users/ToOLs-PL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ToOLs-PL/subscriptions","organizations_url":"https://api.github.com/users/ToOLs-PL/orgs","repos_url":"https://api.github.com/users/ToOLs-PL/repos","events_url":"https://api.github.com/users/ToOLs-PL/events{/privacy}","received_events_url":"https://api.github.com/users/ToOLs-PL/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ToOLs-PL/dojo_rules","description":"","fork":true,"url":"https://api.github.com/repos/ToOLs-PL/dojo_rules","forks_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/forks","keys_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/teams","hooks_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/hooks","issue_events_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/issues/events{/number}","events_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/events","assignees_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/assignees{/user}","branches_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/branches{/branch}","tags_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/tags","blobs_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/git/refs{/sha}","trees_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/statuses/{sha}","languages_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/languages","stargazers_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/stargazers","contributors_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/contributors","subscribers_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/subscribers","subscription_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/subscription","commits_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/commits{/sha}","git_commits_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/git/commits{/sha}","comments_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/comments{/number}","issue_comment_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/issues/comments/{number}","contents_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/contents/{+path}","compare_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/merges","archive_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/downloads","issues_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/issues{/number}","pulls_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls{/number}","milestones_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/milestones{/number}","notifications_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/labels{/name}","releases_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/releases{/id}","created_at":"2015-01-01T13:57:17Z","updated_at":"2015-01-01T14:38:19Z","pushed_at":"2015-01-01T15:16:56Z","git_url":"git://github.com/ToOLs-PL/dojo_rules.git","ssh_url":"git@github.com:ToOLs-PL/dojo_rules.git","clone_url":"https://github.com/ToOLs-PL/dojo_rules.git","svn_url":"https://github.com/ToOLs-PL/dojo_rules","homepage":null,"size":545,"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":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"base":{"label":"ToOLs-PL:master","ref":"master","sha":"1429fe5e0cc928f94ea9917bc9d215050b70ea4f","user":{"login":"ToOLs-PL","id":1262317,"avatar_url":"https://avatars.githubusercontent.com/u/1262317?v=3","gravatar_id":"","url":"https://api.github.com/users/ToOLs-PL","html_url":"https://github.com/ToOLs-PL","followers_url":"https://api.github.com/users/ToOLs-PL/followers","following_url":"https://api.github.com/users/ToOLs-PL/following{/other_user}","gists_url":"https://api.github.com/users/ToOLs-PL/gists{/gist_id}","starred_url":"https://api.github.com/users/ToOLs-PL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ToOLs-PL/subscriptions","organizations_url":"https://api.github.com/users/ToOLs-PL/orgs","repos_url":"https://api.github.com/users/ToOLs-PL/repos","events_url":"https://api.github.com/users/ToOLs-PL/events{/privacy}","received_events_url":"https://api.github.com/users/ToOLs-PL/received_events","type":"User","site_admin":false},"repo":{"id":28687496,"name":"dojo_rules","full_name":"ToOLs-PL/dojo_rules","owner":{"login":"ToOLs-PL","id":1262317,"avatar_url":"https://avatars.githubusercontent.com/u/1262317?v=3","gravatar_id":"","url":"https://api.github.com/users/ToOLs-PL","html_url":"https://github.com/ToOLs-PL","followers_url":"https://api.github.com/users/ToOLs-PL/followers","following_url":"https://api.github.com/users/ToOLs-PL/following{/other_user}","gists_url":"https://api.github.com/users/ToOLs-PL/gists{/gist_id}","starred_url":"https://api.github.com/users/ToOLs-PL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ToOLs-PL/subscriptions","organizations_url":"https://api.github.com/users/ToOLs-PL/orgs","repos_url":"https://api.github.com/users/ToOLs-PL/repos","events_url":"https://api.github.com/users/ToOLs-PL/events{/privacy}","received_events_url":"https://api.github.com/users/ToOLs-PL/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ToOLs-PL/dojo_rules","description":"","fork":true,"url":"https://api.github.com/repos/ToOLs-PL/dojo_rules","forks_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/forks","keys_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/teams","hooks_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/hooks","issue_events_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/issues/events{/number}","events_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/events","assignees_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/assignees{/user}","branches_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/branches{/branch}","tags_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/tags","blobs_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/git/refs{/sha}","trees_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/statuses/{sha}","languages_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/languages","stargazers_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/stargazers","contributors_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/contributors","subscribers_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/subscribers","subscription_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/subscription","commits_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/commits{/sha}","git_commits_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/git/commits{/sha}","comments_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/comments{/number}","issue_comment_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/issues/comments/{number}","contents_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/contents/{+path}","compare_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/merges","archive_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/downloads","issues_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/issues{/number}","pulls_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls{/number}","milestones_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/milestones{/number}","notifications_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/labels{/name}","releases_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/releases{/id}","created_at":"2015-01-01T13:57:17Z","updated_at":"2015-01-01T14:38:19Z","pushed_at":"2015-01-01T15:16:56Z","git_url":"git://github.com/ToOLs-PL/dojo_rules.git","ssh_url":"git@github.com:ToOLs-PL/dojo_rules.git","clone_url":"https://github.com/ToOLs-PL/dojo_rules.git","svn_url":"https://github.com/ToOLs-PL/dojo_rules","homepage":null,"size":545,"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":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls/1"},"html":{"href":"https://github.com/ToOLs-PL/dojo_rules/pull/1"},"issue":{"href":"https://api.github.com/repos/ToOLs-PL/dojo_rules/issues/1"},"comments":{"href":"https://api.github.com/repos/ToOLs-PL/dojo_rules/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/ToOLs-PL/dojo_rules/statuses/07b4d2b215a3afb9ae39fcbc025d6d1581ab1ff3"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":5,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:19:08Z"} +,{"id":"2489659878","type":"IssueCommentEvent","actor":{"id":4483,"login":"arfon","gravatar_id":"","url":"https://api.github.com/users/arfon","avatar_url":"https://avatars.githubusercontent.com/u/4483?"},"repo":{"id":1725199,"name":"github/linguist","url":"https://api.github.com/repos/github/linguist"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/github/linguist/issues/1930","labels_url":"https://api.github.com/repos/github/linguist/issues/1930/labels{/name}","comments_url":"https://api.github.com/repos/github/linguist/issues/1930/comments","events_url":"https://api.github.com/repos/github/linguist/issues/1930/events","html_url":"https://github.com/github/linguist/pull/1930","id":53189638,"number":1930,"title":"Switch to Minitest::Test instead of Test::Unit::TestCase","user":{"login":"aroben","id":917945,"avatar_url":"https://avatars.githubusercontent.com/u/917945?v=3","gravatar_id":"","url":"https://api.github.com/users/aroben","html_url":"https://github.com/aroben","followers_url":"https://api.github.com/users/aroben/followers","following_url":"https://api.github.com/users/aroben/following{/other_user}","gists_url":"https://api.github.com/users/aroben/gists{/gist_id}","starred_url":"https://api.github.com/users/aroben/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aroben/subscriptions","organizations_url":"https://api.github.com/users/aroben/orgs","repos_url":"https://api.github.com/users/aroben/repos","events_url":"https://api.github.com/users/aroben/events{/privacy}","received_events_url":"https://api.github.com/users/aroben/received_events","type":"User","site_admin":true},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-31T15:53:14Z","updated_at":"2015-01-01T15:19:08Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/github/linguist/pulls/1930","html_url":"https://github.com/github/linguist/pull/1930","diff_url":"https://github.com/github/linguist/pull/1930.diff","patch_url":"https://github.com/github/linguist/pull/1930.patch"},"body":"This gives us a consistent test framework across all Ruby versions which should help avoid errors that are only found when CI runs the tests on different Rubies. (And this fixes an immediate bug where there's no `skip` method in the version of test-unit we're currently using only on Ruby 2.2.)\r\n\r\n/cc @arfon @bkeepers "},"comment":{"url":"https://api.github.com/repos/github/linguist/issues/comments/68488901","html_url":"https://github.com/github/linguist/pull/1930#issuecomment-68488901","issue_url":"https://api.github.com/repos/github/linguist/issues/1930","id":68488901,"user":{"login":"arfon","id":4483,"avatar_url":"https://avatars.githubusercontent.com/u/4483?v=3","gravatar_id":"","url":"https://api.github.com/users/arfon","html_url":"https://github.com/arfon","followers_url":"https://api.github.com/users/arfon/followers","following_url":"https://api.github.com/users/arfon/following{/other_user}","gists_url":"https://api.github.com/users/arfon/gists{/gist_id}","starred_url":"https://api.github.com/users/arfon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arfon/subscriptions","organizations_url":"https://api.github.com/users/arfon/orgs","repos_url":"https://api.github.com/users/arfon/repos","events_url":"https://api.github.com/users/arfon/events{/privacy}","received_events_url":"https://api.github.com/users/arfon/received_events","type":"User","site_admin":true},"created_at":"2015-01-01T15:19:08Z","updated_at":"2015-01-01T15:19:08Z","body":":+1: this looks great to me."}},"public":true,"created_at":"2015-01-01T15:19:08Z","org":{"id":9919,"login":"github","gravatar_id":"","url":"https://api.github.com/orgs/github","avatar_url":"https://avatars.githubusercontent.com/u/9919?"}} +,{"id":"2489659884","type":"CreateEvent","actor":{"id":5045366,"login":"binhoul","gravatar_id":"","url":"https://api.github.com/users/binhoul","avatar_url":"https://avatars.githubusercontent.com/u/5045366?"},"repo":{"id":28688952,"name":"binhoul/workspace","url":"https://api.github.com/repos/binhoul/workspace"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"work articles","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:19:09Z"} +,{"id":"2489659885","type":"PushEvent","actor":{"id":4188905,"login":"vigneshmanix","gravatar_id":"","url":"https://api.github.com/users/vigneshmanix","avatar_url":"https://avatars.githubusercontent.com/u/4188905?"},"repo":{"id":28668529,"name":"vigneshmanix/pragyan","url":"https://api.github.com/repos/vigneshmanix/pragyan"},"payload":{"push_id":536867956,"size":1,"distinct_size":1,"ref":"refs/heads/pdo","head":"04916895a11a095b632edbb526bbe253a25c8e9e","before":"974f59375bcfa0722362774e2d587b83b59b83c8","commits":[{"sha":"04916895a11a095b632edbb526bbe253a25c8e9e","author":{"email":"9156bbf2398234bab6b29291ad28b0c9a73421d6@gmail.com","name":"Vignesh Manix"},"message":"using pdo in cms/iconmanagement.lib.php and cms/authenticate.lib.php","distinct":true,"url":"https://api.github.com/repos/vigneshmanix/pragyan/commits/04916895a11a095b632edbb526bbe253a25c8e9e"}]},"public":true,"created_at":"2015-01-01T15:19:09Z"} +,{"id":"2489659886","type":"PushEvent","actor":{"id":5101884,"login":"Atvaark","gravatar_id":"","url":"https://api.github.com/users/Atvaark","avatar_url":"https://avatars.githubusercontent.com/u/5101884?"},"repo":{"id":28562333,"name":"Atvaark/FtexTool","url":"https://api.github.com/repos/Atvaark/FtexTool"},"payload":{"push_id":536867955,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9a34b6ce9d681f44d11a5da1c26f96e75c843117","before":"68023249285ea3b635adbfd50118f30c615ea069","commits":[{"sha":"9a34b6ce9d681f44d11a5da1c26f96e75c843117","author":{"email":"90d00659f465990581b68b3fc25b67ddc2f2fb58@users.noreply.github.com","name":"Atvaark"},"message":"Added PftxsTool usage info to README.md","distinct":true,"url":"https://api.github.com/repos/Atvaark/FtexTool/commits/9a34b6ce9d681f44d11a5da1c26f96e75c843117"}]},"public":true,"created_at":"2015-01-01T15:19:09Z"} +,{"id":"2489659887","type":"CreateEvent","actor":{"id":1022884,"login":"skeleten","gravatar_id":"","url":"https://api.github.com/users/skeleten","avatar_url":"https://avatars.githubusercontent.com/u/1022884?"},"repo":{"id":28688953,"name":"skeleten/FiestaClient","url":"https://api.github.com/repos/skeleten/FiestaClient"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:19:09Z"} +,{"id":"2489659888","type":"PushEvent","actor":{"id":6269364,"login":"jackzhangpython","gravatar_id":"","url":"https://api.github.com/users/jackzhangpython","avatar_url":"https://avatars.githubusercontent.com/u/6269364?"},"repo":{"id":27129602,"name":"jackzhangpython/LearnPython","url":"https://api.github.com/repos/jackzhangpython/LearnPython"},"payload":{"push_id":536867958,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fa6400231bdef9a43d4c6d04b18edddcc17a997f","before":"bb0ccd3ee36ca8e1c8ad9424c3e173bcf0e11a37","commits":[{"sha":"fa6400231bdef9a43d4c6d04b18edddcc17a997f","author":{"email":"eced1f0cdf47400511fdcbdcbc2977f999ef94a6@outlook.com","name":"xnzhang"},"message":"Update - class","distinct":true,"url":"https://api.github.com/repos/jackzhangpython/LearnPython/commits/fa6400231bdef9a43d4c6d04b18edddcc17a997f"}]},"public":true,"created_at":"2015-01-01T15:19:09Z"} +,{"id":"2489659892","type":"WatchEvent","actor":{"id":1264971,"login":"jangwonhong","gravatar_id":"","url":"https://api.github.com/users/jangwonhong","avatar_url":"https://avatars.githubusercontent.com/u/1264971?"},"repo":{"id":16528308,"name":"GeoKnow/Facete2","url":"https://api.github.com/repos/GeoKnow/Facete2"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:19:11Z","org":{"id":3647550,"login":"GeoKnow","gravatar_id":"","url":"https://api.github.com/orgs/GeoKnow","avatar_url":"https://avatars.githubusercontent.com/u/3647550?"}} +,{"id":"2489659901","type":"PushEvent","actor":{"id":116348,"login":"ultijlam","gravatar_id":"","url":"https://api.github.com/users/ultijlam","avatar_url":"https://avatars.githubusercontent.com/u/116348?"},"repo":{"id":21995421,"name":"ultijlam/ovale","url":"https://api.github.com/repos/ultijlam/ovale"},"payload":{"push_id":536867962,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1ea0098db9843159f7d4c974d8e9991e28d78468","before":"7667d61b50a3dcfce0fa5662f0961d7ba70a797e","commits":[{"sha":"1ea0098db9843159f7d4c974d8e9991e28d78468","author":{"email":"8ed958e75a9ac40b0a281a8ff5d16af01792a9ab@gmail.com","name":"Johnny C. Lam"},"message":"Add warning to README due to repository/packager brokenness.","distinct":true,"url":"https://api.github.com/repos/ultijlam/ovale/commits/1ea0098db9843159f7d4c974d8e9991e28d78468"}]},"public":true,"created_at":"2015-01-01T15:19:11Z"} +,{"id":"2489659902","type":"IssuesEvent","actor":{"id":557961,"login":"e-jigsaw","gravatar_id":"","url":"https://api.github.com/users/e-jigsaw","avatar_url":"https://avatars.githubusercontent.com/u/557961?"},"repo":{"id":21883081,"name":"jgsme/dev","url":"https://api.github.com/repos/jgsme/dev"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/jgsme/dev/issues/13","labels_url":"https://api.github.com/repos/jgsme/dev/issues/13/labels{/name}","comments_url":"https://api.github.com/repos/jgsme/dev/issues/13/comments","events_url":"https://api.github.com/repos/jgsme/dev/issues/13/events","html_url":"https://github.com/jgsme/dev/issues/13","id":53173864,"number":13,"title":"index には disqus を表示させない","user":{"login":"e-jigsaw","id":557961,"avatar_url":"https://avatars.githubusercontent.com/u/557961?v=3","gravatar_id":"","url":"https://api.github.com/users/e-jigsaw","html_url":"https://github.com/e-jigsaw","followers_url":"https://api.github.com/users/e-jigsaw/followers","following_url":"https://api.github.com/users/e-jigsaw/following{/other_user}","gists_url":"https://api.github.com/users/e-jigsaw/gists{/gist_id}","starred_url":"https://api.github.com/users/e-jigsaw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-jigsaw/subscriptions","organizations_url":"https://api.github.com/users/e-jigsaw/orgs","repos_url":"https://api.github.com/users/e-jigsaw/repos","events_url":"https://api.github.com/users/e-jigsaw/events{/privacy}","received_events_url":"https://api.github.com/users/e-jigsaw/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2014-12-31T08:45:59Z","updated_at":"2015-01-01T15:19:12Z","closed_at":"2015-01-01T15:19:12Z","body":""}},"public":true,"created_at":"2015-01-01T15:19:12Z","org":{"id":8819590,"login":"jgsme","gravatar_id":"","url":"https://api.github.com/orgs/jgsme","avatar_url":"https://avatars.githubusercontent.com/u/8819590?"}} +,{"id":"2489659903","type":"PullRequestEvent","actor":{"id":557961,"login":"e-jigsaw","gravatar_id":"","url":"https://api.github.com/users/e-jigsaw","avatar_url":"https://avatars.githubusercontent.com/u/557961?"},"repo":{"id":21883081,"name":"jgsme/dev","url":"https://api.github.com/repos/jgsme/dev"},"payload":{"action":"closed","number":19,"pull_request":{"url":"https://api.github.com/repos/jgsme/dev/pulls/19","id":26743910,"html_url":"https://github.com/jgsme/dev/pull/19","diff_url":"https://github.com/jgsme/dev/pull/19.diff","patch_url":"https://github.com/jgsme/dev/pull/19.patch","issue_url":"https://api.github.com/repos/jgsme/dev/issues/19","number":19,"state":"closed","locked":false,"title":"Don't show disqus in index page","user":{"login":"e-jigsaw","id":557961,"avatar_url":"https://avatars.githubusercontent.com/u/557961?v=3","gravatar_id":"","url":"https://api.github.com/users/e-jigsaw","html_url":"https://github.com/e-jigsaw","followers_url":"https://api.github.com/users/e-jigsaw/followers","following_url":"https://api.github.com/users/e-jigsaw/following{/other_user}","gists_url":"https://api.github.com/users/e-jigsaw/gists{/gist_id}","starred_url":"https://api.github.com/users/e-jigsaw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-jigsaw/subscriptions","organizations_url":"https://api.github.com/users/e-jigsaw/orgs","repos_url":"https://api.github.com/users/e-jigsaw/repos","events_url":"https://api.github.com/users/e-jigsaw/events{/privacy}","received_events_url":"https://api.github.com/users/e-jigsaw/received_events","type":"User","site_admin":false},"body":"resolve #13 ","created_at":"2015-01-01T15:18:53Z","updated_at":"2015-01-01T15:19:12Z","closed_at":"2015-01-01T15:19:12Z","merged_at":"2015-01-01T15:19:12Z","merge_commit_sha":"523eb6483c32a5b577178943542eaac474e070e9","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/jgsme/dev/pulls/19/commits","review_comments_url":"https://api.github.com/repos/jgsme/dev/pulls/19/comments","review_comment_url":"https://api.github.com/repos/jgsme/dev/pulls/comments/{number}","comments_url":"https://api.github.com/repos/jgsme/dev/issues/19/comments","statuses_url":"https://api.github.com/repos/jgsme/dev/statuses/2be747e0f8e0f0486ec056baf38a07085d932da8","head":{"label":"jgsme:dont-show-disqus-in-index","ref":"dont-show-disqus-in-index","sha":"2be747e0f8e0f0486ec056baf38a07085d932da8","user":{"login":"jgsme","id":8819590,"avatar_url":"https://avatars.githubusercontent.com/u/8819590?v=3","gravatar_id":"","url":"https://api.github.com/users/jgsme","html_url":"https://github.com/jgsme","followers_url":"https://api.github.com/users/jgsme/followers","following_url":"https://api.github.com/users/jgsme/following{/other_user}","gists_url":"https://api.github.com/users/jgsme/gists{/gist_id}","starred_url":"https://api.github.com/users/jgsme/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jgsme/subscriptions","organizations_url":"https://api.github.com/users/jgsme/orgs","repos_url":"https://api.github.com/users/jgsme/repos","events_url":"https://api.github.com/users/jgsme/events{/privacy}","received_events_url":"https://api.github.com/users/jgsme/received_events","type":"Organization","site_admin":false},"repo":{"id":21883081,"name":"dev","full_name":"jgsme/dev","owner":{"login":"jgsme","id":8819590,"avatar_url":"https://avatars.githubusercontent.com/u/8819590?v=3","gravatar_id":"","url":"https://api.github.com/users/jgsme","html_url":"https://github.com/jgsme","followers_url":"https://api.github.com/users/jgsme/followers","following_url":"https://api.github.com/users/jgsme/following{/other_user}","gists_url":"https://api.github.com/users/jgsme/gists{/gist_id}","starred_url":"https://api.github.com/users/jgsme/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jgsme/subscriptions","organizations_url":"https://api.github.com/users/jgsme/orgs","repos_url":"https://api.github.com/users/jgsme/repos","events_url":"https://api.github.com/users/jgsme/events{/privacy}","received_events_url":"https://api.github.com/users/jgsme/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/jgsme/dev","description":"Development log","fork":false,"url":"https://api.github.com/repos/jgsme/dev","forks_url":"https://api.github.com/repos/jgsme/dev/forks","keys_url":"https://api.github.com/repos/jgsme/dev/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jgsme/dev/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jgsme/dev/teams","hooks_url":"https://api.github.com/repos/jgsme/dev/hooks","issue_events_url":"https://api.github.com/repos/jgsme/dev/issues/events{/number}","events_url":"https://api.github.com/repos/jgsme/dev/events","assignees_url":"https://api.github.com/repos/jgsme/dev/assignees{/user}","branches_url":"https://api.github.com/repos/jgsme/dev/branches{/branch}","tags_url":"https://api.github.com/repos/jgsme/dev/tags","blobs_url":"https://api.github.com/repos/jgsme/dev/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jgsme/dev/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jgsme/dev/git/refs{/sha}","trees_url":"https://api.github.com/repos/jgsme/dev/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jgsme/dev/statuses/{sha}","languages_url":"https://api.github.com/repos/jgsme/dev/languages","stargazers_url":"https://api.github.com/repos/jgsme/dev/stargazers","contributors_url":"https://api.github.com/repos/jgsme/dev/contributors","subscribers_url":"https://api.github.com/repos/jgsme/dev/subscribers","subscription_url":"https://api.github.com/repos/jgsme/dev/subscription","commits_url":"https://api.github.com/repos/jgsme/dev/commits{/sha}","git_commits_url":"https://api.github.com/repos/jgsme/dev/git/commits{/sha}","comments_url":"https://api.github.com/repos/jgsme/dev/comments{/number}","issue_comment_url":"https://api.github.com/repos/jgsme/dev/issues/comments/{number}","contents_url":"https://api.github.com/repos/jgsme/dev/contents/{+path}","compare_url":"https://api.github.com/repos/jgsme/dev/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jgsme/dev/merges","archive_url":"https://api.github.com/repos/jgsme/dev/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jgsme/dev/downloads","issues_url":"https://api.github.com/repos/jgsme/dev/issues{/number}","pulls_url":"https://api.github.com/repos/jgsme/dev/pulls{/number}","milestones_url":"https://api.github.com/repos/jgsme/dev/milestones{/number}","notifications_url":"https://api.github.com/repos/jgsme/dev/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jgsme/dev/labels{/name}","releases_url":"https://api.github.com/repos/jgsme/dev/releases{/id}","created_at":"2014-07-16T02:10:23Z","updated_at":"2015-01-01T15:15:29Z","pushed_at":"2015-01-01T15:19:12Z","git_url":"git://github.com/jgsme/dev.git","ssh_url":"git@github.com:jgsme/dev.git","clone_url":"https://github.com/jgsme/dev.git","svn_url":"https://github.com/jgsme/dev","homepage":"http://dev.jgs.me","size":2720,"stargazers_count":1,"watchers_count":1,"language":"CoffeeScript","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":6,"forks":0,"open_issues":6,"watchers":1,"default_branch":"master"}},"base":{"label":"jgsme:master","ref":"master","sha":"0812a374b6e968cffcd237306588eb4d98f21a92","user":{"login":"jgsme","id":8819590,"avatar_url":"https://avatars.githubusercontent.com/u/8819590?v=3","gravatar_id":"","url":"https://api.github.com/users/jgsme","html_url":"https://github.com/jgsme","followers_url":"https://api.github.com/users/jgsme/followers","following_url":"https://api.github.com/users/jgsme/following{/other_user}","gists_url":"https://api.github.com/users/jgsme/gists{/gist_id}","starred_url":"https://api.github.com/users/jgsme/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jgsme/subscriptions","organizations_url":"https://api.github.com/users/jgsme/orgs","repos_url":"https://api.github.com/users/jgsme/repos","events_url":"https://api.github.com/users/jgsme/events{/privacy}","received_events_url":"https://api.github.com/users/jgsme/received_events","type":"Organization","site_admin":false},"repo":{"id":21883081,"name":"dev","full_name":"jgsme/dev","owner":{"login":"jgsme","id":8819590,"avatar_url":"https://avatars.githubusercontent.com/u/8819590?v=3","gravatar_id":"","url":"https://api.github.com/users/jgsme","html_url":"https://github.com/jgsme","followers_url":"https://api.github.com/users/jgsme/followers","following_url":"https://api.github.com/users/jgsme/following{/other_user}","gists_url":"https://api.github.com/users/jgsme/gists{/gist_id}","starred_url":"https://api.github.com/users/jgsme/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jgsme/subscriptions","organizations_url":"https://api.github.com/users/jgsme/orgs","repos_url":"https://api.github.com/users/jgsme/repos","events_url":"https://api.github.com/users/jgsme/events{/privacy}","received_events_url":"https://api.github.com/users/jgsme/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/jgsme/dev","description":"Development log","fork":false,"url":"https://api.github.com/repos/jgsme/dev","forks_url":"https://api.github.com/repos/jgsme/dev/forks","keys_url":"https://api.github.com/repos/jgsme/dev/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jgsme/dev/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jgsme/dev/teams","hooks_url":"https://api.github.com/repos/jgsme/dev/hooks","issue_events_url":"https://api.github.com/repos/jgsme/dev/issues/events{/number}","events_url":"https://api.github.com/repos/jgsme/dev/events","assignees_url":"https://api.github.com/repos/jgsme/dev/assignees{/user}","branches_url":"https://api.github.com/repos/jgsme/dev/branches{/branch}","tags_url":"https://api.github.com/repos/jgsme/dev/tags","blobs_url":"https://api.github.com/repos/jgsme/dev/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jgsme/dev/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jgsme/dev/git/refs{/sha}","trees_url":"https://api.github.com/repos/jgsme/dev/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jgsme/dev/statuses/{sha}","languages_url":"https://api.github.com/repos/jgsme/dev/languages","stargazers_url":"https://api.github.com/repos/jgsme/dev/stargazers","contributors_url":"https://api.github.com/repos/jgsme/dev/contributors","subscribers_url":"https://api.github.com/repos/jgsme/dev/subscribers","subscription_url":"https://api.github.com/repos/jgsme/dev/subscription","commits_url":"https://api.github.com/repos/jgsme/dev/commits{/sha}","git_commits_url":"https://api.github.com/repos/jgsme/dev/git/commits{/sha}","comments_url":"https://api.github.com/repos/jgsme/dev/comments{/number}","issue_comment_url":"https://api.github.com/repos/jgsme/dev/issues/comments/{number}","contents_url":"https://api.github.com/repos/jgsme/dev/contents/{+path}","compare_url":"https://api.github.com/repos/jgsme/dev/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jgsme/dev/merges","archive_url":"https://api.github.com/repos/jgsme/dev/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jgsme/dev/downloads","issues_url":"https://api.github.com/repos/jgsme/dev/issues{/number}","pulls_url":"https://api.github.com/repos/jgsme/dev/pulls{/number}","milestones_url":"https://api.github.com/repos/jgsme/dev/milestones{/number}","notifications_url":"https://api.github.com/repos/jgsme/dev/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jgsme/dev/labels{/name}","releases_url":"https://api.github.com/repos/jgsme/dev/releases{/id}","created_at":"2014-07-16T02:10:23Z","updated_at":"2015-01-01T15:15:29Z","pushed_at":"2015-01-01T15:19:12Z","git_url":"git://github.com/jgsme/dev.git","ssh_url":"git@github.com:jgsme/dev.git","clone_url":"https://github.com/jgsme/dev.git","svn_url":"https://github.com/jgsme/dev","homepage":"http://dev.jgs.me","size":2720,"stargazers_count":1,"watchers_count":1,"language":"CoffeeScript","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":6,"forks":0,"open_issues":6,"watchers":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/jgsme/dev/pulls/19"},"html":{"href":"https://github.com/jgsme/dev/pull/19"},"issue":{"href":"https://api.github.com/repos/jgsme/dev/issues/19"},"comments":{"href":"https://api.github.com/repos/jgsme/dev/issues/19/comments"},"review_comments":{"href":"https://api.github.com/repos/jgsme/dev/pulls/19/comments"},"review_comment":{"href":"https://api.github.com/repos/jgsme/dev/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/jgsme/dev/pulls/19/commits"},"statuses":{"href":"https://api.github.com/repos/jgsme/dev/statuses/2be747e0f8e0f0486ec056baf38a07085d932da8"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"e-jigsaw","id":557961,"avatar_url":"https://avatars.githubusercontent.com/u/557961?v=3","gravatar_id":"","url":"https://api.github.com/users/e-jigsaw","html_url":"https://github.com/e-jigsaw","followers_url":"https://api.github.com/users/e-jigsaw/followers","following_url":"https://api.github.com/users/e-jigsaw/following{/other_user}","gists_url":"https://api.github.com/users/e-jigsaw/gists{/gist_id}","starred_url":"https://api.github.com/users/e-jigsaw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-jigsaw/subscriptions","organizations_url":"https://api.github.com/users/e-jigsaw/orgs","repos_url":"https://api.github.com/users/e-jigsaw/repos","events_url":"https://api.github.com/users/e-jigsaw/events{/privacy}","received_events_url":"https://api.github.com/users/e-jigsaw/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":1,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:19:12Z","org":{"id":8819590,"login":"jgsme","gravatar_id":"","url":"https://api.github.com/orgs/jgsme","avatar_url":"https://avatars.githubusercontent.com/u/8819590?"}} +,{"id":"2489659906","type":"WatchEvent","actor":{"id":349828,"login":"ARoiD","gravatar_id":"","url":"https://api.github.com/users/ARoiD","avatar_url":"https://avatars.githubusercontent.com/u/349828?"},"repo":{"id":7560315,"name":"schwabe/ics-openvpn","url":"https://api.github.com/repos/schwabe/ics-openvpn"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:19:12Z"} +,{"id":"2489659907","type":"IssueCommentEvent","actor":{"id":6563111,"login":"tkdrg","gravatar_id":"","url":"https://api.github.com/users/tkdrg","avatar_url":"https://avatars.githubusercontent.com/u/6563111?"},"repo":{"id":3234987,"name":"tgstation/-tg-station","url":"https://api.github.com/repos/tgstation/-tg-station"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/tgstation/-tg-station/issues/6147","labels_url":"https://api.github.com/repos/tgstation/-tg-station/issues/6147/labels{/name}","comments_url":"https://api.github.com/repos/tgstation/-tg-station/issues/6147/comments","events_url":"https://api.github.com/repos/tgstation/-tg-station/issues/6147/events","html_url":"https://github.com/tgstation/-tg-station/pull/6147","id":50447252,"number":6147,"title":"Makes Slot Machines Able To Accept Space Credits","user":{"login":"JStheguy","id":7319515,"avatar_url":"https://avatars.githubusercontent.com/u/7319515?v=3","gravatar_id":"","url":"https://api.github.com/users/JStheguy","html_url":"https://github.com/JStheguy","followers_url":"https://api.github.com/users/JStheguy/followers","following_url":"https://api.github.com/users/JStheguy/following{/other_user}","gists_url":"https://api.github.com/users/JStheguy/gists{/gist_id}","starred_url":"https://api.github.com/users/JStheguy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JStheguy/subscriptions","organizations_url":"https://api.github.com/users/JStheguy/orgs","repos_url":"https://api.github.com/users/JStheguy/repos","events_url":"https://api.github.com/users/JStheguy/events{/privacy}","received_events_url":"https://api.github.com/users/JStheguy/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/tgstation/-tg-station/labels/Feature","name":"Feature","color":"009800"},{"url":"https://api.github.com/repos/tgstation/-tg-station/labels/Merge+Conflict","name":"Merge Conflict","color":"006b75"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":5,"created_at":"2014-11-30T05:02:37Z","updated_at":"2015-01-01T15:19:12Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/tgstation/-tg-station/pulls/6147","html_url":"https://github.com/tgstation/-tg-station/pull/6147","diff_url":"https://github.com/tgstation/-tg-station/pull/6147.diff","patch_url":"https://github.com/tgstation/-tg-station/pull/6147.patch"},"body":"-Slot machines accept space credits.\r\n-Space credits now have a value var much like the various coins.\r\n-The service borg fabricator now dispenses play money instead of actual money."},"comment":{"url":"https://api.github.com/repos/tgstation/-tg-station/issues/comments/68488903","html_url":"https://github.com/tgstation/-tg-station/pull/6147#issuecomment-68488903","issue_url":"https://api.github.com/repos/tgstation/-tg-station/issues/6147","id":68488903,"user":{"login":"tkdrg","id":6563111,"avatar_url":"https://avatars.githubusercontent.com/u/6563111?v=3","gravatar_id":"","url":"https://api.github.com/users/tkdrg","html_url":"https://github.com/tkdrg","followers_url":"https://api.github.com/users/tkdrg/followers","following_url":"https://api.github.com/users/tkdrg/following{/other_user}","gists_url":"https://api.github.com/users/tkdrg/gists{/gist_id}","starred_url":"https://api.github.com/users/tkdrg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tkdrg/subscriptions","organizations_url":"https://api.github.com/users/tkdrg/orgs","repos_url":"https://api.github.com/users/tkdrg/repos","events_url":"https://api.github.com/users/tkdrg/events{/privacy}","received_events_url":"https://api.github.com/users/tkdrg/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:19:12Z","updated_at":"2015-01-01T15:19:12Z","body":"@JStheguy are you still working on this?"}},"public":true,"created_at":"2015-01-01T15:19:12Z","org":{"id":1363778,"login":"tgstation","gravatar_id":"","url":"https://api.github.com/orgs/tgstation","avatar_url":"https://avatars.githubusercontent.com/u/1363778?"}} +,{"id":"2489659909","type":"WatchEvent","actor":{"id":4215504,"login":"gabrik","gravatar_id":"","url":"https://api.github.com/users/gabrik","avatar_url":"https://avatars.githubusercontent.com/u/4215504?"},"repo":{"id":1349179,"name":"jordoncm/youtube-dl-playlist","url":"https://api.github.com/repos/jordoncm/youtube-dl-playlist"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:19:12Z"} +,{"id":"2489659911","type":"PushEvent","actor":{"id":557961,"login":"e-jigsaw","gravatar_id":"","url":"https://api.github.com/users/e-jigsaw","avatar_url":"https://avatars.githubusercontent.com/u/557961?"},"repo":{"id":21883081,"name":"jgsme/dev","url":"https://api.github.com/repos/jgsme/dev"},"payload":{"push_id":536867965,"size":2,"distinct_size":1,"ref":"refs/heads/master","head":"c19fc061be0880f95b3e22820827f33e67bf6957","before":"0812a374b6e968cffcd237306588eb4d98f21a92","commits":[{"sha":"2be747e0f8e0f0486ec056baf38a07085d932da8","author":{"email":"565b824397aa4296737cf3c505776243d38bd1bb@live.jp","name":"jigsaw"},"message":"dont show disqus in index page","distinct":false,"url":"https://api.github.com/repos/jgsme/dev/commits/2be747e0f8e0f0486ec056baf38a07085d932da8"},{"sha":"c19fc061be0880f95b3e22820827f33e67bf6957","author":{"email":"565b824397aa4296737cf3c505776243d38bd1bb@live.jp","name":"jigsaw"},"message":"Merge pull request #19 from jgsme/dont-show-disqus-in-index\n\nDon't show disqus in index page","distinct":true,"url":"https://api.github.com/repos/jgsme/dev/commits/c19fc061be0880f95b3e22820827f33e67bf6957"}]},"public":true,"created_at":"2015-01-01T15:19:12Z","org":{"id":8819590,"login":"jgsme","gravatar_id":"","url":"https://api.github.com/orgs/jgsme","avatar_url":"https://avatars.githubusercontent.com/u/8819590?"}} +,{"id":"2489659912","type":"CreateEvent","actor":{"id":236535,"login":"yuankui","gravatar_id":"","url":"https://api.github.com/users/yuankui","avatar_url":"https://avatars.githubusercontent.com/u/236535?"},"repo":{"id":28688917,"name":"yuankui/blogs","url":"https://api.github.com/repos/yuankui/blogs"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"my blogs","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:19:12Z"} +,{"id":"2489659913","type":"PushEvent","actor":{"id":762414,"login":"ryutamaki","gravatar_id":"","url":"https://api.github.com/users/ryutamaki","avatar_url":"https://avatars.githubusercontent.com/u/762414?"},"repo":{"id":19531130,"name":"ryutamaki/dotfiles","url":"https://api.github.com/repos/ryutamaki/dotfiles"},"payload":{"push_id":536867967,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"35f7f7ea38df98d2f5f362d5e5f317e1ca8cde02","before":"74407c8965aa73e03fc99dabf7f65cdfbc02cee0","commits":[{"sha":"35f7f7ea38df98d2f5f362d5e5f317e1ca8cde02","author":{"email":"3434d9bf5dab1790cca1f956ebdf50c7714858a8@gmail.com","name":"ryutamaki"},"message":"Initialize antigen","distinct":true,"url":"https://api.github.com/repos/ryutamaki/dotfiles/commits/35f7f7ea38df98d2f5f362d5e5f317e1ca8cde02"}]},"public":true,"created_at":"2015-01-01T15:19:12Z"} +,{"id":"2489659915","type":"PushEvent","actor":{"id":7570744,"login":"mrpatiwi","gravatar_id":"","url":"https://api.github.com/users/mrpatiwi","avatar_url":"https://avatars.githubusercontent.com/u/7570744?"},"repo":{"id":26933595,"name":"almapp/almapp-ios-uc","url":"https://api.github.com/repos/almapp/almapp-ios-uc"},"payload":{"push_id":536867969,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f695ad427619152bcab237eb54e2f50d3460c62b","before":"4d8d37b4b499bbf6594849ccedbfb5017b29ab6c","commits":[{"sha":"f695ad427619152bcab237eb54e2f50d3460c62b","author":{"email":"29418db1b021055bb91f32abd35628f09898f3af@gmail.com","name":"Patricio López"},"message":"added file for private api keys","distinct":true,"url":"https://api.github.com/repos/almapp/almapp-ios-uc/commits/f695ad427619152bcab237eb54e2f50d3460c62b"}]},"public":true,"created_at":"2015-01-01T15:19:13Z","org":{"id":9871982,"login":"almapp","gravatar_id":"","url":"https://api.github.com/orgs/almapp","avatar_url":"https://avatars.githubusercontent.com/u/9871982?"}} +,{"id":"2489659916","type":"IssuesEvent","actor":{"id":314997,"login":"zz85","gravatar_id":"","url":"https://api.github.com/users/zz85","avatar_url":"https://avatars.githubusercontent.com/u/314997?"},"repo":{"id":28557191,"name":"zz85/mrdoobapproves","url":"https://api.github.com/repos/zz85/mrdoobapproves"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/zz85/mrdoobapproves/issues/25","labels_url":"https://api.github.com/repos/zz85/mrdoobapproves/issues/25/labels{/name}","comments_url":"https://api.github.com/repos/zz85/mrdoobapproves/issues/25/comments","events_url":"https://api.github.com/repos/zz85/mrdoobapproves/issues/25/events","html_url":"https://github.com/zz85/mrdoobapproves/issues/25","id":53221712,"number":25,"title":"Transforms, Bundles & Workflows - Thinking about npm, browserify, bower, webpack, etc...","user":{"login":"zz85","id":314997,"avatar_url":"https://avatars.githubusercontent.com/u/314997?v=3","gravatar_id":"","url":"https://api.github.com/users/zz85","html_url":"https://github.com/zz85","followers_url":"https://api.github.com/users/zz85/followers","following_url":"https://api.github.com/users/zz85/following{/other_user}","gists_url":"https://api.github.com/users/zz85/gists{/gist_id}","starred_url":"https://api.github.com/users/zz85/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zz85/subscriptions","organizations_url":"https://api.github.com/users/zz85/orgs","repos_url":"https://api.github.com/users/zz85/repos","events_url":"https://api.github.com/users/zz85/events{/privacy}","received_events_url":"https://api.github.com/users/zz85/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/zz85/mrdoobapproves/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:19:13Z","updated_at":"2015-01-01T15:19:13Z","closed_at":null,"body":"Relates to #1, and partly a quick brain dump to wrap my head around all of these choices (so excuse me if it doesn't make sense right now)...\r\n\r\n#### bower\r\n- our current state of workflow.\r\n- feels like a in-between of npm and wget. start with `bower.json`, `bower install` to download packages to `/bower_components/*` which we currently use to download codemirror & diff-merge-patch\r\n- doesn't do anything else, we just load the components as static js assets\r\n- development-wise we use the browser f5/refresh workflow\r\n- bower components can be checked in to git\r\n\r\n#### npm\r\n- `npm install` downloads dependencies in `package.json` to `/node_modules`\r\n- npm goes with hand-in-hand with node, they are node modules after all\r\n- npm installed libs are typically not loaded directly from the browser, but would use something like browserify or webpack\r\n- browserify and npm scripts is the current workflow for [timeliner](https://github.com/zz85/timeliner)\r\n- node_modules not checked into git\r\n\r\n\r\n#### require.js\r\n- not to be confused require in node.js, it is a browser based module loader, although its offline optimizer can help create bundles too\r\n- write modules in AMD style\r\n- wasn't thinking of this approach for this project\r\n\r\n#### browserify\r\n- pretty powerful and useful for making node modules work in the browser\r\n- our jscs is currently built with browserify\r\n- typically use watchify if you like the \"edit js files and refresh\" workflow\r\n- requires uglifyify for ulgified browserify transforms\r\n\r\n#### webpack\r\n- alternative workflow for the browserify workflow\r\n- comes with development, watch and production mode builtin\r\n- could support amd, commonjs, and normal js files\r\n- can process css files too\r\n- pretty customizable\r\n- i'm pretty much inclined to try this\r\n\r\n#### system.js, jspm\r\n- universal dynamic module loader - es6 modules, cmd, commonjs, global scripts\r\n- runs in the browser, so jspm needed for creating bundles\r\n- jspm accepts npm/git repos\r\n\r\n### gulp and grunt\r\n- build tools with their own merrits but not planning to use them for this project\r\n\r\nBroadly trying to categorize these tools, they can be thought to live more in the browser or on the filesystem (although distinction isn't always clear).\r\n\r\nMore browser-inclined\r\n- bower\r\n- requirejs\r\n- systemjs\r\n\r\nMore cli based\r\n- npm\r\n- browserify\r\n- webpack\r\n- jspm\r\n- gulp, grunt\r\n\r\nI guess my choice right now is to try webpack, and decide whether to move shift bower back to npm or leave them alone."}},"public":true,"created_at":"2015-01-01T15:19:13Z"} +,{"id":"2489659923","type":"DeleteEvent","actor":{"id":557961,"login":"e-jigsaw","gravatar_id":"","url":"https://api.github.com/users/e-jigsaw","avatar_url":"https://avatars.githubusercontent.com/u/557961?"},"repo":{"id":21883081,"name":"jgsme/dev","url":"https://api.github.com/repos/jgsme/dev"},"payload":{"ref":"dont-show-disqus-in-index","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:19:13Z","org":{"id":8819590,"login":"jgsme","gravatar_id":"","url":"https://api.github.com/orgs/jgsme","avatar_url":"https://avatars.githubusercontent.com/u/8819590?"}} +,{"id":"2489659924","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":536867972,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4e8fdf80fddf44b3d4fdb63d947c367754c8139c","before":"f5190ec40d9e2b9d23cc1769c45798c197f50f1f","commits":[{"sha":"4e8fdf80fddf44b3d4fdb63d947c367754c8139c","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420125552013\n\niiCZPPB1+Uw8El2/KlC4CNiXTfYvFm7K/JgVPKzHt4c=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/4e8fdf80fddf44b3d4fdb63d947c367754c8139c"}]},"public":true,"created_at":"2015-01-01T15:19:13Z"} +,{"id":"2489659928","type":"WatchEvent","actor":{"id":5687881,"login":"zekunyan","gravatar_id":"","url":"https://api.github.com/users/zekunyan","avatar_url":"https://avatars.githubusercontent.com/u/5687881?"},"repo":{"id":22692353,"name":"adobe/source-code-pro","url":"https://api.github.com/repos/adobe/source-code-pro"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:19:14Z","org":{"id":476009,"login":"adobe","gravatar_id":"","url":"https://api.github.com/orgs/adobe","avatar_url":"https://avatars.githubusercontent.com/u/476009?"}} +,{"id":"2489659929","type":"PushEvent","actor":{"id":8065015,"login":"daizhiyu","gravatar_id":"","url":"https://api.github.com/users/daizhiyu","avatar_url":"https://avatars.githubusercontent.com/u/8065015?"},"repo":{"id":13167518,"name":"jason0037/vt","url":"https://api.github.com/repos/jason0037/vt"},"payload":{"push_id":536867974,"size":1,"distinct_size":1,"ref":"refs/heads/cheuks","head":"9e1482cbc3d706db4ee607e638bea2088e27594d","before":"42cf1700f96118ad1cc4594b49cb9096c47ba4b1","commits":[{"sha":"9e1482cbc3d706db4ee607e638bea2088e27594d","author":{"email":"65ad6343e4c138d7ddd68df14db8e1337e7b69c5@qq.com","name":"daizhiyu"},"message":"\tdeleted: db/migrate/20141230041156_add_code_to_promotion.rb","distinct":true,"url":"https://api.github.com/repos/jason0037/vt/commits/9e1482cbc3d706db4ee607e638bea2088e27594d"}]},"public":true,"created_at":"2015-01-01T15:19:14Z"} +,{"id":"2489659934","type":"IssueCommentEvent","actor":{"id":10351872,"login":"PauleFoul","gravatar_id":"","url":"https://api.github.com/users/PauleFoul","avatar_url":"https://avatars.githubusercontent.com/u/10351872?"},"repo":{"id":1093060,"name":"OpenELEC/OpenELEC.tv","url":"https://api.github.com/repos/OpenELEC/OpenELEC.tv"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/OpenELEC/OpenELEC.tv/issues/3726","labels_url":"https://api.github.com/repos/OpenELEC/OpenELEC.tv/issues/3726/labels{/name}","comments_url":"https://api.github.com/repos/OpenELEC/OpenELEC.tv/issues/3726/comments","events_url":"https://api.github.com/repos/OpenELEC/OpenELEC.tv/issues/3726/events","html_url":"https://github.com/OpenELEC/OpenELEC.tv/issues/3726","id":53013702,"number":3726,"title":"kodi ","user":{"login":"tomtomclub","id":6623432,"avatar_url":"https://avatars.githubusercontent.com/u/6623432?v=3","gravatar_id":"","url":"https://api.github.com/users/tomtomclub","html_url":"https://github.com/tomtomclub","followers_url":"https://api.github.com/users/tomtomclub/followers","following_url":"https://api.github.com/users/tomtomclub/following{/other_user}","gists_url":"https://api.github.com/users/tomtomclub/gists{/gist_id}","starred_url":"https://api.github.com/users/tomtomclub/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tomtomclub/subscriptions","organizations_url":"https://api.github.com/users/tomtomclub/orgs","repos_url":"https://api.github.com/users/tomtomclub/repos","events_url":"https://api.github.com/users/tomtomclub/events{/privacy}","received_events_url":"https://api.github.com/users/tomtomclub/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":84,"created_at":"2014-12-29T00:27:55Z","updated_at":"2015-01-01T15:19:14Z","closed_at":null,"body":"\r\nmany attempts sinks all kodi hangs after 3 min video playing it stop en required rebooting,even after fresh install but \r\ngotham works well \r\n\r\nsysteem ASRock Q1900M\r\n\r\n\r\nhttp://pastebin.com/VwkCW0cf"},"comment":{"url":"https://api.github.com/repos/OpenELEC/OpenELEC.tv/issues/comments/68488905","html_url":"https://github.com/OpenELEC/OpenELEC.tv/issues/3726#issuecomment-68488905","issue_url":"https://api.github.com/repos/OpenELEC/OpenELEC.tv/issues/3726","id":68488905,"user":{"login":"PauleFoul","id":10351872,"avatar_url":"https://avatars.githubusercontent.com/u/10351872?v=3","gravatar_id":"","url":"https://api.github.com/users/PauleFoul","html_url":"https://github.com/PauleFoul","followers_url":"https://api.github.com/users/PauleFoul/followers","following_url":"https://api.github.com/users/PauleFoul/following{/other_user}","gists_url":"https://api.github.com/users/PauleFoul/gists{/gist_id}","starred_url":"https://api.github.com/users/PauleFoul/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/PauleFoul/subscriptions","organizations_url":"https://api.github.com/users/PauleFoul/orgs","repos_url":"https://api.github.com/users/PauleFoul/repos","events_url":"https://api.github.com/users/PauleFoul/events{/privacy}","received_events_url":"https://api.github.com/users/PauleFoul/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:19:14Z","updated_at":"2015-01-01T15:19:14Z","body":"Is that Snapshot with a solution for the freezer or only for better logging?\r\n"}},"public":true,"created_at":"2015-01-01T15:19:14Z","org":{"id":487665,"login":"OpenELEC","gravatar_id":"","url":"https://api.github.com/orgs/OpenELEC","avatar_url":"https://avatars.githubusercontent.com/u/487665?"}} +,{"id":"2489659936","type":"PushEvent","actor":{"id":9304960,"login":"JavaZhikun","gravatar_id":"","url":"https://api.github.com/users/JavaZhikun","avatar_url":"https://avatars.githubusercontent.com/u/9304960?"},"repo":{"id":28688942,"name":"JavaZhikun/thinkingInJava11","url":"https://api.github.com/repos/JavaZhikun/thinkingInJava11"},"payload":{"push_id":536867976,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9d83fdfacdd0fc521d4a0f37d3f44cd05db9eaaf","before":"6cc2790fe84c976e0512fadc900d5643a0da0191","commits":[{"sha":"9d83fdfacdd0fc521d4a0f37d3f44cd05db9eaaf","author":{"email":"f5267772bfb05853712b5f5d256ff2cd27689af4@qq.com","name":"luanzhikun"},"message":"项目提交","distinct":true,"url":"https://api.github.com/repos/JavaZhikun/thinkingInJava11/commits/9d83fdfacdd0fc521d4a0f37d3f44cd05db9eaaf"}]},"public":true,"created_at":"2015-01-01T15:19:15Z"} +,{"id":"2489659937","type":"IssueCommentEvent","actor":{"id":58295,"login":"dlangevin","gravatar_id":"","url":"https://api.github.com/users/dlangevin","avatar_url":"https://avatars.githubusercontent.com/u/58295?"},"repo":{"id":27022174,"name":"dockyard/ember-cli-i18n","url":"https://api.github.com/repos/dockyard/ember-cli-i18n"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/dockyard/ember-cli-i18n/issues/47","labels_url":"https://api.github.com/repos/dockyard/ember-cli-i18n/issues/47/labels{/name}","comments_url":"https://api.github.com/repos/dockyard/ember-cli-i18n/issues/47/comments","events_url":"https://api.github.com/repos/dockyard/ember-cli-i18n/issues/47/events","html_url":"https://github.com/dockyard/ember-cli-i18n/pull/47","id":53191944,"number":47,"title":"Fixing pluralization","user":{"login":"dlangevin","id":58295,"avatar_url":"https://avatars.githubusercontent.com/u/58295?v=3","gravatar_id":"","url":"https://api.github.com/users/dlangevin","html_url":"https://github.com/dlangevin","followers_url":"https://api.github.com/users/dlangevin/followers","following_url":"https://api.github.com/users/dlangevin/following{/other_user}","gists_url":"https://api.github.com/users/dlangevin/gists{/gist_id}","starred_url":"https://api.github.com/users/dlangevin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dlangevin/subscriptions","organizations_url":"https://api.github.com/users/dlangevin/orgs","repos_url":"https://api.github.com/users/dlangevin/repos","events_url":"https://api.github.com/users/dlangevin/events{/privacy}","received_events_url":"https://api.github.com/users/dlangevin/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-12-31T16:43:07Z","updated_at":"2015-01-01T15:19:15Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/dockyard/ember-cli-i18n/pulls/47","html_url":"https://github.com/dockyard/ember-cli-i18n/pull/47","diff_url":"https://github.com/dockyard/ember-cli-i18n/pull/47.diff","patch_url":"https://github.com/dockyard/ember-cli-i18n/pull/47.patch"},"body":"Ember's `Container#lookupFactory` was returning the rule function not `{default: function(){}}`, which was causing this to break. I verified this with an acceptance test in this project\r\n\r\nPlease take a look at the code that overrides `#lookupFactory` in the unit test. I'm not 100% sure how you guys intended that to work, but I kind of hacked it together to simulate the behavior I was seeing in `Container#lookupFactory`"},"comment":{"url":"https://api.github.com/repos/dockyard/ember-cli-i18n/issues/comments/68488906","html_url":"https://github.com/dockyard/ember-cli-i18n/pull/47#issuecomment-68488906","issue_url":"https://api.github.com/repos/dockyard/ember-cli-i18n/issues/47","id":68488906,"user":{"login":"dlangevin","id":58295,"avatar_url":"https://avatars.githubusercontent.com/u/58295?v=3","gravatar_id":"","url":"https://api.github.com/users/dlangevin","html_url":"https://github.com/dlangevin","followers_url":"https://api.github.com/users/dlangevin/followers","following_url":"https://api.github.com/users/dlangevin/following{/other_user}","gists_url":"https://api.github.com/users/dlangevin/gists{/gist_id}","starred_url":"https://api.github.com/users/dlangevin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dlangevin/subscriptions","organizations_url":"https://api.github.com/users/dlangevin/orgs","repos_url":"https://api.github.com/users/dlangevin/repos","events_url":"https://api.github.com/users/dlangevin/events{/privacy}","received_events_url":"https://api.github.com/users/dlangevin/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:19:15Z","updated_at":"2015-01-01T15:19:15Z","body":"Yeah sorry, I found another issue and pushed to the same branch. \r\n\r\nThe other issue is actually equally important to fix. Streams passed in as bound count arguments to `tHelper()` were throwing an error. Will break these out and submit a new PR as well as fix this one."}},"public":true,"created_at":"2015-01-01T15:19:15Z","org":{"id":873981,"login":"dockyard","gravatar_id":"","url":"https://api.github.com/orgs/dockyard","avatar_url":"https://avatars.githubusercontent.com/u/873981?"}} +,{"id":"2489659938","type":"IssueCommentEvent","actor":{"id":333276,"login":"Mogztter","gravatar_id":"","url":"https://api.github.com/users/Mogztter","avatar_url":"https://avatars.githubusercontent.com/u/333276?"},"repo":{"id":10153040,"name":"asciidoctor/asciidoctor.js","url":"https://api.github.com/repos/asciidoctor/asciidoctor.js"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/asciidoctor/asciidoctor.js/issues/88","labels_url":"https://api.github.com/repos/asciidoctor/asciidoctor.js/issues/88/labels{/name}","comments_url":"https://api.github.com/repos/asciidoctor/asciidoctor.js/issues/88/comments","events_url":"https://api.github.com/repos/asciidoctor/asciidoctor.js/issues/88/events","html_url":"https://github.com/asciidoctor/asciidoctor.js/issues/88","id":52591115,"number":88,"title":"Run jdk8_ea and jdk9_ea tasks every night on Travis CI","user":{"login":"Mogztter","id":333276,"avatar_url":"https://avatars.githubusercontent.com/u/333276?v=3","gravatar_id":"","url":"https://api.github.com/users/Mogztter","html_url":"https://github.com/Mogztter","followers_url":"https://api.github.com/users/Mogztter/followers","following_url":"https://api.github.com/users/Mogztter/following{/other_user}","gists_url":"https://api.github.com/users/Mogztter/gists{/gist_id}","starred_url":"https://api.github.com/users/Mogztter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Mogztter/subscriptions","organizations_url":"https://api.github.com/users/Mogztter/orgs","repos_url":"https://api.github.com/users/Mogztter/repos","events_url":"https://api.github.com/users/Mogztter/events{/privacy}","received_events_url":"https://api.github.com/users/Mogztter/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/asciidoctor/asciidoctor.js/labels/infrastructure","name":"infrastructure","color":"207de5"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":26,"created_at":"2014-12-21T09:46:59Z","updated_at":"2015-01-01T15:19:15Z","closed_at":null,"body":"Now that we have smoke test again Java Early Access Release (see #78), we need to run the task `jdk8_ea` and `jdk9_ea` every night on master branch.\r\n\r\nIdeas:\r\n\r\n * [Tron CI](http://tron-ci.herokuapp.com/) \r\n * Set [environment variables](http://docs.travis-ci.com/user/ci-environment/#Environment-variables) on Travis\r\n * Use [Travis API](https://github.com/travis-ci/travis.rb)\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/asciidoctor/asciidoctor.js/issues/comments/68488907","html_url":"https://github.com/asciidoctor/asciidoctor.js/issues/88#issuecomment-68488907","issue_url":"https://api.github.com/repos/asciidoctor/asciidoctor.js/issues/88","id":68488907,"user":{"login":"Mogztter","id":333276,"avatar_url":"https://avatars.githubusercontent.com/u/333276?v=3","gravatar_id":"","url":"https://api.github.com/users/Mogztter","html_url":"https://github.com/Mogztter","followers_url":"https://api.github.com/users/Mogztter/followers","following_url":"https://api.github.com/users/Mogztter/following{/other_user}","gists_url":"https://api.github.com/users/Mogztter/gists{/gist_id}","starred_url":"https://api.github.com/users/Mogztter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Mogztter/subscriptions","organizations_url":"https://api.github.com/users/Mogztter/orgs","repos_url":"https://api.github.com/users/Mogztter/repos","events_url":"https://api.github.com/users/Mogztter/events{/privacy}","received_events_url":"https://api.github.com/users/Mogztter/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:19:15Z","updated_at":"2015-01-01T15:19:15Z","body":"https://ci.appveyor.com/project/asciidoctor/asciidoctor-js/build/25 :beers: \r\nI expected JDK 9 to be a little faster but that quite the opposite (or maybe I messed up with `Time.now` ?). Do you think we should report that ?\r\n\r\nJDK8\r\n```\r\nSmoke test with jjs... OK in 72377.42 ms\r\nSmoke test with java... OK in 68581.778 ms\r\n```\r\n\r\nJDK9\r\n```\r\nSmoke test with jjs... OK in 212526.665 ms\r\nSmoke test with java... OK in 214483.205 ms\r\n```"}},"public":true,"created_at":"2015-01-01T15:19:15Z","org":{"id":3137042,"login":"asciidoctor","gravatar_id":"","url":"https://api.github.com/orgs/asciidoctor","avatar_url":"https://avatars.githubusercontent.com/u/3137042?"}} +,{"id":"2489659939","type":"PushEvent","actor":{"id":6332263,"login":"unluisco","gravatar_id":"","url":"https://api.github.com/users/unluisco","avatar_url":"https://avatars.githubusercontent.com/u/6332263?"},"repo":{"id":28680732,"name":"unluisco/unluisco.github.io","url":"https://api.github.com/repos/unluisco/unluisco.github.io"},"payload":{"push_id":536867978,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4c1e944bc6b968b0f4fb20efe51665cff035e36e","before":"915b5d027a31f2c82452da4200ffb991eed004be","commits":[{"sha":"4c1e944bc6b968b0f4fb20efe51665cff035e36e","author":{"email":"72108310edfbdcb52b48de1cfd5474cddd98b124@gmail.com","name":"Luis Alfredo"},"message":"primeras imagenes de mi proyecto","distinct":true,"url":"https://api.github.com/repos/unluisco/unluisco.github.io/commits/4c1e944bc6b968b0f4fb20efe51665cff035e36e"}]},"public":true,"created_at":"2015-01-01T15:19:15Z"} +,{"id":"2489659945","type":"PushEvent","actor":{"id":9692356,"login":"rice1985","gravatar_id":"","url":"https://api.github.com/users/rice1985","avatar_url":"https://avatars.githubusercontent.com/u/9692356?"},"repo":{"id":28687506,"name":"rice1985/Android-O2OProject","url":"https://api.github.com/repos/rice1985/Android-O2OProject"},"payload":{"push_id":536867982,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"60dbe6dee0bac6ca431132b27b2a5b7e6935e416","before":"92a4a865acb1d9bebbc3d2cf60052e8116c62fdf","commits":[{"sha":"60dbe6dee0bac6ca431132b27b2a5b7e6935e416","author":{"email":"6bbe22e4395fae798c938ac553931338d8768a08@gmail.com","name":"Rice·Melon"},"message":"add","distinct":true,"url":"https://api.github.com/repos/rice1985/Android-O2OProject/commits/60dbe6dee0bac6ca431132b27b2a5b7e6935e416"}]},"public":true,"created_at":"2015-01-01T15:19:16Z"} +,{"id":"2489659946","type":"IssueCommentEvent","actor":{"id":8332788,"login":"trees-software","gravatar_id":"","url":"https://api.github.com/users/trees-software","avatar_url":"https://avatars.githubusercontent.com/u/8332788?"},"repo":{"id":22165061,"name":"LeagueSharp/LeagueSharpCommon","url":"https://api.github.com/repos/LeagueSharp/LeagueSharpCommon"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/LeagueSharp/LeagueSharpCommon/issues/154","labels_url":"https://api.github.com/repos/LeagueSharp/LeagueSharpCommon/issues/154/labels{/name}","comments_url":"https://api.github.com/repos/LeagueSharp/LeagueSharpCommon/issues/154/comments","events_url":"https://api.github.com/repos/LeagueSharp/LeagueSharpCommon/issues/154/events","html_url":"https://github.com/LeagueSharp/LeagueSharpCommon/issues/154","id":53221677,"number":154,"title":"Latest core changes affected all assemblies with smite","user":{"login":"MissSecret","id":10191030,"avatar_url":"https://avatars.githubusercontent.com/u/10191030?v=3","gravatar_id":"","url":"https://api.github.com/users/MissSecret","html_url":"https://github.com/MissSecret","followers_url":"https://api.github.com/users/MissSecret/followers","following_url":"https://api.github.com/users/MissSecret/following{/other_user}","gists_url":"https://api.github.com/users/MissSecret/gists{/gist_id}","starred_url":"https://api.github.com/users/MissSecret/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MissSecret/subscriptions","organizations_url":"https://api.github.com/users/MissSecret/orgs","repos_url":"https://api.github.com/users/MissSecret/repos","events_url":"https://api.github.com/users/MissSecret/events{/privacy}","received_events_url":"https://api.github.com/users/MissSecret/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:16:56Z","updated_at":"2015-01-01T15:19:16Z","closed_at":"2015-01-01T15:19:16Z","body":"Error compiling\r\n\r\nBlack Warwick\r\nMaster yi by prunes\r\nRoach_'s pantheon\r\nFALeesin\r\nMetasmite\r\nJ_utity\r\nOracle\r\nDiabeths assemblies\r\n"},"comment":{"url":"https://api.github.com/repos/LeagueSharp/LeagueSharpCommon/issues/comments/68488908","html_url":"https://github.com/LeagueSharp/LeagueSharpCommon/issues/154#issuecomment-68488908","issue_url":"https://api.github.com/repos/LeagueSharp/LeagueSharpCommon/issues/154","id":68488908,"user":{"login":"trees-software","id":8332788,"avatar_url":"https://avatars.githubusercontent.com/u/8332788?v=3","gravatar_id":"","url":"https://api.github.com/users/trees-software","html_url":"https://github.com/trees-software","followers_url":"https://api.github.com/users/trees-software/followers","following_url":"https://api.github.com/users/trees-software/following{/other_user}","gists_url":"https://api.github.com/users/trees-software/gists{/gist_id}","starred_url":"https://api.github.com/users/trees-software/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/trees-software/subscriptions","organizations_url":"https://api.github.com/users/trees-software/orgs","repos_url":"https://api.github.com/users/trees-software/repos","events_url":"https://api.github.com/users/trees-software/events{/privacy}","received_events_url":"https://api.github.com/users/trees-software/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:19:16Z","updated_at":"2015-01-01T15:19:16Z","body":"1.) This isn't the LeagueSharp Core repo.\r\n2.) The change were reported almost 2 weeks ago [here](http://www.joduska.me/forum/topic/12669-important-api-changes-421/)\r\n3.) We aren't responsible for developers not updating their assemblies."}},"public":true,"created_at":"2015-01-01T15:19:16Z","org":{"id":8248634,"login":"LeagueSharp","gravatar_id":"","url":"https://api.github.com/orgs/LeagueSharp","avatar_url":"https://avatars.githubusercontent.com/u/8248634?"}} +,{"id":"2489659947","type":"IssuesEvent","actor":{"id":8332788,"login":"trees-software","gravatar_id":"","url":"https://api.github.com/users/trees-software","avatar_url":"https://avatars.githubusercontent.com/u/8332788?"},"repo":{"id":22165061,"name":"LeagueSharp/LeagueSharpCommon","url":"https://api.github.com/repos/LeagueSharp/LeagueSharpCommon"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/LeagueSharp/LeagueSharpCommon/issues/154","labels_url":"https://api.github.com/repos/LeagueSharp/LeagueSharpCommon/issues/154/labels{/name}","comments_url":"https://api.github.com/repos/LeagueSharp/LeagueSharpCommon/issues/154/comments","events_url":"https://api.github.com/repos/LeagueSharp/LeagueSharpCommon/issues/154/events","html_url":"https://github.com/LeagueSharp/LeagueSharpCommon/issues/154","id":53221677,"number":154,"title":"Latest core changes affected all assemblies with smite","user":{"login":"MissSecret","id":10191030,"avatar_url":"https://avatars.githubusercontent.com/u/10191030?v=3","gravatar_id":"","url":"https://api.github.com/users/MissSecret","html_url":"https://github.com/MissSecret","followers_url":"https://api.github.com/users/MissSecret/followers","following_url":"https://api.github.com/users/MissSecret/following{/other_user}","gists_url":"https://api.github.com/users/MissSecret/gists{/gist_id}","starred_url":"https://api.github.com/users/MissSecret/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MissSecret/subscriptions","organizations_url":"https://api.github.com/users/MissSecret/orgs","repos_url":"https://api.github.com/users/MissSecret/repos","events_url":"https://api.github.com/users/MissSecret/events{/privacy}","received_events_url":"https://api.github.com/users/MissSecret/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:16:56Z","updated_at":"2015-01-01T15:19:16Z","closed_at":"2015-01-01T15:19:16Z","body":"Error compiling\r\n\r\nBlack Warwick\r\nMaster yi by prunes\r\nRoach_'s pantheon\r\nFALeesin\r\nMetasmite\r\nJ_utity\r\nOracle\r\nDiabeths assemblies\r\n"}},"public":true,"created_at":"2015-01-01T15:19:16Z","org":{"id":8248634,"login":"LeagueSharp","gravatar_id":"","url":"https://api.github.com/orgs/LeagueSharp","avatar_url":"https://avatars.githubusercontent.com/u/8248634?"}} +,{"id":"2489659948","type":"IssueCommentEvent","actor":{"id":37787,"login":"daleharvey","gravatar_id":"","url":"https://api.github.com/users/daleharvey","avatar_url":"https://avatars.githubusercontent.com/u/37787?"},"repo":{"id":714074,"name":"pouchdb/pouchdb","url":"https://api.github.com/repos/pouchdb/pouchdb"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3313","labels_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3313/labels{/name}","comments_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3313/comments","events_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3313/events","html_url":"https://github.com/pouchdb/pouchdb/pull/3313","id":53134411,"number":3313,"title":"(#136) - Fix 'Test _conflicts key'","user":{"login":"willholley","id":97787,"avatar_url":"https://avatars.githubusercontent.com/u/97787?v=3","gravatar_id":"","url":"https://api.github.com/users/willholley","html_url":"https://github.com/willholley","followers_url":"https://api.github.com/users/willholley/followers","following_url":"https://api.github.com/users/willholley/following{/other_user}","gists_url":"https://api.github.com/users/willholley/gists{/gist_id}","starred_url":"https://api.github.com/users/willholley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/willholley/subscriptions","organizations_url":"https://api.github.com/users/willholley/orgs","repos_url":"https://api.github.com/users/willholley/repos","events_url":"https://api.github.com/users/willholley/events{/privacy}","received_events_url":"https://api.github.com/users/willholley/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-30T18:07:11Z","updated_at":"2015-01-01T15:19:16Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/pouchdb/pouchdb/pulls/3313","html_url":"https://github.com/pouchdb/pouchdb/pull/3313","diff_url":"https://github.com/pouchdb/pouchdb/pull/3313.diff","patch_url":"https://github.com/pouchdb/pouchdb/pull/3313.patch"},"body":"Change the replication test 'Test _conflicts key' so that it doesn't use temporary views (not supported in CouchDB 2.0).\r\n\r\nWill want to rebase on top of https://github.com/pouchdb/pouchdb/pull/3310 before merging."},"comment":{"url":"https://api.github.com/repos/pouchdb/pouchdb/issues/comments/68488909","html_url":"https://github.com/pouchdb/pouchdb/pull/3313#issuecomment-68488909","issue_url":"https://api.github.com/repos/pouchdb/pouchdb/issues/3313","id":68488909,"user":{"login":"daleharvey","id":37787,"avatar_url":"https://avatars.githubusercontent.com/u/37787?v=3","gravatar_id":"","url":"https://api.github.com/users/daleharvey","html_url":"https://github.com/daleharvey","followers_url":"https://api.github.com/users/daleharvey/followers","following_url":"https://api.github.com/users/daleharvey/following{/other_user}","gists_url":"https://api.github.com/users/daleharvey/gists{/gist_id}","starred_url":"https://api.github.com/users/daleharvey/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/daleharvey/subscriptions","organizations_url":"https://api.github.com/users/daleharvey/orgs","repos_url":"https://api.github.com/users/daleharvey/repos","events_url":"https://api.github.com/users/daleharvey/events{/privacy}","received_events_url":"https://api.github.com/users/daleharvey/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:19:16Z","updated_at":"2015-01-01T15:19:16Z","body":"Yup this fix looks good to me, could you rebase and get a green before merging though, thanks\r\n\r\n+1"}},"public":true,"created_at":"2015-01-01T15:19:16Z","org":{"id":3406112,"login":"pouchdb","gravatar_id":"","url":"https://api.github.com/orgs/pouchdb","avatar_url":"https://avatars.githubusercontent.com/u/3406112?"}} +,{"id":"2489659950","type":"PullRequestReviewCommentEvent","actor":{"id":7882662,"login":"codeschool-kiddo","gravatar_id":"","url":"https://api.github.com/users/codeschool-kiddo","avatar_url":"https://avatars.githubusercontent.com/u/7882662?"},"repo":{"id":28687496,"name":"ToOLs-PL/dojo_rules","url":"https://api.github.com/repos/ToOLs-PL/dojo_rules"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls/comments/22400159","id":22400159,"diff_hunk":"@@ -1,2 +1,7 @@\n Hello, dojo! My favorite CodeSchool paths are JavaScript and HTML & CSS.\n \n+Skills:\n+* AngularJS\n+* Java\n+* Git\n+","path":"introduction.md","position":7,"original_position":7,"commit_id":"07b4d2b215a3afb9ae39fcbc025d6d1581ab1ff3","original_commit_id":"07b4d2b215a3afb9ae39fcbc025d6d1581ab1ff3","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":"Since you're becoming a GitHub master, could you also add \"Killing history using git rebase\" as one of your deadly skills?","created_at":"2015-01-01T15:19:17Z","updated_at":"2015-01-01T15:19:17Z","html_url":"https://github.com/ToOLs-PL/dojo_rules/pull/1#discussion_r22400159","pull_request_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls/1","_links":{"self":{"href":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls/comments/22400159"},"html":{"href":"https://github.com/ToOLs-PL/dojo_rules/pull/1#discussion_r22400159"},"pull_request":{"href":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls/1"}}},"pull_request":{"url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls/1","id":26743912,"html_url":"https://github.com/ToOLs-PL/dojo_rules/pull/1","diff_url":"https://github.com/ToOLs-PL/dojo_rules/pull/1.diff","patch_url":"https://github.com/ToOLs-PL/dojo_rules/pull/1.patch","issue_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/issues/1","number":1,"state":"open","locked":false,"title":"Add deadly skills.","user":{"login":"ToOLs-PL","id":1262317,"avatar_url":"https://avatars.githubusercontent.com/u/1262317?v=3","gravatar_id":"","url":"https://api.github.com/users/ToOLs-PL","html_url":"https://github.com/ToOLs-PL","followers_url":"https://api.github.com/users/ToOLs-PL/followers","following_url":"https://api.github.com/users/ToOLs-PL/following{/other_user}","gists_url":"https://api.github.com/users/ToOLs-PL/gists{/gist_id}","starred_url":"https://api.github.com/users/ToOLs-PL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ToOLs-PL/subscriptions","organizations_url":"https://api.github.com/users/ToOLs-PL/orgs","repos_url":"https://api.github.com/users/ToOLs-PL/repos","events_url":"https://api.github.com/users/ToOLs-PL/events{/privacy}","received_events_url":"https://api.github.com/users/ToOLs-PL/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:19:08Z","updated_at":"2015-01-01T15:19:17Z","closed_at":null,"merged_at":null,"merge_commit_sha":"5b195a20b030ecc1bda4f6e5eafbae0ff95366a7","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls/1/commits","review_comments_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls/1/comments","review_comment_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls/comments/{number}","comments_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/issues/1/comments","statuses_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/statuses/07b4d2b215a3afb9ae39fcbc025d6d1581ab1ff3","head":{"label":"ToOLs-PL:deadly_skills","ref":"deadly_skills","sha":"07b4d2b215a3afb9ae39fcbc025d6d1581ab1ff3","user":{"login":"ToOLs-PL","id":1262317,"avatar_url":"https://avatars.githubusercontent.com/u/1262317?v=3","gravatar_id":"","url":"https://api.github.com/users/ToOLs-PL","html_url":"https://github.com/ToOLs-PL","followers_url":"https://api.github.com/users/ToOLs-PL/followers","following_url":"https://api.github.com/users/ToOLs-PL/following{/other_user}","gists_url":"https://api.github.com/users/ToOLs-PL/gists{/gist_id}","starred_url":"https://api.github.com/users/ToOLs-PL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ToOLs-PL/subscriptions","organizations_url":"https://api.github.com/users/ToOLs-PL/orgs","repos_url":"https://api.github.com/users/ToOLs-PL/repos","events_url":"https://api.github.com/users/ToOLs-PL/events{/privacy}","received_events_url":"https://api.github.com/users/ToOLs-PL/received_events","type":"User","site_admin":false},"repo":{"id":28687496,"name":"dojo_rules","full_name":"ToOLs-PL/dojo_rules","owner":{"login":"ToOLs-PL","id":1262317,"avatar_url":"https://avatars.githubusercontent.com/u/1262317?v=3","gravatar_id":"","url":"https://api.github.com/users/ToOLs-PL","html_url":"https://github.com/ToOLs-PL","followers_url":"https://api.github.com/users/ToOLs-PL/followers","following_url":"https://api.github.com/users/ToOLs-PL/following{/other_user}","gists_url":"https://api.github.com/users/ToOLs-PL/gists{/gist_id}","starred_url":"https://api.github.com/users/ToOLs-PL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ToOLs-PL/subscriptions","organizations_url":"https://api.github.com/users/ToOLs-PL/orgs","repos_url":"https://api.github.com/users/ToOLs-PL/repos","events_url":"https://api.github.com/users/ToOLs-PL/events{/privacy}","received_events_url":"https://api.github.com/users/ToOLs-PL/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ToOLs-PL/dojo_rules","description":"","fork":true,"url":"https://api.github.com/repos/ToOLs-PL/dojo_rules","forks_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/forks","keys_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/teams","hooks_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/hooks","issue_events_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/issues/events{/number}","events_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/events","assignees_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/assignees{/user}","branches_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/branches{/branch}","tags_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/tags","blobs_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/git/refs{/sha}","trees_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/statuses/{sha}","languages_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/languages","stargazers_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/stargazers","contributors_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/contributors","subscribers_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/subscribers","subscription_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/subscription","commits_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/commits{/sha}","git_commits_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/git/commits{/sha}","comments_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/comments{/number}","issue_comment_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/issues/comments/{number}","contents_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/contents/{+path}","compare_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/merges","archive_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/downloads","issues_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/issues{/number}","pulls_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls{/number}","milestones_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/milestones{/number}","notifications_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/labels{/name}","releases_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/releases{/id}","created_at":"2015-01-01T13:57:17Z","updated_at":"2015-01-01T14:38:19Z","pushed_at":"2015-01-01T15:16:56Z","git_url":"git://github.com/ToOLs-PL/dojo_rules.git","ssh_url":"git@github.com:ToOLs-PL/dojo_rules.git","clone_url":"https://github.com/ToOLs-PL/dojo_rules.git","svn_url":"https://github.com/ToOLs-PL/dojo_rules","homepage":null,"size":545,"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":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"base":{"label":"ToOLs-PL:master","ref":"master","sha":"1429fe5e0cc928f94ea9917bc9d215050b70ea4f","user":{"login":"ToOLs-PL","id":1262317,"avatar_url":"https://avatars.githubusercontent.com/u/1262317?v=3","gravatar_id":"","url":"https://api.github.com/users/ToOLs-PL","html_url":"https://github.com/ToOLs-PL","followers_url":"https://api.github.com/users/ToOLs-PL/followers","following_url":"https://api.github.com/users/ToOLs-PL/following{/other_user}","gists_url":"https://api.github.com/users/ToOLs-PL/gists{/gist_id}","starred_url":"https://api.github.com/users/ToOLs-PL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ToOLs-PL/subscriptions","organizations_url":"https://api.github.com/users/ToOLs-PL/orgs","repos_url":"https://api.github.com/users/ToOLs-PL/repos","events_url":"https://api.github.com/users/ToOLs-PL/events{/privacy}","received_events_url":"https://api.github.com/users/ToOLs-PL/received_events","type":"User","site_admin":false},"repo":{"id":28687496,"name":"dojo_rules","full_name":"ToOLs-PL/dojo_rules","owner":{"login":"ToOLs-PL","id":1262317,"avatar_url":"https://avatars.githubusercontent.com/u/1262317?v=3","gravatar_id":"","url":"https://api.github.com/users/ToOLs-PL","html_url":"https://github.com/ToOLs-PL","followers_url":"https://api.github.com/users/ToOLs-PL/followers","following_url":"https://api.github.com/users/ToOLs-PL/following{/other_user}","gists_url":"https://api.github.com/users/ToOLs-PL/gists{/gist_id}","starred_url":"https://api.github.com/users/ToOLs-PL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ToOLs-PL/subscriptions","organizations_url":"https://api.github.com/users/ToOLs-PL/orgs","repos_url":"https://api.github.com/users/ToOLs-PL/repos","events_url":"https://api.github.com/users/ToOLs-PL/events{/privacy}","received_events_url":"https://api.github.com/users/ToOLs-PL/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ToOLs-PL/dojo_rules","description":"","fork":true,"url":"https://api.github.com/repos/ToOLs-PL/dojo_rules","forks_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/forks","keys_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/teams","hooks_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/hooks","issue_events_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/issues/events{/number}","events_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/events","assignees_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/assignees{/user}","branches_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/branches{/branch}","tags_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/tags","blobs_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/git/refs{/sha}","trees_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/statuses/{sha}","languages_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/languages","stargazers_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/stargazers","contributors_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/contributors","subscribers_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/subscribers","subscription_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/subscription","commits_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/commits{/sha}","git_commits_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/git/commits{/sha}","comments_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/comments{/number}","issue_comment_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/issues/comments/{number}","contents_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/contents/{+path}","compare_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/merges","archive_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/downloads","issues_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/issues{/number}","pulls_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls{/number}","milestones_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/milestones{/number}","notifications_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/labels{/name}","releases_url":"https://api.github.com/repos/ToOLs-PL/dojo_rules/releases{/id}","created_at":"2015-01-01T13:57:17Z","updated_at":"2015-01-01T14:38:19Z","pushed_at":"2015-01-01T15:16:56Z","git_url":"git://github.com/ToOLs-PL/dojo_rules.git","ssh_url":"git@github.com:ToOLs-PL/dojo_rules.git","clone_url":"https://github.com/ToOLs-PL/dojo_rules.git","svn_url":"https://github.com/ToOLs-PL/dojo_rules","homepage":null,"size":545,"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":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls/1"},"html":{"href":"https://github.com/ToOLs-PL/dojo_rules/pull/1"},"issue":{"href":"https://api.github.com/repos/ToOLs-PL/dojo_rules/issues/1"},"comments":{"href":"https://api.github.com/repos/ToOLs-PL/dojo_rules/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/ToOLs-PL/dojo_rules/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/ToOLs-PL/dojo_rules/statuses/07b4d2b215a3afb9ae39fcbc025d6d1581ab1ff3"}}}},"public":true,"created_at":"2015-01-01T15:19:17Z"} +,{"id":"2489659951","type":"PullRequestEvent","actor":{"id":2915850,"login":"robbiehinch","gravatar_id":"","url":"https://api.github.com/users/robbiehinch","avatar_url":"https://avatars.githubusercontent.com/u/2915850?"},"repo":{"id":11255997,"name":"watilde/tvm","url":"https://api.github.com/repos/watilde/tvm"},"payload":{"action":"opened","number":30,"pull_request":{"url":"https://api.github.com/repos/watilde/tvm/pulls/30","id":26743914,"html_url":"https://github.com/watilde/tvm/pull/30","diff_url":"https://github.com/watilde/tvm/pull/30.diff","patch_url":"https://github.com/watilde/tvm/pull/30.patch","issue_url":"https://api.github.com/repos/watilde/tvm/issues/30","number":30,"state":"open","locked":false,"title":"err variable misnamed -> error","user":{"login":"robbiehinch","id":2915850,"avatar_url":"https://avatars.githubusercontent.com/u/2915850?v=3","gravatar_id":"","url":"https://api.github.com/users/robbiehinch","html_url":"https://github.com/robbiehinch","followers_url":"https://api.github.com/users/robbiehinch/followers","following_url":"https://api.github.com/users/robbiehinch/following{/other_user}","gists_url":"https://api.github.com/users/robbiehinch/gists{/gist_id}","starred_url":"https://api.github.com/users/robbiehinch/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robbiehinch/subscriptions","organizations_url":"https://api.github.com/users/robbiehinch/orgs","repos_url":"https://api.github.com/users/robbiehinch/repos","events_url":"https://api.github.com/users/robbiehinch/events{/privacy}","received_events_url":"https://api.github.com/users/robbiehinch/received_events","type":"User","site_admin":false},"body":"Trying to get this to work on Windows, triggered this typo since I don't have an equivalent cp utility in my environment yet.","created_at":"2015-01-01T15:19:17Z","updated_at":"2015-01-01T15:19:17Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/watilde/tvm/pulls/30/commits","review_comments_url":"https://api.github.com/repos/watilde/tvm/pulls/30/comments","review_comment_url":"https://api.github.com/repos/watilde/tvm/pulls/comments/{number}","comments_url":"https://api.github.com/repos/watilde/tvm/issues/30/comments","statuses_url":"https://api.github.com/repos/watilde/tvm/statuses/bc70c98a71c6dc47da726771e0a9125eea122abc","head":{"label":"robbiehinch:master","ref":"master","sha":"bc70c98a71c6dc47da726771e0a9125eea122abc","user":{"login":"robbiehinch","id":2915850,"avatar_url":"https://avatars.githubusercontent.com/u/2915850?v=3","gravatar_id":"","url":"https://api.github.com/users/robbiehinch","html_url":"https://github.com/robbiehinch","followers_url":"https://api.github.com/users/robbiehinch/followers","following_url":"https://api.github.com/users/robbiehinch/following{/other_user}","gists_url":"https://api.github.com/users/robbiehinch/gists{/gist_id}","starred_url":"https://api.github.com/users/robbiehinch/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robbiehinch/subscriptions","organizations_url":"https://api.github.com/users/robbiehinch/orgs","repos_url":"https://api.github.com/users/robbiehinch/repos","events_url":"https://api.github.com/users/robbiehinch/events{/privacy}","received_events_url":"https://api.github.com/users/robbiehinch/received_events","type":"User","site_admin":false},"repo":{"id":28688894,"name":"tvm","full_name":"robbiehinch/tvm","owner":{"login":"robbiehinch","id":2915850,"avatar_url":"https://avatars.githubusercontent.com/u/2915850?v=3","gravatar_id":"","url":"https://api.github.com/users/robbiehinch","html_url":"https://github.com/robbiehinch","followers_url":"https://api.github.com/users/robbiehinch/followers","following_url":"https://api.github.com/users/robbiehinch/following{/other_user}","gists_url":"https://api.github.com/users/robbiehinch/gists{/gist_id}","starred_url":"https://api.github.com/users/robbiehinch/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robbiehinch/subscriptions","organizations_url":"https://api.github.com/users/robbiehinch/orgs","repos_url":"https://api.github.com/users/robbiehinch/repos","events_url":"https://api.github.com/users/robbiehinch/events{/privacy}","received_events_url":"https://api.github.com/users/robbiehinch/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/robbiehinch/tvm","description":"TypeScript Version Manager","fork":true,"url":"https://api.github.com/repos/robbiehinch/tvm","forks_url":"https://api.github.com/repos/robbiehinch/tvm/forks","keys_url":"https://api.github.com/repos/robbiehinch/tvm/keys{/key_id}","collaborators_url":"https://api.github.com/repos/robbiehinch/tvm/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/robbiehinch/tvm/teams","hooks_url":"https://api.github.com/repos/robbiehinch/tvm/hooks","issue_events_url":"https://api.github.com/repos/robbiehinch/tvm/issues/events{/number}","events_url":"https://api.github.com/repos/robbiehinch/tvm/events","assignees_url":"https://api.github.com/repos/robbiehinch/tvm/assignees{/user}","branches_url":"https://api.github.com/repos/robbiehinch/tvm/branches{/branch}","tags_url":"https://api.github.com/repos/robbiehinch/tvm/tags","blobs_url":"https://api.github.com/repos/robbiehinch/tvm/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/robbiehinch/tvm/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/robbiehinch/tvm/git/refs{/sha}","trees_url":"https://api.github.com/repos/robbiehinch/tvm/git/trees{/sha}","statuses_url":"https://api.github.com/repos/robbiehinch/tvm/statuses/{sha}","languages_url":"https://api.github.com/repos/robbiehinch/tvm/languages","stargazers_url":"https://api.github.com/repos/robbiehinch/tvm/stargazers","contributors_url":"https://api.github.com/repos/robbiehinch/tvm/contributors","subscribers_url":"https://api.github.com/repos/robbiehinch/tvm/subscribers","subscription_url":"https://api.github.com/repos/robbiehinch/tvm/subscription","commits_url":"https://api.github.com/repos/robbiehinch/tvm/commits{/sha}","git_commits_url":"https://api.github.com/repos/robbiehinch/tvm/git/commits{/sha}","comments_url":"https://api.github.com/repos/robbiehinch/tvm/comments{/number}","issue_comment_url":"https://api.github.com/repos/robbiehinch/tvm/issues/comments/{number}","contents_url":"https://api.github.com/repos/robbiehinch/tvm/contents/{+path}","compare_url":"https://api.github.com/repos/robbiehinch/tvm/compare/{base}...{head}","merges_url":"https://api.github.com/repos/robbiehinch/tvm/merges","archive_url":"https://api.github.com/repos/robbiehinch/tvm/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/robbiehinch/tvm/downloads","issues_url":"https://api.github.com/repos/robbiehinch/tvm/issues{/number}","pulls_url":"https://api.github.com/repos/robbiehinch/tvm/pulls{/number}","milestones_url":"https://api.github.com/repos/robbiehinch/tvm/milestones{/number}","notifications_url":"https://api.github.com/repos/robbiehinch/tvm/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/robbiehinch/tvm/labels{/name}","releases_url":"https://api.github.com/repos/robbiehinch/tvm/releases{/id}","created_at":"2015-01-01T15:15:40Z","updated_at":"2015-01-01T15:17:02Z","pushed_at":"2015-01-01T15:17:01Z","git_url":"git://github.com/robbiehinch/tvm.git","ssh_url":"git@github.com:robbiehinch/tvm.git","clone_url":"https://github.com/robbiehinch/tvm.git","svn_url":"https://github.com/robbiehinch/tvm","homepage":"http://watilde.github.io/tvm","size":1117,"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":"watilde:master","ref":"master","sha":"696f11678fca7cbd5539e2bf73bc005befd4341c","user":{"login":"watilde","id":1716463,"avatar_url":"https://avatars.githubusercontent.com/u/1716463?v=3","gravatar_id":"","url":"https://api.github.com/users/watilde","html_url":"https://github.com/watilde","followers_url":"https://api.github.com/users/watilde/followers","following_url":"https://api.github.com/users/watilde/following{/other_user}","gists_url":"https://api.github.com/users/watilde/gists{/gist_id}","starred_url":"https://api.github.com/users/watilde/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/watilde/subscriptions","organizations_url":"https://api.github.com/users/watilde/orgs","repos_url":"https://api.github.com/users/watilde/repos","events_url":"https://api.github.com/users/watilde/events{/privacy}","received_events_url":"https://api.github.com/users/watilde/received_events","type":"User","site_admin":false},"repo":{"id":11255997,"name":"tvm","full_name":"watilde/tvm","owner":{"login":"watilde","id":1716463,"avatar_url":"https://avatars.githubusercontent.com/u/1716463?v=3","gravatar_id":"","url":"https://api.github.com/users/watilde","html_url":"https://github.com/watilde","followers_url":"https://api.github.com/users/watilde/followers","following_url":"https://api.github.com/users/watilde/following{/other_user}","gists_url":"https://api.github.com/users/watilde/gists{/gist_id}","starred_url":"https://api.github.com/users/watilde/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/watilde/subscriptions","organizations_url":"https://api.github.com/users/watilde/orgs","repos_url":"https://api.github.com/users/watilde/repos","events_url":"https://api.github.com/users/watilde/events{/privacy}","received_events_url":"https://api.github.com/users/watilde/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/watilde/tvm","description":"TypeScript Version Manager","fork":false,"url":"https://api.github.com/repos/watilde/tvm","forks_url":"https://api.github.com/repos/watilde/tvm/forks","keys_url":"https://api.github.com/repos/watilde/tvm/keys{/key_id}","collaborators_url":"https://api.github.com/repos/watilde/tvm/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/watilde/tvm/teams","hooks_url":"https://api.github.com/repos/watilde/tvm/hooks","issue_events_url":"https://api.github.com/repos/watilde/tvm/issues/events{/number}","events_url":"https://api.github.com/repos/watilde/tvm/events","assignees_url":"https://api.github.com/repos/watilde/tvm/assignees{/user}","branches_url":"https://api.github.com/repos/watilde/tvm/branches{/branch}","tags_url":"https://api.github.com/repos/watilde/tvm/tags","blobs_url":"https://api.github.com/repos/watilde/tvm/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/watilde/tvm/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/watilde/tvm/git/refs{/sha}","trees_url":"https://api.github.com/repos/watilde/tvm/git/trees{/sha}","statuses_url":"https://api.github.com/repos/watilde/tvm/statuses/{sha}","languages_url":"https://api.github.com/repos/watilde/tvm/languages","stargazers_url":"https://api.github.com/repos/watilde/tvm/stargazers","contributors_url":"https://api.github.com/repos/watilde/tvm/contributors","subscribers_url":"https://api.github.com/repos/watilde/tvm/subscribers","subscription_url":"https://api.github.com/repos/watilde/tvm/subscription","commits_url":"https://api.github.com/repos/watilde/tvm/commits{/sha}","git_commits_url":"https://api.github.com/repos/watilde/tvm/git/commits{/sha}","comments_url":"https://api.github.com/repos/watilde/tvm/comments{/number}","issue_comment_url":"https://api.github.com/repos/watilde/tvm/issues/comments/{number}","contents_url":"https://api.github.com/repos/watilde/tvm/contents/{+path}","compare_url":"https://api.github.com/repos/watilde/tvm/compare/{base}...{head}","merges_url":"https://api.github.com/repos/watilde/tvm/merges","archive_url":"https://api.github.com/repos/watilde/tvm/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/watilde/tvm/downloads","issues_url":"https://api.github.com/repos/watilde/tvm/issues{/number}","pulls_url":"https://api.github.com/repos/watilde/tvm/pulls{/number}","milestones_url":"https://api.github.com/repos/watilde/tvm/milestones{/number}","notifications_url":"https://api.github.com/repos/watilde/tvm/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/watilde/tvm/labels{/name}","releases_url":"https://api.github.com/repos/watilde/tvm/releases{/id}","created_at":"2013-07-08T14:15:36Z","updated_at":"2014-12-16T10:18:58Z","pushed_at":"2014-12-16T08:16:19Z","git_url":"git://github.com/watilde/tvm.git","ssh_url":"git@github.com:watilde/tvm.git","clone_url":"https://github.com/watilde/tvm.git","svn_url":"https://github.com/watilde/tvm","homepage":"http://watilde.github.io/tvm","size":1117,"stargazers_count":15,"watchers_count":15,"language":"JavaScript","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":2,"mirror_url":null,"open_issues_count":2,"forks":2,"open_issues":2,"watchers":15,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/watilde/tvm/pulls/30"},"html":{"href":"https://github.com/watilde/tvm/pull/30"},"issue":{"href":"https://api.github.com/repos/watilde/tvm/issues/30"},"comments":{"href":"https://api.github.com/repos/watilde/tvm/issues/30/comments"},"review_comments":{"href":"https://api.github.com/repos/watilde/tvm/pulls/30/comments"},"review_comment":{"href":"https://api.github.com/repos/watilde/tvm/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/watilde/tvm/pulls/30/commits"},"statuses":{"href":"https://api.github.com/repos/watilde/tvm/statuses/bc70c98a71c6dc47da726771e0a9125eea122abc"}},"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:19:17Z"} +,{"id":"2489659953","type":"PushEvent","actor":{"id":7352092,"login":"tenant","gravatar_id":"","url":"https://api.github.com/users/tenant","avatar_url":"https://avatars.githubusercontent.com/u/7352092?"},"repo":{"id":27868871,"name":"tenant/MIXSDN-network-measure","url":"https://api.github.com/repos/tenant/MIXSDN-network-measure"},"payload":{"push_id":536867983,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6b55cbd8f4fb4fd15e7c5b1bfdaf0ee82243e6b0","before":"7ffbe2c9c54adb240ec0dad1b9ee8f3b527ea039","commits":[{"sha":"6b55cbd8f4fb4fd15e7c5b1bfdaf0ee82243e6b0","author":{"email":"df3a6241ec6e0c49f01310c4a7ca919e82e08f31@qq.com","name":"tenant"},"message":"2015年 01月 01日 星期四 23:11:06 CST","distinct":true,"url":"https://api.github.com/repos/tenant/MIXSDN-network-measure/commits/6b55cbd8f4fb4fd15e7c5b1bfdaf0ee82243e6b0"}]},"public":true,"created_at":"2015-01-01T15:19:17Z"} +,{"id":"2489659957","type":"PullRequestEvent","actor":{"id":855464,"login":"AlexanderDzhoganov","gravatar_id":"","url":"https://api.github.com/users/AlexanderDzhoganov","avatar_url":"https://avatars.githubusercontent.com/u/855464?"},"repo":{"id":26194951,"name":"KSP-CKAN/NetKAN","url":"https://api.github.com/repos/KSP-CKAN/NetKAN"},"payload":{"action":"closed","number":406,"pull_request":{"url":"https://api.github.com/repos/KSP-CKAN/NetKAN/pulls/406","id":26743557,"html_url":"https://github.com/KSP-CKAN/NetKAN/pull/406","diff_url":"https://github.com/KSP-CKAN/NetKAN/pull/406.diff","patch_url":"https://github.com/KSP-CKAN/NetKAN/pull/406.patch","issue_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/issues/406","number":406,"state":"closed","locked":false,"title":"Added Homepages for three mods","user":{"login":"Eddlm","id":7364336,"avatar_url":"https://avatars.githubusercontent.com/u/7364336?v=3","gravatar_id":"","url":"https://api.github.com/users/Eddlm","html_url":"https://github.com/Eddlm","followers_url":"https://api.github.com/users/Eddlm/followers","following_url":"https://api.github.com/users/Eddlm/following{/other_user}","gists_url":"https://api.github.com/users/Eddlm/gists{/gist_id}","starred_url":"https://api.github.com/users/Eddlm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Eddlm/subscriptions","organizations_url":"https://api.github.com/users/Eddlm/orgs","repos_url":"https://api.github.com/users/Eddlm/repos","events_url":"https://api.github.com/users/Eddlm/events{/privacy}","received_events_url":"https://api.github.com/users/Eddlm/received_events","type":"User","site_admin":false},"body":"Added Homepages for AMEG, AlcubierreStandalone and AVeryKerbalChristmas","created_at":"2015-01-01T14:32:50Z","updated_at":"2015-01-01T15:19:17Z","closed_at":"2015-01-01T15:19:17Z","merged_at":"2015-01-01T15:19:17Z","merge_commit_sha":"b4645a6678d2603926e2fabf57149658ff2d8175","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/pulls/406/commits","review_comments_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/pulls/406/comments","review_comment_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/pulls/comments/{number}","comments_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/issues/406/comments","statuses_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/statuses/0ddf3e95ddd607507445bce76b1bb571f145d69a","head":{"label":"Eddlm:master","ref":"master","sha":"0ddf3e95ddd607507445bce76b1bb571f145d69a","user":{"login":"Eddlm","id":7364336,"avatar_url":"https://avatars.githubusercontent.com/u/7364336?v=3","gravatar_id":"","url":"https://api.github.com/users/Eddlm","html_url":"https://github.com/Eddlm","followers_url":"https://api.github.com/users/Eddlm/followers","following_url":"https://api.github.com/users/Eddlm/following{/other_user}","gists_url":"https://api.github.com/users/Eddlm/gists{/gist_id}","starred_url":"https://api.github.com/users/Eddlm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Eddlm/subscriptions","organizations_url":"https://api.github.com/users/Eddlm/orgs","repos_url":"https://api.github.com/users/Eddlm/repos","events_url":"https://api.github.com/users/Eddlm/events{/privacy}","received_events_url":"https://api.github.com/users/Eddlm/received_events","type":"User","site_admin":false},"repo":{"id":28688106,"name":"NetKAN","full_name":"Eddlm/NetKAN","owner":{"login":"Eddlm","id":7364336,"avatar_url":"https://avatars.githubusercontent.com/u/7364336?v=3","gravatar_id":"","url":"https://api.github.com/users/Eddlm","html_url":"https://github.com/Eddlm","followers_url":"https://api.github.com/users/Eddlm/followers","following_url":"https://api.github.com/users/Eddlm/following{/other_user}","gists_url":"https://api.github.com/users/Eddlm/gists{/gist_id}","starred_url":"https://api.github.com/users/Eddlm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Eddlm/subscriptions","organizations_url":"https://api.github.com/users/Eddlm/orgs","repos_url":"https://api.github.com/users/Eddlm/repos","events_url":"https://api.github.com/users/Eddlm/events{/privacy}","received_events_url":"https://api.github.com/users/Eddlm/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Eddlm/NetKAN","description":"Metadata files used by the NetKAN/CKAN indexer","fork":true,"url":"https://api.github.com/repos/Eddlm/NetKAN","forks_url":"https://api.github.com/repos/Eddlm/NetKAN/forks","keys_url":"https://api.github.com/repos/Eddlm/NetKAN/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Eddlm/NetKAN/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Eddlm/NetKAN/teams","hooks_url":"https://api.github.com/repos/Eddlm/NetKAN/hooks","issue_events_url":"https://api.github.com/repos/Eddlm/NetKAN/issues/events{/number}","events_url":"https://api.github.com/repos/Eddlm/NetKAN/events","assignees_url":"https://api.github.com/repos/Eddlm/NetKAN/assignees{/user}","branches_url":"https://api.github.com/repos/Eddlm/NetKAN/branches{/branch}","tags_url":"https://api.github.com/repos/Eddlm/NetKAN/tags","blobs_url":"https://api.github.com/repos/Eddlm/NetKAN/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Eddlm/NetKAN/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Eddlm/NetKAN/git/refs{/sha}","trees_url":"https://api.github.com/repos/Eddlm/NetKAN/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Eddlm/NetKAN/statuses/{sha}","languages_url":"https://api.github.com/repos/Eddlm/NetKAN/languages","stargazers_url":"https://api.github.com/repos/Eddlm/NetKAN/stargazers","contributors_url":"https://api.github.com/repos/Eddlm/NetKAN/contributors","subscribers_url":"https://api.github.com/repos/Eddlm/NetKAN/subscribers","subscription_url":"https://api.github.com/repos/Eddlm/NetKAN/subscription","commits_url":"https://api.github.com/repos/Eddlm/NetKAN/commits{/sha}","git_commits_url":"https://api.github.com/repos/Eddlm/NetKAN/git/commits{/sha}","comments_url":"https://api.github.com/repos/Eddlm/NetKAN/comments{/number}","issue_comment_url":"https://api.github.com/repos/Eddlm/NetKAN/issues/comments/{number}","contents_url":"https://api.github.com/repos/Eddlm/NetKAN/contents/{+path}","compare_url":"https://api.github.com/repos/Eddlm/NetKAN/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Eddlm/NetKAN/merges","archive_url":"https://api.github.com/repos/Eddlm/NetKAN/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Eddlm/NetKAN/downloads","issues_url":"https://api.github.com/repos/Eddlm/NetKAN/issues{/number}","pulls_url":"https://api.github.com/repos/Eddlm/NetKAN/pulls{/number}","milestones_url":"https://api.github.com/repos/Eddlm/NetKAN/milestones{/number}","notifications_url":"https://api.github.com/repos/Eddlm/NetKAN/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Eddlm/NetKAN/labels{/name}","releases_url":"https://api.github.com/repos/Eddlm/NetKAN/releases{/id}","created_at":"2015-01-01T14:29:16Z","updated_at":"2015-01-01T15:11:24Z","pushed_at":"2015-01-01T15:11:24Z","git_url":"git://github.com/Eddlm/NetKAN.git","ssh_url":"git@github.com:Eddlm/NetKAN.git","clone_url":"https://github.com/Eddlm/NetKAN.git","svn_url":"https://github.com/Eddlm/NetKAN","homepage":null,"size":5185,"stargazers_count":0,"watchers_count":0,"language":"Perl","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":"KSP-CKAN:master","ref":"master","sha":"5221106a54ed58c170b5eb26b24e697d37a66b51","user":{"login":"KSP-CKAN","id":9023970,"avatar_url":"https://avatars.githubusercontent.com/u/9023970?v=3","gravatar_id":"","url":"https://api.github.com/users/KSP-CKAN","html_url":"https://github.com/KSP-CKAN","followers_url":"https://api.github.com/users/KSP-CKAN/followers","following_url":"https://api.github.com/users/KSP-CKAN/following{/other_user}","gists_url":"https://api.github.com/users/KSP-CKAN/gists{/gist_id}","starred_url":"https://api.github.com/users/KSP-CKAN/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/KSP-CKAN/subscriptions","organizations_url":"https://api.github.com/users/KSP-CKAN/orgs","repos_url":"https://api.github.com/users/KSP-CKAN/repos","events_url":"https://api.github.com/users/KSP-CKAN/events{/privacy}","received_events_url":"https://api.github.com/users/KSP-CKAN/received_events","type":"Organization","site_admin":false},"repo":{"id":26194951,"name":"NetKAN","full_name":"KSP-CKAN/NetKAN","owner":{"login":"KSP-CKAN","id":9023970,"avatar_url":"https://avatars.githubusercontent.com/u/9023970?v=3","gravatar_id":"","url":"https://api.github.com/users/KSP-CKAN","html_url":"https://github.com/KSP-CKAN","followers_url":"https://api.github.com/users/KSP-CKAN/followers","following_url":"https://api.github.com/users/KSP-CKAN/following{/other_user}","gists_url":"https://api.github.com/users/KSP-CKAN/gists{/gist_id}","starred_url":"https://api.github.com/users/KSP-CKAN/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/KSP-CKAN/subscriptions","organizations_url":"https://api.github.com/users/KSP-CKAN/orgs","repos_url":"https://api.github.com/users/KSP-CKAN/repos","events_url":"https://api.github.com/users/KSP-CKAN/events{/privacy}","received_events_url":"https://api.github.com/users/KSP-CKAN/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/KSP-CKAN/NetKAN","description":"Metadata files used by the NetKAN/CKAN indexer","fork":false,"url":"https://api.github.com/repos/KSP-CKAN/NetKAN","forks_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/forks","keys_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/keys{/key_id}","collaborators_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/teams","hooks_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/hooks","issue_events_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/issues/events{/number}","events_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/events","assignees_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/assignees{/user}","branches_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/branches{/branch}","tags_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/tags","blobs_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/git/refs{/sha}","trees_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/git/trees{/sha}","statuses_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/statuses/{sha}","languages_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/languages","stargazers_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/stargazers","contributors_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/contributors","subscribers_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/subscribers","subscription_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/subscription","commits_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/commits{/sha}","git_commits_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/git/commits{/sha}","comments_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/comments{/number}","issue_comment_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/issues/comments/{number}","contents_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/contents/{+path}","compare_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/compare/{base}...{head}","merges_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/merges","archive_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/downloads","issues_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/issues{/number}","pulls_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/pulls{/number}","milestones_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/milestones{/number}","notifications_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/labels{/name}","releases_url":"https://api.github.com/repos/KSP-CKAN/NetKAN/releases{/id}","created_at":"2014-11-05T00:14:13Z","updated_at":"2015-01-01T14:23:21Z","pushed_at":"2015-01-01T15:19:17Z","git_url":"git://github.com/KSP-CKAN/NetKAN.git","ssh_url":"git@github.com:KSP-CKAN/NetKAN.git","clone_url":"https://github.com/KSP-CKAN/NetKAN.git","svn_url":"https://github.com/KSP-CKAN/NetKAN","homepage":null,"size":5185,"stargazers_count":6,"watchers_count":6,"language":"Perl","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":60,"mirror_url":null,"open_issues_count":7,"forks":60,"open_issues":7,"watchers":6,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/KSP-CKAN/NetKAN/pulls/406"},"html":{"href":"https://github.com/KSP-CKAN/NetKAN/pull/406"},"issue":{"href":"https://api.github.com/repos/KSP-CKAN/NetKAN/issues/406"},"comments":{"href":"https://api.github.com/repos/KSP-CKAN/NetKAN/issues/406/comments"},"review_comments":{"href":"https://api.github.com/repos/KSP-CKAN/NetKAN/pulls/406/comments"},"review_comment":{"href":"https://api.github.com/repos/KSP-CKAN/NetKAN/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/KSP-CKAN/NetKAN/pulls/406/commits"},"statuses":{"href":"https://api.github.com/repos/KSP-CKAN/NetKAN/statuses/0ddf3e95ddd607507445bce76b1bb571f145d69a"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"AlexanderDzhoganov","id":855464,"avatar_url":"https://avatars.githubusercontent.com/u/855464?v=3","gravatar_id":"","url":"https://api.github.com/users/AlexanderDzhoganov","html_url":"https://github.com/AlexanderDzhoganov","followers_url":"https://api.github.com/users/AlexanderDzhoganov/followers","following_url":"https://api.github.com/users/AlexanderDzhoganov/following{/other_user}","gists_url":"https://api.github.com/users/AlexanderDzhoganov/gists{/gist_id}","starred_url":"https://api.github.com/users/AlexanderDzhoganov/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AlexanderDzhoganov/subscriptions","organizations_url":"https://api.github.com/users/AlexanderDzhoganov/orgs","repos_url":"https://api.github.com/users/AlexanderDzhoganov/repos","events_url":"https://api.github.com/users/AlexanderDzhoganov/events{/privacy}","received_events_url":"https://api.github.com/users/AlexanderDzhoganov/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":3,"additions":11,"deletions":1,"changed_files":3}},"public":true,"created_at":"2015-01-01T15:19:17Z","org":{"id":9023970,"login":"KSP-CKAN","gravatar_id":"","url":"https://api.github.com/orgs/KSP-CKAN","avatar_url":"https://avatars.githubusercontent.com/u/9023970?"}} +,{"id":"2489659958","type":"PushEvent","actor":{"id":4925744,"login":"Slayer95","gravatar_id":"","url":"https://api.github.com/users/Slayer95","avatar_url":"https://avatars.githubusercontent.com/u/4925744?"},"repo":{"id":3038446,"name":"Zarel/Pokemon-Showdown","url":"https://api.github.com/repos/Zarel/Pokemon-Showdown"},"payload":{"push_id":536867985,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e42ce443af1157eecad06b77f97b3495cfbcfef5","before":"e9d4cf36c00d3d9392a749afa5337d1c9fc94b6b","commits":[{"sha":"e42ce443af1157eecad06b77f97b3495cfbcfef5","author":{"email":"59a732d724729da922f7bef4eac8e9287ada5e87@hotmail.com","name":"Ivo Julca"},"message":"Fix a crash in lobby-less servers\nObject # has no method ´sendPopup´","distinct":true,"url":"https://api.github.com/repos/Zarel/Pokemon-Showdown/commits/e42ce443af1157eecad06b77f97b3495cfbcfef5"}]},"public":true,"created_at":"2015-01-01T15:19:17Z"} +,{"id":"2489659962","type":"PushEvent","actor":{"id":855464,"login":"AlexanderDzhoganov","gravatar_id":"","url":"https://api.github.com/users/AlexanderDzhoganov","avatar_url":"https://avatars.githubusercontent.com/u/855464?"},"repo":{"id":26194951,"name":"KSP-CKAN/NetKAN","url":"https://api.github.com/repos/KSP-CKAN/NetKAN"},"payload":{"push_id":536867988,"size":4,"distinct_size":4,"ref":"refs/heads/master","head":"cdad424815ab533797abc18af2a96f662028fbf1","before":"5221106a54ed58c170b5eb26b24e697d37a66b51","commits":[{"sha":"34984a64c467a8c70d735bdc46a4830ed16f8ccb","author":{"email":"ecfda1d48e2ad9a741037858a27f55da1844f1fb@gmail.com","name":"Eddlm"},"message":"Added Homepages fo three mods\n\nAMEG, AlcubierreStandalone and AVeryKerbalChristmas","distinct":true,"url":"https://api.github.com/repos/KSP-CKAN/NetKAN/commits/34984a64c467a8c70d735bdc46a4830ed16f8ccb"},{"sha":"e337d4ff411bc2318b55cb5eac2c395aa5107a01","author":{"email":"ecfda1d48e2ad9a741037858a27f55da1844f1fb@gmail.com","name":"Eddlm"},"message":"removed \"kerbalstuff\" resource","distinct":true,"url":"https://api.github.com/repos/KSP-CKAN/NetKAN/commits/e337d4ff411bc2318b55cb5eac2c395aa5107a01"},{"sha":"0ddf3e95ddd607507445bce76b1bb571f145d69a","author":{"email":"ecfda1d48e2ad9a741037858a27f55da1844f1fb@gmail.com","name":"Eddlm"},"message":"removed additional commas","distinct":true,"url":"https://api.github.com/repos/KSP-CKAN/NetKAN/commits/0ddf3e95ddd607507445bce76b1bb571f145d69a"},{"sha":"cdad424815ab533797abc18af2a96f662028fbf1","author":{"email":"f5d9ee28303fd5366a5463d0998e8baa1d046513@gmail.com","name":"Alexander Dzhoganov"},"message":"Merge pull request #406 from Eddlm/master\n\nAdded Homepages for three mods","distinct":true,"url":"https://api.github.com/repos/KSP-CKAN/NetKAN/commits/cdad424815ab533797abc18af2a96f662028fbf1"}]},"public":true,"created_at":"2015-01-01T15:19:17Z","org":{"id":9023970,"login":"KSP-CKAN","gravatar_id":"","url":"https://api.github.com/orgs/KSP-CKAN","avatar_url":"https://avatars.githubusercontent.com/u/9023970?"}} +,{"id":"2489659963","type":"PushEvent","actor":{"id":6859848,"login":"sunpengsdu","gravatar_id":"","url":"https://api.github.com/users/sunpengsdu","avatar_url":"https://avatars.githubusercontent.com/u/6859848?"},"repo":{"id":28678843,"name":"sunpengsdu/Typhoon","url":"https://api.github.com/repos/sunpengsdu/Typhoon"},"payload":{"push_id":536867989,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f4b80cb96063934b580f8b3de638f438bac561fd","before":"ced5a2cec74ac14c06276423f2b575486ca45f5b","commits":[{"sha":"f4b80cb96063934b580f8b3de638f438bac561fd","author":{"email":"9055365dd0ae9d5e325cb2fb9a7ae6b109436aab@gmail.com","name":"sunpengsdu"},"message":"add config","distinct":true,"url":"https://api.github.com/repos/sunpengsdu/Typhoon/commits/f4b80cb96063934b580f8b3de638f438bac561fd"}]},"public":true,"created_at":"2015-01-01T15:19:18Z"} +,{"id":"2489659964","type":"PushEvent","actor":{"id":10044304,"login":"ranlempow","gravatar_id":"","url":"https://api.github.com/users/ranlempow","avatar_url":"https://avatars.githubusercontent.com/u/10044304?"},"repo":{"id":28515215,"name":"ranlempow/mkdocs","url":"https://api.github.com/repos/ranlempow/mkdocs"},"payload":{"push_id":536867990,"size":1,"distinct_size":1,"ref":"refs/heads/twdoc","head":"488d90810aff870bd5d9ae48c854e8ae58d7911a","before":"75c349075c6f6fe865b031d7279c5a8e3c14a79e","commits":[{"sha":"488d90810aff870bd5d9ae48c854e8ae58d7911a","author":{"email":"7b89ba418a7f3245415fe1e8f180a62abe37818f@hotmail.com","name":"ranlempow"},"message":"add otf","distinct":true,"url":"https://api.github.com/repos/ranlempow/mkdocs/commits/488d90810aff870bd5d9ae48c854e8ae58d7911a"}]},"public":true,"created_at":"2015-01-01T15:19:18Z"} +,{"id":"2489659970","type":"IssueCommentEvent","actor":{"id":43438,"login":"timoxley","gravatar_id":"","url":"https://api.github.com/users/timoxley","avatar_url":"https://avatars.githubusercontent.com/u/43438?"},"repo":{"id":24239561,"name":"timoxley/linklocal","url":"https://api.github.com/repos/timoxley/linklocal"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/timoxley/linklocal/issues/14","labels_url":"https://api.github.com/repos/timoxley/linklocal/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/timoxley/linklocal/issues/14/comments","events_url":"https://api.github.com/repos/timoxley/linklocal/issues/14/events","html_url":"https://github.com/timoxley/linklocal/issues/14","id":53221277,"number":14,"title":"strategies for installing dependencies of local dependencies","user":{"login":"timoxley","id":43438,"avatar_url":"https://avatars.githubusercontent.com/u/43438?v=3","gravatar_id":"","url":"https://api.github.com/users/timoxley","html_url":"https://github.com/timoxley","followers_url":"https://api.github.com/users/timoxley/followers","following_url":"https://api.github.com/users/timoxley/following{/other_user}","gists_url":"https://api.github.com/users/timoxley/gists{/gist_id}","starred_url":"https://api.github.com/users/timoxley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timoxley/subscriptions","organizations_url":"https://api.github.com/users/timoxley/orgs","repos_url":"https://api.github.com/users/timoxley/repos","events_url":"https://api.github.com/users/timoxley/events{/privacy}","received_events_url":"https://api.github.com/users/timoxley/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2015-01-01T14:57:32Z","updated_at":"2015-01-01T15:19:18Z","closed_at":null,"body":"## Scenario\r\n* `parent-pkg` has local dependency: `file: ./local-pkg`.\r\n* `npm install` in `parent-pkg`.\r\n* `./local-pkg` is copied and installed into `parent_package/node_modules, along with the dependencies of `local-pkg`.\r\n* post-install, run `linklocal`.\r\n* `node_modules/local-pkg` is now replaced with a relative symlink to `../local-pkg`. Dependencies of `local-pkg` are not installed.\r\n* Use `linklocal list` to produce a list of all local dependencies, which we then pass to something like `xargs`, `find -exec` or [bulk](https://github.com/timoxley/bulk) to run `npm install --production` for us: `linklocal list | bulk -c \"npm install --production\"`.\r\n* Local dependencies have now got their dependencies installed.\r\n\r\n## Issues\r\n1. Dependencies of local dependencies were installed twice. First when the local dependencies were installed with the regular `npm install`, second during the bulk `npm install` in the local dependencies. This can lead to considerable increases in install time if you depend on anything that requires building.\r\n2. No deduplication occurs between local dependencies. If two local packages depend on the same thing, it will be installed twice.\r\n\r\n## Some Improvements\r\n\r\n### Don't hit remote registry\r\nDisable accessing the remote registry with `npm install --cache-min=Infinity` for the bulk install. You've already just installed everything you need so there's a good chance everything is already in the cache. This prevents overhead of hitting npm servers over and over for every local dependency. Doesn't solve rebuilding over and over again though.\r\n\r\n## Don't install local dependencies then symlink them away\r\nTo avoid the initial install of everything before symlinking it all away, I've been doing `linklocal` in the preinstall script. Of course this requires linklocal and bulk to be installed before starting, so my preinstall (Makefile) looks something like:\r\n\r\n```\r\npreinstall:\r\n npm install linklocal bulk # this unfortunately ignores the version specified in package.json\r\n linklocal link -r\r\n linklocal list -r --unique | bulk -c \"npm install --cache-min=Infinity\"\r\n```\r\n\r\nbut what's really killing install time is rebuilding dependencies over and over due to lack of deduplication.\r\n\r\ncc @hughsk @yoshuawuyts any ideas on what we can do to improve this?"},"comment":{"url":"https://api.github.com/repos/timoxley/linklocal/issues/comments/68488911","html_url":"https://github.com/timoxley/linklocal/issues/14#issuecomment-68488911","issue_url":"https://api.github.com/repos/timoxley/linklocal/issues/14","id":68488911,"user":{"login":"timoxley","id":43438,"avatar_url":"https://avatars.githubusercontent.com/u/43438?v=3","gravatar_id":"","url":"https://api.github.com/users/timoxley","html_url":"https://github.com/timoxley","followers_url":"https://api.github.com/users/timoxley/followers","following_url":"https://api.github.com/users/timoxley/following{/other_user}","gists_url":"https://api.github.com/users/timoxley/gists{/gist_id}","starred_url":"https://api.github.com/users/timoxley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timoxley/subscriptions","organizations_url":"https://api.github.com/users/timoxley/orgs","repos_url":"https://api.github.com/users/timoxley/repos","events_url":"https://api.github.com/users/timoxley/events{/privacy}","received_events_url":"https://api.github.com/users/timoxley/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:19:18Z","updated_at":"2015-01-01T15:19:18Z","body":"also could wait for @iarna's multi-stage install to land and see if it fixes things but I'm not even sure it's going to solve any of these issues, plus no guarantees when it will happen."}},"public":true,"created_at":"2015-01-01T15:19:18Z"} +,{"id":"2489659971","type":"PushEvent","actor":{"id":5609565,"login":"knupfer","gravatar_id":"","url":"https://api.github.com/users/knupfer","avatar_url":"https://avatars.githubusercontent.com/u/5609565?"},"repo":{"id":27609372,"name":"knupfer/haskell-emacs","url":"https://api.github.com/repos/knupfer/haskell-emacs"},"payload":{"push_id":536867992,"size":5,"distinct_size":5,"ref":"refs/heads/master","head":"57bf7410c4dcdca7ba95c7075f13463fbbcbcbfe","before":"fd26dc356e35134b0a50f3e593bf719c32ff0966","commits":[{"sha":"4653ed4d2f6b10c264cc4a33eb7f1cb90c950560","author":{"email":"eb6762c97a91f8105900af0386437cdc24433e6a@gmail.com","name":"knupfer"},"message":"don't use format in filter function","distinct":true,"url":"https://api.github.com/repos/knupfer/haskell-emacs/commits/4653ed4d2f6b10c264cc4a33eb7f1cb90c950560"},{"sha":"00969fefe48f9d8a28d4a6fa08d5fb2b9139f449","author":{"email":"eb6762c97a91f8105900af0386437cdc24433e6a@gmail.com","name":"knupfer"},"message":"make filter function faster","distinct":true,"url":"https://api.github.com/repos/knupfer/haskell-emacs/commits/00969fefe48f9d8a28d4a6fa08d5fb2b9139f449"},{"sha":"be032d1d3f103c99312c4e59d43383bbe34566ce","author":{"email":"eb6762c97a91f8105900af0386437cdc24433e6a@gmail.com","name":"knupfer"},"message":"fix naming","distinct":true,"url":"https://api.github.com/repos/knupfer/haskell-emacs/commits/be032d1d3f103c99312c4e59d43383bbe34566ce"},{"sha":"ffc3bf99abea61daed6ea42623ed7be53ffebeb8","author":{"email":"eb6762c97a91f8105900af0386437cdc24433e6a@gmail.com","name":"knupfer"},"message":"small clean up","distinct":true,"url":"https://api.github.com/repos/knupfer/haskell-emacs/commits/ffc3bf99abea61daed6ea42623ed7be53ffebeb8"},{"sha":"57bf7410c4dcdca7ba95c7075f13463fbbcbcbfe","author":{"email":"eb6762c97a91f8105900af0386437cdc24433e6a@gmail.com","name":"knupfer"},"message":"reflect better performance of filter","distinct":true,"url":"https://api.github.com/repos/knupfer/haskell-emacs/commits/57bf7410c4dcdca7ba95c7075f13463fbbcbcbfe"}]},"public":true,"created_at":"2015-01-01T15:19:18Z"} +,{"id":"2489659978","type":"WatchEvent","actor":{"id":3740387,"login":"firevenus","gravatar_id":"","url":"https://api.github.com/users/firevenus","avatar_url":"https://avatars.githubusercontent.com/u/3740387?"},"repo":{"id":1721145,"name":"cm7sgt/android_device_samsung_galaxytab","url":"https://api.github.com/repos/cm7sgt/android_device_samsung_galaxytab"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:19:19Z"} +,{"id":"2489659984","type":"IssueCommentEvent","actor":{"id":2484055,"login":"ideocl4st","gravatar_id":"","url":"https://api.github.com/users/ideocl4st","avatar_url":"https://avatars.githubusercontent.com/u/2484055?"},"repo":{"id":2907031,"name":"Cockatrice/Cockatrice","url":"https://api.github.com/repos/Cockatrice/Cockatrice"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/Cockatrice/Cockatrice/issues/518","labels_url":"https://api.github.com/repos/Cockatrice/Cockatrice/issues/518/labels{/name}","comments_url":"https://api.github.com/repos/Cockatrice/Cockatrice/issues/518/comments","events_url":"https://api.github.com/repos/Cockatrice/Cockatrice/issues/518/events","html_url":"https://github.com/Cockatrice/Cockatrice/pull/518","id":53220296,"number":518,"title":"Added Korean Translation","user":{"login":"ideocl4st","id":2484055,"avatar_url":"https://avatars.githubusercontent.com/u/2484055?v=3","gravatar_id":"","url":"https://api.github.com/users/ideocl4st","html_url":"https://github.com/ideocl4st","followers_url":"https://api.github.com/users/ideocl4st/followers","following_url":"https://api.github.com/users/ideocl4st/following{/other_user}","gists_url":"https://api.github.com/users/ideocl4st/gists{/gist_id}","starred_url":"https://api.github.com/users/ideocl4st/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ideocl4st/subscriptions","organizations_url":"https://api.github.com/users/ideocl4st/orgs","repos_url":"https://api.github.com/users/ideocl4st/repos","events_url":"https://api.github.com/users/ideocl4st/events{/privacy}","received_events_url":"https://api.github.com/users/ideocl4st/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":6,"created_at":"2015-01-01T14:03:55Z","updated_at":"2015-01-01T15:19:20Z","closed_at":"2015-01-01T15:19:20Z","pull_request":{"url":"https://api.github.com/repos/Cockatrice/Cockatrice/pulls/518","html_url":"https://github.com/Cockatrice/Cockatrice/pull/518","diff_url":"https://github.com/Cockatrice/Cockatrice/pull/518.diff","patch_url":"https://github.com/Cockatrice/Cockatrice/pull/518.patch"},"body":"As stated on https://github.com/Cockatrice/Cockatrice/issues/497, I finished translating Cockatrice into Korean.\r\nAlso, I added my name on \"About Cockarice\" dialog in window_main.cpp."},"comment":{"url":"https://api.github.com/repos/Cockatrice/Cockatrice/issues/comments/68488913","html_url":"https://github.com/Cockatrice/Cockatrice/pull/518#issuecomment-68488913","issue_url":"https://api.github.com/repos/Cockatrice/Cockatrice/issues/518","id":68488913,"user":{"login":"ideocl4st","id":2484055,"avatar_url":"https://avatars.githubusercontent.com/u/2484055?v=3","gravatar_id":"","url":"https://api.github.com/users/ideocl4st","html_url":"https://github.com/ideocl4st","followers_url":"https://api.github.com/users/ideocl4st/followers","following_url":"https://api.github.com/users/ideocl4st/following{/other_user}","gists_url":"https://api.github.com/users/ideocl4st/gists{/gist_id}","starred_url":"https://api.github.com/users/ideocl4st/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ideocl4st/subscriptions","organizations_url":"https://api.github.com/users/ideocl4st/orgs","repos_url":"https://api.github.com/users/ideocl4st/repos","events_url":"https://api.github.com/users/ideocl4st/events{/privacy}","received_events_url":"https://api.github.com/users/ideocl4st/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:19:20Z","updated_at":"2015-01-01T15:19:20Z","body":"@Daenyth He is currently going through the translation file. How would he need to vouch for my translation after he is done editing?"}},"public":true,"created_at":"2015-01-01T15:19:20Z","org":{"id":9746249,"login":"Cockatrice","gravatar_id":"","url":"https://api.github.com/orgs/Cockatrice","avatar_url":"https://avatars.githubusercontent.com/u/9746249?"}} +,{"id":"2489659985","type":"PullRequestEvent","actor":{"id":2484055,"login":"ideocl4st","gravatar_id":"","url":"https://api.github.com/users/ideocl4st","avatar_url":"https://avatars.githubusercontent.com/u/2484055?"},"repo":{"id":2907031,"name":"Cockatrice/Cockatrice","url":"https://api.github.com/repos/Cockatrice/Cockatrice"},"payload":{"action":"closed","number":518,"pull_request":{"url":"https://api.github.com/repos/Cockatrice/Cockatrice/pulls/518","id":26743344,"html_url":"https://github.com/Cockatrice/Cockatrice/pull/518","diff_url":"https://github.com/Cockatrice/Cockatrice/pull/518.diff","patch_url":"https://github.com/Cockatrice/Cockatrice/pull/518.patch","issue_url":"https://api.github.com/repos/Cockatrice/Cockatrice/issues/518","number":518,"state":"closed","locked":false,"title":"Added Korean Translation","user":{"login":"ideocl4st","id":2484055,"avatar_url":"https://avatars.githubusercontent.com/u/2484055?v=3","gravatar_id":"","url":"https://api.github.com/users/ideocl4st","html_url":"https://github.com/ideocl4st","followers_url":"https://api.github.com/users/ideocl4st/followers","following_url":"https://api.github.com/users/ideocl4st/following{/other_user}","gists_url":"https://api.github.com/users/ideocl4st/gists{/gist_id}","starred_url":"https://api.github.com/users/ideocl4st/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ideocl4st/subscriptions","organizations_url":"https://api.github.com/users/ideocl4st/orgs","repos_url":"https://api.github.com/users/ideocl4st/repos","events_url":"https://api.github.com/users/ideocl4st/events{/privacy}","received_events_url":"https://api.github.com/users/ideocl4st/received_events","type":"User","site_admin":false},"body":"As stated on https://github.com/Cockatrice/Cockatrice/issues/497, I finished translating Cockatrice into Korean.\r\nAlso, I added my name on \"About Cockarice\" dialog in window_main.cpp.","created_at":"2015-01-01T14:03:55Z","updated_at":"2015-01-01T15:19:20Z","closed_at":"2015-01-01T15:19:20Z","merged_at":null,"merge_commit_sha":"5e5b788a7cd200250811ab561b2bbe8be7e6f599","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/Cockatrice/Cockatrice/pulls/518/commits","review_comments_url":"https://api.github.com/repos/Cockatrice/Cockatrice/pulls/518/comments","review_comment_url":"https://api.github.com/repos/Cockatrice/Cockatrice/pulls/comments/{number}","comments_url":"https://api.github.com/repos/Cockatrice/Cockatrice/issues/518/comments","statuses_url":"https://api.github.com/repos/Cockatrice/Cockatrice/statuses/93d6bfed6521d45c722666b40200290acf94ae07","head":{"label":"ideocl4st:korean-translation","ref":"korean-translation","sha":"93d6bfed6521d45c722666b40200290acf94ae07","user":{"login":"ideocl4st","id":2484055,"avatar_url":"https://avatars.githubusercontent.com/u/2484055?v=3","gravatar_id":"","url":"https://api.github.com/users/ideocl4st","html_url":"https://github.com/ideocl4st","followers_url":"https://api.github.com/users/ideocl4st/followers","following_url":"https://api.github.com/users/ideocl4st/following{/other_user}","gists_url":"https://api.github.com/users/ideocl4st/gists{/gist_id}","starred_url":"https://api.github.com/users/ideocl4st/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ideocl4st/subscriptions","organizations_url":"https://api.github.com/users/ideocl4st/orgs","repos_url":"https://api.github.com/users/ideocl4st/repos","events_url":"https://api.github.com/users/ideocl4st/events{/privacy}","received_events_url":"https://api.github.com/users/ideocl4st/received_events","type":"User","site_admin":false},"repo":{"id":28526382,"name":"Cockatrice","full_name":"ideocl4st/Cockatrice","owner":{"login":"ideocl4st","id":2484055,"avatar_url":"https://avatars.githubusercontent.com/u/2484055?v=3","gravatar_id":"","url":"https://api.github.com/users/ideocl4st","html_url":"https://github.com/ideocl4st","followers_url":"https://api.github.com/users/ideocl4st/followers","following_url":"https://api.github.com/users/ideocl4st/following{/other_user}","gists_url":"https://api.github.com/users/ideocl4st/gists{/gist_id}","starred_url":"https://api.github.com/users/ideocl4st/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ideocl4st/subscriptions","organizations_url":"https://api.github.com/users/ideocl4st/orgs","repos_url":"https://api.github.com/users/ideocl4st/repos","events_url":"https://api.github.com/users/ideocl4st/events{/privacy}","received_events_url":"https://api.github.com/users/ideocl4st/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ideocl4st/Cockatrice","description":"A cross-platform virtual tabletop for multiplayer card games","fork":true,"url":"https://api.github.com/repos/ideocl4st/Cockatrice","forks_url":"https://api.github.com/repos/ideocl4st/Cockatrice/forks","keys_url":"https://api.github.com/repos/ideocl4st/Cockatrice/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ideocl4st/Cockatrice/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ideocl4st/Cockatrice/teams","hooks_url":"https://api.github.com/repos/ideocl4st/Cockatrice/hooks","issue_events_url":"https://api.github.com/repos/ideocl4st/Cockatrice/issues/events{/number}","events_url":"https://api.github.com/repos/ideocl4st/Cockatrice/events","assignees_url":"https://api.github.com/repos/ideocl4st/Cockatrice/assignees{/user}","branches_url":"https://api.github.com/repos/ideocl4st/Cockatrice/branches{/branch}","tags_url":"https://api.github.com/repos/ideocl4st/Cockatrice/tags","blobs_url":"https://api.github.com/repos/ideocl4st/Cockatrice/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ideocl4st/Cockatrice/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ideocl4st/Cockatrice/git/refs{/sha}","trees_url":"https://api.github.com/repos/ideocl4st/Cockatrice/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ideocl4st/Cockatrice/statuses/{sha}","languages_url":"https://api.github.com/repos/ideocl4st/Cockatrice/languages","stargazers_url":"https://api.github.com/repos/ideocl4st/Cockatrice/stargazers","contributors_url":"https://api.github.com/repos/ideocl4st/Cockatrice/contributors","subscribers_url":"https://api.github.com/repos/ideocl4st/Cockatrice/subscribers","subscription_url":"https://api.github.com/repos/ideocl4st/Cockatrice/subscription","commits_url":"https://api.github.com/repos/ideocl4st/Cockatrice/commits{/sha}","git_commits_url":"https://api.github.com/repos/ideocl4st/Cockatrice/git/commits{/sha}","comments_url":"https://api.github.com/repos/ideocl4st/Cockatrice/comments{/number}","issue_comment_url":"https://api.github.com/repos/ideocl4st/Cockatrice/issues/comments/{number}","contents_url":"https://api.github.com/repos/ideocl4st/Cockatrice/contents/{+path}","compare_url":"https://api.github.com/repos/ideocl4st/Cockatrice/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ideocl4st/Cockatrice/merges","archive_url":"https://api.github.com/repos/ideocl4st/Cockatrice/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ideocl4st/Cockatrice/downloads","issues_url":"https://api.github.com/repos/ideocl4st/Cockatrice/issues{/number}","pulls_url":"https://api.github.com/repos/ideocl4st/Cockatrice/pulls{/number}","milestones_url":"https://api.github.com/repos/ideocl4st/Cockatrice/milestones{/number}","notifications_url":"https://api.github.com/repos/ideocl4st/Cockatrice/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ideocl4st/Cockatrice/labels{/name}","releases_url":"https://api.github.com/repos/ideocl4st/Cockatrice/releases{/id}","created_at":"2014-12-27T02:16:58Z","updated_at":"2015-01-01T14:22:29Z","pushed_at":"2015-01-01T14:25:51Z","git_url":"git://github.com/ideocl4st/Cockatrice.git","ssh_url":"git@github.com:ideocl4st/Cockatrice.git","clone_url":"https://github.com/ideocl4st/Cockatrice.git","svn_url":"https://github.com/ideocl4st/Cockatrice","homepage":"","size":21991,"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":"Cockatrice:master","ref":"master","sha":"16bbc5e8c03af7b2663a14c0637eea8c67073905","user":{"login":"Cockatrice","id":9746249,"avatar_url":"https://avatars.githubusercontent.com/u/9746249?v=3","gravatar_id":"","url":"https://api.github.com/users/Cockatrice","html_url":"https://github.com/Cockatrice","followers_url":"https://api.github.com/users/Cockatrice/followers","following_url":"https://api.github.com/users/Cockatrice/following{/other_user}","gists_url":"https://api.github.com/users/Cockatrice/gists{/gist_id}","starred_url":"https://api.github.com/users/Cockatrice/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Cockatrice/subscriptions","organizations_url":"https://api.github.com/users/Cockatrice/orgs","repos_url":"https://api.github.com/users/Cockatrice/repos","events_url":"https://api.github.com/users/Cockatrice/events{/privacy}","received_events_url":"https://api.github.com/users/Cockatrice/received_events","type":"Organization","site_admin":false},"repo":{"id":2907031,"name":"Cockatrice","full_name":"Cockatrice/Cockatrice","owner":{"login":"Cockatrice","id":9746249,"avatar_url":"https://avatars.githubusercontent.com/u/9746249?v=3","gravatar_id":"","url":"https://api.github.com/users/Cockatrice","html_url":"https://github.com/Cockatrice","followers_url":"https://api.github.com/users/Cockatrice/followers","following_url":"https://api.github.com/users/Cockatrice/following{/other_user}","gists_url":"https://api.github.com/users/Cockatrice/gists{/gist_id}","starred_url":"https://api.github.com/users/Cockatrice/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Cockatrice/subscriptions","organizations_url":"https://api.github.com/users/Cockatrice/orgs","repos_url":"https://api.github.com/users/Cockatrice/repos","events_url":"https://api.github.com/users/Cockatrice/events{/privacy}","received_events_url":"https://api.github.com/users/Cockatrice/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/Cockatrice/Cockatrice","description":"A cross-platform virtual tabletop for multiplayer card games","fork":false,"url":"https://api.github.com/repos/Cockatrice/Cockatrice","forks_url":"https://api.github.com/repos/Cockatrice/Cockatrice/forks","keys_url":"https://api.github.com/repos/Cockatrice/Cockatrice/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Cockatrice/Cockatrice/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Cockatrice/Cockatrice/teams","hooks_url":"https://api.github.com/repos/Cockatrice/Cockatrice/hooks","issue_events_url":"https://api.github.com/repos/Cockatrice/Cockatrice/issues/events{/number}","events_url":"https://api.github.com/repos/Cockatrice/Cockatrice/events","assignees_url":"https://api.github.com/repos/Cockatrice/Cockatrice/assignees{/user}","branches_url":"https://api.github.com/repos/Cockatrice/Cockatrice/branches{/branch}","tags_url":"https://api.github.com/repos/Cockatrice/Cockatrice/tags","blobs_url":"https://api.github.com/repos/Cockatrice/Cockatrice/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Cockatrice/Cockatrice/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Cockatrice/Cockatrice/git/refs{/sha}","trees_url":"https://api.github.com/repos/Cockatrice/Cockatrice/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Cockatrice/Cockatrice/statuses/{sha}","languages_url":"https://api.github.com/repos/Cockatrice/Cockatrice/languages","stargazers_url":"https://api.github.com/repos/Cockatrice/Cockatrice/stargazers","contributors_url":"https://api.github.com/repos/Cockatrice/Cockatrice/contributors","subscribers_url":"https://api.github.com/repos/Cockatrice/Cockatrice/subscribers","subscription_url":"https://api.github.com/repos/Cockatrice/Cockatrice/subscription","commits_url":"https://api.github.com/repos/Cockatrice/Cockatrice/commits{/sha}","git_commits_url":"https://api.github.com/repos/Cockatrice/Cockatrice/git/commits{/sha}","comments_url":"https://api.github.com/repos/Cockatrice/Cockatrice/comments{/number}","issue_comment_url":"https://api.github.com/repos/Cockatrice/Cockatrice/issues/comments/{number}","contents_url":"https://api.github.com/repos/Cockatrice/Cockatrice/contents/{+path}","compare_url":"https://api.github.com/repos/Cockatrice/Cockatrice/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Cockatrice/Cockatrice/merges","archive_url":"https://api.github.com/repos/Cockatrice/Cockatrice/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Cockatrice/Cockatrice/downloads","issues_url":"https://api.github.com/repos/Cockatrice/Cockatrice/issues{/number}","pulls_url":"https://api.github.com/repos/Cockatrice/Cockatrice/pulls{/number}","milestones_url":"https://api.github.com/repos/Cockatrice/Cockatrice/milestones{/number}","notifications_url":"https://api.github.com/repos/Cockatrice/Cockatrice/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Cockatrice/Cockatrice/labels{/name}","releases_url":"https://api.github.com/repos/Cockatrice/Cockatrice/releases{/id}","created_at":"2011-12-03T20:58:09Z","updated_at":"2015-01-01T13:32:53Z","pushed_at":"2015-01-01T13:32:53Z","git_url":"git://github.com/Cockatrice/Cockatrice.git","ssh_url":"git@github.com:Cockatrice/Cockatrice.git","clone_url":"https://github.com/Cockatrice/Cockatrice.git","svn_url":"https://github.com/Cockatrice/Cockatrice","homepage":"","size":27505,"stargazers_count":178,"watchers_count":178,"language":"C++","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":143,"mirror_url":null,"open_issues_count":165,"forks":143,"open_issues":165,"watchers":178,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Cockatrice/Cockatrice/pulls/518"},"html":{"href":"https://github.com/Cockatrice/Cockatrice/pull/518"},"issue":{"href":"https://api.github.com/repos/Cockatrice/Cockatrice/issues/518"},"comments":{"href":"https://api.github.com/repos/Cockatrice/Cockatrice/issues/518/comments"},"review_comments":{"href":"https://api.github.com/repos/Cockatrice/Cockatrice/pulls/518/comments"},"review_comment":{"href":"https://api.github.com/repos/Cockatrice/Cockatrice/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/Cockatrice/Cockatrice/pulls/518/commits"},"statuses":{"href":"https://api.github.com/repos/Cockatrice/Cockatrice/statuses/93d6bfed6521d45c722666b40200290acf94ae07"}},"merged":false,"mergeable":true,"mergeable_state":"clean","merged_by":null,"comments":6,"review_comments":0,"commits":2,"additions":5509,"deletions":754,"changed_files":17}},"public":true,"created_at":"2015-01-01T15:19:20Z","org":{"id":9746249,"login":"Cockatrice","gravatar_id":"","url":"https://api.github.com/orgs/Cockatrice","avatar_url":"https://avatars.githubusercontent.com/u/9746249?"}} +,{"id":"2489659991","type":"PushEvent","actor":{"id":1048972,"login":"ryan-robeson","gravatar_id":"","url":"https://api.github.com/users/ryan-robeson","avatar_url":"https://avatars.githubusercontent.com/u/1048972?"},"repo":{"id":19751422,"name":"ryan-robeson/ryan-robeson.github.io","url":"https://api.github.com/repos/ryan-robeson/ryan-robeson.github.io"},"payload":{"push_id":536868000,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"be82a7dfea086bbc18a2f301bc948cbe2e808d95","before":"82db89b286aca7b66f0b44075a4ec67af9b4f6e7","commits":[{"sha":"be82a7dfea086bbc18a2f301bc948cbe2e808d95","author":{"email":"4f1553b97d3bd0dfa2afde3cc986240ed7080e3d@gmail.com","name":"Ryan Robeson"},"message":"Optimize Profile pic. 64kb -> 17kb","distinct":true,"url":"https://api.github.com/repos/ryan-robeson/ryan-robeson.github.io/commits/be82a7dfea086bbc18a2f301bc948cbe2e808d95"}]},"public":true,"created_at":"2015-01-01T15:19:20Z"} +,{"id":"2489659998","type":"PushEvent","actor":{"id":9755468,"login":"pionnertech","gravatar_id":"","url":"https://api.github.com/users/pionnertech","avatar_url":"https://avatars.githubusercontent.com/u/9755468?"},"repo":{"id":26832780,"name":"pionnertech/versallestap","url":"https://api.github.com/repos/pionnertech/versallestap"},"payload":{"push_id":536868002,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fb117607ccc42457d253a0435c623efc99e01f77","before":"b92962c2b0c130bea2cf46db2c1266b8c3c169dc","commits":[{"sha":"fb117607ccc42457d253a0435c623efc99e01f77","author":{"email":"970c3b53f51ad7bb4ca1e7f2a053ef66f5f67348@outlook.com","name":"pionnertch"},"message":"rtest","distinct":true,"url":"https://api.github.com/repos/pionnertech/versallestap/commits/fb117607ccc42457d253a0435c623efc99e01f77"}]},"public":true,"created_at":"2015-01-01T15:19:22Z"} +,{"id":"2489660006","type":"CreateEvent","actor":{"id":10159887,"login":"shigai","gravatar_id":"","url":"https://api.github.com/users/shigai","avatar_url":"https://avatars.githubusercontent.com/u/10159887?"},"repo":{"id":28688954,"name":"woshiol/_beta1","url":"https://api.github.com/repos/woshiol/_beta1"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"OL beta","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:19:23Z","org":{"id":10364883,"login":"woshiol","gravatar_id":"","url":"https://api.github.com/orgs/woshiol","avatar_url":"https://avatars.githubusercontent.com/u/10364883?"}} +,{"id":"2489660009","type":"CreateEvent","actor":{"id":2631366,"login":"viktorasm","gravatar_id":"","url":"https://api.github.com/users/viktorasm","avatar_url":"https://avatars.githubusercontent.com/u/2631366?"},"repo":{"id":28688955,"name":"viktorasm/viktorasm.github.io","url":"https://api.github.com/repos/viktorasm/viktorasm.github.io"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:19:24Z"} +,{"id":"2489660012","type":"WatchEvent","actor":{"id":227151,"login":"dinacel","gravatar_id":"","url":"https://api.github.com/users/dinacel","avatar_url":"https://avatars.githubusercontent.com/u/227151?"},"repo":{"id":24230528,"name":"thephpleague/period","url":"https://api.github.com/repos/thephpleague/period"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:19:24Z","org":{"id":527621,"login":"thephpleague","gravatar_id":"","url":"https://api.github.com/orgs/thephpleague","avatar_url":"https://avatars.githubusercontent.com/u/527621?"}} +,{"id":"2489660013","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":536868009,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"c25f2fa286ca78acc6891ff7f0ccf2d6827e3239","before":"7276e26be7977edbb503f370affa8a747577370a","commits":[{"sha":"c25f2fa286ca78acc6891ff7f0ccf2d6827e3239","author":{"email":"2d897f84cebfa32309ad883bf75cbe8ccb3f6374@jpespinal.com","name":"Juan Pablo Espinal"},"message":"Trying to center Contact list labels.","distinct":true,"url":"https://api.github.com/repos/jpespinal/portfolio/commits/c25f2fa286ca78acc6891ff7f0ccf2d6827e3239"}]},"public":true,"created_at":"2015-01-01T15:19:25Z"} +,{"id":"2489660014","type":"ForkEvent","actor":{"id":4215504,"login":"gabrik","gravatar_id":"","url":"https://api.github.com/users/gabrik","avatar_url":"https://avatars.githubusercontent.com/u/4215504?"},"repo":{"id":1349179,"name":"jordoncm/youtube-dl-playlist","url":"https://api.github.com/repos/jordoncm/youtube-dl-playlist"},"payload":{"forkee":{"id":28688956,"name":"youtube-dl-playlist","full_name":"gabrik/youtube-dl-playlist","owner":{"login":"gabrik","id":4215504,"avatar_url":"https://avatars.githubusercontent.com/u/4215504?v=3","gravatar_id":"","url":"https://api.github.com/users/gabrik","html_url":"https://github.com/gabrik","followers_url":"https://api.github.com/users/gabrik/followers","following_url":"https://api.github.com/users/gabrik/following{/other_user}","gists_url":"https://api.github.com/users/gabrik/gists{/gist_id}","starred_url":"https://api.github.com/users/gabrik/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gabrik/subscriptions","organizations_url":"https://api.github.com/users/gabrik/orgs","repos_url":"https://api.github.com/users/gabrik/repos","events_url":"https://api.github.com/users/gabrik/events{/privacy}","received_events_url":"https://api.github.com/users/gabrik/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/gabrik/youtube-dl-playlist","description":"Download videos from Youtube by playlist.","fork":true,"url":"https://api.github.com/repos/gabrik/youtube-dl-playlist","forks_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/forks","keys_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/teams","hooks_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/hooks","issue_events_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/issues/events{/number}","events_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/events","assignees_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/assignees{/user}","branches_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/branches{/branch}","tags_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/tags","blobs_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/git/refs{/sha}","trees_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/statuses/{sha}","languages_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/languages","stargazers_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/stargazers","contributors_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/contributors","subscribers_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/subscribers","subscription_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/subscription","commits_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/commits{/sha}","git_commits_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/git/commits{/sha}","comments_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/comments{/number}","issue_comment_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/issues/comments/{number}","contents_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/contents/{+path}","compare_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/merges","archive_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/downloads","issues_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/issues{/number}","pulls_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/pulls{/number}","milestones_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/milestones{/number}","notifications_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/labels{/name}","releases_url":"https://api.github.com/repos/gabrik/youtube-dl-playlist/releases{/id}","created_at":"2015-01-01T15:19:25Z","updated_at":"2015-01-01T15:19:12Z","pushed_at":"2013-10-06T17:12:17Z","git_url":"git://github.com/gabrik/youtube-dl-playlist.git","ssh_url":"git@github.com:gabrik/youtube-dl-playlist.git","clone_url":"https://github.com/gabrik/youtube-dl-playlist.git","svn_url":"https://github.com/gabrik/youtube-dl-playlist","homepage":"","size":281,"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:19:25Z"} +,{"id":"2489660015","type":"WatchEvent","actor":{"id":6266887,"login":"Onatcer","gravatar_id":"","url":"https://api.github.com/users/Onatcer","avatar_url":"https://avatars.githubusercontent.com/u/6266887?"},"repo":{"id":21108956,"name":"gorhill/uBlock","url":"https://api.github.com/repos/gorhill/uBlock"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:19:25Z"} +,{"id":"2489660016","type":"PushEvent","actor":{"id":661798,"login":"baldurk","gravatar_id":"","url":"https://api.github.com/users/baldurk","avatar_url":"https://avatars.githubusercontent.com/u/661798?"},"repo":{"id":17253131,"name":"baldurk/renderdoc","url":"https://api.github.com/repos/baldurk/renderdoc"},"payload":{"push_id":536868010,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e8391b9c71888bdc33e376765977f72d3278ac4a","before":"6fde127360272d05c437835e10875e1a7093bbf1","commits":[{"sha":"e8391b9c71888bdc33e376765977f72d3278ac4a","author":{"email":"9baff7ea4172b2accde32d0db841abf9771f5d9a@baldurk.org","name":"baldurk"},"message":"Move some information over to COMPILE.md","distinct":true,"url":"https://api.github.com/repos/baldurk/renderdoc/commits/e8391b9c71888bdc33e376765977f72d3278ac4a"}]},"public":true,"created_at":"2015-01-01T15:19:25Z"} +,{"id":"2489660017","type":"CreateEvent","actor":{"id":9103969,"login":"alext79","gravatar_id":"","url":"https://api.github.com/users/alext79","avatar_url":"https://avatars.githubusercontent.com/u/9103969?"},"repo":{"id":28688542,"name":"alext79/codejam","url":"https://api.github.com/repos/alext79/codejam"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Some google code jam problems, just for fun","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:19:25Z"} +,{"id":"2489660018","type":"WatchEvent","actor":{"id":831962,"login":"bgruszka","gravatar_id":"","url":"https://api.github.com/users/bgruszka","avatar_url":"https://avatars.githubusercontent.com/u/831962?"},"repo":{"id":27032923,"name":"dockerboard/dockerboard","url":"https://api.github.com/repos/dockerboard/dockerboard"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:19:25Z","org":{"id":9627875,"login":"dockerboard","gravatar_id":"","url":"https://api.github.com/orgs/dockerboard","avatar_url":"https://avatars.githubusercontent.com/u/9627875?"}} +,{"id":"2489660021","type":"PushEvent","actor":{"id":6037190,"login":"xDae","gravatar_id":"","url":"https://api.github.com/users/xDae","avatar_url":"https://avatars.githubusercontent.com/u/6037190?"},"repo":{"id":23480070,"name":"xDae/vinz-frontend-stack","url":"https://api.github.com/repos/xDae/vinz-frontend-stack"},"payload":{"push_id":536868013,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"feaf9105c9e74a0d58e29ecff34836ee92bdc25e","before":"d6b26ccf398bdfdba2841be35a9d24c622946386","commits":[{"sha":"feaf9105c9e74a0d58e29ecff34836ee92bdc25e","author":{"email":"c41975d1dae1cc69b16ad8892b8c77164e84ca39@josemiguel.com","name":"jose miguel"},"message":"actualizado package.json","distinct":true,"url":"https://api.github.com/repos/xDae/vinz-frontend-stack/commits/feaf9105c9e74a0d58e29ecff34836ee92bdc25e"}]},"public":true,"created_at":"2015-01-01T15:19:26Z"} +,{"id":"2489660024","type":"PushEvent","actor":{"id":10341686,"login":"Arnie97","gravatar_id":"","url":"https://api.github.com/users/Arnie97","avatar_url":"https://avatars.githubusercontent.com/u/10341686?"},"repo":{"id":28664467,"name":"Arnie97/milky","url":"https://api.github.com/repos/Arnie97/milky"},"payload":{"push_id":536868015,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5c352fa2b565d1e4cc39f96add12a778fce67b53","before":"6292e0d13cdea20935e8585337b7176bfbe9c1f5","commits":[{"sha":"5c352fa2b565d1e4cc39f96add12a778fce67b53","author":{"email":"15fb2de3c60da2080fa1c355aa8b56d4d8cf760f@gmail.com","name":"Arnie97"},"message":"Modified logo.","distinct":true,"url":"https://api.github.com/repos/Arnie97/milky/commits/5c352fa2b565d1e4cc39f96add12a778fce67b53"}]},"public":true,"created_at":"2015-01-01T15:19:27Z"} +,{"id":"2489660026","type":"IssueCommentEvent","actor":{"id":6241555,"login":"ywecur","gravatar_id":"","url":"https://api.github.com/users/ywecur","avatar_url":"https://avatars.githubusercontent.com/u/6241555?"},"repo":{"id":2304420,"name":"bitcoin/bitcoin.org","url":"https://api.github.com/repos/bitcoin/bitcoin.org"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/bitcoin/bitcoin.org/issues/697","labels_url":"https://api.github.com/repos/bitcoin/bitcoin.org/issues/697/labels{/name}","comments_url":"https://api.github.com/repos/bitcoin/bitcoin.org/issues/697/comments","events_url":"https://api.github.com/repos/bitcoin/bitcoin.org/issues/697/events","html_url":"https://github.com/bitcoin/bitcoin.org/pull/697","id":53212334,"number":697,"title":"Add Circle.com to the wallet page","user":{"login":"ywecur","id":6241555,"avatar_url":"https://avatars.githubusercontent.com/u/6241555?v=3","gravatar_id":"","url":"https://api.github.com/users/ywecur","html_url":"https://github.com/ywecur","followers_url":"https://api.github.com/users/ywecur/followers","following_url":"https://api.github.com/users/ywecur/following{/other_user}","gists_url":"https://api.github.com/users/ywecur/gists{/gist_id}","starred_url":"https://api.github.com/users/ywecur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ywecur/subscriptions","organizations_url":"https://api.github.com/users/ywecur/orgs","repos_url":"https://api.github.com/users/ywecur/repos","events_url":"https://api.github.com/users/ywecur/events{/privacy}","received_events_url":"https://api.github.com/users/ywecur/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T03:46:44Z","updated_at":"2015-01-01T15:19:27Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/bitcoin/bitcoin.org/pulls/697","html_url":"https://github.com/bitcoin/bitcoin.org/pull/697","diff_url":"https://github.com/bitcoin/bitcoin.org/pull/697.diff","patch_url":"https://github.com/bitcoin/bitcoin.org/pull/697.patch"},"body":"Circle.com is a creditable and secure web wallet that enables instant purchase of bitcoin through both credit card transactions and U.S. bank transfers. They have existed for quite a while now and enable people to purchase bitcoin frictionlessly. I belive this warrants including them in this list."},"comment":{"url":"https://api.github.com/repos/bitcoin/bitcoin.org/issues/comments/68488915","html_url":"https://github.com/bitcoin/bitcoin.org/pull/697#issuecomment-68488915","issue_url":"https://api.github.com/repos/bitcoin/bitcoin.org/issues/697","id":68488915,"user":{"login":"ywecur","id":6241555,"avatar_url":"https://avatars.githubusercontent.com/u/6241555?v=3","gravatar_id":"","url":"https://api.github.com/users/ywecur","html_url":"https://github.com/ywecur","followers_url":"https://api.github.com/users/ywecur/followers","following_url":"https://api.github.com/users/ywecur/following{/other_user}","gists_url":"https://api.github.com/users/ywecur/gists{/gist_id}","starred_url":"https://api.github.com/users/ywecur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ywecur/subscriptions","organizations_url":"https://api.github.com/users/ywecur/orgs","repos_url":"https://api.github.com/users/ywecur/repos","events_url":"https://api.github.com/users/ywecur/events{/privacy}","received_events_url":"https://api.github.com/users/ywecur/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:19:27Z","updated_at":"2015-01-01T15:19:27Z","body":"@saivann Thank you for reviewing my pull request. Sorry for the errors, I will fix them in a couple of hours."}},"public":true,"created_at":"2015-01-01T15:19:27Z","org":{"id":528860,"login":"bitcoin","gravatar_id":"","url":"https://api.github.com/orgs/bitcoin","avatar_url":"https://avatars.githubusercontent.com/u/528860?"}} +,{"id":"2489660028","type":"PushEvent","actor":{"id":8771783,"login":"avallete","gravatar_id":"","url":"https://api.github.com/users/avallete","avatar_url":"https://avatars.githubusercontent.com/u/8771783?"},"repo":{"id":28599492,"name":"ftlsteam/LSNEW","url":"https://api.github.com/repos/ftlsteam/LSNEW"},"payload":{"push_id":536868018,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"57b2193238dcb9bf5e093ad729365373f677e12c","before":"2c106ff618089576627f482b8ca9477987430929","commits":[{"sha":"57b2193238dcb9bf5e093ad729365373f677e12c","author":{"email":"9ba57611827325dd25d5084f4588f1572788616f@e1r4p3.42.fr","name":"avallete"},"message":"test 21","distinct":true,"url":"https://api.github.com/repos/ftlsteam/LSNEW/commits/57b2193238dcb9bf5e093ad729365373f677e12c"}]},"public":true,"created_at":"2015-01-01T15:19:28Z","org":{"id":9963650,"login":"ftlsteam","gravatar_id":"","url":"https://api.github.com/orgs/ftlsteam","avatar_url":"https://avatars.githubusercontent.com/u/9963650?"}} +,{"id":"2489660029","type":"PushEvent","actor":{"id":7794717,"login":"alexander-heimbuch","gravatar_id":"","url":"https://api.github.com/users/alexander-heimbuch","avatar_url":"https://avatars.githubusercontent.com/u/7794717?"},"repo":{"id":28391049,"name":"alexander-heimbuch/rss-page","url":"https://api.github.com/repos/alexander-heimbuch/rss-page"},"payload":{"push_id":536868019,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8d5f7df36da8c7f79f8846a6455da6f7a64ae7a8","before":"e384e2dc9a7fe2a7a4d0205eb984d158d30bb5b0","commits":[{"sha":"8d5f7df36da8c7f79f8846a6455da6f7a64ae7a8","author":{"email":"e904af80e2431e2c7c560de65bea5dcaa1950ec4@epages.com","name":"Alexander Heimbuch"},"message":"Update RSS Feeds","distinct":true,"url":"https://api.github.com/repos/alexander-heimbuch/rss-page/commits/8d5f7df36da8c7f79f8846a6455da6f7a64ae7a8"}]},"public":true,"created_at":"2015-01-01T15:19:28Z"} +,{"id":"2489660032","type":"PushEvent","actor":{"id":402988,"login":"mcguffin","gravatar_id":"","url":"https://api.github.com/users/mcguffin","avatar_url":"https://avatars.githubusercontent.com/u/402988?"},"repo":{"id":13746848,"name":"mcguffin/wp-recaptcha-integration","url":"https://api.github.com/repos/mcguffin/wp-recaptcha-integration"},"payload":{"push_id":536868021,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"54677333d42b66076d7f2380fc14ec726dbf244e","before":"e247b9d477bf6e17e9930196e3d75c9cd7d97c99","commits":[{"sha":"5e0cd4abeca9f7cda31a10d80bdc9e878d95b0cf","author":{"email":"aea8d21973be359ec7d72dd5882345200e3616a6@flyingletters.com","name":"mcguffin"},"message":"re-render nocaptcha on jQuery ajax success","distinct":true,"url":"https://api.github.com/repos/mcguffin/wp-recaptcha-integration/commits/5e0cd4abeca9f7cda31a10d80bdc9e878d95b0cf"},{"sha":"54677333d42b66076d7f2380fc14ec726dbf244e","author":{"email":"aea8d21973be359ec7d72dd5882345200e3616a6@flyingletters.com","name":"mcguffin"},"message":"grecaptcha.reset, ajaxComplete","distinct":true,"url":"https://api.github.com/repos/mcguffin/wp-recaptcha-integration/commits/54677333d42b66076d7f2380fc14ec726dbf244e"}]},"public":true,"created_at":"2015-01-01T15:19:28Z"} +,{"id":"2489660033","type":"WatchEvent","actor":{"id":1300686,"login":"christofmarti","gravatar_id":"","url":"https://api.github.com/users/christofmarti","avatar_url":"https://avatars.githubusercontent.com/u/1300686?"},"repo":{"id":11469732,"name":"tomdionysus/foaas","url":"https://api.github.com/repos/tomdionysus/foaas"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:19:29Z"} +,{"id":"2489660035","type":"PushEvent","actor":{"id":2560782,"login":"ericbusboom","gravatar_id":"","url":"https://api.github.com/users/ericbusboom","avatar_url":"https://avatars.githubusercontent.com/u/2560782?"},"repo":{"id":27353247,"name":"CivicKnowledge/collections","url":"https://api.github.com/repos/CivicKnowledge/collections"},"payload":{"push_id":536868022,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"90d1269e114423fef29dc058013daa5d5cca720c","before":"e9c487ff5fbbae3a7348319b1e5077545f4f4635","commits":[{"sha":"90d1269e114423fef29dc058013daa5d5cca720c","author":{"email":"96f164ad4d9b2b0dacf8ebee2bb1eeb3aa69adf1@clarinova.com","name":"Eric Busboom"},"message":".","distinct":true,"url":"https://api.github.com/repos/CivicKnowledge/collections/commits/90d1269e114423fef29dc058013daa5d5cca720c"}]},"public":true,"created_at":"2015-01-01T15:19:29Z","org":{"id":6617988,"login":"CivicKnowledge","gravatar_id":"","url":"https://api.github.com/orgs/CivicKnowledge","avatar_url":"https://avatars.githubusercontent.com/u/6617988?"}} +,{"id":"2489660036","type":"PushEvent","actor":{"id":3240201,"login":"EgoSumDeus","gravatar_id":"","url":"https://api.github.com/users/EgoSumDeus","avatar_url":"https://avatars.githubusercontent.com/u/3240201?"},"repo":{"id":28688455,"name":"EgoSumDeus/SDverify","url":"https://api.github.com/repos/EgoSumDeus/SDverify"},"payload":{"push_id":536868023,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7168d5ce59914615235f1c75476134349b985c7f","before":"7bb162511eecc71673ae906f6ae35c11f7cba5e9","commits":[{"sha":"7168d5ce59914615235f1c75476134349b985c7f","author":{"email":"c5225c7a475f0765405fed254abcd66522f8ce17@hotmail.co.nz","name":"Nate"},"message":"Create README.md","distinct":true,"url":"https://api.github.com/repos/EgoSumDeus/SDverify/commits/7168d5ce59914615235f1c75476134349b985c7f"}]},"public":true,"created_at":"2015-01-01T15:19:29Z"} +,{"id":"2489660037","type":"PushEvent","actor":{"id":870152,"login":"nicola51980","gravatar_id":"","url":"https://api.github.com/users/nicola51980","avatar_url":"https://avatars.githubusercontent.com/u/870152?"},"repo":{"id":12290951,"name":"nicola51980/myvagrants","url":"https://api.github.com/repos/nicola51980/myvagrants"},"payload":{"push_id":536868024,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a4be4894d8c0ef76f0391e8f22edb4c2489067a0","before":"84e689217623189eac3cea3fe63fccde6f6caae0","commits":[{"sha":"a4be4894d8c0ef76f0391e8f22edb4c2489067a0","author":{"email":"54932f54438e06ff9212f61c7dfc980a091b5d7d@gmail.com","name":"Nicola Strappazzon C"},"message":"Change parameter on vhost in apache2.","distinct":true,"url":"https://api.github.com/repos/nicola51980/myvagrants/commits/a4be4894d8c0ef76f0391e8f22edb4c2489067a0"}]},"public":true,"created_at":"2015-01-01T15:19:29Z"} +,{"id":"2489660039","type":"PushEvent","actor":{"id":10359452,"login":"filedzf","gravatar_id":"","url":"https://api.github.com/users/filedzf","avatar_url":"https://avatars.githubusercontent.com/u/10359452?"},"repo":{"id":28670685,"name":"filedzf/ebe","url":"https://api.github.com/repos/filedzf/ebe"},"payload":{"push_id":536868026,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"99a81da584111110f74f94a9ffb77e0c9ad86e63","before":"b0f1b1c4345f27b9362a95cc81f58b25bd81481c","commits":[{"sha":"99a81da584111110f74f94a9ffb77e0c9ad86e63","author":{"email":"42b8d8c9bd9650926bebd2b430abe5c214324d5b@gmail.com","name":"filedzf"},"message":"Create alexebe.sh","distinct":true,"url":"https://api.github.com/repos/filedzf/ebe/commits/99a81da584111110f74f94a9ffb77e0c9ad86e63"}]},"public":true,"created_at":"2015-01-01T15:19:29Z"} +,{"id":"2489660042","type":"PushEvent","actor":{"id":8698345,"login":"XLEvolutionist","gravatar_id":"","url":"https://api.github.com/users/XLEvolutionist","avatar_url":"https://avatars.githubusercontent.com/u/8698345?"},"repo":{"id":28116296,"name":"XLEvolutionist/cn.mops","url":"https://api.github.com/repos/XLEvolutionist/cn.mops"},"payload":{"push_id":536868029,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f357ed885795909ebe667d298707e2817f2e37b9","before":"d654ddd72613ebaa110382665a3a63299751dce9","commits":[{"sha":"f357ed885795909ebe667d298707e2817f2e37b9","author":{"email":"58efaae6bae27e45fe4b49b84aac7f01573cbbff@mac.com","name":"XLEvolutionist"},"message":"edit","distinct":true,"url":"https://api.github.com/repos/XLEvolutionist/cn.mops/commits/f357ed885795909ebe667d298707e2817f2e37b9"}]},"public":true,"created_at":"2015-01-01T15:19:29Z"} +,{"id":"2489660044","type":"DeleteEvent","actor":{"id":2266445,"login":"littleguy77","gravatar_id":"","url":"https://api.github.com/users/littleguy77","avatar_url":"https://avatars.githubusercontent.com/u/2266445?"},"repo":{"id":16059800,"name":"mupen64plus-ae/mupen64plus-rsp-hle","url":"https://api.github.com/repos/mupen64plus-ae/mupen64plus-rsp-hle"},"payload":{"ref":"master","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:19:30Z","org":{"id":6227843,"login":"mupen64plus-ae","gravatar_id":"","url":"https://api.github.com/orgs/mupen64plus-ae","avatar_url":"https://avatars.githubusercontent.com/u/6227843?"}} +,{"id":"2489660050","type":"IssueCommentEvent","actor":{"id":285533,"login":"hvr","gravatar_id":"","url":"https://api.github.com/users/hvr","avatar_url":"https://avatars.githubusercontent.com/u/285533?"},"repo":{"id":12241186,"name":"haskell/hackage-server","url":"https://api.github.com/repos/haskell/hackage-server"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/haskell/hackage-server/issues/303","labels_url":"https://api.github.com/repos/haskell/hackage-server/issues/303/labels{/name}","comments_url":"https://api.github.com/repos/haskell/hackage-server/issues/303/comments","events_url":"https://api.github.com/repos/haskell/hackage-server/issues/303/events","html_url":"https://github.com/haskell/hackage-server/issues/303","id":53193228,"number":303,"title":"No way to properly edit invalid `.cabal` files","user":{"login":"hvr","id":285533,"avatar_url":"https://avatars.githubusercontent.com/u/285533?v=3","gravatar_id":"","url":"https://api.github.com/users/hvr","html_url":"https://github.com/hvr","followers_url":"https://api.github.com/users/hvr/followers","following_url":"https://api.github.com/users/hvr/following{/other_user}","gists_url":"https://api.github.com/users/hvr/gists{/gist_id}","starred_url":"https://api.github.com/users/hvr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hvr/subscriptions","organizations_url":"https://api.github.com/users/hvr/orgs","repos_url":"https://api.github.com/users/hvr/repos","events_url":"https://api.github.com/users/hvr/events{/privacy}","received_events_url":"https://api.github.com/users/hvr/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":{"login":"dcoutts","id":1339423,"avatar_url":"https://avatars.githubusercontent.com/u/1339423?v=3","gravatar_id":"","url":"https://api.github.com/users/dcoutts","html_url":"https://github.com/dcoutts","followers_url":"https://api.github.com/users/dcoutts/followers","following_url":"https://api.github.com/users/dcoutts/following{/other_user}","gists_url":"https://api.github.com/users/dcoutts/gists{/gist_id}","starred_url":"https://api.github.com/users/dcoutts/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dcoutts/subscriptions","organizations_url":"https://api.github.com/users/dcoutts/orgs","repos_url":"https://api.github.com/users/dcoutts/repos","events_url":"https://api.github.com/users/dcoutts/events{/privacy}","received_events_url":"https://api.github.com/users/dcoutts/received_events","type":"User","site_admin":false},"milestone":null,"comments":1,"created_at":"2014-12-31T17:13:01Z","updated_at":"2015-01-01T15:19:32Z","closed_at":null,"body":"I couldn't find a way to edit `cpphs-1.13` via\r\n\r\nhttp://hackage.haskell.org/package/cpphs-1.13/cpphs.cabal/edit\r\n\r\nin such a way that `cabal install cpphs-1.13` would fail to find a valid install-plan"},"comment":{"url":"https://api.github.com/repos/haskell/hackage-server/issues/comments/68488916","html_url":"https://github.com/haskell/hackage-server/issues/303#issuecomment-68488916","issue_url":"https://api.github.com/repos/haskell/hackage-server/issues/303","id":68488916,"user":{"login":"hvr","id":285533,"avatar_url":"https://avatars.githubusercontent.com/u/285533?v=3","gravatar_id":"","url":"https://api.github.com/users/hvr","html_url":"https://github.com/hvr","followers_url":"https://api.github.com/users/hvr/followers","following_url":"https://api.github.com/users/hvr/following{/other_user}","gists_url":"https://api.github.com/users/hvr/gists{/gist_id}","starred_url":"https://api.github.com/users/hvr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hvr/subscriptions","organizations_url":"https://api.github.com/users/hvr/orgs","repos_url":"https://api.github.com/users/hvr/repos","events_url":"https://api.github.com/users/hvr/events{/privacy}","received_events_url":"https://api.github.com/users/hvr/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:19:32Z","updated_at":"2015-01-01T15:19:32Z","body":"@dcoutts maybe a simple workaround would be to allow \"new\" dependencies on `base` to be added; that way I could add a `build-depends: base <0` in this case (and it may be helpful to simplify other cases as well where just a global `build-depends: base <4.8` constraint is needed)"}},"public":true,"created_at":"2015-01-01T15:19:32Z","org":{"id":450574,"login":"haskell","gravatar_id":"","url":"https://api.github.com/orgs/haskell","avatar_url":"https://avatars.githubusercontent.com/u/450574?"}} +,{"id":"2489660055","type":"PushEvent","actor":{"id":1809093,"login":"florpor","gravatar_id":"","url":"https://api.github.com/users/florpor","avatar_url":"https://avatars.githubusercontent.com/u/1809093?"},"repo":{"id":27092272,"name":"florpor/opentaba-poster","url":"https://api.github.com/repos/florpor/opentaba-poster"},"payload":{"push_id":536868036,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f1d5399fcc78c3fd0ccb067873def2269cef1e96","before":"deebeff8f121deb7e8316919aa4eca36565e858f","commits":[{"sha":"f1d5399fcc78c3fd0ccb067873def2269cef1e96","author":{"email":"d7f0e72e1f27c5895e1d0d0f8f982320809d9337@gmail.com","name":"florpor"},"message":"sleep between posts to not get blocked","distinct":true,"url":"https://api.github.com/repos/florpor/opentaba-poster/commits/f1d5399fcc78c3fd0ccb067873def2269cef1e96"}]},"public":true,"created_at":"2015-01-01T15:19:32Z"} +,{"id":"2489660062","type":"WatchEvent","actor":{"id":401263,"login":"simplyianm","gravatar_id":"","url":"https://api.github.com/users/simplyianm","avatar_url":"https://avatars.githubusercontent.com/u/401263?"},"repo":{"id":805461,"name":"felixge/node-mysql","url":"https://api.github.com/repos/felixge/node-mysql"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:19:34Z"} +,{"id":"2489660063","type":"IssuesEvent","actor":{"id":7341092,"login":"cherylbratt","gravatar_id":"","url":"https://api.github.com/users/cherylbratt","avatar_url":"https://avatars.githubusercontent.com/u/7341092?"},"repo":{"id":18924596,"name":"cherylbratt/cherylbratt","url":"https://api.github.com/repos/cherylbratt/cherylbratt"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/cherylbratt/cherylbratt/issues/764","labels_url":"https://api.github.com/repos/cherylbratt/cherylbratt/issues/764/labels{/name}","comments_url":"https://api.github.com/repos/cherylbratt/cherylbratt/issues/764/comments","events_url":"https://api.github.com/repos/cherylbratt/cherylbratt/issues/764/events","html_url":"https://github.com/cherylbratt/cherylbratt/issues/764","id":53221717,"number":764,"title":"Sunrise for January 01 2015 at 09:50AM! Cheryl Bratt (Utah Resident) - Cheryl Bratt (Utah Resident)","user":{"login":"cherylbratt","id":7341092,"avatar_url":"https://avatars.githubusercontent.com/u/7341092?v=3","gravatar_id":"","url":"https://api.github.com/users/cherylbratt","html_url":"https://github.com/cherylbratt","followers_url":"https://api.github.com/users/cherylbratt/followers","following_url":"https://api.github.com/users/cherylbratt/following{/other_user}","gists_url":"https://api.github.com/users/cherylbratt/gists{/gist_id}","starred_url":"https://api.github.com/users/cherylbratt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cherylbratt/subscriptions","organizations_url":"https://api.github.com/users/cherylbratt/orgs","repos_url":"https://api.github.com/users/cherylbratt/repos","events_url":"https://api.github.com/users/cherylbratt/events{/privacy}","received_events_url":"https://api.github.com/users/cherylbratt/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:19:34Z","updated_at":"2015-01-01T15:19:34Z","closed_at":null,"body":"

The day’s High is 25F with a Low of 9F. Current conditions are Fair.

\n

from http://ift.tt/VXN4rb

\n\"\"

\nvia WordPress http://ift.tt/1xxsu7X Cheryl Bratt"}},"public":true,"created_at":"2015-01-01T15:19:34Z"} +,{"id":"2489660064","type":"PushEvent","actor":{"id":1964467,"login":"jesusjl","gravatar_id":"","url":"https://api.github.com/users/jesusjl","avatar_url":"https://avatars.githubusercontent.com/u/1964467?"},"repo":{"id":28648801,"name":"jesusjl/flasktask","url":"https://api.github.com/repos/jesusjl/flasktask"},"payload":{"push_id":536868039,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d5edc5bf129e7335b1c5ed6310f0b04d10185977","before":"df72eaf4e7d5412d282131a7f43984ec68403e88","commits":[{"sha":"d5edc5bf129e7335b1c5ed6310f0b04d10185977","author":{"email":"abcbf21b6da2d40ad6572215845ea7b91648184a@gmail.com","name":"Jesus"},"message":"added database","distinct":true,"url":"https://api.github.com/repos/jesusjl/flasktask/commits/d5edc5bf129e7335b1c5ed6310f0b04d10185977"}]},"public":true,"created_at":"2015-01-01T15:19:34Z"} +,{"id":"2489660065","type":"PushEvent","actor":{"id":1495145,"login":"hadriandeoliveira","gravatar_id":"","url":"https://api.github.com/users/hadriandeoliveira","avatar_url":"https://avatars.githubusercontent.com/u/1495145?"},"repo":{"id":28187890,"name":"hadriandeoliveira/TangleNgTumblr","url":"https://api.github.com/repos/hadriandeoliveira/TangleNgTumblr"},"payload":{"push_id":536868040,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c354f7d86cca89fabfe3e8174150896b1140052a","before":"2971ef19a0680d45458dd7b5b91e19ebc62eae50","commits":[{"sha":"c354f7d86cca89fabfe3e8174150896b1140052a","author":{"email":"346fe388b20d95a7e6a1500f58cfcfd711c384db@gmail.com","name":"Hadrian"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/hadriandeoliveira/TangleNgTumblr/commits/c354f7d86cca89fabfe3e8174150896b1140052a"}]},"public":true,"created_at":"2015-01-01T15:19:34Z"} +,{"id":"2489660066","type":"PushEvent","actor":{"id":889809,"login":"rillomas","gravatar_id":"","url":"https://api.github.com/users/rillomas","avatar_url":"https://avatars.githubusercontent.com/u/889809?"},"repo":{"id":10701228,"name":"rillomas/xclamm-gae","url":"https://api.github.com/repos/rillomas/xclamm-gae"},"payload":{"push_id":536868041,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"905e2bf35170523b67f2866c47cf7172e2d11851","before":"bef489838a9fc8748ab52b8554ed13b3816b7a6b","commits":[{"sha":"905e2bf35170523b67f2866c47cf7172e2d11851","author":{"email":"d0e4a511bf72cc3e52a670c7363e41319e9c833e@gmail.com","name":"Masato Hori"},"message":"added offset calculation algorithm","distinct":true,"url":"https://api.github.com/repos/rillomas/xclamm-gae/commits/905e2bf35170523b67f2866c47cf7172e2d11851"}]},"public":true,"created_at":"2015-01-01T15:19:35Z"} +,{"id":"2489660067","type":"PushEvent","actor":{"id":4688673,"login":"bratislavablue","gravatar_id":"","url":"https://api.github.com/users/bratislavablue","avatar_url":"https://avatars.githubusercontent.com/u/4688673?"},"repo":{"id":28687627,"name":"bratislavablue/odot","url":"https://api.github.com/repos/bratislavablue/odot"},"payload":{"push_id":536868042,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"016a1241c7de90da28837b96d853b6b1eb761933","before":"8bd39ce49fcee86d06ef5c111beb6ef5e6af73bc","commits":[{"sha":"016a1241c7de90da28837b96d853b6b1eb761933","author":{"email":"41086795a949e1cfd9b9d5befd6a5a197aa20da6@users.noreply.github.com","name":"bratislavablue"},"message":"Added first tests","distinct":true,"url":"https://api.github.com/repos/bratislavablue/odot/commits/016a1241c7de90da28837b96d853b6b1eb761933"}]},"public":true,"created_at":"2015-01-01T15:19:35Z"} +,{"id":"2489660071","type":"PushEvent","actor":{"id":9304960,"login":"JavaZhikun","gravatar_id":"","url":"https://api.github.com/users/JavaZhikun","avatar_url":"https://avatars.githubusercontent.com/u/9304960?"},"repo":{"id":28688942,"name":"JavaZhikun/thinkingInJava11","url":"https://api.github.com/repos/JavaZhikun/thinkingInJava11"},"payload":{"push_id":536868043,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d771df8375c89e883dd359ca9e1a04ea3e7a7341","before":"9d83fdfacdd0fc521d4a0f37d3f44cd05db9eaaf","commits":[{"sha":"d771df8375c89e883dd359ca9e1a04ea3e7a7341","author":{"email":"2adb5a4d31a8c485013fa47a8c99988e69cd1315@sjtu.edu.cn","name":"Zhikun Luan"},"message":"Create README.md","distinct":true,"url":"https://api.github.com/repos/JavaZhikun/thinkingInJava11/commits/d771df8375c89e883dd359ca9e1a04ea3e7a7341"}]},"public":true,"created_at":"2015-01-01T15:19:36Z"} +,{"id":"2489660073","type":"PushEvent","actor":{"id":510643,"login":"zear","gravatar_id":"","url":"https://api.github.com/users/zear","avatar_url":"https://avatars.githubusercontent.com/u/510643?"},"repo":{"id":23046099,"name":"zear/fled","url":"https://api.github.com/repos/zear/fled"},"payload":{"push_id":536868045,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"508d287ad43d139e9b8eb186a883a524fd5799bb","before":"a1b048a2d677b67ba36ce22f65240e1ec029c9aa","commits":[{"sha":"508d287ad43d139e9b8eb186a883a524fd5799bb","author":{"email":"e9548e40587e209076ac078126b5598cb2ea17be@gmail.com","name":"Zear"},"message":"Improve the code readability by adding a space character after if/for/switch statements","distinct":true,"url":"https://api.github.com/repos/zear/fled/commits/508d287ad43d139e9b8eb186a883a524fd5799bb"}]},"public":true,"created_at":"2015-01-01T15:19:36Z"} +,{"id":"2489660075","type":"PushEvent","actor":{"id":534245,"login":"toopay","gravatar_id":"","url":"https://api.github.com/users/toopay","avatar_url":"https://avatars.githubusercontent.com/u/534245?"},"repo":{"id":28684236,"name":"toopay/toopay.github.io","url":"https://api.github.com/repos/toopay/toopay.github.io"},"payload":{"push_id":536868046,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"dc70ba4edc7c92fd29ef6cc55a7a6bc607909271","before":"62287f1fc42bd38741b3eb083fd0b72bb6844fac","commits":[{"sha":"dc70ba4edc7c92fd29ef6cc55a7a6bc607909271","author":{"email":"a09aa4f83f3ba395eae09fa61c86d43902f6e74e@taufanaditya.com","name":"Taufan Aditya"},"message":"Jan post [continued]","distinct":true,"url":"https://api.github.com/repos/toopay/toopay.github.io/commits/dc70ba4edc7c92fd29ef6cc55a7a6bc607909271"}]},"public":true,"created_at":"2015-01-01T15:19:36Z"} +,{"id":"2489660076","type":"IssueCommentEvent","actor":{"id":2155800,"login":"skirpichev","gravatar_id":"","url":"https://api.github.com/users/skirpichev","avatar_url":"https://avatars.githubusercontent.com/u/2155800?"},"repo":{"id":2934512,"name":"fredrik-johansson/mpmath","url":"https://api.github.com/repos/fredrik-johansson/mpmath"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/fredrik-johansson/mpmath/issues/299","labels_url":"https://api.github.com/repos/fredrik-johansson/mpmath/issues/299/labels{/name}","comments_url":"https://api.github.com/repos/fredrik-johansson/mpmath/issues/299/comments","events_url":"https://api.github.com/repos/fredrik-johansson/mpmath/issues/299/events","html_url":"https://github.com/fredrik-johansson/mpmath/issues/299","id":46143137,"number":299,"title":"Use readthedocs for documentation?","user":{"login":"skirpichev","id":2155800,"avatar_url":"https://avatars.githubusercontent.com/u/2155800?v=3","gravatar_id":"","url":"https://api.github.com/users/skirpichev","html_url":"https://github.com/skirpichev","followers_url":"https://api.github.com/users/skirpichev/followers","following_url":"https://api.github.com/users/skirpichev/following{/other_user}","gists_url":"https://api.github.com/users/skirpichev/gists{/gist_id}","starred_url":"https://api.github.com/users/skirpichev/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skirpichev/subscriptions","organizations_url":"https://api.github.com/users/skirpichev/orgs","repos_url":"https://api.github.com/users/skirpichev/repos","events_url":"https://api.github.com/users/skirpichev/events{/privacy}","received_events_url":"https://api.github.com/users/skirpichev/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2014-10-17T20:53:08Z","updated_at":"2015-01-01T15:19:37Z","closed_at":null,"body":"Here is my test setup: http://mpmath.readthedocs.org/\r\nIt works from my fork of mpmath (to get docs for several versions [you need tags](https://docs.readthedocs.org/en/latest/versions.html)).\r\n\r\nHow this looks cf. http://mpmath.org/doc/, what do you think?"},"comment":{"url":"https://api.github.com/repos/fredrik-johansson/mpmath/issues/comments/68488918","html_url":"https://github.com/fredrik-johansson/mpmath/issues/299#issuecomment-68488918","issue_url":"https://api.github.com/repos/fredrik-johansson/mpmath/issues/299","id":68488918,"user":{"login":"skirpichev","id":2155800,"avatar_url":"https://avatars.githubusercontent.com/u/2155800?v=3","gravatar_id":"","url":"https://api.github.com/users/skirpichev","html_url":"https://github.com/skirpichev","followers_url":"https://api.github.com/users/skirpichev/followers","following_url":"https://api.github.com/users/skirpichev/following{/other_user}","gists_url":"https://api.github.com/users/skirpichev/gists{/gist_id}","starred_url":"https://api.github.com/users/skirpichev/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skirpichev/subscriptions","organizations_url":"https://api.github.com/users/skirpichev/orgs","repos_url":"https://api.github.com/users/skirpichev/repos","events_url":"https://api.github.com/users/skirpichev/events{/privacy}","received_events_url":"https://api.github.com/users/skirpichev/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:19:37Z","updated_at":"2015-01-01T15:19:37Z","body":"> I would obviously add a link to the readthedocs version, particularly seeing as it could track the git master automatically.\r\n\r\nOk. Can you please add git tags, at least for several latest versions? See my fork:\r\nhttps://github.com/skirpichev/mpmath\r\nhttps://github.com/skirpichev/mpmath/tags\r\n\r\nAlso, I think I should add you as a maintainer for http://mpmath.readthedocs.org/. Do you have account on RTD?\r\n\r\n> I think the readthedocs style has too low contrast, particularly the code boxes and the sidebar.\r\n\r\nI'll try to fix this.\r\n\r\n> it would really be nicer to switch to MathJax rendering\r\n\r\nIt does work for me locally. I'll provide patch."}},"public":true,"created_at":"2015-01-01T15:19:37Z"} +,{"id":"2489660079","type":"PushEvent","actor":{"id":10178018,"login":"ttmmghmm","gravatar_id":"","url":"https://api.github.com/users/ttmmghmm","avatar_url":"https://avatars.githubusercontent.com/u/10178018?"},"repo":{"id":28507874,"name":"ttmmghmm/ttmmghmm.github.com","url":"https://api.github.com/repos/ttmmghmm/ttmmghmm.github.com"},"payload":{"push_id":536868047,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"036dd4093ee77e801b6d30eef1f4b1594ce3ce07","before":"425e3da3f7dcff50f1a8455cdc2341dd5036980d","commits":[{"sha":"036dd4093ee77e801b6d30eef1f4b1594ce3ce07","author":{"email":"2c5f8821bec2b3af783f68147735a5cd90ce01a8@gmail.com","name":"ttmmghmm"},"message":"moved icon to title","distinct":true,"url":"https://api.github.com/repos/ttmmghmm/ttmmghmm.github.com/commits/036dd4093ee77e801b6d30eef1f4b1594ce3ce07"}]},"public":true,"created_at":"2015-01-01T15:19:37Z"} +,{"id":"2489660080","type":"PushEvent","actor":{"id":304600,"login":"bijumon","gravatar_id":"","url":"https://api.github.com/users/bijumon","avatar_url":"https://avatars.githubusercontent.com/u/304600?"},"repo":{"id":11795941,"name":"bijumon/bijumon.github.io","url":"https://api.github.com/repos/bijumon/bijumon.github.io"},"payload":{"push_id":536868048,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"925785dec8c38b78808900b0f90ad929aaa226ff","before":"07fa6466f30d77225b1acfa42adee08d0f461fc4","commits":[{"sha":"925785dec8c38b78808900b0f90ad929aaa226ff","author":{"email":"66ba9b0c02f36abf0ed40cec93b2cf11109f7c3e@gmail.com","name":"Biju Punalor"},"message":"update TODO","distinct":true,"url":"https://api.github.com/repos/bijumon/bijumon.github.io/commits/925785dec8c38b78808900b0f90ad929aaa226ff"}]},"public":true,"created_at":"2015-01-01T15:19:37Z"} +,{"id":"2489660082","type":"WatchEvent","actor":{"id":6266887,"login":"Onatcer","gravatar_id":"","url":"https://api.github.com/users/Onatcer","avatar_url":"https://avatars.githubusercontent.com/u/6266887?"},"repo":{"id":26316966,"name":"staltz/cycle","url":"https://api.github.com/repos/staltz/cycle"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:19:38Z"} +,{"id":"2489660083","type":"PullRequestEvent","actor":{"id":2308,"login":"Frost","gravatar_id":"","url":"https://api.github.com/users/Frost","avatar_url":"https://avatars.githubusercontent.com/u/2308?"},"repo":{"id":1795424,"name":"datasektionen/cashflow","url":"https://api.github.com/repos/datasektionen/cashflow"},"payload":{"action":"opened","number":130,"pull_request":{"url":"https://api.github.com/repos/datasektionen/cashflow/pulls/130","id":26743916,"html_url":"https://github.com/datasektionen/cashflow/pull/130","diff_url":"https://github.com/datasektionen/cashflow/pull/130.diff","patch_url":"https://github.com/datasektionen/cashflow/pull/130.patch","issue_url":"https://api.github.com/repos/datasektionen/cashflow/issues/130","number":130,"state":"open","locked":false,"title":"Tidy up budget controller","user":{"login":"Frost","id":2308,"avatar_url":"https://avatars.githubusercontent.com/u/2308?v=3","gravatar_id":"","url":"https://api.github.com/users/Frost","html_url":"https://github.com/Frost","followers_url":"https://api.github.com/users/Frost/followers","following_url":"https://api.github.com/users/Frost/following{/other_user}","gists_url":"https://api.github.com/users/Frost/gists{/gist_id}","starred_url":"https://api.github.com/users/Frost/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Frost/subscriptions","organizations_url":"https://api.github.com/users/Frost/orgs","repos_url":"https://api.github.com/users/Frost/repos","events_url":"https://api.github.com/users/Frost/events{/privacy}","received_events_url":"https://api.github.com/users/Frost/received_events","type":"User","site_admin":false},"body":"I tidied up `BudgetController#update` to be less repetitive. However, this change also introduces a minor change in behavior:\r\n\r\nIf either a budget post or a budget row value sent to `BudgetController#update` fails, none of the changes will be made.\r\n\r\n* `BudgetRow#sum` must not be negative\r\n* DRY up `BudgetController#update`\r\n* Tests for `BudgetController#update` rollbacks\r\n* `BudgetPost#mage_arrangement_number` must exist\r\n","created_at":"2015-01-01T15:19:37Z","updated_at":"2015-01-01T15:19:37Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/datasektionen/cashflow/pulls/130/commits","review_comments_url":"https://api.github.com/repos/datasektionen/cashflow/pulls/130/comments","review_comment_url":"https://api.github.com/repos/datasektionen/cashflow/pulls/comments/{number}","comments_url":"https://api.github.com/repos/datasektionen/cashflow/issues/130/comments","statuses_url":"https://api.github.com/repos/datasektionen/cashflow/statuses/d27901927966292678f8cbd7be5ed5a777334bc3","head":{"label":"datasektionen:tidy-up-budget-controller","ref":"tidy-up-budget-controller","sha":"d27901927966292678f8cbd7be5ed5a777334bc3","user":{"login":"datasektionen","id":793965,"avatar_url":"https://avatars.githubusercontent.com/u/793965?v=3","gravatar_id":"","url":"https://api.github.com/users/datasektionen","html_url":"https://github.com/datasektionen","followers_url":"https://api.github.com/users/datasektionen/followers","following_url":"https://api.github.com/users/datasektionen/following{/other_user}","gists_url":"https://api.github.com/users/datasektionen/gists{/gist_id}","starred_url":"https://api.github.com/users/datasektionen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/datasektionen/subscriptions","organizations_url":"https://api.github.com/users/datasektionen/orgs","repos_url":"https://api.github.com/users/datasektionen/repos","events_url":"https://api.github.com/users/datasektionen/events{/privacy}","received_events_url":"https://api.github.com/users/datasektionen/received_events","type":"Organization","site_admin":false},"repo":{"id":1795424,"name":"cashflow","full_name":"datasektionen/cashflow","owner":{"login":"datasektionen","id":793965,"avatar_url":"https://avatars.githubusercontent.com/u/793965?v=3","gravatar_id":"","url":"https://api.github.com/users/datasektionen","html_url":"https://github.com/datasektionen","followers_url":"https://api.github.com/users/datasektionen/followers","following_url":"https://api.github.com/users/datasektionen/following{/other_user}","gists_url":"https://api.github.com/users/datasektionen/gists{/gist_id}","starred_url":"https://api.github.com/users/datasektionen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/datasektionen/subscriptions","organizations_url":"https://api.github.com/users/datasektionen/orgs","repos_url":"https://api.github.com/users/datasektionen/repos","events_url":"https://api.github.com/users/datasektionen/events{/privacy}","received_events_url":"https://api.github.com/users/datasektionen/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/datasektionen/cashflow","description":"Inköp/skuld-hantering","fork":false,"url":"https://api.github.com/repos/datasektionen/cashflow","forks_url":"https://api.github.com/repos/datasektionen/cashflow/forks","keys_url":"https://api.github.com/repos/datasektionen/cashflow/keys{/key_id}","collaborators_url":"https://api.github.com/repos/datasektionen/cashflow/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/datasektionen/cashflow/teams","hooks_url":"https://api.github.com/repos/datasektionen/cashflow/hooks","issue_events_url":"https://api.github.com/repos/datasektionen/cashflow/issues/events{/number}","events_url":"https://api.github.com/repos/datasektionen/cashflow/events","assignees_url":"https://api.github.com/repos/datasektionen/cashflow/assignees{/user}","branches_url":"https://api.github.com/repos/datasektionen/cashflow/branches{/branch}","tags_url":"https://api.github.com/repos/datasektionen/cashflow/tags","blobs_url":"https://api.github.com/repos/datasektionen/cashflow/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/datasektionen/cashflow/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/datasektionen/cashflow/git/refs{/sha}","trees_url":"https://api.github.com/repos/datasektionen/cashflow/git/trees{/sha}","statuses_url":"https://api.github.com/repos/datasektionen/cashflow/statuses/{sha}","languages_url":"https://api.github.com/repos/datasektionen/cashflow/languages","stargazers_url":"https://api.github.com/repos/datasektionen/cashflow/stargazers","contributors_url":"https://api.github.com/repos/datasektionen/cashflow/contributors","subscribers_url":"https://api.github.com/repos/datasektionen/cashflow/subscribers","subscription_url":"https://api.github.com/repos/datasektionen/cashflow/subscription","commits_url":"https://api.github.com/repos/datasektionen/cashflow/commits{/sha}","git_commits_url":"https://api.github.com/repos/datasektionen/cashflow/git/commits{/sha}","comments_url":"https://api.github.com/repos/datasektionen/cashflow/comments{/number}","issue_comment_url":"https://api.github.com/repos/datasektionen/cashflow/issues/comments/{number}","contents_url":"https://api.github.com/repos/datasektionen/cashflow/contents/{+path}","compare_url":"https://api.github.com/repos/datasektionen/cashflow/compare/{base}...{head}","merges_url":"https://api.github.com/repos/datasektionen/cashflow/merges","archive_url":"https://api.github.com/repos/datasektionen/cashflow/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/datasektionen/cashflow/downloads","issues_url":"https://api.github.com/repos/datasektionen/cashflow/issues{/number}","pulls_url":"https://api.github.com/repos/datasektionen/cashflow/pulls{/number}","milestones_url":"https://api.github.com/repos/datasektionen/cashflow/milestones{/number}","notifications_url":"https://api.github.com/repos/datasektionen/cashflow/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/datasektionen/cashflow/labels{/name}","releases_url":"https://api.github.com/repos/datasektionen/cashflow/releases{/id}","created_at":"2011-05-24T20:06:22Z","updated_at":"2014-12-29T10:28:00Z","pushed_at":"2015-01-01T15:16:43Z","git_url":"git://github.com/datasektionen/cashflow.git","ssh_url":"git@github.com:datasektionen/cashflow.git","clone_url":"https://github.com/datasektionen/cashflow.git","svn_url":"https://github.com/datasektionen/cashflow","homepage":"","size":2331,"stargazers_count":4,"watchers_count":4,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":27,"forks":1,"open_issues":27,"watchers":4,"default_branch":"master"}},"base":{"label":"datasektionen:master","ref":"master","sha":"65fdb34921a60eb0864dbb3d5bbafa2e6dffa32a","user":{"login":"datasektionen","id":793965,"avatar_url":"https://avatars.githubusercontent.com/u/793965?v=3","gravatar_id":"","url":"https://api.github.com/users/datasektionen","html_url":"https://github.com/datasektionen","followers_url":"https://api.github.com/users/datasektionen/followers","following_url":"https://api.github.com/users/datasektionen/following{/other_user}","gists_url":"https://api.github.com/users/datasektionen/gists{/gist_id}","starred_url":"https://api.github.com/users/datasektionen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/datasektionen/subscriptions","organizations_url":"https://api.github.com/users/datasektionen/orgs","repos_url":"https://api.github.com/users/datasektionen/repos","events_url":"https://api.github.com/users/datasektionen/events{/privacy}","received_events_url":"https://api.github.com/users/datasektionen/received_events","type":"Organization","site_admin":false},"repo":{"id":1795424,"name":"cashflow","full_name":"datasektionen/cashflow","owner":{"login":"datasektionen","id":793965,"avatar_url":"https://avatars.githubusercontent.com/u/793965?v=3","gravatar_id":"","url":"https://api.github.com/users/datasektionen","html_url":"https://github.com/datasektionen","followers_url":"https://api.github.com/users/datasektionen/followers","following_url":"https://api.github.com/users/datasektionen/following{/other_user}","gists_url":"https://api.github.com/users/datasektionen/gists{/gist_id}","starred_url":"https://api.github.com/users/datasektionen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/datasektionen/subscriptions","organizations_url":"https://api.github.com/users/datasektionen/orgs","repos_url":"https://api.github.com/users/datasektionen/repos","events_url":"https://api.github.com/users/datasektionen/events{/privacy}","received_events_url":"https://api.github.com/users/datasektionen/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/datasektionen/cashflow","description":"Inköp/skuld-hantering","fork":false,"url":"https://api.github.com/repos/datasektionen/cashflow","forks_url":"https://api.github.com/repos/datasektionen/cashflow/forks","keys_url":"https://api.github.com/repos/datasektionen/cashflow/keys{/key_id}","collaborators_url":"https://api.github.com/repos/datasektionen/cashflow/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/datasektionen/cashflow/teams","hooks_url":"https://api.github.com/repos/datasektionen/cashflow/hooks","issue_events_url":"https://api.github.com/repos/datasektionen/cashflow/issues/events{/number}","events_url":"https://api.github.com/repos/datasektionen/cashflow/events","assignees_url":"https://api.github.com/repos/datasektionen/cashflow/assignees{/user}","branches_url":"https://api.github.com/repos/datasektionen/cashflow/branches{/branch}","tags_url":"https://api.github.com/repos/datasektionen/cashflow/tags","blobs_url":"https://api.github.com/repos/datasektionen/cashflow/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/datasektionen/cashflow/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/datasektionen/cashflow/git/refs{/sha}","trees_url":"https://api.github.com/repos/datasektionen/cashflow/git/trees{/sha}","statuses_url":"https://api.github.com/repos/datasektionen/cashflow/statuses/{sha}","languages_url":"https://api.github.com/repos/datasektionen/cashflow/languages","stargazers_url":"https://api.github.com/repos/datasektionen/cashflow/stargazers","contributors_url":"https://api.github.com/repos/datasektionen/cashflow/contributors","subscribers_url":"https://api.github.com/repos/datasektionen/cashflow/subscribers","subscription_url":"https://api.github.com/repos/datasektionen/cashflow/subscription","commits_url":"https://api.github.com/repos/datasektionen/cashflow/commits{/sha}","git_commits_url":"https://api.github.com/repos/datasektionen/cashflow/git/commits{/sha}","comments_url":"https://api.github.com/repos/datasektionen/cashflow/comments{/number}","issue_comment_url":"https://api.github.com/repos/datasektionen/cashflow/issues/comments/{number}","contents_url":"https://api.github.com/repos/datasektionen/cashflow/contents/{+path}","compare_url":"https://api.github.com/repos/datasektionen/cashflow/compare/{base}...{head}","merges_url":"https://api.github.com/repos/datasektionen/cashflow/merges","archive_url":"https://api.github.com/repos/datasektionen/cashflow/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/datasektionen/cashflow/downloads","issues_url":"https://api.github.com/repos/datasektionen/cashflow/issues{/number}","pulls_url":"https://api.github.com/repos/datasektionen/cashflow/pulls{/number}","milestones_url":"https://api.github.com/repos/datasektionen/cashflow/milestones{/number}","notifications_url":"https://api.github.com/repos/datasektionen/cashflow/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/datasektionen/cashflow/labels{/name}","releases_url":"https://api.github.com/repos/datasektionen/cashflow/releases{/id}","created_at":"2011-05-24T20:06:22Z","updated_at":"2014-12-29T10:28:00Z","pushed_at":"2015-01-01T15:16:43Z","git_url":"git://github.com/datasektionen/cashflow.git","ssh_url":"git@github.com:datasektionen/cashflow.git","clone_url":"https://github.com/datasektionen/cashflow.git","svn_url":"https://github.com/datasektionen/cashflow","homepage":"","size":2331,"stargazers_count":4,"watchers_count":4,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":27,"forks":1,"open_issues":27,"watchers":4,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/130"},"html":{"href":"https://github.com/datasektionen/cashflow/pull/130"},"issue":{"href":"https://api.github.com/repos/datasektionen/cashflow/issues/130"},"comments":{"href":"https://api.github.com/repos/datasektionen/cashflow/issues/130/comments"},"review_comments":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/130/comments"},"review_comment":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/130/commits"},"statuses":{"href":"https://api.github.com/repos/datasektionen/cashflow/statuses/d27901927966292678f8cbd7be5ed5a777334bc3"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":3,"additions":72,"deletions":35,"changed_files":5}},"public":true,"created_at":"2015-01-01T15:19:38Z","org":{"id":793965,"login":"datasektionen","gravatar_id":"","url":"https://api.github.com/orgs/datasektionen","avatar_url":"https://avatars.githubusercontent.com/u/793965?"}} +,{"id":"2489660084","type":"WatchEvent","actor":{"id":1832751,"login":"gchudnov","gravatar_id":"","url":"https://api.github.com/users/gchudnov","avatar_url":"https://avatars.githubusercontent.com/u/1832751?"},"repo":{"id":25682021,"name":"kanytu/android-material-drawer-template","url":"https://api.github.com/repos/kanytu/android-material-drawer-template"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:19:38Z"} +,{"id":"2489660087","type":"PushEvent","actor":{"id":2339879,"login":"zandbelt","gravatar_id":"","url":"https://api.github.com/users/zandbelt","avatar_url":"https://avatars.githubusercontent.com/u/2339879?"},"repo":{"id":18187508,"name":"pingidentity/mod_auth_openidc","url":"https://api.github.com/repos/pingidentity/mod_auth_openidc"},"payload":{"push_id":536868049,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"52127d8342bdfb634005255417c0d35248eebe18","before":"77ad44e6a54d7e7e85673bb4e49992d514625243","commits":[{"sha":"9e6a8ec708a1244ab1cb72d614241bc7fb829863","author":{"email":"d02040d5d6d13dc0de459967cf639e0c2d3c2e77@pingidentity.com","name":"Hans Zandbelt"},"message":"update copyright to 2015","distinct":true,"url":"https://api.github.com/repos/pingidentity/mod_auth_openidc/commits/9e6a8ec708a1244ab1cb72d614241bc7fb829863"},{"sha":"52127d8342bdfb634005255417c0d35248eebe18","author":{"email":"d02040d5d6d13dc0de459967cf639e0c2d3c2e77@pingidentity.com","name":"Hans Zandbelt"},"message":"correct expiry debug printout; use json_int_t (seconds) for exp/iat","distinct":true,"url":"https://api.github.com/repos/pingidentity/mod_auth_openidc/commits/52127d8342bdfb634005255417c0d35248eebe18"}]},"public":true,"created_at":"2015-01-01T15:19:38Z","org":{"id":580170,"login":"pingidentity","gravatar_id":"","url":"https://api.github.com/orgs/pingidentity","avatar_url":"https://avatars.githubusercontent.com/u/580170?"}} +,{"id":"2489660088","type":"PullRequestEvent","actor":{"id":2798961,"login":"stijnblommerde","gravatar_id":"","url":"https://api.github.com/users/stijnblommerde","avatar_url":"https://avatars.githubusercontent.com/u/2798961?"},"repo":{"id":28663952,"name":"stijnblommerde/recipes","url":"https://api.github.com/repos/stijnblommerde/recipes"},"payload":{"action":"opened","number":1,"pull_request":{"url":"https://api.github.com/repos/stijnblommerde/recipes/pulls/1","id":26743917,"html_url":"https://github.com/stijnblommerde/recipes/pull/1","diff_url":"https://github.com/stijnblommerde/recipes/pull/1.diff","patch_url":"https://github.com/stijnblommerde/recipes/pull/1.patch","issue_url":"https://api.github.com/repos/stijnblommerde/recipes/issues/1","number":1,"state":"open","locked":false,"title":"change oil","user":{"login":"stijnblommerde","id":2798961,"avatar_url":"https://avatars.githubusercontent.com/u/2798961?v=3","gravatar_id":"","url":"https://api.github.com/users/stijnblommerde","html_url":"https://github.com/stijnblommerde","followers_url":"https://api.github.com/users/stijnblommerde/followers","following_url":"https://api.github.com/users/stijnblommerde/following{/other_user}","gists_url":"https://api.github.com/users/stijnblommerde/gists{/gist_id}","starred_url":"https://api.github.com/users/stijnblommerde/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stijnblommerde/subscriptions","organizations_url":"https://api.github.com/users/stijnblommerde/orgs","repos_url":"https://api.github.com/users/stijnblommerde/repos","events_url":"https://api.github.com/users/stijnblommerde/events{/privacy}","received_events_url":"https://api.github.com/users/stijnblommerde/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:19:39Z","updated_at":"2015-01-01T15:19:39Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/stijnblommerde/recipes/pulls/1/commits","review_comments_url":"https://api.github.com/repos/stijnblommerde/recipes/pulls/1/comments","review_comment_url":"https://api.github.com/repos/stijnblommerde/recipes/pulls/comments/{number}","comments_url":"https://api.github.com/repos/stijnblommerde/recipes/issues/1/comments","statuses_url":"https://api.github.com/repos/stijnblommerde/recipes/statuses/9c04723fddd59c0135fac41505b09e8096b0a64b","head":{"label":"stijnblommerde:different-oil","ref":"different-oil","sha":"9c04723fddd59c0135fac41505b09e8096b0a64b","user":{"login":"stijnblommerde","id":2798961,"avatar_url":"https://avatars.githubusercontent.com/u/2798961?v=3","gravatar_id":"","url":"https://api.github.com/users/stijnblommerde","html_url":"https://github.com/stijnblommerde","followers_url":"https://api.github.com/users/stijnblommerde/followers","following_url":"https://api.github.com/users/stijnblommerde/following{/other_user}","gists_url":"https://api.github.com/users/stijnblommerde/gists{/gist_id}","starred_url":"https://api.github.com/users/stijnblommerde/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stijnblommerde/subscriptions","organizations_url":"https://api.github.com/users/stijnblommerde/orgs","repos_url":"https://api.github.com/users/stijnblommerde/repos","events_url":"https://api.github.com/users/stijnblommerde/events{/privacy}","received_events_url":"https://api.github.com/users/stijnblommerde/received_events","type":"User","site_admin":false},"repo":{"id":28663952,"name":"recipes","full_name":"stijnblommerde/recipes","owner":{"login":"stijnblommerde","id":2798961,"avatar_url":"https://avatars.githubusercontent.com/u/2798961?v=3","gravatar_id":"","url":"https://api.github.com/users/stijnblommerde","html_url":"https://github.com/stijnblommerde","followers_url":"https://api.github.com/users/stijnblommerde/followers","following_url":"https://api.github.com/users/stijnblommerde/following{/other_user}","gists_url":"https://api.github.com/users/stijnblommerde/gists{/gist_id}","starred_url":"https://api.github.com/users/stijnblommerde/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stijnblommerde/subscriptions","organizations_url":"https://api.github.com/users/stijnblommerde/orgs","repos_url":"https://api.github.com/users/stijnblommerde/repos","events_url":"https://api.github.com/users/stijnblommerde/events{/privacy}","received_events_url":"https://api.github.com/users/stijnblommerde/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/stijnblommerde/recipes","description":"","fork":true,"url":"https://api.github.com/repos/stijnblommerde/recipes","forks_url":"https://api.github.com/repos/stijnblommerde/recipes/forks","keys_url":"https://api.github.com/repos/stijnblommerde/recipes/keys{/key_id}","collaborators_url":"https://api.github.com/repos/stijnblommerde/recipes/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/stijnblommerde/recipes/teams","hooks_url":"https://api.github.com/repos/stijnblommerde/recipes/hooks","issue_events_url":"https://api.github.com/repos/stijnblommerde/recipes/issues/events{/number}","events_url":"https://api.github.com/repos/stijnblommerde/recipes/events","assignees_url":"https://api.github.com/repos/stijnblommerde/recipes/assignees{/user}","branches_url":"https://api.github.com/repos/stijnblommerde/recipes/branches{/branch}","tags_url":"https://api.github.com/repos/stijnblommerde/recipes/tags","blobs_url":"https://api.github.com/repos/stijnblommerde/recipes/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/stijnblommerde/recipes/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/stijnblommerde/recipes/git/refs{/sha}","trees_url":"https://api.github.com/repos/stijnblommerde/recipes/git/trees{/sha}","statuses_url":"https://api.github.com/repos/stijnblommerde/recipes/statuses/{sha}","languages_url":"https://api.github.com/repos/stijnblommerde/recipes/languages","stargazers_url":"https://api.github.com/repos/stijnblommerde/recipes/stargazers","contributors_url":"https://api.github.com/repos/stijnblommerde/recipes/contributors","subscribers_url":"https://api.github.com/repos/stijnblommerde/recipes/subscribers","subscription_url":"https://api.github.com/repos/stijnblommerde/recipes/subscription","commits_url":"https://api.github.com/repos/stijnblommerde/recipes/commits{/sha}","git_commits_url":"https://api.github.com/repos/stijnblommerde/recipes/git/commits{/sha}","comments_url":"https://api.github.com/repos/stijnblommerde/recipes/comments{/number}","issue_comment_url":"https://api.github.com/repos/stijnblommerde/recipes/issues/comments/{number}","contents_url":"https://api.github.com/repos/stijnblommerde/recipes/contents/{+path}","compare_url":"https://api.github.com/repos/stijnblommerde/recipes/compare/{base}...{head}","merges_url":"https://api.github.com/repos/stijnblommerde/recipes/merges","archive_url":"https://api.github.com/repos/stijnblommerde/recipes/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/stijnblommerde/recipes/downloads","issues_url":"https://api.github.com/repos/stijnblommerde/recipes/issues{/number}","pulls_url":"https://api.github.com/repos/stijnblommerde/recipes/pulls{/number}","milestones_url":"https://api.github.com/repos/stijnblommerde/recipes/milestones{/number}","notifications_url":"https://api.github.com/repos/stijnblommerde/recipes/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/stijnblommerde/recipes/labels{/name}","releases_url":"https://api.github.com/repos/stijnblommerde/recipes/releases{/id}","created_at":"2014-12-31T10:58:09Z","updated_at":"2014-12-29T14:27:00Z","pushed_at":"2015-01-01T15:09:13Z","git_url":"git://github.com/stijnblommerde/recipes.git","ssh_url":"git@github.com:stijnblommerde/recipes.git","clone_url":"https://github.com/stijnblommerde/recipes.git","svn_url":"https://github.com/stijnblommerde/recipes","homepage":null,"size":89,"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"}},"base":{"label":"stijnblommerde:master","ref":"master","sha":"52acf0dd45225d4a69eb875c00be97bb480df513","user":{"login":"stijnblommerde","id":2798961,"avatar_url":"https://avatars.githubusercontent.com/u/2798961?v=3","gravatar_id":"","url":"https://api.github.com/users/stijnblommerde","html_url":"https://github.com/stijnblommerde","followers_url":"https://api.github.com/users/stijnblommerde/followers","following_url":"https://api.github.com/users/stijnblommerde/following{/other_user}","gists_url":"https://api.github.com/users/stijnblommerde/gists{/gist_id}","starred_url":"https://api.github.com/users/stijnblommerde/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stijnblommerde/subscriptions","organizations_url":"https://api.github.com/users/stijnblommerde/orgs","repos_url":"https://api.github.com/users/stijnblommerde/repos","events_url":"https://api.github.com/users/stijnblommerde/events{/privacy}","received_events_url":"https://api.github.com/users/stijnblommerde/received_events","type":"User","site_admin":false},"repo":{"id":28663952,"name":"recipes","full_name":"stijnblommerde/recipes","owner":{"login":"stijnblommerde","id":2798961,"avatar_url":"https://avatars.githubusercontent.com/u/2798961?v=3","gravatar_id":"","url":"https://api.github.com/users/stijnblommerde","html_url":"https://github.com/stijnblommerde","followers_url":"https://api.github.com/users/stijnblommerde/followers","following_url":"https://api.github.com/users/stijnblommerde/following{/other_user}","gists_url":"https://api.github.com/users/stijnblommerde/gists{/gist_id}","starred_url":"https://api.github.com/users/stijnblommerde/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stijnblommerde/subscriptions","organizations_url":"https://api.github.com/users/stijnblommerde/orgs","repos_url":"https://api.github.com/users/stijnblommerde/repos","events_url":"https://api.github.com/users/stijnblommerde/events{/privacy}","received_events_url":"https://api.github.com/users/stijnblommerde/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/stijnblommerde/recipes","description":"","fork":true,"url":"https://api.github.com/repos/stijnblommerde/recipes","forks_url":"https://api.github.com/repos/stijnblommerde/recipes/forks","keys_url":"https://api.github.com/repos/stijnblommerde/recipes/keys{/key_id}","collaborators_url":"https://api.github.com/repos/stijnblommerde/recipes/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/stijnblommerde/recipes/teams","hooks_url":"https://api.github.com/repos/stijnblommerde/recipes/hooks","issue_events_url":"https://api.github.com/repos/stijnblommerde/recipes/issues/events{/number}","events_url":"https://api.github.com/repos/stijnblommerde/recipes/events","assignees_url":"https://api.github.com/repos/stijnblommerde/recipes/assignees{/user}","branches_url":"https://api.github.com/repos/stijnblommerde/recipes/branches{/branch}","tags_url":"https://api.github.com/repos/stijnblommerde/recipes/tags","blobs_url":"https://api.github.com/repos/stijnblommerde/recipes/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/stijnblommerde/recipes/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/stijnblommerde/recipes/git/refs{/sha}","trees_url":"https://api.github.com/repos/stijnblommerde/recipes/git/trees{/sha}","statuses_url":"https://api.github.com/repos/stijnblommerde/recipes/statuses/{sha}","languages_url":"https://api.github.com/repos/stijnblommerde/recipes/languages","stargazers_url":"https://api.github.com/repos/stijnblommerde/recipes/stargazers","contributors_url":"https://api.github.com/repos/stijnblommerde/recipes/contributors","subscribers_url":"https://api.github.com/repos/stijnblommerde/recipes/subscribers","subscription_url":"https://api.github.com/repos/stijnblommerde/recipes/subscription","commits_url":"https://api.github.com/repos/stijnblommerde/recipes/commits{/sha}","git_commits_url":"https://api.github.com/repos/stijnblommerde/recipes/git/commits{/sha}","comments_url":"https://api.github.com/repos/stijnblommerde/recipes/comments{/number}","issue_comment_url":"https://api.github.com/repos/stijnblommerde/recipes/issues/comments/{number}","contents_url":"https://api.github.com/repos/stijnblommerde/recipes/contents/{+path}","compare_url":"https://api.github.com/repos/stijnblommerde/recipes/compare/{base}...{head}","merges_url":"https://api.github.com/repos/stijnblommerde/recipes/merges","archive_url":"https://api.github.com/repos/stijnblommerde/recipes/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/stijnblommerde/recipes/downloads","issues_url":"https://api.github.com/repos/stijnblommerde/recipes/issues{/number}","pulls_url":"https://api.github.com/repos/stijnblommerde/recipes/pulls{/number}","milestones_url":"https://api.github.com/repos/stijnblommerde/recipes/milestones{/number}","notifications_url":"https://api.github.com/repos/stijnblommerde/recipes/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/stijnblommerde/recipes/labels{/name}","releases_url":"https://api.github.com/repos/stijnblommerde/recipes/releases{/id}","created_at":"2014-12-31T10:58:09Z","updated_at":"2014-12-29T14:27:00Z","pushed_at":"2015-01-01T15:09:13Z","git_url":"git://github.com/stijnblommerde/recipes.git","ssh_url":"git@github.com:stijnblommerde/recipes.git","clone_url":"https://github.com/stijnblommerde/recipes.git","svn_url":"https://github.com/stijnblommerde/recipes","homepage":null,"size":89,"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/stijnblommerde/recipes/pulls/1"},"html":{"href":"https://github.com/stijnblommerde/recipes/pull/1"},"issue":{"href":"https://api.github.com/repos/stijnblommerde/recipes/issues/1"},"comments":{"href":"https://api.github.com/repos/stijnblommerde/recipes/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/stijnblommerde/recipes/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/stijnblommerde/recipes/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/stijnblommerde/recipes/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/stijnblommerde/recipes/statuses/9c04723fddd59c0135fac41505b09e8096b0a64b"}},"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:19:39Z"} +,{"id":"2489660089","type":"ReleaseEvent","actor":{"id":4419146,"login":"hex7c0","gravatar_id":"","url":"https://api.github.com/users/hex7c0","avatar_url":"https://avatars.githubusercontent.com/u/4419146?"},"repo":{"id":21327694,"name":"hex7c0/top-vhost","url":"https://api.github.com/repos/hex7c0/top-vhost"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/hex7c0/top-vhost/releases/818702","assets_url":"https://api.github.com/repos/hex7c0/top-vhost/releases/818702/assets","upload_url":"https://uploads.github.com/repos/hex7c0/top-vhost/releases/818702/assets{?name}","html_url":"https://github.com/hex7c0/top-vhost/releases/tag/1.7.18","id":818702,"tag_name":"1.7.18","target_commitish":"master","name":"v1.7.18","draft":false,"author":{"login":"hex7c0","id":4419146,"avatar_url":"https://avatars.githubusercontent.com/u/4419146?v=3","gravatar_id":"","url":"https://api.github.com/users/hex7c0","html_url":"https://github.com/hex7c0","followers_url":"https://api.github.com/users/hex7c0/followers","following_url":"https://api.github.com/users/hex7c0/following{/other_user}","gists_url":"https://api.github.com/users/hex7c0/gists{/gist_id}","starred_url":"https://api.github.com/users/hex7c0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hex7c0/subscriptions","organizations_url":"https://api.github.com/users/hex7c0/orgs","repos_url":"https://api.github.com/users/hex7c0/repos","events_url":"https://api.github.com/users/hex7c0/events{/privacy}","received_events_url":"https://api.github.com/users/hex7c0/received_events","type":"User","site_admin":false},"prerelease":false,"created_at":"2015-01-01T15:14:45Z","published_at":"2015-01-01T15:19:39Z","assets":[],"tarball_url":"https://api.github.com/repos/hex7c0/top-vhost/tarball/1.7.18","zipball_url":"https://api.github.com/repos/hex7c0/top-vhost/zipball/1.7.18","body":"* Update devDependencies"}},"public":true,"created_at":"2015-01-01T15:19:39Z"} +,{"id":"2489660090","type":"CreateEvent","actor":{"id":4419146,"login":"hex7c0","gravatar_id":"","url":"https://api.github.com/users/hex7c0","avatar_url":"https://avatars.githubusercontent.com/u/4419146?"},"repo":{"id":21327694,"name":"hex7c0/top-vhost","url":"https://api.github.com/repos/hex7c0/top-vhost"},"payload":{"ref":"1.7.18","ref_type":"tag","master_branch":"master","description":"top-down virtual host for Nodejs","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:19:39Z"} +,{"id":"2489660092","type":"CreateEvent","actor":{"id":10234079,"login":"viralgraphics","gravatar_id":"","url":"https://api.github.com/users/viralgraphics","avatar_url":"https://avatars.githubusercontent.com/u/10234079?"},"repo":{"id":28688957,"name":"viralgraphics/attachmets","url":"https://api.github.com/repos/viralgraphics/attachmets"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:19:40Z"} +,{"id":"2489660093","type":"CreateEvent","actor":{"id":4081044,"login":"sosohu","gravatar_id":"","url":"https://api.github.com/users/sosohu","avatar_url":"https://avatars.githubusercontent.com/u/4081044?"},"repo":{"id":28688948,"name":"sosohu/latex","url":"https://api.github.com/repos/sosohu/latex"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"My personal latex template, such as ppt, article and book","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:19:40Z"} +,{"id":"2489660094","type":"PushEvent","actor":{"id":9769086,"login":"sporter69","gravatar_id":"","url":"https://api.github.com/users/sporter69","avatar_url":"https://avatars.githubusercontent.com/u/9769086?"},"repo":{"id":28312912,"name":"lcrespom/ycs","url":"https://api.github.com/repos/lcrespom/ycs"},"payload":{"push_id":536868050,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9fc540cdb6475a3ddb7a7ceeb9a0a735f7307003","before":"7d757fd6d6f20bed1ef724f92be9a77c14f814d2","commits":[{"sha":"9fc540cdb6475a3ddb7a7ceeb9a0a735f7307003","author":{"email":"3c3fae4eb0fb8d0e50830db4a8590e41d7714b5a@gmx.com","name":"admin@mydocumenta.com"},"message":"TextosDAO","distinct":true,"url":"https://api.github.com/repos/lcrespom/ycs/commits/9fc540cdb6475a3ddb7a7ceeb9a0a735f7307003"}]},"public":true,"created_at":"2015-01-01T15:19:40Z"} +,{"id":"2489660096","type":"PushEvent","actor":{"id":200609,"login":"assertchris","gravatar_id":"","url":"https://api.github.com/users/assertchris","avatar_url":"https://avatars.githubusercontent.com/u/200609?"},"repo":{"id":28626349,"name":"revolvephp/framework","url":"https://api.github.com/repos/revolvephp/framework"},"payload":{"push_id":536868053,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"c42c6ca7a50b8cca8ef20663180189bd26657e13","before":"db4fab76c5a0c398d1c15e7081104d454acdca09","commits":[{"sha":"c42c6ca7a50b8cca8ef20663180189bd26657e13","author":{"email":"e6cc0fb2b8dad4110ef62e9a33e5a8aa4e0f86d7@travis-ci.org","name":"Travis"},"message":"Travis pushed coverage of b4c951e5e36f12450f8f39b345f17c00dcdc79be@master to gh-pages","distinct":true,"url":"https://api.github.com/repos/revolvephp/framework/commits/c42c6ca7a50b8cca8ef20663180189bd26657e13"}]},"public":true,"created_at":"2015-01-01T15:19:40Z","org":{"id":10348183,"login":"revolvephp","gravatar_id":"","url":"https://api.github.com/orgs/revolvephp","avatar_url":"https://avatars.githubusercontent.com/u/10348183?"}} +,{"id":"2489660110","type":"PullRequestEvent","actor":{"id":4894735,"login":"MaxRink","gravatar_id":"","url":"https://api.github.com/users/MaxRink","avatar_url":"https://avatars.githubusercontent.com/u/4894735?"},"repo":{"id":28688863,"name":"MaxRink/seat","url":"https://api.github.com/repos/MaxRink/seat"},"payload":{"action":"opened","number":3,"pull_request":{"url":"https://api.github.com/repos/MaxRink/seat/pulls/3","id":26743919,"html_url":"https://github.com/MaxRink/seat/pull/3","diff_url":"https://github.com/MaxRink/seat/pull/3.diff","patch_url":"https://github.com/MaxRink/seat/pull/3.patch","issue_url":"https://api.github.com/repos/MaxRink/seat/issues/3","number":3,"state":"open","locked":false,"title":"Industry","user":{"login":"MaxRink","id":4894735,"avatar_url":"https://avatars.githubusercontent.com/u/4894735?v=3","gravatar_id":"","url":"https://api.github.com/users/MaxRink","html_url":"https://github.com/MaxRink","followers_url":"https://api.github.com/users/MaxRink/followers","following_url":"https://api.github.com/users/MaxRink/following{/other_user}","gists_url":"https://api.github.com/users/MaxRink/gists{/gist_id}","starred_url":"https://api.github.com/users/MaxRink/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MaxRink/subscriptions","organizations_url":"https://api.github.com/users/MaxRink/orgs","repos_url":"https://api.github.com/users/MaxRink/repos","events_url":"https://api.github.com/users/MaxRink/events{/privacy}","received_events_url":"https://api.github.com/users/MaxRink/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:19:42Z","updated_at":"2015-01-01T15:19:42Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/MaxRink/seat/pulls/3/commits","review_comments_url":"https://api.github.com/repos/MaxRink/seat/pulls/3/comments","review_comment_url":"https://api.github.com/repos/MaxRink/seat/pulls/comments/{number}","comments_url":"https://api.github.com/repos/MaxRink/seat/issues/3/comments","statuses_url":"https://api.github.com/repos/MaxRink/seat/statuses/b8fee924e52d0563824b9ace9a7e412f598d948b","head":{"label":"warlof:industry","ref":"industry","sha":"b8fee924e52d0563824b9ace9a7e412f598d948b","user":{"login":"warlof","id":648753,"avatar_url":"https://avatars.githubusercontent.com/u/648753?v=3","gravatar_id":"","url":"https://api.github.com/users/warlof","html_url":"https://github.com/warlof","followers_url":"https://api.github.com/users/warlof/followers","following_url":"https://api.github.com/users/warlof/following{/other_user}","gists_url":"https://api.github.com/users/warlof/gists{/gist_id}","starred_url":"https://api.github.com/users/warlof/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/warlof/subscriptions","organizations_url":"https://api.github.com/users/warlof/orgs","repos_url":"https://api.github.com/users/warlof/repos","events_url":"https://api.github.com/users/warlof/events{/privacy}","received_events_url":"https://api.github.com/users/warlof/received_events","type":"User","site_admin":false},"repo":{"id":25700612,"name":"seat","full_name":"warlof/seat","owner":{"login":"warlof","id":648753,"avatar_url":"https://avatars.githubusercontent.com/u/648753?v=3","gravatar_id":"","url":"https://api.github.com/users/warlof","html_url":"https://github.com/warlof","followers_url":"https://api.github.com/users/warlof/followers","following_url":"https://api.github.com/users/warlof/following{/other_user}","gists_url":"https://api.github.com/users/warlof/gists{/gist_id}","starred_url":"https://api.github.com/users/warlof/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/warlof/subscriptions","organizations_url":"https://api.github.com/users/warlof/orgs","repos_url":"https://api.github.com/users/warlof/repos","events_url":"https://api.github.com/users/warlof/events{/privacy}","received_events_url":"https://api.github.com/users/warlof/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/warlof/seat","description":"Simple (or Stupid) EVE Online API Tool","fork":true,"url":"https://api.github.com/repos/warlof/seat","forks_url":"https://api.github.com/repos/warlof/seat/forks","keys_url":"https://api.github.com/repos/warlof/seat/keys{/key_id}","collaborators_url":"https://api.github.com/repos/warlof/seat/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/warlof/seat/teams","hooks_url":"https://api.github.com/repos/warlof/seat/hooks","issue_events_url":"https://api.github.com/repos/warlof/seat/issues/events{/number}","events_url":"https://api.github.com/repos/warlof/seat/events","assignees_url":"https://api.github.com/repos/warlof/seat/assignees{/user}","branches_url":"https://api.github.com/repos/warlof/seat/branches{/branch}","tags_url":"https://api.github.com/repos/warlof/seat/tags","blobs_url":"https://api.github.com/repos/warlof/seat/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/warlof/seat/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/warlof/seat/git/refs{/sha}","trees_url":"https://api.github.com/repos/warlof/seat/git/trees{/sha}","statuses_url":"https://api.github.com/repos/warlof/seat/statuses/{sha}","languages_url":"https://api.github.com/repos/warlof/seat/languages","stargazers_url":"https://api.github.com/repos/warlof/seat/stargazers","contributors_url":"https://api.github.com/repos/warlof/seat/contributors","subscribers_url":"https://api.github.com/repos/warlof/seat/subscribers","subscription_url":"https://api.github.com/repos/warlof/seat/subscription","commits_url":"https://api.github.com/repos/warlof/seat/commits{/sha}","git_commits_url":"https://api.github.com/repos/warlof/seat/git/commits{/sha}","comments_url":"https://api.github.com/repos/warlof/seat/comments{/number}","issue_comment_url":"https://api.github.com/repos/warlof/seat/issues/comments/{number}","contents_url":"https://api.github.com/repos/warlof/seat/contents/{+path}","compare_url":"https://api.github.com/repos/warlof/seat/compare/{base}...{head}","merges_url":"https://api.github.com/repos/warlof/seat/merges","archive_url":"https://api.github.com/repos/warlof/seat/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/warlof/seat/downloads","issues_url":"https://api.github.com/repos/warlof/seat/issues{/number}","pulls_url":"https://api.github.com/repos/warlof/seat/pulls{/number}","milestones_url":"https://api.github.com/repos/warlof/seat/milestones{/number}","notifications_url":"https://api.github.com/repos/warlof/seat/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/warlof/seat/labels{/name}","releases_url":"https://api.github.com/repos/warlof/seat/releases{/id}","created_at":"2014-10-24T17:50:36Z","updated_at":"2014-11-17T13:58:52Z","pushed_at":"2014-12-28T11:17:12Z","git_url":"git://github.com/warlof/seat.git","ssh_url":"git@github.com:warlof/seat.git","clone_url":"https://github.com/warlof/seat.git","svn_url":"https://github.com/warlof/seat","homepage":"http://eve-seat.github.io/seat","size":2557,"stargazers_count":0,"watchers_count":0,"language":"PHP","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":"MaxRink:master","ref":"master","sha":"62d517153a9ff700bf4cd6884a709b5bc048c041","user":{"login":"MaxRink","id":4894735,"avatar_url":"https://avatars.githubusercontent.com/u/4894735?v=3","gravatar_id":"","url":"https://api.github.com/users/MaxRink","html_url":"https://github.com/MaxRink","followers_url":"https://api.github.com/users/MaxRink/followers","following_url":"https://api.github.com/users/MaxRink/following{/other_user}","gists_url":"https://api.github.com/users/MaxRink/gists{/gist_id}","starred_url":"https://api.github.com/users/MaxRink/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MaxRink/subscriptions","organizations_url":"https://api.github.com/users/MaxRink/orgs","repos_url":"https://api.github.com/users/MaxRink/repos","events_url":"https://api.github.com/users/MaxRink/events{/privacy}","received_events_url":"https://api.github.com/users/MaxRink/received_events","type":"User","site_admin":false},"repo":{"id":28688863,"name":"seat","full_name":"MaxRink/seat","owner":{"login":"MaxRink","id":4894735,"avatar_url":"https://avatars.githubusercontent.com/u/4894735?v=3","gravatar_id":"","url":"https://api.github.com/users/MaxRink","html_url":"https://github.com/MaxRink","followers_url":"https://api.github.com/users/MaxRink/followers","following_url":"https://api.github.com/users/MaxRink/following{/other_user}","gists_url":"https://api.github.com/users/MaxRink/gists{/gist_id}","starred_url":"https://api.github.com/users/MaxRink/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MaxRink/subscriptions","organizations_url":"https://api.github.com/users/MaxRink/orgs","repos_url":"https://api.github.com/users/MaxRink/repos","events_url":"https://api.github.com/users/MaxRink/events{/privacy}","received_events_url":"https://api.github.com/users/MaxRink/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/MaxRink/seat","description":"Simple (or Stupid) EVE Online API Tool","fork":true,"url":"https://api.github.com/repos/MaxRink/seat","forks_url":"https://api.github.com/repos/MaxRink/seat/forks","keys_url":"https://api.github.com/repos/MaxRink/seat/keys{/key_id}","collaborators_url":"https://api.github.com/repos/MaxRink/seat/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/MaxRink/seat/teams","hooks_url":"https://api.github.com/repos/MaxRink/seat/hooks","issue_events_url":"https://api.github.com/repos/MaxRink/seat/issues/events{/number}","events_url":"https://api.github.com/repos/MaxRink/seat/events","assignees_url":"https://api.github.com/repos/MaxRink/seat/assignees{/user}","branches_url":"https://api.github.com/repos/MaxRink/seat/branches{/branch}","tags_url":"https://api.github.com/repos/MaxRink/seat/tags","blobs_url":"https://api.github.com/repos/MaxRink/seat/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/MaxRink/seat/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/MaxRink/seat/git/refs{/sha}","trees_url":"https://api.github.com/repos/MaxRink/seat/git/trees{/sha}","statuses_url":"https://api.github.com/repos/MaxRink/seat/statuses/{sha}","languages_url":"https://api.github.com/repos/MaxRink/seat/languages","stargazers_url":"https://api.github.com/repos/MaxRink/seat/stargazers","contributors_url":"https://api.github.com/repos/MaxRink/seat/contributors","subscribers_url":"https://api.github.com/repos/MaxRink/seat/subscribers","subscription_url":"https://api.github.com/repos/MaxRink/seat/subscription","commits_url":"https://api.github.com/repos/MaxRink/seat/commits{/sha}","git_commits_url":"https://api.github.com/repos/MaxRink/seat/git/commits{/sha}","comments_url":"https://api.github.com/repos/MaxRink/seat/comments{/number}","issue_comment_url":"https://api.github.com/repos/MaxRink/seat/issues/comments/{number}","contents_url":"https://api.github.com/repos/MaxRink/seat/contents/{+path}","compare_url":"https://api.github.com/repos/MaxRink/seat/compare/{base}...{head}","merges_url":"https://api.github.com/repos/MaxRink/seat/merges","archive_url":"https://api.github.com/repos/MaxRink/seat/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/MaxRink/seat/downloads","issues_url":"https://api.github.com/repos/MaxRink/seat/issues{/number}","pulls_url":"https://api.github.com/repos/MaxRink/seat/pulls{/number}","milestones_url":"https://api.github.com/repos/MaxRink/seat/milestones{/number}","notifications_url":"https://api.github.com/repos/MaxRink/seat/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/MaxRink/seat/labels{/name}","releases_url":"https://api.github.com/repos/MaxRink/seat/releases{/id}","created_at":"2015-01-01T15:14:05Z","updated_at":"2015-01-01T15:14:07Z","pushed_at":"2014-12-30T19:06:49Z","git_url":"git://github.com/MaxRink/seat.git","ssh_url":"git@github.com:MaxRink/seat.git","clone_url":"https://github.com/MaxRink/seat.git","svn_url":"https://github.com/MaxRink/seat","homepage":"http://eve-seat.github.io/seat","size":5303,"stargazers_count":0,"watchers_count":0,"language":"PHP","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":3,"forks":0,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/MaxRink/seat/pulls/3"},"html":{"href":"https://github.com/MaxRink/seat/pull/3"},"issue":{"href":"https://api.github.com/repos/MaxRink/seat/issues/3"},"comments":{"href":"https://api.github.com/repos/MaxRink/seat/issues/3/comments"},"review_comments":{"href":"https://api.github.com/repos/MaxRink/seat/pulls/3/comments"},"review_comment":{"href":"https://api.github.com/repos/MaxRink/seat/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/MaxRink/seat/pulls/3/commits"},"statuses":{"href":"https://api.github.com/repos/MaxRink/seat/statuses/b8fee924e52d0563824b9ace9a7e412f598d948b"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":2,"additions":5,"deletions":1,"changed_files":2}},"public":true,"created_at":"2015-01-01T15:19:42Z"} +,{"id":"2489660111","type":"IssueCommentEvent","actor":{"id":2412812,"login":"hrishikeshs","gravatar_id":"","url":"https://api.github.com/users/hrishikeshs","avatar_url":"https://avatars.githubusercontent.com/u/2412812?"},"repo":{"id":23974149,"name":"Dogfalo/materialize","url":"https://api.github.com/repos/Dogfalo/materialize"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/Dogfalo/materialize/issues/250","labels_url":"https://api.github.com/repos/Dogfalo/materialize/issues/250/labels{/name}","comments_url":"https://api.github.com/repos/Dogfalo/materialize/issues/250/comments","events_url":"https://api.github.com/repos/Dogfalo/materialize/issues/250/events","html_url":"https://github.com/Dogfalo/materialize/issues/250","id":51913289,"number":250,"title":"Add function that reloads all components","user":{"login":"carama-s","id":4414820,"avatar_url":"https://avatars.githubusercontent.com/u/4414820?v=3","gravatar_id":"","url":"https://api.github.com/users/carama-s","html_url":"https://github.com/carama-s","followers_url":"https://api.github.com/users/carama-s/followers","following_url":"https://api.github.com/users/carama-s/following{/other_user}","gists_url":"https://api.github.com/users/carama-s/gists{/gist_id}","starred_url":"https://api.github.com/users/carama-s/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/carama-s/subscriptions","organizations_url":"https://api.github.com/users/carama-s/orgs","repos_url":"https://api.github.com/users/carama-s/repos","events_url":"https://api.github.com/users/carama-s/events{/privacy}","received_events_url":"https://api.github.com/users/carama-s/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-14T08:11:37Z","updated_at":"2015-01-01T15:19:42Z","closed_at":null,"body":"I am making a website with dynamic content and if I dynamically add some components like inputs, buttons, ... it is impossible to reload the script except by adding a script tag with your script in src.\r\n\r\nIt could be great if you provide a function that recalls all your script to update the current HTML.\r\n\r\nThank you., I love your lib !"},"comment":{"url":"https://api.github.com/repos/Dogfalo/materialize/issues/comments/68488920","html_url":"https://github.com/Dogfalo/materialize/issues/250#issuecomment-68488920","issue_url":"https://api.github.com/repos/Dogfalo/materialize/issues/250","id":68488920,"user":{"login":"hrishikeshs","id":2412812,"avatar_url":"https://avatars.githubusercontent.com/u/2412812?v=3","gravatar_id":"","url":"https://api.github.com/users/hrishikeshs","html_url":"https://github.com/hrishikeshs","followers_url":"https://api.github.com/users/hrishikeshs/followers","following_url":"https://api.github.com/users/hrishikeshs/following{/other_user}","gists_url":"https://api.github.com/users/hrishikeshs/gists{/gist_id}","starred_url":"https://api.github.com/users/hrishikeshs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hrishikeshs/subscriptions","organizations_url":"https://api.github.com/users/hrishikeshs/orgs","repos_url":"https://api.github.com/users/hrishikeshs/repos","events_url":"https://api.github.com/users/hrishikeshs/events{/privacy}","received_events_url":"https://api.github.com/users/hrishikeshs/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:19:42Z","updated_at":"2015-01-01T15:19:42Z","body":":+1: on this feature request. I too am in need of something like this, it would be cleaner for materialize to expose an api rather than everyone who is using this to implement their own method of doing so. If materialize can take care of this internally, it would be even better. Please see my comment on this pr #327 as well. Thanks again for creating this!"}},"public":true,"created_at":"2015-01-01T15:19:42Z"} +,{"id":"2489660112","type":"PullRequestReviewCommentEvent","actor":{"id":6697940,"login":"houndci","gravatar_id":"","url":"https://api.github.com/users/houndci","avatar_url":"https://avatars.githubusercontent.com/u/6697940?"},"repo":{"id":1795424,"name":"datasektionen/cashflow","url":"https://api.github.com/repos/datasektionen/cashflow"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/datasektionen/cashflow/pulls/comments/22400161","id":22400161,"diff_hunk":"@@ -36,38 +36,34 @@\n end\n \n describe 'PUT update' do\n- before(:all) do\n+ before(:each) do\n @year = Time.now.year\n+ @rows = [Factory(:budget_row), Factory(:budget_row)]\n+ @posts = @rows.map(&:budget_post)\n+ @rows_params = Hash[*@rows.flat_map { |r| [r.id, {sum: r.sum + 1000 }]}]\n+ @posts_params = Hash[*@posts.flat_map { |p|","path":"spec/controllers/budget_controller_spec.rb","position":10,"original_position":10,"commit_id":"d27901927966292678f8cbd7be5ed5a777334bc3","original_commit_id":"d27901927966292678f8cbd7be5ed5a777334bc3","user":{"login":"houndci","id":6697940,"avatar_url":"https://avatars.githubusercontent.com/u/6697940?v=3","gravatar_id":"","url":"https://api.github.com/users/houndci","html_url":"https://github.com/houndci","followers_url":"https://api.github.com/users/houndci/followers","following_url":"https://api.github.com/users/houndci/following{/other_user}","gists_url":"https://api.github.com/users/houndci/gists{/gist_id}","starred_url":"https://api.github.com/users/houndci/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/houndci/subscriptions","organizations_url":"https://api.github.com/users/houndci/orgs","repos_url":"https://api.github.com/users/houndci/repos","events_url":"https://api.github.com/users/houndci/events{/privacy}","received_events_url":"https://api.github.com/users/houndci/received_events","type":"User","site_admin":false},"body":"Avoid using {...} for multi-line blocks.","created_at":"2015-01-01T15:19:42Z","updated_at":"2015-01-01T15:19:42Z","html_url":"https://github.com/datasektionen/cashflow/pull/130#discussion_r22400161","pull_request_url":"https://api.github.com/repos/datasektionen/cashflow/pulls/130","_links":{"self":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/comments/22400161"},"html":{"href":"https://github.com/datasektionen/cashflow/pull/130#discussion_r22400161"},"pull_request":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/130"}}},"pull_request":{"url":"https://api.github.com/repos/datasektionen/cashflow/pulls/130","id":26743916,"html_url":"https://github.com/datasektionen/cashflow/pull/130","diff_url":"https://github.com/datasektionen/cashflow/pull/130.diff","patch_url":"https://github.com/datasektionen/cashflow/pull/130.patch","issue_url":"https://api.github.com/repos/datasektionen/cashflow/issues/130","number":130,"state":"open","locked":false,"title":"Tidy up budget controller","user":{"login":"Frost","id":2308,"avatar_url":"https://avatars.githubusercontent.com/u/2308?v=3","gravatar_id":"","url":"https://api.github.com/users/Frost","html_url":"https://github.com/Frost","followers_url":"https://api.github.com/users/Frost/followers","following_url":"https://api.github.com/users/Frost/following{/other_user}","gists_url":"https://api.github.com/users/Frost/gists{/gist_id}","starred_url":"https://api.github.com/users/Frost/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Frost/subscriptions","organizations_url":"https://api.github.com/users/Frost/orgs","repos_url":"https://api.github.com/users/Frost/repos","events_url":"https://api.github.com/users/Frost/events{/privacy}","received_events_url":"https://api.github.com/users/Frost/received_events","type":"User","site_admin":false},"body":"I tidied up `BudgetController#update` to be less repetitive. However, this change also introduces a minor change in behavior:\r\n\r\nIf either a budget post or a budget row value sent to `BudgetController#update` fails, none of the changes will be made.\r\n\r\n* `BudgetRow#sum` must not be negative\r\n* DRY up `BudgetController#update`\r\n* Tests for `BudgetController#update` rollbacks\r\n* `BudgetPost#mage_arrangement_number` must exist\r\n","created_at":"2015-01-01T15:19:37Z","updated_at":"2015-01-01T15:19:43Z","closed_at":null,"merged_at":null,"merge_commit_sha":"07a3c9e78f5d0c3f7c1e48c3cee5b2fedf05975b","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/datasektionen/cashflow/pulls/130/commits","review_comments_url":"https://api.github.com/repos/datasektionen/cashflow/pulls/130/comments","review_comment_url":"https://api.github.com/repos/datasektionen/cashflow/pulls/comments/{number}","comments_url":"https://api.github.com/repos/datasektionen/cashflow/issues/130/comments","statuses_url":"https://api.github.com/repos/datasektionen/cashflow/statuses/d27901927966292678f8cbd7be5ed5a777334bc3","head":{"label":"datasektionen:tidy-up-budget-controller","ref":"tidy-up-budget-controller","sha":"d27901927966292678f8cbd7be5ed5a777334bc3","user":{"login":"datasektionen","id":793965,"avatar_url":"https://avatars.githubusercontent.com/u/793965?v=3","gravatar_id":"","url":"https://api.github.com/users/datasektionen","html_url":"https://github.com/datasektionen","followers_url":"https://api.github.com/users/datasektionen/followers","following_url":"https://api.github.com/users/datasektionen/following{/other_user}","gists_url":"https://api.github.com/users/datasektionen/gists{/gist_id}","starred_url":"https://api.github.com/users/datasektionen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/datasektionen/subscriptions","organizations_url":"https://api.github.com/users/datasektionen/orgs","repos_url":"https://api.github.com/users/datasektionen/repos","events_url":"https://api.github.com/users/datasektionen/events{/privacy}","received_events_url":"https://api.github.com/users/datasektionen/received_events","type":"Organization","site_admin":false},"repo":{"id":1795424,"name":"cashflow","full_name":"datasektionen/cashflow","owner":{"login":"datasektionen","id":793965,"avatar_url":"https://avatars.githubusercontent.com/u/793965?v=3","gravatar_id":"","url":"https://api.github.com/users/datasektionen","html_url":"https://github.com/datasektionen","followers_url":"https://api.github.com/users/datasektionen/followers","following_url":"https://api.github.com/users/datasektionen/following{/other_user}","gists_url":"https://api.github.com/users/datasektionen/gists{/gist_id}","starred_url":"https://api.github.com/users/datasektionen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/datasektionen/subscriptions","organizations_url":"https://api.github.com/users/datasektionen/orgs","repos_url":"https://api.github.com/users/datasektionen/repos","events_url":"https://api.github.com/users/datasektionen/events{/privacy}","received_events_url":"https://api.github.com/users/datasektionen/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/datasektionen/cashflow","description":"Inköp/skuld-hantering","fork":false,"url":"https://api.github.com/repos/datasektionen/cashflow","forks_url":"https://api.github.com/repos/datasektionen/cashflow/forks","keys_url":"https://api.github.com/repos/datasektionen/cashflow/keys{/key_id}","collaborators_url":"https://api.github.com/repos/datasektionen/cashflow/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/datasektionen/cashflow/teams","hooks_url":"https://api.github.com/repos/datasektionen/cashflow/hooks","issue_events_url":"https://api.github.com/repos/datasektionen/cashflow/issues/events{/number}","events_url":"https://api.github.com/repos/datasektionen/cashflow/events","assignees_url":"https://api.github.com/repos/datasektionen/cashflow/assignees{/user}","branches_url":"https://api.github.com/repos/datasektionen/cashflow/branches{/branch}","tags_url":"https://api.github.com/repos/datasektionen/cashflow/tags","blobs_url":"https://api.github.com/repos/datasektionen/cashflow/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/datasektionen/cashflow/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/datasektionen/cashflow/git/refs{/sha}","trees_url":"https://api.github.com/repos/datasektionen/cashflow/git/trees{/sha}","statuses_url":"https://api.github.com/repos/datasektionen/cashflow/statuses/{sha}","languages_url":"https://api.github.com/repos/datasektionen/cashflow/languages","stargazers_url":"https://api.github.com/repos/datasektionen/cashflow/stargazers","contributors_url":"https://api.github.com/repos/datasektionen/cashflow/contributors","subscribers_url":"https://api.github.com/repos/datasektionen/cashflow/subscribers","subscription_url":"https://api.github.com/repos/datasektionen/cashflow/subscription","commits_url":"https://api.github.com/repos/datasektionen/cashflow/commits{/sha}","git_commits_url":"https://api.github.com/repos/datasektionen/cashflow/git/commits{/sha}","comments_url":"https://api.github.com/repos/datasektionen/cashflow/comments{/number}","issue_comment_url":"https://api.github.com/repos/datasektionen/cashflow/issues/comments/{number}","contents_url":"https://api.github.com/repos/datasektionen/cashflow/contents/{+path}","compare_url":"https://api.github.com/repos/datasektionen/cashflow/compare/{base}...{head}","merges_url":"https://api.github.com/repos/datasektionen/cashflow/merges","archive_url":"https://api.github.com/repos/datasektionen/cashflow/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/datasektionen/cashflow/downloads","issues_url":"https://api.github.com/repos/datasektionen/cashflow/issues{/number}","pulls_url":"https://api.github.com/repos/datasektionen/cashflow/pulls{/number}","milestones_url":"https://api.github.com/repos/datasektionen/cashflow/milestones{/number}","notifications_url":"https://api.github.com/repos/datasektionen/cashflow/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/datasektionen/cashflow/labels{/name}","releases_url":"https://api.github.com/repos/datasektionen/cashflow/releases{/id}","created_at":"2011-05-24T20:06:22Z","updated_at":"2014-12-29T10:28:00Z","pushed_at":"2015-01-01T15:16:43Z","git_url":"git://github.com/datasektionen/cashflow.git","ssh_url":"git@github.com:datasektionen/cashflow.git","clone_url":"https://github.com/datasektionen/cashflow.git","svn_url":"https://github.com/datasektionen/cashflow","homepage":"","size":2331,"stargazers_count":4,"watchers_count":4,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":27,"forks":1,"open_issues":27,"watchers":4,"default_branch":"master"}},"base":{"label":"datasektionen:master","ref":"master","sha":"65fdb34921a60eb0864dbb3d5bbafa2e6dffa32a","user":{"login":"datasektionen","id":793965,"avatar_url":"https://avatars.githubusercontent.com/u/793965?v=3","gravatar_id":"","url":"https://api.github.com/users/datasektionen","html_url":"https://github.com/datasektionen","followers_url":"https://api.github.com/users/datasektionen/followers","following_url":"https://api.github.com/users/datasektionen/following{/other_user}","gists_url":"https://api.github.com/users/datasektionen/gists{/gist_id}","starred_url":"https://api.github.com/users/datasektionen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/datasektionen/subscriptions","organizations_url":"https://api.github.com/users/datasektionen/orgs","repos_url":"https://api.github.com/users/datasektionen/repos","events_url":"https://api.github.com/users/datasektionen/events{/privacy}","received_events_url":"https://api.github.com/users/datasektionen/received_events","type":"Organization","site_admin":false},"repo":{"id":1795424,"name":"cashflow","full_name":"datasektionen/cashflow","owner":{"login":"datasektionen","id":793965,"avatar_url":"https://avatars.githubusercontent.com/u/793965?v=3","gravatar_id":"","url":"https://api.github.com/users/datasektionen","html_url":"https://github.com/datasektionen","followers_url":"https://api.github.com/users/datasektionen/followers","following_url":"https://api.github.com/users/datasektionen/following{/other_user}","gists_url":"https://api.github.com/users/datasektionen/gists{/gist_id}","starred_url":"https://api.github.com/users/datasektionen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/datasektionen/subscriptions","organizations_url":"https://api.github.com/users/datasektionen/orgs","repos_url":"https://api.github.com/users/datasektionen/repos","events_url":"https://api.github.com/users/datasektionen/events{/privacy}","received_events_url":"https://api.github.com/users/datasektionen/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/datasektionen/cashflow","description":"Inköp/skuld-hantering","fork":false,"url":"https://api.github.com/repos/datasektionen/cashflow","forks_url":"https://api.github.com/repos/datasektionen/cashflow/forks","keys_url":"https://api.github.com/repos/datasektionen/cashflow/keys{/key_id}","collaborators_url":"https://api.github.com/repos/datasektionen/cashflow/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/datasektionen/cashflow/teams","hooks_url":"https://api.github.com/repos/datasektionen/cashflow/hooks","issue_events_url":"https://api.github.com/repos/datasektionen/cashflow/issues/events{/number}","events_url":"https://api.github.com/repos/datasektionen/cashflow/events","assignees_url":"https://api.github.com/repos/datasektionen/cashflow/assignees{/user}","branches_url":"https://api.github.com/repos/datasektionen/cashflow/branches{/branch}","tags_url":"https://api.github.com/repos/datasektionen/cashflow/tags","blobs_url":"https://api.github.com/repos/datasektionen/cashflow/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/datasektionen/cashflow/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/datasektionen/cashflow/git/refs{/sha}","trees_url":"https://api.github.com/repos/datasektionen/cashflow/git/trees{/sha}","statuses_url":"https://api.github.com/repos/datasektionen/cashflow/statuses/{sha}","languages_url":"https://api.github.com/repos/datasektionen/cashflow/languages","stargazers_url":"https://api.github.com/repos/datasektionen/cashflow/stargazers","contributors_url":"https://api.github.com/repos/datasektionen/cashflow/contributors","subscribers_url":"https://api.github.com/repos/datasektionen/cashflow/subscribers","subscription_url":"https://api.github.com/repos/datasektionen/cashflow/subscription","commits_url":"https://api.github.com/repos/datasektionen/cashflow/commits{/sha}","git_commits_url":"https://api.github.com/repos/datasektionen/cashflow/git/commits{/sha}","comments_url":"https://api.github.com/repos/datasektionen/cashflow/comments{/number}","issue_comment_url":"https://api.github.com/repos/datasektionen/cashflow/issues/comments/{number}","contents_url":"https://api.github.com/repos/datasektionen/cashflow/contents/{+path}","compare_url":"https://api.github.com/repos/datasektionen/cashflow/compare/{base}...{head}","merges_url":"https://api.github.com/repos/datasektionen/cashflow/merges","archive_url":"https://api.github.com/repos/datasektionen/cashflow/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/datasektionen/cashflow/downloads","issues_url":"https://api.github.com/repos/datasektionen/cashflow/issues{/number}","pulls_url":"https://api.github.com/repos/datasektionen/cashflow/pulls{/number}","milestones_url":"https://api.github.com/repos/datasektionen/cashflow/milestones{/number}","notifications_url":"https://api.github.com/repos/datasektionen/cashflow/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/datasektionen/cashflow/labels{/name}","releases_url":"https://api.github.com/repos/datasektionen/cashflow/releases{/id}","created_at":"2011-05-24T20:06:22Z","updated_at":"2014-12-29T10:28:00Z","pushed_at":"2015-01-01T15:16:43Z","git_url":"git://github.com/datasektionen/cashflow.git","ssh_url":"git@github.com:datasektionen/cashflow.git","clone_url":"https://github.com/datasektionen/cashflow.git","svn_url":"https://github.com/datasektionen/cashflow","homepage":"","size":2331,"stargazers_count":4,"watchers_count":4,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":27,"forks":1,"open_issues":27,"watchers":4,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/130"},"html":{"href":"https://github.com/datasektionen/cashflow/pull/130"},"issue":{"href":"https://api.github.com/repos/datasektionen/cashflow/issues/130"},"comments":{"href":"https://api.github.com/repos/datasektionen/cashflow/issues/130/comments"},"review_comments":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/130/comments"},"review_comment":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/130/commits"},"statuses":{"href":"https://api.github.com/repos/datasektionen/cashflow/statuses/d27901927966292678f8cbd7be5ed5a777334bc3"}}}},"public":true,"created_at":"2015-01-01T15:19:42Z","org":{"id":793965,"login":"datasektionen","gravatar_id":"","url":"https://api.github.com/orgs/datasektionen","avatar_url":"https://avatars.githubusercontent.com/u/793965?"}} +,{"id":"2489660115","type":"PullRequestReviewCommentEvent","actor":{"id":6697940,"login":"houndci","gravatar_id":"","url":"https://api.github.com/users/houndci","avatar_url":"https://avatars.githubusercontent.com/u/6697940?"},"repo":{"id":1795424,"name":"datasektionen/cashflow","url":"https://api.github.com/repos/datasektionen/cashflow"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/datasektionen/cashflow/pulls/comments/22400162","id":22400162,"diff_hunk":"@@ -36,38 +36,34 @@\n end\n \n describe 'PUT update' do\n- before(:all) do\n+ before(:each) do\n @year = Time.now.year\n+ @rows = [Factory(:budget_row), Factory(:budget_row)]\n+ @posts = @rows.map(&:budget_post)\n+ @rows_params = Hash[*@rows.flat_map { |r| [r.id, {sum: r.sum + 1000 }]}]","path":"spec/controllers/budget_controller_spec.rb","position":9,"original_position":9,"commit_id":"d27901927966292678f8cbd7be5ed5a777334bc3","original_commit_id":"d27901927966292678f8cbd7be5ed5a777334bc3","user":{"login":"houndci","id":6697940,"avatar_url":"https://avatars.githubusercontent.com/u/6697940?v=3","gravatar_id":"","url":"https://api.github.com/users/houndci","html_url":"https://github.com/houndci","followers_url":"https://api.github.com/users/houndci/followers","following_url":"https://api.github.com/users/houndci/following{/other_user}","gists_url":"https://api.github.com/users/houndci/gists{/gist_id}","starred_url":"https://api.github.com/users/houndci/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/houndci/subscriptions","organizations_url":"https://api.github.com/users/houndci/orgs","repos_url":"https://api.github.com/users/houndci/repos","events_url":"https://api.github.com/users/houndci/events{/privacy}","received_events_url":"https://api.github.com/users/houndci/received_events","type":"User","site_admin":false},"body":"Space missing inside }.
Space inside { missing.","created_at":"2015-01-01T15:19:42Z","updated_at":"2015-01-01T15:19:42Z","html_url":"https://github.com/datasektionen/cashflow/pull/130#discussion_r22400162","pull_request_url":"https://api.github.com/repos/datasektionen/cashflow/pulls/130","_links":{"self":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/comments/22400162"},"html":{"href":"https://github.com/datasektionen/cashflow/pull/130#discussion_r22400162"},"pull_request":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/130"}}},"pull_request":{"url":"https://api.github.com/repos/datasektionen/cashflow/pulls/130","id":26743916,"html_url":"https://github.com/datasektionen/cashflow/pull/130","diff_url":"https://github.com/datasektionen/cashflow/pull/130.diff","patch_url":"https://github.com/datasektionen/cashflow/pull/130.patch","issue_url":"https://api.github.com/repos/datasektionen/cashflow/issues/130","number":130,"state":"open","locked":false,"title":"Tidy up budget controller","user":{"login":"Frost","id":2308,"avatar_url":"https://avatars.githubusercontent.com/u/2308?v=3","gravatar_id":"","url":"https://api.github.com/users/Frost","html_url":"https://github.com/Frost","followers_url":"https://api.github.com/users/Frost/followers","following_url":"https://api.github.com/users/Frost/following{/other_user}","gists_url":"https://api.github.com/users/Frost/gists{/gist_id}","starred_url":"https://api.github.com/users/Frost/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Frost/subscriptions","organizations_url":"https://api.github.com/users/Frost/orgs","repos_url":"https://api.github.com/users/Frost/repos","events_url":"https://api.github.com/users/Frost/events{/privacy}","received_events_url":"https://api.github.com/users/Frost/received_events","type":"User","site_admin":false},"body":"I tidied up `BudgetController#update` to be less repetitive. However, this change also introduces a minor change in behavior:\r\n\r\nIf either a budget post or a budget row value sent to `BudgetController#update` fails, none of the changes will be made.\r\n\r\n* `BudgetRow#sum` must not be negative\r\n* DRY up `BudgetController#update`\r\n* Tests for `BudgetController#update` rollbacks\r\n* `BudgetPost#mage_arrangement_number` must exist\r\n","created_at":"2015-01-01T15:19:37Z","updated_at":"2015-01-01T15:19:43Z","closed_at":null,"merged_at":null,"merge_commit_sha":"07a3c9e78f5d0c3f7c1e48c3cee5b2fedf05975b","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/datasektionen/cashflow/pulls/130/commits","review_comments_url":"https://api.github.com/repos/datasektionen/cashflow/pulls/130/comments","review_comment_url":"https://api.github.com/repos/datasektionen/cashflow/pulls/comments/{number}","comments_url":"https://api.github.com/repos/datasektionen/cashflow/issues/130/comments","statuses_url":"https://api.github.com/repos/datasektionen/cashflow/statuses/d27901927966292678f8cbd7be5ed5a777334bc3","head":{"label":"datasektionen:tidy-up-budget-controller","ref":"tidy-up-budget-controller","sha":"d27901927966292678f8cbd7be5ed5a777334bc3","user":{"login":"datasektionen","id":793965,"avatar_url":"https://avatars.githubusercontent.com/u/793965?v=3","gravatar_id":"","url":"https://api.github.com/users/datasektionen","html_url":"https://github.com/datasektionen","followers_url":"https://api.github.com/users/datasektionen/followers","following_url":"https://api.github.com/users/datasektionen/following{/other_user}","gists_url":"https://api.github.com/users/datasektionen/gists{/gist_id}","starred_url":"https://api.github.com/users/datasektionen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/datasektionen/subscriptions","organizations_url":"https://api.github.com/users/datasektionen/orgs","repos_url":"https://api.github.com/users/datasektionen/repos","events_url":"https://api.github.com/users/datasektionen/events{/privacy}","received_events_url":"https://api.github.com/users/datasektionen/received_events","type":"Organization","site_admin":false},"repo":{"id":1795424,"name":"cashflow","full_name":"datasektionen/cashflow","owner":{"login":"datasektionen","id":793965,"avatar_url":"https://avatars.githubusercontent.com/u/793965?v=3","gravatar_id":"","url":"https://api.github.com/users/datasektionen","html_url":"https://github.com/datasektionen","followers_url":"https://api.github.com/users/datasektionen/followers","following_url":"https://api.github.com/users/datasektionen/following{/other_user}","gists_url":"https://api.github.com/users/datasektionen/gists{/gist_id}","starred_url":"https://api.github.com/users/datasektionen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/datasektionen/subscriptions","organizations_url":"https://api.github.com/users/datasektionen/orgs","repos_url":"https://api.github.com/users/datasektionen/repos","events_url":"https://api.github.com/users/datasektionen/events{/privacy}","received_events_url":"https://api.github.com/users/datasektionen/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/datasektionen/cashflow","description":"Inköp/skuld-hantering","fork":false,"url":"https://api.github.com/repos/datasektionen/cashflow","forks_url":"https://api.github.com/repos/datasektionen/cashflow/forks","keys_url":"https://api.github.com/repos/datasektionen/cashflow/keys{/key_id}","collaborators_url":"https://api.github.com/repos/datasektionen/cashflow/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/datasektionen/cashflow/teams","hooks_url":"https://api.github.com/repos/datasektionen/cashflow/hooks","issue_events_url":"https://api.github.com/repos/datasektionen/cashflow/issues/events{/number}","events_url":"https://api.github.com/repos/datasektionen/cashflow/events","assignees_url":"https://api.github.com/repos/datasektionen/cashflow/assignees{/user}","branches_url":"https://api.github.com/repos/datasektionen/cashflow/branches{/branch}","tags_url":"https://api.github.com/repos/datasektionen/cashflow/tags","blobs_url":"https://api.github.com/repos/datasektionen/cashflow/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/datasektionen/cashflow/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/datasektionen/cashflow/git/refs{/sha}","trees_url":"https://api.github.com/repos/datasektionen/cashflow/git/trees{/sha}","statuses_url":"https://api.github.com/repos/datasektionen/cashflow/statuses/{sha}","languages_url":"https://api.github.com/repos/datasektionen/cashflow/languages","stargazers_url":"https://api.github.com/repos/datasektionen/cashflow/stargazers","contributors_url":"https://api.github.com/repos/datasektionen/cashflow/contributors","subscribers_url":"https://api.github.com/repos/datasektionen/cashflow/subscribers","subscription_url":"https://api.github.com/repos/datasektionen/cashflow/subscription","commits_url":"https://api.github.com/repos/datasektionen/cashflow/commits{/sha}","git_commits_url":"https://api.github.com/repos/datasektionen/cashflow/git/commits{/sha}","comments_url":"https://api.github.com/repos/datasektionen/cashflow/comments{/number}","issue_comment_url":"https://api.github.com/repos/datasektionen/cashflow/issues/comments/{number}","contents_url":"https://api.github.com/repos/datasektionen/cashflow/contents/{+path}","compare_url":"https://api.github.com/repos/datasektionen/cashflow/compare/{base}...{head}","merges_url":"https://api.github.com/repos/datasektionen/cashflow/merges","archive_url":"https://api.github.com/repos/datasektionen/cashflow/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/datasektionen/cashflow/downloads","issues_url":"https://api.github.com/repos/datasektionen/cashflow/issues{/number}","pulls_url":"https://api.github.com/repos/datasektionen/cashflow/pulls{/number}","milestones_url":"https://api.github.com/repos/datasektionen/cashflow/milestones{/number}","notifications_url":"https://api.github.com/repos/datasektionen/cashflow/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/datasektionen/cashflow/labels{/name}","releases_url":"https://api.github.com/repos/datasektionen/cashflow/releases{/id}","created_at":"2011-05-24T20:06:22Z","updated_at":"2014-12-29T10:28:00Z","pushed_at":"2015-01-01T15:16:43Z","git_url":"git://github.com/datasektionen/cashflow.git","ssh_url":"git@github.com:datasektionen/cashflow.git","clone_url":"https://github.com/datasektionen/cashflow.git","svn_url":"https://github.com/datasektionen/cashflow","homepage":"","size":2331,"stargazers_count":4,"watchers_count":4,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":27,"forks":1,"open_issues":27,"watchers":4,"default_branch":"master"}},"base":{"label":"datasektionen:master","ref":"master","sha":"65fdb34921a60eb0864dbb3d5bbafa2e6dffa32a","user":{"login":"datasektionen","id":793965,"avatar_url":"https://avatars.githubusercontent.com/u/793965?v=3","gravatar_id":"","url":"https://api.github.com/users/datasektionen","html_url":"https://github.com/datasektionen","followers_url":"https://api.github.com/users/datasektionen/followers","following_url":"https://api.github.com/users/datasektionen/following{/other_user}","gists_url":"https://api.github.com/users/datasektionen/gists{/gist_id}","starred_url":"https://api.github.com/users/datasektionen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/datasektionen/subscriptions","organizations_url":"https://api.github.com/users/datasektionen/orgs","repos_url":"https://api.github.com/users/datasektionen/repos","events_url":"https://api.github.com/users/datasektionen/events{/privacy}","received_events_url":"https://api.github.com/users/datasektionen/received_events","type":"Organization","site_admin":false},"repo":{"id":1795424,"name":"cashflow","full_name":"datasektionen/cashflow","owner":{"login":"datasektionen","id":793965,"avatar_url":"https://avatars.githubusercontent.com/u/793965?v=3","gravatar_id":"","url":"https://api.github.com/users/datasektionen","html_url":"https://github.com/datasektionen","followers_url":"https://api.github.com/users/datasektionen/followers","following_url":"https://api.github.com/users/datasektionen/following{/other_user}","gists_url":"https://api.github.com/users/datasektionen/gists{/gist_id}","starred_url":"https://api.github.com/users/datasektionen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/datasektionen/subscriptions","organizations_url":"https://api.github.com/users/datasektionen/orgs","repos_url":"https://api.github.com/users/datasektionen/repos","events_url":"https://api.github.com/users/datasektionen/events{/privacy}","received_events_url":"https://api.github.com/users/datasektionen/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/datasektionen/cashflow","description":"Inköp/skuld-hantering","fork":false,"url":"https://api.github.com/repos/datasektionen/cashflow","forks_url":"https://api.github.com/repos/datasektionen/cashflow/forks","keys_url":"https://api.github.com/repos/datasektionen/cashflow/keys{/key_id}","collaborators_url":"https://api.github.com/repos/datasektionen/cashflow/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/datasektionen/cashflow/teams","hooks_url":"https://api.github.com/repos/datasektionen/cashflow/hooks","issue_events_url":"https://api.github.com/repos/datasektionen/cashflow/issues/events{/number}","events_url":"https://api.github.com/repos/datasektionen/cashflow/events","assignees_url":"https://api.github.com/repos/datasektionen/cashflow/assignees{/user}","branches_url":"https://api.github.com/repos/datasektionen/cashflow/branches{/branch}","tags_url":"https://api.github.com/repos/datasektionen/cashflow/tags","blobs_url":"https://api.github.com/repos/datasektionen/cashflow/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/datasektionen/cashflow/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/datasektionen/cashflow/git/refs{/sha}","trees_url":"https://api.github.com/repos/datasektionen/cashflow/git/trees{/sha}","statuses_url":"https://api.github.com/repos/datasektionen/cashflow/statuses/{sha}","languages_url":"https://api.github.com/repos/datasektionen/cashflow/languages","stargazers_url":"https://api.github.com/repos/datasektionen/cashflow/stargazers","contributors_url":"https://api.github.com/repos/datasektionen/cashflow/contributors","subscribers_url":"https://api.github.com/repos/datasektionen/cashflow/subscribers","subscription_url":"https://api.github.com/repos/datasektionen/cashflow/subscription","commits_url":"https://api.github.com/repos/datasektionen/cashflow/commits{/sha}","git_commits_url":"https://api.github.com/repos/datasektionen/cashflow/git/commits{/sha}","comments_url":"https://api.github.com/repos/datasektionen/cashflow/comments{/number}","issue_comment_url":"https://api.github.com/repos/datasektionen/cashflow/issues/comments/{number}","contents_url":"https://api.github.com/repos/datasektionen/cashflow/contents/{+path}","compare_url":"https://api.github.com/repos/datasektionen/cashflow/compare/{base}...{head}","merges_url":"https://api.github.com/repos/datasektionen/cashflow/merges","archive_url":"https://api.github.com/repos/datasektionen/cashflow/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/datasektionen/cashflow/downloads","issues_url":"https://api.github.com/repos/datasektionen/cashflow/issues{/number}","pulls_url":"https://api.github.com/repos/datasektionen/cashflow/pulls{/number}","milestones_url":"https://api.github.com/repos/datasektionen/cashflow/milestones{/number}","notifications_url":"https://api.github.com/repos/datasektionen/cashflow/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/datasektionen/cashflow/labels{/name}","releases_url":"https://api.github.com/repos/datasektionen/cashflow/releases{/id}","created_at":"2011-05-24T20:06:22Z","updated_at":"2014-12-29T10:28:00Z","pushed_at":"2015-01-01T15:16:43Z","git_url":"git://github.com/datasektionen/cashflow.git","ssh_url":"git@github.com:datasektionen/cashflow.git","clone_url":"https://github.com/datasektionen/cashflow.git","svn_url":"https://github.com/datasektionen/cashflow","homepage":"","size":2331,"stargazers_count":4,"watchers_count":4,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":27,"forks":1,"open_issues":27,"watchers":4,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/130"},"html":{"href":"https://github.com/datasektionen/cashflow/pull/130"},"issue":{"href":"https://api.github.com/repos/datasektionen/cashflow/issues/130"},"comments":{"href":"https://api.github.com/repos/datasektionen/cashflow/issues/130/comments"},"review_comments":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/130/comments"},"review_comment":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/130/commits"},"statuses":{"href":"https://api.github.com/repos/datasektionen/cashflow/statuses/d27901927966292678f8cbd7be5ed5a777334bc3"}}}},"public":true,"created_at":"2015-01-01T15:19:42Z","org":{"id":793965,"login":"datasektionen","gravatar_id":"","url":"https://api.github.com/orgs/datasektionen","avatar_url":"https://avatars.githubusercontent.com/u/793965?"}} +,{"id":"2489660117","type":"PullRequestReviewCommentEvent","actor":{"id":6697940,"login":"houndci","gravatar_id":"","url":"https://api.github.com/users/houndci","avatar_url":"https://avatars.githubusercontent.com/u/6697940?"},"repo":{"id":1795424,"name":"datasektionen/cashflow","url":"https://api.github.com/repos/datasektionen/cashflow"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/datasektionen/cashflow/pulls/comments/22400163","id":22400163,"diff_hunk":"@@ -36,38 +36,34 @@\n end\n \n describe 'PUT update' do\n- before(:all) do\n+ before(:each) do\n @year = Time.now.year\n+ @rows = [Factory(:budget_row), Factory(:budget_row)]\n+ @posts = @rows.map(&:budget_post)\n+ @rows_params = Hash[*@rows.flat_map { |r| [r.id, {sum: r.sum + 1000 }]}]\n+ @posts_params = Hash[*@posts.flat_map { |p|\n+ [p.id, {mage_arrangement_number: p.mage_arrangement_number + 1}]","path":"spec/controllers/budget_controller_spec.rb","position":11,"original_position":11,"commit_id":"d27901927966292678f8cbd7be5ed5a777334bc3","original_commit_id":"d27901927966292678f8cbd7be5ed5a777334bc3","user":{"login":"houndci","id":6697940,"avatar_url":"https://avatars.githubusercontent.com/u/6697940?v=3","gravatar_id":"","url":"https://api.github.com/users/houndci","html_url":"https://github.com/houndci","followers_url":"https://api.github.com/users/houndci/followers","following_url":"https://api.github.com/users/houndci/following{/other_user}","gists_url":"https://api.github.com/users/houndci/gists{/gist_id}","starred_url":"https://api.github.com/users/houndci/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/houndci/subscriptions","organizations_url":"https://api.github.com/users/houndci/orgs","repos_url":"https://api.github.com/users/houndci/repos","events_url":"https://api.github.com/users/houndci/events{/privacy}","received_events_url":"https://api.github.com/users/houndci/received_events","type":"User","site_admin":false},"body":"Space inside { missing.
Space inside } missing.","created_at":"2015-01-01T15:19:43Z","updated_at":"2015-01-01T15:19:43Z","html_url":"https://github.com/datasektionen/cashflow/pull/130#discussion_r22400163","pull_request_url":"https://api.github.com/repos/datasektionen/cashflow/pulls/130","_links":{"self":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/comments/22400163"},"html":{"href":"https://github.com/datasektionen/cashflow/pull/130#discussion_r22400163"},"pull_request":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/130"}}},"pull_request":{"url":"https://api.github.com/repos/datasektionen/cashflow/pulls/130","id":26743916,"html_url":"https://github.com/datasektionen/cashflow/pull/130","diff_url":"https://github.com/datasektionen/cashflow/pull/130.diff","patch_url":"https://github.com/datasektionen/cashflow/pull/130.patch","issue_url":"https://api.github.com/repos/datasektionen/cashflow/issues/130","number":130,"state":"open","locked":false,"title":"Tidy up budget controller","user":{"login":"Frost","id":2308,"avatar_url":"https://avatars.githubusercontent.com/u/2308?v=3","gravatar_id":"","url":"https://api.github.com/users/Frost","html_url":"https://github.com/Frost","followers_url":"https://api.github.com/users/Frost/followers","following_url":"https://api.github.com/users/Frost/following{/other_user}","gists_url":"https://api.github.com/users/Frost/gists{/gist_id}","starred_url":"https://api.github.com/users/Frost/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Frost/subscriptions","organizations_url":"https://api.github.com/users/Frost/orgs","repos_url":"https://api.github.com/users/Frost/repos","events_url":"https://api.github.com/users/Frost/events{/privacy}","received_events_url":"https://api.github.com/users/Frost/received_events","type":"User","site_admin":false},"body":"I tidied up `BudgetController#update` to be less repetitive. However, this change also introduces a minor change in behavior:\r\n\r\nIf either a budget post or a budget row value sent to `BudgetController#update` fails, none of the changes will be made.\r\n\r\n* `BudgetRow#sum` must not be negative\r\n* DRY up `BudgetController#update`\r\n* Tests for `BudgetController#update` rollbacks\r\n* `BudgetPost#mage_arrangement_number` must exist\r\n","created_at":"2015-01-01T15:19:37Z","updated_at":"2015-01-01T15:19:43Z","closed_at":null,"merged_at":null,"merge_commit_sha":"07a3c9e78f5d0c3f7c1e48c3cee5b2fedf05975b","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/datasektionen/cashflow/pulls/130/commits","review_comments_url":"https://api.github.com/repos/datasektionen/cashflow/pulls/130/comments","review_comment_url":"https://api.github.com/repos/datasektionen/cashflow/pulls/comments/{number}","comments_url":"https://api.github.com/repos/datasektionen/cashflow/issues/130/comments","statuses_url":"https://api.github.com/repos/datasektionen/cashflow/statuses/d27901927966292678f8cbd7be5ed5a777334bc3","head":{"label":"datasektionen:tidy-up-budget-controller","ref":"tidy-up-budget-controller","sha":"d27901927966292678f8cbd7be5ed5a777334bc3","user":{"login":"datasektionen","id":793965,"avatar_url":"https://avatars.githubusercontent.com/u/793965?v=3","gravatar_id":"","url":"https://api.github.com/users/datasektionen","html_url":"https://github.com/datasektionen","followers_url":"https://api.github.com/users/datasektionen/followers","following_url":"https://api.github.com/users/datasektionen/following{/other_user}","gists_url":"https://api.github.com/users/datasektionen/gists{/gist_id}","starred_url":"https://api.github.com/users/datasektionen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/datasektionen/subscriptions","organizations_url":"https://api.github.com/users/datasektionen/orgs","repos_url":"https://api.github.com/users/datasektionen/repos","events_url":"https://api.github.com/users/datasektionen/events{/privacy}","received_events_url":"https://api.github.com/users/datasektionen/received_events","type":"Organization","site_admin":false},"repo":{"id":1795424,"name":"cashflow","full_name":"datasektionen/cashflow","owner":{"login":"datasektionen","id":793965,"avatar_url":"https://avatars.githubusercontent.com/u/793965?v=3","gravatar_id":"","url":"https://api.github.com/users/datasektionen","html_url":"https://github.com/datasektionen","followers_url":"https://api.github.com/users/datasektionen/followers","following_url":"https://api.github.com/users/datasektionen/following{/other_user}","gists_url":"https://api.github.com/users/datasektionen/gists{/gist_id}","starred_url":"https://api.github.com/users/datasektionen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/datasektionen/subscriptions","organizations_url":"https://api.github.com/users/datasektionen/orgs","repos_url":"https://api.github.com/users/datasektionen/repos","events_url":"https://api.github.com/users/datasektionen/events{/privacy}","received_events_url":"https://api.github.com/users/datasektionen/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/datasektionen/cashflow","description":"Inköp/skuld-hantering","fork":false,"url":"https://api.github.com/repos/datasektionen/cashflow","forks_url":"https://api.github.com/repos/datasektionen/cashflow/forks","keys_url":"https://api.github.com/repos/datasektionen/cashflow/keys{/key_id}","collaborators_url":"https://api.github.com/repos/datasektionen/cashflow/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/datasektionen/cashflow/teams","hooks_url":"https://api.github.com/repos/datasektionen/cashflow/hooks","issue_events_url":"https://api.github.com/repos/datasektionen/cashflow/issues/events{/number}","events_url":"https://api.github.com/repos/datasektionen/cashflow/events","assignees_url":"https://api.github.com/repos/datasektionen/cashflow/assignees{/user}","branches_url":"https://api.github.com/repos/datasektionen/cashflow/branches{/branch}","tags_url":"https://api.github.com/repos/datasektionen/cashflow/tags","blobs_url":"https://api.github.com/repos/datasektionen/cashflow/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/datasektionen/cashflow/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/datasektionen/cashflow/git/refs{/sha}","trees_url":"https://api.github.com/repos/datasektionen/cashflow/git/trees{/sha}","statuses_url":"https://api.github.com/repos/datasektionen/cashflow/statuses/{sha}","languages_url":"https://api.github.com/repos/datasektionen/cashflow/languages","stargazers_url":"https://api.github.com/repos/datasektionen/cashflow/stargazers","contributors_url":"https://api.github.com/repos/datasektionen/cashflow/contributors","subscribers_url":"https://api.github.com/repos/datasektionen/cashflow/subscribers","subscription_url":"https://api.github.com/repos/datasektionen/cashflow/subscription","commits_url":"https://api.github.com/repos/datasektionen/cashflow/commits{/sha}","git_commits_url":"https://api.github.com/repos/datasektionen/cashflow/git/commits{/sha}","comments_url":"https://api.github.com/repos/datasektionen/cashflow/comments{/number}","issue_comment_url":"https://api.github.com/repos/datasektionen/cashflow/issues/comments/{number}","contents_url":"https://api.github.com/repos/datasektionen/cashflow/contents/{+path}","compare_url":"https://api.github.com/repos/datasektionen/cashflow/compare/{base}...{head}","merges_url":"https://api.github.com/repos/datasektionen/cashflow/merges","archive_url":"https://api.github.com/repos/datasektionen/cashflow/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/datasektionen/cashflow/downloads","issues_url":"https://api.github.com/repos/datasektionen/cashflow/issues{/number}","pulls_url":"https://api.github.com/repos/datasektionen/cashflow/pulls{/number}","milestones_url":"https://api.github.com/repos/datasektionen/cashflow/milestones{/number}","notifications_url":"https://api.github.com/repos/datasektionen/cashflow/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/datasektionen/cashflow/labels{/name}","releases_url":"https://api.github.com/repos/datasektionen/cashflow/releases{/id}","created_at":"2011-05-24T20:06:22Z","updated_at":"2014-12-29T10:28:00Z","pushed_at":"2015-01-01T15:16:43Z","git_url":"git://github.com/datasektionen/cashflow.git","ssh_url":"git@github.com:datasektionen/cashflow.git","clone_url":"https://github.com/datasektionen/cashflow.git","svn_url":"https://github.com/datasektionen/cashflow","homepage":"","size":2331,"stargazers_count":4,"watchers_count":4,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":27,"forks":1,"open_issues":27,"watchers":4,"default_branch":"master"}},"base":{"label":"datasektionen:master","ref":"master","sha":"65fdb34921a60eb0864dbb3d5bbafa2e6dffa32a","user":{"login":"datasektionen","id":793965,"avatar_url":"https://avatars.githubusercontent.com/u/793965?v=3","gravatar_id":"","url":"https://api.github.com/users/datasektionen","html_url":"https://github.com/datasektionen","followers_url":"https://api.github.com/users/datasektionen/followers","following_url":"https://api.github.com/users/datasektionen/following{/other_user}","gists_url":"https://api.github.com/users/datasektionen/gists{/gist_id}","starred_url":"https://api.github.com/users/datasektionen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/datasektionen/subscriptions","organizations_url":"https://api.github.com/users/datasektionen/orgs","repos_url":"https://api.github.com/users/datasektionen/repos","events_url":"https://api.github.com/users/datasektionen/events{/privacy}","received_events_url":"https://api.github.com/users/datasektionen/received_events","type":"Organization","site_admin":false},"repo":{"id":1795424,"name":"cashflow","full_name":"datasektionen/cashflow","owner":{"login":"datasektionen","id":793965,"avatar_url":"https://avatars.githubusercontent.com/u/793965?v=3","gravatar_id":"","url":"https://api.github.com/users/datasektionen","html_url":"https://github.com/datasektionen","followers_url":"https://api.github.com/users/datasektionen/followers","following_url":"https://api.github.com/users/datasektionen/following{/other_user}","gists_url":"https://api.github.com/users/datasektionen/gists{/gist_id}","starred_url":"https://api.github.com/users/datasektionen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/datasektionen/subscriptions","organizations_url":"https://api.github.com/users/datasektionen/orgs","repos_url":"https://api.github.com/users/datasektionen/repos","events_url":"https://api.github.com/users/datasektionen/events{/privacy}","received_events_url":"https://api.github.com/users/datasektionen/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/datasektionen/cashflow","description":"Inköp/skuld-hantering","fork":false,"url":"https://api.github.com/repos/datasektionen/cashflow","forks_url":"https://api.github.com/repos/datasektionen/cashflow/forks","keys_url":"https://api.github.com/repos/datasektionen/cashflow/keys{/key_id}","collaborators_url":"https://api.github.com/repos/datasektionen/cashflow/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/datasektionen/cashflow/teams","hooks_url":"https://api.github.com/repos/datasektionen/cashflow/hooks","issue_events_url":"https://api.github.com/repos/datasektionen/cashflow/issues/events{/number}","events_url":"https://api.github.com/repos/datasektionen/cashflow/events","assignees_url":"https://api.github.com/repos/datasektionen/cashflow/assignees{/user}","branches_url":"https://api.github.com/repos/datasektionen/cashflow/branches{/branch}","tags_url":"https://api.github.com/repos/datasektionen/cashflow/tags","blobs_url":"https://api.github.com/repos/datasektionen/cashflow/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/datasektionen/cashflow/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/datasektionen/cashflow/git/refs{/sha}","trees_url":"https://api.github.com/repos/datasektionen/cashflow/git/trees{/sha}","statuses_url":"https://api.github.com/repos/datasektionen/cashflow/statuses/{sha}","languages_url":"https://api.github.com/repos/datasektionen/cashflow/languages","stargazers_url":"https://api.github.com/repos/datasektionen/cashflow/stargazers","contributors_url":"https://api.github.com/repos/datasektionen/cashflow/contributors","subscribers_url":"https://api.github.com/repos/datasektionen/cashflow/subscribers","subscription_url":"https://api.github.com/repos/datasektionen/cashflow/subscription","commits_url":"https://api.github.com/repos/datasektionen/cashflow/commits{/sha}","git_commits_url":"https://api.github.com/repos/datasektionen/cashflow/git/commits{/sha}","comments_url":"https://api.github.com/repos/datasektionen/cashflow/comments{/number}","issue_comment_url":"https://api.github.com/repos/datasektionen/cashflow/issues/comments/{number}","contents_url":"https://api.github.com/repos/datasektionen/cashflow/contents/{+path}","compare_url":"https://api.github.com/repos/datasektionen/cashflow/compare/{base}...{head}","merges_url":"https://api.github.com/repos/datasektionen/cashflow/merges","archive_url":"https://api.github.com/repos/datasektionen/cashflow/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/datasektionen/cashflow/downloads","issues_url":"https://api.github.com/repos/datasektionen/cashflow/issues{/number}","pulls_url":"https://api.github.com/repos/datasektionen/cashflow/pulls{/number}","milestones_url":"https://api.github.com/repos/datasektionen/cashflow/milestones{/number}","notifications_url":"https://api.github.com/repos/datasektionen/cashflow/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/datasektionen/cashflow/labels{/name}","releases_url":"https://api.github.com/repos/datasektionen/cashflow/releases{/id}","created_at":"2011-05-24T20:06:22Z","updated_at":"2014-12-29T10:28:00Z","pushed_at":"2015-01-01T15:16:43Z","git_url":"git://github.com/datasektionen/cashflow.git","ssh_url":"git@github.com:datasektionen/cashflow.git","clone_url":"https://github.com/datasektionen/cashflow.git","svn_url":"https://github.com/datasektionen/cashflow","homepage":"","size":2331,"stargazers_count":4,"watchers_count":4,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":27,"forks":1,"open_issues":27,"watchers":4,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/130"},"html":{"href":"https://github.com/datasektionen/cashflow/pull/130"},"issue":{"href":"https://api.github.com/repos/datasektionen/cashflow/issues/130"},"comments":{"href":"https://api.github.com/repos/datasektionen/cashflow/issues/130/comments"},"review_comments":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/130/comments"},"review_comment":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/130/commits"},"statuses":{"href":"https://api.github.com/repos/datasektionen/cashflow/statuses/d27901927966292678f8cbd7be5ed5a777334bc3"}}}},"public":true,"created_at":"2015-01-01T15:19:43Z","org":{"id":793965,"login":"datasektionen","gravatar_id":"","url":"https://api.github.com/orgs/datasektionen","avatar_url":"https://avatars.githubusercontent.com/u/793965?"}} +,{"id":"2489660118","type":"PullRequestReviewCommentEvent","actor":{"id":6697940,"login":"houndci","gravatar_id":"","url":"https://api.github.com/users/houndci","avatar_url":"https://avatars.githubusercontent.com/u/6697940?"},"repo":{"id":1795424,"name":"datasektionen/cashflow","url":"https://api.github.com/repos/datasektionen/cashflow"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/datasektionen/cashflow/pulls/comments/22400164","id":22400164,"diff_hunk":"@@ -36,38 +36,34 @@\n end\n \n describe 'PUT update' do\n- before(:all) do\n+ before(:each) do\n @year = Time.now.year\n+ @rows = [Factory(:budget_row), Factory(:budget_row)]\n+ @posts = @rows.map(&:budget_post)\n+ @rows_params = Hash[*@rows.flat_map { |r| [r.id, {sum: r.sum + 1000 }]}]\n+ @posts_params = Hash[*@posts.flat_map { |p|\n+ [p.id, {mage_arrangement_number: p.mage_arrangement_number + 1}]\n+ }]\n+\n end\n \n+ let(:params) { {budget_rows: @rows_params, budget_posts: @posts_params} }","path":"spec/controllers/budget_controller_spec.rb","position":16,"original_position":16,"commit_id":"d27901927966292678f8cbd7be5ed5a777334bc3","original_commit_id":"d27901927966292678f8cbd7be5ed5a777334bc3","user":{"login":"houndci","id":6697940,"avatar_url":"https://avatars.githubusercontent.com/u/6697940?v=3","gravatar_id":"","url":"https://api.github.com/users/houndci","html_url":"https://github.com/houndci","followers_url":"https://api.github.com/users/houndci/followers","following_url":"https://api.github.com/users/houndci/following{/other_user}","gists_url":"https://api.github.com/users/houndci/gists{/gist_id}","starred_url":"https://api.github.com/users/houndci/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/houndci/subscriptions","organizations_url":"https://api.github.com/users/houndci/orgs","repos_url":"https://api.github.com/users/houndci/repos","events_url":"https://api.github.com/users/houndci/events{/privacy}","received_events_url":"https://api.github.com/users/houndci/received_events","type":"User","site_admin":false},"body":"Space inside { missing.
Space inside } missing.","created_at":"2015-01-01T15:19:43Z","updated_at":"2015-01-01T15:19:43Z","html_url":"https://github.com/datasektionen/cashflow/pull/130#discussion_r22400164","pull_request_url":"https://api.github.com/repos/datasektionen/cashflow/pulls/130","_links":{"self":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/comments/22400164"},"html":{"href":"https://github.com/datasektionen/cashflow/pull/130#discussion_r22400164"},"pull_request":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/130"}}},"pull_request":{"url":"https://api.github.com/repos/datasektionen/cashflow/pulls/130","id":26743916,"html_url":"https://github.com/datasektionen/cashflow/pull/130","diff_url":"https://github.com/datasektionen/cashflow/pull/130.diff","patch_url":"https://github.com/datasektionen/cashflow/pull/130.patch","issue_url":"https://api.github.com/repos/datasektionen/cashflow/issues/130","number":130,"state":"open","locked":false,"title":"Tidy up budget controller","user":{"login":"Frost","id":2308,"avatar_url":"https://avatars.githubusercontent.com/u/2308?v=3","gravatar_id":"","url":"https://api.github.com/users/Frost","html_url":"https://github.com/Frost","followers_url":"https://api.github.com/users/Frost/followers","following_url":"https://api.github.com/users/Frost/following{/other_user}","gists_url":"https://api.github.com/users/Frost/gists{/gist_id}","starred_url":"https://api.github.com/users/Frost/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Frost/subscriptions","organizations_url":"https://api.github.com/users/Frost/orgs","repos_url":"https://api.github.com/users/Frost/repos","events_url":"https://api.github.com/users/Frost/events{/privacy}","received_events_url":"https://api.github.com/users/Frost/received_events","type":"User","site_admin":false},"body":"I tidied up `BudgetController#update` to be less repetitive. However, this change also introduces a minor change in behavior:\r\n\r\nIf either a budget post or a budget row value sent to `BudgetController#update` fails, none of the changes will be made.\r\n\r\n* `BudgetRow#sum` must not be negative\r\n* DRY up `BudgetController#update`\r\n* Tests for `BudgetController#update` rollbacks\r\n* `BudgetPost#mage_arrangement_number` must exist\r\n","created_at":"2015-01-01T15:19:37Z","updated_at":"2015-01-01T15:19:43Z","closed_at":null,"merged_at":null,"merge_commit_sha":"07a3c9e78f5d0c3f7c1e48c3cee5b2fedf05975b","assignee":{"login":"Koronen","id":543455,"avatar_url":"https://avatars.githubusercontent.com/u/543455?v=3","gravatar_id":"","url":"https://api.github.com/users/Koronen","html_url":"https://github.com/Koronen","followers_url":"https://api.github.com/users/Koronen/followers","following_url":"https://api.github.com/users/Koronen/following{/other_user}","gists_url":"https://api.github.com/users/Koronen/gists{/gist_id}","starred_url":"https://api.github.com/users/Koronen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Koronen/subscriptions","organizations_url":"https://api.github.com/users/Koronen/orgs","repos_url":"https://api.github.com/users/Koronen/repos","events_url":"https://api.github.com/users/Koronen/events{/privacy}","received_events_url":"https://api.github.com/users/Koronen/received_events","type":"User","site_admin":false},"milestone":null,"commits_url":"https://api.github.com/repos/datasektionen/cashflow/pulls/130/commits","review_comments_url":"https://api.github.com/repos/datasektionen/cashflow/pulls/130/comments","review_comment_url":"https://api.github.com/repos/datasektionen/cashflow/pulls/comments/{number}","comments_url":"https://api.github.com/repos/datasektionen/cashflow/issues/130/comments","statuses_url":"https://api.github.com/repos/datasektionen/cashflow/statuses/d27901927966292678f8cbd7be5ed5a777334bc3","head":{"label":"datasektionen:tidy-up-budget-controller","ref":"tidy-up-budget-controller","sha":"d27901927966292678f8cbd7be5ed5a777334bc3","user":{"login":"datasektionen","id":793965,"avatar_url":"https://avatars.githubusercontent.com/u/793965?v=3","gravatar_id":"","url":"https://api.github.com/users/datasektionen","html_url":"https://github.com/datasektionen","followers_url":"https://api.github.com/users/datasektionen/followers","following_url":"https://api.github.com/users/datasektionen/following{/other_user}","gists_url":"https://api.github.com/users/datasektionen/gists{/gist_id}","starred_url":"https://api.github.com/users/datasektionen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/datasektionen/subscriptions","organizations_url":"https://api.github.com/users/datasektionen/orgs","repos_url":"https://api.github.com/users/datasektionen/repos","events_url":"https://api.github.com/users/datasektionen/events{/privacy}","received_events_url":"https://api.github.com/users/datasektionen/received_events","type":"Organization","site_admin":false},"repo":{"id":1795424,"name":"cashflow","full_name":"datasektionen/cashflow","owner":{"login":"datasektionen","id":793965,"avatar_url":"https://avatars.githubusercontent.com/u/793965?v=3","gravatar_id":"","url":"https://api.github.com/users/datasektionen","html_url":"https://github.com/datasektionen","followers_url":"https://api.github.com/users/datasektionen/followers","following_url":"https://api.github.com/users/datasektionen/following{/other_user}","gists_url":"https://api.github.com/users/datasektionen/gists{/gist_id}","starred_url":"https://api.github.com/users/datasektionen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/datasektionen/subscriptions","organizations_url":"https://api.github.com/users/datasektionen/orgs","repos_url":"https://api.github.com/users/datasektionen/repos","events_url":"https://api.github.com/users/datasektionen/events{/privacy}","received_events_url":"https://api.github.com/users/datasektionen/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/datasektionen/cashflow","description":"Inköp/skuld-hantering","fork":false,"url":"https://api.github.com/repos/datasektionen/cashflow","forks_url":"https://api.github.com/repos/datasektionen/cashflow/forks","keys_url":"https://api.github.com/repos/datasektionen/cashflow/keys{/key_id}","collaborators_url":"https://api.github.com/repos/datasektionen/cashflow/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/datasektionen/cashflow/teams","hooks_url":"https://api.github.com/repos/datasektionen/cashflow/hooks","issue_events_url":"https://api.github.com/repos/datasektionen/cashflow/issues/events{/number}","events_url":"https://api.github.com/repos/datasektionen/cashflow/events","assignees_url":"https://api.github.com/repos/datasektionen/cashflow/assignees{/user}","branches_url":"https://api.github.com/repos/datasektionen/cashflow/branches{/branch}","tags_url":"https://api.github.com/repos/datasektionen/cashflow/tags","blobs_url":"https://api.github.com/repos/datasektionen/cashflow/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/datasektionen/cashflow/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/datasektionen/cashflow/git/refs{/sha}","trees_url":"https://api.github.com/repos/datasektionen/cashflow/git/trees{/sha}","statuses_url":"https://api.github.com/repos/datasektionen/cashflow/statuses/{sha}","languages_url":"https://api.github.com/repos/datasektionen/cashflow/languages","stargazers_url":"https://api.github.com/repos/datasektionen/cashflow/stargazers","contributors_url":"https://api.github.com/repos/datasektionen/cashflow/contributors","subscribers_url":"https://api.github.com/repos/datasektionen/cashflow/subscribers","subscription_url":"https://api.github.com/repos/datasektionen/cashflow/subscription","commits_url":"https://api.github.com/repos/datasektionen/cashflow/commits{/sha}","git_commits_url":"https://api.github.com/repos/datasektionen/cashflow/git/commits{/sha}","comments_url":"https://api.github.com/repos/datasektionen/cashflow/comments{/number}","issue_comment_url":"https://api.github.com/repos/datasektionen/cashflow/issues/comments/{number}","contents_url":"https://api.github.com/repos/datasektionen/cashflow/contents/{+path}","compare_url":"https://api.github.com/repos/datasektionen/cashflow/compare/{base}...{head}","merges_url":"https://api.github.com/repos/datasektionen/cashflow/merges","archive_url":"https://api.github.com/repos/datasektionen/cashflow/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/datasektionen/cashflow/downloads","issues_url":"https://api.github.com/repos/datasektionen/cashflow/issues{/number}","pulls_url":"https://api.github.com/repos/datasektionen/cashflow/pulls{/number}","milestones_url":"https://api.github.com/repos/datasektionen/cashflow/milestones{/number}","notifications_url":"https://api.github.com/repos/datasektionen/cashflow/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/datasektionen/cashflow/labels{/name}","releases_url":"https://api.github.com/repos/datasektionen/cashflow/releases{/id}","created_at":"2011-05-24T20:06:22Z","updated_at":"2014-12-29T10:28:00Z","pushed_at":"2015-01-01T15:16:43Z","git_url":"git://github.com/datasektionen/cashflow.git","ssh_url":"git@github.com:datasektionen/cashflow.git","clone_url":"https://github.com/datasektionen/cashflow.git","svn_url":"https://github.com/datasektionen/cashflow","homepage":"","size":2331,"stargazers_count":4,"watchers_count":4,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":27,"forks":1,"open_issues":27,"watchers":4,"default_branch":"master"}},"base":{"label":"datasektionen:master","ref":"master","sha":"65fdb34921a60eb0864dbb3d5bbafa2e6dffa32a","user":{"login":"datasektionen","id":793965,"avatar_url":"https://avatars.githubusercontent.com/u/793965?v=3","gravatar_id":"","url":"https://api.github.com/users/datasektionen","html_url":"https://github.com/datasektionen","followers_url":"https://api.github.com/users/datasektionen/followers","following_url":"https://api.github.com/users/datasektionen/following{/other_user}","gists_url":"https://api.github.com/users/datasektionen/gists{/gist_id}","starred_url":"https://api.github.com/users/datasektionen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/datasektionen/subscriptions","organizations_url":"https://api.github.com/users/datasektionen/orgs","repos_url":"https://api.github.com/users/datasektionen/repos","events_url":"https://api.github.com/users/datasektionen/events{/privacy}","received_events_url":"https://api.github.com/users/datasektionen/received_events","type":"Organization","site_admin":false},"repo":{"id":1795424,"name":"cashflow","full_name":"datasektionen/cashflow","owner":{"login":"datasektionen","id":793965,"avatar_url":"https://avatars.githubusercontent.com/u/793965?v=3","gravatar_id":"","url":"https://api.github.com/users/datasektionen","html_url":"https://github.com/datasektionen","followers_url":"https://api.github.com/users/datasektionen/followers","following_url":"https://api.github.com/users/datasektionen/following{/other_user}","gists_url":"https://api.github.com/users/datasektionen/gists{/gist_id}","starred_url":"https://api.github.com/users/datasektionen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/datasektionen/subscriptions","organizations_url":"https://api.github.com/users/datasektionen/orgs","repos_url":"https://api.github.com/users/datasektionen/repos","events_url":"https://api.github.com/users/datasektionen/events{/privacy}","received_events_url":"https://api.github.com/users/datasektionen/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/datasektionen/cashflow","description":"Inköp/skuld-hantering","fork":false,"url":"https://api.github.com/repos/datasektionen/cashflow","forks_url":"https://api.github.com/repos/datasektionen/cashflow/forks","keys_url":"https://api.github.com/repos/datasektionen/cashflow/keys{/key_id}","collaborators_url":"https://api.github.com/repos/datasektionen/cashflow/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/datasektionen/cashflow/teams","hooks_url":"https://api.github.com/repos/datasektionen/cashflow/hooks","issue_events_url":"https://api.github.com/repos/datasektionen/cashflow/issues/events{/number}","events_url":"https://api.github.com/repos/datasektionen/cashflow/events","assignees_url":"https://api.github.com/repos/datasektionen/cashflow/assignees{/user}","branches_url":"https://api.github.com/repos/datasektionen/cashflow/branches{/branch}","tags_url":"https://api.github.com/repos/datasektionen/cashflow/tags","blobs_url":"https://api.github.com/repos/datasektionen/cashflow/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/datasektionen/cashflow/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/datasektionen/cashflow/git/refs{/sha}","trees_url":"https://api.github.com/repos/datasektionen/cashflow/git/trees{/sha}","statuses_url":"https://api.github.com/repos/datasektionen/cashflow/statuses/{sha}","languages_url":"https://api.github.com/repos/datasektionen/cashflow/languages","stargazers_url":"https://api.github.com/repos/datasektionen/cashflow/stargazers","contributors_url":"https://api.github.com/repos/datasektionen/cashflow/contributors","subscribers_url":"https://api.github.com/repos/datasektionen/cashflow/subscribers","subscription_url":"https://api.github.com/repos/datasektionen/cashflow/subscription","commits_url":"https://api.github.com/repos/datasektionen/cashflow/commits{/sha}","git_commits_url":"https://api.github.com/repos/datasektionen/cashflow/git/commits{/sha}","comments_url":"https://api.github.com/repos/datasektionen/cashflow/comments{/number}","issue_comment_url":"https://api.github.com/repos/datasektionen/cashflow/issues/comments/{number}","contents_url":"https://api.github.com/repos/datasektionen/cashflow/contents/{+path}","compare_url":"https://api.github.com/repos/datasektionen/cashflow/compare/{base}...{head}","merges_url":"https://api.github.com/repos/datasektionen/cashflow/merges","archive_url":"https://api.github.com/repos/datasektionen/cashflow/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/datasektionen/cashflow/downloads","issues_url":"https://api.github.com/repos/datasektionen/cashflow/issues{/number}","pulls_url":"https://api.github.com/repos/datasektionen/cashflow/pulls{/number}","milestones_url":"https://api.github.com/repos/datasektionen/cashflow/milestones{/number}","notifications_url":"https://api.github.com/repos/datasektionen/cashflow/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/datasektionen/cashflow/labels{/name}","releases_url":"https://api.github.com/repos/datasektionen/cashflow/releases{/id}","created_at":"2011-05-24T20:06:22Z","updated_at":"2014-12-29T10:28:00Z","pushed_at":"2015-01-01T15:16:43Z","git_url":"git://github.com/datasektionen/cashflow.git","ssh_url":"git@github.com:datasektionen/cashflow.git","clone_url":"https://github.com/datasektionen/cashflow.git","svn_url":"https://github.com/datasektionen/cashflow","homepage":"","size":2331,"stargazers_count":4,"watchers_count":4,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":27,"forks":1,"open_issues":27,"watchers":4,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/130"},"html":{"href":"https://github.com/datasektionen/cashflow/pull/130"},"issue":{"href":"https://api.github.com/repos/datasektionen/cashflow/issues/130"},"comments":{"href":"https://api.github.com/repos/datasektionen/cashflow/issues/130/comments"},"review_comments":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/130/comments"},"review_comment":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/datasektionen/cashflow/pulls/130/commits"},"statuses":{"href":"https://api.github.com/repos/datasektionen/cashflow/statuses/d27901927966292678f8cbd7be5ed5a777334bc3"}}}},"public":true,"created_at":"2015-01-01T15:19:43Z","org":{"id":793965,"login":"datasektionen","gravatar_id":"","url":"https://api.github.com/orgs/datasektionen","avatar_url":"https://avatars.githubusercontent.com/u/793965?"}} +,{"id":"2489660120","type":"PushEvent","actor":{"id":8959078,"login":"Xirexel","gravatar_id":"","url":"https://api.github.com/users/Xirexel","avatar_url":"https://avatars.githubusercontent.com/u/8959078?"},"repo":{"id":24783462,"name":"Xirexel/ROAD","url":"https://api.github.com/repos/Xirexel/ROAD"},"payload":{"push_id":536868056,"size":3,"distinct_size":0,"ref":"refs/heads/development","head":"d3cf7b504c8f23a66fd8c375c820a82cd6972fc2","before":"45c703d8e1ec15d79a63cad053b8c0bd8f14fee1","commits":[{"sha":"79ef257e2cdecf4aadc764381849eba014a264e8","author":{"email":"520365a6a6ad25cb5e3d929ed1c979e3d69a04bb@users.noreply.github.com","name":"Xirexel"},"message":"Add EcodingOptions lib.","distinct":false,"url":"https://api.github.com/repos/Xirexel/ROAD/commits/79ef257e2cdecf4aadc764381849eba014a264e8"},{"sha":"26a4b1cf4eb605150a862ff57c033472914f8cf4","author":{"email":"520365a6a6ad25cb5e3d929ed1c979e3d69a04bb@users.noreply.github.com","name":"Xirexel"},"message":"Modify OptionsWidget class.","distinct":false,"url":"https://api.github.com/repos/Xirexel/ROAD/commits/26a4b1cf4eb605150a862ff57c033472914f8cf4"},{"sha":"d3cf7b504c8f23a66fd8c375c820a82cd6972fc2","author":{"email":"520365a6a6ad25cb5e3d929ed1c979e3d69a04bb@users.noreply.github.com","name":"Xirexel"},"message":"Modify ListItem lib.","distinct":false,"url":"https://api.github.com/repos/Xirexel/ROAD/commits/d3cf7b504c8f23a66fd8c375c820a82cd6972fc2"}]},"public":true,"created_at":"2015-01-01T15:19:43Z"} +,{"id":"2489660121","type":"PushEvent","actor":{"id":8862627,"login":"onbjerg","gravatar_id":"","url":"https://api.github.com/users/onbjerg","avatar_url":"https://avatars.githubusercontent.com/u/8862627?"},"repo":{"id":28688915,"name":"onbjerg/html","url":"https://api.github.com/repos/onbjerg/html"},"payload":{"push_id":536868057,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5f0b0d71c19df8dafff814bb78f514587bdfe489","before":"b04be9a84be0d6f7552b281ad6b9e2795218fe56","commits":[{"sha":"5f0b0d71c19df8dafff814bb78f514587bdfe489","author":{"email":"db3d405b10675998c030223177d42e71b4e7a312@pandisign.com","name":"onbjerg"},"message":"Rename trait because of illuminate/support@02cb217","distinct":true,"url":"https://api.github.com/repos/onbjerg/html/commits/5f0b0d71c19df8dafff814bb78f514587bdfe489"}]},"public":true,"created_at":"2015-01-01T15:19:43Z"} +,{"id":"2489660122","type":"PushEvent","actor":{"id":8959078,"login":"Xirexel","gravatar_id":"","url":"https://api.github.com/users/Xirexel","avatar_url":"https://avatars.githubusercontent.com/u/8959078?"},"repo":{"id":24783462,"name":"Xirexel/ROAD","url":"https://api.github.com/repos/Xirexel/ROAD"},"payload":{"push_id":536868059,"size":5,"distinct_size":1,"ref":"refs/heads/ROADcoderBranch","head":"48cb1a9ad4567df8cf6f95372c75e811b5a0b507","before":"1dbfda89d925eee585e2c4a2a83e988bdf241690","commits":[{"sha":"45c703d8e1ec15d79a63cad053b8c0bd8f14fee1","author":{"email":"520365a6a6ad25cb5e3d929ed1c979e3d69a04bb@users.noreply.github.com","name":"Xirexel"},"message":"Merge branch 'ROADcoderBranch' into development","distinct":false,"url":"https://api.github.com/repos/Xirexel/ROAD/commits/45c703d8e1ec15d79a63cad053b8c0bd8f14fee1"},{"sha":"79ef257e2cdecf4aadc764381849eba014a264e8","author":{"email":"520365a6a6ad25cb5e3d929ed1c979e3d69a04bb@users.noreply.github.com","name":"Xirexel"},"message":"Add EcodingOptions lib.","distinct":false,"url":"https://api.github.com/repos/Xirexel/ROAD/commits/79ef257e2cdecf4aadc764381849eba014a264e8"},{"sha":"26a4b1cf4eb605150a862ff57c033472914f8cf4","author":{"email":"520365a6a6ad25cb5e3d929ed1c979e3d69a04bb@users.noreply.github.com","name":"Xirexel"},"message":"Modify OptionsWidget class.","distinct":false,"url":"https://api.github.com/repos/Xirexel/ROAD/commits/26a4b1cf4eb605150a862ff57c033472914f8cf4"},{"sha":"d3cf7b504c8f23a66fd8c375c820a82cd6972fc2","author":{"email":"520365a6a6ad25cb5e3d929ed1c979e3d69a04bb@users.noreply.github.com","name":"Xirexel"},"message":"Modify ListItem lib.","distinct":false,"url":"https://api.github.com/repos/Xirexel/ROAD/commits/d3cf7b504c8f23a66fd8c375c820a82cd6972fc2"},{"sha":"48cb1a9ad4567df8cf6f95372c75e811b5a0b507","author":{"email":"520365a6a6ad25cb5e3d929ed1c979e3d69a04bb@users.noreply.github.com","name":"Xirexel"},"message":"Merge branch 'development' into ROADcoderBranch","distinct":true,"url":"https://api.github.com/repos/Xirexel/ROAD/commits/48cb1a9ad4567df8cf6f95372c75e811b5a0b507"}]},"public":true,"created_at":"2015-01-01T15:19:43Z"} +,{"id":"2489660124","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":536868061,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"78b4456e3621b9a9f57cba02c4cb93df9009000f","before":"c3b1e583fe662d7c26df97188d6b61640c4ce25e","commits":[{"sha":"78b4456e3621b9a9f57cba02c4cb93df9009000f","author":{"email":"de163e90d3aeef9f404d1de71c48e234a211e3c3@gmail.com","name":"KT"},"message":"Update","distinct":true,"url":"https://api.github.com/repos/qdm/qdm.github.io/commits/78b4456e3621b9a9f57cba02c4cb93df9009000f"}]},"public":true,"created_at":"2015-01-01T15:19:43Z"} +,{"id":"2489660126","type":"ForkEvent","actor":{"id":7650630,"login":"cap0dom","gravatar_id":"","url":"https://api.github.com/users/cap0dom","avatar_url":"https://avatars.githubusercontent.com/u/7650630?"},"repo":{"id":4086616,"name":"shadowsocks/shadowsocks","url":"https://api.github.com/repos/shadowsocks/shadowsocks"},"payload":{"forkee":{"id":28688958,"name":"shadowsocks","full_name":"cap0dom/shadowsocks","owner":{"login":"cap0dom","id":7650630,"avatar_url":"https://avatars.githubusercontent.com/u/7650630?v=3","gravatar_id":"","url":"https://api.github.com/users/cap0dom","html_url":"https://github.com/cap0dom","followers_url":"https://api.github.com/users/cap0dom/followers","following_url":"https://api.github.com/users/cap0dom/following{/other_user}","gists_url":"https://api.github.com/users/cap0dom/gists{/gist_id}","starred_url":"https://api.github.com/users/cap0dom/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cap0dom/subscriptions","organizations_url":"https://api.github.com/users/cap0dom/orgs","repos_url":"https://api.github.com/users/cap0dom/repos","events_url":"https://api.github.com/users/cap0dom/events{/privacy}","received_events_url":"https://api.github.com/users/cap0dom/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/cap0dom/shadowsocks","description":"A fast tunnel proxy that helps you bypass firewalls","fork":true,"url":"https://api.github.com/repos/cap0dom/shadowsocks","forks_url":"https://api.github.com/repos/cap0dom/shadowsocks/forks","keys_url":"https://api.github.com/repos/cap0dom/shadowsocks/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cap0dom/shadowsocks/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cap0dom/shadowsocks/teams","hooks_url":"https://api.github.com/repos/cap0dom/shadowsocks/hooks","issue_events_url":"https://api.github.com/repos/cap0dom/shadowsocks/issues/events{/number}","events_url":"https://api.github.com/repos/cap0dom/shadowsocks/events","assignees_url":"https://api.github.com/repos/cap0dom/shadowsocks/assignees{/user}","branches_url":"https://api.github.com/repos/cap0dom/shadowsocks/branches{/branch}","tags_url":"https://api.github.com/repos/cap0dom/shadowsocks/tags","blobs_url":"https://api.github.com/repos/cap0dom/shadowsocks/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cap0dom/shadowsocks/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cap0dom/shadowsocks/git/refs{/sha}","trees_url":"https://api.github.com/repos/cap0dom/shadowsocks/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cap0dom/shadowsocks/statuses/{sha}","languages_url":"https://api.github.com/repos/cap0dom/shadowsocks/languages","stargazers_url":"https://api.github.com/repos/cap0dom/shadowsocks/stargazers","contributors_url":"https://api.github.com/repos/cap0dom/shadowsocks/contributors","subscribers_url":"https://api.github.com/repos/cap0dom/shadowsocks/subscribers","subscription_url":"https://api.github.com/repos/cap0dom/shadowsocks/subscription","commits_url":"https://api.github.com/repos/cap0dom/shadowsocks/commits{/sha}","git_commits_url":"https://api.github.com/repos/cap0dom/shadowsocks/git/commits{/sha}","comments_url":"https://api.github.com/repos/cap0dom/shadowsocks/comments{/number}","issue_comment_url":"https://api.github.com/repos/cap0dom/shadowsocks/issues/comments/{number}","contents_url":"https://api.github.com/repos/cap0dom/shadowsocks/contents/{+path}","compare_url":"https://api.github.com/repos/cap0dom/shadowsocks/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cap0dom/shadowsocks/merges","archive_url":"https://api.github.com/repos/cap0dom/shadowsocks/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cap0dom/shadowsocks/downloads","issues_url":"https://api.github.com/repos/cap0dom/shadowsocks/issues{/number}","pulls_url":"https://api.github.com/repos/cap0dom/shadowsocks/pulls{/number}","milestones_url":"https://api.github.com/repos/cap0dom/shadowsocks/milestones{/number}","notifications_url":"https://api.github.com/repos/cap0dom/shadowsocks/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cap0dom/shadowsocks/labels{/name}","releases_url":"https://api.github.com/repos/cap0dom/shadowsocks/releases{/id}","created_at":"2015-01-01T15:19:43Z","updated_at":"2015-01-01T14:57:47Z","pushed_at":"2014-12-31T09:42:41Z","git_url":"git://github.com/cap0dom/shadowsocks.git","ssh_url":"git@github.com:cap0dom/shadowsocks.git","clone_url":"https://github.com/cap0dom/shadowsocks.git","svn_url":"https://github.com/cap0dom/shadowsocks","homepage":"","size":3366,"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:19:43Z","org":{"id":3006190,"login":"shadowsocks","gravatar_id":"","url":"https://api.github.com/orgs/shadowsocks","avatar_url":"https://avatars.githubusercontent.com/u/3006190?"}} +,{"id":"2489660127","type":"CreateEvent","actor":{"id":10364701,"login":"hexiaoke","gravatar_id":"","url":"https://api.github.com/users/hexiaoke","avatar_url":"https://avatars.githubusercontent.com/u/10364701?"},"repo":{"id":28688959,"name":"hexiaoke/mogou","url":"https://api.github.com/repos/hexiaoke/mogou"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"作业","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:19:43Z"} +,{"id":"2489660128","type":"PushEvent","actor":{"id":165293,"login":"mordof","gravatar_id":"","url":"https://api.github.com/users/mordof","avatar_url":"https://avatars.githubusercontent.com/u/165293?"},"repo":{"id":27201748,"name":"mordof/Tick-Based-Game","url":"https://api.github.com/repos/mordof/Tick-Based-Game"},"payload":{"push_id":536868062,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"86aebd493c5629fad5d3a3738f95a86fa9f16743","before":"63ec18bd6437ef49705bec39dae7f435b7ab0bea","commits":[{"sha":"240581ff3ae02c534a300032e165740c9624b80f","author":{"email":"58727281fef2942a042077767f77630c4ddb594e@gmail.com","name":"Mike Winger"},"message":"Made the chat text fancy","distinct":true,"url":"https://api.github.com/repos/mordof/Tick-Based-Game/commits/240581ff3ae02c534a300032e165740c9624b80f"},{"sha":"86aebd493c5629fad5d3a3738f95a86fa9f16743","author":{"email":"58727281fef2942a042077767f77630c4ddb594e@gmail.com","name":"Mike Winger"},"message":"Added a Ship model","distinct":true,"url":"https://api.github.com/repos/mordof/Tick-Based-Game/commits/86aebd493c5629fad5d3a3738f95a86fa9f16743"}]},"public":true,"created_at":"2015-01-01T15:19:44Z"} +,{"id":"2489660130","type":"PushEvent","actor":{"id":8640462,"login":"mkoths2","gravatar_id":"","url":"https://api.github.com/users/mkoths2","avatar_url":"https://avatars.githubusercontent.com/u/8640462?"},"repo":{"id":26279627,"name":"mkoths2/YAIB","url":"https://api.github.com/repos/mkoths2/YAIB"},"payload":{"push_id":536868064,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d7ee1eb9397aa51764b0b48fcf2b0be8295245b7","before":"9e5d58167b8b0cd898af90b185f6f188f6960d98","commits":[{"sha":"d7ee1eb9397aa51764b0b48fcf2b0be8295245b7","author":{"email":"1f2d85a358b576d40b62d5ca7bf66dbf767b2868@web.de","name":"mkoths2"},"message":"Licensing (GPL3)","distinct":true,"url":"https://api.github.com/repos/mkoths2/YAIB/commits/d7ee1eb9397aa51764b0b48fcf2b0be8295245b7"}]},"public":true,"created_at":"2015-01-01T15:19:44Z"} +,{"id":"2489660133","type":"CreateEvent","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":{"ref":"remove-pry","ref_type":"branch","master_branch":"master","description":"Automatic retries for ActiveJob","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:19:45Z","org":{"id":790629,"login":"gocardless","gravatar_id":"","url":"https://api.github.com/orgs/gocardless","avatar_url":"https://avatars.githubusercontent.com/u/790629?"}} +,{"id":"2489660134","type":"CreateEvent","actor":{"id":6960586,"login":"tachikomapocket","gravatar_id":"","url":"https://api.github.com/users/tachikomapocket","avatar_url":"https://avatars.githubusercontent.com/u/6960586?"},"repo":{"id":24147917,"name":"tachikomapocket/hoshinotsuyoshi-_-vultrlife","url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife"},"payload":{"ref":"tachikoma/update-20150101151941","ref_type":"branch","master_branch":"master","description":"Vultr VPS API wrapper","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:19:45Z"} +,{"id":"2489660136","type":"PushEvent","actor":{"id":337024,"login":"nabetama","gravatar_id":"","url":"https://api.github.com/users/nabetama","avatar_url":"https://avatars.githubusercontent.com/u/337024?"},"repo":{"id":27433708,"name":"nabetama/slacky","url":"https://api.github.com/repos/nabetama/slacky"},"payload":{"push_id":536868067,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"bc69248b8042cc9aeb6962bdf45754022ddd7be0","before":"a8bd6338f29162c5eb0b6d04ff2f843dbeb67987","commits":[{"sha":"21f251759c9234556d604a02713a5199127f9cc7","author":{"email":"2278e2e498cb2e11617fd57f8a62966011a6b306@gmail.com","name":"nabetama"},"message":"Update README.","distinct":true,"url":"https://api.github.com/repos/nabetama/slacky/commits/21f251759c9234556d604a02713a5199127f9cc7"},{"sha":"bc69248b8042cc9aeb6962bdf45754022ddd7be0","author":{"email":"2278e2e498cb2e11617fd57f8a62966011a6b306@gmail.com","name":"nabetama"},"message":"Bump version.","distinct":true,"url":"https://api.github.com/repos/nabetama/slacky/commits/bc69248b8042cc9aeb6962bdf45754022ddd7be0"}]},"public":true,"created_at":"2015-01-01T15:19:45Z"} +,{"id":"2489660137","type":"PushEvent","actor":{"id":976924,"login":"martin-ueding","gravatar_id":"","url":"https://api.github.com/users/martin-ueding","avatar_url":"https://avatars.githubusercontent.com/u/976924?"},"repo":{"id":28546498,"name":"martin-ueding/playbooks","url":"https://api.github.com/repos/martin-ueding/playbooks"},"payload":{"push_id":536868068,"size":4,"distinct_size":4,"ref":"refs/heads/master","head":"32f0825751ff70fde3ff7259f7c919fc3339af9e","before":"db3900300962bb434cb4871b2b48792bdd147adc","commits":[{"sha":"8a02865c702f8b6fd33beb17be572a086edd259d","author":{"email":"34c6fceca75e456f25e7e99531e2425c6c1de443@martin-ueding.de","name":"Martin Ueding"},"message":"Start with flash role","distinct":true,"url":"https://api.github.com/repos/martin-ueding/playbooks/commits/8a02865c702f8b6fd33beb17be572a086edd259d"},{"sha":"e259b675436be0039d6ef643008cf4bc1b1078b1","author":{"email":"34c6fceca75e456f25e7e99531e2425c6c1de443@martin-ueding.de","name":"Martin Ueding"},"message":"Add dedicated file for frederike-lusitano","distinct":true,"url":"https://api.github.com/repos/martin-ueding/playbooks/commits/e259b675436be0039d6ef643008cf4bc1b1078b1"},{"sha":"254df806575a03c321f55dc17dec8599bf5d8d68","author":{"email":"34c6fceca75e456f25e7e99531e2425c6c1de443@martin-ueding.de","name":"Martin Ueding"},"message":"Change title","distinct":true,"url":"https://api.github.com/repos/martin-ueding/playbooks/commits/254df806575a03c321f55dc17dec8599bf5d8d68"},{"sha":"32f0825751ff70fde3ff7259f7c919fc3339af9e","author":{"email":"34c6fceca75e456f25e7e99531e2425c6c1de443@martin-ueding.de","name":"Martin Ueding"},"message":"Add specific flash instructions","distinct":true,"url":"https://api.github.com/repos/martin-ueding/playbooks/commits/32f0825751ff70fde3ff7259f7c919fc3339af9e"}]},"public":true,"created_at":"2015-01-01T15:19:45Z"} +,{"id":"2489660139","type":"PushEvent","actor":{"id":10364203,"login":"gladwinbobby","gravatar_id":"","url":"https://api.github.com/users/gladwinbobby","avatar_url":"https://avatars.githubusercontent.com/u/10364203?"},"repo":{"id":28687073,"name":"gladwinbobby/Confession-App","url":"https://api.github.com/repos/gladwinbobby/Confession-App"},"payload":{"push_id":536868070,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"110406c36098d007510c0c51907d601fcf417316","before":"90255860cb1b8f690e4ec5e633019cce679d88cb","commits":[{"sha":"110406c36098d007510c0c51907d601fcf417316","author":{"email":"e292b451491da8bc716210e75644dde391673c71@gmail.com","name":"Gladwin Henald"},"message":"Update db_functions.php","distinct":true,"url":"https://api.github.com/repos/gladwinbobby/Confession-App/commits/110406c36098d007510c0c51907d601fcf417316"}]},"public":true,"created_at":"2015-01-01T15:19:45Z"} +,{"id":"2489660140","type":"WatchEvent","actor":{"id":891829,"login":"danielbaak","gravatar_id":"","url":"https://api.github.com/users/danielbaak","avatar_url":"https://avatars.githubusercontent.com/u/891829?"},"repo":{"id":597,"name":"reinh/jquery-autocomplete","url":"https://api.github.com/repos/reinh/jquery-autocomplete"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:19:45Z"} +,{"id":"2489660142","type":"WatchEvent","actor":{"id":2233160,"login":"atteroTheGreatest","gravatar_id":"","url":"https://api.github.com/users/atteroTheGreatest","avatar_url":"https://avatars.githubusercontent.com/u/2233160?"},"repo":{"id":26567798,"name":"quantopian/DockORM","url":"https://api.github.com/repos/quantopian/DockORM"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:19:46Z","org":{"id":1393215,"login":"quantopian","gravatar_id":"","url":"https://api.github.com/orgs/quantopian","avatar_url":"https://avatars.githubusercontent.com/u/1393215?"}} +,{"id":"2489660143","type":"PullRequestEvent","actor":{"id":6960586,"login":"tachikomapocket","gravatar_id":"","url":"https://api.github.com/users/tachikomapocket","avatar_url":"https://avatars.githubusercontent.com/u/6960586?"},"repo":{"id":20154092,"name":"hoshinotsuyoshi/vultrlife","url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife"},"payload":{"action":"opened","number":30,"pull_request":{"url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/pulls/30","id":26743920,"html_url":"https://github.com/hoshinotsuyoshi/vultrlife/pull/30","diff_url":"https://github.com/hoshinotsuyoshi/vultrlife/pull/30.diff","patch_url":"https://github.com/hoshinotsuyoshi/vultrlife/pull/30.patch","issue_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/issues/30","number":30,"state":"open","locked":false,"title":"Exec tachikoma update 20150101151941","user":{"login":"tachikomapocket","id":6960586,"avatar_url":"https://avatars.githubusercontent.com/u/6960586?v=3","gravatar_id":"","url":"https://api.github.com/users/tachikomapocket","html_url":"https://github.com/tachikomapocket","followers_url":"https://api.github.com/users/tachikomapocket/followers","following_url":"https://api.github.com/users/tachikomapocket/following{/other_user}","gists_url":"https://api.github.com/users/tachikomapocket/gists{/gist_id}","starred_url":"https://api.github.com/users/tachikomapocket/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tachikomapocket/subscriptions","organizations_url":"https://api.github.com/users/tachikomapocket/orgs","repos_url":"https://api.github.com/users/tachikomapocket/repos","events_url":"https://api.github.com/users/tachikomapocket/events{/privacy}","received_events_url":"https://api.github.com/users/tachikomapocket/received_events","type":"User","site_admin":false},"body":":hamster::hamster::hamster:

Strategy none\nPowered by Interval Pull Request as a Service - Tachikoma.io","created_at":"2015-01-01T15:19:46Z","updated_at":"2015-01-01T15:19:46Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/pulls/30/commits","review_comments_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/pulls/30/comments","review_comment_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/pulls/comments/{number}","comments_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/issues/30/comments","statuses_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/statuses/6799d9d9e6fdbd768a95d1f6454115c066ea70b8","head":{"label":"tachikomapocket:tachikoma/update-20150101151941","ref":"tachikoma/update-20150101151941","sha":"6799d9d9e6fdbd768a95d1f6454115c066ea70b8","user":{"login":"tachikomapocket","id":6960586,"avatar_url":"https://avatars.githubusercontent.com/u/6960586?v=3","gravatar_id":"","url":"https://api.github.com/users/tachikomapocket","html_url":"https://github.com/tachikomapocket","followers_url":"https://api.github.com/users/tachikomapocket/followers","following_url":"https://api.github.com/users/tachikomapocket/following{/other_user}","gists_url":"https://api.github.com/users/tachikomapocket/gists{/gist_id}","starred_url":"https://api.github.com/users/tachikomapocket/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tachikomapocket/subscriptions","organizations_url":"https://api.github.com/users/tachikomapocket/orgs","repos_url":"https://api.github.com/users/tachikomapocket/repos","events_url":"https://api.github.com/users/tachikomapocket/events{/privacy}","received_events_url":"https://api.github.com/users/tachikomapocket/received_events","type":"User","site_admin":false},"repo":{"id":24147917,"name":"hoshinotsuyoshi-_-vultrlife","full_name":"tachikomapocket/hoshinotsuyoshi-_-vultrlife","owner":{"login":"tachikomapocket","id":6960586,"avatar_url":"https://avatars.githubusercontent.com/u/6960586?v=3","gravatar_id":"","url":"https://api.github.com/users/tachikomapocket","html_url":"https://github.com/tachikomapocket","followers_url":"https://api.github.com/users/tachikomapocket/followers","following_url":"https://api.github.com/users/tachikomapocket/following{/other_user}","gists_url":"https://api.github.com/users/tachikomapocket/gists{/gist_id}","starred_url":"https://api.github.com/users/tachikomapocket/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tachikomapocket/subscriptions","organizations_url":"https://api.github.com/users/tachikomapocket/orgs","repos_url":"https://api.github.com/users/tachikomapocket/repos","events_url":"https://api.github.com/users/tachikomapocket/events{/privacy}","received_events_url":"https://api.github.com/users/tachikomapocket/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/tachikomapocket/hoshinotsuyoshi-_-vultrlife","description":"Vultr VPS API wrapper","fork":true,"url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife","forks_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/forks","keys_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/keys{/key_id}","collaborators_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/teams","hooks_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/hooks","issue_events_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/issues/events{/number}","events_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/events","assignees_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/assignees{/user}","branches_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/branches{/branch}","tags_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/tags","blobs_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/git/refs{/sha}","trees_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/git/trees{/sha}","statuses_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/statuses/{sha}","languages_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/languages","stargazers_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/stargazers","contributors_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/contributors","subscribers_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/subscribers","subscription_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/subscription","commits_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/commits{/sha}","git_commits_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/git/commits{/sha}","comments_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/comments{/number}","issue_comment_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/issues/comments/{number}","contents_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/contents/{+path}","compare_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/compare/{base}...{head}","merges_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/merges","archive_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/downloads","issues_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/issues{/number}","pulls_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/pulls{/number}","milestones_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/milestones{/number}","notifications_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/labels{/name}","releases_url":"https://api.github.com/repos/tachikomapocket/hoshinotsuyoshi-_-vultrlife/releases{/id}","created_at":"2014-09-17T14:24:03Z","updated_at":"2014-09-17T14:24:03Z","pushed_at":"2015-01-01T15:19:45Z","git_url":"git://github.com/tachikomapocket/hoshinotsuyoshi-_-vultrlife.git","ssh_url":"git@github.com:tachikomapocket/hoshinotsuyoshi-_-vultrlife.git","clone_url":"https://github.com/tachikomapocket/hoshinotsuyoshi-_-vultrlife.git","svn_url":"https://github.com/tachikomapocket/hoshinotsuyoshi-_-vultrlife","homepage":"","size":205,"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":"hoshinotsuyoshi:master","ref":"master","sha":"77a776d257a2436999eb722afb99b372b7aa9f95","user":{"login":"hoshinotsuyoshi","id":1394049,"avatar_url":"https://avatars.githubusercontent.com/u/1394049?v=3","gravatar_id":"","url":"https://api.github.com/users/hoshinotsuyoshi","html_url":"https://github.com/hoshinotsuyoshi","followers_url":"https://api.github.com/users/hoshinotsuyoshi/followers","following_url":"https://api.github.com/users/hoshinotsuyoshi/following{/other_user}","gists_url":"https://api.github.com/users/hoshinotsuyoshi/gists{/gist_id}","starred_url":"https://api.github.com/users/hoshinotsuyoshi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hoshinotsuyoshi/subscriptions","organizations_url":"https://api.github.com/users/hoshinotsuyoshi/orgs","repos_url":"https://api.github.com/users/hoshinotsuyoshi/repos","events_url":"https://api.github.com/users/hoshinotsuyoshi/events{/privacy}","received_events_url":"https://api.github.com/users/hoshinotsuyoshi/received_events","type":"User","site_admin":false},"repo":{"id":20154092,"name":"vultrlife","full_name":"hoshinotsuyoshi/vultrlife","owner":{"login":"hoshinotsuyoshi","id":1394049,"avatar_url":"https://avatars.githubusercontent.com/u/1394049?v=3","gravatar_id":"","url":"https://api.github.com/users/hoshinotsuyoshi","html_url":"https://github.com/hoshinotsuyoshi","followers_url":"https://api.github.com/users/hoshinotsuyoshi/followers","following_url":"https://api.github.com/users/hoshinotsuyoshi/following{/other_user}","gists_url":"https://api.github.com/users/hoshinotsuyoshi/gists{/gist_id}","starred_url":"https://api.github.com/users/hoshinotsuyoshi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hoshinotsuyoshi/subscriptions","organizations_url":"https://api.github.com/users/hoshinotsuyoshi/orgs","repos_url":"https://api.github.com/users/hoshinotsuyoshi/repos","events_url":"https://api.github.com/users/hoshinotsuyoshi/events{/privacy}","received_events_url":"https://api.github.com/users/hoshinotsuyoshi/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/hoshinotsuyoshi/vultrlife","description":"Vultr VPS API wrapper","fork":false,"url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife","forks_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/forks","keys_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/keys{/key_id}","collaborators_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/teams","hooks_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/hooks","issue_events_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/issues/events{/number}","events_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/events","assignees_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/assignees{/user}","branches_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/branches{/branch}","tags_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/tags","blobs_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/git/refs{/sha}","trees_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/git/trees{/sha}","statuses_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/statuses/{sha}","languages_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/languages","stargazers_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/stargazers","contributors_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/contributors","subscribers_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/subscribers","subscription_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/subscription","commits_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/commits{/sha}","git_commits_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/git/commits{/sha}","comments_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/comments{/number}","issue_comment_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/issues/comments/{number}","contents_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/contents/{+path}","compare_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/compare/{base}...{head}","merges_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/merges","archive_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/downloads","issues_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/issues{/number}","pulls_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/pulls{/number}","milestones_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/milestones{/number}","notifications_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/labels{/name}","releases_url":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/releases{/id}","created_at":"2014-05-25T12:35:35Z","updated_at":"2014-12-25T02:02:04Z","pushed_at":"2014-07-25T07:52:31Z","git_url":"git://github.com/hoshinotsuyoshi/vultrlife.git","ssh_url":"git@github.com:hoshinotsuyoshi/vultrlife.git","clone_url":"https://github.com/hoshinotsuyoshi/vultrlife.git","svn_url":"https://github.com/hoshinotsuyoshi/vultrlife","homepage":"","size":744,"stargazers_count":1,"watchers_count":1,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":13,"forks":1,"open_issues":13,"watchers":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/pulls/30"},"html":{"href":"https://github.com/hoshinotsuyoshi/vultrlife/pull/30"},"issue":{"href":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/issues/30"},"comments":{"href":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/issues/30/comments"},"review_comments":{"href":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/pulls/30/comments"},"review_comment":{"href":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/pulls/30/commits"},"statuses":{"href":"https://api.github.com/repos/hoshinotsuyoshi/vultrlife/statuses/6799d9d9e6fdbd768a95d1f6454115c066ea70b8"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":0,"deletions":0,"changed_files":0}},"public":true,"created_at":"2015-01-01T15:19:46Z"} +,{"id":"2489660146","type":"PushEvent","actor":{"id":8455066,"login":"puta37","gravatar_id":"","url":"https://api.github.com/users/puta37","avatar_url":"https://avatars.githubusercontent.com/u/8455066?"},"repo":{"id":28532636,"name":"puta37/angelGame","url":"https://api.github.com/repos/puta37/angelGame"},"payload":{"push_id":536868072,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"154d842bc35fbe7e41686cc9009fabe30b5634c7","before":"c92c4b6e4a4b3b06e176fec72c478adb2753e4dd","commits":[{"sha":"154d842bc35fbe7e41686cc9009fabe30b5634c7","author":{"email":"621d2e22fb3677c3935c588326279e2620f47418@gmail.com","name":"Yuichiro Utsumi"},"message":"Angel Game by misa","distinct":true,"url":"https://api.github.com/repos/puta37/angelGame/commits/154d842bc35fbe7e41686cc9009fabe30b5634c7"}]},"public":true,"created_at":"2015-01-01T15:19:46Z"} +,{"id":"2489660148","type":"PushEvent","actor":{"id":10322234,"login":"gerigjylbegu","gravatar_id":"","url":"https://api.github.com/users/gerigjylbegu","avatar_url":"https://avatars.githubusercontent.com/u/10322234?"},"repo":{"id":28596491,"name":"gerigjylbegu/Blog","url":"https://api.github.com/repos/gerigjylbegu/Blog"},"payload":{"push_id":536868074,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"feeed6783226ad97a153d9581a5207283a4a5055","before":"9285bad995707d20b05e00c5a5026e627620b07f","commits":[{"sha":"feeed6783226ad97a153d9581a5207283a4a5055","author":{"email":"5d364efc371fe3cf76badc72842740c09acb86f6@gmail.com","name":"gerigjylbegu"},"message":"Update 2014-12-31-linuxmint.md","distinct":true,"url":"https://api.github.com/repos/gerigjylbegu/Blog/commits/feeed6783226ad97a153d9581a5207283a4a5055"}]},"public":true,"created_at":"2015-01-01T15:19:46Z"} +,{"id":"2489660150","type":"ReleaseEvent","actor":{"id":4419146,"login":"hex7c0","gravatar_id":"","url":"https://api.github.com/users/hex7c0","avatar_url":"https://avatars.githubusercontent.com/u/4419146?"},"repo":{"id":22913041,"name":"hex7c0/transfer-rate","url":"https://api.github.com/repos/hex7c0/transfer-rate"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/hex7c0/transfer-rate/releases/818703","assets_url":"https://api.github.com/repos/hex7c0/transfer-rate/releases/818703/assets","upload_url":"https://uploads.github.com/repos/hex7c0/transfer-rate/releases/818703/assets{?name}","html_url":"https://github.com/hex7c0/transfer-rate/releases/tag/1.0.5","id":818703,"tag_name":"1.0.5","target_commitish":"master","name":"v1.0.5","draft":false,"author":{"login":"hex7c0","id":4419146,"avatar_url":"https://avatars.githubusercontent.com/u/4419146?v=3","gravatar_id":"","url":"https://api.github.com/users/hex7c0","html_url":"https://github.com/hex7c0","followers_url":"https://api.github.com/users/hex7c0/followers","following_url":"https://api.github.com/users/hex7c0/following{/other_user}","gists_url":"https://api.github.com/users/hex7c0/gists{/gist_id}","starred_url":"https://api.github.com/users/hex7c0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hex7c0/subscriptions","organizations_url":"https://api.github.com/users/hex7c0/orgs","repos_url":"https://api.github.com/users/hex7c0/repos","events_url":"https://api.github.com/users/hex7c0/events{/privacy}","received_events_url":"https://api.github.com/users/hex7c0/received_events","type":"User","site_admin":false},"prerelease":false,"created_at":"2015-01-01T15:15:24Z","published_at":"2015-01-01T15:19:46Z","assets":[],"tarball_url":"https://api.github.com/repos/hex7c0/transfer-rate/tarball/1.0.5","zipball_url":"https://api.github.com/repos/hex7c0/transfer-rate/zipball/1.0.5","body":"* Update devDependencies"}},"public":true,"created_at":"2015-01-01T15:19:46Z"} +,{"id":"2489660151","type":"CreateEvent","actor":{"id":4419146,"login":"hex7c0","gravatar_id":"","url":"https://api.github.com/users/hex7c0","avatar_url":"https://avatars.githubusercontent.com/u/4419146?"},"repo":{"id":22913041,"name":"hex7c0/transfer-rate","url":"https://api.github.com/repos/hex7c0/transfer-rate"},"payload":{"ref":"1.0.5","ref_type":"tag","master_branch":"master","description":"calculate transfer-rate of request/response for Nodejs","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:19:46Z"} +,{"id":"2489660154","type":"ForkEvent","actor":{"id":7880941,"login":"mrst1120","gravatar_id":"","url":"https://api.github.com/users/mrst1120","avatar_url":"https://avatars.githubusercontent.com/u/7880941?"},"repo":{"id":20042152,"name":"nightscout/cgm-remote-monitor","url":"https://api.github.com/repos/nightscout/cgm-remote-monitor"},"payload":{"forkee":{"id":28688960,"name":"cgm-remote-monitor","full_name":"mrst1120/cgm-remote-monitor","owner":{"login":"mrst1120","id":7880941,"avatar_url":"https://avatars.githubusercontent.com/u/7880941?v=3","gravatar_id":"","url":"https://api.github.com/users/mrst1120","html_url":"https://github.com/mrst1120","followers_url":"https://api.github.com/users/mrst1120/followers","following_url":"https://api.github.com/users/mrst1120/following{/other_user}","gists_url":"https://api.github.com/users/mrst1120/gists{/gist_id}","starred_url":"https://api.github.com/users/mrst1120/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mrst1120/subscriptions","organizations_url":"https://api.github.com/users/mrst1120/orgs","repos_url":"https://api.github.com/users/mrst1120/repos","events_url":"https://api.github.com/users/mrst1120/events{/privacy}","received_events_url":"https://api.github.com/users/mrst1120/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mrst1120/cgm-remote-monitor","description":"nightscout web monitor","fork":true,"url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor","forks_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/forks","keys_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/teams","hooks_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/hooks","issue_events_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/issues/events{/number}","events_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/events","assignees_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/assignees{/user}","branches_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/branches{/branch}","tags_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/tags","blobs_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/git/refs{/sha}","trees_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/statuses/{sha}","languages_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/languages","stargazers_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/stargazers","contributors_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/contributors","subscribers_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/subscribers","subscription_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/subscription","commits_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/commits{/sha}","git_commits_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/git/commits{/sha}","comments_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/comments{/number}","issue_comment_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/issues/comments/{number}","contents_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/contents/{+path}","compare_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/merges","archive_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/downloads","issues_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/issues{/number}","pulls_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/pulls{/number}","milestones_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/milestones{/number}","notifications_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/labels{/name}","releases_url":"https://api.github.com/repos/mrst1120/cgm-remote-monitor/releases{/id}","created_at":"2015-01-01T15:19:47Z","updated_at":"2015-01-01T01:55:25Z","pushed_at":"2014-12-31T18:14:04Z","git_url":"git://github.com/mrst1120/cgm-remote-monitor.git","ssh_url":"git@github.com:mrst1120/cgm-remote-monitor.git","clone_url":"https://github.com/mrst1120/cgm-remote-monitor.git","svn_url":"https://github.com/mrst1120/cgm-remote-monitor","homepage":"","size":9502,"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:19:47Z","org":{"id":7661012,"login":"nightscout","gravatar_id":"","url":"https://api.github.com/orgs/nightscout","avatar_url":"https://avatars.githubusercontent.com/u/7661012?"}} +,{"id":"2489660156","type":"PushEvent","actor":{"id":483458,"login":"r4ntix","gravatar_id":"","url":"https://api.github.com/users/r4ntix","avatar_url":"https://avatars.githubusercontent.com/u/483458?"},"repo":{"id":6683486,"name":"r4ntix/r","url":"https://api.github.com/repos/r4ntix/r"},"payload":{"push_id":536868078,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"67485f014475dc9ec7ccc91c5fa6788faaf3595b","before":"de08c8e9065a4dac3e76f3c5bbb4ab573d8090f5","commits":[{"sha":"67485f014475dc9ec7ccc91c5fa6788faaf3595b","author":{"email":"b62729f86a97aa6047f09d8d8088e520da5907b4@gmail.com","name":"r.4ntix Shawn"},"message":"change domain from http://r.durara.net to http://antix.blue\n\nnow:\n- durara.net Hosting on GitCafe.\n- antix.blue Hosting on Github & GitCafe.","distinct":true,"url":"https://api.github.com/repos/r4ntix/r/commits/67485f014475dc9ec7ccc91c5fa6788faaf3595b"}]},"public":true,"created_at":"2015-01-01T15:19:47Z"} +,{"id":"2489660157","type":"PushEvent","actor":{"id":1480722,"login":"MORWAL","gravatar_id":"","url":"https://api.github.com/users/MORWAL","avatar_url":"https://avatars.githubusercontent.com/u/1480722?"},"repo":{"id":25122523,"name":"MORWAL/symfony_learn","url":"https://api.github.com/repos/MORWAL/symfony_learn"},"payload":{"push_id":536868079,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d8a5689a348ebdcdd7c8f466b3ff919cbf787777","before":"60e0e0f2c8065d476cdb447be8643fe8a2d86929","commits":[{"sha":"d8a5689a348ebdcdd7c8f466b3ff919cbf787777","author":{"email":"74d967aa444302a61837e9e0cefb87eca1326559@gmail.com","name":"MORWAL"},"message":"Doctrine Inverse Relation finished","distinct":true,"url":"https://api.github.com/repos/MORWAL/symfony_learn/commits/d8a5689a348ebdcdd7c8f466b3ff919cbf787777"}]},"public":true,"created_at":"2015-01-01T15:19:47Z"} +,{"id":"2489660158","type":"PushEvent","actor":{"id":760627,"login":"tsu-nera","gravatar_id":"","url":"https://api.github.com/users/tsu-nera","avatar_url":"https://avatars.githubusercontent.com/u/760627?"},"repo":{"id":18728048,"name":"tsu-nera/futurismo","url":"https://api.github.com/repos/tsu-nera/futurismo"},"payload":{"push_id":536868080,"size":1,"distinct_size":1,"ref":"refs/heads/main","head":"d38b966510220686df826e2674220168fed1d03a","before":"fdaf4ad42a7717fdf841b86ae7ae21edbd0901ba","commits":[{"sha":"d38b966510220686df826e2674220168fed1d03a","author":{"email":"9976a0541de5240960548e0676fed9769cd87143@gmail.com","name":"tsu-nera"},"message":"??? windows","distinct":true,"url":"https://api.github.com/repos/tsu-nera/futurismo/commits/d38b966510220686df826e2674220168fed1d03a"}]},"public":true,"created_at":"2015-01-01T15:19:47Z"} +,{"id":"2489660159","type":"IssueCommentEvent","actor":{"id":1406942,"login":"stavarotti","gravatar_id":"","url":"https://api.github.com/users/stavarotti","avatar_url":"https://avatars.githubusercontent.com/u/1406942?"},"repo":{"id":1801829,"name":"emberjs/ember.js","url":"https://api.github.com/repos/emberjs/ember.js"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/emberjs/ember.js/issues/10072","labels_url":"https://api.github.com/repos/emberjs/ember.js/issues/10072/labels{/name}","comments_url":"https://api.github.com/repos/emberjs/ember.js/issues/10072/comments","events_url":"https://api.github.com/repos/emberjs/ember.js/issues/10072/events","html_url":"https://github.com/emberjs/ember.js/pull/10072","id":53076822,"number":10072,"title":"Draft of the JavaScript style guide for Ember","user":{"login":"twokul","id":1131196,"avatar_url":"https://avatars.githubusercontent.com/u/1131196?v=3","gravatar_id":"","url":"https://api.github.com/users/twokul","html_url":"https://github.com/twokul","followers_url":"https://api.github.com/users/twokul/followers","following_url":"https://api.github.com/users/twokul/following{/other_user}","gists_url":"https://api.github.com/users/twokul/gists{/gist_id}","starred_url":"https://api.github.com/users/twokul/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/twokul/subscriptions","organizations_url":"https://api.github.com/users/twokul/orgs","repos_url":"https://api.github.com/users/twokul/repos","events_url":"https://api.github.com/users/twokul/events{/privacy}","received_events_url":"https://api.github.com/users/twokul/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-12-29T22:22:24Z","updated_at":"2015-01-01T15:19:47Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/emberjs/ember.js/pulls/10072","html_url":"https://github.com/emberjs/ember.js/pull/10072","diff_url":"https://github.com/emberjs/ember.js/pull/10072.diff","patch_url":"https://github.com/emberjs/ember.js/pull/10072.patch"},"body":"Related to #9849\r\n\r\n- [x] use spaces after the keyword in block statements (https://github.com/emberjs/ember.js/pull/10073)\r\n - [x] `requireSpaceBeforeKeywords`\r\n - [x] `requireSpaceAfterKeywords`\r\n- [ ] use spaces before block statements (https://github.com/emberjs/ember.js/pull/10095)\r\n - [ ] `requireSpaceBeforeBlockStatements`\r\n- [ ] use spaces in ternary conditional statements\r\n- [ ] use spaces in functional declarations\r\n- [ ] disallows space before () in call expressions\r\n- [ ] require block statements to be on a new line\r\n- [ ] disallow block statements from beginning and ending with 2 newlines\r\n- [ ] use empty line above the specified keywords unless the keyword is the first expression in a block statement\r\n- [ ] disallow empty block statements\r\n- [ ] disallow space after opening array square bracket and before closing\r\n- [ ] disallow space after opening round bracket and before closing\r\n- [x] disallow spaces before semicolons (https://github.com/emberjs/ember.js/pull/10084)\r\n\r\ncc @rwjblue"},"comment":{"url":"https://api.github.com/repos/emberjs/ember.js/issues/comments/68488921","html_url":"https://github.com/emberjs/ember.js/pull/10072#issuecomment-68488921","issue_url":"https://api.github.com/repos/emberjs/ember.js/issues/10072","id":68488921,"user":{"login":"stavarotti","id":1406942,"avatar_url":"https://avatars.githubusercontent.com/u/1406942?v=3","gravatar_id":"","url":"https://api.github.com/users/stavarotti","html_url":"https://github.com/stavarotti","followers_url":"https://api.github.com/users/stavarotti/followers","following_url":"https://api.github.com/users/stavarotti/following{/other_user}","gists_url":"https://api.github.com/users/stavarotti/gists{/gist_id}","starred_url":"https://api.github.com/users/stavarotti/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stavarotti/subscriptions","organizations_url":"https://api.github.com/users/stavarotti/orgs","repos_url":"https://api.github.com/users/stavarotti/repos","events_url":"https://api.github.com/users/stavarotti/events{/privacy}","received_events_url":"https://api.github.com/users/stavarotti/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:19:47Z","updated_at":"2015-01-01T15:19:47Z","body":"@twokul and @rwjblue Need any help with implementing the items listed above?"}},"public":true,"created_at":"2015-01-01T15:19:48Z","org":{"id":1253363,"login":"emberjs","gravatar_id":"","url":"https://api.github.com/orgs/emberjs","avatar_url":"https://avatars.githubusercontent.com/u/1253363?"}} +,{"id":"2489660161","type":"PullRequestEvent","actor":{"id":544356,"login":"mattholl","gravatar_id":"","url":"https://api.github.com/users/mattholl","avatar_url":"https://avatars.githubusercontent.com/u/544356?"},"repo":{"id":6197106,"name":"benlancaster/BBCRadioProxy","url":"https://api.github.com/repos/benlancaster/BBCRadioProxy"},"payload":{"action":"opened","number":2,"pull_request":{"url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/pulls/2","id":26743921,"html_url":"https://github.com/benlancaster/BBCRadioProxy/pull/2","diff_url":"https://github.com/benlancaster/BBCRadioProxy/pull/2.diff","patch_url":"https://github.com/benlancaster/BBCRadioProxy/pull/2.patch","issue_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/issues/2","number":2,"state":"open","locked":false,"title":"Some updates to the BBC radio URLs","user":{"login":"mattholl","id":544356,"avatar_url":"https://avatars.githubusercontent.com/u/544356?v=3","gravatar_id":"","url":"https://api.github.com/users/mattholl","html_url":"https://github.com/mattholl","followers_url":"https://api.github.com/users/mattholl/followers","following_url":"https://api.github.com/users/mattholl/following{/other_user}","gists_url":"https://api.github.com/users/mattholl/gists{/gist_id}","starred_url":"https://api.github.com/users/mattholl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mattholl/subscriptions","organizations_url":"https://api.github.com/users/mattholl/orgs","repos_url":"https://api.github.com/users/mattholl/repos","events_url":"https://api.github.com/users/mattholl/events{/privacy}","received_events_url":"https://api.github.com/users/mattholl/received_events","type":"User","site_admin":false},"body":"Hi\r\n\r\nI stumbled across your script trying to get BBC radio running on a Raspberry Pi. It looks like the BBC have changed the URLs for the .pls files so I have updated the code and can confirm that it's working.\r\n\r\nThanks!\r\nMatt","created_at":"2015-01-01T15:19:47Z","updated_at":"2015-01-01T15:19:47Z","closed_at":null,"merged_at":null,"merge_commit_sha":"2bca7e2c6645e7657475aefee0da44cf7e731482","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/pulls/2/commits","review_comments_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/pulls/2/comments","review_comment_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/pulls/comments/{number}","comments_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/issues/2/comments","statuses_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/statuses/0d9364fbe4e3573c40484d93a2ea4eae9dcb7259","head":{"label":"mattholl:master","ref":"master","sha":"0d9364fbe4e3573c40484d93a2ea4eae9dcb7259","user":{"login":"mattholl","id":544356,"avatar_url":"https://avatars.githubusercontent.com/u/544356?v=3","gravatar_id":"","url":"https://api.github.com/users/mattholl","html_url":"https://github.com/mattholl","followers_url":"https://api.github.com/users/mattholl/followers","following_url":"https://api.github.com/users/mattholl/following{/other_user}","gists_url":"https://api.github.com/users/mattholl/gists{/gist_id}","starred_url":"https://api.github.com/users/mattholl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mattholl/subscriptions","organizations_url":"https://api.github.com/users/mattholl/orgs","repos_url":"https://api.github.com/users/mattholl/repos","events_url":"https://api.github.com/users/mattholl/events{/privacy}","received_events_url":"https://api.github.com/users/mattholl/received_events","type":"User","site_admin":false},"repo":{"id":28675210,"name":"BBCRadioProxy","full_name":"mattholl/BBCRadioProxy","owner":{"login":"mattholl","id":544356,"avatar_url":"https://avatars.githubusercontent.com/u/544356?v=3","gravatar_id":"","url":"https://api.github.com/users/mattholl","html_url":"https://github.com/mattholl","followers_url":"https://api.github.com/users/mattholl/followers","following_url":"https://api.github.com/users/mattholl/following{/other_user}","gists_url":"https://api.github.com/users/mattholl/gists{/gist_id}","starred_url":"https://api.github.com/users/mattholl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mattholl/subscriptions","organizations_url":"https://api.github.com/users/mattholl/orgs","repos_url":"https://api.github.com/users/mattholl/repos","events_url":"https://api.github.com/users/mattholl/events{/privacy}","received_events_url":"https://api.github.com/users/mattholl/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mattholl/BBCRadioProxy","description":"","fork":true,"url":"https://api.github.com/repos/mattholl/BBCRadioProxy","forks_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/forks","keys_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/teams","hooks_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/hooks","issue_events_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/issues/events{/number}","events_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/events","assignees_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/assignees{/user}","branches_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/branches{/branch}","tags_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/tags","blobs_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/git/refs{/sha}","trees_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/statuses/{sha}","languages_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/languages","stargazers_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/stargazers","contributors_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/contributors","subscribers_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/subscribers","subscription_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/subscription","commits_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/commits{/sha}","git_commits_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/git/commits{/sha}","comments_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/comments{/number}","issue_comment_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/issues/comments/{number}","contents_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/contents/{+path}","compare_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/merges","archive_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/downloads","issues_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/issues{/number}","pulls_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/pulls{/number}","milestones_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/milestones{/number}","notifications_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/labels{/name}","releases_url":"https://api.github.com/repos/mattholl/BBCRadioProxy/releases{/id}","created_at":"2014-12-31T21:06:16Z","updated_at":"2015-01-01T15:07:35Z","pushed_at":"2015-01-01T15:07:35Z","git_url":"git://github.com/mattholl/BBCRadioProxy.git","ssh_url":"git@github.com:mattholl/BBCRadioProxy.git","clone_url":"https://github.com/mattholl/BBCRadioProxy.git","svn_url":"https://github.com/mattholl/BBCRadioProxy","homepage":null,"size":99,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","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":"benlancaster:master","ref":"master","sha":"d2bc15040e70266ab86edf4655157f2efe803840","user":{"login":"benlancaster","id":550569,"avatar_url":"https://avatars.githubusercontent.com/u/550569?v=3","gravatar_id":"","url":"https://api.github.com/users/benlancaster","html_url":"https://github.com/benlancaster","followers_url":"https://api.github.com/users/benlancaster/followers","following_url":"https://api.github.com/users/benlancaster/following{/other_user}","gists_url":"https://api.github.com/users/benlancaster/gists{/gist_id}","starred_url":"https://api.github.com/users/benlancaster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/benlancaster/subscriptions","organizations_url":"https://api.github.com/users/benlancaster/orgs","repos_url":"https://api.github.com/users/benlancaster/repos","events_url":"https://api.github.com/users/benlancaster/events{/privacy}","received_events_url":"https://api.github.com/users/benlancaster/received_events","type":"User","site_admin":false},"repo":{"id":6197106,"name":"BBCRadioProxy","full_name":"benlancaster/BBCRadioProxy","owner":{"login":"benlancaster","id":550569,"avatar_url":"https://avatars.githubusercontent.com/u/550569?v=3","gravatar_id":"","url":"https://api.github.com/users/benlancaster","html_url":"https://github.com/benlancaster","followers_url":"https://api.github.com/users/benlancaster/followers","following_url":"https://api.github.com/users/benlancaster/following{/other_user}","gists_url":"https://api.github.com/users/benlancaster/gists{/gist_id}","starred_url":"https://api.github.com/users/benlancaster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/benlancaster/subscriptions","organizations_url":"https://api.github.com/users/benlancaster/orgs","repos_url":"https://api.github.com/users/benlancaster/repos","events_url":"https://api.github.com/users/benlancaster/events{/privacy}","received_events_url":"https://api.github.com/users/benlancaster/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/benlancaster/BBCRadioProxy","description":"","fork":false,"url":"https://api.github.com/repos/benlancaster/BBCRadioProxy","forks_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/forks","keys_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/keys{/key_id}","collaborators_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/teams","hooks_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/hooks","issue_events_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/issues/events{/number}","events_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/events","assignees_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/assignees{/user}","branches_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/branches{/branch}","tags_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/tags","blobs_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/git/refs{/sha}","trees_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/git/trees{/sha}","statuses_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/statuses/{sha}","languages_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/languages","stargazers_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/stargazers","contributors_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/contributors","subscribers_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/subscribers","subscription_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/subscription","commits_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/commits{/sha}","git_commits_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/git/commits{/sha}","comments_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/comments{/number}","issue_comment_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/issues/comments/{number}","contents_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/contents/{+path}","compare_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/compare/{base}...{head}","merges_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/merges","archive_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/downloads","issues_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/issues{/number}","pulls_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/pulls{/number}","milestones_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/milestones{/number}","notifications_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/labels{/name}","releases_url":"https://api.github.com/repos/benlancaster/BBCRadioProxy/releases{/id}","created_at":"2012-10-12T22:11:30Z","updated_at":"2014-11-16T20:57:36Z","pushed_at":"2014-08-10T16:41:55Z","git_url":"git://github.com/benlancaster/BBCRadioProxy.git","ssh_url":"git@github.com:benlancaster/BBCRadioProxy.git","clone_url":"https://github.com/benlancaster/BBCRadioProxy.git","svn_url":"https://github.com/benlancaster/BBCRadioProxy","homepage":null,"size":144,"stargazers_count":5,"watchers_count":5,"language":"JavaScript","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":2,"mirror_url":null,"open_issues_count":2,"forks":2,"open_issues":2,"watchers":5,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/benlancaster/BBCRadioProxy/pulls/2"},"html":{"href":"https://github.com/benlancaster/BBCRadioProxy/pull/2"},"issue":{"href":"https://api.github.com/repos/benlancaster/BBCRadioProxy/issues/2"},"comments":{"href":"https://api.github.com/repos/benlancaster/BBCRadioProxy/issues/2/comments"},"review_comments":{"href":"https://api.github.com/repos/benlancaster/BBCRadioProxy/pulls/2/comments"},"review_comment":{"href":"https://api.github.com/repos/benlancaster/BBCRadioProxy/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/benlancaster/BBCRadioProxy/pulls/2/commits"},"statuses":{"href":"https://api.github.com/repos/benlancaster/BBCRadioProxy/statuses/0d9364fbe4e3573c40484d93a2ea4eae9dcb7259"}},"merged":false,"mergeable":true,"mergeable_state":"clean","merged_by":null,"comments":0,"review_comments":0,"commits":2,"additions":10,"deletions":10,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:19:48Z"} +,{"id":"2489660164","type":"PushEvent","actor":{"id":1331016,"login":"Hellsing","gravatar_id":"","url":"https://api.github.com/users/Hellsing","avatar_url":"https://avatars.githubusercontent.com/u/1331016?"},"repo":{"id":22895158,"name":"Hellsing/LeagueSharp","url":"https://api.github.com/repos/Hellsing/LeagueSharp"},"payload":{"push_id":536868081,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7a672ed934e6ac110dca9ca86bff64c07bdb712e","before":"542cfc4f8a01e03aa590aea70923e5b3a594c097","commits":[{"sha":"7a672ed934e6ac110dca9ca86bff64c07bdb712e","author":{"email":"f399b62a37355493968ad58debfca95217364faf@gmx.net","name":"Hellsing"},"message":"Added standalone Q farming\n\nAlso improved items usage to the latest Common changes. Thanks\nWorstPing!","distinct":true,"url":"https://api.github.com/repos/Hellsing/LeagueSharp/commits/7a672ed934e6ac110dca9ca86bff64c07bdb712e"}]},"public":true,"created_at":"2015-01-01T15:19:48Z"} +,{"id":"2489660168","type":"ForkEvent","actor":{"id":1525240,"login":"muuankarski","gravatar_id":"","url":"https://api.github.com/users/muuankarski","avatar_url":"https://avatars.githubusercontent.com/u/1525240?"},"repo":{"id":2224231,"name":"vincentarelbundock/countrycode","url":"https://api.github.com/repos/vincentarelbundock/countrycode"},"payload":{"forkee":{"id":28688961,"name":"countrycode","full_name":"muuankarski/countrycode","owner":{"login":"muuankarski","id":1525240,"avatar_url":"https://avatars.githubusercontent.com/u/1525240?v=3","gravatar_id":"","url":"https://api.github.com/users/muuankarski","html_url":"https://github.com/muuankarski","followers_url":"https://api.github.com/users/muuankarski/followers","following_url":"https://api.github.com/users/muuankarski/following{/other_user}","gists_url":"https://api.github.com/users/muuankarski/gists{/gist_id}","starred_url":"https://api.github.com/users/muuankarski/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/muuankarski/subscriptions","organizations_url":"https://api.github.com/users/muuankarski/orgs","repos_url":"https://api.github.com/users/muuankarski/repos","events_url":"https://api.github.com/users/muuankarski/events{/privacy}","received_events_url":"https://api.github.com/users/muuankarski/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/muuankarski/countrycode","description":"R package: Convert country names and country codes. Assigns region descriptors.","fork":true,"url":"https://api.github.com/repos/muuankarski/countrycode","forks_url":"https://api.github.com/repos/muuankarski/countrycode/forks","keys_url":"https://api.github.com/repos/muuankarski/countrycode/keys{/key_id}","collaborators_url":"https://api.github.com/repos/muuankarski/countrycode/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/muuankarski/countrycode/teams","hooks_url":"https://api.github.com/repos/muuankarski/countrycode/hooks","issue_events_url":"https://api.github.com/repos/muuankarski/countrycode/issues/events{/number}","events_url":"https://api.github.com/repos/muuankarski/countrycode/events","assignees_url":"https://api.github.com/repos/muuankarski/countrycode/assignees{/user}","branches_url":"https://api.github.com/repos/muuankarski/countrycode/branches{/branch}","tags_url":"https://api.github.com/repos/muuankarski/countrycode/tags","blobs_url":"https://api.github.com/repos/muuankarski/countrycode/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/muuankarski/countrycode/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/muuankarski/countrycode/git/refs{/sha}","trees_url":"https://api.github.com/repos/muuankarski/countrycode/git/trees{/sha}","statuses_url":"https://api.github.com/repos/muuankarski/countrycode/statuses/{sha}","languages_url":"https://api.github.com/repos/muuankarski/countrycode/languages","stargazers_url":"https://api.github.com/repos/muuankarski/countrycode/stargazers","contributors_url":"https://api.github.com/repos/muuankarski/countrycode/contributors","subscribers_url":"https://api.github.com/repos/muuankarski/countrycode/subscribers","subscription_url":"https://api.github.com/repos/muuankarski/countrycode/subscription","commits_url":"https://api.github.com/repos/muuankarski/countrycode/commits{/sha}","git_commits_url":"https://api.github.com/repos/muuankarski/countrycode/git/commits{/sha}","comments_url":"https://api.github.com/repos/muuankarski/countrycode/comments{/number}","issue_comment_url":"https://api.github.com/repos/muuankarski/countrycode/issues/comments/{number}","contents_url":"https://api.github.com/repos/muuankarski/countrycode/contents/{+path}","compare_url":"https://api.github.com/repos/muuankarski/countrycode/compare/{base}...{head}","merges_url":"https://api.github.com/repos/muuankarski/countrycode/merges","archive_url":"https://api.github.com/repos/muuankarski/countrycode/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/muuankarski/countrycode/downloads","issues_url":"https://api.github.com/repos/muuankarski/countrycode/issues{/number}","pulls_url":"https://api.github.com/repos/muuankarski/countrycode/pulls{/number}","milestones_url":"https://api.github.com/repos/muuankarski/countrycode/milestones{/number}","notifications_url":"https://api.github.com/repos/muuankarski/countrycode/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/muuankarski/countrycode/labels{/name}","releases_url":"https://api.github.com/repos/muuankarski/countrycode/releases{/id}","created_at":"2015-01-01T15:19:49Z","updated_at":"2014-12-29T00:33:45Z","pushed_at":"2014-12-29T00:33:44Z","git_url":"git://github.com/muuankarski/countrycode.git","ssh_url":"git@github.com:muuankarski/countrycode.git","clone_url":"https://github.com/muuankarski/countrycode.git","svn_url":"https://github.com/muuankarski/countrycode","homepage":"http://cran.r-project.org/web/packages/countrycode/index.html","size":861,"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:19:49Z"} +,{"id":"2489660171","type":"PushEvent","actor":{"id":969494,"login":"jpsalo","gravatar_id":"","url":"https://api.github.com/users/jpsalo","avatar_url":"https://avatars.githubusercontent.com/u/969494?"},"repo":{"id":10170062,"name":"extendedmind/extendedmind","url":"https://api.github.com/repos/extendedmind/extendedmind"},"payload":{"push_id":536868084,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"af5ec048ab5e52a36804a1e6a46ac2008ba23a3d","before":"f8e0cdcf4f57dc42e2728042d9220ed966ce998e","commits":[{"sha":"897804d1b5e91028049107822a57c17c18451c69","author":{"email":"dad5005b94ebf6a184eaa794d45da3b9c1ba808a@gmail.com","name":"JP Salo"},"message":"Incomplete modal work.","distinct":true,"url":"https://api.github.com/repos/extendedmind/extendedmind/commits/897804d1b5e91028049107822a57c17c18451c69"},{"sha":"af5ec048ab5e52a36804a1e6a46ac2008ba23a3d","author":{"email":"dad5005b94ebf6a184eaa794d45da3b9c1ba808a@gmail.com","name":"JP Salo"},"message":"Modal layout.","distinct":true,"url":"https://api.github.com/repos/extendedmind/extendedmind/commits/af5ec048ab5e52a36804a1e6a46ac2008ba23a3d"}]},"public":true,"created_at":"2015-01-01T15:19:49Z","org":{"id":4477720,"login":"extendedmind","gravatar_id":"","url":"https://api.github.com/orgs/extendedmind","avatar_url":"https://avatars.githubusercontent.com/u/4477720?"}} +,{"id":"2489660174","type":"DeleteEvent","actor":{"id":5733388,"login":"huoyao","gravatar_id":"","url":"https://api.github.com/users/huoyao","avatar_url":"https://avatars.githubusercontent.com/u/5733388?"},"repo":{"id":28687899,"name":"huoyao/TL_letcd","url":"https://api.github.com/repos/huoyao/TL_letcd"},"payload":{"ref":"workplace","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:19:50Z"} +,{"id":"2489660179","type":"PushEvent","actor":{"id":7108522,"login":"warrenarea","gravatar_id":"","url":"https://api.github.com/users/warrenarea","avatar_url":"https://avatars.githubusercontent.com/u/7108522?"},"repo":{"id":24162850,"name":"CymatiCorp/CyKit","url":"https://api.github.com/repos/CymatiCorp/CyKit"},"payload":{"push_id":536868088,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"641e394e4f1a40be80343cb058479515502ef17b","before":"7128a55519cccb1cb93d1d414f5e6472aaaac84c","commits":[{"sha":"641e394e4f1a40be80343cb058479515502ef17b","author":{"email":"56d4e9bdd356f1901cc98888f02a0a03b76e12f8@gmail.com","name":"warrenarea"},"message":"Update stream.py","distinct":true,"url":"https://api.github.com/repos/CymatiCorp/CyKit/commits/641e394e4f1a40be80343cb058479515502ef17b"}]},"public":true,"created_at":"2015-01-01T15:19:52Z","org":{"id":8812349,"login":"CymatiCorp","gravatar_id":"","url":"https://api.github.com/orgs/CymatiCorp","avatar_url":"https://avatars.githubusercontent.com/u/8812349?"}} +,{"id":"2489660183","type":"ForkEvent","actor":{"id":10309038,"login":"seeker49","gravatar_id":"","url":"https://api.github.com/users/seeker49","avatar_url":"https://avatars.githubusercontent.com/u/10309038?"},"repo":{"id":25241145,"name":"blinktrade/frontend","url":"https://api.github.com/repos/blinktrade/frontend"},"payload":{"forkee":{"id":28688963,"name":"frontend","full_name":"seeker49/frontend","owner":{"login":"seeker49","id":10309038,"avatar_url":"https://avatars.githubusercontent.com/u/10309038?v=3","gravatar_id":"","url":"https://api.github.com/users/seeker49","html_url":"https://github.com/seeker49","followers_url":"https://api.github.com/users/seeker49/followers","following_url":"https://api.github.com/users/seeker49/following{/other_user}","gists_url":"https://api.github.com/users/seeker49/gists{/gist_id}","starred_url":"https://api.github.com/users/seeker49/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/seeker49/subscriptions","organizations_url":"https://api.github.com/users/seeker49/orgs","repos_url":"https://api.github.com/users/seeker49/repos","events_url":"https://api.github.com/users/seeker49/events{/privacy}","received_events_url":"https://api.github.com/users/seeker49/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/seeker49/frontend","description":"","fork":true,"url":"https://api.github.com/repos/seeker49/frontend","forks_url":"https://api.github.com/repos/seeker49/frontend/forks","keys_url":"https://api.github.com/repos/seeker49/frontend/keys{/key_id}","collaborators_url":"https://api.github.com/repos/seeker49/frontend/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/seeker49/frontend/teams","hooks_url":"https://api.github.com/repos/seeker49/frontend/hooks","issue_events_url":"https://api.github.com/repos/seeker49/frontend/issues/events{/number}","events_url":"https://api.github.com/repos/seeker49/frontend/events","assignees_url":"https://api.github.com/repos/seeker49/frontend/assignees{/user}","branches_url":"https://api.github.com/repos/seeker49/frontend/branches{/branch}","tags_url":"https://api.github.com/repos/seeker49/frontend/tags","blobs_url":"https://api.github.com/repos/seeker49/frontend/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/seeker49/frontend/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/seeker49/frontend/git/refs{/sha}","trees_url":"https://api.github.com/repos/seeker49/frontend/git/trees{/sha}","statuses_url":"https://api.github.com/repos/seeker49/frontend/statuses/{sha}","languages_url":"https://api.github.com/repos/seeker49/frontend/languages","stargazers_url":"https://api.github.com/repos/seeker49/frontend/stargazers","contributors_url":"https://api.github.com/repos/seeker49/frontend/contributors","subscribers_url":"https://api.github.com/repos/seeker49/frontend/subscribers","subscription_url":"https://api.github.com/repos/seeker49/frontend/subscription","commits_url":"https://api.github.com/repos/seeker49/frontend/commits{/sha}","git_commits_url":"https://api.github.com/repos/seeker49/frontend/git/commits{/sha}","comments_url":"https://api.github.com/repos/seeker49/frontend/comments{/number}","issue_comment_url":"https://api.github.com/repos/seeker49/frontend/issues/comments/{number}","contents_url":"https://api.github.com/repos/seeker49/frontend/contents/{+path}","compare_url":"https://api.github.com/repos/seeker49/frontend/compare/{base}...{head}","merges_url":"https://api.github.com/repos/seeker49/frontend/merges","archive_url":"https://api.github.com/repos/seeker49/frontend/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/seeker49/frontend/downloads","issues_url":"https://api.github.com/repos/seeker49/frontend/issues{/number}","pulls_url":"https://api.github.com/repos/seeker49/frontend/pulls{/number}","milestones_url":"https://api.github.com/repos/seeker49/frontend/milestones{/number}","notifications_url":"https://api.github.com/repos/seeker49/frontend/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/seeker49/frontend/labels{/name}","releases_url":"https://api.github.com/repos/seeker49/frontend/releases{/id}","created_at":"2015-01-01T15:19:53Z","updated_at":"2014-12-27T06:06:11Z","pushed_at":"2014-12-27T06:06:11Z","git_url":"git://github.com/seeker49/frontend.git","ssh_url":"git@github.com:seeker49/frontend.git","clone_url":"https://github.com/seeker49/frontend.git","svn_url":"https://github.com/seeker49/frontend","homepage":"","size":49244,"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:19:53Z","org":{"id":8486768,"login":"blinktrade","gravatar_id":"","url":"https://api.github.com/orgs/blinktrade","avatar_url":"https://avatars.githubusercontent.com/u/8486768?"}} +,{"id":"2489660185","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":1885237,"name":"statsmodels/statsmodels","url":"https://api.github.com/repos/statsmodels/statsmodels"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:19:53Z","org":{"id":717666,"login":"statsmodels","gravatar_id":"","url":"https://api.github.com/orgs/statsmodels","avatar_url":"https://avatars.githubusercontent.com/u/717666?"}} +,{"id":"2489660186","type":"PushEvent","actor":{"id":777626,"login":"gabalese","gravatar_id":"","url":"https://api.github.com/users/gabalese","avatar_url":"https://avatars.githubusercontent.com/u/777626?"},"repo":{"id":28668093,"name":"gabalese/scacchi-rossi","url":"https://api.github.com/repos/gabalese/scacchi-rossi"},"payload":{"push_id":536868092,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0859280c60b60490da8bd62f96c92f6308679a8d","before":"711f079ed2558fd645c4238f2b67818f3190195d","commits":[{"sha":"0859280c60b60490da8bd62f96c92f6308679a8d","author":{"email":"99e9950b9bf1001c4486de413a6d490f474e2407@alese.it","name":"Gabriele Alese"},"message":"Drafted Square, Piece, Position","distinct":true,"url":"https://api.github.com/repos/gabalese/scacchi-rossi/commits/0859280c60b60490da8bd62f96c92f6308679a8d"}]},"public":true,"created_at":"2015-01-01T15:19:54Z"} +,{"id":"2489660187","type":"CreateEvent","actor":{"id":3862727,"login":"StefanBertels","gravatar_id":"","url":"https://api.github.com/users/StefanBertels","avatar_url":"https://avatars.githubusercontent.com/u/3862727?"},"repo":{"id":28688964,"name":"StefanBertels/stefanbertels.github.io","url":"https://api.github.com/repos/StefanBertels/stefanbertels.github.io"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:19:54Z"} +,{"id":"2489660188","type":"PullRequestEvent","actor":{"id":2959738,"login":"Azanor","gravatar_id":"","url":"https://api.github.com/users/Azanor","avatar_url":"https://avatars.githubusercontent.com/u/2959738?"},"repo":{"id":13381132,"name":"Azanor/thaumcraft","url":"https://api.github.com/repos/Azanor/thaumcraft"},"payload":{"action":"closed","number":1448,"pull_request":{"url":"https://api.github.com/repos/Azanor/thaumcraft/pulls/1448","id":26725972,"html_url":"https://github.com/Azanor/thaumcraft/pull/1448","diff_url":"https://github.com/Azanor/thaumcraft/pull/1448.diff","patch_url":"https://github.com/Azanor/thaumcraft/pull/1448.patch","issue_url":"https://api.github.com/repos/Azanor/thaumcraft/issues/1448","number":1448,"state":"closed","locked":false,"title":"Update de_DE.lang","user":{"login":"Vexatos","id":4135064,"avatar_url":"https://avatars.githubusercontent.com/u/4135064?v=3","gravatar_id":"","url":"https://api.github.com/users/Vexatos","html_url":"https://github.com/Vexatos","followers_url":"https://api.github.com/users/Vexatos/followers","following_url":"https://api.github.com/users/Vexatos/following{/other_user}","gists_url":"https://api.github.com/users/Vexatos/gists{/gist_id}","starred_url":"https://api.github.com/users/Vexatos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Vexatos/subscriptions","organizations_url":"https://api.github.com/users/Vexatos/orgs","repos_url":"https://api.github.com/users/Vexatos/repos","events_url":"https://api.github.com/users/Vexatos/events{/privacy}","received_events_url":"https://api.github.com/users/Vexatos/received_events","type":"User","site_admin":false},"body":"","created_at":"2014-12-31T14:51:27Z","updated_at":"2015-01-01T15:19:54Z","closed_at":"2015-01-01T15:19:54Z","merged_at":"2015-01-01T15:19:54Z","merge_commit_sha":"b0259aad81e46927621ec0b872f51e7b58305b3f","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/Azanor/thaumcraft/pulls/1448/commits","review_comments_url":"https://api.github.com/repos/Azanor/thaumcraft/pulls/1448/comments","review_comment_url":"https://api.github.com/repos/Azanor/thaumcraft/pulls/comments/{number}","comments_url":"https://api.github.com/repos/Azanor/thaumcraft/issues/1448/comments","statuses_url":"https://api.github.com/repos/Azanor/thaumcraft/statuses/a0364888a2532120c8a71563bff691b783bc09f0","head":{"label":"Vexatos:patch-23","ref":"patch-23","sha":"a0364888a2532120c8a71563bff691b783bc09f0","user":{"login":"Vexatos","id":4135064,"avatar_url":"https://avatars.githubusercontent.com/u/4135064?v=3","gravatar_id":"","url":"https://api.github.com/users/Vexatos","html_url":"https://github.com/Vexatos","followers_url":"https://api.github.com/users/Vexatos/followers","following_url":"https://api.github.com/users/Vexatos/following{/other_user}","gists_url":"https://api.github.com/users/Vexatos/gists{/gist_id}","starred_url":"https://api.github.com/users/Vexatos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Vexatos/subscriptions","organizations_url":"https://api.github.com/users/Vexatos/orgs","repos_url":"https://api.github.com/users/Vexatos/repos","events_url":"https://api.github.com/users/Vexatos/events{/privacy}","received_events_url":"https://api.github.com/users/Vexatos/received_events","type":"User","site_admin":false},"repo":{"id":13395124,"name":"thaumcraft","full_name":"Vexatos/thaumcraft","owner":{"login":"Vexatos","id":4135064,"avatar_url":"https://avatars.githubusercontent.com/u/4135064?v=3","gravatar_id":"","url":"https://api.github.com/users/Vexatos","html_url":"https://github.com/Vexatos","followers_url":"https://api.github.com/users/Vexatos/followers","following_url":"https://api.github.com/users/Vexatos/following{/other_user}","gists_url":"https://api.github.com/users/Vexatos/gists{/gist_id}","starred_url":"https://api.github.com/users/Vexatos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Vexatos/subscriptions","organizations_url":"https://api.github.com/users/Vexatos/orgs","repos_url":"https://api.github.com/users/Vexatos/repos","events_url":"https://api.github.com/users/Vexatos/events{/privacy}","received_events_url":"https://api.github.com/users/Vexatos/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Vexatos/thaumcraft","description":"Thaumcraft localization files","fork":true,"url":"https://api.github.com/repos/Vexatos/thaumcraft","forks_url":"https://api.github.com/repos/Vexatos/thaumcraft/forks","keys_url":"https://api.github.com/repos/Vexatos/thaumcraft/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Vexatos/thaumcraft/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Vexatos/thaumcraft/teams","hooks_url":"https://api.github.com/repos/Vexatos/thaumcraft/hooks","issue_events_url":"https://api.github.com/repos/Vexatos/thaumcraft/issues/events{/number}","events_url":"https://api.github.com/repos/Vexatos/thaumcraft/events","assignees_url":"https://api.github.com/repos/Vexatos/thaumcraft/assignees{/user}","branches_url":"https://api.github.com/repos/Vexatos/thaumcraft/branches{/branch}","tags_url":"https://api.github.com/repos/Vexatos/thaumcraft/tags","blobs_url":"https://api.github.com/repos/Vexatos/thaumcraft/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Vexatos/thaumcraft/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Vexatos/thaumcraft/git/refs{/sha}","trees_url":"https://api.github.com/repos/Vexatos/thaumcraft/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Vexatos/thaumcraft/statuses/{sha}","languages_url":"https://api.github.com/repos/Vexatos/thaumcraft/languages","stargazers_url":"https://api.github.com/repos/Vexatos/thaumcraft/stargazers","contributors_url":"https://api.github.com/repos/Vexatos/thaumcraft/contributors","subscribers_url":"https://api.github.com/repos/Vexatos/thaumcraft/subscribers","subscription_url":"https://api.github.com/repos/Vexatos/thaumcraft/subscription","commits_url":"https://api.github.com/repos/Vexatos/thaumcraft/commits{/sha}","git_commits_url":"https://api.github.com/repos/Vexatos/thaumcraft/git/commits{/sha}","comments_url":"https://api.github.com/repos/Vexatos/thaumcraft/comments{/number}","issue_comment_url":"https://api.github.com/repos/Vexatos/thaumcraft/issues/comments/{number}","contents_url":"https://api.github.com/repos/Vexatos/thaumcraft/contents/{+path}","compare_url":"https://api.github.com/repos/Vexatos/thaumcraft/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Vexatos/thaumcraft/merges","archive_url":"https://api.github.com/repos/Vexatos/thaumcraft/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Vexatos/thaumcraft/downloads","issues_url":"https://api.github.com/repos/Vexatos/thaumcraft/issues{/number}","pulls_url":"https://api.github.com/repos/Vexatos/thaumcraft/pulls{/number}","milestones_url":"https://api.github.com/repos/Vexatos/thaumcraft/milestones{/number}","notifications_url":"https://api.github.com/repos/Vexatos/thaumcraft/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Vexatos/thaumcraft/labels{/name}","releases_url":"https://api.github.com/repos/Vexatos/thaumcraft/releases{/id}","created_at":"2013-10-07T20:36:51Z","updated_at":"2014-08-22T08:27:50Z","pushed_at":"2014-12-31T14:50:52Z","git_url":"git://github.com/Vexatos/thaumcraft.git","ssh_url":"git@github.com:Vexatos/thaumcraft.git","clone_url":"https://github.com/Vexatos/thaumcraft.git","svn_url":"https://github.com/Vexatos/thaumcraft","homepage":null,"size":4640,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"Azanor:master","ref":"master","sha":"88629f6e31496a04bbf8e6f46790f8db21a4dc63","user":{"login":"Azanor","id":2959738,"avatar_url":"https://avatars.githubusercontent.com/u/2959738?v=3","gravatar_id":"","url":"https://api.github.com/users/Azanor","html_url":"https://github.com/Azanor","followers_url":"https://api.github.com/users/Azanor/followers","following_url":"https://api.github.com/users/Azanor/following{/other_user}","gists_url":"https://api.github.com/users/Azanor/gists{/gist_id}","starred_url":"https://api.github.com/users/Azanor/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Azanor/subscriptions","organizations_url":"https://api.github.com/users/Azanor/orgs","repos_url":"https://api.github.com/users/Azanor/repos","events_url":"https://api.github.com/users/Azanor/events{/privacy}","received_events_url":"https://api.github.com/users/Azanor/received_events","type":"User","site_admin":false},"repo":{"id":13381132,"name":"thaumcraft","full_name":"Azanor/thaumcraft","owner":{"login":"Azanor","id":2959738,"avatar_url":"https://avatars.githubusercontent.com/u/2959738?v=3","gravatar_id":"","url":"https://api.github.com/users/Azanor","html_url":"https://github.com/Azanor","followers_url":"https://api.github.com/users/Azanor/followers","following_url":"https://api.github.com/users/Azanor/following{/other_user}","gists_url":"https://api.github.com/users/Azanor/gists{/gist_id}","starred_url":"https://api.github.com/users/Azanor/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Azanor/subscriptions","organizations_url":"https://api.github.com/users/Azanor/orgs","repos_url":"https://api.github.com/users/Azanor/repos","events_url":"https://api.github.com/users/Azanor/events{/privacy}","received_events_url":"https://api.github.com/users/Azanor/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Azanor/thaumcraft","description":"Thaumcraft localization files & bug reports","fork":false,"url":"https://api.github.com/repos/Azanor/thaumcraft","forks_url":"https://api.github.com/repos/Azanor/thaumcraft/forks","keys_url":"https://api.github.com/repos/Azanor/thaumcraft/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Azanor/thaumcraft/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Azanor/thaumcraft/teams","hooks_url":"https://api.github.com/repos/Azanor/thaumcraft/hooks","issue_events_url":"https://api.github.com/repos/Azanor/thaumcraft/issues/events{/number}","events_url":"https://api.github.com/repos/Azanor/thaumcraft/events","assignees_url":"https://api.github.com/repos/Azanor/thaumcraft/assignees{/user}","branches_url":"https://api.github.com/repos/Azanor/thaumcraft/branches{/branch}","tags_url":"https://api.github.com/repos/Azanor/thaumcraft/tags","blobs_url":"https://api.github.com/repos/Azanor/thaumcraft/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Azanor/thaumcraft/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Azanor/thaumcraft/git/refs{/sha}","trees_url":"https://api.github.com/repos/Azanor/thaumcraft/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Azanor/thaumcraft/statuses/{sha}","languages_url":"https://api.github.com/repos/Azanor/thaumcraft/languages","stargazers_url":"https://api.github.com/repos/Azanor/thaumcraft/stargazers","contributors_url":"https://api.github.com/repos/Azanor/thaumcraft/contributors","subscribers_url":"https://api.github.com/repos/Azanor/thaumcraft/subscribers","subscription_url":"https://api.github.com/repos/Azanor/thaumcraft/subscription","commits_url":"https://api.github.com/repos/Azanor/thaumcraft/commits{/sha}","git_commits_url":"https://api.github.com/repos/Azanor/thaumcraft/git/commits{/sha}","comments_url":"https://api.github.com/repos/Azanor/thaumcraft/comments{/number}","issue_comment_url":"https://api.github.com/repos/Azanor/thaumcraft/issues/comments/{number}","contents_url":"https://api.github.com/repos/Azanor/thaumcraft/contents/{+path}","compare_url":"https://api.github.com/repos/Azanor/thaumcraft/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Azanor/thaumcraft/merges","archive_url":"https://api.github.com/repos/Azanor/thaumcraft/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Azanor/thaumcraft/downloads","issues_url":"https://api.github.com/repos/Azanor/thaumcraft/issues{/number}","pulls_url":"https://api.github.com/repos/Azanor/thaumcraft/pulls{/number}","milestones_url":"https://api.github.com/repos/Azanor/thaumcraft/milestones{/number}","notifications_url":"https://api.github.com/repos/Azanor/thaumcraft/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Azanor/thaumcraft/labels{/name}","releases_url":"https://api.github.com/repos/Azanor/thaumcraft/releases{/id}","created_at":"2013-10-07T10:41:13Z","updated_at":"2014-12-28T12:15:45Z","pushed_at":"2015-01-01T15:19:54Z","git_url":"git://github.com/Azanor/thaumcraft.git","ssh_url":"git@github.com:Azanor/thaumcraft.git","clone_url":"https://github.com/Azanor/thaumcraft.git","svn_url":"https://github.com/Azanor/thaumcraft","homepage":"","size":7037,"stargazers_count":81,"watchers_count":81,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":180,"mirror_url":null,"open_issues_count":40,"forks":180,"open_issues":40,"watchers":81,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Azanor/thaumcraft/pulls/1448"},"html":{"href":"https://github.com/Azanor/thaumcraft/pull/1448"},"issue":{"href":"https://api.github.com/repos/Azanor/thaumcraft/issues/1448"},"comments":{"href":"https://api.github.com/repos/Azanor/thaumcraft/issues/1448/comments"},"review_comments":{"href":"https://api.github.com/repos/Azanor/thaumcraft/pulls/1448/comments"},"review_comment":{"href":"https://api.github.com/repos/Azanor/thaumcraft/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/Azanor/thaumcraft/pulls/1448/commits"},"statuses":{"href":"https://api.github.com/repos/Azanor/thaumcraft/statuses/a0364888a2532120c8a71563bff691b783bc09f0"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"Azanor","id":2959738,"avatar_url":"https://avatars.githubusercontent.com/u/2959738?v=3","gravatar_id":"","url":"https://api.github.com/users/Azanor","html_url":"https://github.com/Azanor","followers_url":"https://api.github.com/users/Azanor/followers","following_url":"https://api.github.com/users/Azanor/following{/other_user}","gists_url":"https://api.github.com/users/Azanor/gists{/gist_id}","starred_url":"https://api.github.com/users/Azanor/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Azanor/subscriptions","organizations_url":"https://api.github.com/users/Azanor/orgs","repos_url":"https://api.github.com/users/Azanor/repos","events_url":"https://api.github.com/users/Azanor/events{/privacy}","received_events_url":"https://api.github.com/users/Azanor/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":2,"additions":30,"deletions":10,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:19:54Z"} +,{"id":"2489660190","type":"PushEvent","actor":{"id":2959738,"login":"Azanor","gravatar_id":"","url":"https://api.github.com/users/Azanor","avatar_url":"https://avatars.githubusercontent.com/u/2959738?"},"repo":{"id":13381132,"name":"Azanor/thaumcraft","url":"https://api.github.com/repos/Azanor/thaumcraft"},"payload":{"push_id":536868093,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"bb28636fba5430a25633dd49cceea892e0d1942c","before":"88629f6e31496a04bbf8e6f46790f8db21a4dc63","commits":[{"sha":"756cd75ceb26e96915a2f43c186e73d8928526fb","author":{"email":"3de5e79a6aea805a168eb4a369a893338a33d408@users.noreply.github.com","name":"Vexatos"},"message":"Update de_DE.lang","distinct":true,"url":"https://api.github.com/repos/Azanor/thaumcraft/commits/756cd75ceb26e96915a2f43c186e73d8928526fb"},{"sha":"a0364888a2532120c8a71563bff691b783bc09f0","author":{"email":"3de5e79a6aea805a168eb4a369a893338a33d408@users.noreply.github.com","name":"Vexatos"},"message":"Update de_DE.lang","distinct":true,"url":"https://api.github.com/repos/Azanor/thaumcraft/commits/a0364888a2532120c8a71563bff691b783bc09f0"},{"sha":"bb28636fba5430a25633dd49cceea892e0d1942c","author":{"email":"4d95981764e9dc8c0627edc7dde4fd91cd9051ef@users.noreply.github.com","name":"Azanor"},"message":"Merge pull request #1448 from Vexatos/patch-23\n\nUpdate de_DE.lang","distinct":true,"url":"https://api.github.com/repos/Azanor/thaumcraft/commits/bb28636fba5430a25633dd49cceea892e0d1942c"}]},"public":true,"created_at":"2015-01-01T15:19:55Z"} +,{"id":"2489660192","type":"PushEvent","actor":{"id":6240370,"login":"TheFive","gravatar_id":"","url":"https://api.github.com/users/TheFive","avatar_url":"https://avatars.githubusercontent.com/u/6240370?"},"repo":{"id":27332139,"name":"TheFive/osmcount","url":"https://api.github.com/repos/TheFive/osmcount"},"payload":{"push_id":536868095,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"df0cd4e19ae9df403f7b5e7c51843aa46d0379a7","before":"506c0d7df1e3f2535f5d0fceb9d375bcce9d169b","commits":[{"sha":"df0cd4e19ae9df403f7b5e7c51843aa46d0379a7","author":{"email":"418df7233977baf0dbfc32e23679582060507394@gmail.com","name":"TheFive"},"message":"Links in HTML Files","distinct":true,"url":"https://api.github.com/repos/TheFive/osmcount/commits/df0cd4e19ae9df403f7b5e7c51843aa46d0379a7"}]},"public":true,"created_at":"2015-01-01T15:19:55Z"} +,{"id":"2489660193","type":"PushEvent","actor":{"id":314539,"login":"brownman","gravatar_id":"","url":"https://api.github.com/users/brownman","avatar_url":"https://avatars.githubusercontent.com/u/314539?"},"repo":{"id":28684407,"name":"brownman/github_integrations","url":"https://api.github.com/repos/brownman/github_integrations"},"payload":{"push_id":536868096,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1c1daf464b8ad71af268f9d3dabb4592c6049c7f","before":"d957dde923a44a15fc9bf18af24c876f8eeea92d","commits":[{"sha":"1c1daf464b8ad71af268f9d3dabb4592c6049c7f","author":{"email":"39b6e0f76d0a073cf21be182dc5929dec7e2e9bf@gmail.com","name":"brownman"},"message":"Update update-gh-pages.sh","distinct":true,"url":"https://api.github.com/repos/brownman/github_integrations/commits/1c1daf464b8ad71af268f9d3dabb4592c6049c7f"}]},"public":true,"created_at":"2015-01-01T15:19:55Z"} +,{"id":"2489660200","type":"PushEvent","actor":{"id":1039418,"login":"marcosps","gravatar_id":"","url":"https://api.github.com/users/marcosps","avatar_url":"https://avatars.githubusercontent.com/u/1039418?"},"repo":{"id":25843861,"name":"marcosps/tlpi_examples","url":"https://api.github.com/repos/marcosps/tlpi_examples"},"payload":{"push_id":536868101,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fc4cf40f48a701960944426f39b0a351312e61db","before":"7beae9ba4dade033464eeaeb791653e2e2ced71c","commits":[{"sha":"fc4cf40f48a701960944426f39b0a351312e61db","author":{"email":"0b4ebe3a213a49a2bc3457b98408e6d86812eb46@gmail.com","name":"Marcos Paulo de Souza"},"message":"Add examples of mmap files","distinct":true,"url":"https://api.github.com/repos/marcosps/tlpi_examples/commits/fc4cf40f48a701960944426f39b0a351312e61db"}]},"public":true,"created_at":"2015-01-01T15:19:56Z"} +,{"id":"2489660202","type":"PullRequestEvent","actor":{"id":4894735,"login":"MaxRink","gravatar_id":"","url":"https://api.github.com/users/MaxRink","avatar_url":"https://avatars.githubusercontent.com/u/4894735?"},"repo":{"id":28688863,"name":"MaxRink/seat","url":"https://api.github.com/repos/MaxRink/seat"},"payload":{"action":"closed","number":1,"pull_request":{"url":"https://api.github.com/repos/MaxRink/seat/pulls/1","id":26743878,"html_url":"https://github.com/MaxRink/seat/pull/1","diff_url":"https://github.com/MaxRink/seat/pull/1.diff","patch_url":"https://github.com/MaxRink/seat/pull/1.patch","issue_url":"https://api.github.com/repos/MaxRink/seat/issues/1","number":1,"state":"closed","locked":false,"title":"Dev","user":{"login":"MaxRink","id":4894735,"avatar_url":"https://avatars.githubusercontent.com/u/4894735?v=3","gravatar_id":"","url":"https://api.github.com/users/MaxRink","html_url":"https://github.com/MaxRink","followers_url":"https://api.github.com/users/MaxRink/followers","following_url":"https://api.github.com/users/MaxRink/following{/other_user}","gists_url":"https://api.github.com/users/MaxRink/gists{/gist_id}","starred_url":"https://api.github.com/users/MaxRink/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MaxRink/subscriptions","organizations_url":"https://api.github.com/users/MaxRink/orgs","repos_url":"https://api.github.com/users/MaxRink/repos","events_url":"https://api.github.com/users/MaxRink/events{/privacy}","received_events_url":"https://api.github.com/users/MaxRink/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:14:27Z","updated_at":"2015-01-01T15:19:57Z","closed_at":"2015-01-01T15:19:57Z","merged_at":"2015-01-01T15:19:57Z","merge_commit_sha":"28d41011d5cc315c6ac08e9af4c795a4ff10d7d9","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/MaxRink/seat/pulls/1/commits","review_comments_url":"https://api.github.com/repos/MaxRink/seat/pulls/1/comments","review_comment_url":"https://api.github.com/repos/MaxRink/seat/pulls/comments/{number}","comments_url":"https://api.github.com/repos/MaxRink/seat/issues/1/comments","statuses_url":"https://api.github.com/repos/MaxRink/seat/statuses/81f3a52a0801c6f3509caa70cd13d836f8de358a","head":{"label":"eve-seat:dev","ref":"dev","sha":"81f3a52a0801c6f3509caa70cd13d836f8de358a","user":{"login":"eve-seat","id":7008038,"avatar_url":"https://avatars.githubusercontent.com/u/7008038?v=3","gravatar_id":"","url":"https://api.github.com/users/eve-seat","html_url":"https://github.com/eve-seat","followers_url":"https://api.github.com/users/eve-seat/followers","following_url":"https://api.github.com/users/eve-seat/following{/other_user}","gists_url":"https://api.github.com/users/eve-seat/gists{/gist_id}","starred_url":"https://api.github.com/users/eve-seat/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eve-seat/subscriptions","organizations_url":"https://api.github.com/users/eve-seat/orgs","repos_url":"https://api.github.com/users/eve-seat/repos","events_url":"https://api.github.com/users/eve-seat/events{/privacy}","received_events_url":"https://api.github.com/users/eve-seat/received_events","type":"User","site_admin":false},"repo":{"id":18711074,"name":"seat","full_name":"eve-seat/seat","owner":{"login":"eve-seat","id":7008038,"avatar_url":"https://avatars.githubusercontent.com/u/7008038?v=3","gravatar_id":"","url":"https://api.github.com/users/eve-seat","html_url":"https://github.com/eve-seat","followers_url":"https://api.github.com/users/eve-seat/followers","following_url":"https://api.github.com/users/eve-seat/following{/other_user}","gists_url":"https://api.github.com/users/eve-seat/gists{/gist_id}","starred_url":"https://api.github.com/users/eve-seat/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eve-seat/subscriptions","organizations_url":"https://api.github.com/users/eve-seat/orgs","repos_url":"https://api.github.com/users/eve-seat/repos","events_url":"https://api.github.com/users/eve-seat/events{/privacy}","received_events_url":"https://api.github.com/users/eve-seat/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/eve-seat/seat","description":"Simple (or Stupid) EVE Online API Tool","fork":false,"url":"https://api.github.com/repos/eve-seat/seat","forks_url":"https://api.github.com/repos/eve-seat/seat/forks","keys_url":"https://api.github.com/repos/eve-seat/seat/keys{/key_id}","collaborators_url":"https://api.github.com/repos/eve-seat/seat/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/eve-seat/seat/teams","hooks_url":"https://api.github.com/repos/eve-seat/seat/hooks","issue_events_url":"https://api.github.com/repos/eve-seat/seat/issues/events{/number}","events_url":"https://api.github.com/repos/eve-seat/seat/events","assignees_url":"https://api.github.com/repos/eve-seat/seat/assignees{/user}","branches_url":"https://api.github.com/repos/eve-seat/seat/branches{/branch}","tags_url":"https://api.github.com/repos/eve-seat/seat/tags","blobs_url":"https://api.github.com/repos/eve-seat/seat/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/eve-seat/seat/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/eve-seat/seat/git/refs{/sha}","trees_url":"https://api.github.com/repos/eve-seat/seat/git/trees{/sha}","statuses_url":"https://api.github.com/repos/eve-seat/seat/statuses/{sha}","languages_url":"https://api.github.com/repos/eve-seat/seat/languages","stargazers_url":"https://api.github.com/repos/eve-seat/seat/stargazers","contributors_url":"https://api.github.com/repos/eve-seat/seat/contributors","subscribers_url":"https://api.github.com/repos/eve-seat/seat/subscribers","subscription_url":"https://api.github.com/repos/eve-seat/seat/subscription","commits_url":"https://api.github.com/repos/eve-seat/seat/commits{/sha}","git_commits_url":"https://api.github.com/repos/eve-seat/seat/git/commits{/sha}","comments_url":"https://api.github.com/repos/eve-seat/seat/comments{/number}","issue_comment_url":"https://api.github.com/repos/eve-seat/seat/issues/comments/{number}","contents_url":"https://api.github.com/repos/eve-seat/seat/contents/{+path}","compare_url":"https://api.github.com/repos/eve-seat/seat/compare/{base}...{head}","merges_url":"https://api.github.com/repos/eve-seat/seat/merges","archive_url":"https://api.github.com/repos/eve-seat/seat/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/eve-seat/seat/downloads","issues_url":"https://api.github.com/repos/eve-seat/seat/issues{/number}","pulls_url":"https://api.github.com/repos/eve-seat/seat/pulls{/number}","milestones_url":"https://api.github.com/repos/eve-seat/seat/milestones{/number}","notifications_url":"https://api.github.com/repos/eve-seat/seat/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/eve-seat/seat/labels{/name}","releases_url":"https://api.github.com/repos/eve-seat/seat/releases{/id}","created_at":"2014-04-12T18:16:25Z","updated_at":"2014-12-30T05:19:04Z","pushed_at":"2014-12-30T19:06:49Z","git_url":"git://github.com/eve-seat/seat.git","ssh_url":"git@github.com:eve-seat/seat.git","clone_url":"https://github.com/eve-seat/seat.git","svn_url":"https://github.com/eve-seat/seat","homepage":"http://eve-seat.github.io/seat","size":5303,"stargazers_count":35,"watchers_count":35,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":27,"mirror_url":null,"open_issues_count":26,"forks":27,"open_issues":26,"watchers":35,"default_branch":"master"}},"base":{"label":"MaxRink:master","ref":"master","sha":"62d517153a9ff700bf4cd6884a709b5bc048c041","user":{"login":"MaxRink","id":4894735,"avatar_url":"https://avatars.githubusercontent.com/u/4894735?v=3","gravatar_id":"","url":"https://api.github.com/users/MaxRink","html_url":"https://github.com/MaxRink","followers_url":"https://api.github.com/users/MaxRink/followers","following_url":"https://api.github.com/users/MaxRink/following{/other_user}","gists_url":"https://api.github.com/users/MaxRink/gists{/gist_id}","starred_url":"https://api.github.com/users/MaxRink/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MaxRink/subscriptions","organizations_url":"https://api.github.com/users/MaxRink/orgs","repos_url":"https://api.github.com/users/MaxRink/repos","events_url":"https://api.github.com/users/MaxRink/events{/privacy}","received_events_url":"https://api.github.com/users/MaxRink/received_events","type":"User","site_admin":false},"repo":{"id":28688863,"name":"seat","full_name":"MaxRink/seat","owner":{"login":"MaxRink","id":4894735,"avatar_url":"https://avatars.githubusercontent.com/u/4894735?v=3","gravatar_id":"","url":"https://api.github.com/users/MaxRink","html_url":"https://github.com/MaxRink","followers_url":"https://api.github.com/users/MaxRink/followers","following_url":"https://api.github.com/users/MaxRink/following{/other_user}","gists_url":"https://api.github.com/users/MaxRink/gists{/gist_id}","starred_url":"https://api.github.com/users/MaxRink/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MaxRink/subscriptions","organizations_url":"https://api.github.com/users/MaxRink/orgs","repos_url":"https://api.github.com/users/MaxRink/repos","events_url":"https://api.github.com/users/MaxRink/events{/privacy}","received_events_url":"https://api.github.com/users/MaxRink/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/MaxRink/seat","description":"Simple (or Stupid) EVE Online API Tool","fork":true,"url":"https://api.github.com/repos/MaxRink/seat","forks_url":"https://api.github.com/repos/MaxRink/seat/forks","keys_url":"https://api.github.com/repos/MaxRink/seat/keys{/key_id}","collaborators_url":"https://api.github.com/repos/MaxRink/seat/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/MaxRink/seat/teams","hooks_url":"https://api.github.com/repos/MaxRink/seat/hooks","issue_events_url":"https://api.github.com/repos/MaxRink/seat/issues/events{/number}","events_url":"https://api.github.com/repos/MaxRink/seat/events","assignees_url":"https://api.github.com/repos/MaxRink/seat/assignees{/user}","branches_url":"https://api.github.com/repos/MaxRink/seat/branches{/branch}","tags_url":"https://api.github.com/repos/MaxRink/seat/tags","blobs_url":"https://api.github.com/repos/MaxRink/seat/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/MaxRink/seat/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/MaxRink/seat/git/refs{/sha}","trees_url":"https://api.github.com/repos/MaxRink/seat/git/trees{/sha}","statuses_url":"https://api.github.com/repos/MaxRink/seat/statuses/{sha}","languages_url":"https://api.github.com/repos/MaxRink/seat/languages","stargazers_url":"https://api.github.com/repos/MaxRink/seat/stargazers","contributors_url":"https://api.github.com/repos/MaxRink/seat/contributors","subscribers_url":"https://api.github.com/repos/MaxRink/seat/subscribers","subscription_url":"https://api.github.com/repos/MaxRink/seat/subscription","commits_url":"https://api.github.com/repos/MaxRink/seat/commits{/sha}","git_commits_url":"https://api.github.com/repos/MaxRink/seat/git/commits{/sha}","comments_url":"https://api.github.com/repos/MaxRink/seat/comments{/number}","issue_comment_url":"https://api.github.com/repos/MaxRink/seat/issues/comments/{number}","contents_url":"https://api.github.com/repos/MaxRink/seat/contents/{+path}","compare_url":"https://api.github.com/repos/MaxRink/seat/compare/{base}...{head}","merges_url":"https://api.github.com/repos/MaxRink/seat/merges","archive_url":"https://api.github.com/repos/MaxRink/seat/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/MaxRink/seat/downloads","issues_url":"https://api.github.com/repos/MaxRink/seat/issues{/number}","pulls_url":"https://api.github.com/repos/MaxRink/seat/pulls{/number}","milestones_url":"https://api.github.com/repos/MaxRink/seat/milestones{/number}","notifications_url":"https://api.github.com/repos/MaxRink/seat/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/MaxRink/seat/labels{/name}","releases_url":"https://api.github.com/repos/MaxRink/seat/releases{/id}","created_at":"2015-01-01T15:14:05Z","updated_at":"2015-01-01T15:14:07Z","pushed_at":"2015-01-01T15:19:57Z","git_url":"git://github.com/MaxRink/seat.git","ssh_url":"git@github.com:MaxRink/seat.git","clone_url":"https://github.com/MaxRink/seat.git","svn_url":"https://github.com/MaxRink/seat","homepage":"http://eve-seat.github.io/seat","size":5303,"stargazers_count":0,"watchers_count":0,"language":"PHP","has_issues":false,"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/MaxRink/seat/pulls/1"},"html":{"href":"https://github.com/MaxRink/seat/pull/1"},"issue":{"href":"https://api.github.com/repos/MaxRink/seat/issues/1"},"comments":{"href":"https://api.github.com/repos/MaxRink/seat/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/MaxRink/seat/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/MaxRink/seat/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/MaxRink/seat/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/MaxRink/seat/statuses/81f3a52a0801c6f3509caa70cd13d836f8de358a"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"MaxRink","id":4894735,"avatar_url":"https://avatars.githubusercontent.com/u/4894735?v=3","gravatar_id":"","url":"https://api.github.com/users/MaxRink","html_url":"https://github.com/MaxRink","followers_url":"https://api.github.com/users/MaxRink/followers","following_url":"https://api.github.com/users/MaxRink/following{/other_user}","gists_url":"https://api.github.com/users/MaxRink/gists{/gist_id}","starred_url":"https://api.github.com/users/MaxRink/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MaxRink/subscriptions","organizations_url":"https://api.github.com/users/MaxRink/orgs","repos_url":"https://api.github.com/users/MaxRink/repos","events_url":"https://api.github.com/users/MaxRink/events{/privacy}","received_events_url":"https://api.github.com/users/MaxRink/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":9,"additions":546,"deletions":169,"changed_files":11}},"public":true,"created_at":"2015-01-01T15:19:57Z"} +,{"id":"2489660204","type":"PushEvent","actor":{"id":4894735,"login":"MaxRink","gravatar_id":"","url":"https://api.github.com/users/MaxRink","avatar_url":"https://avatars.githubusercontent.com/u/4894735?"},"repo":{"id":28688863,"name":"MaxRink/seat","url":"https://api.github.com/repos/MaxRink/seat"},"payload":{"push_id":536868102,"size":10,"distinct_size":1,"ref":"refs/heads/master","head":"209683b331f350f6033735c4479fa397b37e7a73","before":"62d517153a9ff700bf4cd6884a709b5bc048c041","commits":[{"sha":"6ac58fc819010f710e9df3baf7bfa3d43f16d20d","author":{"email":"558b52eddfac80e3878b84f0d05886a9144bafdb@gmail.com","name":"qu1ckkkk"},"message":"Add a seat:update command.","distinct":false,"url":"https://api.github.com/repos/MaxRink/seat/commits/6ac58fc819010f710e9df3baf7bfa3d43f16d20d"},{"sha":"8c573d56002273e3372c36d898f5767b84fa8f83","author":{"email":"558b52eddfac80e3878b84f0d05886a9144bafdb@gmail.com","name":"qu1ckkkk"},"message":"Complete seat:update\n\nAdded --dev to ignore the switch to the master branch\nAdded --no-sde to skip updating the EVE SDE\nFixed the composer.phar lookup if its being defined","distinct":false,"url":"https://api.github.com/repos/MaxRink/seat/commits/8c573d56002273e3372c36d898f5767b84fa8f83"},{"sha":"a59ee84e02cd38afacfeefa5f8c7faf1d03b66e3","author":{"email":"558b52eddfac80e3878b84f0d05886a9144bafdb@gmail.com","name":"qu1ckkkk"},"message":"Remove debugging code.","distinct":false,"url":"https://api.github.com/repos/MaxRink/seat/commits/a59ee84e02cd38afacfeefa5f8c7faf1d03b66e3"},{"sha":"3da43142afe298824803ddc1b76faa38fa2e9901","author":{"email":"558b52eddfac80e3878b84f0d05886a9144bafdb@gmail.com","name":"qu1ckkkk"},"message":"Prevent all sorts of weird stuff by attempting to use user generated names","distinct":false,"url":"https://api.github.com/repos/MaxRink/seat/commits/3da43142afe298824803ddc1b76faa38fa2e9901"},{"sha":"6495c72d5361130eec4205ac172fc96862ce3d8f","author":{"email":"558b52eddfac80e3878b84f0d05886a9144bafdb@gmail.com","name":"qu1ckkkk"},"message":"Move api/ controllers to below controllers/","distinct":false,"url":"https://api.github.com/repos/MaxRink/seat/commits/6495c72d5361130eec4205ac172fc96862ce3d8f"},{"sha":"02e5c17da6775e4467cf65070facdbd928773dfc","author":{"email":"558b52eddfac80e3878b84f0d05886a9144bafdb@gmail.com","name":"qu1ckkkk"},"message":"Check that Groups have permissions before attempting to determine them","distinct":false,"url":"https://api.github.com/repos/MaxRink/seat/commits/02e5c17da6775e4467cf65070facdbd928773dfc"},{"sha":"58de9edb40d89cac6ef2139c1ab2b4c93eaa19d7","author":{"email":"e5ab2d7c80282d941faffc3a3a77c0bf9a68bce6@gmail.com","name":"LunarchildEU"},"message":"Filter unpublished Skills","distinct":false,"url":"https://api.github.com/repos/MaxRink/seat/commits/58de9edb40d89cac6ef2139c1ab2b4c93eaa19d7"},{"sha":"7c7b817b61f9d3dd72ef5d1bd27ecfd73164c66e","author":{"email":"558b52eddfac80e3878b84f0d05886a9144bafdb@gmail.com","name":"eve-seat"},"message":"Merge pull request #307 from LunarchildEU/skillsearch\n\nFilter unpublished Skills","distinct":false,"url":"https://api.github.com/repos/MaxRink/seat/commits/7c7b817b61f9d3dd72ef5d1bd27ecfd73164c66e"},{"sha":"81f3a52a0801c6f3509caa70cd13d836f8de358a","author":{"email":"558b52eddfac80e3878b84f0d05886a9144bafdb@gmail.com","name":"qu1ckkkk"},"message":"Small POS code refactor.\n\nThis commit moves most of the crappy logic that was in the view\nout to the controller where it actually belongs. It quite\npossibly also fixes #272.","distinct":false,"url":"https://api.github.com/repos/MaxRink/seat/commits/81f3a52a0801c6f3509caa70cd13d836f8de358a"},{"sha":"209683b331f350f6033735c4479fa397b37e7a73","author":{"email":"b5335cd6523e4662b59aa68256c55bb7f71fa414@lyotec.de","name":"MaxRink"},"message":"Merge pull request #1 from eve-seat/dev\n\nDev","distinct":true,"url":"https://api.github.com/repos/MaxRink/seat/commits/209683b331f350f6033735c4479fa397b37e7a73"}]},"public":true,"created_at":"2015-01-01T15:19:57Z"} +,{"id":"2489660205","type":"PushEvent","actor":{"id":950301,"login":"DanielKehoe","gravatar_id":"","url":"https://api.github.com/users/DanielKehoe","avatar_url":"https://avatars.githubusercontent.com/u/950301?"},"repo":{"id":15666048,"name":"RailsApps/rails-foundation","url":"https://api.github.com/repos/RailsApps/rails-foundation"},"payload":{"push_id":536868103,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0e1f2def3d06acafed7f2bd348ae62ddbaf7fe1c","before":"4d19b89084d58e0f87af2ddf546eab333eddc48a","commits":[{"sha":"0e1f2def3d06acafed7f2bd348ae62ddbaf7fe1c","author":{"email":"3d0f3b9ddcacec30c4008c5e030e6c13a478cb4f@danielkehoe.com","name":"Daniel Kehoe"},"message":"Rails 4.2","distinct":true,"url":"https://api.github.com/repos/RailsApps/rails-foundation/commits/0e1f2def3d06acafed7f2bd348ae62ddbaf7fe1c"}]},"public":true,"created_at":"2015-01-01T15:19:57Z","org":{"id":788200,"login":"RailsApps","gravatar_id":"","url":"https://api.github.com/orgs/RailsApps","avatar_url":"https://avatars.githubusercontent.com/u/788200?"}} +,{"id":"2489660210","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":27928684,"name":"go-amz/amz","url":"https://api.github.com/repos/go-amz/amz"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/go-amz/amz/issues/6","labels_url":"https://api.github.com/repos/go-amz/amz/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/go-amz/amz/issues/6/comments","events_url":"https://api.github.com/repos/go-amz/amz/issues/6/events","html_url":"https://github.com/go-amz/amz/pull/6","id":53089846,"number":6,"title":"setup Travis CI for testing","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":9,"created_at":"2014-12-30T03:03:13Z","updated_at":"2015-01-01T15:19:58Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/go-amz/amz/pulls/6","html_url":"https://github.com/go-amz/amz/pull/6","diff_url":"https://github.com/go-amz/amz/pull/6.diff","patch_url":"https://github.com/go-amz/amz/pull/6.patch"},"body":"* [x] It's still necessary to [activate a webhook](http://docs.travis-ci.com/user/getting-started/) to test pull requests "},"comment":{"url":"https://api.github.com/repos/go-amz/amz/issues/comments/68488923","html_url":"https://github.com/go-amz/amz/pull/6#issuecomment-68488923","issue_url":"https://api.github.com/repos/go-amz/amz/issues/6","id":68488923,"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:19:58Z","updated_at":"2015-01-01T15:19:58Z","body":"Just FYI\r\n\r\n> From December 23th to January 4th, the Travis CI team is taking a little bit of a break to spend time with their friends and families, so we may not be able to respond as timely as we usually do and support responses can be slower.\r\n"}},"public":true,"created_at":"2015-01-01T15:19:58Z","org":{"id":8137365,"login":"go-amz","gravatar_id":"","url":"https://api.github.com/orgs/go-amz","avatar_url":"https://avatars.githubusercontent.com/u/8137365?"}} +,{"id":"2489660211","type":"PushEvent","actor":{"id":4172864,"login":"beanpole135","gravatar_id":"","url":"https://api.github.com/users/beanpole135","avatar_url":"https://avatars.githubusercontent.com/u/4172864?"},"repo":{"id":23668497,"name":"pcbsd/lumina","url":"https://api.github.com/repos/pcbsd/lumina"},"payload":{"push_id":536868106,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"64c9ecca216ce03287908c510a7af3adff112832","before":"158db259c282e1f3f4857bf5f0e88f74bfc58268","commits":[{"sha":"64c9ecca216ce03287908c510a7af3adff112832","author":{"email":"470bc578162732ac7f9d387d34c4af4ca6e1b6f7@pcbsd.org","name":"Ken Moore"},"message":"Large update of XLib -> XCB usage\n1) Add ability for task manager to minimize/maximize window from details menu\n2) Add quick check/movement of new windows to make sure they are not underneath any panels","distinct":true,"url":"https://api.github.com/repos/pcbsd/lumina/commits/64c9ecca216ce03287908c510a7af3adff112832"}]},"public":true,"created_at":"2015-01-01T15:19:58Z","org":{"id":4104981,"login":"pcbsd","gravatar_id":"","url":"https://api.github.com/orgs/pcbsd","avatar_url":"https://avatars.githubusercontent.com/u/4104981?"}} +,{"id":"2489660212","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":536868107,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9ffe3ce29fc8e3af360772ad2760e144ebc61982","before":"4e8fdf80fddf44b3d4fdb63d947c367754c8139c","commits":[{"sha":"9ffe3ce29fc8e3af360772ad2760e144ebc61982","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420125597193\n\nIGGf/wXr2l+fLSGy/iqRm8n7KsXnCRjxZp7HKdtWWx0=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/9ffe3ce29fc8e3af360772ad2760e144ebc61982"}]},"public":true,"created_at":"2015-01-01T15:19:58Z"} +,{"id":"2489660213","type":"WatchEvent","actor":{"id":349828,"login":"ARoiD","gravatar_id":"","url":"https://api.github.com/users/ARoiD","avatar_url":"https://avatars.githubusercontent.com/u/349828?"},"repo":{"id":6687936,"name":"polarssl/polarssl","url":"https://api.github.com/repos/polarssl/polarssl"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:19:59Z","org":{"id":2794830,"login":"polarssl","gravatar_id":"","url":"https://api.github.com/orgs/polarssl","avatar_url":"https://avatars.githubusercontent.com/u/2794830?"}}] diff --git a/benchmark/object-hash.mjs b/benchmark/object-hash.mjs new file mode 100644 index 0000000..6c0a770 --- /dev/null +++ b/benchmark/object-hash.mjs @@ -0,0 +1,66 @@ +import Benchmark from "benchmark"; +import { objectHash } from "ohash"; +import largeJson from './fixture/large.mjs' + +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(1000); + +suite.add("hash({})", function () { + const v = objectHash({}); +}); + +suite.add("hash(singleObject)", function () { + const v = objectHash(singleObject); +}); + +suite.add("hash(tinyArray)", function () { + const v = objectHash(tinyArray); +}); + +suite.add("hash(mediumArray)", function () { + const v = objectHash(mediumArray); +}); + +suite.add("hash(largeArray)", function () { + const v = objectHash(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 listeners + .on("cycle", function (event) { + console.log(event.target.toString()); + }) + .on("complete", function () { + console.log("Fastest is " + this.filter("fastest").map("name")); + }) + .run({ + async: false, + }); diff --git a/package.json b/package.json index 427fc21..ea7a9ba 100644 --- a/package.json +++ b/package.json @@ -26,11 +26,13 @@ "lint:fix": "eslint --fix --ext .ts,.js,.mjs,.cjs . && prettier -w src test", "prepack": "unbuild", "release": "pnpm test && changelogen --release --push && pnpm publish", + "benchmark": "node benchmark/object-hash.mjs", "test": "pnpm lint && vitest run" }, "devDependencies": { "@types/node": "^18.15.13", "@vitest/coverage-c8": "^0.30.1", + "benchmark": "^2.1.4", "c8": "^7.13.0", "changelogen": "^0.5.3", "eslint": "^8.39.0", @@ -41,4 +43,4 @@ "vitest": "^0.30.1" }, "packageManager": "pnpm@8.3.1" -} \ No newline at end of file +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2bcb00f..1b6d0e8 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,6 +7,9 @@ devDependencies: '@vitest/coverage-c8': specifier: ^0.30.1 version: 0.30.1(vitest@0.30.1) + benchmark: + specifier: ^2.1.4 + version: 2.1.4 c8: specifier: ^7.13.0 version: 7.13.0 @@ -1007,6 +1010,13 @@ packages: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} dev: true + /benchmark@2.1.4: + resolution: {integrity: sha512-l9MlfN4M1K/H2fbhfMy3B7vJd6AGKJVQn2h6Sg/Yx+KckoUA7ewS5Vv6TjSq18ooE1kS9hhAlQRH3AkXIh/aOQ==} + dependencies: + lodash: 4.17.21 + platform: 1.3.6 + dev: true + /big-integer@1.6.51: resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==} engines: {node: '>=0.6'} @@ -3065,6 +3075,10 @@ packages: pathe: 1.1.0 dev: true + /platform@1.3.6: + resolution: {integrity: sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==} + dev: true + /pluralize@8.0.0: resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} engines: {node: '>=4'} From 9cdede732b437cd4929017fda349500e55a2c105 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vinicius=20Louren=C3=A7o?= <12551007+H4ad@users.noreply.github.com> Date: Sat, 22 Apr 2023 09:07:23 -0300 Subject: [PATCH 09/19] perf(object-hash): reuse default options when is not passed (#37) --- src/object-hash.ts | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/object-hash.ts b/src/object-hash.ts index d849f96..1b24f07 100644 --- a/src/object-hash.ts +++ b/src/object-hash.ts @@ -44,7 +44,7 @@ export interface HashOptions { } // Defaults -const defaults: HashOptions = { +const defaults: HashOptions = Object.freeze({ ignoreUnknown: false, respectType: false, respectFunctionNames: false, @@ -52,7 +52,10 @@ const defaults: HashOptions = { unorderedObjects: true, unorderedArrays: false, unorderedSets: false, -}; + excludeKeys: undefined, + excludeValues: undefined, + replacer: undefined, +}); /** * Hash any JS value into a string with murmur v3 hash @@ -61,8 +64,12 @@ const defaults: HashOptions = { * @return {string} hash value * @api public */ -export function objectHash(object: any, options: HashOptions = {}): string { - options = { ...defaults, ...options }; +export function objectHash(object: any, options?: HashOptions): string { + if (!options) { + options = defaults; + } else { + options = { ...defaults, ...options }; + } const hasher = createHasher(options); hasher.dispatch(object); return hasher.toString(); From 69a82bf02e07a0a24c11c2a4a14489637296609f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vinicius=20Louren=C3=A7o?= <12551007+H4ad@users.noreply.github.com> Date: Sun, 23 Apr 2023 07:24:29 -0300 Subject: [PATCH 10/19] perf(object-hash): avoid splice method to insert values (#35) --- src/object-hash.ts | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/src/object-hash.ts b/src/object-hash.ts index 1b24f07..afa5de3 100644 --- a/src/object-hash.ts +++ b/src/object-hash.ts @@ -75,6 +75,12 @@ export function objectHash(object: any, options?: HashOptions): string { return hasher.toString(); } +const defaultPrototypesKeys = Object.freeze([ + "prototype", + "__proto__", + "constructor", +]); + function createHasher(options: HashOptions) { let buff = ""; let context = new Map(); @@ -148,27 +154,37 @@ function createHasher(options: HashOptions) { 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)) { - keys.splice(0, 0, "prototype", "__proto__", "letructor"); + 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 + ":"); - for (const key of keys) { + write("object:" + (keys.length + extraKeys.length) + ":"); + const dispatchForKey = (key) => { this.dispatch(key); write(":"); if (!options.excludeValues) { this.dispatch(object[key]); } write(","); + }; + for (const key of keys) { + dispatchForKey(key); + } + for (const key of extraKeys) { + dispatchForKey(key); } } }, From f1ab5f7d8f7eccd52ffafcd1e06b1617cd43bbd5 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Thu, 10 Aug 2023 12:39:21 +0200 Subject: [PATCH 11/19] chore: update dev dependencies --- package.json | 17 +- pnpm-lock.yaml | 2064 ++++++++++++++++++++++++++---------------------- 2 files changed, 1148 insertions(+), 933 deletions(-) diff --git a/package.json b/package.json index ea7a9ba..d9dc286 100644 --- a/package.json +++ b/package.json @@ -30,17 +30,16 @@ "test": "pnpm lint && vitest run" }, "devDependencies": { - "@types/node": "^18.15.13", - "@vitest/coverage-c8": "^0.30.1", + "@types/node": "^20.4.9", + "@vitest/coverage-v8": "^0.34.1", "benchmark": "^2.1.4", - "c8": "^7.13.0", - "changelogen": "^0.5.3", - "eslint": "^8.39.0", - "eslint-config-unjs": "^0.1.0", - "prettier": "^2.8.7", - "typescript": "^5.0.4", + "changelogen": "^0.5.4", + "eslint": "^8.46.0", + "eslint-config-unjs": "^0.2.1", + "prettier": "^3.0.1", + "typescript": "^5.1.6", "unbuild": "^1.2.1", - "vitest": "^0.30.1" + "vitest": "^0.34.1" }, "packageManager": "pnpm@8.3.1" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1b6d0e8..1471159 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2,246 +2,244 @@ lockfileVersion: '6.0' devDependencies: '@types/node': - specifier: ^18.15.13 - version: 18.15.13 - '@vitest/coverage-c8': - specifier: ^0.30.1 - version: 0.30.1(vitest@0.30.1) + specifier: ^20.4.9 + version: 20.4.9 + '@vitest/coverage-v8': + specifier: ^0.34.1 + version: 0.34.1(vitest@0.34.1) benchmark: specifier: ^2.1.4 version: 2.1.4 - c8: - specifier: ^7.13.0 - version: 7.13.0 changelogen: - specifier: ^0.5.3 - version: 0.5.3 + specifier: ^0.5.4 + version: 0.5.4 eslint: - specifier: ^8.39.0 - version: 8.39.0 + specifier: ^8.46.0 + version: 8.46.0 eslint-config-unjs: - specifier: ^0.1.0 - version: 0.1.0(eslint@8.39.0)(typescript@5.0.4) + specifier: ^0.2.1 + version: 0.2.1(eslint@8.46.0)(typescript@5.1.6) prettier: - specifier: ^2.8.7 - version: 2.8.7 + specifier: ^3.0.1 + version: 3.0.1 typescript: - specifier: ^5.0.4 - version: 5.0.4 + specifier: ^5.1.6 + version: 5.1.6 unbuild: specifier: ^1.2.1 version: 1.2.1 vitest: - specifier: ^0.30.1 - version: 0.30.1 + specifier: ^0.34.1 + version: 0.34.1 packages: + /@aashutoshrathi/word-wrap@1.2.6: + resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} + engines: {node: '>=0.10.0'} + dev: true + /@ampproject/remapping@2.2.1: resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} engines: {node: '>=6.0.0'} dependencies: '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.18 + '@jridgewell/trace-mapping': 0.3.19 dev: true - /@babel/code-frame@7.21.4: - resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==} + /@babel/code-frame@7.22.10: + resolution: {integrity: sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/highlight': 7.18.6 + '@babel/highlight': 7.22.10 + chalk: 2.4.2 dev: true - /@babel/compat-data@7.21.4: - resolution: {integrity: sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g==} + /@babel/compat-data@7.22.9: + resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==} engines: {node: '>=6.9.0'} dev: true - /@babel/core@7.21.4: - resolution: {integrity: sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==} + /@babel/core@7.22.10: + resolution: {integrity: sha512-fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.21.4 - '@babel/generator': 7.21.4 - '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4) - '@babel/helper-module-transforms': 7.21.2 - '@babel/helpers': 7.21.0 - '@babel/parser': 7.21.4 - '@babel/template': 7.20.7 - '@babel/traverse': 7.21.4 - '@babel/types': 7.21.4 + '@babel/code-frame': 7.22.10 + '@babel/generator': 7.22.10 + '@babel/helper-compilation-targets': 7.22.10 + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10) + '@babel/helpers': 7.22.10 + '@babel/parser': 7.22.10 + '@babel/template': 7.22.5 + '@babel/traverse': 7.22.10 + '@babel/types': 7.22.10 convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.3 - semver: 6.3.0 + semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /@babel/generator@7.21.4: - resolution: {integrity: sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==} + /@babel/generator@7.22.10: + resolution: {integrity: sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.21.4 + '@babel/types': 7.22.10 '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.18 + '@jridgewell/trace-mapping': 0.3.19 jsesc: 2.5.2 dev: true - /@babel/helper-compilation-targets@7.21.4(@babel/core@7.21.4): - resolution: {integrity: sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg==} + /@babel/helper-compilation-targets@7.22.10: + resolution: {integrity: sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.21.4 - '@babel/core': 7.21.4 - '@babel/helper-validator-option': 7.21.0 - browserslist: 4.21.5 + '@babel/compat-data': 7.22.9 + '@babel/helper-validator-option': 7.22.5 + browserslist: 4.21.10 lru-cache: 5.1.1 - semver: 6.3.0 + semver: 6.3.1 dev: true - /@babel/helper-environment-visitor@7.18.9: - resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} + /@babel/helper-environment-visitor@7.22.5: + resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-function-name@7.21.0: - resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==} + /@babel/helper-function-name@7.22.5: + resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.20.7 - '@babel/types': 7.21.4 + '@babel/template': 7.22.5 + '@babel/types': 7.22.10 dev: true - /@babel/helper-hoist-variables@7.18.6: - resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} + /@babel/helper-hoist-variables@7.22.5: + resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.21.4 + '@babel/types': 7.22.10 dev: true - /@babel/helper-module-imports@7.21.4: - resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==} + /@babel/helper-module-imports@7.22.5: + resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.21.4 + '@babel/types': 7.22.10 dev: true - /@babel/helper-module-transforms@7.21.2: - resolution: {integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==} + /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.10): + resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 dependencies: - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-module-imports': 7.21.4 - '@babel/helper-simple-access': 7.20.2 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/helper-validator-identifier': 7.19.1 - '@babel/template': 7.20.7 - '@babel/traverse': 7.21.4 - '@babel/types': 7.21.4 - transitivePeerDependencies: - - supports-color + '@babel/core': 7.22.10 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-module-imports': 7.22.5 + '@babel/helper-simple-access': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-validator-identifier': 7.22.5 dev: true - /@babel/helper-simple-access@7.20.2: - resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} + /@babel/helper-simple-access@7.22.5: + resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.21.4 + '@babel/types': 7.22.10 dev: true - /@babel/helper-split-export-declaration@7.18.6: - resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} + /@babel/helper-split-export-declaration@7.22.6: + resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.21.4 + '@babel/types': 7.22.10 dev: true - /@babel/helper-string-parser@7.19.4: - resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} + /@babel/helper-string-parser@7.22.5: + resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-validator-identifier@7.19.1: - resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} + /@babel/helper-validator-identifier@7.22.5: + resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-validator-option@7.21.0: - resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==} + /@babel/helper-validator-option@7.22.5: + resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==} engines: {node: '>=6.9.0'} dev: true - /@babel/helpers@7.21.0: - resolution: {integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==} + /@babel/helpers@7.22.10: + resolution: {integrity: sha512-a41J4NW8HyZa1I1vAndrraTlPZ/eZoga2ZgS7fEr0tZJGVU4xqdE80CEm0CcNjha5EZ8fTBYLKHF0kqDUuAwQw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.20.7 - '@babel/traverse': 7.21.4 - '@babel/types': 7.21.4 + '@babel/template': 7.22.5 + '@babel/traverse': 7.22.10 + '@babel/types': 7.22.10 transitivePeerDependencies: - supports-color dev: true - /@babel/highlight@7.18.6: - resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} + /@babel/highlight@7.22.10: + resolution: {integrity: sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.19.1 + '@babel/helper-validator-identifier': 7.22.5 chalk: 2.4.2 js-tokens: 4.0.0 dev: true - /@babel/parser@7.21.4: - resolution: {integrity: sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw==} + /@babel/parser@7.22.10: + resolution: {integrity: sha512-lNbdGsQb9ekfsnjFGhEiF4hfFqGgfOP3H3d27re3n+CGhNuTSUEQdfWk556sTLNTloczcdM5TYF2LhzmDQKyvQ==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.21.4 + '@babel/types': 7.22.10 dev: true - /@babel/standalone@7.21.4: - resolution: {integrity: sha512-Rw4nGqH/iyVeYxARKcz7iGP+njkPsVqJ45TmXMONoGoxooWjXCAs+CUcLeAZdBGCLqgaPvHKCYvIaDT2Iq+KfA==} + /@babel/standalone@7.22.10: + resolution: {integrity: sha512-VmK2sWxUTfDDh9mPfCtFJPIehZToteqK+Zpwq8oJUjJ+WeeKIFTTQIrDzH7jEdom+cAaaguU7FI/FBsBWFkIeQ==} engines: {node: '>=6.9.0'} dev: true - /@babel/template@7.20.7: - resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} + /@babel/template@7.22.5: + resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.21.4 - '@babel/parser': 7.21.4 - '@babel/types': 7.21.4 + '@babel/code-frame': 7.22.10 + '@babel/parser': 7.22.10 + '@babel/types': 7.22.10 dev: true - /@babel/traverse@7.21.4: - resolution: {integrity: sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==} + /@babel/traverse@7.22.10: + resolution: {integrity: sha512-Q/urqV4pRByiNNpb/f5OSv28ZlGJiFiiTh+GAHktbIrkPhPbl90+uW6SmpoLyZqutrg9AEaEf3Q/ZBRHBXgxig==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.21.4 - '@babel/generator': 7.21.4 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.21.0 - '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.21.4 - '@babel/types': 7.21.4 + '@babel/code-frame': 7.22.10 + '@babel/generator': 7.22.10 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-function-name': 7.22.5 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/parser': 7.22.10 + '@babel/types': 7.22.10 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: true - /@babel/types@7.21.4: - resolution: {integrity: sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA==} + /@babel/types@7.22.10: + resolution: {integrity: sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-string-parser': 7.19.4 - '@babel/helper-validator-identifier': 7.19.1 + '@babel/helper-string-parser': 7.22.5 + '@babel/helper-validator-identifier': 7.22.5 to-fast-properties: 2.0.0 dev: true @@ -249,8 +247,17 @@ packages: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true - /@esbuild/android-arm64@0.17.17: - resolution: {integrity: sha512-jaJ5IlmaDLFPNttv0ofcwy/cfeY4bh/n705Tgh+eLObbGtQBK3EPAu+CzL95JVE4nFAliyrnEu0d32Q5foavqg==} + /@esbuild/android-arm64@0.17.19: + resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm64@0.18.20: + resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} engines: {node: '>=12'} cpu: [arm64] os: [android] @@ -258,8 +265,17 @@ packages: dev: true optional: true - /@esbuild/android-arm@0.17.17: - resolution: {integrity: sha512-E6VAZwN7diCa3labs0GYvhEPL2M94WLF8A+czO8hfjREXxba8Ng7nM5VxV+9ihNXIY1iQO1XxUU4P7hbqbICxg==} + /@esbuild/android-arm@0.17.19: + resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm@0.18.20: + resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} engines: {node: '>=12'} cpu: [arm] os: [android] @@ -267,8 +283,8 @@ packages: dev: true optional: true - /@esbuild/android-x64@0.17.17: - resolution: {integrity: sha512-446zpfJ3nioMC7ASvJB1pszHVskkw4u/9Eu8s5yvvsSDTzYh4p4ZIRj0DznSl3FBF0Z/mZfrKXTtt0QCoFmoHA==} + /@esbuild/android-x64@0.17.19: + resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==} engines: {node: '>=12'} cpu: [x64] os: [android] @@ -276,8 +292,26 @@ packages: dev: true optional: true - /@esbuild/darwin-arm64@0.17.17: - resolution: {integrity: sha512-m/gwyiBwH3jqfUabtq3GH31otL/0sE0l34XKpSIqR7NjQ/XHQ3lpmQHLHbG8AHTGCw8Ao059GvV08MS0bhFIJQ==} + /@esbuild/android-x64@0.18.20: + resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-arm64@0.17.19: + resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-arm64@0.18.20: + resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] @@ -285,8 +319,8 @@ packages: dev: true optional: true - /@esbuild/darwin-x64@0.17.17: - resolution: {integrity: sha512-4utIrsX9IykrqYaXR8ob9Ha2hAY2qLc6ohJ8c0CN1DR8yWeMrTgYFjgdeQ9LIoTOfLetXjuCu5TRPHT9yKYJVg==} + /@esbuild/darwin-x64@0.17.19: + resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==} engines: {node: '>=12'} cpu: [x64] os: [darwin] @@ -294,8 +328,17 @@ packages: dev: true optional: true - /@esbuild/freebsd-arm64@0.17.17: - resolution: {integrity: sha512-4PxjQII/9ppOrpEwzQ1b0pXCsFLqy77i0GaHodrmzH9zq2/NEhHMAMJkJ635Ns4fyJPFOlHMz4AsklIyRqFZWA==} + /@esbuild/darwin-x64@0.18.20: + resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-arm64@0.17.19: + resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] @@ -303,8 +346,17 @@ packages: dev: true optional: true - /@esbuild/freebsd-x64@0.17.17: - resolution: {integrity: sha512-lQRS+4sW5S3P1sv0z2Ym807qMDfkmdhUYX30GRBURtLTrJOPDpoU0kI6pVz1hz3U0+YQ0tXGS9YWveQjUewAJw==} + /@esbuild/freebsd-arm64@0.18.20: + resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-x64@0.17.19: + resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] @@ -312,8 +364,26 @@ packages: dev: true optional: true - /@esbuild/linux-arm64@0.17.17: - resolution: {integrity: sha512-2+pwLx0whKY1/Vqt8lyzStyda1v0qjJ5INWIe+d8+1onqQxHLLi3yr5bAa4gvbzhZqBztifYEu8hh1La5+7sUw==} + /@esbuild/freebsd-x64@0.18.20: + resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm64@0.17.19: + resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm64@0.18.20: + resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} engines: {node: '>=12'} cpu: [arm64] os: [linux] @@ -321,8 +391,8 @@ packages: dev: true optional: true - /@esbuild/linux-arm@0.17.17: - resolution: {integrity: sha512-biDs7bjGdOdcmIk6xU426VgdRUpGg39Yz6sT9Xp23aq+IEHDb/u5cbmu/pAANpDB4rZpY/2USPhCA+w9t3roQg==} + /@esbuild/linux-arm@0.17.19: + resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==} engines: {node: '>=12'} cpu: [arm] os: [linux] @@ -330,8 +400,17 @@ packages: dev: true optional: true - /@esbuild/linux-ia32@0.17.17: - resolution: {integrity: sha512-IBTTv8X60dYo6P2t23sSUYym8fGfMAiuv7PzJ+0LcdAndZRzvke+wTVxJeCq4WgjppkOpndL04gMZIFvwoU34Q==} + /@esbuild/linux-arm@0.18.20: + resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ia32@0.17.19: + resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==} engines: {node: '>=12'} cpu: [ia32] os: [linux] @@ -339,8 +418,26 @@ packages: dev: true optional: true - /@esbuild/linux-loong64@0.17.17: - resolution: {integrity: sha512-WVMBtcDpATjaGfWfp6u9dANIqmU9r37SY8wgAivuKmgKHE+bWSuv0qXEFt/p3qXQYxJIGXQQv6hHcm7iWhWjiw==} + /@esbuild/linux-ia32@0.18.20: + resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-loong64@0.17.19: + resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-loong64@0.18.20: + resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} engines: {node: '>=12'} cpu: [loong64] os: [linux] @@ -348,8 +445,17 @@ packages: dev: true optional: true - /@esbuild/linux-mips64el@0.17.17: - resolution: {integrity: sha512-2kYCGh8589ZYnY031FgMLy0kmE4VoGdvfJkxLdxP4HJvWNXpyLhjOvxVsYjYZ6awqY4bgLR9tpdYyStgZZhi2A==} + /@esbuild/linux-mips64el@0.17.19: + resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-mips64el@0.18.20: + resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] @@ -357,8 +463,8 @@ packages: dev: true optional: true - /@esbuild/linux-ppc64@0.17.17: - resolution: {integrity: sha512-KIdG5jdAEeAKogfyMTcszRxy3OPbZhq0PPsW4iKKcdlbk3YE4miKznxV2YOSmiK/hfOZ+lqHri3v8eecT2ATwQ==} + /@esbuild/linux-ppc64@0.17.19: + resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] @@ -366,8 +472,17 @@ packages: dev: true optional: true - /@esbuild/linux-riscv64@0.17.17: - resolution: {integrity: sha512-Cj6uWLBR5LWhcD/2Lkfg2NrkVsNb2sFM5aVEfumKB2vYetkA/9Uyc1jVoxLZ0a38sUhFk4JOVKH0aVdPbjZQeA==} + /@esbuild/linux-ppc64@0.18.20: + resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-riscv64@0.17.19: + resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] @@ -375,8 +490,17 @@ packages: dev: true optional: true - /@esbuild/linux-s390x@0.17.17: - resolution: {integrity: sha512-lK+SffWIr0XsFf7E0srBjhpkdFVJf3HEgXCwzkm69kNbRar8MhezFpkIwpk0qo2IOQL4JE4mJPJI8AbRPLbuOQ==} + /@esbuild/linux-riscv64@0.18.20: + resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-s390x@0.17.19: + resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==} engines: {node: '>=12'} cpu: [s390x] os: [linux] @@ -384,8 +508,26 @@ packages: dev: true optional: true - /@esbuild/linux-x64@0.17.17: - resolution: {integrity: sha512-XcSGTQcWFQS2jx3lZtQi7cQmDYLrpLRyz1Ns1DzZCtn898cWfm5Icx/DEWNcTU+T+tyPV89RQtDnI7qL2PObPg==} + /@esbuild/linux-s390x@0.18.20: + resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-x64@0.17.19: + resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-x64@0.18.20: + resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} engines: {node: '>=12'} cpu: [x64] os: [linux] @@ -393,8 +535,8 @@ packages: dev: true optional: true - /@esbuild/netbsd-x64@0.17.17: - resolution: {integrity: sha512-RNLCDmLP5kCWAJR+ItLM3cHxzXRTe4N00TQyQiimq+lyqVqZWGPAvcyfUBM0isE79eEZhIuGN09rAz8EL5KdLA==} + /@esbuild/netbsd-x64@0.17.19: + resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] @@ -402,8 +544,26 @@ packages: dev: true optional: true - /@esbuild/openbsd-x64@0.17.17: - resolution: {integrity: sha512-PAXswI5+cQq3Pann7FNdcpSUrhrql3wKjj3gVkmuz6OHhqqYxKvi6GgRBoaHjaG22HV/ZZEgF9TlS+9ftHVigA==} + /@esbuild/netbsd-x64@0.18.20: + resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/openbsd-x64@0.17.19: + resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/openbsd-x64@0.18.20: + resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] @@ -411,8 +571,8 @@ packages: dev: true optional: true - /@esbuild/sunos-x64@0.17.17: - resolution: {integrity: sha512-V63egsWKnx/4V0FMYkr9NXWrKTB5qFftKGKuZKFIrAkO/7EWLFnbBZNM1CvJ6Sis+XBdPws2YQSHF1Gqf1oj/Q==} + /@esbuild/sunos-x64@0.17.19: + resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==} engines: {node: '>=12'} cpu: [x64] os: [sunos] @@ -420,8 +580,26 @@ packages: dev: true optional: true - /@esbuild/win32-arm64@0.17.17: - resolution: {integrity: sha512-YtUXLdVnd6YBSYlZODjWzH+KzbaubV0YVd6UxSfoFfa5PtNJNaW+1i+Hcmjpg2nEe0YXUCNF5bkKy1NnBv1y7Q==} + /@esbuild/sunos-x64@0.18.20: + resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-arm64@0.17.19: + resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-arm64@0.18.20: + resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} engines: {node: '>=12'} cpu: [arm64] os: [win32] @@ -429,8 +607,8 @@ packages: dev: true optional: true - /@esbuild/win32-ia32@0.17.17: - resolution: {integrity: sha512-yczSLRbDdReCO74Yfc5tKG0izzm+lPMYyO1fFTcn0QNwnKmc3K+HdxZWLGKg4pZVte7XVgcFku7TIZNbWEJdeQ==} + /@esbuild/win32-ia32@0.17.19: + resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==} engines: {node: '>=12'} cpu: [ia32] os: [win32] @@ -438,8 +616,26 @@ packages: dev: true optional: true - /@esbuild/win32-x64@0.17.17: - resolution: {integrity: sha512-FNZw7H3aqhF9OyRQbDDnzUApDXfC1N6fgBhkqEO2jvYCJ+DxMTfZVqg3AX0R1khg1wHTBRD5SdcibSJ+XF6bFg==} + /@esbuild/win32-ia32@0.18.20: + resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-x64@0.17.19: + resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-x64@0.18.20: + resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} engines: {node: '>=12'} cpu: [x64] os: [win32] @@ -447,28 +643,28 @@ packages: dev: true optional: true - /@eslint-community/eslint-utils@4.4.0(eslint@8.39.0): + /@eslint-community/eslint-utils@4.4.0(eslint@8.46.0): resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: - eslint: 8.39.0 - eslint-visitor-keys: 3.4.0 + eslint: 8.46.0 + eslint-visitor-keys: 3.4.2 dev: true - /@eslint-community/regexpp@4.5.0: - resolution: {integrity: sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ==} + /@eslint-community/regexpp@4.6.2: + resolution: {integrity: sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} dev: true - /@eslint/eslintrc@2.0.2: - resolution: {integrity: sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==} + /@eslint/eslintrc@2.1.1: + resolution: {integrity: sha512-9t7ZA7NGGK8ckelF0PQCfcxIUzs1Md5rrO6U/c+FIQNanea5UZC0wqKXH4vHBccmu4ZJgZ2idtPeW7+Q2npOEA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 debug: 4.3.4 - espree: 9.5.1 + espree: 9.6.1 globals: 13.20.0 ignore: 5.2.4 import-fresh: 3.3.0 @@ -479,13 +675,13 @@ packages: - supports-color dev: true - /@eslint/js@8.39.0: - resolution: {integrity: sha512-kf9RB0Fg7NZfap83B3QOqOGg9QmD9yBudqQXzzOtn3i4y7ZUXe5ONeW34Gwi+TxhH4mvj72R1Zc300KUMa9Bng==} + /@eslint/js@8.46.0: + resolution: {integrity: sha512-a8TLtmPi8xzPkCbp/OGFUo5yhRkHM2Ko9kOWP4znJr0WAhWyThaw3PnwX4vOTWOAMsV2uRt32PPDcEz63esSaA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@humanwhocodes/config-array@0.11.8: - resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==} + /@humanwhocodes/config-array@0.11.10: + resolution: {integrity: sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==} engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 1.2.1 @@ -509,17 +705,24 @@ packages: engines: {node: '>=8'} dev: true + /@jest/schemas@29.6.0: + resolution: {integrity: sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@sinclair/typebox': 0.27.8 + dev: true + /@jridgewell/gen-mapping@0.3.3: resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} engines: {node: '>=6.0.0'} dependencies: '@jridgewell/set-array': 1.1.2 '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping': 0.3.18 + '@jridgewell/trace-mapping': 0.3.19 dev: true - /@jridgewell/resolve-uri@3.1.0: - resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} + /@jridgewell/resolve-uri@3.1.1: + resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} engines: {node: '>=6.0.0'} dev: true @@ -528,19 +731,15 @@ packages: engines: {node: '>=6.0.0'} dev: true - /@jridgewell/sourcemap-codec@1.4.14: - resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} - dev: true - /@jridgewell/sourcemap-codec@1.4.15: resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} dev: true - /@jridgewell/trace-mapping@0.3.18: - resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==} + /@jridgewell/trace-mapping@0.3.19: + resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==} dependencies: - '@jridgewell/resolve-uri': 3.1.0 - '@jridgewell/sourcemap-codec': 1.4.14 + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 dev: true /@nodelib/fs.scandir@2.1.5: @@ -564,19 +763,7 @@ packages: fastq: 1.15.0 dev: true - /@pkgr/utils@2.3.1: - resolution: {integrity: sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==} - engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} - dependencies: - cross-spawn: 7.0.3 - is-glob: 4.0.3 - open: 8.4.2 - picocolors: 1.0.0 - tiny-glob: 0.2.9 - tslib: 2.5.0 - dev: true - - /@rollup/plugin-alias@5.0.0(rollup@3.20.6): + /@rollup/plugin-alias@5.0.0(rollup@3.28.0): resolution: {integrity: sha512-l9hY5chSCjuFRPsnRm16twWBiSApl2uYFLsepQYwtBuAxNMQ/1dJqADld40P0Jkqm65GRTLy/AC6hnpVebtLsA==} engines: {node: '>=14.0.0'} peerDependencies: @@ -585,11 +772,11 @@ packages: rollup: optional: true dependencies: - rollup: 3.20.6 + rollup: 3.28.0 slash: 4.0.0 dev: true - /@rollup/plugin-commonjs@24.1.0(rollup@3.20.6): + /@rollup/plugin-commonjs@24.1.0(rollup@3.28.0): resolution: {integrity: sha512-eSL45hjhCWI0jCCXcNtLVqM5N1JlBGvlFfY0m6oOYnLCJ6N0qEXoZql4sY2MOUArzhH4SA/qBpTxvvZp2Sc+DQ==} engines: {node: '>=14.0.0'} peerDependencies: @@ -598,16 +785,16 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.0.2(rollup@3.20.6) + '@rollup/pluginutils': 5.0.2(rollup@3.28.0) commondir: 1.0.1 estree-walker: 2.0.2 glob: 8.1.0 is-reference: 1.2.1 magic-string: 0.27.0 - rollup: 3.20.6 + rollup: 3.28.0 dev: true - /@rollup/plugin-json@6.0.0(rollup@3.20.6): + /@rollup/plugin-json@6.0.0(rollup@3.28.0): resolution: {integrity: sha512-i/4C5Jrdr1XUarRhVu27EEwjt4GObltD7c+MkCIpO2QIbojw8MUs+CCTqOphQi3Qtg1FLmYt+l+6YeoIf51J7w==} engines: {node: '>=14.0.0'} peerDependencies: @@ -616,12 +803,12 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.0.2(rollup@3.20.6) - rollup: 3.20.6 + '@rollup/pluginutils': 5.0.2(rollup@3.28.0) + rollup: 3.28.0 dev: true - /@rollup/plugin-node-resolve@15.0.2(rollup@3.20.6): - resolution: {integrity: sha512-Y35fRGUjC3FaurG722uhUuG8YHOJRJQbI6/CkbRkdPotSpDj9NtIN85z1zrcyDcCQIW4qp5mgG72U+gJ0TAFEg==} + /@rollup/plugin-node-resolve@15.1.0(rollup@3.28.0): + resolution: {integrity: sha512-xeZHCgsiZ9pzYVgAo9580eCGqwh/XCEUM9q6iQfGNocjgkufHAqC3exA+45URvhiYV8sBF9RlBai650eNs7AsA==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^2.78.0||^3.0.0 @@ -629,16 +816,16 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.0.2(rollup@3.20.6) + '@rollup/pluginutils': 5.0.2(rollup@3.28.0) '@types/resolve': 1.20.2 deepmerge: 4.3.1 is-builtin-module: 3.2.1 is-module: 1.0.0 - resolve: 1.22.2 - rollup: 3.20.6 + resolve: 1.22.4 + rollup: 3.28.0 dev: true - /@rollup/plugin-replace@5.0.2(rollup@3.20.6): + /@rollup/plugin-replace@5.0.2(rollup@3.28.0): resolution: {integrity: sha512-M9YXNekv/C/iHHK+cvORzfRYfPbq0RDD8r0G+bMiTXjNGKulPnCT9O3Ss46WfhI6ZOCgApOP7xAdmCQJ+U2LAA==} engines: {node: '>=14.0.0'} peerDependencies: @@ -647,12 +834,12 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.0.2(rollup@3.20.6) + '@rollup/pluginutils': 5.0.2(rollup@3.28.0) magic-string: 0.27.0 - rollup: 3.20.6 + rollup: 3.28.0 dev: true - /@rollup/pluginutils@5.0.2(rollup@3.20.6): + /@rollup/pluginutils@5.0.2(rollup@3.28.0): resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==} engines: {node: '>=14.0.0'} peerDependencies: @@ -664,17 +851,21 @@ packages: '@types/estree': 1.0.1 estree-walker: 2.0.2 picomatch: 2.3.1 - rollup: 3.20.6 + rollup: 3.28.0 + dev: true + + /@sinclair/typebox@0.27.8: + resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} dev: true /@types/chai-subset@1.3.3: resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==} dependencies: - '@types/chai': 4.3.4 + '@types/chai': 4.3.5 dev: true - /@types/chai@4.3.4: - resolution: {integrity: sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==} + /@types/chai@4.3.5: + resolution: {integrity: sha512-mEo1sAde+UCE6b2hxn332f1g1E8WfYRu6p5SvTKr2ZKC1f7gFJXk4h5PyGP9Dt6gCaG8y8XhwnXWC6Iy2cmBng==} dev: true /@types/estree@1.0.1: @@ -685,16 +876,16 @@ packages: resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} dev: true - /@types/json-schema@7.0.11: - resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} + /@types/json-schema@7.0.12: + resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==} dev: true /@types/json5@0.0.29: resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} dev: true - /@types/node@18.15.13: - resolution: {integrity: sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==} + /@types/node@20.4.9: + resolution: {integrity: sha512-8e2HYcg7ohnTUbHk8focoklEQYvemQmu9M/f43DZVx43kHn0tE3BY/6gSDxS7k0SprtS0NHvj+L80cGLnoOUcQ==} dev: true /@types/normalize-package-data@2.4.1: @@ -705,12 +896,12 @@ packages: resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} dev: true - /@types/semver@7.3.13: - resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==} + /@types/semver@7.5.0: + resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==} dev: true - /@typescript-eslint/eslint-plugin@5.59.0(@typescript-eslint/parser@5.59.0)(eslint@8.39.0)(typescript@5.0.4): - resolution: {integrity: sha512-p0QgrEyrxAWBecR56gyn3wkG15TJdI//eetInP3zYRewDh0XS+DhB3VUAd3QqvziFsfaQIoIuZMxZRB7vXYaYw==} + /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.46.0)(typescript@5.1.6): + resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -720,25 +911,25 @@ packages: typescript: optional: true dependencies: - '@eslint-community/regexpp': 4.5.0 - '@typescript-eslint/parser': 5.59.0(eslint@8.39.0)(typescript@5.0.4) - '@typescript-eslint/scope-manager': 5.59.0 - '@typescript-eslint/type-utils': 5.59.0(eslint@8.39.0)(typescript@5.0.4) - '@typescript-eslint/utils': 5.59.0(eslint@8.39.0)(typescript@5.0.4) + '@eslint-community/regexpp': 4.6.2 + '@typescript-eslint/parser': 5.62.0(eslint@8.46.0)(typescript@5.1.6) + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/type-utils': 5.62.0(eslint@8.46.0)(typescript@5.1.6) + '@typescript-eslint/utils': 5.62.0(eslint@8.46.0)(typescript@5.1.6) debug: 4.3.4 - eslint: 8.39.0 - grapheme-splitter: 1.0.4 + eslint: 8.46.0 + graphemer: 1.4.0 ignore: 5.2.4 natural-compare-lite: 1.4.0 - semver: 7.5.0 - tsutils: 3.21.0(typescript@5.0.4) - typescript: 5.0.4 + semver: 7.5.4 + tsutils: 3.21.0(typescript@5.1.6) + typescript: 5.1.6 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser@5.59.0(eslint@8.39.0)(typescript@5.0.4): - resolution: {integrity: sha512-qK9TZ70eJtjojSUMrrEwA9ZDQ4N0e/AuoOIgXuNBorXYcBDk397D2r5MIe1B3cok/oCtdNC5j+lUUpVB+Dpb+w==} + /@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6): + resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -747,26 +938,26 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.59.0 - '@typescript-eslint/types': 5.59.0 - '@typescript-eslint/typescript-estree': 5.59.0(typescript@5.0.4) + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6) debug: 4.3.4 - eslint: 8.39.0 - typescript: 5.0.4 + eslint: 8.46.0 + typescript: 5.1.6 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager@5.59.0: - resolution: {integrity: sha512-tsoldKaMh7izN6BvkK6zRMINj4Z2d6gGhO2UsI8zGZY3XhLq1DndP3Ycjhi1JwdwPRwtLMW4EFPgpuKhbCGOvQ==} + /@typescript-eslint/scope-manager@5.62.0: + resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.59.0 - '@typescript-eslint/visitor-keys': 5.59.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 dev: true - /@typescript-eslint/type-utils@5.59.0(eslint@8.39.0)(typescript@5.0.4): - resolution: {integrity: sha512-d/B6VSWnZwu70kcKQSCqjcXpVH+7ABKH8P1KNn4K7j5PXXuycZTPXF44Nui0TEm6rbWGi8kc78xRgOC4n7xFgA==} + /@typescript-eslint/type-utils@5.62.0(eslint@8.46.0)(typescript@5.1.6): + resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -775,23 +966,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 5.59.0(typescript@5.0.4) - '@typescript-eslint/utils': 5.59.0(eslint@8.39.0)(typescript@5.0.4) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6) + '@typescript-eslint/utils': 5.62.0(eslint@8.46.0)(typescript@5.1.6) debug: 4.3.4 - eslint: 8.39.0 - tsutils: 3.21.0(typescript@5.0.4) - typescript: 5.0.4 + eslint: 8.46.0 + tsutils: 3.21.0(typescript@5.1.6) + typescript: 5.1.6 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types@5.59.0: - resolution: {integrity: sha512-yR2h1NotF23xFFYKHZs17QJnB51J/s+ud4PYU4MqdZbzeNxpgUr05+dNeCN/bb6raslHvGdd6BFCkVhpPk/ZeA==} + /@typescript-eslint/types@5.62.0: + resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree@5.59.0(typescript@5.0.4): - resolution: {integrity: sha512-sUNnktjmI8DyGzPdZ8dRwW741zopGxltGs/SAPgGL/AAgDpiLsCFLcMNSpbfXfmnNeHmK9h3wGmCkGRGAoUZAg==} + /@typescript-eslint/typescript-estree@5.62.0(typescript@5.1.6): + resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -799,102 +990,111 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.59.0 - '@typescript-eslint/visitor-keys': 5.59.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.5.0 - tsutils: 3.21.0(typescript@5.0.4) - typescript: 5.0.4 + semver: 7.5.4 + tsutils: 3.21.0(typescript@5.1.6) + typescript: 5.1.6 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils@5.59.0(eslint@8.39.0)(typescript@5.0.4): - resolution: {integrity: sha512-GGLFd+86drlHSvPgN/el6dRQNYYGOvRSDVydsUaQluwIW3HvbXuxyuD5JETvBt/9qGYe+lOrDk6gRrWOHb/FvA==} + /@typescript-eslint/utils@5.62.0(eslint@8.46.0)(typescript@5.1.6): + resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.39.0) - '@types/json-schema': 7.0.11 - '@types/semver': 7.3.13 - '@typescript-eslint/scope-manager': 5.59.0 - '@typescript-eslint/types': 5.59.0 - '@typescript-eslint/typescript-estree': 5.59.0(typescript@5.0.4) - eslint: 8.39.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.46.0) + '@types/json-schema': 7.0.12 + '@types/semver': 7.5.0 + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6) + eslint: 8.46.0 eslint-scope: 5.1.1 - semver: 7.5.0 + semver: 7.5.4 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/visitor-keys@5.59.0: - resolution: {integrity: sha512-qZ3iXxQhanchCeaExlKPV3gDQFxMUmU35xfd5eCXB6+kUw1TUAbIy2n7QIrwz9s98DQLzNWyHp61fY0da4ZcbA==} + /@typescript-eslint/visitor-keys@5.62.0: + resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.59.0 - eslint-visitor-keys: 3.4.0 + '@typescript-eslint/types': 5.62.0 + eslint-visitor-keys: 3.4.2 dev: true - /@vitest/coverage-c8@0.30.1(vitest@0.30.1): - resolution: {integrity: sha512-/Wa3dtSuckpdngAmiCwowaEXXgJkqPrtfvrs9HTB9QoEfNbZWPu4E4cjEn4lJZb4qcGf4fxFtUA2f9DnDNAzBA==} + /@vitest/coverage-v8@0.34.1(vitest@0.34.1): + resolution: {integrity: sha512-lRgUwjTMr8idXEbUPSNH4jjRZJXJCVY3BqUa+LDXyJVe3pldxYMn/r0HMqatKUGTp0Kyf1j5LfFoY6kRqRp7jw==} peerDependencies: - vitest: '>=0.30.0 <1' + vitest: '>=0.32.0 <1' dependencies: - c8: 7.13.0 + '@ampproject/remapping': 2.2.1 + '@bcoe/v8-coverage': 0.2.3 + istanbul-lib-coverage: 3.2.0 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 4.0.1 + istanbul-reports: 3.1.6 + magic-string: 0.30.2 picocolors: 1.0.0 - std-env: 3.3.2 - vitest: 0.30.1 + std-env: 3.3.3 + test-exclude: 6.0.0 + v8-to-istanbul: 9.1.0 + vitest: 0.34.1 + transitivePeerDependencies: + - supports-color dev: true - /@vitest/expect@0.30.1: - resolution: {integrity: sha512-c3kbEtN8XXJSeN81iDGq29bUzSjQhjES2WR3aColsS4lPGbivwLtas4DNUe0jD9gg/FYGIteqOenfU95EFituw==} + /@vitest/expect@0.34.1: + resolution: {integrity: sha512-q2CD8+XIsQ+tHwypnoCk8Mnv5e6afLFvinVGCq3/BOT4kQdVQmY6rRfyKkwcg635lbliLPqbunXZr+L1ssUWiQ==} dependencies: - '@vitest/spy': 0.30.1 - '@vitest/utils': 0.30.1 + '@vitest/spy': 0.34.1 + '@vitest/utils': 0.34.1 chai: 4.3.7 dev: true - /@vitest/runner@0.30.1: - resolution: {integrity: sha512-W62kT/8i0TF1UBCNMRtRMOBWJKRnNyv9RrjIgdUryEe0wNpGZvvwPDLuzYdxvgSckzjp54DSpv1xUbv4BQ0qVA==} + /@vitest/runner@0.34.1: + resolution: {integrity: sha512-YfQMpYzDsYB7yqgmlxZ06NI4LurHWfrH7Wy3Pvf/z/vwUSgq1zLAb1lWcItCzQG+NVox+VvzlKQrYEXb47645g==} dependencies: - '@vitest/utils': 0.30.1 - concordance: 5.0.4 + '@vitest/utils': 0.34.1 p-limit: 4.0.0 - pathe: 1.1.0 + pathe: 1.1.1 dev: true - /@vitest/snapshot@0.30.1: - resolution: {integrity: sha512-fJZqKrE99zo27uoZA/azgWyWbFvM1rw2APS05yB0JaLwUIg9aUtvvnBf4q7JWhEcAHmSwbrxKFgyBUga6tq9Tw==} + /@vitest/snapshot@0.34.1: + resolution: {integrity: sha512-0O9LfLU0114OqdF8lENlrLsnn024Tb1CsS9UwG0YMWY2oGTQfPtkW+B/7ieyv0X9R2Oijhi3caB1xgGgEgclSQ==} dependencies: - magic-string: 0.30.0 - pathe: 1.1.0 - pretty-format: 27.5.1 + magic-string: 0.30.2 + pathe: 1.1.1 + pretty-format: 29.6.2 dev: true - /@vitest/spy@0.30.1: - resolution: {integrity: sha512-YfJeIf37GvTZe04ZKxzJfnNNuNSmTEGnla2OdL60C8od16f3zOfv9q9K0nNii0NfjDJRt/CVN/POuY5/zTS+BA==} + /@vitest/spy@0.34.1: + resolution: {integrity: sha512-UT4WcI3EAPUNO8n6y9QoEqynGGEPmmRxC+cLzneFFXpmacivjHZsNbiKD88KUScv5DCHVDgdBsLD7O7s1enFcQ==} dependencies: - tinyspy: 2.1.0 + tinyspy: 2.1.1 dev: true - /@vitest/utils@0.30.1: - resolution: {integrity: sha512-/c8Xv2zUVc+rnNt84QF0Y0zkfxnaGhp87K2dYJMLtLOIckPzuxLVzAtFCicGFdB4NeBHNzTRr1tNn7rCtQcWFA==} + /@vitest/utils@0.34.1: + resolution: {integrity: sha512-/ql9dsFi4iuEbiNcjNHQWXBum7aL8pyhxvfnD9gNtbjR9fUKAjxhj4AA3yfLXg6gJpMGGecvtF8Au2G9y3q47Q==} dependencies: - concordance: 5.0.4 + diff-sequences: 29.4.3 loupe: 2.3.6 - pretty-format: 27.5.1 + pretty-format: 29.6.2 dev: true - /acorn-jsx@5.3.2(acorn@8.8.2): + /acorn-jsx@5.3.2(acorn@8.10.0): resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - acorn: 8.8.2 + acorn: 8.10.0 dev: true /acorn-walk@8.2.0: @@ -902,8 +1102,8 @@ packages: engines: {node: '>=0.4.0'} dev: true - /acorn@8.8.2: - resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} + /acorn@8.10.0: + resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} engines: {node: '>=0.4.0'} hasBin: true dev: true @@ -950,6 +1150,14 @@ packages: engines: {node: '>=10'} dev: true + /anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + dev: true + /argparse@2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} dev: true @@ -967,8 +1175,8 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.2.0 - es-abstract: 1.21.2 - get-intrinsic: 1.2.0 + es-abstract: 1.22.1 + get-intrinsic: 1.2.1 is-string: 1.0.7 dev: true @@ -977,13 +1185,24 @@ packages: engines: {node: '>=8'} dev: true + /array.prototype.findlastindex@1.2.2: + resolution: {integrity: sha512-tb5thFFlUcp7NdNF6/MpDk/1r/4awWG1FIz3YqDf+/zJSTezBb+/5WViH41obXULHVpDzoiCLpJ/ZO9YbJMsdw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.22.1 + es-shim-unscopables: 1.0.0 + get-intrinsic: 1.2.1 + dev: true + /array.prototype.flat@1.3.1: resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.0 - es-abstract: 1.21.2 + es-abstract: 1.22.1 es-shim-unscopables: 1.0.0 dev: true @@ -993,10 +1212,22 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.2.0 - es-abstract: 1.21.2 + es-abstract: 1.22.1 es-shim-unscopables: 1.0.0 dev: true + /arraybuffer.prototype.slice@1.0.1: + resolution: {integrity: sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==} + engines: {node: '>= 0.4'} + dependencies: + array-buffer-byte-length: 1.0.0 + call-bind: 1.0.2 + define-properties: 1.2.0 + get-intrinsic: 1.2.1 + is-array-buffer: 3.0.2 + is-shared-array-buffer: 1.0.2 + dev: true + /assertion-error@1.1.0: resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} dev: true @@ -1022,8 +1253,9 @@ packages: engines: {node: '>=0.6'} dev: true - /blueimp-md5@2.19.0: - resolution: {integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==} + /binary-extensions@2.2.0: + resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} + engines: {node: '>=8'} dev: true /bplist-parser@0.2.0: @@ -1053,15 +1285,15 @@ packages: fill-range: 7.0.1 dev: true - /browserslist@4.21.5: - resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==} + /browserslist@4.21.10: + resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001480 - electron-to-chromium: 1.4.368 - node-releases: 2.0.10 - update-browserslist-db: 1.0.11(browserslist@4.21.5) + caniuse-lite: 1.0.30001519 + electron-to-chromium: 1.4.490 + node-releases: 2.0.13 + update-browserslist-db: 1.0.11(browserslist@4.21.10) dev: true /builtin-modules@3.3.0: @@ -1072,7 +1304,7 @@ packages: /builtins@5.0.1: resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} dependencies: - semver: 7.5.0 + semver: 7.5.4 dev: true /bundle-name@3.0.0: @@ -1082,40 +1314,24 @@ packages: run-applescript: 5.0.0 dev: true - /c12@1.3.0: - resolution: {integrity: sha512-cYdnZn0y803ByEYHK7+gKmcQK9cqLuGciL3lOwOJnOMAEd9y4604OYAEVK385NkMcgGYltZhLW7eddJrWsFrkg==} + /c12@1.4.2: + resolution: {integrity: sha512-3IP/MuamSVRVw8W8+CHWAz9gKN4gd+voF2zm/Ln6D25C2RhytEZ1ABbC8MjKr4BR9rhoV1JQ7jJA158LDiTkLg==} dependencies: + chokidar: 3.5.3 defu: 6.1.2 - dotenv: 16.0.3 + dotenv: 16.3.1 giget: 1.1.2 - jiti: 1.18.2 - mlly: 1.2.0 - pathe: 1.1.0 - pkg-types: 1.0.2 - rc9: 2.1.0 + jiti: 1.19.1 + mlly: 1.4.0 + ohash: 1.1.2 + pathe: 1.1.1 + perfect-debounce: 1.0.0 + pkg-types: 1.0.3 + rc9: 2.1.1 transitivePeerDependencies: - supports-color dev: true - /c8@7.13.0: - resolution: {integrity: sha512-/NL4hQTv1gBL6J6ei80zu3IiTrmePDKXKXOTLpHvcIWZTVYQlDhVWjjWvkhICylE8EwwnMVzDZugCvdx0/DIIA==} - engines: {node: '>=10.12.0'} - hasBin: true - dependencies: - '@bcoe/v8-coverage': 0.2.3 - '@istanbuljs/schema': 0.1.3 - find-up: 5.0.0 - foreground-child: 2.0.0 - istanbul-lib-coverage: 3.2.0 - istanbul-lib-report: 3.0.0 - istanbul-reports: 3.1.5 - rimraf: 3.0.2 - test-exclude: 6.0.0 - v8-to-istanbul: 9.1.0 - yargs: 16.2.0 - yargs-parser: 20.2.9 - dev: true - /cac@6.7.14: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} @@ -1125,7 +1341,7 @@ packages: resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} dependencies: function-bind: 1.1.1 - get-intrinsic: 1.2.0 + get-intrinsic: 1.2.1 dev: true /callsites@3.1.0: @@ -1133,8 +1349,8 @@ packages: engines: {node: '>=6'} dev: true - /caniuse-lite@1.0.30001480: - resolution: {integrity: sha512-q7cpoPPvZYgtyC4VaBSN0Bt+PJ4c4EYRf0DrduInOz2SkFpHD5p3LnvEpqBp7UnJn+8x1Ogl1s38saUxe+ihQQ==} + /caniuse-lite@1.0.30001519: + resolution: {integrity: sha512-0QHgqR+Jv4bxHMp8kZ1Kn8CH55OikjKJ6JmKkZYP1F3D7w+lnFXF70nG5eNfsZS89jadi5Ywy5UCSKLAglIRkg==} dev: true /chai@4.3.7: @@ -1167,29 +1383,30 @@ packages: supports-color: 7.2.0 dev: true - /chalk@5.2.0: - resolution: {integrity: sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==} + /chalk@5.3.0: + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} dev: true - /changelogen@0.5.3: - resolution: {integrity: sha512-RjTrgJlTHhbGlMo/s73j7uSTspla3ykr0UA5zwRs/HIZvElY6qZHu3X70httgC2Du5poS2wFCS10WLfwZr7ZTQ==} + /changelogen@0.5.4: + resolution: {integrity: sha512-ady7TjLW3ZKMWzVF8MG3vJRqLVctNTGIZnO5XoFbMbcC59BVNTZXNXL8tovB+OK6DHLk4NeTHUWzdwMaKmFyUA==} hasBin: true dependencies: - c12: 1.3.0 + c12: 1.4.2 colorette: 2.0.20 - consola: 3.1.0 + consola: 3.2.3 convert-gitmoji: 0.1.3 - execa: 7.1.1 + execa: 7.2.0 mri: 1.2.0 - node-fetch-native: 1.1.0 - ofetch: 1.0.1 + node-fetch-native: 1.2.0 + ofetch: 1.1.1 open: 9.1.0 - pathe: 1.1.0 - pkg-types: 1.0.2 + pathe: 1.1.1 + pkg-types: 1.0.3 scule: 1.0.0 - semver: 7.5.0 - yaml: 2.2.1 + semver: 7.5.4 + std-env: 3.3.3 + yaml: 2.3.1 transitivePeerDependencies: - supports-color dev: true @@ -1198,6 +1415,21 @@ packages: resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==} dev: true + /chokidar@3.5.3: + resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} + engines: {node: '>= 8.10.0'} + dependencies: + anymatch: 3.1.3 + braces: 3.0.2 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.2 + dev: true + /chownr@2.0.0: resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} engines: {node: '>=10'} @@ -1208,6 +1440,12 @@ packages: engines: {node: '>=8'} dev: true + /citty@0.1.2: + resolution: {integrity: sha512-Me9nf0/BEmMOnuQzMOVXgpzkMUNbd0Am8lTl/13p0aRGAoLGk5T5sdet/42CrIGmWdG67BgHUhcKK1my1ujUEg==} + dependencies: + consola: 3.2.3 + dev: true + /clean-regexp@1.0.0: resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==} engines: {node: '>=4'} @@ -1215,14 +1453,6 @@ packages: escape-string-regexp: 1.0.5 dev: true - /cliui@7.0.4: - resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} - dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 7.0.0 - dev: true - /color-convert@1.9.3: resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} dependencies: @@ -1256,22 +1486,9 @@ packages: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} dev: true - /concordance@5.0.4: - resolution: {integrity: sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw==} - engines: {node: '>=10.18.0 <11 || >=12.14.0 <13 || >=14'} - dependencies: - date-time: 3.1.0 - esutils: 2.0.3 - fast-diff: 1.2.0 - js-string-escape: 1.0.1 - lodash: 4.17.21 - md5-hex: 3.0.1 - semver: 7.5.0 - well-known-symbols: 2.0.0 - dev: true - - /consola@3.1.0: - resolution: {integrity: sha512-rrrJE6rP0qzl/Srg+C9x/AE5Kxfux7reVm1Wh0wCjuXvih6DqZgqDZe8auTD28fzJ9TF0mHlSDrPpWlujQRo1Q==} + /consola@3.2.3: + resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} + engines: {node: ^14.18.0 || >=16.10.0} dev: true /convert-gitmoji@0.1.3: @@ -1291,13 +1508,6 @@ packages: which: 2.0.2 dev: true - /date-time@3.1.0: - resolution: {integrity: sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg==} - engines: {node: '>=6'} - dependencies: - time-zone: 1.0.0 - dev: true - /debug@3.2.7: resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} peerDependencies: @@ -1351,15 +1561,10 @@ packages: dependencies: bundle-name: 3.0.0 default-browser-id: 3.0.0 - execa: 7.1.1 + execa: 7.2.0 titleize: 3.0.0 dev: true - /define-lazy-prop@2.0.0: - resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} - engines: {node: '>=8'} - dev: true - /define-lazy-prop@3.0.0: resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} engines: {node: '>=12'} @@ -1377,8 +1582,13 @@ packages: resolution: {integrity: sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==} dev: true - /destr@1.2.2: - resolution: {integrity: sha512-lrbCJwD9saUQrqUfXvl6qoM+QN3W7tLV5pAOs+OqOmopCCz/JkE05MHedJR1xfk4IAnZuJXPVuN5+7jNA2ZCiA==} + /destr@2.0.1: + resolution: {integrity: sha512-M1Ob1zPSIvlARiJUkKqvAZ3VAqQY6Jcuth/pBKQ2b1dX/Qx0OnJ8Vux6J2H5PTMQeRzWrrbTu70VxBfv/OPDJA==} + dev: true + + /diff-sequences@29.4.3: + resolution: {integrity: sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: true /dir-glob@3.0.1: @@ -1402,21 +1612,17 @@ packages: esutils: 2.0.3 dev: true - /dotenv@16.0.3: - resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==} + /dotenv@16.3.1: + resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==} engines: {node: '>=12'} dev: true - /electron-to-chromium@1.4.368: - resolution: {integrity: sha512-e2aeCAixCj9M7nJxdB/wDjO6mbYX+lJJxSJCXDzlr5YPGYVofuJwGN9nKg2o6wWInjX6XmxRinn3AeJMK81ltw==} + /electron-to-chromium@1.4.490: + resolution: {integrity: sha512-6s7NVJz+sATdYnIwhdshx/N/9O6rvMxmhVoDSDFdj6iA45gHR8EQje70+RYsF4GeB+k0IeNSBnP7yG9ZXJFr7A==} dev: true - /emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} - dev: true - - /enhanced-resolve@5.12.0: - resolution: {integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==} + /enhanced-resolve@5.15.0: + resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} engines: {node: '>=10.13.0'} dependencies: graceful-fs: 4.2.11 @@ -1429,17 +1635,18 @@ packages: is-arrayish: 0.2.1 dev: true - /es-abstract@1.21.2: - resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==} + /es-abstract@1.22.1: + resolution: {integrity: sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==} engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.0 + arraybuffer.prototype.slice: 1.0.1 available-typed-arrays: 1.0.5 call-bind: 1.0.2 es-set-tostringtag: 2.0.1 es-to-primitive: 1.2.1 function.prototype.name: 1.1.5 - get-intrinsic: 1.2.0 + get-intrinsic: 1.2.1 get-symbol-description: 1.0.0 globalthis: 1.0.3 gopd: 1.0.1 @@ -1454,26 +1661,30 @@ packages: is-regex: 1.1.4 is-shared-array-buffer: 1.0.2 is-string: 1.0.7 - is-typed-array: 1.1.10 + is-typed-array: 1.1.12 is-weakref: 1.0.2 object-inspect: 1.12.3 object-keys: 1.1.1 object.assign: 4.1.4 regexp.prototype.flags: 1.5.0 + safe-array-concat: 1.0.0 safe-regex-test: 1.0.0 string.prototype.trim: 1.2.7 string.prototype.trimend: 1.0.6 string.prototype.trimstart: 1.0.6 + typed-array-buffer: 1.0.0 + typed-array-byte-length: 1.0.0 + typed-array-byte-offset: 1.0.0 typed-array-length: 1.0.4 unbox-primitive: 1.0.2 - which-typed-array: 1.1.9 + which-typed-array: 1.1.11 dev: true /es-set-tostringtag@2.0.1: resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.2.0 + get-intrinsic: 1.2.1 has: 1.0.3 has-tostringtag: 1.0.0 dev: true @@ -1493,34 +1704,64 @@ packages: is-symbol: 1.0.4 dev: true - /esbuild@0.17.17: - resolution: {integrity: sha512-/jUywtAymR8jR4qsa2RujlAF7Krpt5VWi72Q2yuLD4e/hvtNcFQ0I1j8m/bxq238pf3/0KO5yuXNpuLx8BE1KA==} + /esbuild@0.17.19: + resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/android-arm': 0.17.19 + '@esbuild/android-arm64': 0.17.19 + '@esbuild/android-x64': 0.17.19 + '@esbuild/darwin-arm64': 0.17.19 + '@esbuild/darwin-x64': 0.17.19 + '@esbuild/freebsd-arm64': 0.17.19 + '@esbuild/freebsd-x64': 0.17.19 + '@esbuild/linux-arm': 0.17.19 + '@esbuild/linux-arm64': 0.17.19 + '@esbuild/linux-ia32': 0.17.19 + '@esbuild/linux-loong64': 0.17.19 + '@esbuild/linux-mips64el': 0.17.19 + '@esbuild/linux-ppc64': 0.17.19 + '@esbuild/linux-riscv64': 0.17.19 + '@esbuild/linux-s390x': 0.17.19 + '@esbuild/linux-x64': 0.17.19 + '@esbuild/netbsd-x64': 0.17.19 + '@esbuild/openbsd-x64': 0.17.19 + '@esbuild/sunos-x64': 0.17.19 + '@esbuild/win32-arm64': 0.17.19 + '@esbuild/win32-ia32': 0.17.19 + '@esbuild/win32-x64': 0.17.19 + dev: true + + /esbuild@0.18.20: + resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/android-arm': 0.17.17 - '@esbuild/android-arm64': 0.17.17 - '@esbuild/android-x64': 0.17.17 - '@esbuild/darwin-arm64': 0.17.17 - '@esbuild/darwin-x64': 0.17.17 - '@esbuild/freebsd-arm64': 0.17.17 - '@esbuild/freebsd-x64': 0.17.17 - '@esbuild/linux-arm': 0.17.17 - '@esbuild/linux-arm64': 0.17.17 - '@esbuild/linux-ia32': 0.17.17 - '@esbuild/linux-loong64': 0.17.17 - '@esbuild/linux-mips64el': 0.17.17 - '@esbuild/linux-ppc64': 0.17.17 - '@esbuild/linux-riscv64': 0.17.17 - '@esbuild/linux-s390x': 0.17.17 - '@esbuild/linux-x64': 0.17.17 - '@esbuild/netbsd-x64': 0.17.17 - '@esbuild/openbsd-x64': 0.17.17 - '@esbuild/sunos-x64': 0.17.17 - '@esbuild/win32-arm64': 0.17.17 - '@esbuild/win32-ia32': 0.17.17 - '@esbuild/win32-x64': 0.17.17 + '@esbuild/android-arm': 0.18.20 + '@esbuild/android-arm64': 0.18.20 + '@esbuild/android-x64': 0.18.20 + '@esbuild/darwin-arm64': 0.18.20 + '@esbuild/darwin-x64': 0.18.20 + '@esbuild/freebsd-arm64': 0.18.20 + '@esbuild/freebsd-x64': 0.18.20 + '@esbuild/linux-arm': 0.18.20 + '@esbuild/linux-arm64': 0.18.20 + '@esbuild/linux-ia32': 0.18.20 + '@esbuild/linux-loong64': 0.18.20 + '@esbuild/linux-mips64el': 0.18.20 + '@esbuild/linux-ppc64': 0.18.20 + '@esbuild/linux-riscv64': 0.18.20 + '@esbuild/linux-s390x': 0.18.20 + '@esbuild/linux-x64': 0.18.20 + '@esbuild/netbsd-x64': 0.18.20 + '@esbuild/openbsd-x64': 0.18.20 + '@esbuild/sunos-x64': 0.18.20 + '@esbuild/win32-arm64': 0.18.20 + '@esbuild/win32-ia32': 0.18.20 + '@esbuild/win32-x64': 0.18.20 dev: true /escalade@3.1.1: @@ -1538,80 +1779,80 @@ packages: engines: {node: '>=10'} dev: true - /eslint-config-prettier@8.8.0(eslint@8.39.0): - resolution: {integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==} + /eslint-config-prettier@8.10.0(eslint@8.46.0): + resolution: {integrity: sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==} hasBin: true peerDependencies: eslint: '>=7.0.0' dependencies: - eslint: 8.39.0 + eslint: 8.46.0 dev: true - /eslint-config-standard@17.0.0(eslint-plugin-import@2.27.5)(eslint-plugin-n@15.7.0)(eslint-plugin-promise@6.1.1)(eslint@8.39.0): - resolution: {integrity: sha512-/2ks1GKyqSOkH7JFvXJicu0iMpoojkwB+f5Du/1SC0PtBL+s8v30k9njRZ21pm2drKYm2342jFnGWzttxPmZVg==} + /eslint-config-standard@17.1.0(eslint-plugin-import@2.28.0)(eslint-plugin-n@16.0.1)(eslint-plugin-promise@6.1.1)(eslint@8.46.0): + resolution: {integrity: sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==} + engines: {node: '>=12.0.0'} peerDependencies: eslint: ^8.0.1 eslint-plugin-import: ^2.25.2 - eslint-plugin-n: ^15.0.0 + eslint-plugin-n: '^15.0.0 || ^16.0.0 ' eslint-plugin-promise: ^6.0.0 dependencies: - eslint: 8.39.0 - eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.0)(eslint-import-resolver-typescript@3.5.5)(eslint@8.39.0) - eslint-plugin-n: 15.7.0(eslint@8.39.0) - eslint-plugin-promise: 6.1.1(eslint@8.39.0) + eslint: 8.46.0 + eslint-plugin-import: 2.28.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.0)(eslint@8.46.0) + eslint-plugin-n: 16.0.1(eslint@8.46.0) + eslint-plugin-promise: 6.1.1(eslint@8.46.0) dev: true - /eslint-config-unjs@0.1.0(eslint@8.39.0)(typescript@5.0.4): - resolution: {integrity: sha512-P51/jQg3RoLKqDTR6/x5637iOBYIEka/Ec6TwaNKiLhSOeYBKRVPsg/FdbV8MBExC9q4j/wRoTYBKj7sEVNUgQ==} + /eslint-config-unjs@0.2.1(eslint@8.46.0)(typescript@5.1.6): + resolution: {integrity: sha512-h17q+WR86glq8yLFuHfEnAFfbEYqXpJAppXc0e0fQz0gsotJQ14BZVrlvIThE2a+stWyh0VT73gbBPfosl2rVA==} peerDependencies: eslint: '*' typescript: '*' dependencies: - '@typescript-eslint/eslint-plugin': 5.59.0(@typescript-eslint/parser@5.59.0)(eslint@8.39.0)(typescript@5.0.4) - '@typescript-eslint/parser': 5.59.0(eslint@8.39.0)(typescript@5.0.4) - eslint: 8.39.0 - eslint-config-prettier: 8.8.0(eslint@8.39.0) - eslint-config-standard: 17.0.0(eslint-plugin-import@2.27.5)(eslint-plugin-n@15.7.0)(eslint-plugin-promise@6.1.1)(eslint@8.39.0) - eslint-import-resolver-typescript: 3.5.5(@typescript-eslint/parser@5.59.0)(eslint-plugin-import@2.27.5)(eslint@8.39.0) - eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.0)(eslint-import-resolver-typescript@3.5.5)(eslint@8.39.0) - eslint-plugin-n: 15.7.0(eslint@8.39.0) - eslint-plugin-node: 11.1.0(eslint@8.39.0) - eslint-plugin-promise: 6.1.1(eslint@8.39.0) - eslint-plugin-unicorn: 43.0.2(eslint@8.39.0) - typescript: 5.0.4 + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.46.0)(typescript@5.1.6) + '@typescript-eslint/parser': 5.62.0(eslint@8.46.0)(typescript@5.1.6) + eslint: 8.46.0 + eslint-config-prettier: 8.10.0(eslint@8.46.0) + eslint-config-standard: 17.1.0(eslint-plugin-import@2.28.0)(eslint-plugin-n@16.0.1)(eslint-plugin-promise@6.1.1)(eslint@8.46.0) + eslint-import-resolver-typescript: 3.6.0(@typescript-eslint/parser@5.62.0)(eslint-plugin-import@2.28.0)(eslint@8.46.0) + eslint-plugin-import: 2.28.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.0)(eslint@8.46.0) + eslint-plugin-n: 16.0.1(eslint@8.46.0) + eslint-plugin-node: 11.1.0(eslint@8.46.0) + eslint-plugin-promise: 6.1.1(eslint@8.46.0) + eslint-plugin-unicorn: 47.0.0(eslint@8.46.0) + typescript: 5.1.6 transitivePeerDependencies: - eslint-import-resolver-node - eslint-import-resolver-webpack - supports-color dev: true - /eslint-import-resolver-node@0.3.7: - resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} + /eslint-import-resolver-node@0.3.9: + resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} dependencies: debug: 3.2.7 - is-core-module: 2.12.0 - resolve: 1.22.2 + is-core-module: 2.13.0 + resolve: 1.22.4 transitivePeerDependencies: - supports-color dev: true - /eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@5.59.0)(eslint-plugin-import@2.27.5)(eslint@8.39.0): - resolution: {integrity: sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==} + /eslint-import-resolver-typescript@3.6.0(@typescript-eslint/parser@5.62.0)(eslint-plugin-import@2.28.0)(eslint@8.46.0): + resolution: {integrity: sha512-QTHR9ddNnn35RTxlaEnx2gCxqFlF2SEN0SE2d17SqwyM7YOSI2GHWRYp5BiRkObTUNYPupC/3Fq2a0PpT+EKpg==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: eslint: '*' eslint-plugin-import: '*' dependencies: debug: 4.3.4 - enhanced-resolve: 5.12.0 - eslint: 8.39.0 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.59.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.39.0) - eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.0)(eslint-import-resolver-typescript@3.5.5)(eslint@8.39.0) - get-tsconfig: 4.5.0 - globby: 13.1.4 - is-core-module: 2.12.0 + enhanced-resolve: 5.15.0 + eslint: 8.46.0 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0)(eslint@8.46.0) + eslint-plugin-import: 2.28.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.0)(eslint@8.46.0) + fast-glob: 3.3.1 + get-tsconfig: 4.7.0 + is-core-module: 2.13.0 is-glob: 4.0.3 - synckit: 0.8.5 transitivePeerDependencies: - '@typescript-eslint/parser' - eslint-import-resolver-node @@ -1619,7 +1860,7 @@ packages: - supports-color dev: true - /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.59.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.39.0): + /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0)(eslint@8.46.0): resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} engines: {node: '>=4'} peerDependencies: @@ -1640,39 +1881,39 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.59.0(eslint@8.39.0)(typescript@5.0.4) + '@typescript-eslint/parser': 5.62.0(eslint@8.46.0)(typescript@5.1.6) debug: 3.2.7 - eslint: 8.39.0 - eslint-import-resolver-node: 0.3.7 - eslint-import-resolver-typescript: 3.5.5(@typescript-eslint/parser@5.59.0)(eslint-plugin-import@2.27.5)(eslint@8.39.0) + eslint: 8.46.0 + eslint-import-resolver-node: 0.3.9 + eslint-import-resolver-typescript: 3.6.0(@typescript-eslint/parser@5.62.0)(eslint-plugin-import@2.28.0)(eslint@8.46.0) transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-es@3.0.1(eslint@8.39.0): - resolution: {integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==} - engines: {node: '>=8.10.0'} + /eslint-plugin-es-x@7.2.0(eslint@8.46.0): + resolution: {integrity: sha512-9dvv5CcvNjSJPqnS5uZkqb3xmbeqRLnvXKK7iI5+oK/yTusyc46zbBZKENGsOfojm/mKfszyZb+wNqNPAPeGXA==} + engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: - eslint: '>=4.19.1' + eslint: '>=8' dependencies: - eslint: 8.39.0 - eslint-utils: 2.1.0 - regexpp: 3.2.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.46.0) + '@eslint-community/regexpp': 4.6.2 + eslint: 8.46.0 dev: true - /eslint-plugin-es@4.1.0(eslint@8.39.0): - resolution: {integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==} + /eslint-plugin-es@3.0.1(eslint@8.46.0): + resolution: {integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==} engines: {node: '>=8.10.0'} peerDependencies: eslint: '>=4.19.1' dependencies: - eslint: 8.39.0 + eslint: 8.46.0 eslint-utils: 2.1.0 regexpp: 3.2.0 dev: true - /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.59.0)(eslint-import-resolver-typescript@3.5.5)(eslint@8.39.0): - resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} + /eslint-plugin-import@2.28.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.0)(eslint@8.46.0): + resolution: {integrity: sha512-B8s/n+ZluN7sxj9eUf7/pRFERX0r5bnFA2dCaLHy2ZeaQEAz0k+ZZkFWRFHJAqxfxQDx6KLv9LeIki7cFdwW+Q==} engines: {node: '>=4'} peerDependencies: '@typescript-eslint/parser': '*' @@ -1681,22 +1922,25 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.59.0(eslint@8.39.0)(typescript@5.0.4) + '@typescript-eslint/parser': 5.62.0(eslint@8.46.0)(typescript@5.1.6) array-includes: 3.1.6 + array.prototype.findlastindex: 1.2.2 array.prototype.flat: 1.3.1 array.prototype.flatmap: 1.3.1 debug: 3.2.7 doctrine: 2.1.0 - eslint: 8.39.0 - eslint-import-resolver-node: 0.3.7 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.59.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.39.0) + eslint: 8.46.0 + eslint-import-resolver-node: 0.3.9 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0)(eslint@8.46.0) has: 1.0.3 - is-core-module: 2.12.0 + is-core-module: 2.13.0 is-glob: 4.0.3 minimatch: 3.1.2 + object.fromentries: 2.0.6 + object.groupby: 1.0.0 object.values: 1.1.6 - resolve: 1.22.2 - semver: 6.3.0 + resolve: 1.22.4 + semver: 6.3.1 tsconfig-paths: 3.14.2 transitivePeerDependencies: - eslint-import-resolver-typescript @@ -1704,67 +1948,69 @@ packages: - supports-color dev: true - /eslint-plugin-n@15.7.0(eslint@8.39.0): - resolution: {integrity: sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==} - engines: {node: '>=12.22.0'} + /eslint-plugin-n@16.0.1(eslint@8.46.0): + resolution: {integrity: sha512-CDmHegJN0OF3L5cz5tATH84RPQm9kG+Yx39wIqIwPR2C0uhBGMWfbbOtetR83PQjjidA5aXMu+LEFw1jaSwvTA==} + engines: {node: '>=16.0.0'} peerDependencies: eslint: '>=7.0.0' dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.46.0) builtins: 5.0.1 - eslint: 8.39.0 - eslint-plugin-es: 4.1.0(eslint@8.39.0) - eslint-utils: 3.0.0(eslint@8.39.0) + eslint: 8.46.0 + eslint-plugin-es-x: 7.2.0(eslint@8.46.0) ignore: 5.2.4 - is-core-module: 2.12.0 + is-core-module: 2.13.0 minimatch: 3.1.2 - resolve: 1.22.2 - semver: 7.5.0 + resolve: 1.22.4 + semver: 7.5.4 dev: true - /eslint-plugin-node@11.1.0(eslint@8.39.0): + /eslint-plugin-node@11.1.0(eslint@8.46.0): resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==} engines: {node: '>=8.10.0'} peerDependencies: eslint: '>=5.16.0' dependencies: - eslint: 8.39.0 - eslint-plugin-es: 3.0.1(eslint@8.39.0) + eslint: 8.46.0 + eslint-plugin-es: 3.0.1(eslint@8.46.0) eslint-utils: 2.1.0 ignore: 5.2.4 minimatch: 3.1.2 - resolve: 1.22.2 - semver: 6.3.0 + resolve: 1.22.4 + semver: 6.3.1 dev: true - /eslint-plugin-promise@6.1.1(eslint@8.39.0): + /eslint-plugin-promise@6.1.1(eslint@8.46.0): resolution: {integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 dependencies: - eslint: 8.39.0 + eslint: 8.46.0 dev: true - /eslint-plugin-unicorn@43.0.2(eslint@8.39.0): - resolution: {integrity: sha512-DtqZ5mf/GMlfWoz1abIjq5jZfaFuHzGBZYIeuJfEoKKGWRHr2JiJR+ea+BF7Wx2N1PPRoT/2fwgiK1NnmNE3Hg==} - engines: {node: '>=14.18'} + /eslint-plugin-unicorn@47.0.0(eslint@8.46.0): + resolution: {integrity: sha512-ivB3bKk7fDIeWOUmmMm9o3Ax9zbMz1Bsza/R2qm46ufw4T6VBFBaJIR1uN3pCKSmSXm8/9Nri8V+iUut1NhQGA==} + engines: {node: '>=16'} peerDependencies: - eslint: '>=8.18.0' + eslint: '>=8.38.0' dependencies: - '@babel/helper-validator-identifier': 7.19.1 + '@babel/helper-validator-identifier': 7.22.5 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.46.0) ci-info: 3.8.0 clean-regexp: 1.0.0 - eslint: 8.39.0 - eslint-utils: 3.0.0(eslint@8.39.0) + eslint: 8.46.0 esquery: 1.5.0 indent-string: 4.0.0 is-builtin-module: 3.2.1 + jsesc: 3.0.2 lodash: 4.17.21 pluralize: 8.0.0 read-pkg-up: 7.0.1 - regexp-tree: 0.1.25 + regexp-tree: 0.1.27 + regjsparser: 0.10.0 safe-regex: 2.1.1 - semver: 7.5.0 + semver: 7.5.4 strip-indent: 3.0.0 dev: true @@ -1776,8 +2022,8 @@ packages: estraverse: 4.3.0 dev: true - /eslint-scope@7.2.0: - resolution: {integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==} + /eslint-scope@7.2.2: + resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: esrecurse: 4.3.0 @@ -1791,41 +2037,26 @@ packages: eslint-visitor-keys: 1.3.0 dev: true - /eslint-utils@3.0.0(eslint@8.39.0): - resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} - peerDependencies: - eslint: '>=5' - dependencies: - eslint: 8.39.0 - eslint-visitor-keys: 2.1.0 - dev: true - /eslint-visitor-keys@1.3.0: resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} engines: {node: '>=4'} dev: true - /eslint-visitor-keys@2.1.0: - resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} - engines: {node: '>=10'} - dev: true - - /eslint-visitor-keys@3.4.0: - resolution: {integrity: sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==} + /eslint-visitor-keys@3.4.2: + resolution: {integrity: sha512-8drBzUEyZ2llkpCA67iYrgEssKDUu68V8ChqqOfFupIaG/LCVPUT+CoGJpT77zJprs4T/W7p07LP7zAIMuweVw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint@8.39.0: - resolution: {integrity: sha512-mwiok6cy7KTW7rBpo05k6+p4YVZByLNjAZ/ACB9DRCu4YDRwjXI01tWHp6KAUWelsBetTxKK/2sHB0vdS8Z2Og==} + /eslint@8.46.0: + resolution: {integrity: sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.39.0) - '@eslint-community/regexpp': 4.5.0 - '@eslint/eslintrc': 2.0.2 - '@eslint/js': 8.39.0 - '@humanwhocodes/config-array': 0.11.8 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.46.0) + '@eslint-community/regexpp': 4.6.2 + '@eslint/eslintrc': 2.1.1 + '@eslint/js': 8.46.0 + '@humanwhocodes/config-array': 0.11.10 '@humanwhocodes/module-importer': 1.0.1 '@nodelib/fs.walk': 1.2.8 ajv: 6.12.6 @@ -1834,9 +2065,9 @@ packages: debug: 4.3.4 doctrine: 3.0.0 escape-string-regexp: 4.0.0 - eslint-scope: 7.2.0 - eslint-visitor-keys: 3.4.0 - espree: 9.5.1 + eslint-scope: 7.2.2 + eslint-visitor-keys: 3.4.2 + espree: 9.6.1 esquery: 1.5.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 @@ -1844,34 +2075,31 @@ packages: find-up: 5.0.0 glob-parent: 6.0.2 globals: 13.20.0 - grapheme-splitter: 1.0.4 + graphemer: 1.4.0 ignore: 5.2.4 - import-fresh: 3.3.0 imurmurhash: 0.1.4 is-glob: 4.0.3 is-path-inside: 3.0.3 - js-sdsl: 4.4.0 js-yaml: 4.1.0 json-stable-stringify-without-jsonify: 1.0.1 levn: 0.4.1 lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 - optionator: 0.9.1 + optionator: 0.9.3 strip-ansi: 6.0.1 - strip-json-comments: 3.1.1 text-table: 0.2.0 transitivePeerDependencies: - supports-color dev: true - /espree@9.5.1: - resolution: {integrity: sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==} + /espree@9.6.1: + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - acorn: 8.8.2 - acorn-jsx: 5.3.2(acorn@8.8.2) - eslint-visitor-keys: 3.4.0 + acorn: 8.10.0 + acorn-jsx: 5.3.2(acorn@8.10.0) + eslint-visitor-keys: 3.4.2 dev: true /esquery@1.5.0: @@ -1922,8 +2150,8 @@ packages: strip-final-newline: 2.0.0 dev: true - /execa@7.1.1: - resolution: {integrity: sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==} + /execa@7.2.0: + resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==} engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} dependencies: cross-spawn: 7.0.3 @@ -1941,12 +2169,8 @@ packages: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} dev: true - /fast-diff@1.2.0: - resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==} - dev: true - - /fast-glob@3.2.12: - resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} + /fast-glob@3.3.1: + resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} engines: {node: '>=8.6.0'} dependencies: '@nodelib/fs.stat': 2.0.5 @@ -2023,14 +2247,6 @@ packages: is-callable: 1.2.7 dev: true - /foreground-child@2.0.0: - resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} - engines: {node: '>=8.0.0'} - dependencies: - cross-spawn: 7.0.3 - signal-exit: 3.0.7 - dev: true - /fs-extra@11.1.1: resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==} engines: {node: '>=14.14'} @@ -2069,7 +2285,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.2.0 - es-abstract: 1.21.2 + es-abstract: 1.22.1 functions-have-names: 1.2.3 dev: true @@ -2082,20 +2298,16 @@ packages: engines: {node: '>=6.9.0'} dev: true - /get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} - dev: true - /get-func-name@2.0.0: resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==} dev: true - /get-intrinsic@1.2.0: - resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==} + /get-intrinsic@1.2.1: + resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==} dependencies: function-bind: 1.1.1 has: 1.0.3 + has-proto: 1.0.1 has-symbols: 1.0.3 dev: true @@ -2109,11 +2321,13 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.2.0 + get-intrinsic: 1.2.1 dev: true - /get-tsconfig@4.5.0: - resolution: {integrity: sha512-MjhiaIWCJ1sAU4pIQ5i5OfOuHHxVo1oYeNsWTON7jxYkod8pHocXeh+SSbmu5OZZZK73B6cbJ2XADzXehLyovQ==} + /get-tsconfig@4.7.0: + resolution: {integrity: sha512-pmjiZ7xtB8URYm74PlGJozDNyhvsVLUcpBa8DZBG3bWHwaHa9bPiRpiSfovw+fjhwONSCWKRyk+JQHEGZmMrzw==} + dependencies: + resolve-pkg-maps: 1.0.0 dev: true /giget@1.1.2: @@ -2124,9 +2338,9 @@ packages: defu: 6.1.2 https-proxy-agent: 5.0.1 mri: 1.2.0 - node-fetch-native: 1.1.0 - pathe: 1.1.0 - tar: 6.1.13 + node-fetch-native: 1.2.0 + pathe: 1.1.1 + tar: 6.1.15 transitivePeerDependencies: - supports-color dev: true @@ -2186,49 +2400,41 @@ packages: define-properties: 1.2.0 dev: true - /globalyzer@0.1.0: - resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} - dev: true - /globby@11.1.0: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} engines: {node: '>=10'} dependencies: array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.2.12 + fast-glob: 3.3.1 ignore: 5.2.4 merge2: 1.4.1 slash: 3.0.0 dev: true - /globby@13.1.4: - resolution: {integrity: sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==} + /globby@13.2.2: + resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: dir-glob: 3.0.1 - fast-glob: 3.2.12 + fast-glob: 3.3.1 ignore: 5.2.4 merge2: 1.4.1 slash: 4.0.0 dev: true - /globrex@0.1.2: - resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} - dev: true - /gopd@1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} dependencies: - get-intrinsic: 1.2.0 + get-intrinsic: 1.2.1 dev: true /graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} dev: true - /grapheme-splitter@1.0.4: - resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} + /graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} dev: true /has-bigints@1.0.2: @@ -2248,7 +2454,7 @@ packages: /has-property-descriptors@1.0.0: resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} dependencies: - get-intrinsic: 1.2.0 + get-intrinsic: 1.2.1 dev: true /has-proto@1.0.1: @@ -2345,7 +2551,7 @@ packages: resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.2.0 + get-intrinsic: 1.2.1 has: 1.0.3 side-channel: 1.0.4 dev: true @@ -2354,8 +2560,8 @@ packages: resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.2.0 - is-typed-array: 1.1.10 + get-intrinsic: 1.2.1 + is-typed-array: 1.1.12 dev: true /is-arrayish@0.2.1: @@ -2368,6 +2574,13 @@ packages: has-bigints: 1.0.2 dev: true + /is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + dependencies: + binary-extensions: 2.2.0 + dev: true + /is-boolean-object@1.1.2: resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} engines: {node: '>= 0.4'} @@ -2388,8 +2601,8 @@ packages: engines: {node: '>= 0.4'} dev: true - /is-core-module@2.12.0: - resolution: {integrity: sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==} + /is-core-module@2.13.0: + resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==} dependencies: has: 1.0.3 dev: true @@ -2418,11 +2631,6 @@ packages: engines: {node: '>=0.10.0'} dev: true - /is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} - dev: true - /is-glob@4.0.3: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} engines: {node: '>=0.10.0'} @@ -2508,15 +2716,11 @@ packages: has-symbols: 1.0.3 dev: true - /is-typed-array@1.1.10: - resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==} + /is-typed-array@1.1.12: + resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} engines: {node: '>= 0.4'} dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - for-each: 0.3.3 - gopd: 1.0.1 - has-tostringtag: 1.0.0 + which-typed-array: 1.1.11 dev: true /is-weakref@1.0.2: @@ -2532,6 +2736,10 @@ packages: is-docker: 2.2.1 dev: true + /isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + dev: true + /isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} dev: true @@ -2541,37 +2749,39 @@ packages: engines: {node: '>=8'} dev: true - /istanbul-lib-report@3.0.0: - resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==} - engines: {node: '>=8'} + /istanbul-lib-report@3.0.1: + resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} + engines: {node: '>=10'} dependencies: istanbul-lib-coverage: 3.2.0 - make-dir: 3.1.0 + make-dir: 4.0.0 supports-color: 7.2.0 dev: true - /istanbul-reports@3.1.5: - resolution: {integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==} + /istanbul-lib-source-maps@4.0.1: + resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} + engines: {node: '>=10'} + dependencies: + debug: 4.3.4 + istanbul-lib-coverage: 3.2.0 + source-map: 0.6.1 + transitivePeerDependencies: + - supports-color + dev: true + + /istanbul-reports@3.1.6: + resolution: {integrity: sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==} engines: {node: '>=8'} dependencies: html-escaper: 2.0.2 - istanbul-lib-report: 3.0.0 + istanbul-lib-report: 3.0.1 dev: true - /jiti@1.18.2: - resolution: {integrity: sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==} + /jiti@1.19.1: + resolution: {integrity: sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg==} hasBin: true dev: true - /js-sdsl@4.4.0: - resolution: {integrity: sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==} - dev: true - - /js-string-escape@1.0.1: - resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==} - engines: {node: '>= 0.8'} - dev: true - /js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} dev: true @@ -2583,12 +2793,23 @@ packages: argparse: 2.0.1 dev: true + /jsesc@0.5.0: + resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} + hasBin: true + dev: true + /jsesc@2.5.2: resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} engines: {node: '>=4'} hasBin: true dev: true + /jsesc@3.0.2: + resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} + engines: {node: '>=6'} + hasBin: true + dev: true + /json-parse-even-better-errors@2.3.1: resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} dev: true @@ -2691,25 +2912,18 @@ packages: '@jridgewell/sourcemap-codec': 1.4.15 dev: true - /magic-string@0.30.0: - resolution: {integrity: sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==} + /magic-string@0.30.2: + resolution: {integrity: sha512-lNZdu7pewtq/ZvWUp9Wpf/x7WzMTsR26TWV03BRZrXFsv+BI6dy8RAiKgm1uM/kyR0rCfUcqvOlXKG66KhIGug==} engines: {node: '>=12'} dependencies: '@jridgewell/sourcemap-codec': 1.4.15 dev: true - /make-dir@3.1.0: - resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} - engines: {node: '>=8'} - dependencies: - semver: 6.3.0 - dev: true - - /md5-hex@3.0.1: - resolution: {integrity: sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==} - engines: {node: '>=8'} + /make-dir@4.0.0: + resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} + engines: {node: '>=10'} dependencies: - blueimp-md5: 2.19.0 + semver: 7.5.4 dev: true /merge-stream@2.0.0: @@ -2768,8 +2982,8 @@ packages: yallist: 4.0.0 dev: true - /minipass@4.2.8: - resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==} + /minipass@5.0.0: + resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} engines: {node: '>=8'} dev: true @@ -2787,36 +3001,37 @@ packages: hasBin: true dev: true - /mkdist@1.2.0(typescript@5.0.4): - resolution: {integrity: sha512-UTqu/bXmIk/+VKNVgufAeMyjUcNy1dn9Bl7wL1zZlCKVrpDgj/VllmZBeh3ZCC/2HWqUrt6frNFTKt9TRZbNvQ==} + /mkdist@1.3.0(typescript@5.1.6): + resolution: {integrity: sha512-ZQrUvcL7LkRdzMREpDyg9AT18N9Tl5jc2qeKAUeEw0KGsgykbHbuRvysGAzTuGtwuSg0WQyNit5jh/k+Er3JEg==} hasBin: true peerDependencies: - sass: ^1.60.0 - typescript: '>=4.9.5' + sass: ^1.63.6 + typescript: '>=5.1.6' peerDependenciesMeta: sass: optional: true typescript: optional: true dependencies: + citty: 0.1.2 defu: 6.1.2 - esbuild: 0.17.17 + esbuild: 0.18.20 fs-extra: 11.1.1 - globby: 13.1.4 - jiti: 1.18.2 - mlly: 1.2.0 + globby: 13.2.2 + jiti: 1.19.1 + mlly: 1.4.0 mri: 1.2.0 - pathe: 1.1.0 - typescript: 5.0.4 + pathe: 1.1.1 + typescript: 5.1.6 dev: true - /mlly@1.2.0: - resolution: {integrity: sha512-+c7A3CV0KGdKcylsI6khWyts/CYrGTrRVo4R/I7u/cUsy0Conxa6LUhiEzVKIw14lc2L5aiO4+SeVe4TeGRKww==} + /mlly@1.4.0: + resolution: {integrity: sha512-ua8PAThnTwpprIaU47EPeZ/bPUVp2QYBbWMphUQpVdBI3Lgqzm5KZQ45Agm3YJedHXaIHl6pBGabaLSUPPSptg==} dependencies: - acorn: 8.8.2 - pathe: 1.1.0 - pkg-types: 1.0.2 - ufo: 1.1.1 + acorn: 8.10.0 + pathe: 1.1.1 + pkg-types: 1.0.3 + ufo: 1.2.0 dev: true /mri@1.2.0: @@ -2846,23 +3061,28 @@ packages: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} dev: true - /node-fetch-native@1.1.0: - resolution: {integrity: sha512-nl5goFCig93JZ9FIV8GHT9xpNqXbxQUzkOmKIMKmncsBH9jhg7qKex8hirpymkBFmNQ114chEEG5lS4wgK2I+Q==} + /node-fetch-native@1.2.0: + resolution: {integrity: sha512-5IAMBTl9p6PaAjYCnMv5FmqIF6GcZnawAVnzaCG0rX2aYZJ4CxEkZNtVPuTRug7fL7wyM5BQYTlAzcyMPi6oTQ==} dev: true - /node-releases@2.0.10: - resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==} + /node-releases@2.0.13: + resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==} dev: true /normalize-package-data@2.5.0: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} dependencies: hosted-git-info: 2.8.9 - resolve: 1.22.2 - semver: 5.7.1 + resolve: 1.22.4 + semver: 5.7.2 validate-npm-package-license: 3.0.4 dev: true + /normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + dev: true + /npm-run-path@4.0.1: resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} engines: {node: '>=8'} @@ -2896,21 +3116,43 @@ packages: object-keys: 1.1.1 dev: true + /object.fromentries@2.0.6: + resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.22.1 + dev: true + + /object.groupby@1.0.0: + resolution: {integrity: sha512-70MWG6NfRH9GnbZOikuhPPYzpUpof9iW2J9E4dW7FXTqPNb6rllE6u39SKwwiNh8lCwX3DDb5OgcKGiEBrTTyw==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.22.1 + get-intrinsic: 1.2.1 + dev: true + /object.values@1.1.6: resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.0 - es-abstract: 1.21.2 + es-abstract: 1.22.1 dev: true - /ofetch@1.0.1: - resolution: {integrity: sha512-icBz2JYfEpt+wZz1FRoGcrMigjNKjzvufE26m9+yUiacRQRHwnNlGRPiDnW4op7WX/MR6aniwS8xw8jyVelF2g==} + /ofetch@1.1.1: + resolution: {integrity: sha512-SSMoktrp9SNLi20BWfB/BnnKcL0RDigXThD/mZBeQxkIRv1xrd9183MtLdsqRYLYSqW0eTr5t8w8MqjNhvoOQQ==} dependencies: - destr: 1.2.2 - node-fetch-native: 1.1.0 - ufo: 1.1.1 + destr: 2.0.1 + node-fetch-native: 1.2.0 + ufo: 1.2.0 + dev: true + + /ohash@1.1.2: + resolution: {integrity: sha512-9CIOSq5945rI045GFtcO3uudyOkYVY1nyfFxVQp+9BRgslr8jPNiSSrsFGg/BNTUFOLqx0P5tng6G32brIPw0w==} dev: true /once@1.4.0: @@ -2933,15 +3175,6 @@ packages: mimic-fn: 4.0.0 dev: true - /open@8.4.2: - resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} - engines: {node: '>=12'} - dependencies: - define-lazy-prop: 2.0.0 - is-docker: 2.2.1 - is-wsl: 2.2.0 - dev: true - /open@9.1.0: resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==} engines: {node: '>=14.16'} @@ -2952,16 +3185,16 @@ packages: is-wsl: 2.2.0 dev: true - /optionator@0.9.1: - resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} + /optionator@0.9.3: + resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} engines: {node: '>= 0.8.0'} dependencies: + '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 - word-wrap: 1.2.3 dev: true /p-limit@2.3.0: @@ -3015,7 +3248,7 @@ packages: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} dependencies: - '@babel/code-frame': 7.21.4 + '@babel/code-frame': 7.22.10 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -3050,14 +3283,18 @@ packages: engines: {node: '>=8'} dev: true - /pathe@1.1.0: - resolution: {integrity: sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w==} + /pathe@1.1.1: + resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==} dev: true /pathval@1.1.1: resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} dev: true + /perfect-debounce@1.0.0: + resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} + dev: true + /picocolors@1.0.0: resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} dev: true @@ -3067,12 +3304,12 @@ packages: engines: {node: '>=8.6'} dev: true - /pkg-types@1.0.2: - resolution: {integrity: sha512-hM58GKXOcj8WTqUXnsQyJYXdeAPbythQgEF3nTcEo+nkD49chjQ9IKm/QJy9xf6JakXptz86h7ecP2024rrLaQ==} + /pkg-types@1.0.3: + resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==} dependencies: jsonc-parser: 3.2.0 - mlly: 1.2.0 - pathe: 1.1.0 + mlly: 1.4.0 + pathe: 1.1.1 dev: true /platform@1.3.6: @@ -3084,8 +3321,8 @@ packages: engines: {node: '>=4'} dev: true - /postcss@8.4.22: - resolution: {integrity: sha512-XseknLAfRHzVWjCEtdviapiBtfLdgyzExD50Rg2ePaucEesyh8Wv4VPdW0nbyDa1ydbrAxV19jvMT4+LFmcNUA==} + /postcss@8.4.27: + resolution: {integrity: sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==} engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.6 @@ -3098,24 +3335,24 @@ packages: engines: {node: '>= 0.8.0'} dev: true - /prettier@2.8.7: - resolution: {integrity: sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==} - engines: {node: '>=10.13.0'} + /prettier@3.0.1: + resolution: {integrity: sha512-fcOWSnnpCrovBsmFZIGIy9UqK2FaI7Hqax+DIO0A9UxeVoY4iweyaFjS5TavZN97Hfehph0nhsZnjlVKzEQSrQ==} + engines: {node: '>=14'} hasBin: true dev: true - /pretty-bytes@6.1.0: - resolution: {integrity: sha512-Rk753HI8f4uivXi4ZCIYdhmG1V+WKzvRMg/X+M42a6t7D07RcmopXJMDNk6N++7Bl75URRGsb40ruvg7Hcp2wQ==} + /pretty-bytes@6.1.1: + resolution: {integrity: sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==} engines: {node: ^14.13.1 || >=16.0.0} dev: true - /pretty-format@27.5.1: - resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /pretty-format@29.6.2: + resolution: {integrity: sha512-1q0oC8eRveTg5nnBEWMXAU2qpv65Gnuf2eCQzSjxpWFkPaPARwqZZDGuNE0zPAZfTCHzIk3A8dIjwlQKKLphyg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - ansi-regex: 5.0.1 + '@jest/schemas': 29.6.0 ansi-styles: 5.2.0 - react-is: 17.0.2 + react-is: 18.2.0 dev: true /punycode@2.3.0: @@ -3127,16 +3364,16 @@ packages: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} dev: true - /rc9@2.1.0: - resolution: {integrity: sha512-ROO9bv8PPqngWKoiUZU3JDQ4sugpdRs9DfwHnzDSxK25XtQn6BEHL6EOd/OtKuDT2qodrtNR+0WkPT6l0jxH5Q==} + /rc9@2.1.1: + resolution: {integrity: sha512-lNeOl38Ws0eNxpO3+wD1I9rkHGQyj1NU1jlzv4go2CtEnEQEUfqnIvZG7W+bC/aXdJ27n5x/yUjb6RoT9tko+Q==} dependencies: defu: 6.1.2 - destr: 1.2.2 + destr: 2.0.1 flat: 5.0.2 dev: true - /react-is@17.0.2: - resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + /react-is@18.2.0: + resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} dev: true /read-pkg-up@7.0.1: @@ -3158,8 +3395,15 @@ packages: type-fest: 0.6.0 dev: true - /regexp-tree@0.1.25: - resolution: {integrity: sha512-szcL3aqw+vEeuxhL1AMYRyeMP+goYF5I/guaH10uJX5xbGyeQeNPPneaj3ZWVmGLCDxrVaaYekkr5R12gk4dJw==} + /readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + dependencies: + picomatch: 2.3.1 + dev: true + + /regexp-tree@0.1.27: + resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==} hasBin: true dev: true @@ -3177,9 +3421,11 @@ packages: engines: {node: '>=8'} dev: true - /require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} - engines: {node: '>=0.10.0'} + /regjsparser@0.10.0: + resolution: {integrity: sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==} + hasBin: true + dependencies: + jsesc: 0.5.0 dev: true /resolve-from@4.0.0: @@ -3187,11 +3433,15 @@ packages: engines: {node: '>=4'} dev: true - /resolve@1.22.2: - resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==} + /resolve-pkg-maps@1.0.0: + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + dev: true + + /resolve@1.22.4: + resolution: {integrity: sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==} hasBin: true dependencies: - is-core-module: 2.12.0 + is-core-module: 2.13.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 dev: true @@ -3208,22 +3458,22 @@ packages: glob: 7.2.3 dev: true - /rollup-plugin-dts@5.3.0(rollup@3.20.6)(typescript@5.0.4): - resolution: {integrity: sha512-8FXp0ZkyZj1iU5klkIJYLjIq/YZSwBoERu33QBDxm/1yw5UU4txrEtcmMkrq+ZiKu3Q4qvPCNqc3ovX6rjqzbQ==} - engines: {node: '>=v14'} + /rollup-plugin-dts@5.3.1(rollup@3.28.0)(typescript@5.1.6): + resolution: {integrity: sha512-gusMi+Z4gY/JaEQeXnB0RUdU82h1kF0WYzCWgVmV4p3hWXqelaKuCvcJawfeg+EKn2T1Ie+YWF2OiN1/L8bTVg==} + engines: {node: '>=v14.21.3'} peerDependencies: - rollup: ^3.0.0 + rollup: ^3.0 typescript: ^4.1 || ^5.0 dependencies: - magic-string: 0.30.0 - rollup: 3.20.6 - typescript: 5.0.4 + magic-string: 0.30.2 + rollup: 3.28.0 + typescript: 5.1.6 optionalDependencies: - '@babel/code-frame': 7.21.4 + '@babel/code-frame': 7.22.10 dev: true - /rollup@3.20.6: - resolution: {integrity: sha512-2yEB3nQXp/tBQDN0hJScJQheXdvU2wFhh6ld7K/aiZ1vYcak6N/BKjY1QrU6BvO2JWYS8bEs14FRaxXosxy2zw==} + /rollup@3.28.0: + resolution: {integrity: sha512-d7zhvo1OUY2SXSM6pfNjgD5+d0Nz87CUp4mt8l/GgVP3oBsPwzNvSzyu1me6BSG9JIgWNTVcafIXBIyM8yQ3yw==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: @@ -3243,36 +3493,46 @@ packages: queue-microtask: 1.2.3 dev: true + /safe-array-concat@1.0.0: + resolution: {integrity: sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==} + engines: {node: '>=0.4'} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + has-symbols: 1.0.3 + isarray: 2.0.5 + dev: true + /safe-regex-test@1.0.0: resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.2.0 + get-intrinsic: 1.2.1 is-regex: 1.1.4 dev: true /safe-regex@2.1.1: resolution: {integrity: sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A==} dependencies: - regexp-tree: 0.1.25 + regexp-tree: 0.1.27 dev: true /scule@1.0.0: resolution: {integrity: sha512-4AsO/FrViE/iDNEPaAQlb77tf0csuq27EsVpy6ett584EcRTp6pTDLoGWVxCD77y5iU5FauOvhsI4o1APwPoSQ==} dev: true - /semver@5.7.1: - resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} + /semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} hasBin: true dev: true - /semver@6.3.0: - resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} + /semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true dev: true - /semver@7.5.0: - resolution: {integrity: sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==} + /semver@7.5.4: + resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} engines: {node: '>=10'} hasBin: true dependencies: @@ -3295,7 +3555,7 @@ packages: resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.2.0 + get-intrinsic: 1.2.1 object-inspect: 1.12.3 dev: true @@ -3353,17 +3613,8 @@ packages: resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} dev: true - /std-env@3.3.2: - resolution: {integrity: sha512-uUZI65yrV2Qva5gqE0+A7uVAvO40iPo6jGhs7s8keRfHCmtg+uB2X6EiLGCI9IgL1J17xGhvoOqSz79lzICPTA==} - dev: true - - /string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} - dependencies: - emoji-regex: 8.0.0 - is-fullwidth-code-point: 3.0.0 - strip-ansi: 6.0.1 + /std-env@3.3.3: + resolution: {integrity: sha512-Rz6yejtVyWnVjC1RFvNmYL10kgjC49EOghxWn0RFqlCHGFpQx+Xe7yW3I4ceK1SGrWIGMjD5Kbue8W/udkbMJg==} dev: true /string.prototype.trim@1.2.7: @@ -3372,7 +3623,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.2.0 - es-abstract: 1.21.2 + es-abstract: 1.22.1 dev: true /string.prototype.trimend@1.0.6: @@ -3380,7 +3631,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.2.0 - es-abstract: 1.21.2 + es-abstract: 1.22.1 dev: true /string.prototype.trimstart@1.0.6: @@ -3388,7 +3639,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.2.0 - es-abstract: 1.21.2 + es-abstract: 1.22.1 dev: true /strip-ansi@6.0.1: @@ -3425,10 +3676,10 @@ packages: engines: {node: '>=8'} dev: true - /strip-literal@1.0.1: - resolution: {integrity: sha512-QZTsipNpa2Ppr6v1AmJHESqJ3Uz247MUS0OjrnnZjFAvEoWqxuyFuXn2xLgMtRnijJShAa1HL0gtJyUs7u7n3Q==} + /strip-literal@1.3.0: + resolution: {integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==} dependencies: - acorn: 8.8.2 + acorn: 8.10.0 dev: true /supports-color@5.5.0: @@ -3450,26 +3701,18 @@ packages: engines: {node: '>= 0.4'} dev: true - /synckit@0.8.5: - resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==} - engines: {node: ^14.18.0 || >=16.0.0} - dependencies: - '@pkgr/utils': 2.3.1 - tslib: 2.5.0 - dev: true - /tapable@2.2.1: resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} engines: {node: '>=6'} dev: true - /tar@6.1.13: - resolution: {integrity: sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==} + /tar@6.1.15: + resolution: {integrity: sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==} engines: {node: '>=10'} dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 - minipass: 4.2.8 + minipass: 5.0.0 minizlib: 2.1.2 mkdirp: 1.0.4 yallist: 4.0.0 @@ -3488,29 +3731,17 @@ packages: resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} dev: true - /time-zone@1.0.0: - resolution: {integrity: sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA==} - engines: {node: '>=4'} - dev: true - - /tiny-glob@0.2.9: - resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} - dependencies: - globalyzer: 0.1.0 - globrex: 0.1.2 + /tinybench@2.5.0: + resolution: {integrity: sha512-kRwSG8Zx4tjF9ZiyH4bhaebu+EDz1BOx9hOigYHlUW4xxI/wKIUQUqo018UlU4ar6ATPBsaMrdbKZ+tmPdohFA==} dev: true - /tinybench@2.4.0: - resolution: {integrity: sha512-iyziEiyFxX4kyxSp+MtY1oCH/lvjH3PxFN8PGCDeqcZWAJ/i+9y+nL85w99PxVzrIvew/GSkSbDYtiGVa85Afg==} - dev: true - - /tinypool@0.4.0: - resolution: {integrity: sha512-2ksntHOKf893wSAH4z/+JbPpi92esw8Gn9N2deXX+B0EO92hexAVI9GIZZPx7P5aYo5KULfeOSt3kMOmSOy6uA==} + /tinypool@0.7.0: + resolution: {integrity: sha512-zSYNUlYSMhJ6Zdou4cJwo/p7w5nmAH17GRfU/ui3ctvjXFErXXkruT4MWW6poDeXgCaIBlGLrfU6TbTXxyGMww==} engines: {node: '>=14.0.0'} dev: true - /tinyspy@2.1.0: - resolution: {integrity: sha512-7eORpyqImoOvkQJCSkL0d0mB4NHHIFAy4b1u8PHdDa7SjGS2njzl6/lyGoZLm+eyYEtlUmFGE0rFj66SWxZgQQ==} + /tinyspy@2.1.1: + resolution: {integrity: sha512-XPJL2uSzcOyBMky6OFrusqWlzfFrXtE0hPuMgW8A2HmaqrPo4ZQHRN/V0QXN3FSjKxpsbRrFc5LI7KOwBsT1/w==} engines: {node: '>=14.0.0'} dev: true @@ -3544,18 +3775,14 @@ packages: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} dev: true - /tslib@2.5.0: - resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} - dev: true - - /tsutils@3.21.0(typescript@5.0.4): + /tsutils@3.21.0(typescript@5.1.6): resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 5.0.4 + typescript: 5.1.6 dev: true /type-check@0.4.0: @@ -3585,22 +3812,52 @@ packages: engines: {node: '>=8'} dev: true + /typed-array-buffer@1.0.0: + resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + is-typed-array: 1.1.12 + dev: true + + /typed-array-byte-length@1.0.0: + resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + for-each: 0.3.3 + has-proto: 1.0.1 + is-typed-array: 1.1.12 + dev: true + + /typed-array-byte-offset@1.0.0: + resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + for-each: 0.3.3 + has-proto: 1.0.1 + is-typed-array: 1.1.12 + dev: true + /typed-array-length@1.0.4: resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} dependencies: call-bind: 1.0.2 for-each: 0.3.3 - is-typed-array: 1.1.10 + is-typed-array: 1.1.12 dev: true - /typescript@5.0.4: - resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==} - engines: {node: '>=12.20'} + /typescript@5.1.6: + resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==} + engines: {node: '>=14.17'} hasBin: true dev: true - /ufo@1.1.1: - resolution: {integrity: sha512-MvlCc4GHrmZdAllBc0iUDowff36Q9Ndw/UzqmEKyrfSzokTd9ZCy1i+IIk5hrYKkjoYVQyNbrw7/F8XJ2rEwTg==} + /ufo@1.2.0: + resolution: {integrity: sha512-RsPyTbqORDNDxqAdQPQBpgqhWle1VcTSou/FraClYlHf6TZnQcGslpLcAphNR+sQW4q5lLWLbOsRlh9j24baQg==} dev: true /unbox-primitive@1.0.2: @@ -3616,31 +3873,31 @@ packages: resolution: {integrity: sha512-J4efk69Aye43tWcBPCsLK7TIRppGrEN4pAlDzRKo3HSE6MgTSTBxSEuE3ccx7ixc62JvGQ/CoFXYqqF2AHozow==} hasBin: true dependencies: - '@rollup/plugin-alias': 5.0.0(rollup@3.20.6) - '@rollup/plugin-commonjs': 24.1.0(rollup@3.20.6) - '@rollup/plugin-json': 6.0.0(rollup@3.20.6) - '@rollup/plugin-node-resolve': 15.0.2(rollup@3.20.6) - '@rollup/plugin-replace': 5.0.2(rollup@3.20.6) - '@rollup/pluginutils': 5.0.2(rollup@3.20.6) - chalk: 5.2.0 - consola: 3.1.0 + '@rollup/plugin-alias': 5.0.0(rollup@3.28.0) + '@rollup/plugin-commonjs': 24.1.0(rollup@3.28.0) + '@rollup/plugin-json': 6.0.0(rollup@3.28.0) + '@rollup/plugin-node-resolve': 15.1.0(rollup@3.28.0) + '@rollup/plugin-replace': 5.0.2(rollup@3.28.0) + '@rollup/pluginutils': 5.0.2(rollup@3.28.0) + chalk: 5.3.0 + consola: 3.2.3 defu: 6.1.2 - esbuild: 0.17.17 - globby: 13.1.4 + esbuild: 0.17.19 + globby: 13.2.2 hookable: 5.5.3 - jiti: 1.18.2 - magic-string: 0.30.0 - mkdist: 1.2.0(typescript@5.0.4) - mlly: 1.2.0 + jiti: 1.19.1 + magic-string: 0.30.2 + mkdist: 1.3.0(typescript@5.1.6) + mlly: 1.4.0 mri: 1.2.0 - pathe: 1.1.0 - pkg-types: 1.0.2 - pretty-bytes: 6.1.0 - rollup: 3.20.6 - rollup-plugin-dts: 5.3.0(rollup@3.20.6)(typescript@5.0.4) + pathe: 1.1.1 + pkg-types: 1.0.3 + pretty-bytes: 6.1.1 + rollup: 3.28.0 + rollup-plugin-dts: 5.3.1(rollup@3.28.0)(typescript@5.1.6) scule: 1.0.0 - typescript: 5.0.4 - untyped: 1.3.2 + typescript: 5.1.6 + untyped: 1.4.0 transitivePeerDependencies: - sass - supports-color @@ -3656,28 +3913,28 @@ packages: engines: {node: '>=8'} dev: true - /untyped@1.3.2: - resolution: {integrity: sha512-z219Z65rOGD6jXIvIhpZFfwWdqQckB8sdZec2NO+TkcH1Bph7gL0hwLzRJs1KsOo4Jz4mF9guBXhsEnyEBGVfw==} + /untyped@1.4.0: + resolution: {integrity: sha512-Egkr/s4zcMTEuulcIb7dgURS6QpN7DyqQYdf+jBtiaJvQ+eRsrtWUoX84SbvQWuLkXsOjM+8sJC9u6KoMK/U7Q==} hasBin: true dependencies: - '@babel/core': 7.21.4 - '@babel/standalone': 7.21.4 - '@babel/types': 7.21.4 + '@babel/core': 7.22.10 + '@babel/standalone': 7.22.10 + '@babel/types': 7.22.10 defu: 6.1.2 - jiti: 1.18.2 + jiti: 1.19.1 mri: 1.2.0 scule: 1.0.0 transitivePeerDependencies: - supports-color dev: true - /update-browserslist-db@1.0.11(browserslist@4.21.5): + /update-browserslist-db@1.0.11(browserslist@4.21.10): resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' dependencies: - browserslist: 4.21.5 + browserslist: 4.21.10 escalade: 3.1.1 picocolors: 1.0.0 dev: true @@ -3692,7 +3949,7 @@ packages: resolution: {integrity: sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==} engines: {node: '>=10.12.0'} dependencies: - '@jridgewell/trace-mapping': 0.3.18 + '@jridgewell/trace-mapping': 0.3.19 '@types/istanbul-lib-coverage': 2.0.4 convert-source-map: 1.9.0 dev: true @@ -3704,20 +3961,21 @@ packages: spdx-expression-parse: 3.0.1 dev: true - /vite-node@0.30.1(@types/node@18.15.13): - resolution: {integrity: sha512-vTikpU/J7e6LU/8iM3dzBo8ZhEiKZEKRznEMm+mJh95XhWaPrJQraT/QsT2NWmuEf+zgAoMe64PKT7hfZ1Njmg==} + /vite-node@0.34.1(@types/node@20.4.9): + resolution: {integrity: sha512-odAZAL9xFMuAg8aWd7nSPT+hU8u2r9gU3LRm9QKjxBEF2rRdWpMuqkrkjvyVQEdNFiBctqr2Gg4uJYizm5Le6w==} engines: {node: '>=v14.18.0'} hasBin: true dependencies: cac: 6.7.14 debug: 4.3.4 - mlly: 1.2.0 - pathe: 1.1.0 + mlly: 1.4.0 + pathe: 1.1.1 picocolors: 1.0.0 - vite: 4.2.2(@types/node@18.15.13) + vite: 4.4.9(@types/node@20.4.9) transitivePeerDependencies: - '@types/node' - less + - lightningcss - sass - stylus - sugarss @@ -3725,13 +3983,14 @@ packages: - terser dev: true - /vite@4.2.2(@types/node@18.15.13): - resolution: {integrity: sha512-PcNtT5HeDxb3QaSqFYkEum8f5sCVe0R3WK20qxgIvNBZPXU/Obxs/+ubBMeE7nLWeCo2LDzv+8hRYSlcaSehig==} + /vite@4.4.9(@types/node@20.4.9): + resolution: {integrity: sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: '@types/node': '>= 14' less: '*' + lightningcss: ^1.21.0 sass: '*' stylus: '*' sugarss: '*' @@ -3741,6 +4000,8 @@ packages: optional: true less: optional: true + lightningcss: + optional: true sass: optional: true stylus: @@ -3750,17 +4011,16 @@ packages: terser: optional: true dependencies: - '@types/node': 18.15.13 - esbuild: 0.17.17 - postcss: 8.4.22 - resolve: 1.22.2 - rollup: 3.20.6 + '@types/node': 20.4.9 + esbuild: 0.18.20 + postcss: 8.4.27 + rollup: 3.28.0 optionalDependencies: fsevents: 2.3.2 dev: true - /vitest@0.30.1: - resolution: {integrity: sha512-y35WTrSTlTxfMLttgQk4rHcaDkbHQwDP++SNwPb+7H8yb13Q3cu2EixrtHzF27iZ8v0XCciSsLg00RkPAzB/aA==} + /vitest@0.34.1: + resolution: {integrity: sha512-G1PzuBEq9A75XSU88yO5G4vPT20UovbC/2osB2KEuV/FisSIIsw7m5y2xMdB7RsAGHAfg2lPmp2qKr3KWliVlQ==} engines: {node: '>=v14.18.0'} hasBin: true peerDependencies: @@ -3790,34 +4050,33 @@ packages: webdriverio: optional: true dependencies: - '@types/chai': 4.3.4 + '@types/chai': 4.3.5 '@types/chai-subset': 1.3.3 - '@types/node': 18.15.13 - '@vitest/expect': 0.30.1 - '@vitest/runner': 0.30.1 - '@vitest/snapshot': 0.30.1 - '@vitest/spy': 0.30.1 - '@vitest/utils': 0.30.1 - acorn: 8.8.2 + '@types/node': 20.4.9 + '@vitest/expect': 0.34.1 + '@vitest/runner': 0.34.1 + '@vitest/snapshot': 0.34.1 + '@vitest/spy': 0.34.1 + '@vitest/utils': 0.34.1 + acorn: 8.10.0 acorn-walk: 8.2.0 cac: 6.7.14 chai: 4.3.7 - concordance: 5.0.4 debug: 4.3.4 local-pkg: 0.4.3 - magic-string: 0.30.0 - pathe: 1.1.0 + magic-string: 0.30.2 + pathe: 1.1.1 picocolors: 1.0.0 - source-map: 0.6.1 - std-env: 3.3.2 - strip-literal: 1.0.1 - tinybench: 2.4.0 - tinypool: 0.4.0 - vite: 4.2.2(@types/node@18.15.13) - vite-node: 0.30.1(@types/node@18.15.13) + std-env: 3.3.3 + strip-literal: 1.3.0 + tinybench: 2.5.0 + tinypool: 0.7.0 + vite: 4.4.9(@types/node@20.4.9) + vite-node: 0.34.1(@types/node@20.4.9) why-is-node-running: 2.2.2 transitivePeerDependencies: - less + - lightningcss - sass - stylus - sugarss @@ -3825,11 +4084,6 @@ packages: - terser dev: true - /well-known-symbols@2.0.0: - resolution: {integrity: sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==} - engines: {node: '>=6'} - dev: true - /which-boxed-primitive@1.0.2: resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} dependencies: @@ -3840,8 +4094,8 @@ packages: is-symbol: 1.0.4 dev: true - /which-typed-array@1.1.9: - resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} + /which-typed-array@1.1.11: + resolution: {integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==} engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.5 @@ -3849,7 +4103,6 @@ packages: for-each: 0.3.3 gopd: 1.0.1 has-tostringtag: 1.0.0 - is-typed-array: 1.1.10 dev: true /which@2.0.2: @@ -3869,29 +4122,10 @@ packages: stackback: 0.0.2 dev: true - /word-wrap@1.2.3: - resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} - engines: {node: '>=0.10.0'} - dev: true - - /wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: '>=10'} - dependencies: - ansi-styles: 4.3.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - dev: true - /wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} dev: true - /y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} - dev: true - /yallist@3.1.1: resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} dev: true @@ -3900,29 +4134,11 @@ packages: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} dev: true - /yaml@2.2.1: - resolution: {integrity: sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==} + /yaml@2.3.1: + resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==} engines: {node: '>= 14'} dev: true - /yargs-parser@20.2.9: - resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} - engines: {node: '>=10'} - dev: true - - /yargs@16.2.0: - resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} - engines: {node: '>=10'} - dependencies: - cliui: 7.0.4 - escalade: 3.1.1 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - string-width: 4.2.3 - y18n: 5.0.8 - yargs-parser: 20.2.9 - dev: true - /yocto-queue@0.1.0: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} From cd4206495c3a12e43802869bd6183b830b86172c Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Thu, 10 Aug 2023 12:40:55 +0200 Subject: [PATCH 12/19] chore: lint repo --- .eslintrc | 4 +--- benchmark/object-hash.mjs | 2 +- renovate.json | 4 +--- src/crypto/core.ts | 2 +- src/crypto/murmur.ts | 9 ++++++--- src/crypto/sha256.ts | 2 +- src/diff.ts | 27 +++++++++++++++------------ src/object-hash.ts | 18 ++++++++---------- src/utils.ts | 2 +- test/index.test.ts | 18 +++++++++--------- tsconfig.json | 8 ++------ 11 files changed, 46 insertions(+), 50 deletions(-) diff --git a/.eslintrc b/.eslintrc index 88c1cbb..7d362ca 100644 --- a/.eslintrc +++ b/.eslintrc @@ -1,7 +1,5 @@ { - "extends": [ - "eslint-config-unjs" - ], + "extends": ["eslint-config-unjs"], "rules": { "unicorn/no-null": 0, "unicorn/prevent-abbreviations": 0, diff --git a/benchmark/object-hash.mjs b/benchmark/object-hash.mjs index 6c0a770..f328f22 100644 --- a/benchmark/object-hash.mjs +++ b/benchmark/object-hash.mjs @@ -1,6 +1,6 @@ import Benchmark from "benchmark"; import { objectHash } from "ohash"; -import largeJson from './fixture/large.mjs' +import largeJson from "./fixture/large.mjs"; function generateItems(num) { return new Array(num).fill(0).map(() => { diff --git a/renovate.json b/renovate.json index a9971c8..57fe916 100644 --- a/renovate.json +++ b/renovate.json @@ -1,5 +1,3 @@ { - "extends": [ - "github>unjs/renovate-config" - ] + "extends": ["github>unjs/renovate-config"] } diff --git a/src/crypto/core.ts b/src/crypto/core.ts index 9b7173c..4216dce 100644 --- a/src/crypto/core.ts +++ b/src/crypto/core.ts @@ -7,7 +7,7 @@ export class WordArray { constructor(words?, sigBytes?) { words = this.words = words || []; - this.sigBytes = sigBytes !== undefined ? sigBytes : words.length * 4; + this.sigBytes = sigBytes === undefined ? words.length * 4 : sigBytes; } toString(encoder?): string { diff --git a/src/crypto/murmur.ts b/src/crypto/murmur.ts index 9e5fdb6..0462722 100644 --- a/src/crypto/murmur.ts +++ b/src/crypto/murmur.ts @@ -48,13 +48,15 @@ export function murmurHash(key: Uint8Array | string, seed = 0) { k1 = 0; switch (remainder) { - case 3: + case 3: { k1 ^= (key[i + 2] & 0xff) << 16; break; - case 2: + } + case 2: { k1 ^= (key[i + 1] & 0xff) << 8; break; - case 1: + } + case 1: { k1 ^= key[i] & 0xff; k1 = ((k1 & 0xff_ff) * c1 + ((((k1 >>> 16) * c1) & 0xff_ff) << 16)) & @@ -64,6 +66,7 @@ export function murmurHash(key: Uint8Array | string, seed = 0) { ((k1 & 0xff_ff) * c2 + ((((k1 >>> 16) * c2) & 0xff_ff) << 16)) & 0xff_ff_ff_ff; h1 ^= k1; + } } h1 ^= key.length; diff --git a/src/crypto/sha256.ts b/src/crypto/sha256.ts index 8cd25fa..ec9471c 100644 --- a/src/crypto/sha256.ts +++ b/src/crypto/sha256.ts @@ -121,7 +121,7 @@ export class SHA256 extends Hasher { // Add padding this._data.words[nBitsLeft >>> 5] |= 0x80 << (24 - (nBitsLeft % 32)); this._data.words[(((nBitsLeft + 64) >>> 9) << 4) + 14] = Math.floor( - nBitsTotal / 0x1_00_00_00_00 + nBitsTotal / 0x1_00_00_00_00, ); this._data.words[(((nBitsLeft + 64) >>> 9) << 4) + 15] = nBitsTotal; this._data.sigBytes = this._data.words.length * 4; diff --git a/src/diff.ts b/src/diff.ts index 119f1ec..7aff80b 100644 --- a/src/diff.ts +++ b/src/diff.ts @@ -3,7 +3,7 @@ import { objectHash, HashOptions } from "./object-hash"; export function diff( obj1: any, obj2: any, - opts: HashOptions = {} + opts: HashOptions = {}, ): DiffEntry[] { const h1 = _toHashedObject(obj1, opts); const h2 = _toHashedObject(obj2, opts); @@ -13,7 +13,7 @@ export function diff( function _diff( h1: DiffHashedObject, h2: DiffHashedObject, - opts: HashOptions = {} + opts: HashOptions = {}, ): DiffEntry[] { const diffs = []; @@ -29,7 +29,7 @@ function _diff( diffs.push(..._diff(h1.props?.[prop], h2.props?.[prop], opts)); } else if (p1 || p2) { diffs.push( - new DiffEntry((p2 || p1).key, p1 ? "removed" : "added", p2, p1) + new DiffEntry((p2 || p1).key, p1 ? "removed" : "added", p2, p1), ); } } @@ -52,7 +52,7 @@ function _toHashedObject(obj, opts: HashOptions, key = ""): DiffHashedObject { props[_key] = _toHashedObject( obj[_key], opts, - key ? `${key}.${_key}` : _key + key ? `${key}.${_key}` : _key, ); hashes.push(props[_key].hash); } @@ -67,7 +67,7 @@ export class DiffEntry { public key: string, public type: "changed" | "added" | "removed", public newValue: DiffHashedObject, - public oldValue?: DiffHashedObject + public oldValue?: DiffHashedObject, ) {} toString() { @@ -76,14 +76,17 @@ export class DiffEntry { toJSON() { switch (this.type) { - case "added": + case "added": { return `[+] Added ${this.key}`; - case "removed": + } + case "removed": { return `[-] Removed ${this.key}`; - case "changed": + } + case "changed": { return `[~] Changed ${ this.key } from ${this.oldValue.toString()} to ${this.newValue.toString()}`; + } } } } @@ -94,14 +97,14 @@ export class DiffHashedObject { public key: string, public value: any, public hash?: string, - public props?: Record + public props?: Record, ) {} toString() { - if (!this.props) { - return JSON.stringify(this.value); - } else { + if (this.props) { return `{${Object.keys(this.props).join(",")}}`; + } else { + return JSON.stringify(this.value); } } diff --git a/src/object-hash.ts b/src/object-hash.ts index afa5de3..0b8ef32 100644 --- a/src/object-hash.ts +++ b/src/object-hash.ts @@ -65,10 +65,10 @@ const defaults: HashOptions = Object.freeze({ * @api public */ export function objectHash(object: any, options?: HashOptions): string { - if (!options) { - options = defaults; - } else { + if (options) { options = { ...defaults, ...options }; + } else { + options = defaults; } const hasher = createHasher(options); hasher.dispatch(object); @@ -124,10 +124,10 @@ function createHasher(options: HashOptions) { let objectNumber = null; - if ((objectNumber = context.get(object)) !== undefined) { - return this.dispatch("[CIRCULAR:" + objectNumber + "]"); - } else { + if ((objectNumber = context.get(object)) === undefined) { context.set(object, context.size); + } else { + return this.dispatch("[CIRCULAR:" + objectNumber + "]"); } if ( @@ -190,9 +190,7 @@ function createHasher(options: HashOptions) { }, array(arr, unordered) { unordered = - typeof unordered !== "undefined" - ? unordered - : options.unorderedArrays !== false; // default to options.unorderedArrays + unordered === undefined ? options.unorderedArrays !== false : unordered; // default to options.unorderedArrays write("array:" + arr.length + ":"); if (!unordered || arr.length <= 1) { @@ -343,7 +341,7 @@ function createHasher(options: HashOptions) { } throw new Error( "Hashing Blob objects is currently not supported\n" + - 'Use "options.replacer" or "options.ignoreUnknown"\n' + 'Use "options.replacer" or "options.ignoreUnknown"\n', ); }, domwindow() { diff --git a/src/utils.ts b/src/utils.ts index 128edac..d6c2e58 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -10,7 +10,7 @@ import { objectHash, HashOptions } from "./object-hash"; export function isEqual( object1: any, object2: any, - hashOptions: HashOptions = {} + hashOptions: HashOptions = {}, ): boolean { if (object1 === object2) { return true; diff --git a/test/index.test.ts b/test/index.test.ts index 20d3fdf..cb76e3b 100644 --- a/test/index.test.ts +++ b/test/index.test.ts @@ -5,9 +5,9 @@ import { sha256base64 } from "../src/crypto/sha256"; describe("objectHash", () => { it("basic object", () => { expect( - objectHash({ foo: "bar", bar: new Date(0), bool: false }) + objectHash({ foo: "bar", bar: new Date(0), bool: false }), ).toMatchInlineSnapshot( - '"object:3:string:3:bar:string:24:1970-01-01T00:00:00.000Z,string:4:bool:bool:false,string:3:foo:string:3:bar,"' + '"object:3:string:3:bar:string:24:1970-01-01T00:00:00.000Z,string:4:bool:bool:false,string:3:foo:string:3:bar,"', ); }); @@ -17,7 +17,7 @@ describe("objectHash", () => { form.set("bar", "baz"); expect(objectHash(form)).toMatchInlineSnapshot( - '"formdata:array:2:array:2:string:32:array:2:string:3:barstring:3:bazstring:32:array:2:string:3:foostring:3:bar"' + '"formdata:array:2:array:2:string:32:array:2:string:3:barstring:3:bazstring:32:array:2:string:3:foostring:3:bar"', ); }); @@ -29,7 +29,7 @@ describe("objectHash", () => { } expect(objectHash(new Test())).toMatchInlineSnapshot( - '"object:2:string:3:bar:string:3:baz,string:3:foo:string:3:bar,"' + '"object:2:string:3:bar:string:3:baz,string:3:foo:string:3:bar,"', ); }); }); @@ -40,19 +40,19 @@ it("murmurHash", () => { it("sha256", () => { expect(sha256("Hello World")).toMatchInlineSnapshot( - '"a591a6d40bf420404a011733cfb7b190d62c65bf0bcda32b57b277d9ad9f146e"' + '"a591a6d40bf420404a011733cfb7b190d62c65bf0bcda32b57b277d9ad9f146e"', ); expect(sha256("")).toMatchInlineSnapshot( - '"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"' + '"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"', ); }); it("sha256base64", () => { expect(sha256base64("Hello World")).toMatchInlineSnapshot( - '"pZGm1Av0IEBKARczz7exkNYsZb8LzaMrV7J32a2fFG4"' + '"pZGm1Av0IEBKARczz7exkNYsZb8LzaMrV7J32a2fFG4"', ); expect(sha256base64("")).toMatchInlineSnapshot( - '"47DEQpj8HBSaTImW5JCeuQeRkm5NMpJWZG3hSuFU"' + '"47DEQpj8HBSaTImW5JCeuQeRkm5NMpJWZG3hSuFU"', ); }); @@ -90,7 +90,7 @@ describe("diff", () => { baz: "123", }, }, - } as any); + }) as any; it("simple", () => { const obj1 = createObject(); diff --git a/tsconfig.json b/tsconfig.json index 49cb36b..984e21c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,11 +4,7 @@ "module": "ESNext", "moduleResolution": "Node", "esModuleInterop": true, - "types": [ - "node" - ] + "types": ["node"] }, - "include": [ - "src" - ] + "include": ["src"] } From af19f819d1977b9f74fb1539cdd8df7fce37a2a5 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Thu, 10 Aug 2023 12:40:59 +0200 Subject: [PATCH 13/19] chore: add autofix ci --- .github/workflows/autofix.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/autofix.yml diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml new file mode 100644 index 0000000..b3142e8 --- /dev/null +++ b/.github/workflows/autofix.yml @@ -0,0 +1,26 @@ +name: autofix.ci # needed to securely identify the workflow + +on: + pull_request: + push: + branches: ["main"] + +permissions: + contents: read + +jobs: + autofix: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - run: corepack enable + - uses: actions/setup-node@v3 + with: + node-version: 18 + cache: "pnpm" + - run: pnpm install + - name: Fix lint issues + run: pnpm run lint:fix + - uses: autofix-ci/action@8caa572fd27b0019a65e4c695447089c8d3138b9 + with: + commit-message: "chore: apply automated lint fixes" From 06c67aa1bdc477bfda61b668e1ea502803d9d19b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 10 Aug 2023 12:41:44 +0200 Subject: [PATCH 14/19] chore(deps): update pnpm to v8.6.12 (#42) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index d9dc286..aa902ae 100644 --- a/package.json +++ b/package.json @@ -41,5 +41,5 @@ "unbuild": "^1.2.1", "vitest": "^0.34.1" }, - "packageManager": "pnpm@8.3.1" + "packageManager": "pnpm@8.6.12" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1471159..624a610 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,5 +1,9 @@ lockfileVersion: '6.0' +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + devDependencies: '@types/node': specifier: ^20.4.9 From b04d6028b1fe3f7798e00861dba22a8aba703a27 Mon Sep 17 00:00:00 2001 From: Owen Kieffer-Jones Date: Thu, 10 Aug 2023 12:42:43 +0200 Subject: [PATCH 15/19] docs: improve jsdoc for `objectHash()` (#43) --- src/object-hash.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/object-hash.ts b/src/object-hash.ts index 0b8ef32..fe78231 100644 --- a/src/object-hash.ts +++ b/src/object-hash.ts @@ -58,10 +58,10 @@ const defaults: HashOptions = Object.freeze({ }); /** - * Hash any JS value into a string with murmur v3 hash + * Serialize any JS value into a stable, hashable string * @param {object} object value to hash * @param {HashOptions} options hashing options - * @return {string} hash value + * @return {string} serialized value * @api public */ export function objectHash(object: any, options?: HashOptions): string { From 68a34293dc1023b6caa43d22a979e284ecee5834 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Thu, 10 Aug 2023 12:44:28 +0200 Subject: [PATCH 16/19] chore: fix ts issue --- src/object-hash.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/object-hash.ts b/src/object-hash.ts index fe78231..3ab7d38 100644 --- a/src/object-hash.ts +++ b/src/object-hash.ts @@ -154,7 +154,7 @@ function createHasher(options: HashOptions) { if (options.unorderedObjects) { keys = keys.sort(); } - let extraKeys = []; + let extraKeys = [] as readonly string[]; // 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. From 2ed5b6720156439db69ced8ed4a2b78749342d1c Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Thu, 10 Aug 2023 13:01:17 +0200 Subject: [PATCH 17/19] chore: enable strict type checking --- .github/workflows/ci.yml | 1 + package.json | 3 +- src/crypto/core.ts | 27 ++++++--------- src/crypto/sha256.ts | 13 +++----- src/diff.ts | 12 ++++--- src/object-hash.ts | 72 +++++++++++++++++++++------------------- tsconfig.json | 3 +- 7 files changed, 66 insertions(+), 65 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e8c6141..1e1e519 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,7 @@ jobs: cache: "pnpm" - run: pnpm install - run: pnpm lint + - run: pnpm typecheck - run: pnpm build - run: pnpm vitest --coverage - uses: codecov/codecov-action@v3 diff --git a/package.json b/package.json index aa902ae..2834379 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,8 @@ "prepack": "unbuild", "release": "pnpm test && changelogen --release --push && pnpm publish", "benchmark": "node benchmark/object-hash.mjs", - "test": "pnpm lint && vitest run" + "test": "pnpm lint && vitest run && pnpm typecheck", + "typecheck": "tsc --noEmit" }, "devDependencies": { "@types/node": "^20.4.9", diff --git a/src/crypto/core.ts b/src/crypto/core.ts index 4216dce..087b298 100644 --- a/src/crypto/core.ts +++ b/src/crypto/core.ts @@ -4,13 +4,13 @@ export class WordArray { words: number[]; sigBytes: number; - constructor(words?, sigBytes?) { + constructor(words?: number[], sigBytes?: number) { words = this.words = words || []; this.sigBytes = sigBytes === undefined ? words.length * 4 : sigBytes; } - toString(encoder?): string { + toString(encoder?: typeof Hex): string { return (encoder || Hex).stringify(this); } @@ -86,12 +86,12 @@ export const Base64 = { }; export const Latin1 = { - parse(latin1Str) { + parse(latin1Str: string) { // Shortcut const latin1StrLength = latin1Str.length; // Convert - const words = []; + const words: number[] = []; for (let i = 0; i < latin1StrLength; i++) { words[i >>> 2] |= (latin1Str.charCodeAt(i) & 0xff) << (24 - (i % 4) * 8); } @@ -101,28 +101,23 @@ export const Latin1 = { }; export const Utf8 = { - parse(utf8Str) { + parse(utf8Str: string) { return Latin1.parse(unescape(encodeURIComponent(utf8Str))); }, }; export class BufferedBlockAlgorithm { - _data: WordArray; - _nDataBytes: number; + _data = new WordArray(); + _nDataBytes = 0; _minBufferSize = 0; blockSize = 512 / 32; - constructor() { - this.reset(); - } - reset() { - // Initial values this._data = new WordArray(); this._nDataBytes = 0; } - _append(data) { + _append(data: string | WordArray) { // Convert string to WordArray, else assume WordArray already if (typeof data === "string") { data = Utf8.parse(data); @@ -134,7 +129,7 @@ export class BufferedBlockAlgorithm { } // eslint-disable-next-line @typescript-eslint/no-unused-vars - _doProcessBlock(_dataWords, _offset) {} + _doProcessBlock(_dataWords: any, _offset: any) {} _process(doFlush?: boolean) { let processedWords; @@ -174,7 +169,7 @@ export class BufferedBlockAlgorithm { } export class Hasher extends BufferedBlockAlgorithm { - update(messageUpdate) { + update(messageUpdate: string) { // Append this._append(messageUpdate); @@ -185,7 +180,7 @@ export class Hasher extends BufferedBlockAlgorithm { return this; } - finalize(messageUpdate) { + finalize(messageUpdate: string) { // Final message update if (messageUpdate) { this._append(messageUpdate); diff --git a/src/crypto/sha256.ts b/src/crypto/sha256.ts index ec9471c..d56f306 100644 --- a/src/crypto/sha256.ts +++ b/src/crypto/sha256.ts @@ -24,25 +24,20 @@ const K = [ ]; // Reusable object -const W = []; +const W: number[] = []; /** * SHA-256 hash algorithm. */ export class SHA256 extends Hasher { - _hash: WordArray; - - constructor() { - super(); - this.reset(); - } + _hash = new WordArray([...H]); reset() { super.reset(); this._hash = new WordArray([...H]); } - _doProcessBlock(M, offset) { + _doProcessBlock(M: number[], offset: number) { // Shortcut const H = this._hash.words; @@ -112,7 +107,7 @@ export class SHA256 extends Hasher { H[7] = (H[7] + h) | 0; } - finalize(messageUpdate) { + finalize(messageUpdate: string): WordArray { super.finalize(messageUpdate); const nBitsTotal = this._nDataBytes * 8; diff --git a/src/diff.ts b/src/diff.ts index 7aff80b..d850bfc 100644 --- a/src/diff.ts +++ b/src/diff.ts @@ -42,7 +42,11 @@ function _diff( return diffs; } -function _toHashedObject(obj, opts: HashOptions, key = ""): DiffHashedObject { +function _toHashedObject( + obj: any, + opts: HashOptions, + key = "", +): DiffHashedObject { if (obj && typeof obj !== "object") { return new DiffHashedObject(key, obj, objectHash(obj, opts)); } @@ -83,9 +87,9 @@ export class DiffEntry { return `[-] Removed ${this.key}`; } case "changed": { - return `[~] Changed ${ - this.key - } from ${this.oldValue.toString()} to ${this.newValue.toString()}`; + return `[~] Changed ${this.key} from ${ + this.oldValue?.toString() || "-" + } to ${this.newValue.toString()}`; } } } diff --git a/src/object-hash.ts b/src/object-hash.ts index 3ab7d38..638d2c8 100644 --- a/src/object-hash.ts +++ b/src/object-hash.ts @@ -95,14 +95,14 @@ function createHasher(options: HashOptions) { getContext() { return context; }, - dispatch(value) { + dispatch(value: any): string | void { if (options.replacer) { value = options.replacer(value); } const type = value === null ? "null" : typeof value; return this[type](value); }, - object(object) { + object(object: any): string | void { if (object && typeof object.toJSON === "function") { return this.object(object.toJSON()); } @@ -144,7 +144,9 @@ function createHasher(options: HashOptions) { objType !== "function" && objType !== "asyncfunction" ) { + // @ts-ignore if (this[objType]) { + // @ts-ignore this[objType](object); } else if (!options.ignoreUnknown) { this.unkown(object, objType); @@ -163,16 +165,18 @@ function createHasher(options: HashOptions) { } if (options.excludeKeys) { - keys = keys.filter(function (key) { - return !options.excludeKeys(key); + keys = keys.filter((key) => { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + return !options.excludeKeys!(key); }); - extraKeys = extraKeys.filter(function (key) { - return !options.excludeKeys(key); + extraKeys = extraKeys.filter((key) => { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + return !options.excludeKeys!(key); }); } write("object:" + (keys.length + extraKeys.length) + ":"); - const dispatchForKey = (key) => { + const dispatchForKey = (key: string) => { this.dispatch(key); write(":"); if (!options.excludeValues) { @@ -188,7 +192,7 @@ function createHasher(options: HashOptions) { } } }, - array(arr, unordered) { + array(arr: any, unordered: boolean): string | void { unordered = unordered === undefined ? options.unorderedArrays !== false : unordered; // default to options.unorderedArrays @@ -206,7 +210,7 @@ function createHasher(options: HashOptions) { // 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 const contextAdditions = new Map(); - const entries = arr.map((entry) => { + const entries = arr.map((entry: any) => { const hasher = createHasher(options); hasher.dispatch(entry); for (const [key, value] of hasher.getContext()) { @@ -218,10 +222,10 @@ function createHasher(options: HashOptions) { entries.sort(); return this.array(entries, false); }, - date(date) { + date(date: any) { return write("date:" + date.toJSON()); }, - symbol(sym) { + symbol(sym: any) { return write("symbol:" + sym.toString()); }, unkown(value: any, type: string) { @@ -234,17 +238,17 @@ function createHasher(options: HashOptions) { return this.array(Array.from(value.entries()), true /* ordered */); } }, - error(err) { + error(err: any) { return write("error:" + err.toString()); }, - boolean(bool) { + boolean(bool: any) { return write("bool:" + bool); }, - string(string) { + string(string: any) { write("string:" + string.length + ":"); write(string); }, - function(fn) { + function(fn: any) { write("fn:"); if (isNativeFunction(fn)) { this.dispatch("[native]"); @@ -263,10 +267,10 @@ function createHasher(options: HashOptions) { this.object(fn); } }, - number(number) { + number(number: any) { return write("number:" + number); }, - xml(xml) { + xml(xml: any) { return write("xml:" + xml.toString()); }, null() { @@ -275,63 +279,63 @@ function createHasher(options: HashOptions) { undefined() { return write("Undefined"); }, - regexp(regex) { + regexp(regex: any) { return write("regex:" + regex.toString()); }, - uint8array(arr) { + uint8array(arr: any) { write("uint8array:"); return this.dispatch(Array.prototype.slice.call(arr)); }, - uint8clampedarray(arr) { + uint8clampedarray(arr: any) { write("uint8clampedarray:"); return this.dispatch(Array.prototype.slice.call(arr)); }, - int8array(arr) { + int8array(arr: any) { write("int8array:"); return this.dispatch(Array.prototype.slice.call(arr)); }, - uint16array(arr) { + uint16array(arr: any) { write("uint16array:"); return this.dispatch(Array.prototype.slice.call(arr)); }, - int16array(arr) { + int16array(arr: any) { write("int16array:"); return this.dispatch(Array.prototype.slice.call(arr)); }, - uint32array(arr) { + uint32array(arr: any) { write("uint32array:"); return this.dispatch(Array.prototype.slice.call(arr)); }, - int32array(arr) { + int32array(arr: any) { write("int32array:"); return this.dispatch(Array.prototype.slice.call(arr)); }, - float32array(arr) { + float32array(arr: any) { write("float32array:"); return this.dispatch(Array.prototype.slice.call(arr)); }, - float64array(arr) { + float64array(arr: any) { write("float64array:"); return this.dispatch(Array.prototype.slice.call(arr)); }, - arraybuffer(arr) { + arraybuffer(arr: any) { write("arraybuffer:"); return this.dispatch(new Uint8Array(arr)); }, - url(url) { + url(url: any) { return write("url:" + url.toString()); }, - map(map) { + map(map: any) { write("map:"); const arr = [...map]; return this.array(arr, options.unorderedSets !== false); }, - set(set) { + set(set: any) { write("set:"); const arr = [...set]; return this.array(arr, options.unorderedSets !== false); }, - file(file) { + file(file: any) { write("file:"); return this.dispatch([file.name, file.size, file.type, file.lastModfied]); }, @@ -347,7 +351,7 @@ function createHasher(options: HashOptions) { domwindow() { return write("domwindow"); }, - bigint(number) { + bigint(number: number) { return write("bigint:" + number.toString()); }, /* Node.js standard native objects */ @@ -409,7 +413,7 @@ const nativeFunc = "[native code] }"; const nativeFuncLength = nativeFunc.length; /** Check if the given function is a native function */ -function isNativeFunction(f) { +function isNativeFunction(f: any) { if (typeof f !== "function") { return false; } diff --git a/tsconfig.json b/tsconfig.json index 984e21c..9f9b15b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,7 +4,8 @@ "module": "ESNext", "moduleResolution": "Node", "esModuleInterop": true, - "types": ["node"] + "types": ["node"], + "strict": true }, "include": ["src"] } From 8e6cabccdb5dee93cdb240ee315e48f040669e9a Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Thu, 10 Aug 2023 13:09:47 +0200 Subject: [PATCH 18/19] refactor: simplify diff formatting --- src/diff.ts | 8 ++++---- test/index.test.ts | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/diff.ts b/src/diff.ts index d850bfc..dece337 100644 --- a/src/diff.ts +++ b/src/diff.ts @@ -81,15 +81,15 @@ export class DiffEntry { toJSON() { switch (this.type) { case "added": { - return `[+] Added ${this.key}`; + return `Added \`${this.key}\``; } case "removed": { - return `[-] Removed ${this.key}`; + return `Removed \`${this.key}\``; } case "changed": { - return `[~] Changed ${this.key} from ${ + return `Changed \`${this.key}\` from \`${ this.oldValue?.toString() || "-" - } to ${this.newValue.toString()}`; + }\` to \`${this.newValue.toString()}\``; } } } diff --git a/test/index.test.ts b/test/index.test.ts index cb76e3b..63b5504 100644 --- a/test/index.test.ts +++ b/test/index.test.ts @@ -102,9 +102,9 @@ describe("diff", () => { expect(diff(obj1, obj2)).toMatchInlineSnapshot(` [ - "[-] Removed nested.y", - "[~] Changed nested.bar.baz from \\"123\\" to 123", - "[+] Added nested.x", + "Removed \`nested.y\`", + "Changed \`nested.bar.baz\` from \`\\"123\\"\` to \`123\`", + "Added \`nested.x\`", ] `); }); From 9c87d3f70cbed1f0db6d44f8472e7d91a44e8bf1 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Thu, 10 Aug 2023 13:10:06 +0200 Subject: [PATCH 19/19] chore(release): v1.1.3 --- CHANGELOG.md | 38 ++++++++++++++++++++++++++++++++++++++ package.json | 4 ++-- 2 files changed, 40 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a320084..d3184e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,44 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## v1.1.3 + +[compare changes](https://github.com/unjs/ohash/compare/v1.1.2...v1.1.3) + +### 🔥 Performance + +- **object-hash:** Avoid using array to just concatenate the string ([#36](https://github.com/unjs/ohash/pull/36)) +- **object-hash:** Avoid toString when we know that the value is already a string ([#33](https://github.com/unjs/ohash/pull/33)) +- **object-hash:** Faster `isNativeFunction` check ([#30](https://github.com/unjs/ohash/pull/30)) +- **object-hash:** Faster extract object type from toString ([#31](https://github.com/unjs/ohash/pull/31)) +- **object-hash:** Faster object access by avoid string concat ([#32](https://github.com/unjs/ohash/pull/32)) +- **object-hash:** Faster circular checking by using map ([#34](https://github.com/unjs/ohash/pull/34)) +- **object-hash:** Reuse default options when is not passed ([#37](https://github.com/unjs/ohash/pull/37)) +- **object-hash:** Avoid splice method to insert values ([#35](https://github.com/unjs/ohash/pull/35)) + +### 💅 Refactors + +- Simplify diff formatting ([8e6cabc](https://github.com/unjs/ohash/commit/8e6cabc)) + +### 📖 Documentation + +- Improve jsdoc for `objectHash()` ([#43](https://github.com/unjs/ohash/pull/43)) + +### 🏡 Chore + +- Add benchmark scripts ([#40](https://github.com/unjs/ohash/pull/40)) +- Update dev dependencies ([f1ab5f7](https://github.com/unjs/ohash/commit/f1ab5f7)) +- Lint repo ([cd42064](https://github.com/unjs/ohash/commit/cd42064)) +- Add autofix ci ([af19f81](https://github.com/unjs/ohash/commit/af19f81)) +- Fix ts issue ([68a3429](https://github.com/unjs/ohash/commit/68a3429)) +- Enable strict type checking ([2ed5b67](https://github.com/unjs/ohash/commit/2ed5b67)) + +### ❤️ Contributors + +- Pooya Parsa ([@pi0](http://github.com/pi0)) +- Owen Kieffer-Jones +- Vinicius Lourenço + ## v1.1.2 [compare changes](https://github.com/unjs/ohash/compare/v1.1.1...v1.1.2) diff --git a/package.json b/package.json index 2834379..8a2a289 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ohash", - "version": "1.1.2", + "version": "1.1.3", "description": "Super fast hashing library based on murmurhash3 written in Vanilla JS", "repository": "unjs/ohash", "license": "MIT", @@ -43,4 +43,4 @@ "vitest": "^0.34.1" }, "packageManager": "pnpm@8.6.12" -} +} \ No newline at end of file