repo
stringlengths
7
67
org
stringlengths
2
32
issue_id
int64
780k
941M
issue_number
int64
1
134k
pull_request
dict
events
list
user_count
int64
1
77
event_count
int64
1
192
text_size
int64
0
329k
bot_issue
bool
1 class
modified_by_bot
bool
2 classes
text_size_no_bots
int64
0
279k
modified_usernames
bool
2 classes
consulo/consulo
consulo
113,559,576
135
null
[ { "action": "opened", "author": "letroll", "comment_id": null, "datetime": 1445944306000, "masked_author": "username_0", "text": "", "title": "Can you add alphabetic sort of methods in structure panel?", "type": "issue" }, { "action": "created", "author": "VISTALL", "comment_id": 151458363, "datetime": 1445944349000, "masked_author": "username_1", "text": "C#?", "title": null, "type": "comment" }, { "action": "created", "author": "letroll", "comment_id": 151459683, "datetime": 1445944843000, "masked_author": "username_0", "text": "yes", "title": null, "type": "comment" }, { "action": "closed", "author": "VISTALL", "comment_id": null, "datetime": 1445945148000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "VISTALL", "comment_id": 151461388, "datetime": 1445945166000, "masked_author": "username_1", "text": "Fixed. Please use next time - C# repository https://github.com/consulo/consulo-csharp", "title": null, "type": "comment" }, { "action": "created", "author": "letroll", "comment_id": 151490890, "datetime": 1445951712000, "masked_author": "username_0", "text": "sorry about that, and one more time thank you very muck for all your work.", "title": null, "type": "comment" } ]
2
6
165
false
false
165
false
sympy/sympy
sympy
224,986,813
12,597
null
[ { "action": "opened", "author": "matthewwardrop", "comment_id": null, "datetime": 1493358938000, "masked_author": "username_0", "text": "Hi all,\r\n\r\nNot sure if this is intended behaviour, but running the following differs in output between Sympy 1.0 and Sympy master:\r\n\r\n```\r\nimport sympy\r\n\r\ne = sympy.S(\"x+y\")\r\ne.subs({'y': '2*x-1'}).free_symbols\r\n```\r\n\r\nOn 1.0, it outputs: `{x}`.\r\n\r\nOn master, it outputs `{2*x-1, x}`, treating the string as an atomic entity (rather than interpreting it).\r\n\r\nI like the former behaviour in general, and am wondering if this is a regression.", "title": "`subs` method of expressions no longer interprets strings", "type": "issue" }, { "action": "created", "author": "bjodah", "comment_id": 297934168, "datetime": 1493366376000, "masked_author": "username_1", "text": "Don't know if that is intended or not, let's see when that happened: using find_regr.py:\r\n```\r\n#!/usr/bin/env python3\r\nfrom sympy import S, Symbol; assert S(\"x+y\").subs({'y': '2*x-1'}).free_symbols == {Symbol(\"x\")}\r\n```\r\nand running:\r\n```\r\n$ git bisect start master sympy-1.0\r\n$ git bisect run find_regr.py\r\n...\r\n72e29984132bfe920ac5d1d2ab260ea44282e136 is the first bad commit\r\ncommit 72e29984132bfe920ac5d1d2ab260ea44282e136\r\nAuthor: chaitanya sai alaparthi <achaitanyasai@gmail.com>\r\nDate: Wed Feb 3 17:09:58 2016 +0530\r\n\r\n Simplification of simple finite sets\r\n\r\n:040000 040000 e0d30cfc04784409849eeaeab8445c04b2530559 362f6472b681c787b28380353df8238647d5aee0 M\tsympy\r\nbisect run success\r\n```\r\n72e2998 is part of #10638 so pinging @smichr to see what he thinks.", "title": null, "type": "comment" }, { "action": "created", "author": "matthewwardrop", "comment_id": 298199645, "datetime": 1493506601000, "masked_author": "username_0", "text": "Thanks @username_1", "title": null, "type": "comment" }, { "action": "created", "author": "asmeurer", "comment_id": 298204631, "datetime": 1493515067000, "masked_author": "username_2", "text": "Automatic string sympfication should not be relied on, and it could be removed from any function at any point. With that said, it definitely shouldn't be creating a Symbol from a string.", "title": null, "type": "comment" }, { "action": "created", "author": "matthewwardrop", "comment_id": 298256533, "datetime": 1493585756000, "masked_author": "username_0", "text": "@username_2 That's a pity. String substitution is extremely convenient, but understood. Thanks for looking into it!", "title": null, "type": "comment" }, { "action": "created", "author": "asmeurer", "comment_id": 298275612, "datetime": 1493605545000, "masked_author": "username_2", "text": "You can always convert a string into an expression with `sympify` (`S`) first.", "title": null, "type": "comment" }, { "action": "created", "author": "matthewwardrop", "comment_id": 298277594, "datetime": 1493606983000, "masked_author": "username_0", "text": "I know... but particularly for interactive work on the command line, I find it handy to remove as much boilerplate and nested braces/brackets/parentheses as possible. In this instance, I suppose you could reduce it to three extra characters `S(...)`, so it's not terrible. For my edification, though, can you describe some circumstances where you would not want automatic Sympification? Is it a performance concern? Or in the interests of reducing boilerplate code sympy package-side?", "title": null, "type": "comment" }, { "action": "created", "author": "asmeurer", "comment_id": 298309208, "datetime": 1493630101000, "masked_author": "username_2", "text": "For interactive work, you should use things like `init_session()` or `var` to define symbols, and only work with expressions. It's much less typing if you never type a quote character. \r\n\r\n[This page](https://github.com/sympy/sympy/wiki/Idioms-and-Antipatterns#strings-as-input) lists some reasons why using strings is an antipattern.", "title": null, "type": "comment" }, { "action": "created", "author": "matthewwardrop", "comment_id": 298404108, "datetime": 1493665425000, "masked_author": "username_0", "text": "Okay. Thanks for explaining!", "title": null, "type": "comment" }, { "action": "created", "author": "oscarbenjamin", "comment_id": 471125973, "datetime": 1552091978000, "masked_author": "username_3", "text": "On master now I get:\r\n```julia\r\nIn [5]: import sympy \r\n ...: \r\n ...: e = sympy.S(\"x+y\") \r\n ...: e.subs({'y': '2*x-1'}).free_symbols \r\nOut[5]: {x}\r\n```\r\nSo it seems like this is now fixed...", "title": null, "type": "comment" }, { "action": "closed", "author": "asmeurer", "comment_id": null, "datetime": 1552115485000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "asmeurer", "comment_id": 471153372, "datetime": 1552115485000, "masked_author": "username_2", "text": "I think this was fixed by https://github.com/sympy/sympy/pull/15371", "title": null, "type": "comment" }, { "action": "created", "author": "matthewwardrop", "comment_id": 471198568, "datetime": 1552149401000, "masked_author": "username_0", "text": "Fantastic. Thanks for following this up. Will close the issue now.", "title": null, "type": "comment" } ]
4
13
2,890
false
false
2,890
true
vibora-io/vibora
vibora-io
335,125,571
65
null
[ { "action": "opened", "author": "romantomjak", "comment_id": null, "datetime": 1529782761000, "masked_author": "username_0", "text": "**Describe the bug**\r\nDocs never mention that Vibora searches for a folder named `templates`, additionally template rendering varies depending on where from you execute the file.\r\n\r\n**To Reproduce**\r\nGiven the following folder structure:\r\n```\r\n.\r\n├── project1\r\n│   ├── app.py\r\n│   └── templates\r\n│   └── index.html\r\n```\r\nWhen Vibora is run from root folder like so `python3 project1/app.py` it works as expected, but when I run it from `project1/` it fails with `TemplateNotFound: index.html`\r\n\r\n**Expected behaviour**\r\nI would expect docs mention these peculiarities and tell me how to use Vibora correctly.\r\n\r\n**Additional context**\r\nA tiny example of how to use the templates in the quickstart section would be amazing:\r\n```python\r\nimport os\r\nfrom vibora import Vibora\r\n\r\nBASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))\r\n\r\napp = Vibora(\r\n template_dirs=[BASE_DIR]\r\n)\r\n\r\n\r\n@app.route('/')\r\nasync def home():\r\n return await app.render('index.html')\r\n\r\nif __name__ == '__main__':\r\n app.run()\r\n```", "title": "Document how to use templates", "type": "issue" }, { "action": "created", "author": "dukkee", "comment_id": 399710678, "datetime": 1529787990000, "masked_author": "username_1", "text": "@username_0 you can also use a relative path to `templates` directory", "title": null, "type": "comment" }, { "action": "created", "author": "Jarmahent", "comment_id": 399719306, "datetime": 1529799597000, "masked_author": "username_2", "text": "You can pull the repo yourself and make a pull request for the added documentation. Im sure the author would really appreciated if people helped him, even if its just docs.", "title": null, "type": "comment" }, { "action": "created", "author": "frnkvieira", "comment_id": 399733261, "datetime": 1529821904000, "masked_author": "username_3", "text": "VTE is quickly evolving and that's why I didn't add much about it. I'll freeze the API soon and test it extensively so until then I recommend to avoid it unless you wanna help the dev process.", "title": null, "type": "comment" } ]
4
4
1,466
false
false
1,466
true
NG-ZORRO/ng-zorro-antd
NG-ZORRO
255,860,772
245
null
[ { "action": "opened", "author": "RogerHuangZB", "comment_id": null, "datetime": 1504773980000, "masked_author": "username_0", "text": "<!--\r\n1. 官方 issue 用于报告 bug 和需求建议,关于Angular的使用和开发问题在这里可能不会得到解答,感谢您的理解。\r\n2. 建议使用英文进行提问,这样你的问题可以被更多的人阅读和回答。如果表达上确实较复杂,英文标题加中文描述也是可选的方案。\r\n3. 报告 BUG 时请务必按照下列格式书写,并尽可能提供源代码、复现步骤、复现演示、GIF 演示等。我们和你一样都希望尽快解决问题,请不要浪费时间在互相追问上。\r\n4. 注意你的 issue 格式,不适合阅读的格式会被忽视或直接关闭。\r\n5. 如果需要粘贴源码,尽量避免截图并注意代码格式。关于如何在 Markdown 中书写代码可以参考:https://segmentfault.com/markdown\r\n6. 抱怨不能解决问题,通畅有效和心情舒畅的交流才能解决。\r\n-->\r\n\r\n## I'm submitting a...\r\n<!-- Check one of the following options with \"x\" -->\r\n<pre><code>\r\n[ ] Bug report <!-- Please search GitHub for a similar issue or PR before submitting -->\r\n[ ] Feature request\r\n[x] Documentation issue or request\r\n[ ] Regression (a behavior that used to work and stopped working in a new release)\r\n[ ] Support request => Please do not submit support request here\r\n</code></pre>\r\n\r\n## Current behavior\r\n<pre><code>\r\nTemplate parse errors:\r\nCan't bind to 'ngModel' since it isn't a known property of 'nz-switch'.\r\n1. If 'nz-switch' is an Angular component and it has 'ngModel' input, then verify that it is part of this module.\r\n2. If 'nz-switch' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.\r\n3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. (\"\r\n<div class=\"menu-bar\">\r\n <nz-switch [ERROR ->][(ngModel)]=\"theme\">\r\n <span checked>Dark</span>\r\n <span unchecked>Light</span>\r\n\"): ng:///PagesModule/BaMenuBarComponent.html@15:13\r\n</code></pre>\r\n\r\npages.module.ts\r\n<pre><code>\r\n@NgModule({\r\n imports: [\r\n CommonModule,\r\n routing,\r\n NgZorroAntdModule\r\n ],...\r\n</code></pre>\r\n\r\nba-menu-bar.component.html\r\njust copy from api document : [https://ng.ant.design/#/components/menu](url)\r\n` <nz-switch [(ngModel)]=\"theme\">`\r\n` <span checked>Dark</span>`\r\n` <span unchecked>Light</span>`\r\n` </nz-switch>`\r\n` <br>`\r\n` <br>`\r\n\r\n<pre><code>\r\nexport class BaMenuBarComponent implements OnInit {\r\n theme = true;\r\n</code></pre>\r\n## Expected behavior\r\n<!-- Describe what the desired behavior would be. -->\r\n\r\n\r\n## Minimal reproduction of the problem with instructions\r\n<!--\r\nFor bug reports please provide the *STEPS TO REPRODUCE* \r\n-->\r\n\r\n## What is the motivation / use case for changing the behavior?\r\n<!-- Describe the motivation or the concrete use case. -->\r\n\r\n\r\n## Environment\r\n\r\n<pre><code>\r\nAngular version: 4.2.4\r\n<!-- Check whether this is still an issue in the most recent Angular version -->\r\nng-zorro-antd version: 0.5.0-rc.4\r\n<!-- Check whether this is still an issue in the most recent ng-zorro-antd version -->\r\nBrowser:\r\n- [x] Chrome (desktop) version 59.0.3071.86\r\n- [ ] Firefox version XX\r\n- [ ] Safari (desktop) version XX\r\n- [ ] IE version XX\r\n \r\nFor Tooling issues:\r\n- Node version: v8.1.0 <!-- run `node --version` -->\r\n- Platform: Windows 10 <!-- Mac, Linux, Windows -->\r\n\r\nOthers:\r\n<!-- Anything else relevant? Operating system version, IDE, package manager, HTTP server, ... -->\r\n</code></pre>", "title": "Can't bind to 'ngModel' since it isn't a known property of 'nz-switch'", "type": "issue" }, { "action": "created", "author": "SangKa", "comment_id": 327735029, "datetime": 1504774256000, "masked_author": "username_1", "text": "need to import `FormsModule`", "title": null, "type": "comment" }, { "action": "closed", "author": "vthinkxie", "comment_id": null, "datetime": 1504776277000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
4
4
3,153
false
true
2,985
false
Bionus/imgbrd-grabber
null
232,424,713
939
null
[ { "action": "opened", "author": "Kurdaitcha", "comment_id": null, "datetime": 1496192632000, "masked_author": "username_0", "text": "The latest version of Grabber doesn't load images from http://behoimi.org/ for some reason, even when I enter a tag. Anyone else have this issue?", "title": "behoimi.org results not showing", "type": "issue" }, { "action": "created", "author": "Bionus", "comment_id": 305053645, "datetime": 1496193218000, "masked_author": "username_1", "text": "I for one don't have this issue.\r\nDid you change the source settings? What does the log say?\r\n\r\n![image](https://cloud.githubusercontent.com/assets/882719/26611511/1847a2ac-45af-11e7-9303-643b7be61d30.png)", "title": null, "type": "comment" }, { "action": "created", "author": "MasterPetrik", "comment_id": 305059735, "datetime": 1496195642000, "masked_author": "username_2", "text": "works well for me too", "title": null, "type": "comment" }, { "action": "created", "author": "Kurdaitcha", "comment_id": 305123961, "datetime": 1496219841000, "masked_author": "username_0", "text": "[01:55:08.540] End of initialization\r\n[02:02:16.412] Saving sources...\r\n[02:02:16.412] Logging into http://behoimi.org/ (http://behoimi.org/)...\r\n[02:02:16.413] Updating checkboxes.\r\n[02:02:16.415] Loading results...\r\n[02:02:16.416] Loading page http://http//behoimi.org//posts.xml?limit=100&page=1&tags=\r\n[02:02:18.670] Loading error: Host http not found\r\n[02:02:18.670] Loading using Xml failed. Retry using Json.\r\n[02:02:20.931] Loading error: Host http not found\r\n[02:02:20.931] Loading using Json failed. Retry using Html.\r\n[02:02:21.755] Loading results...\r\n[02:02:21.755] No valid source of the site returned result.\r\n[02:02:21.756] Loading page http://http//behoimi.org//posts.xml?limit=100&page=1&tags=\r\n[02:02:23.186] Loading error: Host http not found\r\n[02:02:23.186] Loading using Xml failed. Retry using Json.\r\n[02:02:25.448] Loading error: Host http not found\r\n[02:02:25.448] Loading using Json failed. Retry using Html.\r\n[02:02:27.709] Loading error: Host http not found\r\n[02:02:27.709] No valid source of the site returned result.\r\n[09:36:06.460] Loading results...\r\n[09:36:06.462] Loading page http://http//behoimi.org//posts.xml?limit=100&page=1&tags=\r\n[09:36:09.030] Loading error: Host http not found\r\n[09:36:09.030] Loading using Xml failed. Retry using Json.\r\n[09:36:11.282] Loading error: Host http not found\r\n[09:36:11.282] Loading using Json failed. Retry using Html.\r\n[09:36:13.532] Loading error: Host http not found\r\n[09:36:13.532] No valid source of the site returned result.\r\n\r\nThat's all.", "title": null, "type": "comment" }, { "action": "created", "author": "Bionus", "comment_id": 305146656, "datetime": 1496225367000, "masked_author": "username_1", "text": "It seems your source was added as `http//behoimi.org/`.\r\nJust delete this source and simply put `behoimi.org` in the URL when you re-add it, it should fix this problem.", "title": null, "type": "comment" }, { "action": "created", "author": "MasterPetrik", "comment_id": 305315613, "datetime": 1496264352000, "masked_author": "username_2", "text": "Seriously, @username_1 , this is not first issue because of bad parsing while adding new sourse links. Considering that there is no info about right way to write links in you wiki or in Grabber, I m not surprised that this will happen again for new users. You better fix your parser before you will close this issue, or I will create separate issue about that. Anyway, I don't think that it will be very hard to fix it.", "title": null, "type": "comment" }, { "action": "closed", "author": "Bionus", "comment_id": null, "datetime": 1497707026000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
3
7
2,473
false
false
2,473
true
aptible/dashboard.aptible.com
aptible
88,579,754
341
{ "number": 341, "repo": "dashboard.aptible.com", "user_login": "aptible" }
[ { "action": "opened", "author": "sandersonet", "comment_id": null, "datetime": 1434416370000, "masked_author": "username_0", "text": "This PR hardens the sign up flow with the following changes:\r\n\r\n* Stack handle is validated and prevents skipping or moving to payment information when invalid. Previously, you could leave stack handle blank, or use invalid characters leading to issues like #339\r\n* Prevent multiple stripe subscriptions (and charges) from running when a validation error is generated during signup--fixes #339 \r\n* Minor copy enhancements", "title": "Minor fixes", "type": "issue" }, { "action": "created", "author": "sandersonet", "comment_id": 112463888, "datetime": 1434467247000, "masked_author": "username_0", "text": "Accidentally pushed to origin. Deleting the origin branch caused the second failure, merging...", "title": null, "type": "comment" } ]
1
2
518
false
false
518
false
Union-Chat/Union-Server
Union-Chat
316,991,913
7
null
[ { "action": "opened", "author": "perryprog", "comment_id": null, "datetime": 1524519218000, "masked_author": "username_0", "text": "```\r\ngabixdev - Today at 1:36 AM\r\n- bot accounts\r\n```", "title": "Bot accounts", "type": "issue" }, { "action": "created", "author": "ItsJordan", "comment_id": 408261750, "datetime": 1532646387000, "masked_author": "username_1", "text": "@username_2 bot tags when c:", "title": null, "type": "comment" }, { "action": "created", "author": "Devoxin", "comment_id": 408262566, "datetime": 1532646653000, "masked_author": "username_2", "text": "When I get around to making a proper Bot/Application creation page and can then distinguish between bots and users 👀", "title": null, "type": "comment" }, { "action": "created", "author": "Bowser65", "comment_id": 433350133, "datetime": 1540546745000, "masked_author": "username_3", "text": "Started in #14, but routes are not implemented and no UI is able to handle it yet", "title": null, "type": "comment" } ]
4
4
275
false
false
275
true
andreas/ocaml-graphql-server
null
286,968,054
74
null
[ { "action": "opened", "author": "sgrove", "comment_id": null, "datetime": 1515472570000, "masked_author": "username_0", "text": "It'd be quite useful for us and some of the tooling we're building to be able to attach metadata to a field at definition time. This might be things like some arbitrary `cost` value, so that the tooling can sum up the cost of an entire query and alert the user in graphiql if it's exceeded their per-query quota (similar to the system described by @tgvashworth in https://youtu.be/Baw05hrOUNM?t=8m29s). Their might be lots of things we want to stuff in there to enable various kinds of tooling.", "title": "Allow additional metada fields when describing schema", "type": "issue" } ]
1
1
494
false
false
494
false
dave-theunsub/clamtk
null
214,493,129
79
null
[ { "action": "opened", "author": "theel0ja", "comment_id": null, "datetime": 1489604447000, "masked_author": "username_0", "text": "![image](https://cloud.githubusercontent.com/assets/5832930/23965922/3edfc602-09c2-11e7-94a6-78410d0c9de0.png)\r\nYou can't know about that updating \"window\" if it's actually even downloading the update or percentage of it etc...", "title": "Add updating window", "type": "issue" }, { "action": "closed", "author": "theel0ja", "comment_id": null, "datetime": 1489610090000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
2
227
false
false
227
false
agenda/agenda
agenda
281,449,623
559
null
[ { "action": "opened", "author": "honzababarik", "comment_id": null, "datetime": 1513096284000, "masked_author": "username_0", "text": "Hi,\r\n\r\nI have an issue that might be very specific to my usecase and might not offer a workaround, but I thought I was gonna ask.\r\nI am trying to have the Mongo DB run on Azure CosmosDB that supposed to be supporting MongoDB v5, but it does not seem like it does completely. When I try to run Agenda against a CosmosDB, the jobs querying fails:\r\n\r\n`Multiple order-by items are not supported. Please specify a single order-by item.`\r\n\r\nTrace:\r\n`\r\nMongoError: Message: {\"Errors\":[\"Encountered exception while executing function. Exception = Error: {\\\"Errors\\\":[\\\"Multiple order-by items are not supported. Please spe\r\ncify a single order-by item.\\\"]}\\r\\nStack trace: Error: {\\\"Errors\\\":[\\\"Multiple order-by items are not supported. Please specify a single order-by item.\\\"]}\\n at queryCallback (__.sys.comm\r\nonUpdate_BsonSchema.js:3580:26)\\n at Anonymous function (__.sys.commonUpdate_BsonSchema.js:617:29)\"]}\r\n16:28:29 1|fm2-jobs | ActivityId: aba98514-0000-0000-0000-000000000000, Request URI: /apps/cf7ce45a-ad86-401b-88b9-51807b88ba7a/services/254133b4-4c28-4b34-a771-6734147da565/partitions/22c9e\r\ndd0-bbe7-4d8c-868e-4f40c07a04fb/replicas/131575688660948905p/, RequestStats: , SDK: Microsoft.Azure.Documents.Common/1.19.121.4\r\n16:28:29 1|fm2-jobs | at Function.MongoError.create (/opt/app/node_modules/mongodb-core/lib/error.js:31:11)\r\n16:28:29 1|fm2-jobs | at /opt/app/node_modules/mongodb-core/lib/connection/pool.js:497:72\r\n16:28:29 1|fm2-jobs | at authenticateStragglers (/opt/app/node_modules/mongodb-core/lib/connection/pool.js:443:16)\r\n16:28:29 1|fm2-jobs | at Connection.messageHandler (/opt/app/node_modules/mongodb-core/lib/connection/pool.js:477:5)\r\n16:28:29 1|fm2-jobs | at TLSSocket.<anonymous> (/opt/app/node_modules/mongodb-core/lib/connection/connection.js:331:22)`\r\n\r\nWhen I have my own MongoDB instance, it all works just fine. I thought I was going to try to ask if someone knows if I can configure agenda to work and workaround using CosmosDB or I have to be running (and manage :-/) my own Mongo instance.\r\n\r\nThank you and big thanks for the amazing Agenda + Agendash pack!", "title": "Issue: Multiple order-by items not supported", "type": "issue" }, { "action": "created", "author": "oscar-b", "comment_id": 357666540, "datetime": 1516018510000, "masked_author": "username_1", "text": "@username_0 Just ran into this issue as well, did you find any way around it?", "title": null, "type": "comment" }, { "action": "created", "author": "honzababarik", "comment_id": 357669793, "datetime": 1516019393000, "masked_author": "username_0", "text": "@username_1 Nope, don't have enough knowledge about Mongo internals to analyze the issue. From my basic understanding is the issue clearly on Azure not allowing multiple OrderBy in queries, so two workarounds would be to a) figure whether Agenda really needs two OrderBys for processing, and if not, make it configurable, b) start poking Microsoft into releasing a fix.\r\n\r\nI decided to go for a self hosted Mongo solution on Azure since neither of those we are willing to invest into, though I am not happy about it. But the moment this works I am switching to Cosmos.", "title": null, "type": "comment" }, { "action": "created", "author": "oscar-b", "comment_id": 357679437, "datetime": 1516022061000, "masked_author": "username_1", "text": "This looks like it might be what we'd need, but it's only in planning stage: https://feedback.azure.com/forums/263030-documentdb/suggestions/16883608-allow-multi-order-by?category_id=321994", "title": null, "type": "comment" }, { "action": "created", "author": "oscar-b", "comment_id": 357682391, "datetime": 1516022789000, "masked_author": "username_1", "text": "Some more debug from Agenda:\r\n\r\n``` agenda:define job [run stuff] defined with following options: \r\n agenda:define { fn: [Function],\r\n agenda:define concurrency: 5,\r\n agenda:define lockLimit: 0,\r\n agenda:define priority: 0,\r\n agenda:define lockLifetime: 600000,\r\n agenda:define running: 0,\r\n agenda:define locked: 0 } +0ms\r\n agenda:database successful connection to MongoDB using collection: [agendaJobs] +0ms\r\n agenda:db_init init database collection using name [agendaJobs] +0ms\r\n agenda:db_init attempting index creation +1ms\r\n agenda:db_init index creation success +116ms\r\nAgenda connected to MongoDB!\r\n agenda:start Agenda.start called, creating interval to call processJobs every [30000ms] +0ms\r\n agenda:internal:processJobs starting to process jobs +0ms\r\n agenda:internal:processJobs queuing up job to process: [run stuff] +0ms\r\n agenda:internal:processJobs job [run stuff] lock status: shouldLock = true +0ms\r\n agenda:_findAndLockNextJob _findAndLockNextJob(run stuff, [Function], cb) +0ms\r\n agenda:_findAndLockNextJob error occurred when running query to find and lock job +446ms\r\n agenda:internal:processJobs [run stuff] job lock failed while filling queue +447ms\r\n```", "title": null, "type": "comment" }, { "action": "created", "author": "oscar-b", "comment_id": 357685246, "datetime": 1516023518000, "masked_author": "username_1", "text": "@username_0 It seems like it's the default sort order defining both `nextRunAt` and `priority` (https://github.com/agenda/agenda#sortquery) which causes the issue. Try setting sort to ```sort: { nextRunAt: 1 }```", "title": null, "type": "comment" }, { "action": "created", "author": "macroramesh6", "comment_id": 358535887, "datetime": 1516250468000, "masked_author": "username_2", "text": "I had the same issue with Azure cosmosDB.", "title": null, "type": "comment" }, { "action": "created", "author": "princjef", "comment_id": 378999922, "datetime": 1522946496000, "masked_author": "username_3", "text": "Ran into this issue as well when running atop CosmosDB. Setting the sort as described by @username_1 fixes the problem.", "title": null, "type": "comment" }, { "action": "closed", "author": "simison", "comment_id": null, "datetime": 1528584490000, "masked_author": "username_4", "text": "", "title": null, "type": "issue" } ]
5
9
4,534
false
false
4,534
true
david-szabo97/grav-plugin-admin-addon-user-manager
null
308,241,116
37
{ "number": 37, "repo": "grav-plugin-admin-addon-user-manager", "user_login": "david-szabo97" }
[ { "action": "opened", "author": "achwell", "comment_id": null, "datetime": 1521881651000, "masked_author": "username_0", "text": "", "title": "Norwegian language", "type": "issue" }, { "action": "created", "author": "david-szabo97", "comment_id": 377284943, "datetime": 1522339424000, "masked_author": "username_1", "text": "Thank you @username_0 !", "title": null, "type": "comment" } ]
2
2
20
false
false
20
true
Phrohdoh/easage
null
285,873,331
21
null
[ { "action": "opened", "author": "Phrohdoh", "comment_id": null, "datetime": 1515037048000, "masked_author": "username_0", "text": "`easage list` is quite noisy at the moment.\r\n\r\nPlanned changes:\r\n - [ ] Introduce a `--verbose` flag\r\n - [ ] Output only entry names if the verbose flag *is not present*\r\n - [ ] Output the currently-outputted information if the verbose flag *is present*", "title": "Cut down on the noise that easage-list generates", "type": "issue" }, { "action": "created", "author": "Teteros", "comment_id": 355192260, "datetime": 1515037449000, "masked_author": "username_1", "text": "I'd vote for `easage list` to output only the file paths unless `--verbose` is passed.\r\ne.g.\r\n`easage list foo.big`\r\n```\r\ntest/b.txt\r\ntest/a.txt\r\n````", "title": null, "type": "comment" }, { "action": "closed", "author": "Phrohdoh", "comment_id": null, "datetime": 1515039071000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
2
3
403
false
false
403
false
fenom-template/fenom
fenom-template
252,730,880
287
null
[ { "action": "opened", "author": "parkerj", "comment_id": null, "datetime": 1503608667000, "masked_author": "username_0", "text": "Does Fenom have a filter where you can use your own custom PHP functions? I see that it was on the To Do list, but I've also seen other things on a different To Do list that seem to be implemented already but couldn't figure out if this one was still pending or not.", "title": "Custom Filters/Modifiers", "type": "issue" }, { "action": "created", "author": "parkerj", "comment_id": 324762582, "datetime": 1503610073000, "masked_author": "username_0", "text": "Never mind. I tested it out and it works.", "title": null, "type": "comment" }, { "action": "closed", "author": "parkerj", "comment_id": null, "datetime": 1503610073000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
3
307
false
false
307
false
artsy/positron
artsy
277,116,339
1,457
null
[ { "action": "opened", "author": "eessex", "comment_id": null, "datetime": 1511806381000, "masked_author": "username_0", "text": "Reaction's byline component still uses the contributing_authors field.", "title": "Use new authors field for header byline", "type": "issue" }, { "action": "created", "author": "kanaabe", "comment_id": 347293253, "datetime": 1511810052000, "masked_author": "username_1", "text": "This requires us to finish this first: https://waffle.io/artsy/publishing/cards/59fba1ff75d21b001040bc1a", "title": null, "type": "comment" }, { "action": "closed", "author": "eessex", "comment_id": null, "datetime": 1560265193000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
2
3
175
false
false
175
false
sitespeedio/browsertime
sitespeedio
210,416,130
281
null
[ { "action": "opened", "author": "soulgalore", "comment_id": null, "datetime": 1488183702000, "masked_author": "username_0", "text": "The trace log is just 2 bytes.", "title": "Chrome timeline log doesn't work with --preURL", "type": "issue" }, { "action": "created", "author": "soulgalore", "comment_id": 282684570, "datetime": 1488191693000, "masked_author": "username_0", "text": "The problem is that the log is missing a TracingStartedInPage event. Seems to be happen with the Chromedriver: https://github.com/GoogleChrome/lighthouse/blob/50a68ab2bf0115427e767e5e40dfe6be671902fe/lighthouse-core/config/config.js#L33-L110", "title": null, "type": "comment" }, { "action": "closed", "author": "soulgalore", "comment_id": null, "datetime": 1488198188000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
3
271
false
false
271
false
JOML-CI/JOML
JOML-CI
314,246,909
161
null
[ { "action": "opened", "author": "AlienJim", "comment_id": null, "datetime": 1523652726000, "masked_author": "username_0", "text": "I am getting an error when trying to include JOML as a dependency. The Error is \r\n\r\n`Illegal class file: Class module-info is missing a super type.`\r\n\r\nIn application level gradle:\r\n\r\n```\r\ndependencies { \r\n implementation fileTree(include: '*.jar', dir: 'libs')\r\n implementation 'org.joml:joml:1.9.9'\r\n ...\r\n} \r\n```", "title": "Can't Compile on Android", "type": "issue" }, { "action": "created", "author": "httpdigest", "comment_id": 381267253, "datetime": 1523655593000, "masked_author": "username_1", "text": "Please see the link \"Android\" on the README.md, which links to: https://github.com/JOML-CI/JOML/wiki#gradle-setup-for-android", "title": null, "type": "comment" }, { "action": "closed", "author": "httpdigest", "comment_id": null, "datetime": 1523655606000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "AlienJim", "comment_id": 382016480, "datetime": 1523975865000, "masked_author": "username_0", "text": "org.joml:joml-jdk8:1.9.9 is working great on the latest version of android.\r\n\r\nThanks", "title": null, "type": "comment" } ]
2
4
534
false
false
534
false
davezuko/react-redux-starter-kit
null
152,675,055
768
null
[ { "action": "opened", "author": "allxie", "comment_id": null, "datetime": 1462235038000, "masked_author": "username_0", "text": "Webpack is failing to compile for me on line 13 of webpack-compiler.js. This is working just fine on my coworker's computer, but not on mine. I am using version 1.0.0 of react-redux-starter-kit and have replicated the problem after removing my node modules branch and re-installing. \r\n\r\nNpm version : 3.8.8\r\nnode version: v5.5.0\r\n\r\nError:\r\n\r\n...../build/webpack-compiler.js:37\r\n var jsonStats = stats.toJson();\r\n ^\r\n\r\nTypeError: Cannot read property 'toJson' of undefined\r\n at webpack-compiler.js:13:25\r\n\r\nThanks!", "title": "Webpack Failing to Compile", "type": "issue" }, { "action": "created", "author": "davezuko", "comment_id": 217050972, "datetime": 1462410297000, "masked_author": "username_1", "text": "That's interesting, since `stats` is just an argument provided by the webpack compiler callback, it's not our own variable. Have you compared your webpack version with your co-workers? I'll have to look at the webpack repo to see if that has any clues.", "title": null, "type": "comment" }, { "action": "created", "author": "allxie", "comment_id": 218000257, "datetime": 1462830474000, "masked_author": "username_0", "text": "Hi Dave,\r\nWe have the same webpack versions. They are 1.12.9.", "title": null, "type": "comment" }, { "action": "created", "author": "davezuko", "comment_id": 218143549, "datetime": 1462883622000, "masked_author": "username_1", "text": "Thanks. So looking at the `1.0.0` tags and the snippet you posted, they appear to be different. That is, in `1.0.x` the `compile` task is in `~/bin/compile`: https://github.com/username_1/react-redux-starter-kit/blob/v1.0.0/bin/compile.js, whereas your snippet is using the newer `~/build/webpack-compiler`.\r\n\r\nIs there any way you could post your fork or, if not, the source code in that compiler file?", "title": null, "type": "comment" }, { "action": "closed", "author": "davezuko", "comment_id": null, "datetime": 1464107511000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "davezuko", "comment_id": 221328598, "datetime": 1464107511000, "masked_author": "username_1", "text": "Haven't heard anything more on this, and `1.0.0` is no longer actively maintained, so going to close this for now. If there is anything else I can do to try to help, let me know.", "title": null, "type": "comment" } ]
2
6
1,439
false
false
1,439
true
MessageKit/MessageKit
MessageKit
296,957,619
518
null
[ { "action": "opened", "author": "crspybits", "comment_id": null, "datetime": 1518576037000, "masked_author": "username_0", "text": "## General Information\r\n\r\nGet ellipsis with \"Send\" button if you use Settings app > General > Accessibility > Larger Text, turn it on and select a mid-size setting on their scale.\r\n\r\n* MessageKit Version:\r\n\r\n0.13.1\r\n\r\n* iOS Version(s):\r\n\r\n11.2\r\n\r\n* Swift Version:\r\n\r\n4\r\n\r\n* Devices/Simulators:\r\n\r\niPhone X both real and simulated.\r\n\r\n* Reproducible in ChatExample? (Yes/No):\r\n\r\nYes\r\n\r\n## What happened?\r\n\r\n<img width=\"373\" alt=\"screen shot 2018-02-13 at 7 33 06 pm\" src=\"https://user-images.githubusercontent.com/5758762/36185153-e9c65146-10f4-11e8-998c-c829eb8b52d8.png\">\r\n\r\n## What did you expect to happen?\r\n\r\nI expect to see all the \"Send\" text.\r\n\r\n## My work around\r\n\r\nRight now, I'm doing the following:\r\n\r\n messageInputBar.sendButton.titleLabel?.font = UIFont.systemFont(ofSize: 22.0)\r\n\r\nbut I'd rather not just disable that dynamic font size.\r\n\r\n--------------\r\nI really like this library. I'd be happy to add my app to your list. Not sure where that list is though!", "title": "Send button text goes to ellipsis with Larger Text setting.", "type": "issue" }, { "action": "created", "author": "nathantannar4", "comment_id": 365489575, "datetime": 1518580907000, "masked_author": "username_1", "text": "Hi @username_0 thats a good catch. This would be because we initialize the font of the send button to a dynamic size with `$0.titleLabel?.font = UIFont.preferredFont(forTextStyle: .headline)` however due to the architecture of the `MessageInputBar` has width constraints on the left and right stack views. A fix for this would be to change the font of the send button such that it is static and not a .preferredFor(:)", "title": null, "type": "comment" }, { "action": "created", "author": "RealBonus", "comment_id": 367836373, "datetime": 1519336684000, "masked_author": "username_2", "text": "Width constrains on labels and buttons also doesn't works well with localization.\r\nFor example, russian translation \"Отправить\":\r\n![Send](https://user-images.githubusercontent.com/14142157/36566307-21c8ef86-1834-11e8-92d5-b83bd172c0d0.png)", "title": null, "type": "comment" }, { "action": "created", "author": "nathantannar4", "comment_id": 479531173, "datetime": 1554304153000, "masked_author": "username_1", "text": "@wiistriker You should get the dynamic font size and use it as a factor in setting the right stack view width. It needs to be big enough to fit the button\n\n<sub>Sent with <a href=\"http://githawk.com\">GitHawk</a></sub>", "title": null, "type": "comment" } ]
4
7
2,276
false
true
1,855
true
fsr-itse/EvaP
fsr-itse
152,190,601
785
{ "number": 785, "repo": "EvaP", "user_login": "fsr-itse" }
[ { "action": "opened", "author": "janno42", "comment_id": null, "datetime": 1462094921000, "masked_author": "username_0", "text": "Fix #681 \r\n\r\nThis allows exporting raw course data per semester as well as a participation overview in CSV format. Both are helpful for creating detailed statistics about a semester.", "title": "Raw data export", "type": "issue" }, { "action": "created", "author": "karyon", "comment_id": 216037755, "datetime": 1462104364000, "masked_author": "username_1", "text": "oh and please add tests :)", "title": null, "type": "comment" }, { "action": "created", "author": "karyon", "comment_id": 216051656, "datetime": 1462118182000, "masked_author": "username_1", "text": "could you add an explanation why that page got removed to the commit message? also, check out the landscape issues.", "title": null, "type": "comment" }, { "action": "created", "author": "janno42", "comment_id": 217729746, "datetime": 1462723490000, "masked_author": "username_0", "text": "added tests. i don't like them. let the hate begin.", "title": null, "type": "comment" }, { "action": "created", "author": "karyon", "comment_id": 217736330, "datetime": 1462730176000, "masked_author": "username_1", "text": ":fuelpump:", "title": null, "type": "comment" } ]
4
25
10,238
false
true
384
false
appium/java-client
appium
317,188,866
873
null
[ { "action": "opened", "author": "ptsiakos77", "comment_id": null, "datetime": 1524570319000, "masked_author": "username_0", "text": "## The problem\r\n\r\nWhen I am searching for a mobile element under another element and not root I am taking the following exception message:\r\nReturned value cannot be converted to WebElement: PLAIN_HEADER_LABEL\r\n\r\nVie the full stack trace below:\r\nhttps://gist.github.com/username_0/b0ecef5ff6e422eee18b8ccd17a35fc4#file-gistfile1-txt\r\n\r\n\r\n## Environment\r\n\r\n* Appium version (or git revision) that exhibits the issue: 1.8\r\n* Last Appium version that did not exhibit the issue (if applicable): 1.7.1\r\n* Node.js version (unless using Appium.app|exe): 8.9.4\r\n* Mobile platform/version under test: IOS 11.3\r\n* Real device or emulator/simulator: iphone6s Real Device\r\n* Appium Java client: 3.5.3\r\n\r\n\r\n## Details\r\nI have problems finding an element under another element. It worked fine in appium 1.7.1. In the following code the second attempt to find the element fails with the exception above\r\nWebElement cell = driver.findElement(MobileBy.ByIosClassChain(\"**/XCUIElementTypeTable[1]/XCUIElementTypeCell\"))\r\nWebElement label = cell.findElement(MobileBy.ByIosClassChain('PLAIN_HEADER_LABEL'))\r\n\r\n\r\n\r\n## Link to Appium logs\r\nhttps://gist.github.com/username_0/069df238b0583a67922932dfb8584fbc#file-gistfile1-txt", "title": "Class cast exception when I am searching element under element ", "type": "issue" }, { "action": "created", "author": "mykola-mokhnach", "comment_id": 383945185, "datetime": 1524578936000, "masked_author": "username_1", "text": "I assume that updating java client to the most recent beta version should solve the problem", "title": null, "type": "comment" }, { "action": "created", "author": "TikhomirovSergey", "comment_id": 385081945, "datetime": 1524860054000, "masked_author": "username_2", "text": "Yes. It seems old client is conflicting with new server. I am going to close this issue.\r\n@username_0 Please update your project to lates version of appium java client.", "title": null, "type": "comment" }, { "action": "closed", "author": "TikhomirovSergey", "comment_id": null, "datetime": 1525721363000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
3
4
1,462
false
false
1,462
true
carpedm20/DCGAN-tensorflow
null
230,492,101
175
null
[ { "action": "opened", "author": "BLCKPSTV", "comment_id": null, "datetime": 1495480701000, "masked_author": "username_0", "text": "I started training with the example and got to the 14epoch \r\n```\r\n[Sample] d_loss: 1.34017193, g_loss: 0.73472393\r\nEpoch: [14] [ 398/1093] time: 18566.6816, d_loss: 1.38566971, g_loss: 0.67304140\r\nEpoch: [14] [ 399/1093] time: 18567.8129, d_loss: 1.37350225, g_loss: 0.67038035\r\nEpoch: [14] [ 400/1093] time: 18568.9801, d_loss: 1.39440918, g_loss: 0.64606953\r\nEpoch: [14] [ 401/1093] time: 18570.1211, d_loss: 1.36048722, g_loss: 0.66855788\r\n```\r\nShould I train even more and will eventually stop by itself?? \r\nAnd what does the sample mean in the first line of code. \r\n\r\nAt last, where can I view the new generated picture?", "title": "Training on 14 epoch?", "type": "issue" }, { "action": "created", "author": "BLCKPSTV", "comment_id": 304529732, "datetime": 1495993971000, "masked_author": "username_0", "text": "Please anybody? Getting this done for a beginner is very hard without help or more detailed explanations of the installation processes of the dependencies.", "title": null, "type": "comment" }, { "action": "created", "author": "ngc92", "comment_id": 309304495, "datetime": 1497821716000, "masked_author": "username_1", "text": "The `[Sample] d_loss: 1.34017193, g_loss: 0.73472393` tells you that the script generated example images with the current network parameters, those are in the samples subfolder. \r\nI think by default training will stop after 25 epochs.", "title": null, "type": "comment" } ]
2
3
1,014
false
false
1,014
false
Jigsaw-Code/outline-server
Jigsaw-Code
308,324,179
46
null
[ { "action": "opened", "author": "banhao", "comment_id": null, "datetime": 1521956358000, "masked_author": "username_0", "text": "I'm using this command to show the install detail \"wget -qO- https://raw.githubusercontent.com/Jigsaw-Code/outline-server/master/src/server_manager/install_scripts/install_server.sh | bash -x\"\r\n\r\nthe install process stuck on this command \"curl --cacert /root/.shadowbox/persisted-state/shadowbox-selfsigned.crt -s https://my_amazon_ec2:62614/zTKkAXHPd0JsGVNzpEiG3g/access-keys\"\r\n\r\nuse \"netstat -ltnp | grep 62614\" to show which process open the port\r\ntcp6 0 0 :::62614 :::* LISTEN 1639/node\r\n\r\nwhy the port was opened in TCP/IP v6? How can I force the install to using TCP/IP v4?", "title": "stuck on \"curl --cacert /root/.shadowbox/persisted-state/shadowbox-selfsigned.crt -s https://my_amazon_ec2:62614/zTKkAXHPd0JsGVNzpEiG3g/access-keys\"", "type": "issue" }, { "action": "closed", "author": "banhao", "comment_id": null, "datetime": 1521960729000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "banhao", "comment_id": 375949666, "datetime": 1521960729000, "masked_author": "username_0", "text": "I was so silly! I attached the \"default\" security group to my aws-ec2 server, but forgot to change the source, it only allowed my specific group to access. Changed it to \"AnyWhere\" the installation was successful.", "title": null, "type": "comment" }, { "action": "created", "author": "trevj", "comment_id": 376211503, "datetime": 1522078837000, "masked_author": "username_1", "text": "@username_0 I'm glad you got it working! Thanks for the feedback!", "title": null, "type": "comment" } ]
2
4
903
false
false
903
true
Microsoft/vscode
Microsoft
340,322,684
54,081
null
[ { "action": "opened", "author": "cnshenj", "comment_id": null, "datetime": 1531327534000, "masked_author": "username_0", "text": "<!-- Please search existing issues to avoid creating duplicates. --> \r\n<!-- Also please test using the latest insiders build to make sure your issue has not already been fixed: https://code.visualstudio.com/insiders/ -->\r\n\r\n<!-- Use Help > Report Issue to prefill these. -->\r\n- VSCode Version: 1.25.0\r\n- OS Version: Win10 x64 10.0.17134.165\r\n\r\nSteps to Reproduce:\r\n\r\n1. Set \"window.titleBarStyle\": \"custom\"\r\n2. Restart so the setting is effective\r\n3. Open a file that is long enough to fill the whole editor window\r\n4. Right click in the editor near the bottom\r\n\r\nExpected: The context menu appears and is fully visible\r\nActual: The context menu's top is at mouse pointer location, and is only partially visible due to the location.\r\n\r\n<!-- Launch with `code --disable-extensions` to check. -->\r\nDoes this issue occur when all extensions are disabled?: Yes/No", "title": "Context menu not fully visible when titleBarStyle is \"custom\"", "type": "issue" }, { "action": "created", "author": "sbatten", "comment_id": 404590164, "datetime": 1531416818000, "masked_author": "username_1", "text": "duplicate of #52533", "title": null, "type": "comment" }, { "action": "closed", "author": "sbatten", "comment_id": null, "datetime": 1531416818000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
878
false
false
878
false
slimphp/Slim
slimphp
231,339,498
2,235
null
[ { "action": "opened", "author": "sanganagouda1", "comment_id": null, "datetime": 1495718879000, "masked_author": "username_0", "text": "HOw to read csv and store in another file slim", "title": "HOw to read csv and store in another file slim", "type": "issue" }, { "action": "created", "author": "geggleto", "comment_id": 304010210, "datetime": 1495718974000, "masked_author": "username_1", "text": "This is not a slim related. Try stackoverflow!", "title": null, "type": "comment" }, { "action": "closed", "author": "geggleto", "comment_id": null, "datetime": 1495718974000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
92
false
false
92
false
rust-lang/book
rust-lang
269,278,209
982
null
[ { "action": "opened", "author": "dcbishop", "comment_id": null, "datetime": 1509159191000, "masked_author": "username_0", "text": "The 2nd example in 'Ranges' has an emoji in the example. It breaks the playground button and it can't be copy and pasted form the html version for some reason. Copying the example and inserting the correct emoji works fine.\r\n\r\nI'm guessing something is stripping it out when it gets turned into plain text.\r\n\r\nAlso the 💅 is a bit hard to recognise as 'nail polish' on some renderers, maybe a simpler more obvious emoji would be a better choice. 🦀 would be Rust relevant but renders weirdly with B&W only fonts. 😀, ⚙️, 🐱 seem fine. \r\n\r\nMight be worth double checking that the printed edition renders it correctly too...\r\n\r\n```\r\nCompiling playground v0.0.1 (file:///playground)\r\nerror: character constant must be escaped: \\'\r\n --> src/main.rs:3:10\r\n |\r\n3 | let x = '';\r\n | ^\r\n\r\nerror: aborting due to previous error\r\n\r\nerror: Could not compile `playground`.\r\n\r\nTo learn more, run the command again with --verbose.\r\n```", "title": "[3.15] Patterns: Inline example with emoji (💅) \"▶️\" button doesn't work", "type": "issue" }, { "action": "created", "author": "carols10cents", "comment_id": 340516027, "datetime": 1509383580000, "masked_author": "username_1", "text": "Aha, this is in the first edition: https://doc.rust-lang.org/nightly/book/first-edition/patterns.html\r\n\r\nThe corresponding text in the second edition, the one that's going into print, does not use the 💅 emoji fwiw: https://doc.rust-lang.org/nightly/book/second-edition/ch18-03-pattern-syntax.html#matching-ranges-of-values-with- Examples that do use emoji in the second edition, such as the example in https://doc.rust-lang.org/nightly/book/second-edition/ch03-02-data-types.html#the-character-type that uses 😻 , are working fine for me with the play button and we are indeed checking that they render correctly in print.\r\n\r\nRunning the example that uses 💅 by clicking the play button, as well as copying using the copy button and highlighting the text itself, all worked for me in firefox nightly, what browser are you using please? \r\n\r\nThis is likely a bug in mdbook, though, or maybe the playground, but I'd like to narrow it down a bit before moving this issue elsewhere.", "title": null, "type": "comment" }, { "action": "created", "author": "dcbishop", "comment_id": 340619990, "datetime": 1509408000000, "masked_author": "username_0", "text": "I'm using Chrome.\r\n\r\nMessing around a bit more, It looks like it is an extension on my end \"[Emoji Keyboard 2017](https://chrome.google.com/webstore/detail/emoji-keyboard-2016-by-em/ipdjnhgkpapgippgcgkfcbpdpcgifncb?utm_source=chrome-app-launcher-info-dialog)\". But have been replacing them with pictures. I've just disabled it since I never used it.", "title": null, "type": "comment" }, { "action": "closed", "author": "dcbishop", "comment_id": null, "datetime": 1509408004000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
2
4
2,251
false
false
2,251
false
atom/vim-mode
atom
191,949,453
1,082
null
[ { "action": "opened", "author": "YuhaoChen", "comment_id": null, "datetime": 1480323237000, "masked_author": "username_0", "text": "Linux localhost.localdomain 4.8.8-300.fc25.x86_64 #1 SMP Tue Nov 15 18:10:06 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux\r\n\r\nAtom : 1.12.5\r\nElectron: 1.3.9\r\nChrome : 52.0.2743.82\r\nNode : 6.5.0", "title": "vim-mode 0.65.1 not working at all.", "type": "issue" }, { "action": "created", "author": "lee-dohm", "comment_id": 378985550, "datetime": 1522943781000, "masked_author": "username_1", "text": "As stated in [the README](https://github.com/atom/vim-mode), this package is no longer maintained and is deprecated. We recommend that people use the [vim-mode-plus package](https://atom.io/packages/vim-mode-plus) instead. Because of this, we are [archiving this repository](https://help.github.com/articles/about-archiving-repositories/) and closing all issues and pull requests. Thanks very much for your support and contributions!", "title": null, "type": "comment" }, { "action": "closed", "author": "lee-dohm", "comment_id": null, "datetime": 1522943781000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
627
false
false
627
false
OCHA-DAP/hdx-ckan
OCHA-DAP
54,451,914
2,102
null
[ { "action": "opened", "author": "danmihaila", "comment_id": null, "datetime": 1421330446000, "masked_author": "username_0", "text": "Annotated (very annotated) design is here: \r\nhttps://docs.google.com/drawings/d/1qOBKZ7IO7zkEMHh2g3ZiAynh5PiAbO-_-SL4rd9uO_M/edit\r\nImplement the controller that is populating the sections with data", "title": "Default Country Page: controller", "type": "issue" }, { "action": "created", "author": "alexandru-m-g", "comment_id": 71014054, "datetime": 1421930109000, "masked_author": "username_1", "text": "This commit is related to this task: https://github.com/OCHA-DAP/hdx-ckan/commit/41561d990ea4a38cb9d6d90da61657dbb088c1f5", "title": null, "type": "comment" }, { "action": "closed", "author": "alexandru-m-g", "comment_id": null, "datetime": 1422968114000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
318
false
false
318
false
HashNuke/mailgun
null
124,269,252
44
{ "number": 44, "repo": "mailgun", "user_login": "HashNuke" }
[ { "action": "opened", "author": "realdlee", "comment_id": null, "datetime": 1451423843000, "masked_author": "username_0", "text": "", "title": "Fix failing specs", "type": "issue" }, { "action": "created", "author": "HashNuke", "comment_id": 183804963, "datetime": 1455417548000, "masked_author": "username_1", "text": "Thank you @username_0 ~!", "title": null, "type": "comment" } ]
2
2
22
false
false
22
true
SAPDocuments/Tutorials
SAPDocuments
165,885,801
562
null
[ { "action": "opened", "author": "sapdocsqa", "comment_id": null, "datetime": 1468620017000, "masked_author": "username_0", "text": "Tutorial issue found: [https://github.com/SAPDocuments/Tutorials/blob/master/tutorials/ci-best-practices-pipelines/ci-best-practices-pipelines.md](https://github.com/SAPDocuments/Tutorials/blob/master/tutorials/ci-best-practices-pipelines/ci-best-practices-pipelines.md) contains invalid tags. Even though your tutorial was created, the invalid tags listed below were disregarded. Please double-check the following tags:\n- tutorial:type/project", "title": "Tutorial Page ci-best-practices-pipelines.md Issue", "type": "issue" }, { "action": "closed", "author": "akula86", "comment_id": null, "datetime": 1470665949000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
2
444
false
false
444
false
react-navigation/react-navigation
react-navigation
203,821,114
64
null
[ { "action": "opened", "author": "thorsonmscott", "comment_id": null, "datetime": 1485626360000, "masked_author": "username_0", "text": "Hey, thanks for the release! I have a screen in my app that has some content that takes up about a third of the top of the screen, and below that I want to have a nested tab view with the tab bar just below the other content at the top. With ex-navigation it was simple to render the `<SlidingTabNavigation>` component below the rest of my component contents, but I can't figure it out with this library. It seems as I define my nested navigators as screens in a parent navigator, I don't know where I would even define that other content? Do I need to write a custom navigator?\r\n\r\nThanks for the help!", "title": "How do I add content above a top tab bar?", "type": "issue" }, { "action": "created", "author": "soroushm", "comment_id": 563260737, "datetime": 1575901373000, "masked_author": "username_1", "text": "link not found", "title": null, "type": "comment" }, { "action": "created", "author": "sniib", "comment_id": 735239600, "datetime": 1606574780000, "masked_author": "username_2", "text": "https://github.com/satya164/PocketGear/blob/master/src/components/PokemonInfo.tsx", "title": null, "type": "comment" } ]
3
3
701
false
false
701
false
MichMich/MagicMirror
null
301,340,871
1,191
{ "number": 1191, "repo": "MagicMirror", "user_login": "MichMich" }
[ { "action": "opened", "author": "E3V3A", "comment_id": null, "datetime": 1519898004000, "masked_author": "username_0", "text": "", "title": "fix md header", "type": "issue" } ]
2
2
543
false
true
0
false
grpc/grpc
grpc
115,416,751
4,077
null
[ { "action": "opened", "author": "dgquintas", "comment_id": null, "datetime": 1446774185000, "masked_author": "username_0", "text": "This is an issue to track progress on the compression support in PHP.", "title": "Implement compression support in PHP", "type": "issue" }, { "action": "created", "author": "nicolasnoble", "comment_id": 213149616, "datetime": 1461279003000, "masked_author": "username_1", "text": "@username_0 could you precise your thoughts on that one ? Hasn't it been done already ?", "title": null, "type": "comment" }, { "action": "created", "author": "dgquintas", "comment_id": 213176355, "datetime": 1461285201000, "masked_author": "username_0", "text": "@username_2 ?", "title": null, "type": "comment" }, { "action": "created", "author": "dgquintas", "comment_id": 215326279, "datetime": 1461825827000, "masked_author": "username_0", "text": "Requirements list: https://github.com/grpc/grpc/issues/4075#issuecomment-213644191", "title": null, "type": "comment" }, { "action": "reopened", "author": "stanley-cheung", "comment_id": null, "datetime": 1576210200000, "masked_author": "username_2", "text": "This is an issue to track progress on the compression support in PHP.", "title": "Implement compression support in PHP", "type": "issue" }, { "action": "created", "author": "stanley-cheung", "comment_id": 624311771, "datetime": 1588713505000, "masked_author": "username_2", "text": "This is being worked on recently, keeping this open", "title": null, "type": "comment" }, { "action": "closed", "author": "stanley-cheung", "comment_id": null, "datetime": 1592268791000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "stanley-cheung", "comment_id": 644466106, "datetime": 1592268791000, "masked_author": "username_2", "text": "We have documented compression support [here](https://github.com/grpc/grpc/tree/master/src/php#compression). PHP also implemented the interop test for client side compression [here](https://github.com/grpc/grpc/blob/master/src/php/tests/interop/interop_client.php#L785).", "title": null, "type": "comment" } ]
4
10
903
false
true
644
true
greenplum-db/gpdb
greenplum-db
294,323,859
4,485
null
[ { "action": "opened", "author": "shubifeng", "comment_id": null, "datetime": 1517822828000, "masked_author": "username_0", "text": "### Greenplum version or build\r\n5.4.1\r\n### OS version and uname -a\r\ndocker centos\r\n\r\n\r\ncmd:\r\n` gpinitsystem -c gpinitsystem_config -h hostfile_gpssh_segonly -s sdw7 -S`\r\n\r\n\r\n```\r\n20180205:17:19:22:031542 gpcreateseg.sh:0ee52bd2977a:gpadmin-[INFO]:-Appended line checkpoint_segments=8 to /home/gpadmin/gpdata2/mirror/gpseg27/postgresql.conf on sdw2\r\n20180205:17:19:22:031542 gpcreateseg.sh:0ee52bd2977a:gpadmin-[INFO]:-End Function SED_PG_CONF\r\n20180205:17:19:22:031542 gpcreateseg.sh:0ee52bd2977a:gpadmin-[INFO][27]:-Completed Update checkpoint segments\r\n20180205:17:19:22:031542 gpcreateseg.sh:0ee52bd2977a:gpadmin-[INFO][27]:-Configuring segment pg_hba.conf\r\n20180205:17:19:22:000517 gpcreateseg.sh:0ee52bd2977a:gpadmin-[INFO]:-[37]-End Function PROCESS_QE\r\n20180205:17:19:22:000517 gpcreateseg.sh:0ee52bd2977a:gpadmin-[INFO][37]:-End Main\r\n20180205:17:19:23:031542 gpcreateseg.sh:0ee52bd2977a:gpadmin-[INFO]:-[27]-End Function PROCESS_QE\r\n20180205:17:19:23:031542 gpcreateseg.sh:0ee52bd2977a:gpadmin-[INFO][27]:-End Main\r\n20180205:17:19:23:005326 gpinitsystem:0ee52bd2977a:gpadmin-[INFO]:-End Function PARALLEL_WAIT\r\n20180205:17:19:23:005326 gpinitsystem:0ee52bd2977a:gpadmin-[INFO]:-End Function PARALLEL_COUNT\r\n20180205:17:19:23:005326 gpinitsystem:0ee52bd2977a:gpadmin-[INFO]:-Start Function PARALLEL_SUMMARY_STATUS_REPORT\r\n20180205:17:19:23:005326 gpinitsystem:0ee52bd2977a:gpadmin-[INFO]:------------------------------------------------\r\n20180205:17:19:23:005326 gpinitsystem:0ee52bd2977a:gpadmin-[INFO]:-Parallel process exit status\r\n20180205:17:19:23:005326 gpinitsystem:0ee52bd2977a:gpadmin-[INFO]:------------------------------------------------\r\n20180205:17:19:23:005326 gpinitsystem:0ee52bd2977a:gpadmin-[INFO]:-Total processes marked as completed = 15\r\n20180205:17:19:23:005326 gpinitsystem:0ee52bd2977a:gpadmin-[INFO]:-Total processes marked as killed = 0\r\n20180205:17:19:23:005326 gpinitsystem:0ee52bd2977a:gpadmin-[WARN]:-Total processes marked as failed = 27 <<<<<\r\n20180205:17:19:23:005326 gpinitsystem:0ee52bd2977a:gpadmin-[INFO]:------------------------------------------------\r\n20180205:17:19:23:005326 gpinitsystem:0ee52bd2977a:gpadmin-[INFO]:-End Function PARALLEL_SUMMARY_STATUS_REPORT\r\nFAILED:sdw2~43000~/home/gpadmin/gpdata1/mirror/gpseg0~44~0~44000\r\nFAILED:sdw3~43001~/home/gpadmin/gpdata1/mirror/gpseg1~45~1~44001\r\nFAILED:sdw4~43002~/home/gpadmin/gpdata1/mirror/gpseg2~46~2~44002\r\nFAILED:sdw7~43005~/home/gpadmin/gpdata2/mirror/gpseg5~49~5~44005\r\nFAILED:sdw3~43000~/home/gpadmin/gpdata1/mirror/gpseg6~50~6~44000\r\nFAILED:sdw1~43005~/home/gpadmin/gpdata2/mirror/gpseg11~55~11~44005\r\nFAILED:sdw7~43004~/home/gpadmin/gpdata2/mirror/gpseg10~54~10~44004\r\nFAILED:sdw5~43001~/home/gpadmin/gpdata1/mirror/gpseg13~57~13~44001\r\nFAILED:sdw4~43000~/home/gpadmin/gpdata1/mirror/gpseg12~56~12~44000\r\nFAILED:sdw7~43003~/home/gpadmin/gpdata2/mirror/gpseg15~59~15~44003\r\nFAILED:sdw6~43001~/home/gpadmin/gpdata1/mirror/gpseg19~63~19~44001\r\nFAILED:sdw7~43000~/home/gpadmin/gpdata1/mirror/gpseg30~74~30~44000\r\nFAILED:sdw2~43005~/home/gpadmin/gpdata2/mirror/gpseg17~61~17~44005\r\nFAILED:sdw5~43000~/home/gpadmin/gpdata1/mirror/gpseg18~62~18~44000\r\nFAILED:sdw6~43000~/home/gpadmin/gpdata1/mirror/gpseg24~68~24~44000\r\nFAILED:sdw1~43001~/home/gpadmin/gpdata1/mirror/gpseg31~75~31~44001\r\nFAILED:sdw7~43001~/home/gpadmin/gpdata1/mirror/gpseg25~69~25~44001\r\nFAILED:sdw1~43000~/home/gpadmin/gpdata1/mirror/gpseg36~80~36~44000\r\nFAILED:sdw6~43005~/home/gpadmin/gpdata2/mirror/gpseg41~85~41~44005\r\nFAILED:sdw3~43005~/home/gpadmin/gpdata2/mirror/gpseg23~67~23~44005\r\nFAILED:sdw2~43004~/home/gpadmin/gpdata2/mirror/gpseg22~66~22~44004\r\nFAILED:sdw3~43004~/home/gpadmin/gpdata2/mirror/gpseg28~72~28~44004\r\nFAILED:sdw4~43005~/home/gpadmin/gpdata2/mirror/gpseg29~73~29~44005\r\nFAILED:sdw4~43004~/home/gpadmin/gpdata2/mirror/gpseg34~78~34~44004\r\nFAILED:sdw4~43003~/home/gpadmin/gpdata2/mirror/gpseg39~83~39~44003\r\nFAILED:sdw5~43005~/home/gpadmin/gpdata2/mirror/gpseg35~79~35~44005\r\nFAILED:sdw5~43004~/home/gpadmin/gpdata2/mirror/gpseg40~84~40~44004\r\nCOMPLETED:sdw6~43004~/home/gpadmin/gpdata2/mirror/gpseg4~48~4~44004\r\nCOMPLETED:sdw1~43004~/home/gpadmin/gpdata2/mirror/gpseg16~60~16~44004\r\nCOMPLETED:sdw5~43003~/home/gpadmin/gpdata2/mirror/gpseg3~47~3~44003\r\nCOMPLETED:sdw1~43003~/home/gpadmin/gpdata2/mirror/gpseg21~65~21~44003\r\nCOMPLETED:sdw6~43002~/home/gpadmin/gpdata1/mirror/gpseg14~58~14~44002\r\nCOMPLETED:sdw6~43003~/home/gpadmin/gpdata2/mirror/gpseg9~53~9~44003\r\nCOMPLETED:sdw1~43002~/home/gpadmin/gpdata1/mirror/gpseg26~70~26~44002\r\nCOMPLETED:sdw4~43001~/home/gpadmin/gpdata1/mirror/gpseg7~51~7~44001\r\nCOMPLETED:sdw7~43002~/home/gpadmin/gpdata1/mirror/gpseg20~64~20~44002\r\nCOMPLETED:sdw3~43003~/home/gpadmin/gpdata2/mirror/gpseg33~77~33~44003\r\nCOMPLETED:sdw3~43002~/home/gpadmin/gpdata1/mirror/gpseg38~82~38~44002\r\nCOMPLETED:sdw5~43002~/home/gpadmin/gpdata1/mirror/gpseg8~52~8~44002\r\nCOMPLETED:sdw2~43002~/home/gpadmin/gpdata1/mirror/gpseg32~76~32~44002\r\nCOMPLETED:sdw2~43001~/home/gpadmin/gpdata1/mirror/gpseg37~81~37~44001\r\nCOMPLETED:sdw2~43003~/home/gpadmin/gpdata2/mirror/gpseg27~71~27~44003\r\n20180205:17:19:23:005326 gpinitsystem:0ee52bd2977a:gpadmin-[INFO]:-End Function CREATE_QES_MIRROR\r\nINSERT 0 1\r\n20180205:17:19:23:005326 gpinitsystem:0ee52bd2977a:gpadmin-[FATAL]:-Errors generated from parallel processes\r\n20180205:17:19:23:005326 gpinitsystem:0ee52bd2977a:gpadmin-[INFO]:-Dumped contents of status file to the log file\r\n20180205:17:19:23:005326 gpinitsystem:0ee52bd2977a:gpadmin-[INFO]:-Building composite backout file\r\n20180205:17:19:24:005326 gpinitsystem:0ee52bd2977a:gpadmin-[INFO]:-Start Function ERROR_EXIT\r\n20180205:17:19:24:gpinitsystem:0ee52bd2977a:gpadmin-[FATAL]:-Failures detected, see log file /home/gpadmin/gpAdminLogs/gpinitsystem_20180205.log for more detail Script Exiting!\r\n20180205:17:19:24:005326 gpinitsystem:0ee52bd2977a:gpadmin-[WARN]:-Script has left Greenplum Database in an incomplete state\r\n20180205:17:19:24:005326 gpinitsystem:0ee52bd2977a:gpadmin-[WARN]:-Run command /bin/bash /home/gpadmin/gpAdminLogs/backout_gpinitsystem_gpadmin_20180205_171507 to remove these changes\r\n20180205:17:19:24:005326 gpinitsystem:0ee52bd2977a:gpadmin-[INFO]:-Start Function BACKOUT_COMMAND\r\n20180205:17:19:24:005326 gpinitsystem:0ee52bd2977a:gpadmin-[INFO]:-End Function BACKOUT_COMMAND\r\n```", "title": "too manys segment will error", "type": "issue" }, { "action": "created", "author": "skahler-pivotal", "comment_id": 363149707, "datetime": 1517850184000, "masked_author": "username_1", "text": "Is this all on one host or are there multiple host with docker images?\r\n\r\nCan you run the same with the debug flag and post the initsystem log", "title": null, "type": "comment" }, { "action": "created", "author": "shubifeng", "comment_id": 363303515, "datetime": 1517889431000, "masked_author": "username_0", "text": "@username_1 there are multiple host with docker images. I would change docker to xenServer for cluster. the docker install is too many unknow.", "title": null, "type": "comment" }, { "action": "closed", "author": "skahler-pivotal", "comment_id": null, "datetime": 1519333775000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
4
6,638
false
false
6,638
true
IATI/IATI-Public-Validator
IATI
53,534,285
90
null
[ { "action": "opened", "author": "stevieflow", "comment_id": null, "datetime": 1420562593000, "masked_author": "username_0", "text": "NOTE: 2.01 is released but not live - for more info see: http://iatistandard.org/upgrades/all-versions/\r\n\r\nto reflect the fact that 2.01 is now live", "title": "Update 2.01 notice", "type": "issue" }, { "action": "created", "author": "caprenter", "comment_id": 68997590, "datetime": 1420623031000, "masked_author": "username_1", "text": "This has been altered and the live website has been updated", "title": null, "type": "comment" }, { "action": "closed", "author": "caprenter", "comment_id": null, "datetime": 1420623031000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
207
false
false
207
false
crate/crate
crate
117,869,707
2,947
{ "number": 2947, "repo": "crate", "user_login": "crate" }
[ { "action": "opened", "author": "mfussenegger", "comment_id": null, "datetime": 1447955664000, "masked_author": "username_0", "text": "", "title": "remove outdated BulkShardProcessor and clean up upsert stuff", "type": "issue" }, { "action": "created", "author": "seut", "comment_id": 158330105, "datetime": 1448010173000, "masked_author": "username_1", "text": "ack", "title": null, "type": "comment" } ]
2
2
3
false
false
3
false
HewlettPackard/oneview-golang
HewlettPackard
223,545,637
104
null
[ { "action": "opened", "author": "wenlock", "comment_id": null, "datetime": 1492844363000, "masked_author": "username_0", "text": "Notifications could be useful for event based actions for OneView environment. What are our use cases for it? Shall we start by implementing the ability to read the notifications.", "title": "Use case for Notifications", "type": "issue" }, { "action": "created", "author": "chebroluharika", "comment_id": 659877784, "datetime": 1594965709000, "masked_author": "username_1", "text": "Hi @username_0,\r\nCode support for this fix is provided and will be available from next release.", "title": null, "type": "comment" }, { "action": "closed", "author": "chebroluharika", "comment_id": null, "datetime": 1594965711000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
274
false
false
274
true
cbracken/dvm
null
162,197,649
9
null
[ { "action": "opened", "author": "hterkelsen", "comment_id": null, "datetime": 1466790680000, "masked_author": "username_0", "text": "Lots of scripts assume this variable is pointed to your copy of the Dart SDK. Would be nice if dvm could update this for me.", "title": "set $DART_SDK environment variable", "type": "issue" }, { "action": "created", "author": "cbracken", "comment_id": 229179764, "datetime": 1467147192000, "masked_author": "username_1", "text": "Closed by #10.", "title": null, "type": "comment" }, { "action": "closed", "author": "cbracken", "comment_id": null, "datetime": 1467147192000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
138
false
false
138
false
Kocal/Solary
null
287,324,274
72
{ "number": 72, "repo": "Solary", "user_login": "Kocal" }
[ { "action": "opened", "author": "Kocal", "comment_id": null, "datetime": 1515564353000, "masked_author": "username_0", "text": "", "title": "Extension: Increase padding for social icons + make then black during hover", "type": "issue" } ]
2
2
0
false
true
0
false
Sylhare/Type-on-Strap
null
295,697,776
52
null
[ { "action": "opened", "author": "misaelljr", "comment_id": null, "datetime": 1518131159000, "masked_author": "username_0", "text": "Dear,\r\n\r\nI uploaded the project to github pages and am getting the error:\r\n\r\nThe page build completed successfully, but returned the following warning for the `master` branch:\r\n\r\nYou are attempting to use a Jekyll theme, \"type-on-strap\", which is not supported by GitHub Pages. Please visit https://pages.github.com/themes/ for a list of supported themes. If you are using the \"theme\" configuration variable for something other than Jekyll theme, we recommend you rename this variable throughout your site. For more information, see https://help.github.com/articles/adding-a-jekyll-theme-to-your-github-pages-site/.\r\n\r\nHow can I solve this?", "title": "Page build warning", "type": "issue" }, { "action": "created", "author": "Sylhare", "comment_id": 364280147, "datetime": 1518131334000, "masked_author": "username_1", "text": "Go to your `_config.yml` and then comment this line:\r\n\r\n```yaml\r\n theme: type-on-strap # If using the theme as a jekyll theme gem\r\n```\r\n\r\nThat way github won't try to download the gem. (Only a few gems are accepted on github page, this line is when the theme is used with the gem).", "title": null, "type": "comment" }, { "action": "created", "author": "misaelljr", "comment_id": 364281933, "datetime": 1518131851000, "masked_author": "username_0", "text": "Good, this solved.\r\n\r\nSometimes I have a problem when I update the files. The page opens as if it did not find the .css. What is the cause of this?", "title": null, "type": "comment" }, { "action": "created", "author": "Sylhare", "comment_id": 364283069, "datetime": 1518132193000, "masked_author": "username_1", "text": "Allo,\r\n\r\nI think you should edit your `config.yml` file, make sure to follow the steps in the readme. Seems like you didn't populate the `url` or `base url` with your information (github page url). It's at the beginning.\r\n\r\nLet me know if that fixes it.", "title": null, "type": "comment" }, { "action": "closed", "author": "Sylhare", "comment_id": null, "datetime": 1518132376000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "misaelljr", "comment_id": 364283988, "datetime": 1518132478000, "masked_author": "username_0", "text": "It worked correctly. I think it takes a while for github to process changes or update content.\r\n\r\nThanks\r\nRegards", "title": null, "type": "comment" } ]
2
6
1,436
false
false
1,436
false
spring-cloud/spring-cloud-netflix
spring-cloud
291,200,271
2,676
null
[ { "action": "opened", "author": "samfrach", "comment_id": null, "datetime": 1516798902000, "masked_author": "username_0", "text": "Dear all,\r\n\r\nwhat I want : I want a single entry to all my applications and a single sign on\r\n\r\nI've spent my time googling \"zuul authorization not forwarded/relayed\"... then I think I understood, it talks about a request header Authorization that would arrive with the user request.. whereas I don't have any\r\n\r\nI have spring boot applications : \r\n- an oAuth2 authorization server (named : AS)\r\n- a zuul server that acts as a oAuth2 client (i.e. the user is redirected to the authorization server to login and comes back authenticated = authorization_code mode)\r\n- a few services (ResourceServer)\r\n\r\nWhen I call my few services from the zuul server using a feign client (i.e. via RestTemplate), then my resources servers receive the Authorization header .. they get the JWT and the life goes on...\r\nBut through a zuul route, the authorization is always empty whereas I have a principal in the zuul server .. (I have added a \"sensitiveHeaders\" to all my routes.. )\r\n\r\n**Question** : I can add a Zuul Pre-filter to add this authorization header from the principal. But isn't supposed to be supported by Zuul ?\r\n\r\nthanks a lot for your answers", "title": "[Question] Does Zuul with oAuth2 relay the Principal (as an authorization header) ?", "type": "issue" }, { "action": "created", "author": "ryanjbaxter", "comment_id": 360907012, "datetime": 1517001552000, "masked_author": "username_1", "text": "Is this what you need? https://cloud.spring.io/spring-cloud-security/single/spring-cloud-security.html#_client_token_relay_in_zuul_proxy", "title": null, "type": "comment" }, { "action": "created", "author": "spring-issuemaster", "comment_id": 426351664, "datetime": 1538499674000, "masked_author": "username_2", "text": "Closing due to age of the question. If you would like us to look at this issue, please comment and we will look at re-opening the issue.", "title": null, "type": "comment" }, { "action": "closed", "author": "spring-issuemaster", "comment_id": null, "datetime": 1538499675000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
3
4
1,413
false
false
1,413
false
shimat/opencvsharp
null
318,639,635
485
null
[ { "action": "opened", "author": "hismichael", "comment_id": null, "datetime": 1524924538000, "masked_author": "username_0", "text": "As I need to save FREAK descriptors (Mat objects) to database and reconstruct them for FLANN based matches.\r\n\r\nCan I use Mat.Dump() method to get string for such use?\r\n\r\nHow can I reconstruct a Mat object from the dumped string?\r\n\r\nThank you very much!", "title": "How to reconstruct a Mat from dumped string?", "type": "issue" }, { "action": "closed", "author": "hismichael", "comment_id": null, "datetime": 1524951291000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
2
252
false
false
252
false
NuGet/Home
NuGet
187,208,514
3,873
null
[ { "action": "opened", "author": "rrelyea", "comment_id": null, "datetime": 1478212397000, "masked_author": "username_0", "text": "Internal bugs: \r\ncreate project - 286587 - 24% regression\r\nrebuild - 286956 - 6% regression", "title": "Create UWP app create project & rebuild total elapsed time regressions", "type": "issue" }, { "action": "created", "author": "rrelyea", "comment_id": 271001499, "datetime": 1483735526000, "masked_author": "username_0", "text": "once your other things are done, can you examine the current status of those perf regresssion.s", "title": null, "type": "comment" }, { "action": "created", "author": "jainaashish", "comment_id": 272590317, "datetime": 1484357309000, "masked_author": "username_1", "text": "286956 is fixed and resolved.\r\n286587 - CPU time regression is taken care of, need little more investigation for byteallocation", "title": null, "type": "comment" }, { "action": "created", "author": "jainaashish", "comment_id": 274897319, "datetime": 1485283604000, "masked_author": "username_1", "text": "286587 - CPU regression and byteallocation both have been improved.", "title": null, "type": "comment" }, { "action": "closed", "author": "jainaashish", "comment_id": null, "datetime": 1485283604000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
5
380
false
false
380
false
ant-design/ant-design
ant-design
177,993,566
3,098
null
[ { "action": "opened", "author": "afc163", "comment_id": null, "datetime": 1474359080000, "masked_author": "username_0", "text": "http://ant.design/components/xx/\r\nhttp://beta.ant.design/components/xx/", "title": "404 page has error", "type": "issue" }, { "action": "closed", "author": "benjycui", "comment_id": null, "datetime": 1474361371000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
3
3
239
false
true
71
false
solgenomics/sgn
solgenomics
292,554,289
1,588
{ "number": 1588, "repo": "sgn", "user_login": "solgenomics" }
[ { "action": "opened", "author": "aco46", "comment_id": null, "datetime": 1517258777000, "masked_author": "username_0", "text": "Description <!-- Describe your changes in detail. -->\r\n-----------------------------------------------------\r\n\r\n\r\n<!-- If there are relevant issues, link them here: -->\r\n\r\n\r\nChecklist <!-- Put an `x` in all the boxes that apply, or check them once submitted.-->\r\n---------------------------------------------------------------------------------------\r\n- [ ] Documentation only\r\n- [ ] Fixture update only\r\n- [ ] Bug fix\r\n - [ ] The relevant issue has been closed.\r\n - [ ] Further work is required.\r\n- [ ] New feature\r\n - [ ] Relevant tests have been created and run.\r\n - [ ] Data was added to the fixture\r\n - [ ] Data was added via a patch in `/t/data/fixture/patches/`.\r\n - [ ] User-Facing Change\r\n - [ ] The user manual in `/docs` has been updated.\r\n - [ ] Any new Perl has been documented using **perldoc**.\r\n - [ ] Any new JavaScript has been documented using **JSDoc**.", "title": "IITA-2 barcode format", "type": "issue" }, { "action": "created", "author": "aco46", "comment_id": 361382674, "datetime": 1517259205000, "masked_author": "username_0", "text": "@bellerbrock : Prasad and I have been trying to print a new format of barcode for their clonal evaluation trials. We tried the Barcode Designer but we were having issues with the spaces at the bottom margin. I added this format for him to be able to print barcodes for his trials since he has to have them ready today.", "title": null, "type": "comment" } ]
1
2
1,204
false
false
1,204
false
Talend/components
Talend
201,855,956
436
{ "number": 436, "repo": "components", "user_login": "Talend" }
[ { "action": "opened", "author": "sgandon", "comment_id": null, "datetime": 1484831117000, "masked_author": "username_0", "text": "**Please check if the PR fulfills these requirements**\r\n\r\n- [x] The commit message follows Talend standard\r\n- [x] Tests for the changes have been added (for bug fixes / features)\r\n\r\n**What is the current behavior?** (You can also link to an open issue here)\r\nComponent reference was complicated and required implementing ComponentReferencePropertiesEnclosing.\r\n\r\n\r\n**What is the new behavior?**\r\nNo need for implementing some extra interface, just used the same reference for Studio compoenents and dataset and datastore.\r\n\r\n\r\n**Does this PR introduce a breaking change?**\r\n\r\n- [ ] Yes\r\n- [x] No\r\ncause there are some migration step implemented.\r\n\r\nWARNING : \r\n* this requires a daikon PR to be implemented https://github.com/Talend/daikon/pull/132.\r\n* The studio have also a PR waiting for this one : https://github.com/Talend/tdi-studio-se/pull/942", "title": "Feature/TCOMP-335 make refs work for rest", "type": "issue" }, { "action": "created", "author": "build-talend-common", "comment_id": 273771820, "datetime": 1484831243000, "masked_author": "username_1", "text": "Pull request test result: [failure](https://ci-common.datapwn.com/job/components_pull-request_master/696/) [:x:](https://ci-common.datapwn.com/job/components_pull-request_master/696/)", "title": null, "type": "comment" }, { "action": "created", "author": "build-talend-common", "comment_id": 274774763, "datetime": 1485256162000, "masked_author": "username_1", "text": "Pull request test result: [failure](https://ci-common.datapwn.com/job/components_pull-request_master/717/) [:x:](https://ci-common.datapwn.com/job/components_pull-request_master/717/)", "title": null, "type": "comment" }, { "action": "created", "author": "build-talend-common", "comment_id": 274881924, "datetime": 1485280343000, "masked_author": "username_1", "text": "Pull request test result: [failure](https://ci-common.datapwn.com/job/components_pull-request_master/724/) [:x:](https://ci-common.datapwn.com/job/components_pull-request_master/724/)", "title": null, "type": "comment" }, { "action": "created", "author": "build-talend-common", "comment_id": 275136399, "datetime": 1485357738000, "masked_author": "username_1", "text": "Pull request test result: [failure](https://ci-common.datapwn.com/job/components_pull-request_master/748/) [:x:](https://ci-common.datapwn.com/job/components_pull-request_master/748/)", "title": null, "type": "comment" }, { "action": "created", "author": "build-talend-common", "comment_id": 275204584, "datetime": 1485371833000, "masked_author": "username_1", "text": "Pull request test result: [failure](https://ci-common.datapwn.com/job/components_pull-request_master/753/) [:x:](https://ci-common.datapwn.com/job/components_pull-request_master/753/)", "title": null, "type": "comment" }, { "action": "created", "author": "build-talend-common", "comment_id": 275248074, "datetime": 1485382038000, "masked_author": "username_1", "text": "Pull request test result: [failure](https://ci-common.datapwn.com/job/components_pull-request_master/762/) [:x:](https://ci-common.datapwn.com/job/components_pull-request_master/762/)", "title": null, "type": "comment" } ]
2
7
1,948
false
false
1,948
false
fguillot/kanboard
null
126,658,204
1,660
null
[ { "action": "opened", "author": "Sean-Donovan", "comment_id": null, "datetime": 1452779439000, "masked_author": "username_0", "text": "Hello,\r\n\r\nWhen I try to sort cards in a column in the Board view, the cards do not stay in the order I want. They seem to jump around at random from the sequence I'm trying to set up.\r\n\r\nRunning \r\n- Kanboard 1.0.23\r\n- PHP 7.0.1\r\n- Apache 2.4\r\n- MySQL 5.6.14 Community", "title": "Sorting Cards on Board View doesn't work", "type": "issue" }, { "action": "created", "author": "jtourt", "comment_id": 172290309, "datetime": 1453003883000, "masked_author": "username_1", "text": "Sorting was badly broken with commit 4003b122d085b58ad7acb31bafa44121ed94c37f and released in v1.0.23. It's surprising more people haven't noticed yet and commented on the issue here. Please change the status of this issue to Bug. (Major bug!)\r\n\r\nConsider the following board setup and task moves. All the steps below were done consecutively in the order presented.\r\n\r\n![0](https://cloud.githubusercontent.com/assets/14179005/12375856/5b230656-bca4-11e5-885b-302ad3aff7ef.png)\r\n\r\nDrag T1 to under T5 (Position 5):\r\n\r\n![1](https://cloud.githubusercontent.com/assets/14179005/12375867/9f1f374e-bca4-11e5-9b9d-aa8349b3ac72.png)\r\n\r\nDrag T1 to under T2 (Position 2):\r\n\r\n![2](https://cloud.githubusercontent.com/assets/14179005/12375875/db328e0c-bca4-11e5-91b8-5016c2f7e44c.png)\r\n\r\nDrag T1 to under T4 (Position 4):\r\n\r\n![3](https://cloud.githubusercontent.com/assets/14179005/12375879/f99523e6-bca4-11e5-93ac-cc15981fdf89.png)\r\n\r\nDrag T1 to under T4 (Position 4) again:\r\n\r\n![4](https://cloud.githubusercontent.com/assets/14179005/12375885/268f786a-bca5-11e5-923e-f7faf6cf88cb.png)\r\n\r\nDrag T1 to above T2 (Position 1):\r\n\r\n![5](https://cloud.githubusercontent.com/assets/14179005/12375891/3f89ed82-bca5-11e5-8b7e-117e330cb520.png)\r\n\r\nDrag T1 to under T5 (Position 5):\r\n\r\n![6](https://cloud.githubusercontent.com/assets/14179005/12375892/50501286-bca5-11e5-837a-57cbea3c5d12.png)", "title": null, "type": "comment" }, { "action": "created", "author": "jtourt", "comment_id": 172328363, "datetime": 1453039659000, "masked_author": "username_1", "text": "If the file /app/Model/TaskPosition.php is reverted back to the version from release 1.0.22, sorting works flawlessly again.", "title": null, "type": "comment" }, { "action": "created", "author": "fguillot", "comment_id": 174215598, "datetime": 1453578401000, "masked_author": "username_2", "text": "I reverted back the last changes until I found the issue.", "title": null, "type": "comment" }, { "action": "closed", "author": "fguillot", "comment_id": null, "datetime": 1456279983000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
3
5
1,821
false
false
1,821
false
lmcinnes/umap
null
332,330,500
75
null
[ { "action": "opened", "author": "yueqiw", "comment_id": null, "datetime": 1528969883000, "masked_author": "username_0", "text": "Hi,\r\n\r\nI'm using UMAP to visualize single cell gene expression data in [scanpy](https://github.com/theislab/scanpy). I have some difficulty in setting UMAP parameters to make intuitive visualization. I'm not sure which repo to post the question, so I first posted here: https://github.com/theislab/scanpy/issues/174 \r\n\r\nWould you provide some suggestions on how to preserve the coarse-level cluster separation and still allow each cluster to occupy more space so that we can better visualize the continuous substructures within them? Thanks!", "title": "Difficulty in visualizing both cluster separation and cluster substructure ", "type": "issue" }, { "action": "created", "author": "lmcinnes", "comment_id": 397366354, "datetime": 1528995569000, "masked_author": "username_1", "text": "I don't believe that one ca do that -- rather I would suggest that you look at alternative plotting options. Using a smaller point size in matplotlib can help. Using something interactive like Bokeh to allow you to zoom into areas of interest to see continuous structure can also help. Finally, especially if you have more data, something like datashader will do an excellent job of showing both the fine internal structure and the broader global structure at the same time. Ultimately I feel that datashader is really the correct answer to your issues.", "title": null, "type": "comment" }, { "action": "created", "author": "yueqiw", "comment_id": 397428474, "datetime": 1529008245000, "masked_author": "username_0", "text": "I've been using Plotly Dash for some interactive visualization. But for publishing papers, we do need static images with intuitive layout at printing resolutions... This is one of the main constraints on plotting options. \r\n\r\nI used UMAP on more continuous datasets and it works really well for both small and large amount of data points. I guess the issue arises when some clusters are just too far away from the others and preserving global topology (which t-SNE cares less about) happens at the cost of shrinking local structures?", "title": null, "type": "comment" }, { "action": "created", "author": "lmcinnes", "comment_id": 397430516, "datetime": 1529008682000, "masked_author": "username_1", "text": "I think that's a pretty fair description -- the balance between local and\nglobal is tricky. One potential way to get slightly more uniformity akin to\nt-SNE would be to increase the ``n_neighbors`` somewhat. I can't make any\npromises, but by worrying slightly less about the fine structure you may\ngain the continuity you are looking for and spread out the internal\nclumping a little.", "title": null, "type": "comment" }, { "action": "created", "author": "yueqiw", "comment_id": 397514686, "datetime": 1529039137000, "masked_author": "username_0", "text": "Thanks!", "title": null, "type": "comment" }, { "action": "created", "author": "falexwolf", "comment_id": 398686187, "datetime": 1529487066000, "masked_author": "username_2", "text": "Very interesting to read this! Thank you! PS: I was offline on holidays for a week...", "title": null, "type": "comment" }, { "action": "created", "author": "falexwolf", "comment_id": 398866792, "datetime": 1529522580000, "masked_author": "username_2", "text": "@username_1 As mentioned before, we also advocate PAGA as method for resolving such problems. Now, the revision of the preprint I previously linked you to is done. The resubmitted manuscript is available [here](https://rawgit.com/username_2/paga_paper/master/paga.pdf) and will hopefully soon replace the bioRxiv preprint. I'd be very happy to discuss these ideas with you, improve the article if you have suggestions and work further towards better exploiting it for initializing UMAP.", "title": null, "type": "comment" }, { "action": "created", "author": "lmcinnes", "comment_id": 399813822, "datetime": 1529893978000, "masked_author": "username_1", "text": "Hi @username_2, I had a preliminary read through the paper and it looks great. I certainly have some thoughts that I would like to discuss further at some point. Right now I need a second pass or two to work through some of the details better, and then a chance to see if some of the ideas I am formulating will work out. I'll try to get back to you soon.", "title": null, "type": "comment" }, { "action": "created", "author": "falexwolf", "comment_id": 399899456, "datetime": 1529920953000, "masked_author": "username_2", "text": "Hi @username_1, that's nice to read! Get back to me whenever you want.\r\n\r\nAlso: I'd want to make sure that your (and related) work is referenced in the PAGA draft above in the right way before it goes public as a revised preprint on bioRxiv. If you have suggestions for that, it would be cool if you'd let me know until the end of the week. I'll iterate the article once again anyway, I already realized that there are a few omissions and small errors in some places.", "title": null, "type": "comment" }, { "action": "created", "author": "lmcinnes", "comment_id": 400066530, "datetime": 1529954592000, "masked_author": "username_1", "text": "For now the arxiv paper (as in the README) is the correct citation\n(although citing the github repository itself for the implementation would\ncertainly not hurt).", "title": null, "type": "comment" }, { "action": "created", "author": "falexwolf", "comment_id": 400277012, "datetime": 1530013281000, "masked_author": "username_2", "text": "Of course, the draft cites the arXiv preprint. Regarding implementations: this is one of the things I still want to do... adding a detailed supplemental note on all the packages needed. I did this thoroughly also in the Scanpy paper - at the time, unfortunately, this was before UMAP and I didn't know that Scanpy 1.0 would rely on UMAP...", "title": null, "type": "comment" }, { "action": "created", "author": "aprive", "comment_id": 437092438, "datetime": 1541699156000, "masked_author": "username_3", "text": "if want 3d: https://vaex.io/", "title": null, "type": "comment" } ]
4
12
3,933
false
false
3,933
true
web2py/web2py
web2py
317,389,069
1,913
null
[ { "action": "opened", "author": "dsperling", "comment_id": null, "datetime": 1524602835000, "masked_author": "username_0", "text": "You cannot use the `admin` application inside a Docker container, even when accessing the container from the host with `http://127.0.0.1:8080/admin`. The user gets the message: `Admin is disabled because insecure channel`.\r\n\r\nThis is due to the Docker Network bridge and the fact that the connections into the container's web server do not happen over `127.0.0.1:8080` but rather `172.17.0.1:8080`.\r\n\r\nOur [current workaround](https://github.com/smithmicro/web2py/blob/master/nginx.conf) for this issue to to add an nginx web server container configured for HTTPS using self-signed certificates. The downside to this is that you have to click through the unsafe site warnings in your browser. There might be a better way to allow access to the `admin` application inside a container that we have not yet discovered.\r\n\r\n**Question**: other than the `DEMO_MODE` variable which only gives read-only access to `admin`, is there any way to bypass the security checks in front of the `admin` application? \r\n\r\nIf this does not exist, then a **feature request** would be to add an environment variable (or Python variable) like `WEB2PY_ADMIN_SECURITY_BYPASS=1` to explicitly bypass the `admin` security checks.\r\n\r\nTo reproduce this issue, run the following Docker command:\r\n```\r\ndocker run -it -p 8080:8080 smithmicro/web2py\r\n```\r\nThen open:\r\nhttp://127.0.0.1:8080/admin\r\n\r\nOur Dockerized Web2py project is located here:\r\nhttps://github.com/smithmicro/web2py", "title": "Admin application within a Docker Container", "type": "issue" }, { "action": "created", "author": "dsperling", "comment_id": 384150039, "datetime": 1524626973000, "masked_author": "username_0", "text": "Thanks for the suggestions. We will give this a try.", "title": null, "type": "comment" }, { "action": "created", "author": "dsperling", "comment_id": 384355556, "datetime": 1524674868000, "masked_author": "username_0", "text": "@username_1 - I figured out the last issue above. Here is the final bash script:\r\n```\r\nif [ \"$WEB2PY_CONTAINER_IP\" != '' ]; then\r\n python -c \"from gluon.main import save_password; save_password('$WEB2PY_PASSWORD',80)\"\r\n sed -i -e \"\\$acontainer_ip = os.environ.get('WEB2PY_CONTAINER_IP', None)\" \\\r\n /opt/web2py/applications/admin/models/0.py\r\n sed -i \"s/elif not request.is_local and not DEMO_MODE:/elif not request.is_local and not DEMO_MODE and not request.env.remote_addr == container_ip:/\" \\\r\n /opt/web2py/applications/admin/models/access.py\r\n sed -i \"s/local_hosts = set(\\[/local_hosts = set(\\[os.environ.get('WEB2PY_CONTAINER_IP', None), /\" \\\r\n /opt/web2py/gluon/main.py\r\nfi\r\n```\r\nThanks for your help. Closing.", "title": null, "type": "comment" }, { "action": "closed", "author": "dsperling", "comment_id": null, "datetime": 1524674868000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "leonelcamara", "comment_id": 384478357, "datetime": 1524703952000, "masked_author": "username_1", "text": "Consider making a pull request actually making those changes in the admin's code, there's a chance later changes could break your script.", "title": null, "type": "comment" }, { "action": "created", "author": "dsperling", "comment_id": 384705881, "datetime": 1524760260000, "masked_author": "username_0", "text": "@username_1 I have refactored the feature bypass in my Docker image. The problem is that Docker changes the network IP address range depending on the number of bridge networks created. This would make it difficult to to create examples that work out of the box.\r\n\r\nFor now we have decided to use the following code to bypass the security checks for any IP address. This increases the risk of someone deploying it, but hopefully the name of the variable offers the proper warning. This is not appropriate to do a PR with.\r\n\r\n```\r\n if [ \"$WEB2PY_ADMIN_SECURITY_BYPASS\" = 'true' ]; then\r\n if [\"$WEB2PY_PASSWORD\" = '']; then\r\n echo \"ERROR - WEB2PY_PASSWORD not specified\"\r\n exit 1\r\n fi\r\n echo \"WARNING! - Admin Application Security over HTTP bypassed\"\r\n python -c \"from gluon.main import save_password; save_password('$WEB2PY_PASSWORD',8080)\"\r\n sed -i \"s/elif not request.is_local and not DEMO_MODE:/elif False:/\" \\\r\n $WEB2PY_ROOT/applications/admin/models/access.py\r\n sed -i \"s/is_local=(env.remote_addr in local_hosts and client == env.remote_addr)/is_local=True/\" \\\r\n $WEB2PY_ROOT/gluon/main.py\r\n fi\r\n```\r\n\r\nHowever, we could create a secure version of this by making the `is_local` variable in `gluon/main.py` able to detect **if hosts are connecting over the same subnet**. If so, this would work for both 127.0.0.1 and Docker container scenarios. Maybe this is the long term fix for a container friendly Web2py admin app.", "title": null, "type": "comment" } ]
2
6
3,849
false
false
3,849
true
amitmurthy/LibExpat.jl
null
198,621,730
57
null
[ { "action": "opened", "author": "stevengj", "comment_id": null, "datetime": 1483499698000, "masked_author": "username_0", "text": "After JuliaLang/julia#19449, soon to be merged for Julia 0.6, you will no longer be able to access the raw bytes of a string via `string.data`; instead, do `Vector{UInt8}(string)`. For example, this affects:\r\n\r\nhttps://github.com/amitmurthy/LibExpat.jl/blob/57a412ba1d51da766baf41046bfe2eb24607118b/src/streaming.jl#L219\r\n\r\n(Instead of `length(txt.data)`, you can do `sizeof(txt)`.)", "title": "needs update for string.data changes", "type": "issue" }, { "action": "closed", "author": "musm", "comment_id": null, "datetime": 1483886940000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
2
383
false
false
383
false
hypesystem/showandtell.js
null
235,925,577
10
{ "number": 10, "repo": "showandtell.js", "user_login": "hypesystem" }
[ { "action": "opened", "author": "ViRuSTriNiTy", "comment_id": null, "datetime": 1497455245000, "masked_author": "username_0", "text": "... and updated tests (children.js still shows issues)\r\n\r\nsee issue #9", "title": "Fixes issue #9 - added unique event name \"showandtell\"", "type": "issue" }, { "action": "created", "author": "hypesystem", "comment_id": 308637005, "datetime": 1497506438000, "masked_author": "username_1", "text": "This looks pretty good. Are the tests still passing?\r\n\r\nI think I might prefer the events to be namespaced, eg. `showandtell.remove` instead of `remove` (and also instead of your proposed `showandtell` with reason: remove). What do you think about that?\r\n\r\nThanks for taking the time to make a PR :-)", "title": null, "type": "comment" }, { "action": "created", "author": "ViRuSTriNiTy", "comment_id": 308726810, "datetime": 1497532753000, "masked_author": "username_0", "text": "All tests are passing but i can't get `children.js` to work. Would you mind taking a look what`s the issue there? \r\n\r\nAs for the namespaced event name, i initialy opted towards this solution but i found some issues with it like:\r\n\r\nhttps://stackoverflow.com/questions/4718841/namespaced-custom-events-trigger\r\n\r\nMaybe i should just try it out, perhaps this issue isn't there anymore.", "title": null, "type": "comment" }, { "action": "created", "author": "hypesystem", "comment_id": 308746592, "datetime": 1497536126000, "masked_author": "username_1", "text": "Fair, let's go with the model for event naming you have implemented for now.\r\n\r\nWhat output is children.js giving you?", "title": null, "type": "comment" }, { "action": "created", "author": "hypesystem", "comment_id": 308746915, "datetime": 1497536197000, "masked_author": "username_1", "text": "Oh! I think maybe children.js never worked, so you're ok leaving it broken :-) (I know this is really bad practice, but it is as-yet unfixed...)", "title": null, "type": "comment" }, { "action": "created", "author": "hypesystem", "comment_id": 308746963, "datetime": 1497536205000, "masked_author": "username_1", "text": "I will just merge your code :-)", "title": null, "type": "comment" }, { "action": "created", "author": "ViRuSTriNiTy", "comment_id": 309353558, "datetime": 1497855061000, "masked_author": "username_0", "text": "Side note: i've tested namespace events with jQuery 2.1.4 and jQuery 3.0, seems to work properly, so the stackoverflow issue does not exist anymore.", "title": null, "type": "comment" }, { "action": "created", "author": "ViRuSTriNiTy", "comment_id": 309354976, "datetime": 1497855527000, "masked_author": "username_0", "text": "Another side note: the `children.js` test was never working as you added these tests in an issue discussion, see here: https://github.com/username_1/showandtell.js/issues/7#issuecomment-34924762", "title": null, "type": "comment" }, { "action": "created", "author": "hypesystem", "comment_id": 309387640, "datetime": 1497864593000, "masked_author": "username_1", "text": "Cool. I think maybe we should go for the namespaced events before we make a release, if there aren't any issues with them? What do you say?", "title": null, "type": "comment" }, { "action": "created", "author": "ViRuSTriNiTy", "comment_id": 310023414, "datetime": 1498037324000, "masked_author": "username_0", "text": "Namespace incoming in PR #12, see also issue #11", "title": null, "type": "comment" } ]
2
10
1,575
false
false
1,575
true
vaeth/zshrc-mv
null
222,490,038
2
null
[ { "action": "opened", "author": "Alessandro-Barbieri", "comment_id": null, "datetime": 1492536730000, "masked_author": "username_0", "text": "I set GISTS=(/usr/local/src /home/ale/src /home/ale/.zsh/plugins)\r\nand the auto-fu folder inside /home/ale/.zsh/plugins\r\nbut is not loaded, the auto-fu from the overlay instead works.\r\n\r\nI had done something wrong?", "title": "custom auto-fu folder is not recognized", "type": "issue" }, { "action": "created", "author": "vaeth", "comment_id": 294937960, "datetime": 1492540080000, "masked_author": "username_1", "text": "I had always problems if the auto-fu.zsh is not compiled.\r\nI suggest to generate auto-fu and auto-fu.zwc from auto-fu.zsh.\r\nAlso, it is necessary to use the pu branch (not the master branch) from the git repository.", "title": null, "type": "comment" } ]
2
2
430
false
false
430
false
librato/statsd-librato-backend
librato
176,687,835
60
{ "number": 60, "repo": "statsd-librato-backend", "user_login": "librato" }
[ { "action": "opened", "author": "bryanmikaelian", "comment_id": null, "datetime": 1473783963000, "masked_author": "username_0", "text": "This PR adds support for measurements with tags in Librato. By default, measurements will be submitted to Librato's new API that supports tagging. We are also two config options:\r\n- `tags` is a config option that lets you specify global tags for all measurements submitted to Librato. The `sourceName` regex will continue to function but will now be submitted for all measurements as a global tag named `source`. By default, this value is `{}`.\r\n- `writeToLegacy` is a config option that will let you write to the legacy Librato API endpoint. This is designed to help users transition to Librato's new API and can be switched off once they are ready. By default, this value is `true`.\r\n\r\nLibrato will be adding official statsd clients, over time, to support tagging. However, it is possible to submit a stat in its \"raw\" format using the following syntax for its name:\r\n\r\n`metric.name:value#tag1=value,tag2=value`\r\n\r\nIn the above example, 'tag1' and 'tag2' will be parsed out and submitted to Librato with the respective values for the given stat.\r\n\r\ncc @username_1", "title": "Support for tagged measurements", "type": "issue" }, { "action": "created", "author": "jderrett", "comment_id": 272708762, "datetime": 1484500287000, "masked_author": "username_1", "text": "Need to remove `sum_squares` from the payload, since it was removed from the API", "title": null, "type": "comment" }, { "action": "created", "author": "jderrett", "comment_id": 274526597, "datetime": 1485186949000, "masked_author": "username_1", "text": "Oops, also need to remove SOS logic:\r\nhttps://github.com/librato/statsd-librato-backend/blob/038c285f2aa9ba18dd8f61c5559360c54416e4e4/lib/librato.js#L217", "title": null, "type": "comment" } ]
2
3
1,296
false
false
1,296
true
Tyrrrz/CliWrap
null
263,751,307
8
null
[ { "action": "opened", "author": "Tyrrrz", "comment_id": null, "datetime": 1507496343000, "masked_author": "username_0", "text": "It would be nice to automatically kill all children if the parent is dying. Life as orphan isn't life worth living.\r\n\r\nRelevant:\r\nhttps://stackoverflow.com/a/2555354/2205454", "title": "Kill all executing child processes when the host process exits", "type": "issue" }, { "action": "created", "author": "Tyrrrz", "comment_id": 335038178, "datetime": 1507496417000, "masked_author": "username_0", "text": "Suggested approach: track all running processes in a list, remove from the list when the process is dead. When the ApplicationExit event fires, kill all remaining processes.", "title": null, "type": "comment" }, { "action": "created", "author": "Tyrrrz", "comment_id": 336409632, "datetime": 1507889081000, "masked_author": "username_0", "text": "Added `help wanted` because it's a good first-time issue to fix while i'm away from keyboard :p", "title": null, "type": "comment" }, { "action": "closed", "author": "Tyrrrz", "comment_id": null, "datetime": 1508067432000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
4
441
false
false
441
false
JNevrly/cascadict
null
213,810,468
3
null
[ { "action": "opened", "author": "nickmarton", "comment_id": null, "datetime": 1489420235000, "masked_author": "username_0", "text": "Hi contributors, this package is great. I was wondering if there were any plans to support an `OrderedDict` variant of `cascadict`?", "title": "Ordered CascaDict?", "type": "issue" }, { "action": "created", "author": "JNevrly", "comment_id": 286457275, "datetime": 1489505240000, "masked_author": "username_1", "text": "I have no immediate plan myself, but I agree it would be helpful to support `OrderedDict` as well. I'll try to get to it but no promises on schedule.", "title": null, "type": "comment" } ]
2
2
280
false
false
280
false
gogits/gogs
gogits
225,727,596
4,475
null
[ { "action": "opened", "author": "4oo4", "comment_id": null, "datetime": 1493738055000, "masked_author": "username_0", "text": "- Gogs version (or commit ref): 0.11.6.0407 \r\n- Go version: 1.6.2\r\n- Git version: 2.7.4\r\n- Operating system: Ubuntu 16.04\r\n- Database (use `[x]`):\r\n - [ ] PostgreSQL\r\n - [X] MySQL\r\n - [ ] MSSQL\r\n - [ ] SQLite\r\n- Can you reproduce the bug at https://try.gogs.io:\r\n - [ ] Yes (provide example URL)\r\n - [ ] No\r\n - [X] Not relevant\r\n- Log gist (usually found in `log/gogs.log`):\r\n`gogs.log`:\r\n```\r\n2017/05/02 08:55:23 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 08:55:23 [TRACE] CSRF Token: iv7r-ZSCA1GixKClsdLvhYIPEAM6MTQ5MzczMzMyMzAxNjkxNTI0OQ==\r\n2017/05/02 08:55:23 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 08:55:23 [TRACE] CSRF Token: iv7r-ZSCA1GixKClsdLvhYIPEAM6MTQ5MzczMzMyMzAxNjkxNTI0OQ==\r\n2017/05/02 08:55:23 [TRACE] Template: user/auth/login\r\n2017/05/02 09:05:07 [TRACE] Doing: MirrorUpdate\r\n2017/05/02 09:10:46 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:10:46 [TRACE] CSRF Token: iv7r-ZSCA1GixKClsdLvhYIPEAM6MTQ5MzczMzMyMzAxNjkxNTI0OQ==\r\n2017/05/02 09:10:46 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:10:46 [TRACE] CSRF Token: 112amqPTYuKm_7khs421QC9CIWQ6MTQ5MzczNDI0NjE1MTQ5NDMyMw==\r\n2017/05/02 09:10:46 [TRACE] Template: user/dashboard/dashboard\r\n2017/05/02 09:10:56 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:10:56 [TRACE] CSRF Token: 112amqPTYuKm_7khs421QC9CIWQ6MTQ5MzczNDI0NjE1MTQ5NDMyMw==\r\n2017/05/02 09:11:13 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:11:13 [TRACE] CSRF Token: 112amqPTYuKm_7khs421QC9CIWQ6MTQ5MzczNDI0NjE1MTQ5NDMyMw==\r\n2017/05/02 09:11:13 [TRACE] Template: repo/issue/view\r\n2017/05/02 09:11:24 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:11:24 [TRACE] CSRF Token: 112amqPTYuKm_7khs421QC9CIWQ6MTQ5MzczNDI0NjE1MTQ5NDMyMw==\r\n2017/05/02 09:11:27 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:11:27 [TRACE] CSRF Token: 112amqPTYuKm_7khs421QC9CIWQ6MTQ5MzczNDI0NjE1MTQ5NDMyMw==\r\n2017/05/02 09:11:27 [TRACE] Template: repo/home\r\n2017/05/02 09:11:33 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:11:33 [TRACE] CSRF Token: 112amqPTYuKm_7khs421QC9CIWQ6MTQ5MzczNDI0NjE1MTQ5NDMyMw==\r\n2017/05/02 09:11:33 [TRACE] Template: repo/home\r\n2017/05/02 09:11:51 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:11:51 [TRACE] CSRF Token: 112amqPTYuKm_7khs421QC9CIWQ6MTQ5MzczNDI0NjE1MTQ5NDMyMw==\r\n2017/05/02 09:11:51 [TRACE] Detected encoding: UTF-8 (fast)\r\n2017/05/02 09:11:51 [TRACE] Template: repo/home\r\n2017/05/02 09:15:07 [TRACE] Doing: MirrorUpdate\r\n2017/05/02 09:25:07 [TRACE] Doing: MirrorUpdate\r\n2017/05/02 09:31:13 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:31:13 [TRACE] CSRF Token: 112amqPTYuKm_7khs421QC9CIWQ6MTQ5MzczNDI0NjE1MTQ5NDMyMw==\r\n2017/05/02 09:31:13 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:31:13 [TRACE] CSRF Token: hSPxiUshXWFpuSaZll2wX_b_iXw6MTQ5MzczNTQ3Mzk3MTgwMTQ3MA==\r\n2017/05/02 09:31:14 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:31:14 [TRACE] CSRF Token: hSPxiUshXWFpuSaZll2wX_b_iXw6MTQ5MzczNTQ3Mzk3MTgwMTQ3MA==\r\n2017/05/02 09:31:14 [TRACE] Template: user/auth/login\r\n2017/05/02 09:31:41 [TRACE] Log Mode: File (Trace)\r\n 2017/05/02 09:31:41 [ INFO] Gogs 0.11.6.0407\r\n2017/05/02 09:31:41 [ INFO] Cache Service Enabled\r\n2017/05/02 09:31:41 [ INFO] Session Service Enabled\r\n2017/05/02 09:31:41 [ INFO] Git Version: 2.7.4\r\n2017/05/02 09:31:41 [ INFO] Run Mode: Production\r\n2017/05/02 09:31:41 [TRACE] Doing: CheckRepoStats\r\n2017/05/02 09:31:41 [ INFO] Listen: http://127.0.0.1:3000/gogs\r\n2017/05/02 09:35:29 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:35:29 [TRACE] CSRF Token: hSPxiUshXWFpuSaZll2wX_b_iXw6MTQ5MzczNTQ3Mzk3MTgwMTQ3MA==\r\n2017/05/02 09:35:30 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:35:30 [TRACE] CSRF Token: 0AyVTIXsz9R7r6sMkC-oqRmhCzs6MTQ5MzczNTczMDEwNzE5MDUwOQ==\r\n2017/05/02 09:35:30 [TRACE] Template: user/dashboard/dashboard\r\n2017/05/02 09:35:46 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:35:46 [TRACE] CSRF Token: 0AyVTIXsz9R7r6sMkC-oqRmhCzs6MTQ5MzczNTczMDEwNzE5MDUwOQ==\r\n2017/05/02 09:36:06 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:36:06 [TRACE] CSRF Token: 0AyVTIXsz9R7r6sMkC-oqRmhCzs6MTQ5MzczNTczMDEwNzE5MDUwOQ==\r\n2017/05/02 09:36:06 [TRACE] Template: repo/home\r\n2017/05/02 09:36:11 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:36:11 [TRACE] CSRF Token: 0AyVTIXsz9R7r6sMkC-oqRmhCzs6MTQ5MzczNTczMDEwNzE5MDUwOQ==\r\n2017/05/02 09:36:11 [TRACE] Template: repo/home\r\n2017/05/02 09:36:15 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:36:15 [TRACE] CSRF Token: 0AyVTIXsz9R7r6sMkC-oqRmhCzs6MTQ5MzczNTczMDEwNzE5MDUwOQ==\r\n2017/05/02 09:36:15 [TRACE] Detected encoding: UTF-8 (fast)\r\n2017/05/02 09:36:15 [TRACE] Template: repo/diff/page\r\n2017/05/02 09:36:38 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:36:38 [TRACE] CSRF Token: 0AyVTIXsz9R7r6sMkC-oqRmhCzs6MTQ5MzczNTczMDEwNzE5MDUwOQ==\r\n2017/05/02 09:36:38 [TRACE] Template: repo/commits\r\n2017/05/02 09:36:42 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:36:42 [TRACE] CSRF Token: 0AyVTIXsz9R7r6sMkC-oqRmhCzs6MTQ5MzczNTczMDEwNzE5MDUwOQ==\r\n2017/05/02 09:36:42 [TRACE] Detected encoding: UTF-8 (fast)\r\n2017/05/02 09:36:42 [TRACE] Template: repo/diff/page\r\n2017/05/02 09:36:51 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:36:51 [TRACE] CSRF Token: 0AyVTIXsz9R7r6sMkC-oqRmhCzs6MTQ5MzczNTczMDEwNzE5MDUwOQ==\r\n2017/05/02 09:37:07 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:37:07 [TRACE] CSRF Token: 0AyVTIXsz9R7r6sMkC-oqRmhCzs6MTQ5MzczNTczMDEwNzE5MDUwOQ==\r\n2017/05/02 09:37:07 [TRACE] Template: repo/home\r\n2017/05/02 09:38:42 [TRACE] Log Mode: File (Trace)\r\n2017/05/02 09:38:42 [ INFO] Gogs 0.11.6.0407\r\n2017/05/02 09:38:42 [ INFO] Cache Service Enabled\r\n2017/05/02 09:38:42 [ INFO] Session Service Enabled\r\n2017/05/02 09:38:42 [ INFO] Git Version: 2.7.4\r\n2017/05/02 09:38:42 [ INFO] Run Mode: Production\r\n2017/05/02 09:38:42 [TRACE] Doing: CheckRepoStats\r\n2017/05/02 09:38:42 [ INFO] Listen: http://127.0.0.1:3000/gogs\r\n2017/05/02 09:38:59 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:38:59 [TRACE] CSRF Token: 0AyVTIXsz9R7r6sMkC-oqRmhCzs6MTQ5MzczNTczMDEwNzE5MDUwOQ==\r\n2017/05/02 09:38:59 [TRACE] Template: user/profile\r\n2017/05/02 09:39:02 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:39:02 [TRACE] CSRF Token: 0AyVTIXsz9R7r6sMkC-oqRmhCzs6MTQ5MzczNTczMDEwNzE5MDUwOQ==\r\n2017/05/02 09:39:02 [TRACE] Template: repo/home\r\n2017/05/02 09:39:06 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:39:06 [TRACE] CSRF Token: 0AyVTIXsz9R7r6sMkC-oqRmhCzs6MTQ5MzczNTczMDEwNzE5MDUwOQ==\r\n2017/05/02 09:39:06 [TRACE] Detected encoding: UTF-8 (fast)\r\n2017/05/02 09:39:06 [TRACE] Template: repo/diff/page\r\n2017/05/02 09:39:15 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:39:15 [TRACE] CSRF Token: 0AyVTIXsz9R7r6sMkC-oqRmhCzs6MTQ5MzczNTczMDEwNzE5MDUwOQ==\r\n2017/05/02 09:39:15 [TRACE] Template: user/dashboard/dashboard\r\n2017/05/02 09:44:40 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:44:40 [TRACE] CSRF Token: 0AyVTIXsz9R7r6sMkC-oqRmhCzs6MTQ5MzczNTczMDEwNzE5MDUwOQ==\r\n2017/05/02 09:44:40 [TRACE] Template: user/profile\r\n2017/05/02 09:44:42 [TRACE] Session ID: b1933d701a87aaec\r\n2017/05/02 09:44:42 [TRACE] CSRF Token: 0AyVTIXsz9R7r6sMkC-oqRmhCzs6MTQ5MzczNTczMDEwNzE5MDUwOQ==\r\n2017/05/02 09:44:42 [TRACE] Template: user/dashboard/dashboard\r\n2017/05/02 09:48:42 [TRACE] Doing: MirrorUpdate\r\n```\r\n\r\n\r\n`xorm.log`:\r\n```\r\n2017/05/02 09:31:41 [xorm] [warn] 2017/05/02 09:31:41.162624 Table repository Column enable_wiki db default is 1, struct default is true\r\n2017/05/02 09:31:41 [xorm] [warn] 2017/05/02 09:31:41.162643 Table repository Column enable_issues db default is 1, struct default is true\r\n2017/05/02 09:31:41 [xorm] [warn] 2017/05/02 09:31:41.162655 Table repository Column enable_pulls db default is 1, struct default is true\r\n2017/05/02 09:31:41 [xorm] [warn] 2017/05/02 09:31:41.162660 Table repository Column is_fork db default is 0, struct default is false\r\n2017/05/02 09:31:41 [xorm] [warn] 2017/05/02 09:31:41.162806 Table action Column is_private db default is 0, struct default is false\r\n2017/05/02 09:31:41 [xorm] [warn] 2017/05/02 09:31:41.163064 Table mirror Column enable_prune db default is 1, struct default is true\r\n2017/05/02 09:31:41 [xorm] [warn] 2017/05/02 09:31:41.163110 Table release Column is_draft db default is 0, struct default is false\r\n2017/05/02 09:31:41 [xorm] [warn] 2017/05/02 09:31:41.163135 Table login_source Column is_actived db default is 0, struct default is false\r\n2017/05/02 09:38:42 [xorm] [warn] 2017/05/02 09:38:42.387559 Table repository Column enable_wiki db default is 1, struct default is true\r\n2017/05/02 09:38:42 [xorm] [warn] 2017/05/02 09:38:42.387580 Table repository Column enable_issues db default is 1, struct default is true\r\n2017/05/02 09:38:42 [xorm] [warn] 2017/05/02 09:38:42.387592 Table repository Column enable_pulls db default is 1, struct default is true\r\n2017/05/02 09:38:42 [xorm] [warn] 2017/05/02 09:38:42.387597 Table repository Column is_fork db default is 0, struct default is false\r\n2017/05/02 09:38:42 [xorm] [warn] 2017/05/02 09:38:42.387751 Table action Column is_private db default is 0, struct default is false\r\n2017/05/02 09:38:42 [xorm] [warn] 2017/05/02 09:38:42.388019 Table mirror Column enable_prune db default is 1, struct default is true\r\n2017/05/02 09:38:42 [xorm] [warn] 2017/05/02 09:38:42.388062 Table release Column is_draft db default is 0, struct default is false\r\n2017/05/02 09:38:42 [xorm] [warn] 2017/05/02 09:38:42.388088 Table login_source Column is_actived db default is 0, struct default is false\r\n```\r\n## Description\r\nNot sure if this is related to https://github.com/gogits/gogs/issues/2786 , but today I was going back to browse the commits I had made last night, and when I tried to view a very small commit I made, gogs hung while trying to load the page and the CPU spiked to 200%. While that was happening I was still able to go to other commits, issues, etc and they loaded at normal speed, it just seems to be something in that specific commit that causes it to hang. I verified that gogs was the culprit when the CPU returned to normal after restarting gogs.\r\n\r\nIn the commit in question, all I did was make a script executable but didn't change anything else.\r\n```\r\ncommit 2cf819b64645c9d2fc95b1272f22e862138ae3e2\r\nAuthor: xxxx <yyy@example.com>\r\nDate: Mon May 1 19:38:10 2017 -0500\r\n\r\n fix file mod\r\n\r\ndiff --git a/storage_info.sh b/storage_info.sh\r\nold mode 100644\r\nnew mode 100755\r\n```\r\n\r\nLet me know if I can provide anything else, or if I need to upload the repo to https://try.gogs.io for reproduction.", "title": "Extremely high CPU usage (200%) when trying to view single commit", "type": "issue" }, { "action": "created", "author": "Unknwon", "comment_id": 305959435, "datetime": 1496476854000, "masked_author": "username_1", "text": "Yes, if possible please upload this repository to demo site see we can spot the issue.", "title": null, "type": "comment" }, { "action": "created", "author": "esayre-um", "comment_id": 307131497, "datetime": 1496934227000, "masked_author": "username_2", "text": "I'm having an exceedingly similar issue and can open a separate bug. Essentially we're seeing gogs use 100+% cpu cycle for each thread trying to display a particular couple commits. These were also related to a user attempting to set the mode (execute bit) on a file.", "title": null, "type": "comment" }, { "action": "created", "author": "Unknwon", "comment_id": 307180953, "datetime": 1496944837000, "masked_author": "username_1", "text": "@username_2 thanks for the info!\r\n\r\nHowever I don't seem to be able to understand the \"case\" you're trying to describe. If possible, the only way to debug this is to upload the exact same repository to demo site and see if problem occurs there. Otherwise it is impossible for me to debug...", "title": null, "type": "comment" }, { "action": "created", "author": "esayre-um", "comment_id": 307183894, "datetime": 1496945519000, "masked_author": "username_2", "text": "Unfortunately our source code is too sensitive for me to push to your public server, however essentially the developer had several commits that were only file mode changes (the developer wanted the execution bit to be set). He had about 6 different commits related to this that he had pushed, but only a couple of them cause Gogs to race trying to display the commit (e.g. … repo .../commit/bbefe6676a36f8cde5e6789487b214b012f9ba82)", "title": null, "type": "comment" }, { "action": "created", "author": "Unknwon", "comment_id": 307203586, "datetime": 1496950100000, "masked_author": "username_1", "text": "There is only one \"thread\" that parses diff output for a commit page (e.g. `repo .../commit/bbefe6676a36f8cde5e6789487b214b012f9ba82`), so I don't think I'm agree with you.\r\n\r\nDoes the \"race\" only and 100% reproducible for that commit (changes file permission)? Or... what?", "title": null, "type": "comment" }, { "action": "created", "author": "esayre-um", "comment_id": 307212077, "datetime": 1496952264000, "masked_author": "username_2", "text": "Yes, it happens every time I try to view the offending commit. If I try more than once it'll elevate CPU usage another 100% or so, which is why I assumed threads. Everything maxes out at 399% CPU so I assume my VM is limited two four processes.", "title": null, "type": "comment" }, { "action": "created", "author": "esayre-um", "comment_id": 307214686, "datetime": 1496952880000, "masked_author": "username_2", "text": "@username_1 is there any debugging logging I can enable?", "title": null, "type": "comment" }, { "action": "created", "author": "Unknwon", "comment_id": 307215954, "datetime": 1496953195000, "masked_author": "username_1", "text": "@username_2 thanks. If you can make a demo repository and does exact same kind of change and push to demo site, would be very helpful to see if it's a general problem or just particular to your VM.", "title": null, "type": "comment" }, { "action": "created", "author": "esayre-um", "comment_id": 307219775, "datetime": 1496954116000, "masked_author": "username_2", "text": "@username_1 wow, I was able to recreate the issue with just 2 commits into a new repo. I've uploaded the repo at https://try.gogs.io/esayre/GogsModeTest/\r\n\r\nYou can view the offending commit at https://try.gogs.io/esayre/GogsModeTest/commit/0d094c5571df74fe0ddffe22634a45135b06b4bc but beware that it will start the runaway process.", "title": null, "type": "comment" }, { "action": "created", "author": "Unknwon", "comment_id": 307222343, "datetime": 1496954759000, "masked_author": "username_1", "text": "Awesome, I think I know the problem. The code falls into a infinite loop with just mode change (expect some content or file name change).", "title": null, "type": "comment" }, { "action": "created", "author": "Unknwon", "comment_id": 307225356, "datetime": 1496955455000, "masked_author": "username_1", "text": "Patch has pushed to fix this issue, please test on `develop` branch or https://try.gogs.io/esayre/GogsModeTest/commit/0d094c5571df74fe0ddffe22634a45135b06b4bc.", "title": null, "type": "comment" }, { "action": "created", "author": "esayre-um", "comment_id": 307228103, "datetime": 1496956134000, "masked_author": "username_2", "text": "@username_1 thanks. I see it's working fine on try.gogs.io. I only have a productive install here and would rather wait before testing locally. How long do you think before it would make it to the normal release?\r\n\r\nI generally install from binary… can I get a binary for the develop branch? If so, can I swap out my Gogs directory temporarily and safely move back to the productive version?", "title": null, "type": "comment" }, { "action": "created", "author": "Unknwon", "comment_id": 307235150, "datetime": 1496957972000, "masked_author": "username_1", "text": "@username_2 not right now.... maybe this weekend but no promise.", "title": null, "type": "comment" }, { "action": "created", "author": "esayre-um", "comment_id": 307236374, "datetime": 1496958327000, "masked_author": "username_2", "text": "@username_1 thanks much. I'll trust since it's resolved on try.gogs.io that it's resolved.", "title": null, "type": "comment" }, { "action": "closed", "author": "Unknwon", "comment_id": null, "datetime": 1497071702000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
3
16
13,539
false
false
13,539
true
mockito/mockito
mockito
323,941,383
1,391
{ "number": 1391, "repo": "mockito", "user_login": "mockito" }
[ { "action": "opened", "author": "anuraaga", "comment_id": null, "datetime": 1526549194000, "masked_author": "username_0", "text": "It is possible to register an extension for automatic use using Java's `ServiceLoader` mechanism.\r\n\r\nhttps://junit.org/junit5/docs/current/user-guide/#extensions-registration-automatic\r\n\r\nSome projects may want to provide their own `META-INF` file to avoid tediously adding `MockitoExtension` to tests since it is very common. However, `ServiceLoader` requires the class to have a no-args *public* constructor, so the current extension cannot be used with the `ServiceLoader` mechanism.\r\n\r\nFixes #1390\r\n\r\ncheck list\r\n\r\n - [X] Read the [contributing guide](https://github.com/mockito/mockito/blob/release/2.x/.github/CONTRIBUTING.md)\r\n - [X] PR should be motivated, i.e. what does it fix, why, and if relevant how\r\n - [X] If possible / relevant include an example in the description, that could help all readers\r\n including project members to get a better picture of the change\r\n - [X] Avoid other runtime dependencies\r\n - [X] Meaningful commit history ; intention is important please rebase your commit history so that each\r\n commit is meaningful and help the people that will explore a change in 2 years\r\n - [X] The pull request follows coding style\r\n - [X] Mention `Fixes #<issue number>` in the description _if relevant_\r\n - [X] At least one commit should mention `Fixes #<issue number>` _if relevant_", "title": "Make MockitoExtension constructor public", "type": "issue" }, { "action": "created", "author": "TimvdLippe", "comment_id": 389808178, "datetime": 1526550015000, "masked_author": "username_1", "text": "Would be great if you could add a test for this. Not sure if that is possible? It is not a blocking issue for me though.", "title": null, "type": "comment" }, { "action": "created", "author": "anuraaga", "comment_id": 389817447, "datetime": 1526552021000, "masked_author": "username_0", "text": "Added a test (a bit heavyweight since it needs to be a separate project to avoid influencing others)", "title": null, "type": "comment" } ]
3
4
1,536
false
true
1,536
false
jmarcher/valet-linux
null
157,776,947
1
{ "number": 1, "repo": "valet-linux", "user_login": "jmarcher" }
[ { "action": "opened", "author": "adriaanzon", "comment_id": null, "datetime": 1464730771000, "masked_author": "username_0", "text": "Question: does it already work for you?\r\n\r\nFor me, dnsmasq is not working. And when I try to use lvh.me as domain extension, Caddy gives me a 502 error.", "title": "Fix install command for Arch Linux", "type": "issue" }, { "action": "created", "author": "adriaanzon", "comment_id": 222845792, "datetime": 1464735349000, "masked_author": "username_0", "text": "Hmm. In `/root/.valet/Caddyfile`, I see that it looks for `/var/run/php/php7.0-fpm.sock`, but on Arch it's `/var/run/php-fpm/php-fpm.sock`.\r\nAlso, when I run `valet status`, I see that it tried to enable `php7.0-fpm.service`, but on Arch it's `php-fpm.service`.\r\nSo that might be why it doesn't work for me.", "title": null, "type": "comment" }, { "action": "created", "author": "jmarcher", "comment_id": 222869128, "datetime": 1464744765000, "masked_author": "username_1", "text": "I just started this package today and still trying to get everything to work, thanks for helping!", "title": null, "type": "comment" } ]
2
3
556
false
false
556
false
alltheplaces/alltheplaces
alltheplaces
280,746,445
316
{ "number": 316, "repo": "alltheplaces", "user_login": "alltheplaces" }
[ { "action": "opened", "author": "josh0203e", "comment_id": null, "datetime": 1512847095000, "masked_author": "username_0", "text": "", "title": "13-wendys", "type": "issue" } ]
2
3
1,292
false
true
0
false
strongloop/loopback-datasource-juggler
strongloop
168,265,517
1,023
{ "number": 1023, "repo": "loopback-datasource-juggler", "user_login": "strongloop" }
[ { "action": "opened", "author": "superkhau", "comment_id": null, "datetime": 1469776855000, "masked_author": "username_0", "text": "KeyValue memory connector RI.", "title": "Add KeyValue memory connector", "type": "issue" }, { "action": "created", "author": "superkhau", "comment_id": 236112335, "datetime": 1469776887000, "masked_author": "username_0", "text": "/cc @username_1", "title": null, "type": "comment" }, { "action": "created", "author": "bajtos", "comment_id": 236603744, "datetime": 1470063086000, "masked_author": "username_1", "text": "@username_0 I added basic implementation of `get` and `set` methods together with tests.\r\n\r\n@raymondfeng @username_2 please review if this implementation of KeyValue API & connector is going in the right direction.", "title": null, "type": "comment" }, { "action": "created", "author": "bajtos", "comment_id": 236911191, "datetime": 1470146070000, "masked_author": "username_1", "text": "@raymondfeng @username_2 @username_0 I pushed few more commits implemeting `set(key, value, ttl)` and `expire(key, ttl)`. PTAL", "title": null, "type": "comment" }, { "action": "created", "author": "bajtos", "comment_id": 237221578, "datetime": 1470226815000, "masked_author": "username_1", "text": "At the moment, this pull request contains all that's needed for the first cut of this new feature IMO.\r\n\r\nModels attached to a kv-memory datasource will get the following *static* methods:\r\n\r\n```js\r\nColor.set(key, value);\r\nColor.set(key, value, ttl);\r\nColor.set(key, value, { ttl: ttl });\r\n\r\nColor.get(key);\r\n\r\nColor.expire(key, ttl);\r\n```\r\n\r\nThe proposal in strongloop/loopback#2525 describes prototype methods too. In my view, they are a syntactic sugar that's out of scope of this initial pull request, and should be implemented in the next iteration (e.g. right after this patch is landed).\r\n\r\nAnother missing item is `Color.ttl(key)`, I am not sure how important that method is? If we think it should be part of the initial release, then we can implement it in the next iteration too.\r\n\r\n@raymondfeng @username_2 @username_0 please review", "title": null, "type": "comment" }, { "action": "created", "author": "superkhau", "comment_id": 237476277, "datetime": 1470296196000, "masked_author": "username_0", "text": "LGTM, nice work.", "title": null, "type": "comment" }, { "action": "created", "author": "ritch", "comment_id": 237609224, "datetime": 1470328539000, "masked_author": "username_2", "text": "It is important.", "title": null, "type": "comment" }, { "action": "created", "author": "superkhau", "comment_id": 237737638, "datetime": 1470362946000, "masked_author": "username_0", "text": "@username_1 Added TTL, review please.", "title": null, "type": "comment" }, { "action": "created", "author": "bajtos", "comment_id": 237806139, "datetime": 1470389500000, "masked_author": "username_1", "text": "FWIW, `ttl` method is not available in all key-value stores. For example, memcached does not support it according to [SO](http://stackoverflow.com/questions/5329431/memcache-get-key-expiry-times) and [client API docs](https://www.npmjs.com/package/memcached#api).\r\n\r\nI am fine with including `ttl` in the first release, but please move it to a new standalone pull request, so that we can land this one. @username_0 \r\n\r\n/cc @username_2", "title": null, "type": "comment" }, { "action": "created", "author": "superkhau", "comment_id": 238007539, "datetime": 1470462435000, "masked_author": "username_0", "text": "@username_1 TTL code moved to https://github.com/strongloop/loopback-datasource-juggler/pull/1030, also removed TTL code from this PR.", "title": null, "type": "comment" }, { "action": "created", "author": "bajtos", "comment_id": 238169437, "datetime": 1470643942000, "masked_author": "username_1", "text": "Thank you! I'll clean up the commit history and get this landed to both `master` and `2.x`.", "title": null, "type": "comment" }, { "action": "created", "author": "bajtos", "comment_id": 238216882, "datetime": 1470658067000, "masked_author": "username_1", "text": "@slnode test please", "title": null, "type": "comment" } ]
3
12
1,938
false
false
1,938
true
Behatch/contexts
Behatch
299,173,634
241
{ "number": 241, "repo": "contexts", "user_login": "Behatch" }
[ { "action": "opened", "author": "ilovemistakes", "comment_id": null, "datetime": 1519257302000, "masked_author": "username_0", "text": "Add missing translations for JSON context.\r\nFix typo in translation template for `the response should be equal to` (extra colon).", "title": "Add missing translations in the template, fix typo", "type": "issue" }, { "action": "created", "author": "sanpii", "comment_id": 371843510, "datetime": 1520609017000, "masked_author": "username_1", "text": "Also merged.", "title": null, "type": "comment" } ]
2
2
141
false
false
141
false
ultrabug/py3status
null
220,132,151
886
{ "number": 886, "repo": "py3status", "user_login": "ultrabug" }
[ { "action": "opened", "author": "tobes", "comment_id": null, "datetime": 1491549851000, "masked_author": "username_0", "text": "#859 should be fixed by this.\r\n\r\nI can't reproduce the issue but looking at the code this makes sense as to why we get the traceback @username_1 reported there.", "title": "fix group width issue when no output", "type": "issue" }, { "action": "created", "author": "lasers", "comment_id": 292463087, "datetime": 1491550173000, "masked_author": "username_1", "text": "Tested okay. Thanks.", "title": null, "type": "comment" }, { "action": "created", "author": "ultrabug", "comment_id": 292864222, "datetime": 1491807084000, "masked_author": "username_2", "text": "Thanks @username_0 but it does not work for me.\r\n\r\nI have modules depending on the network to be up (graphite ones mostly) and when they can't connect I get an error on the bar (the new way) which enlarges the space those modules usually consume.\r\n\r\nWhen I connect back to the network, they catch up and start working again but when they do, the width allocated to the modules does not shrink back.\r\n\r\nExample output with lots of blank space : http://username_2.fr/py3status/2017-04-10-084809_212x30_scrot.png", "title": null, "type": "comment" }, { "action": "created", "author": "lasers", "comment_id": 292874244, "datetime": 1491810413000, "masked_author": "username_1", "text": "This fixes (Bug 1) in my findings. I got exception log to prove it. Yours is (Bug 3).", "title": null, "type": "comment" }, { "action": "created", "author": "tobes", "comment_id": 292891716, "datetime": 1491815156000, "masked_author": "username_0", "text": "@username_2 do you use `fixed_width = True`?", "title": null, "type": "comment" }, { "action": "created", "author": "ultrabug", "comment_id": 292911883, "datetime": 1491820330000, "masked_author": "username_2", "text": "no I don't\r\n\r\nwhat's funny is that after some time, the size shrinks back to fit the modules output", "title": null, "type": "comment" }, { "action": "created", "author": "tobes", "comment_id": 293046986, "datetime": 1491850956000, "masked_author": "username_0", "text": "@username_2 I have made a change to this PR that I hope will fix the issue for you. It is not the correct fix but should help track down the issue. If it doesn't that still helps find the real cause.\r\n\r\nIf you could test that would be great", "title": null, "type": "comment" }, { "action": "created", "author": "lasers", "comment_id": 293072825, "datetime": 1491856992000, "masked_author": "username_1", "text": "@username_0 I test this too... I think for username_2's Bug 3. Does not work. Also, I got error.\r\n```\r\n2017-04-10 15:40:03 INFO Traceback\r\nIndexError: list index out of range\r\n File \"/home/chris/src/py3status/py3status/module.py\", line 709, in run\r\n response = method()\r\n File \"/home/chris/src/py3status/py3status/modules/group.py\", line 218, in group\r\n current_output = self._get_output()\r\n File \"/home/chris/src/py3status/py3status/modules/group.py\", line 180, in _get_output\r\n current[0]['full_text']\r\n```", "title": null, "type": "comment" }, { "action": "created", "author": "tobes", "comment_id": 293109836, "datetime": 1491867942000, "masked_author": "username_0", "text": "@username_2 Have you got a minimal config where you still have issues? I've tried everything to try to reproduce this.", "title": null, "type": "comment" }, { "action": "created", "author": "lasers", "comment_id": 293110816, "datetime": 1491868374000, "masked_author": "username_1", "text": "```\r\nusername_1~/src/py3status/py3status/modules git:(master✗) git diff\r\n diff --git a/py3status/modules/bluetooth.py b/py3status/modules/bluetooth.py\r\n index b73d4eac..7ed9b632 100644\r\n --- a/py3status/modules/bluetooth.py\r\n +++ b/py3status/modules/bluetooth.py\r\n @@ -98,10 +98,7 @@ class Py3status:\r\n self.py3.log(msg)\r\n\r\n def bluetooth(self):\r\n - try:\r\n - devices = get_connected_devices()\r\n - except dbus.DBusException:\r\n - self.py3.error(STRING_NOT_STARTED)\r\n + devices = get_connected_devices()\r\n\r\n if devices:\r\n data = []\r\n diff --git a/py3status/modules/group.py b/py3status/modules/group.py\r\n index 1210f4cd..accad73b 100644\r\n --- a/py3status/modules/group.py\r\n +++ b/py3status/modules/group.py\r\n @@ -101,7 +101,7 @@ class Py3status:\r\n button_toggle = 1\r\n click_mode = 'all'\r\n cycle = 0\r\n - fixed_width = False\r\n + fixed_width = True\r\n format = None\r\n format_button_closed = u'+'\r\n format_button_open = u'-'\r\n```\r\n```\r\n group uptime {\r\n format = \"up {output}\"\r\n bluetooth{\r\n }\r\n uptime {\r\n format = '[\\?if=weeks {weeks} weeks ][\\?if=days {days} days ][\\?if=hours {hours} hours ][\\?if=minutes {minutes} minutes]'\r\n }\r\n uptime {\r\n format = '[\\?if=weeks {weeks}w ][\\?if=days {days}d ][\\?if=hours {hours}h ][\\?if=minutes {minutes}m]'\r\n }\r\n uptime {\r\n format = '[\\?if=days {days}, ][\\?if=hours {hours}:][\\?if=minutes {minutes:02d}]'\r\n }\r\n }\r\n```", "title": null, "type": "comment" }, { "action": "created", "author": "ultrabug", "comment_id": 293605538, "datetime": 1492009245000, "masked_author": "username_2", "text": "No couldn't find the time to get a simple and repeatable example yet I'm sorry", "title": null, "type": "comment" }, { "action": "created", "author": "ultrabug", "comment_id": 321754910, "datetime": 1502439486000, "masked_author": "username_2", "text": "@username_1 @username_0 can I merge this ? I think it fixes at least @username_1 bug 1, and I tried but failed to find a reproductible example so for now we can go foward", "title": null, "type": "comment" }, { "action": "created", "author": "tobes", "comment_id": 321756995, "datetime": 1502440129000, "masked_author": "username_0", "text": "yeah it fixes a problem even if not your one :)", "title": null, "type": "comment" }, { "action": "created", "author": "lasers", "comment_id": 327320532, "datetime": 1504650170000, "masked_author": "username_1", "text": "@username_2 Can you share the `group` config and a list of modules in that `group`? That might get us somewhere. Is this reproducible if you used `bluetooth` (code below) to throw an exception? Can we have a screenshot of `graphite` in same working state? Could it be a `graphite` issue? \r\n\r\n```\r\ndiff --git a/py3status/modules/bluetooth.py b/py3status/modules/bluetooth.py\r\nindex e4c22884..1402e3c0 100644\r\n--- a/py3status/modules/bluetooth.py\r\n+++ b/py3status/modules/bluetooth.py\r\n@@ -124,10 +124,7 @@ class Py3status:\r\n self.py3.log(msg)\r\n \r\n def bluetooth(self):\r\n- try:\r\n- devices = get_connected_devices()\r\n- except dbus.DBusException:\r\n- self.py3.error(STRING_NOT_STARTED)\r\n+ devices = get_connected_devices()\r\n \r\n if devices:\r\n data = []\r\n```", "title": null, "type": "comment" } ]
3
14
4,450
false
false
4,450
true
mesosphere/dcos-cassandra-service
mesosphere
189,359,219
315
{ "number": 315, "repo": "dcos-cassandra-service", "user_login": "mesosphere" }
[ { "action": "opened", "author": "florianva", "comment_id": null, "datetime": 1479207094000, "masked_author": "username_0", "text": "#314 \r\n\r\nFor add the readme :)", "title": "Ajout du README.md", "type": "issue" }, { "action": "created", "author": "nickbp", "comment_id": 265324660, "datetime": 1481072887000, "masked_author": "username_1", "text": "ok to test", "title": null, "type": "comment" }, { "action": "created", "author": "nickbp", "comment_id": 265325008, "datetime": 1481072998000, "masked_author": "username_1", "text": "It looks like someone's added a README.md now, which links into the various docs/ sections. Feel free to reopen this PR or create a new one if you want to change things in there.", "title": null, "type": "comment" } ]
3
4
258
false
true
218
false
CurrencyCloud/currencycloud-java
CurrencyCloud
84,096,457
34
null
[ { "action": "opened", "author": "mmazi", "comment_id": null, "datetime": 1433262835000, "masked_author": "username_0", "text": "Sonatype credentials (the same as for their Jira) are required to push the artifacts to the Maven repository.\r\n\r\nPlease test that this works.\r\n\r\nYou need Java 7+ SDK, git and Maven 3 installed.\r\n\r\nAdd the credentials to `~/.m2/settings.xml`:\r\n\r\n```xml\r\n<settings>\r\n ...\r\n <servers>\r\n <server>\r\n <id>ossrh</id>\r\n <username>your-jira-id</username>\r\n <password>your-jira-pwd</password>\r\n </server>\r\n </servers>\r\n ...\r\n</settings>\r\n```\r\n\r\nThen run this:\r\n\r\n```sh\r\ngit clone git@github.com:CurrencyCloud/currencycloud-java.git\r\ncd currencycloud-java\r\nmvn clean deploy\r\n```", "title": "Push the snapshot artifacts to the Sonatype repo", "type": "issue" }, { "action": "created", "author": "jeremy-cc", "comment_id": 108290539, "datetime": 1433327124000, "masked_author": "username_1", "text": "Pushed to Sonatype Nexus: 0.7-SNAPSHOT", "title": null, "type": "comment" }, { "action": "created", "author": "jeremy-cc", "comment_id": 108290552, "datetime": 1433327127000, "masked_author": "username_1", "text": "https://oss.sonatype.org/#nexus-search;quick~currencycloud-java", "title": null, "type": "comment" }, { "action": "created", "author": "jeremy-cc", "comment_id": 108290717, "datetime": 1433327180000, "masked_author": "username_1", "text": "<dependency>\r\n <groupId>com.currencycloud.currencycloud-java</groupId>\r\n <artifactId>currencycloud-java</artifactId>\r\n <version>0.7-SNAPSHOT</version>\r\n </dependency>", "title": null, "type": "comment" }, { "action": "created", "author": "mmazi", "comment_id": 108293954, "datetime": 1433327859000, "masked_author": "username_0", "text": "Great, thanks.", "title": null, "type": "comment" }, { "action": "closed", "author": "mmazi", "comment_id": null, "datetime": 1433327859000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
2
6
892
false
false
892
false
webcerebrium/java-binance-api
webcerebrium
286,475,864
6
null
[ { "action": "opened", "author": "spapapan", "comment_id": null, "datetime": 1515235187000, "masked_author": "username_0", "text": "In your code example you explain how to trade BTC with ETH, but how to trade ETH with BTC?", "title": "How to place an order to buy AND sell", "type": "issue" }, { "action": "created", "author": "spapapan", "comment_id": 355740256, "datetime": 1515237370000, "masked_author": "username_0", "text": "Maybe in this line\r\n\r\nBinanceOrderPlacement placement = new BinanceOrderPlacement(symbol, BinanceOrderSide.BUY);\r\n\r\nto switch you can use\r\n\r\nBinanceOrderPlacement placement = new BinanceOrderPlacement(symbol, BinanceOrderSide.SELL);\r\n\r\n?", "title": null, "type": "comment" }, { "action": "created", "author": "wcrbrm", "comment_id": 355743997, "datetime": 1515241883000, "masked_author": "username_1", "text": "hi @username_0 \r\nWhether you are buying or you are selling - it depends on the market symbol.\r\non a market there is usually a base asset and there is asset that you are trading against.\r\n\r\nWhen you are looking at `ETHBTC` market symbol, that means ETH would be bought. and ETH would be sold - and the last part of the symbol is the base asset.\r\n\r\nso, if you want to buy ETH for BTC, you are doing\r\n```\r\nnew BinanceOrderPlacement(new BinanceSymbol(\"ETHBTC\"), BinanceOrderSide.BUY);\r\n```\r\nand if you want to sell ETH for BTC, you are doing\r\n```\r\nnew BinanceOrderPlacement(new BinanceSymbol(\"ETHBTC\"), BinanceOrderSide.SELL);\r\n```\r\nHope that makes it a bit more clear for you", "title": null, "type": "comment" } ]
2
3
997
false
false
997
true
minhur/bootstrap-toggle
null
325,938,481
194
null
[ { "action": "opened", "author": "kirin2", "comment_id": null, "datetime": 1527127818000, "masked_author": "username_0", "text": "I tried to change the text On and Off to Yes and No and the toggle got broken\r\n\r\n```\r\n$('.toggle').bootstrapToggle({\r\n on: 'Yes',\r\n off: 'No'\r\n});\r\n```\r\n![image](https://user-images.githubusercontent.com/21486472/40460651-687cf984-5f3a-11e8-8397-c5dae705cfe7.png)", "title": "Chaging the text On and Off", "type": "issue" }, { "action": "closed", "author": "kirin2", "comment_id": null, "datetime": 1527128084000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "reopened", "author": "kirin2", "comment_id": null, "datetime": 1527128091000, "masked_author": "username_0", "text": "I tried to change the text On and Off to Yes and No and the toggle got broken.\r\n\r\nThe html : \r\n\r\n`<input class=\"toggle\" type=\"checkbox\" data-toggle=\"toggle\" data-size=\"small\" >`\r\n\r\nJs : \r\n```\r\n$('.toggle').bootstrapToggle({\r\n on: 'Yes',\r\n off: 'No'\r\n});\r\n```\r\n![image](https://user-images.githubusercontent.com/21486472/40460651-687cf984-5f3a-11e8-8397-c5dae705cfe7.png)", "title": "Chaging the text On and Off", "type": "issue" }, { "action": "created", "author": "kirin2", "comment_id": 391565470, "datetime": 1527128118000, "masked_author": "username_0", "text": "Hmn i put the js on top of the html : )", "title": null, "type": "comment" }, { "action": "closed", "author": "kirin2", "comment_id": null, "datetime": 1527128118000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
5
684
false
false
684
false
aerospike/aerospike-client-nodejs
aerospike
219,454,563
175
null
[ { "action": "opened", "author": "jhecking", "comment_id": null, "datetime": 1491361998000, "masked_author": "username_0", "text": "Due to a typo in the JS -> C conversion logic the scan/query policy is not getting applied on the following operations:\r\n* Query.apply()\r\n* Query.background()\r\n* Scan.foreach()\r\n* Scan.background()\r\n\r\nThe query policy does get applied on the Query.foreach() operation.", "title": "Scan/query policy not getting applied", "type": "issue" }, { "action": "closed", "author": "jhecking", "comment_id": null, "datetime": 1491364775000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
2
268
false
false
268
false
Hrabal/TemPy
null
292,218,634
48
{ "number": 48, "repo": "TemPy", "user_login": "Hrabal" }
[ { "action": "opened", "author": "MegaWale", "comment_id": null, "datetime": 1517157760000, "masked_author": "username_0", "text": "i tackled the title issue first.\r\n\r\ni added a set_title method to the widget.py/TempyPage\r\n\r\nWill love to know if i am on the right track. Need your guidiance.", "title": "opinion: need your comment/guidiance on my fix", "type": "issue" }, { "action": "created", "author": "Hrabal", "comment_id": 361088593, "datetime": 1517167634000, "masked_author": "username_1", "text": "Hey, yes it's good to have a separate method to call in __init__ . Just add a couple of tests for the new method.", "title": null, "type": "comment" }, { "action": "created", "author": "MegaWale", "comment_id": 361090570, "datetime": 1517169208000, "masked_author": "username_0", "text": "okay...:+1:", "title": null, "type": "comment" }, { "action": "created", "author": "MegaWale", "comment_id": 361091745, "datetime": 1517170142000, "masked_author": "username_0", "text": "hey @username_1, after adding a test, i ran the command\r\n`~python test_widgets.py`\r\nto check, hope i am doing anything wrong.\r\nbut i got an error:\r\n`Traceback (most recent call last):\r\n File \"test_widgets.py\", line 8, in <module>\r\n from tempy.widgets import TempyTable, TempyList, TempyPage\r\nImportError: No module named 'tempy'`\r\n\r\nalso, what do you suggest i do with the failing checks??\r\nthanks", "title": null, "type": "comment" }, { "action": "created", "author": "Hrabal", "comment_id": 361092454, "datetime": 1517170768000, "masked_author": "username_1", "text": "To run the tests go to the base repository folder and run \"python3 -m unittest discover\". This way the test framework will run all the tests in the project. (See https://docs.python.org/3.6/library/unittest.html for more info). Regarding the failing test you can see in the TravisCI page the error traceback..", "title": null, "type": "comment" }, { "action": "created", "author": "MegaWale", "comment_id": 361093800, "datetime": 1517171920000, "masked_author": "username_0", "text": "ran the test and it passed. thanks for the link, learn't something new. And all the checks passed!\r\nwhat do you think?", "title": null, "type": "comment" }, { "action": "created", "author": "Hrabal", "comment_id": 361166922, "datetime": 1517212892000, "masked_author": "username_1", "text": "Good! Now your new method can be used, alongside set_doctype, inside the TempyPage.__init__ so the issue is solved.", "title": null, "type": "comment" }, { "action": "created", "author": "MegaWale", "comment_id": 361204667, "datetime": 1517222098000, "masked_author": "username_0", "text": "good to know that @username_1, thanks.", "title": null, "type": "comment" } ]
3
10
1,830
false
true
1,256
true
tomviner/unlimited-weeks-in-google-calendar
null
261,110,388
4
null
[ { "action": "opened", "author": "tomviner", "comment_id": null, "datetime": 1506544731000, "masked_author": "username_0", "text": "Use [jasmine](https://jasmine.github.io) to write some UI tests in Javascript.\r\n\r\nRunning these daily on Travis-CI will alert when the GCal webapp changes, and for example the selectors no longer find the right elements on the page.\r\n\r\nResources:\r\n- [Automated e2e testing- WebDriverJS, Jasmine and Protractor](http://engineering.wingify.com/posts/e2e-testing-with-webdriverjs-jasmine/)\r\n- [Dalek JS - Automated cross browser testing with JavaScript](http://dalekjs.com/)", "title": "Write detailed unittests to detect if GCal webapp changes", "type": "issue" } ]
1
1
471
false
false
471
false
snowplow/snowplow
snowplow
43,345,231
997
null
[ { "action": "opened", "author": "alexanderdean", "comment_id": null, "datetime": 1411333063000, "masked_author": "username_0", "text": "Enrichment configured with:\n- An array of: store name + store long/lat\n- Unit of measurement: km or mile\n- Formula: greatest-circle (aka crow flies)\n\nThen it uses the event's lat long (from MaxMind) to figure out which is the nearest store, its lat long and its distance. That gets stored in a context.\n\nSuper interesting for mobile apps and mobile web, as you can potentially identify customers who are inside your store (or en route to your store) while they are browsing...", "title": "Scala Common Enrich: nearest store enrichment", "type": "issue" }, { "action": "created", "author": "chuwy", "comment_id": 646758454, "datetime": 1592586153000, "masked_author": "username_1", "text": "Migrated to https://github.com/snowplow/enrich/issues/219", "title": null, "type": "comment" }, { "action": "closed", "author": "chuwy", "comment_id": null, "datetime": 1592586218000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
533
false
false
533
false
DozerMapper/dozer
DozerMapper
231,137,846
382
null
[ { "action": "opened", "author": "garethahealy", "comment_id": null, "datetime": 1495652092000, "masked_author": "username_0", "text": "- Spring boot starter\r\n- Make dozer work within spring-boot as a first-class-citizen", "title": "Provide spring-boot support", "type": "issue" }, { "action": "created", "author": "vadeg", "comment_id": 338488597, "datetime": 1508688253000, "masked_author": "username_1", "text": "@username_0 could you provide some details what exactly should be supported by dozer spring boot starter module? (bean creation, properties configuration etc..)", "title": null, "type": "comment" }, { "action": "created", "author": "garethahealy", "comment_id": 338560827, "datetime": 1508740522000, "masked_author": "username_0", "text": "@username_1 ; i'd expect the first version to just provide support;\r\n\r\ni.e.: @DozerMapperAutoConfiguration\r\n\r\nwhich would create a default mapper. once thats done, we can build on other bits.\r\n\r\nIf you are interested in committing, that would be great.", "title": null, "type": "comment" }, { "action": "created", "author": "vadeg", "comment_id": 338651236, "datetime": 1508763691000, "masked_author": "username_1", "text": "@username_0 yes, I am interested :) Thank you for explanation!", "title": null, "type": "comment" }, { "action": "created", "author": "garethahealy", "comment_id": 338651751, "datetime": 1508763802000, "masked_author": "username_0", "text": "@username_1 ; if you are happy to commit, i am happy to review/merge :)", "title": null, "type": "comment" }, { "action": "closed", "author": "garethahealy", "comment_id": null, "datetime": 1511608888000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
2
6
623
false
false
623
true
apache/incubator-trafodion
apache
238,013,800
1,143
{ "number": 1143, "repo": "incubator-trafodion", "user_login": "apache" }
[ { "action": "opened", "author": "selvaganesang", "comment_id": null, "datetime": 1498179981000, "masked_author": "username_0", "text": "[TRAFODION-2653] Sort operator loops at times All HBase client connections from Trafodion uses Trafodion configuration concept. Any client side property can now be set in trafodion-site.xml. \r\n\r\n The scratch files are now open in blocking mode. Hence any scratch file operation shouldn't return EAGAIN. \r\n\r\nThe internal table TDDL of table is now created without any table co-processors attached to it", "title": "[TRAFODION-2654] Change the location of trafodion-site.xml from $TRAF_HOME/etc to config ", "type": "issue" } ]
2
7
842
false
true
403
false
svgdotjs/svg.select.js
svgdotjs
303,464,842
39
null
[ { "action": "opened", "author": "LarsBV", "comment_id": null, "datetime": 1520512559000, "masked_author": "username_0", "text": "A simple rectangle becomes filled with black as soon as I use selectize. I have attached a jsfiddle \r\n\r\nHow comes ?\r\n\r\n```\r\n<div id=\"drawing\"></div>\r\n```\r\n```\r\n// initialize SVG.js\r\nvar draw = SVG('drawing')\r\n\r\n// draw pink square\r\nvar rect = draw.rect(100, 100).move(100, 50).fill('#f06')\r\n\r\nrect.selectize();\r\n```\r\n\r\nhttp://jsfiddle.net/Lmu56awz/2285/", "title": "Rectangle becomes a black box", "type": "issue" }, { "action": "created", "author": "Fuzzyma", "comment_id": 371480588, "datetime": 1520514209000, "masked_author": "username_1", "text": "Include the css file shipped with the libraray and you are good to go", "title": null, "type": "comment" }, { "action": "closed", "author": "Fuzzyma", "comment_id": null, "datetime": 1520514209000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
422
false
false
422
false
nabeelio/phpvms
null
290,230,685
148
null
[ { "action": "opened", "author": "RRJustin", "comment_id": null, "datetime": 1516489218000, "masked_author": "username_0", "text": "![extra_numbers](https://user-images.githubusercontent.com/35641891/35188824-5ad81dc4-fe03-11e7-89ec-6ffa46b84cc0.png)\r\n\r\nJust noticed extra numbers after distance and flight level.", "title": "Extra numbers on flights page", "type": "issue" }, { "action": "created", "author": "RRJustin", "comment_id": 359209581, "datetime": 1516489897000, "masked_author": "username_0", "text": "Also, when manually changing the \"required\" field in the table on the database from 0 to 1, it shows HUB under the required box.\r\n![pirep_fields](https://user-images.githubusercontent.com/35641891/35188878-acc8619c-fe04-11e7-84bc-545488421138.png)", "title": null, "type": "comment" }, { "action": "created", "author": "nabeelio", "comment_id": 359268006, "datetime": 1516558298000, "masked_author": "username_1", "text": "For the extra numbers, can you do a show me what's in your settings table in mysql, specifically the distance unit and the altitude unit? And then show me the settings page in the admin what those values are?", "title": null, "type": "comment" }, { "action": "created", "author": "nabeelio", "comment_id": 359268678, "datetime": 1516558868000, "masked_author": "username_1", "text": "Ah I see the problem. It's from when you hit save in the settings page.", "title": null, "type": "comment" }, { "action": "created", "author": "nabeelio", "comment_id": 359269792, "datetime": 1516559790000, "masked_author": "username_1", "text": "This should be fixed now, just hit save again on the settings page.", "title": null, "type": "comment" }, { "action": "closed", "author": "nabeelio", "comment_id": null, "datetime": 1516559790000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "RRJustin", "comment_id": 359286423, "datetime": 1516573172000, "masked_author": "username_0", "text": "![distance_flight](https://user-images.githubusercontent.com/35641891/35199671-c1a76c9e-fec6-11e7-8af4-1066719adbb5.png)\r\n\r\nFlight level shows correctly on the flights page but there still an extra \"1\" at the end of the distance. Attached is what it shows in the database.", "title": null, "type": "comment" }, { "action": "created", "author": "nabeelio", "comment_id": 359287034, "datetime": 1516573641000, "masked_author": "username_1", "text": "If you go to the settings page in the admin and then hit save, does that\nfix it?", "title": null, "type": "comment" }, { "action": "created", "author": "RRJustin", "comment_id": 359287898, "datetime": 1516574328000, "masked_author": "username_0", "text": "Negative. Still shows the extra number.", "title": null, "type": "comment" }, { "action": "created", "author": "RRJustin", "comment_id": 359675534, "datetime": 1516682906000, "masked_author": "username_0", "text": "Issue resolved in build 180123-a3ed7f.", "title": null, "type": "comment" } ]
2
10
1,203
false
false
1,203
false
xceedsoftware/DocX
null
348,009,238
258
null
[ { "action": "opened", "author": "wolfgangjt", "comment_id": null, "datetime": 1533575527000, "masked_author": "username_0", "text": "I have looked through the entire code and cannot find out how to set the table's overall width, not the column width. It limits the table based off the margins, but I am needing it to extend past the margins. Is there an easy way?\r\n\r\nAlso, I am trying to recreate an existing document to allow for sections to be dynamically added, so I have the originating DOCX file. I can open it in ZIP and rip the XML code out, is there a way to reverse engineer this easily so I can just plug and play the sections throughout my code when necessary?\r\n\r\nLastly, is anyone even maintaining this/watching the forums? Seems like its dead.", "title": "Table Width and Reverse Engineering documents?", "type": "issue" }, { "action": "created", "author": "ronaldhoek", "comment_id": 410846681, "datetime": 1533588176000, "masked_author": "username_1", "text": "First, normally this is not a support forum (on GitHub), but an issue list.\r\nSo normaly only new features and/or bugs are reported here...\r\n\r\nHowever, use questions seem to be answered here anyway.\r\n\r\nMaybe you can take a look at this issues comment \r\nhttps://github.com/xceedsoftware/DocX/issues/246 and see if you can use some of the code listed there as a pointer on how to set the correct table width.\r\nI have not tried it myself thought...", "title": null, "type": "comment" } ]
2
2
1,067
false
false
1,067
false
firebase/quickstart-android
firebase
288,303,351
405
null
[ { "action": "opened", "author": "MrMaxRoss", "comment_id": null, "datetime": 1515819849000, "masked_author": "username_0", "text": "### Step 2: Describe your environment\r\n\r\n * Android device: Pixel running in the emulator on MacOS\r\n * Android OS version: 5.1.1\r\n * Firebase/Play Services SDK version: 11.8.0\r\n \r\n### Step 3: Describe the problem:\r\nFire Eats has a menu item called \"Delete All.\" When I select this option, the restaurants are deleted from the UI, which is great, but since it only deletes the restaurants and not the ratings (which are sub-collections), if you look at the Firestore db in the console you still see all the implicit restaurant ids and the ratings are still there. I think \"Delete All\" should actually delete all the data so that it's clean in the app but also clean in the database and the console.\r\n\r\n#### Steps to reproduce:\r\n 1. Set up Friendly Eats by following the instructions at https://github.com/firebase/quickstart-android/tree/master/firestore\r\n 2. Start the app. I'm doing it in the emulator but running on a physical device will work fine too.\r\n 3. Under the menu, select \"Add Random Items.\"\r\n 4. Look in the Firestore console. You'll see a collection called restaurants, and under each restaurant a sub-collection called ratings.\r\n 5. Back in the app, under the menu, select \"Delete All.\"\r\n 6. Look in the Firestore console. You'll still see all the restaurant ids under the restaurants collection (grayed out and in italics because the restaurant documents no longer exist), and under each restaurant id you'll still see an actual ratings collection.\r\n \r\n#### Observed Results:\r\n\r\n * The database is not empty.\r\n \r\n#### Expected Results:\r\n\r\n * The database should be empty.", "title": "Firestore Sample Friendly Eats: Delete All menu option should actually Delete All", "type": "issue" }, { "action": "created", "author": "samtstern", "comment_id": 358026073, "datetime": 1516121271000, "masked_author": "username_1", "text": "@username_0 thank's for filing this. You're right about the ideal behavior. This was mostly laziness, there's no easy way to implement \"recursive delete\" in the mobile SDKs and we didn't want to clutter up the quickstart with that kind of code.\r\n\r\nI think the correct thing to do here is actually remove the \"Delete All\" button from the quickstart for the following reasons:\r\n\r\n1. Reduce confusion about orphaned ratings\r\n1. Tighten security rules in the sample by not allowing mobile deletes\r\n1. Point users to the Firebase CLI or the Console for true \"cleanup\" deletes", "title": null, "type": "comment" }, { "action": "created", "author": "MrMaxRoss", "comment_id": 358200094, "datetime": 1516166347000, "masked_author": "username_0", "text": "That all seems reasonable to me, although the bulk delete code that's there\nwas still useful to see.", "title": null, "type": "comment" }, { "action": "created", "author": "samtstern", "comment_id": 358388871, "datetime": 1516211941000, "masked_author": "username_1", "text": "@username_0 I will make sure an equivalent snippet remains in the delete data docs if we make this change.", "title": null, "type": "comment" }, { "action": "created", "author": "samtstern", "comment_id": 360855976, "datetime": 1516989143000, "masked_author": "username_1", "text": "In #415 I am removing the client-side delete code. After some review I can't keep my promise from my previous comment, doing client-side deletes for many documents is pretty much always a bad idea so we have decided not to document any specific code for how to do it. We don't want to lead developers down the wrong path", "title": null, "type": "comment" }, { "action": "closed", "author": "samtstern", "comment_id": null, "datetime": 1516989833000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
6
2,698
false
false
2,698
true
rollup/rollup
rollup
336,922,685
2,307
null
[ { "action": "opened", "author": "Andarist", "comment_id": null, "datetime": 1530263449000, "masked_author": "username_0", "text": "Hi 👋\r\n\r\nI'd like to discuss what's the best way to report errors. I.e. I got such [report](https://github.com/rollup/rollup-plugin-babel/issues/216), but without digging into the mechanics I'm not sure how I can improve it. Would be super useful to have some kind of docs for plugin authors - especially that I think there were some changes lately to the exposed APIs, new hooks etc.\r\n\r\nI also had a similar situation reported in other issue. I've tracked it down to rollup catching error thrown by babel and swallowing it's stack trace which made debugging it longer and issue being raised in wrong repository. Is there a way to preserve stack trace of the original error?", "title": "[question] plugin error reporting", "type": "issue" }, { "action": "created", "author": "tivac", "comment_id": 401386876, "datetime": 1530285617000, "masked_author": "username_1", "text": "Check out the \"Plugin Context\" section of https://github.com/rollup/rollup/wiki/Plugins#creating-plugins\r\n\r\nSounds like you want to be using `this.warn()` or `this.error()`.", "title": null, "type": "comment" }, { "action": "created", "author": "guybedford", "comment_id": 401408028, "datetime": 1530290167000, "masked_author": "username_2", "text": "@username_0 thanks for digging into this... YES it sounds like something worth checking! In plugins we encourage `this.error` being called in the transform hook as a whole bunch of contextual info gets attached - https://github.com/rollup/rollup/blob/master/src/utils/transform.ts#L79. If there is anything that can be done to neaten up these workflows though please by all means look into it further!", "title": null, "type": "comment" }, { "action": "created", "author": "Andarist", "comment_id": 401475658, "datetime": 1530306827000, "masked_author": "username_0", "text": "@username_2 I've tinkered a little bit with it and I have some findings:\r\n- thrown `frame` should always be respected, fixing this in https://github.com/rollup/rollup/pull/2309\r\n- slight problem with babel is that it puts `frame` into `err.message` - maybe I will be able to do smth about it on babel's side, we should be able to at least put it on `err` as extra property too (this is why frame is visible twice for errors thrown by babel when tranforming with rollup-plugin-babel)\r\n- while `err.message` gets a nice red color in the CLI, frame doesnt - and as it being often extremely helpful I would advocate for colouring it too\r\n- kinda same thing with filename/id and pos - but not only that message becomes invisible for people because it's not coloured, it also lacks any context. I see a nice opportunity here for formatting the WHOLE thing better for humans. It might be a good idea to colour whole output the same way, but also you could report something like:\r\n```\r\nError thrown while transforming \"path/to/src/file.js:3:11\":\r\n\r\n[!] (babel plugin) SyntaxError: /test__/test.js: Unexpected token, expected \";\"\r\n\r\n<CODE_FRAME_PLACEHOLDER>\r\n```\r\n- also the stack trace of the error is way too important to just swallow it, I know most people won't follow it and might find it obscurring the output, but it often might be vital for finding a problem in underlaying tool - I would suggest adding it to the output (this one might have always black/grey color, as it's less important for \"most\" people)", "title": null, "type": "comment" }, { "action": "created", "author": "lukastaegert", "comment_id": 404941407, "datetime": 1531512801000, "masked_author": "username_3", "text": "Definitely! I like the idea of adding information about in which step the error was thrown. Of course with the current architecture, this would mean adding another property to the error object, maybe some text snipped.\r\n\r\nI am not so fond of the idea of separating the file name and the code frame. For rollup's own error, the current order makes the file name a heading for the code frame which gives it more context:\r\n```\r\n[!] (funny plugin) SyntaxError: Some evil error\r\nsrc/main.js: (3:12)\r\n1: import './dep.js';\r\n2: \r\n3: console.log(x);\r\n ^\r\n```\r\n\r\nTearing them apart could make them seem unrelated (In an unrelated note: For warnings, the file name is bold while for errors, it is not. That should certainly be aligned)\r\n\r\nBut maybe there is no harm in repeating the file name for errors, which could make it look like this (we can really play around a little here):\r\n```\r\n[!] SyntaxError while transforming \"src/main.js\" (in funny plugin):\r\n\r\nSome really terrible error\r\n\r\nsrc/main.js: (3:12)\r\n1: import './dep.js';\r\n2: \r\n3: console.log(x);\r\n ^\r\nSyntaxError: Some really terrible error\r\n at error (/x/y/z.js:6:14)\r\n at Object.error (/a/b/c.js:89:4)\r\n```", "title": null, "type": "comment" }, { "action": "created", "author": "Andarist", "comment_id": 405244162, "datetime": 1531747082000, "masked_author": "username_0", "text": "It could, I'm wondering though if it doesn't warrant for a change in babel - exposing `.frame` on thrown errors + assembling a nice error output in cli module rather than directly in `err.message`. OTOH some tools could swallow nice `.frame`s and return worse errors to the caller. Either way I need to prepare a PR exposing `.frame` as it would made clean up easier.\r\n\r\nAs to the rest - thanks for your thoughts, gonna probably look into improving this some time soon (hopefully 😉 )", "title": null, "type": "comment" }, { "action": "created", "author": "guybedford", "comment_id": 410777296, "datetime": 1533574817000, "masked_author": "username_2", "text": "@username_0 would value your feedback on #2382 if you can take a look.", "title": null, "type": "comment" }, { "action": "created", "author": "shellscape", "comment_id": 520145414, "datetime": 1565440381000, "masked_author": "username_4", "text": "Hey folks. This is a saved-form message, but rest assured we mean every word. The Rollup team is attempting to clean up the Issues backlog in the hopes that the active and still-needed, still-relevant issues bubble up to the surface. With that, we're closing issues that have been open for an eon or two, and have gone stale like pirate hard-tack without activity.\r\n\r\nWe really appreciate the folks have taken the time to open and comment on this issue. Please don't confuse this closure with us not caring or dismissing your issue, feature request, discussion, or report. The issue will still be here, just in a closed state. If the issue pertains to a bug, please re-test for the bug on the latest version of Rollup and if present, please tag @username_4 and request a re-open, and we'll be happy to oblige.", "title": null, "type": "comment" }, { "action": "closed", "author": "shellscape", "comment_id": null, "datetime": 1565440381000, "masked_author": "username_4", "text": "", "title": null, "type": "issue" } ]
5
9
5,306
false
false
5,306
true
Haehnchen/idea-php-symfony2-plugin
null
56,793,929
435
null
[ { "action": "opened", "author": "Koc", "comment_id": null, "datetime": 1423217698000, "masked_author": "username_0", "text": "```php\r\nclass AnnouncementRepository extends EntityRepository\r\n{\r\n public function getEmailAnnouncement()\r\n {\r\n $announcements = $this->createQueryBuilder('a') // looks like this alias does not handled by plugin\r\n ->join('a.zone', 'az')\r\n ->addSelect('az')\r\n ->andWhere('a.isPayed = true') // also I cann't ctrl+click to this field of entity\r\n ->andWhere(':now BETWEEN a.startsAt AND a.endsAt')\r\n ->andWhere('az.sectionId = :section_id')\r\n ->setParameter('now', new \\DateTime())\r\n ->setParameter('section_id', SectionProvider::TYPE_EMAIL)\r\n ->getQuery()\r\n ->getResult();\r\n\r\n foreach ($announcements as $announcement) {\r\n $announcement->getZone()->getSlug(); // $announcement does not associates with class\r\n }\r\n}\r\n\r\n```", "title": "EntityRepository::createQueryBuilder does not resolve entity type properly", "type": "issue" }, { "action": "created", "author": "Koc", "comment_id": 299701522, "datetime": 1494158324000, "masked_author": "username_0", "text": "@username_1 can you look at this issue?", "title": null, "type": "comment" }, { "action": "created", "author": "Koc", "comment_id": 299704062, "datetime": 1494161081000, "masked_author": "username_0", "text": "still reproducible :(", "title": null, "type": "comment" }, { "action": "created", "author": "Haehnchen", "comment_id": 299711250, "datetime": 1494168639000, "masked_author": "username_1", "text": "still not implemented but looks easier now.", "title": null, "type": "comment" } ]
2
4
958
false
false
958
true
chriskacerguis/codeigniter-restserver
null
299,209,119
896
null
[ { "action": "opened", "author": "YulianD", "comment_id": null, "datetime": 1519269803000, "masked_author": "username_0", "text": "**Hello cordial greeting**, the problem is this:\r\nI have the controller **Modulos**\r\n\r\n `<?php\r\n defined('BASEPATH') OR exit('No direct script access allowed');\r\n\r\n /** @noinspection PhpIncludeInspection */\r\n require APPPATH . 'libraries/REST_Controller.php';\r\n class Modulos extends REST_Controller {\r\n\r\n function __construct()\r\n {\r\n parent::__construct();\r\n }\r\n\r\n public function index_post()\r\n {\r\n $this->response(\"Hello from index\", 200);\r\n }\r\n\r\n public function save_post()\r\n {\r\n $this->response(\"Hello from save\", 200);\r\n }\r\n }`\r\nAnd I have the post routes for the respective controller functions\r\n `$route['api/modulos']['POST'] = 'api/Modulos/index_post';`\r\n `$route['api/modulos.save']['POST'] = 'api/Modulos/save_post';`\r\n\r\nbut what happens is that the route `modulos.save` is sent to the function `index_post` and is not returning the one that I have assigned it is `save_post`, in fact I do not recognize any other function that I assigned always return me index_post.\r\n![captura](https://user-images.githubusercontent.com/11492518/36518729-acda77dc-1755-11e8-985d-9e9c868cd619.PNG)\r\n\r\n**I appreciate your help**", "title": " Error with RestServer CI routes, does not call the corresponding function", "type": "issue" }, { "action": "created", "author": "MeekLogic", "comment_id": 369028417, "datetime": 1519766095000, "masked_author": "username_1", "text": "There is built-in HTTP method validation.\r\n\r\nSo just remove the routes and use `backend/api/modulos/save`", "title": null, "type": "comment" }, { "action": "closed", "author": "chriskacerguis", "comment_id": null, "datetime": 1519767791000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
3
3
1,345
false
false
1,345
false
47deg/fetch
47deg
243,601,523
127
{ "number": 127, "repo": "fetch", "user_login": "47deg" }
[ { "action": "opened", "author": "justinhj", "comment_id": null, "datetime": 1500354673000, "masked_author": "username_0", "text": "The attached PR adds timeout capability to FetchMonadError[Future]\r\n\r\nI also modified Query.Sync to return a completed future which I think is the intent rather than run it in a Future\r\n\r\nAll tests pass but I didn't yet create tests for the timeout, I can do so if the PR looks like something you might want\r\n\r\nOnly thing I'm not sure about is whether the use of synchronize is needed. I'm not sure but I think Promise may be safe to use from multiple threads because it uses an AtomicReference but didn't find any confirmation of that.", "title": "Add timeout capability to Future implementation of FetchMonadError", "type": "issue" }, { "action": "created", "author": "justinhj", "comment_id": 316112248, "datetime": 1500393765000, "masked_author": "username_0", "text": "Removed synchronization on Promise and simplified the PR", "title": null, "type": "comment" }, { "action": "created", "author": "justinhj", "comment_id": 317226625, "datetime": 1500781442000, "masked_author": "username_0", "text": "Have added tests for the two cases of a future failing because it timed out and succeeding because it finished before the timeout occurred.", "title": null, "type": "comment" }, { "action": "created", "author": "justinhj", "comment_id": 320085896, "datetime": 1501793321000, "masked_author": "username_0", "text": "I've updated the PR so that the tests that require non-blocking sleep are now in the JVM module. Seems travis build is failing but this is due to a timeout building the docs", "title": null, "type": "comment" }, { "action": "created", "author": "justinhj", "comment_id": 320322004, "datetime": 1501871521000, "masked_author": "username_0", "text": "I think everything looks good now, just getting a timeout with Travis building the docs", "title": null, "type": "comment" }, { "action": "created", "author": "peterneyens", "comment_id": 320365746, "datetime": 1501885234000, "masked_author": "username_1", "text": "There definitely is something strange going on when combining `Timer` and tut.\r\n\r\nCommenting out `implicits.timer` (and as a consequence `timer.schedule(...)`) makes tut run fine.\r\n\r\nA minimal tut file which makes tut hang (notice that we aren't even using the time out here, since we are using `Query.sync`):\r\n\r\n```scala\r\n// ```tut\r\nimport scala.concurrent.{Await, Future}\r\nimport scala.concurrent.duration.Duration\r\nimport scala.concurrent.ExecutionContext.Implicits.global\r\n\r\nimport fetch.{FetchMonadError, Query}\r\nimport fetch.implicits._\r\n\r\nval query: Query[Option[Int]] = Query.sync { Some(1) }\r\n\r\nval future: Future[Option[Int]] = FetchMonadError[Future].runQuery(query)\r\nAwait.result(future, Duration.Inf)\r\n// ```\r\n```\r\n\r\nIf I change the `Sync` from `Future(...)` to the line below, tut runs fine for the minimal file, not for the complete _docs.md_ file though ...\r\n```scala\r\ncase Sync(e) =>\r\n cats.ApplicativeError[Future, Throwable].catchNonFatalEval(e)\r\n```\r\n\r\nIt seems like I need to do some more investigating to see what is going on ...", "title": null, "type": "comment" }, { "action": "created", "author": "justinhj", "comment_id": 320374049, "datetime": 1501889323000, "masked_author": "username_0", "text": "Ah timer is supposed to run on a daemon thread and if it doesn't then it can stop a program from terminating. I'll check the code and see if I'm doing that correctly", "title": null, "type": "comment" }, { "action": "created", "author": "justinhj", "comment_id": 320465898, "datetime": 1501961787000, "masked_author": "username_0", "text": "I've updated so Timer is on a daemon thread and also created lazily so it is not initialized by programs that don't use it", "title": null, "type": "comment" } ]
3
9
2,330
false
true
2,330
false
square/okhttp
square
143,727,435
2,442
{ "number": 2442, "repo": "okhttp", "user_login": "square" }
[ { "action": "opened", "author": "lightai", "comment_id": null, "datetime": 1459010038000, "masked_author": "username_0", "text": "Handle the situation: user adjust system time(fall back),we don't request network timely", "title": "http age calculations wrong because of phone time fall back", "type": "issue" }, { "action": "created", "author": "swankjesse", "comment_id": 201905368, "datetime": 1459014693000, "masked_author": "username_1", "text": "Just so I’m clear: is this an attempt to deal with users overriding their system clocks to set the time into the future, then setting it back?", "title": null, "type": "comment" }, { "action": "created", "author": "lightai", "comment_id": 201997968, "datetime": 1459058178000, "masked_author": "username_0", "text": "yes. this situation can lead to okhttp use local cache longer time than expected", "title": null, "type": "comment" }, { "action": "created", "author": "swankjesse", "comment_id": 202556216, "datetime": 1459194600000, "masked_author": "username_1", "text": "I don’t think this is the right solution to the problem. It’s difficult to know whether the time is currently wrong, or if it was wrong at the time of the response. And this change means that small adjustments to the system time can break the cache. Typically small adjustments are the only ones we expect to see.", "title": null, "type": "comment" } ]
2
4
623
false
false
623
false
flightlog/flsweb
flightlog
304,055,580
159
null
[ { "action": "opened", "author": "pschuler78", "comment_id": null, "datetime": 1520672866000, "masked_author": "username_0", "text": "When opening/editing a person, the person categories are not displayed correctly. The checkboxes are not shown checked. The saving part works well and the server does also return the person categories as list.", "title": "Person categories in person base data are not checked", "type": "issue" }, { "action": "closed", "author": "elekktrisch", "comment_id": null, "datetime": 1520718115000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
2
209
false
false
209
false
PRX/publish.prx.org
PRX
255,968,816
452
null
[ { "action": "opened", "author": "kookster", "comment_id": null, "datetime": 1504796573000, "masked_author": "username_0", "text": "Check to see what the guidelines are now for apple.", "title": "Validate image files are a reasonable size", "type": "issue" }, { "action": "created", "author": "debenedictis", "comment_id": 365665717, "datetime": 1518626183000, "masked_author": "username_1", "text": "I would recommend that all shows aim for a 3000x3000 JPG that is under 512K. I would warn that Apple prefers 3000x3000 if the image is smaller. Separately, I would alert the user with a suggestion to use a smaller file size if it is over 512K. And, I would prohibit image file sizes over 2MB.\r\n\r\nApple's statements regarding artwork are here:\r\n- [Podcast best practices](https://help.apple.com/itc/podcasts_connect/#/itc2b3780e76)\r\n- [Feature your podcast](https://help.apple.com/itc/podcasts_connect/#/itc6dcd8ffbb)", "title": null, "type": "comment" }, { "action": "created", "author": "kookster", "comment_id": 365752440, "datetime": 1518644076000, "masked_author": "username_0", "text": "(we validate dimensions I believe, just not file size)", "title": null, "type": "comment" } ]
2
3
624
false
false
624
false
Kotlin/anko
Kotlin
288,046,249
544
null
[ { "action": "opened", "author": "Vixb1122", "comment_id": null, "datetime": 1515746873000, "masked_author": "username_0", "text": "this is my test code:\r\n```kotlin\r\n private fun someMethod() {\r\n info(\"London is the capital of Great Britain\")\r\n Log.d(loggerTag, \"test\")\r\n debug(\"test\")\r\n warn(4)\r\n }\r\n```\r\n\r\noutputs:\r\n```\r\nI/MainActivity: London is the capital of Great Britain\r\nD/MainActivity: test\r\nW/MainActivity: 4\r\n```", "title": "can't output debug log by AnkoLogger", "type": "issue" }, { "action": "closed", "author": "Vixb1122", "comment_id": null, "datetime": 1516375958000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
2
325
false
false
325
false
chanzuckerberg/idseq-web
chanzuckerberg
305,748,212
937
null
[ { "action": "opened", "author": "jshoe", "comment_id": null, "datetime": 1521154811000, "masked_author": "username_0", "text": "- As reported by Trevor, we're using the development versions of our frontend tools / should change to production compilation. Would probably help speed up performance as well.\r\n\r\nReact Tools confirms:\r\n\"This page is using the development build of React. 🚧\r\n\r\nNote that the development build is not suitable for production. \r\nMake sure to use the production build before deployment.\r\n\r\nOpen the developer tools, and the React tab will appear to the right.\"", "title": "Change asset pipeline to use Production versions", "type": "issue" }, { "action": "created", "author": "cyrielo", "comment_id": 373923164, "datetime": 1521296054000, "masked_author": "username_1", "text": "Please let's do this, I talked about this before and had a PR to fix the mapping issue caused by the uglificiation.", "title": null, "type": "comment" }, { "action": "created", "author": "yunfangjuan", "comment_id": 373929574, "datetime": 1521301251000, "masked_author": "username_2", "text": "Trevor is working on this.", "title": null, "type": "comment" }, { "action": "closed", "author": "jameshowardwang", "comment_id": null, "datetime": 1534523599000, "masked_author": "username_3", "text": "", "title": null, "type": "issue" } ]
4
4
597
false
false
597
false
projectatomic/osbs-client
projectatomic
259,239,430
693
{ "number": 693, "repo": "osbs-client", "user_login": "projectatomic" }
[ { "action": "opened", "author": "rcerven", "comment_id": null, "datetime": 1505927971000, "masked_author": "username_0", "text": "", "title": "timeout for requests", "type": "issue" }, { "action": "created", "author": "rcerven", "comment_id": 331141744, "datetime": 1505996969000, "masked_author": "username_0", "text": "increased timeout, and added catching 'Timeout'\r\n\r\nas for the logs()\r\nHttpSession will catch RetryError and raise OsbsNetworkException,\r\nand logs() are catching only OsbsResponseException which would be raised by HttpResponse, if there wouldn't be any exception in HttpSession", "title": null, "type": "comment" }, { "action": "created", "author": "rcerven", "comment_id": 331496516, "datetime": 1506098003000, "masked_author": "username_0", "text": "test added", "title": null, "type": "comment" }, { "action": "created", "author": "vrutkovs", "comment_id": 331853077, "datetime": 1506338950000, "masked_author": "username_1", "text": "Release notes updated", "title": null, "type": "comment" } ]
2
4
307
false
false
307
false
takari/maven-wrapper
takari
197,191,442
31
null
[ { "action": "opened", "author": "etki", "comment_id": null, "datetime": 1482418408000, "masked_author": "username_0", "text": "Hi.\r\n\r\nI've noticed that maven wrapper doesn't use double quotes in find_maven_basedir/$MAVEN_PROJECTBASEDIR, so if current directory contains spaces, it will result in malformed computation.\r\n\r\nI'm not sure how this project is managed (is mvnw somehow generated), so i didn't fork and send pull request", "title": "mvnw doesn't escape directory in find_maven_basedir and MAVEN_PROJECTBASEDIR", "type": "issue" }, { "action": "closed", "author": "mosabua", "comment_id": null, "datetime": 1491335594000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "mosabua", "comment_id": 291613066, "datetime": 1491335606000, "masked_author": "username_1", "text": "Coming in release soon..", "title": null, "type": "comment" }, { "action": "created", "author": "mosabua", "comment_id": 294616508, "datetime": 1492468778000, "masked_author": "username_1", "text": "Fyi maven-wrapper:0.2.0 and and takari-maven-plugin:0.4.0 are released to Central.", "title": null, "type": "comment" } ]
2
4
409
false
false
409
false
facebookresearch/ParlAI
facebookresearch
326,176,136
780
null
[ { "action": "opened", "author": "avr248", "comment_id": null, "datetime": 1527175927000, "masked_author": "username_0", "text": "tnanks!!", "title": "please if you can: update \"memnn\" for pytorch 0.4", "type": "issue" }, { "action": "created", "author": "alexholdenmiller", "comment_id": 391802346, "datetime": 1527184154000, "masked_author": "username_1", "text": "#781", "title": null, "type": "comment" }, { "action": "created", "author": "avr248", "comment_id": 391833040, "datetime": 1527190434000, "masked_author": "username_0", "text": "thank you for the quick reply!\r\n\r\nnow I get error:\r\n\r\nparlai/agents/memnn/modules.py\", line 99, in forward\r\n raise RuntimeError(lengths.shape)\r\nRuntimeError: torch.Size([1])", "title": null, "type": "comment" }, { "action": "created", "author": "alexholdenmiller", "comment_id": 391848615, "datetime": 1527193670000, "masked_author": "username_1", "text": "@username_0 do you mean you updated to that branch and it's failing? we haven't merged it yet.\r\n\r\nif so, please post the full command that you used and the full stack trace and I'll fix that as well!", "title": null, "type": "comment" }, { "action": "created", "author": "avr248", "comment_id": 391853431, "datetime": 1527194700000, "masked_author": "username_0", "text": "I clone branch \"memnn_p4\" \r\nand i run command: \"python examples/train_model.py -m memnn -t babi:Task10k:1\"\r\n\r\nthe full error msg:\r\n\r\nTraceback (most recent call last):\r\n File \"examples/train_model.py\", line 28, in <module>\r\n TrainLoop(opt).train()\r\n File \"ParlAI-memnn_p4/parlai/scripts/train_model.py\", line 242, in train\r\n world.parley()\r\n File \"ParlAI-memnn_p4/parlai/core/worlds.py\", line 240, in parley\r\n acts[1] = agents[1].act()\r\n File \"ParlAI-memnn_p4/parlai/agents/memnn/memnn.py\", line 351, in act\r\n return self.batch_act([self.observation])[0]\r\n File \"ParlAI-memnn_p4/parlai/agents/memnn/memnn.py\", line 342, in batch_act\r\n predictions = self.predict(xs, cands, ys)\r\n File \"ParlAI-memnn_p4/parlai/agents/memnn/memnn.py\", line 180, in predict\r\n output_embeddings = self.model(*xs)\r\n File \"/lib/python3.6/site-packages/torch/nn/modules/module.py\", line 491, in __call__\r\n result = self.forward(*input, **kwargs)\r\n File \"ParlAI-memnn_p4/parlai/agents/memnn/modules.py\", line 73, in forward\r\n query_embeddings = self.query_embedder(query_lengths, queries)\r\n File \"/lib/python3.6/site-packages/torch/nn/modules/module.py\", line 491, in __call__\r\n result = self.forward(*input, **kwargs)\r\n File \"ParlAI-memnn_p4/parlai/agents/memnn/modules.py\", line 99, in forward\r\n raise RuntimeError(lengths.shape)\r\nRuntimeError: torch.Size([1])", "title": null, "type": "comment" }, { "action": "created", "author": "alexholdenmiller", "comment_id": 391862805, "datetime": 1527196064000, "masked_author": "username_1", "text": "ah, thanks for catching! squeeze() is dangerous in pytorch 0.4... #783 fixes that", "title": null, "type": "comment" }, { "action": "created", "author": "alexholdenmiller", "comment_id": 391866270, "datetime": 1527196718000, "masked_author": "username_1", "text": "closing for now, reopen if you have any more issues!", "title": null, "type": "comment" }, { "action": "closed", "author": "alexholdenmiller", "comment_id": null, "datetime": 1527196719000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "avr248", "comment_id": 391868547, "datetime": 1527197209000, "masked_author": "username_0", "text": "work!!\r\nthanks.", "title": null, "type": "comment" } ]
2
9
1,907
false
false
1,907
true
racket/racklog
racket
326,584,540
4
null
[ { "action": "opened", "author": "tilk", "comment_id": null, "datetime": 1527264747000, "masked_author": "username_0", "text": "'((x . 1))\r\n```", "title": "Substitutions are not rolled back after cut/%not", "type": "issue" }, { "action": "created", "author": "jeapostrophe", "comment_id": 393343280, "datetime": 1527720219000, "masked_author": "username_1", "text": "Hi Marek,\n\nI don't know any way to change this behavior without violating my unit\ntests. I suspect that this is the correct behavior, but I'm not sure.\n\n(%not G) is defined as (%if-then-else G %fail %true) which\nis (%cut-delimiter (%or (%and G ! %fail) %true))\n\nThat means that after G has been evaluated, and the cut point is reached,\nwe are committed to its conclusions, meaning that we are committing to X\nbeing 1 in your example. In contrast, if you wrote the following:\n\n(%which (x) (%or (%cut-delimiter (%or (%and ! (%= x 1) %fail) %true))\n%true))\n => '((x . _))\n\nThen the cut point would be before you set X to be 1, so the set would be\nreverted.\n\nSo, I believe this is the correct, although unintuitive, behavior.\n\nIs there something I'm not getting?\n\nJay", "title": null, "type": "comment" }, { "action": "created", "author": "tilk", "comment_id": 393409632, "datetime": 1527744885000, "masked_author": "username_0", "text": "The behavior of cut is different to the behavior of cut in Prolog. In particular, it breaks the common double negation idiom. The double negation idiom in Prolog allows to check if the given goal can be satisfied in the current substitution, without altering it. In particular, you have:\r\n\r\n```prolog\r\n?- \\+ \\+ X = 1.\r\ntrue.\r\n?- \\+ \\+ X = 1, X = 2.\r\nX = 2.\r\n```\r\n\r\nYou are arguing that by using the cut in my example, you are committing to X being 1. Yes, we do, but only in the scope of the cut delimiter. When we backtrack outside the scope of the cut delimiter, we should no longer care what happened inside it, i.e. every substitution made inside should be reverted. In practical terms: cut should drop alternative branches created between the delimiter and the cut, but it should not drop reverting the substitution back to its original form before the delimiter was entered. This is what Prolog does.\r\n\r\n```prolog\r\n?- \\+ X = 1 ; true.\r\ntrue.\r\n```\r\n\r\nI wonder what would be the best implementation strategy. The traditional Prolog implementation, the Warren Abstract Machine, handles this by managing something called a trail, which is essentially a stack of bindings which need to be reverted upon backtracking. The cut operator discards choice points, but does not alter the trail.", "title": null, "type": "comment" }, { "action": "created", "author": "jeapostrophe", "comment_id": 393599046, "datetime": 1527785497000, "masked_author": "username_1", "text": "I agree that `cut` in Racklog is behaving different than Prolog.\r\n\r\nAbove all, Racklog is an implementation of Matthias Felleisen's “Transliterating Prolog into Scheme,” Indiana U Comp Sci Dept Tech Report #182, 1985 that is based on Dorai Sitaram's Schelog (https://username_3.github.io/schelog/index.html)\r\n\r\nI think I am bound to maintain compatibility with this strategy and implementation that is now over 30 years old, even though it is not the best way to do Prolog-like programming.\r\n\r\nI think you want a better Prolog-style engine in Racket, rather than something that is really defined by this embedding strategy. If so, I think my \"parenlog\" implementation might be a good place to start. It is a lot simpler than Racklog (although it doesn't have cut, I think it would be a lot easier to add.)\r\n\r\nI wonder what @username_2 would say about this thread.", "title": null, "type": "comment" }, { "action": "created", "author": "mfelleisen", "comment_id": 393679385, "datetime": 1527800601000, "masked_author": "username_2", "text": "My Prolog embedding used a trail, which is really an undo list, to which the fail continuation returned. Cut was set up the same way. I was able to run many of my old Prolog programs back then, but I never maintained this and it never covered all of Prolog the way Dorai’s Schelog, now Racklog does. \n\nDorai ( @username_3 ) do you know why the behaviors differ?", "title": null, "type": "comment" }, { "action": "created", "author": "ds26gte", "comment_id": 393695740, "datetime": 1527804290000, "masked_author": "username_3", "text": "Noted. I'll get back when I get some debug time.", "title": null, "type": "comment" }, { "action": "created", "author": "tilk", "comment_id": 394370665, "datetime": 1528121844000, "masked_author": "username_0", "text": "Just for the record: I'm teaching (with Maciej Piróg and Filip Sieczkowski) an introductory course on programming languages at the University of Wrocław, and Racket is our language of choice (part of the course is based on SICP). I decided to use Racklog to explain the concepts behind logic programming (backtracking and unification), and I believe it went well. I wanted to present cut and negation to some better students, but I decided not to because of this issue.", "title": null, "type": "comment" }, { "action": "created", "author": "ds26gte", "comment_id": 396017338, "datetime": 1528601534000, "masked_author": "username_3", "text": "First of all, thank you to @username_0 for bringing this up. I'm persuaded that a fix is preferable to trying to retain legacy behavior. After playing around with it for admittedly a short while, I also think there is very little fear that correct problem-solving programs (as opposed to specially written unit tests) will rely on legacy behavior being preserved. \r\n\r\nI've updated Schelog to username_3/schelog@8d496f4 addressing this issue. This is clearly a big change: Schelog never attempted to do trail unwinding before and I'm modifying code written very long ago. I tried @username_0's examples and I'd appreciate if the respondents here try other tests.\r\n\r\nI haven't tackled the task of updating Racklog too: I'm sure @username_1 and/or whoever else has been maintaining Racklog will be able to do it more reliably than I can, of course after testing my Schelog changes for correctness and filing issues as needed.\r\n\r\nRunning tests on Schelog is simple: Start Racket, load `\"schelog.scm\"` and throw tests at it.", "title": null, "type": "comment" }, { "action": "created", "author": "jeapostrophe", "comment_id": 396773828, "datetime": 1528848903000, "masked_author": "username_1", "text": "#f\r\n```\r\n\r\nI think that is incorrect. I could fix it by changing line 342 to a normal continuation (not a failure continuation.)\r\n\r\n@username_0 It should all be fixed now. I've added your tests to the repo for regressions.", "title": null, "type": "comment" }, { "action": "closed", "author": "jeapostrophe", "comment_id": null, "datetime": 1528848904000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
4
10
5,026
false
false
5,026
true
TatsuyaShirakawa/poincare-embedding
null
276,954,303
4
null
[ { "action": "opened", "author": "ppen2013", "comment_id": null, "datetime": 1511775660000, "masked_author": "username_0", "text": "hello, i found that in the paper the loss function is log(e^-d(uv)/sum(e^-d(u,v'))). \r\nit seems that the derivative over positive sample d() is -1, and the derivative over negative sample d() is e^d()/Z.\r\nBut in this C++ implementation , it seems not like that . \r\nI was wondering whether i miss something.\r\nlooking forward your relpy\r\nthanks", "title": "about the derivative calculation", "type": "issue" }, { "action": "created", "author": "TatsuyaShirakawa", "comment_id": 349769246, "datetime": 1512593130000, "masked_author": "username_1", "text": "the variable u appears in both numerator and denominator, so the derivative is a little bit more complicated. I can help you if you write more concretely about your issues (with more concrete expressions) :)", "title": null, "type": "comment" }, { "action": "created", "author": "ppen2013", "comment_id": 349838502, "datetime": 1512612274000, "masked_author": "username_0", "text": "thanks for reply.\r\nI scan the paper again about the loss function definition. \r\nI seems that in the denominator we have the element e^-d(u,u) but not e^-d(u,v), I am not sure if I misunderstand it. The paper wrote that v'∈N(u), N(u)={v|(u,v)∉D} ∪{u}", "title": null, "type": "comment" }, { "action": "created", "author": "ppen2013", "comment_id": 349944700, "datetime": 1512647271000, "masked_author": "username_0", "text": "Finally, I found the newest version of the paper from nips and the loss function interpretation was different from the one I saw before. \r\nthank you all the same", "title": null, "type": "comment" }, { "action": "closed", "author": "TatsuyaShirakawa", "comment_id": null, "datetime": 1512660052000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
5
960
false
false
960
false
GoogleCloudPlatform/appengine-plugins-core
GoogleCloudPlatform
242,873,788
434
null
[ { "action": "opened", "author": "briandealwis", "comment_id": null, "datetime": 1499996073000, "masked_author": "username_0", "text": "_devappserver1_ supports `--automatic-restart`-like behaviour by setting the [`appengine.fullscan.seconds` system property](https://github.com/GoogleCloudPlatform/google-cloud-eclipse/pull/2125#issuecomment-315153081).", "title": "Add support for automatic-restart on file change for CloudSdkAppEngineDevServer1", "type": "issue" }, { "action": "closed", "author": "briandealwis", "comment_id": null, "datetime": 1500055585000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
2
218
false
false
218
false
kamon-io/kamon-akka-http
kamon-io
359,775,731
44
{ "number": 44, "repo": "kamon-akka-http", "user_login": "kamon-io" }
[ { "action": "opened", "author": "jypma", "comment_id": null, "datetime": 1536823912000, "masked_author": "username_0", "text": "Our custom directives can be imported instead of akka's. Users can still\r\nsay `pathPrefix` etc., but now kamon's operation name is automatically\r\nextended whenever sub-paths are entered that way.\r\n\r\nCurrently, a custom `OperationNameGenerator` is needed, since otherwise kamon's default will step in and overwrite our work :-)", "title": "WIP Add path directives that shadow akka's directives", "type": "issue" }, { "action": "created", "author": "ivantopo", "comment_id": 605602737, "datetime": 1585470305000, "masked_author": "username_1", "text": "Closing this one because we got alternative instrumentation for the path directives already merged.", "title": null, "type": "comment" } ]
2
2
425
false
false
425
false
nerettilab/SIMBA3D
nerettilab
349,881,429
4
null
[ { "action": "opened", "author": "tarak77", "comment_id": null, "datetime": 1534133150000, "masked_author": "username_0", "text": "Hi Michael,\r\n\r\nI am able to produce results setting the initial curve to zero and using a single chromosome contact matrix. But I was more interested in obtaining an ensemble of structures of entire genome for a particular cell, how do I set the initial curve to do so and is it possible to get 3D genome models using SIMBA3D?\r\n\r\nAny help will be great!\r\n\r\nThanks,\r\nTarak", "title": "Setting Initial curve and working genome wide ?", "type": "issue" }, { "action": "created", "author": "michael-m-rosenthal", "comment_id": 412901085, "datetime": 1534258537000, "masked_author": "username_1", "text": "Hi Tarak,\r\n\r\n(1) The first part on how to initialize the curve to obtain an ensemble is addressed below:\r\n\r\nThere are a variety of ways to accomplish it. One way is to randomly generate a list of initialized curves and then create a list of tasks that will loop through each initialization. This gives you the most control over the process since you can initialize from whatever distribution you wish and easily repeat the experiment later using different tuning parameters if needed.\r\n\r\nAnother option is to not provide an initialization and include\r\n`'randomize_initialization': true,`\r\nwithin the json task. This will tell SIMBA3D to randomly initialize the curve. It will use Guassian random noise to initialize the curve. The initialized curve generated should be stored in the output result.\r\n\r\n(2) For the second part, Is it possible to obtain an ensemble of structures of entire genome? \r\n\r\nYes, however depending on the resolution, you may run out of physical memory. We have done this in a paper for each chormosome of the full chromosome separately in the following paper.\r\nhttps://www.biorxiv.org/content/early/2018/05/07/316265\r\n\r\nYou should be able to estimate a full chromosome matrix structure using a multi-scale approach. It just occurred to me that an example of the multi-scale setup script has not been posted yet. I will post it soon.", "title": null, "type": "comment" }, { "action": "created", "author": "tarak77", "comment_id": 412979057, "datetime": 1534272936000, "masked_author": "username_0", "text": "Ok. I could be wrong but what I understood from (2) is that whole genome structures are possible at large bin sizes provided we supply a input contact matrix containing all 20 chromosomal pairs? \r\n\r\nI am eagerly waiting for the multi-scale approach setup script for the same.\r\n\r\nI had a favor to ask, will it be possible to help/provide the example scripts used in simulating the double spiral curve and the corresponding contact matrix(Supplementary figure S1, A and B). I really appreciate your help!\r\n\r\nThanks.", "title": null, "type": "comment" }, { "action": "created", "author": "michael-m-rosenthal", "comment_id": 412984432, "datetime": 1534274084000, "masked_author": "username_1", "text": "It should not be a problem supplying the simulated data case.\n\nI am cleaning up the setup script for the multiscale tasklist now and\nadding documentation for it.", "title": null, "type": "comment" }, { "action": "created", "author": "michael-m-rosenthal", "comment_id": 413087901, "datetime": 1534305724000, "masked_author": "username_1", "text": "I have added a multiscale example for one cell and chromosome.", "title": null, "type": "comment" }, { "action": "created", "author": "tarak77", "comment_id": 413088801, "datetime": 1534306165000, "masked_author": "username_0", "text": "Thanks, also is it possible to provide the scripts used to generate the simulated double spiral curve and the corresponding contact matrix?", "title": null, "type": "comment" }, { "action": "created", "author": "michael-m-rosenthal", "comment_id": 413188047, "datetime": 1534337542000, "masked_author": "username_1", "text": "Yes, it will take a little time to document it.", "title": null, "type": "comment" }, { "action": "created", "author": "tarak77", "comment_id": 413752247, "datetime": 1534479002000, "masked_author": "username_0", "text": "Awesome! thanks.", "title": null, "type": "comment" }, { "action": "closed", "author": "michael-m-rosenthal", "comment_id": null, "datetime": 1534730733000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
9
2,665
false
false
2,665
false
erizet/NlogViewer
null
251,722,413
15
{ "number": 15, "repo": "NlogViewer", "user_login": "erizet" }
[ { "action": "opened", "author": "JHerwig", "comment_id": null, "datetime": 1503336124000, "masked_author": "username_0", "text": "I solved some Issues from other users like auto scrolling and default values. I implemented a MaxRowCount property to change the ListView behaviour.\r\nAdditionally i added a class \"LogEvent\" from base class EventArgs to use Eventhandlers.\r\nLast but not least i added a public getter for the ListView \"LogView\" to give more flexibility.\r\n\r\nI also extended the example to show how my changes work.", "title": "More Functionality, more flexibility", "type": "issue" }, { "action": "created", "author": "fab672000", "comment_id": 428694085, "datetime": 1539198373000, "masked_author": "username_1", "text": "Built-up on your very nice PR and proposed a new PR [here](https://github.com/username_2/NlogViewer/pull/16)", "title": null, "type": "comment" }, { "action": "created", "author": "erizet", "comment_id": 430205915, "datetime": 1539690288000, "masked_author": "username_2", "text": "Thank you!", "title": null, "type": "comment" } ]
3
3
508
false
false
508
true
NYTimes/kyt
NYTimes
200,187,971
362
null
[ { "action": "opened", "author": "julianvmodesto", "comment_id": null, "datetime": 1484163613000, "masked_author": "username_0", "text": "### Versions of kyt, node, OS\r\nkyt 0.3.0\r\nnode 6.9.1\r\nmacOS 10.11.6\r\n\r\n### Bug or Feature?\r\nbug\r\n\r\n### Current Behavior\r\n\r\nIn a component, I have a `import '!style-loader!css-loader!./styles.css';` to import a set of styles globally.\r\n\r\nIn my component test, the error was thrown below.\r\n\r\n```\r\nCannot find module '!style-loader!css-loader!./styles.css' from 'index.js'\r\n\r\n at Resolver.resolveModule (../node_modules/jest-resolve/build/index.js:144:17)\r\n ...\r\n```\r\nLooks like the Jest require resolver didn't pick up the existing `moduleNameMapper` config for css/scss below:\r\n\r\nhttps://github.com/NYTimes/kyt/blob/d803c3e633d1c46b9fc1ee353502277b26feb76f/packages/kyt-core/config/jest.js#L12\r\n\r\n### Desired Behavior\r\n\r\nOne fix would be to update the css/scss regex. Instead of `'^[./a-zA-Z0-9$_-]+\\\\.(css|scss)$'`, I modified my kyt.config.js with:\r\n\r\n```\r\n modifyJestConfig: (baseConfig) => {\r\n const jestConfig = Object.assign({}, baseConfig);\r\n\r\n const styleStub = path.resolve(__dirname, 'node_modules', 'kyt', 'utils', 'jest', 'style.stub');\r\n jestConfig.moduleNameMapper = Object.assign({}, jestConfig.moduleNameMapper,\r\n {\r\n '\\\\.(css|scss)$': styleStub,\r\n }\r\n );\r\n\r\n return jestConfig;\r\n },\r\n```", "title": "Jest moduleNameMappers don't match imports with specific Webpack loaders", "type": "issue" }, { "action": "created", "author": "tizmagik", "comment_id": 271980199, "datetime": 1484165461000, "masked_author": "username_1", "text": "Good find. It's probably safe to change that regex, happy to review a PR with that!", "title": null, "type": "comment" }, { "action": "created", "author": "tizmagik", "comment_id": 272009210, "datetime": 1484172045000, "masked_author": "username_1", "text": "Closed in #363", "title": null, "type": "comment" }, { "action": "closed", "author": "tizmagik", "comment_id": null, "datetime": 1484172046000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
4
1,344
false
false
1,344
false
winpython/winpython
winpython
203,539,909
472
{ "number": 472, "repo": "winpython", "user_login": "winpython" }
[ { "action": "opened", "author": "ramlaxman", "comment_id": null, "datetime": 1485481495000, "masked_author": "username_0", "text": "", "title": "Year updated", "type": "issue" }, { "action": "created", "author": "stonebig", "comment_id": 275727690, "datetime": 1485539311000, "masked_author": "username_1", "text": "thanks !", "title": null, "type": "comment" } ]
2
2
8
false
false
8
false
PRX/styleguide.prx.org
PRX
259,592,892
60
null
[ { "action": "opened", "author": "sandikbarr", "comment_id": null, "datetime": 1506019241000, "masked_author": "username_0", "text": "<img width=\"140\" alt=\"screen shot 2017-09-21 at 1 39 04 pm\" src=\"https://user-images.githubusercontent.com/2250413/30712632-4b675570-9ed2-11e7-91e7-da56da2fdb09.png\">\r\nIn the screenshot, the date 9/7 shows as selected because that was what the datepicker was initially set to. The bound @Input() date changed to 8/31, but the 9/7 date is still showing as selected.", "title": "Datepicker calendar does not reflect changes to @Input() date", "type": "issue" }, { "action": "closed", "author": "sandikbarr", "comment_id": null, "datetime": 1506374159000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
2
364
false
false
364
false
binux/pyspider
null
115,349,643
323
null
[ { "action": "opened", "author": "vortex14", "comment_id": null, "datetime": 1446749882000, "masked_author": "username_0", "text": "How do timeout 30-50 seconds for webui? \r\nSometime in debug, when I wait answer db, webui print error:\r\n File \"/usr/local/lib/python2.7/SocketServer.py\", line 295, in _handle_request_noblock\r\n self.process_request(request, client_address)\r\n File \"/usr/local/lib/python2.7/SocketServer.py\", line 321, in process_request\r\n self.finish_request(request, client_address)\r\n File \"/usr/local/lib/python2.7/SocketServer.py\", line 334, in finish_request\r\n self.RequestHandlerClass(request, client_address, self)\r\n File \"/usr/local/lib/python2.7/SocketServer.py\", line 657, in __init__\r\n self.finish()\r\n File \"/usr/local/lib/python2.7/SocketServer.py\", line 716, in finish\r\n self.wfile.close()\r\n File \"/usr/local/lib/python2.7/socket.py\", line 279, in close\r\n self.flush()\r\n File \"/usr/local/lib/python2.7/socket.py\", line 303, in flush\r\n self._sock.sendall(view[write_offset:write_offset+buffer_size])\r\nerror: [Errno 32] Broken pipe", "title": "Timeout webui", "type": "issue" }, { "action": "created", "author": "binux", "comment_id": 154157173, "datetime": 1446750677000, "masked_author": "username_1", "text": "Sometimes browser disconnected before webui response while busy on some long running script. It may show this message. (I guess)", "title": null, "type": "comment" }, { "action": "created", "author": "vortex14", "comment_id": 154409262, "datetime": 1446816428000, "masked_author": "username_0", "text": "Yes, I added short code in begin project and all working!\r\n```javascript\r\n$.ajaxSetup({\r\n timeout:60*60*60 //Time in milliseconds\r\n});\r\n```", "title": null, "type": "comment" }, { "action": "closed", "author": "vortex14", "comment_id": null, "datetime": 1446816428000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "binux", "comment_id": 154410247, "datetime": 1446816641000, "masked_author": "username_1", "text": "Well, back end is still blocked to run the script.", "title": null, "type": "comment" } ]
2
5
1,278
false
false
1,278
false
fullcalendar/fullcalendar
fullcalendar
290,169,974
4,021
null
[ { "action": "opened", "author": "vishalgupta153", "comment_id": null, "datetime": 1516429808000, "masked_author": "username_0", "text": "### Bug Reports\r\nYou MUST have a JSBin recreation, or else your issue will be CLOSED without explanation.\r\nInstructions: http://fullcalendar.io/wiki/Reporting-Bugs/\r\n\r\n### Feature Requests\r\nSearch the issue tracker for an existing ticket before creating a new one.\r\nInstructions: http://fullcalendar.io/wiki/Requesting-Features/\r\n\r\n(Please erase the above text and begin typing. Thanks!)", "title": "my ng-click is not working on popup list", "type": "issue" }, { "action": "created", "author": "acerix", "comment_id": 359545627, "datetime": 1516650996000, "masked_author": "username_1", "text": "Would you be able to post a [runnable, stripped-down demonstration of the bug](http://fullcalendar.io/wiki/Reduced-Test-Cases/)? Would really appreciate it because the time saved reproducing will be time spent fixing.", "title": null, "type": "comment" }, { "action": "created", "author": "vishalgupta153", "comment_id": 359696428, "datetime": 1516691447000, "masked_author": "username_0", "text": "http://jsfiddle.net/6vmjt9rb/126/\r\nwhen i used ng-click to call the function on popoverElement it doesn't fire", "title": null, "type": "comment" }, { "action": "closed", "author": "acerix", "comment_id": null, "datetime": 1516712662000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "acerix", "comment_id": 359784046, "datetime": 1516712662000, "masked_author": "username_1", "text": "Your example gives an error \"$scope is not defined\", maybe you are missing a dependency? Seems to work ok with \"onclick\":\r\n\r\n`<em onclick=\"ClickEventShow()\">rich</em>`", "title": null, "type": "comment" }, { "action": "created", "author": "vishalgupta153", "comment_id": 360014822, "datetime": 1516766800000, "masked_author": "username_0", "text": "onclick is not working i am using angularjs so i need so onclick is not an option", "title": null, "type": "comment" }, { "action": "created", "author": "acerix", "comment_id": 360625483, "datetime": 1516920182000, "masked_author": "username_1", "text": "In the", "title": null, "type": "comment" }, { "action": "created", "author": "vishalgupta153", "comment_id": 360681182, "datetime": 1516940773000, "masked_author": "username_0", "text": "thats working on static element when we used ng-repeat for dynamic element it doesn't work on clicking the popover element is there is a chance of created new scope?", "title": null, "type": "comment" }, { "action": "created", "author": "acerix", "comment_id": 360842070, "datetime": 1516985962000, "masked_author": "username_1", "text": "I'm not sure what could be changed in the calendar to get your examples working, or what you mean by creating a new scope. \r\n\r\nPlease refer to the [support page](https://fullcalendar.io/support/) and use [Stack Overflow](https://stackoverflow.com/questions/tagged/fullcalendar) for help. If this is a bug, please supply a [runnable, stripped-down demonstration](http://fullcalendar.io/wiki/Reduced-Test-Cases/).", "title": null, "type": "comment" } ]
2
9
1,547
false
false
1,547
false
DigitalFlow/Xrm-WebApi-Client
null
301,653,773
28
null
[ { "action": "opened", "author": "fvakiliev", "comment_id": null, "datetime": 1519966686000, "masked_author": "username_0", "text": "Hi Florian,\r\n\r\nPlease send example for how to retrieve lists of Global/Local OptionSet's and StatusReasons (statuscode).\r\nLike there:\r\n`https://<crm-org>/api/data/v8.2/GlobalOptionSetDefinitions(Name='cp_opportunityreasonsoflost')`\r\n\r\nThanks,\r\nOldCat", "title": "HELP: How to retrieve OptionSet's", "type": "issue" }, { "action": "closed", "author": "DigitalFlow", "comment_id": null, "datetime": 1519974965000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "DigitalFlow", "comment_id": 369842252, "datetime": 1519974965000, "masked_author": "username_1", "text": "Hi @username_0,\r\n \r\nI did that using WebApiClient in [here](https://github.com/username_1/Xrm-Quick-Edit/blob/master/src/js/Translator/OptionSetHandler.js#L160).\r\nYou can basically just copy it, Xrm-Quick-Edit is retrieving the option sets in the translation dashboard.\r\nYou can try it out using the Option Set translation option for an entity.\r\n\r\nI'll close this issue, please reopen if you need more information.\r\n\r\nKind Regards,\r\nFlorian", "title": null, "type": "comment" } ]
2
3
690
false
false
690
true
jcabi/jcabi-github
jcabi
140,810,472
1,214
null
[ { "action": "opened", "author": "pajujadhav", "comment_id": null, "datetime": 1457993105000, "masked_author": "username_0", "text": "Please tell me...", "title": "How are you?", "type": "issue" }, { "action": "created", "author": "pajujadhav", "comment_id": 196541622, "datetime": 1457993105000, "masked_author": "username_0", "text": "My first comment!", "title": null, "type": "comment" }, { "action": "opened", "author": "pajujadhav", "comment_id": null, "datetime": 1457993105000, "masked_author": "username_0", "text": "Please tell me...", "title": "How are you?", "type": "issue" }, { "action": "created", "author": "dmarkov", "comment_id": 198251786, "datetime": 1458289699000, "masked_author": "username_1", "text": "@username_2 please pay attention to this issue ([par.21](http://at.teamed.io/policy.html#21))", "title": null, "type": "comment" }, { "action": "closed", "author": "yegor256", "comment_id": null, "datetime": 1458534839000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
3
5
142
false
false
142
true