Search is not available for this dataset
type
stringclasses
17 values
public
bool
2 classes
payload
stringlengths
2
1.27M
repo
dict
actor
dict
org
dict
created_at
timestamp[us]
id
stringclasses
0 values
other
stringlengths
34
66.4k
PushEvent
true
{"shas":[["84d602c118c702f990a95668032841993a0082d3","[email protected]","updated README","Phoenix Nemo",true]],"size":1,"ref":"refs/heads/master","head":"84d602c118c702f990a95668032841993a0082d3"}
{ "id": 11703802, "name": "zen", "url": "https://github.com/phoenixlzx/zen" }
{ "id": null, "login": "phoenixlzx", "gravatar_id": "86d4c6092349f9d44f61c5e168b35a31", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-07-28T03:45:16
null
{"repository":{"description":"Zen is a blog app using Node.js and MongoDB.","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":228,"owner":"phoenixlzx","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"JavaScript","created_at":"2013-07-27T03:59:49-07:00","pushed_at":"2013-07-27T20:45:15-07:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/phoenixlzx/zen/compare/fb264cf937...84d602c118"}
PushEvent
true
{"shas":[["7042ad799fbedcad6509d9110fbe3ac7058a3c46","[email protected]","autoupdate 2013-10-28-16:37:55","Jacob",true]],"size":1,"ref":"refs/heads/master","head":"7042ad799fbedcad6509d9110fbe3ac7058a3c46"}
{ "id": 13030646, "name": "Thesis", "url": "https://github.com/subshad/Thesis" }
{ "id": null, "login": "subshad", "gravatar_id": "57e3eaf393997890f89e5b1c365f3771", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-10-28T05:56:36
null
{"repository":{"watchers":0,"stargazers":0,"forks":0,"fork":false,"size":34664,"owner":"subshad","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"created_at":"2013-09-23T01:36:24-07:00","pushed_at":"2013-10-27T22:56:36-07:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/subshad/Thesis/compare/afedf61f4b...7042ad799f"}
PushEvent
true
{"shas":[["baff7b1abf4fd553dec9da4b1a08c3e3805ea745","[email protected]","blank","[email protected]",true]],"size":1,"ref":"refs/heads/master","head":"baff7b1abf4fd553dec9da4b1a08c3e3805ea745"}
{ "id": 8249357, "name": "CMS", "url": "https://github.com/TossShinHwa/CMS" }
{ "id": null, "login": "TossShinHwa", "gravatar_id": "1a763a475ec7c93f519671d16ca536f3", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-09-29T01:44:51
null
{"repository":{"description":"Blog。","homepage":"","watchers":5,"stargazers":5,"forks":7,"fork":false,"size":19447,"owner":"TossShinHwa","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"JavaScript","created_at":"2013-02-17T02:47:12-08:00","pushed_at":"2013-09-28T18:44:50-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Zack Yang","company":"newegg","blog":"www.woshinidezhu.com","location":"Chengdu,China","email":"[email protected]"},"url":"https://github.com/TossShinHwa/CMS/compare/5be8c34997...baff7b1abf"}
PushEvent
true
{"shas":[["b619ccb277485758fc80b25eac5bc4b25387cec5","[email protected]","ACPICA: Add acpi_get_properties() public interface\n\nIn order to support extracting Device Tree style properties from ACPI\ndevices a new method _PRP was introduced. This method, when present, is\nexpected to return a package containing packages with name-value pairs\nanalogous to their Device Tree counterparts.\n\nA sample _PRP method migh look like this:\n\n Method (_PRP, 0, NotSerialized)\n {\n\t Return (Package () {\n\t\t Package () { \"integer-property\", 10 },\n\t\t Package () { \"string-property\", \"mystring\" },\n\t })\n }\n\nCalling acpi_get_properties() will evaluate the _PRP method, validate the\nresult and return it to the caller if everything went fine.\n\nSigned-off-by: Mika Westerberg <[email protected]>","Mika Westerberg",true],["778e23bf9c79237810df2d77103268f8a447707d","[email protected]","ACPI: Add support for device specific properties\n\nDevice Tree is used in many embedded systems to describe the system\nconfiguration to the OS. It supports attaching properties or name-value\npairs to the devices it describe. With these properties one can pass\nadditional information to the drivers that would not be available\notherwise.\n\nACPI is another configuration mechanism (among other things) typically\nseen on but not limited to x86 machines. ACPI allows passing arbitrary\ndata from methods but there is nothing like Device Tree properties in\nthe ACPI specification.\n\nIn order to facilitate ACPI usage in systems where Device Tree is\ntypically used, it would be beneficial to standardize a way to retrieve\nDevice Tree style properties from ACPI devices, which is what we do in\nthis patch.\n\nIf a given device described in ACPI namespace wants to export properties\nit must implement _PRP method that returns the properties in a package\nof packages. For example:\n\n\tMethod (_PRP, 0, NotSerialized)\n\t{\n\t\tReturn (Package () {\n\t\t\tPackage () { \"name1\", <VALUE1> },\n\t\t\tPackage () { \"name2\", <VALUE2> },\n\t\t\t...\n\t\t})\n\t}\n\nName must be string but there are no limitations for the value itself.\n\nWe add several helper functions that can be used to extract these\nproperties and convert them to different Linux data types.\n\nThe ultimate goal is that we only have one device property API that\nretrieves the requested properties from Device Tree or from ACPI\ntransparent to the caller.\n\nSigned-off-by: Darren Hart <[email protected]>\nSigned-off-by: Mika Westerberg <[email protected]>","Mika Westerberg",true],["9c8b37f329beb16e25e9c0b7b7c7fc5a1b212bb6","[email protected]","ACPI: Document ACPI device specific properties\n\nThis document describes the data format and interfaces of ACPI device\nspecific properties.\n\nSigned-off-by: Mika Westerberg <[email protected]>","Mika Westerberg",true],["61e64d78b7ee163f949ee63d86b35d9aa59721de","[email protected]","mfd: add ACPI support\n\nSigned-off-by: Mika Westerberg <[email protected]>","Mika Westerberg",true],["7ea13ed869ddbd716d5fd954bbb50712f43224bf","[email protected]","gpio_keys_polled: Add ACPI enumeration and MinnowBoard GPIO button support\n\nAdd support for the MinnowBoard GPIO buttons described by the ACPI _HID\nMNW0002.\n\nThis is an experimental mechanism to extract GPIO pins and keycodes from\na custom SSDT. It extracts the pins/buttons from the first GpioIO\nresource pin_table. It extracts keycodes from the vendor_data, which\nmust contain a matching number of keycodes.\n\nThere are a number of platform data fields for the gpio_keys* driver\nthat are not readily implemented with ACPI 5, for these, default values\nare assigned.\n\nThis mechanism is not idea as it defines how the vendor data must look\nfor any device looking to use gpio_keys_polled. It also encodes\nLinux-specific keycode values into an OS agnostic firmware construct.\n\nA better approach might be to move the pdata generation from ACPI into\nits own drivers/platform/x86/ driver which then loads the platform\ndriver, thus leaving the gpio_keys_polled driver independent from the\nACPI description method. This doesn't scale well, but it would allow\ntime for the ACPI specification to mature in terms of generic hardware\ndescription before a generic format is defined in the gpio_keys*\ndrivers.\n\nSigned-off-by: Darren Hart <[email protected]>","Darren Hart",true],["948fa4e6bc646522158aeef9135caf4176b68044","[email protected]","leds-gpio: Add ACPI enumeration and platform data generation\n\nAdd support for platform data description via ACPI properties.\n\nSigned-off-by: Darren Hart <[email protected]>","Darren Hart",true],["bdceb163468d90e325ec167d27ffe001b07fc34a","[email protected]","acpi_platform.c: Add MinnowBoard HIDs\n\nAdd the MinnowBoard HIDs in support of the gpio-keys-polled and leds-gpio\ndrivers. This patch was borrowed from Minnowboard and redone so it could\nbe used in a Linaro git tree.\n\nSigned-off-by: Darren Hart <[email protected]>\nSigned-off-by: Al Stone <[email protected]>","Al Stone",true],["edbf2324e5dc7e59a27f81e3595ebad0ade7eb71","[email protected]","ACPI: GUFI: add kernel config options for GUFI\n\nIntroduce the kernel config options to enable the Grand Unified Firmware\nInterface (GUFI). Give the user the option of using only ACPI, only DT,\nor searching both with either ACPI or DT being searched first.\n\nSigned-off-by: Al Stone <[email protected]>","Al Stone",true],["887b82780e00f5ddc34b699e24bec04d21be4d34","[email protected]","ACPI: GUFI: add build commands for drivers/gufi\n\nAdd in the Makefiles needed for building the GUFI.\n\nSigned-off-by: Al Stone <[email protected]>","Al Stone",true],["4aaf6a0010511b9512cec1aa7224a6eae337b7be","[email protected]","ACPI: GUFI: add in early prototype code for some GUFI functions\n\nThis patch introduces the basic structure and content for just a couple\nof example GUFI functions. Each function is designed so that one can\ncontinue to use FDT and with minimal change, convert to using functions\nthat will retrieve configuration data from either DT or ACPI, whichever\nhas info available. In essence, these functions act as a translation\nlayer.\n\nSigned-off-by: Al Stone <[email protected]>","Al Stone",true],["0d982734731071aa204545e662c1db95352a6bc9","[email protected]","ACPI: GUFI: add in simple test driver placeholders\n\nThis patch adds in some essentially null drivers (for now) as placeholders.\nThe intent is to eventually provide a sysfs interface that would allow the\nkernel developer to interact with GUFI and test out the various aspects of\nthe interface.\n\nSigned-off-by: Al Stone <[email protected]>","Al Stone",true],["014a909736860f334c3d0db4e1744a1787e051bf","[email protected]","ACPI: GUFI: start modifying the vexpress-sysreg driver to use the GUFI\n\nAs a way to test out the concepts and implementation, start converting the\nexisting vexpress-sysreg driver so that it uses the GUFI. The intent is to\n(a) act as a test for the idea, and (b) be very clear on how extensive (or\nnot) the changes actually are. The goal is to make it so the changes can\nbe done almost entirely with a sed script.\n\nSigned-off-by: Al Stone <[email protected]>","Al Stone",true],["332b1b2789877406c895b7780e4527448be4ba48","[email protected]","Merge branch 'gufi' of github.com:ahs3/leg-kernel into gufi\n\nConflicts:\n\tdrivers/gufi/gufi.c\n\tinclude/linux/gufi.h","Al Stone",true]],"size":13,"ref":"refs/heads/gufi","head":"332b1b2789877406c895b7780e4527448be4ba48"}
{ "id": 14734260, "name": "leg-kernel", "url": "https://github.com/ahs3/leg-kernel" }
{ "id": null, "login": "ahs3", "gravatar_id": "56eaf41fb9c2b915fb00fbc03f83b376", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-12-12T22:16:37
null
{"repository":{"description":"working copy of the Linaro LEG kernel tree","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":783112,"owner":"ahs3","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"C","created_at":"2013-11-26T17:29:55-08:00","pushed_at":"2013-12-12T14:16:26-08:00","master_branch":"leg-kernel"},"actor_attributes":{"type":"User","name":"Al Stone","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/ahs3/leg-kernel/compare/e40d9256a9...332b1b2789"}
PushEvent
true
{"shas":[["28f27d5b49c66e8944f449897edb14be3440803d","[email protected]","jms serializer and a bunch of stuff","gayan",true]],"size":1,"ref":"refs/heads/master","head":"28f27d5b49c66e8944f449897edb14be3440803d"}
{ "id": 7901796, "name": "FoodCombo", "url": "https://github.com/gayan/FoodCombo" }
{ "id": null, "login": "gayan", "gravatar_id": "6142a7b33021838f799e77723fcb79fa", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-02-22T09:53:06
null
{"repository":{"description":"FoodCombo","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":7948,"owner":"gayan","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"JavaScript","created_at":"2013-01-29T13:37:32-08:00","pushed_at":"2013-02-22T01:53:05-08:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/gayan/FoodCombo/compare/5590ccadcb...28f27d5b49"}
PushEvent
true
{"shas":[["4ffb93422185b9e351fb1ae9245f79404f98d112","[email protected]","Totally re-styled home page","Jeff Bailey",true]],"size":1,"ref":"refs/heads/master","head":"4ffb93422185b9e351fb1ae9245f79404f98d112"}
{ "id": 9506449, "name": "FFR", "url": "https://github.com/jbailey2010/FFR" }
{ "id": null, "login": "jbailey2010", "gravatar_id": "4bb86caf75240fa7a6c6e7b56b689777", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-08-10T04:27:30
null
{"repository":{"description":"An android app that aggregates rankings into a 'master set', has team functionality, trending players, and many other cool features.","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":228564,"owner":"jbailey2010","private":false,"open_issues":2,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Java","created_at":"2013-04-17T13:06:20-07:00","pushed_at":"2013-08-09T21:27:28-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Jeff Bailey","blog":"http://www.linkedin.com/profile/view?id=139690060&trk=hb_tab_pro_top","location":"Cincinnati, Ohio","email":"[email protected]"},"url":"https://github.com/jbailey2010/FFR/compare/8670ba2df5...4ffb934221"}
PushEvent
true
{"shas":[["d89170a34dbb6c218e9127261d6fbd36e0120dee","[email protected]","Fix li bug in CSS","Zachary Walters",true]],"size":1,"ref":"refs/heads/test","head":"d89170a34dbb6c218e9127261d6fbd36e0120dee"}
{ "id": 12871645, "name": "CSE247", "url": "https://github.com/zswalter/CSE247" }
{ "id": null, "login": "zswalter", "gravatar_id": "18cf347a4dd11e63862a902e27d25587", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-10-24T14:07:26
null
{"repository":{"description":"NFC Security","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":608,"owner":"zswalter","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Ruby","created_at":"2013-09-16T08:59:35-07:00","pushed_at":"2013-10-24T07:07:25-07:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/zswalter/CSE247/compare/046cb4d211...d89170a34d"}
PushEvent
true
{"shas":[["52781a62585ceed864ae94f397fd5b1d008ff9a3","[email protected]","Abstracted turning head code and gave it to Mammoths and TallBirds","chrisdfe",true],["27c7e7956aea5a89fa215499b0a3ae4f65538428","[email protected]","Added Hills Leveltype","chrisdfe",true],["bee410554dd8aee78737b52e59418998d6fcc4c6","[email protected]","Split ProceduralLevel up into a handful of easier-to-manage submodules, 'Generators'","chrisdfe",true]],"size":3,"ref":"refs/heads/master","head":"bee410554dd8aee78737b52e59418998d6fcc4c6"}
{ "id": 8299998, "name": "voyager", "url": "https://github.com/chrisdfe/voyager" }
{ "id": null, "login": "chrisdfe", "gravatar_id": "63d7fd92130b327bd9680a46aa7d1a13", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-03-06T07:12:33
null
{"repository":{"description":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":364,"owner":"chrisdfe","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"ActionScript","created_at":"2013-02-19T13:33:46-08:00","pushed_at":"2013-03-05T23:12:31-08:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Christopher Ferris","blog":"www.christopherdferris.com","location":"Seattle, WA","email":"[email protected]"},"url":"https://github.com/chrisdfe/voyager/compare/dbe512a2c6...bee410554d"}
PushEvent
true
{"shas":[["17cb44aecb1f322c9064a8a3ad829aa503953928","[email protected]","little update\n\n6760","jacklibj",true]],"size":1,"ref":"refs/heads/master","head":"17cb44aecb1f322c9064a8a3ad829aa503953928"}
{ "id": 9131473, "name": "qcad", "url": "https://github.com/jacklibj/qcad" }
{ "id": null, "login": "jacklibj", "gravatar_id": "147fca2394fc89478d3a65047650d472", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-04-25T14:15:53
null
{"repository":{"description":"redoqcad","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":1048,"owner":"jacklibj","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"C++","created_at":"2013-03-31T07:47:10-07:00","pushed_at":"2013-04-25T07:15:52-07:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/jacklibj/qcad/compare/5207446209...17cb44aecb"}
PushEvent
true
{"shas":[["b73d53af97a4fd12cc6be1c58d70937419966f80","[email protected]","moreutils: install errno utility","Jack Nagel",true]],"size":1,"ref":"refs/heads/master","head":"b73d53af97a4fd12cc6be1c58d70937419966f80"}
{ "id": 206084, "name": "homebrew", "url": "https://github.com/mxcl/homebrew" }
{ "id": null, "login": "jacknagel", "gravatar_id": "68602fa96bdda4c677ece48ab42b6eb2", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-02-10T00:44:23
null
{"repository":{"description":"The missing package manager for OS X.","homepage":"http://mxcl.github.com/homebrew","watchers":11401,"stargazers":11401,"forks":5427,"fork":false,"size":10040,"owner":"mxcl","private":false,"open_issues":216,"has_issues":true,"has_downloads":false,"has_wiki":true,"language":"Ruby","created_at":"2009-05-20T12:38:37-07:00","pushed_at":"2013-02-09T16:43:45-08:00","integrate_branch":"staging","master_branch":"master"},"actor_attributes":{"name":"Jack Nagel","location":"Fargo, ND","type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/mxcl/homebrew/compare/ccbc8a7d4a...b73d53af97"}
PushEvent
true
{"shas":[["218400221417cd45f3e88443ecea42d6d4ab7b1e","[email protected]","A better way to _getLibs","Kevin Moore",true]],"size":1,"ref":"refs/heads/patch-3","head":"218400221417cd45f3e88443ecea42d6d4ab7b1e"}
{ "id": 8511717, "name": "spectre", "url": "https://github.com/kevmoo/spectre" }
{ "id": null, "login": "kevmoo", "gravatar_id": "11c26a69dc9e9abfcabcb35d28963613", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-03-01T22:52:19
null
{"repository":{"description":"Spectre Graphics Engine for Dart","watchers":0,"stargazers":0,"forks":0,"fork":true,"size":148,"owner":"kevmoo","private":false,"open_issues":0,"has_issues":false,"has_downloads":true,"has_wiki":true,"language":"Dart","created_at":"2013-03-01T14:38:16-08:00","pushed_at":"2013-03-01T14:52:19-08:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Kevin Moore","company":"Pixel Lab","blog":"http://thinkpixellab.com","location":"Chapel Hill, NC, USA","email":"[email protected]"},"url":"https://github.com/kevmoo/spectre/compare/66d5702c76...2184002214"}
PushEvent
true
{"shas":[["e5c99cc134afa32e128b7391cea856438eb057ca","[email protected]","added screenshot functions","menewol",true]],"size":1,"ref":"refs/heads/master","head":"e5c99cc134afa32e128b7391cea856438eb057ca"}
{ "id": 13734934, "name": "DA-RSA", "url": "https://github.com/menewol/DA-RSA" }
{ "id": null, "login": "menewol", "gravatar_id": "0147e69142da802224a2b1801982aff6", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-11-04T09:37:41
null
{"repository":{"description":"","homepage":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":732,"owner":"menewol","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":false,"language":"C#","created_at":"2013-10-20T23:52:27-07:00","pushed_at":"2013-11-04T01:37:41-08:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/menewol/DA-RSA/compare/c7c64029af...e5c99cc134"}
PushEvent
true
{"shas":[["409e24f6a78a677a78861bf5ea039e4470b773eb","[email protected]","Removed the warning about docstrings for private attributes. Fixed erroneous docstring recognition past the blank line.","Nikita Nemkin",true]],"size":1,"ref":"refs/heads/autodoc_improvements","head":"409e24f6a78a677a78861bf5ea039e4470b773eb"}
{ "id": 8518615, "name": "cython", "url": "https://github.com/nnemkin/cython" }
{ "id": null, "login": "nnemkin", "gravatar_id": "dc18c2c40c5e40e6664d988347ef9089", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-04-21T08:41:50
null
{"repository":{"description":"A Python to C compiler","homepage":"http://cython.org","watchers":0,"stargazers":0,"forks":0,"fork":true,"size":396,"owner":"nnemkin","private":false,"open_issues":0,"has_issues":false,"has_downloads":true,"has_wiki":true,"language":"Python","created_at":"2013-03-02T01:43:53-08:00","pushed_at":"2013-04-21T01:41:48-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Nikita Nemkin","location":"Russia","email":"[email protected]"},"url":"https://github.com/nnemkin/cython/compare/d8260e75cb...409e24f6a7"}
PushEvent
true
{"shas":[["27d5630f6f28d40b040e0f1a1bb599fe4dc05c6d","[email protected]","Update main in package.json","Kyle P Davis",true],["f8942855c81b4c6d91c000a343f94607d6df8401","[email protected]","Merge pull request #1 from KylePDavis/patch-1\n\nUpdate main in package.json","Thorsten Lorenz",true]],"size":2,"ref":"refs/heads/master","head":"f8942855c81b4c6d91c000a343f94607d6df8401"}
{ "id": 9572054, "name": "brace", "url": "https://github.com/thlorenz/brace" }
{ "id": null, "login": "thlorenz", "gravatar_id": "1c9054d6242bffd5fd25ec652a2b79cc", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-07-05T18:52:50
null
{"repository":{"description":"browserify compatible version of the ace editor.","homepage":"http://thlorenz.github.io/brace/","watchers":3,"stargazers":3,"forks":1,"fork":false,"size":380,"owner":"thlorenz","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"JavaScript","created_at":"2013-04-20T16:18:59-07:00","pushed_at":"2013-07-05T11:52:49-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Thorsten Lorenz","company":"","blog":"http://thlorenz.com/","location":"New York ,NY","email":"[email protected]"},"url":"https://github.com/thlorenz/brace/compare/212e5c7150...f8942855c8"}
PushEvent
true
{"shas":[["b58563d1010eedc04e60302a10a7d2e2db6ae074","[email protected]","fix: header menu","Yoshihiro Sawa",true]],"size":1,"ref":"refs/heads/master","head":"b58563d1010eedc04e60302a10a7d2e2db6ae074"}
{ "id": 9661339, "name": "ysawacom", "url": "https://github.com/ysawa/ysawacom" }
{ "id": null, "login": "ysawa", "gravatar_id": "619bb7c06b638dd45968104c2f62491c", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-05-02T15:33:11
null
{"repository":{"description":"ysawa.com being developed with Ruby on Rails and MarionetteJS","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":780,"owner":"ysawa","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Ruby","created_at":"2013-04-24T18:28:43-07:00","pushed_at":"2013-05-02T08:33:10-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Ysawa","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/ysawa/ysawacom/compare/c800259737...b58563d101"}
PushEvent
true
{"shas":[["12b72364fd08f37cee932c8c7444f0a64f0f1f28","[email protected]","Add test scripts to send DACP commands and decode the response","Carmen Wick",true]],"size":1,"ref":"refs/heads/master","head":"12b72364fd08f37cee932c8c7444f0a64f0f1f28"}
{ "id": 10413581, "name": "clickerjs", "url": "https://github.com/cwick/clickerjs" }
{ "id": null, "login": "cwick", "gravatar_id": "f912d7c5332fb479523439b9da1dbeae", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-06-01T02:34:24
null
{"repository":{"description":"Javascript DACP library","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":112,"owner":"cwick","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"created_at":"2013-05-31T14:44:06-07:00","pushed_at":"2013-05-31T19:34:23-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Carmen Wick","location":"San Francisco, CA","email":"[email protected]"},"url":"https://github.com/cwick/clickerjs/compare/dd8d22be45...12b72364fd"}
PushEvent
true
{"shas":[["1a79da8cbcdae6159eb2b5411ea68cf50a0d4e8a","[email protected]","removed superfluous gitignore from VLfeat","David Weiss",true],["70b556775774e348f009b50acbda0cecacb8d1d6","[email protected]","Merge branch 'master' of github.com:djweiss/scalpel","David Weiss",true]],"size":2,"ref":"refs/heads/master","head":"70b556775774e348f009b50acbda0cecacb8d1d6"}
{ "id": 9553908, "name": "scalpel", "url": "https://github.com/djweiss/scalpel" }
{ "id": null, "login": "djweiss", "gravatar_id": "3e87acd915a00f70ceddcf562f547055", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-04-23T21:54:00
null
{"repository":{"description":"Segmentation Cascades with Localized Priors and Efficient Learning","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":156,"owner":"djweiss","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"created_at":"2013-04-19T13:26:23-07:00","pushed_at":"2013-04-23T14:53:57-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"David Weiss","company":"University of Pennsylvania","location":"Philadelphia, PA, USA","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/djweiss/scalpel/compare/0048c0e939...70b5567757"}
PushEvent
true
{"shas":[["cb0f05b19fbfb8d11d1344b497e6a113407c4451","[email protected]","Getting encodings sorted.","Mitch Garnaat",true]],"size":1,"ref":"refs/heads/doc-fixes","head":"cb0f05b19fbfb8d11d1344b497e6a113407c4451"}
{ "id": 9603532, "name": "aws-cli", "url": "https://github.com/garnaat/aws-cli" }
{ "id": null, "login": "garnaat", "gravatar_id": "c3dc609a225fde3f6d0395ac59c576ce", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-07-31T15:14:19
null
{"repository":{"description":"Universal Command Line Interface for Amazon Web Services","watchers":0,"stargazers":0,"forks":0,"fork":true,"size":2067,"owner":"garnaat","private":false,"open_issues":0,"has_issues":false,"has_downloads":true,"has_wiki":true,"language":"Python","created_at":"2013-04-22T09:30:52-07:00","pushed_at":"2013-07-31T08:14:19-07:00","master_branch":"develop"},"actor_attributes":{"type":"User","name":"Mitch Garnaat","company":"Amazon Web Services","blog":"http://elastician.com/","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/garnaat/aws-cli/compare/c290cd13b0...cb0f05b19f"}
PushEvent
true
{"shas":[["f33052815465054120e0ee0e2d6f494b9e3b5903","[email protected]","sorted package and transmission","mnording",true]],"size":1,"ref":"refs/heads/matte","head":"f33052815465054120e0ee0e2d6f494b9e3b5903"}
{ "id": 7866939, "name": "CDT207", "url": "https://github.com/mnording/CDT207" }
{ "id": null, "login": "mnording", "gravatar_id": "f70a23c7044ac55b510f67d25bbd2b5e", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-03-07T12:52:24
null
{"repository":{"description":"CDT207 Labs","watchers":1,"stargazers":1,"forks":0,"fork":false,"size":800,"owner":"mnording","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"C","created_at":"2013-01-28T01:41:02-08:00","pushed_at":"2013-03-07T04:52:23-08:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/mnording/CDT207/compare/8a6af89837...f330528154"}
PushEvent
true
{"shas":[["66a2e9c88ce3c75c48b89f620b16a36e1e299225","[email protected]","First solver iteration complete","Michael Grey",true]],"size":1,"ref":"refs/heads/master","head":"66a2e9c88ce3c75c48b89f620b16a36e1e299225"}
{ "id": 10727792, "name": "RobotKin", "url": "https://github.com/mxgrey/RobotKin" }
{ "id": null, "login": "mxgrey", "gravatar_id": "76986035f0f64661a2e74d984959a199", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-07-08T06:12:50
null
{"repository":{"description":"A robot kinematics C++ library.","watchers":0,"stargazers":0,"forks":0,"fork":true,"size":204,"owner":"mxgrey","private":false,"open_issues":0,"has_issues":false,"has_downloads":true,"has_wiki":true,"language":"C++","created_at":"2013-06-16T17:59:31-07:00","pushed_at":"2013-07-07T23:12:50-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Michael Grey","company":"Georgia Tech Research Institute","location":"Atlanta, GA","email":"[email protected]"},"url":"https://github.com/mxgrey/RobotKin/compare/d4daaa547e...66a2e9c88c"}
PushEvent
true
{"shas":[["ba2ec73dca2b5fb08b1c42c868989abdcc38de9e","[email protected]","Added list function to KaratekaActionbean (returns json array of karatekas)\nadded dependency for jackson","Roy Braam",true]],"size":1,"ref":"refs/heads/feat/mutate-karateka","head":"ba2ec73dca2b5fb08b1c42c868989abdcc38de9e"}
{ "id": 10672495, "name": "vanenapp", "url": "https://github.com/rbraam/vanenapp" }
{ "id": null, "login": "rbraam", "gravatar_id": "ea9fe93804ec510cfee40f2029cb6f8d", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-07-03T17:44:53
null
{"repository":{"description":"Vanen app","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":2028,"owner":"rbraam","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Java","created_at":"2013-06-13T11:11:06-07:00","pushed_at":"2013-07-03T10:44:52-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Roy Braam","company":"B3Partners","location":"Amersfoort","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/rbraam/vanenapp/compare/a12193c874...ba2ec73dca"}
PushEvent
true
{"shas":[["ba9cc7e0f4e38c8c4de5ca11830b3d2005705936","[email protected]","Update begin.sh","saulo",true]],"size":1,"ref":"refs/heads/master","head":"ba9cc7e0f4e38c8c4de5ca11830b3d2005705936"}
{ "id": 9406204, "name": "ec2init", "url": "https://github.com/sauloal/ec2init" }
{ "id": null, "login": "sauloal", "gravatar_id": "b5bd6c0f9f683b41f0e93f54fdae320a", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-04-14T02:14:24
null
{"repository":{"description":"EC2 scripts which auto updates itself from git and runs at startup with the help of minimal user-data and cloud init","homepage":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":920,"owner":"sauloal","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Shell","created_at":"2013-04-12T17:10:25-07:00","pushed_at":"2013-04-13T19:14:23-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"saulo","blog":"saulo.alvesnet.net","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/sauloal/ec2init/compare/ed53c53ec9...ba9cc7e0f4"}
PushEvent
true
{"shas":[["8b965c5ce7ad126af797dcad467ee3ac8a871792","[email protected]","","modestas",true]],"size":1,"ref":"refs/heads/devel","head":"8b965c5ce7ad126af797dcad467ee3ac8a871792"}
{ "id": 12549603, "name": "dragon", "url": "https://github.com/Modestas-/dragon" }
{ "id": null, "login": "Modestas-", "gravatar_id": "c30230b75b03b4346bd52b270fcaa506", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-09-15T07:37:57
null
{"repository":{"description":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":320,"owner":"Modestas-","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"created_at":"2013-09-02T14:42:05-07:00","pushed_at":"2013-09-15T00:37:56-07:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/Modestas-/dragon/compare/5e4169870e...8b965c5ce7"}
PushEvent
true
{"shas":[["ea2fd3e74635b8e0bc0148a2e420791d3f8963dc","[email protected]","Auto: Sat Sep 28 23:58:02 UTC 2013","Andrew Potter",true]],"size":1,"ref":"refs/heads/testing","head":"ea2fd3e74635b8e0bc0148a2e420791d3f8963dc"}
{ "id": 12625527, "name": "omgzorz", "url": "https://github.com/apottere/omgzorz" }
{ "id": null, "login": "apottere", "gravatar_id": "c37e791ab0afdbacf20ea0c9e46924e1", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-09-28T23:58:05
null
{"repository":{"description":"Testing things","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":91248,"owner":"apottere","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"created_at":"2013-09-05T11:34:05-07:00","pushed_at":"2013-09-28T16:58:02-07:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/apottere/omgzorz/compare/cb6c3ff41b...ea2fd3e746"}
PushEvent
true
{"head":"a02def48c00a8ba18e007e1585c956c0758ab9c3","size":1,"ref":"refs/heads/master","shas":[["a02def48c00a8ba18e007e1585c956c0758ab9c3","580235e129cc04b947e25828d490c15e876d80a9@josh.(none)","Test page","Josh",true]]}
{ "id": 7719748, "name": "CHSC", "url": "https://github.com/jsulkers/CHSC" }
{ "id": null, "login": "jsulkers", "gravatar_id": "34dd99bf4e2ed401a75e658dedcd9bc6", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-01-20T18:30:16
null
{"repository":{"pushed_at":"2013-01-20T10:30:15-08:00","forks":0,"owner":"jsulkers","created_at":"2013-01-20T10:10:06-08:00","has_issues":true,"has_downloads":true,"description":"Clinican Time Tracker","open_issues":0,"watchers":0,"has_wiki":true,"fork":false,"size":132,"stargazers":0,"private":false},"actor_attributes":{"name":"Tendrilil","blog":"","type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/jsulkers/CHSC/compare/ee39c5eb7a...a02def48c0"}
PushEvent
true
{"size":4,"head":"48d422e51013d3ff7d4177e06a6b4c94d69e856a","ref":"refs/heads/master","shas":[["e87e4929b70b3b29885bfa06fa7e222857b804b1","[email protected]","Initial implementation of the User class and the User Interface","Steve Ramage",false],["a730733583a37c19d2fab628fdb07e634479208a","[email protected]","Refactored GitLab.java to move display logic into it's own method","Steve Ramage",false],["615c1e4b126a5b85289a681f683b86bfebd9e5ff","[email protected]","Added gitignore","Steve Ramage",false],["48d422e51013d3ff7d4177e06a6b4c94d69e856a","[email protected]","Merge branch 'ui'","Min-Woo Kim",true]]}
{ "id": 7723579, "name": "lab2", "url": "https://github.com/rkaalsdn/lab2" }
{ "id": null, "login": "rkaalsdn", "gravatar_id": "5ed10c2a00766b3ae3c797ab983e501b", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-01-21T05:42:39
null
{"repository":{"owner":"rkaalsdn","has_wiki":true,"pushed_at":"2013-01-20T21:42:38-08:00","forks":0,"created_at":"2013-01-20T15:44:21-08:00","fork":false,"size":19212,"open_issues":0,"watchers":0,"has_issues":true,"has_downloads":true,"private":false,"description":"","stargazers":0,"language":"Java"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/rkaalsdn/lab2/compare/8e2e65511a...48d422e510"}
PushEvent
true
{"shas":[["1deb69a86e7df62e67035c3705c4596935e5854e","[email protected]","added files","Appendix",true]],"size":1,"ref":"refs/heads/master","head":"1deb69a86e7df62e67035c3705c4596935e5854e"}
{ "id": 10664689, "name": "zelda", "url": "https://github.com/Appendix/zelda" }
{ "id": null, "login": "Appendix", "gravatar_id": "6a999ec679be66dc42d461fdf6d50607", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-06-13T11:40:48
null
{"repository":{"description":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":116,"owner":"Appendix","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"PHP","created_at":"2013-06-13T04:21:49-07:00","pushed_at":"2013-06-13T04:40:47-07:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/Appendix/zelda/compare/60f4cb1b90...1deb69a86e"}
PushEvent
true
{"shas":[["3013e02206eca088c34717c294b6f10d40802005","6d6e681fe461d051d5d30b0bb37057b66f07281e@MacBook-Pro-van-Wart.local","components","Wart Claes",true],["8fbbc860a883990b91de55ebb602d6eba5425567","6d6e681fe461d051d5d30b0bb37057b66f07281e@MacBook-Pro-van-Wart.local","Merge branch 'master' of https://github.com/WartClaes/Base-HTML\n\nConflicts:\n\t.sass-cache/4082f6e928364f0aa6c1e81c04da44437f414f94/_grid.scssc\n\t.sass-cache/4a57301ac15ab3bfcfcfc12d90eb08cd9987f009/_base.scssc\n\t.sass-cache/4a57301ac15ab3bfcfcfc12d90eb08cd9987f009/_components.scssc\n\tcss/components.css\n\tcss/style.css\n\tindex.html\n\tsass/partials/_base.scss\n\tsass/partials/_components.scss","Wart Claes",true],["b00b9d28f30a9687e5dc2e255c6682003cea5711","6d6e681fe461d051d5d30b0bb37057b66f07281e@MacBook-Pro-van-Wart.local","changes","Wart Claes",true]],"size":3,"ref":"refs/heads/master","head":"b00b9d28f30a9687e5dc2e255c6682003cea5711"}
{ "id": 12874867, "name": "Base", "url": "https://github.com/WartClaes/Base" }
{ "id": null, "login": "WartClaes", "gravatar_id": "e4c3a215a6f99a6cccefe305aa33284e", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-11-01T13:30:01
null
{"repository":{"description":"","watchers":0,"stargazers":0,"forks":1,"fork":false,"size":271,"owner":"WartClaes","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"CSS","created_at":"2013-09-16T11:20:41-07:00","pushed_at":"2013-11-01T06:30:01-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Wart Claes","company":"Turbo Turbo","blog":"http://www.turboturbo.be","location":"Leuven, Belgium","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/WartClaes/Base/compare/4c71cf5825...b00b9d28f3"}
PushEvent
true
{"shas":[["17c4e0fff72bebe65d444aedaa62af42a60ebf07","[email protected]","add relocation files","Jean",true],["9739a077c60aad6d218c3eec92cbc885d0b260b0","[email protected]","early work on relocation","Jean",true]],"size":2,"ref":"refs/heads/master","head":"9739a077c60aad6d218c3eec92cbc885d0b260b0"}
{ "id": 12997228, "name": "mips", "url": "https://github.com/jeanbroid/mips" }
{ "id": null, "login": "jeanbroid", "gravatar_id": "97c9250f0bf8ddc619cd02ecbaf57518", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-11-21T10:55:21
null
{"repository":{"description":"MIPS (32bits processor) simulator","homepage":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":1568,"owner":"jeanbroid","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"C","created_at":"2013-09-21T08:21:48-07:00","pushed_at":"2013-11-21T02:55:20-08:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Jean","location":"France","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/jeanbroid/mips/compare/6281dd888a...9739a077c6"}
PushEvent
true
{"shas":[["bb2b296be56d9f127a60efb77584690fa6b09854","[email protected]","::shit","huozhi",true]],"size":1,"ref":"refs/heads/master","head":"bb2b296be56d9f127a60efb77584690fa6b09854"}
{ "id": 14715406, "name": "Kinect", "url": "https://github.com/lavende/Kinect" }
{ "id": null, "login": "lavende", "gravatar_id": "c0055c579633b487d66374ac8c33b826", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-11-26T12:52:22
null
{"repository":{"description":"kinect test cs code","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":0,"owner":"lavende","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"C#","created_at":"2013-11-26T03:42:02-08:00","pushed_at":"2013-11-26T04:52:22-08:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"[email protected]"},"url":"https://github.com/lavende/Kinect/compare/f13dd08fb7...bb2b296be5"}
PushEvent
true
{"shas":[["3322045148f03a85c467e8c1727d711db2d5fa02","[email protected]","Update gitpushpulltest.txt","lekaijun",true]],"size":1,"ref":"refs/heads/master","head":"3322045148f03a85c467e8c1727d711db2d5fa02"}
{ "id": 7126910, "name": "first", "url": "https://github.com/lekaijun/first" }
{ "id": null, "login": "lekaijun", "gravatar_id": "d1ba4729806479d500580f1c9a4b95a8", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-05-12T02:23:48
null
{"repository":{"description":"first repository for test","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":200,"owner":"lekaijun","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"created_at":"2012-12-12T00:45:03-08:00","pushed_at":"2013-05-11T19:23:47-07:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/lekaijun/first/compare/c7a5c6b898...3322045148"}
PushEvent
true
{"shas":[["45a6f237bdc2c76aa582433fd94cea5f8a45d34a","[email protected]","debug","lomsansnom",true]],"size":1,"ref":"refs/heads/master","head":"45a6f237bdc2c76aa582433fd94cea5f8a45d34a"}
{ "id": 12104929, "name": "RPI", "url": "https://github.com/lomsansnom/RPI" }
{ "id": null, "login": "lomsansnom", "gravatar_id": "6fe6dfaf8618a66b902a5b562e4281c2", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-08-19T13:49:50
null
{"repository":{"description":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":2358,"owner":"lomsansnom","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"JavaScript","created_at":"2013-08-14T02:18:33-07:00","pushed_at":"2013-08-19T06:49:50-07:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/lomsansnom/RPI/compare/2034c9b426...45a6f237bd"}
PushEvent
true
{"shas":[["c252485768f13b4beecd5b8ed767d32eade5be63","[email protected]","updated index.html","Sebastian Kopatz",true],["b6ba1aed077af1b68380dffed5146cee497bbc3b","[email protected]","added social media buttons","Sebastian Kopatz",true]],"size":2,"ref":"refs/heads/develop","head":"b6ba1aed077af1b68380dffed5146cee497bbc3b"}
{ "id": 11194309, "name": "bitstarter", "url": "https://github.com/sk9/bitstarter" }
{ "id": null, "login": "sk9", "gravatar_id": "845c7fc997ad282abc017316217656be", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-08-09T19:48:26
null
{"repository":{"description":"","watchers":0,"stargazers":0,"forks":0,"fork":true,"size":1074,"owner":"sk9","private":false,"open_issues":0,"has_issues":false,"has_downloads":true,"has_wiki":true,"language":"JavaScript","created_at":"2013-07-05T00:46:56-07:00","pushed_at":"2013-08-09T12:48:26-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Sebastian Kopatz","location":"Germany","email":"[email protected]"},"url":"https://github.com/sk9/bitstarter/compare/fd6865a242...b6ba1aed07"}
PushEvent
true
{"shas":[["d6e4774d2b4b72cb2e28f5cb83e12b8a8b5f6091","[email protected]","Version 0.0.16","Boohbah",true]],"size":1,"ref":"refs/heads/master","head":"d6e4774d2b4b72cb2e28f5cb83e12b8a8b5f6091"}
{ "id": 10389182, "name": "sokoban", "url": "https://github.com/Boohbah/sokoban" }
{ "id": null, "login": "Boohbah", "gravatar_id": "ae842a4f07f9350baf890411942d1242", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-09-09T03:19:11
null
{"repository":{"description":"A classic warehouse puzzle game","homepage":"http://rubygems.org/gems/sokoban","watchers":1,"stargazers":1,"forks":0,"fork":false,"size":316,"owner":"Boohbah","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Ruby","created_at":"2013-05-30T11:38:02-07:00","pushed_at":"2013-09-08T20:19:10-07:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/Boohbah/sokoban/compare/ee667cc564...d6e4774d2b"}
PushEvent
true
{"shas":[["2b669beb3f81b8b92d891a71c8de7301dfe25800","[email protected]","Change title","XuHaoJun",true]],"size":1,"ref":"refs/heads/gh-pages","head":"2b669beb3f81b8b92d891a71c8de7301dfe25800"}
{ "id": 11383271, "name": "xublog", "url": "https://github.com/XuHaoJun/xublog" }
{ "id": null, "login": "XuHaoJun", "gravatar_id": "964de070506855be84c1b329fe663ed8", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-07-13T06:05:29
null
{"repository":{"description":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":1668,"owner":"XuHaoJun","private":false,"open_issues":0,"has_issues":false,"has_downloads":true,"has_wiki":true,"language":"JavaScript","created_at":"2013-07-12T22:03:17-07:00","pushed_at":"2013-07-12T23:05:28-07:00","master_branch":"gh-pages"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/XuHaoJun/xublog/compare/0a58192e5a...2b669beb3f"}
PushEvent
true
{"shas":[["f3a8d8e939264fcc5b00b6fe1fd083b3339d4479","[email protected]","test","agate",true]],"size":1,"ref":"refs/heads/master","head":"f3a8d8e939264fcc5b00b6fe1fd083b3339d4479"}
{ "id": 11965908, "name": "wxfactual", "url": "https://github.com/agate/wxfactual" }
{ "id": null, "login": "agate", "gravatar_id": "b83f65b720896d40f0c648e55649a85f", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-08-09T04:07:05
null
{"repository":{"description":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":214,"owner":"agate","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"CoffeeScript","created_at":"2013-08-07T19:41:41-07:00","pushed_at":"2013-08-08T21:07:04-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Hao Hong","company":"Factual","blog":"http://honghao.me","location":"Shanghai, China","email":"[email protected]"},"url":"https://github.com/agate/wxfactual/compare/65992c0d86...f3a8d8e939"}
PushEvent
true
{"shas":[["801366f969b7004c8810b66ef4bd05e4ab9f9fb2","[email protected]","Update README.md","Paul Souders",true]],"size":1,"ref":"refs/heads/master","head":"801366f969b7004c8810b66ef4bd05e4ab9f9fb2"}
{ "id": 10249487, "name": "ramita", "url": "https://github.com/axoplasm/ramita" }
{ "id": null, "login": "axoplasm", "gravatar_id": "2ff592ec1732d33c530f5c79501a0ab8", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-06-12T23:55:53
null
{"repository":{"description":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":300,"owner":"axoplasm","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"JavaScript","created_at":"2013-05-23T10:34:39-07:00","pushed_at":"2013-06-12T16:55:53-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Paul Souders","company":"Axoplasm","blog":"http://www.axoplasm.com","location":"Portland OR","email":"[email protected]"},"url":"https://github.com/axoplasm/ramita/compare/5d9ec78dcf...801366f969"}
PushEvent
true
{"shas":[["e1e23cc444f464dbdbd79fd33a3cfcacfe005d02","[email protected]","db changes","Igor",true]],"size":1,"ref":"refs/heads/master","head":"e1e23cc444f464dbdbd79fd33a3cfcacfe005d02"}
{ "id": 13415340, "name": "rss_parser", "url": "https://github.com/briu/rss_parser" }
{ "id": null, "login": "briu", "gravatar_id": "0eb6482ab2b5e72634c3aef2aef94cae", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-10-24T15:22:34
null
{"repository":{"description":"google reader come back:)","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":1840,"owner":"briu","private":false,"open_issues":2,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Ruby","created_at":"2013-10-08T07:13:17-07:00","pushed_at":"2013-10-24T08:22:34-07:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/briu/rss_parser/compare/4fb7062646...e1e23cc444"}
PushEvent
true
{"shas":[["273570f689b39459c80678a6077f9a081c7776da","[email protected]","That was a bug. There are probably others.","Lizzie Mamantov",true],["754e61183db6c1b040e62e0a415dc5d9546df529","[email protected]","Some vision cleanup.","Lizzie Mamantov",false],["0b6c8c33733f1aba337ea6eac1e122eafe247cf9","[email protected]","Camera namespace issue.","Lizzie Mamantov",false],["a99667258c3f8f601f38693d8bf2d32e26d1c9d2","[email protected]","Merge branch 'overhaul_master' into overhaul_tool","Lizzie Mamantov",true],["c086e2f5abc4ffa0824e71a0ababb631abe44e40","[email protected]","Adds in the latest protobufs.","Lizzie Mamantov",true],["0a9a611c46408a3541a481fe2796df57fdd153cc","[email protected]","The logmodule in portals was totally deprecated.","Lizzie Mamantov",true]],"size":6,"ref":"refs/heads/overhaul_tool","head":"0a9a611c46408a3541a481fe2796df57fdd153cc"}
{ "id": 923676, "name": "nbites", "url": "https://github.com/emamanto/nbites" }
{ "id": null, "login": "emamanto", "gravatar_id": "950d983cee7ae7557048fc3a5d1869be", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-03-12T22:27:32
null
{"repository":{"description":"The Northern Bites RoboCup Soccer Package","homepage":"http://robocup.bowdoin.edu/","watchers":2,"stargazers":2,"forks":0,"fork":true,"size":504,"owner":"emamanto","private":false,"open_issues":0,"has_issues":false,"has_downloads":true,"has_wiki":true,"language":"C++","created_at":"2010-09-19T18:57:21-07:00","pushed_at":"2013-03-12T15:27:28-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Lizzie Mamantov","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/emamanto/nbites/compare/eb29f7a9d7...0a9a611c46"}
PushEvent
true
{"shas":[["3e95d117d09ad81fb27b03b15d4af6a3ee2a09b7","[email protected]","theme stuff","Jordan Austin",true],["a4ef018204c1e2bf05d61fdce7de33cbaa094964","[email protected]","gitignore","Jordan Austin",true]],"size":2,"ref":"refs/heads/master","head":"a4ef018204c1e2bf05d61fdce7de33cbaa094964"}
{ "id": 8608362, "name": "snort", "url": "https://github.com/jordotech/snort" }
{ "id": null, "login": "jordotech", "gravatar_id": "bb401f43322a571a4409918ee7282580", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-03-20T18:10:17
null
{"repository":{"description":"snortnboartransport","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":24364,"owner":"jordotech","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"PHP","created_at":"2013-03-06T08:56:36-08:00","pushed_at":"2013-03-20T11:10:17-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"jordotech","blog":"citytheft.com","location":"Austin, TX","email":"[email protected]"},"url":"https://github.com/jordotech/snort/compare/5655c3e142...a4ef018204"}
PushEvent
true
{"shas":[],"size":0,"ref":"refs/heads/master","head":"f4a40322cf7c86cb64feb103d885e271680b1e89"}
{ "id": 12849209, "name": "femr", "url": "https://github.com/kevinzurek/femr" }
{ "id": null, "login": "kevinzurek", "gravatar_id": "6d30ee044fba7dd47c76059b27d2d8f5", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-09-24T23:11:28
null
{"repository":{"description":"A simple and free EMR system.","homepage":"","watchers":0,"stargazers":0,"forks":0,"fork":true,"size":387,"owner":"kevinzurek","private":false,"open_issues":0,"has_issues":false,"has_downloads":true,"has_wiki":true,"language":"Java","created_at":"2013-09-15T10:20:57-07:00","pushed_at":"2013-09-24T16:11:28-07:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/kevinzurek/femr/compare/efeb6e9f2a...f4a40322cf"}
PushEvent
true
{"shas":[["4c04355886bb91d320d6981e834b38c69ce90584","[email protected]","Minor updates","heloanders",true]],"size":1,"ref":"refs/heads/master","head":"4c04355886bb91d320d6981e834b38c69ce90584"}
{ "id": 13801140, "name": "IRC-client", "url": "https://github.com/laff/IRC-client" }
{ "id": null, "login": "heloanders", "gravatar_id": "27bdba7df4f0e4496032f609f38c6b5a", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-10-24T18:26:26
null
{"repository":{"description":"Prosjekt2","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":168,"owner":"laff","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Java","created_at":"2013-10-23T04:37:33-07:00","pushed_at":"2013-10-24T11:26:25-07:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/laff/IRC-client/compare/96c459a1a4...4c04355886"}
PushEvent
true
{"shas":[["a3886c7186666f63a4e62ec748e5aebb714a4587","23485f54d25fcdecb3033d83294a28b5b0dbcb6e@localhost","use the right way to handle intermedia data","lvjq",true]],"size":1,"ref":"refs/heads/HLL","head":"a3886c7186666f63a4e62ec748e5aebb714a4587"}
{ "id": 13651774, "name": "druid", "url": "https://github.com/lvjianqiu/druid" }
{ "id": null, "login": "lvjianqiu", "gravatar_id": "da77b4c2aac0fdb9cfb3882af94ea932", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-11-04T05:17:33
null
{"repository":{"description":"Druid Data Store","homepage":"","watchers":0,"stargazers":0,"forks":0,"fork":true,"size":82678,"owner":"lvjianqiu","private":false,"open_issues":0,"has_issues":false,"has_downloads":true,"has_wiki":true,"language":"Java","created_at":"2013-10-17T07:43:08-07:00","pushed_at":"2013-11-03T21:17:31-08:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/lvjianqiu/druid/compare/3ca33f7de0...a3886c7186"}
PushEvent
true
{"shas":[["31fabdfd5ab34655dc13d20dfd3d267ad1d0eb5b","[email protected]","DBSchemaScript\n\nDeğiştirildi.","Serhan Yazar",true]],"size":1,"ref":"refs/heads/master","head":"31fabdfd5ab34655dc13d20dfd3d267ad1d0eb5b"}
{ "id": 14689132, "name": "SGSCRM", "url": "https://github.com/mserhany/SGSCRM" }
{ "id": null, "login": "mserhany", "gravatar_id": "fcad9697bf29e8fd5997780f039ab5e8", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-11-25T21:34:41
null
{"repository":{"description":"","watchers":0,"stargazers":0,"forks":0,"fork":true,"size":156,"owner":"mserhany","private":false,"open_issues":0,"has_issues":false,"has_downloads":true,"has_wiki":true,"language":"C#","created_at":"2013-11-25T07:22:50-08:00","pushed_at":"2013-11-25T13:34:41-08:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/mserhany/SGSCRM/compare/69b6fea86b...31fabdfd5a"}
PushEvent
true
{"shas":[["839206b6a0a0968ecd89efb032087d60eaf8f81c","[email protected]","Add draper gem","Niels Stevens",true],["288f447e4b8f75d013b07992cb86acd7a631fcf1","[email protected]","WIP: add decorator for refill","Niels Stevens",true]],"size":2,"ref":"refs/heads/master","head":"288f447e4b8f75d013b07992cb86acd7a631fcf1"}
{ "id": 10005510, "name": "TankApp", "url": "https://github.com/niels-s/TankApp" }
{ "id": null, "login": "niels-s", "gravatar_id": "3161b3c11553ddadbadc1456e9823578", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-05-13T20:41:34
null
{"repository":{"description":"Application to keep a record of our personal fuel consumpion","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":308,"owner":"niels-s","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Ruby","created_at":"2013-05-11T14:27:14-07:00","pushed_at":"2013-05-13T13:41:33-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Niels Stevens","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/niels-s/TankApp/compare/feb9e15a61...288f447e4b"}
PushEvent
true
{"shas":[["ac5686ea7d6d80b45ba24796b572b7a0ec288c13","[email protected]","Better architecture","Nikita Nikitin",true],["f51a5f6eb991f71e0507cb4588eae212fda95727","[email protected]","Code refactoring","Nikita Nikitin",true]],"size":2,"ref":"refs/heads/blog","head":"f51a5f6eb991f71e0507cb4588eae212fda95727"}
{ "id": 10116779, "name": "portfolio", "url": "https://github.com/rozzy/portfolio" }
{ "id": null, "login": "rozzy", "gravatar_id": "b5ec15ee7bfdbc0dda47f2484f45aa83", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-10-07T18:39:50
null
{"repository":{"description":"Run with Sword.","homepage":"http://nikitin.pw/","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":3396,"owner":"rozzy","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"CSS","created_at":"2013-05-16T22:38:31-07:00","pushed_at":"2013-10-07T11:39:50-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Rozzy","company":"Readdle Inc.","blog":"nikitin.pw","location":"Odessa, Ukraine","email":"[email protected]"},"url":"https://github.com/rozzy/portfolio/compare/0dbfdf7a34...f51a5f6eb9"}
PushEvent
true
{"head":"d012f7cf6765ca093d13dfb007e32f1306149611","size":1,"ref":"refs/heads/master","shas":[["d012f7cf6765ca093d13dfb007e32f1306149611","[email protected]","support for TB disk","Matteo Croce",true]]}
{ "id": 596231, "name": "misc", "url": "https://github.com/teknoraver/misc" }
{ "id": null, "login": "teknoraver", "gravatar_id": "df4b8458baa6a4ad4adc583e648d9791", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-02-03T01:02:27
null
{"repository":{"open_issues":0,"owner":"teknoraver","homepage":"http://teknoraver.net/","has_wiki":true,"watchers":0,"created_at":"2010-04-05T16:21:56-07:00","description":"various stuff","stargazers":0,"fork":false,"size":584,"language":"Python","has_issues":true,"pushed_at":"2013-02-02T17:02:26-08:00","forks":0,"private":false,"has_downloads":true},"actor_attributes":{"company":"Fluidmesh","email":"[email protected]","name":"Matteo Croce","blog":"http://teknoraver.net/","location":"Milano","type":"User"},"url":"https://github.com/teknoraver/misc/compare/8bfabc0279...d012f7cf67"}
PushEvent
true
{"shas":[["79bcf2980f4539b54a5dd80014fa6c1d5e95ade1","[email protected]","Scatter function coverage reports over related files instead of pick first one.\nAdd to `lines` element to `classes` element for jenkins cobertura-plugin.","Yukinari Toyota",true],["4dad07221a70f46f5f42f72024f133158c7b7169","[email protected]","Do convert statements to lines.","Yukinari Toyota",true],["d737756818bd832f495a42f06f94dd4939f37f2e","[email protected]","Remove unused variable, simplify code.","Alexey Palazhchenko",true]],"size":3,"ref":"refs/heads/master","head":"d737756818bd832f495a42f06f94dd4939f37f2e"}
{ "id": 7778804, "name": "gocov-xml", "url": "https://github.com/AlekSi/gocov-xml" }
{ "id": null, "login": "AlekSi", "gravatar_id": "c352e49589592c7a94238db6de5c8a32", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-09-03T12:08:15
null
{"repository":{"description":"","watchers":7,"stargazers":7,"forks":1,"fork":false,"size":56,"owner":"AlekSi","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Go","created_at":"2013-01-23T08:34:32-08:00","pushed_at":"2013-09-03T05:08:14-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Alexey Palazhchenko","company":"Express 42","blog":"http://about.me/alexey.palazhchenko","location":"Russia, Moscow, Zelenograd","email":"[email protected]"},"url":"https://github.com/AlekSi/gocov-xml/compare/5a6930fb1c...d737756818"}
PushEvent
true
{"shas":[["fea0a2e01945f3db7d2adf30eda98c69514e83fe","[email protected]","升级hammer","liaoxuezhi",true]],"size":1,"ref":"refs/heads/master","head":"fea0a2e01945f3db7d2adf30eda98c69514e83fe"}
{ "id": 8288428, "name": "meditor", "url": "https://github.com/campaign/meditor" }
{ "id": null, "login": "liaoxuezhi", "gravatar_id": "6f2d9eb8c0b188b12d7d8c11e834b40c", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-03-13T02:49:51
null
{"repository":{"description":"","watchers":0,"stargazers":0,"forks":2,"fork":false,"size":704,"owner":"campaign","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"JavaScript","created_at":"2013-02-19T02:53:29-08:00","pushed_at":"2013-03-12T19:49:50-07:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/campaign/meditor/compare/55c3e87436...fea0a2e019"}
PushEvent
true
{"shas":[["98b37ab0c98755624a7f99537d1d01940f9a8fef","[email protected]","fixed errors","Alexander Shishkov",true]],"size":1,"ref":"refs/heads/for_pr","head":"98b37ab0c98755624a7f99537d1d01940f9a8fef"}
{ "id": 10862579, "name": "opencv", "url": "https://github.com/f-morozov/opencv" }
{ "id": null, "login": "alekcac", "gravatar_id": "964eb17fabaa2049ae3b0aedb483a49d", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-09-18T17:22:18
null
{"repository":{"description":"Open Source Computer Vision Library","homepage":"","watchers":0,"stargazers":0,"forks":0,"fork":true,"size":319837,"owner":"f-morozov","private":false,"open_issues":0,"has_issues":false,"has_downloads":true,"has_wiki":false,"language":"C++","created_at":"2013-06-22T02:41:03-07:00","pushed_at":"2013-09-18T10:22:15-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Alexander Shishkov","company":"Itseez","location":"Russia","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/f-morozov/opencv/compare/419e557326...98b37ab0c9"}
PushEvent
true
{"shas":[["a9d6e3b9e94bdf60aa61c7122894b547f24ae05f","[email protected]","License Updates.","Greg Orzell",true]],"size":1,"ref":"refs/heads/master","head":"a9d6e3b9e94bdf60aa61c7122894b547f24ae05f"}
{ "id": 5320278, "name": "archaius", "url": "https://github.com/gorzell/archaius" }
{ "id": null, "login": "gorzell", "gravatar_id": "494aeb9cb862df70158af2fd24256ada", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-05-21T18:21:48
null
{"repository":{"description":"library for configuration management API","homepage":"","watchers":1,"stargazers":1,"forks":0,"fork":true,"size":248,"owner":"gorzell","private":false,"open_issues":0,"has_issues":false,"has_downloads":true,"has_wiki":true,"language":"Java","created_at":"2012-08-06T15:03:18-07:00","pushed_at":"2013-05-21T11:21:46-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Greg Orzell","company":"Black Pearl","location":"San Francisco","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/gorzell/archaius/compare/ccee375442...a9d6e3b9e9"}
PushEvent
true
{"shas":[["aadc5bbd681c55410a22465e5192b19116c40137","[email protected]","Fixed exception in example app.js","Raminder Singh",true],["7f29e8cc6ae9ad32f930f5bf4760b862a449d116","[email protected]","Update README.md about the details of random move","Raminder Singh",true],["0d7ca9d4577420e8837bde1582c41832e34d9c3f","[email protected]","Bumping version to 0.1.6","Raminder Singh",true]],"size":3,"ref":"refs/heads/master","head":"0d7ca9d4577420e8837bde1582c41832e34d9c3f"}
{ "id": 12365344, "name": "polyglot", "url": "https://github.com/imor/polyglot" }
{ "id": null, "login": "imor", "gravatar_id": "53ed35f9ba4ba0a4c46e48707decdc48", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-12-30T05:16:32
null
{"repository":{"description":"polyglot is a node module using which a chess opening book in polyglot format can be queried for the existence of a move","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":3876,"owner":"imor","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"C++","created_at":"2013-08-25T13:39:07-07:00","pushed_at":"2013-12-29T21:16:32-08:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Raminder Singh","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/imor/polyglot/compare/e5808494a2...0d7ca9d457"}
PushEvent
true
{"shas":[["4d6170baf6c573b314c4021063fadd3fe4a9b6a6","[email protected]","2013/12/24 17;27","hqwu",true]],"size":1,"ref":"refs/heads/master","head":"4d6170baf6c573b314c4021063fadd3fe4a9b6a6"}
{ "id": 15408110, "name": "SSH", "url": "https://github.com/xiaojue52/SSH" }
{ "id": null, "login": "xiaojue52", "gravatar_id": "86e1776579d031f608a1dbea0dfadb31", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-12-24T09:27:44
null
{"repository":{"description":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":0,"owner":"xiaojue52","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"created_at":"2013-12-23T17:02:35-08:00","pushed_at":"2013-12-24T01:27:44-08:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/xiaojue52/SSH/compare/262f2ef34a...4d6170baf6"}
PushEvent
true
{"shas":[["decda0a530f1be2c3f3cd003636424a190d9c8b1","[email protected]","flask images","1995eaton",true]],"size":1,"ref":"refs/heads/master","head":"decda0a530f1be2c3f3cd003636424a190d9c8b1"}
{ "id": 12717873, "name": "code", "url": "https://github.com/1995eaton/code" }
{ "id": null, "login": "1995eaton", "gravatar_id": "15a68f5671d2a18158e389bab6493ed9", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-12-14T01:23:07
null
{"repository":{"description":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":3688,"owner":"1995eaton","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Python","created_at":"2013-09-09T18:58:06-07:00","pushed_at":"2013-12-13T17:23:06-08:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/1995eaton/code/compare/cf9e13aa40...decda0a530"}
PushEvent
true
{"head":"2c4af256567c5ac6a58c42a0bc1e74d79318ad0b","size":1,"ref":"refs/heads/master","shas":[["2c4af256567c5ac6a58c42a0bc1e74d79318ad0b","[email protected]","sidenavigasjons guide (php) i nav og fjernet gamle overskrift på sidene","haavamoa",true]]}
{ "id": 7989479, "name": "lidmi", "url": "https://github.com/haavamoa/lidmi" }
{ "id": null, "login": "haavamoa", "gravatar_id": "aaff956ce96d8eb157b5aa25c75e0f50", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-02-04T12:59:18
null
{"repository":{"forks":0,"owner":"haavamoa","has_wiki":true,"has_issues":true,"open_issues":0,"watchers":0,"created_at":"2013-02-03T03:06:43-08:00","fork":false,"size":472,"description":"lidmi consulting AS","stargazers":0,"has_downloads":true,"private":false,"pushed_at":"2013-02-04T04:59:17-08:00"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/haavamoa/lidmi/compare/a85b204d0f...2c4af25656"}
PushEvent
true
{"shas":[["3220acfd23ccf91a7891f65f9663919a526c0dc6","[email protected]","Added comments","chmod",true],["98f68387c4ccb426833b2e00dcfacd705f26d3e0","[email protected]","Merge remote-tracking branch 'origin/master'","chmod",true],["f366e37693fa412508f1c41258663fb6b8fe3142","[email protected]","Removed unused things.\nAdded bluetooth support.\n\nSigned-off-by: chmod <[email protected]>","chmod",true]],"size":3,"ref":"refs/heads/master","head":"f366e37693fa412508f1c41258663fb6b8fe3142"}
{ "id": 8356355, "name": "PDS", "url": "https://github.com/joachimvig/PDS" }
{ "id": null, "login": "chmod", "gravatar_id": "f3c2dd2d9a578e99c2ad64d7c5c494f1", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-05-10T10:08:17
null
{"repository":{"description":"Folder containing all code files connected with project development studio at DIKU","watchers":0,"stargazers":0,"forks":3,"fork":false,"size":368,"owner":"joachimvig","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Java","created_at":"2013-02-22T03:47:08-08:00","pushed_at":"2013-05-10T03:08:16-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"","blog":"http://chmod.liss-e.gr/personalSite","location":"Copenhagen","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/joachimvig/PDS/compare/faae5296d1...f366e37693"}
PushEvent
true
{"shas":[["da0617b999175f91ebfc6ce6c6a1988987ac9300","[email protected]","accidental need to rewrite from\nbreaking to_lower function. need sleep","Geoffrey Corey",true]],"size":1,"ref":"refs/heads/homework3","head":"da0617b999175f91ebfc6ce6c6a1988987ac9300"}
{ "id": 7533085, "name": "CS311", "url": "https://github.com/stumped2/CS311" }
{ "id": null, "login": "stumped2", "gravatar_id": "5510ff9015da4e514ad49f69063386cb", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-02-11T06:12:10
null
{"repository":{"description":"CS 311 Projects and homework","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":656,"owner":"stumped2","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"C","created_at":"2013-01-09T18:31:35-08:00","pushed_at":"2013-02-10T22:12:09-08:00"},"actor_attributes":{"name":"Geoffrey Corey","type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/stumped2/CS311/compare/60f7666bc3...da0617b999"}
PushEvent
true
{"shas":[["e82891c8d50f07a90fddc237b274f0e744d0143b","[email protected]","travis","Bambou",true]],"size":1,"ref":"refs/heads/master","head":"e82891c8d50f07a90fddc237b274f0e744d0143b"}
{ "id": 14656043, "name": "geo", "url": "https://github.com/ybonnefond/geo" }
{ "id": null, "login": "ybonnefond", "gravatar_id": "e3ae321522567af870bf09e96c601e4d", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-11-25T11:31:50
null
{"repository":{"description":"Geo game","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":380,"owner":"ybonnefond","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"JavaScript","created_at":"2013-11-23T21:03:30-08:00","pushed_at":"2013-11-25T03:31:50-08:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Bambou","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/ybonnefond/geo/compare/599a8ee7f3...e82891c8d5"}
PushEvent
true
{"shas":[["7512e67fe97717e253d2a9e15c14cf776dd8083b","[email protected]","Chris911: Print list of contributors","Chris911",true]],"size":1,"ref":"refs/heads/master","head":"7512e67fe97717e253d2a9e15c14cf776dd8083b"}
{ "id": 9590667, "name": "socode", "url": "https://github.com/Chris911/socode" }
{ "id": null, "login": "Chris911", "gravatar_id": "a8428b2869b19d3d7781a6825e1e1980", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-04-22T04:09:39
null
{"repository":{"description":"A Coding Social Experiment","watchers":0,"stargazers":0,"forks":0,"fork":true,"size":132,"owner":"Chris911","private":false,"open_issues":0,"has_issues":false,"has_downloads":true,"has_wiki":true,"language":"Python","created_at":"2013-04-21T21:08:07-07:00","pushed_at":"2013-04-21T21:09:38-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Christophe Naud-Dulude","email":"[email protected]"},"url":"https://github.com/Chris911/socode/compare/69d056d67d...7512e67fe9"}
PushEvent
true
{"shas":[["ac75b2a6d9cf00ed365cbd1aa682d8c095032f3c","[email protected]","Completed Stylize","Jay R. Newlin",true],["57c7afbff9e311b5656a7c41eb86b11e4c0f0dd7","[email protected]","Completed Distort & Transform","Jay R. Newlin",true]],"size":2,"ref":"refs/heads/master","head":"57c7afbff9e311b5656a7c41eb86b11e4c0f0dd7"}
{ "id": 9507256, "name": "LPTHW", "url": "https://github.com/JayNewlin/LPTHW" }
{ "id": null, "login": "JayNewlin", "gravatar_id": "1d39ea324e03fc90719e8b73a3d8a558", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-07-25T21:52:43
null
{"repository":{"description":"Learning Python the Hard Way Examples","watchers":1,"stargazers":1,"forks":0,"fork":false,"size":26760,"owner":"JayNewlin","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Python","created_at":"2013-04-17T13:48:31-07:00","pushed_at":"2013-07-25T14:52:42-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Jay R. Newlin","company":"Self-Employed IT Contractor","blog":"http://jaynewlin.wordpress.com","location":"Philadelphia, PA","email":"[email protected]"},"url":"https://github.com/JayNewlin/LPTHW/compare/b699568efa...57c7afbff9"}
PushEvent
true
{"shas":[["d17fb18197bc98b7306b5fa04121b163077ae4f5","[email protected]","get compiling for 2.0.0","Douglas Hubler",true]],"size":1,"ref":"refs/heads/release-4.6-unstable","head":"d17fb18197bc98b7306b5fa04121b163077ae4f5"}
{ "id": 591220, "name": "sipxecs", "url": "https://github.com/dhubler/sipxecs" }
{ "id": null, "login": "dhubler", "gravatar_id": "22540b310c40f56070bb367bcdad5c79", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-03-08T03:59:53
null
{"repository":{"description":"Unified Communications System","homepage":"http://www.sipfoundry.org","watchers":53,"stargazers":53,"forks":22,"fork":false,"size":21452,"owner":"dhubler","private":false,"open_issues":3,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"C++","created_at":"2010-04-01T20:59:20-07:00","pushed_at":"2013-03-07T19:59:50-08:00","integrate_branch":"master-4.2","master_branch":"master"},"actor_attributes":{"type":"User","name":"Douglas Hubler","location":"Massachusetts, USA","email":"[email protected]"},"url":"https://github.com/dhubler/sipxecs/compare/67defb6528...d17fb18197"}
PushEvent
true
{"shas":[["272f8e5697fb1f76c6f2926a6b00b0f984b6f2f5","[email protected]","Fixed fonts...","Joao Carvalho",true],["f51866b1e3af62d605ab648d5f29f35bf9a50869","[email protected]","Refactor: SearchAction and CRUDAction no longer use devious ways to parameterize searches.","João Carvalho",true],["306a3f5b4f6040f3b10b64ae2aa05fb467abd812","[email protected]","Minor Change: AutoCompleteProvider is now parameterized on the collection's return type.","Joao Carvalho",true],["d6e31c063bf45fafb7f3542f715fa042764d1c15","[email protected]","Refactor: Searchers now implement AutoCompleteProvider","Joao Carvalho",true],["8b8bd77742960bca2f716c094211f1e50ec0ae00","[email protected]","Refactor: Removing generic object searchers.\n\n * Removed unused SearchPolymorphicObjects\n * Replaced SearchObjectsByMultiLanguageString with a specialized\n version for its only use","Joao Carvalho",true],["ac6525903d4276667f8243a63baa4870d7aece9d","[email protected]","Removed SearchObjects. Created specific searchers for SearchObjects usages.","Joao Carvalho",true],["6994ba670dca2e7fec3977ded0852f6f1ab7fda1","[email protected]","Refactor: Streamlined AutoCompleteServlet and SimpleAutoCompleteServlet.\n\n * All autocompletes now work the same way as SimpleAutoComplete\n * Removed Fenix-specific AutoCompleteRenderer","Joao Carvalho",true],["985de66668b54fbb85672b7da3e152036018a8a7","[email protected]","Refactor: Changed Schemas to use the new AutoCompleteProvider based auto-complete\n\n * Also remove service declarations from services.xml","Joao Carvalho",true],["e4fdd74fce5f3a983386a44a4973d665531f0f0e","[email protected]","Refactor: Inlined berserk invocations\n\n * Also organized imports","Joao Carvalho",true],["de85bc97d3a7e261a136ce082a8642b067513a23","[email protected]","Refactor: Inlining Filter utility methods and removing the ServiceResponse argument","Joao Carvalho",true],["39fc74ba0d113390db4969f33d0ee9b3b3c7786e","[email protected]","Refactor: Removed After-service filters\n\n * ExecutionPeriodsEnrollmentFenix and PublishedExamsMapAuthorizationFilter\n were inlined","Joao Carvalho",true],["86c4f0b24290ca40145dffcd13fcb324740b4244","[email protected]","Refactor: Filtro's execute now passes Object[] instead of ServiceRequest","Joao Carvalho",true],["24ca38316535d8b9779875da91b8013556f0ac08","[email protected]","Removed Unused filters and chains","Joao Carvalho",true],["3f90b4437e9cf69029b219836ff1cb741521b3ec","[email protected]","Ignoring ProjectsManagerAuthorizationFilter for now...","Joao Carvalho",true],["e93b07ed176f9be4244e57ab53bf1815fbc04117","[email protected]","Refactor: Filtro no longer imposes an execute method","Joao Carvalho",true],["4f91150c8829e9218098a558b3d877596d474cd5","[email protected]","Refactor: Filters no longer receive Object[]\n\n * They now receive the correct arguments for the calling services.\n * Also added an `instance` field to every filter","Joao Carvalho",true],["c8a363aa01903459f75e4ac3a9a249c2e1ef6cec","[email protected]","Refactor: Removed NotAuthorizedFilterException. Now throwing NotAuthorizedException","Joao Carvalho",true],["773466124f049dff3f623b1a7957258a9be7db1d","[email protected]","Refactor: Services are no longer invoked via berserk.\n\n * Calls to the filters have been inlined in the services","Joao Carvalho",true],["9eb4adec88a5a9f8310b21863493fc9787e46ea4","[email protected]","Refactor: Applied correct filter invocation to AND chain expressions.","Joao Carvalho",true],["986c10847bd14aa165f255241182fcc3ce9f2256","[email protected]","Refactor: Monitored services are now logged using a regular logger.\n\n * Updated SLF4J to 1.7.5","Joao Carvalho",true]],"size":28,"ref":"refs/heads/feature/berserk-removal","head":"2ea3bdef1e6949c24486bfa1379857aa02243fab"}
{ "id": 10184936, "name": "fenix", "url": "https://github.com/jcarvalho/fenix" }
{ "id": null, "login": "jcarvalho", "gravatar_id": "0fe84fb946c22eeeafcb43d5bef4a410", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-06-06T10:39:02
null
{"repository":{"description":"","watchers":0,"stargazers":0,"forks":0,"fork":true,"size":1208,"owner":"jcarvalho","private":false,"open_issues":0,"has_issues":false,"has_downloads":true,"has_wiki":true,"language":"Java","created_at":"2013-05-20T17:47:41-07:00","pushed_at":"2013-06-06T03:38:58-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"João Carvalho","company":"IST","location":"Lisbon, Portugal","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/jcarvalho/fenix/compare/39142bf401...2ea3bdef1e"}
PushEvent
true
{"shas":[["6fed9cc3c859c609d2b6bb39f7ffe55e09a9321e","[email protected]","Initial commit","twardakm",true]],"size":1,"ref":"refs/heads/master","head":"6fed9cc3c859c609d2b6bb39f7ffe55e09a9321e"}
{ "id": 14178673, "name": "wektor", "url": "https://github.com/twardakm/wektor" }
{ "id": null, "login": "twardakm", "gravatar_id": "d150b60e1b3f7fb6c5480c4384950e8e", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-11-06T16:49:34
null
{"repository":{"description":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":0,"owner":"twardakm","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"created_at":"2013-11-06T08:44:30-08:00","pushed_at":"2013-11-06T08:49:33-08:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Marcin Twardak","location":"Wrocław","email":"[email protected]"},"url":"https://github.com/twardakm/wektor/compare/794039501a...6fed9cc3c8"}
PushEvent
true
{"shas":[["e4c32b38e0fae8d8a677b69221db01f127a24cf5","[email protected]","Use a uuid in path to deal with hadoop tests","P. Oscar Boykin",true],["40955f683c7897b5155ceb0d6356bceefc1d525d","[email protected]","Addressing some Matrix2 TODOs","P. Oscar Boykin",true],["214bfd16da1a2dc9f5d34d7ef8ed6090014559c1","[email protected]","Merge pull request #606 from twitter/somematrix2todos\n\nAddress some of the Matrix2 TODOs","Argyris Zymnis",true],["2a920710f0f548b4ee62a9691db85ae21816ab43","[email protected]","Merge pull request #602 from twitter/clean-jackson-dep\n\nUse a uuid in path to deal with hadoop tests","Bill Darrow",true]],"size":4,"ref":"refs/heads/develop","head":"2a920710f0f548b4ee62a9691db85ae21816ab43"}
{ "id": 4781319, "name": "scalding", "url": "https://github.com/ueshin/scalding" }
{ "id": null, "login": "ueshin", "gravatar_id": "8427671194d837e4bbe554ed0898e929", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-09-18T09:25:08
null
{"repository":{"description":"A Scala API for Cascading","homepage":"http://twitter.com/scalding","watchers":1,"stargazers":1,"forks":0,"fork":true,"size":3816,"owner":"ueshin","private":false,"open_issues":0,"has_issues":false,"has_downloads":true,"has_wiki":true,"language":"Scala","created_at":"2012-06-25T05:18:57-07:00","pushed_at":"2013-09-18T02:25:07-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Takuya UESHIN","blog":"http://happy-camper.st/","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/ueshin/scalding/compare/0c5981b431...2a920710f0"}
PushEvent
true
{"shas":[["3afd5ac5ec2e03801021f482be65e4c6b6d3499c","[email protected]","Particle can be neighbour of self","Vegard Holter",true]],"size":1,"ref":"refs/heads/master","head":"3afd5ac5ec2e03801021f482be65e4c6b6d3499c"}
{ "id": 14031214, "name": "AI-PSO", "url": "https://github.com/vegaholt/AI-PSO" }
{ "id": null, "login": "vegaholt", "gravatar_id": "ff3b80c809e5158cc412fafe9f5721b4", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-11-06T16:52:13
null
{"repository":{"description":"Particle Swarm Optimization","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":9504,"owner":"vegaholt","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Java","created_at":"2013-10-31T16:46:41-07:00","pushed_at":"2013-11-06T08:52:12-08:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/vegaholt/AI-PSO/compare/7a46c05151...3afd5ac5ec"}
PushEvent
true
{"head":"dd4c026453668f228071aabe0772d6503c9dff02","shas":[["dd4c026453668f228071aabe0772d6503c9dff02","[email protected]","new emacs config and plugins","Jason Vowell",true]],"size":1,"ref":"refs/heads/master"}
{ "id": 3654972, "name": "dotfiles", "url": "https://github.com/vowell/dotfiles" }
{ "id": null, "login": "vowell", "gravatar_id": "d41d8cd98f00b204e9800998ecf8427e", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-02-06T18:37:14
null
{"repository":{"has_wiki":true,"stargazers":1,"owner":"vowell","has_issues":true,"homepage":"","created_at":"2012-03-07T15:52:49-08:00","description":"my dotfiles","language":"Emacs Lisp","fork":false,"size":34432,"has_downloads":true,"open_issues":0,"private":false,"pushed_at":"2013-02-06T10:37:11-08:00","watchers":1,"forks":0},"actor_attributes":{"name":"Jason Vowell","company":"Consensus Point","blog":"http://www.consensuspoint.com/","location":"Nashville, TN","email":"[email protected]","type":"User"},"url":"https://github.com/vowell/dotfiles/compare/a6db66ee50...dd4c026453"}
PushEvent
true
{"shas":[["729addf084c8a47fd67f5f8cb29552dc14b9e72d","[email protected]","Use lua_Number alias instead of double.","Patz Huang",true]],"size":1,"ref":"refs/heads/master","head":"729addf084c8a47fd67f5f8cb29552dc14b9e72d"}
{ "id": 7834470, "name": "dotLua", "url": "https://github.com/xinhuang/dotLua" }
{ "id": null, "login": "xinhuang", "gravatar_id": "86121ba1759c927cac5f3fa6a96ea8c4", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-03-13T10:40:31
null
{"repository":{"description":"dotLua is a Lua 5.2 binder for C# utilizing C# 4.0 dynamic class, by interop with Lua native C DLL.","homepage":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":924,"owner":"xinhuang","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"C#","created_at":"2013-01-25T22:39:49-08:00","pushed_at":"2013-03-13T03:40:31-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Xin Huang","company":"BGC, Schlumberger","location":"Beijing, China","email":"[email protected]"},"url":"https://github.com/xinhuang/dotLua/compare/4befd3433f...729addf084"}
PushEvent
true
{"shas":[["fab3e788fd80bcab4ea1b63104e652a5decb2e34","[email protected]","fudged ports","Zahid Mahir",true]],"size":1,"ref":"refs/heads/master","head":"fab3e788fd80bcab4ea1b63104e652a5decb2e34"}
{ "id": 13160986, "name": "turf", "url": "https://github.com/zahidmahir/turf" }
{ "id": null, "login": "zahidmahir", "gravatar_id": "5bb94ff7d24096ca8d3cfa17f3f05805", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-09-28T20:44:57
null
{"repository":{"description":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":3176,"owner":"zahidmahir","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"JavaScript","created_at":"2013-09-27T13:52:37-07:00","pushed_at":"2013-09-28T13:44:57-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Zahid Mahir","blog":"zmhr.me","location":"NYC","email":"[email protected]"},"url":"https://github.com/zahidmahir/turf/compare/c1710884df...fab3e788fd"}
PushEvent
true
{"shas":[["0c88a5c7218c546c35accbfcfd97d22412d23fc3","[email protected]","Update ajit1.java\n\nchanges in master","LTInfoUser",false],["598ea4ec30ec7bb56dfda0a364c964758721b4f3","[email protected]","Update ajit1.java","LTInfoUser",false],["0cd79fa4fc57b1919caa5ea94a35dbbdda1841dc","[email protected]","Merge pull request #1 from LTInfoUser/master\n\nUpdate ajit1.java","LTInfoUser",true]],"size":3,"ref":"refs/heads/branch1","head":"0cd79fa4fc57b1919caa5ea94a35dbbdda1841dc"}
{ "id": 14523326, "name": "Test1", "url": "https://github.com/LTInfoUser/Test1" }
{ "id": null, "login": "LTInfoUser", "gravatar_id": "cf870557c370a1a5a77600f98ca4e524", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-11-19T12:25:29
null
{"repository":{"description":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":96,"owner":"LTInfoUser","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"created_at":"2013-11-19T04:05:31-08:00","pushed_at":"2013-11-19T04:25:29-08:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/LTInfoUser/Test1/compare/d80bad26b9...0cd79fa4fc"}
PushEvent
true
{"shas":[["85f78d1e4828ad4692d83998119e642a55a87252","[email protected]","i'm an idiot","Redthorn",true]],"size":1,"ref":"refs/heads/master","head":"85f78d1e4828ad4692d83998119e642a55a87252"}
{ "id": 14350863, "name": "Project", "url": "https://github.com/Redthorn/Project" }
{ "id": null, "login": "Redthorn", "gravatar_id": "7644b2f998a23ebcfcd520276cda019e", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-11-15T00:02:52
null
{"repository":{"description":"Final app","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":4592,"owner":"Redthorn","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"JavaScript","created_at":"2013-11-12T17:49:43-08:00","pushed_at":"2013-11-14T16:02:52-08:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/Redthorn/Project/compare/37854cae9b...85f78d1e48"}
PushEvent
true
{"shas":[["bd6e9a448fdce1aaf7749f68ba41345393da63ab","[email protected]","Update TheoremSet.java\n\nImplemented TheoremSet\r\nPending debugging & testing","dahau5",true]],"size":1,"ref":"refs/heads/master","head":"bd6e9a448fdce1aaf7749f68ba41345393da63ab"}
{ "id": 11647436, "name": "topsecret", "url": "https://github.com/dahau5/topsecret" }
{ "id": null, "login": "dahau5", "gravatar_id": "36f7876692c5c08cde8483badb991b7a", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-07-26T02:41:05
null
{"repository":{"description":"","homepage":"","watchers":0,"stargazers":0,"forks":2,"fork":false,"size":62,"owner":"dahau5","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Java","created_at":"2013-07-24T16:11:54-07:00","pushed_at":"2013-07-25T19:41:04-07:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/dahau5/topsecret/compare/8bbc3023dd...bd6e9a448f"}
PushEvent
true
{"shas":[["008ece558d4e650408d4e5f37a0d038ae423bfc2","[email protected]","added more stuff to debug dist","jorgehog",true]],"size":1,"ref":"refs/heads/master","head":"008ece558d4e650408d4e5f37a0d038ae423bfc2"}
{ "id": 5497733, "name": "QMC2", "url": "https://github.com/jorgehog/QMC2" }
{ "id": null, "login": "jorgehog", "gravatar_id": "210e46e4c83513581f09235893d04e9e", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-03-06T20:16:48
null
{"repository":{"description":"A collection of quantum monte carlo methods. ","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":2652,"owner":"jorgehog","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"C++","created_at":"2012-08-21T09:25:45-07:00","pushed_at":"2013-03-06T12:16:48-08:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Jørgen Høgberget","location":"University of Oslo","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/jorgehog/QMC2/compare/2c7bed4159...008ece558d"}
PushEvent
true
{"shas":[["f69ac64ac010cc22e0cbd63e3a803ce00462e969","[email protected]","Fixing comments, code flow and bugs to finish Citeulike importing and issue #24","Nigini Abilio",true]],"size":1,"ref":"refs/heads/issue24","head":"f69ac64ac010cc22e0cbd63e3a803ce00462e969"}
{ "id": 8709477, "name": "GetBoo", "url": "https://github.com/nigini/GetBoo" }
{ "id": null, "login": "nigini", "gravatar_id": "39066f075b0bc636b995da3efc329d44", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-04-19T17:36:29
null
{"repository":{"description":"This is a copy of http://sourceforge.net/projects/getboo/ from where we want to build up some research instrumentations.","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":1836,"owner":"nigini","private":false,"open_issues":6,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"PHP","created_at":"2013-03-11T10:51:35-07:00","pushed_at":"2013-04-19T10:36:28-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Nigini Abilio","blog":"www.nigini.com.br","location":"Vancouver, BC - Canada","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/nigini/GetBoo/compare/c116840c64...f69ac64ac0"}
PushEvent
true
{"shas":[["31127c2392fd0e47ffb09d4d60c7d51bf96f2261","[email protected]","added a random and a guess","sam david",true]],"size":1,"ref":"refs/heads/master","head":"31127c2392fd0e47ffb09d4d60c7d51bf96f2261"}
{ "id": 8226253, "name": "hw3-", "url": "https://github.com/samdavid/hw3-" }
{ "id": null, "login": "samdavid", "gravatar_id": "a40385f8ffd4fe63ab8b35b4c51502ee", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-02-15T21:20:36
null
{"repository":{"description":"homework assignement 3 for cs 161","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":112,"owner":"samdavid","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"created_at":"2013-02-15T13:10:24-08:00","pushed_at":"2013-02-15T13:20:35-08:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/samdavid/hw3-/compare/22d3aeee74...31127c2392"}
PushEvent
true
{"shas":[["37acb469660b8e867af709facb8c6f2eb303b659","da39a3ee5e6b4b0d3255bfef95601890afd80709","- Finished new emulation method.\n- Added template files for emulation.\n- Implement Strategy Pattern for SerialDirector to support emulation.","JordiTL",true]],"size":1,"ref":"refs/heads/master","head":"37acb469660b8e867af709facb8c6f2eb303b659"}
{ "id": 9027807, "name": "IESmet", "url": "https://github.com/JordiTL/IESmet" }
{ "id": null, "login": "JordiTL", "gravatar_id": "3f9215a562c30ac982c5d2ad6e8ca4db", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-09-05T19:13:38
null
{"repository":{"description":"Software controlador de la estación meteorológica IESmet","watchers":2,"stargazers":2,"forks":0,"fork":false,"size":23520,"owner":"JordiTL","private":false,"open_issues":1,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Java","created_at":"2013-03-26T03:23:08-07:00","pushed_at":"2013-09-05T12:13:37-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Jorge Torregrosa","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/JordiTL/IESmet/compare/183271416f...37acb46966"}
PushEvent
true
{"shas":[["4c77b1f4ec64bff85b5089c8704183bf94f534cb","[email protected]","Fixed checkFinal","Lorenz Leutgeb",true]],"ref":"refs/heads/master","size":1,"head":"4c77b1f4ec64bff85b5089c8704183bf94f534cb"}
{ "id": 6653299, "name": "pcp-vns", "url": "https://github.com/flowlo/pcp-vns" }
{ "id": null, "login": "flowlo", "gravatar_id": "a72c08a3accc56635eb9a149b55654c7", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-01-10T11:20:13
null
{"repository":{"stargazers":1,"open_issues":0,"owner":"flowlo","created_at":"2012-11-12T04:50:46-08:00","has_issues":true,"has_downloads":true,"pushed_at":"2013-01-10T03:20:12-08:00","description":"A VNS approach to solve the Partition Graph Coloring Problem.","forks":1,"fork":false,"size":528,"language":"C++","watchers":1,"private":false,"has_wiki":true},"actor_attributes":{"name":"Lorenz Leutgeb","company":"Vienna University of Technology","location":"Vienna, Austria","type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/flowlo/pcp-vns/compare/d3e85b5b3f...4c77b1f4ec"}
PushEvent
true
{"shas":[["102928943e84c5d719964bb9a76eee224442f1e2","[email protected]","improve completion in plugin.misterpah.Editor and\n\ndowngrade codemirror to 3.15 to make completion works.","misterpah",true],["e7a45899d928d7dc4fe8b5212cd1b51bd4368616","[email protected]","improve function completion in plugin.misterpah.Editor\n\nadd extern CodeMirror.setCursor()","misterpah",true]],"size":2,"ref":"refs/heads/experiment-2","head":"e7a45899d928d7dc4fe8b5212cd1b51bd4368616"}
{ "id": 13189681, "name": "hide", "url": "https://github.com/misterpah/hide" }
{ "id": null, "login": "misterpah", "gravatar_id": "1d60db03e3587a6b2650a4a906ab87bf", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-11-09T05:16:06
null
{"repository":{"description":"Haxe Integrated Development Environment (HIDE) are written using Haxe and Javascript.","watchers":57,"stargazers":57,"forks":6,"fork":false,"size":4115,"owner":"misterpah","private":false,"open_issues":1,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"JavaScript","created_at":"2013-09-29T02:03:00-07:00","pushed_at":"2013-11-08T21:16:05-08:00","master_branch":"master"},"actor_attributes":{"type":"User","blog":"http://www.misterpah.com","location":"Malaysia","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/misterpah/hide/compare/bce28f8748...e7a45899d9"}
PushEvent
true
{"shas":[["327b3e61b7b455e9f387b4e57667d30da081d188","[email protected]","Java programs to demonstrate the creation of Custom Exception class","naironics",true]],"size":1,"ref":"refs/heads/master","head":"327b3e61b7b455e9f387b4e57667d30da081d188"}
{ "id": 10251420, "name": "Java", "url": "https://github.com/naironics/Java" }
{ "id": null, "login": "naironics", "gravatar_id": "5643d8d01e141e38d5749332bf1d5899", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-06-19T04:50:25
null
{"repository":{"description":"Cool Java Hacks","homepage":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":376,"owner":"naironics","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Java","created_at":"2013-05-23T12:16:09-07:00","pushed_at":"2013-06-18T21:50:24-07:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/naironics/Java/compare/cd2868859f...327b3e61b7"}
PushEvent
true
{"shas":[["ba556534cd30d309122ad4a8a76fa8c6d0e3d6b7","[email protected]","Added ssh","ozaretc",true]],"size":1,"ref":"refs/heads/master","head":"ba556534cd30d309122ad4a8a76fa8c6d0e3d6b7"}
{ "id": 14279875, "name": "TreeView", "url": "https://github.com/ozare/TreeView" }
{ "id": null, "login": "ozare", "gravatar_id": "6283aa47f25f9798eb2685bb863d9080", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-11-10T16:59:51
null
{"repository":{"description":"TreeView for dynamically generated tables","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":116,"owner":"ozare","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"created_at":"2013-11-10T08:43:04-08:00","pushed_at":"2013-11-10T08:59:50-08:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Oleg","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/ozare/TreeView/compare/c1f66d3b95...ba556534cd"}
PushEvent
true
{"shas":[["4e03dc5c51dacb87012279430d62920891949fb4","[email protected]","Db Suport DynSql","zbw911",true]],"size":1,"ref":"refs/heads/master","head":"4e03dc5c51dacb87012279430d62920891949fb4"}
{ "id": 10400668, "name": "Dev.All", "url": "https://github.com/zbw911/Dev.All" }
{ "id": null, "login": "zbw911", "gravatar_id": "4167bcbf4df7934f40d39f6bebe1e292", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-11-07T03:55:58
null
{"repository":{"description":"All in one","watchers":1,"stargazers":1,"forks":2,"fork":false,"size":20684,"owner":"zbw911","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"C#","created_at":"2013-05-31T01:15:35-07:00","pushed_at":"2013-11-06T19:55:58-08:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"[email protected]"},"url":"https://github.com/zbw911/Dev.All/compare/43d2831bf9...4e03dc5c51"}
PushEvent
true
{"shas":[["51fa21e0c8c11512ccfcf00f809697693a36c21d","[email protected]","Added Swiften lib prototype which connects to gmail chat, uses boost, and seems to work pretty well","David Kimmel",true]],"size":1,"ref":"refs/heads/master","head":"51fa21e0c8c11512ccfcf00f809697693a36c21d"}
{ "id": 6995249, "name": "nclone", "url": "https://github.com/dwkimm01/nclone" }
{ "id": null, "login": "dwkimm01", "gravatar_id": "dd6ae3c356eec36e0bca1c7601be156a", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-08-14T06:07:50
null
{"repository":{"description":"naim clone","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":994,"owner":"dwkimm01","private":false,"open_issues":1,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"C++","created_at":"2012-12-03T22:06:10-08:00","pushed_at":"2013-08-13T23:07:49-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"David","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/dwkimm01/nclone/compare/9ab93a3d05...51fa21e0c8"}
PushEvent
true
{"ref":"refs/heads/master","size":2,"head":"25a4c19bcc18bd6f718b102f231b0680e91f203a","shas":[["02c3da6b6597be86833eb69b970486a4bfe5d556","[email protected]","add coloured ls OS detection","Arkadiusz Hiler",true],["25a4c19bcc18bd6f718b102f231b0680e91f203a","[email protected]","extract bindings to separate fine","Arkadiusz Hiler",true]]}
{ "id": 1471365, "name": "zsh-config", "url": "https://github.com/ivyl/zsh-config" }
{ "id": null, "login": "ivyl", "gravatar_id": "ab55778fee12b6744545c5f3ab6325f2", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-02-01T06:20:35
null
{"repository":{"open_issues":0,"has_wiki":true,"owner":"ivyl","homepage":"","watchers":4,"created_at":"2011-03-12T03:50:22-08:00","has_issues":true,"description":"my zsh configuration files","stargazers":4,"fork":false,"size":180,"has_downloads":true,"language":"Shell","pushed_at":"2013-01-31T22:20:34-08:00","forks":1,"private":false},"actor_attributes":{"name":"Arkadiusz Hiler","location":"Poland","blog":"http://hiler.pl","type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/ivyl/zsh-config/compare/6f296ff841...25a4c19bcc"}
PushEvent
true
{"shas":[["a4f8fba12a6e87d0d51621b388ea7511705e2a98","fcc5b734872e83bd0907f922b61d2cfb9091e723@users.noreply.github.com","Update README.md","jimmyyeo",true]],"size":1,"ref":"refs/heads/master","head":"a4f8fba12a6e87d0d51621b388ea7511705e2a98"}
{ "id": 13418957, "name": "Yeodem", "url": "https://github.com/jimmyyeo/Yeodem" }
{ "id": null, "login": "jimmyyeo", "gravatar_id": "4e602b4e8b311777f35c9b8500cc5e1a", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-10-11T16:25:28
null
{"repository":{"description":"A Raspberry Pi script that unplugs your DSL modem for you.","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":304,"owner":"jimmyyeo","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Python","created_at":"2013-10-08T09:26:07-07:00","pushed_at":"2013-10-11T09:25:27-07:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/jimmyyeo/Yeodem/compare/5b4d47ef1d...a4f8fba12a"}
PushEvent
true
{"shas":[["1feb7cb599552a89a1ee81d7be312afb7309021f","[email protected]","Updated by run at Fri Aug 16 01:10:16 IST 2013","Aengus Walton",true]],"size":1,"ref":"refs/heads/gh-pages","head":"1feb7cb599552a89a1ee81d7be312afb7309021f"}
{ "id": 7613215, "name": "chineseair", "url": "https://github.com/kopf/chineseair" }
{ "id": null, "login": "kopf", "gravatar_id": "134335004b9301326fdd8e1775c35851", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-08-16T00:10:20
null
{"repository":{"description":"Graphing air quality readings from several major Chinese centers","homepage":"http://kopf.github.com/chineseair/","watchers":22,"stargazers":22,"forks":5,"fork":false,"size":29370,"owner":"kopf","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"JavaScript","created_at":"2013-01-14T13:38:43-08:00","pushed_at":"2013-08-15T17:10:19-07:00","master_branch":"gh-pages"},"actor_attributes":{"type":"User","name":"Aengus Walton","company":"edelight GmbH","blog":"http://ventolin.org","location":"Germany","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/kopf/chineseair/compare/1d51ecb4d4...1feb7cb599"}
PushEvent
true
{"shas":[["a2f4f1b02f0b33c53f097f254a421bae831a987e","[email protected]","pins scaffold","udaya prakash",true]],"size":1,"ref":"refs/heads/master","head":"a2f4f1b02f0b33c53f097f254a421bae831a987e"}
{ "id": 15217792, "name": "Ayadu", "url": "https://github.com/udprakash/Ayadu" }
{ "id": null, "login": "udprakash", "gravatar_id": "13d5eef5a342e925b2b88cca6a8a7512", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-12-16T13:23:40
null
{"repository":{"description":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":160,"owner":"udprakash","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Ruby","created_at":"2013-12-15T21:27:06-08:00","pushed_at":"2013-12-16T05:23:39-08:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/udprakash/Ayadu/compare/645bb21aca...a2f4f1b02f"}
PushEvent
true
{"shas":[["da70ca58ebf200d11573c6923d0bd301544cdb5b","[email protected]","Is the problem in the categories?","Ilija Eftimov",true]],"ref":"refs/heads/master","size":1,"head":"da70ca58ebf200d11573c6923d0bd301544cdb5b"}
{ "id": 7771329, "name": "bleroku", "url": "https://github.com/fteem/bleroku" }
{ "id": null, "login": "fteem", "gravatar_id": "81b70354d05caf6bdf7e7953713c1cd4", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-01-23T14:22:57
null
{"repository":{"stargazers":0,"description":"","owner":"fteem","pushed_at":"2013-01-23T06:22:57-08:00","forks":0,"language":"JavaScript","has_wiki":true,"fork":false,"size":8696,"open_issues":0,"has_issues":true,"watchers":0,"private":false,"has_downloads":true,"created_at":"2013-01-23T01:10:13-08:00"},"actor_attributes":{"name":"Ile Eftimov","blog":"","location":"Macedonia","type":"User","company":"Siyelo","email":"[email protected]"},"url":"https://github.com/fteem/bleroku/compare/dc6163a540...da70ca58eb"}
PushEvent
true
{"shas":[["a9ffce83e0a919833cf252bbda48ed71b31cb766","[email protected]","readme bump","Nick Shook",true]],"size":1,"ref":"refs/heads/master","head":"a9ffce83e0a919833cf252bbda48ed71b31cb766"}
{ "id": 15035286, "name": "bar", "url": "https://github.com/shicholas/bar" }
{ "id": null, "login": "shicholas", "gravatar_id": "79bb59075981dfc135f3a76e7d01739b", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-12-09T03:42:01
null
{"repository":{"description":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":96,"owner":"shicholas","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"created_at":"2013-12-08T17:34:51-08:00","pushed_at":"2013-12-08T19:42:01-08:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Nick","blog":"nshook.com","location":"Las Vegas, NV","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/shicholas/bar/compare/80870ba502...a9ffce83e0"}
PushEvent
true
{"shas":[["ba1f399a51eb406b3c95616ea9a3f7437203406f","[email protected]","call it a today, i have sass colors.scss working. also the backgrid is not that suitable for this project, move back to the old tiny-table solution","zpeng",true],["8439a17a0596ab3fe7e31246c8467a019fddbfaf","[email protected]","removing backgrid","zpeng",true]],"size":2,"ref":"refs/heads/master","head":"8439a17a0596ab3fe7e31246c8467a019fddbfaf"}
{ "id": 8952989, "name": "gateway", "url": "https://github.com/zpeng/gateway" }
{ "id": null, "login": "zpeng", "gravatar_id": "c3e89a956fbe869fe66d55271ccb5970", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-04-04T15:54:09
null
{"repository":{"description":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":3744,"owner":"zpeng","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"JavaScript","created_at":"2013-03-22T06:57:40-07:00","pushed_at":"2013-04-04T08:54:07-07:00","master_branch":"master"},"actor_attributes":{"type":"User","location":"London","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/zpeng/gateway/compare/1ed6a9cc15...8439a17a05"}
PushEvent
true
{"shas":[["6a869e59368bec5061c197dc389386658d3b2e59","[email protected]","Update form layout","Eric Paxton",false]],"size":1,"ref":"refs/heads/master","head":"6a869e59368bec5061c197dc389386658d3b2e59"}
{ "id": 14343038, "name": "obtp", "url": "https://github.com/Oregongov/obtp" }
{ "id": null, "login": "heypaxton", "gravatar_id": "d6584f2dd9298925efbf0baa4b141f42", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-12-05T17:50:21
null
{"repository":{"description":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":392,"owner":"Oregongov","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"CSS","created_at":"2013-11-12T11:42:14-08:00","pushed_at":"2013-12-05T09:50:20-08:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Eric Paxton","blog":"","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/Oregongov/obtp/compare/b44fbc8399...6a869e5936"}
PushEvent
true
{"shas":[["f2680cb17574831238c186790288bcbd50fa2d37","[email protected]","update file-dir","Tyrone",true]],"size":1,"ref":"refs/heads/master","head":"f2680cb17574831238c186790288bcbd50fa2d37"}
{ "id": 5896257, "name": "Ult7zip", "url": "https://github.com/headio/Ult7zip" }
{ "id": null, "login": "headio", "gravatar_id": "f069c9711c470a01ae84abb319cbba92", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-04-26T09:28:39
null
{"repository":{"description":"zip and unzip support 7z format","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":500,"owner":"headio","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"C++","created_at":"2012-09-20T20:24:58-07:00","pushed_at":"2013-04-26T02:28:38-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Tyrone","blog":"http://hai-tao.com","email":"[email protected]"},"url":"https://github.com/headio/Ult7zip/compare/a22f1dac6e...f2680cb175"}
PushEvent
true
{"shas":[["544f9abc3761dc5add36616674864934515d72df","[email protected]","wip","Leon Gondelman",true]],"size":1,"ref":"refs/heads/master","head":"544f9abc3761dc5add36616674864934515d72df"}
{ "id": 9194839, "name": "m2", "url": "https://github.com/lgondelmann/m2" }
{ "id": null, "login": "lgondelmann", "gravatar_id": "7890fb9676d36e50d99dd59b848e87b8", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-04-26T15:24:41
null
{"repository":{"description":"Second Order Deductive Program Verification","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":1204,"owner":"lgondelmann","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"created_at":"2013-04-03T06:11:50-07:00","pushed_at":"2013-04-26T08:24:40-07:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/lgondelmann/m2/compare/b00e4e6e11...544f9abc37"}
PushEvent
true
{"shas":[["5c2bd93dfad7bce29b81e4cc6f4fa56bf3b6035e","[email protected]","[FaceRecognitionThread] change params of signal sendEyesCoord to float\n\nUpdating parameters of signal sendEyesCoord(). They were change to float.\nAdding third parameter distance for future usage and also compatibility\nwith slot setRotationHead in CameraManipulator.","David",true]],"size":1,"ref":"refs/heads/features-faceDetection-Jakab","head":"5c2bd93dfad7bce29b81e4cc6f4fa56bf3b6035e"}
{ "id": 14046535, "name": "Arvis", "url": "https://github.com/marconak/Arvis" }
{ "id": null, "login": "durcakd", "gravatar_id": "0fb5a4d006d550ff6338622dc185cafd", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-11-23T21:42:39
null
{"repository":{"description":"","homepage":"","watchers":0,"stargazers":0,"forks":0,"fork":true,"size":18675,"owner":"marconak","private":false,"open_issues":1,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"C++","created_at":"2013-11-01T08:35:14-07:00","pushed_at":"2013-11-23T13:42:38-08:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/marconak/Arvis/compare/3ab889f34e...5c2bd93dfa"}
PushEvent
true
{"shas":[["1b6a336d1508a3d540be1a20ebb419e46c769c7e","[email protected]","update readme","mojzu",true]],"size":1,"ref":"refs/heads/master","head":"1b6a336d1508a3d540be1a20ebb419e46c769c7e"}
{ "id": 8716666, "name": "moj-data", "url": "https://github.com/mojzu/moj-data" }
{ "id": null, "login": "mojzu", "gravatar_id": "b4132e28acb9bc10eb0f780b2bad9371", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-03-12T00:55:34
null
{"repository":{"description":"Python modules for extracting table data from text files.","homepage":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":112,"owner":"mojzu","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Python","created_at":"2013-03-11T17:45:15-07:00","pushed_at":"2013-03-11T17:55:33-07:00","master_branch":"master"},"actor_attributes":{"type":"User","location":"United Kingdom","email":"[email protected]"},"url":"https://github.com/mojzu/moj-data/compare/70b94a865d...1b6a336d15"}
PushEvent
true
{"shas":[["7b0f36d54c145a8a318c51025916efa975832b54","[email protected]","Update config.xml\n\nupdate this file","reda amir",true]],"size":1,"ref":"refs/heads/master","head":"7b0f36d54c145a8a318c51025916efa975832b54"}
{ "id": 14159306, "name": "sim", "url": "https://github.com/redario100/sim" }
{ "id": null, "login": "redario100", "gravatar_id": "232bbeef1861e485017ee77ba62b1463", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-11-06T01:19:19
null
{"repository":{"description":"test sim","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":1112,"owner":"redario100","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"JavaScript","created_at":"2013-11-05T17:09:29-08:00","pushed_at":"2013-11-05T17:19:18-08:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"reda amir","company":"redario","email":"[email protected]"},"url":"https://github.com/redario100/sim/compare/8a48d44bd1...7b0f36d54c"}
PushEvent
true
{"shas":[["f516a6bb9a1bf162a11f34b6d88084a9861e1da6","[email protected]","maintenance policy draft","Yves Senn",true]],"size":1,"ref":"refs/heads/maintenance_guidelines","head":"f516a6bb9a1bf162a11f34b6d88084a9861e1da6"}
{ "id": 9476435, "name": "gitlabhq", "url": "https://github.com/senny/gitlabhq" }
{ "id": null, "login": "senny", "gravatar_id": "3d698e2872c07061a455d9e250861235", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-05-07T07:56:07
null
{"repository":{"description":"Project management and code hosting application. Follow us on twitter @gitlabhq","homepage":"gitlab.org","watchers":0,"stargazers":0,"forks":0,"fork":true,"size":244,"owner":"senny","private":false,"open_issues":0,"has_issues":false,"has_downloads":true,"has_wiki":true,"language":"Ruby","created_at":"2013-04-16T08:56:22-07:00","pushed_at":"2013-05-07T00:56:01-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Yves Senn","company":"- (@fistofsenn)","blog":"http://blog.senny.ch","location":"Bern, Switzerland","email":"[email protected]"},"url":"https://github.com/senny/gitlabhq/compare/61211e0ce5...f516a6bb9a"}
PushEvent
true
{"shas":[["5e958663f8b0f1bea3ac09c7b84a6d257b56435b","[email protected]","-every evening","strati1991",true]],"size":1,"ref":"refs/heads/master","head":"5e958663f8b0f1bea3ac09c7b84a6d257b56435b"}
{ "id": 10783449, "name": "pms", "url": "https://github.com/strati1991/pms" }
{ "id": null, "login": "strati1991", "gravatar_id": "09ecef4b89f7feb2c51aa0d1f4072b7b", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-07-11T13:23:50
null
{"repository":{"watchers":0,"stargazers":0,"forks":0,"fork":false,"size":2124,"owner":"strati1991","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"PHP","created_at":"2013-06-18T23:51:58-07:00","pushed_at":"2013-07-11T06:23:49-07:00","master_branch":"master"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/strati1991/pms/compare/890052f2d6...5e958663f8"}
PushEvent
true
{"shas":[["de89cd159cca6dcba716a4709479698c5ce4058b","[email protected]","Many changes\n\nFull Game Test in needed","Alex Volkoff",true]],"size":1,"ref":"refs/heads/TicTacToe","head":"de89cd159cca6dcba716a4709479698c5ce4058b"}
{ "id": 10168479, "name": "gameHub", "url": "https://github.com/suxlv2/gameHub" }
{ "id": null, "login": "suxlv2", "gravatar_id": "81107b3f3770c168e9d5ebbc0b35b22f", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-08-02T19:21:42
null
{"repository":{"description":"","homepage":"","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":466,"owner":"suxlv2","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Java","created_at":"2013-05-20T00:58:53-07:00","pushed_at":"2013-08-02T12:21:41-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Sashko Volkoff","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/suxlv2/gameHub/compare/988ab7c56d...de89cd159c"}
PushEvent
true
{"shas":[["807f7f4835e9f0b3379d41ead8e2c9245e62dc41","[email protected]","Update find_duplicates.groovy","Daniele",true]],"size":1,"ref":"refs/heads/master","head":"807f7f4835e9f0b3379d41ead8e2c9245e62dc41"}
{ "id": 8038005, "name": "Scripts", "url": "https://github.com/DaniG2k/Scripts" }
{ "id": null, "login": "DaniG2k", "gravatar_id": "23046a8b91878265eb9c3307a2b5b850", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-09-06T11:15:44
null
{"repository":{"description":"Misc. scripts","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":952,"owner":"DaniG2k","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"PHP","created_at":"2013-02-05T13:01:53-08:00","pushed_at":"2013-09-06T04:15:43-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Daniele","blog":"www.asia-gazette.com","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/DaniG2k/Scripts/compare/37e211bea7...807f7f4835"}
PushEvent
true
{"shas":[["a785ea03020e9c7e05a4009a7981f788cca6352e","[email protected]","Change default theme for zsh","Anikin Artyom",true]],"size":1,"ref":"refs/heads/master","head":"a785ea03020e9c7e05a4009a7981f788cca6352e"}
{ "id": 13449030, "name": "dotfiles", "url": "https://github.com/arty88/dotfiles" }
{ "id": null, "login": "arty88", "gravatar_id": "fba181536b0512e5d46c931b30a2a22b", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-10-09T18:20:46
null
{"repository":{"description":"vim, zsh","watchers":0,"stargazers":0,"forks":0,"fork":false,"size":164,"owner":"arty88","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"VimL","created_at":"2013-10-09T10:34:40-07:00","pushed_at":"2013-10-09T11:20:45-07:00","master_branch":"master"},"actor_attributes":{"type":"User","name":"Artyom","email":"[email protected]"},"url":"https://github.com/arty88/dotfiles/compare/9fa44bb0b2...a785ea0302"}
PushEvent
true
{"shas":[["423bc7e078b5232255cc7560ea66f0026995cff9","[email protected]","IDEIntf: regenerated translations\n\n\ngit-svn-id: http://svn.freepascal.org/svn/lazarus/trunk@40737 4005530d-fff6-0310-9dd1-cebe43e6787f","maxim",true]],"size":1,"ref":"refs/heads/upstream","head":"423bc7e078b5232255cc7560ea66f0026995cff9"}
{ "id": 171777, "name": "lazarus", "url": "https://github.com/graemeg/lazarus" }
{ "id": null, "login": "graemeg", "gravatar_id": "c81b3f74a82e8eb04332933c40b4b552", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2013-04-07T13:57:50
null
{"repository":{"description":"Lazarus - an IDE and GUI toolkit for use with Free Pascal","homepage":"http://www.lazarus.freepascal.org/","watchers":38,"stargazers":38,"forks":8,"fork":false,"size":6884,"owner":"graemeg","private":false,"open_issues":0,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Delphi","created_at":"2009-04-09T02:07:45-07:00","pushed_at":"2013-04-07T06:57:48-07:00","master_branch":"upstream"},"actor_attributes":{"type":"User","name":"Graeme Geldenhuys","blog":"http://geldenhuys.co.uk","location":"United Kingdom","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/graemeg/lazarus/compare/c66c91a3ea...423bc7e078"}