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
aykevl/tinygo
null
366,484,687
34
null
[ { "action": "opened", "author": "Chillance", "comment_id": null, "datetime": 1538593723000, "masked_author": "username_0", "text": "Hi,\r\n\r\nI've been wondering about something here. Go has support to build for the ARM architecture that some micro-controllers has. Such as Cortex M4 which is ARMv7 (ARMv7E-M).\r\n\r\nWhy isn't the Go code just compiled straight to binary, and then flashed into a certain position in flash memory where it's suppose to be run at?\r\n\r\nI was thinking that using for example the https://wiki.makerdiary.com/nrf52840-mdk/ board, which has extra external 64-Mb QSPI FLASH memory, wouldn't it just be super cool and easy to just do that? Compile to ARM binary, flash into position, and run it like that. Binary would be a few MB and surely fit, right?\r\n\r\nMaybe it will use too much resources, and would need better CPU clock?\r\n\r\nWhy wouldn't such a thing work?\r\n\r\nThanks!", "title": "From Go directly to ARM microcontroller", "type": "issue" }, { "action": "created", "author": "aykevl", "comment_id": 426832671, "datetime": 1538608036000, "masked_author": "username_1", "text": "Of course, I've thought about the same ;) it would have been a lot less work to just use that compiler.\r\n\r\nTechnically, it might be possible but will require a *lot* of work. Among others:\r\n\r\n* The standard Go compiler does not support the thumb2 instruction set. And if it does, it probably won't support the details of the Cortex-M4, which probably doesn't support all instructions that are supported on a Cortex-A.\r\n* There is no support for volatile loads and stores in the compiler, as you generally don't need those except for very specialized algorithms on a desktop system. TinyGo relies on them for memory-mapped I/O. You could use sync/atomic for that but it will be slow.\r\n* The normal runtime expects to be running on a regular operating system, with lots of RAM and virtual memory.\r\n\r\nI doubt the Go maintainers are much interested in supporting such \"low-level\" chips with \"just\" 256kB of RAM.\r\n\r\nAlso, can you actually run programs from that 64Mb flash chip? Often, external flash is not memory mapped and if it is it may not be executable.\r\n\r\nFor some more information, see: https://groups.google.com/forum/m/#!topic/golang-dev/JGrRegAfW18\r\nAlso related, reusing parts of libgo: https://github.com/username_1/tinygo-gccgo", "title": null, "type": "comment" }, { "action": "created", "author": "Chillance", "comment_id": 426838768, "datetime": 1538610109000, "masked_author": "username_0", "text": "It would have been cool, but I suppose this makes tinygo even more useful then. I would really like to see this project go very far, where as you can essentially do everything in Go. For just doing your own small program, tinygo has that supported pretty well already. It just needs more contributors and more boards to become even bigger.\r\n\r\nIt would be even cooler if one might be able to start writing Wifi/BLE stuff in Go. Lower layers/drivers and then more higher level code using these layers/drivers. I2C and SPI is still not ready right? Using those kind of things, enables a lot of functionality too.\r\n\r\nAnd how about lower level micro-controller support to create, say, HID devices using tinygo? I mean, where you basically can specify the USB descriptors etc needed to do all that USB communication stuff on the lower levels. Basically, I would just love to see this project making all this possible.\r\n\r\nI'm not sure you can run programs on that external flash memory yet. I asked the support of the board to clarify this, but no response yet. If not used to remap memory, I'm not sure what the purpose of it is.", "title": null, "type": "comment" }, { "action": "created", "author": "deadprogram", "comment_id": 426918786, "datetime": 1538639271000, "masked_author": "username_2", "text": "Hi @username_0 it would be really helpful to have the ble support, but as @username_1 has pointed out that will take a fair amount of effort. One possible shortcut would be if TinyGo can use C libraries so the NRF wrappers could be used.\r\n\r\nAs far as I2C support, the AVR platform already has this implemented, and I am currently working on adding the same support for NRF. One that is working as expected, adding the SPI support should be mostly the same implementation pattern. On that note, it seems totally possible to implement HID but that will require a bit of effort that is probably pretty platform specific.\r\n\r\nRegarding the flash RAM, I think generally it is intended to provide data storage that can survive power-cycle operations. For example http://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.nrf52832.ps.v1.1%2Fuicr.html&cp=2_1_0_13&anchor=concept_rnp_grp_xr", "title": null, "type": "comment" }, { "action": "created", "author": "deadprogram", "comment_id": 426989647, "datetime": 1538653849000, "masked_author": "username_2", "text": "As a minor update to the last post, I have a working I2C for NRF now ready to submit a PR.", "title": null, "type": "comment" }, { "action": "created", "author": "aykevl", "comment_id": 427530039, "datetime": 1538784794000, "masked_author": "username_1", "text": "There is limited support for CGo although it isn't currently used so I'm not sure in what shape it is. Also, I haven't actually tested it on bare metal devices. If it works, you can call C functions by including their header files in Go and compile the Go sources to an object file to link with the object files from the C source files.\r\n\r\nIn general, I think Go provides the perfect opportunity to develop universal drivers that work on most/all chips with the given peripheral. It would be so much easier for porting. Consider for example how many Arduino libraries there are, I think for a large part because Arduino defines a common API for peripherals like GPIO, I2C, etc. that work on all supported chips. That's why I'm a bit wary of chip-vendor defined HALs.\r\n\r\nFor Bluetooth support, we might be able to use the Nordic SoftDevices which are binary blobs with a full BLE stack. They can be called with SVCalls which are like system calls. I'm hoping it is possible to convert the required .h files into .go files. On the other hand, using a SoftDevice complicates the flashing process somewhat and an open source OS is much more configurable / debuggable so I'd generally favor an open source stack, if we can get it to work.", "title": null, "type": "comment" }, { "action": "created", "author": "Chillance", "comment_id": 427540958, "datetime": 1538794960000, "masked_author": "username_0", "text": "I suppose you are afraid of having too much to do if this becomes popular no? :)\r\n\r\nPersonally, I would also like to see as much as possible here to be made in Go. Because of the portability and ease of it. Maybe even a flash tool could be made in Go one day. That could be nice. I just strongly dislike having to mess around with dependencies and tools to build things. This is why I love Go so much myself. If there is no CGo, building binaries is very easy to build and to cross-compile. At least for Mac/Linux/Windows.\r\n\r\nI suppose we won't get away from using LLVM, which is written in C++. And the gcc arm compiler is probably also needed. I haven't tested doing this in Windows, but I could imagine it's more of a hassle to get going with tinygo there. Just because of the LLVM and compiler needed there.\r\n\r\nI think this project is a good approach though. emgo is nice, but dumping it all out to C and compile that doesn't sound very optimal. And has it's limits too as I understand it regarding Go features support and optimizations.\r\n\r\nBy the way, I recall the Go team used tools to convert .c code to .go at some point for Go toolchain. Sure, they had to optimize it afterwards, but still. Could be something that can be done with C code in the microcontroller stack too, to get that over to Go maybe.\r\n\r\nAnd I agree with starting with common peripherals and extend Go language support with this project. With these things in place and growing interest, which most likely will come by that, BLE and such can come then. This project is still very early stage I'd say. But I can certainly see the huge potential with it.", "title": null, "type": "comment" }, { "action": "created", "author": "polarathene", "comment_id": 429251150, "datetime": 1539333698000, "masked_author": "username_3", "text": "Similar would apply to Rust if I'm not mistaken? Or is the approach tinygo is using differing from the one with Rust quite a bit? It looks like a GC will be used which might reduce reliability for any programs that need to be deterministic?\r\n\r\n Is tinygo a runtime separate from the program? Or a compiler separate from mainline Go? That's the impression I get from the start of this issue?", "title": null, "type": "comment" }, { "action": "created", "author": "aykevl", "comment_id": 429318311, "datetime": 1539349439000, "masked_author": "username_1", "text": "TinyGo is a new compiler and a new runtime implementation. However, it is able to import packages from the standard library and from `GOPATH` just like standard Go.", "title": null, "type": "comment" }, { "action": "created", "author": "erikwilson", "comment_id": 429938714, "datetime": 1539623850000, "masked_author": "username_4", "text": "This project looks very promising, if there are any parts that you would like help with regarding code contributions please let us know what your main needs are at the moment.\r\n\r\nMainly I am interested in this for the ESP32, NodeMCU was an awesome project to explore using Lua on a micro-controller, would like to see something similar with Go.", "title": null, "type": "comment" }, { "action": "created", "author": "aykevl", "comment_id": 429958999, "datetime": 1539627338000, "masked_author": "username_1", "text": "Sorry to disappoint you, but that is not going to happen anytime soon. There is (as far as I'm aware) no usable Xtensa backend for LLVM, which is used in the ESP chips.\r\nSee also: http://lists.llvm.org/pipermail/llvm-dev/2018-July/124789.html", "title": null, "type": "comment" }, { "action": "created", "author": "deadprogram", "comment_id": 445736230, "datetime": 1544431720000, "masked_author": "username_2", "text": "Seems like this conversation is very interesting, but no longer active nor having a specific destination. Also a number of the things discussed have now been implemented. I propose we close this issue and open new specific ones as needed for further implementation details.", "title": null, "type": "comment" }, { "action": "created", "author": "aykevl", "comment_id": 449583882, "datetime": 1545497855000, "masked_author": "username_1", "text": "Yes, I think the original question has been answered. I have answered many of the questions raised in this thread here:\r\nhttps://tinygo.readthedocs.io/en/latest/faq.html", "title": null, "type": "comment" }, { "action": "closed", "author": "aykevl", "comment_id": null, "datetime": 1545497855000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "achton", "comment_id": 464736478, "datetime": 1550497495000, "masked_author": "username_5", "text": "I'm not an expert in Go nor LLVM, but thought you might like this news :)", "title": null, "type": "comment" }, { "action": "created", "author": "aykevl", "comment_id": 464888421, "datetime": 1550525766000, "masked_author": "username_1", "text": "Thank you for the heads up anyway!\r\nIn any case, the docs should probably be updated with these developments, noting that there is a backend but that it needs some work to be useful.", "title": null, "type": "comment" } ]
6
16
8,795
false
false
8,795
true
FormidableLabs/victory-native
FormidableLabs
474,432,202
486
null
[ { "action": "opened", "author": "MaximeConan", "comment_id": null, "datetime": 1564473440000, "masked_author": "username_0", "text": "# Bugs and Questions\r\n\r\n### The Problem\r\n\r\nI have the following error : \r\n`java.lang.IllegalArgumentException: Invalid Region.Op - only INTERSECT and DIFFERENCE`\r\n\r\nThis error appears when I'm loading a screen with the component `VictoryArea`, if I comment it, the screen is loaded correctly, so I guess the error comes from it.\r\n\r\nreact-native : 0.59.10\r\nvictory-native : 32.0.2\r\n\r\n### Reproduction\r\n\r\nSimply import VicotyArea to a screen with the use of `targetSdkVersion: 28`, it works if I set my `targetSdkVersion` to 27.\r\n\r\n# Feature Requests\r\n\r\n### Description\r\n\r\nI would like to use Victory on an Android ap with the `targetSdkVersion` set at least to 28.", "title": "Error targetSdkVersion 28 : java.lang.IllegalArgumentException: Invalid Region.Op - only INTERSECT and DIFFERENCE", "type": "issue" }, { "action": "created", "author": "mojo3344", "comment_id": 522140045, "datetime": 1565987038000, "masked_author": "username_1", "text": "I had this same issue when moving to react native 0.59.5. It looks like it has to do with what react-native-svg passes to canvas.clipRect, and in older versions of react-native-svg, it has calls like:\r\n\r\n canvas.clipPath(evenOddPath, Region.Op.DIFFERENCE);\r\n\r\nWhich trigger the error. For me upgrading react-native-svg to 8.0.11 did the trick and worked with victory-native 31.0.0. Specifically I did:\r\n\r\n yarn remove react-native-svg\r\n yarn add react-native-svg@&8.0.11", "title": null, "type": "comment" }, { "action": "closed", "author": "boygirl", "comment_id": null, "datetime": 1604360857000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
3
3
1,145
false
false
1,145
false
pokryfka/aws-xray-sdk-swift
null
669,317,762
38
{ "number": 38, "repo": "aws-xray-sdk-swift", "user_login": "pokryfka" }
[ { "action": "opened", "author": "pokryfka", "comment_id": null, "datetime": 1596158131000, "masked_author": "username_0", "text": "Closes #36", "title": "feat: create NoOpSegment", "type": "issue" } ]
2
2
10
false
true
10
false
mikeborozdin/track-a-virus
null
598,307,622
29
{ "number": 29, "repo": "track-a-virus", "user_login": "mikeborozdin" }
[ { "action": "opened", "author": "mikeborozdin", "comment_id": null, "datetime": 1586624259000, "masked_author": "username_0", "text": "Fixed #28", "title": "tutorial on adding a new component", "type": "issue" } ]
2
2
364
false
true
9
false
folio-org/ui-plugin-find-interface
folio-org
608,448,508
46
{ "number": 46, "repo": "ui-plugin-find-interface", "user_login": "folio-org" }
[ { "action": "opened", "author": "folio-translations", "comment_id": null, "datetime": 1588091011000, "masked_author": "username_0", "text": "Please do not manually merge this pull request. It will either be automatically merged or withdrawn.", "title": "Update translation strings as of 20200428T150732", "type": "issue" } ]
2
2
3,285
false
true
101
false
elastic/logstash
elastic
457,408,273
10,869
{ "number": 10869, "repo": "logstash", "user_login": "elastic" }
[ { "action": "opened", "author": "danhermann", "comment_id": null, "datetime": 1560856336000, "masked_author": "username_0", "text": "", "title": "Docs for Java line codec", "type": "issue" } ]
2
2
231
false
true
0
false
19-1-skku-oss/2019-1-OSS-E2
19-1-skku-oss
453,244,721
80
{ "number": 80, "repo": "2019-1-OSS-E2", "user_login": "19-1-skku-oss" }
[ { "action": "opened", "author": "LJW25", "comment_id": null, "datetime": 1559856272000, "masked_author": "username_0", "text": "I added some conditions about base number.\r\nBecause my code can't convert base number bigger then 10, I edit my code.\r\nPlease check and merge!", "title": "Update NtoM.c", "type": "issue" }, { "action": "created", "author": "ParkDongChan", "comment_id": 499802404, "datetime": 1559896116000, "masked_author": "username_1", "text": "I check it, and I merge it.\r\nThank you :)", "title": null, "type": "comment" } ]
2
2
183
false
false
183
false
transcend-io/penumbra
transcend-io
680,418,536
131
null
[ { "action": "opened", "author": "eligrey", "comment_id": null, "datetime": 1597686956000, "masked_author": "username_0", "text": "`penumbra.zip()` is currently unimplemented. Our goal is to implement this using [Conflux](https://github.com/transcend-io/conflux). After this is implemented, `penumbra.save()` can auto-zip when there are multiple files to save.", "title": "Implement `penumbra.zip()`", "type": "issue" }, { "action": "closed", "author": "eligrey", "comment_id": null, "datetime": 1601659313000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
2
229
false
false
229
false
datalineio/dataline
datalineio
701,655,897
285
{ "number": 285, "repo": "dataline", "user_login": "datalineio" }
[ { "action": "opened", "author": "johnlafleur", "comment_id": null, "datetime": 1600151867000, "masked_author": "username_0", "text": "## What\r\n* Added 3 buttons\r\n* Centered the upper title and taglines\r\n* Reduced the size of the icon", "title": "Update on README.md layout ahead of soft launch", "type": "issue" }, { "action": "created", "author": "michel-tricot", "comment_id": 692509885, "datetime": 1600153211000, "masked_author": "username_1", "text": "All the MC links have been replaced by html links.\r\n\r\nHtml should only be used to help with the layout, not the content", "title": null, "type": "comment" } ]
2
2
218
false
false
218
false
shortintern2020-A-labyrinth/TeamD
shortintern2020-A-labyrinth
684,358,507
84
{ "number": 84, "repo": "TeamD", "user_login": "shortintern2020-A-labyrinth" }
[ { "action": "opened", "author": "f-nakahara", "comment_id": null, "datetime": 1598244953000, "masked_author": "username_0", "text": "#79", "title": "カテゴリー取得のAPI", "type": "issue" }, { "action": "created", "author": "yoshikawa", "comment_id": 678922078, "datetime": 1598249037000, "masked_author": "username_1", "text": "POSTMANで確認ナイス!!", "title": null, "type": "comment" } ]
2
2
18
false
false
18
false
IlyaTrifonov/github-slideshow
null
615,628,559
1
null
[ { "action": "closed", "author": "IlyaTrifonov", "comment_id": null, "datetime": 1589184441000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
2
6
6,813
false
true
0
false
yunionio/onecloud
yunionio
670,831,130
7,466
{ "number": 7466, "repo": "onecloud", "user_login": "yunionio" }
[ { "action": "opened", "author": "ioito", "comment_id": null, "datetime": 1596285152000, "masked_author": "username_0", "text": "Cherry pick of #7465 on release/3.3.\n\n#7465: fix: avoid host globalid change", "title": "Automated cherry pick of #7465: fix: avoid host globalid change", "type": "issue" }, { "action": "created", "author": "swordqiu", "comment_id": 667573793, "datetime": 1596308518000, "masked_author": "username_1", "text": "/lgtm", "title": null, "type": "comment" }, { "action": "created", "author": "swordqiu", "comment_id": 667573800, "datetime": 1596308524000, "masked_author": "username_1", "text": "/approve", "title": null, "type": "comment" } ]
3
5
1,678
false
true
89
false
camptocamp/c2cgeoportal
camptocamp
562,815,403
5,801
{ "number": 5801, "repo": "c2cgeoportal", "user_login": "camptocamp" }
[ { "action": "created", "author": "sbrunner", "comment_id": 584728066, "datetime": 1581439224000, "masked_author": "username_0", "text": "@dependabot rebase", "title": null, "type": "comment" } ]
2
4
4,242
false
true
18
false
SeedCompany/cord-field
SeedCompany
704,597,655
473
null
[ { "action": "opened", "author": "sethmcknight", "comment_id": null, "datetime": 1600456429000, "masked_author": "username_0", "text": "Rename 'Project Budget' card to 'Field Budget'", "title": "Rename Project Budget Card", "type": "issue" }, { "action": "closed", "author": "CarsonF", "comment_id": null, "datetime": 1600701929000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
2
46
false
false
46
false
shadowsocksrr/electron-ssr
shadowsocksrr
571,746,202
63
null
[ { "action": "opened", "author": "vocaloidchina", "comment_id": null, "datetime": 1582763876000, "masked_author": "username_0", "text": "Many people do not need to open the main application interface each time when using the application, they may only need to run in the background.", "title": "Suggestion: Do not open the software main interface when open the software(for ver 0.3.0)", "type": "issue" }, { "action": "created", "author": "xVanTuring", "comment_id": 591784435, "datetime": 1582780184000, "masked_author": "username_1", "text": "It used to work like that, but in Linux/Gnome Env there is no `tray` now, so user will need the menu in the main window.\r\nI guess an option for that will be enough. How about that?", "title": null, "type": "comment" }, { "action": "created", "author": "vocaloidchina", "comment_id": 591800214, "datetime": 1582783761000, "masked_author": "username_0", "text": "@username_1 This idea looks great!", "title": null, "type": "comment" }, { "action": "closed", "author": "xVanTuring", "comment_id": null, "datetime": 1583978552000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "xVanTuring", "comment_id": 597969040, "datetime": 1583978552000, "masked_author": "username_1", "text": "Added at: https://github.com/shadowsocksrr/electron-ssr/pull/70", "title": null, "type": "comment" } ]
2
5
422
false
false
422
true
cferdinandi/tabby
null
250,027,888
90
null
[ { "action": "opened", "author": "Amareis", "comment_id": null, "datetime": 1502716641000, "masked_author": "username_0", "text": "`npm install username_1/tabby` is wrong, you need to `npm install tabbyjs`", "title": "Fix README for point to correct npm package", "type": "issue" }, { "action": "closed", "author": "cferdinandi", "comment_id": null, "datetime": 1502717109000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "cferdinandi", "comment_id": 322189017, "datetime": 1502717109000, "masked_author": "username_1", "text": "No its not. That points to this GitHub repository, and installing from GitHub is supported by NPM. I am not yet actively maintaining this project on the NPM registry.", "title": null, "type": "comment" }, { "action": "created", "author": "BariqDharmawan", "comment_id": 720576275, "datetime": 1604334236000, "masked_author": "username_2", "text": "Hi I am sorry for comment on this old issue. But I can't use tabby with `npm install username_1/tabby` or `npm install tabbyjs` and import the library with `import 'tabbyjs'` on my JS. Am I missing something?", "title": null, "type": "comment" } ]
3
4
450
false
false
450
true
iotaledger/goshimmer
iotaledger
601,920,352
335
{ "number": 335, "repo": "goshimmer", "user_login": "iotaledger" }
[ { "action": "opened", "author": "Wollac", "comment_id": null, "datetime": 1587124450000, "masked_author": "username_0", "text": "- Enable `golint` in GolangCI\r\n- Do not excluded warnings about missing comments\r\n- Set confidence level to 0.9 to disable capitalization warnings", "title": "Enabled golint warnings for missing comments", "type": "issue" }, { "action": "created", "author": "Wollac", "comment_id": 615210624, "datetime": 1587125581000, "masked_author": "username_0", "text": "We could set the confidence level to the default `0.8` to also get warnings like:\r\n- _don't use ALL_CAPS in Go names; use CamelCase_\r\n- _var trunkTransactionId should be trunkTransactionID_", "title": null, "type": "comment" }, { "action": "created", "author": "luca-moser", "comment_id": 615215648, "datetime": 1587126331000, "masked_author": "username_1", "text": "Lets enforce that vars/consts are not all in caps. (we currently have a lot of those)", "title": null, "type": "comment" } ]
2
3
420
false
false
420
false
scipp/scipp
scipp
546,307,445
809
{ "number": 809, "repo": "scipp", "user_login": "scipp" }
[ { "action": "opened", "author": "OwenArnold", "comment_id": null, "datetime": 1578406548000, "masked_author": "username_0", "text": "Diagnoses and works around the issue reported [here](https://help.appveyor.com/discussions/problems/25672-appveyor-cache-not-updated)\r\n\r\nFuture fixes on the Appveyor side would render these changes uncessary, but at present we need to assist Appveyor in making the correct choice about caching the clcache directory because at present it does not update the cache when clcache contains new objects.", "title": "Correct Appveyor clcache caching behaviour", "type": "issue" }, { "action": "created", "author": "OwenArnold", "comment_id": 573722027, "datetime": 1578929665000, "masked_author": "username_0", "text": "I've raised it via their forums as still consider this a theory. There is no issue at this time.", "title": null, "type": "comment" } ]
1
2
494
false
false
494
false
dvajs/dva
dvajs
390,587,734
1,982
{ "number": 1982, "repo": "dva", "user_login": "dvajs" }
[ { "action": "opened", "author": "fonture", "comment_id": null, "datetime": 1544693096000, "masked_author": "username_0", "text": "add \"前\" in line 54", "title": "fix some missing of words", "type": "issue" } ]
2
2
190
false
true
18
false
jenkinsci/oic-auth-plugin
jenkinsci
484,879,914
76
null
[ { "action": "opened", "author": "LinuxSuRen", "comment_id": null, "datetime": 1566697380000, "masked_author": "username_0", "text": "Hi @username_1, I'd like to be another maintainer of this plugin. I already started a thread in the [mailing list](https://groups.google.com/d/msgid/jenkinsci-dev/CAG%3D_DuutWdzVyQrOne3om-wiKN%3DFjG9rxtjfTY8iA%3DVE1fQnxA%40mail.gmail.com).", "title": "Request to be another maintainer of this plugin", "type": "issue" }, { "action": "created", "author": "mjmbischoff", "comment_id": 524878032, "datetime": 1566836163000, "masked_author": "username_1", "text": "Replied to the mailing list, let me know how you want to follow up.", "title": null, "type": "comment" }, { "action": "created", "author": "LinuxSuRen", "comment_id": 525078707, "datetime": 1566892732000, "masked_author": "username_0", "text": "I'd be happy to be another maintainer which as a backup at least.", "title": null, "type": "comment" }, { "action": "created", "author": "oleg-nenashev", "comment_id": 541058647, "datetime": 1570799511000, "masked_author": "username_2", "text": "Permissions have been transferred", "title": null, "type": "comment" }, { "action": "closed", "author": "oleg-nenashev", "comment_id": null, "datetime": 1570799511000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "LinuxSuRen", "comment_id": 541081407, "datetime": 1570803133000, "masked_author": "username_0", "text": "@username_2 Thanks. I just forget this.", "title": null, "type": "comment" } ]
3
6
447
false
false
447
true
webpack-contrib/copy-webpack-plugin
webpack-contrib
624,395,805
496
null
[ { "action": "opened", "author": "blasterbug", "comment_id": null, "datetime": 1590424683000, "masked_author": "username_0", "text": "When compiling after updating from copy-webpack-plugin@6.0.0 to 6.0.1, I got this error (that seems be thrown by mini-css-extract-plugin). \r\n\"\"\"\r\nTypeError [ERR_INVALID_ARG_TYPE]: The \"path\" argument must be of type string. Received an instance of Object\r\n\"\"\"\r\n\r\nI am not sure if it's an actual bug, but I post this here since the only thing that changed when I got this bug was the version for mini-css-extract-plugin. \r\n\r\nI can try to make a minimal project to reproduce the errors, but seems overkill for me right now. \r\n\r\n- Operating System: MacOS 10.15.4 (happen also int he Google Cloud build environment)\r\n- Node Version: 14.2.0 (and node:13-alpine on Gcloud build)\r\n- NPM Version: 6.14.5\r\n- webpack Version: 4.43.0\r\n- copy-webpack-plugin Version: 6.0.1", "title": "ERROR in The \"path\" argument must be of type string. Received an instance of Object", "type": "issue" }, { "action": "created", "author": "evilebottnawi", "comment_id": 633654655, "datetime": 1590426323000, "masked_author": "username_1", "text": "Without reproducible test repo I can't help, sorry", "title": null, "type": "comment" }, { "action": "created", "author": "evilebottnawi", "comment_id": 633655647, "datetime": 1590426524000, "masked_author": "username_1", "text": "Minimum - please provide full stack trace of error", "title": null, "type": "comment" }, { "action": "created", "author": "TheCapedBaldi", "comment_id": 634292939, "datetime": 1590529008000, "masked_author": "username_2", "text": "@username_0 You should update how you call `copy-webpack-plugin`. I managed to make it work by doing the following:\r\n\r\n```js\r\nmodule.exports = () => ({\r\n //...\r\n plugins: [\r\n new CopyWebpackPlugin({\r\n patterns: [\r\n {\r\n from: 'public',\r\n globOptions: {\r\n ignore: ['public/service-worker.js'],\r\n },\r\n },\r\n ],\r\n }),\r\n ],\r\n)}\r\n```.", "title": null, "type": "comment" }, { "action": "created", "author": "evilebottnawi", "comment_id": 634586077, "datetime": 1590577208000, "masked_author": "username_1", "text": "Also mini-css-extract-plugin and copy-webpack-plugin uses difference hook, please update the issue using template and will reopen the issue, can't help without configurations/reproducible test repo/reproducible steps", "title": null, "type": "comment" }, { "action": "closed", "author": "evilebottnawi", "comment_id": null, "datetime": 1590577208000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "blasterbug", "comment_id": 638184555, "datetime": 1591189636000, "masked_author": "username_0", "text": "this is how I set up the copy plugin:\r\n```javascript\r\nnew CopyWebpackPlugin({\r\n patterns: [\r\n {\r\n from: path.resolve(__dirname, 'public'),\r\n to: path.resolve(__dirname, 'dist'),\r\n globOptions: {\r\n dot: true,\r\n gitignore: true,\r\n ignore: [\r\n '*.html',\r\n '*.svg',\r\n ],\r\n },\r\n },\r\n ],\r\n }),\r\n```\r\n\r\nAnd this what I've got:\r\n```\r\nChild mini-css-extract-plugin node_modules/css-loader/dist/cjs.js??ref--4-1!node_modules/postcss-loader/src/index.js??postcss!node_modules/sass-loader/dist/cjs.js!src/styles/main.scss:\r\n Entrypoint mini-css-extract-plugin = *\r\n [9f2e4028ce7cb94562a7cbb58ade39bc] ./node_modules/css-loader/dist/cjs.js??ref--4-1!./node_modules/postcss-loader/src??postcss!./node_modules/sass-loader/dist/cjs.js!./src/styles/main.scss 12 KiB {0} [built]\r\n + 1 hidden module\r\n \r\n ERROR in The \"path\" argument must be of type string. Received an instance of Object\r\n(node:90113) PromiseRejectionHandledWarning: Promise rejection was handled asynchronously (rejection id: 1)\r\n```", "title": null, "type": "comment" }, { "action": "reopened", "author": "evilebottnawi", "comment_id": null, "datetime": 1591190620000, "masked_author": "username_1", "text": "When compiling after updating from copy-webpack-plugin@6.0.0 to 6.0.1, I got this error (that seems be thrown by mini-css-extract-plugin). \r\n\"\"\"\r\nTypeError [ERR_INVALID_ARG_TYPE]: The \"path\" argument must be of type string. Received an instance of Object\r\n\"\"\"\r\n\r\nI am not sure if it's an actual bug, but I post this here since the only thing that changed when I got this error is the version for mini-css-extract-plugin. \r\n\r\nI can try to make a minimal project to reproduce the errors, but seems overkill for me right now. \r\n\r\n- Operating System: MacOS 10.15.4 (happen also int he Google Cloud build environment)\r\n- Node Version: 14.2.0 (and node:13-alpine on Gcloud build)\r\n- NPM Version: 6.14.5\r\n- webpack Version: 4.43.0\r\n- copy-webpack-plugin Version: 6.0.1", "title": "ERROR in The \"path\" argument must be of type string. Received an instance of Object", "type": "issue" }, { "action": "created", "author": "evilebottnawi", "comment_id": 638243869, "datetime": 1591195330000, "masked_author": "username_1", "text": "@username_0 Reproduced", "title": null, "type": "comment" }, { "action": "created", "author": "evilebottnawi", "comment_id": 638251581, "datetime": 1591196089000, "masked_author": "username_1", "text": "Looks like bug in `globby`", "title": null, "type": "comment" }, { "action": "created", "author": "evilebottnawi", "comment_id": 638255698, "datetime": 1591196503000, "masked_author": "username_1", "text": "https://github.com/sindresorhus/globby/issues/145", "title": null, "type": "comment" }, { "action": "created", "author": "Legends", "comment_id": 638277185, "datetime": 1591198614000, "masked_author": "username_3", "text": "Also ignore does not work properly:\r\nhttps://stackoverflow.com/questions/62172321/copy-webpack-plugin-v6-0-1-ignore-option-is-not-working", "title": null, "type": "comment" }, { "action": "created", "author": "evilebottnawi", "comment_id": 638297423, "datetime": 1591200526000, "masked_author": "username_1", "text": "@username_3 Please read my answer in the other issue", "title": null, "type": "comment" }, { "action": "created", "author": "liesahead", "comment_id": 640607428, "datetime": 1591623372000, "masked_author": "username_4", "text": "Up", "title": null, "type": "comment" }, { "action": "created", "author": "AmreeshTyagi", "comment_id": 647003015, "datetime": 1592663448000, "masked_author": "username_5", "text": "Meanwhile, I found one solution for my own.\r\n\r\nYou can use this plugin [remove-files-webpack-plugin](https://github.com/Amaimersion/remove-files-webpack-plugin/blob/master/README.md) to remove dist directory before compile & after compile you can remove map file or any specific file as per your requirement. \r\n\r\n``` javascript\r\n new RemovePlugin({\r\n /**\r\n * Before compilation permanently removes production build directory dist folder \r\n * Log only works for warnings and errors.\r\n */\r\n before: {\r\n include: [\r\n path.join(__dirname, 'server/dist')\r\n ],\r\n log: false,\r\n logWarning: true,\r\n logError: true,\r\n logDebug: false\r\n },\r\n after: {\r\n test: [\r\n {\r\n folder: path.join(__dirname, 'server/dist'),\r\n method: (absoluteItemPath) => {\r\n return new RegExp(/\\.map$/, 'm').test(absoluteItemPath);\r\n },\r\n recursive: true\r\n }\r\n ]\r\n }\r\n }),\r\n```", "title": null, "type": "comment" }, { "action": "created", "author": "gregbenz", "comment_id": 666505506, "datetime": 1596126319000, "masked_author": "username_6", "text": "With copy-webpack-plugin 6.0.3, I'm also getting \"ERROR in The \"path\" argument must be of type string. Received an instance of Object\". The error is just that, no additional information and there is no clear indication that the failure is coming from copy-webpack-plugin (but it definitely is).\r\n\r\nThe error goes away if I do not use **gitignore: true**\r\n\r\nMy configuration: \r\n\t```\r\nplugins: [\r\n\t\tnew CopyPlugin({\r\n\t\t\tpatterns: [\r\n\t\t\t\t{\r\n\t\t\t\t\tfrom: './',\r\n\t\t\t\t\tto: '../dist/',\r\n\t\t\t\t\tcontext: './src/',\r\n\t\t\t\t\tglobOptions: {\r\n\t\t\t\t\t\tdot: true,\r\n\t\t\t\t\t\t// gitignore: true, //In \"copy-webpack-plugin\": \"^6.0.3\", causes: ERROR in The \"path\" argument must be of type string. Received an instance of Object\r\n\t\t\t\t\t\tignore: ['**/*.ts', '**/*.tif*', '**/*.tif', '**/*.md', '**/*.js', '**/libs/**', '**/*.doc'],\r\n\t\t\t\t\t},\r\n\t\t\t\t},\r\n\t\t\t],\r\n\t\t}),\r\n\t],\r\n\r\n```", "title": null, "type": "comment" }, { "action": "created", "author": "gregbenz", "comment_id": 666541787, "datetime": 1596129767000, "masked_author": "username_6", "text": "Sorry, I'm not sure what you mean. What would I do to use the gitignore flag without errors?", "title": null, "type": "comment" }, { "action": "created", "author": "evilebottnawi", "comment_id": 666556608, "datetime": 1596130984000, "masked_author": "username_1", "text": "Send a fix to `globby`, here issue https://github.com/sindresorhus/globby/issues/145", "title": null, "type": "comment" }, { "action": "created", "author": "gregbenz", "comment_id": 666561048, "datetime": 1596131418000, "masked_author": "username_6", "text": "Thank you, updated https://github.com/microsoft/TypeScript/pull/35813", "title": null, "type": "comment" }, { "action": "created", "author": "evilebottnawi", "comment_id": 666567400, "datetime": 1596132126000, "masked_author": "username_1", "text": "It is not problem by typescript, it is problem in `globby` package", "title": null, "type": "comment" }, { "action": "created", "author": "gregbenz", "comment_id": 666571835, "datetime": 1596132458000, "masked_author": "username_6", "text": "Thank you for catching that, I had multiple tabs opened and copied to the wrong one. Deleted from TS and added to globby.", "title": null, "type": "comment" }, { "action": "created", "author": "emresandikci", "comment_id": 674132746, "datetime": 1597419311000, "masked_author": "username_7", "text": "I got same errors after the upgrade the plugin both of them \r\n\r\nits working with this configs\r\n\r\n```js\r\nconst htmlPackPlugin = new HtmlWebPackPlugin({\r\n filename: 'index.html',\r\n template: 'src/public/index.html',\r\n hash: true,\r\n});\r\nconst webpackCopyPlugin = new CopyWebpackPlugin({\r\n patterns: [\r\n {\r\n from: 'src/public',\r\n globOptions: { ignore: ['svg/*', '*.html', 'images/*'] },\r\n },\r\n ],\r\n});\r\n```", "title": null, "type": "comment" }, { "action": "closed", "author": "alexander-akait", "comment_id": null, "datetime": 1614440506000, "masked_author": "username_8", "text": "", "title": null, "type": "issue" } ]
9
23
6,545
false
false
6,545
true
hustcc/gantt-for-react
null
476,823,264
16
null
[ { "action": "opened", "author": "qiushi0908", "comment_id": null, "datetime": 1565006918000, "masked_author": "username_0", "text": "I get popupView background is black; It is not my mind; And i how to setup style with pupupView? \r\nIs lick this?\r\n\r\n```\r\n customPopupHtml = task => {\r\n return `\r\n <style type=\"text/css\">\r\n .details-container {\r\n width: 160px;\r\n background: #fff;\r\n }\r\n </style>\r\n <div class=\"details-container\">\r\n <h5>${task.name}</h5>\r\n <p>Expected to finish by ${task._end}</p>\r\n <p>${task.progress}% completed!</p>\r\n </div>\r\n `;\r\n };\r\n```\r\n\r\nBut the pupUpView bottom and top margin is still black!", "title": "'customPopupHtml' how to set css style?", "type": "issue" } ]
1
1
548
false
false
548
false
jlippold/tweakCompatible
null
482,031,144
94,134
null
[ { "action": "opened", "author": "SeeTheBridges", "comment_id": null, "datetime": 1566158329000, "masked_author": "username_0", "text": "```\r\n{\r\n \"packageId\": \"com.leftyfl1p.carplay\",\r\n \"action\": \"notworking\",\r\n \"userInfo\": {\r\n \"arch32\": false,\r\n \"packageId\": \"com.leftyfl1p.carplay\",\r\n \"deviceId\": \"iPhone8,1\",\r\n \"url\": \"http://cydia.saurik.com/package/com.leftyfl1p.carplay/\",\r\n \"iOSVersion\": \"12.4\",\r\n \"packageVersionIndexed\": true,\r\n \"packageName\": \"CarBridge\",\r\n \"category\": \"Tweaks\",\r\n \"repository\": \"Chariz\",\r\n \"name\": \"CarBridge\",\r\n \"installed\": \"\",\r\n \"packageIndexed\": true,\r\n \"packageStatusExplaination\": \"A matching version of this tweak for this iOS version could not be found. Please submit a review if you choose to install.\",\r\n \"id\": \"com.leftyfl1p.carplay\",\r\n \"commercial\": true,\r\n \"packageInstalled\": false,\r\n \"tweakCompatVersion\": \"0.1.5\",\r\n \"shortDescription\": \"Open any app in CarPlay!\",\r\n \"latest\": \"1.0.8\",\r\n \"author\": \"leftyfl1p\",\r\n \"packageStatus\": \"Unknown\"\r\n },\r\n \"base64\": \"eyJhcmNoMzIiOmZhbHNlLCJwYWNrYWdlSWQiOiJjb20ubGVmdHlmbDFwLmNhcnBsYXkiLCJkZXZpY2VJZCI6ImlQaG9uZTgsMSIsInVybCI6Imh0dHA6XC9cL2N5ZGlhLnNhdXJpay5jb21cL3BhY2thZ2VcL2NvbS5sZWZ0eWZsMXAuY2FycGxheVwvIiwiaU9TVmVyc2lvbiI6IjEyLjQiLCJwYWNrYWdlVmVyc2lvbkluZGV4ZWQiOnRydWUsInBhY2thZ2VOYW1lIjoiQ2FyQnJpZGdlIiwiY2F0ZWdvcnkiOiJUd2Vha3MiLCJyZXBvc2l0b3J5IjoiQ2hhcml6IiwibmFtZSI6IkNhckJyaWRnZSIsImluc3RhbGxlZCI6IiIsInBhY2thZ2VJbmRleGVkIjp0cnVlLCJwYWNrYWdlU3RhdHVzRXhwbGFpbmF0aW9uIjoiQSBtYXRjaGluZyB2ZXJzaW9uIG9mIHRoaXMgdHdlYWsgZm9yIHRoaXMgaU9TIHZlcnNpb24gY291bGQgbm90IGJlIGZvdW5kLiBQbGVhc2Ugc3VibWl0IGEgcmV2aWV3IGlmIHlvdSBjaG9vc2UgdG8gaW5zdGFsbC4iLCJpZCI6ImNvbS5sZWZ0eWZsMXAuY2FycGxheSIsImNvbW1lcmNpYWwiOnRydWUsInBhY2thZ2VJbnN0YWxsZWQiOmZhbHNlLCJ0d2Vha0NvbXBhdFZlcnNpb24iOiIwLjEuNSIsInNob3J0RGVzY3JpcHRpb24iOiJPcGVuIGFueSBhcHAgaW4gQ2FyUGxheSEiLCJsYXRlc3QiOiIxLjAuOCIsImF1dGhvciI6ImxlZnR5ZmwxcCIsInBhY2thZ2VTdGF0dXMiOiJVbmtub3duIn0=\",\r\n \"chosenStatus\": \"notworking\",\r\n \"notes\": \"\"\r\n}\r\n```", "title": "`CarBridge` notworking on iOS 12.4", "type": "issue" } ]
2
2
1,898
false
true
1,898
false
conan-io/conan-center-index
conan-io
709,561,677
3,011
null
[ { "action": "opened", "author": "p4654545", "comment_id": null, "datetime": 1601135597000, "masked_author": "username_0", "text": "### Package Details\r\n * Package Name/Version: **gcc/10.2**\r\n * Website: **https://gcc.gnu.org/**\r\n * Source code: ** ftp://ftp.gnu.org/gnu/gcc/gcc-10.2.0/**\r\n\r\n\r\n### Description Of The Library / Tool\r\nC/C++ compiler", "title": "[request] gcc 10", "type": "issue" }, { "action": "created", "author": "prince-chrismc", "comment_id": 700733187, "datetime": 1601388802000, "masked_author": "username_1", "text": "#1694", "title": null, "type": "comment" } ]
2
2
223
false
false
223
false
spotify/mkdocs-monorepo-plugin
spotify
621,201,330
16
{ "number": 16, "repo": "mkdocs-monorepo-plugin", "user_login": "spotify" }
[ { "action": "opened", "author": "rossmechanic", "comment_id": null, "datetime": 1589913673000, "masked_author": "username_0", "text": "Fixes #15", "title": "Fix mkdocs>=1.1.1 compatibility", "type": "issue" }, { "action": "created", "author": "emmaindal", "comment_id": 631025178, "datetime": 1589915449000, "masked_author": "username_1", "text": "Cool! Thank you! A few more things:\r\n\r\n* Bump up the mkdocs version in /requirements.txt. Would be good to cover that in this PR as well.\r\n* Version change. Bump up the version in /setup.py and add a comment in docs/CHANGELOG.md about the change.", "title": null, "type": "comment" }, { "action": "created", "author": "emmaindal", "comment_id": 631025286, "datetime": 1589915462000, "masked_author": "username_1", "text": "cc @username_2 to take a look on this as well!", "title": null, "type": "comment" }, { "action": "created", "author": "rossmechanic", "comment_id": 632176830, "datetime": 1590076843000, "masked_author": "username_0", "text": "@username_2 thanks! When do you think this'll be released?", "title": null, "type": "comment" }, { "action": "created", "author": "bih", "comment_id": 632177178, "datetime": 1590076884000, "masked_author": "username_2", "text": "@username_0 It already is :)", "title": null, "type": "comment" }, { "action": "created", "author": "rossmechanic", "comment_id": 632177501, "datetime": 1590076921000, "masked_author": "username_0", "text": "@username_2 legend! thanks!", "title": null, "type": "comment" } ]
3
6
395
false
false
395
true
SalesforceFoundation/gem
SalesforceFoundation
502,143,560
224
null
[ { "action": "opened", "author": "KietTruongSFDO", "comment_id": null, "datetime": 1570117122000, "masked_author": "username_0", "text": "**Note: FOR INTERNAL USE ONLY. For support questions, please use the GEM Chatter group in [The Power of Us Hub](https://powerofus.force.com).\r\nFor feature requests, please use the Ideas tab in [The Power of Us Hub](https://powerofus.force.com).**\r\n\r\n* **Do you want to request a *feature* or report a *bug*?**\r\nBug\r\n\r\n* **What is the current behavior?**\r\nGiven a Recurring Donation with Payment Allocations, when the Recurring Donation is deleted, the Payment Allocations are not deleted with it. \r\n\r\n* **What is the expected behavior?**\r\nWhen a Recurring Donation is deleted, the Payment Allocations are also deleted with it. \r\n\r\n* **What is the motivation / use case for changing the behavior?**\r\nThere should be no orphaned Payment Allocations when deleting a Recurring Donation. Orphaned Payment Allocations take up unnecessary space and is difficult to maintain. \r\n\r\n* **Acceptance Criteria**\r\n\r\n - **Given**: A Recurring Donation which has Payment Allocations associated with the Opportunity\r\n - **When**: The Recurring Donation is deleted\r\n - **Then**: The Payment Allocations should be deleted as well. \r\n\r\n* **Keyboard Acceptance Criteria**\r\n\r\n - **Given**: I am navigating the site using only my keyboard\r\n - **When**: I tab to the button\r\n - **Then**: I should see the button highlighted on focus\r\n - **And When**: I press enter on a highlighted button\r\n - **Then**: An action should occur\r\n\r\n* **Screenreader Acceptance Criteria**\r\n\r\n - **Given**: I am using a screenreader to navigate the site\r\n - **When**: I tab to the button\r\n - **Then**: I should hear the label of the button\r\n - **And When**: I press enter\r\n - **Then**: I should hear that an action has occurred", "title": "Payment Allocations are orphaned when deleting Recurring Donations", "type": "issue" }, { "action": "created", "author": "KietTruongSFDO", "comment_id": 538000599, "datetime": 1570117162000, "masked_author": "username_0", "text": "**lurch: attach W-033708", "title": null, "type": "comment" }, { "action": "created", "author": "LurchTheButler", "comment_id": 538000871, "datetime": 1570117203000, "masked_author": "username_1", "text": "Tracking <a href=\"https://foundation.my.salesforce.com/a2x1E0000087vYVQAY\" target=\"_blank\">W-033708</a>", "title": null, "type": "comment" }, { "action": "closed", "author": "KietTruongSFDO", "comment_id": null, "datetime": 1570118033000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
2
4
1,821
false
false
1,821
false
Iaiao/speedrun
null
616,131,456
1
null
[ { "action": "opened", "author": "asvvvad", "comment_id": null, "datetime": 1589225813000, "masked_author": "username_0", "text": "I was searching and found this so just heads up^^ https://vlang.io/docs#generics", "title": "Generics have been implemented in V", "type": "issue" }, { "action": "closed", "author": "Iaiao", "comment_id": null, "datetime": 1589626695000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "Iaiao", "comment_id": 629627756, "datetime": 1589626695000, "masked_author": "username_1", "text": "It was there in mid 2019 (or even earlier), partially implemented in the end of the year, but it still contains many bugs.", "title": null, "type": "comment" } ]
2
3
202
false
false
202
false
Shadows-of-Fire/FastWorkbench
null
300,625,186
2
null
[ { "action": "opened", "author": "JohnC94", "comment_id": null, "datetime": 1519737419000, "masked_author": "username_0", "text": "Forge: 14.23.2.2619\r\nFastWorkBench: 1.12.2-1.1.1\r\nModlist: https://i.imgur.com/juRC8hM.png\r\nSingle Player\r\n\r\nWhen FastWorkBench is disabled. https://i.imgur.com/A2yAIrv.gifv\r\n\r\nWhen FastWorkbench is enabled. https://i.imgur.com/ffIRnha.gifv\r\n\r\nI'm aware this might be something specific to me, but I figured I should report it anyways.", "title": "Removes JEI \"+\" Button", "type": "issue" }, { "action": "created", "author": "Shadows-of-Fire", "comment_id": 368946549, "datetime": 1519750372000, "masked_author": "username_1", "text": "Ah. It appears there's an API call to fix this. Let me figure out how that works.", "title": null, "type": "comment" }, { "action": "closed", "author": "Shadows-of-Fire", "comment_id": null, "datetime": 1519750720000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "yepidoodles", "comment_id": 394148084, "datetime": 1528016942000, "masked_author": "username_2", "text": "I've just added this to my 1.12.2 modpack and server, and on both multiplayer and single player, the + does not show. \r\nForge: 2707\r\nFastWorkBench: 1.5.0\r\nI can send you the modpack if you need it.", "title": null, "type": "comment" }, { "action": "reopened", "author": "Shadows-of-Fire", "comment_id": null, "datetime": 1528017003000, "masked_author": "username_1", "text": "Forge: 14.23.2.2619\r\nFastWorkBench: 1.12.2-1.1.1\r\nModlist: https://i.imgur.com/juRC8hM.png\r\nSingle Player\r\n\r\nWhen FastWorkbench is disabled. https://i.imgur.com/A2yAIrv.gifv\r\n\r\nWhen FastWorkbench is enabled. https://i.imgur.com/ffIRnha.gifv\r\n\r\nI'm aware this might be something specific to me, but I figured I should report it anyways.", "title": "Removes JEI \"+\" Button", "type": "issue" }, { "action": "created", "author": "Shadows-of-Fire", "comment_id": 394148138, "datetime": 1528017003000, "masked_author": "username_1", "text": "Again? Theres no way... This issue never seems to go away, does it.", "title": null, "type": "comment" }, { "action": "created", "author": "Shadows-of-Fire", "comment_id": 394219849, "datetime": 1528080181000, "masked_author": "username_1", "text": "Well... I can't reproduce it being missing. Not in SSP or on dedicated, nor in dev environment.", "title": null, "type": "comment" }, { "action": "created", "author": "yepidoodles", "comment_id": 394251922, "datetime": 1528095122000, "masked_author": "username_2", "text": "So, it looks like the player who reported it to me was being an idiot, it's actually fine (just double checked myself), sorry for the scare!", "title": null, "type": "comment" }, { "action": "closed", "author": "Shadows-of-Fire", "comment_id": null, "datetime": 1528096803000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
3
9
1,255
false
false
1,255
false
GolosChain/cyberway
GolosChain
454,957,567
804
{ "number": 804, "repo": "cyberway", "user_login": "GolosChain" }
[ { "action": "opened", "author": "boostmultifruit", "comment_id": null, "datetime": 1560298716000, "masked_author": "username_0", "text": "Resolves #636", "title": "Add reputation to EE-genesis #636", "type": "issue" }, { "action": "created", "author": "boostmultifruit", "comment_id": 501072796, "datetime": 1560299029000, "masked_author": "username_0", "text": "@afalaleev @zxcat this pull-request build fails because buildkite is broken on whole Cyberway\r\nthis problem can be fixed with my this pull: https://github.com/GolosChain/cyberway.fc/pull/37 - merge this fix and after restart buildkite it will succeed", "title": null, "type": "comment" } ]
1
2
263
false
false
263
false
atc0005/go-ezproxy
null
640,383,212
9
{ "number": 9, "repo": "go-ezproxy", "user_login": "atc0005" }
[ { "action": "created", "author": "atc0005", "comment_id": 645331272, "datetime": 1592395256000, "masked_author": "username_0", "text": "@dependabot rebase", "title": null, "type": "comment" } ]
2
2
3,572
false
true
18
false
onsip/SIP.js
null
692,889,100
855
null
[ { "action": "opened", "author": "panmareksadowski", "comment_id": null, "datetime": 1599208091000, "masked_author": "username_0", "text": "Hi,\r\n\r\nFunction UserAgentDelegate.onDisconnect(error?) passed by UserAgentOptions is not called when user stopped. I guess it should as UserAgent stops cause disconnect transport. And from documentation: ,,_Called upon transport transitioning from connected state._''. It looks UserAgentDelegate.onDisconnect(error?) is **only** called on transport error.", "title": "Function UserAgentDelegate.onDisconnect(error?) is not called after UserAgent Stopped", "type": "issue" }, { "action": "created", "author": "john-e-riordan", "comment_id": 693592479, "datetime": 1600282064000, "masked_author": "username_1", "text": "Without addressing if it should or should not be called, he current behavior was done intentionally. After transitioning to `UserAgentState.Stopped`...\r\n- `onConnect` will not be called\r\n- `onDisconnect` will not be called\r\n- additional incoming messages from the transport will not be processed\r\n- no attempt will be made to reconnect the transport\r\n\r\nOne consideration is that the reconnection logic would needs to be aware that the UserAgent may be stopped which I suppose might be ok as long as the reconnection logic is at the UserAgent level or above?\r\n\r\nAnyway, there is no bug in the current implementation. This could be a valid change to the API design however - needs more consideration.", "title": null, "type": "comment" }, { "action": "created", "author": "panmareksadowski", "comment_id": 731062908, "datetime": 1605865583000, "masked_author": "username_0", "text": "Ok, thank you for explication.", "title": null, "type": "comment" } ]
2
3
1,083
false
false
1,083
false
Ryujinx/Ryujinx-Games-List
Ryujinx
619,077,620
1,225
null
[ { "action": "opened", "author": "GoffyDude", "comment_id": null, "datetime": 1589558228000, "masked_author": "username_0", "text": "## FOX n FORESTS\r\n\r\n#### Current on `master` : 1.0.4571\r\n\r\nLoads to main menu and then deadlocks around 10 minutes in.\r\n\r\n#### Screenshots :\r\n\r\n![2020-05-15 09_44_59-Ryujinx 1 0 4571 - FOX n FORESTS v1 0 0 (01008A100A028000) (64-bit)](https://user-images.githubusercontent.com/62343878/82070731-66a98a00-9692-11ea-9e0e-96c046e8cb78.png)\r\n![2020-05-15 09_55_09-Ryujinx 1 0 4571 - FOX n FORESTS v1 0 0 (01008A100A028000) (64-bit)](https://user-images.githubusercontent.com/62343878/82070736-67dab700-9692-11ea-954d-19137cdf8432.png)\r\n\r\n\r\n#### Log file :\r\n\r\n[FoxnForests.zip](https://github.com/Ryujinx/Ryujinx-Games-List/files/4635473/FoxnForests.zip)", "title": "FOX n FORESTS", "type": "issue" }, { "action": "created", "author": "EmulationFanatic", "comment_id": 779871364, "datetime": 1613485669000, "masked_author": "username_1", "text": "Updated", "title": null, "type": "comment" } ]
2
2
656
false
false
656
false
scality/hdclient
scality
648,984,992
52
{ "number": 52, "repo": "hdclient", "user_login": "scality" }
[ { "action": "created", "author": "bert-e", "comment_id": 652420409, "datetime": 1593610330000, "masked_author": "username_0", "text": "# Hello dependabot-preview[bot],\n\n\n\nMy role is to assist you with the merge of this\npull request. Please type `@username_0 help` to get information\non this process, or consult the [user documentation](\nhttps://eve.devsca.com/github/scality/hdclient/username_0/doc/user).\n\n\n\n\n\n*Status report is not available.*", "title": null, "type": "comment" }, { "action": "created", "author": "bert-e", "comment_id": 652420432, "datetime": 1593610333000, "masked_author": "username_0", "text": "# Waiting for approval\n\n\n\nThe following approvals are needed before I can proceed with the merge:\n\n\n* the author\n\n\n* 2 peers", "title": null, "type": "comment" } ]
2
4
9,236
false
true
425
true
alexa-pi/AlexaPi
alexa-pi
556,311,567
486
null
[ { "action": "opened", "author": "dayalnigam", "comment_id": null, "datetime": 1580227662000, "masked_author": "username_0", "text": "[td.txt](https://github.com/alexa-pi/AlexaPi/files/4123307/td.txt)\r\nThank you for reporting an issue with **AlexaPi**.\r\n\r\nMake sure you are running the latest version of **AlexaPi**, and look through [issues](https://github.com/alexa-pi/AlexaPi/issues?utf8=%E2%9C%93&q=is%3Aissue) before submitting.\r\n\r\nCheck out our [Wiki](https://github.com/alexa-pi/AlexaPi/wiki/), and make sure to look at [Debugging](https://github.com/alexa-pi/AlexaPi/wiki/Debugging/), and [Audio debugging](https://github.com/alexa-pi/AlexaPi/wiki/Audio-setup-&-debugging) in particular before filing an issue.\r\n\r\nIn order to help troubleshooting, be sure to include the following information:\r\n\r\n**Output of the [audio debugging script](https://github.com/alexa-pi/AlexaPi/wiki/Audio-setup-&-debugging#audio-debugging-script).**\r\n\r\n**Your OS (including version) where you are running AlexaPi:**\r\n_Note: Raspbian older than Stretch is not supported!_\r\n```\r\n```\r\n\r\n**Your hardware platform and model you are running on:**\r\nRaspberrypi3\r\n```\r\n\r\n```\r\n\r\n**Python release (`python3 --version`):**\r\npython3\r\n```\r\n\r\n```\r\n\r\n**Description of problem:**\r\nshowing Cannot connect to server socket err = No such file or directory\r\nJan 28 20:48:49 raspberrypi python3[454]: Cannot connect to server request channel\r\nJan 28 20:48:49 raspberrypi python3[454]: jack server is not running or cannot be started\r\nJan 28 20:48:49 raspberrypi python3[454]: JackShmReadWritePtr::~JackShmReadWritePtr - Init not done for -1, skipping unlock\r\nJan 28 20:48:52 raspberrypi python3[454]: /opt/AlexaPi/src/main.py:71: YAMLLoadWarning: calling yaml.load() without Loader=...\r\nJan 28 20:48:52 raspberrypi python3[454]: config = yaml.load(stream)\r\n\r\n```\r\n\r\n```\r\n\r\n**Expected:**\r\n```\r\n\r\n```\r\n\r\n**Problem-relevant `config.yaml` entries:**\r\nyes\r\n\r\n```\r\n\r\n**Steps to reproduce:**\r\n\r\n1. \r\n2. \r\n3. \r\n\r\n**Traceback (if applicable):**\r\n```\r\n\r\n```\r\n\r\n**Additional info:**\r\ni am using usb PnP for audio outputs\r\n \r\n\r\n```", "title": "jack error", "type": "issue" } ]
1
1
1,954
false
false
1,954
false
BoletoNet/boletonet
BoletoNet
615,033,817
856
null
[ { "action": "opened", "author": "Falcastilho", "comment_id": null, "datetime": 1588979938000, "masked_author": "username_0", "text": "Pessoal, estou iniciando um projeto de teste com CNAB e tentando usar o boletonet. Tenho muitas dúvidas que acredito que vão se resolvendo durante o desenvolvimento e vendo exemplos, mas gostaria de uma ajuda com a dúvida principal sobre o conceito de utilização e se o boletonet realmente tem a solução que procuro.\r\n\r\nQuero gerar arquivo CNAB para transferência entre contas em massa no C# e não utilizar apenas para gerar boleto. Alguém sabe dizer se é possível gerar esse arquivo para fazer transferência entre contas e se possível, como fazer?\r\n\r\nObrigado.", "title": "Iniciando com CNAB", "type": "issue" }, { "action": "created", "author": "brunobertechini", "comment_id": 629640020, "datetime": 1589632972000, "masked_author": "username_1", "text": "Estou atras da mesma informacao. Fiz uma analise do codigo e parece que o layout implementado para CNAB240 é apenas para boletos (Cobrança) e não para Ted/DOC (movimentacao - Pagamentos a fornecedor). \r\n\r\nAlguém do projeto pode confirmar?", "title": null, "type": "comment" }, { "action": "created", "author": "ivanteles", "comment_id": 629687246, "datetime": 1589653333000, "masked_author": "username_2", "text": "Somente para boleto!", "title": null, "type": "comment" }, { "action": "created", "author": "Falcastilho", "comment_id": 629691096, "datetime": 1589655279000, "masked_author": "username_0", "text": "Pessoal, encontrei a resposta sobre o assunto. O boletonet realmente não foi feito pra isso e ele faz CNABs específicos para boleto, porém com o CNAB mesmo é possível sim fazer transferências, então peguei a documentação que os bancos disponibilizam e montei um projeto meu de gerador de CNABs para transferência entre contas. Já ta funcionando pro itaú e to adicionando alguns outros bancos.", "title": null, "type": "comment" }, { "action": "closed", "author": "Falcastilho", "comment_id": null, "datetime": 1589655285000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "reopened", "author": "Falcastilho", "comment_id": null, "datetime": 1589655289000, "masked_author": "username_0", "text": "Pessoal, estou iniciando um projeto de teste com CNAB e tentando usar o boletonet. Tenho muitas dúvidas que acredito que vão se resolvendo durante o desenvolvimento e vendo exemplos, mas gostaria de uma ajuda com a dúvida principal sobre o conceito de utilização e se o boletonet realmente tem a solução que procuro.\r\n\r\nQuero gerar arquivo CNAB para transferência entre contas em massa no C# e não utilizar apenas para gerar boleto. Alguém sabe dizer se é possível gerar esse arquivo para fazer transferência entre contas e se possível, como fazer?\r\n\r\nObrigado.", "title": "Iniciando com CNAB", "type": "issue" }, { "action": "created", "author": "brunobertechini", "comment_id": 638054986, "datetime": 1591174016000, "masked_author": "username_1", "text": "@username_0 não seria interessante abrir o codigo e quem sabe integrar com o Boleto.Net? Ou sairia do escopo?\r\n\r\nVocê aceita contributors para este projeto ? Estou trabalhando na mesma idéia", "title": null, "type": "comment" }, { "action": "created", "author": "cetimarcelo", "comment_id": 649580301, "datetime": 1593095054000, "masked_author": "username_3", "text": "Também estou iniciando no desenvolvimento disso, já fiz uma rotina simples em Delphi para um cliente que era algo especifico para folha de pagamento dos funcionários para agilizar peguei um projeto do ACBr que iniciaram, mas não foi finalizado, aproveitei o que tinha lá e fiz, mas vou precisar de algo bem completo, daqui uns 15 dias inicio nessa rotina para todo tipo de transferência e pagamentos.", "title": null, "type": "comment" } ]
4
8
2,363
false
false
2,363
true
PixarAnimationStudios/OpenTimelineIO
PixarAnimationStudios
626,770,271
724
null
[ { "action": "opened", "author": "xyproto", "comment_id": null, "datetime": 1590695338000, "masked_author": "username_0", "text": "Hi,\r\n\r\nI'm trying to package OpenTimelineIO for Arch Linux.\r\n\r\nLooking at `setup.py` and the CMake files, it looks like OpenTimelineIO (python files that go in site-packages + C++ include files + libraries) is meant to be installed either into /home somewhere for a user, or directly onto the system into / somewhere. However, when packaging for a Linux distro there are slightly different needs, since files needs to be able to be packaged into a directory that will later be installed to `/`. Usually, this can be solved by flags to `setup.py` or flags to `cmake`, but I was not successful in convincing OpenTimelineIO to install to a directory, meant for being installed to the system root later.\r\n\r\nIs there a flag I have overlooked?\r\n\r\nHere is my best attempt so far, at a WIP `PKGBUILD` file. I assume the intention is that only `setup.py` or `cmake` should be called, but I tried a few different things.\r\n\r\n```bash\r\n# Maintainer: Alexander F. Rødseth <username_0@archlinux.org>\r\n\r\npkgname=python-opentimelineio\r\npkgver=0.12.1\r\npkgrel=1\r\npkgdesc='API and interchange format for editorial timeline information'\r\narch=(any)\r\nlicense=('APACHE')\r\nmakedepends=(cmake git python-pip python-setuptools setconf)\r\nurl='https://github.com/PixarAnimationStudios/OpenTimeLineIO'\r\nsource=(\"git+$url#commit=cc9c067cf8482d9e703c480f31df9d22198d076a\") # tag: v0.12.1\r\nmd5sums=(SKIP)\r\n\r\nprepare() {\r\n setconf OpenTimeLineIO/setup.py _ctx.cxx_install_root \"'\"\"$pkgdir\"\"'\"\r\n local site_packages=$(python -c \"import site; print(site.getsitepackages()[0])\")\r\n setconf OpenTimeLineIO/setup.py _ctx.install_usersite \"'\"\"$pkgdir$site_packages\"\"'\"\r\n}\r\n\r\nbuild() {\r\n mkdir -p build\r\n cd build\r\n cmake \"$srcdir/OpenTimeLineIO\" \\\r\n -DCMAKE_INSTALL_PREFIX=/usr \\\r\n -DCMAKE_INSTALL_LIBDIR=lib \\\r\n -DCMAKE_C_FLAGS=\"$CFLAGS -fPIC -w\" \\\r\n -DPYTHON_EXECUTABLE=/usr/bin/python \\\r\n -DOTIO_PYTHON_INSTALL:BOOL=ON \\\r\n -G Ninja\r\n ninja\r\n}\r\n\r\npackage() {\r\n DESTDIR=\"$pkgdir\" ninja -C build install\r\n cd \"$srcdir/OpenTimeLineIO\"\r\n python setup.py install --cxx-install-root=\"$pkgdir/usr\" --user\r\n}\r\n\r\n# vim: ts=2 sw=2 et:\r\n```\r\n\r\nAttaching the `stdout` and `stderr` I get when running the above:\r\n\r\n[out.log](https://github.com/PixarAnimationStudios/OpenTimelineIO/files/4697866/out.log)\r\n[err.log](https://github.com/PixarAnimationStudios/OpenTimelineIO/files/4697867/err.log)\r\n\r\nThe resulting directory structure in the package directory is this one (without ie. `otioconvert`).\r\n\r\n[pkgdir.txt](https://github.com/PixarAnimationStudios/OpenTimelineIO/files/4697878/pkgdir.txt)\r\n\r\nAny help or tips are warmly welcome.\r\n\r\nBest regards,\r\nAlexander F. Rødseth", "title": "Not installing for a user, not installing for root, but packaging for a Linux distro", "type": "issue" }, { "action": "created", "author": "ssteinbach", "comment_id": 675780217, "datetime": 1597796104000, "masked_author": "username_1", "text": "@username_0 sorry for the late reply - I think the #764 PR might make what you're trying to do easier. Does that look like it might help?", "title": null, "type": "comment" }, { "action": "created", "author": "xyproto", "comment_id": 675876977, "datetime": 1597818101000, "masked_author": "username_0", "text": "@username_1 Yes, that looks helpful. I'll give it a shot.", "title": null, "type": "comment" } ]
2
3
2,839
false
false
2,839
true
onivim/oni2
onivim
678,714,449
2,296
{ "number": 2296, "repo": "oni2", "user_login": "onivim" }
[ { "action": "opened", "author": "kyleshevlin", "comment_id": null, "datetime": 1597350468000, "masked_author": "username_0", "text": "This PR adds a configuration setting allowing the user to put the sidebar on the right side. This is accomplished by creating a list of the \"surface\" components, and reversing their order if the setting is set to `right`. The default CSS lays out the components correctly.", "title": "feat(workbench) adds configurable sidebar position", "type": "issue" }, { "action": "created", "author": "bryphe", "comment_id": 673753845, "datetime": 1597360282000, "masked_author": "username_1", "text": "Awesome PR @username_0 - thank you!", "title": null, "type": "comment" }, { "action": "created", "author": "bryphe", "comment_id": 673754436, "datetime": 1597360403000, "masked_author": "username_1", "text": "I wonder if we should flip the 'highlight' in the activity bar:\r\n\r\n![Screen Shot 2020-08-13 at 4 11 36 PM](https://user-images.githubusercontent.com/13532591/90196053-d1e12600-dd7f-11ea-93ac-fc2b1cfc74f7.png)\r\n\r\nthere is a highlight line to show the active selected sidebar pane - I believe it would make sense to move it to the right side when `workbench.sideBar.location` is `right`.", "title": null, "type": "comment" }, { "action": "created", "author": "kyleshevlin", "comment_id": 673754748, "datetime": 1597360464000, "masked_author": "username_0", "text": "Sure, @username_1, that's how it looks in VSCode, so I can give that a shot\r\n![Screen Shot 2020-08-13 at 4 13 52 PM](https://user-images.githubusercontent.com/4333144/90196186-07860f00-dd80-11ea-847d-d91be1332e73.jpg)", "title": null, "type": "comment" }, { "action": "created", "author": "bryphe", "comment_id": 673755379, "datetime": 1597360599000, "masked_author": "username_1", "text": "Sweet, thanks @username_0 !\r\n\r\nThat border is here: https://github.com/onivim/oni2/blob/5e385db6ce03635bd390d4429d25ebd83af2ea7a/src/UI/Dock.re#L33\r\n\r\nso we'll need to add a parameter to `<Dock />`, and then plumb it through `<activityBar />`:\r\n\r\nhttps://github.com/onivim/oni2/blob/5e385db6ce03635bd390d4429d25ebd83af2ea7a/src/UI/Root.re#L126\r\n\r\nPretty close to where we query currently in `Root.re` to get the sidebar location.", "title": null, "type": "comment" }, { "action": "created", "author": "kyleshevlin", "comment_id": 673767389, "datetime": 1597363332000, "masked_author": "username_0", "text": "I've discovered a bug that should be addressed before merging this involving resizing the sidebar.\r\n\r\n![SmallBug](https://user-images.githubusercontent.com/4333144/90198495-b299c700-dd86-11ea-99f4-af456ab70bce.gif)", "title": null, "type": "comment" }, { "action": "created", "author": "kyleshevlin", "comment_id": 673772556, "datetime": 1597364486000, "masked_author": "username_0", "text": "I have the resizer on the correct side already. Working on the pane resizing as expected.", "title": null, "type": "comment" }, { "action": "created", "author": "bryphe", "comment_id": 673774370, "datetime": 1597364864000, "masked_author": "username_1", "text": "Nice catch @username_0 !\r\n\r\nI'm thinking we'll need to change the way the `delta` is applied as the resize in progress, depending on the sideBar location: \r\nhttps://github.com/onivim/oni2/blob/5e385db6ce03635bd390d4429d25ebd83af2ea7a/src/Feature/SideBar/Feature_SideBar.re#L44\r\n(If it's on the right, we'd want `width - resizeDelta` instead)", "title": null, "type": "comment" }, { "action": "created", "author": "kyleshevlin", "comment_id": 673789450, "datetime": 1597367755000, "masked_author": "username_0", "text": "And got that, too.\r\n\r\n![fixed](https://user-images.githubusercontent.com/4333144/90201888-001b3180-dd91-11ea-83d0-f3f7e6f89358.gif)", "title": null, "type": "comment" }, { "action": "created", "author": "kyleshevlin", "comment_id": 673866537, "datetime": 1597376610000, "masked_author": "username_0", "text": "FWIW, Ran unit tests locally and they all pass.", "title": null, "type": "comment" }, { "action": "created", "author": "bryphe", "comment_id": 674294436, "datetime": 1597443474000, "masked_author": "username_1", "text": "Just pulled the latest and tested it out - looks great, @username_0 !\r\n\r\n Thanks for fixing the highlight position and catching the resize issue 👍 Bringing in now!", "title": null, "type": "comment" } ]
3
12
2,858
false
true
2,324
true
JamesIves/github-pages-deploy-action
null
619,458,763
297
null
[ { "action": "opened", "author": "fredefox", "comment_id": null, "datetime": 1589631109000, "masked_author": "username_0", "text": "I suspect this is related to my usage of submodules. Initially I suspected it was because I was using `git@` for the submodules, so I wrote a step just before the upload action that rewrites the URLs in `.gitmodules` using `sed`. This didn't seem to fix the issue. I can't figure out what the refs are pointing to. They are neither in the submodules, nor my main repository.\r\n\r\n**Reproduce**\r\nRun the workflow from https://github.com/username_0/cat/pull/16 There you can also find the workflow that I'm using: https://github.com/username_0/cat/blob/username_0/gh-pages/.github/workflows/main.yml\r\n\r\n**Logs**\r\n```\r\n2020-05-16T11:34:46.0657910Z ##[group]Run username_1/github-pages-deploy-action@releases/v3\r\n2020-05-16T11:34:46.0658364Z with:\r\n2020-05-16T11:34:46.0658684Z ACCESS_TOKEN: ***\r\n2020-05-16T11:34:46.0658763Z BRANCH: gh-pages\r\n2020-05-16T11:34:46.0659014Z FOLDER: html\r\n2020-05-16T11:34:46.0659280Z ##[endgroup]\r\n2020-05-16T11:34:46.1899409Z Checking configuration and starting deployment… 🚦\r\n2020-05-16T11:34:46.1912285Z Deploying using Access Token… 🔑\r\n2020-05-16T11:34:46.1914504Z Configuring git…\r\n2020-05-16T11:34:46.1991775Z [command]/usr/bin/git init\r\n2020-05-16T11:34:46.2084724Z Reinitialized existing Git repository in /home/runner/work/cat/cat/.git/\r\n2020-05-16T11:34:46.2141438Z [command]/usr/bin/git config user.name username_0\r\n2020-05-16T11:34:46.2200441Z [command]/usr/bin/git config user.email username_0@users.noreply.github.com\r\n2020-05-16T11:34:46.2258537Z [command]/usr/bin/git remote rm origin\r\n2020-05-16T11:34:46.2328556Z [command]/usr/bin/git remote add origin https://***@github.com/username_0/cat.git\r\n2020-05-16T11:34:46.2387925Z [command]/usr/bin/git fetch\r\n2020-05-16T11:34:46.7365950Z From https://github.com/username_0/cat\r\n2020-05-16T11:34:46.7368544Z * [new branch] abstract-funext -> origin/abstract-funext\r\n2020-05-16T11:34:46.7368818Z * [new branch] username_0/gh-pages -> origin/username_0/gh-pages\r\n2020-05-16T11:34:46.7369072Z * [new branch] username_0/travis -> origin/username_0/travis\r\n2020-05-16T11:34:46.7370460Z * [new branch] gh-pages -> origin/gh-pages\r\n2020-05-16T11:34:46.7370878Z * [new branch] master -> origin/master\r\n2020-05-16T11:34:46.7371101Z * [new branch] try-wrapped-paths -> origin/try-wrapped-paths\r\n2020-05-16T11:34:46.7540964Z * [new tag] 0.0.1 -> 0.0.1\r\n2020-05-16T11:34:46.7541648Z * [new tag] 1.0.0 -> 1.0.0\r\n2020-05-16T11:34:46.7542171Z * [new tag] 1.0.1 -> 1.0.1\r\n2020-05-16T11:34:46.7542657Z * [new tag] 1.1.0 -> 1.1.0\r\n2020-05-16T11:34:46.7543138Z * [new tag] 1.2.0 -> 1.2.0\r\n2020-05-16T11:34:46.7543626Z * [new tag] 1.3.0 -> 1.3.0\r\n2020-05-16T11:34:46.7544107Z * [new tag] 1.4.0 -> 1.4.0\r\n2020-05-16T11:34:46.7544564Z * [new tag] 1.4.1 -> 1.4.1\r\n2020-05-16T11:34:46.7545050Z * [new tag] 1.5.0 -> 1.5.0\r\n2020-05-16T11:34:46.7546510Z * [new tag] 1.6.0 -> 1.6.0\r\n2020-05-16T11:34:46.8730768Z Fetching submodule libs/agda-stdlib\r\n2020-05-16T11:34:47.0713083Z Fetching submodule libs/cubical\r\n2020-05-16T11:34:47.4210696Z fatal: remote error: upload-pack: not our ref 0d3f02e68297e940227137beac45fc1bce6e2bea\r\n2020-05-16T11:34:47.7142770Z fatal: remote error: upload-pack: not our ref 4493cf249a1648be2ad365fe94ece337bfbcb5d9\r\n2020-05-16T11:34:47.7215624Z Errors during submodule fetch:\r\n2020-05-16T11:34:47.7215893Z \tlibs/cubical\r\n2020-05-16T11:34:47.7216327Z \tlibs/agda-stdlib\r\n2020-05-16T11:34:47.7257861Z ##[error]There was an error initializing the repository: The process '/usr/bin/git' failed with exit code 1 ❌\r\n2020-05-16T11:34:47.7267482Z failed\r\n2020-05-16T11:34:47.7269681Z Deployment Failed ❌\r\n2020-05-16T11:34:47.7272095Z ::set-env name=DEPLOYMENT_STATUS::failed\r\n```", "title": "Publish fails with git error \"not our ref\"", "type": "issue" }, { "action": "created", "author": "fredefox", "comment_id": 629636745, "datetime": 1589631407000, "masked_author": "username_0", "text": "Additional steps I took that are not version-controlled:\r\n* Create a token for the gh-pages action\r\n* Add the token to the \"secrets\" of the repo\r\n* Created an orphaned branch `gh-pages` in the same repo\r\n* Added a test-commit to that branch which successfully deploys and is viewable at https://username_0.github.io/cat/", "title": null, "type": "comment" }, { "action": "created", "author": "JamesIves", "comment_id": 629663909, "datetime": 1589643151000, "masked_author": "username_1", "text": "That error is pretty generic, it basically just means that git was unable to run a command for whatever reason. It looks like it's ultimately failing when `git fetch` is run [here](https://github.com/username_1/github-pages-deploy-action/blob/dev/src/git.ts#L27) (although `git fetch` is run several times during the process as the action switches between a few branches before making the deployment).\r\n\r\nI'll admit I'm not hugely familiar with submodules but I assume what's happening here is that it's trying to run `git fetch` on them and it's throwing the error because it doesn't actually know about the submodules. I'm wondering if adding a flag to the `git fetch` commands such as this [one](https://git-scm.com/docs/fetch-options#Documentation/fetch-options.txt---no-recurse-submodules) may prevent this issue. Looking at the checkout action it adds some [additional flags](https://github.com/actions/checkout/blob/master/src/git-command-manager.ts#L167-L196).\r\n\r\nI'd love to solve this. If you have any suggestions on a preferred approach it would be appreciated.", "title": null, "type": "comment" }, { "action": "created", "author": "fredefox", "comment_id": 629666559, "datetime": 1589644341000, "masked_author": "username_0", "text": "Thanks for looking into this! What makes it a bit difficult for me to debug is that the commands aren't run on my machine. In my specific use-case I don't think the `github-pages-deploy-action` action really needs to do anything with the submodules. I suppose that's the same conclusion you've arrived at, so perhaps that's solution is generally applicable. I didn't think that `git fetch` would load submodules by default. Perhaps they changed that? In any case I definitely think that _for my particular use-case_ `--no-recurse-submodules` is satisfactory. But I confess, I'm not sure why `github-pages-deploy-action` needs to do a fetch in the first place...\r\n\r\nIf I were to debug this, would I simply clone your repository and change the value for `uses: username_1/github-pages-deploy-action@releases/v3` to be `uses: username_0/github-pages-deploy-action@releases/v3`?", "title": null, "type": "comment" }, { "action": "created", "author": "JamesIves", "comment_id": 629679861, "datetime": 1589649945000, "masked_author": "username_1", "text": "I'm all for removing the use of `git fetch` so long as the current functionality remains. I've tried removing it in the past but I ended up encountering some issues. \r\n\r\nYep, you'd clone the repository and follow the deploy steps in this guide: https://github.com/username_1/github-pages-deploy-action/blob/dev/CONTRIBUTING.md#deploying. The part after the `@` is a branch name, so if your version is on the `master` branch you'd point it to `uses: username_0/github-pages-deploy-action@master`. Let me know if that works for you, appreciate the assistance in debugging.", "title": null, "type": "comment" }, { "action": "created", "author": "fredefox", "comment_id": 629791833, "datetime": 1589719803000, "masked_author": "username_0", "text": "I've made my change and commited `node_modules`, yet it seems to having some issues resolving the dependencies. Perhaps I'm doing something wrong? The error that I'm seeing:\r\n```\r\n##[error]Could not find file '/home/runner/work/_actions/_temp_7c50805b-74c8-4906-8020-8993a8e0bb09/_staging/username_0-github-pages-deploy-action-639e288/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/.bin/json5'.\r\n```\r\nFrom https://github.com/username_0/cat/pull/16/checks?check_run_id=682675060\r\n\r\nOn this branch: https://github.com/username_0/github-pages-deploy-action/tree/dev", "title": null, "type": "comment" }, { "action": "created", "author": "JamesIves", "comment_id": 629794070, "datetime": 1589720485000, "masked_author": "username_1", "text": "You should point it to `uses: username_0/github-pages-deploy-action@dev` - however you probably just need to hit the `Rerun Workflow` button at the top right a few times, this is a weird bug I've encountered when a new change is made.", "title": null, "type": "comment" }, { "action": "created", "author": "fredefox", "comment_id": 629813208, "datetime": 1589728149000, "masked_author": "username_0", "text": "Thanks for your help with this James! I finally got it working and managed to upload my things here https://username_0.github.io/cat/", "title": null, "type": "comment" }, { "action": "closed", "author": "JamesIves", "comment_id": null, "datetime": 1589806554000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "JamesIves", "comment_id": 630170381, "datetime": 1589807228000, "masked_author": "username_1", "text": "Released with `3.5.3`, thanks for the PR!", "title": null, "type": "comment" }, { "action": "created", "author": "fredefox", "comment_id": 630286640, "datetime": 1589818322000, "masked_author": "username_0", "text": "I should remember to thank you for your encouraging spirit! I feel that it often happens that people see it as a burden when someone submits issues or even PRs against their code.", "title": null, "type": "comment" } ]
2
11
7,907
false
false
7,907
true
mcharmas/Android-ReactiveLocation
null
240,196,387
162
null
[ { "action": "opened", "author": "IgorB10", "comment_id": null, "datetime": 1499093697000, "masked_author": "username_0", "text": "OS Version: 6.0.1\r\nDevice: SM-J700T\r\n\r\n```\r\nFatal Exception: java.lang.IllegalStateException: more items arrived than were requested\r\n at rx.internal.producers.ProducerArbiter.produced(ProducerArbiter.java:98)\r\n at rx.internal.operators.OperatorSwitchIfEmpty$ParentSubscriber.onNext(OperatorSwitchIfEmpty.java:91)\r\n at pl.charmas.android.reactivelocation.observables.location.LocationUpdatesObservable$1.onLocationChanged(LocationUpdatesObservable.java:36)\r\n at com.google.android.gms.internal.zzceu.zzpR(Unknown Source)\r\n at com.google.android.gms.internal.zzbfi.zzqE(Unknown Source)\r\n at com.google.android.gms.internal.zzbfj.handleMessage(Unknown Source)\r\n at android.os.Handler.dispatchMessage(Handler.java:102)\r\n at android.os.Looper.loop(Looper.java:148)\r\n at android.app.ActivityThread.main(ActivityThread.java:7223)\r\n at java.lang.reflect.Method.invoke(Method.java)\r\n at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1230)\r\n at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1120)\r\n```", "title": "IllegalStateException: more items arrived than were requested", "type": "issue" }, { "action": "closed", "author": "mcharmas", "comment_id": null, "datetime": 1506672492000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "mcharmas", "comment_id": 333060595, "datetime": 1506672492000, "masked_author": "username_1", "text": "It may be to lack of backpressure. You can apply ```onBackpressureBuffer()```.", "title": null, "type": "comment" } ]
2
3
1,181
false
false
1,181
false
IMCR-Hackathon/datapie
IMCR-Hackathon
474,125,912
60
null
[ { "action": "opened", "author": "clnsmth", "comment_id": null, "datetime": 1564415336000, "masked_author": "username_0", "text": "The Range of interest slider of the \"Interactive plot tab\" isn't working.\r\n\r\nSession info:\r\n- I'm using the default data\r\n```\r\nR version 3.4.0 (2017-04-21)\r\nPlatform: x86_64-apple-darwin15.6.0 (64-bit)\r\nRunning under: OS X El Capitan 10.11.6\r\n\r\nMatrix products: default\r\nBLAS: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib\r\nLAPACK: /Library/Frameworks/R.framework/Versions/3.4/Resources/lib/libRlapack.dylib\r\n\r\nlocale:\r\n[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8\r\n\r\nattached base packages:\r\n[1] stats graphics grDevices utils datasets methods \r\n[7] base \r\n\r\nother attached packages:\r\n[1] shiny_1.3.2 datapie_0.0.0.9000 testthat_2.1.1 \r\n\r\nloaded via a namespace (and not attached):\r\n [1] nlme_3.1-131 fs_1.3.1 usethis_1.5.1 \r\n [4] lubridate_1.7.4 devtools_2.1.0 RColorBrewer_1.1-2\r\n [7] httr_1.3.1 rprojroot_1.2 tools_3.4.0 \r\n [10] backports_1.1.0 R6_2.3.0 lazyeval_0.2.0 \r\n [13] colorspace_1.3-2 withr_2.1.2 mnormt_1.5-5 \r\n [16] tidyselect_0.2.5 prettyunits_1.0.2 processx_3.4.0 \r\n [19] curl_3.3 compiler_3.4.0 rvest_0.3.2 \r\n [22] datapack_1.3.1 cli_1.1.0 jsonld_2.0 \r\n [25] xml2_1.2.0 shinyjs_1.0 desc_1.2.0 \r\n [28] plotly_4.7.1 labeling_0.3 scales_1.0.0 \r\n [31] psych_1.7.5 readr_1.1.1 callr_3.3.0 \r\n [34] commonmark_1.4 stringr_1.4.0 digest_0.6.12 \r\n [37] foreign_0.8-67 rmarkdown_1.13 base64enc_0.1-3 \r\n [40] pkgconfig_2.0.2 htmltools_0.3.6 sessioninfo_1.1.1 \r\n [43] htmlwidgets_1.3 rlang_0.3.1 readxl_1.0.0 \r\n [46] rstudioapi_0.10 bindr_0.1.1 emld_0.2.0 \r\n [49] jsonlite_1.5 crosstalk_1.0.0 dplyr_0.7.8 \r\n [52] magrittr_1.5 Rcpp_1.0.0 munsell_0.5.0 \r\n [55] stringi_1.4.3 yaml_2.2.0 jqr_1.1.0 \r\n [58] pkgbuild_1.0.3 plyr_1.8.4 grid_3.4.0 \r\n [61] parallel_3.4.0 EML_2.0.0 promises_1.0.1 \r\n [64] forcats_0.2.0 crayon_1.3.4 lattice_0.20-35 \r\n [67] haven_1.0.0 cowplot_0.9.4 redland_1.0.17-10 \r\n [70] hash_2.2.6.1 hms_0.3 knitr_1.23 \r\n [73] parsedate_1.1.3 ps_1.3.0 pillar_1.3.1 \r\n [76] uuid_0.1-2 reshape2_1.4.2 dataone_2.1.2 \r\n [79] pkgload_1.0.2 XML_3.98-1.19 glue_1.3.0 \r\n [82] evaluate_0.14 V8_1.5 modelr_0.1.0 \r\n [85] data.table_1.12.0 remotes_2.1.0 httpuv_1.5.0 \r\n [88] cellranger_1.1.0 gtable_0.2.0 purrr_0.3.0 \r\n [91] tidyr_0.8.3 assertthat_0.2.0 ggplot2_3.1.0 \r\n [94] xfun_0.7 mime_0.5 xtable_1.8-2 \r\n [97] broom_0.4.2 tidyverse_1.1.1 roxygen2_6.1.1 \r\n[100] later_0.8.0 rsconnect_0.8.13 viridisLite_0.3.0 \r\n[103] tibble_2.0.1 memoise_1.1.0 metajam_0.2.0.9000\r\n[106] bindrcpp_0.2.2 \r\n```", "title": "Interactive plot tab: Range of interest", "type": "issue" }, { "action": "created", "author": "sheilasaia", "comment_id": 517802869, "datetime": 1564770840000, "masked_author": "username_1", "text": "It's not working for me with the default data on the plot tab as well.", "title": null, "type": "comment" }, { "action": "created", "author": "clnsmth", "comment_id": 518688540, "datetime": 1565100975000, "masked_author": "username_0", "text": "I'm working on this at branch `fix_60`.", "title": null, "type": "comment" }, { "action": "created", "author": "lkuiucsb", "comment_id": 518796942, "datetime": 1565117433000, "masked_author": "username_2", "text": "I don't think we need the range of interest to work for interactive plot. The function of range of interest is to allow selecting different ranges at the \"plot\" tab. You can select interactive plot range by cropping the figure. So the range of interest could just fade out when the interactive plot tab is selected.", "title": null, "type": "comment" }, { "action": "created", "author": "lkuiucsb", "comment_id": 518888040, "datetime": 1565136409000, "masked_author": "username_2", "text": "This issue is fixed in the kui-development branch", "title": null, "type": "comment" }, { "action": "closed", "author": "lkuiucsb", "comment_id": null, "datetime": 1565136497000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "clnsmth", "comment_id": 519068908, "datetime": 1565179851000, "masked_author": "username_0", "text": "I'm still working on this.", "title": null, "type": "comment" }, { "action": "reopened", "author": "clnsmth", "comment_id": null, "datetime": 1565179852000, "masked_author": "username_0", "text": "The Range of interest slider of the \"Interactive plot tab\" isn't working.\r\n\r\nSession info:\r\n- I'm using the default data\r\n```\r\nR version 3.4.0 (2017-04-21)\r\nPlatform: x86_64-apple-darwin15.6.0 (64-bit)\r\nRunning under: OS X El Capitan 10.11.6\r\n\r\nMatrix products: default\r\nBLAS: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib\r\nLAPACK: /Library/Frameworks/R.framework/Versions/3.4/Resources/lib/libRlapack.dylib\r\n\r\nlocale:\r\n[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8\r\n\r\nattached base packages:\r\n[1] stats graphics grDevices utils datasets methods \r\n[7] base \r\n\r\nother attached packages:\r\n[1] shiny_1.3.2 datapie_0.0.0.9000 testthat_2.1.1 \r\n\r\nloaded via a namespace (and not attached):\r\n [1] nlme_3.1-131 fs_1.3.1 usethis_1.5.1 \r\n [4] lubridate_1.7.4 devtools_2.1.0 RColorBrewer_1.1-2\r\n [7] httr_1.3.1 rprojroot_1.2 tools_3.4.0 \r\n [10] backports_1.1.0 R6_2.3.0 lazyeval_0.2.0 \r\n [13] colorspace_1.3-2 withr_2.1.2 mnormt_1.5-5 \r\n [16] tidyselect_0.2.5 prettyunits_1.0.2 processx_3.4.0 \r\n [19] curl_3.3 compiler_3.4.0 rvest_0.3.2 \r\n [22] datapack_1.3.1 cli_1.1.0 jsonld_2.0 \r\n [25] xml2_1.2.0 shinyjs_1.0 desc_1.2.0 \r\n [28] plotly_4.7.1 labeling_0.3 scales_1.0.0 \r\n [31] psych_1.7.5 readr_1.1.1 callr_3.3.0 \r\n [34] commonmark_1.4 stringr_1.4.0 digest_0.6.12 \r\n [37] foreign_0.8-67 rmarkdown_1.13 base64enc_0.1-3 \r\n [40] pkgconfig_2.0.2 htmltools_0.3.6 sessioninfo_1.1.1 \r\n [43] htmlwidgets_1.3 rlang_0.3.1 readxl_1.0.0 \r\n [46] rstudioapi_0.10 bindr_0.1.1 emld_0.2.0 \r\n [49] jsonlite_1.5 crosstalk_1.0.0 dplyr_0.7.8 \r\n [52] magrittr_1.5 Rcpp_1.0.0 munsell_0.5.0 \r\n [55] stringi_1.4.3 yaml_2.2.0 jqr_1.1.0 \r\n [58] pkgbuild_1.0.3 plyr_1.8.4 grid_3.4.0 \r\n [61] parallel_3.4.0 EML_2.0.0 promises_1.0.1 \r\n [64] forcats_0.2.0 crayon_1.3.4 lattice_0.20-35 \r\n [67] haven_1.0.0 cowplot_0.9.4 redland_1.0.17-10 \r\n [70] hash_2.2.6.1 hms_0.3 knitr_1.23 \r\n [73] parsedate_1.1.3 ps_1.3.0 pillar_1.3.1 \r\n [76] uuid_0.1-2 reshape2_1.4.2 dataone_2.1.2 \r\n [79] pkgload_1.0.2 XML_3.98-1.19 glue_1.3.0 \r\n [82] evaluate_0.14 V8_1.5 modelr_0.1.0 \r\n [85] data.table_1.12.0 remotes_2.1.0 httpuv_1.5.0 \r\n [88] cellranger_1.1.0 gtable_0.2.0 purrr_0.3.0 \r\n [91] tidyr_0.8.3 assertthat_0.2.0 ggplot2_3.1.0 \r\n [94] xfun_0.7 mime_0.5 xtable_1.8-2 \r\n [97] broom_0.4.2 tidyverse_1.1.1 roxygen2_6.1.1 \r\n[100] later_0.8.0 rsconnect_0.8.13 viridisLite_0.3.0 \r\n[103] tibble_2.0.1 memoise_1.1.0 metajam_0.2.0.9000\r\n[106] bindrcpp_0.2.2 \r\n```", "title": "Interactive plot tab: Range of interest", "type": "issue" }, { "action": "created", "author": "lkuiucsb", "comment_id": 519130314, "datetime": 1565189235000, "masked_author": "username_2", "text": "The range of interest is working in the kui-development branch. you might want to check it out (before we merge over ) and see if it meets your expectation. To make this work, the input data for the plotly needs to use the subset instead of df_shiny()", "title": null, "type": "comment" }, { "action": "closed", "author": "clnsmth", "comment_id": null, "datetime": 1565307740000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "clnsmth", "comment_id": 519725648, "datetime": 1565307740000, "masked_author": "username_0", "text": "Done!", "title": null, "type": "comment" } ]
3
11
6,885
false
false
6,885
false
input-output-hk/cardano-wallet
input-output-hk
531,515,815
1,105
{ "number": 1105, "repo": "cardano-wallet", "user_login": "input-output-hk" }
[ { "action": "opened", "author": "paweljakubas", "comment_id": null, "datetime": 1575318111000, "masked_author": "username_0", "text": "# Issue Number\r\n\r\n<!-- Put here a reference to the issue this PR relates to and which requirements it tackles -->\r\n#1097 \r\n\r\n# Overview\r\n\r\n<!-- Detail in a few bullet points the work accomplished in this PR -->\r\n\r\n- [x] I have experimented with criterion ... and realized it uses clock inside. decided to adopt it due to small number of dependencies\r\n- [x] I have created two fixture wallets scenario as the starting point (could be one fixture and one empty - the minimum that is needed for fee estimation endpoint)\r\n- [x] I have measured latencies for all specified in U/S endpoints \r\n\r\n# Comments\r\n\r\n<!-- Additional comments or screenshots to attach if any -->\r\nI have tried criterion but end up with simple clock (here Monotone measurement). Then, I found this blog entry that to-not-small extent supports my findings : \r\nhttps://chrisdone.com/posts/measuring-duration-in-haskell/\r\n \r\n<!-- \r\nDon't forget to:\r\n\r\n ✓ Self-review your changes to make sure nothing unexpected slipped through\r\n ✓ Assign yourself to the PR\r\n ✓ Assign one or several reviewer(s)\r\n ✓ Once created, link this PR to its corresponding ticket\r\n ✓ Assign the PR to a corresponding milestone\r\n ✓ Acknowledge any changes required to the Wiki\r\n-->", "title": "Measure latencies for two fixture wallets", "type": "issue" }, { "action": "created", "author": "rvl", "comment_id": 561162355, "datetime": 1575379038000, "masked_author": "username_1", "text": "This is a good start.\r\n\r\nThe important thing about Criterion is not so much how it measures time but that it repeats the benchmark to get an accurate result, and calculates the statistical distribution of results. If we only measure once, we don't get that information.\r\n\r\nIf this benchmark is run as part of a test suite, then the results are going to be inaccurrate, because other test cases may be running at the same time. So it should be a separate benchmark program. Then it can be run independently without the results being skewed by other processes.\r\n\r\nIn any case, I think we should be using the iohk-monitoring framework for these type of benchmarks. It was written specifically for this purpose. Log traces can have timestamps attached - so just run the tests and collect the timings from the logs.", "title": null, "type": "comment" }, { "action": "created", "author": "paweljakubas", "comment_id": 561643451, "datetime": 1575465741000, "masked_author": "username_0", "text": "bors try", "title": null, "type": "comment" }, { "action": "created", "author": "paweljakubas", "comment_id": 562885469, "datetime": 1575752017000, "masked_author": "username_0", "text": "@username_1 I have followed the path we discussed privately. So defined high level `ServerLog`, relocated everything to `jormungandr/test/bench`, used here `traceinTVar` and aptly pattern matching (and clearing the tvar in between). And then relied on meta fragment of LogObject to get UTCTime. And it works. Just we need to do something like this : \r\n```\r\n$ stack bench cardano-wallet-jormungandr\r\ncardano-wallet-jormungandr> benchmarks \r\nRunning 1 benchmarks... \r\nBenchmark latency: RUNNING... \r\nLatencies for two fixture wallets scenario\r\n listWallets - 20.2 ms \r\n getWallet - 11.1 ms \r\n getUTxOsStatistics - 1.9 ms \r\n listAddresses - 7.1 ms \r\n listTransactions - 2.5 ms \r\n postTransactionFee - 1.7 ms \r\n listStakePools - 1.2 ms \r\n getNetworkInfo - 0.4 ms \r\nBenchmark latency: FINISH\r\n```", "title": null, "type": "comment" }, { "action": "created", "author": "paweljakubas", "comment_id": 562888742, "datetime": 1575754473000, "masked_author": "username_0", "text": "bors try", "title": null, "type": "comment" }, { "action": "created", "author": "paweljakubas", "comment_id": 563007310, "datetime": 1575846629000, "masked_author": "username_0", "text": "bors try", "title": null, "type": "comment" }, { "action": "created", "author": "paweljakubas", "comment_id": 563007594, "datetime": 1575846784000, "masked_author": "username_0", "text": "bors try-", "title": null, "type": "comment" }, { "action": "created", "author": "paweljakubas", "comment_id": 563007780, "datetime": 1575846887000, "masked_author": "username_0", "text": "bors try", "title": null, "type": "comment" }, { "action": "created", "author": "rvl", "comment_id": 563098314, "datetime": 1575875897000, "masked_author": "username_1", "text": "Also when we say \"latency\", we need to say latency of _what_. We are measuring wallet server API response time.", "title": null, "type": "comment" }, { "action": "created", "author": "paweljakubas", "comment_id": 563137311, "datetime": 1575882864000, "masked_author": "username_0", "text": "bors r+", "title": null, "type": "comment" }, { "action": "created", "author": "paweljakubas", "comment_id": 563149708, "datetime": 1575884751000, "masked_author": "username_0", "text": "bors r+", "title": null, "type": "comment" } ]
3
16
3,708
false
true
3,123
true
alankbi/detecto
null
595,438,628
28
null
[ { "action": "opened", "author": "rebotnix", "comment_id": null, "datetime": 1586208332000, "masked_author": "username_0", "text": "Is it possible to save each epoch to a separate *.pth file?\r\n\r\nThanks for making the project.", "title": "save each epoch.pth", "type": "issue" }, { "action": "created", "author": "alankbi", "comment_id": 610095126, "datetime": 1586217066000, "masked_author": "username_1", "text": "Not directly, but a possible solution could be to fit for one epoch at a time, save to a .pth file, then fit for another epoch, save to a .pth file, and so on.", "title": null, "type": "comment" }, { "action": "closed", "author": "alankbi", "comment_id": null, "datetime": 1590787147000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
252
false
false
252
false
meilisearch/meilisearch-php
meilisearch
721,247,730
107
null
[ { "action": "opened", "author": "bidoubiwa", "comment_id": null, "datetime": 1602663565000, "masked_author": "username_0", "text": "### Problem \r\n\r\nGiven this [stackoverflow question](https://stackoverflow.com/questions/64342994/how-to-manually-install-dependencies-for-a-php-project) where the user is is stuck because he does not use composer (still too hard for him to grasp), I would like to know if there is a way we can install MeiliSearch without composer? \r\n\r\nI understand the problem lies with the http-client, so the guy in the stackoverflow tried to install it like this: \r\n```php\r\ninclude './search/guzzle7/src/Client.php';\r\ninclude './search/guzzle7/src/Promise.php';\r\ninclude './search/meilisearchPhp/src/MeiliSearch.php';\r\ninclude './search/meilisearchPhp/src/Client.php';\r\n```\r\nBut it did not work.\r\n\r\n### Finding a solution \r\n\r\nIs there a way to make it work? \r\n\r\nAlso, alternatively, stripe suggests a [manual installation on their README of their PHP client](https://github.com/stripe/stripe-php#manual-installation). Would we be able to reproduce something like this? \r\n\r\n### Motivations \r\n\r\nPHP is commonly used in the very beginner js-php-mysql stack and I would like for us to be usable by developers of every level.", "title": "How do you install MeiliSearch without composer ", "type": "issue" }, { "action": "created", "author": "ppshobi", "comment_id": 708351828, "datetime": 1602676454000, "masked_author": "username_1", "text": "I think people who avoid composer should be directed to use composer. Mostly it's because they don't know what it is. the manual installation instructions tend to be error prone over time due to changes in the dependencies", "title": null, "type": "comment" }, { "action": "created", "author": "bidoubiwa", "comment_id": 708928268, "datetime": 1602743175000, "masked_author": "username_0", "text": "I totally agree on my developer side but when you start coding you can not learn everything on the go. You tend to first play around before starting to learn the basics. I would not want a starter to abandon trying out MeiliSearch because we do not offer a simple trying experience. \r\nComposer is a hard thing to grasp at the start, it can take some time before you feel confident to dive into it.\r\n\r\nNow, I'm not sure if this is something hard to do, in which case I might reconsider.", "title": null, "type": "comment" }, { "action": "created", "author": "ppshobi", "comment_id": 709029989, "datetime": 1602753539000, "masked_author": "username_1", "text": "Installing dependency manually is really hard, compared to using composer. For example, it's like avoid using cargo in rust, or downloading npm modules manually and require it without using npm.", "title": null, "type": "comment" }, { "action": "created", "author": "jdreesen", "comment_id": 709036003, "datetime": 1602754095000, "masked_author": "username_2", "text": "You would have to write your own autoloader, I think, which would probably be way harder than understanding how to use composer. There's no way around composer when using PHP nowadays, imho.", "title": null, "type": "comment" }, { "action": "created", "author": "bidoubiwa", "comment_id": 709135206, "datetime": 1602758241000, "masked_author": "username_0", "text": "I looked into [stripe-php](https://github.com/stripe/stripe-php/blob/master/init.php) and they let you do that instead of composer: \r\n\r\n```php\r\nrequire_once('/path/to/stripe-php/init.php');\r\n```\r\n\r\nwhich seems very simple for a user.\r\n\r\n\r\nWhen you look inside the [init.php](https://github.com/stripe/stripe-php/blob/master/init.php) file you have all the dependencies listed:\r\n\r\n```php\r\n\r\n<?php\r\n\r\n// File generated from our OpenAPI spec\r\n\r\n// Stripe singleton\r\nrequire __DIR__ . '/lib/Stripe.php';\r\n\r\n// Utilities\r\nrequire __DIR__ . '/lib/Util/CaseInsensitiveArray.php';\r\nrequire __DIR__ . '/lib/Util/LoggerInterface.php';\r\nrequire __DIR__ . '/lib/Util/DefaultLogger.php';\r\nrequire __DIR__ . '/lib/Util/RandomGenerator.php';\r\nrequire __DIR__ . '/lib/Util/RequestOptions.php';\r\nrequire __DIR__ . '/lib/Util/Set.php';\r\n....etc\r\n```\r\n\r\nI get this is not a best practice and is maybe not a production-ready code, but the objective is to not gatekeep for beginners. They will mostly not use this in production but in development.\r\n\r\nFor the `npm` example you made, we made `no npm` samples for our javascript users which work by copy pasting the following code in a `html` file. Which was asked by some beginners.\r\n\r\n```html\r\n<!DOCTYPE html>\r\n<html>\r\n<body>\r\n Indexes:\r\n <div id=\"indexes\"></div>\r\n</body>\r\n</html>\r\n<script src=\"https://cdn.jsdelivr.net/npm/meilisearch@latest/dist/bundles/meilisearch.umd.js\"></script>\r\n<script>\r\n const client = new window.MeiliSearch({\r\n host: 'http://127.0.0.1:7700',\r\n apiKey: 'masterKey',\r\n })\r\n client.listIndexes().then(res => {\r\n res.map(index => document.querySelector('#indexes').innerHTML = `<div>${index.name}</div>`)\r\n })\r\n</script>\r\n```\r\n\r\n\r\nIt's about having the choice without impacting developers' experiences. I don't think having an `init.php` would impact a user that uses `composer`.", "title": null, "type": "comment" }, { "action": "created", "author": "jdreesen", "comment_id": 709212922, "datetime": 1602760792000, "masked_author": "username_2", "text": "It's easier for stripe because they don't have any external composer dependencies. \r\n\r\nBut you currently have three `php-http` dependencies, which themselves have a bunch of dependencies, which have dependencies, too, ...\r\n\r\nThis is why you need an autoloader to properly load all those classes. And the users needs to somehow fetch all those dependencies manually, putting them into the correct folders, ...\r\n\r\nAll this does composer behind the scenes for you.\r\n\r\n---\r\n\r\nIn the JavaScript world this is easier, because they have the concept of \"bundles\" which contain everything that's needed in one file and can be included from a CDN easily.\r\n\r\nPHP doesn't really have this... except from maybe `.phar` files. Not sure if the maintenance overhead for creating those would be worth it.", "title": null, "type": "comment" }, { "action": "created", "author": "curquiza", "comment_id": 709221358, "datetime": 1602761389000, "masked_author": "username_3", "text": "I don't ask this issue to be a priority, I understand a lot of users are ok with composer, but I want to clarify what we can do so that someone who would be interested in this issue could solve it 👍\r\n\r\nI accept we implement a kind of solution/tutorial for non-composer users if:\r\n1. It does not impact the user-experience of composer users\r\n2. It does not bring any inconvenient maintenance\r\n\r\nIf a big tutorial is needed (more than 5 lines) it will be done in a Wiki section and we will add the link on the README, but the big tutorial will be not present on the README, to respect the point `1`.\r\n\r\nIf a file like `init.php` is needed, containing all the file names of our SDK, it will be a pain to maintain (and contradicts the point `2`). But, a bash script could be added to the PHP to generate the file. I will add a check in the CI.\r\n\r\nAs @username_2 said, we still have 3 `php-http` dependencies that makes the work harder.", "title": null, "type": "comment" }, { "action": "created", "author": "bidoubiwa", "comment_id": 709223659, "datetime": 1602761605000, "masked_author": "username_0", "text": "I didn't realize the pain it would be thanks @username_2.\r\n\r\nLike @username_3 said if we can find a way to create a bash script that generates a`init.php` that would be great. If that is not possible, the last solution would be to create a tutorial to use `composer` and meilisearch-php together.", "title": null, "type": "comment" }, { "action": "created", "author": "shokme", "comment_id": 709239089, "datetime": 1602762905000, "masked_author": "username_4", "text": "To show you a little sample of the work required (still not working and vendor lock to guzzle) and I'm far from the end and I will not continue.\r\nI don't see anything on internet able to load guzzle without composer, there was a way in the past of guzzle3 but not the case today.\r\n\r\nDon't forget the issue you have link is five year old ! this is huge in dev world.\r\n\r\n```php\r\n<?php\r\n\r\ninclude 'meilisearch-php/src/MeiliSearch.php';\r\n\r\n# PSR\r\ninclude 'http-message/src/MessageInterface.php';\r\ninclude 'http-message/src/RequestInterface.php';\r\ninclude 'http-message/src/StreamInterface.php';\r\ninclude 'http-message/src/UriInterface.php';\r\ninclude 'psr7/src/Utils.php';\r\ninclude 'psr7/src/Stream.php';\r\ninclude 'psr7/src/functions.php';\r\ninclude 'psr7/src/Uri.php';\r\ninclude 'psr7/src/MessageTrait.php';\r\ninclude 'psr7/src/Request.php';\r\ninclude 'http-factory/src/RequestFactoryInterface.php';\r\ninclude 'http-factory/src/ResponseFactoryInterface.php';\r\ninclude 'http-factory/src/UriFactoryInterface.php';\r\ninclude 'http-factory/src/StreamFactoryInterface.php';\r\ninclude 'http-client/src/ClientInterface.php';\r\n\r\n# Discovery\r\ninclude 'discovery/src/Exception.php';\r\ninclude 'discovery/src/Exception/NotFoundException.php';\r\ninclude 'discovery/src/Exception/DiscoveryFailedException.php';\r\ninclude 'discovery/src/Exception/NoCandidateFoundException.php';\r\ninclude 'discovery/src/Exception/StrategyUnavailableException.php';\r\ninclude 'discovery/src/Exception/PuliUnavailableException.php';\r\ninclude 'discovery/src/Strategy/DiscoveryStrategy.php';\r\ninclude 'discovery/src/Strategy/PuliBetaStrategy.php';\r\ninclude 'discovery/src/Strategy/CommonClassesStrategy.php';\r\ninclude 'discovery/src/Strategy/CommonPsr17ClassesStrategy.php';\r\ninclude 'discovery/src/ClassDiscovery.php';\r\ninclude 'discovery/src/Psr18ClientDiscovery.php';\r\ninclude 'discovery/src/Psr17FactoryDiscovery.php';\r\n\r\n# Guzzle\r\ninclude 'guzzle/src/Exception/GuzzleException.php';\r\ninclude 'guzzle/src/Exception/TransferException.php';\r\ninclude 'guzzle/src/Exception/ConnectException.php';\r\ninclude 'guzzle/src/Handler/EasyHandle.php';\r\ninclude 'guzzle/src/PrepareBodyMiddleware.php';\r\ninclude 'promises/src/Create.php';\r\ninclude 'guzzle/src/Utils.php';\r\ninclude 'guzzle/src/RequestOptions.php';\r\ninclude 'guzzle/src/RedirectMiddleware.php';\r\ninclude 'guzzle/src/Middleware.php';\r\ninclude 'guzzle/src/Handler/StreamHandler.php';\r\ninclude 'guzzle/src/Handler/CurlHandler.php';\r\ninclude 'guzzle/src/Handler/CurlFactoryInterface.php';\r\ninclude 'guzzle/src/Handler/CurlFactory.php';\r\ninclude 'guzzle/src/Handler/CurlMultiHandler.php';\r\ninclude 'guzzle/src/Handler/Proxy.php';\r\ninclude 'guzzle/src/HandlerStack.php';\r\ninclude 'guzzle/src/ClientTrait.php';\r\ninclude 'guzzle/src/ClientInterface.php';\r\ninclude 'guzzle/src/Client.php';\r\n\r\n# Factory\r\n\r\ninclude 'http-factory-guzzle/src/RequestFactory.php';\r\ninclude 'http-factory-guzzle/src/ResponseFactory.php';\r\ninclude 'http-factory-guzzle/src/StreamFactory.php';\r\ninclude 'http-factory-guzzle/src/UriFactory.php';\r\n\r\n# Meilisearch\r\n\r\ninclude 'meilisearch-php/src/Contracts/Http.php';\r\ninclude 'meilisearch-php/src/Contracts/Endpoint.php';\r\ninclude 'meilisearch-php/src/Delegates/HandlesIndex.php';\r\ninclude 'meilisearch-php/src/Delegates/HandlesSystem.php';\r\ninclude 'meilisearch-php/src/Endpoints/Delegates/HandlesDocuments.php';\r\ninclude 'meilisearch-php/src/Endpoints/Delegates/HandlesSettings.php';\r\ninclude 'meilisearch-php/src/Endpoints/Delegates/HandlesDumps.php';\r\ninclude 'meilisearch-php/src/Endpoints/Health.php';\r\ninclude 'meilisearch-php/src/Endpoints/Version.php';\r\ninclude 'meilisearch-php/src/Endpoints/Stats.php';\r\ninclude 'meilisearch-php/src/Endpoints/Keys.php';\r\ninclude 'meilisearch-php/src/Endpoints/Dumps.php';\r\ninclude 'meilisearch-php/src/Http/Client.php';\r\ninclude 'meilisearch-php/src/Client.php';\r\ninclude 'meilisearch-php/src/Endpoints/Indexes.php';\r\n\r\nfunction run()\r\n{\r\n $client = new \\MeiliSearch\\Client('http://localhost:7700');\r\n $index = $client->getOrCreateIndex('foo');\r\n\r\n var_dump($index);\r\n}\r\n\r\nrun();\r\n```", "title": null, "type": "comment" }, { "action": "created", "author": "curquiza", "comment_id": 709247726, "datetime": 1602763437000, "masked_author": "username_3", "text": "I know, just a potential help for someone who would be brave enough to try to solve this issue 😉", "title": null, "type": "comment" }, { "action": "created", "author": "ppshobi", "comment_id": 828801708, "datetime": 1619646431000, "masked_author": "username_1", "text": "maybe we can close this?", "title": null, "type": "comment" }, { "action": "closed", "author": "curquiza", "comment_id": null, "datetime": 1619681774000, "masked_author": "username_3", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "curquiza", "comment_id": 829008414, "datetime": 1619681774000, "masked_author": "username_3", "text": "Let's close this then! Feel free to ask a re open if it's needed for someone.", "title": null, "type": "comment" } ]
5
14
10,315
false
false
10,315
true
bashtage/sphinx-material
null
558,871,332
27
null
[ { "action": "opened", "author": "dzhu", "comment_id": null, "datetime": 1580711162000, "masked_author": "username_0", "text": "The HTML context object provided by this package [contains functions as values](https://github.com/username_1/sphinx-material/blob/aebde13c30dd4bc63159482d5b6a87fc3f211556/sphinx_material/__init__.py#L242). As a result, the [config hash](https://github.com/sphinx-doc/sphinx/blob/e7a0af807a58f97be826c19644fac72b50fb6769/sphinx/builders/html.py#L70) in the `.buildinfo` generated by the HTML builder changes on every build, since it includes the `str` of a function, which includes an address in memory that changes each time (e.g., `<function table_fix at 0x7f5dcdef2738>`). Therefore the caching is broken and Sphinx does a full rebuild each time.\r\n\r\nI've also opened [an issue on the Sphinx repo](https://github.com/sphinx-doc/sphinx/issues/7093), since I don't know whether this case is intended to be supported or not.\r\n\r\nSteps to reproduce the behavior:\r\n```\r\n$ wget https://github.com/sphinx-doc/sphinx/files/4146498/sphinx-test.zip\r\n$ unzip sphinx-test.zip\r\n$ cd sphinx-test\r\n$ pip install -r requirements.txt\r\n$ make html\r\n...\r\nbuilding [html]: targets for 1 source files that are out of date\r\n...\r\n$ make html\r\n...\r\nbuilding [html]: targets for 1 source files that are out of date\r\n...\r\n```\r\nThe second time, there should be no files marked out of date.", "title": "`get_html_context` breaks Sphinx caching", "type": "issue" }, { "action": "created", "author": "bashtage", "comment_id": 581312343, "datetime": 1580721255000, "masked_author": "username_1", "text": "There is a fix in #28. It is a bit heavy-handed. Sphinx considers two builds to be the same if str(obj) is the same for everything in the conf. Functions do not naturally have stable str, so the rebuild.", "title": null, "type": "comment" }, { "action": "closed", "author": "bashtage", "comment_id": null, "datetime": 1580724014000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "bashtage", "comment_id": 581335863, "datetime": 1580724703000, "masked_author": "username_1", "text": "When you get a chance, can you confirm that the fix in master works for you?", "title": null, "type": "comment" }, { "action": "created", "author": "dzhu", "comment_id": 581549581, "datetime": 1580754288000, "masked_author": "username_0", "text": "It appears to be working great. Thanks for the quick response!", "title": null, "type": "comment" } ]
2
5
1,605
false
false
1,605
true
carbon-design-system/ibm-dotcom-library
carbon-design-system
625,738,050
2,513
null
[ { "action": "opened", "author": "chetankan", "comment_id": null, "datetime": 1590589234000, "masked_author": "username_0", "text": "Issue description:- As per specs in linklist array there should be minimum 32px difference between text and arrow icon , but in (Leadspace --> Linklist) when long text is entered 32px spacing difference is not getting maintained.\n## Steps to reproduce the issue \n\n1. Enter url in the browser.\n2. Select 'Leadspace Block' pattern.\n3. In knobs section go to 'Link list items array'.\n4. Enter long title in copy field.\n5. Observe if spacing is maintained.\n\nOS:- Windows 10, Mac, iOS, Android\nBrowsers:- Chrome, Safari, Firefox, Edge, UC.\n\nURL:- https://ibmdotcom-react-canary.mybluemix.net/?path=/story/patterns-blocks-leadspaceblock--default\n\n![Longtext in linklist .jpg](https://images.zenhubusercontent.com/5e21a841639f517d456f7e43/2a296310-6291-476e-9775-d1c58806ab7b)", "title": "Pattern: Leadspace Block :- 32px minimum difference in maintained on entering long text in linklist section ", "type": "issue" }, { "action": "closed", "author": "RobertaJHahn", "comment_id": null, "datetime": 1593456964000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
2
769
false
false
769
false
mercadolibre/mlbusiness-components-ios
mercadolibre
508,784,277
29
{ "number": 29, "repo": "mlbusiness-components-ios", "user_login": "mercadolibre" }
[ { "action": "opened", "author": "eboffa", "comment_id": null, "datetime": 1571357735000, "masked_author": "username_0", "text": "", "title": "Show title in discountBoxView when there is not subtitle", "type": "issue" }, { "action": "created", "author": "juansanzone", "comment_id": 543664277, "datetime": 1571395102000, "masked_author": "username_1", "text": "@username_0 subite una imagen de todos los escenarios a ver como se ve.", "title": null, "type": "comment" }, { "action": "created", "author": "juansanzone", "comment_id": 544486476, "datetime": 1571660009000, "masked_author": "username_1", "text": "Impecable @username_0", "title": null, "type": "comment" } ]
2
3
84
false
false
84
true
ndabAP/vue-command
null
631,188,355
176
null
[ { "action": "opened", "author": "kdlslyv", "comment_id": null, "datetime": 1591310007000, "masked_author": "username_0", "text": "Hi,\r\n\r\nIn earlier versions I could input options like this one:\r\n\r\n`exec Do-Stuff --stuff \"great stuff\"`\r\n\r\nthis does not check out currently.\r\nHaving `yargs` in earlier versions did this really well.\r\n\r\nFor reproduction, use the demos `reverse` command like this:\r\n`reverse \"text with space\"`", "title": "Spaces in options", "type": "issue" }, { "action": "created", "author": "ndabAP", "comment_id": 643108368, "datetime": 1591945811000, "masked_author": "username_1", "text": "I'll propagate the issue to `getopts` and will see if they react. If not I'll switch back to `yargs`.", "title": null, "type": "comment" }, { "action": "created", "author": "jorgebucaran", "comment_id": 643151740, "datetime": 1591951291000, "masked_author": "username_2", "text": "Hi everyone. I couldn't reproduce any issue with spaces in getopts, but [found that here](https://github.com/username_1/vue-command/blob/6f19260da4413a956933be0dbc5d90a9f77797c6/src/hosted/App.vue#L159), `stdin` was something like:\r\n\r\n```console\r\nreverse \"a b c\"\r\n```\r\n\r\nSo, instead of `stdin.split(' ')[1]`:\r\n\r\n```js\r\nconst argument = stdin.split(' ').slice(1).join(' ')\r\n```\r\n\r\nor \r\n\r\n```js\r\nconst argument = stdin.split(' ').slice(1).join(' ').replace(/\"/g, '')\r\n```\r\n\r\n(if you also want to get rid of `\"`s.)\r\n\r\nAnd it seems to be working now. Hope I was able to help! 👋 \r\n\r\n<img width=\"1440\" alt=\"スクリーンショット 2020-06-12 17 28 49\" src=\"https://user-images.githubusercontent.com/56996/84482362-8d2f0500-acd2-11ea-8731-9917d070c83c.png\">", "title": null, "type": "comment" }, { "action": "created", "author": "ndabAP", "comment_id": 643215084, "datetime": 1591960251000, "masked_author": "username_1", "text": "@username_0 please see @username_2 post. Do you may have another reproduction example?", "title": null, "type": "comment" }, { "action": "created", "author": "ndabAP", "comment_id": 643218842, "datetime": 1591960884000, "masked_author": "username_1", "text": "Well guys, lack of sleep and stress lead to this. I need to correct this: The `reverse` command is a built-in command and not parsed by `getopts` at all. Built-in commands can use their own parser.", "title": null, "type": "comment" }, { "action": "created", "author": "kdlslyv", "comment_id": 643226619, "datetime": 1591962166000, "masked_author": "username_0", "text": "looks good; I suppose I erroneously made the same mistake. Will test tmr and close this.\r\nThank you for the replies & quick solution guys!", "title": null, "type": "comment" }, { "action": "created", "author": "jorgebucaran", "comment_id": 643235590, "datetime": 1591963607000, "masked_author": "username_2", "text": "I just [added a new test](https://github.com/username_2/getopts/commit/71c4f3a41b3a9056793f09bbc018766a5b9696f1) to cover whitespace with long options too. Thanks! :)", "title": null, "type": "comment" }, { "action": "created", "author": "ndabAP", "comment_id": 643329444, "datetime": 1591975027000, "masked_author": "username_1", "text": "Great,", "title": null, "type": "comment" }, { "action": "closed", "author": "ndabAP", "comment_id": null, "datetime": 1591975028000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "kdlslyv", "comment_id": 650601930, "datetime": 1593283852000, "masked_author": "username_0", "text": "thanks for the quick resolution, working with stdin works.\r\n\r\nhowever when using the `({ _ })` [see here](https://github.com/username_1/vue-command/blob/6f19260da4413a956933be0dbc5d90a9f77797c6/src/hosted/App.vue#L125) - the bug still applies, try `cd \"te st\"`\r\nit'll list it like this in the array: `\"te, st\"`", "title": null, "type": "comment" }, { "action": "created", "author": "jorgebucaran", "comment_id": 650677143, "datetime": 1593312694000, "masked_author": "username_2", "text": "@username_0 Hmm that's probably not a bug in getopts, but if you could create a minimal reproduction of the bugs with getopts, I'd have a look right away.", "title": null, "type": "comment" }, { "action": "created", "author": "kdlslyv", "comment_id": 655488879, "datetime": 1594211364000, "masked_author": "username_0", "text": "@username_2 thank you for your effort, but `getopts` does its job flawlessly.\r\n\r\nthe culprit is this in [handle.js](https://github.com/username_1/vue-command/blob/b01b2adbaba0a4717f861047ad2b606a3d7f50b0/src/mixins/handle.js#L42)\r\n\r\nI've hacked around it using the `stdin.sync` prop and a rather hacky solution parsing how I want it, it probably is not the most fitting solution that'd apply to anyone, otherwise I'd open a pull request.", "title": null, "type": "comment" }, { "action": "created", "author": "ndabAP", "comment_id": 655496833, "datetime": 1594212396000, "masked_author": "username_1", "text": "@username_0 I'd appreciate a PR!", "title": null, "type": "comment" }, { "action": "created", "author": "kdlslyv", "comment_id": 655544523, "datetime": 1594217382000, "masked_author": "username_0", "text": "@username_1 thanks - I'll put something worthwhile (hopefully - we'll check) together on the weekend, wouldn't want to pollute this awesome project 🙈", "title": null, "type": "comment" }, { "action": "reopened", "author": "ndabAP", "comment_id": null, "datetime": 1594278664000, "masked_author": "username_1", "text": "Hi,\r\n\r\nIn earlier versions I could input options like this one:\r\n\r\n`exec Do-Stuff --stuff \"great stuff\"`\r\n\r\nthis does not check out currently.\r\nHaving `yargs` in earlier versions did this really well.\r\n\r\nFor reproduction, use the demos `reverse` command like this:\r\n`reverse \"text with space\"`", "title": "Bug: Spaces in options", "type": "issue" }, { "action": "closed", "author": "ndabAP", "comment_id": null, "datetime": 1595712916000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "ndabAP", "comment_id": 663908871, "datetime": 1595713147000, "masked_author": "username_1", "text": ":tada: This issue has been resolved in version 15.0.1 :tada:\n\nThe release is available on:\n- [npm package (@latest dist-tag)](https://www.npmjs.com/package/vue-command/v/15.0.1)\n- [GitHub release](https://github.com/username_1/vue-command/releases/tag/v15.0.1)\n\nYour **[semantic-release](https://github.com/semantic-release/semantic-release)** bot :package::rocket:", "title": null, "type": "comment" } ]
3
17
3,440
false
false
3,440
true
tamlok/vnote
null
609,630,024
1,341
null
[ { "action": "opened", "author": "BingHuaCheng", "comment_id": null, "datetime": 1588228302000, "masked_author": "username_0", "text": "在root目录将笔记git init...,然 [_##[后push到github,md文件中图片不能显示,图片路径似乎是以当前目录为root目录", "title": "同步到github后md文件中图片不能显示", "type": "issue" }, { "action": "created", "author": "tamlok", "comment_id": 621661887, "datetime": 1588231508000, "masked_author": "username_1", "text": "能详细说一下吗?\r\n\r\n1. md文本是怎么写的;\r\n2. 文件结构是怎么样的;", "title": null, "type": "comment" }, { "action": "created", "author": "BingHuaCheng", "comment_id": 621676449, "datetime": 1588233359000, "masked_author": "username_0", "text": "---原始邮件---", "title": null, "type": "comment" }, { "action": "created", "author": "BingHuaCheng", "comment_id": 621684258, "datetime": 1588234309000, "masked_author": "username_0", "text": "github查看情况\r\n\r\n\r\n\r\n\r\n\r\n---原始邮件---", "title": null, "type": "comment" }, { "action": "closed", "author": "BingHuaCheng", "comment_id": null, "datetime": 1588250441000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
2
5
157
false
false
157
false
EverlastingBugstopper/avery-site
null
677,971,285
14
{ "number": 14, "repo": "avery-site", "user_login": "EverlastingBugstopper" }
[ { "action": "opened", "author": "EverlastingBugstopper", "comment_id": null, "datetime": 1597265580000, "masked_author": "username_0", "text": "", "title": "hi ashley", "type": "issue" }, { "action": "created", "author": "EverlastingBugstopper", "comment_id": 673744415, "datetime": 1597358304000, "masked_author": "username_0", "text": "Hush child", "title": null, "type": "comment" } ]
2
5
160
false
true
10
false
phalcon/cphalcon
phalcon
474,407,306
14,268
{ "number": 14268, "repo": "cphalcon", "user_login": "phalcon" }
[ { "action": "opened", "author": "SidRoberts", "comment_id": null, "datetime": 1564469746000, "masked_author": "username_0", "text": "Hello!\r\n\r\n* Type: bug fix\r\n* Link to issue: #14260 \r\n\r\n**In raising this pull request, I confirm the following:**\r\n\r\n- [x] I have read and understood the [Contributing Guidelines](https://github.com/phalcon/cphalcon/blob/master/CONTRIBUTING.md)\r\n- [x] I have checked that another pull request for this purpose does not exist\r\n- [x] I wrote some tests for this PR\r\n- [-] I have updated the relevant CHANGELOG\r\n- [-] I have created a PR for the [documentation](https://github.com/phalcon/docs) about this change\r\n\r\nTwo important things of note:\r\n\r\n* [From OpenSSL 1.1.1, ciphers are lowercased](https://www.php.net/manual/en/function.openssl-get-cipher-methods.php#123319)\r\n* [Memcached::getAllKeys() appears to be broken from 1.4.23](https://www.php.net/manual/en/memcached.getallkeys.php#123793)\r\n\r\nI've tried to alter the code to work around these problems but I'd like someone with a fresh set of eyes to double check as I've been looking at this too long. :stuck_out_tongue_winking_eye:", "title": "Travis now uses Ubuntu 18.04 for builds", "type": "issue" }, { "action": "created", "author": "sergeyklay", "comment_id": 516359648, "datetime": 1564482046000, "masked_author": "username_1", "text": "It's a little bit confusing with the bugs in the getAllKeys() method\r\n\r\n- One says it doesn't work with memcached 1.5+: https://github.com/php-memcached-dev/php-memcached/issues/367\r\n- One says it doesn't work with php-memcached before 3.0.1: https://github.com/php-memcached-dev/php-memcached/issues/203#issuecomment-282041918", "title": null, "type": "comment" }, { "action": "created", "author": "sergeyklay", "comment_id": 516371909, "datetime": 1564484543000, "masked_author": "username_1", "text": "@username_0 Could you please change memcached version check to reflect this \r\nSee: https://github.com/php-memcached-dev/php-memcached/pull/315\r\n\r\nMake sure you use php-memcached extension >= 3.0.1 and memcached server >= 1.4.24", "title": null, "type": "comment" }, { "action": "created", "author": "SidRoberts", "comment_id": 516663902, "datetime": 1564538807000, "masked_author": "username_0", "text": "I agree that this is very confusing. Currently Travis is using Memcached server 1.5.6 and Memcached extension 3.1.3. In theory, it should work [but it doesn't](https://travis-ci.org/phalcon/cphalcon/jobs/565634267#L797).\r\n\r\nI don't like the idea of a test doing version checking. I think the version checks should be in the `getKeys()` method and we should maybe implement code that actually gets all the keys instead of dealing with this mess.\r\n\r\nHow about keep the version check at >=1.2.24 for now, merge it and then deal with it later?", "title": null, "type": "comment" }, { "action": "created", "author": "SidRoberts", "comment_id": 516664876, "datetime": 1564539130000, "masked_author": "username_0", "text": "Or, as a last ditch effort, what about https://github.com/phalcon/cphalcon/pull/14268/commits/bc0712eeed23fd27f9c07e82640d5e52e24e46b2?", "title": null, "type": "comment" }, { "action": "created", "author": "sergeyklay", "comment_id": 516697586, "datetime": 1564549675000, "masked_author": "username_1", "text": "Thank you", "title": null, "type": "comment" } ]
2
6
2,226
false
false
2,226
true
Workday/canvas-kit
Workday
562,381,771
454
{ "number": 454, "repo": "canvas-kit", "user_login": "Workday" }
[ { "action": "opened", "author": "jamesfan", "comment_id": null, "datetime": 1581321007000, "masked_author": "username_0", "text": "## Summary\r\n\r\nAddresses #294.\r\n\r\nModifies the Select component to use the Canvas-designed menu instead of the native select menu.\r\n\r\n## Checklist\r\n\r\n<!-- Remove items that do not apply. For completed items, change [ ] to [x]. -->\r\n\r\n- [ ] branch has been rebased on the latest master commit\r\n- [ ] tests are changed or added\r\n- [ ] `yarn test` passes\r\n- [ ] all (dev)dependencies that the module needs is added to its `package.json`\r\n- [ ] code has been documented and, if applicable, usage described in README.md\r\n- [ ] module has been added to `canvas-kit-react` and/or `canvas-kit-css` universal modules, if\r\n applicable\r\n- [ ] design approved final implementation\r\n- [ ] a11y approved final implementation\r\n- [ ] code adheres to the [API & Pattern guidelines](../API_PATTERN_GUIDELINES.md)", "title": "feat(select): Implement Canvas menu", "type": "issue" }, { "action": "created", "author": "NicholasBoll", "comment_id": 584232528, "datetime": 1581355005000, "masked_author": "username_1", "text": "There are several Typescript errors that are preventing a Storybook example from running in Chroma", "title": null, "type": "comment" }, { "action": "created", "author": "jamesfan", "comment_id": 584487992, "datetime": 1581400561000, "masked_author": "username_0", "text": "@username_1 Thanks for the feedback! I'll start addressing these fixes/questions shortly.", "title": null, "type": "comment" }, { "action": "created", "author": "jamesfan", "comment_id": 607538858, "datetime": 1585783674000, "masked_author": "username_0", "text": "@anicholls Awesome, will do!", "title": null, "type": "comment" }, { "action": "created", "author": "jamesfan", "comment_id": 610756710, "datetime": 1586323162000, "masked_author": "username_0", "text": "@username_1 @anicholls\r\n\r\n_I'm adding this as a brand new comment rather than adding it to the original thread since it's getting buried in the hidden items. Here's the original thread for reference: https://github.com/Workday/canvas-kit/pull/454#discussion_r395942602_\r\n\r\nI've implemented the render prop (`renderOption`) in the latest changes if you'd like to check it out. I've included example code in the README as well as a `Custom Options` story.\r\n\r\nIt's a slightly modified version of Nicholas's proposed API -- I opted to have `renderOption` only handle the content of the `<SelectOption>` and not the `<SelectOption>` itself for simplicity.\r\n\r\nIt would be nice if we could use `renderOption` to render the actual Select itself (which is actually a button), but since it's a `<button>` we're limited in what we can include in its content. Something for a later PR perhaps.", "title": null, "type": "comment" }, { "action": "created", "author": "NicholasBoll", "comment_id": 618717418, "datetime": 1587683539000, "masked_author": "username_1", "text": "It's unfortunate how these stories show up in documentation: \r\n<img width=\"423\" alt=\"Screen Shot 2020-04-23 at 5 11 49 PM\" src=\"https://user-images.githubusercontent.com/338257/80158382-937feb00-8585-11ea-945f-00b42956c8fa.png\">", "title": null, "type": "comment" }, { "action": "created", "author": "jamesfan", "comment_id": 618721610, "datetime": 1587684420000, "masked_author": "username_0", "text": "Agreed, do you think it would be preferable to remove `defaultWithSimpleOptionsComponent` and replace it with the actual component code (at the expense of adding duplicate code and making it a bit more tedious to update stories)?", "title": null, "type": "comment" }, { "action": "created", "author": "NicholasBoll", "comment_id": 619283386, "datetime": 1587772128000, "masked_author": "username_1", "text": "Yes. A story's implementation is meant to show an example use-case that is as copy/paste-friendly as possible. We want the source to be easy to understand.\r\n\r\nIdeally someone could just copy/paste everything in the \"source\" tab of the component and make their modifications, but unfortunately Storybook's source plugin doesn't do that very well. Despite the plugin's shortcomings, I'd like to make story source as good as we can without modifying Storybook or the plugins directly. Perhaps we'll fix the source at some point in the future.\r\n\r\nRelated: #597", "title": null, "type": "comment" } ]
3
10
6,835
false
true
2,911
true
spenserblack/favlist
null
674,061,556
66
{ "number": 66, "repo": "favlist", "user_login": "spenserblack" }
[ { "action": "created", "author": "spenserblack", "comment_id": 669962886, "datetime": 1596724133000, "masked_author": "username_0", "text": "@dependabot recreate", "title": null, "type": "comment" }, { "action": "created", "author": "spenserblack", "comment_id": 669973935, "datetime": 1596725200000, "masked_author": "username_0", "text": "@dependabot merge", "title": null, "type": "comment" } ]
2
3
4,719
false
true
37
false
Azure/azure-webjobs-sdk-extensions
Azure
366,092,425
509
null
[ { "action": "opened", "author": "brettsam", "comment_id": null, "datetime": 1538516713000, "masked_author": "username_0", "text": "I'm creating this issue so we can track the work from #349. It's close to being completed (for almost a year) but we need to push it over the finish line. Let's use this for scheduling/tracking the work item of completing this.", "title": "Support retries in CosmosDBTrigger", "type": "issue" }, { "action": "created", "author": "dnlhll", "comment_id": 427933483, "datetime": 1539023061000, "masked_author": "username_1", "text": "@username_0, @nkinnan latest comment in PR 349 highlights a blocking issue here https://github.com/Azure/azure-webjobs-sdk/issues/1340 . Can you apply some pressure to push that fix through?", "title": null, "type": "comment" }, { "action": "created", "author": "dnlhll", "comment_id": 438289414, "datetime": 1542120056000, "masked_author": "username_1", "text": "@username_0 any progress on this issue?", "title": null, "type": "comment" }, { "action": "created", "author": "brettsam", "comment_id": 439359908, "datetime": 1542366222000, "masked_author": "username_0", "text": "@paulbatum and I discussed this and we think it makes more sense to push this down into the core Executor so that Event Hubs can also take advantage. It'd allow a trigger to specify that it supports retries, and will provide a consistent experience across multiple triggers.\r\n\r\n@fabiocav as FYI -- we'll need to prioritize this in our planning.", "title": null, "type": "comment" } ]
2
4
796
false
false
796
true
thmhoag/codectl
null
691,693,959
1
{ "number": 1, "repo": "codectl", "user_login": "thmhoag" }
[ { "action": "opened", "author": "msquires", "comment_id": null, "datetime": 1599115771000, "masked_author": "username_0", "text": "Adding ability to override template file paths with other values. The replacement values can be either literal text or template syntax.\r\n\r\nExample:\r\nIf the .codectl.yaml file contains:\r\n```\r\nversion: 0.0.1\r\ndescription: a template for helm charts\r\nparameters:\r\n- name: FirstName\r\n prompt: \"First name\"\r\n required: true\r\n- name: LastName\r\n prompt: \"Last name\"\r\n required: true\r\noverrides:\r\n paths:\r\n \".operations/chart\": '.operations/{{ (print .FirstName \"--\" .LastName) | lower}}'\r\n```\r\nAssuming the values: FirstName=foo, LastName=bar, then any files in the `.operations/chart` folder in the template would be placed in the `.operations/foo--bar` folder in the generated output.", "title": "adding path override functionality", "type": "issue" }, { "action": "created", "author": "thmhoag", "comment_id": 686638307, "datetime": 1599153858000, "masked_author": "username_1", "text": "LGTM 👍 \r\n\r\nMerging and cutting a release.", "title": null, "type": "comment" } ]
2
2
729
false
false
729
false
adventuregamestudio/ags
adventuregamestudio
655,061,012
1,103
{ "number": 1103, "repo": "ags", "user_login": "adventuregamestudio" }
[ { "action": "opened", "author": "ivan-mogilko", "comment_id": null, "datetime": 1594418832000, "masked_author": "username_0", "text": "This is done as a preliminary step for #640.\r\n\r\n**As a preface**, engine logging system in a nutshell works like this:\r\n* each message has a \"verbosity level\" ranging from \"debug\" to \"fatal error\".\r\n* there may be a number of message groups, which allow to separate messages related to a component or engine's function (main, script, spritecache, managed pool);\r\n* there may be a number of outputs (stdout, log file, in-game console); each output has its own filter settings, that define which groups & level of messages to let through.\r\n\r\nWhen a message is sent to logging system it tries each registered output implementation, and if its filter allows, message is being printed.\r\n\r\n---\r\n\r\n\r\n**What this PR does**: it actually allows to configure these filters by user (player).\r\n\r\nA new section called \"[log]\" is introduced to the user config. It may have a number of entries - one for each log output - which define a list of filters for that output. These entries have a common syntax:\r\n\r\n`output_id = group1:level, group2:level, etc`\r\n\r\nwhere `output_id` is output's name, and entry value is a list of \"group name\" : \"message level\" pairs.\r\n\r\nPossible outputs at this moment are:\r\n* `stdout` - standard output (system console, etc)\r\n* `file` - regular log file\r\n* `console` - in-game console\r\n* `warnfile` - this is a special warning.log for games built in debug mode (more like a backward compatible relic, maybe we can replace this with normal log written to game dir in the future).\r\n\r\nPossible log groups:\r\n* `main` - default group for most of messages\r\n* `script` - script API messages\r\n* `sprcache` - verbose sprite cache messages (currently not available unless engine is built with DEBUG_SPRITECACHE)\r\n* `manobj` - managed objects / pool log, very verbose! (currently not available unless engine is built with DEBUG_MANAGED_OBJECTS)\r\n\r\nPossible message levels:\r\n* `fatal` - only fatal errors\r\n* `error` - any errors\r\n* `warn` - warnings\r\n* `info` - general notifications\r\n* `debug` - verbose debugging messages\r\n* `all` - all messages (which equals to `debug` level actually)\r\n\r\nFinally, there's a special form of requesting default settings:\r\n\r\n`output_id = default`\r\n\r\n---\r\n\r\n**Examples of config:**\r\n\r\n<pre>\r\n[log]\r\nstdout = main:info, script:error\r\nfile = main:all, script:all\r\nconsole = default\r\n</pre>\r\nPrint only important notifications and script API errors to stdout (system console), print everything from main and script groups into file, and use default settings for in-game console.", "title": "3.5.1: Configurable log options", "type": "issue" }, { "action": "created", "author": "ericoporto", "comment_id": 656943552, "datetime": 1594425596000, "masked_author": "username_1", "text": "This will be really useful to help debugging AGS games! I have a minor nitpick for future proof, in case there's ever an idea to pass a parameter like `--log-stdout=script:error`, the colon `:` character has special meaning in both `bash` and `cmd.exe`, so I would use something like `_` .", "title": null, "type": "comment" }, { "action": "created", "author": "ivan-mogilko", "comment_id": 656950605, "datetime": 1594427744000, "masked_author": "username_0", "text": "Underscore may be a part of name. I think it's possible to replace with another '=', because only first one separates key and value in ini format.", "title": null, "type": "comment" }, { "action": "created", "author": "ericoporto", "comment_id": 656973498, "datetime": 1594435905000, "masked_author": "username_1", "text": "Sorry, I was wrong. I just wrote a [mini program](https://github.com/username_1/quicktest/blob/master/main.cpp) and the `:` is fine. Let's keep it, it looks nicer too!", "title": null, "type": "comment" }, { "action": "created", "author": "ericoporto", "comment_id": 657131633, "datetime": 1594502328000, "masked_author": "username_1", "text": "Hey, in the context of #640 , user generated messages would be a new group, a new level (between info and warn) or neither?", "title": null, "type": "comment" }, { "action": "created", "author": "ivan-mogilko", "comment_id": 657143514, "datetime": 1594508424000, "masked_author": "username_0", "text": "I was thinking about renaming current \"script\" group to \"game\" (because it's related to game logic), and giving \"script\" group to messages from user script.", "title": null, "type": "comment" }, { "action": "created", "author": "rofl0r", "comment_id": 657241056, "datetime": 1594569374000, "masked_author": "username_2", "text": "is there something like an ultra-verbose debug level, i.e. \"give me all log messages\" ?", "title": null, "type": "comment" }, { "action": "created", "author": "ivan-mogilko", "comment_id": 657257485, "datetime": 1594577965000, "masked_author": "username_0", "text": "Do you mean all message levels from all groups? I forgot to add an quick option for that, but I will do.\r\n\r\n@username_1 actually, since you mentioned that, I realized that command-line arguments would also be needed.", "title": null, "type": "comment" }, { "action": "created", "author": "ericoporto", "comment_id": 657258724, "datetime": 1594578676000, "masked_author": "username_1", "text": "I think (not sure) there's already a command line argument there, so you do add one with these capabilities, then that one may be removed", "title": null, "type": "comment" }, { "action": "created", "author": "rofl0r", "comment_id": 657494126, "datetime": 1594638404000, "masked_author": "username_2", "text": "sounds like a good idea\r\n\r\n\r\nbtw i'd prefer if this was a commandline switch rather than a config file option", "title": null, "type": "comment" }, { "action": "created", "author": "morganwillcock", "comment_id": 657588205, "datetime": 1594649875000, "masked_author": "username_3", "text": "I had the same thought.", "title": null, "type": "comment" }, { "action": "created", "author": "ivan-mogilko", "comment_id": 657589284, "datetime": 1594649991000, "masked_author": "username_0", "text": "Do you mean, having a command line option to pair the config, or have it instead of config (and not have a config setting at all)?", "title": null, "type": "comment" }, { "action": "created", "author": "ericoporto", "comment_id": 657589895, "datetime": 1594650057000, "masked_author": "username_1", "text": "I imagine the log can config is more comfortable on Windows when you are running your game by double clicking the executable and the command line is more comfortable when invoking the game in Linux system where you run the engine from the command line (double click execution of binaries from file navigator is not a thing in Linux since this belongs to the launcher).", "title": null, "type": "comment" }, { "action": "created", "author": "rofl0r", "comment_id": 657596035, "datetime": 1594650722000, "masked_author": "username_2", "text": "yeah, imo command-line only is preferable. the user interested in log output can run `./game.exe --help` and read the usage output, if it is a config file option he's got to study (and find) the online manual for config files.", "title": null, "type": "comment" }, { "action": "created", "author": "ericoporto", "comment_id": 657603425, "datetime": 1594651524000, "masked_author": "username_1", "text": "@username_2 do you have suggestions for how to write the log help concisely? I was thinking on it and could only figure out text that was more appropriate to a man entry.", "title": null, "type": "comment" }, { "action": "created", "author": "rofl0r", "comment_id": 657638126, "datetime": 1594655214000, "masked_author": "username_2", "text": "@username_1 something like:\r\n```\r\n--log-level=value\r\n 1: fatal errors only\r\n 2: medium\r\n 3: debug\r\n--log-subsys=[mscp]\r\n specify one or more log subsystems to be logged (default: all)\r\n m: main\r\n s: script\r\n ...\r\n--log-output=value\r\n specify where log output is displayed (default: stdout)\r\n stdout: log to stdout\r\n stderr: log to stderr\r\n console: log to game console\r\n file:name.log: log to name.log\r\n```", "title": null, "type": "comment" }, { "action": "created", "author": "ericoporto", "comment_id": 657663958, "datetime": 1594658119000, "masked_author": "username_1", "text": "Engine currently log to `~/.local/share/ags.log` , I would not change this on this PR, if the log goes to stdout the person can redirect it to a file. Also current default I think is info on main and error on script.", "title": null, "type": "comment" }, { "action": "created", "author": "ivan-mogilko", "comment_id": 657668886, "datetime": 1594658702000, "masked_author": "username_0", "text": "IMO there is at least one reason to keep config options as alternative: there are ports that are not normally run from command line (mobile).", "title": null, "type": "comment" }, { "action": "created", "author": "ericoporto", "comment_id": 657672144, "datetime": 1594659088000, "masked_author": "username_1", "text": "Yes that too. On Android the stdout log should show up in logcat.", "title": null, "type": "comment" }, { "action": "created", "author": "ivan-mogilko", "comment_id": 657676064, "datetime": 1594659559000, "masked_author": "username_0", "text": "Looking at username_2's cmdline proposal above, it defines same subsystem/level setup for any output, as opposed to each output having its own message filter, which exists now. Initially I was basing this on some of the existing logging systems that allow to pass different message groups into different targets.\r\n\r\nIdk if it's generally necessary for AGS, but there are special cases, like in-game console that normally was used to print all kinds of verbose stuff, like room object state changes, and a \"warnings.log\" file that is used to output any kind of script warnings when game is run from the editor (bringing user attention to potential mistakes in game).", "title": null, "type": "comment" }, { "action": "created", "author": "ivan-mogilko", "comment_id": 658457812, "datetime": 1594768441000, "masked_author": "username_0", "text": "Okay, I will try to make something up soon (there has to be bit more changes to the code), but one thing that concerns me about above suggestion is that \"log-level\" default is \"nothing\", which means that if a user simply runs a game from terminal without parameters, they won't get any messages whatsoever.", "title": null, "type": "comment" }, { "action": "created", "author": "rofl0r", "comment_id": 658626607, "datetime": 1594801783000, "masked_author": "username_2", "text": "well, that's probably not a wise default, at least for non-console-like platforms like android, i suppose it should be 1 for platforms that have a terminal.", "title": null, "type": "comment" }, { "action": "created", "author": "ericoporto", "comment_id": 659133407, "datetime": 1594869578000, "masked_author": "username_1", "text": "`--log-stdout=main:info script:error` or `--log-stdout=m:i s:e` should work as alternative command line parameters to specify a level per loggroup per log sink (stdout, file, console).", "title": null, "type": "comment" }, { "action": "created", "author": "ivan-mogilko", "comment_id": 659322568, "datetime": 1594895242000, "masked_author": "username_0", "text": "In the above, how do you know where the command arguments end?", "title": null, "type": "comment" }, { "action": "created", "author": "ericoporto", "comment_id": 659350018, "datetime": 1594898869000, "masked_author": "username_1", "text": "Yes, you can enclose in double quotes. You can also accept multiple ([item 9](https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap12.html)) `--log-stdout=main:info` `--log-stdout=script:error` passed at same time. This [so details both](https://stackoverflow.com/questions/43195553/how-to-pass-multiple-parameters-for-the-same-commandline-argument). Maybe is best to not accept multiple arguments in the parameter unless it's enclosed by double quotes. If it's desired for some reason, than an option is to require comma as separator.", "title": null, "type": "comment" }, { "action": "created", "author": "ivan-mogilko", "comment_id": 659381432, "datetime": 1594902838000, "masked_author": "username_0", "text": "The problem is that engine still does not have a proper generic parsing of command line; for that reason I'd rather stick to one simple implementation for this moment.", "title": null, "type": "comment" }, { "action": "created", "author": "ericoporto", "comment_id": 659385165, "datetime": 1594903294000, "masked_author": "username_1", "text": "I had a pleasant experience with `cxxopts` here https://github.com/username_1/ags/blob/ags4-fernewelten-agscc/Compiler/agscc.cpp", "title": null, "type": "comment" }, { "action": "created", "author": "rofl0r", "comment_id": 659485793, "datetime": 1594913111000, "masked_author": "username_2", "text": "the simple and generic implementation is getopt(3p) or [getopt_long](https://linux.die.net/man/3/getopt_long) . the latter is a bit less portable but used by almost all command line tools in the unix world.\r\n\r\nas far as parsing is concerned, in my proposal you'd parse one or more message groups using a single character representing a group, no need for separator characters, in which case a simple `switch(optarg[x]) { case 'm': message_group_m = true; break; ...` would be sufficient (iterating over each char in the optarg) . the only option that requires a separate parsing step is the suggested --log-output option if used with \"file\", in which case one would check whether the option argument starts with \"file:\" and then start parsing the actual filename from position 5.", "title": null, "type": "comment" }, { "action": "created", "author": "ivan-mogilko", "comment_id": 659569037, "datetime": 1594921632000, "masked_author": "username_0", "text": "AFAIK getopt is not supported on Windows.", "title": null, "type": "comment" }, { "action": "created", "author": "ivan-mogilko", "comment_id": 660548292, "datetime": 1595109488000, "masked_author": "username_0", "text": "So, here's an experimental variant done in a kind of smart-arse way. It has *only one* command line option which is parsed similarily to the config, except the option's name is formed slightly differently:\r\n\r\n`--log-OUTPUT=group:verbosity,group,verbosity,etc`\r\n\r\nGroups may be defined by both full names or letters or groups of letters. Nuance is that to make parsing easier letter groups must be preceded by special letter '+' (I can change it to something else).\r\nVerbosity may now also be defined by either name or number.\r\n\r\nExamples of command line arguments:\r\n`--log-file=main:error` - prints into file\r\n`--log-stdout=all:3` - prints error level to stdout\r\n`--log-stdout=all` or `--log-stdout=all:all` - prints everything possible to stdout.\r\n\r\nAdditionally, log file path may be now specified both in config and command line:\r\n`--log-file-path=./1.txt`\r\nor\r\n<pre>\r\n[log]\r\nfile-path = ./1.txt\r\n</pre>", "title": null, "type": "comment" }, { "action": "created", "author": "ivan-mogilko", "comment_id": 662102527, "datetime": 1595365059000, "masked_author": "username_0", "text": "Added help, if it's fine I can merge this.", "title": null, "type": "comment" }, { "action": "created", "author": "ericoporto", "comment_id": 663299796, "datetime": 1595551371000, "masked_author": "username_1", "text": "I verified on Linux and for me it appears fine.", "title": null, "type": "comment" }, { "action": "created", "author": "ivan-mogilko", "comment_id": 663745986, "datetime": 1595626911000, "masked_author": "username_0", "text": "Ammended with examples.", "title": null, "type": "comment" } ]
4
33
9,742
false
false
9,742
true
kubedb/project
kubedb
505,147,445
659
null
[ { "action": "opened", "author": "rolandkool", "comment_id": null, "datetime": 1570699615000, "masked_author": "username_0", "text": "Hi,\r\n\r\nWe've found that Elasticsearch clusters won't start if Istio injects a sidecar into statefulsets that get created.\r\n\r\nThere seem to be two issues:\r\n* Not all of the Kubernetes services that get created have the proper port naming as required by Istio. For example the service for the master (on port 9300) has a portname of 'transport', while 'tcp-transport' would be required for Istio (see https://istio.io/docs/setup/additional-setup/requirements/)\r\n* With the services fixed, the data nodes will not start and are unable to reach the master. There's a related issue in the Istio project: https://github.com/istio/istio/issues/14662\r\n\r\nOther somewhat related issue: https://github.com/kubedb/project/issues/544", "title": "Elasticsearch doesn't work in combination with Istio", "type": "issue" }, { "action": "created", "author": "BufferUnderflower", "comment_id": 543543890, "datetime": 1571380687000, "masked_author": "username_1", "text": "The main reason i couldn't use KubeDB with Istio was the fact that KubeDB relies heavily on initContainers to setup connectivity for db clusters (discovery, policies), while `istio-proxy` (container with envoy) starts up right after all initContainers are finished. [This means **you can't rely on any Istio networking features in initContainers** ](https://discuss.istio.io/t/k8s-istio-sidecar-injection-with-other-init-containers/845). What i did was moving init logic to main container and delayed its execution until proxy is up and running.\r\n\r\nIf you're trying to setup mTLS - keep in mind initContainer doesn't yet have any keys, certs, ServiceEntries (for headless), etc that are normally provided by Istio sidecar.\r\n\r\nMy piece of advice - If you're going with Istio - prefer raw manifests over KubeDB , because you'll find yourself very limited in advanced Istio features (mTLS, multicluster), using this operator for db clusters/replicasets.", "title": null, "type": "comment" }, { "action": "created", "author": "rolandkool", "comment_id": 559466414, "datetime": 1574942319000, "masked_author": "username_0", "text": "We're actually using Istio CNI in stead of init containers, but the issue remains. Even with 1.4 where some improvements for dealing with statefulsets are included, it still won't start when the sidecar is active.\r\nOur approach for now is to just leave it out of the mesh, but it would be nice if at least the improvements with regards to the service portnames could be addressed in a future version.", "title": null, "type": "comment" }, { "action": "created", "author": "BufferUnderflower", "comment_id": 559902762, "datetime": 1575077500000, "masked_author": "username_1", "text": "Problem is not Istio's init container, but kubedb's. Even though you use CNI. KubeDB does it's initializing in initContaner and assumes there is network connectivity at this stage, but there is none, because istio-proxy is a normal container that will start after all initContainers done. What i managed to do was moving that logic to run inside main container.", "title": null, "type": "comment" } ]
2
4
2,432
false
false
2,432
false
Microsoft/vscode-python
Microsoft
419,266,419
4,703
null
[ { "action": "opened", "author": "hujianxin", "comment_id": null, "datetime": 1552270227000, "masked_author": "username_0", "text": "## Environment data\r\n\r\n- VS Code 1.32.1: \r\n- Extension version (available under the Extensions sidebar): 2019.2.5558 (6 March 2019)\r\n- OS and version: Ubuntu 16.04\r\n- Python version (& distribution if applicable, e.g. Anaconda): 3.7.1\r\n- Type of virtual environment used (N/A | venv | virtualenv | conda | ...): pipenv \r\n\r\n## Expected behaviour\r\n\r\nRename a python file in VSCode sidebar, goto definition of LSP works fine\r\n\r\n## Actual behaviour\r\n\r\nLSP does not work, and a progress bar above editor is always running\r\n\r\n## Steps to reproduce:\r\n1. XXX\r\ntouch a.py, b.py\r\n\r\nimport b.py from a.py\r\n\r\nchange b.py to c.py", "title": "Renaming file will burn down LSP", "type": "issue" }, { "action": "created", "author": "luabud", "comment_id": 530605081, "datetime": 1568244828000, "masked_author": "username_1", "text": "Fixed upstream.", "title": null, "type": "comment" }, { "action": "closed", "author": "luabud", "comment_id": null, "datetime": 1568244828000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
631
false
false
631
false
okadalabipr/biomass
okadalabipr
653,003,657
18
null
[ { "action": "opened", "author": "himoto", "comment_id": null, "datetime": 1594188517000, "masked_author": "username_0", "text": "As implemented now, the simulated model time (duration and implicit unit) must be entered in observable.py, however, to truly adapt simulation time, also the plot script needs to be modified. Just as a suggestion, maybe this can be circumvented by adding some time variable to observable.py which is then passed to the plot script? Potentially, this could also include other plotting parameters such as axes limits etc. Some plotting parameters are currently hard coded, maybe there would be a way to dynamically adapt the plot range, potentially circumventing problems when working on several models in parallel.", "title": "Plotting options", "type": "issue" }, { "action": "closed", "author": "himoto", "comment_id": null, "datetime": 1594191269000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
2
613
false
false
613
false
kubernetes/minikube
kubernetes
610,055,705
7,949
null
[ { "action": "opened", "author": "nitishvu", "comment_id": null, "datetime": 1588256408000, "masked_author": "username_0", "text": "<!--- Please include the \"minikube start\" command you used in your reproduction steps --->\r\n**Steps to reproduce the issue:** \r\n\r\n1. minikube start --kubernetes-version=v1.14.1 --driver=docker \r\n2. minikube config get driver\r\n\r\n\r\n<!--- TIP: Add the \"--alsologtostderr\" flag to the command-line for more logs --->\r\n**Full output of failed command:** \r\n\r\nError: specified key could not be found in config\r\n\r\n**Full output of `minikube start` command used, if not already included:**\r\n\r\n\r\n\r\n**Optional: Full output of `minikube logs` command:**\r\n<details>\r\nOS: ubuntu 20.04 LTS\r\n\r\n</details>", "title": "how/where to check minikube driver info ", "type": "issue" }, { "action": "created", "author": "afbjorklund", "comment_id": 621931097, "datetime": 1588260953000, "masked_author": "username_1", "text": "Currently it is hiding under `minikube profile list`\r\n\r\nYou can view all of your local config , as well. `minikube config view`\r\nBut it is normally quite empty, unless you have used `set` before...\r\n\r\nWhat kind of info where you looking for, beyond \"docker\" ?\r\n\r\nYou can view the raw configuration of the profile and the machine.\r\nOne of those files might have information that you are looking for.\r\n\r\n`~/.minikube/profiles/minikube/config.json`\r\n`~/.minikube/machines/minikube/config.json`", "title": null, "type": "comment" }, { "action": "created", "author": "nitishvu", "comment_id": 621962364, "datetime": 1588264176000, "masked_author": "username_0", "text": "Hi @username_1 thanks for the response.\r\n\r\nIn my application, I am trying to check if a user started Minkube with driver=docker\r\nI need to connect my application with docker network(bridge)", "title": null, "type": "comment" }, { "action": "created", "author": "nitishvu", "comment_id": 621965647, "datetime": 1588264559000, "masked_author": "username_0", "text": "@username_1 \r\nI can see driver details in both files thanks for the info.", "title": null, "type": "comment" }, { "action": "closed", "author": "nitishvu", "comment_id": null, "datetime": 1588318572000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
2
5
1,348
false
false
1,348
true
pyiron/pyiron
pyiron
603,421,285
605
null
[ { "action": "opened", "author": "samwaseda", "comment_id": null, "datetime": 1587405088000, "masked_author": "username_0", "text": "This is not the best way to get these numbers. Better extract them from energy.dat.\r\nFor instance, eTot(Val) is the Kohn-Sham energy using the latest (mixed?) density, the Harris-Foulkes energy is more accurate for scfDiag. The energy_zero extrapolation depends on the smearing-scheme order (Methfessel-Paxton or order 1 Fermi-Dirac are different).\r\n\r\n_Originally posted by @freyso in https://github.com/pyiron/pyiron/pull/592_", "title": "This is not the best way to get these numbers. Better extract them from energy.dat.", "type": "issue" }, { "action": "created", "author": "samwaseda", "comment_id": 621664975, "datetime": 1588231908000, "masked_author": "username_0", "text": "Implemented [here](https://github.com/pyiron/pyiron/issues/605)", "title": null, "type": "comment" }, { "action": "closed", "author": "samwaseda", "comment_id": null, "datetime": 1588231909000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
3
490
false
false
490
false
cms-sw/cmssw
cms-sw
609,159,473
29,586
{ "number": 29586, "repo": "cmssw", "user_login": "cms-sw" }
[ { "action": "opened", "author": "makortel", "comment_id": null, "datetime": 1588174958000, "masked_author": "username_0", "text": "#### PR description:\r\n\r\n#29553 implies that all data dependencies for modules in Tasks must be specified to keep those modules alive and running (in principle the proper dependencies should be declared anyway, that PR makes it necessary also in practice). It turned out that the `DQMRootOutputModule` currently does not declare dependencies on all the DQM analyzers. Easiest fix is to do `consumesMany<DQMToken, ...>` for both Lumi and Run products.\r\n\r\nActually I tried first to use the `outputCommands` (which by the for some reason is\r\nhttps://github.com/cms-sw/cmssw/blob/3f89112fddb9bd4f384fa7acacc5fb81720bee16/Configuration/EventContent/python/EventContent_cff.py#L356-L357\r\nwhich to me doesn't seem to make much sense), but that would require making `DQMToken` persistable, which would require an underscore a forbidden character for all modules producing `DQMToken`. An underscore appears to be in wide use for DQM modules, which is why I scrapped that approach (I did some amount of migration to no-underscore module labels, if DQM is interested I can make pull request(s) of what I did).\r\n\r\n#### PR validation:\r\n\r\nLimited matrix runs.", "title": "Make DQMRootOutputModule to depend on all DQM modules via DQMTokens", "type": "issue" }, { "action": "created", "author": "makortel", "comment_id": 621295696, "datetime": 1588175032000, "masked_author": "username_0", "text": "FYI @username_3", "title": null, "type": "comment" }, { "action": "created", "author": "makortel", "comment_id": 621300798, "datetime": 1588175520000, "masked_author": "username_0", "text": "@cmsbuild, please test", "title": null, "type": "comment" }, { "action": "created", "author": "jfernan2", "comment_id": 621693824, "datetime": 1588235547000, "masked_author": "username_1", "text": "+1", "title": null, "type": "comment" }, { "action": "created", "author": "silviodonato", "comment_id": 621705962, "datetime": 1588237008000, "masked_author": "username_2", "text": "+1", "title": null, "type": "comment" }, { "action": "created", "author": "schneiml", "comment_id": 622324717, "datetime": 1588326742000, "masked_author": "username_3", "text": "@username_0 uh, so I was wrong?\r\n\r\nThanks a lot, anyways!", "title": null, "type": "comment" } ]
5
14
3,135
false
true
1,238
true
wmn7/ML_Practice
null
625,799,738
1
null
[ { "action": "opened", "author": "Epimenides7", "comment_id": null, "datetime": 1590593577000, "masked_author": "username_0", "text": "### 看一下三维的\r\nx = torch.tensor([\r\n [0.1, 0.2 ,0.5, 0.2],\r\n [0.4, 0.3, 0.2, 0.1],\r\n [0.1, 0.2, 0.5, 0.1],\r\n])\r\n我们可以看到第三维是dim=0, \"行\"是dim=1, 列是dim=2\r\nprint(x.shape)\r\n这个张量是二维的,而且“行”是dim=0,列是dim=1", "title": "topk表达错误", "type": "issue" }, { "action": "closed", "author": "wmn7", "comment_id": null, "datetime": 1596591890000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
2
198
false
false
198
false
primer/components
primer
644,111,477
838
null
[ { "action": "opened", "author": "albingroen", "comment_id": null, "datetime": 1592942850000, "masked_author": "username_0", "text": "Here's my 2 cents: **Dividers between the notifications on the dashboard is unnecessary** and just clutters the design in my opinion.\r\n\r\n![Screenshot 2020-06-23 at 21 55 14](https://user-images.githubusercontent.com/19674362/85454928-b470b680-b59d-11ea-8599-e38145e2f224.png)\r\n\r\nPlease forward this to the right place if this is not the one 🙂", "title": "[❓Suggestion] Remove dividers on github.com dashboard", "type": "issue" }, { "action": "created", "author": "emplums", "comment_id": 648949506, "datetime": 1593018696000, "masked_author": "username_1", "text": "Thanks for your feedback! Unfortunately this is not something we can address in Primer. Please contact support so that they can follow this up with the relevant team at GitHub 🙌 https://support.github.com/contact", "title": null, "type": "comment" }, { "action": "closed", "author": "emplums", "comment_id": null, "datetime": 1593018696000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
555
false
false
555
false
intelxed/xed
intelxed
629,877,541
230
{ "number": 230, "repo": "xed", "user_login": "intelxed" }
[ { "action": "opened", "author": "xelxebar", "comment_id": null, "datetime": 1591179845000, "masked_author": "username_0", "text": "Prior to this commit, the following object files built\r\nnon-deterministically:\r\n\r\n* xed-ild-disp-l3.o,\r\n* xed-ild-eosz.o, and\r\n* xed-ild.o.\r\n\r\nThis breaks the ability to build the library reproducibly. The primary\r\nsource of non-determinism comes from Python dictionaries placing no\r\nguarantees on the order of items returned from `list(dict)`.\r\n\r\nA simple workaround is to use `sorted(dict.keys())` or\r\n`sorted(dict.items())` etc. as appropriate. However,\r\n`sorted(dict.values())` fails to work in the general case since\r\ndictionary values may not be orderable. For sorted `dict.items()` the\r\nfollowing idiom suffices:\r\n\r\n [value from (key,value) in sorted(dict.items())]\r\n\r\nwhich this patch uses to replace instances of `list(dict.values())` in\r\nseveral places.\r\n\r\nTracking down the particular offending object files was relatively\r\nstraightforward:\r\n\r\n1) Build the library twice, using separate kit directories,\r\n2) Use `objcopy -D` to sanitize obvious non-determinism from the\r\n archives, and finally\r\n3) Use `cmp` to find the differing files.\r\n\r\nThis turned up `libxed.a` as the offender. Given this is an object\r\n*archive*, we need to extract its object files and find the problematic\r\nones:\r\n\r\n $ ar x --output out/A kit-A/lib/libked.a\r\n $ ar x --output out/B kit-B/lib/libked.a\r\n\r\nRunning `cmp` over these object files turned up the mismatches mentioned\r\nabove. The output of `cmp` also gives the offset of the first\r\nmismatching bytes, and consulting `readelf -S` shows these offsets to be in\r\nthe `.text` sections, which tells us that the problem is in the code\r\ngeneration itself rather than simply some ELF metadata.\r\n\r\nA quick and dirty comparison of the disassembled code (via `objdump -d`)\r\nmakes it obvious that the problem comes from differing *orders* of the\r\ncode blocks for each symbol, i.e. the code generators are simply\r\noutputting functions in a different order between runs.", "title": "Remove sources of non-determinism in library builds", "type": "issue" }, { "action": "created", "author": "jeffli678", "comment_id": 653501916, "datetime": 1593775790000, "masked_author": "username_1", "text": "Could someone please review this PR and merge it if appropriate? This is very helpful for my work. Thanks in advance!", "title": null, "type": "comment" }, { "action": "created", "author": "markcharney", "comment_id": 761013127, "datetime": 1610725005000, "masked_author": "username_2", "text": "I'll take a look. thx", "title": null, "type": "comment" }, { "action": "created", "author": "markcharney", "comment_id": 761035319, "datetime": 1610727263000, "masked_author": "username_2", "text": "seems reasonable. I was able to merge this to my current version (thankfully!). testing now", "title": null, "type": "comment" } ]
3
4
2,142
false
false
2,142
false
RayTale/Ray
RayTale
660,646,670
64
{ "number": 64, "repo": "Ray", "user_login": "RayTale" }
[ { "action": "created", "author": "ElanHasson", "comment_id": 660667732, "datetime": 1595174319000, "masked_author": "username_0", "text": "We should probably upgrade here. \r\n\r\nlooks like the API surface has changed.", "title": null, "type": "comment" }, { "action": "created", "author": "ElanHasson", "comment_id": 660985520, "datetime": 1595246653000, "masked_author": "username_0", "text": "Is linq2db used in Ray? I didn't see that dependency.\n\nAny suggestions on how to proceed? We shouldn't be so behind on MySQL.\n\nShould we switch to a different MySQL driver?", "title": null, "type": "comment" }, { "action": "created", "author": "u-less", "comment_id": 661027062, "datetime": 1595250348000, "masked_author": "username_1", "text": "Ray does not dependency linq2db,upgrade should be able to get better performance, at present this driver is the most potential,Let's take it up.", "title": null, "type": "comment" }, { "action": "created", "author": "ElanHasson", "comment_id": 661059197, "datetime": 1595253745000, "masked_author": "username_0", "text": "@dependabot rebase", "title": null, "type": "comment" } ]
3
6
10,004
false
true
410
false
Rishit-dagli/Smart-Queuing-System-On-Edge
null
648,636,005
4
null
[ { "action": "opened", "author": "pra-dan", "comment_id": null, "datetime": 1593572957000, "masked_author": "username_0", "text": "Hey, I think you should check your code once again. I noticed some discrepencies in it. For eg, You never used `preprocess_outputs` in your code. People trusting you may waste days ... Look here: https://knowledge.udacity.com/questions/254540\r\n\r\nHe is using your code and needs help. Kindly Look into it", "title": "Broken Code", "type": "issue" }, { "action": "created", "author": "Rishit-dagli", "comment_id": 653856671, "datetime": 1593936946000, "masked_author": "username_1", "text": "This post nowhere mentions using my code. You should reconsider your claims. I am closing this issue as of now, you are welcome to add comments to this if it remains unsolved.", "title": null, "type": "comment" }, { "action": "closed", "author": "Rishit-dagli", "comment_id": null, "datetime": 1593936946000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
3
4
556
false
true
478
false
opencv/opencv
opencv
387,814,317
13,369
{ "number": 13369, "repo": "opencv", "user_login": "opencv" }
[ { "action": "opened", "author": "alalek", "comment_id": null, "datetime": 1544024259000, "masked_author": "username_0", "text": "relates #13332\r\n\r\n```\r\ndocker_image:Custom=ubuntu-openvino:16.04\r\nbuildworker:Custom=linux-2\r\ntest_opencl:Custom=OFF\r\n\r\ndocker_image:Linux AVX2=ubuntu-openvino:16.04\r\nbuildworker:Linux AVX2=linux-1\r\ntest_opencl:Linux AVX2=OFF\r\n```", "title": "dnn: fixup available backends/targets", "type": "issue" }, { "action": "created", "author": "alalek", "comment_id": 444561656, "datetime": 1544029276000, "masked_author": "username_0", "text": ":+1:", "title": null, "type": "comment" } ]
1
2
234
false
false
234
false
bit-bots/bitbots_motion
bit-bots
521,485,131
100
{ "number": 100, "repo": "bitbots_motion", "user_login": "bit-bots" }
[ { "action": "opened", "author": "SammyRamone", "comment_id": null, "datetime": 1573557112000, "masked_author": "username_0", "text": "this adds a node which computes the odometry of the walking based on the actual joint states rather than the commands send by the walking. It should therefore be more accurate\r\nshould solve https://github.com/bit-bots/bitbots_motion/issues/54\r\nCurrently not tested, therefore a draft", "title": "odometry: add node to compute walk odometry", "type": "issue" }, { "action": "created", "author": "SammyRamone", "comment_id": 553405181, "datetime": 1573651876000, "masked_author": "username_0", "text": "tested in visualization, but not on robot yet", "title": null, "type": "comment" }, { "action": "created", "author": "timonegk", "comment_id": 553458571, "datetime": 1573659583000, "masked_author": "username_1", "text": "The node would publish odometry for other motions like kick or standing up too", "title": null, "type": "comment" }, { "action": "created", "author": "NFiedler", "comment_id": 553747343, "datetime": 1573713348000, "masked_author": "username_2", "text": "@username_1 that should be tested, but listening on /cmd_vel could resolve that in case it leads to errors.", "title": null, "type": "comment" }, { "action": "created", "author": "NFiedler", "comment_id": 554399270, "datetime": 1573831112000, "masked_author": "username_2", "text": "We need to adapt the odometry fuser.", "title": null, "type": "comment" }, { "action": "created", "author": "NFiedler", "comment_id": 554441695, "datetime": 1573837094000, "masked_author": "username_2", "text": "Currently, there is an issue with short double support phases (if no 'd' message is published). @username_0 , could we solve this by reacting on changes from 'r' to 'l' (and backwards respectively?", "title": null, "type": "comment" }, { "action": "created", "author": "SammyRamone", "comment_id": 555457154, "datetime": 1574161609000, "masked_author": "username_0", "text": "I will rewrite the walk, so that it will only publish the support foot when changing it", "title": null, "type": "comment" }, { "action": "created", "author": "SammyRamone", "comment_id": 555535645, "datetime": 1574174171000, "masked_author": "username_0", "text": "integrated it with the odometry fuser and tested on my machine", "title": null, "type": "comment" }, { "action": "created", "author": "SammyRamone", "comment_id": 557613842, "datetime": 1574442454000, "masked_author": "username_0", "text": "tested on robot works, can be merged", "title": null, "type": "comment" } ]
3
9
930
false
false
930
true
ebaauw/homebridge-hue
null
496,633,739
533
null
[ { "action": "opened", "author": "netRunner0", "comment_id": null, "datetime": 1569056670000, "masked_author": "username_0", "text": "How to get battery or low charge status for Xiaomi door sensors or temperature sensors?", "title": "Deconz battery", "type": "issue" }, { "action": "created", "author": "ebaauw", "comment_id": 533786813, "datetime": 1569061703000, "masked_author": "username_1", "text": "deCONZ needs to expose `config.battery` on the sensor resource when starting homebridge. Typically it only creates this attributes when it receives the first Xioami special attribute report. This might take an hour after pairing the sensor.", "title": null, "type": "comment" }, { "action": "created", "author": "netRunner0", "comment_id": 533786936, "datetime": 1569061845000, "masked_author": "username_0", "text": "But there is no universal key for all possible devices where there is a battery?\r\nI would like to see the charge level in the HC and build on the basis of this automation", "title": null, "type": "comment" }, { "action": "created", "author": "ebaauw", "comment_id": 533798113, "datetime": 1569072524000, "masked_author": "username_1", "text": "homebridge-hue exposes the battery using the standard HomeKit _Battery_ service and characteristic. You can use these in HomeKit scenes and automations. You need to use a decent HomeKit app, though; Apple’s Home app doesn’t support this.", "title": null, "type": "comment" }, { "action": "created", "author": "netRunner0", "comment_id": 533803692, "datetime": 1569077293000, "masked_author": "username_0", "text": "Hmm, strange. Indeed, in the home program and other programs, the battery charge is displayed.\r\nHowever, when creating automation using quick commands, this parameter cannot be extracted:\r\n\r\n![IMG_0094](https://user-images.githubusercontent.com/44049295/65374859-064f7d80-dca8-11e9-8355-25a7ae573e55.png)\r\n\r\nNone of the “Own” charges exist.\r\nIs it possible to place a battery charge so that it can be removed in the menu above?", "title": null, "type": "comment" }, { "action": "created", "author": "ebaauw", "comment_id": 533815294, "datetime": 1569086556000, "masked_author": "username_1", "text": "No, you need to use another HomeKit app.", "title": null, "type": "comment" }, { "action": "closed", "author": "ebaauw", "comment_id": null, "datetime": 1569579063000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
7
1,205
false
false
1,205
false
nicolodavis/boardgame.io
null
478,774,485
435
null
[ { "action": "opened", "author": "jasonharrison", "comment_id": null, "datetime": 1565320281000, "masked_author": "username_0", "text": "It looks like some files made it into `master` that fail `npm run lint`.\r\n\r\n![image](https://user-images.githubusercontent.com/304383/62751345-5e505e80-ba31-11e9-845a-472862b4743d.png)\r\n\r\nI think we should have Semaphore CI run `npm run lint` and fail with a nonzero exit code. [It seems that this needs to be done on Semaphore CI's website by a project owner](https://semaphoreci.com/docs/customizing-build-commands.html).\r\n\r\nA PR to fix the lint errors will follow.", "title": "Semaphore CI should run npm run lint", "type": "issue" }, { "action": "closed", "author": "nicolodavis", "comment_id": null, "datetime": 1565320731000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "nicolodavis", "comment_id": 519762010, "datetime": 1565320731000, "masked_author": "username_1", "text": "Thanks for the report Jason! Yep, this is now fixed.", "title": null, "type": "comment" } ]
2
3
521
false
false
521
false
Azure/azure-cli
Azure
616,359,226
13,449
{ "number": 13449, "repo": "azure-cli", "user_login": "Azure" }
[ { "action": "opened", "author": "sambitratha", "comment_id": null, "datetime": 1589259490000, "masked_author": "username_0", "text": "**Description<!--Mandatory-->** \r\nAdded \"MAB\" BackupManagementType to item list command\r\n\r\n**Testing Guide** \r\n<!--Example commands with explanations.-->\r\n\r\n**History Notes** \r\n<!--If your PR is not customer-facing, use {Component Name} in the PR title. Otherwise, use [Component Name] to allow our pipeline to add the title as a history note. If you need multiple history notes or would like to overwrite the note from the PR title, please fill in the following templates.-->\r\n\r\n[Component Name 1] BREAKING CHANGE: az command a: Make some customer-facing breaking change. \r\n[Component Name 2] az command b: Add some customer-facing feature.\r\n\r\n---\r\n\r\nThis checklist is used to make sure that common guidelines for a pull request are followed.\r\n\r\n- [ ] The PR title and description has followed the guideline in [Submitting Pull Requests](https://github.com/Azure/azure-cli/tree/dev/doc/authoring_command_modules#submitting-pull-requests).\r\n\r\n- [ ] I adhere to the [Command Guidelines](https://github.com/Azure/azure-cli/blob/dev/doc/command_guidelines.md).", "title": "[Backup] Add \"MAB\" BackupManagementType to item list command", "type": "issue" }, { "action": "created", "author": "sambitratha", "comment_id": 627852997, "datetime": 1589360673000, "masked_author": "username_0", "text": "Hi @username_1 , tests have failed, but the PR is approved. Can you please re-run the tests if it's required. Thanks", "title": null, "type": "comment" }, { "action": "created", "author": "fengzhou-msft", "comment_id": 627887627, "datetime": 1589364662000, "masked_author": "username_1", "text": "Please merge the latest dev branch to fix the CI error.", "title": null, "type": "comment" }, { "action": "created", "author": "yonzhan", "comment_id": 627940021, "datetime": 1589371851000, "masked_author": "username_2", "text": "Backup", "title": null, "type": "comment" } ]
3
4
1,241
false
false
1,241
true
Kronos-Integration/service-health-check
Kronos-Integration
612,951,045
626
{ "number": 626, "repo": "service-health-check", "user_login": "Kronos-Integration" }
[ { "action": "opened", "author": "arlac77", "comment_id": null, "datetime": 1588720567000, "masked_author": "username_0", "text": ".travis.yml\n---\n- chore(travis): (jobs.include)\nchore(travis): add 14.2.0 remove 14.1.0 (jobs.include.node_js)", "title": "merge from arlac77/template-github,arlac77/template-kronos-module", "type": "issue" } ]
2
2
512
false
true
110
false
Arquisoft/dechat_es1b
Arquisoft
418,965,561
58
{ "number": 58, "repo": "dechat_es1b", "user_login": "Arquisoft" }
[ { "action": "opened", "author": "JavierUrones", "comment_id": null, "datetime": 1552080762000, "masked_author": "username_0", "text": "Notifications has been implemented in user interface. Now when someone sends you a message you recieve an alert on the top of the pane.", "title": "Features/ui notifications", "type": "issue" }, { "action": "created", "author": "LuisBoto", "comment_id": 471086593, "datetime": 1552081500000, "masked_author": "username_1", "text": "For some reason when i receive the notification, it is my own name that appears in \"XX sent you a message\". Shouldn't it be the contact's name?", "title": null, "type": "comment" }, { "action": "created", "author": "JavierUrones", "comment_id": 471088295, "datetime": 1552081892000, "masked_author": "username_0", "text": "It's a bug with class chat.js, for some reason that i don't know when i am testing it, if i use user name instead partner name to show the it on notifications, the names were changed. I'll try to fix it..", "title": null, "type": "comment" } ]
2
3
482
false
false
482
false
ember-codemods/ember-angle-brackets-codemod
ember-codemods
502,345,031
154
{ "number": 154, "repo": "ember-angle-brackets-codemod", "user_login": "ember-codemods" }
[ { "action": "opened", "author": "tylerturdenpants", "comment_id": null, "datetime": 1570144742000, "masked_author": "username_0", "text": "", "title": "Get telemetry data", "type": "issue" }, { "action": "created", "author": "tylerturdenpants", "comment_id": 546633670, "datetime": 1572119069000, "masked_author": "username_0", "text": "@username_1 this is blocked on a 1.0.1 release of `ember-codemods-telemetry-helpers` Thanks!", "title": null, "type": "comment" }, { "action": "created", "author": "rwjblue", "comment_id": 546972199, "datetime": 1572272977000, "masked_author": "username_1", "text": "Should be ready to rebase and bump to the more recent telemetry helpers", "title": null, "type": "comment" }, { "action": "created", "author": "tylerturdenpants", "comment_id": 546980873, "datetime": 1572274066000, "masked_author": "username_0", "text": "Before we release this, I need to update the readme", "title": null, "type": "comment" }, { "action": "created", "author": "tylerturdenpants", "comment_id": 547200046, "datetime": 1572307900000, "masked_author": "username_0", "text": "I think I want to add some test coverage to all of this. @username_1 It’s up to you if you want to merge.", "title": null, "type": "comment" }, { "action": "created", "author": "tylerturdenpants", "comment_id": 554438638, "datetime": 1573836598000, "masked_author": "username_0", "text": "I’ll resolve the conflicts. I’m almost certain once the conflicts are resolved, the coverage should go back up. The reason is the branching in deciding how to handle the component/helper data. The branch lets the telemetry-less tests pass. However, since I unified the tests to always work with either mock or real telemetry in all cases, the branching will not be needed.", "title": null, "type": "comment" }, { "action": "created", "author": "tylerturdenpants", "comment_id": 554466960, "datetime": 1573841155000, "masked_author": "username_0", "text": "I'm going to address some of the coverage issues. I need to cover the rare cases for some of the branching that trying to avoid blowing up if certain data doesn't exist. But you think it looks good otherwise?", "title": null, "type": "comment" }, { "action": "created", "author": "rwjblue", "comment_id": 554497316, "datetime": 1573846337000, "masked_author": "username_1", "text": "Yep! I'm also fine landing and working on code coverage separately.", "title": null, "type": "comment" }, { "action": "created", "author": "tylerturdenpants", "comment_id": 554509759, "datetime": 1573848553000, "masked_author": "username_0", "text": "Ok. there is also some components that need to be identified by path alone when there is no backing js file", "title": null, "type": "comment" }, { "action": "created", "author": "tylerturdenpants", "comment_id": 555595073, "datetime": 1574181572000, "masked_author": "username_0", "text": "@username_1 I have fixed the test coverage. The only thing blocking is this [PR](https://github.com/ember-codemods/ember-codemods-telemetry-helpers/pull/25). let me know what you think", "title": null, "type": "comment" } ]
2
10
1,253
false
false
1,253
true
pyannote/pyannote-database
pyannote
506,616,956
26
{ "number": 26, "repo": "pyannote-database", "user_login": "pyannote" }
[ { "action": "opened", "author": "PaulLerner", "comment_id": null, "datetime": 1571055484000, "masked_author": "username_0", "text": "added \":\"\r\nRemark: it's unclear what should be in path/to/list_of_uris/train/file.lst\r\nFrom what I understood one shouldn't provide annotation and uris at the same time", "title": "typo in ~/.pyannote/database.yml", "type": "issue" }, { "action": "created", "author": "hbredin", "comment_id": 541680463, "datetime": 1571060008000, "masked_author": "username_1", "text": "One can provide both `uris` and `annotations` at the same time.\r\n`uris` will be used to filter out `annotations`.", "title": null, "type": "comment" } ]
2
2
281
false
false
281
false
pgsql-jp/jpug-doc
pgsql-jp
477,198,022
1,528
null
[ { "action": "opened", "author": "noborus", "comment_id": null, "datetime": 1565073720000, "masked_author": "username_0", "text": "## 重要度: (低)\r\n\r\n元々は本家のCSSに寄せて色等を決めていたが、本家のサイトがリニューアルによりカラーテーマが変更されたので、それに合わせて更新するかを検討したい。\r\n\r\n以下検討事項\r\n\r\n色関連\r\n\r\n* h1〜h5がオレンジ系だったのを青系に変更するか\r\n* その際リンクが青系だと判別しにくくなるので赤系に変更するか\r\n* リンクの下線を非表示にするか\r\n* 注記(Note)やヒント等の背景色を変えて表示\r\n\r\n文字強調関連\r\n\r\n* 本文の文字色を黒から少し薄める (#0D0A0B;)\r\n* 文法部分の強調表示 例: https://www.postgresql.org/docs/11/sql-select.html 現:https://www.postgresql.jp/docs/11/sql-select.html 案: https://username_0.github.io/css/html/sql-select.html\r\n* 本文のインラインコードに背景色(グレー)の追加\r\n\r\n一応変更案を作成してみたので、見比べてみてください。\r\n\r\n### 参考\r\n\r\n* 本家\r\nhttps://www.postgresql.org/docs/11/intro-whatis.html\r\n* 現在の日本語サイト\r\nhttps://www.postgresql.jp/docs/11/intro-whatis.html\r\n* 更新案\r\nhttps://username_0.github.io/css/html/intro-whatis.html", "title": "日本語マニュアルサイトCSS更新", "type": "issue" }, { "action": "created", "author": "KenichiroTanaka", "comment_id": 520179353, "datetime": 1565470878000, "masked_author": "username_1", "text": "斉藤さんありがとうございます。\r\n\r\n・その際リンクが青系だと判別しにくくなるので赤系に変更するか\r\n\r\n一度参照したリンクの色と似ているため赤系だと分かりにくいように思いました。\r\nリンクには下線もあるので、青のままではどうでしょうか。\r\n\r\n他はいただいた更新案が良いように思います。", "title": null, "type": "comment" } ]
2
2
828
false
false
828
true
mapbox/mapbox-gl-native-android
mapbox
577,187,754
257
null
[ { "action": "opened", "author": "LukasPaczos", "comment_id": null, "datetime": 1583530487000, "masked_author": "username_0", "text": "During the migration of the then `LocationLayerPlugin` back into the Maps SDK, the majority of the instrumentation tests have been migrated as well. Now, since we have access to the underlying map components, we should refactor those tests into instrumented unit tests. Refs https://github.com/mapbox/mapbox-gl-native/pull/13576.", "title": "Refactor LocationComponent's tests into instrumented unit tests", "type": "issue" } ]
2
3
475
false
true
329
false
Azure/azure-sdk-for-c
Azure
713,985,478
1,406
null
[ { "action": "opened", "author": "antkmsft", "comment_id": null, "datetime": 1601691834000, "masked_author": "username_0", "text": "See comments for https://github.com/Azure/azure-sdk-for-c/pull/1405.\r\n\r\nJava/.NET/Go all have slightly different codes to retry on.\r\nJava has `>= HTTP_INTERNAL_ERROR`, .NET and Go do not.\r\n\r\n.NET, for example would not throw if the response is a retriable code, but all the attempts are exhausted. We behave the same - return AZ_OK. Should we return error? If we don't, then all the clients may want to parse the response to wrap an error.\r\n\r\nIn .NET, credentials retry on 404.\r\nWe don't have a credential now, but should we re-add it again - we would need to add `struct { _az_should_retry_fn } _internal` to the `az_retry_options`; or the auth policy will need to have its own retry policy, which preferably reuses the existing one in some effective manner.", "title": "Review retry codes", "type": "issue" } ]
1
1
760
false
false
760
false
bestwu/docker-qq
null
615,208,836
30
null
[ { "action": "opened", "author": "jiangslee", "comment_id": null, "datetime": 1589040796000, "masked_author": "username_0", "text": "屏幕分辨率太高了,怎么调整tim的dpi?", "title": "Ubuntu 18.04 高分屏如何调整分辨率?", "type": "issue" }, { "action": "created", "author": "Hoking007", "comment_id": 626256478, "datetime": 1589072512000, "masked_author": "username_1", "text": "我fork并做了DPI优化:\r\nhttps://github.com/username_1/docker-deepin-tim\r\n感谢username_2", "title": null, "type": "comment" }, { "action": "closed", "author": "bestwu", "comment_id": null, "datetime": 1614083398000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
3
3
93
false
false
93
true
redhat-openstack/infrared
redhat-openstack
318,388,398
325
null
[ { "action": "opened", "author": "FedericoRessi", "comment_id": null, "datetime": 1524831523000, "masked_author": "username_0", "text": "When executing:\r\n```bash\r\ninfrared virsh --host-address puma15 --host-key .ssh_key --topology-nodes undercloud:1,controller:1,compute:1\r\n```\r\n\r\nI got this below error:\r\n```\r\nTASK [download base image for node] *************************************************************************************************************************\r\nFAILED - RETRYING: download base image for node (5 retries left).\r\nFAILED - RETRYING: download base image for node (4 retries left).\r\nFAILED - RETRYING: download base image for node (3 retries left).\r\nFAILED - RETRYING: download base image for node (2 retries left).\r\nFAILED - RETRYING: download base image for node (1 retries left).\r\nfailed: [hypervisor] (item={'value': {u'import_url': None, u'cache': u'unsafe', u'dev': u'/dev/vda', u'preallocation': u'metadata', u'path': None, u'size': u'55G'}, 'key': u'disk1'}) => {\"attempts\": 5, \"changed\": false, \"dest\": \"/var/lib/libvirt/images/rhel-guest-image-7-5-146-x86-64-qcow2\", \"item\": {\"key\": \"disk1\", \"value\": {\"cache\": \"unsafe\", \"dev\": \"/dev/vda\", \"import_url\": null, \"path\": null, \"preallocation\": \"metadata\", \"size\": \"55G\"}}, \"msg\": \"Request failed\", \"response\": \"HTTP Error 404: Not Found\", \"state\": \"absent\", \"status_code\": 404, \"url\": \"https://url.corp.redhat.com/rhel-guest-image-7-5-146-x86-64-qcow2\"}\r\n```", "title": "HTTP Error 404: Not Found when downloading rhel-guest-image-7-5 file.", "type": "issue" }, { "action": "created", "author": "FedericoRessi", "comment_id": 384956678, "datetime": 1524832434000, "masked_author": "username_0", "text": "This change introduced the problem. Please revert or fix it:\r\nhttps://github.com/redhat-openstack/infrared/commit/11b691698d4142ab2e8d437c12339d181586b23e", "title": null, "type": "comment" }, { "action": "created", "author": "obaranov", "comment_id": 384995772, "datetime": 1524841030000, "masked_author": "username_1", "text": "@username_0, probably shorten url has been expired. I re-enabled it. Can you try now?", "title": null, "type": "comment" }, { "action": "closed", "author": "obaranov", "comment_id": null, "datetime": 1527003716000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
4
1,541
false
false
1,541
true
spring-cloud/spring-cloud-dataflow-ui
spring-cloud
325,466,164
787
{ "number": 787, "repo": "spring-cloud-dataflow-ui", "user_login": "spring-cloud" }
[ { "action": "opened", "author": "oodamien", "comment_id": null, "datetime": 1527023751000, "masked_author": "username_0", "text": "Resolves #786", "title": "Stream Deploy: avoid resubmitting apps form values", "type": "issue" }, { "action": "created", "author": "ghillert", "comment_id": 391187073, "datetime": 1527037126000, "masked_author": "username_1", "text": "Looks like this is not working, yet. I created the following stream `t3`:\r\n\r\n`http --server.port=9900 | splitter --expression=payload.split(' ') | log`\r\n\r\nWent to the deployment page `http://localhost:4200/#/streams/definitions/t3/deploy`\r\n\r\n![image](https://user-images.githubusercontent.com/685363/40397714-d8238bc0-5dcf-11e8-9c11-9bcd1356b6be.png)\r\n\r\nMade no changes. Only pressed `Deploy the Stream`. Does not work for freetext option either.\r\n\r\nLooks like we create this strange property `app.splitter.splitter.expression` (see duplication of `splitter`)", "title": null, "type": "comment" }, { "action": "created", "author": "ghillert", "comment_id": 391507277, "datetime": 1527112049000, "masked_author": "username_1", "text": "@username_0 Something is strange. I created a stream:\r\n\r\n![image](https://user-images.githubusercontent.com/685363/40452677-5f6bfbfe-5e7e-11e8-803e-121deca5fa2c.png)\r\n\r\nWe don't handle the use-case where no value changed. In that case the `update` REST endpoint will send back an error: `Package to upgrade has no difference than existing deployed/deleted package. Not upgrading`. Therefore, we should only activate the `Deploy the Stream` button\r\n\r\n![image](https://user-images.githubusercontent.com/685363/40452846-f75dc62c-5e7e-11e8-9322-987f880c7e48.png)\r\n\r\nonly, if anything has changed.", "title": null, "type": "comment" }, { "action": "created", "author": "ghillert", "comment_id": 391512336, "datetime": 1527113326000, "masked_author": "username_1", "text": "The shell does not resend the following properties:\r\n\r\n* deployer.log.count=1\r\n* version.http=1.3.1.RELEASE\r\n* version.log=1.3.1.RELEASE\r\n\r\nunless you specify them.", "title": null, "type": "comment" }, { "action": "created", "author": "ghillert", "comment_id": 391545474, "datetime": 1527121577000, "masked_author": "username_1", "text": "It looks like for the time being, we will always submit the properties in Skipper mode. For following stream updates we would always need to submit the properties because we would not know, if the value shown was the initial value (version `1`) or not. We would need to compare the stream to the initial version of the Stream in order to determine whether a property had changed or not.\r\n\r\nWith that the PR looks good for the changes it does add (using the Stream update REST endpoint).", "title": null, "type": "comment" }, { "action": "created", "author": "ghillert", "comment_id": 391547271, "datetime": 1527122321000, "masked_author": "username_1", "text": "Created https://github.com/spring-cloud/spring-cloud-dataflow-ui/issues/789 as a follow up.", "title": null, "type": "comment" }, { "action": "created", "author": "ghillert", "comment_id": 391547416, "datetime": 1527122378000, "masked_author": "username_1", "text": "Merged with commit 161c4e5151a36be687e1602f898a93887b2ca81f", "title": null, "type": "comment" }, { "action": "created", "author": "ilayaperumalg", "comment_id": 391956686, "datetime": 1527230276000, "masked_author": "username_2", "text": "This needs to be back ported to 1.5.x branch.", "title": null, "type": "comment" }, { "action": "created", "author": "ilayaperumalg", "comment_id": 391958451, "datetime": 1527230850000, "masked_author": "username_2", "text": "Back ported the changes 2ea34a6efa4c8a60b62118a44ef021286dc68500", "title": null, "type": "comment" } ]
4
10
2,072
false
true
2,072
true
oci-labs/check-ins
oci-labs
657,707,199
105
null
[ { "action": "opened", "author": "mkimberlin", "comment_id": null, "datetime": 1594853081000, "masked_author": "username_0", "text": "We need to pull out the retrieval of a skill by ID from the search service (the one with query params).\r\n\r\nThe retrieve by id should take the ID as a path parameter, so that the URL is: `/skill/7287716e-3e9b-47af-a172-701f9fb5936a` for a skill with ID of \"7287716e-3e9b-47af-a172-701f9fb5936a\"\r\n\r\nThe GET for `/skill` should have skillId removed as a query parameter as well.", "title": "BE > Break out the skills \"get by id\" from the search service", "type": "issue" }, { "action": "closed", "author": "hwilliams314", "comment_id": null, "datetime": 1595956079000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
2
375
false
false
375
false
iphone5solo/PYSearch
null
210,969,760
58
{ "number": 58, "repo": "PYSearch", "user_login": "iphone5solo" }
[ { "action": "opened", "author": "lzzhoujielun", "comment_id": null, "datetime": 1488338937000, "masked_author": "username_0", "text": "修改在其他热门搜索标签(PYHotSearchStyleRankTag PYHotSearchStyleRectangleTag)模式下,点击清除按钮没有刷新UI\r\n\r\n备注:把根据swapHotSeachWithSearchHistory判断历史搜索和热门搜索位置的计算提在layoutForDemand公共方法里", "title": "Changes in other popular search label (PYHotSearchStyleRankTag, PYHot SearchStyleRectangleTag) mode, click the clear button didn't refresh the UI", "type": "issue" }, { "action": "created", "author": "iphone5solo", "comment_id": 283235778, "datetime": 1488339455000, "masked_author": "username_1", "text": "@username_0 谢谢您的PR,该BUG已修复 详情见:https://github.com/username_1/PYSearch/commit/d568090be8dc7004ca938c98fe839b0fb191182a", "title": null, "type": "comment" }, { "action": "created", "author": "lzzhoujielun", "comment_id": 283238128, "datetime": 1488340622000, "masked_author": "username_0", "text": "@username_1 您好,该BUG修复的是图上面第一种情况 后面两种还是存在这个问题\r\n![9fe2cfb1-5fab-4b97-a8dc-231168126769](https://cloud.githubusercontent.com/assets/7963251/23445409/16ca8884-fe76-11e6-8f99-76a8efb91224.png)", "title": null, "type": "comment" }, { "action": "created", "author": "iphone5solo", "comment_id": 283242077, "datetime": 1488342664000, "masked_author": "username_1", "text": "@username_0 麻烦你重新发一个PR 我这边编译没通过 \r\n![image](https://cloud.githubusercontent.com/assets/13819507/23446028/d6c01d80-fe7a-11e6-8462-5e5b0124a62f.png)", "title": null, "type": "comment" } ]
2
4
614
false
false
614
true
lobaro/restic-backup-docker
lobaro
463,734,134
27
null
[ { "action": "opened", "author": "mrclschstr", "comment_id": null, "datetime": 1562158172000, "masked_author": "username_0", "text": "The images `v1.0` and `v1.1` are working fine. Am I doing something wrong?", "title": "\"ssh\": executable file not found in $PATH", "type": "issue" }, { "action": "created", "author": "Niondir", "comment_id": 512993373, "datetime": 1563485046000, "masked_author": "username_1", "text": "Thanks for reporting.\r\nLooks like ssh got lost. Maybe some change in the busybox base image? I would need to take a deeper look into this. \r\n\r\nPR are welcome.", "title": null, "type": "comment" }, { "action": "created", "author": "Niondir", "comment_id": 512993531, "datetime": 1563485077000, "masked_author": "username_1", "text": "We could at least pin the version of the base image to avoid such issued in future.", "title": null, "type": "comment" }, { "action": "created", "author": "Niondir", "comment_id": 513005750, "datetime": 1563487326000, "masked_author": "username_1", "text": "The official image is adding ssh-client to the alpine image:\r\n`RUN apk add --update --no-cache ca-certificates fuse openssh-client`\r\n\r\nSee also: #23\r\n\r\nI guess we should kick out busybox and rely on alpine", "title": null, "type": "comment" }, { "action": "created", "author": "wuast94", "comment_id": 567136102, "datetime": 1576690787000, "masked_author": "username_2", "text": "i got down to version 1.1 now to get ssh backups running. would be nice to see this fixed in next release :)", "title": null, "type": "comment" }, { "action": "closed", "author": "Niondir", "comment_id": null, "datetime": 1589815823000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "Niondir", "comment_id": 630260142, "datetime": 1589815823000, "masked_author": "username_1", "text": "With the \"latest\" release I can go into my container and execute \"ssh\" without issues. I assume it's fixed.", "title": null, "type": "comment" } ]
3
7
735
false
false
735
false
kubernetes/kubernetes
kubernetes
455,052,199
78,929
{ "number": 78929, "repo": "kubernetes", "user_login": "kubernetes" }
[ { "action": "opened", "author": "SataQiu", "comment_id": null, "datetime": 1560324291000, "masked_author": "username_0", "text": "<!-- Thanks for sending a pull request! Here are some tips for you:\r\n\r\n1. If this is your first time, please read our contributor guidelines: https://git.k8s.io/community/contributors/guide#your-first-contribution and developer guide https://git.k8s.io/community/contributors/devel/development.md#development-guide\r\n2. Please label this pull request according to what type of issue you are addressing, especially if this is a release targeted pull request. For reference on required PR/issue labels, read here:\r\nhttps://git.k8s.io/community/contributors/devel/sig-release/release.md#issuepr-kind-label\r\n3. Ensure you have added or ran the appropriate tests for your PR: https://git.k8s.io/community/contributors/devel/testing.md\r\n4. If you want *faster* PR reviews, read how: https://git.k8s.io/community/contributors/guide/pull-requests.md#best-practices-for-faster-reviews\r\n5. Follow the instructions for writing a release note: https://git.k8s.io/community/contributors/guide/release-notes.md\r\n6. If the PR is unfinished, see how to mark it: https://git.k8s.io/community/contributors/guide/pull-requests.md#marking-unfinished-pull-requests\r\n-->\r\n\r\n**What type of PR is this?**\r\n\r\n/kind cleanup\r\n\r\n**What this PR does / why we need it**:\r\nRefactor k8s.io/kubernetes/pkg/version -> k8s.io/client-go/pkg/version\r\n\r\n**Which issue(s) this PR fixes**:\r\n<!--\r\n*Automatically closes linked issue when PR is merged.\r\nUsage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`.\r\n_If PR is about `failing-tests or flakes`, please post the related issues/tests in a comment and do not use `Fixes`_*\r\n-->\r\nRef kubernetes/kubeadm#1600\r\n\r\n**Special notes for your reviewer**:\r\n\r\n**Does this PR introduce a user-facing change?**:\r\n<!--\r\nIf no, just write \"NONE\" in the release-note block below.\r\nIf yes, a release note is required:\r\nEnter your extended release note in the block below. If the PR requires additional action from users switching to the new release, include the string \"action required\".\r\n-->\r\n```release-note\r\nNONE\r\n```", "title": "[kubeadm] refactor k8s.io/kubernetes/pkg/version -> k8s.io/client-go/pkg/version", "type": "issue" }, { "action": "created", "author": "SataQiu", "comment_id": 501952958, "datetime": 1560482339000, "masked_author": "username_0", "text": "/hold\r\n@yagonobre \r\nThanks! I will try to add more changes.", "title": null, "type": "comment" }, { "action": "created", "author": "neolit123", "comment_id": 502107966, "datetime": 1560518673000, "masked_author": "username_1", "text": "/priority backlog\r\n/approve", "title": null, "type": "comment" }, { "action": "created", "author": "SataQiu", "comment_id": 502376072, "datetime": 1560612704000, "masked_author": "username_0", "text": "/test pull-kubernetes-bazel-test", "title": null, "type": "comment" }, { "action": "created", "author": "SataQiu", "comment_id": 502433296, "datetime": 1560674932000, "masked_author": "username_0", "text": "/test pull-kubernetes-bazel-build", "title": null, "type": "comment" }, { "action": "created", "author": "SataQiu", "comment_id": 502433410, "datetime": 1560675059000, "masked_author": "username_0", "text": "/test pull-kubernetes-e2e-gce-device-plugin-gpu\r\n/test pull-kubernetes-integration\r\n/test pull-kubernetes-kubemark-e2e-gce-big", "title": null, "type": "comment" }, { "action": "created", "author": "SataQiu", "comment_id": 502523732, "datetime": 1560742810000, "masked_author": "username_0", "text": "/test pull-kubernetes-bazel-build", "title": null, "type": "comment" }, { "action": "created", "author": "SataQiu", "comment_id": 502524044, "datetime": 1560742937000, "masked_author": "username_0", "text": "/hold cancel", "title": null, "type": "comment" }, { "action": "created", "author": "SataQiu", "comment_id": 502525886, "datetime": 1560743741000, "masked_author": "username_0", "text": "/test pull-kubernetes-e2e-gce-device-plugin-gpu", "title": null, "type": "comment" }, { "action": "created", "author": "SataQiu", "comment_id": 502525994, "datetime": 1560743789000, "masked_author": "username_0", "text": "/assign @fejta", "title": null, "type": "comment" }, { "action": "created", "author": "SataQiu", "comment_id": 502637640, "datetime": 1560769508000, "masked_author": "username_0", "text": "@username_1 What puzzles me is how do we resolve the dependency on pkg/version for cmd/kubeadm/BUILD", "title": null, "type": "comment" }, { "action": "created", "author": "SataQiu", "comment_id": 502929486, "datetime": 1560827897000, "masked_author": "username_0", "text": "/unassign @fejta", "title": null, "type": "comment" }, { "action": "created", "author": "SataQiu", "comment_id": 502946866, "datetime": 1560833825000, "masked_author": "username_0", "text": "@username_1 Updated!", "title": null, "type": "comment" }, { "action": "created", "author": "SataQiu", "comment_id": 503813184, "datetime": 1560996874000, "masked_author": "username_0", "text": "@rosti Could you please look at it again?", "title": null, "type": "comment" }, { "action": "created", "author": "neolit123", "comment_id": 505011403, "datetime": 1561383160000, "masked_author": "username_1", "text": "/retest", "title": null, "type": "comment" }, { "action": "created", "author": "neolit123", "comment_id": 505144531, "datetime": 1561404070000, "masked_author": "username_1", "text": "/retest", "title": null, "type": "comment" } ]
4
33
22,005
false
true
2,602
true
tarek360/RichPath
null
655,504,911
67
null
[ { "action": "opened", "author": "weera-tech", "comment_id": null, "datetime": 1594599260000, "masked_author": "username_0", "text": "Hello, I have a very simple and crucial problem with the package in kotlin:\r\n\r\nIn the line below:\r\nval richPath: RichPath = richPathView.findRichPathByName(\"name\")\r\n\r\nI get this error:\r\nUnresolved reference: richPathView\r\n\r\nIs there any solution please?", "title": "Unresolved reference: richPathView Kotlin", "type": "issue" }, { "action": "created", "author": "tarek360", "comment_id": 661958091, "datetime": 1595348201000, "masked_author": "username_1", "text": "You can find a [similar line of code](https://github.com/username_1/RichPath/blob/develop/app/src/main/java/com/richpathanimator/sample/AnimationSamplesActivity.java#L41) in the sample and everything work fine, so please provide more details about your issue.", "title": null, "type": "comment" } ]
2
2
510
false
false
510
true
silverstripe/silverstripe-ckan-registry
silverstripe
396,336,103
70
null
[ { "action": "opened", "author": "NightJar", "comment_id": null, "datetime": 1546832059000, "masked_author": "username_0", "text": "As part of the work in #69 @ScopeyNZ has introduced a simple \"vanilla\" JS (read: framework agnostic) wrapper for requesting data from a CKAN API given a few configuration options.\r\n\r\nAt current it appears to not support the addition of multiple filters before launching the request - which is a problem in the front-end for an end-user wishing to add multiple filters for a resource they're attempting to inspect.\r\n\r\nIn order to supply the ability for an end-user to search/filter and fulfill requisites for #4, #5, & #8 this will need to be expanded to allow for multiple filters. It will also in part tidy off #1 by providing front end authors a more complete API to build their own interfaces with (in a customisation case).\r\n\r\nThe resulting JS API should be easy to consume, and also support searching all fields with a single value (or a single value for multiple fields).", "title": "Expand JS API CKAN data loader to accept multiple filters before requesting", "type": "issue" } ]
1
1
877
false
false
877
false
Gjoll/BreastRadiologyProfilesV3
null
686,373,083
40
null
[ { "action": "opened", "author": "Gjoll", "comment_id": null, "datetime": 1598452517000, "masked_author": "username_0", "text": "Calcification Type is more commonly referred to as Calcification Morphology - to describe the attribute of the observed calcifications. Suggest renaming \"Calficication Type\" to \"Calcification Morphology\"", "title": "Comment #27: http://hl7.org/fhir/us/breast-radiology/2020MAY/ValueSet-MammoCalcificationTypeVS.html", "type": "issue" }, { "action": "created", "author": "Gjoll", "comment_id": 712243608, "datetime": 1603121126000, "masked_author": "username_0", "text": "Should we change this?", "title": null, "type": "comment" }, { "action": "created", "author": "Gjoll", "comment_id": 737316746, "datetime": 1606924159000, "masked_author": "username_0", "text": "a) Change name? Need more info from Radiologists.\r\nb) Should we split this into two items.\r\n i. Grouped into Benign and Suspicious.\r\n ii. Suspicious only has card of 1, benign has 1..*", "title": null, "type": "comment" } ]
1
3
411
false
false
411
false
ckeditor/ckeditor5
ckeditor
434,174,789
1,710
null
[ { "action": "opened", "author": "lujiapengshocksoft", "comment_id": null, "datetime": 1555492349000, "masked_author": "username_0", "text": "When I was using CkEditor, I found some problems when pasting documents in word format.I hope you can deal with it. Thank you.\r\nFor example Word : \r\n![image](https://user-images.githubusercontent.com/49714104/56275590-94409e80-6133-11e9-83c4-ea8628a760ab.png)\r\nIn FireFox :\r\n![image](https://user-images.githubusercontent.com/49714104/56275716-cfdb6880-6133-11e9-9fa5-3bbf58cd4abb.png)\r\nIn Chorme : \r\n![image](https://user-images.githubusercontent.com/49714104/56275766-e84b8300-6133-11e9-90de-f30024c68c2e.png)\r\n\r\nThen, What should I do ?", "title": "I have a question for word", "type": "issue" }, { "action": "created", "author": "Hubmayun123", "comment_id": 484401692, "datetime": 1555575332000, "masked_author": "username_1", "text": "这好像是个兼容的问题,我也遇到了,在谷歌只要文档中有带有word标题格式的文字,图片就不能正常的显示", "title": null, "type": "comment" }, { "action": "created", "author": "Mgsy", "comment_id": 484405147, "datetime": 1555575996000, "masked_author": "username_2", "text": "Hello, CKEditor 5 paste from office plugin is still under development and some types of content might be pasted not as expected. Could you provide a sample .*doc file so we could check the problem?", "title": null, "type": "comment" }, { "action": "created", "author": "lujiapengshocksoft", "comment_id": 484406744, "datetime": 1555576281000, "masked_author": "username_0", "text": "of course , see accessory\r\n\r\n\r\n\r\nlujiapeng@aliyun.com", "title": null, "type": "comment" }, { "action": "created", "author": "Mgsy", "comment_id": 484507906, "datetime": 1555594023000, "masked_author": "username_2", "text": "@username_0, you haven't included any file in your message. Could you try again?", "title": null, "type": "comment" }, { "action": "created", "author": "lujiapengshocksoft", "comment_id": 484515138, "datetime": 1555595055000, "masked_author": "username_0", "text": "see again , thanks . if the doc is not exits , please email me . thanks .\n\n\n------------------------------------------------------------------", "title": null, "type": "comment" }, { "action": "created", "author": "mlewand", "comment_id": 484544685, "datetime": 1555599394000, "masked_author": "username_3", "text": "@username_0 there's still no docx attached. Please log to github and upload it using GitHub website.", "title": null, "type": "comment" }, { "action": "created", "author": "lujiapengshocksoft", "comment_id": 484564176, "datetime": 1555601722000, "masked_author": "username_0", "text": "I have uploaded the word document to github, you can check it out https://github.com/username_0/word.git 。 thanks .\r\n\r\nTime is too late, I have to rest (because I am Chinese), thank you.\r\n\r\n\r\n\r\nlujiapeng@aliyun.com", "title": null, "type": "comment" }, { "action": "created", "author": "Mgsy", "comment_id": 486588990, "datetime": 1556184040000, "masked_author": "username_2", "text": "Thanks for a file. I've checked what happens after pasting the content from the document to the editor and images don't paste at all in Chrome. \r\n\r\nIt looks like this is the same issue as one described in https://github.com/ckeditor/ckeditor5-paste-from-office/issues/51, so I'll close this one as a duplicate and move the discussion to this ticket.", "title": null, "type": "comment" }, { "action": "closed", "author": "Mgsy", "comment_id": null, "datetime": 1556184041000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "Mgsy", "comment_id": 486602132, "datetime": 1556185239000, "masked_author": "username_2", "text": "Actually, I've dug a little more into this issue and it seems to be unrelated to ckeditor/ckeditor5-paste-from-office#51. \r\n\r\nAfter pasting the content to the editor running on localhost, it throws errors related to CSP:\r\n```\r\nutils.js:36 Refused to connect to 'data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBxMTEhUQEBIVFhUVFxcXGBUYFhUYGhoaFhcYGh4XGBoaHyggGB8lGxcVITEiJSkrLi4uGB8zODMtNygtLisBCgoKDg0OFRAQFysdHR8rLS0tLS0rLSsrKystLS0rKy0rLSsrKy03LSsrLS03Ky0tLSstKy03KysrLSsrKy0rK//AABEIAMwAzAMBIgACEQEDEQH/xAAcAAABBQEBAQAAAAAAAAAAAAABAAIDBAUGBwj/xAA+EAABAwIEAggDBgUDBQEAAAABAAIRAyEEEjFBBVEGEyJhcYGRoTKx0QcUI0LB8DNSYuHxcrLSU3OSk+IV/8QAGAEBAQEBAQAAAAAAAAAAAAAAAAECAwT/xAAfEQEBAQADAAIDAQAAAAAAAAAAARECEiEDMRNBUWH/2gAMAwEAAhEDEQA/APTkgkivS44CKSMIYCQRRAQwEUYRhQNRhOhK...wqfSPhjcMJogv7VTMCDnOU5eyW6T4KmyhIMuedPzO8f0SpMLbhzwRp2ja4NlncurczFIUS9ji6nUY0GDmOZsnYZ9dDeExnA3MdmGcM7jla4wdoj2WvUwzXDtCZdmMkntR8Xj395Uowo5u/8jsP7K/mSfFrP4dhXtqx93qtaaZeatyBDmjq5ygQQZmfy+latiKb64wrn1c06xSDTHa8eW2y2sQXFgYXvLRo0ucQIIAgE2VrF8GotDaobLz+YxOmxiVj8krf47Is4XgtAUG1673VMpygHWCdssSN1zPFKbGublpOIdUay2c5Q6TmMHQLYyC6idTHLXVJyTK5jDYWjiQSKAcWZ5gvLpDi0Ns6TJHuuv6K9CsI6kyu+i5jjJyuNQQOUFdxwsfg0f8Ats/2D6qcXh26zee/S9c+3kXGek/UV6tE4ep2HuaLxIBMEW0LY9VA3pYSJFA+br/7Vv8ASHhNM4qrWJdmzTGbs/CLRy+ix3MAtlHovTw9cuXj/9k=' because it violates the following Content Security Policy directive: \"connect-src 'self' https://cksource.com http://*.cke-cs.com\".\r\n\r\nUncaught (in promise) TypeError: Failed to fetch\r\n at utils.js:36\r\n at new Promise (<anonymous>)\r\n at fetchLocalImage (utils.js:32)\r\n at imageuploadediting.js:104\r\n at Array.map (<anonymous>)\r\n at Clipboard.<anonymous> (imageuploadediting.js:104)\r\n at Clipboard.fire (emittermixin.js:207)\r\n at Document.listenTo.priority (clipboard.js:78)\r\n at Document.fire (emittermixin.js:207)\r\n at Document.handleInput (clipboardobserver.js:51)\r\n```\r\n\r\nIt works fine on our [documentation sample](https://ckeditor.com/docs/ckeditor5/latest/features/paste-from-word.html).\r\n\r\n@username_0, could you please check whether your console throws some errors and if so, paste them here?", "title": null, "type": "comment" }, { "action": "reopened", "author": "Mgsy", "comment_id": null, "datetime": 1556185240000, "masked_author": "username_2", "text": "When I was using CkEditor, I found some problems when pasting documents in word format.I hope you can deal with it. Thank you.\r\nFor example Word : \r\n![image](https://user-images.githubusercontent.com/49714104/56275590-94409e80-6133-11e9-83c4-ea8628a760ab.png)\r\nIn FireFox :\r\n![image](https://user-images.githubusercontent.com/49714104/56275716-cfdb6880-6133-11e9-9fa5-3bbf58cd4abb.png)\r\nIn Chorme : \r\n![image](https://user-images.githubusercontent.com/49714104/56275766-e84b8300-6133-11e9-90de-f30024c68c2e.png)\r\n\r\nThen, What should I do ?", "title": "I have a question for word", "type": "issue" }, { "action": "created", "author": "lujiapengshocksoft", "comment_id": 486608708, "datetime": 1556186397000, "masked_author": "username_0", "text": "Error is as follows :\r\n\r\nNot allowed to load local resource: file:///C:/Users/ADMINI~1/AppData/Local/Temp/msohtmlclip1/01/clip_image001.jpg\r\nindex.html:1 Not allowed to load local resource: file:///C:/Users/ADMINI~1/AppData/Local/Temp/msohtmlclip1/01/clip_image002.jpg\r\nindex.html:1 Not allowed to load local resource: file:///C:/Users/ADMINI~1/AppData/Local/Temp/msohtmlclip1/01/clip_image004.jpg\r\nindex.html:1 Not allowed to load local resource: file:///C:/Users/ADMINI~1/AppData/Local/Temp/msohtmlclip1/01/clip_image006.jpg\r\nindex.html:1 Not allowed to load local resource: file:///C:/Users/ADMINI~1/AppData/Local/Temp/msohtmlclip1/01/clip_image008.jpg\r\nindex.html:1 Not allowed to load local resource: file:///C:/Users/ADMINI~1/AppData/Local/Temp/msohtmlclip1/01/clip_image001.jpg\r\nindex.html:1 Not allowed to load local resource: file:///C:/Users/ADMINI~1/AppData/Local/Temp/msohtmlclip1/01/clip_image002.jpg\r\nindex.html:1 Not allowed to load local resource: file:///C:/Users/ADMINI~1/AppData/Local/Temp/msohtmlclip1/01/clip_image004.jpg\r\nindex.html:1 Not allowed to load local resource: file:///C:/Users/ADMINI~1/AppData/Local/Temp/msohtmlclip1/01/clip_image006.jpg\r\nindex.html:1 Not allowed to load local resource: file:///C:/Users/ADMINI~1/AppData/Local/Temp/msohtmlclip1/01/clip_image008.jpg\r\n\r\neg : I wil push project to github . \r\n\r\n\r\n\r\nlujiapeng@aliyun.com", "title": null, "type": "comment" }, { "action": "created", "author": "Mgsy", "comment_id": 487476145, "datetime": 1556522846000, "masked_author": "username_2", "text": "Thanks for the error log. So, this information confirms my first thought that this is a duplicate of https://github.com/ckeditor/ckeditor5-paste-from-office/issues/51. I'll close this issue and leave the comment in that ticket.", "title": null, "type": "comment" }, { "action": "closed", "author": "Mgsy", "comment_id": null, "datetime": 1556522846000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
4
15
6,010
false
false
6,010
true
deregenboog/ecd
deregenboog
485,858,474
885
null
[ { "action": "opened", "author": "dvleeuwen", "comment_id": null, "datetime": 1566924587000, "masked_author": "username_0", "text": "samen met Jan een keer voor zitten, nav overzicht Ellina", "title": "diverse wijzigingen groepsactiviteiten", "type": "issue" }, { "action": "created", "author": "jtborger", "comment_id": 580169942, "datetime": 1580377396000, "masked_author": "username_1", "text": "hoe staat het hiermee? :)", "title": null, "type": "comment" }, { "action": "created", "author": "dvleeuwen", "comment_id": 584608942, "datetime": 1581423576000, "masked_author": "username_0", "text": "Daan moet met Ellina overleggen", "title": null, "type": "comment" }, { "action": "created", "author": "dvleeuwen", "comment_id": 585224627, "datetime": 1581516895000, "masked_author": "username_0", "text": "Daan checkt bij Bas met wie dit nu besproken moet worden (Ellina of nieuwe collega's)\r\nOf dat dit issue gesloten kan worden", "title": null, "type": "comment" }, { "action": "closed", "author": "dvleeuwen", "comment_id": null, "datetime": 1583152272000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "dvleeuwen", "comment_id": 593379280, "datetime": 1583152272000, "masked_author": "username_0", "text": "nav met Bas:\r\nwe sluiten deze. Mochten de nieuwe collega's tegen dingen aan lopen hoor ik het van bas.", "title": null, "type": "comment" } ]
2
6
337
false
false
337
false
pinguo-zhouwei/CustomPopwindow
null
475,536,684
42
null
[ { "action": "opened", "author": "bilifo", "comment_id": null, "datetime": 1564646862000, "masked_author": "username_0", "text": "在设置与控件上方显示时,getHeight()==-2,即获得的值是无效的", "title": "关于设置在控件上方时,getHeight()=-2的解决", "type": "issue" }, { "action": "closed", "author": "bilifo", "comment_id": null, "datetime": 1564647144000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "bilifo", "comment_id": 517175254, "datetime": 1564647144000, "masked_author": "username_0", "text": "原代码:\r\nView contentView = LayoutInflater.from(getActivity()).inflate(R.layout.pop_list, null);\r\nhandleListView_ck(contentView, 4);//**向popWindow添加显示内容\r\nCustomPopWindow popWindow = new CustomPopWindow.PopupWindowBuilder(this)\r\n .setView(contentView )\r\n .create();\r\npopWindow .showAsDropDown(mButton2,0, - (mButton2.getHeight() + popWindow.getHeight()));\r\n\r\n解决:\r\nView contentView = LayoutInflater.from(getActivity()).inflate(R.layout.pop_list, null);\r\nhandleListView_ck(contentView, 4);//**向popWindow添加显示内容\r\n\r\n//解决contentView.getHeight()获取不到值的解决方式\r\ncontentView.measure(View.MeasureSpec.UNSPECIFIED, View.MeasureSpec.UNSPECIFIED);\r\n\r\nCustomPopWindow popWindow = new CustomPopWindow.PopupWindowBuilder(this)\r\n .setView(contentView )\r\n .create();\r\npopWindow .showAsDropDown(mButton2,0, - (mButton2.getHeight() + contentView.getMeasuredHeight()));", "title": null, "type": "comment" } ]
1
3
931
false
false
931
false
mbrn/material-table
null
524,159,690
1,348
null
[ { "action": "opened", "author": "ifndefdeadmau5", "comment_id": null, "datetime": 1574057942000, "masked_author": "username_0", "text": "**To Reproduce**\r\nSteps to reproduce the behavior:\r\nInstall both `@material-ui/core` and `material-table` with latest version.\r\n\r\n**Expected behavior**\r\nWarning shouldn't be appear", "title": "Warning pops up with latest @material-ui/core", "type": "issue" }, { "action": "closed", "author": "mbrn", "comment_id": null, "datetime": 1574194749000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "mbrn", "comment_id": 555694109, "datetime": 1574194773000, "masked_author": "username_1", "text": "Hi @username_0 \r\n\r\nThis will be in next release. Thanks.", "title": null, "type": "comment" }, { "action": "created", "author": "adeelibr", "comment_id": 561089040, "datetime": 1575366795000, "masked_author": "username_2", "text": "Just asking 😄 when will the next release happen? Also can I help in anyway to move this forward 😄", "title": null, "type": "comment" }, { "action": "created", "author": "jakub-bao", "comment_id": 561234631, "datetime": 1575388946000, "masked_author": "username_3", "text": "same issue here.. \r\n\r\n![image](https://user-images.githubusercontent.com/47790868/70067514-62922000-15bc-11ea-9564-e59d73e2ec80.png)", "title": null, "type": "comment" }, { "action": "created", "author": "VictorGaiva", "comment_id": 564505177, "datetime": 1576064853000, "masked_author": "username_4", "text": "Do you have the latest version of the module?", "title": null, "type": "comment" }, { "action": "created", "author": "jakub-bao", "comment_id": 564599259, "datetime": 1576078474000, "masked_author": "username_3", "text": "@username_4 correct.", "title": null, "type": "comment" }, { "action": "created", "author": "montydhanjal", "comment_id": 569230288, "datetime": 1577438749000, "masked_author": "username_5", "text": "The latest version fixed this issue. Confirmed!", "title": null, "type": "comment" } ]
6
8
582
false
false
582
true
antfu/vueuse
null
709,609,084
132
null
[ { "action": "opened", "author": "mdbetancourt", "comment_id": null, "datetime": 1601153525000, "masked_author": "username_0", "text": "Hello i wanna add an addon to vue use to use rxjs like\r\n\r\n```ts\r\nimport { useSubscription, from, fromEvent, toObserver } from \"@vueuse/rx\"\r\nimport { interval, Subject } from \"rxjs\"\r\nimport { takeUntil, mapTo } from \"rxjs/operators\"\r\n\r\n...\r\nconst button = ref<HtmlButtonElement>(null)\r\n// or\r\nconst button = new Subject()\r\nconst couter = ref<number>(0)\r\n\r\nuseSubscrition( // it allows auto unsubscribe\r\n interval(1000).pipe(\r\n takeUntil(fromEvent(button, 'click')),\r\n//or\r\n takeUntil(button),\r\n mapTo(1),\r\n ).subscribe(toObserver(counter))\r\n)\r\n...\r\n```\r\n```html\r\n<button ref=\"button\" />\r\nor\r\n<button @click=\"button.next\" />\r\n```", "title": "i wanna add a @vueuse/rx addon", "type": "issue" }, { "action": "created", "author": "antfu", "comment_id": 699562231, "datetime": 1601164395000, "masked_author": "username_1", "text": "Welcome, please go ahead and draft an PR, let me know if you need any help. Thanks", "title": null, "type": "comment" }, { "action": "closed", "author": "antfu", "comment_id": null, "datetime": 1601892886000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
720
false
false
720
false
vlang/v
vlang
611,206,065
4,681
{ "number": 4681, "repo": "v", "user_login": "vlang" }
[ { "action": "opened", "author": "sumeetchhetri", "comment_id": null, "datetime": 1588430946000, "masked_author": "username_0", "text": "<!--\r\n\r\nPlease title your PR as follows: `time: fix foo bar`.\r\nAlways start with the thing you are fixing, then describe the fix.\r\nDon't use past tense (e.g. \"fixed foo bar\").\r\n\r\nExplain what your PR does and why.\r\n\r\nIf you are adding a new function, please document it and add tests:\r\n\r\n```\r\n// foo does foo and bar\r\nfn foo() {\r\n\r\n// file_test.v\r\nfn test_foo() {\r\n assert foo() == ...\r\n ...\r\n}\r\n```\r\n\r\nIf you are fixing a bug, please add a test that covers it.\r\n\r\nBefore submitting a PR, please:\r\n A) run the tests with `v test-compiler` .\r\n B) make sure, that V can still compile itself:\r\n```shell\r\n./v -o v cmd/v\r\n./v -o v cmd/v\r\n```\r\n\r\nI try to process PRs as soon as possible. They should be handled within 24 hours.\r\n\r\nApplying labels to PRs is not needed.\r\n\r\nThanks a lot for your contribution!\r\n\r\n-->", "title": "Add Preliminary support for C++ compiler", "type": "issue" }, { "action": "created", "author": "sumeetchhetri", "comment_id": 622965805, "datetime": 1588431115000, "masked_author": "username_0", "text": "Sample program tested with both c as well as c++ compiler on Ubuntu\r\n\r\nv run test.v --- c version\r\nVFLAGS=\"-cc c++\" v -cflags '-std=gnu11 -Wall -O3 -march=native -mtune=native -fpermissive -W -Wall -Wpointer-arith -Wno-unused-parameter -w -fpermissive -Wwrite-strings' -cg -keepc run test.v --- c++ version\r\n\r\n[test.txt](https://github.com/vlang/v/files/4567938/test.txt)", "title": null, "type": "comment" }, { "action": "created", "author": "sumeetchhetri", "comment_id": 622966374, "datetime": 1588431330000, "masked_author": "username_0", "text": "This PR has a few memory leaks in the form of the new operator (for allocation of c style arrays -- aka inline initialized arrays). I have used the _cplusplus defines in order to allocate the new arrays, these need to be de-allocated somewhere in the new_array_from_c_array function (but this is not straightforward) and similarly for new_map_init function.", "title": null, "type": "comment" }, { "action": "created", "author": "spytheman", "comment_id": 622972825, "datetime": 1588434191000, "masked_author": "username_1", "text": "What kind of problem does that solve?\r\nV transpiles to c99 code. Why should it also conform to the expectations of C++ compilers???", "title": null, "type": "comment" }, { "action": "created", "author": "spytheman", "comment_id": 622972972, "datetime": 1588434260000, "masked_author": "username_1", "text": "Would we also then need to add a C++ CI job too? On which platforms, and which compilers would it run?", "title": null, "type": "comment" }, { "action": "created", "author": "spytheman", "comment_id": 622973175, "datetime": 1588434354000, "masked_author": "username_1", "text": "Are there platforms that have C++ compilers, but lack C99 ones?", "title": null, "type": "comment" }, { "action": "created", "author": "medvednikov", "comment_id": 622977273, "datetime": 1588435980000, "masked_author": "username_2", "text": "Indeed, C++ is a very different language (malloc return type for example makes a huge difference) and goes against V's philosophy of simplicity and minimalism. All platforms have a C compiler, and there are no platforms that have a C++ compiler, but no C compiler.\r\n\r\nI'm fine with solving things like `new` variables, but I don't see the point in complicating things to get C++ support.", "title": null, "type": "comment" }, { "action": "created", "author": "medvednikov", "comment_id": 622977386, "datetime": 1588436040000, "masked_author": "username_2", "text": "We already have a lot of backends to maintain (C, x64, JS, potentially LLVM), no need in another one, when C works just fine.", "title": null, "type": "comment" }, { "action": "created", "author": "sumeetchhetri", "comment_id": 622983102, "datetime": 1588438567000, "masked_author": "username_0", "text": "Thanks Alex/Delyan for the quick response. I'll choose to maintain the C++ supporting version for my own needs then. Thanks guys.", "title": null, "type": "comment" }, { "action": "created", "author": "medvednikov", "comment_id": 622987703, "datetime": 1588440580000, "masked_author": "username_2", "text": "It's possible to mix C and C++ and use separate compilers.\r\n\r\nhttps://embeddedartistry.com/blog/2017/05/01/mixing-c-and-c-extern-c/\r\n\r\nHave you considered that?", "title": null, "type": "comment" }, { "action": "created", "author": "RiordanIX", "comment_id": 623454826, "datetime": 1588597900000, "masked_author": "username_3", "text": "Could some of this could be used in the C++ -> V transpilation? Or does that need to be its own module?", "title": null, "type": "comment" }, { "action": "created", "author": "sumeetchhetri", "comment_id": 624225757, "datetime": 1588702962000, "masked_author": "username_0", "text": "Here is my initial version of the [vweb](https://github.com/username_0/ffead-cpp/blob/v4.0/langs/v/vweb.v) server serving the ffead-cpp framework, will move it to the pico.v backend next. Thanks Alex, I initially started with the c interface option but thought of extending the v code itself to support my use case which now I think was too much effort. Finally had to resort to my final option of doing this with the c interface. Just a POC for now, but a good start anyways, also picked up v programming on the way.\r\nThanks everyone.", "title": null, "type": "comment" }, { "action": "created", "author": "medvednikov", "comment_id": 624558025, "datetime": 1588759637000, "masked_author": "username_2", "text": "@username_0 I think in the future we can have C++ support, won't hurt. So I'm open to merging the changes into master.", "title": null, "type": "comment" }, { "action": "created", "author": "spytheman", "comment_id": 624591889, "datetime": 1588764180000, "masked_author": "username_1", "text": "@username_2 I am against merging this, unless there is a new CI job that tracks whether V continues to work with a c++ compiler. Otherwise maintaining that the generate code remains C++ compatible will be very hard.", "title": null, "type": "comment" }, { "action": "created", "author": "sumeetchhetri", "comment_id": 624745224, "datetime": 1588781758000, "masked_author": "username_0", "text": "Have created a new PR - https://github.com/vlang/v/pull/4756. Let's keep this PR open until the new one gets merged.", "title": null, "type": "comment" }, { "action": "created", "author": "sumeetchhetri", "comment_id": 630744866, "datetime": 1589885756000, "masked_author": "username_0", "text": "Closing the PR", "title": null, "type": "comment" }, { "action": "created", "author": "kaijaa", "comment_id": 630746126, "datetime": 1589885942000, "masked_author": "username_4", "text": "[]()", "title": null, "type": "comment" } ]
5
17
3,753
false
false
3,753
true
lbryio/lbry-sdk
lbryio
589,077,478
2,889
null
[ { "action": "opened", "author": "andybeletsky", "comment_id": null, "datetime": 1585309586000, "masked_author": "username_0", "text": "Starting from version 0.64 SDK started returning timestamps as floats in `resolve` (possibly other calls) responses. 0.63 and earlier do not exhibit this behavior.\r\n\r\nHere's what it looks like when lbry.go tries to unmarshal resolve response:\r\n\r\n```* error decoding json.Number into [Global-Pandemic,-change-gon-come#a52dbba5bbd394897a7621f5ea7b566510a874ba].meta.creation_timestamp: strconv.ParseInt: parsing \"1585289113.4962246\": invalid syntax\r\n* error decoding json.Number into [Global-Pandemic,-change-gon-come#a52dbba5bbd394897a7621f5ea7b566510a874ba].signing_channel.meta.creation_timestamp: strconv.ParseInt: parsing \"1576953066.5461342\": invalid syntax\r\n* error decoding json.Number into [Global-Pandemic,-change-gon-come#a52dbba5bbd394897a7621f5ea7b566510a874ba].signing_channel.timestamp: strconv.ParseInt: parsing \"1584210431.1419327\": invalid syntax\r\n* error decoding json.Number into [Global-Pandemic,-change-gon-come#a52dbba5bbd394897a7621f5ea7b566510a874ba].timestamp: strconv.ParseInt: parsing \"1585289113.4962246\": invalid syntax```", "title": "Timestamps returned as float instead of int", "type": "issue" }, { "action": "closed", "author": "eukreign", "comment_id": null, "datetime": 1585580313000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
2
1,050
false
false
1,050
false
JuliaRegistries/General
JuliaRegistries
673,003,503
18,988
{ "number": 18988, "repo": "General", "user_login": "JuliaRegistries" }
[ { "action": "opened", "author": "JuliaRegistrator", "comment_id": null, "datetime": 1596567210000, "masked_author": "username_0", "text": "- Registering package: LinearAlgebraX\n- Repository: https://github.com/scheinerman/LinearAlgebraX.jl\n- Created by: @scheinerman\n- Version: v0.0.6\n- Commit: b40ca64f54ca62e8076aadd3a8be076b58656637\n- Git reference: master", "title": "New version: LinearAlgebraX v0.0.6", "type": "issue" } ]
2
2
620
false
true
220
false
Homebrew/homebrew-core
Homebrew
681,531,726
59,864
{ "number": 59864, "repo": "homebrew-core", "user_login": "Homebrew" }
[ { "action": "opened", "author": "alebcay", "comment_id": null, "datetime": 1597810331000, "masked_author": "username_0", "text": "Created with `brew bump-formula-pr`.", "title": "libmpc 1.2.0", "type": "issue" } ]
2
2
151
false
true
36
false
gabriel/MPMessagePack
null
325,751,272
27
{ "number": 27, "repo": "MPMessagePack", "user_login": "gabriel" }
[ { "action": "opened", "author": "liambutler-lawrence", "comment_id": null, "datetime": 1527088190000, "masked_author": "username_0", "text": "### Background\r\nI'm on the iOS team at [TrueMotion](https://gotruemotion.com) and we have a client that has a no-warnings policy which includes 3rd party dependencies. We use MPMessagePack in our SDK and so its warnings show up for our client.\r\n\r\n### Changes\r\n1. When I ran `pod install` using the latest Cocoapods (1.5.2), automatic changes were applied to the `project.pbxproj` and `Podfile.lock`.\r\n \r\n2. After opening the project, I saw no warnings. It turned out this was because the warnings I previously observed are new in Xcode 9: `CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF`. Accepting Xcode's suggestion to update the project to recommended settings caused further automatic changes to the `project.pbxproj`, `MPMessagePack.xcscheme` and `MPMessagePack iOS.xcscheme`.\r\n\r\n3. Finally, I fixed the 3 \"implicit self reference in block\" warnings by explicitly referencing `self` in `MPMessagePackClient.m`. Note that this won't actually affect memory management because `self` was already being explicitly referenced in the block.", "title": "Fix implicit self warnings", "type": "issue" }, { "action": "created", "author": "liambutler-lawrence", "comment_id": 391383961, "datetime": 1527088275000, "masked_author": "username_0", "text": "@Gabriel I promise this will be quick!", "title": null, "type": "comment" }, { "action": "created", "author": "gabriel", "comment_id": 552689681, "datetime": 1573521489000, "masked_author": "username_1", "text": "I think this is fixed now?", "title": null, "type": "comment" } ]
2
3
1,093
false
false
1,093
false
JuliaRegistries/General
JuliaRegistries
681,147,198
19,728
{ "number": 19728, "repo": "General", "user_login": "JuliaRegistries" }
[ { "action": "opened", "author": "JuliaRegistrator", "comment_id": null, "datetime": 1597765660000, "masked_author": "username_0", "text": "- Registering package: Viznet\n- Repository: https://github.com/GiggleLiu/Viznet.jl\n- Created by: @GiggleLiu\n- Version: v0.1.1\n- Commit: 726c5bc573c699f8755785fe08870d7aff0e5afd\n- Reviewed by: @GiggleLiu\n- Reference: https://github.com/GiggleLiu/Viznet.jl/issues/1#issuecomment-675559080\n<!-- bf0c69308befbd3ccf2cc956ac8a4671113b158fd87a6d4e741b0173dab051a48f7dc43e593ffff4357bc647a3a835985bbe56406acb80b2db1c2986fced2e9511247c6b36a4ddece26b44ed37df2420ef53e86a2e749ca804cb752485153a450063592380a8a866973370afc81d948ae9b0edd402b18d7d7d92a29f4964cf6cb1e8a0c457b423f35b3ad5c06823408f0e7a9e019e9b5da170d50be1c085eaa810ea1d6d4398c0a596db8e3dbf8576c5 -->", "title": "New version: Viznet v0.1.1", "type": "issue" } ]
3
3
1,198
false
true
648
false
kubernetes-sigs/aws-alb-ingress-controller
kubernetes-sigs
726,793,593
1,531
{ "number": 1531, "repo": "aws-alb-ingress-controller", "user_login": "kubernetes-sigs" }
[ { "action": "opened", "author": "M00nF1sh", "comment_id": null, "datetime": 1603307509000, "masked_author": "username_0", "text": "fix aws session metrics broken by previous PR", "title": "fix aws session metrics", "type": "issue" } ]
2
3
2,123
false
true
45
false