type
stringclasses 14
values | public
bool 1
class | payload
stringlengths 2
363k
| repo
dict | actor
dict | org
dict | created_at
timestamp[us] | id
stringlengths 10
10
| other
stringlengths 31
69
|
---|---|---|---|---|---|---|---|---|
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/ngxs/store/issues/192","repository_url":"https://api.github.com/repos/ngxs/store","labels_url":"https://api.github.com/repos/ngxs/store/issues/192/labels{/name}","comments_url":"https://api.github.com/repos/ngxs/store/issues/192/comments","events_url":"https://api.github.com/repos/ngxs/store/issues/192/events","html_url":"https://github.com/ngxs/store/issues/192","id":309645414,"number":192,"title":"Extensibility for Action Handlers... (Action Pipes?)","user":{"login":"markwhitfeld","id":1948265,"avatar_url":"https://avatars0.githubusercontent.com/u/1948265?v=4","gravatar_id":"","url":"https://api.github.com/users/markwhitfeld","html_url":"https://github.com/markwhitfeld","followers_url":"https://api.github.com/users/markwhitfeld/followers","following_url":"https://api.github.com/users/markwhitfeld/following{/other_user}","gists_url":"https://api.github.com/users/markwhitfeld/gists{/gist_id}","starred_url":"https://api.github.com/users/markwhitfeld/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/markwhitfeld/subscriptions","organizations_url":"https://api.github.com/users/markwhitfeld/orgs","repos_url":"https://api.github.com/users/markwhitfeld/repos","events_url":"https://api.github.com/users/markwhitfeld/events{/privacy}","received_events_url":"https://api.github.com/users/markwhitfeld/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-03-29T07:19:05Z","updated_at":"2018-03-29T07:31:53Z","closed_at":null,"author_association":"NONE","body":"### Challenge\r\nIn order to preserve the simplicity of ngxs I think that it would be great to have an extensibility point for action handlers so that some of the more complex things can be abstracted into helpers.\r\nHaving used ngrx on a large project I have seen how developers struggle with ngrx a great deal due to having to learn rxjs. It would be great if it would be possible to implement a relatively complex solution using ngxs without having to resort rxjs to handle certain scenarios.\r\nThe cancellation of the previous request to prevent race conditions is just one example.\r\nThere is currently an open issue (#191) with a proposal to simplify things for cancellation using an option parameter for the @Action decorator. This is the same as what I proposed as an alternative in the description of issue #143, so I think it is on the right track.\r\nWhat I am proposing here is an extension of that idea that allows for extensibility.\r\n\r\n### Proposal\r\nThis proposal is essentially a copy of my comments ([here](https://github.com/ngxs/store/issues/143#issuecomment-375963611) and [here](https://github.com/ngxs/store/issues/143#issuecomment-376114463)) on issue #143.\r\n\r\nWhat I am thinking is that we need to be able intercept and control the execution, inputs and outputs of the action handler. This sounds like a [Chain of Responsibility](https://en.wikipedia.org/wiki/Chain-of-responsibility_pattern) design pattern to me. Although, the actual implementation detail should have no bearing on its usage.\r\n\r\nWe could have the ability to add classes into the pipeline that processes the request.\r\nThese could be called one of the following: ActionFilter, ActionInterceptor, ActionHandler, ActionPipe\r\nI think that I prefer ActionPipe because it fits that paradigm so I will use that word going forward.\r\nI propose that the code could look like this:\r\n```typescript\r\n@Action(FeedAnimals, [ LatestCallWins ])\r\nfeedAnimals({ getState, setState }: StateContext<ZooStateModel>, { payload }: FeedAnimals) { \r\n ...\r\n }\r\n```\r\nThe Action Pipes could be expressed as an array ```@Action(FeedAnimals, [LatestCallWins, ...])``` or as extra parameters ```@Action(FeedAnimals, LatestCallWins, ...)```.\r\nI deliberately tried to keep the `LatestCallWins` name expressive but it could also be `Cancellable`, `SwitchMap`, `CancelsPrevious`, `LatestCallCancelsPrevious` or similar. You would be able to list multiple Action Pipes in the same fashion as providers on a module (by type, by factory or by value).\r\n\r\nRegarding the proposed solution for cancellation in issue #191, this could fit into the action pipe pattern in the following way (although the Options pipe could be inferred too):\r\n```typescript\r\n@Action(FeedAnimals, Options({ cancelable: true }))\r\nfeedAnimals(...) { ... }\r\n```\r\nOptions would just be another Action Pipe that handles the action according to the options specified.\r\n\r\nWe could define ones for Debouncing, Throttling, Transformations, and Extensions.\r\nThe process function could even look different if the ActionPipe is able to call it.\r\nFor Example you could have:\r\n```typescript\r\n@Action(FeedAnimals, [ ActionMap ])\r\nfeedAnimals({ payload }: FeedAnimals) { \r\n return [ new FeedCows(payload.hay), new FeedChickens(payload.seeds) ];\r\n }\r\n```\r\nHere the ActionMap pipe would expect a function that returns one or many actions and it would dispatch those automatically.\r\n\r\nI'm quite excited about the prospects of this! Hopefully I will get a chance to create a pull request for this soon (I believe that this should be relatively easy to acheive), unless somebody beats me to it... or unless this idea gets shot down ;-)"},"comment":{"url":"https://api.github.com/repos/ngxs/store/issues/comments/377148746","html_url":"https://github.com/ngxs/store/issues/192#issuecomment-377148746","issue_url":"https://api.github.com/repos/ngxs/store/issues/192","id":377148746,"user":{"login":"markwhitfeld","id":1948265,"avatar_url":"https://avatars0.githubusercontent.com/u/1948265?v=4","gravatar_id":"","url":"https://api.github.com/users/markwhitfeld","html_url":"https://github.com/markwhitfeld","followers_url":"https://api.github.com/users/markwhitfeld/followers","following_url":"https://api.github.com/users/markwhitfeld/following{/other_user}","gists_url":"https://api.github.com/users/markwhitfeld/gists{/gist_id}","starred_url":"https://api.github.com/users/markwhitfeld/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/markwhitfeld/subscriptions","organizations_url":"https://api.github.com/users/markwhitfeld/orgs","repos_url":"https://api.github.com/users/markwhitfeld/repos","events_url":"https://api.github.com/users/markwhitfeld/events{/privacy}","received_events_url":"https://api.github.com/users/markwhitfeld/received_events","type":"User","site_admin":false},"created_at":"2018-03-29T07:31:53Z","updated_at":"2018-03-29T07:31:53Z","author_association":"NONE","body":"_Adding some more [previous thoughts](https://github.com/ngxs/store/issues/143#issuecomment-376114463) here..._\r\nI think that this approach can be really useful as an extensibility point. As an example of this, here are some other plugin possibilities that I have thought of if we enable this Action Pipe approach:\r\n## Utility\r\n**AsReducer**\r\n```typescript\r\n@Action(FeedAnimals, [ AsReducer ])\r\nfeedAnimals(state: ZooStateModel, { payload }: FeedAnimals) { \r\n return { ...state, feed: payload };\r\n}\r\n```\r\n**AsStatePatch**\r\n```typescript\r\n@Action(FeedAnimals, [ AsStatePatch ])\r\nfeedAnimals({ payload }: FeedAnimals) { \r\n return { feed: payload };\r\n}\r\n```\r\n**AsActionStream** (or AsObservable)\r\n```typescript\r\n@Action(FeedAnimals, [ AsActionStream ])\r\nfeedAnimals(state: StateContext<ZooStateModel>, source$: Observable<FeedAnimals>) { \r\n return source$.pipe(\r\n switchMap(({ payload }) => ...)\r\n );\r\n}\r\n```\r\n## Entity Loader Plugin\r\n**EntityLoader**\r\n```typescript\r\n@Action(LoadAnimals, [ LatestCallWins, EntityLoader<AnimalLoadApi>])\r\nloadAnimals(state: ZooStateModel, action: LoadAnimals, entities: Animal[]) { \r\n return { ...state, animals: apiResponse};\r\n}\r\n```\r\n## NgRx Migration Plugin\r\n**AsNgRxReducer** (the same as AsReducer but provided to be explicit about how the ngrx one translates)\r\n```typescript\r\n@Action(null, [ AsNgRxReducer ])\r\nfeedAnimals(state: ZooStateModel, action: Action) { \r\n return { ...state, feed: payload };\r\n}\r\n```\r\nor reference the ngrx reducer directly because the signature is the same\r\n```typescript\r\n@Action(FeedAnimals, [ AsNgRxReducer ])\r\nfeedAnimals = someImport.existingNgrxReducerFn;\r\n```\r\n**AsNgRxEffect**\r\n```typescript\r\n@Action(FeedAnimals, [ AsNgRxEffect ])\r\nfeedAnimals(actions$: Actions) { \r\n return actions$\r\n .switchMap( ({payload}) => \r\n feedApi\r\n .doFeeding(payload)\r\n .map((result) => new FeedingDone(result) )\r\n );\r\n}\r\n```\r\nor directly adapt existing ngrx effects (could even do a type alias for this action decorator as ```@Effect```)\r\n```typescript\r\n@Action(null, [ AsNgRxEffect ])\r\nfeedAnimals$ = actions$\r\n .ofType<FeedAnimals>()\r\n .switchMap( ({payload}) => \r\n feedApi\r\n .doFeeding(payload)\r\n .map((result) => new FeedingDone(result) )\r\n );\r\n```\r\nThis would even handle the case where something else triggers the action (like a timer) as @stupidawesome raised [here](https://github.com/ngxs/store/issues/143#issuecomment-375887059):\r\n```typescript\r\n@Action(null, [ AsNgRxEffect ])\r\nfeedAnimals$ = Observable\r\n .interval(24 * 60 * 60 * 1000) // 24 hours\r\n .map(() => new FeedAnimals());\r\n```"}} | {
"id": 121422793,
"name": "ngxs/store",
"url": "https://api.github.com/repos/ngxs/store"
} | {
"id": 1948265,
"login": "markwhitfeld",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1948265?",
"url": "https://api.github.com/users/markwhitfeld"
} | {
"id": 37132593,
"login": "ngxs",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/37132593?",
"url": "https://api.github.com/orgs/ngxs"
} | 2018-03-29T07:31:53 | 7452215591 | {"actor":{"display_login":"markwhitfeld"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/DetectionTeamUCAS/R2CNN_Faster-RCNN_Tensorflow/issues/19","repository_url":"https://api.github.com/repos/DetectionTeamUCAS/R2CNN_Faster-RCNN_Tensorflow","labels_url":"https://api.github.com/repos/DetectionTeamUCAS/R2CNN_Faster-RCNN_Tensorflow/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/DetectionTeamUCAS/R2CNN_Faster-RCNN_Tensorflow/issues/19/comments","events_url":"https://api.github.com/repos/DetectionTeamUCAS/R2CNN_Faster-RCNN_Tensorflow/issues/19/events","html_url":"https://github.com/DetectionTeamUCAS/R2CNN_Faster-RCNN_Tensorflow/issues/19","id":360763994,"node_id":"MDU6SXNzdWUzNjA3NjM5OTQ=","number":19,"title":"eval.py计算mAP报错","user":{"login":"yuepingma","id":37562842,"node_id":"MDQ6VXNlcjM3NTYyODQy","avatar_url":"https://avatars1.githubusercontent.com/u/37562842?v=4","gravatar_id":"","url":"https://api.github.com/users/yuepingma","html_url":"https://github.com/yuepingma","followers_url":"https://api.github.com/users/yuepingma/followers","following_url":"https://api.github.com/users/yuepingma/following{/other_user}","gists_url":"https://api.github.com/users/yuepingma/gists{/gist_id}","starred_url":"https://api.github.com/users/yuepingma/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yuepingma/subscriptions","organizations_url":"https://api.github.com/users/yuepingma/orgs","repos_url":"https://api.github.com/users/yuepingma/repos","events_url":"https://api.github.com/users/yuepingma/events{/privacy}","received_events_url":"https://api.github.com/users/yuepingma/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2018-09-17T08:19:18Z","updated_at":"2018-09-17T09:00:37Z","closed_at":null,"author_association":"NONE","body":"计算mAP一直报错\r\n后来发现eval.py中103-104行只对x_c, y_c做了尺寸还原,w和h则没有,这是bug还是有意为之?\r\n我注释掉103和104行,并对gtbox缩放,则计算mAP成功"},"comment":{"url":"https://api.github.com/repos/DetectionTeamUCAS/R2CNN_Faster-RCNN_Tensorflow/issues/comments/421934901","html_url":"https://github.com/DetectionTeamUCAS/R2CNN_Faster-RCNN_Tensorflow/issues/19#issuecomment-421934901","issue_url":"https://api.github.com/repos/DetectionTeamUCAS/R2CNN_Faster-RCNN_Tensorflow/issues/19","id":421934901,"node_id":"MDEyOklzc3VlQ29tbWVudDQyMTkzNDkwMQ==","user":{"login":"yangxue0827","id":29257168,"node_id":"MDQ6VXNlcjI5MjU3MTY4","avatar_url":"https://avatars1.githubusercontent.com/u/29257168?v=4","gravatar_id":"","url":"https://api.github.com/users/yangxue0827","html_url":"https://github.com/yangxue0827","followers_url":"https://api.github.com/users/yangxue0827/followers","following_url":"https://api.github.com/users/yangxue0827/following{/other_user}","gists_url":"https://api.github.com/users/yangxue0827/gists{/gist_id}","starred_url":"https://api.github.com/users/yangxue0827/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yangxue0827/subscriptions","organizations_url":"https://api.github.com/users/yangxue0827/orgs","repos_url":"https://api.github.com/users/yangxue0827/repos","events_url":"https://api.github.com/users/yangxue0827/events{/privacy}","received_events_url":"https://api.github.com/users/yangxue0827/received_events","type":"User","site_admin":false},"created_at":"2018-09-17T09:00:37Z","updated_at":"2018-09-17T09:00:37Z","author_association":"MEMBER","body":"代码做了一些修改,由于身边没有测试调用的模型,不清楚能不能用 @yuepingma "}} | {
"id": 134204416,
"name": "DetectionTeamUCAS/R2CNN_Faster-RCNN_Tensorflow",
"url": "https://api.github.com/repos/DetectionTeamUCAS/R2CNN_Faster-RCNN_Tensorflow"
} | {
"id": 29257168,
"login": "yangxue0827",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/29257168?",
"url": "https://api.github.com/users/yangxue0827"
} | {
"id": 37233603,
"login": "DetectionTeamUCAS",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/37233603?",
"url": "https://api.github.com/orgs/DetectionTeamUCAS"
} | 2018-09-17T09:00:38 | 8274182377 | {"actor":{"display_login":"yangxue0827"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/update4j/update4j/issues/22","repository_url":"https://api.github.com/repos/update4j/update4j","labels_url":"https://api.github.com/repos/update4j/update4j/issues/22/labels{/name}","comments_url":"https://api.github.com/repos/update4j/update4j/issues/22/comments","events_url":"https://api.github.com/repos/update4j/update4j/issues/22/events","html_url":"https://github.com/update4j/update4j/issues/22","id":353433776,"node_id":"MDU6SXNzdWUzNTM0MzM3NzY=","number":22,"title":"Request: Demo application code","user":{"login":"martinm1000","id":3790866,"node_id":"MDQ6VXNlcjM3OTA4NjY=","avatar_url":"https://avatars2.githubusercontent.com/u/3790866?v=4","gravatar_id":"","url":"https://api.github.com/users/martinm1000","html_url":"https://github.com/martinm1000","followers_url":"https://api.github.com/users/martinm1000/followers","following_url":"https://api.github.com/users/martinm1000/following{/other_user}","gists_url":"https://api.github.com/users/martinm1000/gists{/gist_id}","starred_url":"https://api.github.com/users/martinm1000/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/martinm1000/subscriptions","organizations_url":"https://api.github.com/users/martinm1000/orgs","repos_url":"https://api.github.com/users/martinm1000/repos","events_url":"https://api.github.com/users/martinm1000/events{/privacy}","received_events_url":"https://api.github.com/users/martinm1000/received_events","type":"User","site_admin":false},"labels":[{"id":863517033,"node_id":"MDU6TGFiZWw4NjM1MTcwMzM=","url":"https://api.github.com/repos/update4j/update4j/labels/good%20first%20issue","name":"good first issue","color":"7057ff","default":true},{"id":863517030,"node_id":"MDU6TGFiZWw4NjM1MTcwMzA=","url":"https://api.github.com/repos/update4j/update4j/labels/help%20wanted","name":"help wanted","color":"008672","default":true}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":39,"created_at":"2018-08-23T15:24:34Z","updated_at":"2018-09-27T22:03:46Z","closed_at":null,"author_association":"NONE","body":"I would like to try update4j, but the current documentation is not enough to know where to start.\r\n\r\nA demo application + launcher code (like fxlauncher) for each way to use the library would go a long way to drive adoption of this library."},"comment":{"url":"https://api.github.com/repos/update4j/update4j/issues/comments/425257570","html_url":"https://github.com/update4j/update4j/issues/22#issuecomment-425257570","issue_url":"https://api.github.com/repos/update4j/update4j/issues/22","id":425257570,"node_id":"MDEyOklzc3VlQ29tbWVudDQyNTI1NzU3MA==","user":{"login":"mordechaim","id":12547785,"node_id":"MDQ6VXNlcjEyNTQ3Nzg1","avatar_url":"https://avatars0.githubusercontent.com/u/12547785?v=4","gravatar_id":"","url":"https://api.github.com/users/mordechaim","html_url":"https://github.com/mordechaim","followers_url":"https://api.github.com/users/mordechaim/followers","following_url":"https://api.github.com/users/mordechaim/following{/other_user}","gists_url":"https://api.github.com/users/mordechaim/gists{/gist_id}","starred_url":"https://api.github.com/users/mordechaim/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mordechaim/subscriptions","organizations_url":"https://api.github.com/users/mordechaim/orgs","repos_url":"https://api.github.com/users/mordechaim/repos","events_url":"https://api.github.com/users/mordechaim/events{/privacy}","received_events_url":"https://api.github.com/users/mordechaim/received_events","type":"User","site_admin":false},"created_at":"2018-09-27T22:03:46Z","updated_at":"2018-09-27T22:03:46Z","author_association":"CONTRIBUTOR","body":"Honestly, I myself never tried using ALL-UNNAMED so I can't guarantee anything.\n\nAbout the 2 versions, the way the module-path was designed is, the boot will use the boot version and the business app will use the other.\n\nSo it looks like you checked the versions in the boot.\n\n\n"}} | {
"id": 124780056,
"name": "update4j/update4j",
"url": "https://api.github.com/repos/update4j/update4j"
} | {
"id": 12547785,
"login": "mordechaim",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/12547785?",
"url": "https://api.github.com/users/mordechaim"
} | {
"id": 37272114,
"login": "update4j",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/37272114?",
"url": "https://api.github.com/orgs/update4j"
} | 2018-09-27T22:03:46 | 8334689023 | {"actor":{"display_login":"mordechaim"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/rustwasm/wasm-bindgen/issues/275","repository_url":"https://api.github.com/repos/rustwasm/wasm-bindgen","labels_url":"https://api.github.com/repos/rustwasm/wasm-bindgen/issues/275/labels{/name}","comments_url":"https://api.github.com/repos/rustwasm/wasm-bindgen/issues/275/comments","events_url":"https://api.github.com/repos/rustwasm/wasm-bindgen/issues/275/events","html_url":"https://github.com/rustwasm/wasm-bindgen/issues/275","id":333464373,"node_id":"MDU6SXNzdWUzMzM0NjQzNzM=","number":275,"title":"js-sys: Expose bindings to ALL the global JS things","user":{"login":"fitzgen","id":74571,"node_id":"MDQ6VXNlcjc0NTcx","avatar_url":"https://avatars2.githubusercontent.com/u/74571?v=4","gravatar_id":"","url":"https://api.github.com/users/fitzgen","html_url":"https://github.com/fitzgen","followers_url":"https://api.github.com/users/fitzgen/followers","following_url":"https://api.github.com/users/fitzgen/following{/other_user}","gists_url":"https://api.github.com/users/fitzgen/gists{/gist_id}","starred_url":"https://api.github.com/users/fitzgen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fitzgen/subscriptions","organizations_url":"https://api.github.com/users/fitzgen/orgs","repos_url":"https://api.github.com/users/fitzgen/repos","events_url":"https://api.github.com/users/fitzgen/events{/privacy}","received_events_url":"https://api.github.com/users/fitzgen/received_events","type":"User","site_admin":false},"labels":[{"id":782247501,"node_id":"MDU6TGFiZWw3ODIyNDc1MDE=","url":"https://api.github.com/repos/rustwasm/wasm-bindgen/labels/good%20first%20issue","name":"good first issue","color":"7057ff","default":true},{"id":782247500,"node_id":"MDU6TGFiZWw3ODIyNDc1MDA=","url":"https://api.github.com/repos/rustwasm/wasm-bindgen/labels/help%20wanted","name":"help wanted","color":"33aa3f","default":true},{"id":999227569,"node_id":"MDU6TGFiZWw5OTkyMjc1Njk=","url":"https://api.github.com/repos/rustwasm/wasm-bindgen/labels/js-sys","name":"js-sys","color":"f9d0c4","default":false},{"id":903581220,"node_id":"MDU6TGFiZWw5MDM1ODEyMjA=","url":"https://api.github.com/repos/rustwasm/wasm-bindgen/labels/more-types","name":"more-types","color":"c9821e","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":124,"created_at":"2018-06-18T23:02:47Z","updated_at":"2018-07-29T05:31:36Z","closed_at":null,"author_association":"MEMBER","body":"This is about exposing **ALL** of the globally available JS APIs through the `js-sys` crate. Things that are guaranteed by the ECMAScript standard, *not* Web/Node/etc APIs.\r\n\r\n[A good overview/list/documentation of these APIs is available here](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects) and I've also made a checklist below. As we implement bindings for these APIs, I will check them off.\r\n\r\n## How to Implement New Bindings\r\n\r\n* Comment here saying which thing you are going to make bindings for (so that we don't accidentally duplicate effort). I'll add your username next to the checkbox item.\r\n\r\n* Open the [MDN page](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects) for the relevant JS API.\r\n\r\n* Open `crates/js-sys/src/lib.rs` in your editor; this is the file where we are implementing the bindings.\r\n\r\n* Follow the instructions in `crates/js-sys/src/lib.rs` about how to add new bindings: https://github.com/rustwasm/wasm-bindgen/blob/aa348f963ff4ae7ddd769365ad1b197cd134e24e/crates/js-sys/src/lib.rs#L28-L44\r\n\r\n* Add a test for the new binding to `crates/js-sys/tests/wasm/MyType.rs`\r\n\r\n* Run the JS global API bindings tests with `cargo test -p js-sys --target wasm32-unknown-unknown`\r\n\r\n* Send a pull request! :smile_cat: \r\n\r\n-------------------------------------------------------------------------------\r\n\r\nDepends on this PR for the initial skeleton and infrastructure:\r\n\r\n* [X] https://github.com/rustwasm/wasm-bindgen/pull/274\r\n\r\n-------------------------------------------------------------------------------\r\n\r\nAll `String` bindings depend on:\r\n\r\n* [x] https://github.com/rustwasm/wasm-bindgen/issues/287\r\n\r\n-------------------------------------------------------------------------------\r\n\r\n* [x] `Array`\r\n\r\n * [x] `Array.length` (@robertDurst)\r\n\r\n * [ ] `Array.prototype[@@unscopables]`\r\n\r\n * [x] `Array.from()`\r\n\r\n * [x] `Array.isArray()`\r\n\r\n * [ ] `Array.of()`\r\n\r\n * [x] `Array.prototype.concat()`\r\n\r\n * [x] `Array.prototype.copyWithin()`\r\n\r\n * [x] `Array.prototype.entries()`\r\n\r\n * [x] `Array.prototype.every()`\r\n\r\n * [x] `Array.prototype.fill()`\r\n\r\n * [x] `Array.prototype.filter()`\r\n\r\n * [x] `Array.prototype.find()`\r\n\r\n * [x] `Array.prototype.findIndex()`\r\n\r\n * [x] `Array.prototype.forEach()`\r\n\r\n * [x] `Array.prototype.includes()`\r\n\r\n * [x] `Array.prototype.indexOf()`\r\n\r\n * [x] `Array.prototype.join()`\r\n\r\n * [x] `Array.prototype.keys()`\r\n\r\n * [x] `Array.prototype.lastIndexOf()`\r\n\r\n * [x] `Array.prototype.map()`\r\n\r\n * [x] `Array.prototype.pop()` (@sepiropht)\r\n\r\n * [x] `Array.prototype.push()`\r\n\r\n * [x] `Array.prototype.reduce()`\r\n\r\n * [x] `Array.prototype.reduceRight()`\r\n\r\n * [x] `Array.prototype.reverse()`\r\n\r\n * [x] `Array.prototype.shift()`\r\n\r\n * [x] `Array.prototype.slice()`\r\n\r\n * [x] `Array.prototype.some()`\r\n\r\n * [x] `Array.prototype.sort()`\r\n\r\n * [ ] `Array.prototype.splice()`\r\n\r\n * [x] `Array.prototype.toLocaleString()`\r\n\r\n * [x] `Array.prototype.toString()`\r\n\r\n * [x] `Array.prototype.unshift()`\r\n\r\n * [x] `Array.prototype.values()`\r\n\r\n * [ ] `Array.prototype[@@iterator]()`\r\n\r\n * [ ] `get Array[@@species]`\r\n\r\n* [ ] `ArrayBuffer`\r\n\r\n * [ ] `ArrayBuffer.prototype.byteLength`\r\n\r\n * [ ] `get ArrayBuffer[@@species]`\r\n\r\n * [x] `ArrayBuffer.isView()`\r\n\r\n * [x] `ArrayBuffer.prototype.slice()`\r\n\r\n* [x] `Boolean`\r\n\r\n* [x] `DataView`\r\n\r\n * [x] `DataView.prototype.buffer`\r\n\r\n * [x] `DataView.prototype.byteLength`\r\n\r\n * [x] `DataView.prototype.byteOffset`\r\n\r\n * [x] `DataView.prototype.getFloat32()`\r\n\r\n * [x] `DataView.prototype.getFloat64()`\r\n\r\n * [x] `DataView.prototype.getInt16()`\r\n\r\n * [x] `DataView.prototype.getInt32()`\r\n\r\n * [x] `DataView.prototype.getInt8()`\r\n\r\n * [x] `DataView.prototype.getUint16()`\r\n\r\n * [x] `DataView.prototype.getUint32()`\r\n\r\n * [x] `DataView.prototype.getUint8()`\r\n\r\n * [x] `DataView.prototype.setFloat32()`\r\n\r\n * [x] `DataView.prototype.setFloat64()`\r\n\r\n * [x] `DataView.prototype.setInt16()`\r\n\r\n * [x] `DataView.prototype.setInt32()`\r\n\r\n * [x] `DataView.prototype.setInt8()`\r\n\r\n * [x] `DataView.prototype.setUint16()`\r\n\r\n * [x] `DataView.prototype.setUint32()`\r\n\r\n * [x] `DataView.prototype.setUint8()`\r\n\r\n* [x] `Date`\r\n\r\n * [x] `Date.UTC()`\r\n\r\n * [x] `Date.now()`\r\n\r\n * [x] `Date.parse()`\r\n\r\n * [x] `Date.prototype.getDate()`\r\n\r\n * [x] `Date.prototype.getDay()`\r\n\r\n * [x] `Date.prototype.getFullYear()`\r\n\r\n * [x] `Date.prototype.getHours()`\r\n\r\n * [x] `Date.prototype.getMilliseconds()`\r\n\r\n * [x] `Date.prototype.getMinutes()`\r\n\r\n * [x] `Date.prototype.getMonth()`\r\n\r\n * [x] `Date.prototype.getSeconds()`\r\n\r\n * [x] `Date.prototype.getTime()`\r\n\r\n * [x] `Date.prototype.getTimezoneOffset()`\r\n\r\n * [x] `Date.prototype.getUTCDate()`\r\n\r\n * [x] `Date.prototype.getUTCDay()`\r\n\r\n * [x] `Date.prototype.getUTCFullYear()`\r\n\r\n * [x] `Date.prototype.getUTCHours()`\r\n\r\n * [x] `Date.prototype.getUTCMilliseconds()`\r\n\r\n * [x] `Date.prototype.getUTCMinutes()`\r\n\r\n * [x] `Date.prototype.getUTCMonth()`\r\n\r\n * [x] `Date.prototype.getUTCSeconds()`\r\n\r\n * [x] `Date.prototype.setDate()`\r\n\r\n * [x] `Date.prototype.setFullYear()`\r\n\r\n * [x] `Date.prototype.setHours()`\r\n\r\n * [x] `Date.prototype.setMilliseconds()`\r\n\r\n * [x] `Date.prototype.setMinutes()`\r\n\r\n * [x] `Date.prototype.setMonth()`\r\n\r\n * [x] `Date.prototype.setSeconds()`\r\n\r\n * [x] `Date.prototype.setTime()`\r\n\r\n * [x] `Date.prototype.setUTCDate()`\r\n\r\n * [x] `Date.prototype.setUTCFullYear()`\r\n\r\n * [x] `Date.prototype.setUTCHours()`\r\n\r\n * [x] `Date.prototype.setUTCMilliseconds()`\r\n\r\n * [x] `Date.prototype.setUTCMinutes()`\r\n\r\n * [x] `Date.prototype.setUTCMonth()`\r\n\r\n * [x] `Date.prototype.setUTCSeconds()`\r\n\r\n * [x] `Date.prototype.toDateString()`\r\n\r\n * [x] `Date.prototype.toISOString()`\r\n\r\n * [x] `Date.prototype.toJSON()`\r\n\r\n * [x] `Date.prototype.toLocaleDateString()`\r\n\r\n * [x] `Date.prototype.toLocaleString()`\r\n\r\n * [x] `Date.prototype.toLocaleTimeString()`\r\n\r\n * [x] `Date.prototype.toString()`\r\n\r\n * [x] `Date.prototype.toTimeString()`\r\n\r\n * [x] `Date.prototype.toUTCString()`\r\n\r\n * [x] `Date.prototype.valueOf()`\r\n\r\n * [ ] `Date.prototype[@@toPrimitive]`\r\n\r\n* [x] `Error`\r\n\r\n * [x] `Error.prototype.message`\r\n\r\n * [x] `Error.prototype.name`\r\n\r\n * [x] `Error.prototype.toString()`\r\n\r\n* [ ] `EvalError`\r\n\r\n* [ ] `Float32Array`\r\n\r\n* [ ] `Float64Array`\r\n\r\n* [x] `Function`\r\n\r\n * [x] `Function.length`\r\n\r\n * [x] `Function.name`\r\n\r\n * [x] `Function.prototype.apply()`\r\n\r\n * [x] `Function.prototype.bind()`\r\n\r\n * [ ] `Function.prototype.call()`\r\n\r\n * [x] `Function.prototype.toString()`\r\n\r\n* [x] `Generator`\r\n\r\n * [x] `Generator.prototype.next()`\r\n\r\n * [x] `Generator.prototype.return()`\r\n\r\n * [x] `Generator.prototype.throw()`\r\n\r\n* [ ] `GeneratorFunction`\r\n\r\n* [ ] `Infinity`\r\n\r\n* [ ] `Int16Array`\r\n\r\n* [ ] `Int32Array`\r\n\r\n* [ ] `Int8Array`\r\n\r\n* [x] `Intl`\r\n\r\n * [x] `Intl.getCanonicalLocales()`\r\n\r\n* [ ] `Intl.Collator`\r\n\r\n * [ ] `Intl.Collator.prototype.compare`\r\n\r\n * [ ] `Intl.Collator.prototype.resolvedOptions()`\r\n\r\n * [ ] `Intl.Collator.supportedLocalesOf()`\r\n\r\n* [ ] `Intl.DateTimeFormat`\r\n\r\n * [ ] `Intl.DateTimeFormat.prototype.format`\r\n\r\n * [ ] `Intl.DateTimeFormat.prototype.formatToParts()`\r\n\r\n * [ ] `Intl.DateTimeFormat.prototype.resolvedOptions()`\r\n\r\n * [ ] `Intl.DateTimeFormat.supportedLocalesOf()`\r\n\r\n* [ ] `Intl.NumberFormat`\r\n\r\n * [ ] `Intl.NumberFormat.prototype.format`\r\n\r\n * [ ] `Intl.NumberFormat.prototype.formatToParts()`\r\n\r\n * [ ] `Intl.NumberFormat.prototype.resolvedOptions()`\r\n\r\n * [ ] `Intl.NumberFormat.supportedLocalesOf()`\r\n\r\n* [ ] `Intl.PluralRules`\r\n\r\n * [ ] `Intl.PluralRules.prototype.resolvedOptions()`\r\n\r\n * [ ] `Intl.PluralRules.select()`\r\n\r\n * [ ] `Intl.PluralRules.supportedLocalesOf()`\r\n\r\n* [ ] `JSON`\r\n\r\n * [ ] `JSON.parse()`\r\n\r\n * [ ] `JSON.stringify()`\r\n\r\n* [x] `Map`\r\n\r\n * [x] `Map.prototype.size`\r\n\r\n * [ ] `Map.prototype[@@toStringTag]`\r\n\r\n * [ ] `get Map[@@species]`\r\n\r\n * [x] `Map.prototype.clear()`\r\n\r\n * [x] `Map.prototype.delete()`\r\n\r\n * [x] `Map.prototype.entries()`\r\n\r\n * [x] `Map.prototype.forEach()`\r\n\r\n * [x] `Map.prototype.get()`\r\n\r\n * [x] `Map.prototype.has()`\r\n\r\n * [x] `Map.prototype.keys()`\r\n\r\n * [x] `Map.prototype.set()`\r\n\r\n * [x] `Map.prototype.values()`\r\n\r\n * [ ] `Map.prototype[@@iterator]()`\r\n\r\n* [x] `Math`\r\n\r\n * [ ] `Math.E`\r\n\r\n * [ ] `Math.LN10`\r\n\r\n * [ ] `Math.LN2`\r\n\r\n * [ ] `Math.LOG10E`\r\n\r\n * [ ] `Math.LOG2E`\r\n\r\n * [ ] `Math.PI`\r\n\r\n * [ ] `Math.SQRT1_2`\r\n\r\n * [ ] `Math.SQRT2`\r\n\r\n * [x] `Math.abs()`\r\n\r\n * [x] `Math.acos()`\r\n\r\n * [x] `Math.acosh()`\r\n\r\n * [x] `Math.asin()`\r\n\r\n * [x] `Math.asinh()`\r\n\r\n * [x] `Math.atan()`\r\n\r\n * [x] `Math.atan2()`\r\n\r\n * [x] `Math.atanh()`\r\n\r\n * [x] `Math.cbrt()`\r\n\r\n * [x] `Math.ceil()`\r\n\r\n * [x] `Math.clz32()`\r\n\r\n * [x] `Math.cos()`\r\n\r\n * [x] `Math.cosh()`\r\n\r\n * [x] `Math.exp()`\r\n\r\n * [x] `Math.expm1()`\r\n\r\n * [x] `Math.floor()`\r\n\r\n * [x] `Math.fround()`\r\n\r\n * [x] `Math.hypot()`\r\n\r\n * [x] `Math.imul()`\r\n\r\n * [x] `Math.log()`\r\n\r\n * [x] `Math.log10()`\r\n\r\n * [x] `Math.log1p()`\r\n\r\n * [x] `Math.log2()`\r\n\r\n * [ ] `Math.max()`\r\n\r\n * [ ] `Math.min()`\r\n\r\n * [x] `Math.pow()`\r\n\r\n * [x] `Math.random()`\r\n\r\n * [x] `Math.round()`\r\n\r\n * [x] `Math.sign()`\r\n\r\n * [x] `Math.sin()`\r\n\r\n * [x] `Math.sinh()`\r\n\r\n * [x] `Math.sqrt()`\r\n\r\n * [x] `Math.tan()`\r\n\r\n * [x] `Math.tanh()`\r\n\r\n * [x] `Math.trunc()`\r\n\r\n* [ ] `NaN`\r\n\r\n* [x] `Number`\r\n\r\n * [ ] `Number.EPSILON`\r\n\r\n * [ ] `Number.MAX_SAFE_INTEGER`\r\n\r\n * [ ] `Number.MAX_VALUE`\r\n\r\n * [ ] `Number.MIN_SAFE_INTEGER`\r\n\r\n * [ ] `Number.MIN_VALUE`\r\n\r\n * [ ] `Number.NEGATIVE_INFINITY`\r\n\r\n * [ ] `Number.NaN`\r\n\r\n * [ ] `Number.POSITIVE_INFINITY`\r\n\r\n * [x] `Number.isFinite()`\r\n\r\n * [x] `Number.isInteger()`\r\n\r\n * [ ] `Number.isNaN()`\r\n\r\n * [x] `Number.isSafeInteger()`\r\n\r\n * [x] `Number.parseFloat()`\r\n\r\n * [x] `Number.parseInt()`\r\n\r\n * [x] `Number.prototype.toExponential()`\r\n\r\n * [x] `Number.prototype.toFixed()`\r\n\r\n * [x] `Number.prototype.toLocaleString()`\r\n\r\n * [x] `Number.prototype.toPrecision()`\r\n\r\n * [x] `Number.prototype.toString()`\r\n\r\n * [x] `Number.prototype.valueOf()`\r\n\r\n* [x] `Object`\r\n\r\n * [ ] `Object.prototype.__proto__`\r\n\r\n * [x] `Object.prototype.constructor`\r\n\r\n * [ ] `Object.assign()`\r\n\r\n * [ ] `Object.create()`\r\n\r\n * [ ] `Object.defineProperties()`\r\n\r\n * [ ] `Object.defineProperty()`\r\n\r\n * [ ] `Object.entries()`\r\n\r\n * [x] `Object.freeze()`\r\n\r\n * [ ] `Object.getOwnPropertyDescriptor()`\r\n\r\n * [ ] `Object.getOwnPropertyDescriptors()`\r\n\r\n * [ ] `Object.getOwnPropertyNames()`\r\n\r\n * [ ] `Object.getOwnPropertySymbols()`\r\n\r\n * [ ] `Object.getPrototypeOf()`\r\n\r\n * [x] `Object.is()`\r\n\r\n * [x] `Object.isExtensible()`\r\n\r\n * [x] `Object.isFrozen()`\r\n\r\n * [x] `Object.isSealed()`\r\n\r\n * [x] `Object.keys()`\r\n\r\n * [x] `Object.preventExtensions()`\r\n\r\n * [X] `Object.prototype.hasOwnProperty()`\r\n\r\n * [X] `Object.prototype.isPrototypeOf()` (@belfz)\r\n\r\n * [x] `Object.prototype.propertyIsEnumerable()` (@belfz )\r\n\r\n * [x] `Object.prototype.toLocaleString()`\r\n\r\n * [X] `Object.prototype.toString()` (@jonathan-s)\r\n\r\n * [x] `Object.prototype.valueOf()`\r\n\r\n * [x] `Object.seal()`\r\n\r\n * [x] `Object.setPrototypeOf()`\r\n\r\n * [x] `Object.values()`\r\n\r\n* [ ] `Promise`\r\n\r\n * [ ] `Promise.all()`\r\n\r\n * [ ] `Promise.prototype.catch()`\r\n\r\n * [ ] `Promise.prototype.finally()`\r\n\r\n * [ ] `Promise.prototype.then()`\r\n\r\n * [ ] `Promise.race()`\r\n\r\n * [ ] `Promise.reject()`\r\n\r\n * [ ] `Promise.resolve()`\r\n\r\n* [x] `Proxy`\r\n\r\n * [ ] `handler.apply()`\r\n\r\n * [ ] `handler.construct()`\r\n\r\n * [ ] `handler.defineProperty()`\r\n\r\n * [ ] `handler.deleteProperty()`\r\n\r\n * [ ] `handler.get()`\r\n\r\n * [ ] `handler.getOwnPropertyDescriptor()`\r\n\r\n * [ ] `handler.getPrototypeOf()`\r\n\r\n * [ ] `handler.has()`\r\n\r\n * [ ] `handler.isExtensible()`\r\n\r\n * [ ] `handler.ownKeys()`\r\n\r\n * [ ] `handler.preventExtensions()`\r\n\r\n * [ ] `handler.set()`\r\n\r\n * [ ] `handler.setPrototypeOf()`\r\n\r\n* [ ] `RangeError`\r\n\r\n* [ ] `ReferenceError`\r\n\r\n* [x] `Reflect`\r\n\r\n * [x] `Reflect.apply()`\r\n\r\n * [x] `Reflect.construct()`\r\n\r\n * [x] `Reflect.defineProperty()`\r\n\r\n * [x] `Reflect.deleteProperty()`\r\n\r\n * [x] `Reflect.get()`\r\n\r\n * [x] `Reflect.getOwnPropertyDescriptor()`\r\n\r\n * [x] `Reflect.getPrototypeOf()`\r\n\r\n * [x] `Reflect.has()`\r\n\r\n * [x] `Reflect.isExtensible()`\r\n\r\n * [x] `Reflect.ownKeys()`\r\n\r\n * [x] `Reflect.preventExtensions()`\r\n\r\n * [x] `Reflect.set()`\r\n\r\n * [x] `Reflect.setPrototypeOf()`\r\n\r\n* [ ] `RegExp`\r\n\r\n * [ ] `RegExp.$1-$9`\r\n\r\n * [ ] `RegExp.input ($_)`\r\n\r\n * [ ] `RegExp.lastMatch ($&)`\r\n\r\n * [ ] `RegExp.lastParen ($+)`\r\n\r\n * [ ] `RegExp.leftContext ($`)`\r\n\r\n * [ ] `RegExp.prototype.flags`\r\n\r\n * [ ] `RegExp.prototype.global`\r\n\r\n * [ ] `RegExp.prototype.ignoreCase`\r\n\r\n * [ ] `RegExp.prototype.multiline`\r\n\r\n * [ ] `RegExp.prototype.source`\r\n\r\n * [ ] `RegExp.prototype.sticky`\r\n\r\n * [ ] `RegExp.prototype.unicode`\r\n\r\n * [ ] `RegExp.rightContext ($')`\r\n\r\n * [ ] `get RegExp[@@species]`\r\n\r\n * [ ] `regexp.lastIndex`\r\n\r\n * [ ] `RegExp.prototype.exec()`\r\n\r\n * [ ] `RegExp.prototype.test()`\r\n\r\n * [ ] `RegExp.prototype.toString()`\r\n\r\n * [ ] `RegExp.prototype[@@match]()`\r\n\r\n * [ ] `RegExp.prototype[@@replace]()`\r\n\r\n * [ ] `RegExp.prototype[@@search]()`\r\n\r\n * [ ] `RegExp.prototype[@@split]()`\r\n\r\n* [x] `Set`\r\n\r\n * [x] `Set.prototype.size`\r\n\r\n * [ ] `get Set[@@species]`\r\n\r\n * [x] `Set.prototype.add()`\r\n\r\n * [x] `Set.prototype.clear()`\r\n\r\n * [x] `Set.prototype.delete()`\r\n\r\n * [x] `Set.prototype.entries()`\r\n\r\n * [x] `Set.prototype.forEach()`\r\n\r\n * [x] `Set.prototype.has()`\r\n\r\n * [x] `Set.prototype.values()`\r\n\r\n * [ ] `Set.prototype[@@iterator]()`\r\n\r\n* [x] `String`\r\n\r\n * [x] `string.length`\r\n\r\n * [ ] `String.fromCharCode()`\r\n\r\n * [ ] `String.fromCodePoint()`\r\n\r\n * [x] `String.prototype.charAt()`\r\n\r\n * [x] `String.prototype.charCodeAt()`\r\n\r\n * [x] `String.prototype.codePointAt()`\r\n\r\n * [x] `String.prototype.concat()`\r\n\r\n * [x] `String.prototype.endsWith()`\r\n\r\n * [x] `String.prototype.includes()`\r\n\r\n * [x] `String.prototype.indexOf()`\r\n\r\n * [x] `String.prototype.lastIndexOf()`\r\n\r\n * [ ] `String.prototype.localeCompare()`\r\n\r\n * [ ] `String.prototype.match()`\r\n\r\n * [x] `String.prototype.normalize()`\r\n\r\n * [x] `String.prototype.padEnd()`\r\n\r\n * [x] `String.prototype.padStart()`\r\n\r\n * [x] `String.prototype.repeat()`\r\n\r\n * [ ] `String.prototype.replace()`\r\n\r\n * [ ] `String.prototype.search()`\r\n\r\n * [x] `String.prototype.slice()`\r\n\r\n * [ ] `String.prototype.split()`\r\n\r\n * [x] `String.prototype.startsWith()`\r\n\r\n * [x] `String.prototype.substr()`\r\n\r\n * [x] `String.prototype.substring()`\r\n\r\n * [x] `String.prototype.toLocaleLowerCase()`\r\n\r\n * [x] `String.prototype.toLocaleUpperCase()`\r\n\r\n * [x] `String.prototype.toLowerCase()`\r\n\r\n * [x] `String.prototype.toString()`\r\n\r\n * [x] `String.prototype.toUpperCase()`\r\n\r\n * [x] `String.prototype.trim()`\r\n\r\n * [x] `String.prototype.trimEnd()`\r\n\r\n * [x] `String.prototype.trimStart()`\r\n\r\n * [x] `String.prototype.valueOf()`\r\n\r\n * [ ] `String.prototype[@@iterator]()`\r\n\r\n * [ ] `String.raw()`\r\n\r\n* [ ] `Symbol`\r\n\r\n * [x] `Symbol.hasInstance`\r\n\r\n * [x] `Symbol.isConcatSpreadable`\r\n\r\n * [x] `Symbol.iterator`\r\n\r\n * [x] `Symbol.match`\r\n\r\n * [x] `Symbol.replace`\r\n\r\n * [x] `Symbol.search`\r\n\r\n * [x] `Symbol.species`\r\n\r\n * [x] `Symbol.split`\r\n\r\n * [x] `Symbol.toPrimitive`\r\n\r\n * [x] `Symbol.toStringTag`\r\n\r\n * [ ] `Symbol.unscopables`\r\n\r\n * [x] `Symbol.for()`\r\n\r\n * [x] `Symbol.keyFor()`\r\n\r\n * [x] `Symbol.prototype.toString()`\r\n\r\n * [x] `Symbol.prototype.valueOf()`\r\n\r\n * [ ] `Symbol.prototype[@@toPrimitive]`\r\n\r\n* [ ] `SyntaxError`\r\n\r\n* [ ] `TypeError`\r\n\r\n* [ ] `TypedArray`\r\n\r\n * [ ] `TypedArray.BYTES_PER_ELEMENT`\r\n\r\n * [ ] `TypedArray.name`\r\n\r\n * [ ] `TypedArray.prototype`\r\n\r\n * [ ] `TypedArray.prototype.buffer`\r\n\r\n * [ ] `TypedArray.prototype.byteLength`\r\n\r\n * [ ] `TypedArray.prototype.byteOffset`\r\n\r\n * [ ] `TypedArray.prototype.length`\r\n\r\n * [ ] `get TypedArray[@@species]`\r\n\r\n * [ ] `TypedArray.from()`\r\n\r\n * [ ] `TypedArray.of()`\r\n\r\n * [ ] `TypedArray.prototype.copyWithin()`\r\n\r\n * [ ] `TypedArray.prototype.entries()`\r\n\r\n * [ ] `TypedArray.prototype.every()`\r\n\r\n * [ ] `TypedArray.prototype.fill()`\r\n\r\n * [ ] `TypedArray.prototype.filter()`\r\n\r\n * [ ] `TypedArray.prototype.find()`\r\n\r\n * [ ] `TypedArray.prototype.findIndex()`\r\n\r\n * [ ] `TypedArray.prototype.forEach()`\r\n\r\n * [ ] `TypedArray.prototype.includes()`\r\n\r\n * [ ] `TypedArray.prototype.indexOf()`\r\n\r\n * [ ] `TypedArray.prototype.join()`\r\n\r\n * [ ] `TypedArray.prototype.keys()`\r\n\r\n * [ ] `TypedArray.prototype.lastIndexOf()`\r\n\r\n * [ ] `TypedArray.prototype.map()`\r\n\r\n * [ ] `TypedArray.prototype.reduce()`\r\n\r\n * [ ] `TypedArray.prototype.reduceRight()`\r\n\r\n * [ ] `TypedArray.prototype.reverse()`\r\n\r\n * [ ] `TypedArray.prototype.set()`\r\n\r\n * [ ] `TypedArray.prototype.slice()`\r\n\r\n * [ ] `TypedArray.prototype.some()`\r\n\r\n * [ ] `TypedArray.prototype.sort()`\r\n\r\n * [ ] `TypedArray.prototype.subarray()`\r\n\r\n * [ ] `TypedArray.prototype.toLocaleString()`\r\n\r\n * [ ] `TypedArray.prototype.toString()`\r\n\r\n * [ ] `TypedArray.prototype.values()`\r\n\r\n * [ ] `TypedArray.prototype[@@iterator]()`\r\n\r\n* [ ] `URIError`\r\n\r\n* [x] `Uint16Array`\r\n\r\n* [x] `Uint32Array`\r\n\r\n* [x] `Uint8Array`\r\n\r\n* [x] `Uint8ClampedArray`\r\n\r\n* [x] `WeakMap`\r\n\r\n * [x] `WeakMap.prototype.delete()`\r\n\r\n * [x] `WeakMap.prototype.get()`\r\n\r\n * [x] `WeakMap.prototype.has()`\r\n\r\n * [x] `WeakMap.prototype.set()`\r\n\r\n* [x] `WeakSet`\r\n\r\n * [x] `WeakSet.prototype.add()`\r\n\r\n * [x] `WeakSet.prototype.delete()`\r\n\r\n * [x] `WeakSet.prototype.has()`\r\n\r\n* [ ] `WebAssembly`\r\n\r\n * [ ] `WebAssembly.compile()`\r\n\r\n * [ ] `WebAssembly.instantiate()`\r\n\r\n * [ ] `WebAssembly.instantiateStreaming()`\r\n\r\n * [x] `WebAssembly.validate()`\r\n\r\n* [X] `decodeURI()`\r\n\r\n* [x] `decodeURIComponent()`\r\n\r\n* [X] `encodeURI()`\r\n\r\n* [x] `encodeURIComponent()`\r\n\r\n* [x] `escape()`\r\n\r\n* [X] `eval()`\r\n\r\n* [x] `isFinite()`\r\n\r\n* [x] `isNaN()`\r\n\r\n* [x] `null`\r\n\r\n* [x] `parseFloat()`\r\n\r\n* [x] `parseInt()`\r\n\r\n* [x] `undefined`\r\n\r\n* [x] `unescape()`"},"comment":{"url":"https://api.github.com/repos/rustwasm/wasm-bindgen/issues/comments/408653291","html_url":"https://github.com/rustwasm/wasm-bindgen/issues/275#issuecomment-408653291","issue_url":"https://api.github.com/repos/rustwasm/wasm-bindgen/issues/275","id":408653291,"node_id":"MDEyOklzc3VlQ29tbWVudDQwODY1MzI5MQ==","user":{"login":"alexcrichton","id":64996,"node_id":"MDQ6VXNlcjY0OTk2","avatar_url":"https://avatars1.githubusercontent.com/u/64996?v=4","gravatar_id":"","url":"https://api.github.com/users/alexcrichton","html_url":"https://github.com/alexcrichton","followers_url":"https://api.github.com/users/alexcrichton/followers","following_url":"https://api.github.com/users/alexcrichton/following{/other_user}","gists_url":"https://api.github.com/users/alexcrichton/gists{/gist_id}","starred_url":"https://api.github.com/users/alexcrichton/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alexcrichton/subscriptions","organizations_url":"https://api.github.com/users/alexcrichton/orgs","repos_url":"https://api.github.com/users/alexcrichton/repos","events_url":"https://api.github.com/users/alexcrichton/events{/privacy}","received_events_url":"https://api.github.com/users/alexcrichton/received_events","type":"User","site_admin":false},"created_at":"2018-07-29T05:31:36Z","updated_at":"2018-07-29T05:31:36Z","author_association":"COLLABORATOR","body":"@brisad a good question! For that we should probably support `js_name = \"$1\"` in addition to `js_name = foo`, want to open an issue for that?\r\n\r\nOnce we've got that mapping then I think picking any reasonable name for them in Rust should be fine."}} | {
"id": 114685405,
"name": "rustwasm/wasm-bindgen",
"url": "https://api.github.com/repos/rustwasm/wasm-bindgen"
} | {
"id": 64996,
"login": "alexcrichton",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/64996?",
"url": "https://api.github.com/users/alexcrichton"
} | {
"id": 37272798,
"login": "rustwasm",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/37272798?",
"url": "https://api.github.com/orgs/rustwasm"
} | 2018-07-29T05:31:36 | 8033418317 | {"actor":{"display_login":"alexcrichton"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/CapU-CompSci/MapADT-220-2018/issues/62","repository_url":"https://api.github.com/repos/CapU-CompSci/MapADT-220-2018","labels_url":"https://api.github.com/repos/CapU-CompSci/MapADT-220-2018/issues/62/labels{/name}","comments_url":"https://api.github.com/repos/CapU-CompSci/MapADT-220-2018/issues/62/comments","events_url":"https://api.github.com/repos/CapU-CompSci/MapADT-220-2018/issues/62/events","html_url":"https://github.com/CapU-CompSci/MapADT-220-2018/issues/62","id":312256224,"number":62,"title":"Map API -- functions with inconsistent names","user":{"login":"powderflask","id":451398,"avatar_url":"https://avatars0.githubusercontent.com/u/451398?v=4","gravatar_id":"","url":"https://api.github.com/users/powderflask","html_url":"https://github.com/powderflask","followers_url":"https://api.github.com/users/powderflask/followers","following_url":"https://api.github.com/users/powderflask/following{/other_user}","gists_url":"https://api.github.com/users/powderflask/gists{/gist_id}","starred_url":"https://api.github.com/users/powderflask/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/powderflask/subscriptions","organizations_url":"https://api.github.com/users/powderflask/orgs","repos_url":"https://api.github.com/users/powderflask/repos","events_url":"https://api.github.com/users/powderflask/events{/privacy}","received_events_url":"https://api.github.com/users/powderflask/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":{"login":"powderflask","id":451398,"avatar_url":"https://avatars0.githubusercontent.com/u/451398?v=4","gravatar_id":"","url":"https://api.github.com/users/powderflask","html_url":"https://github.com/powderflask","followers_url":"https://api.github.com/users/powderflask/followers","following_url":"https://api.github.com/users/powderflask/following{/other_user}","gists_url":"https://api.github.com/users/powderflask/gists{/gist_id}","starred_url":"https://api.github.com/users/powderflask/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/powderflask/subscriptions","organizations_url":"https://api.github.com/users/powderflask/orgs","repos_url":"https://api.github.com/users/powderflask/repos","events_url":"https://api.github.com/users/powderflask/events{/privacy}","received_events_url":"https://api.github.com/users/powderflask/received_events","type":"User","site_admin":false},"assignees":[{"login":"powderflask","id":451398,"avatar_url":"https://avatars0.githubusercontent.com/u/451398?v=4","gravatar_id":"","url":"https://api.github.com/users/powderflask","html_url":"https://github.com/powderflask","followers_url":"https://api.github.com/users/powderflask/followers","following_url":"https://api.github.com/users/powderflask/following{/other_user}","gists_url":"https://api.github.com/users/powderflask/gists{/gist_id}","starred_url":"https://api.github.com/users/powderflask/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/powderflask/subscriptions","organizations_url":"https://api.github.com/users/powderflask/orgs","repos_url":"https://api.github.com/users/powderflask/repos","events_url":"https://api.github.com/users/powderflask/events{/privacy}","received_events_url":"https://api.github.com/users/powderflask/received_events","type":"User","site_admin":false}],"milestone":null,"comments":0,"created_at":"2018-04-08T00:25:38Z","updated_at":"2018-04-08T00:30:15Z","closed_at":null,"author_association":"CONTRIBUTOR","body":"2 functions in the `map.h` API have inconsistent names:\r\n - `entryDelete()` : I suggest `mapRemove()`\r\n - `keySet()` : I suggest `mapKeySet()`"},"comment":{"url":"https://api.github.com/repos/CapU-CompSci/MapADT-220-2018/issues/comments/379509159","html_url":"https://github.com/CapU-CompSci/MapADT-220-2018/issues/62#issuecomment-379509159","issue_url":"https://api.github.com/repos/CapU-CompSci/MapADT-220-2018/issues/62","id":379509159,"user":{"login":"powderflask","id":451398,"avatar_url":"https://avatars0.githubusercontent.com/u/451398?v=4","gravatar_id":"","url":"https://api.github.com/users/powderflask","html_url":"https://github.com/powderflask","followers_url":"https://api.github.com/users/powderflask/followers","following_url":"https://api.github.com/users/powderflask/following{/other_user}","gists_url":"https://api.github.com/users/powderflask/gists{/gist_id}","starred_url":"https://api.github.com/users/powderflask/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/powderflask/subscriptions","organizations_url":"https://api.github.com/users/powderflask/orgs","repos_url":"https://api.github.com/users/powderflask/repos","events_url":"https://api.github.com/users/powderflask/events{/privacy}","received_events_url":"https://api.github.com/users/powderflask/received_events","type":"User","site_admin":false},"created_at":"2018-04-08T00:30:15Z","updated_at":"2018-04-08T00:30:15Z","author_association":"CONTRIBUTOR","body":"updated: `mapKeySet()`"}} | {
"id": 125314573,
"name": "CapU-CompSci/MapADT-220-2018",
"url": "https://api.github.com/repos/CapU-CompSci/MapADT-220-2018"
} | {
"id": 451398,
"login": "powderflask",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/451398?",
"url": "https://api.github.com/users/powderflask"
} | {
"id": 37393494,
"login": "CapU-CompSci",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/37393494?",
"url": "https://api.github.com/orgs/CapU-CompSci"
} | 2018-04-08T00:30:15 | 7495726969 | {"actor":{"display_login":"powderflask"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/getmydata/getmydata/issues/383","repository_url":"https://api.github.com/repos/getmydata/getmydata","labels_url":"https://api.github.com/repos/getmydata/getmydata/issues/383/labels{/name}","comments_url":"https://api.github.com/repos/getmydata/getmydata/issues/383/comments","events_url":"https://api.github.com/repos/getmydata/getmydata/issues/383/events","html_url":"https://github.com/getmydata/getmydata/pull/383","id":320772200,"number":383,"title":"Fix select double after click","user":{"login":"pimmesz","id":7393354,"avatar_url":"https://avatars1.githubusercontent.com/u/7393354?v=4","gravatar_id":"","url":"https://api.github.com/users/pimmesz","html_url":"https://github.com/pimmesz","followers_url":"https://api.github.com/users/pimmesz/followers","following_url":"https://api.github.com/users/pimmesz/following{/other_user}","gists_url":"https://api.github.com/users/pimmesz/gists{/gist_id}","starred_url":"https://api.github.com/users/pimmesz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pimmesz/subscriptions","organizations_url":"https://api.github.com/users/pimmesz/orgs","repos_url":"https://api.github.com/users/pimmesz/repos","events_url":"https://api.github.com/users/pimmesz/events{/privacy}","received_events_url":"https://api.github.com/users/pimmesz/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-05-07T11:39:54Z","updated_at":"2018-05-07T12:12:42Z","closed_at":"2018-05-07T12:02:54Z","author_association":"COLLABORATOR","pull_request":{"url":"https://api.github.com/repos/getmydata/getmydata/pulls/383","html_url":"https://github.com/getmydata/getmydata/pull/383","diff_url":"https://github.com/getmydata/getmydata/pull/383.diff","patch_url":"https://github.com/getmydata/getmydata/pull/383.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/getmydata/getmydata/issues/comments/387045629","html_url":"https://github.com/getmydata/getmydata/pull/383#issuecomment-387045629","issue_url":"https://api.github.com/repos/getmydata/getmydata/issues/383","id":387045629,"user":{"login":"pimmesz","id":7393354,"avatar_url":"https://avatars1.githubusercontent.com/u/7393354?v=4","gravatar_id":"","url":"https://api.github.com/users/pimmesz","html_url":"https://github.com/pimmesz","followers_url":"https://api.github.com/users/pimmesz/followers","following_url":"https://api.github.com/users/pimmesz/following{/other_user}","gists_url":"https://api.github.com/users/pimmesz/gists{/gist_id}","starred_url":"https://api.github.com/users/pimmesz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pimmesz/subscriptions","organizations_url":"https://api.github.com/users/pimmesz/orgs","repos_url":"https://api.github.com/users/pimmesz/repos","events_url":"https://api.github.com/users/pimmesz/events{/privacy}","received_events_url":"https://api.github.com/users/pimmesz/received_events","type":"User","site_admin":false},"created_at":"2018-05-07T12:12:42Z","updated_at":"2018-05-07T12:12:42Z","author_association":"COLLABORATOR","body":" [BUG: Select company page > JS sometimes put multiple similar companies in selected list](https://trello.com/c/QpIXfP5Z/373-bug-select-company-page-js-sometimes-put-multiple-similar-companies-in-selected-list)"}} | {
"id": 123912224,
"name": "getmydata/getmydata",
"url": "https://api.github.com/repos/getmydata/getmydata"
} | {
"id": 7393354,
"login": "pimmesz",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/7393354?",
"url": "https://api.github.com/users/pimmesz"
} | {
"id": 37690871,
"login": "getmydata",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/37690871?",
"url": "https://api.github.com/orgs/getmydata"
} | 2018-05-07T12:12:42 | 7637278243 | {"actor":{"display_login":"pimmesz"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/InnovationNorway/terraform-azurerm-vsts-agent/issues/2","repository_url":"https://api.github.com/repos/InnovationNorway/terraform-azurerm-vsts-agent","labels_url":"https://api.github.com/repos/InnovationNorway/terraform-azurerm-vsts-agent/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/InnovationNorway/terraform-azurerm-vsts-agent/issues/2/comments","events_url":"https://api.github.com/repos/InnovationNorway/terraform-azurerm-vsts-agent/issues/2/events","html_url":"https://github.com/InnovationNorway/terraform-azurerm-vsts-agent/pull/2","id":345755479,"node_id":"MDExOlB1bGxSZXF1ZXN0MjA0ODAyNTM2","number":2,"title":"[WIP] update vsts-agent module","user":{"login":"joakimhellum-in","id":34519450,"node_id":"MDQ6VXNlcjM0NTE5NDUw","avatar_url":"https://avatars2.githubusercontent.com/u/34519450?v=4","gravatar_id":"","url":"https://api.github.com/users/joakimhellum-in","html_url":"https://github.com/joakimhellum-in","followers_url":"https://api.github.com/users/joakimhellum-in/followers","following_url":"https://api.github.com/users/joakimhellum-in/following{/other_user}","gists_url":"https://api.github.com/users/joakimhellum-in/gists{/gist_id}","starred_url":"https://api.github.com/users/joakimhellum-in/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/joakimhellum-in/subscriptions","organizations_url":"https://api.github.com/users/joakimhellum-in/orgs","repos_url":"https://api.github.com/users/joakimhellum-in/repos","events_url":"https://api.github.com/users/joakimhellum-in/events{/privacy}","received_events_url":"https://api.github.com/users/joakimhellum-in/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-07-30T13:22:07Z","updated_at":"2018-07-30T22:37:38Z","closed_at":null,"author_association":"COLLABORATOR","pull_request":{"url":"https://api.github.com/repos/InnovationNorway/terraform-azurerm-vsts-agent/pulls/2","html_url":"https://github.com/InnovationNorway/terraform-azurerm-vsts-agent/pull/2","diff_url":"https://github.com/InnovationNorway/terraform-azurerm-vsts-agent/pull/2.diff","patch_url":"https://github.com/InnovationNorway/terraform-azurerm-vsts-agent/pull/2.patch"},"body":"**WORK IN PROGESS** DO NOT MERGE\r\n\r\nTODO:\r\n- [ ] add support for multiple agents (`agent_count`)\r\n- [ ] add support for windows agents\r\n- [ ] ready to merge"},"comment":{"url":"https://api.github.com/repos/InnovationNorway/terraform-azurerm-vsts-agent/issues/comments/409034639","html_url":"https://github.com/InnovationNorway/terraform-azurerm-vsts-agent/pull/2#issuecomment-409034639","issue_url":"https://api.github.com/repos/InnovationNorway/terraform-azurerm-vsts-agent/issues/2","id":409034639,"node_id":"MDEyOklzc3VlQ29tbWVudDQwOTAzNDYzOQ==","user":{"login":"joakimhellum-in","id":34519450,"node_id":"MDQ6VXNlcjM0NTE5NDUw","avatar_url":"https://avatars2.githubusercontent.com/u/34519450?v=4","gravatar_id":"","url":"https://api.github.com/users/joakimhellum-in","html_url":"https://github.com/joakimhellum-in","followers_url":"https://api.github.com/users/joakimhellum-in/followers","following_url":"https://api.github.com/users/joakimhellum-in/following{/other_user}","gists_url":"https://api.github.com/users/joakimhellum-in/gists{/gist_id}","starred_url":"https://api.github.com/users/joakimhellum-in/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/joakimhellum-in/subscriptions","organizations_url":"https://api.github.com/users/joakimhellum-in/orgs","repos_url":"https://api.github.com/users/joakimhellum-in/repos","events_url":"https://api.github.com/users/joakimhellum-in/events{/privacy}","received_events_url":"https://api.github.com/users/joakimhellum-in/received_events","type":"User","site_admin":false},"created_at":"2018-07-30T22:37:38Z","updated_at":"2018-07-30T22:37:38Z","author_association":"COLLABORATOR","body":"@hfurubotten kan du se hva du synes om alle hacks for automatisk navngivning"}} | {
"id": 142547774,
"name": "InnovationNorway/terraform-azurerm-vsts-agent",
"url": "https://api.github.com/repos/InnovationNorway/terraform-azurerm-vsts-agent"
} | {
"id": 34519450,
"login": "joakimhellum-in",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/34519450?",
"url": "https://api.github.com/users/joakimhellum-in"
} | {
"id": 37800896,
"login": "InnovationNorway",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/37800896?",
"url": "https://api.github.com/orgs/InnovationNorway"
} | 2018-07-30T22:37:39 | 8040683384 | {"actor":{"display_login":"joakimhellum-in"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/NTMC-Community/MatchZoo/issues/452","repository_url":"https://api.github.com/repos/NTMC-Community/MatchZoo","labels_url":"https://api.github.com/repos/NTMC-Community/MatchZoo/issues/452/labels{/name}","comments_url":"https://api.github.com/repos/NTMC-Community/MatchZoo/issues/452/comments","events_url":"https://api.github.com/repos/NTMC-Community/MatchZoo/issues/452/events","html_url":"https://github.com/NTMC-Community/MatchZoo/issues/452","id":374626034,"node_id":"MDU6SXNzdWUzNzQ2MjYwMzQ=","number":452,"title":"refactor generator","user":{"login":"bwanglzu","id":9794489,"node_id":"MDQ6VXNlcjk3OTQ0ODk=","avatar_url":"https://avatars1.githubusercontent.com/u/9794489?v=4","gravatar_id":"","url":"https://api.github.com/users/bwanglzu","html_url":"https://github.com/bwanglzu","followers_url":"https://api.github.com/users/bwanglzu/followers","following_url":"https://api.github.com/users/bwanglzu/following{/other_user}","gists_url":"https://api.github.com/users/bwanglzu/gists{/gist_id}","starred_url":"https://api.github.com/users/bwanglzu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bwanglzu/subscriptions","organizations_url":"https://api.github.com/users/bwanglzu/orgs","repos_url":"https://api.github.com/users/bwanglzu/repos","events_url":"https://api.github.com/users/bwanglzu/events{/privacy}","received_events_url":"https://api.github.com/users/bwanglzu/received_events","type":"User","site_admin":false},"labels":[{"id":946398538,"node_id":"MDU6TGFiZWw5NDYzOTg1Mzg=","url":"https://api.github.com/repos/NTMC-Community/MatchZoo/labels/2.0","name":"2.0","color":"0ebff9","default":false}],"state":"open","locked":false,"assignee":{"login":"bwanglzu","id":9794489,"node_id":"MDQ6VXNlcjk3OTQ0ODk=","avatar_url":"https://avatars1.githubusercontent.com/u/9794489?v=4","gravatar_id":"","url":"https://api.github.com/users/bwanglzu","html_url":"https://github.com/bwanglzu","followers_url":"https://api.github.com/users/bwanglzu/followers","following_url":"https://api.github.com/users/bwanglzu/following{/other_user}","gists_url":"https://api.github.com/users/bwanglzu/gists{/gist_id}","starred_url":"https://api.github.com/users/bwanglzu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bwanglzu/subscriptions","organizations_url":"https://api.github.com/users/bwanglzu/orgs","repos_url":"https://api.github.com/users/bwanglzu/repos","events_url":"https://api.github.com/users/bwanglzu/events{/privacy}","received_events_url":"https://api.github.com/users/bwanglzu/received_events","type":"User","site_admin":false},"assignees":[{"login":"bwanglzu","id":9794489,"node_id":"MDQ6VXNlcjk3OTQ0ODk=","avatar_url":"https://avatars1.githubusercontent.com/u/9794489?v=4","gravatar_id":"","url":"https://api.github.com/users/bwanglzu","html_url":"https://github.com/bwanglzu","followers_url":"https://api.github.com/users/bwanglzu/followers","following_url":"https://api.github.com/users/bwanglzu/following{/other_user}","gists_url":"https://api.github.com/users/bwanglzu/gists{/gist_id}","starred_url":"https://api.github.com/users/bwanglzu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bwanglzu/subscriptions","organizations_url":"https://api.github.com/users/bwanglzu/orgs","repos_url":"https://api.github.com/users/bwanglzu/repos","events_url":"https://api.github.com/users/bwanglzu/events{/privacy}","received_events_url":"https://api.github.com/users/bwanglzu/received_events","type":"User","site_admin":false},{"login":"zhouzhouyang520","id":24804329,"node_id":"MDQ6VXNlcjI0ODA0MzI5","avatar_url":"https://avatars0.githubusercontent.com/u/24804329?v=4","gravatar_id":"","url":"https://api.github.com/users/zhouzhouyang520","html_url":"https://github.com/zhouzhouyang520","followers_url":"https://api.github.com/users/zhouzhouyang520/followers","following_url":"https://api.github.com/users/zhouzhouyang520/following{/other_user}","gists_url":"https://api.github.com/users/zhouzhouyang520/gists{/gist_id}","starred_url":"https://api.github.com/users/zhouzhouyang520/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zhouzhouyang520/subscriptions","organizations_url":"https://api.github.com/users/zhouzhouyang520/orgs","repos_url":"https://api.github.com/users/zhouzhouyang520/repos","events_url":"https://api.github.com/users/zhouzhouyang520/events{/privacy}","received_events_url":"https://api.github.com/users/zhouzhouyang520/received_events","type":"User","site_admin":false}],"milestone":null,"comments":0,"created_at":"2018-10-27T09:30:03Z","updated_at":"2018-11-09T18:09:31Z","closed_at":null,"author_association":"MEMBER","body":""},"comment":{"url":"https://api.github.com/repos/NTMC-Community/MatchZoo/issues/comments/437445502","html_url":"https://github.com/NTMC-Community/MatchZoo/issues/452#issuecomment-437445502","issue_url":"https://api.github.com/repos/NTMC-Community/MatchZoo/issues/452","id":437445502,"node_id":"MDEyOklzc3VlQ29tbWVudDQzNzQ0NTUwMg==","user":{"login":"uduse","id":4717005,"node_id":"MDQ6VXNlcjQ3MTcwMDU=","avatar_url":"https://avatars2.githubusercontent.com/u/4717005?v=4","gravatar_id":"","url":"https://api.github.com/users/uduse","html_url":"https://github.com/uduse","followers_url":"https://api.github.com/users/uduse/followers","following_url":"https://api.github.com/users/uduse/following{/other_user}","gists_url":"https://api.github.com/users/uduse/gists{/gist_id}","starred_url":"https://api.github.com/users/uduse/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/uduse/subscriptions","organizations_url":"https://api.github.com/users/uduse/orgs","repos_url":"https://api.github.com/users/uduse/repos","events_url":"https://api.github.com/users/uduse/events{/privacy}","received_events_url":"https://api.github.com/users/uduse/received_events","type":"User","site_admin":false},"created_at":"2018-11-09T18:09:31Z","updated_at":"2018-11-09T18:09:31Z","author_association":"COLLABORATOR","body":"#470 "}} | {
"id": 93728104,
"name": "NTMC-Community/MatchZoo",
"url": "https://api.github.com/repos/NTMC-Community/MatchZoo"
} | {
"id": 4717005,
"login": "uduse",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/4717005?",
"url": "https://api.github.com/users/uduse"
} | {
"id": 37836806,
"login": "NTMC-Community",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/37836806?",
"url": "https://api.github.com/orgs/NTMC-Community"
} | 2018-11-09T18:09:31 | 8564907894 | {"actor":{"display_login":"uduse"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/74","repository_url":"https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo","labels_url":"https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/74/labels{/name}","comments_url":"https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/74/comments","events_url":"https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/74/events","html_url":"https://github.com/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/74","id":389167032,"node_id":"MDU6SXNzdWUzODkxNjcwMzI=","number":74,"title":"Found a bug - 1544425675","user":{"login":"iamthannos","id":37864982,"node_id":"MDQ6VXNlcjM3ODY0OTgy","avatar_url":"https://avatars1.githubusercontent.com/u/37864982?v=4","gravatar_id":"","url":"https://api.github.com/users/iamthannos","html_url":"https://github.com/iamthannos","followers_url":"https://api.github.com/users/iamthannos/followers","following_url":"https://api.github.com/users/iamthannos/following{/other_user}","gists_url":"https://api.github.com/users/iamthannos/gists{/gist_id}","starred_url":"https://api.github.com/users/iamthannos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iamthannos/subscriptions","organizations_url":"https://api.github.com/users/iamthannos/orgs","repos_url":"https://api.github.com/users/iamthannos/repos","events_url":"https://api.github.com/users/iamthannos/events{/privacy}","received_events_url":"https://api.github.com/users/iamthannos/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-12-10T07:07:57Z","updated_at":"2018-12-10T07:07:59Z","closed_at":null,"author_association":"CONTRIBUTOR","body":"I'm having a problem with this."},"comment":{"url":"https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/comments/445708929","html_url":"https://github.com/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/74#issuecomment-445708929","issue_url":"https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo/issues/74","id":445708929,"node_id":"MDEyOklzc3VlQ29tbWVudDQ0NTcwODkyOQ==","user":{"login":"iamthannos","id":37864982,"node_id":"MDQ6VXNlcjM3ODY0OTgy","avatar_url":"https://avatars1.githubusercontent.com/u/37864982?v=4","gravatar_id":"","url":"https://api.github.com/users/iamthannos","html_url":"https://github.com/iamthannos","followers_url":"https://api.github.com/users/iamthannos/followers","following_url":"https://api.github.com/users/iamthannos/following{/other_user}","gists_url":"https://api.github.com/users/iamthannos/gists{/gist_id}","starred_url":"https://api.github.com/users/iamthannos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iamthannos/subscriptions","organizations_url":"https://api.github.com/users/iamthannos/orgs","repos_url":"https://api.github.com/users/iamthannos/repos","events_url":"https://api.github.com/users/iamthannos/events{/privacy}","received_events_url":"https://api.github.com/users/iamthannos/received_events","type":"User","site_admin":false},"created_at":"2018-12-10T07:07:59Z","updated_at":"2018-12-10T07:07:59Z","author_association":"CONTRIBUTOR","body":"Mee tooo"}} | {
"id": 149494920,
"name": "Scaleskope-Ind/Org_Apic_Auto_Repo",
"url": "https://api.github.com/repos/Scaleskope-Ind/Org_Apic_Auto_Repo"
} | {
"id": 37864982,
"login": "iamthannos",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/37864982?",
"url": "https://api.github.com/users/iamthannos"
} | {
"id": 37864994,
"login": "Scaleskope-Ind",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/37864994?",
"url": "https://api.github.com/orgs/Scaleskope-Ind"
} | 2018-12-10T07:07:59 | 8724802741 | {"actor":{"display_login":"iamthannos"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/traccar/traccar/issues/4083","repository_url":"https://api.github.com/repos/traccar/traccar","labels_url":"https://api.github.com/repos/traccar/traccar/issues/4083/labels{/name}","comments_url":"https://api.github.com/repos/traccar/traccar/issues/4083/comments","events_url":"https://api.github.com/repos/traccar/traccar/issues/4083/events","html_url":"https://github.com/traccar/traccar/issues/4083","id":366393420,"node_id":"MDU6SXNzdWUzNjYzOTM0MjA=","number":4083,"title":"Enabling logger results in a crash","user":{"login":"oliv3","id":84910,"node_id":"MDQ6VXNlcjg0OTEw","avatar_url":"https://avatars2.githubusercontent.com/u/84910?v=4","gravatar_id":"","url":"https://api.github.com/users/oliv3","html_url":"https://github.com/oliv3","followers_url":"https://api.github.com/users/oliv3/followers","following_url":"https://api.github.com/users/oliv3/following{/other_user}","gists_url":"https://api.github.com/users/oliv3/gists{/gist_id}","starred_url":"https://api.github.com/users/oliv3/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/oliv3/subscriptions","organizations_url":"https://api.github.com/users/oliv3/orgs","repos_url":"https://api.github.com/users/oliv3/repos","events_url":"https://api.github.com/users/oliv3/events{/privacy}","received_events_url":"https://api.github.com/users/oliv3/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":16,"created_at":"2018-10-03T15:20:18Z","updated_at":"2018-10-04T10:32:17Z","closed_at":null,"author_association":"CONTRIBUTOR","body":"Setting\r\n```xml\r\n <entry key='logger.enable'>true</entry>\r\n```\r\nresults in the service **not** starting.\r\n\r\n```\r\nException in thread \"main\" java.lang.StackOverflowError\r\n\tat java.base/java.util.Locale.isUnicodeExtensionKey(Locale.java:2233)\r\n\tat java.base/java.util.Locale.getUnicodeLocaleType(Locale.java:1306)\r\n\tat java.base/sun.util.locale.provider.CalendarDataUtility.findRegionOverride(CalendarDataUtility.java:135)\r\n\tat java.base/java.text.DecimalFormatSymbols.initialize(DecimalFormatSymbols.java:619)\r\n\tat java.base/java.text.DecimalFormatSymbols.<init>(DecimalFormatSymbols.java:113)\r\n\tat java.base/sun.util.locale.provider.DecimalFormatSymbolsProviderImpl.getInstance(DecimalFormatSymbolsProviderImpl.java:85)\r\n\tat java.base/java.text.DecimalFormatSymbols.getInstance(DecimalFormatSymbols.java:180)\r\n\tat java.base/java.util.Formatter.getZero(Formatter.java:2435)\r\n\tat java.base/java.util.Formatter.<init>(Formatter.java:1954)\r\n\tat java.base/java.util.Formatter.<init>(Formatter.java:1976)\r\n\tat java.base/java.lang.String.format(String.java:2734)\r\n\tat org.traccar.helper.Log$LogFormatter.format(Log.java:147)\r\n\tat java.logging/java.util.logging.StreamHandler.publish(StreamHandler.java:199)\r\n\tat java.logging/java.util.logging.ConsoleHandler.publish(ConsoleHandler.java:95)\r\n\tat java.logging/java.util.logging.Logger.log(Logger.java:979)\r\n\tat java.logging/java.util.logging.Logger.doLog(Logger.java:1006)\r\n...\r\n\tat java.base/java.util.Formatter.format(Formatter.java:2607)\r\n\tat java.base/java.lang.String.format(String.java:2734)\r\n\tat org.traccar.helper.Log$LogFormatter.format(Log.java:147)\r\n\tat java.logging/java.util.logging.StreamHandler.publish(StreamHandler.java:199)\r\n\tat java.logging/java.util.logging.ConsoleHandler.publish(ConsoleHandler.java:95)\r\n\tat java.logging/java.util.logging.Logger.log(Logger.java:979)\r\n\tat java.logging/java.util.logging.Logger.doLog(Logger.java:1006)\r\n\tat java.logging/java.util.logging.Logger.log(Logger.java:1092)\r\n\tat java.logging/sun.util.logging.internal.LoggingProviderImpl$JULWrapper.log(LoggingProviderImpl.java:141)\r\n\tat java.base/sun.util.logging.PlatformLogger.config(PlatformLogger.java:433)\r\n\tat java.base/sun.util.locale.provider.LocaleServiceProviderPool.config(LocaleServiceProviderPool.java:126)\r\n\tat java.base/sun.util.locale.provider.LocaleServiceProviderPool.getLocalizedObjectImpl(LocaleServiceProviderPool.java:285)\r\n\tat java.base/sun.util.locale.provider.LocaleServiceProviderPool.getLocalizedObject(LocaleServiceProviderPool.java:262)\r\n\tat java.base/sun.util.locale.provider.CalendarDataUtility.retrieveFirstDayOfWeek(CalendarDataUtility.java:75)\r\n\tat java.base/java.util.Calendar.setWeekCountData(Calendar.java:3411)\r\n\tat java.base/java.util.Calendar.<init>(Calendar.java:1611)\r\n\tat java.base/java.util.GregorianCalendar.<init>(GregorianCalendar.java:738)\r\n\tat java.base/java.util.Calendar$Builder.build(Calendar.java:1493)\r\n\tat java.base/sun.util.locale.provider.CalendarProviderImpl.getInstance(CalendarProviderImpl.java:87)\r\n\tat java.base/java.util.Calendar.createCalendar(Calendar.java:1696)\r\n\tat java.base/java.util.Calendar.getInstance(Calendar.java:1660)\r\n\tat java.base/java.util.Formatter$FormatSpecifier.printDateTime(Formatter.java:2969)\r\n\tat java.base/java.util.Formatter$FormatSpecifier.print(Formatter.java:2883)\r\n\tat java.base/java.util.Formatter.format(Formatter.java:2677)\r\n\tat java.base/java.util.Formatter.format(Formatter.java:2607)\r\n\tat java.base/java.lang.String.format(String.java:2734)\r\n\tat org.traccar.helper.Log$LogFormatter.format(Log.java:147)\r\n\tat java.logging/java.util.logging.StreamHandler.publish(StreamHandler.java:199)\r\n\tat java.logging/java.util.logging.ConsoleHandler.publish(ConsoleHandler.java:95)\r\n\tat java.logging/java.util.logging.Logger.log(Logger.java:979)\r\n\tat java.logging/java.util.logging.Logger.doLog(Logger.java:1006)\r\n```\r\n"},"comment":{"url":"https://api.github.com/repos/traccar/traccar/issues/comments/426968285","html_url":"https://github.com/traccar/traccar/issues/4083#issuecomment-426968285","issue_url":"https://api.github.com/repos/traccar/traccar/issues/4083","id":426968285,"node_id":"MDEyOklzc3VlQ29tbWVudDQyNjk2ODI4NQ==","user":{"login":"tananaev","id":1161863,"node_id":"MDQ6VXNlcjExNjE4NjM=","avatar_url":"https://avatars3.githubusercontent.com/u/1161863?v=4","gravatar_id":"","url":"https://api.github.com/users/tananaev","html_url":"https://github.com/tananaev","followers_url":"https://api.github.com/users/tananaev/followers","following_url":"https://api.github.com/users/tananaev/following{/other_user}","gists_url":"https://api.github.com/users/tananaev/gists{/gist_id}","starred_url":"https://api.github.com/users/tananaev/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tananaev/subscriptions","organizations_url":"https://api.github.com/users/tananaev/orgs","repos_url":"https://api.github.com/users/tananaev/repos","events_url":"https://api.github.com/users/tananaev/events{/privacy}","received_events_url":"https://api.github.com/users/tananaev/received_events","type":"User","site_admin":false},"created_at":"2018-10-04T10:32:17Z","updated_at":"2018-10-04T10:32:17Z","author_association":"MEMBER","body":"Traccar used to work on >= 7. Now it works on >= 8, but embedded JRE works only on >= 9."}} | {
"id": 4038949,
"name": "traccar/traccar",
"url": "https://api.github.com/repos/traccar/traccar"
} | {
"id": 1161863,
"login": "tananaev",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1161863?",
"url": "https://api.github.com/users/tananaev"
} | {
"id": 37892282,
"login": "traccar",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/37892282?",
"url": "https://api.github.com/orgs/traccar"
} | 2018-10-04T10:32:17 | 8366913562 | {"actor":{"display_login":"tananaev"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/traccar/traccar/issues/4083","repository_url":"https://api.github.com/repos/traccar/traccar","labels_url":"https://api.github.com/repos/traccar/traccar/issues/4083/labels{/name}","comments_url":"https://api.github.com/repos/traccar/traccar/issues/4083/comments","events_url":"https://api.github.com/repos/traccar/traccar/issues/4083/events","html_url":"https://github.com/traccar/traccar/issues/4083","id":366393420,"node_id":"MDU6SXNzdWUzNjYzOTM0MjA=","number":4083,"title":"Enabling logger results in a crash","user":{"login":"oliv3","id":84910,"node_id":"MDQ6VXNlcjg0OTEw","avatar_url":"https://avatars2.githubusercontent.com/u/84910?v=4","gravatar_id":"","url":"https://api.github.com/users/oliv3","html_url":"https://github.com/oliv3","followers_url":"https://api.github.com/users/oliv3/followers","following_url":"https://api.github.com/users/oliv3/following{/other_user}","gists_url":"https://api.github.com/users/oliv3/gists{/gist_id}","starred_url":"https://api.github.com/users/oliv3/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/oliv3/subscriptions","organizations_url":"https://api.github.com/users/oliv3/orgs","repos_url":"https://api.github.com/users/oliv3/repos","events_url":"https://api.github.com/users/oliv3/events{/privacy}","received_events_url":"https://api.github.com/users/oliv3/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":42,"created_at":"2018-10-03T15:20:18Z","updated_at":"2018-10-05T00:13:00Z","closed_at":"2018-10-04T23:45:36Z","author_association":"CONTRIBUTOR","body":"Setting\r\n```xml\r\n <entry key='logger.enable'>true</entry>\r\n```\r\nresults in the service **not** starting.\r\n\r\n```\r\nException in thread \"main\" java.lang.StackOverflowError\r\n\tat java.base/java.util.Locale.isUnicodeExtensionKey(Locale.java:2233)\r\n\tat java.base/java.util.Locale.getUnicodeLocaleType(Locale.java:1306)\r\n\tat java.base/sun.util.locale.provider.CalendarDataUtility.findRegionOverride(CalendarDataUtility.java:135)\r\n\tat java.base/java.text.DecimalFormatSymbols.initialize(DecimalFormatSymbols.java:619)\r\n\tat java.base/java.text.DecimalFormatSymbols.<init>(DecimalFormatSymbols.java:113)\r\n\tat java.base/sun.util.locale.provider.DecimalFormatSymbolsProviderImpl.getInstance(DecimalFormatSymbolsProviderImpl.java:85)\r\n\tat java.base/java.text.DecimalFormatSymbols.getInstance(DecimalFormatSymbols.java:180)\r\n\tat java.base/java.util.Formatter.getZero(Formatter.java:2435)\r\n\tat java.base/java.util.Formatter.<init>(Formatter.java:1954)\r\n\tat java.base/java.util.Formatter.<init>(Formatter.java:1976)\r\n\tat java.base/java.lang.String.format(String.java:2734)\r\n\tat org.traccar.helper.Log$LogFormatter.format(Log.java:147)\r\n\tat java.logging/java.util.logging.StreamHandler.publish(StreamHandler.java:199)\r\n\tat java.logging/java.util.logging.ConsoleHandler.publish(ConsoleHandler.java:95)\r\n\tat java.logging/java.util.logging.Logger.log(Logger.java:979)\r\n\tat java.logging/java.util.logging.Logger.doLog(Logger.java:1006)\r\n...\r\n\tat java.base/java.util.Formatter.format(Formatter.java:2607)\r\n\tat java.base/java.lang.String.format(String.java:2734)\r\n\tat org.traccar.helper.Log$LogFormatter.format(Log.java:147)\r\n\tat java.logging/java.util.logging.StreamHandler.publish(StreamHandler.java:199)\r\n\tat java.logging/java.util.logging.ConsoleHandler.publish(ConsoleHandler.java:95)\r\n\tat java.logging/java.util.logging.Logger.log(Logger.java:979)\r\n\tat java.logging/java.util.logging.Logger.doLog(Logger.java:1006)\r\n\tat java.logging/java.util.logging.Logger.log(Logger.java:1092)\r\n\tat java.logging/sun.util.logging.internal.LoggingProviderImpl$JULWrapper.log(LoggingProviderImpl.java:141)\r\n\tat java.base/sun.util.logging.PlatformLogger.config(PlatformLogger.java:433)\r\n\tat java.base/sun.util.locale.provider.LocaleServiceProviderPool.config(LocaleServiceProviderPool.java:126)\r\n\tat java.base/sun.util.locale.provider.LocaleServiceProviderPool.getLocalizedObjectImpl(LocaleServiceProviderPool.java:285)\r\n\tat java.base/sun.util.locale.provider.LocaleServiceProviderPool.getLocalizedObject(LocaleServiceProviderPool.java:262)\r\n\tat java.base/sun.util.locale.provider.CalendarDataUtility.retrieveFirstDayOfWeek(CalendarDataUtility.java:75)\r\n\tat java.base/java.util.Calendar.setWeekCountData(Calendar.java:3411)\r\n\tat java.base/java.util.Calendar.<init>(Calendar.java:1611)\r\n\tat java.base/java.util.GregorianCalendar.<init>(GregorianCalendar.java:738)\r\n\tat java.base/java.util.Calendar$Builder.build(Calendar.java:1493)\r\n\tat java.base/sun.util.locale.provider.CalendarProviderImpl.getInstance(CalendarProviderImpl.java:87)\r\n\tat java.base/java.util.Calendar.createCalendar(Calendar.java:1696)\r\n\tat java.base/java.util.Calendar.getInstance(Calendar.java:1660)\r\n\tat java.base/java.util.Formatter$FormatSpecifier.printDateTime(Formatter.java:2969)\r\n\tat java.base/java.util.Formatter$FormatSpecifier.print(Formatter.java:2883)\r\n\tat java.base/java.util.Formatter.format(Formatter.java:2677)\r\n\tat java.base/java.util.Formatter.format(Formatter.java:2607)\r\n\tat java.base/java.lang.String.format(String.java:2734)\r\n\tat org.traccar.helper.Log$LogFormatter.format(Log.java:147)\r\n\tat java.logging/java.util.logging.StreamHandler.publish(StreamHandler.java:199)\r\n\tat java.logging/java.util.logging.ConsoleHandler.publish(ConsoleHandler.java:95)\r\n\tat java.logging/java.util.logging.Logger.log(Logger.java:979)\r\n\tat java.logging/java.util.logging.Logger.doLog(Logger.java:1006)\r\n```\r\n"},"comment":{"url":"https://api.github.com/repos/traccar/traccar/issues/comments/427208268","html_url":"https://github.com/traccar/traccar/issues/4083#issuecomment-427208268","issue_url":"https://api.github.com/repos/traccar/traccar/issues/4083","id":427208268,"node_id":"MDEyOklzc3VlQ29tbWVudDQyNzIwODI2OA==","user":{"login":"tananaev","id":1161863,"node_id":"MDQ6VXNlcjExNjE4NjM=","avatar_url":"https://avatars3.githubusercontent.com/u/1161863?v=4","gravatar_id":"","url":"https://api.github.com/users/tananaev","html_url":"https://github.com/tananaev","followers_url":"https://api.github.com/users/tananaev/followers","following_url":"https://api.github.com/users/tananaev/following{/other_user}","gists_url":"https://api.github.com/users/tananaev/gists{/gist_id}","starred_url":"https://api.github.com/users/tananaev/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tananaev/subscriptions","organizations_url":"https://api.github.com/users/tananaev/orgs","repos_url":"https://api.github.com/users/tananaev/repos","events_url":"https://api.github.com/users/tananaev/events{/privacy}","received_events_url":"https://api.github.com/users/tananaev/received_events","type":"User","site_admin":false},"created_at":"2018-10-05T00:13:00Z","updated_at":"2018-10-05T00:13:00Z","author_association":"MEMBER","body":"Logging has been completely re-implemented recently: b10824bb5769c4abb93e3451673b88efdfb9d467."}} | {
"id": 4038949,
"name": "traccar/traccar",
"url": "https://api.github.com/repos/traccar/traccar"
} | {
"id": 1161863,
"login": "tananaev",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1161863?",
"url": "https://api.github.com/users/tananaev"
} | {
"id": 37892282,
"login": "traccar",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/37892282?",
"url": "https://api.github.com/orgs/traccar"
} | 2018-10-05T00:13:01 | 8371366586 | {"actor":{"display_login":"tananaev"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/traccar/traccar/issues/4093","repository_url":"https://api.github.com/repos/traccar/traccar","labels_url":"https://api.github.com/repos/traccar/traccar/issues/4093/labels{/name}","comments_url":"https://api.github.com/repos/traccar/traccar/issues/4093/comments","events_url":"https://api.github.com/repos/traccar/traccar/issues/4093/events","html_url":"https://github.com/traccar/traccar/pull/4093","id":367215956,"node_id":"MDExOlB1bGxSZXF1ZXN0MjIwNzA1Mjc0","number":4093,"title":"Fix and improve watch voice msg handling","user":{"login":"TheBrain8791","id":43881071,"node_id":"MDQ6VXNlcjQzODgxMDcx","avatar_url":"https://avatars0.githubusercontent.com/u/43881071?v=4","gravatar_id":"","url":"https://api.github.com/users/TheBrain8791","html_url":"https://github.com/TheBrain8791","followers_url":"https://api.github.com/users/TheBrain8791/followers","following_url":"https://api.github.com/users/TheBrain8791/following{/other_user}","gists_url":"https://api.github.com/users/TheBrain8791/gists{/gist_id}","starred_url":"https://api.github.com/users/TheBrain8791/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TheBrain8791/subscriptions","organizations_url":"https://api.github.com/users/TheBrain8791/orgs","repos_url":"https://api.github.com/users/TheBrain8791/repos","events_url":"https://api.github.com/users/TheBrain8791/events{/privacy}","received_events_url":"https://api.github.com/users/TheBrain8791/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2018-10-05T13:39:17Z","updated_at":"2018-10-22T09:53:00Z","closed_at":null,"author_association":"NONE","pull_request":{"url":"https://api.github.com/repos/traccar/traccar/pulls/4093","html_url":"https://github.com/traccar/traccar/pull/4093","diff_url":"https://github.com/traccar/traccar/pull/4093.diff","patch_url":"https://github.com/traccar/traccar/pull/4093.patch"},"body":"\r\n**fix:** \r\n\r\n\r\nThe cmd was not sent before when triggered from the web frontend if\r\n\"real\" amr data (taken from a file generated from a smartwatch) was\r\nentered to the \"Key_Data\" field within the webform, for some reasons:\r\n\r\nthe call (WatchProtocolEnecoder.java::191): \r\ncmdtoSend = formatCommand(channel, command, \"TK,\" +\r\ngetBinaryData(command));\r\n\r\ndirectly concats the binay data to the cmd content, which causes (with\r\nreal data) a handling problem within the class\r\nStringProtocolEncoder::formatCommand\r\nThe binary blob also can contain \"\\\" and \"$\" which cause problems \r\nwhen a string replacement methode is called.\r\n\r\nAccording to java doc 'quoteReplacement' should be used in that cases...\r\n\r\nAlso changed the direct content concating to using the \"key -\r\nreplacment conecept\" all other cmds use.\r\n\r\nAlso changed the return type of the encode methode to \"bytebuf\" because\r\nstrings cause problems on all non-ASCII data - e.g. as the binary blob\r\nof an amr file.\r\n\r\nFor the same reason, also the unit test of the watchencoder has been\r\nchanged from string to binary assert values and the voice msg test now\r\ncovers non-ascii char + char which need to be escaped.\r\n\r\n\r\nThis changes don't affact usual text cmds (which don't contain binary\r\ndata) - according to my tests but make the VOICE MSG cmd usable.\r\n\r\n**Improvement:** \r\n\r\nIntroduced a new cmd type (binary blob) for e.g. voice data.\r\n\r\nAlso added a way to specify a filename instead of forcing the user to\r\ncopy & paste unhandy audio data as hex encoded stream to the web form,\r\nbecause it should be easier to reference to a file (and read the binary\r\nblob from this file) than to extract this data manually.\r\n\r\nTo reference an amr - audio file, one needs to enter\r\n\"file://[rel.path]/[filename.amr]\" within the \"KEY_DATA\" field in the\r\nwebform.\r\nThe path of the file is relative to the one which is configured as \r\n\"media.path\" \r\n\r\ne.g. if media.path is set to \"/mypath\" and the audio file is\r\nstored in /mypath/foo/bar.amr then \"file://foo/bar.amr\" entered\r\nas KEY_DATA will trigger a file read.\r\n"},"comment":{"url":"https://api.github.com/repos/traccar/traccar/issues/comments/431790177","html_url":"https://github.com/traccar/traccar/pull/4093#issuecomment-431790177","issue_url":"https://api.github.com/repos/traccar/traccar/issues/4093","id":431790177,"node_id":"MDEyOklzc3VlQ29tbWVudDQzMTc5MDE3Nw==","user":{"login":"sonerVrs","id":35863378,"node_id":"MDQ6VXNlcjM1ODYzMzc4","avatar_url":"https://avatars3.githubusercontent.com/u/35863378?v=4","gravatar_id":"","url":"https://api.github.com/users/sonerVrs","html_url":"https://github.com/sonerVrs","followers_url":"https://api.github.com/users/sonerVrs/followers","following_url":"https://api.github.com/users/sonerVrs/following{/other_user}","gists_url":"https://api.github.com/users/sonerVrs/gists{/gist_id}","starred_url":"https://api.github.com/users/sonerVrs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sonerVrs/subscriptions","organizations_url":"https://api.github.com/users/sonerVrs/orgs","repos_url":"https://api.github.com/users/sonerVrs/repos","events_url":"https://api.github.com/users/sonerVrs/events{/privacy}","received_events_url":"https://api.github.com/users/sonerVrs/received_events","type":"User","site_admin":false},"created_at":"2018-10-22T09:53:00Z","updated_at":"2018-10-22T09:53:00Z","author_association":"NONE","body":"> **fix:**\r\n> \r\n> The cmd was not sent before when triggered from the web frontend if\r\n> \"real\" amr data (taken from a file generated from a smartwatch) was\r\n> entered to the \"Key_Data\" field within the webform, for some reasons:\r\n> \r\n> the call (WatchProtocolEnecoder.java::191):\r\n> cmdtoSend = formatCommand(channel, command, \"TK,\" +\r\n> getBinaryData(command));\r\n> \r\n> directly concats the binay data to the cmd content, which causes (with\r\n> real data) a handling problem within the class\r\n> StringProtocolEncoder::formatCommand\r\n> The binary blob also can contain \"\" and \"$\" which cause problems\r\n> when a string replacement methode is called.\r\n> \r\n> According to java doc 'quoteReplacement' should be used in that cases...\r\n> \r\n> Also changed the direct content concating to using the \"key -\r\n> replacment conecept\" all other cmds use.\r\n> \r\n> Also changed the return type of the encode methode to \"bytebuf\" because\r\n> strings cause problems on all non-ASCII data - e.g. as the binary blob\r\n> of an amr file.\r\n> \r\n> For the same reason, also the unit test of the watchencoder has been\r\n> changed from string to binary assert values and the voice msg test now\r\n> covers non-ascii char + char which need to be escaped.\r\n> \r\n> This changes don't affact usual text cmds (which don't contain binary\r\n> data) - according to my tests but make the VOICE MSG cmd usable.\r\n> \r\n> **Improvement:**\r\n> \r\n> Introduced a new cmd type (binary blob) for e.g. voice data.\r\n> \r\n> Also added a way to specify a filename instead of forcing the user to\r\n> copy & paste unhandy audio data as hex encoded stream to the web form,\r\n> because it should be easier to reference to a file (and read the binary\r\n> blob from this file) than to extract this data manually.\r\n> \r\n> To reference an amr - audio file, one needs to enter\r\n> \"file://[rel.path]/[filename.amr]\" within the \"KEY_DATA\" field in the\r\n> webform.\r\n> The path of the file is relative to the one which is configured as\r\n> \"media.path\"\r\n> \r\n> e.g. if media.path is set to \"/mypath\" and the audio file is\r\n> stored in /mypath/foo/bar.amr then \"file://foo/bar.amr\" entered\r\n> as KEY_DATA will trigger a file read.\r\n\r\nCan you please share an e-mail address to reach you? Thanks"}} | {
"id": 4038949,
"name": "traccar/traccar",
"url": "https://api.github.com/repos/traccar/traccar"
} | {
"id": 35863378,
"login": "sonerVrs",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/35863378?",
"url": "https://api.github.com/users/sonerVrs"
} | {
"id": 37892282,
"login": "traccar",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/37892282?",
"url": "https://api.github.com/orgs/traccar"
} | 2018-10-22T09:53:03 | 8457672085 | {"actor":{"display_login":"sonerVrs"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/nano-wallet-company/nano-wallet-desktop/issues/71","repository_url":"https://api.github.com/repos/nano-wallet-company/nano-wallet-desktop","labels_url":"https://api.github.com/repos/nano-wallet-company/nano-wallet-desktop/issues/71/labels{/name}","comments_url":"https://api.github.com/repos/nano-wallet-company/nano-wallet-desktop/issues/71/comments","events_url":"https://api.github.com/repos/nano-wallet-company/nano-wallet-desktop/issues/71/events","html_url":"https://github.com/nano-wallet-company/nano-wallet-desktop/pull/71","id":347638155,"node_id":"MDExOlB1bGxSZXF1ZXN0MjA2MjAzNjU3","number":71,"title":"Added modal before going to screen Create New Wallet","user":{"login":"formaldehid","id":7486173,"node_id":"MDQ6VXNlcjc0ODYxNzM=","avatar_url":"https://avatars1.githubusercontent.com/u/7486173?v=4","gravatar_id":"","url":"https://api.github.com/users/formaldehid","html_url":"https://github.com/formaldehid","followers_url":"https://api.github.com/users/formaldehid/followers","following_url":"https://api.github.com/users/formaldehid/following{/other_user}","gists_url":"https://api.github.com/users/formaldehid/gists{/gist_id}","starred_url":"https://api.github.com/users/formaldehid/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/formaldehid/subscriptions","organizations_url":"https://api.github.com/users/formaldehid/orgs","repos_url":"https://api.github.com/users/formaldehid/repos","events_url":"https://api.github.com/users/formaldehid/events{/privacy}","received_events_url":"https://api.github.com/users/formaldehid/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-08-04T18:17:05Z","updated_at":"2018-08-05T09:39:58Z","closed_at":null,"author_association":"NONE","pull_request":{"url":"https://api.github.com/repos/nano-wallet-company/nano-wallet-desktop/pulls/71","html_url":"https://github.com/nano-wallet-company/nano-wallet-desktop/pull/71","diff_url":"https://github.com/nano-wallet-company/nano-wallet-desktop/pull/71.diff","patch_url":"https://github.com/nano-wallet-company/nano-wallet-desktop/pull/71.patch"},"body":"<img width=\"1617\" alt=\"screen shot 2018-08-04 at 19 55 24\" src=\"https://user-images.githubusercontent.com/7486173/43679291-2298fdec-9823-11e8-81c8-7b0ab70fd1f4.png\">\r\n\r\nRegarding to issue 38: https://github.com/nano-wallet-company/nano-wallet-desktop/issues/38\r\n\r\nTranslations are done with Google Translate so it needs to be checked"},"comment":{"url":"https://api.github.com/repos/nano-wallet-company/nano-wallet-desktop/issues/comments/410507972","html_url":"https://github.com/nano-wallet-company/nano-wallet-desktop/pull/71#issuecomment-410507972","issue_url":"https://api.github.com/repos/nano-wallet-company/nano-wallet-desktop/issues/71","id":410507972,"node_id":"MDEyOklzc3VlQ29tbWVudDQxMDUwNzk3Mg==","user":{"login":"formaldehid","id":7486173,"node_id":"MDQ6VXNlcjc0ODYxNzM=","avatar_url":"https://avatars1.githubusercontent.com/u/7486173?v=4","gravatar_id":"","url":"https://api.github.com/users/formaldehid","html_url":"https://github.com/formaldehid","followers_url":"https://api.github.com/users/formaldehid/followers","following_url":"https://api.github.com/users/formaldehid/following{/other_user}","gists_url":"https://api.github.com/users/formaldehid/gists{/gist_id}","starred_url":"https://api.github.com/users/formaldehid/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/formaldehid/subscriptions","organizations_url":"https://api.github.com/users/formaldehid/orgs","repos_url":"https://api.github.com/users/formaldehid/repos","events_url":"https://api.github.com/users/formaldehid/events{/privacy}","received_events_url":"https://api.github.com/users/formaldehid/received_events","type":"User","site_admin":false},"created_at":"2018-08-05T09:39:58Z","updated_at":"2018-08-05T09:39:58Z","author_association":"NONE","body":"Thank you for comments @kennedybaird . I saw that you did a lot of contributions before and some are waiting for merge, so I did't want to do something that you did before. It seemed I failed because there is no system for task assignment or something similar.\r\n\r\nRegarding centered modal I want to be consistent with logout modal, so I didn't use `position='center'`.\r\n\r\nRegarding future work I would like suggest that @devinus would be acting like a team lead and do plan for work, write tasks and then assign those tasks among us, who wants to participate. I would be great also if we could have a short regular meetings, for design and architecture purposes. With this workflow work would be smoother, quicker and most important we won't do something without purpose.\r\n\r\nWhat do you think about organising public contributions in more teamwork? @kennedybaird @devinus "}} | {
"id": 116886639,
"name": "nano-wallet-company/nano-wallet-desktop",
"url": "https://api.github.com/repos/nano-wallet-company/nano-wallet-desktop"
} | {
"id": 7486173,
"login": "formaldehid",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/7486173?",
"url": "https://api.github.com/users/formaldehid"
} | {
"id": 37916244,
"login": "nano-wallet-company",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/37916244?",
"url": "https://api.github.com/orgs/nano-wallet-company"
} | 2018-08-05T09:39:59 | 8067581630 | {"actor":{"display_login":"formaldehid"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/slic3r/Slic3r/issues/4553","repository_url":"https://api.github.com/repos/slic3r/Slic3r","labels_url":"https://api.github.com/repos/slic3r/Slic3r/issues/4553/labels{/name}","comments_url":"https://api.github.com/repos/slic3r/Slic3r/issues/4553/comments","events_url":"https://api.github.com/repos/slic3r/Slic3r/issues/4553/events","html_url":"https://github.com/slic3r/Slic3r/pull/4553","id":365270253,"node_id":"MDExOlB1bGxSZXF1ZXN0MjE5MjMzMjcx","number":4553,"title":"ironing process","user":{"login":"supermerill","id":6536403,"node_id":"MDQ6VXNlcjY1MzY0MDM=","avatar_url":"https://avatars1.githubusercontent.com/u/6536403?v=4","gravatar_id":"","url":"https://api.github.com/users/supermerill","html_url":"https://github.com/supermerill","followers_url":"https://api.github.com/users/supermerill/followers","following_url":"https://api.github.com/users/supermerill/following{/other_user}","gists_url":"https://api.github.com/users/supermerill/gists{/gist_id}","starred_url":"https://api.github.com/users/supermerill/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/supermerill/subscriptions","organizations_url":"https://api.github.com/users/supermerill/orgs","repos_url":"https://api.github.com/users/supermerill/repos","events_url":"https://api.github.com/users/supermerill/events{/privacy}","received_events_url":"https://api.github.com/users/supermerill/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2018-09-30T23:00:10Z","updated_at":"2018-10-18T15:30:50Z","closed_at":null,"author_association":"CONTRIBUTOR","pull_request":{"url":"https://api.github.com/repos/slic3r/Slic3r/pulls/4553","html_url":"https://github.com/slic3r/Slic3r/pull/4553","diff_url":"https://github.com/slic3r/Slic3r/pull/4553.diff","patch_url":"https://github.com/slic3r/Slic3r/pull/4553.patch"},"body":"Hi\r\nI finally merged my code into this branch.\r\nIt's a bit barebone, but with that merged, it will be easier to merge other things.\r\n\r\nhow to use: https://github.com/supermerill/Slic3r/wiki/ironing\r\n\r\nit create a new top process, and a new option in advanced-> flow\r\n\r\nmaybe it\"s usefull to put some of the most important information (having the over-bridge flow at >1) into the tooltip of the ironing process.\r\n\r\nSome code inside smoothinfill.cpp is unused, but i will/should use it for the one of the next pr. You can simplify it if you want.\r\n\r\nnote: the ExtrusionEntityCollection::reverse() that didn't check if no_sort is true made me loose a day to find the bug. ><"},"comment":{"url":"https://api.github.com/repos/slic3r/Slic3r/issues/comments/431054806","html_url":"https://github.com/slic3r/Slic3r/pull/4553#issuecomment-431054806","issue_url":"https://api.github.com/repos/slic3r/Slic3r/issues/4553","id":431054806,"node_id":"MDEyOklzc3VlQ29tbWVudDQzMTA1NDgwNg==","user":{"login":"supermerill","id":6536403,"node_id":"MDQ6VXNlcjY1MzY0MDM=","avatar_url":"https://avatars1.githubusercontent.com/u/6536403?v=4","gravatar_id":"","url":"https://api.github.com/users/supermerill","html_url":"https://github.com/supermerill","followers_url":"https://api.github.com/users/supermerill/followers","following_url":"https://api.github.com/users/supermerill/following{/other_user}","gists_url":"https://api.github.com/users/supermerill/gists{/gist_id}","starred_url":"https://api.github.com/users/supermerill/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/supermerill/subscriptions","organizations_url":"https://api.github.com/users/supermerill/orgs","repos_url":"https://api.github.com/users/supermerill/repos","events_url":"https://api.github.com/users/supermerill/events{/privacy}","received_events_url":"https://api.github.com/users/supermerill/received_events","type":"User","site_admin":false},"created_at":"2018-10-18T15:30:50Z","updated_at":"2018-10-18T15:30:50Z","author_association":"CONTRIBUTOR","body":"Like that?\r\nslic3r/Slic3r-Manual#56"}} | {
"id": 2309696,
"name": "slic3r/Slic3r",
"url": "https://api.github.com/repos/slic3r/Slic3r"
} | {
"id": 6536403,
"login": "supermerill",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6536403?",
"url": "https://api.github.com/users/supermerill"
} | {
"id": 38015467,
"login": "slic3r",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/38015467?",
"url": "https://api.github.com/orgs/slic3r"
} | 2018-10-18T15:30:51 | 8443406312 | {"actor":{"display_login":"supermerill"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/Drakkar-Software/OctoBot/issues/416","repository_url":"https://api.github.com/repos/Drakkar-Software/OctoBot","labels_url":"https://api.github.com/repos/Drakkar-Software/OctoBot/issues/416/labels{/name}","comments_url":"https://api.github.com/repos/Drakkar-Software/OctoBot/issues/416/comments","events_url":"https://api.github.com/repos/Drakkar-Software/OctoBot/issues/416/events","html_url":"https://github.com/Drakkar-Software/OctoBot/issues/416","id":366133526,"node_id":"MDU6SXNzdWUzNjYxMzM1MjY=","number":416,"title":"TradesManager dictionary changed size during iteration","user":{"login":"mrgreedy911","id":43780710,"node_id":"MDQ6VXNlcjQzNzgwNzEw","avatar_url":"https://avatars0.githubusercontent.com/u/43780710?v=4","gravatar_id":"","url":"https://api.github.com/users/mrgreedy911","html_url":"https://github.com/mrgreedy911","followers_url":"https://api.github.com/users/mrgreedy911/followers","following_url":"https://api.github.com/users/mrgreedy911/following{/other_user}","gists_url":"https://api.github.com/users/mrgreedy911/gists{/gist_id}","starred_url":"https://api.github.com/users/mrgreedy911/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mrgreedy911/subscriptions","organizations_url":"https://api.github.com/users/mrgreedy911/orgs","repos_url":"https://api.github.com/users/mrgreedy911/repos","events_url":"https://api.github.com/users/mrgreedy911/events{/privacy}","received_events_url":"https://api.github.com/users/mrgreedy911/received_events","type":"User","site_admin":false},"labels":[{"id":968862096,"node_id":"MDU6TGFiZWw5Njg4NjIwOTY=","url":"https://api.github.com/repos/Drakkar-Software/OctoBot/labels/user%20issue","name":"user issue","color":"f7b77b","default":false}],"state":"open","locked":false,"assignee":{"login":"Herklos","id":10454670,"node_id":"MDQ6VXNlcjEwNDU0Njcw","avatar_url":"https://avatars2.githubusercontent.com/u/10454670?v=4","gravatar_id":"","url":"https://api.github.com/users/Herklos","html_url":"https://github.com/Herklos","followers_url":"https://api.github.com/users/Herklos/followers","following_url":"https://api.github.com/users/Herklos/following{/other_user}","gists_url":"https://api.github.com/users/Herklos/gists{/gist_id}","starred_url":"https://api.github.com/users/Herklos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Herklos/subscriptions","organizations_url":"https://api.github.com/users/Herklos/orgs","repos_url":"https://api.github.com/users/Herklos/repos","events_url":"https://api.github.com/users/Herklos/events{/privacy}","received_events_url":"https://api.github.com/users/Herklos/received_events","type":"User","site_admin":false},"assignees":[{"login":"Herklos","id":10454670,"node_id":"MDQ6VXNlcjEwNDU0Njcw","avatar_url":"https://avatars2.githubusercontent.com/u/10454670?v=4","gravatar_id":"","url":"https://api.github.com/users/Herklos","html_url":"https://github.com/Herklos","followers_url":"https://api.github.com/users/Herklos/followers","following_url":"https://api.github.com/users/Herklos/following{/other_user}","gists_url":"https://api.github.com/users/Herklos/gists{/gist_id}","starred_url":"https://api.github.com/users/Herklos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Herklos/subscriptions","organizations_url":"https://api.github.com/users/Herklos/orgs","repos_url":"https://api.github.com/users/Herklos/repos","events_url":"https://api.github.com/users/Herklos/events{/privacy}","received_events_url":"https://api.github.com/users/Herklos/received_events","type":"User","site_admin":false}],"milestone":null,"comments":3,"created_at":"2018-10-03T00:52:56Z","updated_at":"2018-10-03T18:02:43Z","closed_at":null,"author_association":"NONE","body":"## Step 2: Describe your environment\r\n * OS : [Windows, Ubuntu, Debian, Raspbian...] \r\nWindows 10\r\n * Python Version: _____ (`python -V`)\r\n3.6\r\n * In case you are not using a binary version:\r\n * Branch: Master | Dev\r\n * Last Commit ID: _____ (`git log --format=\"%H\" -n 1`)\r\n \r\n## Step 3: Describe the problem:\r\n**Describe the bug**\r\nA clear and concise description of what the bug is.\r\nTradesManager dictionary changed size during iteration\r\nGot that error message in my logs.\r\n\r\nAny clues?\r\n\r\n`2018-10-03 02:42:33 DEBUG TA THREAD MANAGER - OMG/BTC - bittrex - TimeFrames.ONE_HOUR logging_util.py:34 ** Notified by SymbolTimeFramesDataUpdaterThread **\r\n2018-10-03 02:42:33 ERROR TradesManager logging_util.py:46 dictionary changed size during iteration\r\n2018-10-03 02:42:33 DEBUG TA THREAD MANAGER - ETC/BTC - bittrex - TimeFrames.ONE_HOUR logging_util.py:34 ** Notified by SymbolTimeFramesDataUpdaterThread **`"},"comment":{"url":"https://api.github.com/repos/Drakkar-Software/OctoBot/issues/comments/426736865","html_url":"https://github.com/Drakkar-Software/OctoBot/issues/416#issuecomment-426736865","issue_url":"https://api.github.com/repos/Drakkar-Software/OctoBot/issues/416","id":426736865,"node_id":"MDEyOklzc3VlQ29tbWVudDQyNjczNjg2NQ==","user":{"login":"Herklos","id":10454670,"node_id":"MDQ6VXNlcjEwNDU0Njcw","avatar_url":"https://avatars2.githubusercontent.com/u/10454670?v=4","gravatar_id":"","url":"https://api.github.com/users/Herklos","html_url":"https://github.com/Herklos","followers_url":"https://api.github.com/users/Herklos/followers","following_url":"https://api.github.com/users/Herklos/following{/other_user}","gists_url":"https://api.github.com/users/Herklos/gists{/gist_id}","starred_url":"https://api.github.com/users/Herklos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Herklos/subscriptions","organizations_url":"https://api.github.com/users/Herklos/orgs","repos_url":"https://api.github.com/users/Herklos/repos","events_url":"https://api.github.com/users/Herklos/events{/privacy}","received_events_url":"https://api.github.com/users/Herklos/received_events","type":"User","site_admin":false},"created_at":"2018-10-03T18:02:43Z","updated_at":"2018-10-03T18:02:43Z","author_association":"COLLABORATOR","body":"The best way to test your settings is to use the [backtesting feature](https://github.com/Drakkar-Software/OctoBot/wiki/Backtesting-and-strategy-optimization)."}} | {
"id": 122682362,
"name": "Drakkar-Software/OctoBot",
"url": "https://api.github.com/repos/Drakkar-Software/OctoBot"
} | {
"id": 10454670,
"login": "Herklos",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/10454670?",
"url": "https://api.github.com/users/Herklos"
} | {
"id": 38042178,
"login": "Drakkar-Software",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/38042178?",
"url": "https://api.github.com/orgs/Drakkar-Software"
} | 2018-10-03T18:02:43 | 8362853674 | {"actor":{"display_login":"Herklos"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/pions/webrtc/issues/102","repository_url":"https://api.github.com/repos/pions/webrtc","labels_url":"https://api.github.com/repos/pions/webrtc/issues/102/labels{/name}","comments_url":"https://api.github.com/repos/pions/webrtc/issues/102/comments","events_url":"https://api.github.com/repos/pions/webrtc/issues/102/events","html_url":"https://github.com/pions/webrtc/issues/102","id":356717850,"node_id":"MDU6SXNzdWUzNTY3MTc4NTA=","number":102,"title":"How to replace gstreamer from the examples gstreamer-receive and gstreamer-send","user":{"login":"joeky888","id":6928939,"node_id":"MDQ6VXNlcjY5Mjg5Mzk=","avatar_url":"https://avatars1.githubusercontent.com/u/6928939?v=4","gravatar_id":"","url":"https://api.github.com/users/joeky888","html_url":"https://github.com/joeky888","followers_url":"https://api.github.com/users/joeky888/followers","following_url":"https://api.github.com/users/joeky888/following{/other_user}","gists_url":"https://api.github.com/users/joeky888/gists{/gist_id}","starred_url":"https://api.github.com/users/joeky888/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/joeky888/subscriptions","organizations_url":"https://api.github.com/users/joeky888/orgs","repos_url":"https://api.github.com/users/joeky888/repos","events_url":"https://api.github.com/users/joeky888/events{/privacy}","received_events_url":"https://api.github.com/users/joeky888/received_events","type":"User","site_admin":false},"labels":[{"id":1046272098,"node_id":"MDU6TGFiZWwxMDQ2MjcyMDk4","url":"https://api.github.com/repos/pions/webrtc/labels/triaged","name":"triaged","color":"5319e7","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":16,"created_at":"2018-09-04T09:06:29Z","updated_at":"2018-09-06T00:44:22Z","closed_at":null,"author_association":"NONE","body":"How could I replace gstreamer with something more lightweight c lib \r\n\r\nor pure go lib if I only want to work with audio (non-GUI app)?\r\n\r\nAny ideas?\r\n\r\nThanks in advance :)"},"comment":{"url":"https://api.github.com/repos/pions/webrtc/issues/comments/418926325","html_url":"https://github.com/pions/webrtc/issues/102#issuecomment-418926325","issue_url":"https://api.github.com/repos/pions/webrtc/issues/102","id":418926325,"node_id":"MDEyOklzc3VlQ29tbWVudDQxODkyNjMyNQ==","user":{"login":"joeky888","id":6928939,"node_id":"MDQ6VXNlcjY5Mjg5Mzk=","avatar_url":"https://avatars1.githubusercontent.com/u/6928939?v=4","gravatar_id":"","url":"https://api.github.com/users/joeky888","html_url":"https://github.com/joeky888","followers_url":"https://api.github.com/users/joeky888/followers","following_url":"https://api.github.com/users/joeky888/following{/other_user}","gists_url":"https://api.github.com/users/joeky888/gists{/gist_id}","starred_url":"https://api.github.com/users/joeky888/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/joeky888/subscriptions","organizations_url":"https://api.github.com/users/joeky888/orgs","repos_url":"https://api.github.com/users/joeky888/repos","events_url":"https://api.github.com/users/joeky888/events{/privacy}","received_events_url":"https://api.github.com/users/joeky888/received_events","type":"User","site_admin":false},"created_at":"2018-09-06T00:44:22Z","updated_at":"2018-09-06T00:44:22Z","author_association":"NONE","body":"> mind if I close the issue?\r\n\r\nWait, I didn't add the recording code there. I'll make it as soon as possible.\r\n\r\n > I would love to have your /examples in the repo.\r\n\r\nSure, just do it. But it only works on Linux. I would like to rewrite it using ether [oto](https://github.com/hajimehoshi/oto) or openal."}} | {
"id": 134012064,
"name": "pions/webrtc",
"url": "https://api.github.com/repos/pions/webrtc"
} | {
"id": 6928939,
"login": "joeky888",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6928939?",
"url": "https://api.github.com/users/joeky888"
} | {
"id": 38192892,
"login": "pions",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/38192892?",
"url": "https://api.github.com/orgs/pions"
} | 2018-09-06T00:44:22 | 8221229464 | {"actor":{"display_login":"joeky888"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/operator-framework/operator-sdk/issues/844","repository_url":"https://api.github.com/repos/operator-framework/operator-sdk","labels_url":"https://api.github.com/repos/operator-framework/operator-sdk/issues/844/labels{/name}","comments_url":"https://api.github.com/repos/operator-framework/operator-sdk/issues/844/comments","events_url":"https://api.github.com/repos/operator-framework/operator-sdk/issues/844/events","html_url":"https://github.com/operator-framework/operator-sdk/pull/844","id":390478804,"node_id":"MDExOlB1bGxSZXF1ZXN0MjM4MjM2MjU1","number":844,"title":"Break up and add steps to release documentation","user":{"login":"estroz","id":12985147,"node_id":"MDQ6VXNlcjEyOTg1MTQ3","avatar_url":"https://avatars2.githubusercontent.com/u/12985147?v=4","gravatar_id":"","url":"https://api.github.com/users/estroz","html_url":"https://github.com/estroz","followers_url":"https://api.github.com/users/estroz/followers","following_url":"https://api.github.com/users/estroz/following{/other_user}","gists_url":"https://api.github.com/users/estroz/gists{/gist_id}","starred_url":"https://api.github.com/users/estroz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/estroz/subscriptions","organizations_url":"https://api.github.com/users/estroz/orgs","repos_url":"https://api.github.com/users/estroz/repos","events_url":"https://api.github.com/users/estroz/events{/privacy}","received_events_url":"https://api.github.com/users/estroz/received_events","type":"User","site_admin":false},"labels":[{"id":955695008,"node_id":"MDU6TGFiZWw5NTU2OTUwMDg=","url":"https://api.github.com/repos/operator-framework/operator-sdk/labels/docs","name":"docs","color":"0052cc","default":false},{"id":1062563181,"node_id":"MDU6TGFiZWwxMDYyNTYzMTgx","url":"https://api.github.com/repos/operator-framework/operator-sdk/labels/size/L","name":"size/L","color":"ededed","default":false}],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2018-12-13T01:22:58Z","updated_at":"2018-12-14T07:18:10Z","closed_at":"2018-12-14T07:18:10Z","author_association":"MEMBER","pull_request":{"url":"https://api.github.com/repos/operator-framework/operator-sdk/pulls/844","html_url":"https://github.com/operator-framework/operator-sdk/pull/844","diff_url":"https://github.com/operator-framework/operator-sdk/pull/844.diff","patch_url":"https://github.com/operator-framework/operator-sdk/pull/844.patch"},"body":"**Description of the change:** break up `doc/release-versioning.md` into `doc/release.md` and `doc/versioning.md`, and add release steps to `release.md`.\r\n\r\n**Motivation for the change:** having steps to reference would be nice for newbs like me.\r\n"},"comment":{"url":"https://api.github.com/repos/operator-framework/operator-sdk/issues/comments/447237543","html_url":"https://github.com/operator-framework/operator-sdk/pull/844#issuecomment-447237543","issue_url":"https://api.github.com/repos/operator-framework/operator-sdk/issues/844","id":447237543,"node_id":"MDEyOklzc3VlQ29tbWVudDQ0NzIzNzU0Mw==","user":{"login":"LiliC","id":6232346,"node_id":"MDQ6VXNlcjYyMzIzNDY=","avatar_url":"https://avatars2.githubusercontent.com/u/6232346?v=4","gravatar_id":"","url":"https://api.github.com/users/LiliC","html_url":"https://github.com/LiliC","followers_url":"https://api.github.com/users/LiliC/followers","following_url":"https://api.github.com/users/LiliC/following{/other_user}","gists_url":"https://api.github.com/users/LiliC/gists{/gist_id}","starred_url":"https://api.github.com/users/LiliC/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/LiliC/subscriptions","organizations_url":"https://api.github.com/users/LiliC/orgs","repos_url":"https://api.github.com/users/LiliC/repos","events_url":"https://api.github.com/users/LiliC/events{/privacy}","received_events_url":"https://api.github.com/users/LiliC/received_events","type":"User","site_admin":false},"created_at":"2018-12-14T07:18:10Z","updated_at":"2018-12-14T07:18:10Z","author_association":"MEMBER","body":"> I think we should move the release doc to doc/dev since it's intended for developers for the sdk, not end users.\r\n\r\n"}} | {
"id": 120650407,
"name": "operator-framework/operator-sdk",
"url": "https://api.github.com/repos/operator-framework/operator-sdk"
} | {
"id": 6232346,
"login": "LiliC",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6232346?",
"url": "https://api.github.com/users/LiliC"
} | {
"id": 38202270,
"login": "operator-framework",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/38202270?",
"url": "https://api.github.com/orgs/operator-framework"
} | 2018-12-14T07:18:10 | 8753171892 | {"actor":{"display_login":"LiliC"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/1Password/scim-examples/issues/17","repository_url":"https://api.github.com/repos/1Password/scim-examples","labels_url":"https://api.github.com/repos/1Password/scim-examples/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/1Password/scim-examples/issues/17/comments","events_url":"https://api.github.com/repos/1Password/scim-examples/issues/17/events","html_url":"https://github.com/1Password/scim-examples/issues/17","id":369153150,"node_id":"MDU6SXNzdWUzNjkxNTMxNTA=","number":17,"title":"AWS-Terraform implementation unsuitable for Mac","user":{"login":"Murty0","id":29863833,"node_id":"MDQ6VXNlcjI5ODYzODMz","avatar_url":"https://avatars2.githubusercontent.com/u/29863833?v=4","gravatar_id":"","url":"https://api.github.com/users/Murty0","html_url":"https://github.com/Murty0","followers_url":"https://api.github.com/users/Murty0/followers","following_url":"https://api.github.com/users/Murty0/following{/other_user}","gists_url":"https://api.github.com/users/Murty0/gists{/gist_id}","starred_url":"https://api.github.com/users/Murty0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Murty0/subscriptions","organizations_url":"https://api.github.com/users/Murty0/orgs","repos_url":"https://api.github.com/users/Murty0/repos","events_url":"https://api.github.com/users/Murty0/events{/privacy}","received_events_url":"https://api.github.com/users/Murty0/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":{"login":"ag-andrey05","id":31858977,"node_id":"MDQ6VXNlcjMxODU4OTc3","avatar_url":"https://avatars1.githubusercontent.com/u/31858977?v=4","gravatar_id":"","url":"https://api.github.com/users/ag-andrey05","html_url":"https://github.com/ag-andrey05","followers_url":"https://api.github.com/users/ag-andrey05/followers","following_url":"https://api.github.com/users/ag-andrey05/following{/other_user}","gists_url":"https://api.github.com/users/ag-andrey05/gists{/gist_id}","starred_url":"https://api.github.com/users/ag-andrey05/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ag-andrey05/subscriptions","organizations_url":"https://api.github.com/users/ag-andrey05/orgs","repos_url":"https://api.github.com/users/ag-andrey05/repos","events_url":"https://api.github.com/users/ag-andrey05/events{/privacy}","received_events_url":"https://api.github.com/users/ag-andrey05/received_events","type":"User","site_admin":false},"assignees":[{"login":"ag-andrey05","id":31858977,"node_id":"MDQ6VXNlcjMxODU4OTc3","avatar_url":"https://avatars1.githubusercontent.com/u/31858977?v=4","gravatar_id":"","url":"https://api.github.com/users/ag-andrey05","html_url":"https://github.com/ag-andrey05","followers_url":"https://api.github.com/users/ag-andrey05/followers","following_url":"https://api.github.com/users/ag-andrey05/following{/other_user}","gists_url":"https://api.github.com/users/ag-andrey05/gists{/gist_id}","starred_url":"https://api.github.com/users/ag-andrey05/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ag-andrey05/subscriptions","organizations_url":"https://api.github.com/users/ag-andrey05/orgs","repos_url":"https://api.github.com/users/ag-andrey05/repos","events_url":"https://api.github.com/users/ag-andrey05/events{/privacy}","received_events_url":"https://api.github.com/users/ag-andrey05/received_events","type":"User","site_admin":false}],"milestone":null,"comments":17,"created_at":"2018-10-11T14:37:32Z","updated_at":"2018-10-12T15:20:06Z","closed_at":null,"author_association":"NONE","body":"I want to create and deploy a SCIM bridge between 1Password and Okta.\r\n\r\nI would like to use AWS and Terraform for this purpose, but your scim-example for this is Linux specific. \r\n\r\nCan you please provide an example of this which would be suitable for creating and deploying a SCIM bridge using Mac. "},"comment":{"url":"https://api.github.com/repos/1Password/scim-examples/issues/comments/429362396","html_url":"https://github.com/1Password/scim-examples/issues/17#issuecomment-429362396","issue_url":"https://api.github.com/repos/1Password/scim-examples/issues/17","id":429362396,"node_id":"MDEyOklzc3VlQ29tbWVudDQyOTM2MjM5Ng==","user":{"login":"ag-andrey05","id":31858977,"node_id":"MDQ6VXNlcjMxODU4OTc3","avatar_url":"https://avatars1.githubusercontent.com/u/31858977?v=4","gravatar_id":"","url":"https://api.github.com/users/ag-andrey05","html_url":"https://github.com/ag-andrey05","followers_url":"https://api.github.com/users/ag-andrey05/followers","following_url":"https://api.github.com/users/ag-andrey05/following{/other_user}","gists_url":"https://api.github.com/users/ag-andrey05/gists{/gist_id}","starred_url":"https://api.github.com/users/ag-andrey05/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ag-andrey05/subscriptions","organizations_url":"https://api.github.com/users/ag-andrey05/orgs","repos_url":"https://api.github.com/users/ag-andrey05/repos","events_url":"https://api.github.com/users/ag-andrey05/events{/privacy}","received_events_url":"https://api.github.com/users/ag-andrey05/received_events","type":"User","site_admin":false},"created_at":"2018-10-12T15:20:06Z","updated_at":"2018-10-12T15:20:06Z","author_association":"CONTRIBUTOR","body":"@Murty0, thank you very much for the feedback we'll use it to improve our documentation."}} | {
"id": 129965578,
"name": "1Password/scim-examples",
"url": "https://api.github.com/repos/1Password/scim-examples"
} | {
"id": 31858977,
"login": "ag-andrey05",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/31858977?",
"url": "https://api.github.com/users/ag-andrey05"
} | {
"id": 38230737,
"login": "1Password",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/38230737?",
"url": "https://api.github.com/orgs/1Password"
} | 2018-10-12T15:20:06 | 8411971428 | {"actor":{"display_login":"ag-andrey05"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/USKPA-dev/uskpa/issues/145","repository_url":"https://api.github.com/repos/USKPA-dev/uskpa","labels_url":"https://api.github.com/repos/USKPA-dev/uskpa/issues/145/labels{/name}","comments_url":"https://api.github.com/repos/USKPA-dev/uskpa/issues/145/comments","events_url":"https://api.github.com/repos/USKPA-dev/uskpa/issues/145/events","html_url":"https://github.com/USKPA-dev/uskpa/issues/145","id":325785203,"number":145,"title":"Production release","user":{"login":"Jkrzy","id":3485564,"avatar_url":"https://avatars2.githubusercontent.com/u/3485564?v=4","gravatar_id":"","url":"https://api.github.com/users/Jkrzy","html_url":"https://github.com/Jkrzy","followers_url":"https://api.github.com/users/Jkrzy/followers","following_url":"https://api.github.com/users/Jkrzy/following{/other_user}","gists_url":"https://api.github.com/users/Jkrzy/gists{/gist_id}","starred_url":"https://api.github.com/users/Jkrzy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Jkrzy/subscriptions","organizations_url":"https://api.github.com/users/Jkrzy/orgs","repos_url":"https://api.github.com/users/Jkrzy/repos","events_url":"https://api.github.com/users/Jkrzy/events{/privacy}","received_events_url":"https://api.github.com/users/Jkrzy/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2018-05-23T16:34:10Z","updated_at":"2018-05-25T18:57:43Z","closed_at":null,"author_association":"CONTRIBUTOR","body":"# Tracking required actions for stand-up of production instance.\r\n\r\n## Pre-release\r\n\r\nCan be performed any time ahead of release.\r\n\r\nHeroku:\r\n- [x] Create production app\r\n- [x] Provision Hobby dyno and Postgres Standard 0 database\r\n- [x] Link to github repository for automated deploys from *master*\r\n- [ ] Deploy application per https://github.com/USKPA-dev/uskpa/blob/master/docs/deploy.md\r\n\r\n*A few days before go live*\r\n- [x] @porta-antiporta Send email to users communicating schedule and expectations for go live\r\n- [ ] @porta-antiporta Configure *Country of Origin* *Void Reasons* in production site\r\n\r\n## Release\r\n\r\n*Day of go live*\r\n9:30 AM \r\n- [ ] @porta-antiporta Send email to users 1 hr before go live confirming site will go down\r\n \r\n10:30 AM \r\n- [ ] Solomon to disable site or disable all logins to uskpa.org (so data cannot be changed)\r\n- [ ] Solomon to generate .csv dump of legacy uskpa.org site and send files to @Jkrzy \r\n- [ ] Solomon to redirect `uskpa.org` to new site\r\n - [ ] Configure domain with production app -- https://devcenter.heroku.com/articles/custom-domains\r\n- [ ] @Jkrzy to run database migration script for only **initial data** and **licensees** and let @porta-antiporta know when it is done\r\n- [ ] @porta-antiporta to create licensee and auditor accounts and let Solomon know when complete\r\n- [ ] Solomon to double check accounts of licensees and let @Jkrzy know when it checks out\r\n- [ ] @Jkrzy to run database migration script for **certificates** and let Solomon and @porta-antiporta know when it is done\r\n- [ ] @jkrzy Solomon @porta-antiporta perform spot check of new site\r\n\r\n~12:00 PM\r\n- [ ] @porta-antiporta to send email to licensees informing them the switch has been completed\r\n\r\n*Revert*\r\nShould any critical issues arise during the window that cannot be immediately resolved\r\n- [ ] Solomon to re-enable legacy uskpa.org site\r\n- [ ] Solomon to flip uskpa.org to point back to legacy site\r\n- [ ] @porta-antiporta send out email informing licensees/users/stakeholders\r\n\r\n\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/USKPA-dev/uskpa/issues/comments/392150469","html_url":"https://github.com/USKPA-dev/uskpa/issues/145#issuecomment-392150469","issue_url":"https://api.github.com/repos/USKPA-dev/uskpa/issues/145","id":392150469,"user":{"login":"porta-antiporta","id":16668007,"avatar_url":"https://avatars0.githubusercontent.com/u/16668007?v=4","gravatar_id":"","url":"https://api.github.com/users/porta-antiporta","html_url":"https://github.com/porta-antiporta","followers_url":"https://api.github.com/users/porta-antiporta/followers","following_url":"https://api.github.com/users/porta-antiporta/following{/other_user}","gists_url":"https://api.github.com/users/porta-antiporta/gists{/gist_id}","starred_url":"https://api.github.com/users/porta-antiporta/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/porta-antiporta/subscriptions","organizations_url":"https://api.github.com/users/porta-antiporta/orgs","repos_url":"https://api.github.com/users/porta-antiporta/repos","events_url":"https://api.github.com/users/porta-antiporta/events{/privacy}","received_events_url":"https://api.github.com/users/porta-antiporta/received_events","type":"User","site_admin":false},"created_at":"2018-05-25T18:57:43Z","updated_at":"2018-05-25T18:57:43Z","author_association":"CONTRIBUTOR","body":"@Jkrzy pls take a peek and see if there's anything that seems off here."}} | {
"id": 126876234,
"name": "USKPA-dev/uskpa",
"url": "https://api.github.com/repos/USKPA-dev/uskpa"
} | {
"id": 16668007,
"login": "porta-antiporta",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/16668007?",
"url": "https://api.github.com/users/porta-antiporta"
} | {
"id": 38264378,
"login": "USKPA-dev",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/38264378?",
"url": "https://api.github.com/orgs/USKPA-dev"
} | 2018-05-25T18:57:43 | 7731617001 | {"actor":{"display_login":"porta-antiporta"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/SWPP/ttrs-backend/issues/38","repository_url":"https://api.github.com/repos/SWPP/ttrs-backend","labels_url":"https://api.github.com/repos/SWPP/ttrs-backend/issues/38/labels{/name}","comments_url":"https://api.github.com/repos/SWPP/ttrs-backend/issues/38/comments","events_url":"https://api.github.com/repos/SWPP/ttrs-backend/issues/38/events","html_url":"https://github.com/SWPP/ttrs-backend/issues/38","id":321479642,"number":38,"title":"name 'tid' is not defined!!!","user":{"login":"holenet","id":24453019,"avatar_url":"https://avatars3.githubusercontent.com/u/24453019?v=4","gravatar_id":"","url":"https://api.github.com/users/holenet","html_url":"https://github.com/holenet","followers_url":"https://api.github.com/users/holenet/followers","following_url":"https://api.github.com/users/holenet/following{/other_user}","gists_url":"https://api.github.com/users/holenet/gists{/gist_id}","starred_url":"https://api.github.com/users/holenet/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/holenet/subscriptions","organizations_url":"https://api.github.com/users/holenet/orgs","repos_url":"https://api.github.com/users/holenet/repos","events_url":"https://api.github.com/users/holenet/events{/privacy}","received_events_url":"https://api.github.com/users/holenet/received_events","type":"User","site_admin":false},"labels":[{"id":911034951,"url":"https://api.github.com/repos/SWPP/ttrs-backend/labels/bug","name":"bug","color":"d73a4a","default":true}],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2018-05-09T08:35:46Z","updated_at":"2018-05-09T09:30:01Z","closed_at":"2018-05-09T09:30:01Z","author_association":"CONTRIBUTOR","body":"@lameinthebox \r\nThere is an unresolved variable `tid`.\r\nplease check your code and resend pull request.\r\nhttps://github.com/SWPP/ttrs-backend/blob/5c01fd0561f6036ebc1b6a325234a64237dac8e8/backend/manager/crawler.py#L111"},"comment":{"url":"https://api.github.com/repos/SWPP/ttrs-backend/issues/comments/387680579","html_url":"https://github.com/SWPP/ttrs-backend/issues/38#issuecomment-387680579","issue_url":"https://api.github.com/repos/SWPP/ttrs-backend/issues/38","id":387680579,"user":{"login":"holenet","id":24453019,"avatar_url":"https://avatars3.githubusercontent.com/u/24453019?v=4","gravatar_id":"","url":"https://api.github.com/users/holenet","html_url":"https://github.com/holenet","followers_url":"https://api.github.com/users/holenet/followers","following_url":"https://api.github.com/users/holenet/following{/other_user}","gists_url":"https://api.github.com/users/holenet/gists{/gist_id}","starred_url":"https://api.github.com/users/holenet/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/holenet/subscriptions","organizations_url":"https://api.github.com/users/holenet/orgs","repos_url":"https://api.github.com/users/holenet/repos","events_url":"https://api.github.com/users/holenet/events{/privacy}","received_events_url":"https://api.github.com/users/holenet/received_events","type":"User","site_admin":false},"created_at":"2018-05-09T09:30:00Z","updated_at":"2018-05-09T09:30:00Z","author_association":"CONTRIBUTOR","body":"Okay, I merged the pull request #39 ."}} | {
"id": 130686354,
"name": "SWPP/ttrs-backend",
"url": "https://api.github.com/repos/SWPP/ttrs-backend"
} | {
"id": 24453019,
"login": "holenet",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/24453019?",
"url": "https://api.github.com/users/holenet"
} | {
"id": 38488878,
"login": "SWPP",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/38488878?",
"url": "https://api.github.com/orgs/SWPP"
} | 2018-05-09T09:30:01 | 7648634439 | {"actor":{"display_login":"holenet"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/grin-tech/grin/issues/14","repository_url":"https://api.github.com/repos/grin-tech/grin","labels_url":"https://api.github.com/repos/grin-tech/grin/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/grin-tech/grin/issues/14/comments","events_url":"https://api.github.com/repos/grin-tech/grin/issues/14/events","html_url":"https://github.com/grin-tech/grin/pull/14","id":390915921,"node_id":"MDExOlB1bGxSZXF1ZXN0MjM4NTc0Njc4","number":14,"title":"Update default.nix","user":{"login":"LightAndLight","id":2536121,"node_id":"MDQ6VXNlcjI1MzYxMjE=","avatar_url":"https://avatars3.githubusercontent.com/u/2536121?v=4","gravatar_id":"","url":"https://api.github.com/users/LightAndLight","html_url":"https://github.com/LightAndLight","followers_url":"https://api.github.com/users/LightAndLight/followers","following_url":"https://api.github.com/users/LightAndLight/following{/other_user}","gists_url":"https://api.github.com/users/LightAndLight/gists{/gist_id}","starred_url":"https://api.github.com/users/LightAndLight/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/LightAndLight/subscriptions","organizations_url":"https://api.github.com/users/LightAndLight/orgs","repos_url":"https://api.github.com/users/LightAndLight/repos","events_url":"https://api.github.com/users/LightAndLight/events{/privacy}","received_events_url":"https://api.github.com/users/LightAndLight/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-12-14T00:20:32Z","updated_at":"2018-12-14T00:32:36Z","closed_at":null,"author_association":"CONTRIBUTOR","pull_request":{"url":"https://api.github.com/repos/grin-tech/grin/pulls/14","html_url":"https://github.com/grin-tech/grin/pull/14","diff_url":"https://github.com/grin-tech/grin/pull/14.diff","patch_url":"https://github.com/grin-tech/grin/pull/14.patch"},"body":"It was missing some dependencies"},"comment":{"url":"https://api.github.com/repos/grin-tech/grin/issues/comments/447171415","html_url":"https://github.com/grin-tech/grin/pull/14#issuecomment-447171415","issue_url":"https://api.github.com/repos/grin-tech/grin/issues/14","id":447171415,"node_id":"MDEyOklzc3VlQ29tbWVudDQ0NzE3MTQxNQ==","user":{"login":"coveralls","id":2354108,"node_id":"MDQ6VXNlcjIzNTQxMDg=","avatar_url":"https://avatars1.githubusercontent.com/u/2354108?v=4","gravatar_id":"","url":"https://api.github.com/users/coveralls","html_url":"https://github.com/coveralls","followers_url":"https://api.github.com/users/coveralls/followers","following_url":"https://api.github.com/users/coveralls/following{/other_user}","gists_url":"https://api.github.com/users/coveralls/gists{/gist_id}","starred_url":"https://api.github.com/users/coveralls/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/coveralls/subscriptions","organizations_url":"https://api.github.com/users/coveralls/orgs","repos_url":"https://api.github.com/users/coveralls/repos","events_url":"https://api.github.com/users/coveralls/events{/privacy}","received_events_url":"https://api.github.com/users/coveralls/received_events","type":"User","site_admin":false},"created_at":"2018-12-14T00:32:36Z","updated_at":"2018-12-14T00:32:36Z","author_association":"NONE","body":"\n[](https://coveralls.io/builds/20628946)\n\nCoverage remained the same at 52.266% when pulling **f02dce957e07e4347a5173c8049b4987c788ef90 on LightAndLight:patch-3** into **79bd4513c3d473c0733e7ac5930152bfb4983b24 on grin-tech:master**.\n"}} | {
"id": 95253474,
"name": "grin-tech/grin",
"url": "https://api.github.com/repos/grin-tech/grin"
} | {
"id": 2354108,
"login": "coveralls",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/2354108?",
"url": "https://api.github.com/users/coveralls"
} | {
"id": 38571350,
"login": "grin-tech",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/38571350?",
"url": "https://api.github.com/orgs/grin-tech"
} | 2018-12-14T00:32:36 | 8751960740 | {"actor":{"display_login":"coveralls"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/DarkPacks/SevTech-Ages/issues/2543","repository_url":"https://api.github.com/repos/DarkPacks/SevTech-Ages","labels_url":"https://api.github.com/repos/DarkPacks/SevTech-Ages/issues/2543/labels{/name}","comments_url":"https://api.github.com/repos/DarkPacks/SevTech-Ages/issues/2543/comments","events_url":"https://api.github.com/repos/DarkPacks/SevTech-Ages/issues/2543/events","html_url":"https://github.com/DarkPacks/SevTech-Ages/issues/2543","id":324704807,"number":2543,"title":"[Bug] Excavate Modifier is not craftable","user":{"login":"Nagshell","id":17276063,"avatar_url":"https://avatars2.githubusercontent.com/u/17276063?v=4","gravatar_id":"","url":"https://api.github.com/users/Nagshell","html_url":"https://github.com/Nagshell","followers_url":"https://api.github.com/users/Nagshell/followers","following_url":"https://api.github.com/users/Nagshell/following{/other_user}","gists_url":"https://api.github.com/users/Nagshell/gists{/gist_id}","starred_url":"https://api.github.com/users/Nagshell/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Nagshell/subscriptions","organizations_url":"https://api.github.com/users/Nagshell/orgs","repos_url":"https://api.github.com/users/Nagshell/repos","events_url":"https://api.github.com/users/Nagshell/events{/privacy}","received_events_url":"https://api.github.com/users/Nagshell/received_events","type":"User","site_admin":false},"labels":[{"id":636853121,"url":"https://api.github.com/repos/DarkPacks/SevTech-Ages/labels/Duplicate","name":"Duplicate","color":"cccccc","default":false}],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-05-20T12:14:13Z","updated_at":"2018-05-20T14:55:34Z","closed_at":"2018-05-20T14:55:34Z","author_association":"NONE","body":"## Issue / Bug\r\nExcavate Modifier item shows in JEI, but is not craftable in crafting tables.\r\n\r\n## Steps to Reproduce (for bugs)\r\nI'm currently in age 3.\r\nI took two screenshots, and did what I could between them.\r\nI tried shift-clicking recipe from JEI, manually putting items.\r\nI tried using vanilla crafting table and tinker crafting station.\r\nChecked multiple versions of astral sorcery crystals / mazestone blocks.\r\n\r\n## Logs\r\nThe only lines of log are those screenshots, nothing was logged in-between.\r\n* Client/Server Log:\r\n[14:03:51] [main/INFO] [net.minecraft.client.gui.GuiNewChat]: [CHAT] Saved screenshot as 2018-05-20_14.03.50.png\r\n[14:06:32] [main/INFO] [net.minecraft.client.gui.GuiNewChat]: [CHAT] Saved screenshot as 2018-05-20_14.06.32.png\r\n\r\n##Screenshot\r\nhttps://imgur.com/a/xBTqfJw\r\n\r\n\r\n## Client Information\r\n* Modpack Version: 3.0.7\r\n* Java Version: 1.8.0.171\r\n* Launcher Used: Twitch\r\n* Memory Allocated: 6GB\r\n* Single Player:\r\n* Resourcepack Enabled?: No\r\n* Optifine Installed?: No\r\n\r\n* Additional Content Installed: \r\nAromaBackup-1.12.2-1.3.0.2.jar\r\nAroma1997Core-1.12.2-2.1.1.3.jar\r\n"},"comment":{"url":"https://api.github.com/repos/DarkPacks/SevTech-Ages/issues/comments/390488429","html_url":"https://github.com/DarkPacks/SevTech-Ages/issues/2543#issuecomment-390488429","issue_url":"https://api.github.com/repos/DarkPacks/SevTech-Ages/issues/2543","id":390488429,"user":{"login":"Jandakast","id":19498789,"avatar_url":"https://avatars0.githubusercontent.com/u/19498789?v=4","gravatar_id":"","url":"https://api.github.com/users/Jandakast","html_url":"https://github.com/Jandakast","followers_url":"https://api.github.com/users/Jandakast/followers","following_url":"https://api.github.com/users/Jandakast/following{/other_user}","gists_url":"https://api.github.com/users/Jandakast/gists{/gist_id}","starred_url":"https://api.github.com/users/Jandakast/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Jandakast/subscriptions","organizations_url":"https://api.github.com/users/Jandakast/orgs","repos_url":"https://api.github.com/users/Jandakast/repos","events_url":"https://api.github.com/users/Jandakast/events{/privacy}","received_events_url":"https://api.github.com/users/Jandakast/received_events","type":"User","site_admin":false},"created_at":"2018-05-20T14:55:33Z","updated_at":"2018-05-20T14:55:33Z","author_association":"CONTRIBUTOR","body":"Duplicate of #2314"}} | {
"id": 95788545,
"name": "DarkPacks/SevTech-Ages",
"url": "https://api.github.com/repos/DarkPacks/SevTech-Ages"
} | {
"id": 19498789,
"login": "Jandakast",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/19498789?",
"url": "https://api.github.com/users/Jandakast"
} | {
"id": 38594912,
"login": "DarkPacks",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/38594912?",
"url": "https://api.github.com/orgs/DarkPacks"
} | 2018-05-20T14:55:34 | 7701363999 | {"actor":{"display_login":"Jandakast"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/folivoraAI/BetterTouchTool/issues/2417","repository_url":"https://api.github.com/repos/folivoraAI/BetterTouchTool","labels_url":"https://api.github.com/repos/folivoraAI/BetterTouchTool/issues/2417/labels{/name}","comments_url":"https://api.github.com/repos/folivoraAI/BetterTouchTool/issues/2417/comments","events_url":"https://api.github.com/repos/folivoraAI/BetterTouchTool/issues/2417/events","html_url":"https://github.com/folivoraAI/BetterTouchTool/issues/2417","id":312328363,"number":2417,"title":"USB mouse left click stops working","user":{"login":"dsedivec","id":95333,"avatar_url":"https://avatars2.githubusercontent.com/u/95333?v=4","gravatar_id":"","url":"https://api.github.com/users/dsedivec","html_url":"https://github.com/dsedivec","followers_url":"https://api.github.com/users/dsedivec/followers","following_url":"https://api.github.com/users/dsedivec/following{/other_user}","gists_url":"https://api.github.com/users/dsedivec/gists{/gist_id}","starred_url":"https://api.github.com/users/dsedivec/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dsedivec/subscriptions","organizations_url":"https://api.github.com/users/dsedivec/orgs","repos_url":"https://api.github.com/users/dsedivec/repos","events_url":"https://api.github.com/users/dsedivec/events{/privacy}","received_events_url":"https://api.github.com/users/dsedivec/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-04-08T18:34:01Z","updated_at":"2018-05-16T12:52:27Z","closed_at":null,"author_association":"NONE","body":"#### Description of bug/feature request/question:\r\n\r\nAfter some minutes of using a USB mouse on my MacBook Pro, the mouse's left click will stop working until I move or click my Magic Trackpad or quit BTT.\r\n\r\nSteps to reproduce:\r\n\r\n1. Start BTT\r\n1. Connect USB mouse\r\n1. Go about my usual business (usually web browsing and/or playing games)\r\n1. Wait until left click stops working on the USB mouse (usually happens within thirty minutes, sometimes within two minutes)\r\n\r\nWhen left click stops working on my USB mouse, any of the following things will make it start working again:\r\n\r\n* Move the pointer with either my Bluetooth Magic Trackpad or with the built-in trackpad\r\n* \"Left\" click with either the Magic Trackpad or with the built-in trackpad\r\n* Quit BTT\r\n\r\nDoing any of these three things will make the USB mouse left click start working again—for a while. Eventually (again, say within thirty minutes, and sometimes as quickly as just a couple minutes) it will break again and I will have to repeat this process.\r\n\r\nNote that I can still move the mouse cursor with the USB mouse when this happens, I just can't click with it.\r\n\r\n#### Affected input device (e.g. MacBook Trackpad, Magic Mouse/Trackpad, Touch Bar, etc.):\r\n\r\nI have experienced this with both a Logitech Anywhere MX and a Razer DeathAdder USB mouse.\r\n\r\n#### Device information:\r\n\r\nType of Mac: MacBook Pro Retina 15\", late 2013\r\nmacOS version: 10.13.4\r\nBetterTouchTool version: BetterTouchTool 2.425\r\n\r\n#### Additional information (e.g. StackTraces, related issues, screenshots, workarounds, etc.):\r\n\r\nMiddle and right click on the USB mouse are not affected, they keep working normally. The USB mouse's scroll wheel keeps working. BTT button mappings configured for the USB mouse keep working. Only left clicking on the USB mouse is affected.\r\n\r\nI have had this problem with BTT for as long as I can remember, I'd say at least a couple years, including under OS X 10.11 and probably 10.9 before that.\r\n\r\n*Possibly* related issues: #191, #625, #810\r\n"},"comment":{"url":"https://api.github.com/repos/folivoraAI/BetterTouchTool/issues/comments/389507353","html_url":"https://github.com/folivoraAI/BetterTouchTool/issues/2417#issuecomment-389507353","issue_url":"https://api.github.com/repos/folivoraAI/BetterTouchTool/issues/2417","id":389507353,"user":{"login":"dsedivec","id":95333,"avatar_url":"https://avatars2.githubusercontent.com/u/95333?v=4","gravatar_id":"","url":"https://api.github.com/users/dsedivec","html_url":"https://github.com/dsedivec","followers_url":"https://api.github.com/users/dsedivec/followers","following_url":"https://api.github.com/users/dsedivec/following{/other_user}","gists_url":"https://api.github.com/users/dsedivec/gists{/gist_id}","starred_url":"https://api.github.com/users/dsedivec/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dsedivec/subscriptions","organizations_url":"https://api.github.com/users/dsedivec/orgs","repos_url":"https://api.github.com/users/dsedivec/repos","events_url":"https://api.github.com/users/dsedivec/events{/privacy}","received_events_url":"https://api.github.com/users/dsedivec/received_events","type":"User","site_admin":false},"created_at":"2018-05-16T12:52:27Z","updated_at":"2018-05-16T12:52:27Z","author_association":"NONE","body":"> This issue was moved to https://community.folivora.ai/t/usb-mouse-left-click-stops-working/51\r\n\r\n@fifafu FYI I cannot open that URL. \"Oops! That page doesn’t exist or is private.\""}} | {
"id": 75483500,
"name": "folivoraAI/BetterTouchTool",
"url": "https://api.github.com/repos/folivoraAI/BetterTouchTool"
} | {
"id": 95333,
"login": "dsedivec",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/95333?",
"url": "https://api.github.com/users/dsedivec"
} | {
"id": 38657720,
"login": "folivoraAI",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/38657720?",
"url": "https://api.github.com/orgs/folivoraAI"
} | 2018-05-16T12:52:27 | 7683105573 | {"actor":{"display_login":"dsedivec"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/Terminus2049/Terminus2049.github.io/issues/124","repository_url":"https://api.github.com/repos/Terminus2049/Terminus2049.github.io","labels_url":"https://api.github.com/repos/Terminus2049/Terminus2049.github.io/issues/124/labels{/name}","comments_url":"https://api.github.com/repos/Terminus2049/Terminus2049.github.io/issues/124/comments","events_url":"https://api.github.com/repos/Terminus2049/Terminus2049.github.io/issues/124/events","html_url":"https://github.com/Terminus2049/Terminus2049.github.io/pull/124","id":340115724,"node_id":"MDExOlB1bGxSZXF1ZXN0MjAwNjAzOTQy","number":124,"title":"Update README.md","user":{"login":"scisheiko","id":41101962,"node_id":"MDQ6VXNlcjQxMTAxOTYy","avatar_url":"https://avatars1.githubusercontent.com/u/41101962?v=4","gravatar_id":"","url":"https://api.github.com/users/scisheiko","html_url":"https://github.com/scisheiko","followers_url":"https://api.github.com/users/scisheiko/followers","following_url":"https://api.github.com/users/scisheiko/following{/other_user}","gists_url":"https://api.github.com/users/scisheiko/gists{/gist_id}","starred_url":"https://api.github.com/users/scisheiko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/scisheiko/subscriptions","organizations_url":"https://api.github.com/users/scisheiko/orgs","repos_url":"https://api.github.com/users/scisheiko/repos","events_url":"https://api.github.com/users/scisheiko/events{/privacy}","received_events_url":"https://api.github.com/users/scisheiko/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-07-11T07:00:40Z","updated_at":"2018-07-11T10:36:37Z","closed_at":null,"author_association":"CONTRIBUTOR","pull_request":{"url":"https://api.github.com/repos/Terminus2049/Terminus2049.github.io/pulls/124","html_url":"https://github.com/Terminus2049/Terminus2049.github.io/pull/124","diff_url":"https://github.com/Terminus2049/Terminus2049.github.io/pull/124.diff","patch_url":"https://github.com/Terminus2049/Terminus2049.github.io/pull/124.patch"},"body":"add one more mirror site "},"comment":{"url":"https://api.github.com/repos/Terminus2049/Terminus2049.github.io/issues/comments/404123898","html_url":"https://github.com/Terminus2049/Terminus2049.github.io/pull/124#issuecomment-404123898","issue_url":"https://api.github.com/repos/Terminus2049/Terminus2049.github.io/issues/124","id":404123898,"node_id":"MDEyOklzc3VlQ29tbWVudDQwNDEyMzg5OA==","user":{"login":"scisheiko","id":41101962,"node_id":"MDQ6VXNlcjQxMTAxOTYy","avatar_url":"https://avatars1.githubusercontent.com/u/41101962?v=4","gravatar_id":"","url":"https://api.github.com/users/scisheiko","html_url":"https://github.com/scisheiko","followers_url":"https://api.github.com/users/scisheiko/followers","following_url":"https://api.github.com/users/scisheiko/following{/other_user}","gists_url":"https://api.github.com/users/scisheiko/gists{/gist_id}","starred_url":"https://api.github.com/users/scisheiko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/scisheiko/subscriptions","organizations_url":"https://api.github.com/users/scisheiko/orgs","repos_url":"https://api.github.com/users/scisheiko/repos","events_url":"https://api.github.com/users/scisheiko/events{/privacy}","received_events_url":"https://api.github.com/users/scisheiko/received_events","type":"User","site_admin":false},"created_at":"2018-07-11T10:36:37Z","updated_at":"2018-07-11T10:36:37Z","author_association":"CONTRIBUTOR","body":"有按照这个[教程](https://github.com/Terminus2049/Terminus2049.github.io/issues/106)里面的`crontab -e`设置自动同步。"}} | {
"id": 131245958,
"name": "Terminus2049/Terminus2049.github.io",
"url": "https://api.github.com/repos/Terminus2049/Terminus2049.github.io"
} | {
"id": 41101962,
"login": "scisheiko",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/41101962?",
"url": "https://api.github.com/users/scisheiko"
} | {
"id": 38775107,
"login": "Terminus2049",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/38775107?",
"url": "https://api.github.com/orgs/Terminus2049"
} | 2018-07-11T10:36:37 | 7949219224 | {"actor":{"display_login":"scisheiko"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/goki/gi/issues/166","repository_url":"https://api.github.com/repos/goki/gi","labels_url":"https://api.github.com/repos/goki/gi/issues/166/labels{/name}","comments_url":"https://api.github.com/repos/goki/gi/issues/166/comments","events_url":"https://api.github.com/repos/goki/gi/issues/166/events","html_url":"https://github.com/goki/gi/issues/166","id":374563077,"node_id":"MDU6SXNzdWUzNzQ1NjMwNzc=","number":166,"title":"completion issues","user":{"login":"rcoreilly","id":9605819,"node_id":"MDQ6VXNlcjk2MDU4MTk=","avatar_url":"https://avatars2.githubusercontent.com/u/9605819?v=4","gravatar_id":"","url":"https://api.github.com/users/rcoreilly","html_url":"https://github.com/rcoreilly","followers_url":"https://api.github.com/users/rcoreilly/followers","following_url":"https://api.github.com/users/rcoreilly/following{/other_user}","gists_url":"https://api.github.com/users/rcoreilly/gists{/gist_id}","starred_url":"https://api.github.com/users/rcoreilly/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rcoreilly/subscriptions","organizations_url":"https://api.github.com/users/rcoreilly/orgs","repos_url":"https://api.github.com/users/rcoreilly/repos","events_url":"https://api.github.com/users/rcoreilly/events{/privacy}","received_events_url":"https://api.github.com/users/rcoreilly/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2018-10-26T22:07:10Z","updated_at":"2018-10-27T00:43:57Z","closed_at":null,"author_association":"CONTRIBUTOR","body":"now that completion is usable :) looks like are some issues:\r\n\r\n* in giv/fileview.go:628 -- completion on ef (*gi.TextField) shows .Text as a variable, but it is a function.\r\n\r\n* strings. does not complete with all the strings methods -- that is one of the most important use-cases -- remembering all those package methods! but then it DID complete with .Split when i was typing: strings.Split(exts. \r\n\r\n* typing: ef : gives a large list of options.. (only valid completion should be := right?)\r\n\r\nseems like maybe it is not quite getting the right seed or something?\r\n\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/goki/gi/issues/comments/433576993","html_url":"https://github.com/goki/gi/issues/166#issuecomment-433576993","issue_url":"https://api.github.com/repos/goki/gi/issues/166","id":433576993,"node_id":"MDEyOklzc3VlQ29tbWVudDQzMzU3Njk5Mw==","user":{"login":"rohrlich","id":22350787,"node_id":"MDQ6VXNlcjIyMzUwNzg3","avatar_url":"https://avatars1.githubusercontent.com/u/22350787?v=4","gravatar_id":"","url":"https://api.github.com/users/rohrlich","html_url":"https://github.com/rohrlich","followers_url":"https://api.github.com/users/rohrlich/followers","following_url":"https://api.github.com/users/rohrlich/following{/other_user}","gists_url":"https://api.github.com/users/rohrlich/gists{/gist_id}","starred_url":"https://api.github.com/users/rohrlich/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rohrlich/subscriptions","organizations_url":"https://api.github.com/users/rohrlich/orgs","repos_url":"https://api.github.com/users/rohrlich/repos","events_url":"https://api.github.com/users/rohrlich/events{/privacy}","received_events_url":"https://api.github.com/users/rohrlich/received_events","type":"User","site_admin":false},"created_at":"2018-10-27T00:43:57Z","updated_at":"2018-10-27T00:43:57Z","author_association":"CONTRIBUTOR","body":"I thought about this again. I always produce a seed from the current edit and in this case the seed is \"\". When the seed is empty I show all of the results, hence the long incorrect list. Perhaps it would be better to show none when the seed is empty unless the user has specifically invoked completion (control + .). So the default behavior would be to wait for at least one char beyond whitespace."}} | {
"id": 132187950,
"name": "goki/gi",
"url": "https://api.github.com/repos/goki/gi"
} | {
"id": 22350787,
"login": "rohrlich",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/22350787?",
"url": "https://api.github.com/users/rohrlich"
} | {
"id": 38777950,
"login": "goki",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/38777950?",
"url": "https://api.github.com/orgs/goki"
} | 2018-10-27T00:43:57 | 8490418608 | {"actor":{"display_login":"rohrlich"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/queryverse/DataVoyager.jl/issues/9","repository_url":"https://api.github.com/repos/queryverse/DataVoyager.jl","labels_url":"https://api.github.com/repos/queryverse/DataVoyager.jl/issues/9/labels{/name}","comments_url":"https://api.github.com/repos/queryverse/DataVoyager.jl/issues/9/comments","events_url":"https://api.github.com/repos/queryverse/DataVoyager.jl/issues/9/events","html_url":"https://github.com/queryverse/DataVoyager.jl/issues/9","id":360291105,"node_id":"MDU6SXNzdWUzNjAyOTExMDU=","number":9,"title":"Cannot `convert` an object of type Dates.Date to an object of type Int64","user":{"login":"usmcamp0811","id":17965629,"node_id":"MDQ6VXNlcjE3OTY1NjI5","avatar_url":"https://avatars0.githubusercontent.com/u/17965629?v=4","gravatar_id":"","url":"https://api.github.com/users/usmcamp0811","html_url":"https://github.com/usmcamp0811","followers_url":"https://api.github.com/users/usmcamp0811/followers","following_url":"https://api.github.com/users/usmcamp0811/following{/other_user}","gists_url":"https://api.github.com/users/usmcamp0811/gists{/gist_id}","starred_url":"https://api.github.com/users/usmcamp0811/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/usmcamp0811/subscriptions","organizations_url":"https://api.github.com/users/usmcamp0811/orgs","repos_url":"https://api.github.com/users/usmcamp0811/repos","events_url":"https://api.github.com/users/usmcamp0811/events{/privacy}","received_events_url":"https://api.github.com/users/usmcamp0811/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2018-09-14T12:49:21Z","updated_at":"2018-09-16T14:47:51Z","closed_at":"2018-09-15T03:20:44Z","author_association":"NONE","body":"I am on Julia v1.0 with Queryverse installed. I load a csv from the Bike-Sharing-Dataset that has a date field that looks like `2011-01-01`. When I try to pipe the data into Voyager I get the `MethodError: Cannot `convert` an object of type Dates.Date to an object of type Int64`. I noticed the `cars` dataset has a date field that looks like `\"1970-01-01\"`. Are these quotes needed around the data in Voyager? If so are there any easy methods for casting the data into the correct format? \r\n\r\n_NOTE: I'm having to use Julia on an offline machine right this minute but when I get home I'll post the full stacktrace._ "},"comment":{"url":"https://api.github.com/repos/queryverse/DataVoyager.jl/issues/comments/421776867","html_url":"https://github.com/queryverse/DataVoyager.jl/issues/9#issuecomment-421776867","issue_url":"https://api.github.com/repos/queryverse/DataVoyager.jl/issues/9","id":421776867,"node_id":"MDEyOklzc3VlQ29tbWVudDQyMTc3Njg2Nw==","user":{"login":"usmcamp0811","id":17965629,"node_id":"MDQ6VXNlcjE3OTY1NjI5","avatar_url":"https://avatars0.githubusercontent.com/u/17965629?v=4","gravatar_id":"","url":"https://api.github.com/users/usmcamp0811","html_url":"https://github.com/usmcamp0811","followers_url":"https://api.github.com/users/usmcamp0811/followers","following_url":"https://api.github.com/users/usmcamp0811/following{/other_user}","gists_url":"https://api.github.com/users/usmcamp0811/gists{/gist_id}","starred_url":"https://api.github.com/users/usmcamp0811/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/usmcamp0811/subscriptions","organizations_url":"https://api.github.com/users/usmcamp0811/orgs","repos_url":"https://api.github.com/users/usmcamp0811/repos","events_url":"https://api.github.com/users/usmcamp0811/events{/privacy}","received_events_url":"https://api.github.com/users/usmcamp0811/received_events","type":"User","site_admin":false},"created_at":"2018-09-16T14:47:51Z","updated_at":"2018-09-16T14:47:51Z","author_association":"NONE","body":"Not to a be a thorn in your side but looks like I uncovered another issue. I was playing around some more with DataFrames and converted a few fields to the Categorical Type and then piped it into Voyager and got a similar error as this one. Its pretty much the same problem so I'm re-opening the issue. I don't think its a super high priority issue but something to be aware of. \r\n\r\ndata: [eeg-brain-wave-for-confusion](https://www.kaggle.com/wanghaohan/confused-eeg/version/4)\r\n\r\n```\r\nusing Queryverse \r\n\r\nmacro __str(x)\r\n :(Symbol($x))\r\nend\r\n\r\n# load some data into a dataframe\r\ndf = load(\"/home/mcamp/JuliaProjects/eeg-brain-wave-for-confusion/EEG_data.csv\") |> DataFrame\r\n\r\ncols = names(df)\r\ncols[15] = _\"UserDefinedLabel\" \r\ncols[14] = _\"PreDefinedLabel\"\r\nnames!(df, cols) \r\n\r\ncategorical!(df,:SubjectID)\r\ncategorical!(df,:UserDefinedLabel)\r\ncategorical!(df,:PreDefinedLabel)\r\ncategorical!(df,:VideoID)\r\n\r\ndf |> Voyager()\r\n```\r\n\r\n**Retruns:**\r\n\r\n```\r\nMethodError: Cannot `convert` an object of type Float64 to an object of type CategoricalValue{Float64,UInt32}\r\nClosest candidates are:\r\n convert(::Type{T<:(Union{CategoricalString{R}, CategoricalValue{T,R} where T} where R)}, !Matched::T<:(Union{CategoricalString{R}, CategoricalValue{T,R} where T} where R)) where T<:(Union{CategoricalString{R}, CategoricalValue{T,R} where T} where R) at /home/mcamp/.julia/packages/CategoricalArrays/04bks/src/value.jl:65\r\n convert(::Type{S}, !Matched::T<:(Union{CategoricalString{R}, CategoricalValue{T,R} where T} where R)) where {S, T<:(Union{CategoricalString{R}, CategoricalValue{T,R} where T} where R)} at /home/mcamp/.julia/packages/CategoricalArrays/04bks/src/value.jl:66\r\n convert(::Type{T}, !Matched::T) where T at essentials.jl:154\r\n ...\r\n\r\nStacktrace:\r\n [1] setindex!(::Dict{Symbol,CategoricalValue{Float64,UInt32}}, ::Float64, ::Symbol) at ./dict.jl:381\r\n [2] Dict{Symbol,CategoricalValue{Float64,UInt32}}(::Base.Generator{Base.Iterators.Zip2{NTuple{15,Symbol},Tuple{CategoricalValue{Float64,UInt32},CategoricalValue{Float64,UInt32},Float64,Float64,Float64,Float64,Float64,Float64,Float64,Float64,Float64,Float64,Float64,CategoricalValue{Float64,UInt32},CategoricalValue{Float64,UInt32}}},getfield(DataVoyager, Symbol(\"##2#4\"))}) at ./dict.jl:104\r\n [3] dict_with_eltype at ./abstractdict.jl:541 [inlined]\r\n [4] macro expansion at ./array.jl:591 [inlined]\r\n [5] dict_with_eltype at ./abstractdict.jl:546 [inlined]\r\n [6] Dict(::Base.Generator{Base.Iterators.Zip2{NTuple{15,Symbol},Tuple{CategoricalValue{Float64,UInt32},CategoricalValue{Float64,UInt32},Float64,Float64,Float64,Float64,Float64,Float64,Float64,Float64,Float64,Float64,Float64,CategoricalValue{Float64,UInt32},CategoricalValue{Float64,UInt32}}},getfield(DataVoyager, Symbol(\"##2#4\"))}) at ./dict.jl:129\r\n [7] #1 at ./none:0 [inlined]\r\n [8] iterate at ./generator.jl:47 [inlined]\r\n [9] collect(::Base.Generator{TableTraitsUtils.TableIterator{NamedTuple{(:SubjectID, :VideoID, :Attention, :Mediation, :Raw, :Delta, :Theta, :Alpha1, :Alpha2, :Beta1, :Beta2, :Gamma1, :Gamma2, :PreDefinedLabel, :UserDefinedLabel),Tuple{CategoricalValue{Float64,UInt32},CategoricalValue{Float64,UInt32},Float64,Float64,Float64,Float64,Float64,Float64,Float64,Float64,Float64,Float64,Float64,CategoricalValue{Float64,UInt32},CategoricalValue{Float64,UInt32}}},Tuple{CategoricalArray{Float64,1,UInt32,Float64,CategoricalValue{Float64,UInt32},Union{}},CategoricalArray{Float64,1,UInt32,Float64,CategoricalValue{Float64,UInt32},Union{}},Array{Float64,1},Array{Float64,1},Array{Float64,1},Array{Float64,1},Array{Float64,1},Array{Float64,1},Array{Float64,1},Array{Float64,1},Array{Float64,1},Array{Float64,1},Array{Float64,1},CategoricalArray{Float64,1,UInt32,Float64,CategoricalValue{Float64,UInt32},Union{}},CategoricalArray{Float64,1,UInt32,Float64,CategoricalValue{Float64,UInt32},Union{}}}},getfield(DataVoyager, Symbol(\"##1#3\"))}) at ./array.jl:619\r\n [10] (::Voyager)(::DataFrame) at /home/mcamp/.julia/packages/DataVoyager/h5fKO/src/DataVoyager.jl:36\r\n [11] |>(::DataFrame, ::Voyager) at ./operators.jl:813\r\n [12] top-level scope at In[18]:20\r\n\r\n```"}} | {
"id": 115846667,
"name": "queryverse/DataVoyager.jl",
"url": "https://api.github.com/repos/queryverse/DataVoyager.jl"
} | {
"id": 17965629,
"login": "usmcamp0811",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/17965629?",
"url": "https://api.github.com/users/usmcamp0811"
} | {
"id": 38843652,
"login": "queryverse",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/38843652?",
"url": "https://api.github.com/orgs/queryverse"
} | 2018-09-16T14:47:51 | 8271926731 | {"actor":{"display_login":"usmcamp0811"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/nss-evening-cohort-8/bandz-dairy-queens/issues/24","repository_url":"https://api.github.com/repos/nss-evening-cohort-8/bandz-dairy-queens","labels_url":"https://api.github.com/repos/nss-evening-cohort-8/bandz-dairy-queens/issues/24/labels{/name}","comments_url":"https://api.github.com/repos/nss-evening-cohort-8/bandz-dairy-queens/issues/24/comments","events_url":"https://api.github.com/repos/nss-evening-cohort-8/bandz-dairy-queens/issues/24/events","html_url":"https://github.com/nss-evening-cohort-8/bandz-dairy-queens/pull/24","id":359697596,"node_id":"MDExOlB1bGxSZXF1ZXN0MjE1MTMxMzE4","number":24,"title":"Jw song functions","user":{"login":"jsmnwltrs","id":41760060,"node_id":"MDQ6VXNlcjQxNzYwMDYw","avatar_url":"https://avatars1.githubusercontent.com/u/41760060?v=4","gravatar_id":"","url":"https://api.github.com/users/jsmnwltrs","html_url":"https://github.com/jsmnwltrs","followers_url":"https://api.github.com/users/jsmnwltrs/followers","following_url":"https://api.github.com/users/jsmnwltrs/following{/other_user}","gists_url":"https://api.github.com/users/jsmnwltrs/gists{/gist_id}","starred_url":"https://api.github.com/users/jsmnwltrs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jsmnwltrs/subscriptions","organizations_url":"https://api.github.com/users/jsmnwltrs/orgs","repos_url":"https://api.github.com/users/jsmnwltrs/repos","events_url":"https://api.github.com/users/jsmnwltrs/events{/privacy}","received_events_url":"https://api.github.com/users/jsmnwltrs/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-09-13T00:18:54Z","updated_at":"2018-09-13T00:35:03Z","closed_at":null,"author_association":"CONTRIBUTOR","pull_request":{"url":"https://api.github.com/repos/nss-evening-cohort-8/bandz-dairy-queens/pulls/24","html_url":"https://github.com/nss-evening-cohort-8/bandz-dairy-queens/pull/24","diff_url":"https://github.com/nss-evening-cohort-8/bandz-dairy-queens/pull/24.diff","patch_url":"https://github.com/nss-evening-cohort-8/bandz-dairy-queens/pull/24.patch"},"body":"Added Print To Dom and for loop functions and printed the song list to the song page"},"comment":{"url":"https://api.github.com/repos/nss-evening-cohort-8/bandz-dairy-queens/issues/comments/420843296","html_url":"https://github.com/nss-evening-cohort-8/bandz-dairy-queens/pull/24#issuecomment-420843296","issue_url":"https://api.github.com/repos/nss-evening-cohort-8/bandz-dairy-queens/issues/24","id":420843296,"node_id":"MDEyOklzc3VlQ29tbWVudDQyMDg0MzI5Ng==","user":{"login":"meeshysu","id":41173019,"node_id":"MDQ6VXNlcjQxMTczMDE5","avatar_url":"https://avatars3.githubusercontent.com/u/41173019?v=4","gravatar_id":"","url":"https://api.github.com/users/meeshysu","html_url":"https://github.com/meeshysu","followers_url":"https://api.github.com/users/meeshysu/followers","following_url":"https://api.github.com/users/meeshysu/following{/other_user}","gists_url":"https://api.github.com/users/meeshysu/gists{/gist_id}","starred_url":"https://api.github.com/users/meeshysu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/meeshysu/subscriptions","organizations_url":"https://api.github.com/users/meeshysu/orgs","repos_url":"https://api.github.com/users/meeshysu/repos","events_url":"https://api.github.com/users/meeshysu/events{/privacy}","received_events_url":"https://api.github.com/users/meeshysu/received_events","type":"User","site_admin":false},"created_at":"2018-09-13T00:35:03Z","updated_at":"2018-09-13T00:35:03Z","author_association":"NONE","body":"It's the ugliest code I've ever seen. \r\n\r\nJust kidding. It's GRRRRREEAAATTTT! \r\n\r\n👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍"}} | {
"id": 147944282,
"name": "nss-evening-cohort-8/bandz-dairy-queens",
"url": "https://api.github.com/repos/nss-evening-cohort-8/bandz-dairy-queens"
} | {
"id": 41173019,
"login": "meeshysu",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/41173019?",
"url": "https://api.github.com/users/meeshysu"
} | {
"id": 38958652,
"login": "nss-evening-cohort-8",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/38958652?",
"url": "https://api.github.com/orgs/nss-evening-cohort-8"
} | 2018-09-13T00:35:03 | 8256713404 | {"actor":{"display_login":"meeshysu"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/opendevstack/tailor/issues/47","repository_url":"https://api.github.com/repos/opendevstack/tailor","labels_url":"https://api.github.com/repos/opendevstack/tailor/issues/47/labels{/name}","comments_url":"https://api.github.com/repos/opendevstack/tailor/issues/47/comments","events_url":"https://api.github.com/repos/opendevstack/tailor/issues/47/events","html_url":"https://github.com/opendevstack/tailor/issues/47","id":350400236,"node_id":"MDU6SXNzdWUzNTA0MDAyMzY=","number":47,"title":"Expand environment variables","user":{"login":"michaelsauter","id":215455,"node_id":"MDQ6VXNlcjIxNTQ1NQ==","avatar_url":"https://avatars1.githubusercontent.com/u/215455?v=4","gravatar_id":"","url":"https://api.github.com/users/michaelsauter","html_url":"https://github.com/michaelsauter","followers_url":"https://api.github.com/users/michaelsauter/followers","following_url":"https://api.github.com/users/michaelsauter/following{/other_user}","gists_url":"https://api.github.com/users/michaelsauter/gists{/gist_id}","starred_url":"https://api.github.com/users/michaelsauter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/michaelsauter/subscriptions","organizations_url":"https://api.github.com/users/michaelsauter/orgs","repos_url":"https://api.github.com/users/michaelsauter/repos","events_url":"https://api.github.com/users/michaelsauter/events{/privacy}","received_events_url":"https://api.github.com/users/michaelsauter/received_events","type":"User","site_admin":false},"labels":[{"id":991690549,"node_id":"MDU6TGFiZWw5OTE2OTA1NDk=","url":"https://api.github.com/repos/opendevstack/tailor/labels/enhancement","name":"enhancement","color":"a2eeef","default":true}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-08-14T12:08:33Z","updated_at":"2018-11-16T15:36:55Z","closed_at":null,"author_association":"COLLABORATOR","body":"Tailor should expand environment variables in flags (e.g. `--param NAMESPACE=$NAMESPACE`) and in param files (e.g. `FOO=$BAR`).\r\n\r\nOne could also think about injecting some environment variables automatically, for example the value of the `--namespace` flag (which in fact might be given as `TAILOR_NAMESPACE` by the user). However it is unclear how to consume it because if we simply set them as params, `oc` will (rightly) complain about unknown parameters ..."},"comment":{"url":"https://api.github.com/repos/opendevstack/tailor/issues/comments/439431540","html_url":"https://github.com/opendevstack/tailor/issues/47#issuecomment-439431540","issue_url":"https://api.github.com/repos/opendevstack/tailor/issues/47","id":439431540,"node_id":"MDEyOklzc3VlQ29tbWVudDQzOTQzMTU0MA==","user":{"login":"michaelsauter","id":215455,"node_id":"MDQ6VXNlcjIxNTQ1NQ==","avatar_url":"https://avatars1.githubusercontent.com/u/215455?v=4","gravatar_id":"","url":"https://api.github.com/users/michaelsauter","html_url":"https://github.com/michaelsauter","followers_url":"https://api.github.com/users/michaelsauter/followers","following_url":"https://api.github.com/users/michaelsauter/following{/other_user}","gists_url":"https://api.github.com/users/michaelsauter/gists{/gist_id}","starred_url":"https://api.github.com/users/michaelsauter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/michaelsauter/subscriptions","organizations_url":"https://api.github.com/users/michaelsauter/orgs","repos_url":"https://api.github.com/users/michaelsauter/repos","events_url":"https://api.github.com/users/michaelsauter/events{/privacy}","received_events_url":"https://api.github.com/users/michaelsauter/received_events","type":"User","site_admin":false},"created_at":"2018-11-16T15:36:55Z","updated_at":"2018-11-16T15:36:55Z","author_association":"COLLABORATOR","body":"We now pass the namespace if it is defined in the template.\r\n\r\nWe should also expand environment variables in params. In param files however, it is much more difficult as we would require users to escape any `$` characters which do not declare an env var. I think for this reason, we should not expand env vars in param files at all."}} | {
"id": 140703020,
"name": "opendevstack/tailor",
"url": "https://api.github.com/repos/opendevstack/tailor"
} | {
"id": 215455,
"login": "michaelsauter",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/215455?",
"url": "https://api.github.com/users/michaelsauter"
} | {
"id": 38974438,
"login": "opendevstack",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/38974438?",
"url": "https://api.github.com/orgs/opendevstack"
} | 2018-11-16T15:36:55 | 8602978449 | {"actor":{"display_login":"michaelsauter"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/chainmaporg/cmp/issues/195","repository_url":"https://api.github.com/repos/chainmaporg/cmp","labels_url":"https://api.github.com/repos/chainmaporg/cmp/issues/195/labels{/name}","comments_url":"https://api.github.com/repos/chainmaporg/cmp/issues/195/comments","events_url":"https://api.github.com/repos/chainmaporg/cmp/issues/195/events","html_url":"https://github.com/chainmaporg/cmp/pull/195","id":353597750,"node_id":"MDExOlB1bGxSZXF1ZXN0MjEwNjA3NjAw","number":195,"title":"Added Table solutionmap and insert statements. Node.js code to be add…","user":{"login":"gezhao","id":37604679,"node_id":"MDQ6VXNlcjM3NjA0Njc5","avatar_url":"https://avatars1.githubusercontent.com/u/37604679?v=4","gravatar_id":"","url":"https://api.github.com/users/gezhao","html_url":"https://github.com/gezhao","followers_url":"https://api.github.com/users/gezhao/followers","following_url":"https://api.github.com/users/gezhao/following{/other_user}","gists_url":"https://api.github.com/users/gezhao/gists{/gist_id}","starred_url":"https://api.github.com/users/gezhao/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gezhao/subscriptions","organizations_url":"https://api.github.com/users/gezhao/orgs","repos_url":"https://api.github.com/users/gezhao/repos","events_url":"https://api.github.com/users/gezhao/events{/privacy}","received_events_url":"https://api.github.com/users/gezhao/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-08-24T00:07:45Z","updated_at":"2018-08-25T03:30:04Z","closed_at":null,"author_association":"CONTRIBUTOR","pull_request":{"url":"https://api.github.com/repos/chainmaporg/cmp/pulls/195","html_url":"https://github.com/chainmaporg/cmp/pull/195","diff_url":"https://github.com/chainmaporg/cmp/pull/195.diff","patch_url":"https://github.com/chainmaporg/cmp/pull/195.patch"},"body":"A Pull request for Lawrence"},"comment":{"url":"https://api.github.com/repos/chainmaporg/cmp/issues/comments/415930592","html_url":"https://github.com/chainmaporg/cmp/pull/195#issuecomment-415930592","issue_url":"https://api.github.com/repos/chainmaporg/cmp/issues/195","id":415930592,"node_id":"MDEyOklzc3VlQ29tbWVudDQxNTkzMDU5Mg==","user":{"login":"gezhao","id":37604679,"node_id":"MDQ6VXNlcjM3NjA0Njc5","avatar_url":"https://avatars1.githubusercontent.com/u/37604679?v=4","gravatar_id":"","url":"https://api.github.com/users/gezhao","html_url":"https://github.com/gezhao","followers_url":"https://api.github.com/users/gezhao/followers","following_url":"https://api.github.com/users/gezhao/following{/other_user}","gists_url":"https://api.github.com/users/gezhao/gists{/gist_id}","starred_url":"https://api.github.com/users/gezhao/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gezhao/subscriptions","organizations_url":"https://api.github.com/users/gezhao/orgs","repos_url":"https://api.github.com/users/gezhao/repos","events_url":"https://api.github.com/users/gezhao/events{/privacy}","received_events_url":"https://api.github.com/users/gezhao/received_events","type":"User","site_admin":false},"created_at":"2018-08-25T03:30:04Z","updated_at":"2018-08-25T03:30:04Z","author_association":"CONTRIBUTOR","body":"What is the problem for us to \"encode\" the url, what's wrong with plan text:\r\n\"https://en.wikipedia.org/wiki/Proof-of-stake\"?\r\n"}} | {
"id": 136838684,
"name": "chainmaporg/cmp",
"url": "https://api.github.com/repos/chainmaporg/cmp"
} | {
"id": 37604679,
"login": "gezhao",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/37604679?",
"url": "https://api.github.com/users/gezhao"
} | {
"id": 39069199,
"login": "chainmaporg",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39069199?",
"url": "https://api.github.com/orgs/chainmaporg"
} | 2018-08-25T03:30:04 | 8166047556 | {"actor":{"display_login":"gezhao"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/inspec/inspec/issues/3165","repository_url":"https://api.github.com/repos/inspec/inspec","labels_url":"https://api.github.com/repos/inspec/inspec/issues/3165/labels{/name}","comments_url":"https://api.github.com/repos/inspec/inspec/issues/3165/comments","events_url":"https://api.github.com/repos/inspec/inspec/issues/3165/events","html_url":"https://github.com/inspec/inspec/issues/3165","id":334989112,"node_id":"MDU6SXNzdWUzMzQ5ODkxMTI=","number":3165,"title":"RFC: Resource Introspection Facility","user":{"login":"clintoncwolfe","id":156460,"node_id":"MDQ6VXNlcjE1NjQ2MA==","avatar_url":"https://avatars3.githubusercontent.com/u/156460?v=4","gravatar_id":"","url":"https://api.github.com/users/clintoncwolfe","html_url":"https://github.com/clintoncwolfe","followers_url":"https://api.github.com/users/clintoncwolfe/followers","following_url":"https://api.github.com/users/clintoncwolfe/following{/other_user}","gists_url":"https://api.github.com/users/clintoncwolfe/gists{/gist_id}","starred_url":"https://api.github.com/users/clintoncwolfe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/clintoncwolfe/subscriptions","organizations_url":"https://api.github.com/users/clintoncwolfe/orgs","repos_url":"https://api.github.com/users/clintoncwolfe/repos","events_url":"https://api.github.com/users/clintoncwolfe/events{/privacy}","received_events_url":"https://api.github.com/users/clintoncwolfe/received_events","type":"User","site_admin":false},"labels":[{"id":921098738,"node_id":"MDU6TGFiZWw5MjEwOTg3Mzg=","url":"https://api.github.com/repos/inspec/inspec/labels/Release:%203.x","name":"Release: 3.x","color":"cfadea","default":false},{"id":293393202,"node_id":"MDU6TGFiZWwyOTMzOTMyMDI=","url":"https://api.github.com/repos/inspec/inspec/labels/Type:%20RFC","name":"Type: RFC","color":"eb6420","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2018-06-22T19:13:07Z","updated_at":"2018-06-26T23:49:37Z","closed_at":null,"author_association":"CONTRIBUTOR","body":"### 🎛 Description\r\n\r\n🙋 feature request?\r\n\r\n### Overview\r\nEach resource currently has some metadata declared in it - name, description, platform support. This data is used both for some documentation (see inspec shell help) and some functionality (skipping due to lack of platform support). However, we can't introspect properties, methods, resource parameters, or filter criteria, because these are either not exposed, or just look like undistinguished ruby methods.\r\n\r\n### Motivating Use Cases\r\n\r\n#### inspec shell help\r\n\r\nClinton noticed that inspec shell's per-resource help is very puny compared to the web-based help. As we're in an interactive environment, if a resource knew its properties, you could get detailed help on the available properties, as well as on a particular property.\r\n\r\n#### website documentation\r\nWe're also duplicating efforts on the website. It is quite rich in some areas, but it is not consistent. Making a global change (such as adding a hotlinked table of contents, or an all-in-one resource page) is very difficult, because the help for each resource is a big blob. \r\n\r\n#### inspec shell tab completion\r\nIn insec shell, if you press tab after typing a resource name, you get about 12,000 matches. We could integrate with Pry to make that filtered.\r\n\r\n#### IDE language data\r\nInspec resource introspection data could be used to drive editor autocompletion and context help. @burtlo wrote such a plugin for Atom.\r\n\r\n#### inspec-iggy\r\n\r\nIGGY reads cloud provisioner information, including properties of cloud objects. IGGY needs to know what properties are available. Additionally, iggy needs to understand relationships between resources (for example, list all EC2 instances, ensure only the 5 we want are present - it has to know aws_ec2_instances and aws_ec2_instance are related).\r\n\r\n### Proposed approach\r\n\r\nWe could extend the resource DSL with several keywords. Then we could store this data on the resource class. We could expose it on the class; you can already access resource classes in `Inspec::Resource.registry`.\r\n\r\nFor methods - properties and matchers - introduce keywords that take the method body as a block, and store it. Each of these new DSL keywords might take arguments to provide rich information.\r\nFor example:\r\n\r\n```\r\nproperty(:color, \r\n description: 'Color of the widget',\r\n type: String) do \r\n # Property body\r\nend\r\n```\r\n\r\nA list of proposed keywords is attached.\r\n\r\n<img width=\"519\" alt=\"table-of-proposed-keywords\" src=\"https://user-images.githubusercontent.com/156460/41794833-b1ade4be-762e-11e8-8850-5f150add9ff2.png\">\r\n\r\n\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/inspec/inspec/issues/comments/400498176","html_url":"https://github.com/inspec/inspec/issues/3165#issuecomment-400498176","issue_url":"https://api.github.com/repos/inspec/inspec/issues/3165","id":400498176,"node_id":"MDEyOklzc3VlQ29tbWVudDQwMDQ5ODE3Ng==","user":{"login":"kagarmoe","id":4400151,"node_id":"MDQ6VXNlcjQ0MDAxNTE=","avatar_url":"https://avatars0.githubusercontent.com/u/4400151?v=4","gravatar_id":"","url":"https://api.github.com/users/kagarmoe","html_url":"https://github.com/kagarmoe","followers_url":"https://api.github.com/users/kagarmoe/followers","following_url":"https://api.github.com/users/kagarmoe/following{/other_user}","gists_url":"https://api.github.com/users/kagarmoe/gists{/gist_id}","starred_url":"https://api.github.com/users/kagarmoe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kagarmoe/subscriptions","organizations_url":"https://api.github.com/users/kagarmoe/orgs","repos_url":"https://api.github.com/users/kagarmoe/repos","events_url":"https://api.github.com/users/kagarmoe/events{/privacy}","received_events_url":"https://api.github.com/users/kagarmoe/received_events","type":"User","site_admin":false},"created_at":"2018-06-26T23:49:37Z","updated_at":"2018-06-26T23:49:37Z","author_association":"COLLABORATOR","body":"Docs as code! 👍 \r\n"}} | {
"id": 41571541,
"name": "inspec/inspec",
"url": "https://api.github.com/repos/inspec/inspec"
} | {
"id": 4400151,
"login": "kagarmoe",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/4400151?",
"url": "https://api.github.com/users/kagarmoe"
} | {
"id": 39202509,
"login": "inspec",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39202509?",
"url": "https://api.github.com/orgs/inspec"
} | 2018-06-26T23:49:38 | 7882635672 | {"actor":{"display_login":"kagarmoe"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/inspec/inspec-azure/issues/109","repository_url":"https://api.github.com/repos/inspec/inspec-azure","labels_url":"https://api.github.com/repos/inspec/inspec-azure/issues/109/labels{/name}","comments_url":"https://api.github.com/repos/inspec/inspec-azure/issues/109/comments","events_url":"https://api.github.com/repos/inspec/inspec-azure/issues/109/events","html_url":"https://github.com/inspec/inspec-azure/issues/109","id":347111553,"node_id":"MDU6SXNzdWUzNDcxMTE1NTM=","number":109,"title":"inspec-azure + docker (can't convert nil into Integer)","user":{"login":"marcomancuso","id":6482939,"node_id":"MDQ6VXNlcjY0ODI5Mzk=","avatar_url":"https://avatars3.githubusercontent.com/u/6482939?v=4","gravatar_id":"","url":"https://api.github.com/users/marcomancuso","html_url":"https://github.com/marcomancuso","followers_url":"https://api.github.com/users/marcomancuso/followers","following_url":"https://api.github.com/users/marcomancuso/following{/other_user}","gists_url":"https://api.github.com/users/marcomancuso/gists{/gist_id}","starred_url":"https://api.github.com/users/marcomancuso/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/marcomancuso/subscriptions","organizations_url":"https://api.github.com/users/marcomancuso/orgs","repos_url":"https://api.github.com/users/marcomancuso/repos","events_url":"https://api.github.com/users/marcomancuso/events{/privacy}","received_events_url":"https://api.github.com/users/marcomancuso/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2018-08-02T17:47:52Z","updated_at":"2018-08-03T20:53:19Z","closed_at":"2018-08-02T21:09:05Z","author_association":"NONE","body":"### 🎛 Description\r\n\r\n🐛 bug report\r\n\r\nchef/inspec:latest docker image should work with Azure Inspec\r\n\r\n### 🌍 InSpec and Platform Version\r\n\r\ninspec 2.2.50\r\nMacOS 10.13.6\r\nDocker Version 18.03.1-ce-mac65 (24312)\r\nchef/inspec:latest\r\n\r\n\r\n### 🤔 Replication Case\r\n\r\n- create a new inspec project with `inspec init`\r\n- add environment variables for AZURE credentials\r\n- create simple control:\r\n```\r\ncontrol 'Check VM properties' do\r\n describe azurerm_virtual_machine(resource_group: rg_name, name: vm_name) do\r\n it { should exist }\r\n it { should_not have_endpoint_protection_installed([]) }\r\n its('type') { should eq 'Microsoft.Compute/virtualMachines' }\r\n its('location') { should eq 'westeurope' }\r\n its('data_disk_names') { should eq [] }\r\n end\r\nend\r\n```\r\n- edit inspec.yml\r\n```\r\nname: azure-create-virtualmachine\r\ntitle: InSpec Profile\r\nmaintainer: The Authors\r\ncopyright: The Authors\r\ncopyright_email: [email protected]\r\nlicense: Apache-2.0\r\nsummary: An InSpec Compliance Profile\r\nversion: 0.1.0\r\ninspec_version: '>= 2.2.7'\r\ndepends:\r\n - name: inspec-azure\r\n git: https://github.com/inspec/inspec-azure.git\r\nsupports:\r\n - platform: azure\r\n```\r\n- from the inspec profile folder run \r\n`docker run -it -e AZURE_SUBSCRIPTION_ID=${AZURE_SUBSCRIPTION_ID} -e AZURE_CLIENT_ID=${AZURE_CLIENT_ID} -e AZURE_TENANT_ID=${AZURE_TENANT_ID} -e AZURE_CLIENT_SECRET=${AZURE_CLIENT_SECRET} — rm -v $(pwd):/share chef/inspec:latest exec . -t azure://`\r\n\r\nresult:\r\n\r\nfails with:\r\n`libraries/support/azure/authentication.rb:41:in `Integer': can't convert nil into Integer (TypeError)`\r\n\r\nBut if I get into the docker container overriding the entrypoint with\r\n`docker run --entrypoint /bin/sh -it -e AZURE_SUBSCRIPTION_ID=${AZURE_SUBSCRIPTION_ID} -e AZURE_CLIENT_ID=${AZURE_CLIENT_ID} -e AZURE_TENANT_ID=${AZURE_TENANT_ID} -e AZURE_CLIENT_SECRET=${AZURE_CLIENT_SECRET} -v $(pwd):/share chef/inspec:latest`\r\n\r\nand inside run `inspec exec . -t azure://` then it works fine\r\n\r\n### 💁 Possible Solutions\r\n\r\nN/A\r\n\r\n### 💻 Stacktrace\r\n```\r\nTraceback (most recent call last):\r\n\t43: from /usr/local/bundle/bin/inspec:23:in `<main>'\r\n\t42: from /usr/local/bundle/bin/inspec:23:in `load'\r\n\t41: from /usr/local/bundle/gems/inspec-2.2.50/bin/inspec:12:in `<top (required)>'\r\n\t40: from /usr/local/bundle/gems/thor-0.20.0/lib/thor/base.rb:466:in `start'\r\n\t39: from /usr/local/bundle/gems/thor-0.20.0/lib/thor.rb:387:in `dispatch'\r\n\t38: from /usr/local/bundle/gems/thor-0.20.0/lib/thor/invocation.rb:126:in `invoke_command'\r\n\t37: from /usr/local/bundle/gems/thor-0.20.0/lib/thor/command.rb:27:in `run'\r\n\t36: from /usr/local/bundle/gems/inspec-2.2.50/lib/inspec/cli.rb:171:in `exec'\r\n\t35: from /usr/local/bundle/gems/inspec-2.2.50/lib/inspec/runner.rb:103:in `run'\r\n\t34: from /usr/local/bundle/gems/inspec-2.2.50/lib/inspec/runner.rb:82:in `load'\r\n\t33: from /usr/local/bundle/gems/inspec-2.2.50/lib/inspec/runner.rb:82:in `each'\r\n\t32: from /usr/local/bundle/gems/inspec-2.2.50/lib/inspec/runner.rb:93:in `block in load'\r\n\t31: from /usr/local/bundle/gems/inspec-2.2.50/lib/inspec/profile.rb:168:in `collect_tests'\r\n\t30: from /usr/local/bundle/gems/inspec-2.2.50/lib/inspec/profile.rb:168:in `each'\r\n\t29: from /usr/local/bundle/gems/inspec-2.2.50/lib/inspec/profile.rb:171:in `block in collect_tests'\r\n\t28: from /usr/local/bundle/gems/inspec-2.2.50/lib/inspec/profile_context.rb:142:in `load_control_file'\r\n\t27: from /usr/local/bundle/gems/inspec-2.2.50/lib/inspec/profile_context.rb:158:in `load_with_context'\r\n\t26: from /usr/local/bundle/gems/inspec-2.2.50/lib/inspec/profile_context.rb:158:in `instance_eval'\r\n\t25: from ./controls/example.rb:9:in `load_with_context'\r\n\t24: from /usr/local/bundle/gems/inspec-2.2.50/lib/inspec/resource.rb:51:in `block (3 levels) in create_dsl'\r\n\t23: from /usr/local/bundle/gems/inspec-2.2.50/lib/inspec/resource.rb:51:in `new'\r\n\t22: from /usr/local/bundle/gems/inspec-2.2.50/lib/inspec/plugins/resource.rb:68:in `initialize'\r\n\t21: from libraries/azurerm_virtual_machine.rb:28:in `initialize'\r\n\t20: from libraries/support/azure/management.rb:102:in `virtual_machine'\r\n\t19: from libraries/support/azure/service.rb:58:in `get'\r\n\t18: from libraries/support/azure/service.rb:11:in `fetch'\r\n\t17: from libraries/support/azure/service.rb:11:in `fetch'\r\n\t16: from libraries/support/azure/service.rb:11:in `block in fetch'\r\n\t15: from libraries/support/azure/service.rb:59:in `block in get'\r\n\t14: from libraries/support/azure/rest.rb:17:in `get'\r\n\t13: from /usr/local/bundle/gems/faraday-0.15.2/lib/faraday/connection.rb:138:in `get'\r\n\t12: from /usr/local/bundle/gems/faraday-0.15.2/lib/faraday/connection.rb:379:in `run_request'\r\n\t11: from /usr/local/bundle/gems/faraday-0.15.2/lib/faraday/connection.rb:394:in `build_request'\r\n\t10: from /usr/local/bundle/gems/faraday-0.15.2/lib/faraday/request.rb:25:in `create'\r\n\t 9: from /usr/local/bundle/gems/faraday-0.15.2/lib/faraday/request.rb:25:in `tap'\r\n\t 8: from /usr/local/bundle/gems/faraday-0.15.2/lib/faraday/request.rb:26:in `block in create'\r\n\t 7: from /usr/local/bundle/gems/faraday-0.15.2/lib/faraday/connection.rb:398:in `block in build_request'\r\n\t 6: from /usr/local/bundle/gems/faraday-0.15.2/lib/faraday/connection.rb:384:in `block in run_request'\r\n\t 5: from /usr/local/bundle/gems/faraday-0.15.2/lib/faraday/connection.rb:140:in `block in get'\r\n\t 4: from libraries/support/azure/rest.rb:21:in `block in get'\r\n\t 3: from libraries/support/azure/rest.rb:44:in `authorization_header'\r\n\t 2: from libraries/support/azure/authentication.rb:19:in `authentication_header'\r\n\t 1: from libraries/support/azure/authentication.rb:41:in `acquire_token'\r\nlibraries/support/azure/authentication.rb:41:in `Integer': can't convert nil into Integer (TypeError)\r\n````\r\n"},"comment":{"url":"https://api.github.com/repos/inspec/inspec-azure/issues/comments/410373457","html_url":"https://github.com/inspec/inspec-azure/issues/109#issuecomment-410373457","issue_url":"https://api.github.com/repos/inspec/inspec-azure/issues/109","id":410373457,"node_id":"MDEyOklzc3VlQ29tbWVudDQxMDM3MzQ1Nw==","user":{"login":"dmccown","id":213237,"node_id":"MDQ6VXNlcjIxMzIzNw==","avatar_url":"https://avatars1.githubusercontent.com/u/213237?v=4","gravatar_id":"","url":"https://api.github.com/users/dmccown","html_url":"https://github.com/dmccown","followers_url":"https://api.github.com/users/dmccown/followers","following_url":"https://api.github.com/users/dmccown/following{/other_user}","gists_url":"https://api.github.com/users/dmccown/gists{/gist_id}","starred_url":"https://api.github.com/users/dmccown/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmccown/subscriptions","organizations_url":"https://api.github.com/users/dmccown/orgs","repos_url":"https://api.github.com/users/dmccown/repos","events_url":"https://api.github.com/users/dmccown/events{/privacy}","received_events_url":"https://api.github.com/users/dmccown/received_events","type":"User","site_admin":false},"created_at":"2018-08-03T20:53:19Z","updated_at":"2018-08-03T20:53:19Z","author_association":"CONTRIBUTOR","body":"@marcomancuso Did you find erroneous documentation that led to you forgetting the dash? I just wanted to make sure we don't have an error in documentation we need to correct. \r\n\r\nThanks!"}} | {
"id": 79553515,
"name": "inspec/inspec-azure",
"url": "https://api.github.com/repos/inspec/inspec-azure"
} | {
"id": 213237,
"login": "dmccown",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/213237?",
"url": "https://api.github.com/users/dmccown"
} | {
"id": 39202509,
"login": "inspec",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39202509?",
"url": "https://api.github.com/orgs/inspec"
} | 2018-08-03T20:53:19 | 8064769065 | {"actor":{"display_login":"dmccown"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/nep-pack/NonlinearEigenproblems.jl/issues/107","repository_url":"https://api.github.com/repos/nep-pack/NonlinearEigenproblems.jl","labels_url":"https://api.github.com/repos/nep-pack/NonlinearEigenproblems.jl/issues/107/labels{/name}","comments_url":"https://api.github.com/repos/nep-pack/NonlinearEigenproblems.jl/issues/107/comments","events_url":"https://api.github.com/repos/nep-pack/NonlinearEigenproblems.jl/issues/107/events","html_url":"https://github.com/nep-pack/NonlinearEigenproblems.jl/pull/107","id":362853880,"node_id":"MDExOlB1bGxSZXF1ZXN0MjE3NDU1Mzky","number":107,"title":"SPMF rewrite2: compute_Mder + sparsity alignment","user":{"login":"jarlebring","id":11163595,"node_id":"MDQ6VXNlcjExMTYzNTk1","avatar_url":"https://avatars3.githubusercontent.com/u/11163595?v=4","gravatar_id":"","url":"https://api.github.com/users/jarlebring","html_url":"https://github.com/jarlebring","followers_url":"https://api.github.com/users/jarlebring/followers","following_url":"https://api.github.com/users/jarlebring/following{/other_user}","gists_url":"https://api.github.com/users/jarlebring/gists{/gist_id}","starred_url":"https://api.github.com/users/jarlebring/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jarlebring/subscriptions","organizations_url":"https://api.github.com/users/jarlebring/orgs","repos_url":"https://api.github.com/users/jarlebring/repos","events_url":"https://api.github.com/users/jarlebring/events{/privacy}","received_events_url":"https://api.github.com/users/jarlebring/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":8,"created_at":"2018-09-22T12:36:19Z","updated_at":"2018-09-24T12:05:24Z","closed_at":null,"author_association":"CONTRIBUTOR","pull_request":{"url":"https://api.github.com/repos/nep-pack/NonlinearEigenproblems.jl/pulls/107","html_url":"https://github.com/nep-pack/NonlinearEigenproblems.jl/pull/107","diff_url":"https://github.com/nep-pack/NonlinearEigenproblems.jl/pull/107.diff","patch_url":"https://github.com/nep-pack/NonlinearEigenproblems.jl/pull/107.patch"},"body":"Here is the second round of SPMF rewrite:\r\n\r\n* After moving the sparsity alignment trick to the constructor, I was able to remove the need for `As` in `SPMF_NEP_sparse`. This lead to the fact that SPMF_dense and SPMF_sparse were so similar that they could be merged to one type again. Quite a bit of cleanup work. Not so much efficiency issues. \r\n* I tried to factorize the code into helper functions, since I believe the same problems will later need to be solved for more sparse AbstractSPMF, e.g., DEP{SparseMatrixCSC}. \r\n* I wrote a specialized version of `compute_Mder(::SPMF_NEP`. This lead to a huge improvement for higher derivatives, mostly due to how slow compute_Mder_from_MM is when size(nep) is large:\r\n\r\n```julia\r\njulia> nep=nep_gallery(\"qdep0\");\r\njulia> @btime Z=compute_Mder_from_MM(nep,λ,1); # Old\r\n 4.377 s (158 allocations: 1.27 GiB)\r\njulia> @btime Z=compute_Mder(nep,λ,1); # New\r\n 168.745 μs (138 allocations: 818.25 KiB)\r\n```\r\nThe only method I know using derivative matrices (and not compute_Mlincomb) is mslp, so there will be some benefits. \r\n\r\n@maxbennedich: I moved around the sparsity alignment code. The sparsity alignment was very important for you in the nleigs-tests. Do you think you could see that the benefits are not lost? Or tell me how to check it. "},"comment":{"url":"https://api.github.com/repos/nep-pack/NonlinearEigenproblems.jl/issues/comments/423952180","html_url":"https://github.com/nep-pack/NonlinearEigenproblems.jl/pull/107#issuecomment-423952180","issue_url":"https://api.github.com/repos/nep-pack/NonlinearEigenproblems.jl/issues/107","id":423952180,"node_id":"MDEyOklzc3VlQ29tbWVudDQyMzk1MjE4MA==","user":{"login":"maxbennedich","id":1812661,"node_id":"MDQ6VXNlcjE4MTI2NjE=","avatar_url":"https://avatars2.githubusercontent.com/u/1812661?v=4","gravatar_id":"","url":"https://api.github.com/users/maxbennedich","html_url":"https://github.com/maxbennedich","followers_url":"https://api.github.com/users/maxbennedich/followers","following_url":"https://api.github.com/users/maxbennedich/following{/other_user}","gists_url":"https://api.github.com/users/maxbennedich/gists{/gist_id}","starred_url":"https://api.github.com/users/maxbennedich/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/maxbennedich/subscriptions","organizations_url":"https://api.github.com/users/maxbennedich/orgs","repos_url":"https://api.github.com/users/maxbennedich/repos","events_url":"https://api.github.com/users/maxbennedich/events{/privacy}","received_events_url":"https://api.github.com/users/maxbennedich/received_events","type":"User","site_admin":false},"created_at":"2018-09-24T12:05:24Z","updated_at":"2018-09-24T12:05:24Z","author_association":"CONTRIBUTOR","body":"Test updated here for now: https://github.com/nep-pack/NonlinearEigenproblems.jl/commit/0ccf7fb35b6ac50d7bbf65b1a7e38d5b6ede3f1e"}} | {
"id": 134849279,
"name": "nep-pack/NonlinearEigenproblems.jl",
"url": "https://api.github.com/repos/nep-pack/NonlinearEigenproblems.jl"
} | {
"id": 1812661,
"login": "maxbennedich",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1812661?",
"url": "https://api.github.com/users/maxbennedich"
} | {
"id": 39416391,
"login": "nep-pack",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39416391?",
"url": "https://api.github.com/orgs/nep-pack"
} | 2018-09-24T12:05:25 | 8310789388 | {"actor":{"display_login":"maxbennedich"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/sakura-editor/sakura/issues/403","repository_url":"https://api.github.com/repos/sakura-editor/sakura","labels_url":"https://api.github.com/repos/sakura-editor/sakura/issues/403/labels{/name}","comments_url":"https://api.github.com/repos/sakura-editor/sakura/issues/403/comments","events_url":"https://api.github.com/repos/sakura-editor/sakura/issues/403/events","html_url":"https://github.com/sakura-editor/sakura/pull/403","id":356695414,"node_id":"MDExOlB1bGxSZXF1ZXN0MjEyODg3NDQ4","number":403,"title":"grep/grep 置換で除外ファイル、除外フォルダを指定できるようにする","user":{"login":"m-tmatma","id":5567450,"node_id":"MDQ6VXNlcjU1Njc0NTA=","avatar_url":"https://avatars2.githubusercontent.com/u/5567450?v=4","gravatar_id":"","url":"https://api.github.com/users/m-tmatma","html_url":"https://github.com/m-tmatma","followers_url":"https://api.github.com/users/m-tmatma/followers","following_url":"https://api.github.com/users/m-tmatma/following{/other_user}","gists_url":"https://api.github.com/users/m-tmatma/gists{/gist_id}","starred_url":"https://api.github.com/users/m-tmatma/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/m-tmatma/subscriptions","organizations_url":"https://api.github.com/users/m-tmatma/orgs","repos_url":"https://api.github.com/users/m-tmatma/repos","events_url":"https://api.github.com/users/m-tmatma/events{/privacy}","received_events_url":"https://api.github.com/users/m-tmatma/received_events","type":"User","site_admin":false},"labels":[{"id":938179745,"node_id":"MDU6TGFiZWw5MzgxNzk3NDU=","url":"https://api.github.com/repos/sakura-editor/sakura/labels/enhancement","name":"enhancement","color":"a2eeef","default":true}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/sakura-editor/sakura/milestones/1","html_url":"https://github.com/sakura-editor/sakura/milestone/1","labels_url":"https://api.github.com/repos/sakura-editor/sakura/milestones/1/labels","id":3390252,"node_id":"MDk6TWlsZXN0b25lMzM5MDI1Mg==","number":1,"title":"next release","description":"バージョン番号が確定したらマイルストーン名を変えます","creator":{"login":"kobake","id":2929454,"node_id":"MDQ6VXNlcjI5Mjk0NTQ=","avatar_url":"https://avatars1.githubusercontent.com/u/2929454?v=4","gravatar_id":"","url":"https://api.github.com/users/kobake","html_url":"https://github.com/kobake","followers_url":"https://api.github.com/users/kobake/followers","following_url":"https://api.github.com/users/kobake/following{/other_user}","gists_url":"https://api.github.com/users/kobake/gists{/gist_id}","starred_url":"https://api.github.com/users/kobake/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kobake/subscriptions","organizations_url":"https://api.github.com/users/kobake/orgs","repos_url":"https://api.github.com/users/kobake/repos","events_url":"https://api.github.com/users/kobake/events{/privacy}","received_events_url":"https://api.github.com/users/kobake/received_events","type":"User","site_admin":false},"open_issues":17,"closed_issues":318,"state":"open","created_at":"2018-05-31T12:48:23Z","updated_at":"2018-09-28T22:55:44Z","due_on":null,"closed_at":null},"comments":17,"created_at":"2018-09-04T08:02:07Z","updated_at":"2018-09-29T11:43:48Z","closed_at":null,"author_association":"MEMBER","pull_request":{"url":"https://api.github.com/repos/sakura-editor/sakura/pulls/403","html_url":"https://github.com/sakura-editor/sakura/pull/403","diff_url":"https://github.com/sakura-editor/sakura/pull/403.diff","patch_url":"https://github.com/sakura-editor/sakura/pull/403.patch"},"body":"#75: grep/grep 置換で除外ファイル、除外フォルダを指定できるようにする\r\n\r\n- [x] 除外ファイル、除外フォルダを管理するために共有メモリを拡張する\r\n- [x] 共有メモリを修正したので N_SHAREDATA_VERSION を 173 に変更する\r\n- [x] grep ダイアログに 除外ファイル、除外フォルダを入力できるようにする\r\n- [x] grep 置換 ダイアログに 除外ファイル、除外フォルダを入力できるようにする\r\n- [x] HTML ヘルプに grep ダイアログの 除外ファイル、除外フォルダ設定の説明を追加する\r\n- [x] HTML ヘルプに grep 置換 ダイアログの 除外ファイル、除外フォルダ設定の説明を追加する\r\n- [x] 除外ファイル、除外フォルダ設定項目に対してコンテキストヘルプを追加する\r\n- [x] 除外ファイル、除外フォルダ設定の履歴を記録して、設定ファイルに保存、読み込みできるようにする\r\n- [x] sakura_core/_main/CCommandLine.cpp でコマンドラインのパラメータ (-GEXCLUDEFILE および -GEXCLUDEFOLDER) を追加する\r\n- [x] HTML ヘルプに コマンドラインのパラメータ (-GEXCLUDEFILE および -GEXCLUDEFOLDER) を追加する\r\n- [x] sakura_core/_main/CControlTray.cpp のコマンドラインの部分のテスト方法\r\n\r\nコマンドラインのパラメータは以下のような感じでテストできる。\r\n\r\n`sakura.exe -GREPMODE -GKEY=\"sakura\" -GFILE=\"*.c;*.h\" -GEXCLUDEFILE=\"*.c\" -GEXCLUDEFOLDER=\".git;.svn;.vs\" -GFOLDER=\"C:\\gitwork\\SakuraEditor\" -GOPT=\"S\"`\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/sakura-editor/sakura/issues/comments/425638670","html_url":"https://github.com/sakura-editor/sakura/pull/403#issuecomment-425638670","issue_url":"https://api.github.com/repos/sakura-editor/sakura/issues/403","id":425638670,"node_id":"MDEyOklzc3VlQ29tbWVudDQyNTYzODY3MA==","user":{"login":"m-tmatma","id":5567450,"node_id":"MDQ6VXNlcjU1Njc0NTA=","avatar_url":"https://avatars2.githubusercontent.com/u/5567450?v=4","gravatar_id":"","url":"https://api.github.com/users/m-tmatma","html_url":"https://github.com/m-tmatma","followers_url":"https://api.github.com/users/m-tmatma/followers","following_url":"https://api.github.com/users/m-tmatma/following{/other_user}","gists_url":"https://api.github.com/users/m-tmatma/gists{/gist_id}","starred_url":"https://api.github.com/users/m-tmatma/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/m-tmatma/subscriptions","organizations_url":"https://api.github.com/users/m-tmatma/orgs","repos_url":"https://api.github.com/users/m-tmatma/repos","events_url":"https://api.github.com/users/m-tmatma/events{/privacy}","received_events_url":"https://api.github.com/users/m-tmatma/received_events","type":"User","site_admin":false},"created_at":"2018-09-29T11:43:48Z","updated_at":"2018-09-29T11:43:48Z","author_association":"MEMBER","body":"> > その処理を変えずに対応するとなると、GUI から渡された 除外ファイル、除外フォルダの情報をパースして内部処理に渡すときにそれを現状の ファイルパターンの仕様 (先頭に ! または #) をくっつけることになります。\r\n> \r\n> 普通そうしますよね?\r\n\r\nそういう対応をすること自体に対して同意していないです。\r\n新たにメンテしにくいコードを生むことになります。\r\n\r\nコマンドラインの追加に関しては反対なら落としてもいいとは思いますが、\r\n内部処理に関してはそんなトリッキーなメンテしにくいコードを\r\n導入することがいいとは思えないです。\r\n\r\n\r\n"}} | {
"id": 134057969,
"name": "sakura-editor/sakura",
"url": "https://api.github.com/repos/sakura-editor/sakura"
} | {
"id": 5567450,
"login": "m-tmatma",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/5567450?",
"url": "https://api.github.com/users/m-tmatma"
} | {
"id": 39432189,
"login": "sakura-editor",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39432189?",
"url": "https://api.github.com/orgs/sakura-editor"
} | 2018-09-29T11:43:48 | 8342051082 | {"actor":{"display_login":"m-tmatma"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/sakura-editor/sakura/issues/104","repository_url":"https://api.github.com/repos/sakura-editor/sakura","labels_url":"https://api.github.com/repos/sakura-editor/sakura/issues/104/labels{/name}","comments_url":"https://api.github.com/repos/sakura-editor/sakura/issues/104/comments","events_url":"https://api.github.com/repos/sakura-editor/sakura/issues/104/events","html_url":"https://github.com/sakura-editor/sakura/issues/104","id":331214643,"node_id":"MDU6SXNzdWUzMzEyMTQ2NDM=","number":104,"title":"[改善要望] Windows 10 のスタートメニューに対応してほしい","user":{"login":"berryzplus","id":3253151,"node_id":"MDQ6VXNlcjMyNTMxNTE=","avatar_url":"https://avatars0.githubusercontent.com/u/3253151?v=4","gravatar_id":"","url":"https://api.github.com/users/berryzplus","html_url":"https://github.com/berryzplus","followers_url":"https://api.github.com/users/berryzplus/followers","following_url":"https://api.github.com/users/berryzplus/following{/other_user}","gists_url":"https://api.github.com/users/berryzplus/gists{/gist_id}","starred_url":"https://api.github.com/users/berryzplus/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/berryzplus/subscriptions","organizations_url":"https://api.github.com/users/berryzplus/orgs","repos_url":"https://api.github.com/users/berryzplus/repos","events_url":"https://api.github.com/users/berryzplus/events{/privacy}","received_events_url":"https://api.github.com/users/berryzplus/received_events","type":"User","site_admin":false},"labels":[{"id":938179745,"node_id":"MDU6TGFiZWw5MzgxNzk3NDU=","url":"https://api.github.com/repos/sakura-editor/sakura/labels/enhancement","name":"enhancement","color":"a2eeef","default":true},{"id":960876480,"node_id":"MDU6TGFiZWw5NjA4NzY0ODA=","url":"https://api.github.com/repos/sakura-editor/sakura/labels/installer","name":"installer","color":"f9d0c4","default":false},{"id":960884545,"node_id":"MDU6TGFiZWw5NjA4ODQ1NDU=","url":"https://api.github.com/repos/sakura-editor/sakura/labels/research","name":"research","color":"1daa40","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2018-06-11T14:31:44Z","updated_at":"2018-06-11T23:28:13Z","closed_at":null,"author_association":"CONTRIBUTOR","body":"## 目的\r\nサクラエディタを windows 10 で使うときの利便性を向上させる。\r\n\r\n## 経緯\r\nインストーラでインストールしたサクラエディタを、\r\nスタートメニューから見付けられない人を見かけた。\r\nwindows 10 のスタートメニューを眺めてみると、\r\n実行ファイルを起動するリンクが直接並べてあるものが多い。\r\n他アプリの起動になれた人にとっては確かに探しづらいかもしれないと感じた。\r\n\r\n## 問題\r\nwindows 10 ではスタートメニューの表示方法が変わったので従来通りだと少し合わない。\r\n\r\n\r\n## 対応策\r\nインストーラにwindowsのバージョン判定を仕込み、\r\nwin10の場合だけスタートメニュー作成方法を変えるようにする。\r\n\r\n## 担当メンバー\r\n* 時間がとれる人\r\n* windows scripting host の script が書ける人\r\n* Inno Setup 5(pascal script)を 修正できる人\r\n **立候補歓迎です** :smile:\r\n\r\n## 実施時期\r\nx64対応が落ち着いてから開始。\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/sakura-editor/sakura/issues/comments/396418203","html_url":"https://github.com/sakura-editor/sakura/issues/104#issuecomment-396418203","issue_url":"https://api.github.com/repos/sakura-editor/sakura/issues/104","id":396418203,"node_id":"MDEyOklzc3VlQ29tbWVudDM5NjQxODIwMw==","user":{"login":"KENCHjp","id":39618965,"node_id":"MDQ6VXNlcjM5NjE4OTY1","avatar_url":"https://avatars2.githubusercontent.com/u/39618965?v=4","gravatar_id":"","url":"https://api.github.com/users/KENCHjp","html_url":"https://github.com/KENCHjp","followers_url":"https://api.github.com/users/KENCHjp/followers","following_url":"https://api.github.com/users/KENCHjp/following{/other_user}","gists_url":"https://api.github.com/users/KENCHjp/gists{/gist_id}","starred_url":"https://api.github.com/users/KENCHjp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/KENCHjp/subscriptions","organizations_url":"https://api.github.com/users/KENCHjp/orgs","repos_url":"https://api.github.com/users/KENCHjp/repos","events_url":"https://api.github.com/users/KENCHjp/events{/privacy}","received_events_url":"https://api.github.com/users/KENCHjp/received_events","type":"User","site_admin":false},"created_at":"2018-06-11T23:28:13Z","updated_at":"2018-06-11T23:28:13Z","author_association":"MEMBER","body":"一応三点該当してますが能力が伴うかとGitHub超不慣れが足かせ。\r\n一つ質問ですがWSHはなぜに必要なのでしょう?"}} | {
"id": 134057969,
"name": "sakura-editor/sakura",
"url": "https://api.github.com/repos/sakura-editor/sakura"
} | {
"id": 39618965,
"login": "KENCHjp",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39618965?",
"url": "https://api.github.com/users/KENCHjp"
} | {
"id": 39432189,
"login": "sakura-editor",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39432189?",
"url": "https://api.github.com/orgs/sakura-editor"
} | 2018-06-11T23:28:13 | 7809250267 | {"actor":{"display_login":"KENCHjp"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/sakura-editor/sakura/issues/414","repository_url":"https://api.github.com/repos/sakura-editor/sakura","labels_url":"https://api.github.com/repos/sakura-editor/sakura/issues/414/labels{/name}","comments_url":"https://api.github.com/repos/sakura-editor/sakura/issues/414/comments","events_url":"https://api.github.com/repos/sakura-editor/sakura/issues/414/events","html_url":"https://github.com/sakura-editor/sakura/issues/414","id":358030522,"node_id":"MDU6SXNzdWUzNTgwMzA1MjI=","number":414,"title":"タスクトレイから GREP置換ダイアログを出す機能が実装されていない","user":{"login":"m-tmatma","id":5567450,"node_id":"MDQ6VXNlcjU1Njc0NTA=","avatar_url":"https://avatars2.githubusercontent.com/u/5567450?v=4","gravatar_id":"","url":"https://api.github.com/users/m-tmatma","html_url":"https://github.com/m-tmatma","followers_url":"https://api.github.com/users/m-tmatma/followers","following_url":"https://api.github.com/users/m-tmatma/following{/other_user}","gists_url":"https://api.github.com/users/m-tmatma/gists{/gist_id}","starred_url":"https://api.github.com/users/m-tmatma/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/m-tmatma/subscriptions","organizations_url":"https://api.github.com/users/m-tmatma/orgs","repos_url":"https://api.github.com/users/m-tmatma/repos","events_url":"https://api.github.com/users/m-tmatma/events{/privacy}","received_events_url":"https://api.github.com/users/m-tmatma/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-09-07T11:29:44Z","updated_at":"2018-09-07T16:36:10Z","closed_at":null,"author_association":"MEMBER","body":"タスクトレイから GREP置換ダイアログを出す機能が実装されていない\r\n\r\ngrep ダイアログに関してはタスクトレイからメニューを出せる。\r\nしかし、GREP置換ダイアログに関しては実装されていない。\r\n\r\nhttps://github.com/sakura-editor/sakura/blob/4aa227c4aec130e1faa6a0f7da47b23fa0ca0e31/sakura_core/_main/CControlTray.cpp#L85-L90\r\n\r\nhttps://github.com/sakura-editor/sakura/blob/4aa227c4aec130e1faa6a0f7da47b23fa0ca0e31/sakura_core/_main/CControlTray.h#L124\r\n\r\n現状 grep ダイアログを出すのはコントロールプロセスなので #385 の対応がなくてもたいおう可能なはず。\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/sakura-editor/sakura/issues/comments/419496114","html_url":"https://github.com/sakura-editor/sakura/issues/414#issuecomment-419496114","issue_url":"https://api.github.com/repos/sakura-editor/sakura/issues/414","id":419496114,"node_id":"MDEyOklzc3VlQ29tbWVudDQxOTQ5NjExNA==","user":{"login":"berryzplus","id":3253151,"node_id":"MDQ6VXNlcjMyNTMxNTE=","avatar_url":"https://avatars0.githubusercontent.com/u/3253151?v=4","gravatar_id":"","url":"https://api.github.com/users/berryzplus","html_url":"https://github.com/berryzplus","followers_url":"https://api.github.com/users/berryzplus/followers","following_url":"https://api.github.com/users/berryzplus/following{/other_user}","gists_url":"https://api.github.com/users/berryzplus/gists{/gist_id}","starred_url":"https://api.github.com/users/berryzplus/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/berryzplus/subscriptions","organizations_url":"https://api.github.com/users/berryzplus/orgs","repos_url":"https://api.github.com/users/berryzplus/repos","events_url":"https://api.github.com/users/berryzplus/events{/privacy}","received_events_url":"https://api.github.com/users/berryzplus/received_events","type":"User","site_admin":false},"created_at":"2018-09-07T16:36:10Z","updated_at":"2018-09-07T16:36:10Z","author_association":"CONTRIBUTOR","body":"需要があれば対応すべきだと思います。\r\nただ、実現方法は色々あって、タスクトレイよりいい方法があると思っています。\r\n\r\nwindows7以降、ユーザアプリによるタスクトレイの使用は非推奨になっているはずで、\r\n代替手段(タスクバーアイコンからのジャンプリスト)が用意されています。\r\nジャンプリストからのコマンドをハンドルする処理はおそらく管理プロセスに実装することになりますが、外部要件が変わると実装方法も変わってくるのが自然です。\r\n\r\n> 現状 grep ダイアログを出すのはコントロールプロセス\r\n\r\nこれについて、ぼくは現状の実装が正しくないと考えています。\r\n問題というほど大きな問題ではないので issue には上げませんが、\r\n管理プロセスにGrepダイアログを表示できる機能は必要ないと考えていて、\r\nそれを実現させるためだけにプログラム構造が複雑になっているのは良くないことだと思っています。\r\n\r\nというわけで、機能導入には賛成、実装方法でCControlTrayにCGrepReplaceDialogのインスタンスを追加するのには反対です。やるなら #385 を対応して間接的に表示させられる仕組みを作る感じが良いと思っています。"}} | {
"id": 134057969,
"name": "sakura-editor/sakura",
"url": "https://api.github.com/repos/sakura-editor/sakura"
} | {
"id": 3253151,
"login": "berryzplus",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/3253151?",
"url": "https://api.github.com/users/berryzplus"
} | {
"id": 39432189,
"login": "sakura-editor",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39432189?",
"url": "https://api.github.com/orgs/sakura-editor"
} | 2018-09-07T16:36:10 | 8231655433 | {"actor":{"display_login":"berryzplus"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/proxyee-down-org/proxyee-down/issues/532","repository_url":"https://api.github.com/repos/proxyee-down-org/proxyee-down","labels_url":"https://api.github.com/repos/proxyee-down-org/proxyee-down/issues/532/labels{/name}","comments_url":"https://api.github.com/repos/proxyee-down-org/proxyee-down/issues/532/comments","events_url":"https://api.github.com/repos/proxyee-down-org/proxyee-down/issues/532/events","html_url":"https://github.com/proxyee-down-org/proxyee-down/issues/532","id":341737471,"node_id":"MDU6SXNzdWUzNDE3Mzc0NzE=","number":532,"title":"程序已打开,为何还是不能用,请赐教","user":{"login":"lee527hpu","id":41312563,"node_id":"MDQ6VXNlcjQxMzEyNTYz","avatar_url":"https://avatars0.githubusercontent.com/u/41312563?v=4","gravatar_id":"","url":"https://api.github.com/users/lee527hpu","html_url":"https://github.com/lee527hpu","followers_url":"https://api.github.com/users/lee527hpu/followers","following_url":"https://api.github.com/users/lee527hpu/following{/other_user}","gists_url":"https://api.github.com/users/lee527hpu/gists{/gist_id}","starred_url":"https://api.github.com/users/lee527hpu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lee527hpu/subscriptions","organizations_url":"https://api.github.com/users/lee527hpu/orgs","repos_url":"https://api.github.com/users/lee527hpu/repos","events_url":"https://api.github.com/users/lee527hpu/events{/privacy}","received_events_url":"https://api.github.com/users/lee527hpu/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-07-17T01:56:52Z","updated_at":"2018-07-17T06:22:50Z","closed_at":null,"author_association":"NONE","body":"之前还能用的,过一段时间后就不能用了,请大神赐教!"},"comment":{"url":"https://api.github.com/repos/proxyee-down-org/proxyee-down/issues/comments/405473023","html_url":"https://github.com/proxyee-down-org/proxyee-down/issues/532#issuecomment-405473023","issue_url":"https://api.github.com/repos/proxyee-down-org/proxyee-down/issues/532","id":405473023,"node_id":"MDEyOklzc3VlQ29tbWVudDQwNTQ3MzAyMw==","user":{"login":"lee527hpu","id":41312563,"node_id":"MDQ6VXNlcjQxMzEyNTYz","avatar_url":"https://avatars0.githubusercontent.com/u/41312563?v=4","gravatar_id":"","url":"https://api.github.com/users/lee527hpu","html_url":"https://github.com/lee527hpu","followers_url":"https://api.github.com/users/lee527hpu/followers","following_url":"https://api.github.com/users/lee527hpu/following{/other_user}","gists_url":"https://api.github.com/users/lee527hpu/gists{/gist_id}","starred_url":"https://api.github.com/users/lee527hpu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lee527hpu/subscriptions","organizations_url":"https://api.github.com/users/lee527hpu/orgs","repos_url":"https://api.github.com/users/lee527hpu/repos","events_url":"https://api.github.com/users/lee527hpu/events{/privacy}","received_events_url":"https://api.github.com/users/lee527hpu/received_events","type":"User","site_admin":false},"created_at":"2018-07-17T06:22:50Z","updated_at":"2018-07-17T06:22:50Z","author_association":"NONE","body":"点击文件下载后,出现百度网盘的链接,目前已解决,下载了EX-百度网盘脚本解决了,还是非常感谢"}} | {
"id": 108252892,
"name": "proxyee-down-org/proxyee-down",
"url": "https://api.github.com/repos/proxyee-down-org/proxyee-down"
} | {
"id": 41312563,
"login": "lee527hpu",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/41312563?",
"url": "https://api.github.com/users/lee527hpu"
} | {
"id": 39588481,
"login": "proxyee-down-org",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39588481?",
"url": "https://api.github.com/orgs/proxyee-down-org"
} | 2018-07-17T06:22:50 | 7974593212 | {"actor":{"display_login":"lee527hpu"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/GhostWriters/DockSTARTer/issues/52","repository_url":"https://api.github.com/repos/GhostWriters/DockSTARTer","labels_url":"https://api.github.com/repos/GhostWriters/DockSTARTer/issues/52/labels{/name}","comments_url":"https://api.github.com/repos/GhostWriters/DockSTARTer/issues/52/comments","events_url":"https://api.github.com/repos/GhostWriters/DockSTARTer/issues/52/events","html_url":"https://github.com/GhostWriters/DockSTARTer/issues/52","id":334479358,"node_id":"MDU6SXNzdWUzMzQ0NzkzNTg=","number":52,"title":"bug report","user":{"login":"jmcmike1","id":16820546,"node_id":"MDQ6VXNlcjE2ODIwNTQ2","avatar_url":"https://avatars3.githubusercontent.com/u/16820546?v=4","gravatar_id":"","url":"https://api.github.com/users/jmcmike1","html_url":"https://github.com/jmcmike1","followers_url":"https://api.github.com/users/jmcmike1/followers","following_url":"https://api.github.com/users/jmcmike1/following{/other_user}","gists_url":"https://api.github.com/users/jmcmike1/gists{/gist_id}","starred_url":"https://api.github.com/users/jmcmike1/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jmcmike1/subscriptions","organizations_url":"https://api.github.com/users/jmcmike1/orgs","repos_url":"https://api.github.com/users/jmcmike1/repos","events_url":"https://api.github.com/users/jmcmike1/events{/privacy}","received_events_url":"https://api.github.com/users/jmcmike1/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":10,"created_at":"2018-06-21T12:51:48Z","updated_at":"2018-06-21T13:56:01Z","closed_at":null,"author_association":"NONE","body":"<!---\r\nname: Feature request\r\nabout: Suggest an idea for this project\r\n\r\nPlease keep all feature requests on FeatHub.\r\nhttps://feathub.com/GhostWriters/DockSTARTer\r\n--->\r\n<!---\r\nname: Bug report\r\nabout: Create a report to help us improve\r\n\r\n--->\r\n**Describe the bug**\r\nA clear and concise description of what the bug is.\r\n\r\n**To Reproduce**\r\nSteps to reproduce the behavior:\r\n1. Go to '...'\r\n2. Click on '....'\r\n3. Scroll down to '....'\r\n4. See error\r\n\r\n**Expected behavior**\r\nA clear and concise description of what you expected to happen.\r\n\r\n**Screenshots**\r\nIf applicable, add screenshots to help explain your problem.\r\n\r\n**System (please complete the following information):**\r\n - OS: [e.g. Debian]\r\n - Version [e.g. 22]\r\n\r\n**Additional context**\r\nAdd any other context about the problem here.\r\n"},"comment":{"url":"https://api.github.com/repos/GhostWriters/DockSTARTer/issues/comments/399112214","html_url":"https://github.com/GhostWriters/DockSTARTer/issues/52#issuecomment-399112214","issue_url":"https://api.github.com/repos/GhostWriters/DockSTARTer/issues/52","id":399112214,"node_id":"MDEyOklzc3VlQ29tbWVudDM5OTExMjIxNA==","user":{"login":"jmcmike1","id":16820546,"node_id":"MDQ6VXNlcjE2ODIwNTQ2","avatar_url":"https://avatars3.githubusercontent.com/u/16820546?v=4","gravatar_id":"","url":"https://api.github.com/users/jmcmike1","html_url":"https://github.com/jmcmike1","followers_url":"https://api.github.com/users/jmcmike1/followers","following_url":"https://api.github.com/users/jmcmike1/following{/other_user}","gists_url":"https://api.github.com/users/jmcmike1/gists{/gist_id}","starred_url":"https://api.github.com/users/jmcmike1/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jmcmike1/subscriptions","organizations_url":"https://api.github.com/users/jmcmike1/orgs","repos_url":"https://api.github.com/users/jmcmike1/repos","events_url":"https://api.github.com/users/jmcmike1/events{/privacy}","received_events_url":"https://api.github.com/users/jmcmike1/received_events","type":"User","site_admin":false},"created_at":"2018-06-21T13:56:01Z","updated_at":"2018-06-21T13:56:01Z","author_association":"NONE","body":"mcmike@mcmikeU:~$ sudo bash ~/.docker/main.sh -g\n[sudo] password for mcmike:\nSorry, try again.\n[sudo] password for mcmike:\nCould not find\n/home/mcmike/.docker/compose/.apps/watchtower/watchtower.ports.yml file.\n\nWould you like to run your selected containers now? [Yn]y\ncouchpotato is up-to-date\nombi is up-to-date\norganizr is up-to-date\nnzbget is up-to-date\nradarr is up-to-date\nsabnzbd is up-to-date\nwatchtower is up-to-date\ndeluge is up-to-date\nhydra2 is up-to-date\ntransmission is up-to-date\nplex is up-to-date\nportainer is up-to-date\ntautulli is up-to-date\n\n\nOn Thu, Jun 21, 2018 at 9:46 AM Eric Nemchik <[email protected]>\nwrote:\n\n> Also, say yes at the prompt to bring up the containers (it will run docker-compose\n> up -d for you)\n>\n> —\n> You are receiving this because you authored the thread.\n> Reply to this email directly, view it on GitHub\n> <https://github.com/GhostWriters/DockSTARTer/issues/52#issuecomment-399108994>,\n> or mute the thread\n> <https://github.com/notifications/unsubscribe-auth/AQCpQt3nqldfn5srOkkusaipL3hFMdSCks5t-6OqgaJpZM4UyAU2>\n> .\n>\n"}} | {
"id": 134865462,
"name": "GhostWriters/DockSTARTer",
"url": "https://api.github.com/repos/GhostWriters/DockSTARTer"
} | {
"id": 16820546,
"login": "jmcmike1",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/16820546?",
"url": "https://api.github.com/users/jmcmike1"
} | {
"id": 39626469,
"login": "GhostWriters",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39626469?",
"url": "https://api.github.com/orgs/GhostWriters"
} | 2018-06-21T13:56:01 | 7858436435 | {"actor":{"display_login":"jmcmike1"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/thesofproject/sof/issues/701","repository_url":"https://api.github.com/repos/thesofproject/sof","labels_url":"https://api.github.com/repos/thesofproject/sof/issues/701/labels{/name}","comments_url":"https://api.github.com/repos/thesofproject/sof/issues/701/comments","events_url":"https://api.github.com/repos/thesofproject/sof/issues/701/events","html_url":"https://github.com/thesofproject/sof/pull/701","id":390058679,"node_id":"MDExOlB1bGxSZXF1ZXN0MjM3OTA3NzA1","number":701,"title":"uapi: fix GDB flag ABI change","user":{"login":"xiulipan","id":37825714,"node_id":"MDQ6VXNlcjM3ODI1NzE0","avatar_url":"https://avatars2.githubusercontent.com/u/37825714?v=4","gravatar_id":"","url":"https://api.github.com/users/xiulipan","html_url":"https://github.com/xiulipan","followers_url":"https://api.github.com/users/xiulipan/followers","following_url":"https://api.github.com/users/xiulipan/following{/other_user}","gists_url":"https://api.github.com/users/xiulipan/gists{/gist_id}","starred_url":"https://api.github.com/users/xiulipan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xiulipan/subscriptions","organizations_url":"https://api.github.com/users/xiulipan/orgs","repos_url":"https://api.github.com/users/xiulipan/repos","events_url":"https://api.github.com/users/xiulipan/events{/privacy}","received_events_url":"https://api.github.com/users/xiulipan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2018-12-12T04:17:36Z","updated_at":"2018-12-12T09:32:06Z","closed_at":null,"author_association":"COLLABORATOR","pull_request":{"url":"https://api.github.com/repos/thesofproject/sof/pulls/701","html_url":"https://github.com/thesofproject/sof/pull/701","diff_url":"https://github.com/thesofproject/sof/pull/701.diff","patch_url":"https://github.com/thesofproject/sof/pull/701.patch"},"body":"Move the added GDB flag into the reserved filde. This will allow the fw\r\nwork with a long term linux kernel.\r\n\r\nFixed: #695\r\nSigned-off-by: Pan Xiuli <[email protected]>"},"comment":{"url":"https://api.github.com/repos/thesofproject/sof/issues/comments/446521525","html_url":"https://github.com/thesofproject/sof/pull/701#issuecomment-446521525","issue_url":"https://api.github.com/repos/thesofproject/sof/issues/701","id":446521525,"node_id":"MDEyOklzc3VlQ29tbWVudDQ0NjUyMTUyNQ==","user":{"login":"mrajwa","id":42437674,"node_id":"MDQ6VXNlcjQyNDM3Njc0","avatar_url":"https://avatars2.githubusercontent.com/u/42437674?v=4","gravatar_id":"","url":"https://api.github.com/users/mrajwa","html_url":"https://github.com/mrajwa","followers_url":"https://api.github.com/users/mrajwa/followers","following_url":"https://api.github.com/users/mrajwa/following{/other_user}","gists_url":"https://api.github.com/users/mrajwa/gists{/gist_id}","starred_url":"https://api.github.com/users/mrajwa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mrajwa/subscriptions","organizations_url":"https://api.github.com/users/mrajwa/orgs","repos_url":"https://api.github.com/users/mrajwa/repos","events_url":"https://api.github.com/users/mrajwa/events{/privacy}","received_events_url":"https://api.github.com/users/mrajwa/received_events","type":"User","site_admin":false},"created_at":"2018-12-12T09:32:06Z","updated_at":"2018-12-12T09:32:06Z","author_association":"COLLABORATOR","body":"@xiulipan, I don't understand what this PR is trying to fix. Added '.gdb_enabled' flag into the IPC struct is aimed to provide information for the tester that gdb is enabled (so potentially they can make use of it).\r\nIn the very first comment you said \"Move the added GDB flag into the reserved filde\" but from the changes I only see you decreased the size of reserved array.\r\nSo, could you please tell, what problem are you trying to solve? It should all boil down to simple update of ABI, that is all."}} | {
"id": 135623245,
"name": "thesofproject/sof",
"url": "https://api.github.com/repos/thesofproject/sof"
} | {
"id": 42437674,
"login": "mrajwa",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/42437674?",
"url": "https://api.github.com/users/mrajwa"
} | {
"id": 39773507,
"login": "thesofproject",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39773507?",
"url": "https://api.github.com/orgs/thesofproject"
} | 2018-12-12T09:32:06 | 8739867380 | {"actor":{"display_login":"mrajwa"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/LeelaChessZero/lc0/issues/547","repository_url":"https://api.github.com/repos/LeelaChessZero/lc0","labels_url":"https://api.github.com/repos/LeelaChessZero/lc0/issues/547/labels{/name}","comments_url":"https://api.github.com/repos/LeelaChessZero/lc0/issues/547/comments","events_url":"https://api.github.com/repos/LeelaChessZero/lc0/issues/547/events","html_url":"https://github.com/LeelaChessZero/lc0/issues/547","id":386550494,"node_id":"MDU6SXNzdWUzODY1NTA0OTQ=","number":547,"title":"Cutechess fails to fetch UCI params when there is no network file","user":{"login":"mooskagh","id":11266455,"node_id":"MDQ6VXNlcjExMjY2NDU1","avatar_url":"https://avatars3.githubusercontent.com/u/11266455?v=4","gravatar_id":"","url":"https://api.github.com/users/mooskagh","html_url":"https://github.com/mooskagh","followers_url":"https://api.github.com/users/mooskagh/followers","following_url":"https://api.github.com/users/mooskagh/following{/other_user}","gists_url":"https://api.github.com/users/mooskagh/gists{/gist_id}","starred_url":"https://api.github.com/users/mooskagh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mooskagh/subscriptions","organizations_url":"https://api.github.com/users/mooskagh/orgs","repos_url":"https://api.github.com/users/mooskagh/repos","events_url":"https://api.github.com/users/mooskagh/events{/privacy}","received_events_url":"https://api.github.com/users/mooskagh/received_events","type":"User","site_admin":false},"labels":[{"id":949709005,"node_id":"MDU6TGFiZWw5NDk3MDkwMDU=","url":"https://api.github.com/repos/LeelaChessZero/lc0/labels/bug","name":"bug","color":"d73a4a","default":true}],"state":"open","locked":false,"assignee":{"login":"borg323","id":39573933,"node_id":"MDQ6VXNlcjM5NTczOTMz","avatar_url":"https://avatars2.githubusercontent.com/u/39573933?v=4","gravatar_id":"","url":"https://api.github.com/users/borg323","html_url":"https://github.com/borg323","followers_url":"https://api.github.com/users/borg323/followers","following_url":"https://api.github.com/users/borg323/following{/other_user}","gists_url":"https://api.github.com/users/borg323/gists{/gist_id}","starred_url":"https://api.github.com/users/borg323/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/borg323/subscriptions","organizations_url":"https://api.github.com/users/borg323/orgs","repos_url":"https://api.github.com/users/borg323/repos","events_url":"https://api.github.com/users/borg323/events{/privacy}","received_events_url":"https://api.github.com/users/borg323/received_events","type":"User","site_admin":false},"assignees":[{"login":"borg323","id":39573933,"node_id":"MDQ6VXNlcjM5NTczOTMz","avatar_url":"https://avatars2.githubusercontent.com/u/39573933?v=4","gravatar_id":"","url":"https://api.github.com/users/borg323","html_url":"https://github.com/borg323","followers_url":"https://api.github.com/users/borg323/followers","following_url":"https://api.github.com/users/borg323/following{/other_user}","gists_url":"https://api.github.com/users/borg323/gists{/gist_id}","starred_url":"https://api.github.com/users/borg323/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/borg323/subscriptions","organizations_url":"https://api.github.com/users/borg323/orgs","repos_url":"https://api.github.com/users/borg323/repos","events_url":"https://api.github.com/users/borg323/events{/privacy}","received_events_url":"https://api.github.com/users/borg323/received_events","type":"User","site_admin":false}],"milestone":null,"comments":0,"created_at":"2018-12-02T11:23:12Z","updated_at":"2018-12-02T16:17:33Z","closed_at":null,"author_association":"MEMBER","body":"Steps to reproduce:\r\n1. Start cutechess\r\n2. Ensure that there's no network next to ./lc0 file\r\n3. Add ./lc0 as a new engine\r\n4. Go to the parameters tab\r\n5. Note that it is empty.\r\n\r\nThe reason for that is that cutechess sends `isready` but never receives `readyok`."},"comment":{"url":"https://api.github.com/repos/LeelaChessZero/lc0/issues/comments/443519859","html_url":"https://github.com/LeelaChessZero/lc0/issues/547#issuecomment-443519859","issue_url":"https://api.github.com/repos/LeelaChessZero/lc0/issues/547","id":443519859,"node_id":"MDEyOklzc3VlQ29tbWVudDQ0MzUxOTg1OQ==","user":{"login":"borg323","id":39573933,"node_id":"MDQ6VXNlcjM5NTczOTMz","avatar_url":"https://avatars2.githubusercontent.com/u/39573933?v=4","gravatar_id":"","url":"https://api.github.com/users/borg323","html_url":"https://github.com/borg323","followers_url":"https://api.github.com/users/borg323/followers","following_url":"https://api.github.com/users/borg323/following{/other_user}","gists_url":"https://api.github.com/users/borg323/gists{/gist_id}","starred_url":"https://api.github.com/users/borg323/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/borg323/subscriptions","organizations_url":"https://api.github.com/users/borg323/orgs","repos_url":"https://api.github.com/users/borg323/repos","events_url":"https://api.github.com/users/borg323/events{/privacy}","received_events_url":"https://api.github.com/users/borg323/received_events","type":"User","site_admin":false},"created_at":"2018-12-02T16:17:33Z","updated_at":"2018-12-02T16:17:33Z","author_association":"MEMBER","body":"Simple test:\r\n```\r\n _\r\n| _ | |\r\n|_ |_ |_| v0.20.0-dev built Dec 2 2018\r\nisready\r\nerror Network weights file not found.\r\n\r\n```\r\nThere are two issues here:\r\n1. The reply `error Network weights file not found.` is not a valid uci reply. Probably should be prefaced by `info string`.\r\n2. There is no `readyok` reply as mentioned. \r\n\r\nI'll prepare a patch."}} | {
"id": 135489692,
"name": "LeelaChessZero/lc0",
"url": "https://api.github.com/repos/LeelaChessZero/lc0"
} | {
"id": 39573933,
"login": "borg323",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39573933?",
"url": "https://api.github.com/users/borg323"
} | {
"id": 39777295,
"login": "LeelaChessZero",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39777295?",
"url": "https://api.github.com/orgs/LeelaChessZero"
} | 2018-12-02T16:17:34 | 8683228386 | {"actor":{"display_login":"borg323"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/metwork-framework/mfadmin/issues/29","repository_url":"https://api.github.com/repos/metwork-framework/mfadmin","labels_url":"https://api.github.com/repos/metwork-framework/mfadmin/issues/29/labels{/name}","comments_url":"https://api.github.com/repos/metwork-framework/mfadmin/issues/29/comments","events_url":"https://api.github.com/repos/metwork-framework/mfadmin/issues/29/events","html_url":"https://github.com/metwork-framework/mfadmin/pull/29","id":383110181,"node_id":"MDExOlB1bGxSZXF1ZXN0MjMyNjU3MTgy","number":29,"title":"chore: sync common files from resources repository","user":{"login":"metworkbot","id":43267559,"node_id":"MDQ6VXNlcjQzMjY3NTU5","avatar_url":"https://avatars1.githubusercontent.com/u/43267559?v=4","gravatar_id":"","url":"https://api.github.com/users/metworkbot","html_url":"https://github.com/metworkbot","followers_url":"https://api.github.com/users/metworkbot/followers","following_url":"https://api.github.com/users/metworkbot/following{/other_user}","gists_url":"https://api.github.com/users/metworkbot/gists{/gist_id}","starred_url":"https://api.github.com/users/metworkbot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/metworkbot/subscriptions","organizations_url":"https://api.github.com/users/metworkbot/orgs","repos_url":"https://api.github.com/users/metworkbot/repos","events_url":"https://api.github.com/users/metworkbot/events{/privacy}","received_events_url":"https://api.github.com/users/metworkbot/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-11-21T13:07:42Z","updated_at":"2018-11-21T13:07:43Z","closed_at":null,"author_association":"CONTRIBUTOR","pull_request":{"url":"https://api.github.com/repos/metwork-framework/mfadmin/pulls/29","html_url":"https://github.com/metwork-framework/mfadmin/pull/29","diff_url":"https://github.com/metwork-framework/mfadmin/pull/29.diff","patch_url":"https://github.com/metwork-framework/mfadmin/pull/29.patch"},"body":"sync common files from resources repository"},"comment":{"url":"https://api.github.com/repos/metwork-framework/mfadmin/issues/comments/440656081","html_url":"https://github.com/metwork-framework/mfadmin/pull/29#issuecomment-440656081","issue_url":"https://api.github.com/repos/metwork-framework/mfadmin/issues/29","id":440656081,"node_id":"MDEyOklzc3VlQ29tbWVudDQ0MDY1NjA4MQ==","user":{"login":"metworkbot","id":43267559,"node_id":"MDQ6VXNlcjQzMjY3NTU5","avatar_url":"https://avatars1.githubusercontent.com/u/43267559?v=4","gravatar_id":"","url":"https://api.github.com/users/metworkbot","html_url":"https://github.com/metworkbot","followers_url":"https://api.github.com/users/metworkbot/followers","following_url":"https://api.github.com/users/metworkbot/following{/other_user}","gists_url":"https://api.github.com/users/metworkbot/gists{/gist_id}","starred_url":"https://api.github.com/users/metworkbot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/metworkbot/subscriptions","organizations_url":"https://api.github.com/users/metworkbot/orgs","repos_url":"https://api.github.com/users/metworkbot/repos","events_url":"https://api.github.com/users/metworkbot/events{/privacy}","received_events_url":"https://api.github.com/users/metworkbot/received_events","type":"User","site_admin":false},"created_at":"2018-11-21T13:07:43Z","updated_at":"2018-11-21T13:07:43Z","author_association":"CONTRIBUTOR","body":"\nHi ! I'm the MetworkBot.\n\nThank you for contributing a pull-request to the `integration` branch.\n\nWe will review it ASAP !\n"}} | {
"id": 150742462,
"name": "metwork-framework/mfadmin",
"url": "https://api.github.com/repos/metwork-framework/mfadmin"
} | {
"id": 43267559,
"login": "metworkbot",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/43267559?",
"url": "https://api.github.com/users/metworkbot"
} | {
"id": 39791168,
"login": "metwork-framework",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39791168?",
"url": "https://api.github.com/orgs/metwork-framework"
} | 2018-11-21T13:07:43 | 8626719374 | {"actor":{"display_login":"metworkbot"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/metwork-framework/mfdata/issues/7","repository_url":"https://api.github.com/repos/metwork-framework/mfdata","labels_url":"https://api.github.com/repos/metwork-framework/mfdata/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/metwork-framework/mfdata/issues/7/comments","events_url":"https://api.github.com/repos/metwork-framework/mfdata/issues/7/events","html_url":"https://github.com/metwork-framework/mfdata/pull/7","id":370461260,"node_id":"MDExOlB1bGxSZXF1ZXN0MjIzMTMxODEy","number":7,"title":"chore: sync common files from resources repository","user":{"login":"metworkbot","id":43267559,"node_id":"MDQ6VXNlcjQzMjY3NTU5","avatar_url":"https://avatars1.githubusercontent.com/u/43267559?v=4","gravatar_id":"","url":"https://api.github.com/users/metworkbot","html_url":"https://github.com/metworkbot","followers_url":"https://api.github.com/users/metworkbot/followers","following_url":"https://api.github.com/users/metworkbot/following{/other_user}","gists_url":"https://api.github.com/users/metworkbot/gists{/gist_id}","starred_url":"https://api.github.com/users/metworkbot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/metworkbot/subscriptions","organizations_url":"https://api.github.com/users/metworkbot/orgs","repos_url":"https://api.github.com/users/metworkbot/repos","events_url":"https://api.github.com/users/metworkbot/events{/privacy}","received_events_url":"https://api.github.com/users/metworkbot/received_events","type":"User","site_admin":false},"labels":[{"id":1067461916,"node_id":"MDU6TGFiZWwxMDY3NDYxOTE2","url":"https://api.github.com/repos/metwork-framework/mfdata/labels/Status:%20Pending","name":"Status: Pending","color":"fef2c0","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-10-16T06:42:43Z","updated_at":"2018-10-16T06:42:45Z","closed_at":null,"author_association":"NONE","pull_request":{"url":"https://api.github.com/repos/metwork-framework/mfdata/pulls/7","html_url":"https://github.com/metwork-framework/mfdata/pull/7","diff_url":"https://github.com/metwork-framework/mfdata/pull/7.diff","patch_url":"https://github.com/metwork-framework/mfdata/pull/7.patch"},"body":"sync common files from resources repository"},"comment":{"url":"https://api.github.com/repos/metwork-framework/mfdata/issues/comments/430119556","html_url":"https://github.com/metwork-framework/mfdata/pull/7#issuecomment-430119556","issue_url":"https://api.github.com/repos/metwork-framework/mfdata/issues/7","id":430119556,"node_id":"MDEyOklzc3VlQ29tbWVudDQzMDExOTU1Ng==","user":{"login":"metworkbot","id":43267559,"node_id":"MDQ6VXNlcjQzMjY3NTU5","avatar_url":"https://avatars1.githubusercontent.com/u/43267559?v=4","gravatar_id":"","url":"https://api.github.com/users/metworkbot","html_url":"https://github.com/metworkbot","followers_url":"https://api.github.com/users/metworkbot/followers","following_url":"https://api.github.com/users/metworkbot/following{/other_user}","gists_url":"https://api.github.com/users/metworkbot/gists{/gist_id}","starred_url":"https://api.github.com/users/metworkbot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/metworkbot/subscriptions","organizations_url":"https://api.github.com/users/metworkbot/orgs","repos_url":"https://api.github.com/users/metworkbot/repos","events_url":"https://api.github.com/users/metworkbot/events{/privacy}","received_events_url":"https://api.github.com/users/metworkbot/received_events","type":"User","site_admin":false},"created_at":"2018-10-16T06:42:45Z","updated_at":"2018-10-16T06:42:45Z","author_association":"NONE","body":"\nHi ! I'm the MetworkBot.\n\nThank you for contributing a pull-request to the `integration` branch.\n\nWe will review it ASAP !\n"}} | {
"id": 149602869,
"name": "metwork-framework/mfdata",
"url": "https://api.github.com/repos/metwork-framework/mfdata"
} | {
"id": 43267559,
"login": "metworkbot",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/43267559?",
"url": "https://api.github.com/users/metworkbot"
} | {
"id": 39791168,
"login": "metwork-framework",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39791168?",
"url": "https://api.github.com/orgs/metwork-framework"
} | 2018-10-16T06:42:45 | 8426194292 | {"actor":{"display_login":"metworkbot"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/YvesCoding/vuescroll/issues/55","repository_url":"https://api.github.com/repos/YvesCoding/vuescroll","labels_url":"https://api.github.com/repos/YvesCoding/vuescroll/issues/55/labels{/name}","comments_url":"https://api.github.com/repos/YvesCoding/vuescroll/issues/55/comments","events_url":"https://api.github.com/repos/YvesCoding/vuescroll/issues/55/events","html_url":"https://github.com/YvesCoding/vuescroll/issues/55","id":354619172,"node_id":"MDU6SXNzdWUzNTQ2MTkxNzI=","number":55,"title":"OffsetTop of element inside scroll","user":{"login":"Vitaliy24","id":39619716,"node_id":"MDQ6VXNlcjM5NjE5NzE2","avatar_url":"https://avatars1.githubusercontent.com/u/39619716?v=4","gravatar_id":"","url":"https://api.github.com/users/Vitaliy24","html_url":"https://github.com/Vitaliy24","followers_url":"https://api.github.com/users/Vitaliy24/followers","following_url":"https://api.github.com/users/Vitaliy24/following{/other_user}","gists_url":"https://api.github.com/users/Vitaliy24/gists{/gist_id}","starred_url":"https://api.github.com/users/Vitaliy24/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Vitaliy24/subscriptions","organizations_url":"https://api.github.com/users/Vitaliy24/orgs","repos_url":"https://api.github.com/users/Vitaliy24/repos","events_url":"https://api.github.com/users/Vitaliy24/events{/privacy}","received_events_url":"https://api.github.com/users/Vitaliy24/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-08-28T08:13:46Z","updated_at":"2018-08-28T09:27:18Z","closed_at":"2018-08-28T09:12:13Z","author_association":"NONE","body":"Hello, is it possible to get offsetTop of element inside vuescroll? When i trying to get offsetTop, it's always give 0."},"comment":{"url":"https://api.github.com/repos/YvesCoding/vuescroll/issues/comments/416514910","html_url":"https://github.com/YvesCoding/vuescroll/issues/55#issuecomment-416514910","issue_url":"https://api.github.com/repos/YvesCoding/vuescroll/issues/55","id":416514910,"node_id":"MDEyOklzc3VlQ29tbWVudDQxNjUxNDkxMA==","user":{"login":"Vitaliy24","id":39619716,"node_id":"MDQ6VXNlcjM5NjE5NzE2","avatar_url":"https://avatars1.githubusercontent.com/u/39619716?v=4","gravatar_id":"","url":"https://api.github.com/users/Vitaliy24","html_url":"https://github.com/Vitaliy24","followers_url":"https://api.github.com/users/Vitaliy24/followers","following_url":"https://api.github.com/users/Vitaliy24/following{/other_user}","gists_url":"https://api.github.com/users/Vitaliy24/gists{/gist_id}","starred_url":"https://api.github.com/users/Vitaliy24/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Vitaliy24/subscriptions","organizations_url":"https://api.github.com/users/Vitaliy24/orgs","repos_url":"https://api.github.com/users/Vitaliy24/repos","events_url":"https://api.github.com/users/Vitaliy24/events{/privacy}","received_events_url":"https://api.github.com/users/Vitaliy24/received_events","type":"User","site_admin":false},"created_at":"2018-08-28T09:27:18Z","updated_at":"2018-08-28T09:27:18Z","author_association":"NONE","body":"No. Not the vue-scroll element. I need position of element INSIDE vuescroll."}} | {
"id": 98311526,
"name": "YvesCoding/vuescroll",
"url": "https://api.github.com/repos/YvesCoding/vuescroll"
} | {
"id": 39619716,
"login": "Vitaliy24",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39619716?",
"url": "https://api.github.com/users/Vitaliy24"
} | {
"id": 39853279,
"login": "YvesCoding",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39853279?",
"url": "https://api.github.com/orgs/YvesCoding"
} | 2018-08-28T09:27:18 | 8177038247 | {"actor":{"display_login":"Vitaliy24"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/griffo-io/sha3.net/issues/8","repository_url":"https://api.github.com/repos/griffo-io/sha3.net","labels_url":"https://api.github.com/repos/griffo-io/sha3.net/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/griffo-io/sha3.net/issues/8/comments","events_url":"https://api.github.com/repos/griffo-io/sha3.net/issues/8/events","html_url":"https://github.com/griffo-io/sha3.net/pull/8","id":378575345,"node_id":"MDExOlB1bGxSZXF1ZXN0MjI5MjQ3NjY4","number":8,"title":"Bump FluentAssertions from 5.4.1 to 5.4.2","user":{"login":"dependabot[bot]","id":27856297,"node_id":"MDM6Qm90Mjc4NTYyOTc=","avatar_url":"https://avatars3.githubusercontent.com/in/2141?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"labels":[{"id":1062396024,"node_id":"MDU6TGFiZWwxMDYyMzk2MDI0","url":"https://api.github.com/repos/griffo-io/sha3.net/labels/dependencies","name":"dependencies","color":"0025ff","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-11-08T04:33:12Z","updated_at":"2018-12-01T22:55:16Z","closed_at":null,"author_association":"CONTRIBUTOR","pull_request":{"url":"https://api.github.com/repos/griffo-io/sha3.net/pulls/8","html_url":"https://github.com/griffo-io/sha3.net/pull/8","diff_url":"https://github.com/griffo-io/sha3.net/pull/8.diff","patch_url":"https://github.com/griffo-io/sha3.net/pull/8.patch"},"body":"Bumps [FluentAssertions](https://github.com/fluentassertions/fluentassertions) from 5.4.1 to 5.4.2.\n<details>\n<summary>Release notes</summary>\n\n*Sourced from [FluentAssertions's releases](https://github.com/fluentassertions/fluentassertions/releases).*\n\n> ## 5.4.2\n> * {Fix} Limits the depth of rendering an object to a max of 5 to prevent OOM exceptions - [#898](https://github-redirect.dependabot.com/fluentassertions/fluentassertions/issues/898) \r\n> * {Fix} Show the entire exception instead of just the message when an `async` function throws - [#892](https://github-redirect.dependabot.com/fluentassertions/fluentassertions/issues/892)\r\n> * {Fix} Fixed a StackOverflow while comparing an self-returning enumerable - [#887](https://github-redirect.dependabot.com/fluentassertions/fluentassertions/issues/887)\r\n> * {Fix} Custom rules (`Using().WhenTypeIs()`) were not executed on dictionary equivalency assertions - [#886](https://github-redirect.dependabot.com/fluentassertions/fluentassertions/issues/886)\r\n> * {Fix} The failure message of `HaveOffset` returned the seconds instead of the offset - [#883](https://github-redirect.dependabot.com/fluentassertions/fluentassertions/issues/883)\n</details>\n<details>\n<summary>Commits</summary>\n\n- [`68ca857`](https://github.com/fluentassertions/fluentassertions/commit/68ca857143d4f0f2adcfe2fb58e1264d8ad279ba) Add tests to prevent breaking changes\n- [`366fa91`](https://github.com/fluentassertions/fluentassertions/commit/366fa91ecd73cb0d1fdbb444988503ecd3109aa4) Update README.md\n- [`40322e0`](https://github.com/fluentassertions/fluentassertions/commit/40322e00e9636b30330d3a70d1b08f1298fab1b1) Edit assembly copyright info ([#910](https://github-redirect.dependabot.com/fluentassertions/fluentassertions/issues/910))\n- [`6ffb049`](https://github.com/fluentassertions/fluentassertions/commit/6ffb049b76f43798406876b4ee8f2afb28d14f32) Use self-closing tags\n- [`646dd3b`](https://github.com/fluentassertions/fluentassertions/commit/646dd3ba45146c537b0d56e242d180936e8e22d0) Removed obsolete usage of ComparisonMode\n- [`073a295`](https://github.com/fluentassertions/fluentassertions/commit/073a295ad7e5c13ff79b7ae1234ce031d39a6a57) Merge pull request [#901](https://github-redirect.dependabot.com/fluentassertions/fluentassertions/issues/901) from jnyrup/TestPackages\n- [`83dfe30`](https://github.com/fluentassertions/fluentassertions/commit/83dfe30969444c0070fed3b9e831303cb6f1d591) Update Cake\n- [`16e5548`](https://github.com/fluentassertions/fluentassertions/commit/16e55481a1d6fae66bf143e3c403e99bc8457e28) update BenchmarkDotNet\n- [`013c4da`](https://github.com/fluentassertions/fluentassertions/commit/013c4da85e52e4b6a9a7f9e099307cc4c7daf328) update xunit\n- [`59aee45`](https://github.com/fluentassertions/fluentassertions/commit/59aee4537f38f146ef500a96817fec9f1529cf6b) update FakeItEasy\n- Additional commits viewable in [compare view](https://github.com/fluentassertions/fluentassertions/compare/5.4.1...5.4.2)\n</details>\n<br />\n\n[](https://dependabot.com/compatibility-score.html?dependency-name=FluentAssertions&package-manager=nuget&previous-version=5.4.1&new-version=5.4.2)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n---\n\n<details>\n<summary>Dependabot commands and options</summary>\n<br />\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n- `@dependabot badge me` will comment on this PR with code to add a \"Dependabot enabled\" badge to your readme\n\nAdditionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):\n- Update frequency (including time of day and day of week)\n- Automerge options (never/patch/minor, and dev/runtime dependencies)\n- Pull request limits (per update run and/or open at any time)\n- Out-of-range updates (receive only lockfile updates, if desired)\n- Security updates (receive only security updates, if desired)\n\nFinally, you can contact us by mentioning @dependabot.\n\n</details>"},"comment":{"url":"https://api.github.com/repos/griffo-io/sha3.net/issues/comments/443465191","html_url":"https://github.com/griffo-io/sha3.net/pull/8#issuecomment-443465191","issue_url":"https://api.github.com/repos/griffo-io/sha3.net/issues/8","id":443465191,"node_id":"MDEyOklzc3VlQ29tbWVudDQ0MzQ2NTE5MQ==","user":{"login":"dependabot[bot]","id":27856297,"node_id":"MDM6Qm90Mjc4NTYyOTc=","avatar_url":"https://avatars3.githubusercontent.com/in/2141?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"created_at":"2018-12-01T22:55:16Z","updated_at":"2018-12-01T22:55:16Z","author_association":"CONTRIBUTOR","body":"Superseded by #21."}} | {
"id": 138603612,
"name": "griffo-io/sha3.net",
"url": "https://api.github.com/repos/griffo-io/sha3.net"
} | {
"id": 27856297,
"login": "dependabot[bot]",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/27856297?",
"url": "https://api.github.com/users/dependabot[bot]"
} | {
"id": 39886363,
"login": "griffo-io",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39886363?",
"url": "https://api.github.com/orgs/griffo-io"
} | 2018-12-01T22:55:16 | 8681705974 | {"actor":{"display_login":"dependabot"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/OpenApprenticeFoundation/openapprentice-website/issues/74","repository_url":"https://api.github.com/repos/OpenApprenticeFoundation/openapprentice-website","labels_url":"https://api.github.com/repos/OpenApprenticeFoundation/openapprentice-website/issues/74/labels{/name}","comments_url":"https://api.github.com/repos/OpenApprenticeFoundation/openapprentice-website/issues/74/comments","events_url":"https://api.github.com/repos/OpenApprenticeFoundation/openapprentice-website/issues/74/events","html_url":"https://github.com/OpenApprenticeFoundation/openapprentice-website/issues/74","id":336089528,"node_id":"MDU6SXNzdWUzMzYwODk1Mjg=","number":74,"title":"Add markdown support to display in the frontend","user":{"login":"Seluj78","id":4641317,"node_id":"MDQ6VXNlcjQ2NDEzMTc=","avatar_url":"https://avatars0.githubusercontent.com/u/4641317?v=4","gravatar_id":"","url":"https://api.github.com/users/Seluj78","html_url":"https://github.com/Seluj78","followers_url":"https://api.github.com/users/Seluj78/followers","following_url":"https://api.github.com/users/Seluj78/following{/other_user}","gists_url":"https://api.github.com/users/Seluj78/gists{/gist_id}","starred_url":"https://api.github.com/users/Seluj78/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Seluj78/subscriptions","organizations_url":"https://api.github.com/users/Seluj78/orgs","repos_url":"https://api.github.com/users/Seluj78/repos","events_url":"https://api.github.com/users/Seluj78/events{/privacy}","received_events_url":"https://api.github.com/users/Seluj78/received_events","type":"User","site_admin":false},"labels":[{"id":954066560,"node_id":"MDU6TGFiZWw5NTQwNjY1NjA=","url":"https://api.github.com/repos/OpenApprenticeFoundation/openapprentice-website/labels/Enhancement","name":"Enhancement","color":"a2eeef","default":false},{"id":967844401,"node_id":"MDU6TGFiZWw5Njc4NDQ0MDE=","url":"https://api.github.com/repos/OpenApprenticeFoundation/openapprentice-website/labels/Feature","name":"Feature","color":"a6d35d","default":false},{"id":975776348,"node_id":"MDU6TGFiZWw5NzU3NzYzNDg=","url":"https://api.github.com/repos/OpenApprenticeFoundation/openapprentice-website/labels/In%20Progress","name":"In Progress","color":"82b4d6","default":false}],"state":"open","locked":false,"assignee":{"login":"Seluj78","id":4641317,"node_id":"MDQ6VXNlcjQ2NDEzMTc=","avatar_url":"https://avatars0.githubusercontent.com/u/4641317?v=4","gravatar_id":"","url":"https://api.github.com/users/Seluj78","html_url":"https://github.com/Seluj78","followers_url":"https://api.github.com/users/Seluj78/followers","following_url":"https://api.github.com/users/Seluj78/following{/other_user}","gists_url":"https://api.github.com/users/Seluj78/gists{/gist_id}","starred_url":"https://api.github.com/users/Seluj78/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Seluj78/subscriptions","organizations_url":"https://api.github.com/users/Seluj78/orgs","repos_url":"https://api.github.com/users/Seluj78/repos","events_url":"https://api.github.com/users/Seluj78/events{/privacy}","received_events_url":"https://api.github.com/users/Seluj78/received_events","type":"User","site_admin":false},"assignees":[{"login":"Seluj78","id":4641317,"node_id":"MDQ6VXNlcjQ2NDEzMTc=","avatar_url":"https://avatars0.githubusercontent.com/u/4641317?v=4","gravatar_id":"","url":"https://api.github.com/users/Seluj78","html_url":"https://github.com/Seluj78","followers_url":"https://api.github.com/users/Seluj78/followers","following_url":"https://api.github.com/users/Seluj78/following{/other_user}","gists_url":"https://api.github.com/users/Seluj78/gists{/gist_id}","starred_url":"https://api.github.com/users/Seluj78/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Seluj78/subscriptions","organizations_url":"https://api.github.com/users/Seluj78/orgs","repos_url":"https://api.github.com/users/Seluj78/repos","events_url":"https://api.github.com/users/Seluj78/events{/privacy}","received_events_url":"https://api.github.com/users/Seluj78/received_events","type":"User","site_admin":false}],"milestone":{"url":"https://api.github.com/repos/OpenApprenticeFoundation/openapprentice-website/milestones/1","html_url":"https://github.com/OpenApprenticeFoundation/openapprentice-website/milestone/1","labels_url":"https://api.github.com/repos/OpenApprenticeFoundation/openapprentice-website/milestones/1/labels","id":3444652,"node_id":"MDk6TWlsZXN0b25lMzQ0NDY1Mg==","number":1,"title":"1.0","description":"The 1.0 Milestone","creator":{"login":"Seluj78","id":4641317,"node_id":"MDQ6VXNlcjQ2NDEzMTc=","avatar_url":"https://avatars0.githubusercontent.com/u/4641317?v=4","gravatar_id":"","url":"https://api.github.com/users/Seluj78","html_url":"https://github.com/Seluj78","followers_url":"https://api.github.com/users/Seluj78/followers","following_url":"https://api.github.com/users/Seluj78/following{/other_user}","gists_url":"https://api.github.com/users/Seluj78/gists{/gist_id}","starred_url":"https://api.github.com/users/Seluj78/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Seluj78/subscriptions","organizations_url":"https://api.github.com/users/Seluj78/orgs","repos_url":"https://api.github.com/users/Seluj78/repos","events_url":"https://api.github.com/users/Seluj78/events{/privacy}","received_events_url":"https://api.github.com/users/Seluj78/received_events","type":"User","site_admin":false},"open_issues":38,"closed_issues":43,"state":"open","created_at":"2018-06-22T11:20:38Z","updated_at":"2018-07-11T11:28:44Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2018-06-27T06:12:08Z","updated_at":"2018-07-11T11:29:48Z","closed_at":null,"author_association":"MEMBER","body":"https://pythonhosted.org/Flask-Markdown/"},"comment":{"url":"https://api.github.com/repos/OpenApprenticeFoundation/openapprentice-website/issues/comments/404136806","html_url":"https://github.com/OpenApprenticeFoundation/openapprentice-website/issues/74#issuecomment-404136806","issue_url":"https://api.github.com/repos/OpenApprenticeFoundation/openapprentice-website/issues/74","id":404136806,"node_id":"MDEyOklzc3VlQ29tbWVudDQwNDEzNjgwNg==","user":{"login":"Seluj78","id":4641317,"node_id":"MDQ6VXNlcjQ2NDEzMTc=","avatar_url":"https://avatars0.githubusercontent.com/u/4641317?v=4","gravatar_id":"","url":"https://api.github.com/users/Seluj78","html_url":"https://github.com/Seluj78","followers_url":"https://api.github.com/users/Seluj78/followers","following_url":"https://api.github.com/users/Seluj78/following{/other_user}","gists_url":"https://api.github.com/users/Seluj78/gists{/gist_id}","starred_url":"https://api.github.com/users/Seluj78/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Seluj78/subscriptions","organizations_url":"https://api.github.com/users/Seluj78/orgs","repos_url":"https://api.github.com/users/Seluj78/repos","events_url":"https://api.github.com/users/Seluj78/events{/privacy}","received_events_url":"https://api.github.com/users/Seluj78/received_events","type":"User","site_admin":false},"created_at":"2018-07-11T11:29:48Z","updated_at":"2018-07-11T11:29:48Z","author_association":"MEMBER","body":"Closed as not relevent/stale for now."}} | {
"id": 136031231,
"name": "OpenApprenticeFoundation/openapprentice-website",
"url": "https://api.github.com/repos/OpenApprenticeFoundation/openapprentice-website"
} | {
"id": 4641317,
"login": "Seluj78",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/4641317?",
"url": "https://api.github.com/users/Seluj78"
} | {
"id": 39912550,
"login": "OpenApprenticeFoundation",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39912550?",
"url": "https://api.github.com/orgs/OpenApprenticeFoundation"
} | 2018-07-11T11:29:48 | 7949465675 | {"actor":{"display_login":"Seluj78"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/n-waves/ulmfit-multilingual/issues/25","repository_url":"https://api.github.com/repos/n-waves/ulmfit-multilingual","labels_url":"https://api.github.com/repos/n-waves/ulmfit-multilingual/issues/25/labels{/name}","comments_url":"https://api.github.com/repos/n-waves/ulmfit-multilingual/issues/25/comments","events_url":"https://api.github.com/repos/n-waves/ulmfit-multilingual/issues/25/events","html_url":"https://github.com/n-waves/ulmfit-multilingual/issues/25","id":394968153,"node_id":"MDU6SXNzdWUzOTQ5NjgxNTM=","number":25,"title":"Postprocess_wikitext does not separate wikipedia articles.","user":{"login":"PiotrCzapla","id":340180,"node_id":"MDQ6VXNlcjM0MDE4MA==","avatar_url":"https://avatars1.githubusercontent.com/u/340180?v=4","gravatar_id":"","url":"https://api.github.com/users/PiotrCzapla","html_url":"https://github.com/PiotrCzapla","followers_url":"https://api.github.com/users/PiotrCzapla/followers","following_url":"https://api.github.com/users/PiotrCzapla/following{/other_user}","gists_url":"https://api.github.com/users/PiotrCzapla/gists{/gist_id}","starred_url":"https://api.github.com/users/PiotrCzapla/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/PiotrCzapla/subscriptions","organizations_url":"https://api.github.com/users/PiotrCzapla/orgs","repos_url":"https://api.github.com/users/PiotrCzapla/repos","events_url":"https://api.github.com/users/PiotrCzapla/events{/privacy}","received_events_url":"https://api.github.com/users/PiotrCzapla/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2018-12-31T11:38:17Z","updated_at":"2019-01-01T14:31:22Z","closed_at":"2019-01-01T14:13:58Z","author_association":"MEMBER","body":"The LM needs to be trained on long articles to be useful for downstream tasks. We solve it in wikitext-103 by splitting articles as follows: \r\n```\r\ndef istitle(line):\r\n return len(re.findall(r'^ = [^=]* = $', line)) != 0\r\n```\r\n`postporcess_wikitext` need to add similar separators to the articles to train correctly BOS and EOS tokens. Until this is fixed the training of LM on custom wikipedia will break."},"comment":{"url":"https://api.github.com/repos/n-waves/ulmfit-multilingual/issues/comments/450733626","html_url":"https://github.com/n-waves/ulmfit-multilingual/issues/25#issuecomment-450733626","issue_url":"https://api.github.com/repos/n-waves/ulmfit-multilingual/issues/25","id":450733626,"node_id":"MDEyOklzc3VlQ29tbWVudDQ1MDczMzYyNg==","user":{"login":"abedkhooli","id":11407254,"node_id":"MDQ6VXNlcjExNDA3MjU0","avatar_url":"https://avatars2.githubusercontent.com/u/11407254?v=4","gravatar_id":"","url":"https://api.github.com/users/abedkhooli","html_url":"https://github.com/abedkhooli","followers_url":"https://api.github.com/users/abedkhooli/followers","following_url":"https://api.github.com/users/abedkhooli/following{/other_user}","gists_url":"https://api.github.com/users/abedkhooli/gists{/gist_id}","starred_url":"https://api.github.com/users/abedkhooli/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/abedkhooli/subscriptions","organizations_url":"https://api.github.com/users/abedkhooli/orgs","repos_url":"https://api.github.com/users/abedkhooli/repos","events_url":"https://api.github.com/users/abedkhooli/events{/privacy}","received_events_url":"https://api.github.com/users/abedkhooli/received_events","type":"User","site_admin":false},"created_at":"2019-01-01T14:31:22Z","updated_at":"2019-01-01T14:31:22Z","author_association":"NONE","body":"I see you already fixed titles and merged refactor into master. Great efforts! \r\nMy worry about extra long 'sentences' is one BOS/EOS for a full article (average sentence length for Arabic wiki is around 36 words including title effect). "}} | {
"id": 156753872,
"name": "n-waves/ulmfit-multilingual",
"url": "https://api.github.com/repos/n-waves/ulmfit-multilingual"
} | {
"id": 11407254,
"login": "abedkhooli",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/11407254?",
"url": "https://api.github.com/users/abedkhooli"
} | {
"id": 39971451,
"login": "n-waves",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39971451?",
"url": "https://api.github.com/orgs/n-waves"
} | 2019-01-01T14:31:22 | 8820586401 | {"actor":{"display_login":"abedkhooli"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/wasm-tool/wasm-pack-plugin/issues/44","repository_url":"https://api.github.com/repos/wasm-tool/wasm-pack-plugin","labels_url":"https://api.github.com/repos/wasm-tool/wasm-pack-plugin/issues/44/labels{/name}","comments_url":"https://api.github.com/repos/wasm-tool/wasm-pack-plugin/issues/44/comments","events_url":"https://api.github.com/repos/wasm-tool/wasm-pack-plugin/issues/44/events","html_url":"https://github.com/wasm-tool/wasm-pack-plugin/pull/44","id":385964292,"node_id":"MDExOlB1bGxSZXF1ZXN0MjM0ODE2MDcz","number":44,"title":"fix: watch for files","user":{"login":"sendilkumarn","id":12471122,"node_id":"MDQ6VXNlcjEyNDcxMTIy","avatar_url":"https://avatars0.githubusercontent.com/u/12471122?v=4","gravatar_id":"","url":"https://api.github.com/users/sendilkumarn","html_url":"https://github.com/sendilkumarn","followers_url":"https://api.github.com/users/sendilkumarn/followers","following_url":"https://api.github.com/users/sendilkumarn/following{/other_user}","gists_url":"https://api.github.com/users/sendilkumarn/gists{/gist_id}","starred_url":"https://api.github.com/users/sendilkumarn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sendilkumarn/subscriptions","organizations_url":"https://api.github.com/users/sendilkumarn/orgs","repos_url":"https://api.github.com/users/sendilkumarn/repos","events_url":"https://api.github.com/users/sendilkumarn/events{/privacy}","received_events_url":"https://api.github.com/users/sendilkumarn/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-11-29T23:00:08Z","updated_at":"2018-11-30T15:03:50Z","closed_at":"2018-11-30T14:59:27Z","author_association":"MEMBER","pull_request":{"url":"https://api.github.com/repos/wasm-tool/wasm-pack-plugin/pulls/44","html_url":"https://github.com/wasm-tool/wasm-pack-plugin/pull/44","diff_url":"https://github.com/wasm-tool/wasm-pack-plugin/pull/44.diff","patch_url":"https://github.com/wasm-tool/wasm-pack-plugin/pull/44.patch"},"body":"The compiler is not initialized when the check is happening. Moving this inside the hook, ensures that the compiler is actually initialized correctly with default values.\r\n\r\nLocally it works.\r\n\r\nCloses #43 \r\n\r\nr? @xtuc {Probably release a version once it is merged}"},"comment":{"url":"https://api.github.com/repos/wasm-tool/wasm-pack-plugin/issues/comments/443230589","html_url":"https://github.com/wasm-tool/wasm-pack-plugin/pull/44#issuecomment-443230589","issue_url":"https://api.github.com/repos/wasm-tool/wasm-pack-plugin/issues/44","id":443230589,"node_id":"MDEyOklzc3VlQ29tbWVudDQ0MzIzMDU4OQ==","user":{"login":"sendilkumarn","id":12471122,"node_id":"MDQ6VXNlcjEyNDcxMTIy","avatar_url":"https://avatars0.githubusercontent.com/u/12471122?v=4","gravatar_id":"","url":"https://api.github.com/users/sendilkumarn","html_url":"https://github.com/sendilkumarn","followers_url":"https://api.github.com/users/sendilkumarn/followers","following_url":"https://api.github.com/users/sendilkumarn/following{/other_user}","gists_url":"https://api.github.com/users/sendilkumarn/gists{/gist_id}","starred_url":"https://api.github.com/users/sendilkumarn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sendilkumarn/subscriptions","organizations_url":"https://api.github.com/users/sendilkumarn/orgs","repos_url":"https://api.github.com/users/sendilkumarn/repos","events_url":"https://api.github.com/users/sendilkumarn/events{/privacy}","received_events_url":"https://api.github.com/users/sendilkumarn/received_events","type":"User","site_admin":false},"created_at":"2018-11-30T15:03:50Z","updated_at":"2018-11-30T15:03:50Z","author_association":"MEMBER","body":"Done released new version 0.1.6"}} | {
"id": 142684586,
"name": "wasm-tool/wasm-pack-plugin",
"url": "https://api.github.com/repos/wasm-tool/wasm-pack-plugin"
} | {
"id": 12471122,
"login": "sendilkumarn",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/12471122?",
"url": "https://api.github.com/users/sendilkumarn"
} | {
"id": 40056926,
"login": "wasm-tool",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/40056926?",
"url": "https://api.github.com/orgs/wasm-tool"
} | 2018-11-30T15:03:50 | 8676780596 | {"actor":{"display_login":"sendilkumarn"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/duhbot/duhbot/issues/4","repository_url":"https://api.github.com/repos/duhbot/duhbot","labels_url":"https://api.github.com/repos/duhbot/duhbot/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/duhbot/duhbot/issues/4/comments","events_url":"https://api.github.com/repos/duhbot/duhbot/issues/4/events","html_url":"https://github.com/duhbot/duhbot/issues/4","id":390715319,"node_id":"MDU6SXNzdWUzOTA3MTUzMTk=","number":4,"title":"Add tests for cross-plugin communication","user":{"login":"duh102","id":6590396,"node_id":"MDQ6VXNlcjY1OTAzOTY=","avatar_url":"https://avatars2.githubusercontent.com/u/6590396?v=4","gravatar_id":"","url":"https://api.github.com/users/duh102","html_url":"https://github.com/duh102","followers_url":"https://api.github.com/users/duh102/followers","following_url":"https://api.github.com/users/duh102/following{/other_user}","gists_url":"https://api.github.com/users/duh102/gists{/gist_id}","starred_url":"https://api.github.com/users/duh102/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/duh102/subscriptions","organizations_url":"https://api.github.com/users/duh102/orgs","repos_url":"https://api.github.com/users/duh102/repos","events_url":"https://api.github.com/users/duh102/events{/privacy}","received_events_url":"https://api.github.com/users/duh102/received_events","type":"User","site_admin":false},"labels":[{"id":959161306,"node_id":"MDU6TGFiZWw5NTkxNjEzMDY=","url":"https://api.github.com/repos/duhbot/duhbot/labels/enhancement","name":"enhancement","color":"a2eeef","default":true}],"state":"open","locked":false,"assignee":{"login":"duh102","id":6590396,"node_id":"MDQ6VXNlcjY1OTAzOTY=","avatar_url":"https://avatars2.githubusercontent.com/u/6590396?v=4","gravatar_id":"","url":"https://api.github.com/users/duh102","html_url":"https://github.com/duh102","followers_url":"https://api.github.com/users/duh102/followers","following_url":"https://api.github.com/users/duh102/following{/other_user}","gists_url":"https://api.github.com/users/duh102/gists{/gist_id}","starred_url":"https://api.github.com/users/duh102/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/duh102/subscriptions","organizations_url":"https://api.github.com/users/duh102/orgs","repos_url":"https://api.github.com/users/duh102/repos","events_url":"https://api.github.com/users/duh102/events{/privacy}","received_events_url":"https://api.github.com/users/duh102/received_events","type":"User","site_admin":false},"assignees":[{"login":"duh102","id":6590396,"node_id":"MDQ6VXNlcjY1OTAzOTY=","avatar_url":"https://avatars2.githubusercontent.com/u/6590396?v=4","gravatar_id":"","url":"https://api.github.com/users/duh102","html_url":"https://github.com/duh102","followers_url":"https://api.github.com/users/duh102/followers","following_url":"https://api.github.com/users/duh102/following{/other_user}","gists_url":"https://api.github.com/users/duh102/gists{/gist_id}","starred_url":"https://api.github.com/users/duh102/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/duh102/subscriptions","organizations_url":"https://api.github.com/users/duh102/orgs","repos_url":"https://api.github.com/users/duh102/repos","events_url":"https://api.github.com/users/duh102/events{/privacy}","received_events_url":"https://api.github.com/users/duh102/received_events","type":"User","site_admin":false}],"milestone":{"url":"https://api.github.com/repos/duhbot/duhbot/milestones/1","html_url":"https://github.com/duhbot/duhbot/milestone/1","labels_url":"https://api.github.com/repos/duhbot/duhbot/milestones/1/labels","id":3896981,"node_id":"MDk6TWlsZXN0b25lMzg5Njk4MQ==","number":1,"title":"v1.0.5","description":"Add the cross-plugin communication framework","creator":{"login":"duh102","id":6590396,"node_id":"MDQ6VXNlcjY1OTAzOTY=","avatar_url":"https://avatars2.githubusercontent.com/u/6590396?v=4","gravatar_id":"","url":"https://api.github.com/users/duh102","html_url":"https://github.com/duh102","followers_url":"https://api.github.com/users/duh102/followers","following_url":"https://api.github.com/users/duh102/following{/other_user}","gists_url":"https://api.github.com/users/duh102/gists{/gist_id}","starred_url":"https://api.github.com/users/duh102/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/duh102/subscriptions","organizations_url":"https://api.github.com/users/duh102/orgs","repos_url":"https://api.github.com/users/duh102/repos","events_url":"https://api.github.com/users/duh102/events{/privacy}","received_events_url":"https://api.github.com/users/duh102/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":4,"state":"open","created_at":"2018-12-13T14:48:30Z","updated_at":"2018-12-15T06:43:06Z","due_on":null,"closed_at":null},"comments":1,"created_at":"2018-12-13T14:55:39Z","updated_at":"2018-12-15T20:18:41Z","closed_at":null,"author_association":"CONTRIBUTOR","body":"Specifically we should focus on:\r\n\r\n1. Request/response classes do not match between the source and target plugins\r\n2. Classes match but are different versions\r\n3. Exceptions in the source or target plugins during processing the request or result"},"comment":{"url":"https://api.github.com/repos/duhbot/duhbot/issues/comments/447595125","html_url":"https://github.com/duhbot/duhbot/issues/4#issuecomment-447595125","issue_url":"https://api.github.com/repos/duhbot/duhbot/issues/4","id":447595125,"node_id":"MDEyOklzc3VlQ29tbWVudDQ0NzU5NTEyNQ==","user":{"login":"duh102","id":6590396,"node_id":"MDQ6VXNlcjY1OTAzOTY=","avatar_url":"https://avatars2.githubusercontent.com/u/6590396?v=4","gravatar_id":"","url":"https://api.github.com/users/duh102","html_url":"https://github.com/duh102","followers_url":"https://api.github.com/users/duh102/followers","following_url":"https://api.github.com/users/duh102/following{/other_user}","gists_url":"https://api.github.com/users/duh102/gists{/gist_id}","starred_url":"https://api.github.com/users/duh102/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/duh102/subscriptions","organizations_url":"https://api.github.com/users/duh102/orgs","repos_url":"https://api.github.com/users/duh102/repos","events_url":"https://api.github.com/users/duh102/events{/privacy}","received_events_url":"https://api.github.com/users/duh102/received_events","type":"User","site_admin":false},"created_at":"2018-12-15T20:18:41Z","updated_at":"2018-12-15T20:18:41Z","author_association":"CONTRIBUTOR","body":"I had to modify the interface slightly to add a new exception thrown for any unknown issue during the EndpointHandler's interact(). I imagine I'll need to add a few more to handle other unknown cases."}} | {
"id": 136663577,
"name": "duhbot/duhbot",
"url": "https://api.github.com/repos/duhbot/duhbot"
} | {
"id": 6590396,
"login": "duh102",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6590396?",
"url": "https://api.github.com/users/duh102"
} | {
"id": 40073887,
"login": "duhbot",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/40073887?",
"url": "https://api.github.com/orgs/duhbot"
} | 2018-12-15T20:18:41 | 8759809057 | {"actor":{"display_login":"duh102"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/housepower/ClickHouse-Native-JDBC/issues/55","repository_url":"https://api.github.com/repos/housepower/ClickHouse-Native-JDBC","labels_url":"https://api.github.com/repos/housepower/ClickHouse-Native-JDBC/issues/55/labels{/name}","comments_url":"https://api.github.com/repos/housepower/ClickHouse-Native-JDBC/issues/55/comments","events_url":"https://api.github.com/repos/housepower/ClickHouse-Native-JDBC/issues/55/events","html_url":"https://github.com/housepower/ClickHouse-Native-JDBC/pull/55","id":358672395,"node_id":"MDExOlB1bGxSZXF1ZXN0MjE0MzUxOTMx","number":55,"title":"minor formatting tweak","user":{"login":"The-Alchemist","id":812287,"node_id":"MDQ6VXNlcjgxMjI4Nw==","avatar_url":"https://avatars1.githubusercontent.com/u/812287?v=4","gravatar_id":"","url":"https://api.github.com/users/The-Alchemist","html_url":"https://github.com/The-Alchemist","followers_url":"https://api.github.com/users/The-Alchemist/followers","following_url":"https://api.github.com/users/The-Alchemist/following{/other_user}","gists_url":"https://api.github.com/users/The-Alchemist/gists{/gist_id}","starred_url":"https://api.github.com/users/The-Alchemist/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/The-Alchemist/subscriptions","organizations_url":"https://api.github.com/users/The-Alchemist/orgs","repos_url":"https://api.github.com/users/The-Alchemist/repos","events_url":"https://api.github.com/users/The-Alchemist/events{/privacy}","received_events_url":"https://api.github.com/users/The-Alchemist/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-09-10T15:20:49Z","updated_at":"2018-09-11T02:48:01Z","closed_at":"2018-09-11T02:47:57Z","author_association":"CONTRIBUTOR","pull_request":{"url":"https://api.github.com/repos/housepower/ClickHouse-Native-JDBC/pulls/55","html_url":"https://github.com/housepower/ClickHouse-Native-JDBC/pull/55","diff_url":"https://github.com/housepower/ClickHouse-Native-JDBC/pull/55.diff","patch_url":"https://github.com/housepower/ClickHouse-Native-JDBC/pull/55.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/housepower/ClickHouse-Native-JDBC/issues/comments/420128487","html_url":"https://github.com/housepower/ClickHouse-Native-JDBC/pull/55#issuecomment-420128487","issue_url":"https://api.github.com/repos/housepower/ClickHouse-Native-JDBC/issues/55","id":420128487,"node_id":"MDEyOklzc3VlQ29tbWVudDQyMDEyODQ4Nw==","user":{"login":"zhang2014","id":8087042,"node_id":"MDQ6VXNlcjgwODcwNDI=","avatar_url":"https://avatars1.githubusercontent.com/u/8087042?v=4","gravatar_id":"","url":"https://api.github.com/users/zhang2014","html_url":"https://github.com/zhang2014","followers_url":"https://api.github.com/users/zhang2014/followers","following_url":"https://api.github.com/users/zhang2014/following{/other_user}","gists_url":"https://api.github.com/users/zhang2014/gists{/gist_id}","starred_url":"https://api.github.com/users/zhang2014/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zhang2014/subscriptions","organizations_url":"https://api.github.com/users/zhang2014/orgs","repos_url":"https://api.github.com/users/zhang2014/repos","events_url":"https://api.github.com/users/zhang2014/events{/privacy}","received_events_url":"https://api.github.com/users/zhang2014/received_events","type":"User","site_admin":false},"created_at":"2018-09-11T02:48:01Z","updated_at":"2018-09-11T02:48:01Z","author_association":"CONTRIBUTOR","body":"Thank you"}} | {
"id": 133296782,
"name": "housepower/ClickHouse-Native-JDBC",
"url": "https://api.github.com/repos/housepower/ClickHouse-Native-JDBC"
} | {
"id": 8087042,
"login": "zhang2014",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/8087042?",
"url": "https://api.github.com/users/zhang2014"
} | {
"id": 40261547,
"login": "housepower",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/40261547?",
"url": "https://api.github.com/orgs/housepower"
} | 2018-09-11T02:48:01 | 8243861741 | {"actor":{"display_login":"zhang2014"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/testppl/charmtest/issues/375","repository_url":"https://api.github.com/repos/testppl/charmtest","labels_url":"https://api.github.com/repos/testppl/charmtest/issues/375/labels{/name}","comments_url":"https://api.github.com/repos/testppl/charmtest/issues/375/comments","events_url":"https://api.github.com/repos/testppl/charmtest/issues/375/events","html_url":"https://github.com/testppl/charmtest/issues/375","id":334908029,"node_id":"MDU6SXNzdWUzMzQ5MDgwMjk=","number":375,"title":"ChaNGa failure for 128bit key case","user":{"login":"pplimport","id":40410281,"node_id":"MDQ6VXNlcjQwNDEwMjgx","avatar_url":"https://avatars2.githubusercontent.com/u/40410281?v=4","gravatar_id":"","url":"https://api.github.com/users/pplimport","html_url":"https://github.com/pplimport","followers_url":"https://api.github.com/users/pplimport/followers","following_url":"https://api.github.com/users/pplimport/following{/other_user}","gists_url":"https://api.github.com/users/pplimport/gists{/gist_id}","starred_url":"https://api.github.com/users/pplimport/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pplimport/subscriptions","organizations_url":"https://api.github.com/users/pplimport/orgs","repos_url":"https://api.github.com/users/pplimport/repos","events_url":"https://api.github.com/users/pplimport/events{/privacy}","received_events_url":"https://api.github.com/users/pplimport/received_events","type":"User","site_admin":false},"labels":[{"id":972436640,"node_id":"MDU6TGFiZWw5NzI0MzY2NDA=","url":"https://api.github.com/repos/testppl/charmtest/labels/bug","name":"bug","color":"d73a4a","default":true}],"state":"closed","locked":false,"assignee":{"login":"pplimport","id":40410281,"node_id":"MDQ6VXNlcjQwNDEwMjgx","avatar_url":"https://avatars2.githubusercontent.com/u/40410281?v=4","gravatar_id":"","url":"https://api.github.com/users/pplimport","html_url":"https://github.com/pplimport","followers_url":"https://api.github.com/users/pplimport/followers","following_url":"https://api.github.com/users/pplimport/following{/other_user}","gists_url":"https://api.github.com/users/pplimport/gists{/gist_id}","starred_url":"https://api.github.com/users/pplimport/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pplimport/subscriptions","organizations_url":"https://api.github.com/users/pplimport/orgs","repos_url":"https://api.github.com/users/pplimport/repos","events_url":"https://api.github.com/users/pplimport/events{/privacy}","received_events_url":"https://api.github.com/users/pplimport/received_events","type":"User","site_admin":false},"assignees":[{"login":"pplimport","id":40410281,"node_id":"MDQ6VXNlcjQwNDEwMjgx","avatar_url":"https://avatars2.githubusercontent.com/u/40410281?v=4","gravatar_id":"","url":"https://api.github.com/users/pplimport","html_url":"https://github.com/pplimport","followers_url":"https://api.github.com/users/pplimport/followers","following_url":"https://api.github.com/users/pplimport/following{/other_user}","gists_url":"https://api.github.com/users/pplimport/gists{/gist_id}","starred_url":"https://api.github.com/users/pplimport/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pplimport/subscriptions","organizations_url":"https://api.github.com/users/pplimport/orgs","repos_url":"https://api.github.com/users/pplimport/repos","events_url":"https://api.github.com/users/pplimport/events{/privacy}","received_events_url":"https://api.github.com/users/pplimport/received_events","type":"User","site_admin":false}],"milestone":{"url":"https://api.github.com/repos/testppl/charmtest/milestones/3","html_url":"https://github.com/testppl/charmtest/milestone/3","labels_url":"https://api.github.com/repos/testppl/charmtest/milestones/3/labels","id":3445021,"node_id":"MDk6TWlsZXN0b25lMzQ0NTAyMQ==","number":3,"title":"6.6.0","description":null,"creator":{"login":"pplimport","id":40410281,"node_id":"MDQ6VXNlcjQwNDEwMjgx","avatar_url":"https://avatars2.githubusercontent.com/u/40410281?v=4","gravatar_id":"","url":"https://api.github.com/users/pplimport","html_url":"https://github.com/pplimport","followers_url":"https://api.github.com/users/pplimport/followers","following_url":"https://api.github.com/users/pplimport/following{/other_user}","gists_url":"https://api.github.com/users/pplimport/gists{/gist_id}","starred_url":"https://api.github.com/users/pplimport/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pplimport/subscriptions","organizations_url":"https://api.github.com/users/pplimport/orgs","repos_url":"https://api.github.com/users/pplimport/repos","events_url":"https://api.github.com/users/pplimport/events{/privacy}","received_events_url":"https://api.github.com/users/pplimport/received_events","type":"User","site_admin":false},"open_issues":0,"closed_issues":151,"state":"open","created_at":"2018-06-22T14:28:37Z","updated_at":"2018-06-22T15:02:27Z","due_on":null,"closed_at":null},"comments":0,"created_at":"2013-12-05T19:31:13Z","updated_at":"2018-06-27T14:46:39Z","closed_at":"2014-01-03T21:47:55Z","author_association":"NONE","body":"*Original author: Eric Bohm*\n\n---\nPlease document whatever this bug actually is(was?) and that the proposed fix has been verified to actually fix the problem.\r\n\r\nAlso, in the future please submit this sort of thing as a bug in Redmine so we can keep track of it properly."},"comment":{"url":"https://api.github.com/repos/testppl/charmtest/issues/comments/400699624","html_url":"https://github.com/testppl/charmtest/issues/375#issuecomment-400699624","issue_url":"https://api.github.com/repos/testppl/charmtest/issues/375","id":400699624,"node_id":"MDEyOklzc3VlQ29tbWVudDQwMDY5OTYyNA==","user":{"login":"pplimport","id":40410281,"node_id":"MDQ6VXNlcjQwNDEwMjgx","avatar_url":"https://avatars2.githubusercontent.com/u/40410281?v=4","gravatar_id":"","url":"https://api.github.com/users/pplimport","html_url":"https://github.com/pplimport","followers_url":"https://api.github.com/users/pplimport/followers","following_url":"https://api.github.com/users/pplimport/following{/other_user}","gists_url":"https://api.github.com/users/pplimport/gists{/gist_id}","starred_url":"https://api.github.com/users/pplimport/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pplimport/subscriptions","organizations_url":"https://api.github.com/users/pplimport/orgs","repos_url":"https://api.github.com/users/pplimport/repos","events_url":"https://api.github.com/users/pplimport/events{/privacy}","received_events_url":"https://api.github.com/users/pplimport/received_events","type":"User","site_admin":false},"created_at":"2018-06-27T14:46:39Z","updated_at":"2018-06-27T14:46:39Z","author_association":"NONE","body":"*Original author: Lukasz Wesolowski*\n*Original date: 2013-12-05 21:00:26*\n\n---\n16 byte keys are required for highly clustered cosmological simulations where the height of the barnes-hut oct tree needs to be more than 21, which is the max with 8 byte keys. Using 16 byte keys leads to errors, first noticed on Blue Waters using gni machine layer, due to misalignment of the keys.\r\n\r\nGengbin has checked in a fix, currently under review, which he used to successfully run on Blue Waters. The fix is quite involved, requiring ensuring 16-byte alignment at multiple points in headers, converse and Charm++ envelopes, and at the start of as well as inside varsize messages. I think there are a couple issues left to fix, according to comments I made on gerrit. \r\n\r\nI tried Gengbin's fix on a local workstation for net-linux-x86_64. My program fails at startup.\r\n\r\nhttp://charm.cs.uiuc.edu/gerrit/#/c/14"}} | {
"id": 138312026,
"name": "testppl/charmtest",
"url": "https://api.github.com/repos/testppl/charmtest"
} | {
"id": 40410281,
"login": "pplimport",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/40410281?",
"url": "https://api.github.com/users/pplimport"
} | {
"id": 40438285,
"login": "testppl",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/40438285?",
"url": "https://api.github.com/orgs/testppl"
} | 2018-06-27T14:46:39 | 7886258594 | {"actor":{"display_login":"pplimport"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/teamlaravel/LeLabo/issues/21","repository_url":"https://api.github.com/repos/teamlaravel/LeLabo","labels_url":"https://api.github.com/repos/teamlaravel/LeLabo/issues/21/labels{/name}","comments_url":"https://api.github.com/repos/teamlaravel/LeLabo/issues/21/comments","events_url":"https://api.github.com/repos/teamlaravel/LeLabo/issues/21/events","html_url":"https://github.com/teamlaravel/LeLabo/issues/21","id":352421072,"node_id":"MDU6SXNzdWUzNTI0MjEwNzI=","number":21,"title":"チャット画面にチャット例","user":{"login":"B106827","id":34730599,"node_id":"MDQ6VXNlcjM0NzMwNTk5","avatar_url":"https://avatars0.githubusercontent.com/u/34730599?v=4","gravatar_id":"","url":"https://api.github.com/users/B106827","html_url":"https://github.com/B106827","followers_url":"https://api.github.com/users/B106827/followers","following_url":"https://api.github.com/users/B106827/following{/other_user}","gists_url":"https://api.github.com/users/B106827/gists{/gist_id}","starred_url":"https://api.github.com/users/B106827/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/B106827/subscriptions","organizations_url":"https://api.github.com/users/B106827/orgs","repos_url":"https://api.github.com/users/B106827/repos","events_url":"https://api.github.com/users/B106827/events{/privacy}","received_events_url":"https://api.github.com/users/B106827/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-08-21T07:41:59Z","updated_at":"2018-09-20T14:28:53Z","closed_at":null,"author_association":"CONTRIBUTOR","body":""},"comment":{"url":"https://api.github.com/repos/teamlaravel/LeLabo/issues/comments/423204692","html_url":"https://github.com/teamlaravel/LeLabo/issues/21#issuecomment-423204692","issue_url":"https://api.github.com/repos/teamlaravel/LeLabo/issues/21","id":423204692,"node_id":"MDEyOklzc3VlQ29tbWVudDQyMzIwNDY5Mg==","user":{"login":"B106827","id":34730599,"node_id":"MDQ6VXNlcjM0NzMwNTk5","avatar_url":"https://avatars0.githubusercontent.com/u/34730599?v=4","gravatar_id":"","url":"https://api.github.com/users/B106827","html_url":"https://github.com/B106827","followers_url":"https://api.github.com/users/B106827/followers","following_url":"https://api.github.com/users/B106827/following{/other_user}","gists_url":"https://api.github.com/users/B106827/gists{/gist_id}","starred_url":"https://api.github.com/users/B106827/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/B106827/subscriptions","organizations_url":"https://api.github.com/users/B106827/orgs","repos_url":"https://api.github.com/users/B106827/repos","events_url":"https://api.github.com/users/B106827/events{/privacy}","received_events_url":"https://api.github.com/users/B106827/received_events","type":"User","site_admin":false},"created_at":"2018-09-20T14:28:53Z","updated_at":"2018-09-20T14:28:53Z","author_association":"CONTRIBUTOR","body":"チャット画面に授業日の注意書き表示完了"}} | {
"id": 138691948,
"name": "teamlaravel/LeLabo",
"url": "https://api.github.com/repos/teamlaravel/LeLabo"
} | {
"id": 34730599,
"login": "B106827",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/34730599?",
"url": "https://api.github.com/users/B106827"
} | {
"id": 40448947,
"login": "teamlaravel",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/40448947?",
"url": "https://api.github.com/orgs/teamlaravel"
} | 2018-09-20T14:28:54 | 8296027658 | {"actor":{"display_login":"B106827"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/diasurgical/devilution/issues/366","repository_url":"https://api.github.com/repos/diasurgical/devilution","labels_url":"https://api.github.com/repos/diasurgical/devilution/issues/366/labels{/name}","comments_url":"https://api.github.com/repos/diasurgical/devilution/issues/366/comments","events_url":"https://api.github.com/repos/diasurgical/devilution/issues/366/events","html_url":"https://github.com/diasurgical/devilution/issues/366","id":365180919,"node_id":"MDU6SXNzdWUzNjUxODA5MTk=","number":366,"title":"Bug: Going to higher levels dungin breaks the layout","user":{"login":"AJenbo","id":204594,"node_id":"MDQ6VXNlcjIwNDU5NA==","avatar_url":"https://avatars3.githubusercontent.com/u/204594?v=4","gravatar_id":"","url":"https://api.github.com/users/AJenbo","html_url":"https://github.com/AJenbo","followers_url":"https://api.github.com/users/AJenbo/followers","following_url":"https://api.github.com/users/AJenbo/following{/other_user}","gists_url":"https://api.github.com/users/AJenbo/gists{/gist_id}","starred_url":"https://api.github.com/users/AJenbo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AJenbo/subscriptions","organizations_url":"https://api.github.com/users/AJenbo/orgs","repos_url":"https://api.github.com/users/AJenbo/repos","events_url":"https://api.github.com/users/AJenbo/events{/privacy}","received_events_url":"https://api.github.com/users/AJenbo/received_events","type":"User","site_admin":false},"labels":[{"id":886881180,"node_id":"MDU6TGFiZWw4ODY4ODExODA=","url":"https://api.github.com/repos/diasurgical/devilution/labels/bug","name":"bug","color":"d73a4a","default":true}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2018-09-30T01:16:41Z","updated_at":"2018-09-30T02:07:30Z","closed_at":null,"author_association":"CONTRIBUTOR","body":"Playing the game with latest nightly, went form level 6 to level 5 and saw this:\r\n\r\n\r\nSomething is really wrong, the 3 stairs where in the same room but now some of them has been replaces by doors and the graphics is all wonky. I was still able to go down to level 6 again and here the dungeon still looks correct.\r\n\r\nUsing a town portal on level 5 did not solve the problem."},"comment":{"url":"https://api.github.com/repos/diasurgical/devilution/issues/comments/425688060","html_url":"https://github.com/diasurgical/devilution/issues/366#issuecomment-425688060","issue_url":"https://api.github.com/repos/diasurgical/devilution/issues/366","id":425688060,"node_id":"MDEyOklzc3VlQ29tbWVudDQyNTY4ODA2MA==","user":{"login":"galaxyhaxz","id":15209402,"node_id":"MDQ6VXNlcjE1MjA5NDAy","avatar_url":"https://avatars0.githubusercontent.com/u/15209402?v=4","gravatar_id":"","url":"https://api.github.com/users/galaxyhaxz","html_url":"https://github.com/galaxyhaxz","followers_url":"https://api.github.com/users/galaxyhaxz/followers","following_url":"https://api.github.com/users/galaxyhaxz/following{/other_user}","gists_url":"https://api.github.com/users/galaxyhaxz/gists{/gist_id}","starred_url":"https://api.github.com/users/galaxyhaxz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/galaxyhaxz/subscriptions","organizations_url":"https://api.github.com/users/galaxyhaxz/orgs","repos_url":"https://api.github.com/users/galaxyhaxz/repos","events_url":"https://api.github.com/users/galaxyhaxz/events{/privacy}","received_events_url":"https://api.github.com/users/galaxyhaxz/received_events","type":"User","site_admin":false},"created_at":"2018-09-30T02:07:30Z","updated_at":"2018-09-30T02:07:30Z","author_association":"MEMBER","body":"Ok, I think the issue is not with the DRLG, but instead the map seed. It seems to be using the wrong seed when going back up to the level in your save file. I couldn't reproduce this with either the latest nightly or my offline stable build.\r\n\r\nHere is a picture of the map seed for level 5, notice the three doors?\r\n\r\nHere is level 5 from your save file. It is using that same seed (objects spawn at the same coordinate) but the map is generating from a different seed:\r\n"}} | {
"id": 127684759,
"name": "diasurgical/devilution",
"url": "https://api.github.com/repos/diasurgical/devilution"
} | {
"id": 15209402,
"login": "galaxyhaxz",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/15209402?",
"url": "https://api.github.com/users/galaxyhaxz"
} | {
"id": 40645014,
"login": "diasurgical",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/40645014?",
"url": "https://api.github.com/orgs/diasurgical"
} | 2018-09-30T02:07:26 | 8343260711 | {"actor":{"display_login":"galaxyhaxz"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/UnicornTranscoder/UnicornTranscoder/issues/39","repository_url":"https://api.github.com/repos/UnicornTranscoder/UnicornTranscoder","labels_url":"https://api.github.com/repos/UnicornTranscoder/UnicornTranscoder/issues/39/labels{/name}","comments_url":"https://api.github.com/repos/UnicornTranscoder/UnicornTranscoder/issues/39/comments","events_url":"https://api.github.com/repos/UnicornTranscoder/UnicornTranscoder/issues/39/events","html_url":"https://github.com/UnicornTranscoder/UnicornTranscoder/issues/39","id":385560107,"node_id":"MDU6SXNzdWUzODU1NjAxMDc=","number":39,"title":"iOS App can not connect?","user":{"login":"raphaelfumfahr","id":6332358,"node_id":"MDQ6VXNlcjYzMzIzNTg=","avatar_url":"https://avatars0.githubusercontent.com/u/6332358?v=4","gravatar_id":"","url":"https://api.github.com/users/raphaelfumfahr","html_url":"https://github.com/raphaelfumfahr","followers_url":"https://api.github.com/users/raphaelfumfahr/followers","following_url":"https://api.github.com/users/raphaelfumfahr/following{/other_user}","gists_url":"https://api.github.com/users/raphaelfumfahr/gists{/gist_id}","starred_url":"https://api.github.com/users/raphaelfumfahr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/raphaelfumfahr/subscriptions","organizations_url":"https://api.github.com/users/raphaelfumfahr/orgs","repos_url":"https://api.github.com/users/raphaelfumfahr/repos","events_url":"https://api.github.com/users/raphaelfumfahr/events{/privacy}","received_events_url":"https://api.github.com/users/raphaelfumfahr/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":36,"created_at":"2018-11-29T03:59:30Z","updated_at":"2018-11-30T03:59:44Z","closed_at":null,"author_association":"NONE","body":"Hello, there,\r\n\r\nI installed the Transcoder and Loadbalancer, now I wanted to connect to my mobile using the External Server function. Since the 32400 port is disabled for other users. Now I tried to connect to the port of the LoadBalancer (3001) and my IP of the LoadBalancer and got only a 401 error message. Anyone have any idea why? On my Smarttv works fine..."},"comment":{"url":"https://api.github.com/repos/UnicornTranscoder/UnicornTranscoder/issues/comments/443083321","html_url":"https://github.com/UnicornTranscoder/UnicornTranscoder/issues/39#issuecomment-443083321","issue_url":"https://api.github.com/repos/UnicornTranscoder/UnicornTranscoder/issues/39","id":443083321,"node_id":"MDEyOklzc3VlQ29tbWVudDQ0MzA4MzMyMQ==","user":{"login":"raphaelfumfahr","id":6332358,"node_id":"MDQ6VXNlcjYzMzIzNTg=","avatar_url":"https://avatars0.githubusercontent.com/u/6332358?v=4","gravatar_id":"","url":"https://api.github.com/users/raphaelfumfahr","html_url":"https://github.com/raphaelfumfahr","followers_url":"https://api.github.com/users/raphaelfumfahr/followers","following_url":"https://api.github.com/users/raphaelfumfahr/following{/other_user}","gists_url":"https://api.github.com/users/raphaelfumfahr/gists{/gist_id}","starred_url":"https://api.github.com/users/raphaelfumfahr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/raphaelfumfahr/subscriptions","organizations_url":"https://api.github.com/users/raphaelfumfahr/orgs","repos_url":"https://api.github.com/users/raphaelfumfahr/repos","events_url":"https://api.github.com/users/raphaelfumfahr/events{/privacy}","received_events_url":"https://api.github.com/users/raphaelfumfahr/received_events","type":"User","site_admin":false},"created_at":"2018-11-30T03:59:44Z","updated_at":"2018-11-30T03:59:44Z","author_association":"NONE","body":"Ah okay :) Delete Plex Relay again now its work i hope... i think this was the error?"}} | {
"id": 89940725,
"name": "UnicornTranscoder/UnicornTranscoder",
"url": "https://api.github.com/repos/UnicornTranscoder/UnicornTranscoder"
} | {
"id": 6332358,
"login": "raphaelfumfahr",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6332358?",
"url": "https://api.github.com/users/raphaelfumfahr"
} | {
"id": 40697375,
"login": "UnicornTranscoder",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/40697375?",
"url": "https://api.github.com/orgs/UnicornTranscoder"
} | 2018-11-30T03:59:44 | 8673746907 | {"actor":{"display_login":"raphaelfumfahr"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/pm4py/pm4py-source/issues/14","repository_url":"https://api.github.com/repos/pm4py/pm4py-source","labels_url":"https://api.github.com/repos/pm4py/pm4py-source/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/pm4py/pm4py-source/issues/14/comments","events_url":"https://api.github.com/repos/pm4py/pm4py-source/issues/14/events","html_url":"https://github.com/pm4py/pm4py-source/issues/14","id":376327462,"node_id":"MDU6SXNzdWUzNzYzMjc0NjI=","number":14,"title":"Bug in Inductive Miner","user":{"login":"s-j-v-zelst","id":6236151,"node_id":"MDQ6VXNlcjYyMzYxNTE=","avatar_url":"https://avatars0.githubusercontent.com/u/6236151?v=4","gravatar_id":"","url":"https://api.github.com/users/s-j-v-zelst","html_url":"https://github.com/s-j-v-zelst","followers_url":"https://api.github.com/users/s-j-v-zelst/followers","following_url":"https://api.github.com/users/s-j-v-zelst/following{/other_user}","gists_url":"https://api.github.com/users/s-j-v-zelst/gists{/gist_id}","starred_url":"https://api.github.com/users/s-j-v-zelst/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/s-j-v-zelst/subscriptions","organizations_url":"https://api.github.com/users/s-j-v-zelst/orgs","repos_url":"https://api.github.com/users/s-j-v-zelst/repos","events_url":"https://api.github.com/users/s-j-v-zelst/events{/privacy}","received_events_url":"https://api.github.com/users/s-j-v-zelst/received_events","type":"User","site_admin":false},"labels":[{"id":982360485,"node_id":"MDU6TGFiZWw5ODIzNjA0ODU=","url":"https://api.github.com/repos/pm4py/pm4py-source/labels/bug","name":"bug","color":"d73a4a","default":true}],"state":"open","locked":false,"assignee":{"login":"Javert899","id":41383598,"node_id":"MDQ6VXNlcjQxMzgzNTk4","avatar_url":"https://avatars1.githubusercontent.com/u/41383598?v=4","gravatar_id":"","url":"https://api.github.com/users/Javert899","html_url":"https://github.com/Javert899","followers_url":"https://api.github.com/users/Javert899/followers","following_url":"https://api.github.com/users/Javert899/following{/other_user}","gists_url":"https://api.github.com/users/Javert899/gists{/gist_id}","starred_url":"https://api.github.com/users/Javert899/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Javert899/subscriptions","organizations_url":"https://api.github.com/users/Javert899/orgs","repos_url":"https://api.github.com/users/Javert899/repos","events_url":"https://api.github.com/users/Javert899/events{/privacy}","received_events_url":"https://api.github.com/users/Javert899/received_events","type":"User","site_admin":false},"assignees":[{"login":"Javert899","id":41383598,"node_id":"MDQ6VXNlcjQxMzgzNTk4","avatar_url":"https://avatars1.githubusercontent.com/u/41383598?v=4","gravatar_id":"","url":"https://api.github.com/users/Javert899","html_url":"https://github.com/Javert899","followers_url":"https://api.github.com/users/Javert899/followers","following_url":"https://api.github.com/users/Javert899/following{/other_user}","gists_url":"https://api.github.com/users/Javert899/gists{/gist_id}","starred_url":"https://api.github.com/users/Javert899/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Javert899/subscriptions","organizations_url":"https://api.github.com/users/Javert899/orgs","repos_url":"https://api.github.com/users/Javert899/repos","events_url":"https://api.github.com/users/Javert899/events{/privacy}","received_events_url":"https://api.github.com/users/Javert899/received_events","type":"User","site_admin":false}],"milestone":{"url":"https://api.github.com/repos/pm4py/pm4py-source/milestones/1","html_url":"https://github.com/pm4py/pm4py-source/milestone/1","labels_url":"https://api.github.com/repos/pm4py/pm4py-source/milestones/1/labels","id":3709725,"node_id":"MDk6TWlsZXN0b25lMzcwOTcyNQ==","number":1,"title":"pm4py-0.0.1","description":"Goal is to release first alpha version of pm4py.\r\nShould already be available on PIP and usable in the RWTH PADS Introduction to Data Science course.\r\nInternal testing by non-developers required.","creator":{"login":"s-j-v-zelst","id":6236151,"node_id":"MDQ6VXNlcjYyMzYxNTE=","avatar_url":"https://avatars0.githubusercontent.com/u/6236151?v=4","gravatar_id":"","url":"https://api.github.com/users/s-j-v-zelst","html_url":"https://github.com/s-j-v-zelst","followers_url":"https://api.github.com/users/s-j-v-zelst/followers","following_url":"https://api.github.com/users/s-j-v-zelst/following{/other_user}","gists_url":"https://api.github.com/users/s-j-v-zelst/gists{/gist_id}","starred_url":"https://api.github.com/users/s-j-v-zelst/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/s-j-v-zelst/subscriptions","organizations_url":"https://api.github.com/users/s-j-v-zelst/orgs","repos_url":"https://api.github.com/users/s-j-v-zelst/repos","events_url":"https://api.github.com/users/s-j-v-zelst/events{/privacy}","received_events_url":"https://api.github.com/users/s-j-v-zelst/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":1,"state":"open","created_at":"2018-10-03T15:26:32Z","updated_at":"2018-11-01T10:03:25Z","due_on":"2018-10-31T07:00:00Z","closed_at":null},"comments":0,"created_at":"2018-11-01T10:03:24Z","updated_at":"2018-11-01T10:44:23Z","closed_at":null,"author_association":"CONTRIBUTOR","body":"I found another bug in the inductive miner.\r\nOn the simple log [<b,c,e,j>, <b,d,j>, <f,h,g,i,k>] (attached a .txt (remove it to get the .xes)\r\n[pm4py_imdf_issue.xes.txt](https://github.com/pm4py/pm4py-source/files/2538025/pm4py_imdf_issue.xes.txt)\r\n), the IM fails to recognize the xor construct between c,e and d.\r\n\r\nI have attached a log that contains the data, the output of the IM in pm4py, and the output of the same miner (dfg based) from ProM.\r\n\r\nPlease fix (ASAP!), because this is a rather severe problem and should not be in the release.\r\n\r\n\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/pm4py/pm4py-source/issues/comments/435002613","html_url":"https://github.com/pm4py/pm4py-source/issues/14#issuecomment-435002613","issue_url":"https://api.github.com/repos/pm4py/pm4py-source/issues/14","id":435002613,"node_id":"MDEyOklzc3VlQ29tbWVudDQzNTAwMjYxMw==","user":{"login":"Javert899","id":41383598,"node_id":"MDQ6VXNlcjQxMzgzNTk4","avatar_url":"https://avatars1.githubusercontent.com/u/41383598?v=4","gravatar_id":"","url":"https://api.github.com/users/Javert899","html_url":"https://github.com/Javert899","followers_url":"https://api.github.com/users/Javert899/followers","following_url":"https://api.github.com/users/Javert899/following{/other_user}","gists_url":"https://api.github.com/users/Javert899/gists{/gist_id}","starred_url":"https://api.github.com/users/Javert899/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Javert899/subscriptions","organizations_url":"https://api.github.com/users/Javert899/orgs","repos_url":"https://api.github.com/users/Javert899/repos","events_url":"https://api.github.com/users/Javert899/events{/privacy}","received_events_url":"https://api.github.com/users/Javert899/received_events","type":"User","site_admin":false},"created_at":"2018-11-01T10:44:23Z","updated_at":"2018-11-01T10:44:23Z","author_association":"NONE","body":"Thank you for signaling.\r\n\r\nActually the problem was in sequential cut detection, that has now been refined.\r\nThe problem spotted in your log is solved and the process extracted is the following:\r\n\r\n\r\n\r\nPlease check if the problem is actually resolved"}} | {
"id": 139544382,
"name": "pm4py/pm4py-source",
"url": "https://api.github.com/repos/pm4py/pm4py-source"
} | {
"id": 41383598,
"login": "Javert899",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/41383598?",
"url": "https://api.github.com/users/Javert899"
} | {
"id": 40787468,
"login": "pm4py",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/40787468?",
"url": "https://api.github.com/orgs/pm4py"
} | 2018-11-01T10:44:23 | 8518195684 | {"actor":{"display_login":"Javert899"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/custom-components/sensor.trakt/issues/2","repository_url":"https://api.github.com/repos/custom-components/sensor.trakt","labels_url":"https://api.github.com/repos/custom-components/sensor.trakt/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/custom-components/sensor.trakt/issues/2/comments","events_url":"https://api.github.com/repos/custom-components/sensor.trakt/issues/2/events","html_url":"https://github.com/custom-components/sensor.trakt/issues/2","id":364394264,"node_id":"MDU6SXNzdWUzNjQzOTQyNjQ=","number":2,"title":"Error: \"Unable to find component sensor.trakt\"","user":{"login":"fredrikbaberg","id":19709460,"node_id":"MDQ6VXNlcjE5NzA5NDYw","avatar_url":"https://avatars2.githubusercontent.com/u/19709460?v=4","gravatar_id":"","url":"https://api.github.com/users/fredrikbaberg","html_url":"https://github.com/fredrikbaberg","followers_url":"https://api.github.com/users/fredrikbaberg/followers","following_url":"https://api.github.com/users/fredrikbaberg/following{/other_user}","gists_url":"https://api.github.com/users/fredrikbaberg/gists{/gist_id}","starred_url":"https://api.github.com/users/fredrikbaberg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fredrikbaberg/subscriptions","organizations_url":"https://api.github.com/users/fredrikbaberg/orgs","repos_url":"https://api.github.com/users/fredrikbaberg/repos","events_url":"https://api.github.com/users/fredrikbaberg/events{/privacy}","received_events_url":"https://api.github.com/users/fredrikbaberg/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-09-27T09:55:05Z","updated_at":"2018-09-27T17:03:38Z","closed_at":null,"author_association":"NONE","body":"After adding `trakt.py` to `custom_components/sensor/` and restarting I get \"Unable to find component sensor.trakt\".\r\nWith more detailed logging, I get:\r\n```\r\nError loading custom_components.sensor.trakt. Make sure all dependencies are installed\r\nTraceback (most recent call last):\r\n File \"/usr/local/lib/python3.6/site-packages/homeassistant/loader.py\", line 94, in get_component\r\n module = importlib.import_module(path)\r\n File \"/usr/local/lib/python3.6/importlib/__init__.py\", line 126, in import_module\r\n return _bootstrap._gcd_import(name[level:], package, level)\r\n File \"<frozen importlib._bootstrap>\", line 994, in _gcd_import\r\n File \"<frozen importlib._bootstrap>\", line 971, in _find_and_load\r\n File \"<frozen importlib._bootstrap>\", line 955, in _find_and_load_unlocked\r\n File \"<frozen importlib._bootstrap>\", line 665, in _load_unlocked\r\n File \"<frozen importlib._bootstrap_external>\", line 678, in exec_module\r\n File \"<frozen importlib._bootstrap>\", line 219, in _call_with_frames_removed\r\n File \"/config/custom_components/sensor/trakt.py\", line 12, in <module>\r\n import trakt\r\nModuleNotFoundError: No module named 'trakt'\r\n```\r\n\r\nThis is on a \"Virtual server\" install of Hass.io, Home Assistant 0.78.3"},"comment":{"url":"https://api.github.com/repos/custom-components/sensor.trakt/issues/comments/425168635","html_url":"https://github.com/custom-components/sensor.trakt/issues/2#issuecomment-425168635","issue_url":"https://api.github.com/repos/custom-components/sensor.trakt/issues/2","id":425168635,"node_id":"MDEyOklzc3VlQ29tbWVudDQyNTE2ODYzNQ==","user":{"login":"ludeeus","id":15093472,"node_id":"MDQ6VXNlcjE1MDkzNDcy","avatar_url":"https://avatars2.githubusercontent.com/u/15093472?v=4","gravatar_id":"","url":"https://api.github.com/users/ludeeus","html_url":"https://github.com/ludeeus","followers_url":"https://api.github.com/users/ludeeus/followers","following_url":"https://api.github.com/users/ludeeus/following{/other_user}","gists_url":"https://api.github.com/users/ludeeus/gists{/gist_id}","starred_url":"https://api.github.com/users/ludeeus/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ludeeus/subscriptions","organizations_url":"https://api.github.com/users/ludeeus/orgs","repos_url":"https://api.github.com/users/ludeeus/repos","events_url":"https://api.github.com/users/ludeeus/events{/privacy}","received_events_url":"https://api.github.com/users/ludeeus/received_events","type":"User","site_admin":false},"created_at":"2018-09-27T17:03:38Z","updated_at":"2018-09-27T17:03:38Z","author_association":"NONE","body":"`ModuleNotFoundError: No module named 'trakt'` are very normal for custom_components.\r\nA restart usually corrects that."}} | {
"id": 146379582,
"name": "custom-components/sensor.trakt",
"url": "https://api.github.com/repos/custom-components/sensor.trakt"
} | {
"id": 15093472,
"login": "ludeeus",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/15093472?",
"url": "https://api.github.com/users/ludeeus"
} | {
"id": 40870121,
"login": "custom-components",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/40870121?",
"url": "https://api.github.com/orgs/custom-components"
} | 2018-09-27T17:03:38 | 8333134443 | {"actor":{"display_login":"ludeeus"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/aws-amplify/amplify-js/issues/2102","repository_url":"https://api.github.com/repos/aws-amplify/amplify-js","labels_url":"https://api.github.com/repos/aws-amplify/amplify-js/issues/2102/labels{/name}","comments_url":"https://api.github.com/repos/aws-amplify/amplify-js/issues/2102/comments","events_url":"https://api.github.com/repos/aws-amplify/amplify-js/issues/2102/events","html_url":"https://github.com/aws-amplify/amplify-js/issues/2102","id":380466560,"node_id":"MDU6SXNzdWUzODA0NjY1NjA=","number":2102,"title":"You can confirm emails you don't own if multifactor is turned on in Cognito","user":{"login":"bionicles","id":24532336,"node_id":"MDQ6VXNlcjI0NTMyMzM2","avatar_url":"https://avatars2.githubusercontent.com/u/24532336?v=4","gravatar_id":"","url":"https://api.github.com/users/bionicles","html_url":"https://github.com/bionicles","followers_url":"https://api.github.com/users/bionicles/followers","following_url":"https://api.github.com/users/bionicles/following{/other_user}","gists_url":"https://api.github.com/users/bionicles/gists{/gist_id}","starred_url":"https://api.github.com/users/bionicles/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bionicles/subscriptions","organizations_url":"https://api.github.com/users/bionicles/orgs","repos_url":"https://api.github.com/users/bionicles/repos","events_url":"https://api.github.com/users/bionicles/events{/privacy}","received_events_url":"https://api.github.com/users/bionicles/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":11,"created_at":"2018-11-13T23:16:08Z","updated_at":"2018-12-03T21:36:39Z","closed_at":null,"author_association":"CONTRIBUTOR","body":"**Describe the bug**\r\nif multifactor is turned on in cognito then you can confirm any email address with just your phone\r\n\r\n**To Reproduce**\r\nSteps to reproduce the behavior:\r\n1. Make a user pool with multifactor turned on\r\n2. use Auth.signUp with the target email and your own phone number\r\n3. enter the code sent to your phone\r\n4. congrats, you just \"confirmed\" any email address in your cognito user pool\r\n\r\n**Expected behavior**\r\nThis vulnerability/exploit is possible because the signUp and confirmSignUp function only requires the SMS code and not the email code to confirm the user. \r\n\r\nTo fix the vulnerability, signUp must send email and phone codes simultaneously and confirmSignUp must simultaneously verify them. \r\n\r\n1. Auth.signUp(userDataObject)\r\n2. Auth.confirmSignUp(emailCode, phoneCode)\r\n\r\n**Screenshots**\r\nThis screenshot shows Jeff Bezos Email Confirmed on the bitpharma.com Cognito User Pool - we did this entirely using AWS amplify Auth and not through AWS console\r\n\r\n\r\n**Desktop (please complete the following information):**\r\n - OS: Any\r\n - Browser Any\r\n\r\n**Additional context**\r\nThis issue prevents us from launching our web platform with a clear conscience because it prevents us from trusting the integrity of the AWS Amplify Cognito Auth system, which also means we can't use AWS AppSync.\r\n\r\nThat means we can't use the awesome Serverless GraphQL Graph Database we built. We reported the issue to [email protected] directly 64+ days ago and have opened 2 github issues, contributed code to fix the problem, exchanged emails, phone call, and DMs with AWS Cognito team (raja) and now we're forced to scrap thousands and thousands of dollars worth of engineering and STILL have to rebuild a new solution. UGH! PLEASE FIX!\r\n\r\nThis issue was closed:\r\nhttps://github.com/aws-amplify/amplify-js/issues/1959\r\n\r\nThis issue was ignored:\r\nhttps://github.com/aws-amplify/amplify-js/issues/1685\r\n\r\nWe tweeted Andy Jassy about this: \r\nhttps://twitter.com/ajassy/status/1062130529963655169\r\n\r\nWe tweeted Jeff Bezos about this:\r\nhttps://twitter.com/bitpharma/status/1062368063478288384\r\n\r\nToday we used it to sign up Jeff Bezos' email with bitpharma.com user pool. Still no word from anyone...\r\nI'm pissed because this is a critical cybersecurity vulnerability and no one at AWS seems to care! This could cause serious headaches if not patched ASAP because hackers can exploit this vulnerability to clog any cognito user pool by registering many many emails they do not own...\r\n\r\n@yuntuowang @nidsharm @mlabieniec @powerful23 @mbahar @richardzcode @elorzafe @jordanranz @manueliglesias \r\n\r\nThis library is too important to leave unsecured. Are you too busy to patch this vulnerability in the cybersecurity of the first step of signup in AWS Amplify Cognito Auth? "},"comment":{"url":"https://api.github.com/repos/aws-amplify/amplify-js/issues/comments/443879426","html_url":"https://github.com/aws-amplify/amplify-js/issues/2102#issuecomment-443879426","issue_url":"https://api.github.com/repos/aws-amplify/amplify-js/issues/2102","id":443879426,"node_id":"MDEyOklzc3VlQ29tbWVudDQ0Mzg3OTQyNg==","user":{"login":"bionicles","id":24532336,"node_id":"MDQ6VXNlcjI0NTMyMzM2","avatar_url":"https://avatars2.githubusercontent.com/u/24532336?v=4","gravatar_id":"","url":"https://api.github.com/users/bionicles","html_url":"https://github.com/bionicles","followers_url":"https://api.github.com/users/bionicles/followers","following_url":"https://api.github.com/users/bionicles/following{/other_user}","gists_url":"https://api.github.com/users/bionicles/gists{/gist_id}","starred_url":"https://api.github.com/users/bionicles/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bionicles/subscriptions","organizations_url":"https://api.github.com/users/bionicles/orgs","repos_url":"https://api.github.com/users/bionicles/repos","events_url":"https://api.github.com/users/bionicles/events{/privacy}","received_events_url":"https://api.github.com/users/bionicles/received_events","type":"User","site_admin":false},"created_at":"2018-12-03T21:36:39Z","updated_at":"2018-12-03T21:36:39Z","author_association":"CONTRIBUTOR","body":"I didn't claim it did -- this still looks inaccurate (integrity issue) and he still can't sign up (availability issue)\r\n\r\nFixing this vulnerability will allow Amplify+Cognito users to remove multiple screens of login.\r\n \r\nFixing this vulnerability will prevent threat actors from confirming accounts with emails they do not own with any burner phone number.\r\n\r\nFixing this vulnerability will prevent threat actors from denying any email they want access to MFA User Pools.\r\n\r\n@janaz Do you think it's Great Security for anyone to be able to deny any email the ability to sign up for any User Pool if MFA is enabled? \r\n\r\nObviously I can't Verify the email. I can definitely confirm the account. So if there's some critical service (like a HIPAA-compliant medical records app) I can sign up someone else's email and then they can't access their medical records. The P in HIPAA stands for Portability means \"users ought to be able to access their records\" \r\n\r\nIf you argue against this fix, you argue for: \r\n1, More Forms, (not so bad, just crappy UX)\r\n2. Confirm Accounts with Any Email, (not so bad, sure)\r\n\r\n3. Deny Accounts with Any Email <----- critical issue"}} | {
"id": 105590837,
"name": "aws-amplify/amplify-js",
"url": "https://api.github.com/repos/aws-amplify/amplify-js"
} | {
"id": 24532336,
"login": "bionicles",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/24532336?",
"url": "https://api.github.com/users/bionicles"
} | {
"id": 41077760,
"login": "aws-amplify",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/41077760?",
"url": "https://api.github.com/orgs/aws-amplify"
} | 2018-12-03T21:36:39 | 8690448554 | {"actor":{"display_login":"bionicles"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/aws-amplify/amplify-cli/issues/639","repository_url":"https://api.github.com/repos/aws-amplify/amplify-cli","labels_url":"https://api.github.com/repos/aws-amplify/amplify-cli/issues/639/labels{/name}","comments_url":"https://api.github.com/repos/aws-amplify/amplify-cli/issues/639/comments","events_url":"https://api.github.com/repos/aws-amplify/amplify-cli/issues/639/events","html_url":"https://github.com/aws-amplify/amplify-cli/issues/639","id":394841339,"node_id":"MDU6SXNzdWUzOTQ4NDEzMzk=","number":639,"title":"several multienv packages are seemingly missing from yarn registry","user":{"login":"thisjeremiah","id":7308192,"node_id":"MDQ6VXNlcjczMDgxOTI=","avatar_url":"https://avatars2.githubusercontent.com/u/7308192?v=4","gravatar_id":"","url":"https://api.github.com/users/thisjeremiah","html_url":"https://github.com/thisjeremiah","followers_url":"https://api.github.com/users/thisjeremiah/followers","following_url":"https://api.github.com/users/thisjeremiah/following{/other_user}","gists_url":"https://api.github.com/users/thisjeremiah/gists{/gist_id}","starred_url":"https://api.github.com/users/thisjeremiah/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thisjeremiah/subscriptions","organizations_url":"https://api.github.com/users/thisjeremiah/orgs","repos_url":"https://api.github.com/users/thisjeremiah/repos","events_url":"https://api.github.com/users/thisjeremiah/events{/privacy}","received_events_url":"https://api.github.com/users/thisjeremiah/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-12-30T02:43:50Z","updated_at":"2018-12-30T03:16:03Z","closed_at":null,"author_association":"NONE","body":"**Describe the bug**\r\n\r\nInstalling `@aws-amplify/cli@multienv` with `yarn` results in several non-multienv packages being downloaded, resulting in faulty behavior.\r\n\r\n**To Reproduce**\r\n\r\n1. Run `yarn global add @aws-amplify/cli@multienv`\r\n2. Go to global yarn directory (`yarn global bin`)\r\n3. Observe non-multienv version number in `node_modules/graphql-elasticsearch-transformer/package.json`\r\n4. Observe non-multienv version in global `yarn.lock` entry for `graphql-elasticsearch-transformer`\r\n\r\n**Expected behavior**\r\n\r\nMultienv versions of `graphl-*-transformer` packages should resolve to correct multienv versions.\r\n\r\n**Desktop (please complete the following information):**\r\n - OS: macos\r\n\r\n**Additional context**\r\n\r\nHave not yet tested with `npm -g install @aws-amplify/cli@multienv`"},"comment":{"url":"https://api.github.com/repos/aws-amplify/amplify-cli/issues/comments/450536331","html_url":"https://github.com/aws-amplify/amplify-cli/issues/639#issuecomment-450536331","issue_url":"https://api.github.com/repos/aws-amplify/amplify-cli/issues/639","id":450536331,"node_id":"MDEyOklzc3VlQ29tbWVudDQ1MDUzNjMzMQ==","user":{"login":"thisjeremiah","id":7308192,"node_id":"MDQ6VXNlcjczMDgxOTI=","avatar_url":"https://avatars2.githubusercontent.com/u/7308192?v=4","gravatar_id":"","url":"https://api.github.com/users/thisjeremiah","html_url":"https://github.com/thisjeremiah","followers_url":"https://api.github.com/users/thisjeremiah/followers","following_url":"https://api.github.com/users/thisjeremiah/following{/other_user}","gists_url":"https://api.github.com/users/thisjeremiah/gists{/gist_id}","starred_url":"https://api.github.com/users/thisjeremiah/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/thisjeremiah/subscriptions","organizations_url":"https://api.github.com/users/thisjeremiah/orgs","repos_url":"https://api.github.com/users/thisjeremiah/repos","events_url":"https://api.github.com/users/thisjeremiah/events{/privacy}","received_events_url":"https://api.github.com/users/thisjeremiah/received_events","type":"User","site_admin":false},"created_at":"2018-12-30T03:16:03Z","updated_at":"2018-12-30T03:16:03Z","author_association":"NONE","body":"This is possibly a semver interpretation issue? [See here](https://github.com/yarnpkg/yarn/issues/1545#issuecomment-257062992)."}} | {
"id": 145880460,
"name": "aws-amplify/amplify-cli",
"url": "https://api.github.com/repos/aws-amplify/amplify-cli"
} | {
"id": 7308192,
"login": "thisjeremiah",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/7308192?",
"url": "https://api.github.com/users/thisjeremiah"
} | {
"id": 41077760,
"login": "aws-amplify",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/41077760?",
"url": "https://api.github.com/orgs/aws-amplify"
} | 2018-12-30T03:16:03 | 8816001029 | {"actor":{"display_login":"thisjeremiah"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/gofrs/uuid/issues/31","repository_url":"https://api.github.com/repos/gofrs/uuid","labels_url":"https://api.github.com/repos/gofrs/uuid/issues/31/labels{/name}","comments_url":"https://api.github.com/repos/gofrs/uuid/issues/31/comments","events_url":"https://api.github.com/repos/gofrs/uuid/issues/31/events","html_url":"https://github.com/gofrs/uuid/pull/31","id":342491159,"node_id":"MDExOlB1bGxSZXF1ZXN0MjAyMzc5NDQ1","number":31,"title":"Add Time() and Nanos() methods","user":{"login":"rkuris","id":3193068,"node_id":"MDQ6VXNlcjMxOTMwNjg=","avatar_url":"https://avatars0.githubusercontent.com/u/3193068?v=4","gravatar_id":"","url":"https://api.github.com/users/rkuris","html_url":"https://github.com/rkuris","followers_url":"https://api.github.com/users/rkuris/followers","following_url":"https://api.github.com/users/rkuris/following{/other_user}","gists_url":"https://api.github.com/users/rkuris/gists{/gist_id}","starred_url":"https://api.github.com/users/rkuris/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rkuris/subscriptions","organizations_url":"https://api.github.com/users/rkuris/orgs","repos_url":"https://api.github.com/users/rkuris/repos","events_url":"https://api.github.com/users/rkuris/events{/privacy}","received_events_url":"https://api.github.com/users/rkuris/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2018-07-18T21:03:29Z","updated_at":"2018-07-19T07:35:41Z","closed_at":null,"author_association":"NONE","pull_request":{"url":"https://api.github.com/repos/gofrs/uuid/pulls/31","html_url":"https://github.com/gofrs/uuid/pull/31","diff_url":"https://github.com/gofrs/uuid/pull/31.diff","patch_url":"https://github.com/gofrs/uuid/pull/31.patch"},"body":"These methods can be used to extract time values\r\nfrom V1 UUIDs\r\n\r\nOriginally added as https://github.com/satori/go.uuid/pull/50\r\n"},"comment":{"url":"https://api.github.com/repos/gofrs/uuid/issues/comments/406183646","html_url":"https://github.com/gofrs/uuid/pull/31#issuecomment-406183646","issue_url":"https://api.github.com/repos/gofrs/uuid/issues/31","id":406183646,"node_id":"MDEyOklzc3VlQ29tbWVudDQwNjE4MzY0Ng==","user":{"login":"zerkms","id":302295,"node_id":"MDQ6VXNlcjMwMjI5NQ==","avatar_url":"https://avatars0.githubusercontent.com/u/302295?v=4","gravatar_id":"","url":"https://api.github.com/users/zerkms","html_url":"https://github.com/zerkms","followers_url":"https://api.github.com/users/zerkms/followers","following_url":"https://api.github.com/users/zerkms/following{/other_user}","gists_url":"https://api.github.com/users/zerkms/gists{/gist_id}","starred_url":"https://api.github.com/users/zerkms/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zerkms/subscriptions","organizations_url":"https://api.github.com/users/zerkms/orgs","repos_url":"https://api.github.com/users/zerkms/repos","events_url":"https://api.github.com/users/zerkms/events{/privacy}","received_events_url":"https://api.github.com/users/zerkms/received_events","type":"User","site_admin":false},"created_at":"2018-07-19T07:35:41Z","updated_at":"2018-07-19T07:35:41Z","author_association":"CONTRIBUTOR","body":"After giving it some more thoughts and reading the spec I came with the following new types to introduce\r\n\r\n```go\r\n// 100s of nanos since 00:00:00.00, 15 October 1582\r\ntype V1Timestamp int64\r\n\r\nfunc TimestampFromV1(UUID) (V1Timestamp, error)\r\n\r\nfunc TimeFromV1Timestamp(V1Timestamp) (time.Time, error)\r\n```\r\n\r\nRationale behind it:\r\n\r\n* Those are functions not methods of `UUID` since they make sense only for V1 and not the other types of UUID\r\n\r\n* The `V1Timestamp` type specifically chosen according the RFC terminology (https://tools.ietf.org/html/rfc4122#section-4.1.4)\r\n\r\n* `V1Timestamp` values are comparable by themselves, if one needs exact time - there is a converting function for convenience"}} | {
"id": 140785428,
"name": "gofrs/uuid",
"url": "https://api.github.com/repos/gofrs/uuid"
} | {
"id": 302295,
"login": "zerkms",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/302295?",
"url": "https://api.github.com/users/zerkms"
} | {
"id": 41122364,
"login": "gofrs",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/41122364?",
"url": "https://api.github.com/orgs/gofrs"
} | 2018-07-19T07:35:41 | 7987384938 | {"actor":{"display_login":"zerkms"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/HazureChi/kenchi/issues/65","repository_url":"https://api.github.com/repos/HazureChi/kenchi","labels_url":"https://api.github.com/repos/HazureChi/kenchi/issues/65/labels{/name}","comments_url":"https://api.github.com/repos/HazureChi/kenchi/issues/65/comments","events_url":"https://api.github.com/repos/HazureChi/kenchi/issues/65/events","html_url":"https://github.com/HazureChi/kenchi/issues/65","id":325691018,"node_id":"MDU6SXNzdWUzMjU2OTEwMTg=","number":65,"title":"Create JSON files that have the default parameter grid to explore","user":{"login":"Y-oHr-N","id":11706038,"node_id":"MDQ6VXNlcjExNzA2MDM4","avatar_url":"https://avatars2.githubusercontent.com/u/11706038?v=4","gravatar_id":"","url":"https://api.github.com/users/Y-oHr-N","html_url":"https://github.com/Y-oHr-N","followers_url":"https://api.github.com/users/Y-oHr-N/followers","following_url":"https://api.github.com/users/Y-oHr-N/following{/other_user}","gists_url":"https://api.github.com/users/Y-oHr-N/gists{/gist_id}","starred_url":"https://api.github.com/users/Y-oHr-N/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Y-oHr-N/subscriptions","organizations_url":"https://api.github.com/users/Y-oHr-N/orgs","repos_url":"https://api.github.com/users/Y-oHr-N/repos","events_url":"https://api.github.com/users/Y-oHr-N/events{/privacy}","received_events_url":"https://api.github.com/users/Y-oHr-N/received_events","type":"User","site_admin":false},"labels":[{"id":934223504,"node_id":"MDU6TGFiZWw5MzQyMjM1MDQ=","url":"https://api.github.com/repos/HazureChi/kenchi/labels/area:%20core","name":"area: core","color":"ffd1d1","default":false},{"id":932454586,"node_id":"MDU6TGFiZWw5MzI0NTQ1ODY=","url":"https://api.github.com/repos/HazureChi/kenchi/labels/priority:%20low","name":"priority: low","color":"cbf266","default":false},{"id":628958997,"node_id":"MDU6TGFiZWw2Mjg5NTg5OTc=","url":"https://api.github.com/repos/HazureChi/kenchi/labels/type:%20feature","name":"type: feature","color":"b4ebfa","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2018-05-23T12:51:27Z","updated_at":"2018-10-01T08:43:04Z","closed_at":null,"author_association":"COLLABORATOR","body":"See below\r\n\r\n- TPOT\r\n- auto-sklearn\r\n- hyperopt-sklearn\r\n- auto_ml"},"comment":{"url":"https://api.github.com/repos/HazureChi/kenchi/issues/comments/425831508","html_url":"https://github.com/HazureChi/kenchi/issues/65#issuecomment-425831508","issue_url":"https://api.github.com/repos/HazureChi/kenchi/issues/65","id":425831508,"node_id":"MDEyOklzc3VlQ29tbWVudDQyNTgzMTUwOA==","user":{"login":"Y-oHr-N","id":11706038,"node_id":"MDQ6VXNlcjExNzA2MDM4","avatar_url":"https://avatars2.githubusercontent.com/u/11706038?v=4","gravatar_id":"","url":"https://api.github.com/users/Y-oHr-N","html_url":"https://github.com/Y-oHr-N","followers_url":"https://api.github.com/users/Y-oHr-N/followers","following_url":"https://api.github.com/users/Y-oHr-N/following{/other_user}","gists_url":"https://api.github.com/users/Y-oHr-N/gists{/gist_id}","starred_url":"https://api.github.com/users/Y-oHr-N/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Y-oHr-N/subscriptions","organizations_url":"https://api.github.com/users/Y-oHr-N/orgs","repos_url":"https://api.github.com/users/Y-oHr-N/repos","events_url":"https://api.github.com/users/Y-oHr-N/events{/privacy}","received_events_url":"https://api.github.com/users/Y-oHr-N/received_events","type":"User","site_admin":false},"created_at":"2018-10-01T08:43:04Z","updated_at":"2018-10-01T08:43:04Z","author_association":"COLLABORATOR","body":"HBOS: {\r\n}"}} | {
"id": 94670883,
"name": "HazureChi/kenchi",
"url": "https://api.github.com/repos/HazureChi/kenchi"
} | {
"id": 11706038,
"login": "Y-oHr-N",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/11706038?",
"url": "https://api.github.com/users/Y-oHr-N"
} | {
"id": 41270692,
"login": "HazureChi",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/41270692?",
"url": "https://api.github.com/orgs/HazureChi"
} | 2018-10-01T08:43:04 | 8346492305 | {"actor":{"display_login":"Y-oHr-N"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/linuxdeploy/linuxdeploy/issues/42","repository_url":"https://api.github.com/repos/linuxdeploy/linuxdeploy","labels_url":"https://api.github.com/repos/linuxdeploy/linuxdeploy/issues/42/labels{/name}","comments_url":"https://api.github.com/repos/linuxdeploy/linuxdeploy/issues/42/comments","events_url":"https://api.github.com/repos/linuxdeploy/linuxdeploy/issues/42/events","html_url":"https://github.com/linuxdeploy/linuxdeploy/pull/42","id":377227036,"node_id":"MDExOlB1bGxSZXF1ZXN0MjI4MjI0Mjgz","number":42,"title":"Add symlinkFile to the public AppDir interface","user":{"login":"azubieta","id":1138094,"node_id":"MDQ6VXNlcjExMzgwOTQ=","avatar_url":"https://avatars1.githubusercontent.com/u/1138094?v=4","gravatar_id":"","url":"https://api.github.com/users/azubieta","html_url":"https://github.com/azubieta","followers_url":"https://api.github.com/users/azubieta/followers","following_url":"https://api.github.com/users/azubieta/following{/other_user}","gists_url":"https://api.github.com/users/azubieta/gists{/gist_id}","starred_url":"https://api.github.com/users/azubieta/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/azubieta/subscriptions","organizations_url":"https://api.github.com/users/azubieta/orgs","repos_url":"https://api.github.com/users/azubieta/repos","events_url":"https://api.github.com/users/azubieta/events{/privacy}","received_events_url":"https://api.github.com/users/azubieta/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-11-05T02:20:38Z","updated_at":"2018-11-05T20:51:40Z","closed_at":null,"author_association":"COLLABORATOR","pull_request":{"url":"https://api.github.com/repos/linuxdeploy/linuxdeploy/pulls/42","html_url":"https://github.com/linuxdeploy/linuxdeploy/pull/42","diff_url":"https://github.com/linuxdeploy/linuxdeploy/pull/42.diff","patch_url":"https://github.com/linuxdeploy/linuxdeploy/pull/42.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/linuxdeploy/linuxdeploy/issues/comments/436030205","html_url":"https://github.com/linuxdeploy/linuxdeploy/pull/42#issuecomment-436030205","issue_url":"https://api.github.com/repos/linuxdeploy/linuxdeploy/issues/42","id":436030205,"node_id":"MDEyOklzc3VlQ29tbWVudDQzNjAzMDIwNQ==","user":{"login":"azubieta","id":1138094,"node_id":"MDQ6VXNlcjExMzgwOTQ=","avatar_url":"https://avatars1.githubusercontent.com/u/1138094?v=4","gravatar_id":"","url":"https://api.github.com/users/azubieta","html_url":"https://github.com/azubieta","followers_url":"https://api.github.com/users/azubieta/followers","following_url":"https://api.github.com/users/azubieta/following{/other_user}","gists_url":"https://api.github.com/users/azubieta/gists{/gist_id}","starred_url":"https://api.github.com/users/azubieta/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/azubieta/subscriptions","organizations_url":"https://api.github.com/users/azubieta/orgs","repos_url":"https://api.github.com/users/azubieta/repos","events_url":"https://api.github.com/users/azubieta/events{/privacy}","received_events_url":"https://api.github.com/users/azubieta/received_events","type":"User","site_admin":false},"created_at":"2018-11-05T20:51:40Z","updated_at":"2018-11-05T20:51:40Z","author_association":"COLLABORATOR","body":"It's recommended to squash commits before merging."}} | {
"id": 134625865,
"name": "linuxdeploy/linuxdeploy",
"url": "https://api.github.com/repos/linuxdeploy/linuxdeploy"
} | {
"id": 1138094,
"login": "azubieta",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1138094?",
"url": "https://api.github.com/users/azubieta"
} | {
"id": 41347406,
"login": "linuxdeploy",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/41347406?",
"url": "https://api.github.com/orgs/linuxdeploy"
} | 2018-11-05T20:51:41 | 8538435673 | {"actor":{"display_login":"azubieta"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/tractorcow-farm/silverstripe-fluent/issues/484","repository_url":"https://api.github.com/repos/tractorcow-farm/silverstripe-fluent","labels_url":"https://api.github.com/repos/tractorcow-farm/silverstripe-fluent/issues/484/labels{/name}","comments_url":"https://api.github.com/repos/tractorcow-farm/silverstripe-fluent/issues/484/comments","events_url":"https://api.github.com/repos/tractorcow-farm/silverstripe-fluent/issues/484/events","html_url":"https://github.com/tractorcow-farm/silverstripe-fluent/issues/484","id":371992997,"node_id":"MDU6SXNzdWUzNzE5OTI5OTc=","number":484,"title":"Set up or move Scrutinizer to the farm","user":{"login":"robbieaverill","id":5170590,"node_id":"MDQ6VXNlcjUxNzA1OTA=","avatar_url":"https://avatars1.githubusercontent.com/u/5170590?v=4","gravatar_id":"","url":"https://api.github.com/users/robbieaverill","html_url":"https://github.com/robbieaverill","followers_url":"https://api.github.com/users/robbieaverill/followers","following_url":"https://api.github.com/users/robbieaverill/following{/other_user}","gists_url":"https://api.github.com/users/robbieaverill/gists{/gist_id}","starred_url":"https://api.github.com/users/robbieaverill/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robbieaverill/subscriptions","organizations_url":"https://api.github.com/users/robbieaverill/orgs","repos_url":"https://api.github.com/users/robbieaverill/repos","events_url":"https://api.github.com/users/robbieaverill/events{/privacy}","received_events_url":"https://api.github.com/users/robbieaverill/received_events","type":"User","site_admin":false},"labels":[{"id":744915116,"node_id":"MDU6TGFiZWw3NDQ5MTUxMTY=","url":"https://api.github.com/repos/tractorcow-farm/silverstripe-fluent/labels/affects/v4","name":"affects/v4","color":"5319e7","default":false},{"id":744915270,"node_id":"MDU6TGFiZWw3NDQ5MTUyNzA=","url":"https://api.github.com/repos/tractorcow-farm/silverstripe-fluent/labels/impact/low","name":"impact/low","color":"fef2c0","default":false},{"id":44693477,"node_id":"MDU6TGFiZWw0NDY5MzQ3Nw==","url":"https://api.github.com/repos/tractorcow-farm/silverstripe-fluent/labels/type/bug","name":"type/bug","color":"d93f0b","default":false}],"state":"closed","locked":false,"assignee":{"login":"tractorcow","id":936064,"node_id":"MDQ6VXNlcjkzNjA2NA==","avatar_url":"https://avatars2.githubusercontent.com/u/936064?v=4","gravatar_id":"","url":"https://api.github.com/users/tractorcow","html_url":"https://github.com/tractorcow","followers_url":"https://api.github.com/users/tractorcow/followers","following_url":"https://api.github.com/users/tractorcow/following{/other_user}","gists_url":"https://api.github.com/users/tractorcow/gists{/gist_id}","starred_url":"https://api.github.com/users/tractorcow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tractorcow/subscriptions","organizations_url":"https://api.github.com/users/tractorcow/orgs","repos_url":"https://api.github.com/users/tractorcow/repos","events_url":"https://api.github.com/users/tractorcow/events{/privacy}","received_events_url":"https://api.github.com/users/tractorcow/received_events","type":"User","site_admin":false},"assignees":[{"login":"tractorcow","id":936064,"node_id":"MDQ6VXNlcjkzNjA2NA==","avatar_url":"https://avatars2.githubusercontent.com/u/936064?v=4","gravatar_id":"","url":"https://api.github.com/users/tractorcow","html_url":"https://github.com/tractorcow","followers_url":"https://api.github.com/users/tractorcow/followers","following_url":"https://api.github.com/users/tractorcow/following{/other_user}","gists_url":"https://api.github.com/users/tractorcow/gists{/gist_id}","starred_url":"https://api.github.com/users/tractorcow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tractorcow/subscriptions","organizations_url":"https://api.github.com/users/tractorcow/orgs","repos_url":"https://api.github.com/users/tractorcow/repos","events_url":"https://api.github.com/users/tractorcow/events{/privacy}","received_events_url":"https://api.github.com/users/tractorcow/received_events","type":"User","site_admin":false}],"milestone":null,"comments":2,"created_at":"2018-10-19T14:53:42Z","updated_at":"2018-10-23T07:12:23Z","closed_at":"2018-10-23T00:41:05Z","author_association":"COLLABORATOR","body":"Hey @tractorcow!\r\n\r\nCould you either move Scrutinizer from tractorcow to tractorcow-farm, or create a new one for it?\r\n\r\nCheers =)"},"comment":{"url":"https://api.github.com/repos/tractorcow-farm/silverstripe-fluent/issues/comments/432122911","html_url":"https://github.com/tractorcow-farm/silverstripe-fluent/issues/484#issuecomment-432122911","issue_url":"https://api.github.com/repos/tractorcow-farm/silverstripe-fluent/issues/484","id":432122911,"node_id":"MDEyOklzc3VlQ29tbWVudDQzMjEyMjkxMQ==","user":{"login":"robbieaverill","id":5170590,"node_id":"MDQ6VXNlcjUxNzA1OTA=","avatar_url":"https://avatars1.githubusercontent.com/u/5170590?v=4","gravatar_id":"","url":"https://api.github.com/users/robbieaverill","html_url":"https://github.com/robbieaverill","followers_url":"https://api.github.com/users/robbieaverill/followers","following_url":"https://api.github.com/users/robbieaverill/following{/other_user}","gists_url":"https://api.github.com/users/robbieaverill/gists{/gist_id}","starred_url":"https://api.github.com/users/robbieaverill/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robbieaverill/subscriptions","organizations_url":"https://api.github.com/users/robbieaverill/orgs","repos_url":"https://api.github.com/users/robbieaverill/repos","events_url":"https://api.github.com/users/robbieaverill/events{/privacy}","received_events_url":"https://api.github.com/users/robbieaverill/received_events","type":"User","site_admin":false},"created_at":"2018-10-23T07:12:23Z","updated_at":"2018-10-23T07:12:23Z","author_association":"COLLABORATOR","body":"Nice one, cheers!"}} | {
"id": 10893201,
"name": "tractorcow-farm/silverstripe-fluent",
"url": "https://api.github.com/repos/tractorcow-farm/silverstripe-fluent"
} | {
"id": 5170590,
"login": "robbieaverill",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/5170590?",
"url": "https://api.github.com/users/robbieaverill"
} | {
"id": 41404929,
"login": "tractorcow-farm",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/41404929?",
"url": "https://api.github.com/orgs/tractorcow-farm"
} | 2018-10-23T07:12:23 | 8463501380 | {"actor":{"display_login":"robbieaverill"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/integr8ly/tutorial-web-app/issues/140","repository_url":"https://api.github.com/repos/integr8ly/tutorial-web-app","labels_url":"https://api.github.com/repos/integr8ly/tutorial-web-app/issues/140/labels{/name}","comments_url":"https://api.github.com/repos/integr8ly/tutorial-web-app/issues/140/comments","events_url":"https://api.github.com/repos/integr8ly/tutorial-web-app/issues/140/events","html_url":"https://github.com/integr8ly/tutorial-web-app/pull/140","id":370598143,"node_id":"MDExOlB1bGxSZXF1ZXN0MjIzMjM4OTM2","number":140,"title":"Update WT2","user":{"login":"finp","id":5154224,"node_id":"MDQ6VXNlcjUxNTQyMjQ=","avatar_url":"https://avatars0.githubusercontent.com/u/5154224?v=4","gravatar_id":"","url":"https://api.github.com/users/finp","html_url":"https://github.com/finp","followers_url":"https://api.github.com/users/finp/followers","following_url":"https://api.github.com/users/finp/following{/other_user}","gists_url":"https://api.github.com/users/finp/gists{/gist_id}","starred_url":"https://api.github.com/users/finp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/finp/subscriptions","organizations_url":"https://api.github.com/users/finp/orgs","repos_url":"https://api.github.com/users/finp/repos","events_url":"https://api.github.com/users/finp/events{/privacy}","received_events_url":"https://api.github.com/users/finp/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-10-16T12:55:34Z","updated_at":"2018-10-16T15:07:08Z","closed_at":null,"author_association":"CONTRIBUTOR","pull_request":{"url":"https://api.github.com/repos/integr8ly/tutorial-web-app/pulls/140","html_url":"https://github.com/integr8ly/tutorial-web-app/pull/140","diff_url":"https://github.com/integr8ly/tutorial-web-app/pull/140.diff","patch_url":"https://github.com/integr8ly/tutorial-web-app/pull/140.patch"},"body":"also contains some WT0 clean up"},"comment":{"url":"https://api.github.com/repos/integr8ly/tutorial-web-app/issues/comments/430274735","html_url":"https://github.com/integr8ly/tutorial-web-app/pull/140#issuecomment-430274735","issue_url":"https://api.github.com/repos/integr8ly/tutorial-web-app/issues/140","id":430274735,"node_id":"MDEyOklzc3VlQ29tbWVudDQzMDI3NDczNQ==","user":{"login":"finp","id":5154224,"node_id":"MDQ6VXNlcjUxNTQyMjQ=","avatar_url":"https://avatars0.githubusercontent.com/u/5154224?v=4","gravatar_id":"","url":"https://api.github.com/users/finp","html_url":"https://github.com/finp","followers_url":"https://api.github.com/users/finp/followers","following_url":"https://api.github.com/users/finp/following{/other_user}","gists_url":"https://api.github.com/users/finp/gists{/gist_id}","starred_url":"https://api.github.com/users/finp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/finp/subscriptions","organizations_url":"https://api.github.com/users/finp/orgs","repos_url":"https://api.github.com/users/finp/repos","events_url":"https://api.github.com/users/finp/events{/privacy}","received_events_url":"https://api.github.com/users/finp/received_events","type":"User","site_admin":false},"created_at":"2018-10-16T15:07:08Z","updated_at":"2018-10-16T15:07:08Z","author_association":"CONTRIBUTOR","body":"@dlabaj WT0 got removed in https://github.com/integr8ly/tutorial-web-app/pull/139 just some tidy up in this PR"}} | {
"id": 145002634,
"name": "integr8ly/tutorial-web-app",
"url": "https://api.github.com/repos/integr8ly/tutorial-web-app"
} | {
"id": 5154224,
"login": "finp",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/5154224?",
"url": "https://api.github.com/users/finp"
} | {
"id": 41683098,
"login": "integr8ly",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/41683098?",
"url": "https://api.github.com/orgs/integr8ly"
} | 2018-10-16T15:07:09 | 8429229020 | {"actor":{"display_login":"finp"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/PegaSysEng/pantheon/issues/366","repository_url":"https://api.github.com/repos/PegaSysEng/pantheon","labels_url":"https://api.github.com/repos/PegaSysEng/pantheon/issues/366/labels{/name}","comments_url":"https://api.github.com/repos/PegaSysEng/pantheon/issues/366/comments","events_url":"https://api.github.com/repos/PegaSysEng/pantheon/issues/366/events","html_url":"https://github.com/PegaSysEng/pantheon/issues/366","id":387722659,"node_id":"MDU6SXNzdWUzODc3MjI2NTk=","number":366,"title":"Create an Azure Windows 10 instance for test","user":{"login":"MadelineMurray","id":43356962,"node_id":"MDQ6VXNlcjQzMzU2OTYy","avatar_url":"https://avatars3.githubusercontent.com/u/43356962?v=4","gravatar_id":"","url":"https://api.github.com/users/MadelineMurray","html_url":"https://github.com/MadelineMurray","followers_url":"https://api.github.com/users/MadelineMurray/followers","following_url":"https://api.github.com/users/MadelineMurray/following{/other_user}","gists_url":"https://api.github.com/users/MadelineMurray/gists{/gist_id}","starred_url":"https://api.github.com/users/MadelineMurray/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MadelineMurray/subscriptions","organizations_url":"https://api.github.com/users/MadelineMurray/orgs","repos_url":"https://api.github.com/users/MadelineMurray/repos","events_url":"https://api.github.com/users/MadelineMurray/events{/privacy}","received_events_url":"https://api.github.com/users/MadelineMurray/received_events","type":"User","site_admin":false},"labels":[{"id":1103363942,"node_id":"MDU6TGFiZWwxMTAzMzYzOTQy","url":"https://api.github.com/repos/PegaSysEng/pantheon/labels/blocked","name":"blocked","color":"ef3b68","default":false},{"id":1104464572,"node_id":"MDU6TGFiZWwxMTA0NDY0NTcy","url":"https://api.github.com/repos/PegaSysEng/pantheon/labels/documentation","name":"documentation","color":"23ef50","default":false}],"state":"open","locked":false,"assignee":{"login":"NicolasMassart","id":4677568,"node_id":"MDQ6VXNlcjQ2Nzc1Njg=","avatar_url":"https://avatars1.githubusercontent.com/u/4677568?v=4","gravatar_id":"","url":"https://api.github.com/users/NicolasMassart","html_url":"https://github.com/NicolasMassart","followers_url":"https://api.github.com/users/NicolasMassart/followers","following_url":"https://api.github.com/users/NicolasMassart/following{/other_user}","gists_url":"https://api.github.com/users/NicolasMassart/gists{/gist_id}","starred_url":"https://api.github.com/users/NicolasMassart/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/NicolasMassart/subscriptions","organizations_url":"https://api.github.com/users/NicolasMassart/orgs","repos_url":"https://api.github.com/users/NicolasMassart/repos","events_url":"https://api.github.com/users/NicolasMassart/events{/privacy}","received_events_url":"https://api.github.com/users/NicolasMassart/received_events","type":"User","site_admin":false},"assignees":[{"login":"NicolasMassart","id":4677568,"node_id":"MDQ6VXNlcjQ2Nzc1Njg=","avatar_url":"https://avatars1.githubusercontent.com/u/4677568?v=4","gravatar_id":"","url":"https://api.github.com/users/NicolasMassart","html_url":"https://github.com/NicolasMassart","followers_url":"https://api.github.com/users/NicolasMassart/followers","following_url":"https://api.github.com/users/NicolasMassart/following{/other_user}","gists_url":"https://api.github.com/users/NicolasMassart/gists{/gist_id}","starred_url":"https://api.github.com/users/NicolasMassart/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/NicolasMassart/subscriptions","organizations_url":"https://api.github.com/users/NicolasMassart/orgs","repos_url":"https://api.github.com/users/NicolasMassart/repos","events_url":"https://api.github.com/users/NicolasMassart/events{/privacy}","received_events_url":"https://api.github.com/users/NicolasMassart/received_events","type":"User","site_admin":false}],"milestone":{"url":"https://api.github.com/repos/PegaSysEng/pantheon/milestones/4","html_url":"https://github.com/PegaSysEng/pantheon/milestone/4","labels_url":"https://api.github.com/repos/PegaSysEng/pantheon/milestones/4/labels","id":3888521,"node_id":"MDk6TWlsZXN0b25lMzg4ODUyMQ==","number":4,"title":"Doc Sprint 20","description":"","creator":{"login":"MadelineMurray","id":43356962,"node_id":"MDQ6VXNlcjQzMzU2OTYy","avatar_url":"https://avatars3.githubusercontent.com/u/43356962?v=4","gravatar_id":"","url":"https://api.github.com/users/MadelineMurray","html_url":"https://github.com/MadelineMurray","followers_url":"https://api.github.com/users/MadelineMurray/followers","following_url":"https://api.github.com/users/MadelineMurray/following{/other_user}","gists_url":"https://api.github.com/users/MadelineMurray/gists{/gist_id}","starred_url":"https://api.github.com/users/MadelineMurray/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MadelineMurray/subscriptions","organizations_url":"https://api.github.com/users/MadelineMurray/orgs","repos_url":"https://api.github.com/users/MadelineMurray/repos","events_url":"https://api.github.com/users/MadelineMurray/events{/privacy}","received_events_url":"https://api.github.com/users/MadelineMurray/received_events","type":"User","site_admin":false},"open_issues":15,"closed_issues":8,"state":"open","created_at":"2018-12-11T05:49:26Z","updated_at":"2019-01-04T02:29:31Z","due_on":"2019-01-07T08:00:00Z","closed_at":null},"comments":0,"created_at":"2018-12-05T11:54:51Z","updated_at":"2019-01-04T13:47:54Z","closed_at":null,"author_association":"MEMBER","body":"### Requirements \r\nCreate an Azure Windows 10 instance for test\r\nCommunicate to Pliny team members about how to access for testing \r\n\r\n"},"comment":{"url":"https://api.github.com/repos/PegaSysEng/pantheon/issues/comments/451447832","html_url":"https://github.com/PegaSysEng/pantheon/issues/366#issuecomment-451447832","issue_url":"https://api.github.com/repos/PegaSysEng/pantheon/issues/366","id":451447832,"node_id":"MDEyOklzc3VlQ29tbWVudDQ1MTQ0NzgzMg==","user":{"login":"NicolasMassart","id":4677568,"node_id":"MDQ6VXNlcjQ2Nzc1Njg=","avatar_url":"https://avatars1.githubusercontent.com/u/4677568?v=4","gravatar_id":"","url":"https://api.github.com/users/NicolasMassart","html_url":"https://github.com/NicolasMassart","followers_url":"https://api.github.com/users/NicolasMassart/followers","following_url":"https://api.github.com/users/NicolasMassart/following{/other_user}","gists_url":"https://api.github.com/users/NicolasMassart/gists{/gist_id}","starred_url":"https://api.github.com/users/NicolasMassart/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/NicolasMassart/subscriptions","organizations_url":"https://api.github.com/users/NicolasMassart/orgs","repos_url":"https://api.github.com/users/NicolasMassart/repos","events_url":"https://api.github.com/users/NicolasMassart/events{/privacy}","received_events_url":"https://api.github.com/users/NicolasMassart/received_events","type":"User","site_admin":false},"created_at":"2019-01-04T13:47:54Z","updated_at":"2019-01-04T13:47:54Z","author_association":"MEMBER","body":"Can't really provide one until we have a proper Azure account"}} | {
"id": 152270344,
"name": "PegaSysEng/pantheon",
"url": "https://api.github.com/repos/PegaSysEng/pantheon"
} | {
"id": 4677568,
"login": "NicolasMassart",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/4677568?",
"url": "https://api.github.com/users/NicolasMassart"
} | {
"id": 41842516,
"login": "PegaSysEng",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/41842516?",
"url": "https://api.github.com/orgs/PegaSysEng"
} | 2019-01-04T13:47:55 | 8834248483 | {"actor":{"display_login":"NicolasMassart"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/etcd-io/etcd/issues/10098","repository_url":"https://api.github.com/repos/etcd-io/etcd","labels_url":"https://api.github.com/repos/etcd-io/etcd/issues/10098/labels{/name}","comments_url":"https://api.github.com/repos/etcd-io/etcd/issues/10098/comments","events_url":"https://api.github.com/repos/etcd-io/etcd/issues/10098/events","html_url":"https://github.com/etcd-io/etcd/issues/10098","id":360799042,"node_id":"MDU6SXNzdWUzNjA3OTkwNDI=","number":10098,"title":"etcd 3.3.9 does not parse \"wal-dir\" configuration correctly","user":{"login":"Saloshp","id":1160929,"node_id":"MDQ6VXNlcjExNjA5Mjk=","avatar_url":"https://avatars2.githubusercontent.com/u/1160929?v=4","gravatar_id":"","url":"https://api.github.com/users/Saloshp","html_url":"https://github.com/Saloshp","followers_url":"https://api.github.com/users/Saloshp/followers","following_url":"https://api.github.com/users/Saloshp/following{/other_user}","gists_url":"https://api.github.com/users/Saloshp/gists{/gist_id}","starred_url":"https://api.github.com/users/Saloshp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Saloshp/subscriptions","organizations_url":"https://api.github.com/users/Saloshp/orgs","repos_url":"https://api.github.com/users/Saloshp/repos","events_url":"https://api.github.com/users/Saloshp/events{/privacy}","received_events_url":"https://api.github.com/users/Saloshp/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2018-09-17T10:04:56Z","updated_at":"2018-09-17T16:39:30Z","closed_at":null,"author_association":"NONE","body":"Configuring etcd to use any destined directory */foo/bar* , causes it to try and create */foo/bar.tmp*, where it has no permissions\r\n\r\n**Debugging information**\r\n```bash\r\n[root@ha01 ~]# uname -a\r\nLinux ha01 4.18.7-arch1-1-ARCH #1 SMP PREEMPT Sun Sep 9 11:27:58 UTC 2018 x86_64 GNU/Linux\r\n```\r\n```bash\r\n[root@ha01 ~]# etcd --version\r\netcd Version: 3.3.9\r\nGit SHA: fca8add78\r\nGo Version: go1.10.3\r\nGo OS/Arch: linux/amd64\r\n```\r\n\r\n> ...\r\n> Sep 17 09:53:44 ha01 etcd[9754]: name = ha01\r\n> Sep 17 09:53:44 ha01 etcd[9754]: force new cluster\r\n> Sep 17 09:53:44 ha01 etcd[9754]: data dir = /var/lib/etcd\r\n> Sep 17 09:53:44 ha01 etcd[9754]: member dir = /var/lib/etcd/member\r\n> Sep 17 09:53:44 ha01 etcd[9754]: **dedicated WAL dir = /var/lib/etcd-wal**\r\n> Sep 17 09:53:44 ha01 etcd[9754]: heartbeat = 269ms\r\n> Sep 17 09:53:44 ha01 etcd[9754]: election = 1345ms\r\n> Sep 17 09:53:44 ha01 etcd[9754]: snapshot count = 10000\r\n> Sep 17 09:53:44 ha01 etcd[9754]: advertise client URLs = https://172.16.0.1:2379,https://ha01.munio.io:2379\r\n> Sep 17 09:53:44 ha01 etcd[9754]: initial advertise peer URLs = https://ha01.munio.io:2380\r\n> Sep 17 09:53:44 ha01 etcd[9754]: initial cluster = ha01=https://ha01.munio.io:2380,ha02=https://ha02.munio.io:2380,ha03=https://ha03.munio.io:2380\r\n> Sep 17 09:53:44 ha01 etcd[9754]: **create wal error: mkdir /var/lib/etcd-wal.tmp: permission denied**\r\n> ..."},"comment":{"url":"https://api.github.com/repos/etcd-io/etcd/issues/comments/422085695","html_url":"https://github.com/etcd-io/etcd/issues/10098#issuecomment-422085695","issue_url":"https://api.github.com/repos/etcd-io/etcd/issues/10098","id":422085695,"node_id":"MDEyOklzc3VlQ29tbWVudDQyMjA4NTY5NQ==","user":{"login":"Saloshp","id":1160929,"node_id":"MDQ6VXNlcjExNjA5Mjk=","avatar_url":"https://avatars2.githubusercontent.com/u/1160929?v=4","gravatar_id":"","url":"https://api.github.com/users/Saloshp","html_url":"https://github.com/Saloshp","followers_url":"https://api.github.com/users/Saloshp/followers","following_url":"https://api.github.com/users/Saloshp/following{/other_user}","gists_url":"https://api.github.com/users/Saloshp/gists{/gist_id}","starred_url":"https://api.github.com/users/Saloshp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Saloshp/subscriptions","organizations_url":"https://api.github.com/users/Saloshp/orgs","repos_url":"https://api.github.com/users/Saloshp/repos","events_url":"https://api.github.com/users/Saloshp/events{/privacy}","received_events_url":"https://api.github.com/users/Saloshp/received_events","type":"User","site_admin":false},"created_at":"2018-09-17T16:39:30Z","updated_at":"2018-09-17T16:39:30Z","author_association":"NONE","body":"@gyuho \r\n```bash\r\n[root@ha01 ~]# ls -lash /var/lib/etcd*\r\n/var/lib/etcd:\r\ntotal 12K\r\n4.0K drwxr-xr-x 3 etcd etcd 4.0K Sep 17 16:30 .\r\n4.0K drwxr-xr-x 26 root root 4.0K Sep 17 16:30 ..\r\n4.0K drwx------ 3 etcd etcd 4.0K Sep 17 16:28 member\r\n\r\n/var/lib/etcd-wal:\r\ntotal 8.0K\r\n4.0K drwxr-xr-x 2 etcd etcd 4.0K Sep 17 16:30 .\r\n4.0K drwxr-xr-x 26 root root 4.0K Sep 17 16:30 ..\r\n```\r\n```bash\r\n[root@ha01 ~]# cat /etc/etcd/conf.yml | grep dir\r\n# Path to the data directory.\r\ndata-dir: /var/lib/etcd\r\n# Path to the dedicated wal directory\r\nwal-dir: /var/lib/etcd-wal\r\n```\r\n@hexfusion \r\nI was trying to solve some performance issues due to very high load, and so I thought I'd mount the *wal-dir* to a 64M *tmpfs* drive, and I didn't want the mountpoint to be under the working directory of *etcd* to make automation easier.\r\nSetting the *wal-dir* to */var/lib/etcd/wal* does work, but I don't see the point of specifying an unusable var.. (?)"}} | {
"id": 11225014,
"name": "etcd-io/etcd",
"url": "https://api.github.com/repos/etcd-io/etcd"
} | {
"id": 1160929,
"login": "Saloshp",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1160929?",
"url": "https://api.github.com/users/Saloshp"
} | {
"id": 41972792,
"login": "etcd-io",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/41972792?",
"url": "https://api.github.com/orgs/etcd-io"
} | 2018-09-17T16:39:30 | 8276825606 | {"actor":{"display_login":"Saloshp"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/Dinknesh/Traffic/issues/12","repository_url":"https://api.github.com/repos/Dinknesh/Traffic","labels_url":"https://api.github.com/repos/Dinknesh/Traffic/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/Dinknesh/Traffic/issues/12/comments","events_url":"https://api.github.com/repos/Dinknesh/Traffic/issues/12/events","html_url":"https://github.com/Dinknesh/Traffic/issues/12","id":351642061,"node_id":"MDU6SXNzdWUzNTE2NDIwNjE=","number":12,"title":"Confilct problem","user":{"login":"IngAmanda","id":19175677,"node_id":"MDQ6VXNlcjE5MTc1Njc3","avatar_url":"https://avatars3.githubusercontent.com/u/19175677?v=4","gravatar_id":"","url":"https://api.github.com/users/IngAmanda","html_url":"https://github.com/IngAmanda","followers_url":"https://api.github.com/users/IngAmanda/followers","following_url":"https://api.github.com/users/IngAmanda/following{/other_user}","gists_url":"https://api.github.com/users/IngAmanda/gists{/gist_id}","starred_url":"https://api.github.com/users/IngAmanda/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/IngAmanda/subscriptions","organizations_url":"https://api.github.com/users/IngAmanda/orgs","repos_url":"https://api.github.com/users/IngAmanda/repos","events_url":"https://api.github.com/users/IngAmanda/events{/privacy}","received_events_url":"https://api.github.com/users/IngAmanda/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-08-17T15:37:39Z","updated_at":"2018-08-17T15:46:00Z","closed_at":null,"author_association":"CONTRIBUTOR","body":"Guys, i can't pull the modification of Jhana (login and register branch). I make some changes on my side. I rename some files, create package. I'm working on the issue but i need some help. please"},"comment":{"url":"https://api.github.com/repos/Dinknesh/Traffic/issues/comments/413906984","html_url":"https://github.com/Dinknesh/Traffic/issues/12#issuecomment-413906984","issue_url":"https://api.github.com/repos/Dinknesh/Traffic/issues/12","id":413906984,"node_id":"MDEyOklzc3VlQ29tbWVudDQxMzkwNjk4NA==","user":{"login":"JHANAGUSTAVE","id":39914302,"node_id":"MDQ6VXNlcjM5OTE0MzAy","avatar_url":"https://avatars3.githubusercontent.com/u/39914302?v=4","gravatar_id":"","url":"https://api.github.com/users/JHANAGUSTAVE","html_url":"https://github.com/JHANAGUSTAVE","followers_url":"https://api.github.com/users/JHANAGUSTAVE/followers","following_url":"https://api.github.com/users/JHANAGUSTAVE/following{/other_user}","gists_url":"https://api.github.com/users/JHANAGUSTAVE/gists{/gist_id}","starred_url":"https://api.github.com/users/JHANAGUSTAVE/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JHANAGUSTAVE/subscriptions","organizations_url":"https://api.github.com/users/JHANAGUSTAVE/orgs","repos_url":"https://api.github.com/users/JHANAGUSTAVE/repos","events_url":"https://api.github.com/users/JHANAGUSTAVE/events{/privacy}","received_events_url":"https://api.github.com/users/JHANAGUSTAVE/received_events","type":"User","site_admin":false},"created_at":"2018-08-17T15:46:00Z","updated_at":"2018-08-17T15:46:00Z","author_association":"COLLABORATOR","body":"\r\nwhat you will do is create another branch, pull the files, and make the changes you have to make. want it not to change too"}} | {
"id": 143652120,
"name": "Dinknesh/Traffic",
"url": "https://api.github.com/repos/Dinknesh/Traffic"
} | {
"id": 39914302,
"login": "JHANAGUSTAVE",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39914302?",
"url": "https://api.github.com/users/JHANAGUSTAVE"
} | {
"id": 41974623,
"login": "Dinknesh",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/41974623?",
"url": "https://api.github.com/orgs/Dinknesh"
} | 2018-08-17T15:46:00 | 8129670866 | {"actor":{"display_login":"JHANAGUSTAVE"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/club-soda/club-soda-guide/issues/61","repository_url":"https://api.github.com/repos/club-soda/club-soda-guide","labels_url":"https://api.github.com/repos/club-soda/club-soda-guide/issues/61/labels{/name}","comments_url":"https://api.github.com/repos/club-soda/club-soda-guide/issues/61/comments","events_url":"https://api.github.com/repos/club-soda/club-soda-guide/issues/61/events","html_url":"https://github.com/club-soda/club-soda-guide/issues/61","id":357688243,"node_id":"MDU6SXNzdWUzNTc2ODgyNDM=","number":61,"title":"Generating a venues Club Soda Score","user":{"login":"ctrembath","id":8418748,"node_id":"MDQ6VXNlcjg0MTg3NDg=","avatar_url":"https://avatars3.githubusercontent.com/u/8418748?v=4","gravatar_id":"","url":"https://api.github.com/users/ctrembath","html_url":"https://github.com/ctrembath","followers_url":"https://api.github.com/users/ctrembath/followers","following_url":"https://api.github.com/users/ctrembath/following{/other_user}","gists_url":"https://api.github.com/users/ctrembath/gists{/gist_id}","starred_url":"https://api.github.com/users/ctrembath/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ctrembath/subscriptions","organizations_url":"https://api.github.com/users/ctrembath/orgs","repos_url":"https://api.github.com/users/ctrembath/repos","events_url":"https://api.github.com/users/ctrembath/events{/privacy}","received_events_url":"https://api.github.com/users/ctrembath/received_events","type":"User","site_admin":false},"labels":[{"id":1068674254,"node_id":"MDU6TGFiZWwxMDY4Njc0MjU0","url":"https://api.github.com/repos/club-soda/club-soda-guide/labels/Vicky%20-%20Venue","name":"Vicky - Venue","color":"B4869F","default":false},{"id":1046593507,"node_id":"MDU6TGFiZWwxMDQ2NTkzNTA3","url":"https://api.github.com/repos/club-soda/club-soda-guide/labels/in-progress","name":"in-progress","color":"009688","default":false},{"id":1046593497,"node_id":"MDU6TGFiZWwxMDQ2NTkzNDk3","url":"https://api.github.com/repos/club-soda/club-soda-guide/labels/priority-2","name":"priority-2","color":"1976D2","default":false},{"id":1034094371,"node_id":"MDU6TGFiZWwxMDM0MDk0Mzcx","url":"https://api.github.com/repos/club-soda/club-soda-guide/labels/question","name":"question","color":"d876e3","default":true}],"state":"open","locked":false,"assignee":{"login":"Cleop","id":16775804,"node_id":"MDQ6VXNlcjE2Nzc1ODA0","avatar_url":"https://avatars3.githubusercontent.com/u/16775804?v=4","gravatar_id":"","url":"https://api.github.com/users/Cleop","html_url":"https://github.com/Cleop","followers_url":"https://api.github.com/users/Cleop/followers","following_url":"https://api.github.com/users/Cleop/following{/other_user}","gists_url":"https://api.github.com/users/Cleop/gists{/gist_id}","starred_url":"https://api.github.com/users/Cleop/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Cleop/subscriptions","organizations_url":"https://api.github.com/users/Cleop/orgs","repos_url":"https://api.github.com/users/Cleop/repos","events_url":"https://api.github.com/users/Cleop/events{/privacy}","received_events_url":"https://api.github.com/users/Cleop/received_events","type":"User","site_admin":false},"assignees":[{"login":"Cleop","id":16775804,"node_id":"MDQ6VXNlcjE2Nzc1ODA0","avatar_url":"https://avatars3.githubusercontent.com/u/16775804?v=4","gravatar_id":"","url":"https://api.github.com/users/Cleop","html_url":"https://github.com/Cleop","followers_url":"https://api.github.com/users/Cleop/followers","following_url":"https://api.github.com/users/Cleop/following{/other_user}","gists_url":"https://api.github.com/users/Cleop/gists{/gist_id}","starred_url":"https://api.github.com/users/Cleop/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Cleop/subscriptions","organizations_url":"https://api.github.com/users/Cleop/orgs","repos_url":"https://api.github.com/users/Cleop/repos","events_url":"https://api.github.com/users/Cleop/events{/privacy}","received_events_url":"https://api.github.com/users/Cleop/received_events","type":"User","site_admin":false},{"login":"jussi-club-soda","id":43003062,"node_id":"MDQ6VXNlcjQzMDAzMDYy","avatar_url":"https://avatars0.githubusercontent.com/u/43003062?v=4","gravatar_id":"","url":"https://api.github.com/users/jussi-club-soda","html_url":"https://github.com/jussi-club-soda","followers_url":"https://api.github.com/users/jussi-club-soda/followers","following_url":"https://api.github.com/users/jussi-club-soda/following{/other_user}","gists_url":"https://api.github.com/users/jussi-club-soda/gists{/gist_id}","starred_url":"https://api.github.com/users/jussi-club-soda/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jussi-club-soda/subscriptions","organizations_url":"https://api.github.com/users/jussi-club-soda/orgs","repos_url":"https://api.github.com/users/jussi-club-soda/repos","events_url":"https://api.github.com/users/jussi-club-soda/events{/privacy}","received_events_url":"https://api.github.com/users/jussi-club-soda/received_events","type":"User","site_admin":false}],"milestone":{"url":"https://api.github.com/repos/club-soda/club-soda-guide/milestones/2","html_url":"https://github.com/club-soda/club-soda-guide/milestone/2","labels_url":"https://api.github.com/repos/club-soda/club-soda-guide/milestones/2/labels","id":3758061,"node_id":"MDk6TWlsZXN0b25lMzc1ODA2MQ==","number":2,"title":"Sprint 3","description":null,"creator":{"login":"iteles","id":4185328,"node_id":"MDQ6VXNlcjQxODUzMjg=","avatar_url":"https://avatars0.githubusercontent.com/u/4185328?v=4","gravatar_id":"","url":"https://api.github.com/users/iteles","html_url":"https://github.com/iteles","followers_url":"https://api.github.com/users/iteles/followers","following_url":"https://api.github.com/users/iteles/following{/other_user}","gists_url":"https://api.github.com/users/iteles/gists{/gist_id}","starred_url":"https://api.github.com/users/iteles/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iteles/subscriptions","organizations_url":"https://api.github.com/users/iteles/orgs","repos_url":"https://api.github.com/users/iteles/repos","events_url":"https://api.github.com/users/iteles/events{/privacy}","received_events_url":"https://api.github.com/users/iteles/received_events","type":"User","site_admin":false},"open_issues":6,"closed_issues":0,"state":"open","created_at":"2018-10-22T17:49:51Z","updated_at":"2018-10-23T18:56:43Z","due_on":null,"closed_at":null},"comments":5,"created_at":"2018-09-06T14:42:28Z","updated_at":"2018-10-24T09:51:24Z","closed_at":null,"author_association":"COLLABORATOR","body":"As a venue selecting the Af/ Low A drinks I stock,\r\nI would like to receive my Club Soda Score,\r\nso that I know how good my AF / Low A offering is\r\n\r\n**Acceptance Criteria**\r\n- [ ] The[ Club Soda Score](https://docs.google.com/spreadsheets/d/1RskeGSMJlF069fMnQq7TzD_ft8PlaaBD_oiKlOiYxBM/edit?usp=sharing) score should be calculated correctly\r\n- [x] Venues receive 1pt per AF beer stocked\r\n- [x] Venues receive 1pt per AF wine stocked\r\n- [x] Venues receive 1pt per AF cider stocked\r\n- [ ] Venues receive 0.5pt per Mocktail stocked\r\n- [ ] Venues receive a maximum of 1pt for all 1 - 2.5% Beers\r\n- [ ] Venues receive a maximum of 1pt for all Low Alcohol wines (1 - 8%)\r\n- [ ] Venues receive a maximum of 1pt for all Soft Drinks\r\n- [ ] The maximum score a venue can get is 5 Club Soda Points\r\n- [ ] The minimum a venue can get is 0 Club Soda Points\r\n- [ ] If a venue is serving 'mocktails' they will only receive points if they agree that the mocktails are listed on their menu\r\n\r\n@iteles - we haven't discussed in much detail our current scoring model. Please see [here](https://docs.google.com/spreadsheets/d/1RskeGSMJlF069fMnQq7TzD_ft8PlaaBD_oiKlOiYxBM/edit#gid=868299136) for how we hope to calculate a venues score"},"comment":{"url":"https://api.github.com/repos/club-soda/club-soda-guide/issues/comments/432591393","html_url":"https://github.com/club-soda/club-soda-guide/issues/61#issuecomment-432591393","issue_url":"https://api.github.com/repos/club-soda/club-soda-guide/issues/61","id":432591393,"node_id":"MDEyOklzc3VlQ29tbWVudDQzMjU5MTM5Mw==","user":{"login":"Cleop","id":16775804,"node_id":"MDQ6VXNlcjE2Nzc1ODA0","avatar_url":"https://avatars3.githubusercontent.com/u/16775804?v=4","gravatar_id":"","url":"https://api.github.com/users/Cleop","html_url":"https://github.com/Cleop","followers_url":"https://api.github.com/users/Cleop/followers","following_url":"https://api.github.com/users/Cleop/following{/other_user}","gists_url":"https://api.github.com/users/Cleop/gists{/gist_id}","starred_url":"https://api.github.com/users/Cleop/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Cleop/subscriptions","organizations_url":"https://api.github.com/users/Cleop/orgs","repos_url":"https://api.github.com/users/Cleop/repos","events_url":"https://api.github.com/users/Cleop/events{/privacy}","received_events_url":"https://api.github.com/users/Cleop/received_events","type":"User","site_admin":false},"created_at":"2018-10-24T09:51:24Z","updated_at":"2018-10-24T09:51:24Z","author_association":"COLLABORATOR","body":"@jussi-club-soda - \r\n\r\n> Venues receive 1pt for any drink of type Spirits & Premixed\r\n- is this 1 per drink or a maximum of 1 point for this?"}} | {
"id": 145966873,
"name": "club-soda/club-soda-guide",
"url": "https://api.github.com/repos/club-soda/club-soda-guide"
} | {
"id": 16775804,
"login": "Cleop",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/16775804?",
"url": "https://api.github.com/users/Cleop"
} | {
"id": 42174803,
"login": "club-soda",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/42174803?",
"url": "https://api.github.com/orgs/club-soda"
} | 2018-10-24T09:51:24 | 8471963006 | {"actor":{"display_login":"Cleop"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/FundamentosProgramacion-2018-13/Mision-07/issues/49","repository_url":"https://api.github.com/repos/FundamentosProgramacion-2018-13/Mision-07","labels_url":"https://api.github.com/repos/FundamentosProgramacion-2018-13/Mision-07/issues/49/labels{/name}","comments_url":"https://api.github.com/repos/FundamentosProgramacion-2018-13/Mision-07/issues/49/comments","events_url":"https://api.github.com/repos/FundamentosProgramacion-2018-13/Mision-07/issues/49/events","html_url":"https://github.com/FundamentosProgramacion-2018-13/Mision-07/pull/49","id":371360454,"node_id":"MDExOlB1bGxSZXF1ZXN0MjIzODI0ODI4","number":49,"title":"Mision 07","user":{"login":"EvilminexD","id":42380905,"node_id":"MDQ6VXNlcjQyMzgwOTA1","avatar_url":"https://avatars2.githubusercontent.com/u/42380905?v=4","gravatar_id":"","url":"https://api.github.com/users/EvilminexD","html_url":"https://github.com/EvilminexD","followers_url":"https://api.github.com/users/EvilminexD/followers","following_url":"https://api.github.com/users/EvilminexD/following{/other_user}","gists_url":"https://api.github.com/users/EvilminexD/gists{/gist_id}","starred_url":"https://api.github.com/users/EvilminexD/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/EvilminexD/subscriptions","organizations_url":"https://api.github.com/users/EvilminexD/orgs","repos_url":"https://api.github.com/users/EvilminexD/repos","events_url":"https://api.github.com/users/EvilminexD/events{/privacy}","received_events_url":"https://api.github.com/users/EvilminexD/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-10-18T04:50:16Z","updated_at":"2018-10-19T15:35:48Z","closed_at":"2018-10-19T15:35:48Z","author_association":"NONE","pull_request":{"url":"https://api.github.com/repos/FundamentosProgramacion-2018-13/Mision-07/pulls/49","html_url":"https://github.com/FundamentosProgramacion-2018-13/Mision-07/pull/49","diff_url":"https://github.com/FundamentosProgramacion-2018-13/Mision-07/pull/49.diff","patch_url":"https://github.com/FundamentosProgramacion-2018-13/Mision-07/pull/49.patch"},"body":"A01377717\r\nIthan Alexis Pérez Sánchez\r\nGrupo 02"},"comment":{"url":"https://api.github.com/repos/FundamentosProgramacion-2018-13/Mision-07/issues/comments/431404822","html_url":"https://github.com/FundamentosProgramacion-2018-13/Mision-07/pull/49#issuecomment-431404822","issue_url":"https://api.github.com/repos/FundamentosProgramacion-2018-13/Mision-07/issues/49","id":431404822,"node_id":"MDEyOklzc3VlQ29tbWVudDQzMTQwNDgyMg==","user":{"login":"rmroman","id":11061841,"node_id":"MDQ6VXNlcjExMDYxODQx","avatar_url":"https://avatars2.githubusercontent.com/u/11061841?v=4","gravatar_id":"","url":"https://api.github.com/users/rmroman","html_url":"https://github.com/rmroman","followers_url":"https://api.github.com/users/rmroman/followers","following_url":"https://api.github.com/users/rmroman/following{/other_user}","gists_url":"https://api.github.com/users/rmroman/gists{/gist_id}","starred_url":"https://api.github.com/users/rmroman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rmroman/subscriptions","organizations_url":"https://api.github.com/users/rmroman/orgs","repos_url":"https://api.github.com/users/rmroman/repos","events_url":"https://api.github.com/users/rmroman/events{/privacy}","received_events_url":"https://api.github.com/users/rmroman/received_events","type":"User","site_admin":false},"created_at":"2018-10-19T15:35:48Z","updated_at":"2018-10-19T15:35:48Z","author_association":"CONTRIBUTOR","body":"Misión 7. Ciclo while\r\n\r\nProblema|Puntos|Observaciones\r\n-----|-----|-----\r\n1 Divisiones | 500/500 |\r\n2 Mayor | 500/500 |\r\n3 Menú | 200/200 |\r\n4 Nombre del archivo correcto | 50/50 |\r\n\r\n\r\nHas ganado 1250/1250 HP."}} | {
"id": 152611624,
"name": "FundamentosProgramacion-2018-13/Mision-07",
"url": "https://api.github.com/repos/FundamentosProgramacion-2018-13/Mision-07"
} | {
"id": 11061841,
"login": "rmroman",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/11061841?",
"url": "https://api.github.com/users/rmroman"
} | {
"id": 42240823,
"login": "FundamentosProgramacion-2018-13",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/42240823?",
"url": "https://api.github.com/orgs/FundamentosProgramacion-2018-13"
} | 2018-10-19T15:35:48 | 8449880833 | {"actor":{"display_login":"rmroman"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/beam-telemetry/telemetry/issues/28","repository_url":"https://api.github.com/repos/beam-telemetry/telemetry","labels_url":"https://api.github.com/repos/beam-telemetry/telemetry/issues/28/labels{/name}","comments_url":"https://api.github.com/repos/beam-telemetry/telemetry/issues/28/comments","events_url":"https://api.github.com/repos/beam-telemetry/telemetry/issues/28/events","html_url":"https://github.com/beam-telemetry/telemetry/pull/28","id":393895326,"node_id":"MDExOlB1bGxSZXF1ZXN0MjQwNzg1NTk0","number":28,"title":"conversion to erlang","user":{"login":"tsloughter","id":36227,"node_id":"MDQ6VXNlcjM2MjI3","avatar_url":"https://avatars2.githubusercontent.com/u/36227?v=4","gravatar_id":"","url":"https://api.github.com/users/tsloughter","html_url":"https://github.com/tsloughter","followers_url":"https://api.github.com/users/tsloughter/followers","following_url":"https://api.github.com/users/tsloughter/following{/other_user}","gists_url":"https://api.github.com/users/tsloughter/gists{/gist_id}","starred_url":"https://api.github.com/users/tsloughter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tsloughter/subscriptions","organizations_url":"https://api.github.com/users/tsloughter/orgs","repos_url":"https://api.github.com/users/tsloughter/repos","events_url":"https://api.github.com/users/tsloughter/events{/privacy}","received_events_url":"https://api.github.com/users/tsloughter/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":22,"created_at":"2018-12-24T14:58:47Z","updated_at":"2018-12-29T01:41:16Z","closed_at":null,"author_association":"NONE","pull_request":{"url":"https://api.github.com/repos/beam-telemetry/telemetry/pulls/28","html_url":"https://github.com/beam-telemetry/telemetry/pull/28","diff_url":"https://github.com/beam-telemetry/telemetry/pull/28.diff","patch_url":"https://github.com/beam-telemetry/telemetry/pull/28.patch"},"body":"There are a couple things I'm unsure about:\r\n\r\n* logging the handler detachment:\r\n * I noticed the current telemetry supports older OTPs, using logger will break that\r\n * I changed the error to an info. Personally I prefer errors to be things I wouldn't mind alerting me, better to leave the choice up to the user if they want this to be an error.\r\n * could change`execute` to return a list of detached handlers, if any.. though that falls apart if I want to know about my detached handler that it attached to events executed by a third party library, damn..\r\n* using `fun m:f/4` instead of `apply(m, f, [...])`. Recent Erlang's support fun's like this in term files, so they can be used in `sys.config`, before that you had to rely on a `{m, f}` tuple in configs.\r\n * it could still support the separate module/function arguments and store as `fun m:f/4` if you'd rather.\r\n* CI is using circle, though I'm not happy with it since I haven't found a good way to do the xref/dialyzer/ct steps in parallel like I usually do, because of needing to run against mulitple versions of Erlang\r\n * can be switched back to travis. I just find circle easier since you can just use a docker image (travis always has old rebar3s) and now with the rebar3-orb even easier."},"comment":{"url":"https://api.github.com/repos/beam-telemetry/telemetry/issues/comments/450453470","html_url":"https://github.com/beam-telemetry/telemetry/pull/28#issuecomment-450453470","issue_url":"https://api.github.com/repos/beam-telemetry/telemetry/issues/28","id":450453470,"node_id":"MDEyOklzc3VlQ29tbWVudDQ1MDQ1MzQ3MA==","user":{"login":"tsloughter","id":36227,"node_id":"MDQ6VXNlcjM2MjI3","avatar_url":"https://avatars2.githubusercontent.com/u/36227?v=4","gravatar_id":"","url":"https://api.github.com/users/tsloughter","html_url":"https://github.com/tsloughter","followers_url":"https://api.github.com/users/tsloughter/followers","following_url":"https://api.github.com/users/tsloughter/following{/other_user}","gists_url":"https://api.github.com/users/tsloughter/gists{/gist_id}","starred_url":"https://api.github.com/users/tsloughter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tsloughter/subscriptions","organizations_url":"https://api.github.com/users/tsloughter/orgs","repos_url":"https://api.github.com/users/tsloughter/repos","events_url":"https://api.github.com/users/tsloughter/events{/privacy}","received_events_url":"https://api.github.com/users/tsloughter/received_events","type":"User","site_admin":false},"created_at":"2018-12-29T01:41:16Z","updated_at":"2018-12-29T01:41:16Z","author_association":"NONE","body":"D'oh, every damn time. Forgot Ineed `{preprocess, true}` so edoc runs the preprocessing first."}} | {
"id": 143751561,
"name": "beam-telemetry/telemetry",
"url": "https://api.github.com/repos/beam-telemetry/telemetry"
} | {
"id": 36227,
"login": "tsloughter",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/36227?",
"url": "https://api.github.com/users/tsloughter"
} | {
"id": 42248730,
"login": "beam-telemetry",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/42248730?",
"url": "https://api.github.com/orgs/beam-telemetry"
} | 2018-12-29T01:41:16 | 8814063229 | {"actor":{"display_login":"tsloughter"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/ethberlin-hackathon/ETHBerlin-Teambuilding/issues/47","repository_url":"https://api.github.com/repos/ethberlin-hackathon/ETHBerlin-Teambuilding","labels_url":"https://api.github.com/repos/ethberlin-hackathon/ETHBerlin-Teambuilding/issues/47/labels{/name}","comments_url":"https://api.github.com/repos/ethberlin-hackathon/ETHBerlin-Teambuilding/issues/47/comments","events_url":"https://api.github.com/repos/ethberlin-hackathon/ETHBerlin-Teambuilding/issues/47/events","html_url":"https://github.com/ethberlin-hackathon/ETHBerlin-Teambuilding/issues/47","id":357525314,"node_id":"MDU6SXNzdWUzNTc1MjUzMTQ=","number":47,"title":"Fact check bounty","user":{"login":"nolash","id":9886925,"node_id":"MDQ6VXNlcjk4ODY5MjU=","avatar_url":"https://avatars1.githubusercontent.com/u/9886925?v=4","gravatar_id":"","url":"https://api.github.com/users/nolash","html_url":"https://github.com/nolash","followers_url":"https://api.github.com/users/nolash/followers","following_url":"https://api.github.com/users/nolash/following{/other_user}","gists_url":"https://api.github.com/users/nolash/gists{/gist_id}","starred_url":"https://api.github.com/users/nolash/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nolash/subscriptions","organizations_url":"https://api.github.com/users/nolash/orgs","repos_url":"https://api.github.com/users/nolash/repos","events_url":"https://api.github.com/users/nolash/events{/privacy}","received_events_url":"https://api.github.com/users/nolash/received_events","type":"User","site_admin":false},"labels":[{"id":1036652592,"node_id":"MDU6TGFiZWwxMDM2NjUyNTky","url":"https://api.github.com/repos/ethberlin-hackathon/ETHBerlin-Teambuilding/labels/Idea%20needs%20team%20:bulb:","name":"Idea needs team :bulb:","color":"077abc","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-09-06T07:16:48Z","updated_at":"2018-09-08T14:33:03Z","closed_at":null,"author_association":"NONE","body":"## Pitch\r\n\r\nIdeally, when consuming news, we should fact check claims. However this is time-consuming. So often, you don't. Either, you assume they did their job, or you let someone else do it.\r\n\r\nIf you're letting someone else do it, is it possible to attach a bounty for fact checking? To verify the references in the news piece really supports its claims. Verify that the chain of references to the source? Produce other supporting or disputing claims of evidence, maybe even to a primary source?\r\n\r\nImagine a network where the participants are distributed among any bias, and the evaluation of evidence is the job of a randomly selected subset of these participants. Those offering evidence deemed valid, will receive a part of the bounty. The bounty could also be upped by others interested in verifying the same.\r\n\r\nMaybe this could be read for inspiration\r\n\r\nhttps://www.theatlantic.com/politics/archive/2016/12/what-journalists-can-learn-from-david-fahrentholds-trump-coverage/511277/\r\n\r\n## Team\r\n\r\nThis is currently just an idea. ETHBerlin could be an appropriate venue to try to make something tangible out of it.\r\n\r\nI'm a self-taught binary enthusiast, lately working on development for Ethereum Swarm, specifically authoring the implementations of PSS (messaging layer) and the first iteration of Mutable Resource Updates.\r\n\r\n## Skills wanted\r\n\r\n* Solidity\r\n* Javascript\r\n* Someone who knows about the economics of such things\r\n\r\n## Communication\r\n\r\nSince I don't use a smart phone (it's the most evil device in history, didn't you know?) I can be contacted on https://gitter.im/nolash or grab hold of me at the event; I'm either in a digit covered red shirt with white collar or an orange swarm hoodie.\r\n"},"comment":{"url":"https://api.github.com/repos/ethberlin-hackathon/ETHBerlin-Teambuilding/issues/comments/419646261","html_url":"https://github.com/ethberlin-hackathon/ETHBerlin-Teambuilding/issues/47#issuecomment-419646261","issue_url":"https://api.github.com/repos/ethberlin-hackathon/ETHBerlin-Teambuilding/issues/47","id":419646261,"node_id":"MDEyOklzc3VlQ29tbWVudDQxOTY0NjI2MQ==","user":{"login":"kolinko","id":274250,"node_id":"MDQ6VXNlcjI3NDI1MA==","avatar_url":"https://avatars3.githubusercontent.com/u/274250?v=4","gravatar_id":"","url":"https://api.github.com/users/kolinko","html_url":"https://github.com/kolinko","followers_url":"https://api.github.com/users/kolinko/followers","following_url":"https://api.github.com/users/kolinko/following{/other_user}","gists_url":"https://api.github.com/users/kolinko/gists{/gist_id}","starred_url":"https://api.github.com/users/kolinko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kolinko/subscriptions","organizations_url":"https://api.github.com/users/kolinko/orgs","repos_url":"https://api.github.com/users/kolinko/repos","events_url":"https://api.github.com/users/kolinko/events{/privacy}","received_events_url":"https://api.github.com/users/kolinko/received_events","type":"User","site_admin":false},"created_at":"2018-09-08T14:33:03Z","updated_at":"2018-09-08T14:33:03Z","author_association":"NONE","body":"I remember talking to people from Gnosis on EdCon about this - if I'm not mistaken they have a project in the works related to fact checking using prediction markets, and some partnerships ongoing as well."}} | {
"id": 145822431,
"name": "ethberlin-hackathon/ETHBerlin-Teambuilding",
"url": "https://api.github.com/repos/ethberlin-hackathon/ETHBerlin-Teambuilding"
} | {
"id": 274250,
"login": "kolinko",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/274250?",
"url": "https://api.github.com/users/kolinko"
} | {
"id": 42249217,
"login": "ethberlin-hackathon",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/42249217?",
"url": "https://api.github.com/orgs/ethberlin-hackathon"
} | 2018-09-08T14:33:03 | 8234439401 | {"actor":{"display_login":"kolinko"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/HalcyonGrid/halcyon/issues/12","repository_url":"https://api.github.com/repos/HalcyonGrid/halcyon","labels_url":"https://api.github.com/repos/HalcyonGrid/halcyon/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/HalcyonGrid/halcyon/issues/12/comments","events_url":"https://api.github.com/repos/HalcyonGrid/halcyon/issues/12/events","html_url":"https://github.com/HalcyonGrid/halcyon/issues/12","id":351020407,"node_id":"MDU6SXNzdWUzNTEwMjA0MDc=","number":12,"title":"Save Oar Command Errors","user":{"login":"Vinhold","id":14512196,"node_id":"MDQ6VXNlcjE0NTEyMTk2","avatar_url":"https://avatars3.githubusercontent.com/u/14512196?v=4","gravatar_id":"","url":"https://api.github.com/users/Vinhold","html_url":"https://github.com/Vinhold","followers_url":"https://api.github.com/users/Vinhold/followers","following_url":"https://api.github.com/users/Vinhold/following{/other_user}","gists_url":"https://api.github.com/users/Vinhold/gists{/gist_id}","starred_url":"https://api.github.com/users/Vinhold/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Vinhold/subscriptions","organizations_url":"https://api.github.com/users/Vinhold/orgs","repos_url":"https://api.github.com/users/Vinhold/repos","events_url":"https://api.github.com/users/Vinhold/events{/privacy}","received_events_url":"https://api.github.com/users/Vinhold/received_events","type":"User","site_admin":false},"labels":[{"id":1025412818,"node_id":"MDU6TGFiZWwxMDI1NDEyODE4","url":"https://api.github.com/repos/HalcyonGrid/halcyon/labels/bug","name":"bug","color":"fc2929","default":true}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/HalcyonGrid/halcyon/milestones/2","html_url":"https://github.com/HalcyonGrid/halcyon/milestone/2","labels_url":"https://api.github.com/repos/HalcyonGrid/halcyon/milestones/2/labels","id":3574974,"node_id":"MDk6TWlsZXN0b25lMzU3NDk3NA==","number":2,"title":"Glorious Future","description":"Things we'd like to see done, but either involve problems we've not yet found a solution for, or need a intensive effort and aren't critical yet.","creator":{"login":"kf6kjg","id":1157224,"node_id":"MDQ6VXNlcjExNTcyMjQ=","avatar_url":"https://avatars1.githubusercontent.com/u/1157224?v=4","gravatar_id":"","url":"https://api.github.com/users/kf6kjg","html_url":"https://github.com/kf6kjg","followers_url":"https://api.github.com/users/kf6kjg/followers","following_url":"https://api.github.com/users/kf6kjg/following{/other_user}","gists_url":"https://api.github.com/users/kf6kjg/gists{/gist_id}","starred_url":"https://api.github.com/users/kf6kjg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kf6kjg/subscriptions","organizations_url":"https://api.github.com/users/kf6kjg/orgs","repos_url":"https://api.github.com/users/kf6kjg/repos","events_url":"https://api.github.com/users/kf6kjg/events{/privacy}","received_events_url":"https://api.github.com/users/kf6kjg/received_events","type":"User","site_admin":false},"open_issues":9,"closed_issues":0,"state":"open","created_at":"2018-08-16T00:28:07Z","updated_at":"2018-12-09T20:09:55Z","due_on":null,"closed_at":null},"comments":2,"created_at":"2018-08-16T01:11:08Z","updated_at":"2018-12-09T20:10:11Z","closed_at":null,"author_association":"NONE","body":"This is a carry over issue from https://github.com/InWorldz/halcyon/issues/344. This one scoped to the errors identification and cataloging of them. \r\n\r\nThere were a number of errors that show up in this command resulting from either incompatible data or xml asset contents, some have been corrected since initial posting for the InWorldz mass save of regions processing. Now it is a matter of cataloging what specific errors show up related to content being processed, which may result in the items being saved, not getting correctly restored with a load oar command. (to be done)"},"comment":{"url":"https://api.github.com/repos/HalcyonGrid/halcyon/issues/comments/445567327","html_url":"https://github.com/HalcyonGrid/halcyon/issues/12#issuecomment-445567327","issue_url":"https://api.github.com/repos/HalcyonGrid/halcyon/issues/12","id":445567327,"node_id":"MDEyOklzc3VlQ29tbWVudDQ0NTU2NzMyNw==","user":{"login":"Vinhold","id":14512196,"node_id":"MDQ6VXNlcjE0NTEyMTk2","avatar_url":"https://avatars3.githubusercontent.com/u/14512196?v=4","gravatar_id":"","url":"https://api.github.com/users/Vinhold","html_url":"https://github.com/Vinhold","followers_url":"https://api.github.com/users/Vinhold/followers","following_url":"https://api.github.com/users/Vinhold/following{/other_user}","gists_url":"https://api.github.com/users/Vinhold/gists{/gist_id}","starred_url":"https://api.github.com/users/Vinhold/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Vinhold/subscriptions","organizations_url":"https://api.github.com/users/Vinhold/orgs","repos_url":"https://api.github.com/users/Vinhold/repos","events_url":"https://api.github.com/users/Vinhold/events{/privacy}","received_events_url":"https://api.github.com/users/Vinhold/received_events","type":"User","site_admin":false},"created_at":"2018-12-09T20:10:11Z","updated_at":"2018-12-09T20:10:11Z","author_association":"NONE","body":"Accidental close. Sigh."}} | {
"id": 144889976,
"name": "HalcyonGrid/halcyon",
"url": "https://api.github.com/repos/HalcyonGrid/halcyon"
} | {
"id": 14512196,
"login": "Vinhold",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/14512196?",
"url": "https://api.github.com/users/Vinhold"
} | {
"id": 42400616,
"login": "HalcyonGrid",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/42400616?",
"url": "https://api.github.com/orgs/HalcyonGrid"
} | 2018-12-09T20:10:11 | 8723253416 | {"actor":{"display_login":"Vinhold"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/AugustanaCSC285Fall18/StupidTextGamesRepo/issues/2","repository_url":"https://api.github.com/repos/AugustanaCSC285Fall18/StupidTextGamesRepo","labels_url":"https://api.github.com/repos/AugustanaCSC285Fall18/StupidTextGamesRepo/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/AugustanaCSC285Fall18/StupidTextGamesRepo/issues/2/comments","events_url":"https://api.github.com/repos/AugustanaCSC285Fall18/StupidTextGamesRepo/issues/2/events","html_url":"https://github.com/AugustanaCSC285Fall18/StupidTextGamesRepo/pull/2","id":353871050,"node_id":"MDExOlB1bGxSZXF1ZXN0MjEwODA1MjY0","number":2,"title":"Added Skyrim Text Adventure","user":{"login":"mbenson20","id":42618120,"node_id":"MDQ6VXNlcjQyNjE4MTIw","avatar_url":"https://avatars0.githubusercontent.com/u/42618120?v=4","gravatar_id":"","url":"https://api.github.com/users/mbenson20","html_url":"https://github.com/mbenson20","followers_url":"https://api.github.com/users/mbenson20/followers","following_url":"https://api.github.com/users/mbenson20/following{/other_user}","gists_url":"https://api.github.com/users/mbenson20/gists{/gist_id}","starred_url":"https://api.github.com/users/mbenson20/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbenson20/subscriptions","organizations_url":"https://api.github.com/users/mbenson20/orgs","repos_url":"https://api.github.com/users/mbenson20/repos","events_url":"https://api.github.com/users/mbenson20/events{/privacy}","received_events_url":"https://api.github.com/users/mbenson20/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-08-24T17:43:37Z","updated_at":"2018-09-06T20:02:10Z","closed_at":null,"author_association":"NONE","pull_request":{"url":"https://api.github.com/repos/AugustanaCSC285Fall18/StupidTextGamesRepo/pulls/2","html_url":"https://github.com/AugustanaCSC285Fall18/StupidTextGamesRepo/pull/2","diff_url":"https://github.com/AugustanaCSC285Fall18/StupidTextGamesRepo/pull/2.diff","patch_url":"https://github.com/AugustanaCSC285Fall18/StupidTextGamesRepo/pull/2.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/AugustanaCSC285Fall18/StupidTextGamesRepo/issues/comments/419222815","html_url":"https://github.com/AugustanaCSC285Fall18/StupidTextGamesRepo/pull/2#issuecomment-419222815","issue_url":"https://api.github.com/repos/AugustanaCSC285Fall18/StupidTextGamesRepo/issues/2","id":419222815,"node_id":"MDEyOklzc3VlQ29tbWVudDQxOTIyMjgxNQ==","user":{"login":"mbenson20","id":42618120,"node_id":"MDQ6VXNlcjQyNjE4MTIw","avatar_url":"https://avatars0.githubusercontent.com/u/42618120?v=4","gravatar_id":"","url":"https://api.github.com/users/mbenson20","html_url":"https://github.com/mbenson20","followers_url":"https://api.github.com/users/mbenson20/followers","following_url":"https://api.github.com/users/mbenson20/following{/other_user}","gists_url":"https://api.github.com/users/mbenson20/gists{/gist_id}","starred_url":"https://api.github.com/users/mbenson20/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbenson20/subscriptions","organizations_url":"https://api.github.com/users/mbenson20/orgs","repos_url":"https://api.github.com/users/mbenson20/repos","events_url":"https://api.github.com/users/mbenson20/events{/privacy}","received_events_url":"https://api.github.com/users/mbenson20/received_events","type":"User","site_admin":false},"created_at":"2018-09-06T20:02:10Z","updated_at":"2018-09-06T20:02:10Z","author_association":"NONE","body":"I think that the class is saved on my H drive. I'll be on campus tonight after work and I can push it then"}} | {
"id": 145739538,
"name": "AugustanaCSC285Fall18/StupidTextGamesRepo",
"url": "https://api.github.com/repos/AugustanaCSC285Fall18/StupidTextGamesRepo"
} | {
"id": 42618120,
"login": "mbenson20",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/42618120?",
"url": "https://api.github.com/users/mbenson20"
} | {
"id": 42421924,
"login": "AugustanaCSC285Fall18",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/42421924?",
"url": "https://api.github.com/orgs/AugustanaCSC285Fall18"
} | 2018-09-06T20:02:10 | 8226631671 | {"actor":{"display_login":"mbenson20"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/Nature40/CaseStudies/issues/1","repository_url":"https://api.github.com/repos/Nature40/CaseStudies","labels_url":"https://api.github.com/repos/Nature40/CaseStudies/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/Nature40/CaseStudies/issues/1/comments","events_url":"https://api.github.com/repos/Nature40/CaseStudies/issues/1/events","html_url":"https://github.com/Nature40/CaseStudies/issues/1","id":383732832,"node_id":"MDU6SXNzdWUzODM3MzI4MzI=","number":1,"title":"Login ProjektDB vs VAT","user":{"login":"gisma","id":2327278,"node_id":"MDQ6VXNlcjIzMjcyNzg=","avatar_url":"https://avatars2.githubusercontent.com/u/2327278?v=4","gravatar_id":"","url":"https://api.github.com/users/gisma","html_url":"https://github.com/gisma","followers_url":"https://api.github.com/users/gisma/followers","following_url":"https://api.github.com/users/gisma/following{/other_user}","gists_url":"https://api.github.com/users/gisma/gists{/gist_id}","starred_url":"https://api.github.com/users/gisma/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gisma/subscriptions","organizations_url":"https://api.github.com/users/gisma/orgs","repos_url":"https://api.github.com/users/gisma/repos","events_url":"https://api.github.com/users/gisma/events{/privacy}","received_events_url":"https://api.github.com/users/gisma/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2018-11-23T08:14:34Z","updated_at":"2018-11-23T14:56:04Z","closed_at":null,"author_association":"NONE","body":"https://github.com/Nature40/CaseStudies/blob/263c621828133b1b0418fc7825b2950ba3527172/documents/CaseStudy_DB.txt#L34\r\nIst es sinnvoll erst die \"einfachere Variante\" via `VAT` zu implementieren um dann erst die Integration von `VAT` und `ProjektDB` vorzunehmen? Es zeichnet sich jetzt bereits ab dass wir dringend ein Stations und Projektmanagement benötigen. Aus meiner Sicht wäre die Integrationlösung via `ProjektDB` sehr zu bevorzugen."},"comment":{"url":"https://api.github.com/repos/Nature40/CaseStudies/issues/comments/441260885","html_url":"https://github.com/Nature40/CaseStudies/issues/1#issuecomment-441260885","issue_url":"https://api.github.com/repos/Nature40/CaseStudies/issues/1","id":441260885,"node_id":"MDEyOklzc3VlQ29tbWVudDQ0MTI2MDg4NQ==","user":{"login":"bhseeger","id":31047957,"node_id":"MDQ6VXNlcjMxMDQ3OTU3","avatar_url":"https://avatars1.githubusercontent.com/u/31047957?v=4","gravatar_id":"","url":"https://api.github.com/users/bhseeger","html_url":"https://github.com/bhseeger","followers_url":"https://api.github.com/users/bhseeger/followers","following_url":"https://api.github.com/users/bhseeger/following{/other_user}","gists_url":"https://api.github.com/users/bhseeger/gists{/gist_id}","starred_url":"https://api.github.com/users/bhseeger/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bhseeger/subscriptions","organizations_url":"https://api.github.com/users/bhseeger/orgs","repos_url":"https://api.github.com/users/bhseeger/repos","events_url":"https://api.github.com/users/bhseeger/events{/privacy}","received_events_url":"https://api.github.com/users/bhseeger/received_events","type":"User","site_admin":false},"created_at":"2018-11-23T14:56:04Z","updated_at":"2018-11-23T14:56:04Z","author_association":"NONE","body":"Wir sollten uns mal OpenID Connect anschauen. Kann sein, dass dies kurzfristig nicht das beste ist, aber es klingt nach einer guten Lösung.\r\n"}} | {
"id": 158076658,
"name": "Nature40/CaseStudies",
"url": "https://api.github.com/repos/Nature40/CaseStudies"
} | {
"id": 31047957,
"login": "bhseeger",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/31047957?",
"url": "https://api.github.com/users/bhseeger"
} | {
"id": 42423960,
"login": "Nature40",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/42423960?",
"url": "https://api.github.com/orgs/Nature40"
} | 2018-11-23T14:56:04 | 8638488706 | {"actor":{"display_login":"bhseeger"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/GrizzlyTechnology/grizzlyPersonalApp/issues/149","repository_url":"https://api.github.com/repos/GrizzlyTechnology/grizzlyPersonalApp","labels_url":"https://api.github.com/repos/GrizzlyTechnology/grizzlyPersonalApp/issues/149/labels{/name}","comments_url":"https://api.github.com/repos/GrizzlyTechnology/grizzlyPersonalApp/issues/149/comments","events_url":"https://api.github.com/repos/GrizzlyTechnology/grizzlyPersonalApp/issues/149/events","html_url":"https://github.com/GrizzlyTechnology/grizzlyPersonalApp/issues/149","id":381058689,"node_id":"MDU6SXNzdWUzODEwNTg2ODk=","number":149,"title":"注册填写密码时,密码提示语句不够精确详细","user":{"login":"lingwu","id":4616774,"node_id":"MDQ6VXNlcjQ2MTY3NzQ=","avatar_url":"https://avatars0.githubusercontent.com/u/4616774?v=4","gravatar_id":"","url":"https://api.github.com/users/lingwu","html_url":"https://github.com/lingwu","followers_url":"https://api.github.com/users/lingwu/followers","following_url":"https://api.github.com/users/lingwu/following{/other_user}","gists_url":"https://api.github.com/users/lingwu/gists{/gist_id}","starred_url":"https://api.github.com/users/lingwu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lingwu/subscriptions","organizations_url":"https://api.github.com/users/lingwu/orgs","repos_url":"https://api.github.com/users/lingwu/repos","events_url":"https://api.github.com/users/lingwu/events{/privacy}","received_events_url":"https://api.github.com/users/lingwu/received_events","type":"User","site_admin":false},"labels":[{"id":1128436187,"node_id":"MDU6TGFiZWwxMTI4NDM2MTg3","url":"https://api.github.com/repos/GrizzlyTechnology/grizzlyPersonalApp/labels/%E6%99%AE%E9%80%9A%E4%BC%98%E5%85%88%E7%BA%A7","name":"普通优先级","color":"ef762f","default":false},{"id":1025939157,"node_id":"MDU6TGFiZWwxMDI1OTM5MTU3","url":"https://api.github.com/repos/GrizzlyTechnology/grizzlyPersonalApp/labels/%E9%94%99%E8%AF%AF","name":"错误","color":"d73a4a","default":false}],"state":"open","locked":false,"assignee":{"login":"lingwu","id":4616774,"node_id":"MDQ6VXNlcjQ2MTY3NzQ=","avatar_url":"https://avatars0.githubusercontent.com/u/4616774?v=4","gravatar_id":"","url":"https://api.github.com/users/lingwu","html_url":"https://github.com/lingwu","followers_url":"https://api.github.com/users/lingwu/followers","following_url":"https://api.github.com/users/lingwu/following{/other_user}","gists_url":"https://api.github.com/users/lingwu/gists{/gist_id}","starred_url":"https://api.github.com/users/lingwu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lingwu/subscriptions","organizations_url":"https://api.github.com/users/lingwu/orgs","repos_url":"https://api.github.com/users/lingwu/repos","events_url":"https://api.github.com/users/lingwu/events{/privacy}","received_events_url":"https://api.github.com/users/lingwu/received_events","type":"User","site_admin":false},"assignees":[{"login":"lingwu","id":4616774,"node_id":"MDQ6VXNlcjQ2MTY3NzQ=","avatar_url":"https://avatars0.githubusercontent.com/u/4616774?v=4","gravatar_id":"","url":"https://api.github.com/users/lingwu","html_url":"https://github.com/lingwu","followers_url":"https://api.github.com/users/lingwu/followers","following_url":"https://api.github.com/users/lingwu/following{/other_user}","gists_url":"https://api.github.com/users/lingwu/gists{/gist_id}","starred_url":"https://api.github.com/users/lingwu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lingwu/subscriptions","organizations_url":"https://api.github.com/users/lingwu/orgs","repos_url":"https://api.github.com/users/lingwu/repos","events_url":"https://api.github.com/users/lingwu/events{/privacy}","received_events_url":"https://api.github.com/users/lingwu/received_events","type":"User","site_admin":false},{"login":"nangangmutong","id":31693972,"node_id":"MDQ6VXNlcjMxNjkzOTcy","avatar_url":"https://avatars0.githubusercontent.com/u/31693972?v=4","gravatar_id":"","url":"https://api.github.com/users/nangangmutong","html_url":"https://github.com/nangangmutong","followers_url":"https://api.github.com/users/nangangmutong/followers","following_url":"https://api.github.com/users/nangangmutong/following{/other_user}","gists_url":"https://api.github.com/users/nangangmutong/gists{/gist_id}","starred_url":"https://api.github.com/users/nangangmutong/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nangangmutong/subscriptions","organizations_url":"https://api.github.com/users/nangangmutong/orgs","repos_url":"https://api.github.com/users/nangangmutong/repos","events_url":"https://api.github.com/users/nangangmutong/events{/privacy}","received_events_url":"https://api.github.com/users/nangangmutong/received_events","type":"User","site_admin":false}],"milestone":{"url":"https://api.github.com/repos/GrizzlyTechnology/grizzlyPersonalApp/milestones/1","html_url":"https://github.com/GrizzlyTechnology/grizzlyPersonalApp/milestone/1","labels_url":"https://api.github.com/repos/GrizzlyTechnology/grizzlyPersonalApp/milestones/1/labels","id":3823798,"node_id":"MDk6TWlsZXN0b25lMzgyMzc5OA==","number":1,"title":"release/0.2","description":"release/0.2相关","creator":{"login":"zjafei","id":8189405,"node_id":"MDQ6VXNlcjgxODk0MDU=","avatar_url":"https://avatars0.githubusercontent.com/u/8189405?v=4","gravatar_id":"","url":"https://api.github.com/users/zjafei","html_url":"https://github.com/zjafei","followers_url":"https://api.github.com/users/zjafei/followers","following_url":"https://api.github.com/users/zjafei/following{/other_user}","gists_url":"https://api.github.com/users/zjafei/gists{/gist_id}","starred_url":"https://api.github.com/users/zjafei/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zjafei/subscriptions","organizations_url":"https://api.github.com/users/zjafei/orgs","repos_url":"https://api.github.com/users/zjafei/repos","events_url":"https://api.github.com/users/zjafei/events{/privacy}","received_events_url":"https://api.github.com/users/zjafei/received_events","type":"User","site_admin":false},"open_issues":69,"closed_issues":28,"state":"open","created_at":"2018-11-15T08:45:43Z","updated_at":"2018-11-23T08:59:26Z","due_on":"2018-11-18T08:00:00Z","closed_at":null},"comments":4,"created_at":"2018-11-15T08:54:13Z","updated_at":"2018-11-23T09:02:35Z","closed_at":null,"author_association":"CONTRIBUTOR","body":"注册填写密码时,密码提示语句不够精确详细\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/GrizzlyTechnology/grizzlyPersonalApp/issues/comments/441185176","html_url":"https://github.com/GrizzlyTechnology/grizzlyPersonalApp/issues/149#issuecomment-441185176","issue_url":"https://api.github.com/repos/GrizzlyTechnology/grizzlyPersonalApp/issues/149","id":441185176,"node_id":"MDEyOklzc3VlQ29tbWVudDQ0MTE4NTE3Ng==","user":{"login":"nangangmutong","id":31693972,"node_id":"MDQ6VXNlcjMxNjkzOTcy","avatar_url":"https://avatars0.githubusercontent.com/u/31693972?v=4","gravatar_id":"","url":"https://api.github.com/users/nangangmutong","html_url":"https://github.com/nangangmutong","followers_url":"https://api.github.com/users/nangangmutong/followers","following_url":"https://api.github.com/users/nangangmutong/following{/other_user}","gists_url":"https://api.github.com/users/nangangmutong/gists{/gist_id}","starred_url":"https://api.github.com/users/nangangmutong/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nangangmutong/subscriptions","organizations_url":"https://api.github.com/users/nangangmutong/orgs","repos_url":"https://api.github.com/users/nangangmutong/repos","events_url":"https://api.github.com/users/nangangmutong/events{/privacy}","received_events_url":"https://api.github.com/users/nangangmutong/received_events","type":"User","site_admin":false},"created_at":"2018-11-23T09:02:35Z","updated_at":"2018-11-23T09:02:35Z","author_association":"NONE","body":"@lingwu 是不是可以直接提示填写多少个字符比较好你觉得呢?我觉得字好多啊\r\n\r\n"}} | {
"id": 144955270,
"name": "GrizzlyTechnology/grizzlyPersonalApp",
"url": "https://api.github.com/repos/GrizzlyTechnology/grizzlyPersonalApp"
} | {
"id": 31693972,
"login": "nangangmutong",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/31693972?",
"url": "https://api.github.com/users/nangangmutong"
} | {
"id": 42432287,
"login": "GrizzlyTechnology",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/42432287?",
"url": "https://api.github.com/orgs/GrizzlyTechnology"
} | 2018-11-23T09:02:35 | 8636787486 | {"actor":{"display_login":"nangangmutong"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/dhmit/gender_novels/issues/158","repository_url":"https://api.github.com/repos/dhmit/gender_novels","labels_url":"https://api.github.com/repos/dhmit/gender_novels/issues/158/labels{/name}","comments_url":"https://api.github.com/repos/dhmit/gender_novels/issues/158/comments","events_url":"https://api.github.com/repos/dhmit/gender_novels/issues/158/events","html_url":"https://github.com/dhmit/gender_novels/pull/158","id":369964545,"node_id":"MDExOlB1bGxSZXF1ZXN0MjIyNzU3MTcz","number":158,"title":"added pie chart for gender breakdown, fixed Unites states in sample novels,","user":{"login":"felixtran39","id":43281010,"node_id":"MDQ6VXNlcjQzMjgxMDEw","avatar_url":"https://avatars0.githubusercontent.com/u/43281010?v=4","gravatar_id":"","url":"https://api.github.com/users/felixtran39","html_url":"https://github.com/felixtran39","followers_url":"https://api.github.com/users/felixtran39/followers","following_url":"https://api.github.com/users/felixtran39/following{/other_user}","gists_url":"https://api.github.com/users/felixtran39/gists{/gist_id}","starred_url":"https://api.github.com/users/felixtran39/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/felixtran39/subscriptions","organizations_url":"https://api.github.com/users/felixtran39/orgs","repos_url":"https://api.github.com/users/felixtran39/repos","events_url":"https://api.github.com/users/felixtran39/events{/privacy}","received_events_url":"https://api.github.com/users/felixtran39/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":5,"created_at":"2018-10-15T01:05:29Z","updated_at":"2018-10-19T19:39:42Z","closed_at":null,"author_association":"CONTRIBUTOR","pull_request":{"url":"https://api.github.com/repos/dhmit/gender_novels/pulls/158","html_url":"https://github.com/dhmit/gender_novels/pull/158","diff_url":"https://github.com/dhmit/gender_novels/pull/158.diff","patch_url":"https://github.com/dhmit/gender_novels/pull/158.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/dhmit/gender_novels/issues/comments/431476223","html_url":"https://github.com/dhmit/gender_novels/pull/158#issuecomment-431476223","issue_url":"https://api.github.com/repos/dhmit/gender_novels/issues/158","id":431476223,"node_id":"MDEyOklzc3VlQ29tbWVudDQzMTQ3NjIyMw==","user":{"login":"srisi","id":7434819,"node_id":"MDQ6VXNlcjc0MzQ4MTk=","avatar_url":"https://avatars2.githubusercontent.com/u/7434819?v=4","gravatar_id":"","url":"https://api.github.com/users/srisi","html_url":"https://github.com/srisi","followers_url":"https://api.github.com/users/srisi/followers","following_url":"https://api.github.com/users/srisi/following{/other_user}","gists_url":"https://api.github.com/users/srisi/gists{/gist_id}","starred_url":"https://api.github.com/users/srisi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/srisi/subscriptions","organizations_url":"https://api.github.com/users/srisi/orgs","repos_url":"https://api.github.com/users/srisi/repos","events_url":"https://api.github.com/users/srisi/events{/privacy}","received_events_url":"https://api.github.com/users/srisi/received_events","type":"User","site_admin":false},"created_at":"2018-10-19T19:39:42Z","updated_at":"2018-10-19T19:39:42Z","author_association":"COLLABORATOR","body":"Thanks!"}} | {
"id": 147417136,
"name": "dhmit/gender_novels",
"url": "https://api.github.com/repos/dhmit/gender_novels"
} | {
"id": 7434819,
"login": "srisi",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/7434819?",
"url": "https://api.github.com/users/srisi"
} | {
"id": 42584896,
"login": "dhmit",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/42584896?",
"url": "https://api.github.com/orgs/dhmit"
} | 2018-10-19T19:39:42 | 8451143238 | {"actor":{"display_login":"srisi"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/eosspark/eos-go/issues/1","repository_url":"https://api.github.com/repos/eosspark/eos-go","labels_url":"https://api.github.com/repos/eosspark/eos-go/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/eosspark/eos-go/issues/1/comments","events_url":"https://api.github.com/repos/eosspark/eos-go/issues/1/events","html_url":"https://github.com/eosspark/eos-go/pull/1","id":354078272,"node_id":"MDExOlB1bGxSZXF1ZXN0MjEwOTQxNTEw","number":1,"title":"Update .gitignore","user":{"login":"xyh393","id":16027776,"node_id":"MDQ6VXNlcjE2MDI3Nzc2","avatar_url":"https://avatars1.githubusercontent.com/u/16027776?v=4","gravatar_id":"","url":"https://api.github.com/users/xyh393","html_url":"https://github.com/xyh393","followers_url":"https://api.github.com/users/xyh393/followers","following_url":"https://api.github.com/users/xyh393/following{/other_user}","gists_url":"https://api.github.com/users/xyh393/gists{/gist_id}","starred_url":"https://api.github.com/users/xyh393/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xyh393/subscriptions","organizations_url":"https://api.github.com/users/xyh393/orgs","repos_url":"https://api.github.com/users/xyh393/repos","events_url":"https://api.github.com/users/xyh393/events{/privacy}","received_events_url":"https://api.github.com/users/xyh393/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-08-26T08:51:27Z","updated_at":"2018-10-16T07:59:48Z","closed_at":"2018-10-16T07:59:47Z","author_association":"CONTRIBUTOR","pull_request":{"url":"https://api.github.com/repos/eosspark/eos-go/pulls/1","html_url":"https://github.com/eosspark/eos-go/pull/1","diff_url":"https://github.com/eosspark/eos-go/pull/1.diff","patch_url":"https://github.com/eosspark/eos-go/pull/1.patch"},"body":"add .idea/"},"comment":{"url":"https://api.github.com/repos/eosspark/eos-go/issues/comments/430139718","html_url":"https://github.com/eosspark/eos-go/pull/1#issuecomment-430139718","issue_url":"https://api.github.com/repos/eosspark/eos-go/issues/1","id":430139718,"node_id":"MDEyOklzc3VlQ29tbWVudDQzMDEzOTcxOA==","user":{"login":"Bishop-eosspark","id":18281374,"node_id":"MDQ6VXNlcjE4MjgxMzc0","avatar_url":"https://avatars0.githubusercontent.com/u/18281374?v=4","gravatar_id":"","url":"https://api.github.com/users/Bishop-eosspark","html_url":"https://github.com/Bishop-eosspark","followers_url":"https://api.github.com/users/Bishop-eosspark/followers","following_url":"https://api.github.com/users/Bishop-eosspark/following{/other_user}","gists_url":"https://api.github.com/users/Bishop-eosspark/gists{/gist_id}","starred_url":"https://api.github.com/users/Bishop-eosspark/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Bishop-eosspark/subscriptions","organizations_url":"https://api.github.com/users/Bishop-eosspark/orgs","repos_url":"https://api.github.com/users/Bishop-eosspark/repos","events_url":"https://api.github.com/users/Bishop-eosspark/events{/privacy}","received_events_url":"https://api.github.com/users/Bishop-eosspark/received_events","type":"User","site_admin":false},"created_at":"2018-10-16T07:59:47Z","updated_at":"2018-10-16T07:59:47Z","author_association":"CONTRIBUTOR","body":"out of date"}} | {
"id": 145813771,
"name": "eosspark/eos-go",
"url": "https://api.github.com/repos/eosspark/eos-go"
} | {
"id": 18281374,
"login": "Bishop-eosspark",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/18281374?",
"url": "https://api.github.com/users/Bishop-eosspark"
} | {
"id": 42594099,
"login": "eosspark",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/42594099?",
"url": "https://api.github.com/orgs/eosspark"
} | 2018-10-16T07:59:48 | 8426563529 | {"actor":{"display_login":"Bishop-eosspark"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/CS2113-AY1819S1-F09-3/main/issues/75","repository_url":"https://api.github.com/repos/CS2113-AY1819S1-F09-3/main","labels_url":"https://api.github.com/repos/CS2113-AY1819S1-F09-3/main/issues/75/labels{/name}","comments_url":"https://api.github.com/repos/CS2113-AY1819S1-F09-3/main/issues/75/comments","events_url":"https://api.github.com/repos/CS2113-AY1819S1-F09-3/main/issues/75/events","html_url":"https://github.com/CS2113-AY1819S1-F09-3/main/pull/75","id":365429903,"node_id":"MDExOlB1bGxSZXF1ZXN0MjE5MzUxNDUw","number":75,"title":"v1.1 deliverable","user":{"login":"SandhyaGopakumar","id":35750478,"node_id":"MDQ6VXNlcjM1NzUwNDc4","avatar_url":"https://avatars2.githubusercontent.com/u/35750478?v=4","gravatar_id":"","url":"https://api.github.com/users/SandhyaGopakumar","html_url":"https://github.com/SandhyaGopakumar","followers_url":"https://api.github.com/users/SandhyaGopakumar/followers","following_url":"https://api.github.com/users/SandhyaGopakumar/following{/other_user}","gists_url":"https://api.github.com/users/SandhyaGopakumar/gists{/gist_id}","starred_url":"https://api.github.com/users/SandhyaGopakumar/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SandhyaGopakumar/subscriptions","organizations_url":"https://api.github.com/users/SandhyaGopakumar/orgs","repos_url":"https://api.github.com/users/SandhyaGopakumar/repos","events_url":"https://api.github.com/users/SandhyaGopakumar/events{/privacy}","received_events_url":"https://api.github.com/users/SandhyaGopakumar/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-10-01T12:04:32Z","updated_at":"2018-10-01T12:09:16Z","closed_at":null,"author_association":"NONE","pull_request":{"url":"https://api.github.com/repos/CS2113-AY1819S1-F09-3/main/pulls/75","html_url":"https://github.com/CS2113-AY1819S1-F09-3/main/pull/75","diff_url":"https://github.com/CS2113-AY1819S1-F09-3/main/pull/75.diff","patch_url":"https://github.com/CS2113-AY1819S1-F09-3/main/pull/75.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/CS2113-AY1819S1-F09-3/main/issues/comments/425884232","html_url":"https://github.com/CS2113-AY1819S1-F09-3/main/pull/75#issuecomment-425884232","issue_url":"https://api.github.com/repos/CS2113-AY1819S1-F09-3/main/issues/75","id":425884232,"node_id":"MDEyOklzc3VlQ29tbWVudDQyNTg4NDIzMg==","user":{"login":"coveralls","id":2354108,"node_id":"MDQ6VXNlcjIzNTQxMDg=","avatar_url":"https://avatars1.githubusercontent.com/u/2354108?v=4","gravatar_id":"","url":"https://api.github.com/users/coveralls","html_url":"https://github.com/coveralls","followers_url":"https://api.github.com/users/coveralls/followers","following_url":"https://api.github.com/users/coveralls/following{/other_user}","gists_url":"https://api.github.com/users/coveralls/gists{/gist_id}","starred_url":"https://api.github.com/users/coveralls/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/coveralls/subscriptions","organizations_url":"https://api.github.com/users/coveralls/orgs","repos_url":"https://api.github.com/users/coveralls/repos","events_url":"https://api.github.com/users/coveralls/events{/privacy}","received_events_url":"https://api.github.com/users/coveralls/received_events","type":"User","site_admin":false},"created_at":"2018-10-01T12:09:16Z","updated_at":"2018-10-01T12:09:16Z","author_association":"NONE","body":"## Pull Request Test Coverage Report for [Build 139](https://coveralls.io/builds/19279355)\n\n* **0** of **77** **(0.0%)** changed or added relevant lines in **5** files are covered.\n* No unchanged relevant lines lost coverage.\n* Overall coverage decreased (**-3.2%**) to **65.817%**\n\n---\n\n| Changes Missing Coverage | Covered Lines | Changed/Added Lines | % |\n| :-----|--------------|--------|---: |\n| [src/main/java/seedu/address/model/event/exceptions/EventNotFoundException.java](https://coveralls.io/builds/19279355/source?filename=src%2Fmain%2Fjava%2Fseedu%2Faddress%2Fmodel%2Fevent%2Fexceptions%2FEventNotFoundException.java#L7) | 0 | 1 | 0.0%\n| [src/main/java/seedu/address/model/event/exceptions/DuplicateEventException.java](https://coveralls.io/builds/19279355/source?filename=src%2Fmain%2Fjava%2Fseedu%2Faddress%2Fmodel%2Fevent%2Fexceptions%2FDuplicateEventException.java#L9) | 0 | 2 | 0.0%\n| [src/main/java/seedu/address/model/event/EventName.java](https://coveralls.io/builds/19279355/source?filename=src%2Fmain%2Fjava%2Fseedu%2Faddress%2Fmodel%2Fevent%2FEventName.java#L25) | 0 | 10 | 0.0%\n| [src/main/java/seedu/address/model/event/Event.java](https://coveralls.io/builds/19279355/source?filename=src%2Fmain%2Fjava%2Fseedu%2Faddress%2Fmodel%2Fevent%2FEvent.java#L20) | 0 | 25 | 0.0%\n| [src/main/java/seedu/address/model/event/UniqueEventList.java](https://coveralls.io/builds/19279355/source?filename=src%2Fmain%2Fjava%2Fseedu%2Faddress%2Fmodel%2Fevent%2FUniqueEventList.java#L24) | 0 | 39 | 0.0%\n<!-- | **Total:** | **0** | **77** | **0.0%** | -->\n\n\n| Totals | [](https://coveralls.io/builds/19279355) |\n| :-- | --: |\n| Change from base [Build 129](https://coveralls.io/builds/19266773): | -3.2% |\n| Covered Lines: | 1084 |\n| Relevant Lines: | 1647 |\n\n---\n##### 💛 - [Coveralls](https://coveralls.io)\n"}} | {
"id": 148265515,
"name": "CS2113-AY1819S1-F09-3/main",
"url": "https://api.github.com/repos/CS2113-AY1819S1-F09-3/main"
} | {
"id": 2354108,
"login": "coveralls",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/2354108?",
"url": "https://api.github.com/users/coveralls"
} | {
"id": 42854891,
"login": "CS2113-AY1819S1-F09-3",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/42854891?",
"url": "https://api.github.com/orgs/CS2113-AY1819S1-F09-3"
} | 2018-10-01T12:09:16 | 8347509181 | {"actor":{"display_login":"coveralls"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/CS2103-AY1819S1-T13-4/main/issues/39","repository_url":"https://api.github.com/repos/CS2103-AY1819S1-T13-4/main","labels_url":"https://api.github.com/repos/CS2103-AY1819S1-T13-4/main/issues/39/labels{/name}","comments_url":"https://api.github.com/repos/CS2103-AY1819S1-T13-4/main/issues/39/comments","events_url":"https://api.github.com/repos/CS2103-AY1819S1-T13-4/main/issues/39/events","html_url":"https://github.com/CS2103-AY1819S1-T13-4/main/pull/39","id":368947589,"node_id":"MDExOlB1bGxSZXF1ZXN0MjIyMDAyNjY0","number":39,"title":"Fix wrong link alexkmj.jpg to alexkmj.png","user":{"login":"alexkmj","id":13652974,"node_id":"MDQ6VXNlcjEzNjUyOTc0","avatar_url":"https://avatars0.githubusercontent.com/u/13652974?v=4","gravatar_id":"","url":"https://api.github.com/users/alexkmj","html_url":"https://github.com/alexkmj","followers_url":"https://api.github.com/users/alexkmj/followers","following_url":"https://api.github.com/users/alexkmj/following{/other_user}","gists_url":"https://api.github.com/users/alexkmj/gists{/gist_id}","starred_url":"https://api.github.com/users/alexkmj/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alexkmj/subscriptions","organizations_url":"https://api.github.com/users/alexkmj/orgs","repos_url":"https://api.github.com/users/alexkmj/repos","events_url":"https://api.github.com/users/alexkmj/events{/privacy}","received_events_url":"https://api.github.com/users/alexkmj/received_events","type":"User","site_admin":false},"labels":[{"id":1044919060,"node_id":"MDU6TGFiZWwxMDQ0OTE5MDYw","url":"https://api.github.com/repos/CS2103-AY1819S1-T13-4/main/labels/priority.High","name":"priority.High","color":"6A1B9A","default":false},{"id":1044919722,"node_id":"MDU6TGFiZWwxMDQ0OTE5NzIy","url":"https://api.github.com/repos/CS2103-AY1819S1-T13-4/main/labels/severity.Low","name":"severity.Low","color":"EF5350","default":false},{"id":1071512633,"node_id":"MDU6TGFiZWwxMDcxNTEyNjMz","url":"https://api.github.com/repos/CS2103-AY1819S1-T13-4/main/labels/status.Review","name":"status.Review","color":"32aa06","default":false},{"id":1044918483,"node_id":"MDU6TGFiZWwxMDQ0OTE4NDgz","url":"https://api.github.com/repos/CS2103-AY1819S1-T13-4/main/labels/type.Bug","name":"type.Bug","color":"ead583","default":false}],"state":"open","locked":false,"assignee":{"login":"alexkmj","id":13652974,"node_id":"MDQ6VXNlcjEzNjUyOTc0","avatar_url":"https://avatars0.githubusercontent.com/u/13652974?v=4","gravatar_id":"","url":"https://api.github.com/users/alexkmj","html_url":"https://github.com/alexkmj","followers_url":"https://api.github.com/users/alexkmj/followers","following_url":"https://api.github.com/users/alexkmj/following{/other_user}","gists_url":"https://api.github.com/users/alexkmj/gists{/gist_id}","starred_url":"https://api.github.com/users/alexkmj/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alexkmj/subscriptions","organizations_url":"https://api.github.com/users/alexkmj/orgs","repos_url":"https://api.github.com/users/alexkmj/repos","events_url":"https://api.github.com/users/alexkmj/events{/privacy}","received_events_url":"https://api.github.com/users/alexkmj/received_events","type":"User","site_admin":false},"assignees":[{"login":"alexkmj","id":13652974,"node_id":"MDQ6VXNlcjEzNjUyOTc0","avatar_url":"https://avatars0.githubusercontent.com/u/13652974?v=4","gravatar_id":"","url":"https://api.github.com/users/alexkmj","html_url":"https://github.com/alexkmj","followers_url":"https://api.github.com/users/alexkmj/followers","following_url":"https://api.github.com/users/alexkmj/following{/other_user}","gists_url":"https://api.github.com/users/alexkmj/gists{/gist_id}","starred_url":"https://api.github.com/users/alexkmj/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alexkmj/subscriptions","organizations_url":"https://api.github.com/users/alexkmj/orgs","repos_url":"https://api.github.com/users/alexkmj/repos","events_url":"https://api.github.com/users/alexkmj/events{/privacy}","received_events_url":"https://api.github.com/users/alexkmj/received_events","type":"User","site_admin":false}],"milestone":{"url":"https://api.github.com/repos/CS2103-AY1819S1-T13-4/main/milestones/3","html_url":"https://github.com/CS2103-AY1819S1-T13-4/main/milestone/3","labels_url":"https://api.github.com/repos/CS2103-AY1819S1-T13-4/main/milestones/3/labels","id":3619601,"node_id":"MDk6TWlsZXN0b25lMzYxOTYwMQ==","number":3,"title":"v1.2","description":"","creator":{"login":"alexkmj","id":13652974,"node_id":"MDQ6VXNlcjEzNjUyOTc0","avatar_url":"https://avatars0.githubusercontent.com/u/13652974?v=4","gravatar_id":"","url":"https://api.github.com/users/alexkmj","html_url":"https://github.com/alexkmj","followers_url":"https://api.github.com/users/alexkmj/followers","following_url":"https://api.github.com/users/alexkmj/following{/other_user}","gists_url":"https://api.github.com/users/alexkmj/gists{/gist_id}","starred_url":"https://api.github.com/users/alexkmj/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alexkmj/subscriptions","organizations_url":"https://api.github.com/users/alexkmj/orgs","repos_url":"https://api.github.com/users/alexkmj/repos","events_url":"https://api.github.com/users/alexkmj/events{/privacy}","received_events_url":"https://api.github.com/users/alexkmj/received_events","type":"User","site_admin":false},"open_issues":4,"closed_issues":7,"state":"open","created_at":"2018-09-04T07:27:55Z","updated_at":"2018-10-11T04:26:59Z","due_on":"2018-10-18T07:00:00Z","closed_at":null},"comments":0,"created_at":"2018-10-11T04:23:51Z","updated_at":"2018-10-11T04:28:54Z","closed_at":null,"author_association":"NONE","pull_request":{"url":"https://api.github.com/repos/CS2103-AY1819S1-T13-4/main/pulls/39","html_url":"https://github.com/CS2103-AY1819S1-T13-4/main/pull/39","diff_url":"https://github.com/CS2103-AY1819S1-T13-4/main/pull/39.diff","patch_url":"https://github.com/CS2103-AY1819S1-T13-4/main/pull/39.patch"},"body":"Fix wrong link `alexkmj.jpg` to `alexkmj.png`\r\nRefer #40 "},"comment":{"url":"https://api.github.com/repos/CS2103-AY1819S1-T13-4/main/issues/comments/428816870","html_url":"https://github.com/CS2103-AY1819S1-T13-4/main/pull/39#issuecomment-428816870","issue_url":"https://api.github.com/repos/CS2103-AY1819S1-T13-4/main/issues/39","id":428816870,"node_id":"MDEyOklzc3VlQ29tbWVudDQyODgxNjg3MA==","user":{"login":"coveralls","id":2354108,"node_id":"MDQ6VXNlcjIzNTQxMDg=","avatar_url":"https://avatars1.githubusercontent.com/u/2354108?v=4","gravatar_id":"","url":"https://api.github.com/users/coveralls","html_url":"https://github.com/coveralls","followers_url":"https://api.github.com/users/coveralls/followers","following_url":"https://api.github.com/users/coveralls/following{/other_user}","gists_url":"https://api.github.com/users/coveralls/gists{/gist_id}","starred_url":"https://api.github.com/users/coveralls/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/coveralls/subscriptions","organizations_url":"https://api.github.com/users/coveralls/orgs","repos_url":"https://api.github.com/users/coveralls/repos","events_url":"https://api.github.com/users/coveralls/events{/privacy}","received_events_url":"https://api.github.com/users/coveralls/received_events","type":"User","site_admin":false},"created_at":"2018-10-11T04:28:54Z","updated_at":"2018-10-11T04:28:54Z","author_association":"NONE","body":"\n[](https://coveralls.io/builds/19461839)\n\nCoverage remained the same at 89.749% when pulling **1ae7c7c72db16adddfee6cd204d6d21789bb32f1 on alexkmj:fix-about** into **501ad00d6d661666688bb27f8eaee91fd8f10089 on CS2103-AY1819S1-T13-4:master**.\n"}} | {
"id": 147281516,
"name": "CS2103-AY1819S1-T13-4/main",
"url": "https://api.github.com/repos/CS2103-AY1819S1-T13-4/main"
} | {
"id": 2354108,
"login": "coveralls",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/2354108?",
"url": "https://api.github.com/users/coveralls"
} | {
"id": 42953911,
"login": "CS2103-AY1819S1-T13-4",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/42953911?",
"url": "https://api.github.com/orgs/CS2103-AY1819S1-T13-4"
} | 2018-10-11T04:28:54 | 8402047719 | {"actor":{"display_login":"coveralls"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/node-ebml/node-ebml/issues/52","repository_url":"https://api.github.com/repos/node-ebml/node-ebml","labels_url":"https://api.github.com/repos/node-ebml/node-ebml/issues/52/labels{/name}","comments_url":"https://api.github.com/repos/node-ebml/node-ebml/issues/52/comments","events_url":"https://api.github.com/repos/node-ebml/node-ebml/issues/52/events","html_url":"https://github.com/node-ebml/node-ebml/pull/52","id":365647264,"node_id":"MDExOlB1bGxSZXF1ZXN0MjE5NTE5MjUx","number":52,"title":"Update flow-bin to the latest version 🚀","user":{"login":"greenkeeper[bot]","id":23040076,"node_id":"MDM6Qm90MjMwNDAwNzY=","avatar_url":"https://avatars3.githubusercontent.com/in/505?v=4","gravatar_id":"","url":"https://api.github.com/users/greenkeeper%5Bbot%5D","html_url":"https://github.com/apps/greenkeeper","followers_url":"https://api.github.com/users/greenkeeper%5Bbot%5D/followers","following_url":"https://api.github.com/users/greenkeeper%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/greenkeeper%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/greenkeeper%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/greenkeeper%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/greenkeeper%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/greenkeeper%5Bbot%5D/repos","events_url":"https://api.github.com/users/greenkeeper%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/greenkeeper%5Bbot%5D/received_events","type":"Bot","site_admin":false},"labels":[{"id":892497508,"node_id":"MDU6TGFiZWw4OTI0OTc1MDg=","url":"https://api.github.com/repos/node-ebml/node-ebml/labels/greenkeeper","name":"greenkeeper","color":"00c775","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2018-10-01T21:18:14Z","updated_at":"2018-10-30T05:00:07Z","closed_at":null,"author_association":"CONTRIBUTOR","pull_request":{"url":"https://api.github.com/repos/node-ebml/node-ebml/pulls/52","html_url":"https://github.com/node-ebml/node-ebml/pull/52","diff_url":"https://github.com/node-ebml/node-ebml/pull/52.diff","patch_url":"https://github.com/node-ebml/node-ebml/pull/52.patch"},"body":"\n## The devDependency [flow-bin](https://github.com/flowtype/flow-bin) was updated from `0.81.0` to `0.82.0`.\nThis version is **not covered** by your **current version range**.\n\nIf you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.\n\n---\n\n[Find out more about this release](https://github.com/flowtype/flow-bin).\n\n<details>\n <summary>FAQ and help</summary>\n\n There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).\n</details>\n\n---\n\n\nYour [Greenkeeper](https://greenkeeper.io) bot :palm_tree:\n\n"},"comment":{"url":"https://api.github.com/repos/node-ebml/node-ebml/issues/comments/434172630","html_url":"https://github.com/node-ebml/node-ebml/pull/52#issuecomment-434172630","issue_url":"https://api.github.com/repos/node-ebml/node-ebml/issues/52","id":434172630,"node_id":"MDEyOklzc3VlQ29tbWVudDQzNDE3MjYzMA==","user":{"login":"greenkeeper[bot]","id":23040076,"node_id":"MDM6Qm90MjMwNDAwNzY=","avatar_url":"https://avatars3.githubusercontent.com/in/505?v=4","gravatar_id":"","url":"https://api.github.com/users/greenkeeper%5Bbot%5D","html_url":"https://github.com/apps/greenkeeper","followers_url":"https://api.github.com/users/greenkeeper%5Bbot%5D/followers","following_url":"https://api.github.com/users/greenkeeper%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/greenkeeper%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/greenkeeper%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/greenkeeper%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/greenkeeper%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/greenkeeper%5Bbot%5D/repos","events_url":"https://api.github.com/users/greenkeeper%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/greenkeeper%5Bbot%5D/received_events","type":"Bot","site_admin":false},"created_at":"2018-10-30T05:00:07Z","updated_at":"2018-10-30T05:00:07Z","author_association":"CONTRIBUTOR","body":"- The `devDependency` [flow-bin](https://github.com/flowtype/flow-bin) was updated from `0.81.0` to `0.85.0`.\n\n[Update to this version instead 🚀](https://github.com/node-ebml/node-ebml/compare/master...node-ebml:greenkeeper%2Fflow-bin-0.85.0) \n \n\n<details>\n<summary>Commits</summary>\n<p>The new version differs by 1 commits.</p>\n<ul>\n<li><a href=\"https://urls.greenkeeper.io/flowtype/flow-bin/commit/1d91ff44ad263702824238036ab0f677b02074d1\"><code>1d91ff4</code></a> <code>v0.85.0</code></li>\n</ul>\n<p>See the <a href=\"https://urls.greenkeeper.io/flowtype/flow-bin/compare/dc7e096196b429c134605ababa141445955b2567...1d91ff44ad263702824238036ab0f677b02074d1\">full diff</a></p>\n</details>"}} | {
"id": 12828943,
"name": "node-ebml/node-ebml",
"url": "https://api.github.com/repos/node-ebml/node-ebml"
} | {
"id": 23040076,
"login": "greenkeeper[bot]",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/23040076?",
"url": "https://api.github.com/users/greenkeeper[bot]"
} | {
"id": 43010016,
"login": "node-ebml",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/43010016?",
"url": "https://api.github.com/orgs/node-ebml"
} | 2018-10-30T05:00:07 | 8502543165 | {"actor":{"display_login":"greenkeeper"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/issues/269","repository_url":"https://api.github.com/repos/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee","labels_url":"https://api.github.com/repos/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/issues/269/labels{/name}","comments_url":"https://api.github.com/repos/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/issues/269/comments","events_url":"https://api.github.com/repos/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/issues/269/events","html_url":"https://github.com/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/issues/269","id":388991509,"node_id":"MDU6SXNzdWUzODg5OTE1MDk=","number":269,"title":"eeeeee eeeee | eeeee? [eeeeeeee]","user":{"login":"TheJayZ","id":45528808,"node_id":"MDQ6VXNlcjQ1NTI4ODA4","avatar_url":"https://avatars0.githubusercontent.com/u/45528808?v=4","gravatar_id":"","url":"https://api.github.com/users/TheJayZ","html_url":"https://github.com/TheJayZ","followers_url":"https://api.github.com/users/TheJayZ/followers","following_url":"https://api.github.com/users/TheJayZ/following{/other_user}","gists_url":"https://api.github.com/users/TheJayZ/gists{/gist_id}","starred_url":"https://api.github.com/users/TheJayZ/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TheJayZ/subscriptions","organizations_url":"https://api.github.com/users/TheJayZ/orgs","repos_url":"https://api.github.com/users/TheJayZ/repos","events_url":"https://api.github.com/users/TheJayZ/events{/privacy}","received_events_url":"https://api.github.com/users/TheJayZ/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":5,"created_at":"2018-12-09T06:14:13Z","updated_at":"2018-12-09T07:20:22Z","closed_at":"2018-12-09T07:20:23Z","author_association":"NONE","body":"eee,\r\neeeeeeeeeeee eeeeeeeeeeeeeeeeeeeeeeeeee eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee\r\n`eeeeeeeeeeeeeeeeeeeeeeeeeeeee\r\neeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee`\r\n\r\neee eeeeeeeee eeeeeeee?\r\ne eeeeeeee eeeee\r\neeeeee eeeeee eeeeeee eeeeeee eeeeee\r\n\r\nE"},"comment":{"url":"https://api.github.com/repos/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/issues/comments/445516622","html_url":"https://github.com/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/issues/269#issuecomment-445516622","issue_url":"https://api.github.com/repos/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/issues/269","id":445516622,"node_id":"MDEyOklzc3VlQ29tbWVudDQ0NTUxNjYyMg==","user":{"login":"TheJayZ","id":45528808,"node_id":"MDQ6VXNlcjQ1NTI4ODA4","avatar_url":"https://avatars0.githubusercontent.com/u/45528808?v=4","gravatar_id":"","url":"https://api.github.com/users/TheJayZ","html_url":"https://github.com/TheJayZ","followers_url":"https://api.github.com/users/TheJayZ/followers","following_url":"https://api.github.com/users/TheJayZ/following{/other_user}","gists_url":"https://api.github.com/users/TheJayZ/gists{/gist_id}","starred_url":"https://api.github.com/users/TheJayZ/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TheJayZ/subscriptions","organizations_url":"https://api.github.com/users/TheJayZ/orgs","repos_url":"https://api.github.com/users/TheJayZ/repos","events_url":"https://api.github.com/users/TheJayZ/events{/privacy}","received_events_url":"https://api.github.com/users/TheJayZ/received_events","type":"User","site_admin":false},"created_at":"2018-12-09T07:20:22Z","updated_at":"2018-12-09T07:20:22Z","author_association":"NONE","body":"eeeeeee!\r\n\r\neeee eeeeeee eeeeeeeeee eeeeeeeee eeeeeee\r\n`eeeeeeeee eeeeee ee e e eeeeeeeeeee`"}} | {
"id": 156648725,
"name": "eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
"url": "https://api.github.com/repos/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee"
} | {
"id": 45528808,
"login": "TheJayZ",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/45528808?",
"url": "https://api.github.com/users/TheJayZ"
} | {
"id": 43085319,
"login": "eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/43085319?",
"url": "https://api.github.com/orgs/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee"
} | 2018-12-09T07:20:23 | 8722010247 | {"actor":{"display_login":"TheJayZ"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/urfu-2018/markup-task-3/issues/85","repository_url":"https://api.github.com/repos/urfu-2018/markup-task-3","labels_url":"https://api.github.com/repos/urfu-2018/markup-task-3/issues/85/labels{/name}","comments_url":"https://api.github.com/repos/urfu-2018/markup-task-3/issues/85/comments","events_url":"https://api.github.com/repos/urfu-2018/markup-task-3/issues/85/events","html_url":"https://github.com/urfu-2018/markup-task-3/pull/85","id":372899421,"node_id":"MDExOlB1bGxSZXF1ZXN0MjI0OTYyNTAw","number":85,"title":"Ефременков Роман","user":{"login":"RAEfremenkov","id":38274215,"node_id":"MDQ6VXNlcjM4Mjc0MjE1","avatar_url":"https://avatars3.githubusercontent.com/u/38274215?v=4","gravatar_id":"","url":"https://api.github.com/users/RAEfremenkov","html_url":"https://github.com/RAEfremenkov","followers_url":"https://api.github.com/users/RAEfremenkov/followers","following_url":"https://api.github.com/users/RAEfremenkov/following{/other_user}","gists_url":"https://api.github.com/users/RAEfremenkov/gists{/gist_id}","starred_url":"https://api.github.com/users/RAEfremenkov/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RAEfremenkov/subscriptions","organizations_url":"https://api.github.com/users/RAEfremenkov/orgs","repos_url":"https://api.github.com/users/RAEfremenkov/repos","events_url":"https://api.github.com/users/RAEfremenkov/events{/privacy}","received_events_url":"https://api.github.com/users/RAEfremenkov/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-10-23T09:28:13Z","updated_at":"2018-10-23T09:28:49Z","closed_at":null,"author_association":"NONE","pull_request":{"url":"https://api.github.com/repos/urfu-2018/markup-task-3/pulls/85","html_url":"https://github.com/urfu-2018/markup-task-3/pull/85","diff_url":"https://github.com/urfu-2018/markup-task-3/pull/85.diff","patch_url":"https://github.com/urfu-2018/markup-task-3/pull/85.patch"},"body":"[Посмотреть решение](https://hruview.herokuapp.com/RAEfremenkov/markup-task-3/master/index.html)"},"comment":{"url":"https://api.github.com/repos/urfu-2018/markup-task-3/issues/comments/432170862","html_url":"https://github.com/urfu-2018/markup-task-3/pull/85#issuecomment-432170862","issue_url":"https://api.github.com/repos/urfu-2018/markup-task-3/issues/85","id":432170862,"node_id":"MDEyOklzc3VlQ29tbWVudDQzMjE3MDg2Mg==","user":{"login":"honest-hrundel","id":14963964,"node_id":"MDQ6VXNlcjE0OTYzOTY0","avatar_url":"https://avatars0.githubusercontent.com/u/14963964?v=4","gravatar_id":"","url":"https://api.github.com/users/honest-hrundel","html_url":"https://github.com/honest-hrundel","followers_url":"https://api.github.com/users/honest-hrundel/followers","following_url":"https://api.github.com/users/honest-hrundel/following{/other_user}","gists_url":"https://api.github.com/users/honest-hrundel/gists{/gist_id}","starred_url":"https://api.github.com/users/honest-hrundel/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/honest-hrundel/subscriptions","organizations_url":"https://api.github.com/users/honest-hrundel/orgs","repos_url":"https://api.github.com/users/honest-hrundel/repos","events_url":"https://api.github.com/users/honest-hrundel/events{/privacy}","received_events_url":"https://api.github.com/users/honest-hrundel/received_events","type":"User","site_admin":false},"created_at":"2018-10-23T09:28:49Z","updated_at":"2018-10-23T09:28:49Z","author_association":"NONE","body":":green_apple: Пройден линтинг и базовые тесты"}} | {
"id": 153297091,
"name": "urfu-2018/markup-task-3",
"url": "https://api.github.com/repos/urfu-2018/markup-task-3"
} | {
"id": 14963964,
"login": "honest-hrundel",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/14963964?",
"url": "https://api.github.com/users/honest-hrundel"
} | {
"id": 43127233,
"login": "urfu-2018",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/43127233?",
"url": "https://api.github.com/orgs/urfu-2018"
} | 2018-10-23T09:28:49 | 8464387686 | {"actor":{"display_login":"honest-hrundel"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/CS2103-AY1819S1-F11-4/main/issues/255","repository_url":"https://api.github.com/repos/CS2103-AY1819S1-F11-4/main","labels_url":"https://api.github.com/repos/CS2103-AY1819S1-F11-4/main/issues/255/labels{/name}","comments_url":"https://api.github.com/repos/CS2103-AY1819S1-F11-4/main/issues/255/comments","events_url":"https://api.github.com/repos/CS2103-AY1819S1-F11-4/main/issues/255/events","html_url":"https://github.com/CS2103-AY1819S1-F11-4/main/pull/255","id":380997997,"node_id":"MDExOlB1bGxSZXF1ZXN0MjMxMDY2OTEx","number":255,"title":"RepoSense config.json","user":{"login":"nigelngyy","id":42462613,"node_id":"MDQ6VXNlcjQyNDYyNjEz","avatar_url":"https://avatars0.githubusercontent.com/u/42462613?v=4","gravatar_id":"","url":"https://api.github.com/users/nigelngyy","html_url":"https://github.com/nigelngyy","followers_url":"https://api.github.com/users/nigelngyy/followers","following_url":"https://api.github.com/users/nigelngyy/following{/other_user}","gists_url":"https://api.github.com/users/nigelngyy/gists{/gist_id}","starred_url":"https://api.github.com/users/nigelngyy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nigelngyy/subscriptions","organizations_url":"https://api.github.com/users/nigelngyy/orgs","repos_url":"https://api.github.com/users/nigelngyy/repos","events_url":"https://api.github.com/users/nigelngyy/events{/privacy}","received_events_url":"https://api.github.com/users/nigelngyy/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-11-15T04:43:24Z","updated_at":"2018-11-15T04:49:20Z","closed_at":null,"author_association":"NONE","pull_request":{"url":"https://api.github.com/repos/CS2103-AY1819S1-F11-4/main/pulls/255","html_url":"https://github.com/CS2103-AY1819S1-F11-4/main/pull/255","diff_url":"https://github.com/CS2103-AY1819S1-F11-4/main/pull/255.diff","patch_url":"https://github.com/CS2103-AY1819S1-F11-4/main/pull/255.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/CS2103-AY1819S1-F11-4/main/issues/comments/438916511","html_url":"https://github.com/CS2103-AY1819S1-F11-4/main/pull/255#issuecomment-438916511","issue_url":"https://api.github.com/repos/CS2103-AY1819S1-F11-4/main/issues/255","id":438916511,"node_id":"MDEyOklzc3VlQ29tbWVudDQzODkxNjUxMQ==","user":{"login":"coveralls","id":2354108,"node_id":"MDQ6VXNlcjIzNTQxMDg=","avatar_url":"https://avatars1.githubusercontent.com/u/2354108?v=4","gravatar_id":"","url":"https://api.github.com/users/coveralls","html_url":"https://github.com/coveralls","followers_url":"https://api.github.com/users/coveralls/followers","following_url":"https://api.github.com/users/coveralls/following{/other_user}","gists_url":"https://api.github.com/users/coveralls/gists{/gist_id}","starred_url":"https://api.github.com/users/coveralls/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/coveralls/subscriptions","organizations_url":"https://api.github.com/users/coveralls/orgs","repos_url":"https://api.github.com/users/coveralls/repos","events_url":"https://api.github.com/users/coveralls/events{/privacy}","received_events_url":"https://api.github.com/users/coveralls/received_events","type":"User","site_admin":false},"created_at":"2018-11-15T04:49:20Z","updated_at":"2018-11-15T04:49:20Z","author_association":"NONE","body":"## Pull Request Test Coverage Report for [Build 797](https://coveralls.io/builds/20115594)\n\n* **0** of **0** changed or added relevant lines in **0** files are covered.\n* No unchanged relevant lines lost coverage.\n* Overall coverage remained the same at **87.517%**\n\n---\n\n\n\n| Totals | [](https://coveralls.io/builds/20115594) |\n| :-- | --: |\n| Change from base [Build 795](https://coveralls.io/builds/20054121): | 0.0% |\n| Covered Lines: | 2594 |\n| Relevant Lines: | 2964 |\n\n---\n##### 💛 - [Coveralls](https://coveralls.io)\n"}} | {
"id": 149080378,
"name": "CS2103-AY1819S1-F11-4/main",
"url": "https://api.github.com/repos/CS2103-AY1819S1-F11-4/main"
} | {
"id": 2354108,
"login": "coveralls",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/2354108?",
"url": "https://api.github.com/users/coveralls"
} | {
"id": 43130996,
"login": "CS2103-AY1819S1-F11-4",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/43130996?",
"url": "https://api.github.com/orgs/CS2103-AY1819S1-F11-4"
} | 2018-11-15T04:49:20 | 8592903556 | {"actor":{"display_login":"coveralls"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/Open-Source-Studio-at-ITP/Final-Projects/issues/12","repository_url":"https://api.github.com/repos/Open-Source-Studio-at-ITP/Final-Projects","labels_url":"https://api.github.com/repos/Open-Source-Studio-at-ITP/Final-Projects/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/Open-Source-Studio-at-ITP/Final-Projects/issues/12/comments","events_url":"https://api.github.com/repos/Open-Source-Studio-at-ITP/Final-Projects/issues/12/events","html_url":"https://github.com/Open-Source-Studio-at-ITP/Final-Projects/issues/12","id":372801692,"node_id":"MDU6SXNzdWUzNzI4MDE2OTI=","number":12,"title":"Code based \"creative project\" idea aggregator / collection","user":{"login":"js6450","id":6685006,"node_id":"MDQ6VXNlcjY2ODUwMDY=","avatar_url":"https://avatars3.githubusercontent.com/u/6685006?v=4","gravatar_id":"","url":"https://api.github.com/users/js6450","html_url":"https://github.com/js6450","followers_url":"https://api.github.com/users/js6450/followers","following_url":"https://api.github.com/users/js6450/following{/other_user}","gists_url":"https://api.github.com/users/js6450/gists{/gist_id}","starred_url":"https://api.github.com/users/js6450/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/js6450/subscriptions","organizations_url":"https://api.github.com/users/js6450/orgs","repos_url":"https://api.github.com/users/js6450/repos","events_url":"https://api.github.com/users/js6450/events{/privacy}","received_events_url":"https://api.github.com/users/js6450/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2018-10-23T04:18:57Z","updated_at":"2018-10-23T13:01:28Z","closed_at":null,"author_association":"NONE","body":"This sounds really vague, but I have recently been thinking about how a lot of code-based works are very short lived. A lot of ITP-style projects tend to be short lived because libraries get updated, functions become deprecated, browser no longer supports this or that.\r\n\r\nSo, I've been thinking, what if we create a repository / website of our projects or ideas for projects in pseudo code form? Or not even in pseudo code, but in Sol Lewitt style of instructions? Also, it would be cool if we could let people comment / add links to their iteration / interpretation of the instruction. \r\n\r\nI don't really know what kind of form this would take actually. But I wanted to explore the idea of open source instructions, specifically for code based art."},"comment":{"url":"https://api.github.com/repos/Open-Source-Studio-at-ITP/Final-Projects/issues/comments/432236984","html_url":"https://github.com/Open-Source-Studio-at-ITP/Final-Projects/issues/12#issuecomment-432236984","issue_url":"https://api.github.com/repos/Open-Source-Studio-at-ITP/Final-Projects/issues/12","id":432236984,"node_id":"MDEyOklzc3VlQ29tbWVudDQzMjIzNjk4NA==","user":{"login":"shiffman","id":191758,"node_id":"MDQ6VXNlcjE5MTc1OA==","avatar_url":"https://avatars0.githubusercontent.com/u/191758?v=4","gravatar_id":"","url":"https://api.github.com/users/shiffman","html_url":"https://github.com/shiffman","followers_url":"https://api.github.com/users/shiffman/followers","following_url":"https://api.github.com/users/shiffman/following{/other_user}","gists_url":"https://api.github.com/users/shiffman/gists{/gist_id}","starred_url":"https://api.github.com/users/shiffman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shiffman/subscriptions","organizations_url":"https://api.github.com/users/shiffman/orgs","repos_url":"https://api.github.com/users/shiffman/repos","events_url":"https://api.github.com/users/shiffman/events{/privacy}","received_events_url":"https://api.github.com/users/shiffman/received_events","type":"User","site_admin":false},"created_at":"2018-10-23T13:01:28Z","updated_at":"2018-10-23T13:01:28Z","author_association":"MEMBER","body":"Interesting, this reminds me a bit of initiatives that compile algorithms and pseudo-code for those algorithms (so from a comp sci angle rather than creative project angle). Some recently shared a really nice one with me but I can't seem to find it with a google search right now. \r\n\r\nThere is also [ReCode Project](http://recodeproject.com/) by ITP alum @matthewepler which relates to the idea in some ways."}} | {
"id": 149883894,
"name": "Open-Source-Studio-at-ITP/Final-Projects",
"url": "https://api.github.com/repos/Open-Source-Studio-at-ITP/Final-Projects"
} | {
"id": 191758,
"login": "shiffman",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/191758?",
"url": "https://api.github.com/users/shiffman"
} | {
"id": 43181841,
"login": "Open-Source-Studio-at-ITP",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/43181841?",
"url": "https://api.github.com/orgs/Open-Source-Studio-at-ITP"
} | 2018-10-23T13:01:28 | 8465700225 | {"actor":{"display_login":"shiffman"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/netdata/netdata/issues/4944","repository_url":"https://api.github.com/repos/netdata/netdata","labels_url":"https://api.github.com/repos/netdata/netdata/issues/4944/labels{/name}","comments_url":"https://api.github.com/repos/netdata/netdata/issues/4944/comments","events_url":"https://api.github.com/repos/netdata/netdata/issues/4944/events","html_url":"https://github.com/netdata/netdata/pull/4944","id":388733853,"node_id":"MDExOlB1bGxSZXF1ZXN0MjM2OTMwNjMx","number":4944,"title":"[wip] postgres fix: detect servers version and use the right query","user":{"login":"ilyam8","id":22274335,"node_id":"MDQ6VXNlcjIyMjc0MzM1","avatar_url":"https://avatars3.githubusercontent.com/u/22274335?v=4","gravatar_id":"","url":"https://api.github.com/users/ilyam8","html_url":"https://github.com/ilyam8","followers_url":"https://api.github.com/users/ilyam8/followers","following_url":"https://api.github.com/users/ilyam8/following{/other_user}","gists_url":"https://api.github.com/users/ilyam8/gists{/gist_id}","starred_url":"https://api.github.com/users/ilyam8/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ilyam8/subscriptions","organizations_url":"https://api.github.com/users/ilyam8/orgs","repos_url":"https://api.github.com/users/ilyam8/repos","events_url":"https://api.github.com/users/ilyam8/events{/privacy}","received_events_url":"https://api.github.com/users/ilyam8/received_events","type":"User","site_admin":false},"labels":[{"id":1131633615,"node_id":"MDU6TGFiZWwxMTMxNjMzNjE1","url":"https://api.github.com/repos/netdata/netdata/labels/area/collectors","name":"area/collectors","color":"0f34c6","default":false},{"id":1065921486,"node_id":"MDU6TGFiZWwxMDY1OTIxNDg2","url":"https://api.github.com/repos/netdata/netdata/labels/area/external/python","name":"area/external/python","color":"0f34c6","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2018-12-07T16:52:59Z","updated_at":"2018-12-08T09:58:07Z","closed_at":null,"author_association":"MEMBER","pull_request":{"url":"https://api.github.com/repos/netdata/netdata/pulls/4944","html_url":"https://github.com/netdata/netdata/pull/4944","diff_url":"https://github.com/netdata/netdata/pull/4944.diff","patch_url":"https://github.com/netdata/netdata/pull/4944.patch"},"body":"<!--\r\nDescribe the change in summary section, including rationale and degin decisions.\r\nInclude \"Fixes #nnn\" if you are fixing an existing issue.\r\n\r\nIn \"Component Name\" section write which component is changed in this PR. This\r\nwill help us review your PR quicker.\r\n\r\nIf you have more information you want to add, write them in \"Additional\r\nInformation\" section. This is usually used to help others understand your\r\nmotivation behind this change. A step-by-step reproduction of the problem is\r\nhelpful if there is no related issue.\r\n-->\r\n\r\n##### Summary\r\nFixes: #4910\r\nFixes: #4904\r\n\r\n##### Component Name\r\npython.d module `postgres`\r\n\r\n##### Additional Information\r\n\r\nadd support for use specific query depending on server version\r\n\r\n@anayrat \r\n@arenddeboer \r\n\r\nif you have free time please test, the issue should be fixed\r\n\r\n@anayrat please look at all queries, I could break something :sweat_smile: \r\nhttps://github.com/ilyam8/netdata/blob/4271131581f3a0f2c5e10a8ed24d69f2ca988a59/collectors/python.d.plugin/postgres/postgres.chart.py#L122-L416\r\n"},"comment":{"url":"https://api.github.com/repos/netdata/netdata/issues/comments/445447289","html_url":"https://github.com/netdata/netdata/pull/4944#issuecomment-445447289","issue_url":"https://api.github.com/repos/netdata/netdata/issues/4944","id":445447289,"node_id":"MDEyOklzc3VlQ29tbWVudDQ0NTQ0NzI4OQ==","user":{"login":"anayrat","id":6862220,"node_id":"MDQ6VXNlcjY4NjIyMjA=","avatar_url":"https://avatars1.githubusercontent.com/u/6862220?v=4","gravatar_id":"","url":"https://api.github.com/users/anayrat","html_url":"https://github.com/anayrat","followers_url":"https://api.github.com/users/anayrat/followers","following_url":"https://api.github.com/users/anayrat/following{/other_user}","gists_url":"https://api.github.com/users/anayrat/gists{/gist_id}","starred_url":"https://api.github.com/users/anayrat/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anayrat/subscriptions","organizations_url":"https://api.github.com/users/anayrat/orgs","repos_url":"https://api.github.com/users/anayrat/repos","events_url":"https://api.github.com/users/anayrat/events{/privacy}","received_events_url":"https://api.github.com/users/anayrat/received_events","type":"User","site_admin":false},"created_at":"2018-12-08T09:58:07Z","updated_at":"2018-12-08T09:58:07Z","author_association":"CONTRIBUTOR","body":"Thanks @ilyam8! (unfortunately my server crashed, I am busy to reinstall it :( )\r\nIt is possible to have something like : \r\n```\r\nif version >= 110000 \r\n (query for version 11)\r\nelse version >= 100000\r\n (query for version 10)\r\nelse\r\n ( default query)\r\n```\r\n\r\nIt will be easier to handle different versions in the future than adding rules like: \r\n```\r\nwal = 'wal' if version >= 100000 else 'xlog'\r\nlsn = 'lsn' if version >= 100000 else 'location'\r\n```\r\nI am afraid queries will be hard to read after several version.\r\nThanks, and sorry to not help more :/"}} | {
"id": 10744183,
"name": "netdata/netdata",
"url": "https://api.github.com/repos/netdata/netdata"
} | {
"id": 6862220,
"login": "anayrat",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6862220?",
"url": "https://api.github.com/users/anayrat"
} | {
"id": 43390781,
"login": "netdata",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/43390781?",
"url": "https://api.github.com/orgs/netdata"
} | 2018-12-08T09:58:08 | 8720220051 | {"actor":{"display_login":"anayrat"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/Gods-Eye-BTH/WebApp/issues/5","repository_url":"https://api.github.com/repos/Gods-Eye-BTH/WebApp","labels_url":"https://api.github.com/repos/Gods-Eye-BTH/WebApp/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/Gods-Eye-BTH/WebApp/issues/5/comments","events_url":"https://api.github.com/repos/Gods-Eye-BTH/WebApp/issues/5/events","html_url":"https://github.com/Gods-Eye-BTH/WebApp/issues/5","id":371713273,"node_id":"MDU6SXNzdWUzNzE3MTMyNzM=","number":5,"title":"Can't switch streams","user":{"login":"misuto","id":3165211,"node_id":"MDQ6VXNlcjMxNjUyMTE=","avatar_url":"https://avatars2.githubusercontent.com/u/3165211?v=4","gravatar_id":"","url":"https://api.github.com/users/misuto","html_url":"https://github.com/misuto","followers_url":"https://api.github.com/users/misuto/followers","following_url":"https://api.github.com/users/misuto/following{/other_user}","gists_url":"https://api.github.com/users/misuto/gists{/gist_id}","starred_url":"https://api.github.com/users/misuto/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/misuto/subscriptions","organizations_url":"https://api.github.com/users/misuto/orgs","repos_url":"https://api.github.com/users/misuto/repos","events_url":"https://api.github.com/users/misuto/events{/privacy}","received_events_url":"https://api.github.com/users/misuto/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":{"login":"SpaceLenore","id":31237758,"node_id":"MDQ6VXNlcjMxMjM3NzU4","avatar_url":"https://avatars1.githubusercontent.com/u/31237758?v=4","gravatar_id":"","url":"https://api.github.com/users/SpaceLenore","html_url":"https://github.com/SpaceLenore","followers_url":"https://api.github.com/users/SpaceLenore/followers","following_url":"https://api.github.com/users/SpaceLenore/following{/other_user}","gists_url":"https://api.github.com/users/SpaceLenore/gists{/gist_id}","starred_url":"https://api.github.com/users/SpaceLenore/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SpaceLenore/subscriptions","organizations_url":"https://api.github.com/users/SpaceLenore/orgs","repos_url":"https://api.github.com/users/SpaceLenore/repos","events_url":"https://api.github.com/users/SpaceLenore/events{/privacy}","received_events_url":"https://api.github.com/users/SpaceLenore/received_events","type":"User","site_admin":false},"assignees":[{"login":"SpaceLenore","id":31237758,"node_id":"MDQ6VXNlcjMxMjM3NzU4","avatar_url":"https://avatars1.githubusercontent.com/u/31237758?v=4","gravatar_id":"","url":"https://api.github.com/users/SpaceLenore","html_url":"https://github.com/SpaceLenore","followers_url":"https://api.github.com/users/SpaceLenore/followers","following_url":"https://api.github.com/users/SpaceLenore/following{/other_user}","gists_url":"https://api.github.com/users/SpaceLenore/gists{/gist_id}","starred_url":"https://api.github.com/users/SpaceLenore/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SpaceLenore/subscriptions","organizations_url":"https://api.github.com/users/SpaceLenore/orgs","repos_url":"https://api.github.com/users/SpaceLenore/repos","events_url":"https://api.github.com/users/SpaceLenore/events{/privacy}","received_events_url":"https://api.github.com/users/SpaceLenore/received_events","type":"User","site_admin":false}],"milestone":null,"comments":0,"created_at":"2018-10-18T21:05:46Z","updated_at":"2018-10-19T15:43:10Z","closed_at":null,"author_association":"NONE","body":"Summary\r\n====\r\n\r\nSwitching streams does not work in recent Chrome."},"comment":{"url":"https://api.github.com/repos/Gods-Eye-BTH/WebApp/issues/comments/431407198","html_url":"https://github.com/Gods-Eye-BTH/WebApp/issues/5#issuecomment-431407198","issue_url":"https://api.github.com/repos/Gods-Eye-BTH/WebApp/issues/5","id":431407198,"node_id":"MDEyOklzc3VlQ29tbWVudDQzMTQwNzE5OA==","user":{"login":"SpaceLenore","id":31237758,"node_id":"MDQ6VXNlcjMxMjM3NzU4","avatar_url":"https://avatars1.githubusercontent.com/u/31237758?v=4","gravatar_id":"","url":"https://api.github.com/users/SpaceLenore","html_url":"https://github.com/SpaceLenore","followers_url":"https://api.github.com/users/SpaceLenore/followers","following_url":"https://api.github.com/users/SpaceLenore/following{/other_user}","gists_url":"https://api.github.com/users/SpaceLenore/gists{/gist_id}","starred_url":"https://api.github.com/users/SpaceLenore/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SpaceLenore/subscriptions","organizations_url":"https://api.github.com/users/SpaceLenore/orgs","repos_url":"https://api.github.com/users/SpaceLenore/repos","events_url":"https://api.github.com/users/SpaceLenore/events{/privacy}","received_events_url":"https://api.github.com/users/SpaceLenore/received_events","type":"User","site_admin":false},"created_at":"2018-10-19T15:43:10Z","updated_at":"2018-10-19T15:43:10Z","author_association":"MEMBER","body":"I've been able to reproduce it and can confirm that it does not work in chrome. A fix will be included in the merge of stream-view to master"}} | {
"id": 149590685,
"name": "Gods-Eye-BTH/WebApp",
"url": "https://api.github.com/repos/Gods-Eye-BTH/WebApp"
} | {
"id": 31237758,
"login": "SpaceLenore",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/31237758?",
"url": "https://api.github.com/users/SpaceLenore"
} | {
"id": 43416579,
"login": "Gods-Eye-BTH",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/43416579?",
"url": "https://api.github.com/orgs/Gods-Eye-BTH"
} | 2018-10-19T15:43:11 | 8449925178 | {"actor":{"display_login":"SpaceLenore"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/ovity/octotree/issues/546","repository_url":"https://api.github.com/repos/ovity/octotree","labels_url":"https://api.github.com/repos/ovity/octotree/issues/546/labels{/name}","comments_url":"https://api.github.com/repos/ovity/octotree/issues/546/comments","events_url":"https://api.github.com/repos/ovity/octotree/issues/546/events","html_url":"https://github.com/ovity/octotree/issues/546","id":365343152,"node_id":"MDU6SXNzdWUzNjUzNDMxNTI=","number":546,"title":"Octotree's side panel shifts GitHub's header's content","user":{"login":"flawyte","id":1585006,"node_id":"MDQ6VXNlcjE1ODUwMDY=","avatar_url":"https://avatars3.githubusercontent.com/u/1585006?v=4","gravatar_id":"","url":"https://api.github.com/users/flawyte","html_url":"https://github.com/flawyte","followers_url":"https://api.github.com/users/flawyte/followers","following_url":"https://api.github.com/users/flawyte/following{/other_user}","gists_url":"https://api.github.com/users/flawyte/gists{/gist_id}","starred_url":"https://api.github.com/users/flawyte/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/flawyte/subscriptions","organizations_url":"https://api.github.com/users/flawyte/orgs","repos_url":"https://api.github.com/users/flawyte/repos","events_url":"https://api.github.com/users/flawyte/events{/privacy}","received_events_url":"https://api.github.com/users/flawyte/received_events","type":"User","site_admin":false},"labels":[{"id":98398781,"node_id":"MDU6TGFiZWw5ODM5ODc4MQ==","url":"https://api.github.com/repos/ovity/octotree/labels/bug","name":"bug","color":"fc2929","default":true},{"id":98398784,"node_id":"MDU6TGFiZWw5ODM5ODc4NA==","url":"https://api.github.com/repos/ovity/octotree/labels/help%20wanted","name":"help wanted","color":"159818","default":true}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2018-10-01T07:43:48Z","updated_at":"2018-10-11T08:46:06Z","closed_at":null,"author_association":"NONE","body":"### Description\r\n\r\nThe title says it all. Here's a screenshot to help you see the problem :\r\n\r\n\r\nYou can see that the header's content gets shifted to the right when the Octotree panel is open (when it's closed too, but less).\r\n\r\nThough I don't know if it's really a bug or if it's intentional, because I used the DevTools to see what's going on and it happens because padding gets added to the header's content. But why is that?\r\n\r\n### Environment (if bug)\r\n\r\n* Octotree version: 2.4.9\r\n* Browser & version: Google Chrome 69.0.3497.100\r\n* OS & version: Windows 10"},"comment":{"url":"https://api.github.com/repos/ovity/octotree/issues/comments/428872737","html_url":"https://github.com/ovity/octotree/issues/546#issuecomment-428872737","issue_url":"https://api.github.com/repos/ovity/octotree/issues/546","id":428872737,"node_id":"MDEyOklzc3VlQ29tbWVudDQyODg3MjczNw==","user":{"login":"flawyte","id":1585006,"node_id":"MDQ6VXNlcjE1ODUwMDY=","avatar_url":"https://avatars3.githubusercontent.com/u/1585006?v=4","gravatar_id":"","url":"https://api.github.com/users/flawyte","html_url":"https://github.com/flawyte","followers_url":"https://api.github.com/users/flawyte/followers","following_url":"https://api.github.com/users/flawyte/following{/other_user}","gists_url":"https://api.github.com/users/flawyte/gists{/gist_id}","starred_url":"https://api.github.com/users/flawyte/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/flawyte/subscriptions","organizations_url":"https://api.github.com/users/flawyte/orgs","repos_url":"https://api.github.com/users/flawyte/repos","events_url":"https://api.github.com/users/flawyte/events{/privacy}","received_events_url":"https://api.github.com/users/flawyte/received_events","type":"User","site_admin":false},"created_at":"2018-10-11T08:46:06Z","updated_at":"2018-10-11T08:46:06Z","author_association":"NONE","body":"I can submit a PR if you want, if you just tell me how it should actually behave or if this part is to be removed completely."}} | {
"id": 19620844,
"name": "ovity/octotree",
"url": "https://api.github.com/repos/ovity/octotree"
} | {
"id": 1585006,
"login": "flawyte",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1585006?",
"url": "https://api.github.com/users/flawyte"
} | {
"id": 43424025,
"login": "ovity",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/43424025?",
"url": "https://api.github.com/orgs/ovity"
} | 2018-10-11T08:46:06 | 8403071016 | {"actor":{"display_login":"flawyte"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/yuquewebclipper/yuque-web-clipper/issues/3","repository_url":"https://api.github.com/repos/yuquewebclipper/yuque-web-clipper","labels_url":"https://api.github.com/repos/yuquewebclipper/yuque-web-clipper/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/yuquewebclipper/yuque-web-clipper/issues/3/comments","events_url":"https://api.github.com/repos/yuquewebclipper/yuque-web-clipper/issues/3/events","html_url":"https://github.com/yuquewebclipper/yuque-web-clipper/issues/3","id":382071494,"node_id":"MDU6SXNzdWUzODIwNzE0OTQ=","number":3,"title":"智能提取和提取整个页面会出现混乱","user":{"login":"istevenshen","id":26101369,"node_id":"MDQ6VXNlcjI2MTAxMzY5","avatar_url":"https://avatars1.githubusercontent.com/u/26101369?v=4","gravatar_id":"","url":"https://api.github.com/users/istevenshen","html_url":"https://github.com/istevenshen","followers_url":"https://api.github.com/users/istevenshen/followers","following_url":"https://api.github.com/users/istevenshen/following{/other_user}","gists_url":"https://api.github.com/users/istevenshen/gists{/gist_id}","starred_url":"https://api.github.com/users/istevenshen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/istevenshen/subscriptions","organizations_url":"https://api.github.com/users/istevenshen/orgs","repos_url":"https://api.github.com/users/istevenshen/repos","events_url":"https://api.github.com/users/istevenshen/events{/privacy}","received_events_url":"https://api.github.com/users/istevenshen/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-11-19T06:15:40Z","updated_at":"2018-11-19T13:34:26Z","closed_at":null,"author_association":"NONE","body":"不错的工具,有些功能能完善一下就好了~"},"comment":{"url":"https://api.github.com/repos/yuquewebclipper/yuque-web-clipper/issues/comments/439894210","html_url":"https://github.com/yuquewebclipper/yuque-web-clipper/issues/3#issuecomment-439894210","issue_url":"https://api.github.com/repos/yuquewebclipper/yuque-web-clipper/issues/3","id":439894210,"node_id":"MDEyOklzc3VlQ29tbWVudDQzOTg5NDIxMA==","user":{"login":"DiamondYuan","id":9692408,"node_id":"MDQ6VXNlcjk2OTI0MDg=","avatar_url":"https://avatars1.githubusercontent.com/u/9692408?v=4","gravatar_id":"","url":"https://api.github.com/users/DiamondYuan","html_url":"https://github.com/DiamondYuan","followers_url":"https://api.github.com/users/DiamondYuan/followers","following_url":"https://api.github.com/users/DiamondYuan/following{/other_user}","gists_url":"https://api.github.com/users/DiamondYuan/gists{/gist_id}","starred_url":"https://api.github.com/users/DiamondYuan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DiamondYuan/subscriptions","organizations_url":"https://api.github.com/users/DiamondYuan/orgs","repos_url":"https://api.github.com/users/DiamondYuan/repos","events_url":"https://api.github.com/users/DiamondYuan/events{/privacy}","received_events_url":"https://api.github.com/users/DiamondYuan/received_events","type":"User","site_admin":false},"created_at":"2018-11-19T13:34:26Z","updated_at":"2018-11-19T13:34:26Z","author_association":"MEMBER","body":"能详细说一下吗?"}} | {
"id": 153322501,
"name": "yuquewebclipper/yuque-web-clipper",
"url": "https://api.github.com/repos/yuquewebclipper/yuque-web-clipper"
} | {
"id": 9692408,
"login": "DiamondYuan",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/9692408?",
"url": "https://api.github.com/users/DiamondYuan"
} | {
"id": 43461934,
"login": "yuquewebclipper",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/43461934?",
"url": "https://api.github.com/orgs/yuquewebclipper"
} | 2018-11-19T13:34:26 | 8612846359 | {"actor":{"display_login":"DiamondYuan"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/30-seconds/30-seconds-of-code/issues/816","repository_url":"https://api.github.com/repos/30-seconds/30-seconds-of-code","labels_url":"https://api.github.com/repos/30-seconds/30-seconds-of-code/issues/816/labels{/name}","comments_url":"https://api.github.com/repos/30-seconds/30-seconds-of-code/issues/816/comments","events_url":"https://api.github.com/repos/30-seconds/30-seconds-of-code/issues/816/events","html_url":"https://github.com/30-seconds/30-seconds-of-code/issues/816","id":367901131,"node_id":"MDU6SXNzdWUzNjc5MDExMzE=","number":816,"title":"[SCRIPTS] Major changes coming to all scripts","user":{"login":"Chalarangelo","id":8281875,"node_id":"MDQ6VXNlcjgyODE4NzU=","avatar_url":"https://avatars2.githubusercontent.com/u/8281875?v=4","gravatar_id":"","url":"https://api.github.com/users/Chalarangelo","html_url":"https://github.com/Chalarangelo","followers_url":"https://api.github.com/users/Chalarangelo/followers","following_url":"https://api.github.com/users/Chalarangelo/following{/other_user}","gists_url":"https://api.github.com/users/Chalarangelo/gists{/gist_id}","starred_url":"https://api.github.com/users/Chalarangelo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Chalarangelo/subscriptions","organizations_url":"https://api.github.com/users/Chalarangelo/orgs","repos_url":"https://api.github.com/users/Chalarangelo/repos","events_url":"https://api.github.com/users/Chalarangelo/events{/privacy}","received_events_url":"https://api.github.com/users/Chalarangelo/received_events","type":"User","site_admin":false},"labels":[{"id":783009406,"node_id":"MDU6TGFiZWw3ODMwMDk0MDY=","url":"https://api.github.com/repos/30-seconds/30-seconds-of-code/labels/discussion","name":"discussion","color":"d3d642","default":false},{"id":764709655,"node_id":"MDU6TGFiZWw3NjQ3MDk2NTU=","url":"https://api.github.com/repos/30-seconds/30-seconds-of-code/labels/enhancement","name":"enhancement","color":"84b6eb","default":true},{"id":1083775489,"node_id":"MDU6TGFiZWwxMDgzNzc1NDg5","url":"https://api.github.com/repos/30-seconds/30-seconds-of-code/labels/hacktoberfest","name":"hacktoberfest","color":"ca19e5","default":false},{"id":764709657,"node_id":"MDU6TGFiZWw3NjQ3MDk2NTc=","url":"https://api.github.com/repos/30-seconds/30-seconds-of-code/labels/help%20wanted","name":"help wanted","color":"33aa3f","default":true},{"id":779011655,"node_id":"MDU6TGFiZWw3NzkwMTE2NTU=","url":"https://api.github.com/repos/30-seconds/30-seconds-of-code/labels/opinions%20needed","name":"opinions needed","color":"f458ab","default":false},{"id":781291116,"node_id":"MDU6TGFiZWw3ODEyOTExMTY=","url":"https://api.github.com/repos/30-seconds/30-seconds-of-code/labels/website","name":"website","color":"74d136","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":7,"created_at":"2018-10-08T18:19:31Z","updated_at":"2018-10-10T17:29:09Z","closed_at":null,"author_association":"MEMBER","body":"As discussed in #762, updates have been made to the `packager` process to streamline builds. However, the discussion around that change raised a few interesting points, namely that we could use the daily package builds for tests. To further expand on that idea, I will write a short list of the changes that I want to make to the build pipelines, as they have been mostly untouched for a while. Along with these changes, we should update Travis to improve our builds. Here's my proposed plan:\r\n\r\n### Scripts\r\n\r\n- [ ] Change the structure of `test` directory. Move the `.test.js` files to the top-level directory and remove all the subdirectories. This will help us search things more easily.\r\n- [ ] Change `rollup.js` and `module.js`. I believe we could combine those into one script that does both things at the same time. The whole `packager` process should also generate a `_30s.js` file in the `test` directory, which will be used on a per-commit basis to test snippets.\r\n- [ ] Update `tdd.js` to do what is stated above (generate tests in top-level `test` directory) by default. The only other tasks of `tdd.js` should be to actually run the tests and nothing else.\r\n- [x] Remove the `localize.js` script. That idea has been discontinued for a while. We can salvage some data from it, if needed, but let's bury that script and move on. - Dealt with in 034d4c5.\r\n- [ ] Update `extract.js` to generate a few more things, like a `list.json` file for the whole list of snippets with tags (as used in the website search). The long-term plan is to convert the website to a React app with asynchronous calls to JSON files hosted right from GitHub Pages, so let's get the script started on that idea and we will see if and when we can move forward with that.\r\n- [ ] Integrate `analyze.js` into `extract.js`, they are essentially part of the same procedure, only we don't run `analyzer` anywhere just yet.\r\n- [ ] Fix `web.js`'s static page generation. `about.html` and `contributing.html` still have no menu. This is also tracked in #788.\r\n- [ ] Actually create a `.eslintrc` file from the Codacy rules and the contribution guidelines, plug that into `lint.js` if possible.\r\n- [ ] Remove `testlog` from `test` to clean up commits and avoid merge conflicts, actually set up coverage via jest and configure it to work with Codacy. This will greatly help us figure out what is going on with our code.\r\n- [ ] Add a `vscode.js` script (name not final) to generate the snippets for VSCode as discussed in #722. This will output nightly like `packager.js`, but we will publish monthly or so like we normally publish the package.\r\n\r\n### Travis CI + Other integrations\r\n\r\n- [ ] As stated above, update the ESLint ruleset from Codacy to work with a file from the repo and set up coverage.\r\n- [ ] Update Travis CI order as follows:\r\n * `tagger` - Tags are the easiest and first task, as usual\r\n * `linter` - Linting the code should be done early on to avoid issues\r\n * `packager` - We should generate the `_30s.js` in `test` in this step and any package files in `dist` if it's a CRON job\r\n * `tester` - Test everything at this point, generate coverage, kill the build if this fails (fail = coverage below a percentage, let's be less strict about this, a 95% coverage is pretty good and will help us fix issues while the repo moves forward with new additions)\r\n * `extractor` - While not important right now, this will be important to be above the `webber` script in the future\r\n * `vscoder` - Might use data from the `extractor`, so this should be below it\r\n * `glossary:keymaker` - Generate the key file for the glossary, this might be important to keep at this point, so its output can be used directly in `webber`\r\n * `webber` - Build the website, this requires a decent amount of time and some parts run asynchronously, so I think this runs in parallel to the next few tasks\r\n * `builder` - Actually build the README, at this point everything should be ok\r\n * `glossary:librarian` - Generate the glossary library"},"comment":{"url":"https://api.github.com/repos/30-seconds/30-seconds-of-code/issues/comments/428660116","html_url":"https://github.com/30-seconds/30-seconds-of-code/issues/816#issuecomment-428660116","issue_url":"https://api.github.com/repos/30-seconds/30-seconds-of-code/issues/816","id":428660116,"node_id":"MDEyOklzc3VlQ29tbWVudDQyODY2MDExNg==","user":{"login":"Chalarangelo","id":8281875,"node_id":"MDQ6VXNlcjgyODE4NzU=","avatar_url":"https://avatars2.githubusercontent.com/u/8281875?v=4","gravatar_id":"","url":"https://api.github.com/users/Chalarangelo","html_url":"https://github.com/Chalarangelo","followers_url":"https://api.github.com/users/Chalarangelo/followers","following_url":"https://api.github.com/users/Chalarangelo/following{/other_user}","gists_url":"https://api.github.com/users/Chalarangelo/gists{/gist_id}","starred_url":"https://api.github.com/users/Chalarangelo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Chalarangelo/subscriptions","organizations_url":"https://api.github.com/users/Chalarangelo/orgs","repos_url":"https://api.github.com/users/Chalarangelo/repos","events_url":"https://api.github.com/users/Chalarangelo/events{/privacy}","received_events_url":"https://api.github.com/users/Chalarangelo/received_events","type":"User","site_admin":false},"created_at":"2018-10-10T17:29:09Z","updated_at":"2018-10-10T17:29:09Z","author_association":"MEMBER","body":"### Update\r\n\r\nI am currently working on the packaging scripts, already merged `module.js` and `rollup.js` into one script and I will try to make the process a bit faster (already trimmed about half a second from it). I'll update this comment as I go."}} | {
"id": 112507086,
"name": "30-seconds/30-seconds-of-code",
"url": "https://api.github.com/repos/30-seconds/30-seconds-of-code"
} | {
"id": 8281875,
"login": "Chalarangelo",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/8281875?",
"url": "https://api.github.com/users/Chalarangelo"
} | {
"id": 43479428,
"login": "30-seconds",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/43479428?",
"url": "https://api.github.com/orgs/30-seconds"
} | 2018-10-10T17:29:09 | 8399332511 | {"actor":{"display_login":"Chalarangelo"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/mcmonkeyprojects/Sentinel/issues/267","repository_url":"https://api.github.com/repos/mcmonkeyprojects/Sentinel","labels_url":"https://api.github.com/repos/mcmonkeyprojects/Sentinel/issues/267/labels{/name}","comments_url":"https://api.github.com/repos/mcmonkeyprojects/Sentinel/issues/267/comments","events_url":"https://api.github.com/repos/mcmonkeyprojects/Sentinel/issues/267/events","html_url":"https://github.com/mcmonkeyprojects/Sentinel/issues/267","id":377091838,"node_id":"MDU6SXNzdWUzNzcwOTE4Mzg=","number":267,"title":"Help! NPC drops drops after death in only one world","user":{"login":"Noob1917","id":39665944,"node_id":"MDQ6VXNlcjM5NjY1OTQ0","avatar_url":"https://avatars1.githubusercontent.com/u/39665944?v=4","gravatar_id":"","url":"https://api.github.com/users/Noob1917","html_url":"https://github.com/Noob1917","followers_url":"https://api.github.com/users/Noob1917/followers","following_url":"https://api.github.com/users/Noob1917/following{/other_user}","gists_url":"https://api.github.com/users/Noob1917/gists{/gist_id}","starred_url":"https://api.github.com/users/Noob1917/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Noob1917/subscriptions","organizations_url":"https://api.github.com/users/Noob1917/orgs","repos_url":"https://api.github.com/users/Noob1917/repos","events_url":"https://api.github.com/users/Noob1917/events{/privacy}","received_events_url":"https://api.github.com/users/Noob1917/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-11-03T20:49:22Z","updated_at":"2018-11-03T20:58:31Z","closed_at":"2018-11-03T20:55:31Z","author_association":"NONE","body":"Help! NPC drops drops after death in only one world"},"comment":{"url":"https://api.github.com/repos/mcmonkeyprojects/Sentinel/issues/comments/435620398","html_url":"https://github.com/mcmonkeyprojects/Sentinel/issues/267#issuecomment-435620398","issue_url":"https://api.github.com/repos/mcmonkeyprojects/Sentinel/issues/267","id":435620398,"node_id":"MDEyOklzc3VlQ29tbWVudDQzNTYyMDM5OA==","user":{"login":"Noob1917","id":39665944,"node_id":"MDQ6VXNlcjM5NjY1OTQ0","avatar_url":"https://avatars1.githubusercontent.com/u/39665944?v=4","gravatar_id":"","url":"https://api.github.com/users/Noob1917","html_url":"https://github.com/Noob1917","followers_url":"https://api.github.com/users/Noob1917/followers","following_url":"https://api.github.com/users/Noob1917/following{/other_user}","gists_url":"https://api.github.com/users/Noob1917/gists{/gist_id}","starred_url":"https://api.github.com/users/Noob1917/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Noob1917/subscriptions","organizations_url":"https://api.github.com/users/Noob1917/orgs","repos_url":"https://api.github.com/users/Noob1917/repos","events_url":"https://api.github.com/users/Noob1917/events{/privacy}","received_events_url":"https://api.github.com/users/Noob1917/received_events","type":"User","site_admin":false},"created_at":"2018-11-03T20:58:31Z","updated_at":"2018-11-03T20:58:31Z","author_association":"NONE","body":"Yes I use Multiverse-core? but what do I do ? if what to do in the config ? I don't know what ?"}} | {
"id": 54825494,
"name": "mcmonkeyprojects/Sentinel",
"url": "https://api.github.com/repos/mcmonkeyprojects/Sentinel"
} | {
"id": 39665944,
"login": "Noob1917",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39665944?",
"url": "https://api.github.com/users/Noob1917"
} | {
"id": 43497670,
"login": "mcmonkeyprojects",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/43497670?",
"url": "https://api.github.com/orgs/mcmonkeyprojects"
} | 2018-11-03T20:58:31 | 8530293686 | {"actor":{"display_login":"Noob1917"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/codea-team/codea/issues/20","repository_url":"https://api.github.com/repos/codea-team/codea","labels_url":"https://api.github.com/repos/codea-team/codea/issues/20/labels{/name}","comments_url":"https://api.github.com/repos/codea-team/codea/issues/20/comments","events_url":"https://api.github.com/repos/codea-team/codea/issues/20/events","html_url":"https://github.com/codea-team/codea/pull/20","id":379400801,"node_id":"MDExOlB1bGxSZXF1ZXN0MjI5ODc2NzMx","number":20,"title":"fix: errors of code","user":{"login":"wootsbot","id":8527763,"node_id":"MDQ6VXNlcjg1Mjc3NjM=","avatar_url":"https://avatars2.githubusercontent.com/u/8527763?v=4","gravatar_id":"","url":"https://api.github.com/users/wootsbot","html_url":"https://github.com/wootsbot","followers_url":"https://api.github.com/users/wootsbot/followers","following_url":"https://api.github.com/users/wootsbot/following{/other_user}","gists_url":"https://api.github.com/users/wootsbot/gists{/gist_id}","starred_url":"https://api.github.com/users/wootsbot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wootsbot/subscriptions","organizations_url":"https://api.github.com/users/wootsbot/orgs","repos_url":"https://api.github.com/users/wootsbot/repos","events_url":"https://api.github.com/users/wootsbot/events{/privacy}","received_events_url":"https://api.github.com/users/wootsbot/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-11-10T07:48:33Z","updated_at":"2018-11-10T07:53:13Z","closed_at":null,"author_association":"MEMBER","pull_request":{"url":"https://api.github.com/repos/codea-team/codea/pulls/20","html_url":"https://github.com/codea-team/codea/pull/20","diff_url":"https://github.com/codea-team/codea/pull/20.diff","patch_url":"https://github.com/codea-team/codea/pull/20.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/codea-team/codea/issues/comments/437566039","html_url":"https://github.com/codea-team/codea/pull/20#issuecomment-437566039","issue_url":"https://api.github.com/repos/codea-team/codea/issues/20","id":437566039,"node_id":"MDEyOklzc3VlQ29tbWVudDQzNzU2NjAzOQ==","user":{"login":"wootsbot","id":8527763,"node_id":"MDQ6VXNlcjg1Mjc3NjM=","avatar_url":"https://avatars2.githubusercontent.com/u/8527763?v=4","gravatar_id":"","url":"https://api.github.com/users/wootsbot","html_url":"https://github.com/wootsbot","followers_url":"https://api.github.com/users/wootsbot/followers","following_url":"https://api.github.com/users/wootsbot/following{/other_user}","gists_url":"https://api.github.com/users/wootsbot/gists{/gist_id}","starred_url":"https://api.github.com/users/wootsbot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wootsbot/subscriptions","organizations_url":"https://api.github.com/users/wootsbot/orgs","repos_url":"https://api.github.com/users/wootsbot/repos","events_url":"https://api.github.com/users/wootsbot/events{/privacy}","received_events_url":"https://api.github.com/users/wootsbot/received_events","type":"User","site_admin":false},"created_at":"2018-11-10T07:53:13Z","updated_at":"2018-11-10T07:53:13Z","author_association":"MEMBER","body":"This pull request **fixes 2 alerts** when merging 7619e2eb44d39e4f9d53e75521da4233466771cf into 4ca6056f67a6399087109174428be91e506c3052 - [view on LGTM.com](https://lgtm.com/projects/g/codea-team/codea/rev/pr-d2aa5cfe6e8640fd9e2fb7c2fa1ea7450be9a823)\n\n**fixed alerts:**\n\n* 1 for Identical operands\n* 1 for Unused variable, import, function or class\n\n---\n\n*Comment posted by [LGTM.com](https://lgtm.com)*"}} | {
"id": 154264873,
"name": "codea-team/codea",
"url": "https://api.github.com/repos/codea-team/codea"
} | {
"id": 8527763,
"login": "wootsbot",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/8527763?",
"url": "https://api.github.com/users/wootsbot"
} | {
"id": 43655337,
"login": "codea-team",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/43655337?",
"url": "https://api.github.com/orgs/codea-team"
} | 2018-11-10T07:53:14 | 8567165389 | {"actor":{"display_login":"wootsbot"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/sweIhm-ws2018-19/skillproject-fr-21/issues/10","repository_url":"https://api.github.com/repos/sweIhm-ws2018-19/skillproject-fr-21","labels_url":"https://api.github.com/repos/sweIhm-ws2018-19/skillproject-fr-21/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/sweIhm-ws2018-19/skillproject-fr-21/issues/10/comments","events_url":"https://api.github.com/repos/sweIhm-ws2018-19/skillproject-fr-21/issues/10/events","html_url":"https://github.com/sweIhm-ws2018-19/skillproject-fr-21/issues/10","id":374772388,"node_id":"MDU6SXNzdWUzNzQ3NzIzODg=","number":10,"title":"Blatt 2 Aufgabe 6","user":{"login":"benny1611","id":32867903,"node_id":"MDQ6VXNlcjMyODY3OTAz","avatar_url":"https://avatars1.githubusercontent.com/u/32867903?v=4","gravatar_id":"","url":"https://api.github.com/users/benny1611","html_url":"https://github.com/benny1611","followers_url":"https://api.github.com/users/benny1611/followers","following_url":"https://api.github.com/users/benny1611/following{/other_user}","gists_url":"https://api.github.com/users/benny1611/gists{/gist_id}","starred_url":"https://api.github.com/users/benny1611/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/benny1611/subscriptions","organizations_url":"https://api.github.com/users/benny1611/orgs","repos_url":"https://api.github.com/users/benny1611/repos","events_url":"https://api.github.com/users/benny1611/events{/privacy}","received_events_url":"https://api.github.com/users/benny1611/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":5,"created_at":"2018-10-28T16:34:17Z","updated_at":"2018-10-29T09:42:29Z","closed_at":null,"author_association":"NONE","body":"In Bearbeitung 😃 "},"comment":{"url":"https://api.github.com/repos/sweIhm-ws2018-19/skillproject-fr-21/issues/comments/433846252","html_url":"https://github.com/sweIhm-ws2018-19/skillproject-fr-21/issues/10#issuecomment-433846252","issue_url":"https://api.github.com/repos/sweIhm-ws2018-19/skillproject-fr-21/issues/10","id":433846252,"node_id":"MDEyOklzc3VlQ29tbWVudDQzMzg0NjI1Mg==","user":{"login":"mas7erpi3ce","id":41209801,"node_id":"MDQ6VXNlcjQxMjA5ODAx","avatar_url":"https://avatars2.githubusercontent.com/u/41209801?v=4","gravatar_id":"","url":"https://api.github.com/users/mas7erpi3ce","html_url":"https://github.com/mas7erpi3ce","followers_url":"https://api.github.com/users/mas7erpi3ce/followers","following_url":"https://api.github.com/users/mas7erpi3ce/following{/other_user}","gists_url":"https://api.github.com/users/mas7erpi3ce/gists{/gist_id}","starred_url":"https://api.github.com/users/mas7erpi3ce/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mas7erpi3ce/subscriptions","organizations_url":"https://api.github.com/users/mas7erpi3ce/orgs","repos_url":"https://api.github.com/users/mas7erpi3ce/repos","events_url":"https://api.github.com/users/mas7erpi3ce/events{/privacy}","received_events_url":"https://api.github.com/users/mas7erpi3ce/received_events","type":"User","site_admin":false},"created_at":"2018-10-29T09:42:29Z","updated_at":"2018-10-29T09:42:29Z","author_association":"CONTRIBUTOR","body":"Ich kann keine Fehler erkennen. Meiner Meinung nach können wir dieses issue schließen "}} | {
"id": 151237198,
"name": "sweIhm-ws2018-19/skillproject-fr-21",
"url": "https://api.github.com/repos/sweIhm-ws2018-19/skillproject-fr-21"
} | {
"id": 41209801,
"login": "mas7erpi3ce",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/41209801?",
"url": "https://api.github.com/users/mas7erpi3ce"
} | {
"id": 43764668,
"login": "sweIhm-ws2018-19",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/43764668?",
"url": "https://api.github.com/orgs/sweIhm-ws2018-19"
} | 2018-10-29T09:42:30 | 8496531727 | {"actor":{"display_login":"mas7erpi3ce"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/sweIhm-ws2018-19/skillproject-fr-23/issues/45","repository_url":"https://api.github.com/repos/sweIhm-ws2018-19/skillproject-fr-23","labels_url":"https://api.github.com/repos/sweIhm-ws2018-19/skillproject-fr-23/issues/45/labels{/name}","comments_url":"https://api.github.com/repos/sweIhm-ws2018-19/skillproject-fr-23/issues/45/comments","events_url":"https://api.github.com/repos/sweIhm-ws2018-19/skillproject-fr-23/issues/45/events","html_url":"https://github.com/sweIhm-ws2018-19/skillproject-fr-23/issues/45","id":388628852,"node_id":"MDU6SXNzdWUzODg2Mjg4NTI=","number":45,"title":"UserStory: Ermitteln der nächsten Notaufnahme","user":{"login":"WasIsDaLos","id":43878791,"node_id":"MDQ6VXNlcjQzODc4Nzkx","avatar_url":"https://avatars0.githubusercontent.com/u/43878791?v=4","gravatar_id":"","url":"https://api.github.com/users/WasIsDaLos","html_url":"https://github.com/WasIsDaLos","followers_url":"https://api.github.com/users/WasIsDaLos/followers","following_url":"https://api.github.com/users/WasIsDaLos/following{/other_user}","gists_url":"https://api.github.com/users/WasIsDaLos/gists{/gist_id}","starred_url":"https://api.github.com/users/WasIsDaLos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/WasIsDaLos/subscriptions","organizations_url":"https://api.github.com/users/WasIsDaLos/orgs","repos_url":"https://api.github.com/users/WasIsDaLos/repos","events_url":"https://api.github.com/users/WasIsDaLos/events{/privacy}","received_events_url":"https://api.github.com/users/WasIsDaLos/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":{"login":"WasIsDaLos","id":43878791,"node_id":"MDQ6VXNlcjQzODc4Nzkx","avatar_url":"https://avatars0.githubusercontent.com/u/43878791?v=4","gravatar_id":"","url":"https://api.github.com/users/WasIsDaLos","html_url":"https://github.com/WasIsDaLos","followers_url":"https://api.github.com/users/WasIsDaLos/followers","following_url":"https://api.github.com/users/WasIsDaLos/following{/other_user}","gists_url":"https://api.github.com/users/WasIsDaLos/gists{/gist_id}","starred_url":"https://api.github.com/users/WasIsDaLos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/WasIsDaLos/subscriptions","organizations_url":"https://api.github.com/users/WasIsDaLos/orgs","repos_url":"https://api.github.com/users/WasIsDaLos/repos","events_url":"https://api.github.com/users/WasIsDaLos/events{/privacy}","received_events_url":"https://api.github.com/users/WasIsDaLos/received_events","type":"User","site_admin":false},"assignees":[{"login":"WasIsDaLos","id":43878791,"node_id":"MDQ6VXNlcjQzODc4Nzkx","avatar_url":"https://avatars0.githubusercontent.com/u/43878791?v=4","gravatar_id":"","url":"https://api.github.com/users/WasIsDaLos","html_url":"https://github.com/WasIsDaLos","followers_url":"https://api.github.com/users/WasIsDaLos/followers","following_url":"https://api.github.com/users/WasIsDaLos/following{/other_user}","gists_url":"https://api.github.com/users/WasIsDaLos/gists{/gist_id}","starred_url":"https://api.github.com/users/WasIsDaLos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/WasIsDaLos/subscriptions","organizations_url":"https://api.github.com/users/WasIsDaLos/orgs","repos_url":"https://api.github.com/users/WasIsDaLos/repos","events_url":"https://api.github.com/users/WasIsDaLos/events{/privacy}","received_events_url":"https://api.github.com/users/WasIsDaLos/received_events","type":"User","site_admin":false}],"milestone":{"url":"https://api.github.com/repos/sweIhm-ws2018-19/skillproject-fr-23/milestones/2","html_url":"https://github.com/sweIhm-ws2018-19/skillproject-fr-23/milestone/2","labels_url":"https://api.github.com/repos/sweIhm-ws2018-19/skillproject-fr-23/milestones/2/labels","id":3877085,"node_id":"MDk6TWlsZXN0b25lMzg3NzA4NQ==","number":2,"title":"Sprint2","description":"2. Sprint für das Projekt Ask Grandma - Bee Safe.\r\nVerbesserung und Erweiterung der Funktionalität.","creator":{"login":"MiriRCNSE","id":43878357,"node_id":"MDQ6VXNlcjQzODc4MzU3","avatar_url":"https://avatars0.githubusercontent.com/u/43878357?v=4","gravatar_id":"","url":"https://api.github.com/users/MiriRCNSE","html_url":"https://github.com/MiriRCNSE","followers_url":"https://api.github.com/users/MiriRCNSE/followers","following_url":"https://api.github.com/users/MiriRCNSE/following{/other_user}","gists_url":"https://api.github.com/users/MiriRCNSE/gists{/gist_id}","starred_url":"https://api.github.com/users/MiriRCNSE/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MiriRCNSE/subscriptions","organizations_url":"https://api.github.com/users/MiriRCNSE/orgs","repos_url":"https://api.github.com/users/MiriRCNSE/repos","events_url":"https://api.github.com/users/MiriRCNSE/events{/privacy}","received_events_url":"https://api.github.com/users/MiriRCNSE/received_events","type":"User","site_admin":false},"open_issues":11,"closed_issues":2,"state":"open","created_at":"2018-12-06T15:24:29Z","updated_at":"2018-12-07T12:11:17Z","due_on":"2018-12-14T08:00:00Z","closed_at":null},"comments":0,"created_at":"2018-12-07T12:08:58Z","updated_at":"2018-12-10T16:06:30Z","closed_at":null,"author_association":"CONTRIBUTOR","body":"\r\n"},"comment":{"url":"https://api.github.com/repos/sweIhm-ws2018-19/skillproject-fr-23/issues/comments/445870083","html_url":"https://github.com/sweIhm-ws2018-19/skillproject-fr-23/issues/45#issuecomment-445870083","issue_url":"https://api.github.com/repos/sweIhm-ws2018-19/skillproject-fr-23/issues/45","id":445870083,"node_id":"MDEyOklzc3VlQ29tbWVudDQ0NTg3MDA4Mw==","user":{"login":"WasIsDaLos","id":43878791,"node_id":"MDQ6VXNlcjQzODc4Nzkx","avatar_url":"https://avatars0.githubusercontent.com/u/43878791?v=4","gravatar_id":"","url":"https://api.github.com/users/WasIsDaLos","html_url":"https://github.com/WasIsDaLos","followers_url":"https://api.github.com/users/WasIsDaLos/followers","following_url":"https://api.github.com/users/WasIsDaLos/following{/other_user}","gists_url":"https://api.github.com/users/WasIsDaLos/gists{/gist_id}","starred_url":"https://api.github.com/users/WasIsDaLos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/WasIsDaLos/subscriptions","organizations_url":"https://api.github.com/users/WasIsDaLos/orgs","repos_url":"https://api.github.com/users/WasIsDaLos/repos","events_url":"https://api.github.com/users/WasIsDaLos/events{/privacy}","received_events_url":"https://api.github.com/users/WasIsDaLos/received_events","type":"User","site_admin":false},"created_at":"2018-12-10T16:06:30Z","updated_at":"2018-12-10T16:06:30Z","author_association":"CONTRIBUTOR","body":"Die Modellklasse, die die nächste Notaufnahme ermittelt ist so weit fertiggestellt. Sie muss nur noch in den Dialog eingebunden werden. Das heißt ich muss irgendwie von dem User erfragen, wo er sich gerade befindet. Das ist rein theoretisch über ein freitext intent möglich. Aber ich brauche dann einen eigenen Intent, der mit irgendetwas wie \"meine Adresse ist [freitext]\" startet, da ich sonst nicht an die Informationen komme. Das ist leider kein natürlicher Dialog mehr."}} | {
"id": 151701963,
"name": "sweIhm-ws2018-19/skillproject-fr-23",
"url": "https://api.github.com/repos/sweIhm-ws2018-19/skillproject-fr-23"
} | {
"id": 43878791,
"login": "WasIsDaLos",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/43878791?",
"url": "https://api.github.com/users/WasIsDaLos"
} | {
"id": 43764668,
"login": "sweIhm-ws2018-19",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/43764668?",
"url": "https://api.github.com/orgs/sweIhm-ws2018-19"
} | 2018-12-10T16:06:30 | 8727914118 | {"actor":{"display_login":"WasIsDaLos"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/TIS2018-FMFI/slabiky/issues/4","repository_url":"https://api.github.com/repos/TIS2018-FMFI/slabiky","labels_url":"https://api.github.com/repos/TIS2018-FMFI/slabiky/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/TIS2018-FMFI/slabiky/issues/4/comments","events_url":"https://api.github.com/repos/TIS2018-FMFI/slabiky/issues/4/events","html_url":"https://github.com/TIS2018-FMFI/slabiky/issues/4","id":372532496,"node_id":"MDU6SXNzdWUzNzI1MzI0OTY=","number":4,"title":"Návrh: configuračné súbory","user":{"login":"s-thora","id":19805197,"node_id":"MDQ6VXNlcjE5ODA1MTk3","avatar_url":"https://avatars2.githubusercontent.com/u/19805197?v=4","gravatar_id":"","url":"https://api.github.com/users/s-thora","html_url":"https://github.com/s-thora","followers_url":"https://api.github.com/users/s-thora/followers","following_url":"https://api.github.com/users/s-thora/following{/other_user}","gists_url":"https://api.github.com/users/s-thora/gists{/gist_id}","starred_url":"https://api.github.com/users/s-thora/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/s-thora/subscriptions","organizations_url":"https://api.github.com/users/s-thora/orgs","repos_url":"https://api.github.com/users/s-thora/repos","events_url":"https://api.github.com/users/s-thora/events{/privacy}","received_events_url":"https://api.github.com/users/s-thora/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":{"login":"s-thora","id":19805197,"node_id":"MDQ6VXNlcjE5ODA1MTk3","avatar_url":"https://avatars2.githubusercontent.com/u/19805197?v=4","gravatar_id":"","url":"https://api.github.com/users/s-thora","html_url":"https://github.com/s-thora","followers_url":"https://api.github.com/users/s-thora/followers","following_url":"https://api.github.com/users/s-thora/following{/other_user}","gists_url":"https://api.github.com/users/s-thora/gists{/gist_id}","starred_url":"https://api.github.com/users/s-thora/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/s-thora/subscriptions","organizations_url":"https://api.github.com/users/s-thora/orgs","repos_url":"https://api.github.com/users/s-thora/repos","events_url":"https://api.github.com/users/s-thora/events{/privacy}","received_events_url":"https://api.github.com/users/s-thora/received_events","type":"User","site_admin":false},"assignees":[{"login":"s-thora","id":19805197,"node_id":"MDQ6VXNlcjE5ODA1MTk3","avatar_url":"https://avatars2.githubusercontent.com/u/19805197?v=4","gravatar_id":"","url":"https://api.github.com/users/s-thora","html_url":"https://github.com/s-thora","followers_url":"https://api.github.com/users/s-thora/followers","following_url":"https://api.github.com/users/s-thora/following{/other_user}","gists_url":"https://api.github.com/users/s-thora/gists{/gist_id}","starred_url":"https://api.github.com/users/s-thora/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/s-thora/subscriptions","organizations_url":"https://api.github.com/users/s-thora/orgs","repos_url":"https://api.github.com/users/s-thora/repos","events_url":"https://api.github.com/users/s-thora/events{/privacy}","received_events_url":"https://api.github.com/users/s-thora/received_events","type":"User","site_admin":false}],"milestone":null,"comments":7,"created_at":"2018-10-22T13:57:40Z","updated_at":"2018-11-09T14:57:58Z","closed_at":null,"author_association":"CONTRIBUTOR","body":"Vytvorit konfiguracne subory pre pouzitije pri spracovani textu podla poskytnutych pravidel naslabikovania textu zadavatelom\r\n"},"comment":{"url":"https://api.github.com/repos/TIS2018-FMFI/slabiky/issues/comments/437384384","html_url":"https://github.com/TIS2018-FMFI/slabiky/issues/4#issuecomment-437384384","issue_url":"https://api.github.com/repos/TIS2018-FMFI/slabiky/issues/4","id":437384384,"node_id":"MDEyOklzc3VlQ29tbWVudDQzNzM4NDM4NA==","user":{"login":"s-thora","id":19805197,"node_id":"MDQ6VXNlcjE5ODA1MTk3","avatar_url":"https://avatars2.githubusercontent.com/u/19805197?v=4","gravatar_id":"","url":"https://api.github.com/users/s-thora","html_url":"https://github.com/s-thora","followers_url":"https://api.github.com/users/s-thora/followers","following_url":"https://api.github.com/users/s-thora/following{/other_user}","gists_url":"https://api.github.com/users/s-thora/gists{/gist_id}","starred_url":"https://api.github.com/users/s-thora/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/s-thora/subscriptions","organizations_url":"https://api.github.com/users/s-thora/orgs","repos_url":"https://api.github.com/users/s-thora/repos","events_url":"https://api.github.com/users/s-thora/events{/privacy}","received_events_url":"https://api.github.com/users/s-thora/received_events","type":"User","site_admin":false},"created_at":"2018-11-09T14:57:58Z","updated_at":"2018-11-09T14:57:58Z","author_association":"CONTRIBUTOR","body":"Pridala som konf. subory pre jazyky: bulgarcina, bielorustina\r\nUpravila som konf. subory (podla novych suborov s pravidlami od zavatela) pre jazyky: rustina, ukrajincina, hornoluzicka srbcina\r\n[Link](https://github.com/TIS2018-FMFI/slabiky/tree/conf-tamara/config)"}} | {
"id": 152104861,
"name": "TIS2018-FMFI/slabiky",
"url": "https://api.github.com/repos/TIS2018-FMFI/slabiky"
} | {
"id": 19805197,
"login": "s-thora",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/19805197?",
"url": "https://api.github.com/users/s-thora"
} | {
"id": 43817683,
"login": "TIS2018-FMFI",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/43817683?",
"url": "https://api.github.com/orgs/TIS2018-FMFI"
} | 2018-11-09T14:57:58 | 8563762993 | {"actor":{"display_login":"s-thora"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/bank2ynab/bank2ynab/issues/242","repository_url":"https://api.github.com/repos/bank2ynab/bank2ynab","labels_url":"https://api.github.com/repos/bank2ynab/bank2ynab/issues/242/labels{/name}","comments_url":"https://api.github.com/repos/bank2ynab/bank2ynab/issues/242/comments","events_url":"https://api.github.com/repos/bank2ynab/bank2ynab/issues/242/events","html_url":"https://github.com/bank2ynab/bank2ynab/issues/242","id":377065977,"node_id":"MDU6SXNzdWUzNzcwNjU5Nzc=","number":242,"title":"Help needed","user":{"login":"filoor","id":3647638,"node_id":"MDQ6VXNlcjM2NDc2Mzg=","avatar_url":"https://avatars1.githubusercontent.com/u/3647638?v=4","gravatar_id":"","url":"https://api.github.com/users/filoor","html_url":"https://github.com/filoor","followers_url":"https://api.github.com/users/filoor/followers","following_url":"https://api.github.com/users/filoor/following{/other_user}","gists_url":"https://api.github.com/users/filoor/gists{/gist_id}","starred_url":"https://api.github.com/users/filoor/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/filoor/subscriptions","organizations_url":"https://api.github.com/users/filoor/orgs","repos_url":"https://api.github.com/users/filoor/repos","events_url":"https://api.github.com/users/filoor/events{/privacy}","received_events_url":"https://api.github.com/users/filoor/received_events","type":"User","site_admin":false},"labels":[{"id":1115029632,"node_id":"MDU6TGFiZWwxMTE1MDI5NjMy","url":"https://api.github.com/repos/bank2ynab/bank2ynab/labels/user%20support","name":"user support","color":"cc0010","default":false}],"state":"open","locked":false,"assignee":{"login":"torbengb","id":810590,"node_id":"MDQ6VXNlcjgxMDU5MA==","avatar_url":"https://avatars3.githubusercontent.com/u/810590?v=4","gravatar_id":"","url":"https://api.github.com/users/torbengb","html_url":"https://github.com/torbengb","followers_url":"https://api.github.com/users/torbengb/followers","following_url":"https://api.github.com/users/torbengb/following{/other_user}","gists_url":"https://api.github.com/users/torbengb/gists{/gist_id}","starred_url":"https://api.github.com/users/torbengb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/torbengb/subscriptions","organizations_url":"https://api.github.com/users/torbengb/orgs","repos_url":"https://api.github.com/users/torbengb/repos","events_url":"https://api.github.com/users/torbengb/events{/privacy}","received_events_url":"https://api.github.com/users/torbengb/received_events","type":"User","site_admin":false},"assignees":[{"login":"torbengb","id":810590,"node_id":"MDQ6VXNlcjgxMDU5MA==","avatar_url":"https://avatars3.githubusercontent.com/u/810590?v=4","gravatar_id":"","url":"https://api.github.com/users/torbengb","html_url":"https://github.com/torbengb","followers_url":"https://api.github.com/users/torbengb/followers","following_url":"https://api.github.com/users/torbengb/following{/other_user}","gists_url":"https://api.github.com/users/torbengb/gists{/gist_id}","starred_url":"https://api.github.com/users/torbengb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/torbengb/subscriptions","organizations_url":"https://api.github.com/users/torbengb/orgs","repos_url":"https://api.github.com/users/torbengb/repos","events_url":"https://api.github.com/users/torbengb/events{/privacy}","received_events_url":"https://api.github.com/users/torbengb/received_events","type":"User","site_admin":false}],"milestone":null,"comments":3,"created_at":"2018-11-03T15:42:22Z","updated_at":"2018-11-06T13:06:38Z","closed_at":null,"author_association":"NONE","body":"hi,\r\n\r\nI have downloaded the zip i have also extract he zip.\r\nI have edit the bank2ynab.conf \r\nChange the Source Path only \r\nwhen i run python bank2ynab.py\r\nIt will say Done! 0 files processed.\r\n\r\nIt wont see my rabobank csv."},"comment":{"url":"https://api.github.com/repos/bank2ynab/bank2ynab/issues/comments/436245902","html_url":"https://github.com/bank2ynab/bank2ynab/issues/242#issuecomment-436245902","issue_url":"https://api.github.com/repos/bank2ynab/bank2ynab/issues/242","id":436245902,"node_id":"MDEyOklzc3VlQ29tbWVudDQzNjI0NTkwMg==","user":{"login":"filoor","id":3647638,"node_id":"MDQ6VXNlcjM2NDc2Mzg=","avatar_url":"https://avatars1.githubusercontent.com/u/3647638?v=4","gravatar_id":"","url":"https://api.github.com/users/filoor","html_url":"https://github.com/filoor","followers_url":"https://api.github.com/users/filoor/followers","following_url":"https://api.github.com/users/filoor/following{/other_user}","gists_url":"https://api.github.com/users/filoor/gists{/gist_id}","starred_url":"https://api.github.com/users/filoor/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/filoor/subscriptions","organizations_url":"https://api.github.com/users/filoor/orgs","repos_url":"https://api.github.com/users/filoor/repos","events_url":"https://api.github.com/users/filoor/events{/privacy}","received_events_url":"https://api.github.com/users/filoor/received_events","type":"User","site_admin":false},"created_at":"2018-11-06T13:06:38Z","updated_at":"2018-11-06T13:06:38Z","author_association":"NONE","body":"Thanks that it "}} | {
"id": 106382649,
"name": "bank2ynab/bank2ynab",
"url": "https://api.github.com/repos/bank2ynab/bank2ynab"
} | {
"id": 3647638,
"login": "filoor",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/3647638?",
"url": "https://api.github.com/users/filoor"
} | {
"id": 44089348,
"login": "bank2ynab",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/44089348?",
"url": "https://api.github.com/orgs/bank2ynab"
} | 2018-11-06T13:06:38 | 8542524849 | {"actor":{"display_login":"filoor"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/CicadaInc/thequiz/issues/4","repository_url":"https://api.github.com/repos/CicadaInc/thequiz","labels_url":"https://api.github.com/repos/CicadaInc/thequiz/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/CicadaInc/thequiz/issues/4/comments","events_url":"https://api.github.com/repos/CicadaInc/thequiz/issues/4/events","html_url":"https://github.com/CicadaInc/thequiz/issues/4","id":394711378,"node_id":"MDU6SXNzdWUzOTQ3MTEzNzg=","number":4,"title":"Создать хотя-бы один рабочий уровень.","user":{"login":"Glander13","id":45231817,"node_id":"MDQ6VXNlcjQ1MjMxODE3","avatar_url":"https://avatars1.githubusercontent.com/u/45231817?v=4","gravatar_id":"","url":"https://api.github.com/users/Glander13","html_url":"https://github.com/Glander13","followers_url":"https://api.github.com/users/Glander13/followers","following_url":"https://api.github.com/users/Glander13/following{/other_user}","gists_url":"https://api.github.com/users/Glander13/gists{/gist_id}","starred_url":"https://api.github.com/users/Glander13/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Glander13/subscriptions","organizations_url":"https://api.github.com/users/Glander13/orgs","repos_url":"https://api.github.com/users/Glander13/repos","events_url":"https://api.github.com/users/Glander13/events{/privacy}","received_events_url":"https://api.github.com/users/Glander13/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":{"login":"kuzdman","id":45230135,"node_id":"MDQ6VXNlcjQ1MjMwMTM1","avatar_url":"https://avatars3.githubusercontent.com/u/45230135?v=4","gravatar_id":"","url":"https://api.github.com/users/kuzdman","html_url":"https://github.com/kuzdman","followers_url":"https://api.github.com/users/kuzdman/followers","following_url":"https://api.github.com/users/kuzdman/following{/other_user}","gists_url":"https://api.github.com/users/kuzdman/gists{/gist_id}","starred_url":"https://api.github.com/users/kuzdman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kuzdman/subscriptions","organizations_url":"https://api.github.com/users/kuzdman/orgs","repos_url":"https://api.github.com/users/kuzdman/repos","events_url":"https://api.github.com/users/kuzdman/events{/privacy}","received_events_url":"https://api.github.com/users/kuzdman/received_events","type":"User","site_admin":false},"assignees":[{"login":"kuzdman","id":45230135,"node_id":"MDQ6VXNlcjQ1MjMwMTM1","avatar_url":"https://avatars3.githubusercontent.com/u/45230135?v=4","gravatar_id":"","url":"https://api.github.com/users/kuzdman","html_url":"https://github.com/kuzdman","followers_url":"https://api.github.com/users/kuzdman/followers","following_url":"https://api.github.com/users/kuzdman/following{/other_user}","gists_url":"https://api.github.com/users/kuzdman/gists{/gist_id}","starred_url":"https://api.github.com/users/kuzdman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kuzdman/subscriptions","organizations_url":"https://api.github.com/users/kuzdman/orgs","repos_url":"https://api.github.com/users/kuzdman/repos","events_url":"https://api.github.com/users/kuzdman/events{/privacy}","received_events_url":"https://api.github.com/users/kuzdman/received_events","type":"User","site_admin":false}],"milestone":null,"comments":0,"created_at":"2018-12-28T20:14:44Z","updated_at":"2018-12-29T19:05:06Z","closed_at":null,"author_association":"CONTRIBUTOR","body":""},"comment":{"url":"https://api.github.com/repos/CicadaInc/thequiz/issues/comments/450513319","html_url":"https://github.com/CicadaInc/thequiz/issues/4#issuecomment-450513319","issue_url":"https://api.github.com/repos/CicadaInc/thequiz/issues/4","id":450513319,"node_id":"MDEyOklzc3VlQ29tbWVudDQ1MDUxMzMxOQ==","user":{"login":"kuzdman","id":45230135,"node_id":"MDQ6VXNlcjQ1MjMwMTM1","avatar_url":"https://avatars3.githubusercontent.com/u/45230135?v=4","gravatar_id":"","url":"https://api.github.com/users/kuzdman","html_url":"https://github.com/kuzdman","followers_url":"https://api.github.com/users/kuzdman/followers","following_url":"https://api.github.com/users/kuzdman/following{/other_user}","gists_url":"https://api.github.com/users/kuzdman/gists{/gist_id}","starred_url":"https://api.github.com/users/kuzdman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kuzdman/subscriptions","organizations_url":"https://api.github.com/users/kuzdman/orgs","repos_url":"https://api.github.com/users/kuzdman/repos","events_url":"https://api.github.com/users/kuzdman/events{/privacy}","received_events_url":"https://api.github.com/users/kuzdman/received_events","type":"User","site_admin":false},"created_at":"2018-12-29T19:05:06Z","updated_at":"2018-12-29T19:05:06Z","author_association":"CONTRIBUTOR","body":"Беру на себя (дизайн + объекты + матрица под объекты + реализация с анимацией) "}} | {
"id": 163288725,
"name": "CicadaInc/thequiz",
"url": "https://api.github.com/repos/CicadaInc/thequiz"
} | {
"id": 45230135,
"login": "kuzdman",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/45230135?",
"url": "https://api.github.com/users/kuzdman"
} | {
"id": 45230205,
"login": "CicadaInc",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/45230205?",
"url": "https://api.github.com/orgs/CicadaInc"
} | 2018-12-29T19:05:06 | 8815474702 | {"actor":{"display_login":"kuzdman"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/jellyfin/jellyfin/issues/57","repository_url":"https://api.github.com/repos/jellyfin/jellyfin","labels_url":"https://api.github.com/repos/jellyfin/jellyfin/issues/57/labels{/name}","comments_url":"https://api.github.com/repos/jellyfin/jellyfin/issues/57/comments","events_url":"https://api.github.com/repos/jellyfin/jellyfin/issues/57/events","html_url":"https://github.com/jellyfin/jellyfin/issues/57","id":389957337,"node_id":"MDU6SXNzdWUzODk5NTczMzc=","number":57,"title":"Problems setting up live tv guide data","user":{"login":"dinki","id":2521542,"node_id":"MDQ6VXNlcjI1MjE1NDI=","avatar_url":"https://avatars3.githubusercontent.com/u/2521542?v=4","gravatar_id":"","url":"https://api.github.com/users/dinki","html_url":"https://github.com/dinki","followers_url":"https://api.github.com/users/dinki/followers","following_url":"https://api.github.com/users/dinki/following{/other_user}","gists_url":"https://api.github.com/users/dinki/gists{/gist_id}","starred_url":"https://api.github.com/users/dinki/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dinki/subscriptions","organizations_url":"https://api.github.com/users/dinki/orgs","repos_url":"https://api.github.com/users/dinki/repos","events_url":"https://api.github.com/users/dinki/events{/privacy}","received_events_url":"https://api.github.com/users/dinki/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":5,"created_at":"2018-12-11T21:17:15Z","updated_at":"2018-12-12T02:54:11Z","closed_at":null,"author_association":"NONE","body":"I'm trying to set up live tv guide data and when I click on xmltv or Schedules Direct I get this error:\r\n\r\n\r\n\r\nCould not find file '/dashboard-ui/components/tvproviders/.template.html'."},"comment":{"url":"https://api.github.com/repos/jellyfin/jellyfin/issues/comments/446442990","html_url":"https://github.com/jellyfin/jellyfin/issues/57#issuecomment-446442990","issue_url":"https://api.github.com/repos/jellyfin/jellyfin/issues/57","id":446442990,"node_id":"MDEyOklzc3VlQ29tbWVudDQ0NjQ0Mjk5MA==","user":{"login":"dinki","id":2521542,"node_id":"MDQ6VXNlcjI1MjE1NDI=","avatar_url":"https://avatars3.githubusercontent.com/u/2521542?v=4","gravatar_id":"","url":"https://api.github.com/users/dinki","html_url":"https://github.com/dinki","followers_url":"https://api.github.com/users/dinki/followers","following_url":"https://api.github.com/users/dinki/following{/other_user}","gists_url":"https://api.github.com/users/dinki/gists{/gist_id}","starred_url":"https://api.github.com/users/dinki/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dinki/subscriptions","organizations_url":"https://api.github.com/users/dinki/orgs","repos_url":"https://api.github.com/users/dinki/repos","events_url":"https://api.github.com/users/dinki/events{/privacy}","received_events_url":"https://api.github.com/users/dinki/received_events","type":"User","site_admin":false},"created_at":"2018-12-12T02:54:11Z","updated_at":"2018-12-12T02:54:11Z","author_association":"NONE","body":"Correct"}} | {
"id": 161012019,
"name": "jellyfin/jellyfin",
"url": "https://api.github.com/repos/jellyfin/jellyfin"
} | {
"id": 2521542,
"login": "dinki",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/2521542?",
"url": "https://api.github.com/users/dinki"
} | {
"id": 45698031,
"login": "jellyfin",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/45698031?",
"url": "https://api.github.com/orgs/jellyfin"
} | 2018-12-12T02:54:11 | 8738388941 | {"actor":{"display_login":"dinki"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/pgf-tikz/pgf/issues/29","repository_url":"https://api.github.com/repos/pgf-tikz/pgf","labels_url":"https://api.github.com/repos/pgf-tikz/pgf/issues/29/labels{/name}","comments_url":"https://api.github.com/repos/pgf-tikz/pgf/issues/29/comments","events_url":"https://api.github.com/repos/pgf-tikz/pgf/issues/29/events","html_url":"https://github.com/pgf-tikz/pgf/issues/29","id":394776943,"node_id":"MDU6SXNzdWUzOTQ3NzY5NDM=","number":29,"title":"Syntax of \\pgfpatharc","user":{"login":"pgf-tikz-bot","id":46239870,"node_id":"MDQ6VXNlcjQ2MjM5ODcw","avatar_url":"https://avatars0.githubusercontent.com/u/46239870?v=4","gravatar_id":"","url":"https://api.github.com/users/pgf-tikz-bot","html_url":"https://github.com/pgf-tikz-bot","followers_url":"https://api.github.com/users/pgf-tikz-bot/followers","following_url":"https://api.github.com/users/pgf-tikz-bot/following{/other_user}","gists_url":"https://api.github.com/users/pgf-tikz-bot/gists{/gist_id}","starred_url":"https://api.github.com/users/pgf-tikz-bot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pgf-tikz-bot/subscriptions","organizations_url":"https://api.github.com/users/pgf-tikz-bot/orgs","repos_url":"https://api.github.com/users/pgf-tikz-bot/repos","events_url":"https://api.github.com/users/pgf-tikz-bot/events{/privacy}","received_events_url":"https://api.github.com/users/pgf-tikz-bot/received_events","type":"User","site_admin":false},"labels":[{"id":1175272594,"node_id":"MDU6TGFiZWwxMTc1MjcyNTk0","url":"https://api.github.com/repos/pgf-tikz/pgf/labels/closed-wont-fix","name":"closed-wont-fix","color":"ededed","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-12-29T09:04:10Z","updated_at":"2018-12-29T20:56:58Z","closed_at":null,"author_association":"NONE","body":"There seems to be a problem in version 1.18 with\r\nthe command \\pgfpatharc. The seperator /\r\nin \\{<radius>/<y-radius>\\} seems to be interpreted\r\nas division, see e.g. pgfmanual.pdf page 298,\r\nlast example.\r\n"},"comment":{"url":"https://api.github.com/repos/pgf-tikz/pgf/issues/comments/450519591","html_url":"https://github.com/pgf-tikz/pgf/issues/29#issuecomment-450519591","issue_url":"https://api.github.com/repos/pgf-tikz/pgf/issues/29","id":450519591,"node_id":"MDEyOklzc3VlQ29tbWVudDQ1MDUxOTU5MQ==","user":{"login":"pgf-tikz-bot","id":46239870,"node_id":"MDQ6VXNlcjQ2MjM5ODcw","avatar_url":"https://avatars0.githubusercontent.com/u/46239870?v=4","gravatar_id":"","url":"https://api.github.com/users/pgf-tikz-bot","html_url":"https://github.com/pgf-tikz-bot","followers_url":"https://api.github.com/users/pgf-tikz-bot/followers","following_url":"https://api.github.com/users/pgf-tikz-bot/following{/other_user}","gists_url":"https://api.github.com/users/pgf-tikz-bot/gists{/gist_id}","starred_url":"https://api.github.com/users/pgf-tikz-bot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pgf-tikz-bot/subscriptions","organizations_url":"https://api.github.com/users/pgf-tikz-bot/orgs","repos_url":"https://api.github.com/users/pgf-tikz-bot/repos","events_url":"https://api.github.com/users/pgf-tikz-bot/events{/privacy}","received_events_url":"https://api.github.com/users/pgf-tikz-bot/received_events","type":"User","site_admin":false},"created_at":"2018-12-29T20:56:58Z","updated_at":"2018-12-29T20:56:58Z","author_association":"NONE","body":"- **status**: open --> closed-wont-fix"}} | {
"id": 163123130,
"name": "pgf-tikz/pgf",
"url": "https://api.github.com/repos/pgf-tikz/pgf"
} | {
"id": 46239870,
"login": "pgf-tikz-bot",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/46239870?",
"url": "https://api.github.com/users/pgf-tikz-bot"
} | {
"id": 46142077,
"login": "pgf-tikz",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/46142077?",
"url": "https://api.github.com/orgs/pgf-tikz"
} | 2018-12-29T20:56:58 | 8815610050 | {"actor":{"display_login":"pgf-tikz-bot"}} |
CommitCommentEvent | true | {"comment":{"url":"https://api.github.com/repos/karkid/Inline-Engine/comments/31807167","html_url":"https://github.com/karkid/Inline-Engine/commit/8363251d45cf6644731a6c4ef39d6e3a1a8fc851#commitcomment-31807167","id":31807167,"node_id":"MDEzOkNvbW1pdENvbW1lbnQzMTgwNzE2Nw==","user":{"login":"karkid","id":6949892,"node_id":"MDQ6VXNlcjY5NDk4OTI=","avatar_url":"https://avatars2.githubusercontent.com/u/6949892?v=4","gravatar_id":"","url":"https://api.github.com/users/karkid","html_url":"https://github.com/karkid","followers_url":"https://api.github.com/users/karkid/followers","following_url":"https://api.github.com/users/karkid/following{/other_user}","gists_url":"https://api.github.com/users/karkid/gists{/gist_id}","starred_url":"https://api.github.com/users/karkid/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/karkid/subscriptions","organizations_url":"https://api.github.com/users/karkid/orgs","repos_url":"https://api.github.com/users/karkid/repos","events_url":"https://api.github.com/users/karkid/events{/privacy}","received_events_url":"https://api.github.com/users/karkid/received_events","type":"User","site_admin":false},"position":null,"line":null,"path":null,"commit_id":"8363251d45cf6644731a6c4ef39d6e3a1a8fc851","created_at":"2018-12-31T08:38:03Z","updated_at":"2018-12-31T08:38:03Z","author_association":"OWNER","body":"Merge branch 'master' of https://github.com/petiaccja/Inline-Engine"}} | {
"id": 119290114,
"name": "karkid/Inline-Engine",
"url": "https://api.github.com/repos/karkid/Inline-Engine"
} | {
"id": 6949892,
"login": "karkid",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6949892?",
"url": "https://api.github.com/users/karkid"
} | {
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
} | 2018-12-31T08:38:03 | 8818072100 | {"actor":{"display_login":"karkid"}} |
CommitCommentEvent | true | {"comment":{"url":"https://api.github.com/repos/Zygo/bees/comments/31199366","html_url":"https://github.com/Zygo/bees/commit/542371684c40cddf656bf1ba0958fe0835158768#commitcomment-31199366","id":31199366,"node_id":"MDEzOkNvbW1pdENvbW1lbnQzMTE5OTM2Ng==","user":{"login":"Zygo","id":1883298,"node_id":"MDQ6VXNlcjE4ODMyOTg=","avatar_url":"https://avatars0.githubusercontent.com/u/1883298?v=4","gravatar_id":"","url":"https://api.github.com/users/Zygo","html_url":"https://github.com/Zygo","followers_url":"https://api.github.com/users/Zygo/followers","following_url":"https://api.github.com/users/Zygo/following{/other_user}","gists_url":"https://api.github.com/users/Zygo/gists{/gist_id}","starred_url":"https://api.github.com/users/Zygo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Zygo/subscriptions","organizations_url":"https://api.github.com/users/Zygo/orgs","repos_url":"https://api.github.com/users/Zygo/repos","events_url":"https://api.github.com/users/Zygo/events{/privacy}","received_events_url":"https://api.github.com/users/Zygo/received_events","type":"User","site_admin":false},"position":null,"line":null,"path":null,"commit_id":"542371684c40cddf656bf1ba0958fe0835158768","created_at":"2018-11-06T21:59:22Z","updated_at":"2018-11-06T21:59:22Z","author_association":"OWNER","body":"Discovered toxic status is remembered in bit 9 of the physical address in the hash table. If you AND every address with `~BeesAddress::c_toxic_mask` in `BeesHashTable::prefetch_loop` when it analyzes the hash table (or read the `beeshash.dat` file and clear bit 9 in every second 64-bit word), you can clear out all the remembered toxic extents.\r\n\r\nNote that this won't make bees rescan them or try to match them again, it will only let those extents be matched with data in future incremental scans. If you want the old toxic extents to be rescanned, it's probably easier to just delete and recreate `beeshash.dat` and `beescrawl.dat`. The hash table will only contain one example of each toxic data block--any duplicates will not have been stored.\r\n\r\nThe prefilled toxic extent list (which contains 255 hashes for blocks that are 4096 bytes of each non-zero byte value) is not stored in the hash table. The only way to find those is a full filesystem scan, as bees doesn't store the locations where it previously found any of them."}} | {
"id": 73992277,
"name": "Zygo/bees",
"url": "https://api.github.com/repos/Zygo/bees"
} | {
"id": 1883298,
"login": "Zygo",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1883298?",
"url": "https://api.github.com/users/Zygo"
} | {
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
} | 2018-11-06T21:59:22 | 8545844545 | {"actor":{"display_login":"Zygo"}} |
CommitCommentEvent | true | {"comment":{"url":"https://api.github.com/repos/KevinWang15/log-viewer/comments/31166101","html_url":"https://github.com/KevinWang15/log-viewer/commit/d9a7af1011394fbbe63366a2c4c67e1f9a4cf6d3#commitcomment-31166101","id":31166101,"node_id":"MDEzOkNvbW1pdENvbW1lbnQzMTE2NjEwMQ==","user":{"login":"qzyse2017","id":31987568,"node_id":"MDQ6VXNlcjMxOTg3NTY4","avatar_url":"https://avatars0.githubusercontent.com/u/31987568?v=4","gravatar_id":"","url":"https://api.github.com/users/qzyse2017","html_url":"https://github.com/qzyse2017","followers_url":"https://api.github.com/users/qzyse2017/followers","following_url":"https://api.github.com/users/qzyse2017/following{/other_user}","gists_url":"https://api.github.com/users/qzyse2017/gists{/gist_id}","starred_url":"https://api.github.com/users/qzyse2017/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/qzyse2017/subscriptions","organizations_url":"https://api.github.com/users/qzyse2017/orgs","repos_url":"https://api.github.com/users/qzyse2017/repos","events_url":"https://api.github.com/users/qzyse2017/events{/privacy}","received_events_url":"https://api.github.com/users/qzyse2017/received_events","type":"User","site_admin":false},"position":null,"line":null,"path":null,"commit_id":"d9a7af1011394fbbe63366a2c4c67e1f9a4cf6d3","created_at":"2018-11-04T15:29:14Z","updated_at":"2018-11-04T15:29:14Z","author_association":"NONE","body":"大佬写码真是快,在下无比佩服 Orz。。。"}} | {
"id": 156094825,
"name": "KevinWang15/log-viewer",
"url": "https://api.github.com/repos/KevinWang15/log-viewer"
} | {
"id": 31987568,
"login": "qzyse2017",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/31987568?",
"url": "https://api.github.com/users/qzyse2017"
} | {
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
} | 2018-11-04T15:29:14 | 8531765714 | {"actor":{"display_login":"qzyse2017"}} |
CommitCommentEvent | true | {"comment":{"url":"https://api.github.com/repos/natale-p/ns-3-dev-git/comments/27558501","html_url":"https://github.com/natale-p/ns-3-dev-git/commit/73f02320cf4e7c235168a5c09dfb1cdc458c353e#commitcomment-27558501","id":27558501,"user":{"login":"tomhenderson","id":402771,"avatar_url":"https://avatars2.githubusercontent.com/u/402771?v=4","gravatar_id":"","url":"https://api.github.com/users/tomhenderson","html_url":"https://github.com/tomhenderson","followers_url":"https://api.github.com/users/tomhenderson/followers","following_url":"https://api.github.com/users/tomhenderson/following{/other_user}","gists_url":"https://api.github.com/users/tomhenderson/gists{/gist_id}","starred_url":"https://api.github.com/users/tomhenderson/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tomhenderson/subscriptions","organizations_url":"https://api.github.com/users/tomhenderson/orgs","repos_url":"https://api.github.com/users/tomhenderson/repos","events_url":"https://api.github.com/users/tomhenderson/events{/privacy}","received_events_url":"https://api.github.com/users/tomhenderson/received_events","type":"User","site_admin":false},"position":6,"line":86,"path":"src/internet/model/tcp-option-sack.cc","commit_id":"73f02320cf4e7c235168a5c09dfb1cdc458c353e","created_at":"2018-02-14T15:35:07Z","updated_at":"2018-02-14T15:35:07Z","author_association":"NONE","body":"can this possibly overflow?"}} | {
"id": 16768552,
"name": "natale-p/ns-3-dev-git",
"url": "https://api.github.com/repos/natale-p/ns-3-dev-git"
} | {
"id": 402771,
"login": "tomhenderson",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/402771?",
"url": "https://api.github.com/users/tomhenderson"
} | {
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
} | 2018-02-14T15:35:07 | 7244594597 | {"actor":{"display_login":"tomhenderson"}} |
CommitCommentEvent | true | {"comment":{"url":"https://api.github.com/repos/treacker/2018_hse_cpp_review/comments/27588464","html_url":"https://github.com/treacker/2018_hse_cpp_review/commit/d5071a3dab5dbf9d48e10feb7af811c1540426a3#commitcomment-27588464","id":27588464,"user":{"login":"StrausMG","id":8861742,"avatar_url":"https://avatars2.githubusercontent.com/u/8861742?v=4","gravatar_id":"","url":"https://api.github.com/users/StrausMG","html_url":"https://github.com/StrausMG","followers_url":"https://api.github.com/users/StrausMG/followers","following_url":"https://api.github.com/users/StrausMG/following{/other_user}","gists_url":"https://api.github.com/users/StrausMG/gists{/gist_id}","starred_url":"https://api.github.com/users/StrausMG/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/StrausMG/subscriptions","organizations_url":"https://api.github.com/users/StrausMG/orgs","repos_url":"https://api.github.com/users/StrausMG/repos","events_url":"https://api.github.com/users/StrausMG/events{/privacy}","received_events_url":"https://api.github.com/users/StrausMG/received_events","type":"User","site_admin":false},"position":30,"line":30,"path":"shabalin.cpp","commit_id":"d5071a3dab5dbf9d48e10feb7af811c1540426a3","created_at":"2018-02-15T19:31:34Z","updated_at":"2018-02-15T19:31:34Z","author_association":"NONE","body":"Давай определение всех неоднострочных методов вынесем за пределы класса.\r\n\r\nЦитирую свой же ответ на вопрос, почему так стоит делать.\r\n\r\n1. При таком оформлении на 7000% удобнее смотреть на интерфейс класса: видно только сигнатуры методов без кучи кода.\r\n2. Когда ты реализуешь метод прямо в классе, ты намекаешь компилятору, что хочешь заинлайнить метод (подробнее гугли по словам “inline function C++”). Но на самом деле ты этого очень редко хочешь. Вот однострочные методы в духе size или data вполне хорошие кандидаты на то, чтобы реализовать их прямо в классе. Более сложное нужно реализовывать вовне."}} | {
"id": 120306311,
"name": "treacker/2018_hse_cpp_review",
"url": "https://api.github.com/repos/treacker/2018_hse_cpp_review"
} | {
"id": 8861742,
"login": "StrausMG",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/8861742?",
"url": "https://api.github.com/users/StrausMG"
} | {
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
} | 2018-02-15T19:31:34 | 7251480128 | {"actor":{"display_login":"StrausMG"}} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.