Search is not available for this dataset
type
stringclasses
17 values
public
bool
2 classes
payload
stringlengths
2
554k
repo
dict
actor
dict
org
dict
created_at
timestamp[us]
id
stringlengths
10
10
other
stringlengths
41
67.4k
IssueCommentEvent
true
{"issue":{"milestone":null,"user":{"id":825331,"login":"rlbisbe","url":"https://api.github.com/users/rlbisbe","avatar_url":"https://secure.gravatar.com/avatar/016e257f3adcb9a40135dd474b3bec25?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"016e257f3adcb9a40135dd474b3bec25"},"created_at":"2012-02-16T16:34:46Z","title":"undefined method `exists?' for Dir:Class","state":"open","labels":[],"updated_at":"2012-02-18T04:51:23Z","id":3254041,"pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"closed_at":null,"html_url":"https://github.com/seri/gettc/issues/6","body":"I downloaded the version from the repository and I haven't been able to download any problem, I get this error message just after: You have given ID = {x}\r\n","number":6,"url":"https://api.github.com/repos/seri/gettc/issues/6","comments":3,"assignee":null},"comment":{"user":{"id":152661,"login":"seri","url":"https://api.github.com/users/seri","avatar_url":"https://secure.gravatar.com/avatar/6a1fab15b73b34ce63b37d93cdbab42e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"6a1fab15b73b34ce63b37d93cdbab42e"},"created_at":"2012-02-18T04:51:23Z","updated_at":"2012-02-18T04:51:23Z","id":4032039,"body":"Did you forget to re-install gettc after the Ruby upgrade?\r\n\r\n $ sudo gem uninstall gettc\r\n $ cd /path/to/gettc\r\n $ rake\r\n","url":"https://api.github.com/repos/seri/gettc/issues/comments/4032039"},"action":"created"}
{ "id": 2116288, "name": "seri/gettc", "url": "https://api.github.dev/repos/seri/gettc" }
{ "id": 152661, "login": "seri", "gravatar_id": "6a1fab15b73b34ce63b37d93cdbab42e", "avatar_url": "https://secure.gravatar.com/avatar/6a1fab15b73b34ce63b37d93cdbab42e?d=http://github.dev%2Fimages%2Fgravatars%2Fgravatar-user-420.png", "url": "https://api.github.dev/users/seri" }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-02-18T04:51:23
1520981341
null
IssueCommentEvent
true
{"issue":{"milestone":null,"created_at":"2012-01-29T02:00:17Z","title":"Configuration issues","user":{"id":4893,"login":"sandal","url":"https://api.github.com/users/sandal","avatar_url":"https://secure.gravatar.com/avatar/31e038e4e9330f6c75ccfd1fca8010ee?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"31e038e4e9330f6c75ccfd1fca8010ee"},"labels":[],"updated_at":"2012-01-29T23:45:32Z","state":"open","id":3009336,"html_url":"https://github.com/wicz/sisal/issues/1","closed_at":null,"pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"body":"Your `Sisal` module feels very overengineered :-/\r\n\r\nI suggest moving all of its contents to a `Sisal::Configuration` object and having it look like this:\r\n\r\n```ruby\r\nmodule Sisal\r\n class Configuration\r\n def self.default\r\n config = new\r\n\r\n config.provider(:twilio, :class => TwilioProvider)\r\n config.provider(:tropo, :class => TropoProvider)\r\n config.provider(:clickatell, :class => ClickatellProvider)\r\n\r\n config\r\n end\r\n\r\n def initialize\r\n self.providers = Hash.new { |h,k| h[k] = {} }\r\n end\r\n\r\n def provider(name, params)\r\n providers[name].update(params)\r\n end\r\n\r\n # override the provide rather than merging\r\n def provider!(name, params)\r\n providers[name] = params\r\n end\r\n\r\n def default_provider\r\n providers[default_provider]\r\n end\r\n\r\n attr_accessor :providers\r\n attr_writer :default_provider\r\n end\r\nend\r\n```\r\n\r\nThen in _lib/sisal.rb_\r\n\r\n```ruby\r\nmodule Sisal\r\n class << self\r\n def configuration\r\n self.configuration ||= Configuration.default\r\n end\r\n\r\n attr_writer :configuration\r\n end\r\nend\r\n```\r\n\r\nUsage for most users:\r\n\r\n```ruby\r\nconfig = Sisal.configuration\r\n\r\nconfig.default_provider = :tropo\r\n\r\nconfig.provider(:tropo, token: '123')\r\nconfig.provider(:clickatell, api_id: '123', user: 'user', password: 'pass')\r\nconfig.provider(:twilio, account_id: '123', token: '123', from: '552500')\r\n```\r\n\r\nFor advanced users:\r\n\r\n```ruby\r\nconfig = Sisal.configuration\r\n\r\nconfig.default_provider = :something\r\n\r\n# add a new kind of provider\r\nconfig.provider(:something, :class => SomethingProvider, ...)\r\n\r\n# edit an existing provider\r\nconfig.provider(:twilio, :token => \"...\")\r\n\r\n# replace an existing provider's params\r\nconfig.provider!(:tropo, :class => MyCustomTropoProvider, ...)\r\n```\r\n\r\nFor crazy users:\r\n\r\n```ruby\r\nSisal.configuration = ZomgObject\r\n# ... you're on your own, buddy.\r\n```\r\n\r\nBut this still avoids weird `instance_eval` hacks, and dynamic class lookups, name based dependencies, and awkward reset logic on a singleton object. Each time you (as the maintainer) add a new provider you need to update only one line of code in the `Configuration.default` method, a small price to pay for arbitrary naming and explicit mapping.\r\n\r\n","number":1,"url":"https://api.github.com/repos/wicz/sisal/issues/1","comments":10,"assignee":null},"comment":{"created_at":"2012-01-29T23:45:32Z","user":{"id":43020,"login":"wicz","url":"https://api.github.com/users/wicz","avatar_url":"https://secure.gravatar.com/avatar/e294c60b884bb3a39e1d37b403d0c320?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"e294c60b884bb3a39e1d37b403d0c320"},"updated_at":"2012-01-29T23:45:32Z","id":3712550,"body":"I thought about 3rd-party extending `Sisal::Provider` as well, but I wasn't sure if it is a good practice. Since you mentioned it, I'm finally sold =)","url":"https://api.github.com/repos/wicz/sisal/issues/comments/3712550"},"action":"created"}
{ "id": 3188075, "name": "wicz/sisal", "url": "https://api.github.dev/repos/wicz/sisal" }
{ "id": 43020, "login": "wicz", "gravatar_id": "e294c60b884bb3a39e1d37b403d0c320", "avatar_url": "https://secure.gravatar.com/avatar/e294c60b884bb3a39e1d37b403d0c320?d=http://github.dev%2Fimages%2Fgravatars%2Fgravatar-user-420.png", "url": "https://api.github.dev/users/wicz" }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-01-29T23:45:32
1515313995
null
IssueCommentEvent
true
{"comment_id":10357845,"issue_id":4444074}
{ "id": 2101031, "name": "HaxeFlixel", "url": "https://github.com/Beeblerox/HaxeFlixel" }
{ "id": null, "login": "impaler", "gravatar_id": "8728f32dc1d248c90c0c451adb00e0d1", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-11-14T07:53:28
null
{"repository":{"pushed_at":"2012-11-13T10:15:26-08:00","forks":13,"owner":"Beeblerox","created_at":"2011-07-25T06:12:48-07:00","watchers":109,"open_issues":45,"homepage":"","has_downloads":true,"master_branch":"flixelNME","stargazers":109,"description":"Haxe port of Flixel v. 2.55. There is 2 versions: flixelNME - containing only flixel port (targets flash and c++), and flixel+powertools - flixel port with FlixelPowerTools by Photonstorm (see https://github.com/photonstorm/Flixel-Power-Tools) (works only on flash)","fork":false,"size":1265,"has_wiki":true,"has_issues":true,"language":"HaXe","private":false},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/Beeblerox/HaxeFlixel/issues/46#issuecomment-10357845"}
IssueCommentEvent
true
{"issue_id":4339834,"comment_id":5762665}
{ "id": null, "name": "DeathControl", "url": "https://github.com/Bone008/DeathControl" }
{ "id": null, "login": "Bone008", "gravatar_id": "1d55af883f9de7aaafa2287f4d8b32ed", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-05-17T12:01:30
null
{"repository":{"watchers":6,"has_downloads":true,"description":"My bukkit-plugin DeathControl","language":"Java","created_at":"2011/06/22 10:08:30 -0700","has_issues":true,"has_wiki":true,"forks":5,"fork":false,"homepage":"","size":565,"private":false,"open_issues":0,"owner":"Bone008","pushed_at":"2012/05/14 14:45:53 -0700"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/Bone008/DeathControl/issues/4#issuecomment-5762665"}
IssueCommentEvent
true
{"issue_id":4109983,"comment_id":5129569}
{ "id": null, "name": "Citizens", "url": "https://github.com/CitizensDev/Citizens" }
{ "id": null, "login": "SatoAV", "gravatar_id": "08fee724cb4b9f37703c03179c388b7a", "avatar_url": null, "url": null }
{ "id": null, "login": "CitizensDev", "gravatar_id": null, "avatar_url": null, "url": null }
2012-04-14T07:40:53
null
{"repository":{"open_issues":528,"organization":"CitizensDev","created_at":"2011/08/21 21:42:14 -0700","pushed_at":"2012/04/05 12:42:08 -0700","description":"NPCs for Bukkit","watchers":98,"has_downloads":true,"fork":false,"homepage":"citizensnpcs.net","size":10632,"private":false,"owner":"CitizensDev","has_issues":true,"has_wiki":true,"forks":43,"language":"Java"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/CitizensDev/Citizens/issues/975#issuecomment-5129569"}
IssueCommentEvent
true
{"comment_id":7357524,"issue_id":5908581}
{ "id": null, "name": "DustMite", "url": "https://github.com/CyberShadow/DustMite" }
{ "id": null, "login": "chadjoan", "gravatar_id": "bc50adcb2c3a34b7c7b414d4ec70b56a", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-07-29T23:16:44
null
{"repository":{"owner":"CyberShadow","pushed_at":"2012-07-29T14:34:15-07:00","forks":3,"open_issues":1,"has_issues":true,"language":"D","created_at":"2011-05-20T13:41:27-07:00","has_downloads":true,"homepage":"https://github.com/CyberShadow/DustMite/wiki","fork":false,"size":136,"watchers":12,"private":false,"description":"D source code minimization tool","has_wiki":true},"actor_attributes":{"type":"User","name":"cjoan","email":"[email protected]"},"url":"https://github.com/CyberShadow/DustMite/issues/9#issuecomment-7357524"}
IssueCommentEvent
true
{"comment_id":11767447,"issue_id":9390581}
{ "id": 7231731, "name": "Roads-Models", "url": "https://github.com/Dashron/Roads-Models" }
{ "id": null, "login": "Dashron", "gravatar_id": "9d465b354b7dc23a8d87df6f77d6af55", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-12-30T18:46:41
null
{"repository":{"watchers":0,"has_wiki":true,"owner":"Dashron","created_at":"2012-12-18T14:47:56-08:00","stargazers":0,"open_issues":2,"pushed_at":"2012-12-30T10:46:20-08:00","description":"A Node.js model system for mysql and redis","forks":0,"has_issues":true,"fork":false,"size":200,"has_downloads":true,"language":"JavaScript","private":false},"actor_attributes":{"email":"[email protected]","location":"Manhattan, NY","blog":"www.dashron.com","type":"User","name":"Aaron Hedges"},"url":"https://github.com/Dashron/Roads-Models/issues/1#issuecomment-11767447"}
IssueCommentEvent
true
{"comment_id":6948295,"issue_id":5570005}
{ "id": null, "name": "GoSublime", "url": "https://github.com/DisposaBoy/GoSublime" }
{ "id": null, "login": "DisposaBoy", "gravatar_id": "6bd67330c6653ce269d0fedd6be7a027", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-07-12T21:26:54
null
{"repository":{"watchers":117,"has_wiki":true,"owner":"DisposaBoy","created_at":"2011-08-27T15:24:39-07:00","open_issues":11,"pushed_at":"2012-07-12T13:18:15-07:00","forks":9,"homepage":"","has_issues":true,"fork":false,"size":380,"has_downloads":true,"description":"A Golang plugin collection for the text editor SublimeText 2 providing code completion and other IDE-like features.","private":false,"language":"Python"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/DisposaBoy/GoSublime/issues/86#issuecomment-6948295"}
IssueCommentEvent
true
{"issue_id":6261858,"comment_id":9593142}
{ "id": 2234102, "name": "CodeIgniter", "url": "https://github.com/EllisLab/CodeIgniter" }
{ "id": null, "login": "narfbg", "gravatar_id": "01c7cad7af7361ad9ca670fbf1d502e4", "avatar_url": null, "url": null }
{ "id": null, "login": "EllisLab", "gravatar_id": null, "avatar_url": null, "url": null }
2012-10-19T08:25:31
null
{"repository":{"has_downloads":true,"created_at":"2011-08-19T06:34:00-07:00","description":"EllisLab's Open Source PHP Framework","stargazers":4468,"owner":"EllisLab","pushed_at":"2012-10-19T01:21:10-07:00","forks":1417,"has_issues":true,"has_wiki":true,"organization":"EllisLab","fork":false,"size":2780,"open_issues":292,"language":"PHP","integrate_branch":"feature/unit-tests","homepage":"http://codeigniter.com/","private":false,"watchers":4468,"master_branch":"develop"},"actor_attributes":{"type":"User","company":"Applicata Ltd.","location":"Bulgaria","name":"Andrey Andreev","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/EllisLab/CodeIgniter/issues/1721#issuecomment-9593142"}
IssueCommentEvent
true
{"issue_id":7543414,"comment_id":9383230}
{ "id": 2234102, "name": "CodeIgniter", "url": "https://github.com/EllisLab/CodeIgniter" }
{ "id": null, "login": "timw4mail", "gravatar_id": "2ea65d51f854de868d4e94de8583ed96", "avatar_url": null, "url": null }
{ "id": null, "login": "EllisLab", "gravatar_id": null, "avatar_url": null, "url": null }
2012-10-12T17:03:45
null
{"repository":{"has_downloads":true,"description":"EllisLab's Open Source PHP Framework","owner":"EllisLab","organization":"EllisLab","watchers":4425,"created_at":"2011-08-19T06:34:00-07:00","has_issues":true,"stargazers":4425,"has_wiki":true,"fork":false,"size":2516,"open_issues":300,"pushed_at":"2012-10-12T04:54:35-07:00","integrate_branch":"feature/unit-tests","homepage":"http://codeigniter.com/","forks":1393,"private":false,"language":"PHP","master_branch":"develop"},"actor_attributes":{"type":"User","blog":"https://timshomepage.net","name":"Timothy Warren","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/EllisLab/CodeIgniter/issues/1881#issuecomment-9383230"}
IssueCommentEvent
true
{"comment_id":10016744,"issue_id":8060328}
{ "id": 2234102, "name": "CodeIgniter", "url": "https://github.com/EllisLab/CodeIgniter" }
{ "id": null, "login": "narfbg", "gravatar_id": "01c7cad7af7361ad9ca670fbf1d502e4", "avatar_url": null, "url": null }
{ "id": null, "login": "EllisLab", "gravatar_id": null, "avatar_url": null, "url": null }
2012-11-02T14:52:31
null
{"repository":{"owner":"EllisLab","has_wiki":true,"master_branch":"develop","has_issues":true,"organization":"EllisLab","language":"PHP","open_issues":225,"watchers":4525,"integrate_branch":"feature/unit-tests","homepage":"http://codeigniter.com/","stargazers":4525,"fork":false,"size":2668,"created_at":"2011-08-19T06:34:00-07:00","has_downloads":true,"private":false,"pushed_at":"2012-11-02T07:50:18-07:00","description":"EllisLab's Open Source PHP Framework","forks":1444},"actor_attributes":{"location":"Bulgaria","type":"User","company":"Applicata Ltd.","name":"Andrey Andreev","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/EllisLab/CodeIgniter/issues/1957#issuecomment-10016744"}
IssueCommentEvent
true
{"issue_id":4333816,"comment_id":5455785}
{ "id": null, "name": "CodeIgniter", "url": "https://github.com/EllisLab/CodeIgniter" }
{ "id": null, "login": "cryode", "gravatar_id": "87f227b9aa2967224be3dde79eb0163d", "avatar_url": null, "url": null }
{ "id": null, "login": "EllisLab", "gravatar_id": null, "avatar_url": null, "url": null }
2012-05-02T07:49:16
null
{"repository":{"description":"EllisLab's Open Source PHP Framework","organization":"EllisLab","owner":"EllisLab","open_issues":414,"pushed_at":"2012/05/02 00:23:42 -0700","has_issues":true,"homepage":"http://codeigniter.com/","forks":840,"created_at":"2011/08/19 06:34:00 -0700","integrate_branch":"feature/unit-tests","has_downloads":true,"master_branch":"develop","fork":false,"size":1576,"private":false,"has_wiki":true,"watchers":3127,"language":"PHP"},"actor_attributes":{"company":"Cryode","type":"User","name":"Eric Roberts","blog":"http://www.cryode.com","location":"Waukesha, WI","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/EllisLab/CodeIgniter/issues/1304#issuecomment-5455785"}
IssueCommentEvent
true
{"issue_id":1451009,"comment_id":11673349}
{ "id": 2234102, "name": "CodeIgniter", "url": "https://github.com/EllisLab/CodeIgniter" }
{ "id": null, "login": "narfbg", "gravatar_id": "01c7cad7af7361ad9ca670fbf1d502e4", "avatar_url": null, "url": null }
{ "id": null, "login": "EllisLab", "gravatar_id": null, "avatar_url": null, "url": null }
2012-12-25T14:15:32
null
{"repository":{"has_issues":true,"pushed_at":"2012-12-20T06:25:07-08:00","master_branch":"develop","description":"EllisLab's Open Source PHP Framework","stargazers":4830,"forks":1682,"owner":"EllisLab","has_downloads":true,"organization":"EllisLab","open_issues":175,"language":"PHP","has_wiki":true,"fork":false,"size":3200,"created_at":"2011-08-19T06:34:00-07:00","homepage":"http://codeigniter.com/","private":false,"integrate_branch":"feature/unit-tests","watchers":4830},"actor_attributes":{"company":"Applicata Ltd.","name":"Andrey Andreev","type":"User","location":"Bulgaria","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/EllisLab/CodeIgniter/issues/217#issuecomment-11673349"}
IssueCommentEvent
true
{"issue_id":5172983,"comment_id":9982572}
{ "id": 2234102, "name": "CodeIgniter", "url": "https://github.com/EllisLab/CodeIgniter" }
{ "id": null, "login": "narfbg", "gravatar_id": "01c7cad7af7361ad9ca670fbf1d502e4", "avatar_url": null, "url": null }
{ "id": null, "login": "EllisLab", "gravatar_id": null, "avatar_url": null, "url": null }
2012-11-01T14:49:30
null
{"repository":{"owner":"EllisLab","has_downloads":true,"organization":"EllisLab","language":"PHP","has_issues":true,"has_wiki":true,"master_branch":"develop","homepage":"http://codeigniter.com/","watchers":4521,"fork":false,"size":2912,"created_at":"2011-08-19T06:34:00-07:00","open_issues":228,"stargazers":4521,"private":false,"pushed_at":"2012-11-01T07:24:00-07:00","integrate_branch":"feature/unit-tests","description":"EllisLab's Open Source PHP Framework","forks":1443},"actor_attributes":{"name":"Andrey Andreev","company":"Applicata Ltd.","type":"User","location":"Bulgaria","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/EllisLab/CodeIgniter/issues/1512#issuecomment-9982572"}
IssueCommentEvent
true
{"comment_id":7657351,"issue_id":6039915}
{ "id": null, "name": "InfiniteCMS", "url": "https://github.com/Emudofus/InfiniteCMS" }
{ "id": null, "login": "Nami-Doc", "gravatar_id": "38ccb7e7b43bf1446bea8d1db919a5b8", "avatar_url": null, "url": null }
{ "id": null, "login": "Emudofus", "gravatar_id": null, "avatar_url": null, "url": null }
2012-08-10T21:44:22
null
{"repository":{"owner":"Emudofus","organization":"Emudofus","description":"InfiniteCMS latest release. Maintained. Please report issues using issues tracker.","has_downloads":true,"pushed_at":"2012-06-29T06:58:33-07:00","forks":4,"language":"PHP","created_at":"2011-07-24T12:37:24-07:00","stargazers":15,"fork":false,"size":2196,"has_wiki":true,"watchers":15,"private":false,"homepage":"","open_issues":5,"has_issues":true},"actor_attributes":{"type":"User","name":"Nami-Doc","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/Emudofus/InfiniteCMS/issues/8#issuecomment-7657351"}
IssueCommentEvent
true
{"comment_id":7078635,"issue_id":5528402}
{ "id": null, "name": "gedcomx", "url": "https://github.com/FamilySearch/gedcomx" }
{ "id": null, "login": "jralls", "gravatar_id": "a681e2e22ac1f89e2313732180d65ca4", "avatar_url": null, "url": null }
{ "id": null, "login": "FamilySearch", "gravatar_id": null, "avatar_url": null, "url": null }
2012-07-18T19:04:07
null
{"repository":{"description":"The neXt GEnealogical Data COMmunications standard.","owner":"FamilySearch","language":"Java","watchers":87,"has_wiki":true,"created_at":"2011-04-27T11:56:16-07:00","open_issues":53,"organization":"FamilySearch","fork":false,"size":228,"homepage":"","has_issues":true,"pushed_at":"2012-07-18T10:46:13-07:00","forks":9,"private":false,"has_downloads":true},"actor_attributes":{"name":"John Ralls","blog":"https://plus.google.com/107652260338546615938/about","location":"Fremont, California","type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/FamilySearch/gedcomx/issues/182#issuecomment-7078635"}
IssueCommentEvent
true
{"issue_id":6346360,"comment_id":7898941}
{ "id": null, "name": "ygopro", "url": "https://github.com/Fluorohydride/ygopro" }
{ "id": null, "login": "LadyYuma", "gravatar_id": "85ba524b85139a59c4341011fcc0a54f", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-08-21T12:06:51
null
{"repository":{"stargazers":45,"owner":"Fluorohydride","homepage":"","has_downloads":true,"pushed_at":"2012-08-20T06:34:52-07:00","forks":20,"language":"Lua","created_at":"2011-11-29T22:27:15-08:00","description":"A script engine for \"yu-gi-oh!\" and sample gui. Due to some reasons, I won't provide card images here. Please collect them yourself.","has_issues":true,"has_wiki":true,"watchers":45,"fork":false,"size":4984,"private":false,"open_issues":116},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/Fluorohydride/ygopro/issues/216#issuecomment-7898941"}
IssueCommentEvent
true
{"comment_id":8451448,"issue_id":6783338}
{ "id": null, "name": "Node-FileUtils", "url": "https://github.com/Gagle/Node-FileUtils" }
{ "id": null, "login": "Gagle", "gravatar_id": "ed588ac7cf65e779943059cc8cedfa37", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-09-11T08:39:16
null
{"repository":{"forks":2,"owner":"Gagle","description":"File and directory utilities for node.js.","has_downloads":true,"created_at":"2012-04-03T11:21:09-07:00","stargazers":10,"fork":false,"size":184,"has_wiki":true,"watchers":10,"private":false,"homepage":"","open_issues":2,"has_issues":true,"language":"JavaScript","pushed_at":"2012-08-17T02:51:51-07:00"},"actor_attributes":{"name":"Gabriel Llamas","type":"User","email":"[email protected]","location":"Sant Cugat del Vallès, Spain"},"url":"https://github.com/Gagle/Node-FileUtils/issues/6#issuecomment-8451448"}
IssueCommentEvent
true
{"issue_id":4241876,"comment_id":5290344}
{ "id": null, "name": "Dscanner", "url": "https://github.com/Hackerpilot/Dscanner" }
{ "id": null, "login": "roman-d-boiko", "gravatar_id": "491ad72fde01eaf80f565d79865265ae", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-04-23T20:03:44
null
{"repository":{"watchers":6,"has_downloads":true,"fork":false,"language":"D","has_issues":true,"has_wiki":true,"forks":2,"size":144,"private":false,"created_at":"2012/04/21 06:04:35 -0700","owner":"Hackerpilot","description":"Swiss-army knife for D source code","open_issues":1,"pushed_at":"2012/04/23 01:25:31 -0700"},"actor_attributes":{"name":"Roman D. Boiko","location":"Ukraine","type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/Hackerpilot/Dscanner/issues/4#issuecomment-5290344"}
IssueCommentEvent
true
{"issue_id":4583167,"comment_id":5716622}
{ "id": null, "name": "scrollAppend", "url": "https://github.com/Hawkers/scrollAppend" }
{ "id": null, "login": "dkrusenstrahle", "gravatar_id": "60911567d746c30656e011ed66e96091", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-05-15T14:07:13
null
{"repository":{"has_issues":true,"has_wiki":true,"forks":1,"homepage":"http://www.hawkee.com/snippet/9445/","open_issues":1,"pushed_at":"2012/04/17 06:43:15 -0700","fork":false,"watchers":6,"size":92,"private":false,"has_downloads":true,"owner":"Hawkers","description":"jQuery plugin for appending data as you scroll to the bottom of a page","created_at":"2012/04/17 06:33:13 -0700"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/Hawkers/scrollAppend/issues/1#issuecomment-5716622"}
IssueCommentEvent
true
{"issue_id":6088023,"comment_id":7566435}
{ "id": null, "name": "ChaOS", "url": "https://github.com/HerobrinesArmy/ChaOS" }
{ "id": null, "login": "sammie12340", "gravatar_id": "56b00d728f879a68709db02f7fbcf1e3", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-08-07T20:52:29
null
{"repository":{"description":"ChaOS development for Herobrine's Army in 0x10c","open_issues":1,"has_issues":true,"owner":"HerobrinesArmy","created_at":"2012-07-17T13:46:21-07:00","has_downloads":true,"stargazers":8,"fork":false,"size":180,"has_wiki":true,"watchers":8,"private":false,"pushed_at":"2012-08-07T13:43:18-07:00","forks":2,"language":"Assembly"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/HerobrinesArmy/ChaOS/issues/1#issuecomment-7566435"}
IssueCommentEvent
true
{"issue_id":3842404,"comment_id":5018708}
{ "id": null, "name": "spacefm", "url": "https://github.com/IgnorantGuru/spacefm" }
{ "id": null, "login": "hasufell", "gravatar_id": "14bf7d98a28e52ffcc1d8e3f2dae2afb", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-04-08T21:52:50
null
{"repository":{"watchers":12,"pushed_at":"2012/04/08 09:38:10 -0700","homepage":"http://ignorantguru.github.com/spacefm/","has_downloads":true,"has_issues":true,"forks":2,"fork":false,"language":"C","size":548,"private":false,"has_wiki":true,"created_at":"2012/03/14 06:19:23 -0700","owner":"IgnorantGuru","description":"SpaceFM File Manager","open_issues":37},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/IgnorantGuru/spacefm/issues/6#issuecomment-5018708"}
IssueCommentEvent
true
{"issue_id":3861730,"comment_id":4808440}
{ "id": null, "name": "la-clojure", "url": "https://github.com/JetBrains/la-clojure" }
{ "id": null, "login": "ilyasergey", "gravatar_id": "ac64d25e2aa28b02e93e5910ab19b08f", "avatar_url": null, "url": null }
{ "id": null, "login": "JetBrains", "gravatar_id": null, "avatar_url": null, "url": null }
2012-03-29T11:12:18
null
{"repository":{"homepage":"","forks":7,"has_wiki":true,"language":"Java","fork":false,"open_issues":11,"created_at":"2011/08/08 03:19:22 -0700","watchers":38,"pushed_at":"2012/03/28 13:13:07 -0700","description":"Clojure plugin for IntelliJ IDEA","size":156,"private":false,"owner":"JetBrains","has_downloads":true,"organization":"JetBrains","has_issues":true,"master_branch":"clojure-idea-11"},"actor_attributes":{"name":"Ilya Sergey","company":"KU Leuven","location":"Leuven, Belgium","type":"User","email":"[email protected]"},"url":"https://github.com/JetBrains/la-clojure/issues/15#issuecomment-4808440"}
IssueCommentEvent
true
{"issue_id":7882808,"comment_id":10034943}
{ "id": 6164949, "name": "IcoMoon-App", "url": "https://github.com/Keyamoon/IcoMoon-App" }
{ "id": null, "login": "Yohn", "gravatar_id": "797fa1f0a9b0d08fe379be614b4a9ba4", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-11-03T01:14:14
null
{"repository":{"watchers":28,"pushed_at":"2012-10-31T03:49:34-07:00","description":"Using IcoMoon you can browse among thousands of vector icons to download them or make an icon font. This HTML5 app allows importing your own vectors too.","forks":6,"owner":"Keyamoon","stargazers":28,"has_downloads":true,"has_wiki":true,"fork":false,"size":136,"has_issues":true,"private":false,"open_issues":4,"created_at":"2012-10-10T14:44:03-07:00"},"actor_attributes":{"type":"User","location":"kannapolis NC","blog":"http://www.skem9.com","company":"http://www.yohns.com","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/Keyamoon/IcoMoon-App/issues/7#issuecomment-10034943"}
IssueCommentEvent
true
{"issue_id":7798226,"comment_id":9704021}
{ "id": 6164949, "name": "IcoMoon-App", "url": "https://github.com/Keyamoon/IcoMoon-App" }
{ "id": null, "login": "Keyamoon", "gravatar_id": "de7203b7fbd535e86264492170e4c7d5", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-10-23T14:33:50
null
{"repository":{"created_at":"2012-10-10T14:44:03-07:00","description":"Using IcoMoon you can browse among thousands of vector icons to download them or make an icon font. This HTML5 app allows importing your own vectors too.","owner":"Keyamoon","has_downloads":true,"pushed_at":"2012-10-10T14:52:12-07:00","forks":2,"watchers":11,"has_wiki":true,"stargazers":11,"fork":false,"size":96,"has_issues":true,"private":false,"open_issues":4},"actor_attributes":{"blog":"http://keyamoon.com/","type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/Keyamoon/IcoMoon-App/issues/5#issuecomment-9704021"}
IssueCommentEvent
true
{"issue_id":2663579,"comment_id":7106944}
{ "id": null, "name": "socket.io", "url": "https://github.com/LearnBoost/socket.io" }
{ "id": null, "login": "pleahy", "gravatar_id": "4300a61977ea9aeb9e28136d7bfe449f", "avatar_url": null, "url": null }
{ "id": null, "login": "LearnBoost", "gravatar_id": null, "avatar_url": null, "url": null }
2012-07-19T18:33:35
null
{"repository":{"watchers":5804,"owner":"LearnBoost","has_wiki":true,"created_at":"2010-03-11T10:24:48-08:00","open_issues":293,"organization":"LearnBoost","homepage":"http://socket.io","pushed_at":"2012-07-09T16:58:20-07:00","forks":643,"fork":false,"size":1964,"has_issues":true,"has_downloads":true,"description":"Realtime application framework for Node.JS, with HTML5 WebSockets and cross-browser fallbacks support.","private":false,"language":"JavaScript"},"actor_attributes":{"email":"[email protected]","location":"Philadelphia, PA","type":"User","name":"Patrick Leahy","blog":"http://www.airtimehq.com","company":"Airtime for Email"},"url":"https://github.com/LearnBoost/socket.io/issues/701#issuecomment-7106944"}
IssueCommentEvent
true
{"issue_id":3529727,"comment_id":4507279}
{ "id": null, "name": "Locker", "url": "https://github.com/LockerProject/Locker" }
{ "id": null, "login": "mdz", "gravatar_id": "ee6c1ae4aebdbe8e9a435b342bfeaed9", "avatar_url": null, "url": null }
{ "id": null, "login": "LockerProject", "gravatar_id": null, "avatar_url": null, "url": null }
2012-03-14T20:32:08
null
{"repository":{"has_wiki":true,"organization":"LockerProject","homepage":"http://lockerproject.org/","open_issues":170,"watchers":993,"fork":false,"pushed_at":"2012/03/14 13:30:50 -0700","language":"JavaScript","size":1136,"private":false,"owner":"LockerProject","has_downloads":true,"created_at":"2010/12/06 18:47:17 -0800","has_issues":true,"description":"Locker - the \"me\" platform ","forks":121},"actor_attributes":{"name":"Matt Zimmerman","blog":"http://mdzlog.alcor.net/","type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/LockerProject/Locker/issues/907#issuecomment-4507279"}
IssueCommentEvent
true
{"comment_id":9794234,"issue_id":5896103}
{ "id": 940538, "name": "Markus", "url": "https://github.com/MarkUsProject/Markus" }
{ "id": null, "login": "jerboaa", "gravatar_id": "031db269afe97065baead22ce42e71bd", "avatar_url": null, "url": null }
{ "id": null, "login": "MarkUsProject", "gravatar_id": null, "avatar_url": null, "url": null }
2012-10-25T21:07:44
null
{"repository":{"homepage":"http://www.markusproject.org","owner":"MarkUsProject","has_downloads":true,"created_at":"2010-09-26T09:18:08-07:00","description":"Git repository of MarkUs","watchers":70,"has_wiki":true,"pushed_at":"2012-10-25T13:55:35-07:00","forks":77,"has_issues":true,"stargazers":70,"fork":false,"size":400,"organization":"MarkUsProject","open_issues":185,"private":false,"language":"Ruby"},"actor_attributes":{"name":"Severin Gehwolf","type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/MarkUsProject/Markus/issues/813#issuecomment-9794234"}
IssueCommentEvent
true
{"comment_id":5605721,"issue_id":4496539}
{ "id": null, "name": "patchrom_miui", "url": "https://github.com/MiCode/patchrom_miui" }
{ "id": null, "login": "axel2033", "gravatar_id": "7823b3f164db5d36cfa47edd2476e7d8", "avatar_url": null, "url": null }
{ "id": null, "login": "MiCode", "gravatar_id": null, "avatar_url": null, "url": null }
2012-05-09T17:15:24
null
{"repository":{"has_issues":true,"has_wiki":true,"forks":32,"owner":"MiCode","homepage":"http://micode.net/forum-59-1.html","open_issues":6,"created_at":"2012/03/14 19:39:47 -0700","pushed_at":"2012/05/04 00:15:34 -0700","description":"The miui resources, apks, framework jars and the modified framework source code","watchers":47,"fork":false,"size":20012,"has_downloads":true,"language":"Java","master_branch":"ics","organization":"MiCode","private":false},"actor_attributes":{"location":"Penza, Russia","type":"User","email":"[email protected]","name":"Ilia Aksyonov","blog":""},"url":"https://github.com/MiCode/patchrom_miui/issues/7#issuecomment-5605721"}
IssueCommentEvent
true
{"issue_id":4128155,"comment_id":5170582}
{ "id": null, "name": "patchrom_miui", "url": "https://github.com/MiCode/patchrom_miui" }
{ "id": null, "login": "Benson17", "gravatar_id": "a3f4dcceb820ad4fe96f3a981217ec88", "avatar_url": null, "url": null }
{ "id": null, "login": "MiCode", "gravatar_id": null, "avatar_url": null, "url": null }
2012-04-17T08:39:19
null
{"repository":{"open_issues":4,"organization":"MiCode","created_at":"2012/03/14 19:39:47 -0700","pushed_at":"2012/04/13 01:24:11 -0700","description":"The miui resources, apks, framework jars and the modified framework source code","watchers":35,"has_downloads":true,"fork":false,"master_branch":"ics","homepage":"http://micode.net/forum-59-1.html","size":22452,"private":false,"owner":"MiCode","has_issues":true,"has_wiki":true,"forks":26,"language":"Java"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/MiCode/patchrom_miui/issues/4#issuecomment-5170582"}
IssueCommentEvent
true
{"comment_id":11695466,"issue_id":9526973}
{ "id": 1311728, "name": "Acebug", "url": "https://github.com/MikeRatcliffe/Acebug" }
{ "id": null, "login": "nightwing", "gravatar_id": "c2b8bf608d92a99998648b0215e5f260", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-12-26T22:12:42
null
{"repository":{"pushed_at":"2012-12-26T12:09:23-08:00","description":"Bring the power of Ace's Syntax Highlighting to Firebug","stargazers":21,"forks":4,"owner":"MikeRatcliffe","open_issues":14,"has_issues":true,"has_wiki":true,"language":"JavaScript","fork":false,"size":164,"created_at":"2011-01-31T01:37:11-08:00","homepage":"http://www.flailingmonkey.com/acebug/","private":false,"watchers":21,"has_downloads":true},"actor_attributes":{"name":"Harutyun Amirjanyan","type":"User","email":"[email protected]","location":"Yerevan, Armenia"},"url":"https://github.com/MikeRatcliffe/Acebug/issues/44#issuecomment-11695466"}
IssueCommentEvent
true
{"comment_id":8824041,"issue_id":2469353}
{ "id": 1371238, "name": "compass-recipes", "url": "https://github.com/MoOx/compass-recipes" }
{ "id": null, "login": "MoOx", "gravatar_id": "d2a1c95e2af59538301c3ee6d2907f6f", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-09-24T16:01:10
null
{"repository":{"created_at":"2011-02-15T13:07:57-08:00","stargazers":203,"owner":"MoOx","has_wiki":true,"watchers":203,"pushed_at":"2012-09-24T00:32:28-07:00","forks":28,"open_issues":46,"has_issues":true,"homepage":"http://compass-recipes.moox.fr/","fork":false,"size":964,"language":"JavaScript","private":false,"has_downloads":true,"description":"Some compass/sass mixins and snippets ready to use. Just a few for now, but a lot incoming !"},"actor_attributes":{"location":"Toulouse, France","type":"User","email":"[email protected]","name":"Maxime Thirouin","blog":"http://MoOx.github.com"},"url":"https://github.com/MoOx/compass-recipes/issues/26#issuecomment-8824041"}
IssueCommentEvent
true
{"issue_id":7249719,"comment_id":10100729}
{ "id": 5060850, "name": "Pixelmon", "url": "https://github.com/MrMasochism/Pixelmon" }
{ "id": null, "login": "MrMasochism", "gravatar_id": "09a51ada5e51a2e4a3be4d7ad4179b76", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-11-06T06:40:59
null
{"repository":{"open_issues":0,"created_at":"2012-07-15T16:03:01-07:00","watchers":16,"owner":"MrMasochism","pushed_at":"2012-11-05T10:45:59-08:00","description":"The full repository for pixelmon","stargazers":16,"forks":26,"has_downloads":true,"fork":false,"size":1784,"language":"Java","has_wiki":true,"private":false,"has_issues":true},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/MrMasochism/Pixelmon/issues/330#issuecomment-10100729"}
IssueCommentEvent
true
{"issue_id":6023151,"comment_id":7497187}
{ "id": null, "name": "Player-Tracker", "url": "https://github.com/NINJ4/Player-Tracker" }
{ "id": null, "login": "drumming102", "gravatar_id": "1ca63bc1adc626c36be76f504d69081e", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-08-03T23:38:29
null
{"repository":{"stargazers":4,"owner":"NINJ4","description":"Minecraft Bukkit Plugin to track players through local IP/Accountnames and global bans","has_wiki":true,"watchers":4,"has_issues":true,"pushed_at":"2012-05-14T18:43:32-07:00","forks":3,"language":"Java","created_at":"2012-04-15T23:20:55-07:00","open_issues":2,"fork":false,"size":971,"private":false,"homepage":"http://dev.bukkit.org/server-mods/player-tracker/","has_downloads":true},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/NINJ4/Player-Tracker/issues/7#issuecomment-7497187"}
IssueCommentEvent
true
{"issue_id":5222321,"comment_id":6551839}
{ "id": null, "name": "OpenELEC.tv", "url": "https://github.com/OpenELEC/OpenELEC.tv" }
{ "id": null, "login": "sraue", "gravatar_id": "558802c659f3ae4a435a3db9ddd9677a", "avatar_url": null, "url": null }
{ "id": null, "login": "OpenELEC", "gravatar_id": null, "avatar_url": null, "url": null }
2012-06-25T16:16:51
null
{"repository":{"has_downloads":true,"language":"Shell","pushed_at":"2012-06-25T09:06:09-07:00","forks":139,"owner":"OpenELEC","has_issues":true,"has_wiki":true,"homepage":"http://openelec.tv","watchers":369,"fork":false,"size":6096,"open_issues":244,"created_at":"2010-11-18T14:06:47-08:00","organization":"OpenELEC","description":"OpenELEC - The living room PC for everyone","integrate_branch":"openelec-tirpc","private":false},"actor_attributes":{"location":"Solothurn/SO - Switzerland","name":"Stephan Raue","blog":"http://www.openelec.tv","email":"[email protected]","type":"User"},"url":"https://github.com/OpenELEC/OpenELEC.tv/issues/846#issuecomment-6551839"}
IssueCommentEvent
true
{"issue_id":7741355,"comment_id":9646437}
{ "id": 1093060, "name": "OpenELEC.tv", "url": "https://github.com/OpenELEC/OpenELEC.tv" }
{ "id": null, "login": "wumpyr", "gravatar_id": "1e21e31010f5793053703a25a4f025cb", "avatar_url": null, "url": null }
{ "id": null, "login": "OpenELEC", "gravatar_id": null, "avatar_url": null, "url": null }
2012-10-21T19:24:08
null
{"repository":{"language":"Shell","owner":"OpenELEC","open_issues":322,"integrate_branch":"openelec-tirpc","watchers":526,"has_issues":true,"stargazers":526,"has_downloads":true,"homepage":"http://openelec.tv","pushed_at":"2012-10-21T06:54:00-07:00","forks":210,"fork":false,"size":7176,"created_at":"2010-11-18T14:06:47-08:00","organization":"OpenELEC","description":"OpenELEC - The living room PC for everyone","private":false,"has_wiki":true},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/OpenELEC/OpenELEC.tv/issues/1368#issuecomment-9646437"}
IssueCommentEvent
true
{"issue_id":5007499,"comment_id":6449384}
{ "id": null, "name": "OpenELEC.tv", "url": "https://github.com/OpenELEC/OpenELEC.tv" }
{ "id": null, "login": "tergo", "gravatar_id": "958a4325f084976661a3ea7bd3f64ca9", "avatar_url": null, "url": null }
{ "id": null, "login": "OpenELEC", "gravatar_id": null, "avatar_url": null, "url": null }
2012-06-20T10:02:04
null
{"repository":{"open_issues":232,"integrate_branch":"openelec-tirpc","has_downloads":true,"organization":"OpenELEC","description":"OpenELEC - The living room PC for everyone","fork":false,"has_issues":true,"language":"Shell","size":6580,"private":false,"created_at":"2010-11-18T14:06:47-08:00","owner":"OpenELEC","has_wiki":true,"pushed_at":"2012-06-19T16:05:55-07:00","homepage":"http://openelec.tv","forks":134,"watchers":356},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/OpenELEC/OpenELEC.tv/issues/822#issuecomment-6449384"}
IssueCommentEvent
true
{"issue_id":4434075,"comment_id":6016961}
{ "id": null, "name": "OpenELEC.tv", "url": "https://github.com/OpenELEC/OpenELEC.tv" }
{ "id": null, "login": "toxster", "gravatar_id": "c1e841646ecb298937481bd2706ee43d", "avatar_url": null, "url": null }
{ "id": null, "login": "OpenELEC", "gravatar_id": null, "avatar_url": null, "url": null }
2012-05-30T18:09:54
null
{"repository":{"integrate_branch":"openelec-tirpc","organization":"OpenELEC","watchers":309,"has_downloads":true,"homepage":"http://openelec.tv","fork":false,"has_issues":true,"has_wiki":true,"forks":125,"size":6004,"private":false,"owner":"OpenELEC","open_issues":204,"description":"OpenELEC - The living room PC for everyone","language":"Shell","created_at":"2010/11/18 14:06:47 -0800","pushed_at":"2012/05/28 23:25:28 -0700"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/OpenELEC/OpenELEC.tv/issues/575#issuecomment-6016961"}
IssueCommentEvent
true
{"comment_id":7184077,"issue_id":4459348}
{ "id": null, "name": "OpenELEC.tv", "url": "https://github.com/OpenELEC/OpenELEC.tv" }
{ "id": null, "login": "newphreak", "gravatar_id": "27f67f614e7c7ca14d372ef065a9dfc9", "avatar_url": null, "url": null }
{ "id": null, "login": "OpenELEC", "gravatar_id": null, "avatar_url": null, "url": null }
2012-07-23T17:05:35
null
{"repository":{"homepage":"http://openelec.tv","owner":"OpenELEC","watchers":425,"has_wiki":true,"pushed_at":"2012-07-23T08:27:08-07:00","forks":160,"language":"Shell","description":"OpenELEC - The living room PC for everyone","open_issues":254,"integrate_branch":"openelec-tirpc","fork":false,"size":6224,"created_at":"2010-11-18T14:06:47-08:00","has_issues":true,"private":false,"has_downloads":true,"organization":"OpenELEC"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/OpenELEC/OpenELEC.tv/issues/600#issuecomment-7184077"}
IssueCommentEvent
true
{"comment_id":6810538,"issue_id":5395767}
{ "id": null, "name": "OpenELEC.tv", "url": "https://github.com/OpenELEC/OpenELEC.tv" }
{ "id": null, "login": "Flexa12", "gravatar_id": "53657486e67aaccd180298e6e03c6d50", "avatar_url": null, "url": null }
{ "id": null, "login": "OpenELEC", "gravatar_id": null, "avatar_url": null, "url": null }
2012-07-06T16:57:14
null
{"repository":{"has_downloads":true,"owner":"OpenELEC","created_at":"2010-11-18T14:06:47-08:00","organization":"OpenELEC","watchers":386,"has_wiki":true,"language":"Shell","pushed_at":"2012-07-06T01:10:52-07:00","forks":147,"homepage":"http://openelec.tv","fork":false,"size":6132,"open_issues":208,"integrate_branch":"openelec-tirpc","private":false,"description":"OpenELEC - The living room PC for everyone","has_issues":true},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/OpenELEC/OpenELEC.tv/issues/888#issuecomment-6810538"}
IssueCommentEvent
true
{"issue_id":9322209,"comment_id":11437485}
{ "id": 1093060, "name": "OpenELEC.tv", "url": "https://github.com/OpenELEC/OpenELEC.tv" }
{ "id": null, "login": "mindnever", "gravatar_id": "478850b2b96f05c9a21cda57ea56f894", "avatar_url": null, "url": null }
{ "id": null, "login": "OpenELEC", "gravatar_id": null, "avatar_url": null, "url": null }
2012-12-17T10:59:10
null
{"repository":{"description":"OpenELEC - The living room PC for everyone","homepage":"http://openelec.tv","watchers":589,"stargazers":589,"forks":247,"fork":false,"size":10631,"owner":"OpenELEC","private":false,"open_issues":355,"has_issues":true,"has_downloads":true,"has_wiki":true,"language":"Shell","created_at":"2010-11-18T14:06:47-08:00","pushed_at":"2012-12-16T05:30:58-08:00","integrate_branch":"openelec-tirpc","organization":"OpenELEC"},"actor_attributes":{"name":"Vladimir Zidar","blog":"http://srbovanje.com","location":"Belgrade","email":"[email protected]","type":"User"},"url":"https://github.com/OpenELEC/OpenELEC.tv/issues/1619#issuecomment-11437485"}
IssueCommentEvent
true
{"issue_id":6172195,"comment_id":8011818}
{ "id": null, "name": "OpenELEC.tv", "url": "https://github.com/OpenELEC/OpenELEC.tv" }
{ "id": null, "login": "Knoet", "gravatar_id": "8b6a64e82760165d33d544e0c01acac4", "avatar_url": null, "url": null }
{ "id": null, "login": "OpenELEC", "gravatar_id": null, "avatar_url": null, "url": null }
2012-08-24T19:08:21
null
{"repository":{"pushed_at":"2012-08-24T09:02:39-07:00","forks":175,"owner":"OpenELEC","open_issues":288,"integrate_branch":"openelec-tirpc","has_issues":true,"homepage":"http://openelec.tv","has_downloads":true,"language":"Shell","created_at":"2010-11-18T14:06:47-08:00","description":"OpenELEC - The living room PC for everyone","fork":false,"size":7164,"private":false,"has_wiki":true,"organization":"OpenELEC","watchers":464,"stargazers":464},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/OpenELEC/OpenELEC.tv/issues/1080#issuecomment-8011818"}
IssueCommentEvent
true
{"comment_id":10777735,"issue_id":8736210}
{ "id": 1093060, "name": "OpenELEC.tv", "url": "https://github.com/OpenELEC/OpenELEC.tv" }
{ "id": null, "login": "MilhouseVH", "gravatar_id": "199a5b721811a62732f8f007e3a6a965", "avatar_url": null, "url": null }
{ "id": null, "login": "OpenELEC", "gravatar_id": null, "avatar_url": null, "url": null }
2012-11-27T21:23:03
null
{"repository":{"language":"Shell","owner":"OpenELEC","integrate_branch":"openelec-tirpc","homepage":"http://openelec.tv","has_downloads":true,"description":"OpenELEC - The living room PC for everyone","has_issues":true,"created_at":"2010-11-18T14:06:47-08:00","organization":"OpenELEC","watchers":570,"fork":false,"size":10411,"pushed_at":"2012-11-27T12:07:52-08:00","forks":238,"has_wiki":true,"stargazers":570,"private":false,"open_issues":311},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/OpenELEC/OpenELEC.tv/issues/1516#issuecomment-10777735"}
IssueCommentEvent
true
{"issue_id":8055410,"comment_id":11733844}
{ "id": 2066292, "name": "Patterns", "url": "https://github.com/Patternslib/Patterns" }
{ "id": null, "login": "wichert", "gravatar_id": "cd6e516ad2850fd77a3b20448251f3ca", "avatar_url": null, "url": null }
{ "id": null, "login": "Patternslib", "gravatar_id": null, "avatar_url": null, "url": null }
2012-12-28T15:24:12
null
{"repository":{"stargazers":13,"owner":"Patternslib","created_at":"2011-07-18T06:05:37-07:00","homepage":"http://patternslib.com","open_issues":71,"has_downloads":true,"pushed_at":"2012-12-28T05:05:09-08:00","description":"Library for quickly applying rich interaction patterns without the need to write any JavaScript.","forks":12,"organization":"Patternslib","has_issues":true,"fork":false,"size":1772,"has_wiki":true,"language":"JavaScript","watchers":13,"private":false},"actor_attributes":{"company":"Simplon B.V.","name":"Wichert Akkerman","blog":"http://www.wiggy.net/","location":"The Netherlands","email":"[email protected]","type":"User"},"url":"https://github.com/Patternslib/Patterns/issues/120#issuecomment-11733844"}
IssueCommentEvent
true
{"issue_id":7969499,"comment_id":9909016}
{ "id": 2066292, "name": "Patterns", "url": "https://github.com/Patternslib/Patterns" }
{ "id": null, "login": "wichert", "gravatar_id": "cd6e516ad2850fd77a3b20448251f3ca", "avatar_url": null, "url": null }
{ "id": null, "login": "Patternslib", "gravatar_id": null, "avatar_url": null, "url": null }
2012-10-30T15:06:53
null
{"repository":{"forks":9,"homepage":"http://patternslib.com","stargazers":11,"owner":"Patternslib","has_downloads":true,"created_at":"2011-07-18T06:05:37-07:00","organization":"Patternslib","description":"Library for quickly applying rich interaction patterns without the need to write any JavaScript.","language":"JavaScript","has_wiki":true,"fork":false,"size":1292,"open_issues":48,"has_issues":true,"private":false,"watchers":11,"pushed_at":"2012-10-30T07:51:12-07:00"},"actor_attributes":{"email":"[email protected]","name":"Wichert Akkerman","blog":"http://www.wiggy.net/","company":"Simplon B.V.","location":"The Netherlands","type":"User"},"url":"https://github.com/Patternslib/Patterns/issues/115#issuecomment-9909016"}
IssueCommentEvent
true
{"issue_id":5371972,"comment_id":10093053}
{ "id": 4682742, "name": "asuswrt-merlin", "url": "https://github.com/RMerl/asuswrt-merlin" }
{ "id": null, "login": "RMerl", "gravatar_id": "7e0f8c6cd6cae5f89290e6a75f7f1735", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-11-05T23:31:56
null
{"repository":{"created_at":"2012-06-15T23:10:05-07:00","watchers":55,"owner":"RMerl","open_issues":8,"pushed_at":"2012-11-05T11:12:27-08:00","description":"Enhanced version of Asus's router firmware (Asuswrt)","stargazers":55,"forks":21,"has_downloads":true,"fork":false,"size":307533,"language":"C","private":false,"has_wiki":true,"has_issues":true},"actor_attributes":{"name":"Eric Sauvageau","type":"User","blog":"http://www.lostrealm.ca/","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/RMerl/asuswrt-merlin/issues/14#issuecomment-10093053"}
IssueCommentEvent
true
{"issue_id":6169302,"comment_id":7711539}
{ "id": null, "name": "LogisticsPipes", "url": "https://github.com/RS485/LogisticsPipes" }
{ "id": null, "login": "AtoxIO", "gravatar_id": "387abaf8f9322046de6c0d23d7fffd56", "avatar_url": null, "url": null }
{ "id": null, "login": "RS485", "gravatar_id": null, "avatar_url": null, "url": null }
2012-08-13T23:17:43
null
{"repository":{"forks":20,"language":"Java","created_at":"2012-06-02T09:35:21-07:00","description":"","owner":"RS485","has_downloads":true,"stargazers":49,"has_wiki":true,"watchers":49,"fork":false,"size":4556,"organization":"RS485","private":false,"open_issues":7,"has_issues":true,"pushed_at":"2012-08-13T16:03:00-07:00"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/RS485/LogisticsPipes/issues/61#issuecomment-7711539"}
IssueCommentEvent
true
{"issue_id":3989341,"comment_id":6165081}
{ "id": null, "name": "LucidJS", "url": "https://github.com/RobertWHurst/LucidJS" }
{ "id": null, "login": "add0n", "gravatar_id": "cd691469b3e01f461838e233bda68cee", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-06-06T22:56:50
null
{"repository":{"pushed_at":"2012-05-23T22:39:35-07:00","homepage":"http://robertwhurst.github.com/LucidJS","watchers":75,"has_downloads":true,"fork":false,"size":128,"private":false,"has_issues":true,"has_wiki":true,"forks":3,"owner":"RobertWHurst","description":"Lucid is an uber simple and easy to use event emitter library. Lucid allows you to create your own event system and even pipe in events from any number of DOM elements.","open_issues":1,"language":"JavaScript","created_at":"2012-02-20T16:41:04-08:00"},"actor_attributes":{"name":"Bill","company":"Yahoo!","location":"St. Louis","blog":"http://developer.yahoo.com/cocktails/mojito","type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/RobertWHurst/LucidJS/issues/2#issuecomment-6165081"}
IssueCommentEvent
true
{"issue_id":7570688,"comment_id":9432216}
{ "id": 108625, "name": "neocomplcache", "url": "https://github.com/Shougo/neocomplcache" }
{ "id": null, "login": "Shougo", "gravatar_id": "7f5a1bfaf8b64cbcdfaf82a7de92506b", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-10-15T02:43:06
null
{"repository":{"has_wiki":true,"owner":"Shougo","open_issues":35,"pushed_at":"2012-10-14T19:39:27-07:00","homepage":"http://www.vim.org/scripts/script.php?script_id=2620","forks":39,"language":"VimL","description":"Ultimate auto-completion system for Vim.","fork":false,"size":3107,"has_issues":true,"has_downloads":true,"watchers":776,"created_at":"2009-01-16T00:21:00-08:00","private":false,"stargazers":776},"actor_attributes":{"blog":"http://vinarian.blogspot.com/","name":"Shougo","email":"[email protected]","type":"User","location":"Japan"},"url":"https://github.com/Shougo/neocomplcache/issues/289#issuecomment-9432216"}
IssueCommentEvent
true
{"issue_id":8089830,"comment_id":10061638}
{ "id": 4039952, "name": "BuildCraft", "url": "https://github.com/SirSengir/BuildCraft" }
{ "id": null, "login": "bsaksida", "gravatar_id": "59bf15f484ff8006ce4c07fce02b3915", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-11-05T06:28:42
null
{"repository":{"watchers":239,"pushed_at":"2012-11-04T03:45:29-08:00","description":"BuildCraft","forks":120,"owner":"SirSengir","stargazers":239,"has_downloads":true,"language":"Java","has_wiki":true,"fork":false,"size":928,"has_issues":true,"homepage":"http://www.mod-buildcraft.com","private":false,"open_issues":17,"created_at":"2012-04-16T03:57:39-07:00"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/SirSengir/BuildCraft/issues/397#issuecomment-10061638"}
IssueCommentEvent
true
{"issue_id":4175263,"comment_id":9368447}
{ "id": 938745, "name": "yepnope.js", "url": "https://github.com/SlexAxton/yepnope.js" }
{ "id": null, "login": "BrandonZacharie", "gravatar_id": "40ad063b2fb3f8733132747a72eb1c5c", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-10-12T07:23:56
null
{"repository":{"watchers":1438,"open_issues":34,"description":"An Asynchronous Conditional Resource Loader","owner":"SlexAxton","stargazers":1438,"created_at":"2010-09-25T09:43:00-07:00","has_downloads":true,"fork":false,"size":240,"has_issues":true,"has_wiki":true,"pushed_at":"2012-10-10T09:18:52-07:00","homepage":"http://yepnopejs.com/","forks":129,"private":false,"language":"JavaScript"},"actor_attributes":{"company":"","blog":"http://brandonzacharie.com/","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709","location":"South San Francisco, California","name":"Brandon Zacharie","type":"User"},"url":"https://github.com/SlexAxton/yepnope.js/issues/113#issuecomment-9368447"}
IssueCommentEvent
true
{"comment_id":11758058,"issue_id":9576936}
{ "id": 2892960, "name": "Documentation", "url": "https://github.com/Sylius/Documentation" }
{ "id": null, "login": "pjedrzejewski", "gravatar_id": "e24f58354606e3bfd03e661b6bcb2eaf", "avatar_url": null, "url": null }
{ "id": null, "login": "Sylius", "gravatar_id": null, "avatar_url": null, "url": null }
2012-12-29T21:38:39
null
{"repository":{"open_issues":1,"has_issues":true,"has_downloads":true,"language":"Python","description":"Official documentation repository, hosted on readthedocs.org.","owner":"Sylius","has_wiki":false,"watchers":7,"stargazers":7,"fork":false,"size":248,"pushed_at":"2012-12-12T11:59:12-08:00","forks":4,"created_at":"2011-12-01T09:58:56-08:00","organization":"Sylius","homepage":"Sylius.org","private":false},"actor_attributes":{"type":"User","blog":"http://pjedrzejewski.com","company":"KnpLabs","email":"[email protected]","name":"Paweł Jędrzejewski","location":"Łódź, Poland"},"url":"https://github.com/Sylius/Documentation/issues/7#issuecomment-11758058"}
IssueCommentEvent
true
{"issue_id":8133268,"comment_id":10132321}
{ "id": 2565137, "name": "spksrc", "url": "https://github.com/SynoCommunity/spksrc" }
{ "id": null, "login": "Diaoul", "gravatar_id": "7ca379141d13a8f5f17b50de3607ef16", "avatar_url": null, "url": null }
{ "id": null, "login": "SynoCommunity", "gravatar_id": null, "avatar_url": null, "url": null }
2012-11-06T23:26:08
null
{"repository":{"homepage":"https://github.com/SynoCommunity/spksrc","created_at":"2011-10-12T13:25:50-07:00","watchers":104,"owner":"SynoCommunity","open_issues":59,"master_branch":"develop","organization":"SynoCommunity","description":"Cross compilation framework to create native packages for the Synology's NAS","stargazers":104,"language":"JavaScript","integrate_branch":"nasforum","has_issues":true,"has_downloads":true,"fork":false,"size":12043,"private":false,"pushed_at":"2012-11-04T12:05:29-08:00","forks":39,"has_wiki":true},"actor_attributes":{"location":"Paris","name":"Antoine Bertin","blog":"blog.diaoul.fr","email":"[email protected]","type":"User"},"url":"https://github.com/SynoCommunity/spksrc/issues/292#issuecomment-10132321"}
IssueCommentEvent
true
{"comment_id":9498545,"issue_id":5986732}
{ "id": 2565137, "name": "spksrc", "url": "https://github.com/SynoCommunity/spksrc" }
{ "id": null, "login": "gampie", "gravatar_id": "38ccf37655a0338d93dcfe68876dd28d", "avatar_url": null, "url": null }
{ "id": null, "login": "SynoCommunity", "gravatar_id": null, "avatar_url": null, "url": null }
2012-10-16T17:17:42
null
{"repository":{"created_at":"2011-10-12T13:25:50-07:00","master_branch":"develop","description":"Cross compilation framework to create native packages for the Synology's NAS","owner":"SynoCommunity","has_downloads":true,"pushed_at":"2012-10-15T05:19:53-07:00","forks":37,"organization":"SynoCommunity","has_wiki":true,"watchers":98,"has_issues":true,"fork":false,"size":11947,"language":"JavaScript","stargazers":98,"open_issues":59,"homepage":"https://github.com/SynoCommunity/spksrc","private":false,"integrate_branch":"nasforum"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/SynoCommunity/spksrc/issues/195#issuecomment-9498545"}
IssueCommentEvent
true
{"issue_id":5259508,"comment_id":6595498}
{ "id": null, "name": "spksrc", "url": "https://github.com/SynoCommunity/spksrc" }
{ "id": null, "login": "Diaoul", "gravatar_id": "7ca379141d13a8f5f17b50de3607ef16", "avatar_url": null, "url": null }
{ "id": null, "login": "SynoCommunity", "gravatar_id": null, "avatar_url": null, "url": null }
2012-06-27T06:05:19
null
{"repository":{"homepage":"https://github.com/SynoCommunity/spksrc","owner":"SynoCommunity","master_branch":"develop","has_downloads":true,"has_issues":true,"organization":"SynoCommunity","description":"Cross compilation framework to create native packages for the Synology's NAS","has_wiki":true,"fork":false,"size":324,"created_at":"2011-10-12T13:25:50-07:00","pushed_at":"2012-06-26T12:26:13-07:00","watchers":60,"forks":21,"private":false,"open_issues":40,"language":"JavaScript","integrate_branch":"nasforum"},"actor_attributes":{"name":"Antoine Bertin","location":"Paris","type":"User","blog":"blog.diaoul.fr","email":"[email protected]"},"url":"https://github.com/SynoCommunity/spksrc/issues/144#issuecomment-6595498"}
IssueCommentEvent
true
{"issue_id":7071528,"comment_id":11484842}
{ "id": 2565137, "name": "spksrc", "url": "https://github.com/SynoCommunity/spksrc" }
{ "id": null, "login": "Omertron", "gravatar_id": "269d86bc5a11bfccd002dad582b4264a", "avatar_url": null, "url": null }
{ "id": null, "login": "SynoCommunity", "gravatar_id": null, "avatar_url": null, "url": null }
2012-12-18T12:57:28
null
{"repository":{"owner":"SynoCommunity","has_issues":true,"pushed_at":"2012-12-16T08:25:53-08:00","forks":53,"has_wiki":true,"language":"JavaScript","organization":"SynoCommunity","watchers":121,"homepage":"https://github.com/SynoCommunity/spksrc","stargazers":121,"created_at":"2011-10-12T13:25:50-07:00","integrate_branch":"nasforum","description":"Cross compilation framework to create native packages for the Synology's NAS","fork":false,"size":12135,"master_branch":"develop","private":false,"has_downloads":true,"open_issues":70},"actor_attributes":{"email":"[email protected]","type":"User","name":"Stuart Boston","blog":"http://omertron.com","location":"Liverpool, UK"},"url":"https://github.com/SynoCommunity/spksrc/issues/249#issuecomment-11484842"}
IssueCommentEvent
true
{"comment_id":6878526,"issue_id":4749965}
{ "id": null, "name": "spksrc", "url": "https://github.com/SynoCommunity/spksrc" }
{ "id": null, "login": "sirgadget", "gravatar_id": "a63d5aae04488b925a1203b79a8dd546", "avatar_url": null, "url": null }
{ "id": null, "login": "SynoCommunity", "gravatar_id": null, "avatar_url": null, "url": null }
2012-07-10T15:16:29
null
{"repository":{"has_downloads":true,"organization":"SynoCommunity","owner":"SynoCommunity","pushed_at":"2012-07-02T14:44:55-07:00","forks":24,"homepage":"https://github.com/SynoCommunity/spksrc","watchers":66,"has_wiki":true,"description":"Cross compilation framework to create native packages for the Synology's NAS","fork":false,"size":380,"open_issues":39,"language":"JavaScript","integrate_branch":"nasforum","private":false,"has_issues":true,"created_at":"2011-10-12T13:25:50-07:00","master_branch":"develop"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/SynoCommunity/spksrc/issues/98#issuecomment-6878526"}
IssueCommentEvent
true
{"issue_id":4600031,"comment_id":5805206}
{ "id": null, "name": "spksrc", "url": "https://github.com/SynoCommunity/spksrc" }
{ "id": null, "login": "Diaoul", "gravatar_id": "7ca379141d13a8f5f17b50de3607ef16", "avatar_url": null, "url": null }
{ "id": null, "login": "SynoCommunity", "gravatar_id": null, "avatar_url": null, "url": null }
2012-05-19T22:18:27
null
{"repository":{"has_issues":true,"has_wiki":true,"homepage":"https://github.com/SynoCommunity/spksrc","forks":15,"open_issues":30,"fork":false,"pushed_at":"2012/05/19 15:00:29 -0700","size":236,"private":false,"integrate_branch":"nasforum","organization":"SynoCommunity","watchers":41,"owner":"SynoCommunity","has_downloads":true,"description":"Cross compilation framework to create native packages for the Synology's NAS","language":"JavaScript","created_at":"2011/10/12 13:25:50 -0700","master_branch":"develop"},"actor_attributes":{"name":"Antoine Bertin","location":"Paris","blog":"blog.diaoul.fr","type":"User","email":"[email protected]"},"url":"https://github.com/SynoCommunity/spksrc/issues/81#issuecomment-5805206"}
IssueCommentEvent
true
{"comment_id":10704113,"issue_id":8042242}
{ "id": 2056439, "name": "Tempuscode", "url": "https://github.com/TempusMUD/Tempuscode" }
{ "id": null, "login": "mikeclemson", "gravatar_id": "552b920cc37c518f7f077790165305f2", "avatar_url": null, "url": null }
{ "id": null, "login": "TempusMUD", "gravatar_id": null, "avatar_url": null, "url": null }
2012-11-26T04:14:08
null
{"repository":{"language":"C","owner":"TempusMUD","open_issues":0,"has_wiki":true,"homepage":"http://tempusmud.net/","has_issues":true,"watchers":3,"description":"Codebase for TempusMUD","stargazers":3,"created_at":"2011-07-15T18:58:25-07:00","organization":"TempusMUD","fork":false,"size":460,"pushed_at":"2012-11-25T19:56:10-08:00","forks":3,"has_downloads":true,"private":false},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/TempusMUD/Tempuscode/issues/86#issuecomment-10704113"}
IssueCommentEvent
true
{"issue_id":8268339,"comment_id":10263220}
{ "id": 2056439, "name": "Tempuscode", "url": "https://github.com/TempusMUD/Tempuscode" }
{ "id": null, "login": "mikeclemson", "gravatar_id": "552b920cc37c518f7f077790165305f2", "avatar_url": null, "url": null }
{ "id": null, "login": "TempusMUD", "gravatar_id": null, "avatar_url": null, "url": null }
2012-11-11T04:47:13
null
{"repository":{"has_downloads":true,"homepage":"http://tempusmud.net/","owner":"TempusMUD","created_at":"2011-07-15T18:58:25-07:00","has_issues":true,"description":"Codebase for TempusMUD","has_wiki":true,"watchers":3,"pushed_at":"2012-11-08T17:43:10-08:00","forks":2,"stargazers":3,"fork":false,"size":712,"open_issues":23,"language":"C","private":false,"organization":"TempusMUD"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/TempusMUD/Tempuscode/issues/123#issuecomment-10263220"}
IssueCommentEvent
true
{"comment_id":10046689,"issue_id":7101393}
{ "id": 2056439, "name": "Tempuscode", "url": "https://github.com/TempusMUD/Tempuscode" }
{ "id": null, "login": "mikeclemson", "gravatar_id": "552b920cc37c518f7f077790165305f2", "avatar_url": null, "url": null }
{ "id": null, "login": "TempusMUD", "gravatar_id": null, "avatar_url": null, "url": null }
2012-11-04T02:13:10
null
{"repository":{"watchers":3,"pushed_at":"2012-11-03T18:51:03-07:00","description":"Codebase for TempusMUD","forks":2,"owner":"TempusMUD","has_downloads":true,"stargazers":3,"organization":"TempusMUD","has_issues":true,"has_wiki":true,"language":"C","fork":false,"size":328,"open_issues":2,"homepage":"http://tempusmud.net/","private":false,"created_at":"2011-07-15T18:58:25-07:00"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/TempusMUD/Tempuscode/issues/2#issuecomment-10046689"}
IssueCommentEvent
true
{"issue_id":8864466,"comment_id":11061836}
{ "id": 3342055, "name": "node-gyp", "url": "https://github.com/TooTallNate/node-gyp" }
{ "id": null, "login": "TooTallNate", "gravatar_id": "693307b4e0cb9366f34862c9dfacd7fc", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-12-05T21:40:22
null
{"repository":{"owner":"TooTallNate","has_wiki":true,"language":"Python","watchers":204,"homepage":"","stargazers":204,"fork":false,"size":1128,"open_issues":34,"created_at":"2012-02-02T21:50:50-08:00","description":"Node.js native addon build tool","has_downloads":true,"pushed_at":"2012-11-30T08:46:51-08:00","forks":33,"private":false,"has_issues":true},"actor_attributes":{"location":"San Rafael, CA","company":"LearnBoost","email":"[email protected]","type":"User","name":"Nathan Rajlich","blog":"http://n8.io"},"url":"https://github.com/TooTallNate/node-gyp/issues/168#issuecomment-11061836"}
IssueCommentEvent
true
{"comment_id":11332649,"issue_id":9184927}
{ "id": 6775552, "name": "VS_Sudoku", "url": "https://github.com/WooDyDooKs/VS_Sudoku" }
{ "id": null, "login": "Dalhai", "gravatar_id": "de4d858a3b7be06fdff8f06c0237ddce", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-12-13T12:29:04
null
{"repository":{"has_issues":true,"owner":"WooDyDooKs","has_downloads":true,"open_issues":3,"watchers":4,"fork":false,"size":2120,"has_wiki":true,"created_at":"2012-11-20T01:46:59-08:00","stargazers":4,"language":"Java","pushed_at":"2012-12-13T02:18:27-08:00","forks":0,"private":false,"description":"Repo for the Sudoku project for Distributed Systems fall 2012."},"actor_attributes":{"name":"Marcel Marti","type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/WooDyDooKs/VS_Sudoku/issues/3#issuecomment-11332649"}
IssueCommentEvent
true
{"issue_id":4804894,"comment_id":7382847}
{ "id": null, "name": "reservations", "url": "https://github.com/YaleSTC/reservations" }
{ "id": null, "login": "dgoerger", "gravatar_id": "bf55ec1fcc6a35807d7ef245fc39fb80", "avatar_url": null, "url": null }
{ "id": null, "login": "YaleSTC", "gravatar_id": null, "avatar_url": null, "url": null }
2012-07-30T21:33:03
null
{"repository":{"watchers":7,"owner":"YaleSTC","organization":"YaleSTC","has_wiki":true,"homepage":"","pushed_at":"2012-07-30T12:34:27-07:00","forks":1,"open_issues":41,"has_issues":true,"language":"Ruby","description":"Manages reservations for equipment (allows student reservations)","fork":true,"size":732,"master_branch":"development","private":false,"has_downloads":true,"created_at":"2009-10-21T14:08:00-07:00"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/YaleSTC/reservations/issues/12#issuecomment-7382847"}
IssueCommentEvent
true
{"issue_id":3656780,"comment_id":4508444}
{ "id": null, "name": "postmark-php", "url": "https://github.com/Znarkus/postmark-php" }
{ "id": null, "login": "beaudesigns", "gravatar_id": "07482d588a981dc1314c3e40fada22c8", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-03-14T21:24:19
null
{"repository":{"homepage":"http://developer.postmarkapp.com/developer-libs.html#php-5","watchers":117,"pushed_at":"2012/03/09 04:50:17 -0800","owner":"Znarkus","created_at":"2009/12/15 12:18:40 -0800","language":"PHP","has_downloads":true,"has_issues":true,"forks":27,"description":"Postmark PHP class","fork":false,"size":216,"has_wiki":true,"private":false,"open_issues":5},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/Znarkus/postmark-php/issues/16#issuecomment-4508444"}
IssueCommentEvent
true
{"issue_id":4788433,"comment_id":6027977}
{ "id": null, "name": "Orpheus", "url": "https://github.com/aaronweiss74/Orpheus" }
{ "id": null, "login": "aaronweiss74", "gravatar_id": "0110c10f48ba19d2b93f690db7f2bcf0", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-05-31T04:54:02
null
{"repository":{"description":"Open Source MapleStory Server Emulator","language":"Java","created_at":"2012/04/19 16:53:13 -0700","pushed_at":"2012/05/30 16:24:13 -0700","watchers":6,"has_downloads":true,"homepage":"","fork":false,"size":1152,"private":false,"has_issues":true,"has_wiki":true,"forks":5,"owner":"aaronweiss74","open_issues":3},"actor_attributes":{"name":"Aaron Weiss","blog":"http://www.deviant-core.net/","type":"User","email":"[email protected]"},"url":"https://github.com/aaronweiss74/Orpheus/issues/16#issuecomment-6027977"}
IssueCommentEvent
true
{"comment_id":8215481,"issue_id":6585221}
{ "id": null, "name": "tic-tac-toe", "url": "https://github.com/ac-games/tic-tac-toe" }
{ "id": null, "login": "kazmerchuk", "gravatar_id": "1dcbb59b06f8c0b6d074cf1af9fc6b9b", "avatar_url": null, "url": null }
{ "id": null, "login": "ac-games", "gravatar_id": null, "avatar_url": null, "url": null }
2012-09-01T18:44:54
null
{"repository":{"language":"Ruby","created_at":"2012-08-31T10:51:28-07:00","pushed_at":"2012-08-31T11:54:57-07:00","organization":"ac-games","description":"Браузерная игра крестики-нолики","forks":2,"owner":"ac-games","has_wiki":true,"watchers":0,"stargazers":0,"open_issues":9,"has_issues":true,"fork":false,"size":184,"has_downloads":true,"private":false},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/ac-games/tic-tac-toe/issues/3#issuecomment-8215481"}
IssueCommentEvent
true
{"issue_id":5374549,"comment_id":6696424}
{ "id": null, "name": "tvheadend", "url": "https://github.com/adamsutton/tvheadend" }
{ "id": null, "login": "xxxnelly", "gravatar_id": "e05f83cd26703706881b3d755ab75ca0", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-07-01T19:58:13
null
{"repository":{"owner":"adamsutton","created_at":"2012-03-07T06:41:20-08:00","watchers":5,"has_wiki":false,"open_issues":0,"homepage":"http://www.lonelycoder.com/hts/tvheadend_overview.html","fork":true,"size":212,"language":"C","pushed_at":"2012-07-01T08:11:00-07:00","forks":0,"has_issues":true,"description":"Tvheadend is a TV streaming server for Linux supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, IPTV, and Analog video (V4L) as input sources.","private":false,"has_downloads":true},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/adamsutton/tvheadend/issues/22#issuecomment-6696424"}
IssueCommentEvent
true
{"comment_id":11313941,"issue_id":9234485}
{ "id": 3586487, "name": "basket.js", "url": "https://github.com/addyosmani/basket.js" }
{ "id": null, "login": "addyosmani", "gravatar_id": "96270e4c3e5e9806cf7245475c00b275", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-12-12T22:55:10
null
{"repository":{"homepage":"http://addyosmani.github.com/basket.js","has_wiki":true,"created_at":"2012-02-29T14:16:56-08:00","watchers":292,"owner":"addyosmani","open_issues":7,"description":"A proof-of-concept script loader for caching/loading scripts with localStorage","stargazers":292,"language":"JavaScript","pushed_at":"2012-12-12T03:58:29-08:00","forks":29,"has_issues":true,"master_branch":"gh-pages","fork":false,"size":208,"has_downloads":true,"private":false},"actor_attributes":{"blog":"http://www.addyosmani.com","email":"[email protected]","company":"Google, jQuery, TodoMVC and more.","location":"London, England","name":"Addy Osmani","type":"User"},"url":"https://github.com/addyosmani/basket.js/issues/52#issuecomment-11313941"}
IssueCommentEvent
true
{"issue_id":5224917,"comment_id":8741798}
{ "id": null, "name": "brackets-shell", "url": "https://github.com/adobe/brackets-shell" }
{ "id": null, "login": "pthiess", "gravatar_id": "8df24f7bbcd2eac86c533f32766affb4", "avatar_url": null, "url": null }
{ "id": null, "login": "adobe", "gravatar_id": null, "avatar_url": null, "url": null }
2012-09-20T19:02:49
null
{"repository":{"forks":19,"owner":"adobe","homepage":"http://brackets.io","has_downloads":true,"language":"C++","organization":"adobe","description":"CEF3-based application shell for Brackets.","stargazers":48,"fork":false,"size":348,"has_wiki":true,"created_at":"2012-06-07T15:02:06-07:00","watchers":48,"private":false,"open_issues":11,"has_issues":true,"pushed_at":"2012-09-20T11:45:14-07:00"},"actor_attributes":{"location":"San Francisco","name":"Peter Thiess","blog":"http://www.linkedin.com/in/peterthiess","type":"User","company":"Adobe Systems Inc. http://www.adobe.com","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/adobe/brackets-shell/issues/22#issuecomment-8741798"}
IssueCommentEvent
true
{"issue_id":4546653,"comment_id":5669346}
{ "id": null, "name": "yourTinyTodo", "url": "https://github.com/alex-LE/yourTinyTodo" }
{ "id": null, "login": "alex-LE", "gravatar_id": "19ac62ebd42216416a8285d9e09a8fc0", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-05-12T15:33:17
null
{"repository":{"has_issues":true,"has_wiki":true,"forks":5,"homepage":"Demo Nightly Build: http://www.yourtinytodo.net/demo","open_issues":9,"pushed_at":"2012/05/12 08:32:50 -0700","fork":false,"watchers":14,"size":160,"private":false,"has_downloads":true,"owner":"alex-LE","description":"Simple way to manage your todo list in AJAX style. ","language":"PHP","created_at":"2012/04/05 13:08:03 -0700"},"actor_attributes":{"name":"Alexander Adam","company":"PLS print logistic services GmbH","location":"Leipzig","type":"User","email":"[email protected]"},"url":"https://github.com/alex-LE/yourTinyTodo/issues/30#issuecomment-5669346"}
IssueCommentEvent
true
{"issue_id":5016126,"comment_id":8036618}
{ "id": null, "name": "try.redis", "url": "https://github.com/alexmchale/try.redis" }
{ "id": null, "login": "badboy", "gravatar_id": "dd016fe8d3b2f44d2c9c5f3367b3ad25", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-08-26T20:14:57
null
{"repository":{"has_wiki":true,"pushed_at":"2012-01-23T06:52:21-08:00","watchers":80,"stargazers":80,"forks":15,"owner":"alexmchale","open_issues":7,"homepage":"http://try.redis-db.com","has_issues":true,"language":"JavaScript","created_at":"2010-04-26T12:48:31-07:00","description":"A demonstration of the Redis database.","fork":false,"size":152,"has_downloads":true,"private":false},"actor_attributes":{"name":"Jan-Erik Rediger","blog":"http://fnordig.de/","company":"HR Matching AG","location":"Aachen, Germany","type":"User","email":"[email protected]"},"url":"https://github.com/alexmchale/try.redis/issues/11#issuecomment-8036618"}
IssueCommentEvent
true
{"issue_id":7629055,"comment_id":9510684}
{ "id": 176780, "name": "geocoder", "url": "https://github.com/alexreisner/geocoder" }
{ "id": null, "login": "jedschneider", "gravatar_id": "e90b0742a0a78f583355470561d63197", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-10-16T23:16:52
null
{"repository":{"watchers":1349,"owner":"alexreisner","has_wiki":true,"stargazers":1349,"open_issues":21,"homepage":"http://www.rubygeocoder.com","pushed_at":"2012-10-03T08:27:14-07:00","forks":267,"has_issues":true,"fork":false,"size":444,"created_at":"2009-04-15T09:38:04-07:00","description":"Complete Ruby geocoding solution.","has_downloads":true,"private":false,"language":"Ruby"},"actor_attributes":{"name":"Jed Schneider","blog":"jedschneider.posterous.com","location":"Columbia, SC","email":"[email protected]","type":"User","company":"Mode Set"},"url":"https://github.com/alexreisner/geocoder/issues/315#issuecomment-9510684"}
IssueCommentEvent
true
{"comment_id":9051808,"issue_id":7243469}
{ "id": 5374740, "name": "BattleArena", "url": "https://github.com/alkarinv/BattleArena" }
{ "id": null, "login": "netherfoam", "gravatar_id": "88e3a1eb9a27a605fa553efdfed8715d", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-10-01T22:04:38
null
{"repository":{"stargazers":1,"language":"Java","owner":"alkarinv","open_issues":8,"description":"Arena plugin for player vs player or team vs team battles and Core for any custom Event plugin.","created_at":"2012-08-10T14:29:29-07:00","has_downloads":true,"has_issues":true,"fork":false,"size":248,"pushed_at":"2012-10-01T00:16:59-07:00","forks":2,"watchers":1,"private":false,"has_wiki":true},"actor_attributes":{"name":"Netherfoam","type":"User","blog":"maxgamer.org","email":"[email protected]"},"url":"https://github.com/alkarinv/BattleArena/issues/21#issuecomment-9051808"}
IssueCommentEvent
true
{"comment_id":11326193,"issue_id":8412244}
{ "id": 6609860, "name": "AmI-Platform", "url": "https://github.com/ami-lab/AmI-Platform" }
{ "id": null, "login": "aismail", "gravatar_id": "760918d2ec8d126bc0593548de298225", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-12-13T08:23:05
null
{"repository":{"created_at":"2012-11-08T23:11:54-08:00","owner":"ami-lab","open_issues":17,"description":"AmI-Platform","watchers":0,"has_downloads":true,"has_issues":true,"stargazers":0,"language":"C","pushed_at":"2012-12-13T00:19:18-08:00","forks":0,"fork":false,"size":13876,"has_wiki":true,"private":false},"actor_attributes":{"email":"[email protected]","type":"User","name":"Andrei-Adnan Ismail"},"url":"https://github.com/ami-lab/AmI-Platform/issues/12#issuecomment-11326193"}
IssueCommentEvent
true
{"comment_id":8789778,"issue_id":6979967}
{ "id": 1697736, "name": "anchor-cms", "url": "https://github.com/anchorcms/anchor-cms" }
{ "id": null, "login": "96display", "gravatar_id": "f96639161d02b014a8fbbf99dc418dc7", "avatar_url": null, "url": null }
{ "id": null, "login": "anchorcms", "gravatar_id": null, "avatar_url": null, "url": null }
2012-09-22T15:25:17
null
{"repository":{"owner":"anchorcms","pushed_at":"2012-09-06T11:24:55-07:00","forks":75,"has_downloads":true,"homepage":"http://anchorcms.com/","language":"PHP","stargazers":435,"fork":false,"size":180,"has_wiki":true,"organization":"anchorcms","description":"Anchor is a free, lightweight, faster-than-a-bullet, simple blogging system, made for art–directed posts.","watchers":435,"private":false,"created_at":"2011-05-03T12:10:05-07:00","open_issues":31,"has_issues":true},"actor_attributes":{"name":"Christopher Boutillé","location":"Vendée (France)","company":"Dix-Neuf Productions","type":"User","blog":"http://96display.net/","email":"[email protected]"},"url":"https://github.com/anchorcms/anchor-cms/issues/129#issuecomment-8789778"}
IssueCommentEvent
true
{"comment_id":11692588,"issue_id":9114374}
{ "id": 1697736, "name": "anchor-cms", "url": "https://github.com/anchorcms/anchor-cms" }
{ "id": null, "login": "rwarasaurus", "gravatar_id": "10cf47f363f8a43a70b7325c092198b7", "avatar_url": null, "url": null }
{ "id": null, "login": "anchorcms", "gravatar_id": null, "avatar_url": null, "url": null }
2012-12-26T19:29:39
null
{"repository":{"pushed_at":"2012-12-24T10:15:10-08:00","description":"Anchor is a free, lightweight, faster-than-a-bullet, simple blogging system, made for art–directed posts.","stargazers":490,"forks":96,"owner":"anchorcms","organization":"anchorcms","open_issues":12,"has_issues":true,"has_wiki":true,"language":"PHP","fork":false,"size":444,"created_at":"2011-05-03T12:10:05-07:00","homepage":"http://anchorcms.com/","private":false,"watchers":490,"has_downloads":true},"actor_attributes":{"blog":"kieronwilson.co.uk","name":"Kieron","location":"Newcastle Upon-Tyne, UK","type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/anchorcms/anchor-cms/issues/157#issuecomment-11692588"}
IssueCommentEvent
true
{"issue_id":9555015,"comment_id":11729470}
{ "id": 2072776, "name": "cassette", "url": "https://github.com/andrewdavey/cassette" }
{ "id": null, "login": "andrewdavey", "gravatar_id": "e774874a8acc65cc0f0bb1e77b4def5b", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-12-28T10:50:31
null
{"repository":{"stargazers":379,"owner":"andrewdavey","created_at":"2011-07-19T08:24:17-07:00","homepage":"http://getcassette.net","has_downloads":true,"open_issues":60,"pushed_at":"2012-12-18T08:45:35-08:00","description":"Manages .NET web application assets (scripts, css and templates)","forks":82,"has_issues":true,"has_wiki":false,"fork":false,"size":1676,"language":"C#","watchers":379,"private":false},"actor_attributes":{"type":"User","email":"[email protected]","company":"Equin Limited","name":"Andrew Davey","blog":"http://aboutcode.net/","location":"UK"},"url":"https://github.com/andrewdavey/cassette/issues/348#issuecomment-11729470"}
IssueCommentEvent
true
{"issue_id":8031901,"comment_id":9982397}
{ "id": 363150, "name": "redis-py", "url": "https://github.com/andymccurdy/redis-py" }
{ "id": null, "login": "joncle", "gravatar_id": "9e9090ece425cfa86ee70b3565ada8cf", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-11-01T14:44:20
null
{"repository":{"owner":"andymccurdy","open_issues":39,"language":"Python","has_downloads":true,"homepage":"","watchers":1464,"fork":false,"size":1029,"created_at":"2009-11-06T02:22:26-08:00","stargazers":1464,"private":false,"has_issues":true,"pushed_at":"2012-10-08T08:23:41-07:00","description":"Redis Python Client","forks":272,"has_wiki":true},"actor_attributes":{"type":"User","name":"Jon Clements","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/andymccurdy/redis-py/issues/298#issuecomment-9982397"}
IssueCommentEvent
true
{"comment_id":9622864,"issue_id":7620457}
{ "id": 2802565, "name": "doorkeeper", "url": "https://github.com/applicake/doorkeeper" }
{ "id": null, "login": "felipeelias", "gravatar_id": "f6faa607e4f541da71fbf8aea6f99a7a", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-10-19T22:18:01
null
{"repository":{"watchers":544,"open_issues":13,"owner":"applicake","created_at":"2011-11-18T05:02:01-08:00","description":"Doorkeeper is an OAuth 2 provider for Rails.","stargazers":544,"pushed_at":"2012-10-19T15:15:14-07:00","forks":90,"has_downloads":true,"has_issues":true,"fork":false,"size":208,"has_wiki":true,"language":"Ruby","private":false,"homepage":"https://github.com/applicake/doorkeeper"},"actor_attributes":{"name":"Felipe Elias Philipp","blog":"flavors.me/felipeelias","type":"User","location":"Kraków, Poland","company":"http://applicake.com","email":"[email protected]"},"url":"https://github.com/applicake/doorkeeper/issues/152#issuecomment-9622864"}
IssueCommentEvent
true
{"issue_id":4878570,"comment_id":6088997}
{ "id": null, "name": "doorkeeper", "url": "https://github.com/applicake/doorkeeper" }
{ "id": null, "login": "felipeelias", "gravatar_id": "f6faa607e4f541da71fbf8aea6f99a7a", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-06-03T20:56:21
null
{"repository":{"pushed_at":"2012-06-02T08:04:38-07:00","watchers":330,"has_downloads":true,"language":"Ruby","fork":false,"created_at":"2011-11-18T05:02:01-08:00","description":"Doorkeeper is an OAuth 2 provider for Rails.","size":200,"private":false,"has_issues":true,"has_wiki":true,"forks":37,"owner":"applicake","homepage":"https://github.com/applicake/doorkeeper","open_issues":9},"actor_attributes":{"name":"Felipe Elias Philipp","company":"http://applicake.com","location":"Kraków, Poland","blog":"flavors.me/felipeelias","type":"User","email":"[email protected]"},"url":"https://github.com/applicake/doorkeeper/issues/93#issuecomment-6088997"}
IssueCommentEvent
true
{"issue_id":6069596,"comment_id":7546066}
{ "id": null, "name": "grunt-coffee", "url": "https://github.com/avalade/grunt-coffee" }
{ "id": null, "login": "avalade", "gravatar_id": "7cd8f51abfade91b3e57af0887d69063", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-08-07T07:44:57
null
{"repository":{"has_downloads":true,"owner":"avalade","description":"Coffee script for your grunt","stargazers":26,"has_wiki":true,"pushed_at":"2012-08-07T00:42:14-07:00","watchers":26,"forks":12,"language":"JavaScript","created_at":"2012-04-15T23:38:39-07:00","fork":false,"size":140,"open_issues":2,"has_issues":true,"private":false,"homepage":""},"actor_attributes":{"name":"Aaron D. Valade","type":"User","location":"Hong Kong","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/avalade/grunt-coffee/issues/12#issuecomment-7546066"}
IssueCommentEvent
true
{"issue_id":5428411,"comment_id":10042593}
{ "id": 677602, "name": "Imagine", "url": "https://github.com/avalanche123/Imagine" }
{ "id": null, "login": "avalanche123", "gravatar_id": "f000c9b4dd0656f60de1dc9e75f7386c", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-11-03T18:38:16
null
{"repository":{"watchers":1091,"pushed_at":"2012-10-22T08:35:58-07:00","description":"PHP 5.3 Object Oriented image manipulation library","forks":134,"owner":"avalanche123","has_issues":true,"stargazers":1091,"has_wiki":true,"open_issues":20,"language":"PHP","fork":false,"size":700,"master_branch":"develop","homepage":"imagine.readthedocs.org","private":false,"has_downloads":true,"created_at":"2010-05-20T11:39:42-07:00"},"actor_attributes":{"location":"San Francisco, CA","email":"[email protected]","type":"User","company":"Twilio","name":"Bulat Shakirzyanov","blog":"http://avalanche123.com/"},"url":"https://github.com/avalanche123/Imagine/issues/138#issuecomment-10042593"}
IssueCommentEvent
true
{"comment_id":7502789,"issue_id":6030453}
{ "id": null, "name": "DayZ-Private", "url": "https://github.com/ayan4m1/DayZ-Private" }
{ "id": null, "login": "ayan4m1", "gravatar_id": "cd0c28385bcabde0e4f3eee3fc31237d", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-08-04T16:15:55
null
{"repository":{"stargazers":12,"owner":"ayan4m1","description":"","has_wiki":false,"watchers":12,"has_issues":true,"pushed_at":"2012-08-04T07:22:01-07:00","forks":4,"language":"C++","created_at":"2012-07-18T08:17:23-07:00","open_issues":7,"fork":true,"size":156,"private":false,"homepage":"","has_downloads":true},"actor_attributes":{"location":"USA","blog":"http://www.bulletlogic.com","company":"BulletLogic Studios","type":"User","email":"[email protected]"},"url":"https://github.com/ayan4m1/DayZ-Private/issues/23#issuecomment-7502789"}
IssueCommentEvent
true
{"issue_id":8960846,"comment_id":10970624}
{ "id": 5097857, "name": "DayZ-Private", "url": "https://github.com/ayan4m1/DayZ-Private" }
{ "id": null, "login": "marsjee", "gravatar_id": "ee86669eaf610a64eaa473bd4ee8db16", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-12-03T20:41:18
null
{"repository":{"has_wiki":false,"owner":"ayan4m1","created_at":"2012-07-18T08:17:23-07:00","description":"Bliss private DayZ server, based on Guru Abdul's Sanctuary!","pushed_at":"2012-12-02T11:17:29-08:00","forks":68,"watchers":79,"stargazers":79,"language":"Perl","fork":true,"size":1124,"open_issues":4,"has_downloads":true,"has_issues":true,"private":false,"homepage":"http://www.dayzprivate.com"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/ayan4m1/DayZ-Private/issues/523#issuecomment-10970624"}
IssueCommentEvent
true
{"issue_id":8924249,"comment_id":10932172}
{ "id": 5097857, "name": "DayZ-Private", "url": "https://github.com/ayan4m1/DayZ-Private" }
{ "id": null, "login": "axRhino", "gravatar_id": "32c4c5eeb3e405c6e2b7fc8a078eba3c", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-12-02T17:21:54
null
{"repository":{"owner":"ayan4m1","has_downloads":true,"created_at":"2012-07-18T08:17:23-07:00","description":"Bliss private DayZ server, based on Guru Abdul's Sanctuary!","open_issues":3,"has_issues":true,"pushed_at":"2012-11-30T18:45:17-08:00","forks":68,"has_wiki":false,"language":"Perl","watchers":79,"fork":true,"size":1124,"stargazers":79,"private":false,"homepage":"http://www.dayzprivate.com"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/ayan4m1/DayZ-Private/issues/522#issuecomment-10932172"}
IssueCommentEvent
true
{"issue_id":7841408,"comment_id":9762605}
{ "id": 5097857, "name": "DayZ-Private", "url": "https://github.com/ayan4m1/DayZ-Private" }
{ "id": null, "login": "ayan4m1", "gravatar_id": "cd0c28385bcabde0e4f3eee3fc31237d", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-10-25T00:53:06
null
{"repository":{"homepage":"http://www.dayzprivate.com","owner":"ayan4m1","open_issues":14,"created_at":"2012-07-18T08:17:23-07:00","description":"Bliss private DayZ server, based on Guru Abdul's Sanctuary!","watchers":55,"has_downloads":true,"pushed_at":"2012-10-24T08:55:11-07:00","forks":46,"stargazers":55,"fork":true,"size":996,"has_issues":true,"private":false,"has_wiki":false,"language":"Perl"},"actor_attributes":{"blog":"","email":"[email protected]","type":"User","company":"BulletLogic Studios","location":"USA"},"url":"https://github.com/ayan4m1/DayZ-Private/issues/337#issuecomment-9762605"}
IssueCommentEvent
true
{"issue_id":8576640,"comment_id":11742241}
{ "id": 5097857, "name": "DayZ-Private", "url": "https://github.com/ayan4m1/DayZ-Private" }
{ "id": null, "login": "Crosire", "gravatar_id": "a17c6b7d67b80a0a7deacf01b6b22616", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-12-28T21:37:28
null
{"repository":{"watchers":88,"has_downloads":true,"owner":"ayan4m1","created_at":"2012-07-18T08:17:23-07:00","homepage":"http://www.dayzprivate.com","stargazers":88,"has_wiki":false,"pushed_at":"2012-12-27T12:28:04-08:00","description":"Bliss private DayZ server, based on Guru Abdul's Sanctuary!","forks":83,"open_issues":5,"fork":true,"size":1160,"language":"Perl","private":false,"has_issues":true},"actor_attributes":{"email":"[email protected]","type":"User","name":"Crosire","company":"Crosire Gaming","blog":"http://www.dayzcc.tk","location":"Germany"},"url":"https://github.com/ayan4m1/DayZ-Private/issues/485#issuecomment-11742241"}
IssueCommentEvent
true
{"comment_id":8156080,"issue_id":6549864}
{ "id": null, "name": "DayZ-Private", "url": "https://github.com/ayan4m1/DayZ-Private" }
{ "id": null, "login": "ayan4m1", "gravatar_id": "cd0c28385bcabde0e4f3eee3fc31237d", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-08-30T11:10:06
null
{"repository":{"pushed_at":"2012-08-29T15:37:07-07:00","forks":14,"owner":"ayan4m1","has_issues":true,"has_downloads":true,"homepage":"http://www.dayzprivate.com","language":"Perl","created_at":"2012-07-18T08:17:23-07:00","description":"Bliss private DayZ server, based on Guru Abdul's Sanctuary!","fork":true,"size":476,"has_wiki":false,"watchers":25,"stargazers":25,"private":false,"open_issues":2},"actor_attributes":{"blog":"","company":"BulletLogic Studios","email":"[email protected]","location":"USA","type":"User"},"url":"https://github.com/ayan4m1/DayZ-Private/issues/87#issuecomment-8156080"}
IssueCommentEvent
true
{"issue_id":8880443,"comment_id":10910510}
{ "id": 5097857, "name": "DayZ-Private", "url": "https://github.com/ayan4m1/DayZ-Private" }
{ "id": null, "login": "VertHosting", "gravatar_id": "31e46b626894f83bd0b1fbb78736d649", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-12-01T01:10:30
null
{"repository":{"watchers":79,"has_wiki":false,"owner":"ayan4m1","homepage":"http://www.dayzprivate.com","stargazers":79,"created_at":"2012-07-18T08:17:23-07:00","description":"Bliss private DayZ server, based on Guru Abdul's Sanctuary!","pushed_at":"2012-11-30T16:50:41-08:00","forks":68,"has_issues":true,"fork":true,"size":1124,"has_downloads":true,"private":false,"language":"Perl","open_issues":6},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/ayan4m1/DayZ-Private/issues/517#issuecomment-10910510"}
IssueCommentEvent
true
{"comment_id":7382003,"issue_id":5893245}
{ "id": null, "name": "DayZ-Private", "url": "https://github.com/ayan4m1/DayZ-Private" }
{ "id": null, "login": "Marcel40625", "gravatar_id": "7442c2eb2cdb4b8a8f1e697348b7b9f6", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-07-30T21:02:26
null
{"repository":{"watchers":9,"owner":"ayan4m1","has_wiki":false,"homepage":"","pushed_at":"2012-07-30T12:15:19-07:00","forks":2,"open_issues":1,"has_issues":true,"language":"C++","description":"","fork":true,"size":144,"private":false,"has_downloads":true,"created_at":"2012-07-18T08:17:23-07:00"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/ayan4m1/DayZ-Private/issues/5#issuecomment-7382003"}
IssueCommentEvent
true
{"comment_id":9465025,"issue_id":7529834}
{ "id": 5097857, "name": "DayZ-Private", "url": "https://github.com/ayan4m1/DayZ-Private" }
{ "id": null, "login": "Y0shiii", "gravatar_id": "3e80a868f48d597ded3126e8a20c9381", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-10-15T22:51:16
null
{"repository":{"created_at":"2012-07-18T08:17:23-07:00","owner":"ayan4m1","has_wiki":false,"has_issues":true,"watchers":50,"open_issues":12,"pushed_at":"2012-10-15T06:15:10-07:00","forks":39,"homepage":"http://www.dayzprivate.com","stargazers":50,"fork":true,"size":868,"language":"Perl","private":false,"has_downloads":true,"description":"Bliss private DayZ server, based on Guru Abdul's Sanctuary!"},"actor_attributes":{"location":"Augsburg","type":"User","email":"[email protected]","name":"Frederik"},"url":"https://github.com/ayan4m1/DayZ-Private/issues/252#issuecomment-9465025"}
IssueCommentEvent
true
{"comment_id":6498040,"issue_id":5193582}
{ "id": null, "name": "node-kstat", "url": "https://github.com/bcantrill/node-kstat" }
{ "id": null, "login": "davepacheco", "gravatar_id": "bb1ec34b7993000f83ec4845ab5477b3", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-06-22T00:23:56
null
{"repository":{"has_wiki":true,"homepage":"","owner":"bcantrill","watchers":26,"open_issues":1,"created_at":"2010-08-09T01:16:23-07:00","description":"A node.js addon for reading Solaris kstats","fork":false,"size":136,"has_downloads":true,"language":"C++","pushed_at":"2011-12-13T17:35:27-08:00","forks":7,"has_issues":true,"private":false},"actor_attributes":{"type":"User","location":"San Francisco","name":"David Pacheco","blog":"http://dtrace.org/blogs/dap/","company":"Joyent","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/bcantrill/node-kstat/issues/4#issuecomment-6498040"}
IssueCommentEvent
true
{"issue_id":8161295,"comment_id":10139945}
{ "id": 224587, "name": "babushka", "url": "https://github.com/benhoskings/babushka" }
{ "id": null, "login": "richo", "gravatar_id": "f39a093535874d323647c1cb64a6e36b", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-11-07T07:32:36
null
{"repository":{"language":"Ruby","owner":"benhoskings","has_wiki":true,"homepage":"http://babushka.me","open_issues":15,"created_at":"2009-06-11T09:46:22-07:00","integrate_branch":"master","pushed_at":"2012-11-06T21:55:50-08:00","description":"Test-driven sysadmin.","watchers":440,"forks":64,"fork":false,"size":304,"has_issues":true,"has_downloads":true,"stargazers":440,"private":false},"actor_attributes":{"company":"99designs","email":"[email protected]","type":"User","name":"Richo Healey","blog":"http://blog.psych0tik.net","location":"Melbourne, Victoria"},"url":"https://github.com/benhoskings/babushka/issues/228#issuecomment-10139945"}
IssueCommentEvent
true
{"comment_id":7808723,"issue_id":6264367}
{ "id": null, "name": "metaquery", "url": "https://github.com/benschwarz/metaquery" }
{ "id": null, "login": "benschwarz", "gravatar_id": "42e2ec6a72627f8c15115e279a5f7d8e", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-08-17T05:19:24
null
{"repository":{"forks":10,"language":"JavaScript","created_at":"2012-07-13T16:42:55-07:00","description":"A declarative responsive web design syntax. Breakpoints, defined in `<meta>`","owner":"benschwarz","has_downloads":true,"stargazers":177,"has_wiki":false,"watchers":177,"fork":false,"size":172,"homepage":"","private":false,"open_issues":2,"has_issues":true,"pushed_at":"2012-08-16T19:24:51-07:00"},"actor_attributes":{"location":"Melbourne, Australia","name":"Ben Schwarz","blog":"http://germanforblack.com","type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/benschwarz/metaquery/issues/6#issuecomment-7808723"}
IssueCommentEvent
true
{"comment_id":11607863,"issue_id":9430981}
{ "id": 1540537, "name": "shapesmith", "url": "https://github.com/bjnortier/shapesmith" }
{ "id": null, "login": "bjnortier", "gravatar_id": "ae1af0a1ced1e6f6947461c5f1c21b01", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-12-21T09:50:24
null
{"repository":{"has_issues":true,"owner":"bjnortier","created_at":"2011-03-29T01:24:08-07:00","homepage":"http://www.shapesmith.net","has_wiki":true,"pushed_at":"2012-11-29T03:37:13-08:00","description":"","watchers":95,"forks":12,"fork":false,"size":344,"stargazers":95,"private":false,"language":"JavaScript","open_issues":29,"has_downloads":true},"actor_attributes":{"company":"1011 Ltd","name":"Benjamin Nortier","blog":"http://www.1011ltd.com","type":"User","location":"London","email":"[email protected]"},"url":"https://github.com/bjnortier/shapesmith/issues/88#issuecomment-11607863"}
IssueCommentEvent
true
{"issue_id":5109971,"comment_id":6378449}
{ "id": null, "name": "Community", "url": "https://github.com/blackberry/Community" }
{ "id": null, "login": "peter9477", "gravatar_id": "64e12c52680644f0557961c931e50f7d", "avatar_url": null, "url": null }
{ "id": null, "login": "blackberry", "gravatar_id": null, "avatar_url": null, "url": null }
2012-06-17T03:02:00
null
{"repository":{"has_issues":true,"has_wiki":false,"forks":15,"description":"Community Pages","open_issues":1,"pushed_at":"2012-06-16T09:34:33-07:00","fork":false,"created_at":"2012-03-19T09:54:07-07:00","homepage":"blackberry.github.com/Community","watchers":7,"size":216,"private":false,"has_downloads":true,"owner":"blackberry","master_branch":"gh-pages","organization":"blackberry"},"actor_attributes":{"name":"Peter Hansen","company":"Engenuity Corporation","location":"Canada","blog":"http://peterhansen.ca/","type":"User","email":"[email protected]"},"url":"https://github.com/blackberry/Community/issues/88#issuecomment-6378449"}
IssueCommentEvent
true
{"issue_id":5436127,"comment_id":6769930}
{ "id": null, "name": "Ripple-UI", "url": "https://github.com/blackberry/Ripple-UI" }
{ "id": null, "login": "brentlintner", "gravatar_id": "488d67517781a9cb5becb4d009f06787", "avatar_url": null, "url": null }
{ "id": null, "login": "blackberry", "gravatar_id": null, "avatar_url": null, "url": null }
2012-07-05T00:56:46
null
{"repository":{"description":"Ripple UI is a cross-platform, mobile web application emulation environment.","has_downloads":true,"owner":"blackberry","created_at":"2011-07-27T07:53:39-07:00","organization":"blackberry","language":"JavaScript","pushed_at":"2012-06-21T13:32:43-07:00","watchers":101,"forks":34,"has_wiki":true,"fork":false,"size":196,"open_issues":97,"homepage":"","private":false,"has_issues":true},"actor_attributes":{"type":"User","company":"","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709","location":"Waterloo, Ontario, Canada","name":"Brent Lintner","blog":"http://brentlintner.heroku.com"},"url":"https://github.com/blackberry/Ripple-UI/issues/410#issuecomment-6769930"}
IssueCommentEvent
true
{"issue_id":6225413,"comment_id":7808108}
{ "id": null, "name": "Ripple-UI", "url": "https://github.com/blackberry/Ripple-UI" }
{ "id": null, "login": "hollywood-puppet", "gravatar_id": "a0af0116fb3cc80c6ccdb0a7bc8d3c17", "avatar_url": null, "url": null }
{ "id": null, "login": "blackberry", "gravatar_id": null, "avatar_url": null, "url": null }
2012-08-17T04:25:08
null
{"repository":{"forks":41,"language":"JavaScript","created_at":"2011-07-27T07:53:39-07:00","description":"Ripple UI is a cross-platform, mobile web application emulation environment.","owner":"blackberry","has_downloads":true,"stargazers":136,"has_wiki":true,"watchers":136,"fork":false,"size":388,"organization":"blackberry","homepage":"","private":false,"open_issues":99,"has_issues":true,"pushed_at":"2012-08-16T08:17:15-07:00"},"actor_attributes":{"type":"User","email":"da39a3ee5e6b4b0d3255bfef95601890afd80709"},"url":"https://github.com/blackberry/Ripple-UI/issues/489#issuecomment-7808108"}
IssueCommentEvent
true
{"issue_id":4813440,"comment_id":6011296}
{ "id": null, "name": "node-postgres", "url": "https://github.com/brianc/node-postgres" }
{ "id": null, "login": "brianc", "gravatar_id": "828ea77c9537e7e0832826f11310c744", "avatar_url": null, "url": null }
{ "id": null, "login": null, "gravatar_id": null, "avatar_url": null, "url": null }
2012-05-30T14:32:42
null
{"repository":{"watchers":394,"has_downloads":true,"homepage":"","fork":false,"has_issues":true,"has_wiki":true,"forks":47,"size":404,"private":false,"owner":"brianc","open_issues":20,"description":"Non-blocking PostgreSQL client for node.js. Pure JavaScript and native libpq bindings.","language":"JavaScript","created_at":"2010/10/15 16:05:50 -0700","pushed_at":"2012/05/09 21:46:08 -0700"},"actor_attributes":{"name":"Brian Carlson","company":"","location":"Austin, TX","blog":"","type":"User","email":"[email protected]"},"url":"https://github.com/brianc/node-postgres/issues/130#issuecomment-6011296"}