repo_name
stringlengths
4
136
issue_id
stringlengths
5
10
text
stringlengths
37
4.84M
swagger-api/swagger-editor
212360560
Title: Paste JSON into online editor fails with UNCAUGHT_SWAY_WORKER Question: username_0: Hi When I paste the following into the online editor, I get "a.replace is not a function" UNCAUGHT_SWAY_WORKER_ERROR { "swagger" : "2.0", "info" : { "version" : "1.0", "title" : "The Title", "license" : { "name" : "MIT", "url" : "http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT" } }, "host" : "example.com", "basePath" : "/v1/api", "schemes" : [ "http" ], "consumes" : [ "application/json" ], "produces" : [ "application/json" ], "paths" : [ { "/productsummary/debitaccounts" : { "get" : { "description" : "All accounts available to transfer from", "parameters" : [ { "in" : "query", "name" : "debitAccountId", "description" : "The debit account id to filter with", "type" : "string", "required" : false } ], "operationId" : "ProductsummaryDebitaccounts", "responses" : { "200" : { "description" : "Success", "schema" : { "$ref" : "#/definitions/ProductsummaryDebitaccountsResponse" } }, "400" : { "description" : "BadRequest", "schema" : { "$ref" : "#/definitions/ResponseError" } }, "500" : { "description" : "InternalServerError", "schema" : { "$ref" : "#/definitions/ResponseError" } } } } } }, { "/productsummary/creditaccounts" : { "get" : { "description" : "All accounts available for transfer to", "parameters" : [ { "in" : "query", "name" : "debitAccountId", "description" : "The debit account id to filter with", [Truncated] "name" : { "type" : "string" }, "aggregatedBalance" : { "$ref" : "#/definitions/AggregatedBalance" }, "products" : { "$ref" : "#/definitions/Product" } } } } } * Version: the online one * Browser/OS: Firefox 51.0.1 **Issue** "a.replace is not a function" UNCAUGHT_SWAY_WORKER_ERROR Answers: username_1: The spec is invalid. `paths` is an object, not an array. Must be making the validation tool crazy. username_0: Thanks. It will be very nice if the validation tool can tell me that...Can this issue remain open as a request for enhancement? username_1: It's going to be changed relatively soon. We can make sure this is addressed better in it. username_0: Great! Thanks. Status: Issue closed
yatheeshraju/preview-office-docs
944907110
Title: Add support for SharePoint Question: username_0: ![40E91988-C478-4989-8415-1AC10C265A40](https://user-images.githubusercontent.com/42692274/125712140-f16d44db-b218-4bed-af49-6492df150252.png) Answers: username_1: I am not sure how the share point files work . can you share a sample publicly accessible share point link for testing @username_0 username_0: @username_0 Here is a link : https://sjy2017-my.sharepoint.com/:w:/g/personal/tony_sjy2017_onmicrosoft_com/EVfUNvcc-FlFu-GGHbvrgBsBC7YakfltJCWfBwQl_hr6_g?e=nnASSi
getgrav/grav-plugin-admin
984940301
Title: Error editing page from admin interface after 5.1.0 update Question: username_0: After the upgrade to v5.1.0, editing a page from admin panel I receive the following error: Argument 4 passed to Grav\Plugin\Form\TwigExtension::prepareFormField() must be of the type array, string given Grav and all plugins are to latest available version. PHP is 7.4<issue_closed> Status: Issue closed
naser44/1
133351129
Title: فيديو: تهجم على السائق وتمنى حرقه فقط لأنه مسلم! Question: username_0: <a href="http://ift.tt/1Qc96Xe">&#1601;&#1610;&#1583;&#1610;&#1608;: &#1578;&#1607;&#1580;&#1605; &#1593;&#1604;&#1609; &#1575;&#1604;&#1587;&#1575;&#1574;&#1602; &#1608;&#1578;&#1605;&#1606;&#1609; &#1581;&#1585;&#1602;&#1607; &#1601;&#1602;&#1591; &#1604;&#1571;&#1606;&#1607; &#1605;&#1587;&#1604;&#1605;!</a>
tactcomplabs/circustent
1148972755
Title: Pthreads impl should barrier at the start? Question: username_0: The OpenMP implementation does a `parallel for`, which synchronizes all threads at the start and finish. The Pthread implementation contains no synchronization, which means that threads are staggered by the time required for `pthread_create`. If `pthread_create` is slow, it means that there is less contention than intended, which might impact the quality of results. I'm not sure if this a problem or not. Feel free to close. Answers: username_1: Great catch @username_0! I agree with your assessment. Integrating a barrier would be much closer to what was intended. The latest merge should address appropriately. Let us know if you have issues or concerns. Status: Issue closed
ninia/jep
894338254
Title: Pickle does not work with Jep Question: username_0: **Describe the bug** Pickle does not see defined classes when running with Jep **To Reproduce** I was able to narrow it down to this simple snippet ```python import pickle class Clazz: pass var = Clazz() saved = pickle.dumps(var) print("done") ``` which runs fine in python interpreter, but fails with `Exception in thread "main" jep.JepException: <class '_pickle.PicklingError'>: Can't pickle <class '__main__.Clazz'>: attribute lookup Clazz on __main__ failed` when executed with Jep **Environment (please complete the following information):** - OS Platform, Distribution, and Version: Windows 10 - Python Distribution and Version: miniconda, python 3.9.4 - Java Distribution and Version: Java 15 - Jep Version: 3.9.1 - Python packages used (e.g. numpy, pandas, tensorflow): Any help and advice on what to try would be greatly appreciated Answers: username_1: I just tried this in the jep console and it worked without problems for me. We have many differences in out environment so we will need additional testing to determine which piece is causing problems. I am running Ubuntu 20.04, python 3.8, open JDK 11, python 3.8.5, jep(dev_4.0). My top guess would be the difference in python version, either because 3.9 is newer or because it is miniconda. username_0: Wow, it does work in jep console for me too! Any ideas what could be different between console and my application? I can't find anything suspicious in my code or anything special in the way jep console is running... username_1: I noticed that in the console the full name of Clazz is `jep.console.Clazz` and your error is calling it `__main__.Clazz`. I think this is picked up from the `__name__` attribute, every [SharedInterpreter is setting `__name__` to `__main__`](https://github.com/ninia/jep/blob/v3.9.1/src/main/java/jep/SharedInterpreter.java#L57) which may be the source of the problem. I'm guessing pickle is going back and trying to look up the class based off the name and since there could be multiple instances of `__main__` it makes sense that could be failing. jep.console would be much more consistent and could work better. The reason it uses that in the console is because we are `exec`ing the statements from within that module. I'm not sure what the solution is. You could try setting `__name__` differently in your SharedInterpreter but I don't know where pickle is looking for things so I suspect that would fail. If you package your custom class as a module that should work fine. I don't have time to look deeper now but I would be curious how this works in regular python threads created with `threading`. Ideally as long as it works in python threads we should be able to get it working the same way in `SharedInterpreter` but I suspect those threads don't set `__name__` to `__main__`. I think we there were some compatibility issues if we don't set `__name__` to `__main__` so I don't think we can change it without quite a bit of testing to make sure we aren't breaking other things. username_2: ['__annotations__', '__builtins__', '__doc__', '__loader__', '__name__', '__package__', '__spec__', 'a', 'm'] ``` username_2: Hey @username_1 we have discussed the synchronization of globals between different interpreters, in the end I created a shared globals dict and reused it in https://github.com/ninia/jep/blob/master/src/main/c/Jep/pyembed.c#L762 for shared interpreters instead of always creating a new one. This was a simple change and worked very well so far. I experimented with a slight modification to also fix the issue described above. I noticed that the usesubinterpreter branch looked kind of what is needed, because it is reusing the dict from the __main__ module. Now my question: Do you have concerns about using the __main__.__dict__ as shared globals dictionary for shared interpreters? I'm imagining to make this configurable via JepConfig, the default can be today's behavior and the only change on the C side would be: https://github.com/ninia/jep/blob/master/src/main/c/Jep/pyembed.c#L752 `if (usesubinterpreter || shareGlobals) {` If you think this makes sense, I can create a pull request. username_1: I do not have any concerns. This sounds like a small and reasonable change. Perhaps you should also conditionally disable [this line in the SharedInterpreter constructor](https://github.com/ninia/jep/blob/master/src/main/java/jep/SharedInterpreter.java#L57) when sharing globals. It should be a no-op in that case but since we don't need it I would rather just skip it. username_3: I'm in trouble with it too. Is there anyting new about this issue? @username_1 @username_2
EDDiscovery/EDDiscovery
401065841
Title: Action documentation errors Question: username_0: Sorry, would edit and create a pull request, but it's in docx and when I used LibreOffice it complained about breaking formatting. Anyway, these are the ones I remember now: S2.5.3: EscapeChars / ReplaceEscapeChars - the actual functions don't have the 's'; ie, EscapeChar / ReplaceEscapeChar S2.4.4.1 No entry for "Label" control S2.4.4.2 The DialogControl example references %(Value) to retrieve dialog data, which is incorrect. It should be %(DialogResult) Answers: username_1: Perhaps we should look at converting it to e.g. asciidoc username_2: No I want to edit it in word.. but I normally do a google doc one which is linked to the wiki. I'll export another one and do it from the wiki. username_2: You don't need anything for label because there are no control parameters. I've made that clearer. thanks Status: Issue closed
pybamm-team/PyBaMM
511894028
Title: More parameter sets Question: username_0: Add more parameter sets from the literature. Create notebook showing how to change parameters by component (e.g. anode of this material from this paper, cathode of some other material from a different paper), or how to load in the full parameter sets. This is mostly already covered in the parameter-values notebook, so could just add to that once there is more than one parameter set to choose from. Answers: username_0: closing this as we have other issues for specific parameter sets Status: Issue closed
SmokeMonsterPacks/Super-NT-Jailbreak
298008322
Title: Monopoly Community Chest Hangs Question: username_0: Possible bug/glitch with Monopoly (from the SD2SNES pack, CRC matches), in two player mode, when getting a community chest card, the game appears to hang, with no way to progress. **Expected Behavior** Can proceed through a full game of Monopoly without issue, including when getting a community chest card. **Actual Behavior** Game hangs after receiving a community chest card. Answers: username_1: Thanks for reporting this bug @username_0 Could you please confirm the ROM is _Monopoly_ (USA) (Rev 1)? ``` sha1: beddd101739f5e1a6e3abd1542cccd341e6e5263 md5: f478e1eddc87352ed35205d6cfe017ce crc32: 88d54085 ``` The corresponding cartridge would then be _Monopoly_ (`SNS-ML-USA`, revision `SNS-ML-1`). To check whether or not the bug also affects the official firmware, it would be great if someone could check with an official cartridge. username_0: That is indeed the version 👍 username_2: I am able to reproduce this issue using official Super NT firmware 4.1 and sd2snes firmware 0.1.7e. The game also locks up when getting a chance card. username_2: I downgraded to SNT firmware 4.0 and the game no longer locks up when the Chance or Community Chest animation is played, but there is still an issue. The animation exits back to the board a second after it is started, so it is impossible to see what card you just picked up. username_2: The bug still repros in firmware version 4.3 username_1: thanks for your feedback @username_2 username_1: That bug should be solved now with the new jailbreak firmware. Please, give it another try @username_0 Status: Issue closed username_3: Holdmybeer on Discord confirmed this has been resolved
openworm/sibernetic
134178563
Title: Update documentation to include command line parameter to change OpenCL file Question: username_0: In the creation of #88, it looks like there has been an option implemented to change the OpenCL file. This issue is to add that to the documentation so we know how to use it. Answers: username_1: done see here [Main command options](https://github.com/openworm/sibernetic#main-command-options) option name is oclsourcepath you're just need the path to file with ocl program username_0: OK great. In terms of examples, what files that are checked in can I use to test with? I only see an sphFluid.cl in the src directory. Are there others? username_1: Not yet @username_0 but I'll add when merge Andrey code username_0: OK great-- those examples will help the docs (and me!) so that everyone will be able to actually use the option. ᐧ username_1: @username_0 I've updated [Run simulation from configuration file section](https://github.com/openworm/sibernetic#run-simulation-from-configuration-file) added information how to run sibernetic with crawling/swimming worm configuration. username_0: This is done Status: Issue closed
shogo82148/actions-setup-perl
1073067016
Title: install-modules: seems not work on Windows Question: username_0: ``` - uses: username_1/actions-setup-perl@v1 with: install-modules: Test2::V0 - run: perl -MTest2::V0 -e '#' ``` Fails: ``` 2021-12-07T08:19:21.5823710Z Download action repository 'username_1/actions-setup-perl@v1' (SHA:88d7620362b0c09f8cf08c22d3baf4ce914a70ff) ... 2021-12-07T08:19:24.8098677Z ##[group]Run username_1/actions-setup-perl@v1 2021-12-07T08:19:24.8099692Z with: 2021-12-07T08:19:24.8100231Z install-modules: Test2::V0 2021-12-07T08:19:24.8101112Z perl-version: 5 2021-12-07T08:19:24.8102121Z distribution: default 2021-12-07T08:19:24.8102725Z enable-modules-cache: true 2021-12-07T08:19:24.8103323Z working-directory: . 2021-12-07T08:19:24.8103863Z ##[endgroup] 2021-12-07T08:19:26.8743365Z ##[group]install perl 2021-12-07T08:19:29.6216322Z [command]"C:\Program Files\PowerShell\7\pwsh.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command "$ErrorActionPreference = 'Stop' ; try { Add-Type -AssemblyName System.IO.Compression.ZipFile } catch { } ; try { [System.IO.Compression.ZipFile]::ExtractToDirectory('D:\a\_temp\bd85cb30-2474-42e9-bfdc-7fc835c094f8', 'D:\a\_temp\c302fa82-f545-4d71-9f6a-247a2d7c8053', $true) } catch { if (($_.Exception.GetType().FullName -eq 'System.Management.Automation.MethodException') -or ($_.Exception.GetType().FullName -eq 'System.Management.Automation.RuntimeException') ){ Expand-Archive -LiteralPath 'D:\a\_temp\bd85cb30-2474-42e9-bfdc-7fc835c094f8' -DestinationPath 'D:\a\_temp\c302fa82-f545-4d71-9f6a-247a2d7c8053' -Force } else { throw $_ } } ;" 2021-12-07T08:19:36.1966397Z 2021-12-07T08:19:36.2333376Z [command]C:\hostedtoolcache\windows\perl\5.34.0-thr\x64\bin\perl.exe -V 2021-12-07T08:19:36.7994027Z Summary of my perl5 (revision 5 version 34 subversion 0) configuration: 2021-12-07T08:19:36.7996210Z 2021-12-07T08:19:36.7996920Z Platform: 2021-12-07T08:19:36.7997919Z osname=MSWin32 2021-12-07T08:19:36.7998453Z osvers=10.0.17763.2300 2021-12-07T08:19:36.8000241Z archname=MSWin32-x64-multi-thread 2021-12-07T08:19:36.8006389Z uname='' 2021-12-07T08:19:36.8011085Z config_args='undef' 2021-12-07T08:19:36.8011879Z hint=recommended 2021-12-07T08:19:36.8012476Z useposix=true 2021-12-07T08:19:36.8013040Z d_sigaction=undef 2021-12-07T08:19:36.8013661Z useithreads=define 2021-12-07T08:19:36.8014328Z usemultiplicity=define 2021-12-07T08:19:36.8014955Z use64bitint=define 2021-12-07T08:19:36.8015546Z use64bitall=undef 2021-12-07T08:19:36.8016151Z uselongdouble=undef 2021-12-07T08:19:36.8016739Z usemymalloc=n 2021-12-07T08:19:36.8017691Z default_inc_excludes_dot=define 2021-12-07T08:19:36.8018335Z Compiler: 2021-12-07T08:19:36.8018854Z cc='gcc' 2021-12-07T08:19:36.8020153Z ccflags =' -DWIN32 -DWIN64 -DPERL_TEXTMODE_SCRIPTS -DPERL_IMPLICIT_CONTEXT -DPERL_IMPLICIT_SYS -DUSE_PERLIO -D__USE_MINGW_ANSI_STDIO -fwrapv -fno-strict-aliasing -mms-bitfields' 2021-12-07T08:19:36.8021741Z optimize='-s -O2' 2021-12-07T08:19:36.8022338Z cppflags='-DWIN32' 2021-12-07T08:19:36.8022902Z ccversion='' 2021-12-07T08:19:36.8023471Z gccversion='8.1.0' 2021-12-07T08:19:36.8024043Z gccosandvers='' 2021-12-07T08:19:36.8024595Z intsize=4 2021-12-07T08:19:36.8025109Z longsize=4 2021-12-07T08:19:36.8025650Z ptrsize=8 2021-12-07T08:19:36.8026185Z doublesize=8 2021-12-07T08:19:36.8026742Z byteorder=12345678 2021-12-07T08:19:36.8027334Z doublekind=3 2021-12-07T08:19:36.8027889Z d_longlong=define 2021-12-07T08:19:36.8028459Z longlongsize=8 2021-12-07T08:19:36.8029008Z d_longdbl=define 2021-12-07T08:19:36.8030340Z longdblsize=16 2021-12-07T08:19:36.8031071Z longdblkind=3 2021-12-07T08:19:36.8031631Z ivtype='long long' [Truncated] 2021-12-07T08:28:43.0432328Z Fetching http://www.cpan.org/authors/id/E/EX/EXODIST/Term-Table-0.015.tar.gz ... OK 2021-12-07T08:28:43.6342347Z Configuring Term-Table-0.015 ... OK 2021-12-07T08:28:45.7270333Z Building Term-Table-0.015 ... OK 2021-12-07T08:28:45.7277064Z Successfully installed Term-Table-0.015 2021-12-07T08:28:45.8614855Z --> Working on Scope::Guard 2021-12-07T08:28:45.9040312Z Fetching http://www.cpan.org/authors/id/C/CH/CHOCOLATE/Scope-Guard-0.21.tar.gz ... OK 2021-12-07T08:28:46.4566956Z Configuring Scope-Guard-0.21 ... OK 2021-12-07T08:28:48.3738761Z Building Scope-Guard-0.21 ... OK 2021-12-07T08:28:48.3740155Z Successfully installed Scope-Guard-0.21 2021-12-07T08:28:52.3690387Z Building Test2-Suite-0.000144 ... OK 2021-12-07T08:28:52.3704552Z Successfully installed Test2-Suite-0.000144 2021-12-07T08:28:52.9961918Z 6 distributions installed 2021-12-07T08:28:54.7173401Z ##[group]Run perl -MTest2::V0 -e '#' 2021-12-07T08:28:54.7174032Z perl -MTest2::V0 -e '#' 2021-12-07T08:28:54.7227118Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'" 2021-12-07T08:28:54.7227717Z env: 2021-12-07T08:28:54.7228335Z PERL5LIB: D:\a\_actions\username_1\actions-setup-perl\v1\scripts\lib 2021-12-07T08:28:54.7229132Z ##[endgroup] ``` Answers: username_1: For workaround, please configure `install-modules-with`. https://github.com/username_1/actions-setup-perl#install-modules-with The action doesn't install any modules if `install-modules-with` is missing. It confuses the users. I'll fix it. username_0: Thanks. Status: Issue closed
mapbox/mapbox-navigation-ios
1056574508
Title: [Bug]: Incorrect ornaments padding on CarPlay. Question: username_0: ### Mapbox Navigation SDK version `v2.1.0-rc.1` ### Steps to reproduce 1. Open example application on CarPlay. 2. Simulate location updates on the road, so that compass and speed limit views are visible. 3. Observe behavior. ### Expected behavior Speed limit and compass views have excessive padding. For example: <img width="500" alt="Screen Shot 2021-11-17 at 11 56 00 AM" src="https://user-images.githubusercontent.com/1496498/142273221-fbe4f061-a3ac-49f8-abec-71265fc08791.png"> ### Actual behavior Speed limit and compass views should have similar padding as `CPMapTemplate` button at the bottom of the screen. ### Is this a one-time issue or a repeatable issue? repeatable<issue_closed> Status: Issue closed
cycloidio/terracognita
546280181
Title: upgrade HCL lib to v2.x Question: username_0: TC is currently using HCL v1: https://github.com/cycloidio/terracognita/blob/5709caa05628bc41ad1d1a49b462da93bfa47a5d/go.mod#L14 To generate a TF12 compliant format we need to upgrade to HCL v2.x. APIs have been heavily modified including some breaking changes like: - no more `printer` package - no more `fmtcmd` package resources: - https://pkg.go.dev/github.com/hashicorp/hcl/v2?tab=doc - https://github.com/hashicorp/hcl/wiki/HCL-2.0-Transition - https://github.com/hashicorp/hcl/wiki/Version-Selection<issue_closed> Status: Issue closed
serge-web/serge
714842870
Title: Design forces - ensure status present Question: username_0: Although an asset that is hosted (or comprised) doesn't need a status (since we only use the parent status), we need it for when the asset leaves the parent. So, the design page must enforce the provision of a status for every asset.
microsoft/fluentui
602234291
Title: NVDA narrator reads selected dropdown option text 3 times if using arrow keys to change selection when list is collapsed Question: username_0: <!-- Before submitting an accessibility issue please ensure the following are true: 1. Search for dupes! Please make sure the issue is not already present in our issue tracker. 2. This issue is caused by a Fluent UI React control. 3. You can reproduce this bug in a CodePen. 4. There is documentation or best practice that supports your expected behavior (review https://www.w3.org/TR/wai-aria-1.1/ for accessibility guidance.) PLEASE NOTE: Do not link to, screenshot or reference a Microsoft product in this description. Our screen reader support is limited to Edge + Narrator. Please check ARIA component examples to ensure it is not a screen reader or browser issue. Issues that do not reproduce in Edge + Narrator, and aren't caused by obvious invalid aria values, should be filed with the respective screen reading software, not the Fluent UI repo. Issues that do not meet these guidelines will be closed. --> ### Environment Information - **Package version(s)**: 7.94.0 - **Browser and OS versions**: windows 10 ### Describe the issue: Create a simple dropdown with options, turn on NVDA narrator and use tab navigation to land on the dropdown control. When dropdown list is collapsed use *Up* or *Down* arrow key to change selection. The narrator would read out new selected option 3 times instead of just 1. repro steps: 1. Keep the NVDA Screen reader running 2. Use Tab key to select the dropdown control 3. Use up or down arrow key to change options with list collapsed (try to change at least one option) 4. observe ### Please provide a reproduction of the issue in a codepen: https://codepen.io/username_0/pen/abvZoov <!-- Providing an isolated reproduction of the issue in a codepen makes it much easier for us to help you. Here are some ways to get started: * Go to https://aka.ms/fluentpen for a starter codepen * You can also use the "Export to Codepen" feature for the various components in our documentation site. * See http://codepen.io/dzearing/pens/public/?grid_type=list for a variety of examples Alternatively, you can also use https://aka.ms/fluentdemo to get permanent repro links if the repro occurs with an example. (A permanent link is preferable to "use the website" as the website can change.) --> #### Actual behavior: There are two versions NVDA will read out. 1. In my own application, where simply use a <Dropdown> control without any modification, NVDA screen reader reads out <selected item text> -> <dropdown label text> + <selected item text> -> <selected item text> 2. In codepen, NVDA reads out <selected item text> -> <selected item text> -> <selected item text> #### Expected behavior: NVDA only reads out selected item text once. ### Documentation describing expected behavior Answers: username_1: @username_0 thanks for submitting this! I can reproduce this issue both with NVDA and Narrator in edge. I suspect that this is an interaction between the aria-live region and aria-labelledby that were initially put on the dropdown to ensure that changes in the selected option were read out. I wonder if narrator/edge have been updated to better handle that scenario, we might be able to remove the live region now. We'll get this fixed username_2: ARIA Live is not needed for listbox design pattern. Here's the ARIA recommendation for listbox - https://www.w3.org/TR/wai-aria-practices-1.1/#Listbox As listbox is a basic component, double/triple reading is going to significantly affect the user experience. username_3: My team has hit this issue as well during an accessibility review before release. If someone wants to troubleshoot, the issue that the HCL team logged in our ADO has screenshots, video clip, and repro steps of the issue. https://worldwidelearning.visualstudio.com/Common/_workitems/edit/1081455 username_0: can we reopen this item? This is an accessibility issue. thanks so much.
Azure/Azure-DataFactory
1040218101
Title: In Data Factory the 'Debug' button doesn't work Question: username_0: In the Data Factory UI, when attempting to debug/run a pipeline in debug mode by clicking the 'Debug' button at the top of the screen, nothing happens. It's like the Debug link is broken. <img width="296" alt="ADF 2021-10-30 074815" src="https://user-images.githubusercontent.com/50758073/139537983-e3a46709-4132-4b0f-a6eb-def28b15bf77.png"><issue_closed> Status: Issue closed
rmosolgo/graphql-ruby
604760286
Title: 1.10.7 docs link is broken Question: username_0: **Describe the bug** The 1.10.7 docs link is broken - found on the gem's website [https://graphql-ruby.org/api-doc/1.10.7/](https://graphql-ruby.org/api-doc/1.10.7/) **Versions** `graphql` version: 1.10.7 Answers: username_1: Sorry, I tried to fix this the other day, but then I ended up in filesystem hell: the GitHub action that publishes graphql-ruby.org is run on linux (case-sensitive), but I run on Mac (case-insensitive), and when I pull the `gh-pages` branch, I get a git conflict on `docs/GraphQL.html` which weirdly somehow conflicts with `docs/Graphql.html` (the namespace for the Rails generator). So I can't build it locally right now 😖 . I'll try to fix it pronto. In the meantime, it looks like https://rubydoc.info/gems/graphql/1.10.7 is up-to-date (sometimes it wouldn't build right, which is why I added a custom build to graphql-ruby.org), so you can check there. username_0: Thank you so much! username_1: 😆 Almost there, but not quite: ![image](https://user-images.githubusercontent.com/2231765/80379273-dda9ea80-886b-11ea-8832-996dc6ad6469.png) Status: Issue closed username_1: Ok, got a successful build over at https://github.com/username_1/graphql-ruby/actions/runs/89144397. It published 1.10.8, which I released this morning, and the link at the top of graphql-ruby.org is :+1:
ant-design/ant-design
363008252
Title: 级联选择手机端有bug Question: username_0: - [ ] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate. ### Version 3.9.3 ### Environment Chrome最新版 react16.2.0 ### Reproduction link [https://ant.design/components/cascader-cn/](https://ant.design/components/cascader-cn/) ### Steps to reproduce 手机端失效 ### What is expected? 手机端无bug ### What is actually happening? 手机端无法选择 <!-- generated by ant-design-issue-helper. DO NOT REMOVE --> Answers: username_1: `Cascader` 组件在 mobile 下 touch 事件不生效。 不过移动端建议使用 [antd-mobile](http://mobile.ant.design),antd 主要用在 pc。 username_2: 为了提高效率和更加聚集,我们不会特别针对移动端进行优化。当然如果社区可以帮助我们提高在移动端的表现,可以直接给我们 PR 帮助修复,这里先关了。 Status: Issue closed
ValveSoftware/steam-for-linux
236316927
Title: Steam launcher not starting in linux mint 18.1 Cinnamon (v.3.2.6) Question: username_0: #### Your system information * Steam client version (build number or date): most recent build available at the steam download page as of 15/6-2017 * Distribution (e.g. Ubuntu): Linux Mint 18.1 Cinnamon (v.3.2.6) * Opted into Steam client beta?: [Yes/No] No * Have you checked for system updates?: [Yes/No] Yes #### I have downloaded and installed the steam-launcher package from the official website several times but whenever i try to "execute" the installed file (I'm new to Linux, don't know what to call it since there are apparently no executables) it responds with nothing. I've googled around for a bit and purghed the file a few times but still there's no window opening. Is there another version i should install or is there something else I'm missing? All help is appreciated #### Steps for reproducing this issue: 1. Downloading the package in debian form 2. Installing the package 3. attempting to start the launcher Answers: username_1: Hello @username_0, open Software Manager, search for steam, double click on "Steam" in the search results, and click the Install button. username_0: @username_1 wow, thanks a bunch :) username_1: Closing per the last comment. Status: Issue closed
remote-job-boards/software-engineering
911012403
Title: Toptal: Senior Java Developer Question: username_0: **Tags:** #backend #java #dev #senior #digital-nomad **Published on:** June 01, 2021 **Original Job Post:** https://remoteOK.io/remote-jobs/104209-remote-senior-java-developer-toptal ![](https://remoteOK.io/assets/jobs/c039119b1acbc7fae9dec122229468b11622556891.png) ***Design your full-time freelance career as a top freelance developer with Toptal.*** Freelance work is defining developer careers in exciting new ways. If you’re passionate about finding rapid career growth potential working with leading Fortune 500 brands and innovative Silicon Valley startups, Toptal could be a great fit for your next career shift. Toptal is an elite talent network made up of the world’s top 3% of developers, connecting the best and brightest freelancers with top organizations. Unlike a 9-to-5 job, you’ll choose your own schedule and work from anywhere.  **Jobs come to you, so you won’t bid for projects against other developers in a race to the bottom.** Plus, Toptal takes care of all the overhead, empowering you to focus on successful engagements while getting paid on time, at the rate you decide, every time. Our sophisticated screening process makes sure you are provided with top clients without additional overhead, as well as assistance in maximizing the potential of your full-time freelance career. Joining the Toptal network also gives you access to technical training programs, mentors, and coaching programs, so you can connect with a global community of experts like you to share peer-to-peer knowledge and expand your network globally. As a freelance developer, you can become a part of an ever-expanding community of experts in over 120 countries, working remotely on projects that meet your career ambitions. That’s why the world’s top 3% of developers choose Toptal. Developers in our elite network share: * English language proficiency * 3+ years of professional experience * Proficient in Java, with a good knowledge of its ecosystems * Project management skills * A keen attention to detail * Experience with system architecture or leading a software team is a strong advantage * Full-time availability is a strong advantage Curious to know how much you could make? Check out our developer rate calculator: [https://topt.al/qdcbdK](https://topt.al/qdcbdK) If you’re interested in pursuing an engaging career working on full-time freelance jobs for exclusive clients, take the next step by clicking apply and filling out the short form: [https://topt.al/3ecmjn](https://topt.al/3ecmjn) #Salary and compensation $60,000 — $200,000/year ### Location 🌏 Worldwide<br><issue_closed> Status: Issue closed
PranavBahuguna/3DEngine-v2
784507184
Title: Create a window and basic game loop Question: username_0: In order to draw any graphics at all, we need a window to draw them on! Design and implement a window class with OpenGL and implement a game loop to keep the window open. Add any options that were present in the previous engine.<issue_closed> Status: Issue closed
flexion/ef-cms
724823352
Title: BUG:- (Mobile) Incorrect tab title displaying in dropdown on Case Detail Question: username_0: **Describe the Bug** Incorrect tab title displaying in dropdown on Case Detail (page is displaying Petitioner tab but dropdown displays Docket Record) **Business Impact/Reason for Severity** **In which environment did you see this bug?** stg **Who were you logged in as?** petitioner3 **What were you doing when you discovered this bug? (Using the application, demoing, smoke tests, testing other functionality, etc.)** manual testing **To Reproduce** Steps to reproduce the behavior: 1. Go to case 2. Select Petitioner tab from dropdown 3. Click Edit link 4. Click Save **Expected Behavior** Displayed tab should match the tab title displayed in the dropdown. **Actual Behavior** Page is displaying Petitioner tab but dropdown displays Docket Record) **Screenshots** ![Screenshot_20201019-132701.png](https://images.zenhubusercontent.com/5bd7271508843955cc24d3d0/afa5f712-fba7-4fca-9967-c6e9210fd8a5) **Desktop (please complete the following information):** - OS: [e.g. iOS] - Browser [e.g. chrome, safari] - Version [e.g. 22] **Smartphone (please complete the following information):** - Device: [e.g. iPhone6] - Pixel 3 - OS: [e.g. iOS8.1] Android - Browser [e.g. stock browser, safari]- Chrome - Version [e.g. 22] **Cause of Bug, If Known** **Process for Logging a Bug:** * Complete the above information * Add a severity tag (Critical, High Severity, Medium Severity or Low Severity). See below for priority definition. **Severity Definition:** * Critical Defect Blocks entire system's or module’s functionality No workarounds available Testing cannot proceed further without bug being fixed. * High-severity Defect Affects key functionality of an application There's a workaround, but not obvious or easy App behaves in a way that is strongly different from the one stated in the requirements * Medium-severity Defect A minor function does not behave in a way stated in the requirements. Workaround is available and easy * Low-severity Defect Mostly related to an application’s UI Doesn't need a workaround, because it doesn't impact functionality **FOR ENGINEERING TEAM ONLY** Bug Resolution Steps: - [ ] Determine why the bug wasn't caught by a test. - [ ] Determine if an automated test needs to fixed, expanded or created. If unsure, bring in others to discuss. - [ ] Determine if a manual test needs to be fixed, expanded or created. If unsure, bring in others to discuss. - [ ] If needed, automated test is created. - [ ] If needed, manual test is created. - [ ] Reason for bug has been documented. - [ ] Fix has been deployed to dev environment. - [ ] Fix has been deployed to the stage environment. - [ ] Bug has been tested in staging (UX or Engineering).<issue_closed> Status: Issue closed
clearlinux/distribution
977293064
Title: Is managing virtual machines through the cockpit-bundle on this distro possible? Question: username_0: Ive just done a fresh install of clear linux on my bare metal machine to test the distro. Ive also installed almost all virtuliziation packages with swupd e.g. - kvm-host - kvm-host-extras - virt-viewer - virt-manager - cockpit - sysadmin-basic - sysadmin-remote (I am missing the cockpit-machines bundle?) and enabled the cockpit service like shown on their website: https://cockpit-project.org/running.html sudo systemctl enable --now cockpit.socket There seem to be some open issues regarding cockpit and virtual machines on this issue tracker. https://github.com/clearlinux/distribution/issues/2101 https://github.com/clearlinux/distribution/issues/2173 So my question would just be: **Is it possible to install cockpit with support to create virtual machines on clear linux right now?** Or am I just missing something? Answers: username_1: @username_0 there are some problems with managing VM's through cockpit on Clear Linux, and they aren't likely to be fixed. In fact I wouldn't advise using Clear Linux for anything other than CI workflows and cloud native workloads.
qmonnet/rbpf
556559296
Title: Incorrect sign extension when moving signed 32 bit immediate into 64 bit register Question: username_0: The following line: https://github.com/qmonnet/rbpf/blob/ceb7fa67946a7a6e9cff5a4e03ae721a1ecf10b6/src/lib.rs#L481 Should probably be: ```rust ebpf::MOV32_IMM => reg[_dst] = insn.imm as u32 as u64, ```
PixelVision8/PixelVision8
653527306
Title: System color re-mapping is off by 1 Question: username_0: Need to look into why the system colors are copied over but off by 1 ![image](https://user-images.githubusercontent.com/415666/86959655-37f8de80-c12c-11ea-973f-6d2b82aa82c4.png) ![image](https://user-images.githubusercontent.com/415666/86959671-3e875600-c12c-11ea-95fa-ce0de4a0cd2d.png)<issue_closed> Status: Issue closed
dojot/flowbroker
317378024
Title: "batch" node is needed Question: username_0: It would be nice to have a node with similar functionality as the "batch" node from nodered - it will fire a message whenever X messages are received. This is specially interesting to add new nodes such as "calculate the mean value of this attribute" - which would be performed by, let's say, a "math" node. Answers: username_1: Hi @username_0! Do you have any update on this topic? I really need something like that to Dojot work perfectly with my application. username_0: Hi! About this exact node there's nothing new. But we added a context manager to be used in remote nodes, which might be of your interest. You can save a chunk of data into a context and retrieve it whenever you need it while executing a node. Please, check [this file](https://github.com/dojot/flowbroker/blob/master/lib/ContextHandler.js) for more info. username_2: This issue will be closed due to inactivity Status: Issue closed
openbakery/gradle-xcodePlugin
177132732
Title: Gradle test task failing following update to Xcode 8 Question: username_0: I have an iOS Framework project that is composed of the main Framework target as well as a static library target. I've been running the `gradle test` task on this project with Xcode 7 installed and the tests in the test target having been running as expected. Following my update of Xcode yesterday to the latest version (8), the tests run fine within Xcode but fail when run via the `gradle test` task. I see that the `gradle test` task does manage to launch the simulator but the task fails subsequently with a linking error as follows: ERROR - Linking: Build/sym/Debug-iphonesimulator/JustRideSDK.framework/JustRideSDK Testing failed: "_AbstractTicketDecoder_initialize", referenced from: "_AccountConverters_initialize", referenced from: ... The classes that it's complaining of are those that reside in the static library target. Is anyone else having problems running their tests via the Gradle plugin? Answers: username_1: I have also problems with one project that the tests do not execute. I have the following error in the Session-Tests log: `2016-09-15 12:33:07.921 xcodebuild[94655:387847] Error Domain=IDETestOperationsObserverErrorDomain Code=5 "Early unexpected exit, operation never finished bootstrapping - no restart will be attempted" UserInfo={NSLocalizedDescription=Early unexpected exit, operation never finished bootstrapping - no restart will be attempted}` (You find the Sesson-Test log the the Derived Data directory when you view the ouput in the Console.app) Can you confirm that you have the same issue? username_0: Hey @username_1, this is what I see in the log file in my Derived Data directory: ... 12:49:09.206 xcodebuild[14819:145675] Waiting for test process to launch. 12:49:22.565 xcodebuild[14819:145675] Test operation failure: Test operation was canceled. 12:49:22.565 xcodebuild[14819:145675] _finishWithError:Error Domain=IDETestOperationsObserverErrorDomain Code=3 "Test operation was canceled." UserInfo={NSLocalizedDescription=Test operation was canceled.} didCancel: 1 I suspect the test operation was cancelled for me because of the linking error as pasted in my question earlier but I'm not certain. I'll try running my tests from the command line using the `xcodebuild test ...` command instead of the Gradle task. Will let you know if that reports the same linking error or not. username_0: Just tried running my tests with this command... xcodebuild test -workspace MySDK.xcworkspace -scheme MySDK -destination 'platform=iOS Simulator,name=iPhone 6,OS=9.3' ... and the tests ran successfully. Not sure what's going wrong with the Gradle plugin? username_1: I'm wondering... You say you use Xcode8, but you run the tests with the iOS 9 simulator. username_0: Hey @username_1, sorry, I should have said: I tried running the tests via the Gradle plugin against the iOS 10.0 Simulator also and got the same linking error. The reason I ran the `xcodebuild test ...` command against the iOS 9.3 Simulator is because my tests are failing when run against the iOS 10.0 Simulator but that's for reasons independent of the Gradle plugin. username_1: Have you tried the 0.14.2-develop version? username_2: I also have an issue with my test task failing with xcode 8. I get the following when attempting to run my tests: :xcodetest Testing failed: Command failed due to signal: Segmentation fault: 11 These tests do run correctly in xcode8 using the same simulators. How do we use the 0.14.2-develop version? I have tried classpath "org.openbakery:xcode-plugin:0.14.0.develop.+" and classpath "org.openbakery:xcode-plugin:0.14.2.develop.+" and neither have made a difference for me. username_1: @username_2 can you run the `gradle` command with `-debug` and post (or mail me) the last part of the log output, so that I can see what is wrong. username_2: Command: gradle test -debug Simulator: iPhone 6s iOS 10 Last part of debug output: 09:56:48.073 [INFO] [org.openbakery.CommandRunner] <unknown>:0: error: unable to execute command: Segmentation fault: 11 09:56:48.073 [INFO] [org.openbakery.CommandRunner] <unknown>:0: error: compile command failed due to signal (use -v to see invocation) 09:56:48.073 [INFO] [org.openbakery.CommandRunner] === BUILD TARGET SwiftKeychainWrapper OF PROJECT Pods WITH CONFIGURATION dev === 09:56:48.073 [INFO] [org.openbakery.CommandRunner] Check dependencies 09:56:48.073 [INFO] [org.openbakery.CommandRunner] 09:56:48.074 [INFO] [org.openbakery.CommandRunner] Ld /Users/emilyhennessy/workspace-swift/ios/build/obj/Pods.build/dev-iphonesimulator/SwiftKeychainWrapper.build/Objects-normal/x86_64/SwiftKeychainWrapper normal x86_64 09:56:48.074 [INFO] [org.openbakery.CommandRunner] cd /Users/emilyhennessy/workspace-swift/ios/Pods 09:56:48.074 [INFO] [org.openbakery.CommandRunner] export IPHONEOS_DEPLOYMENT_TARGET=8.0 09:56:48.074 [INFO] [org.openbakery.CommandRunner] export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/emilyhennessy/Library/Android/sdk/platform-tools:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin" 09:56:48.074 [INFO] [org.openbakery.CommandRunner] /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.0.sdk -L/Users/emilyhennessy/workspace-swift/ios/build/sym/dev-iphonesimulator/SwiftKeychainWrapper -F/Users/emilyhennessy/workspace-swift/ios/build/sym/dev-iphonesimulator/SwiftKeychainWrapper -filelist /Users/emilyhennessy/workspace-swift/ios/build/obj/Pods.build/dev-iphonesimulator/SwiftKeychainWrapper.build/Objects-normal/x86_64/SwiftKeychainWrapper.LinkFileList -install_name @rpath/SwiftKeychainWrapper.framework/SwiftKeychainWrapper -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -mios-simulator-version-min=8.0 -Xlinker -object_path_lto -Xlinker /Users/emilyhennessy/workspace-swift/ios/build/obj/Pods.build/dev-iphonesimulator/SwiftKeychainWrapper.build/Objects-normal/x86_64/SwiftKeychainWrapper_lto.o -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator -Xlinker -add_ast_path -Xlinker /Users/emilyhennessy/workspace-swift/ios/build/obj/Pods.build/dev-iphonesimulator/SwiftKeychainWrapper.build/Objects-normal/x86_64/SwiftKeychainWrapper.swiftmodule -framework Foundation -single_module -compatibility_version 1 -current_version 1 -Xlinker -dependency_info -Xlinker /Users/emilyhennessy/workspace-swift/ios/build/obj/Pods.build/dev-iphonesimulator/SwiftKeychainWrapper.build/Objects-normal/x86_64/SwiftKeychainWrapper_dependency_info.dat -o /Users/emilyhennessy/workspace-swift/ios/build/obj/Pods.build/dev-iphonesimulator/SwiftKeychainWrapper.build/Objects-normal/x86_64/SwiftKeychainWrapper 09:56:48.074 [INFO] [org.openbakery.CommandRunner] 09:56:48.075 [INFO] [org.openbakery.CommandRunner] Ld /Users/emilyhennessy/workspace-swift/ios/build/obj/Pods.build/dev-iphonesimulator/SwiftKeychainWrapper.build/Objects-normal/i386/SwiftKeychainWrapper normal i386 09:56:48.075 [INFO] [org.openbakery.CommandRunner] cd /Users/emilyhennessy/workspace-swift/ios/Pods 09:56:48.075 [INFO] [org.openbakery.CommandRunner] export IPHONEOS_DEPLOYMENT_TARGET=8.0 09:56:48.075 [INFO] [org.openbakery.CommandRunner] export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/emilyhennessy/Library/Android/sdk/platform-tools:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin" 09:56:48.075 [INFO] [org.openbakery.CommandRunner] /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch i386 -dynamiclib -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.0.sdk -L/Users/emilyhennessy/workspace-swift/ios/build/sym/dev-iphonesimulator/SwiftKeychainWrapper -F/Users/emilyhennessy/workspace-swift/ios/build/sym/dev-iphonesimulator/SwiftKeychainWrapper -filelist /Users/emilyhennessy/workspace-swift/ios/build/obj/Pods.build/dev-iphonesimulator/SwiftKeychainWrapper.build/Objects-normal/i386/SwiftKeychainWrapper.LinkFileList -install_name @rpath/SwiftKeychainWrapper.framework/SwiftKeychainWrapper -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -mios-simulator-version-min=8.0 -Xlinker -object_path_lto -Xlinker /Users/emilyhennessy/workspace-swift/ios/build/obj/Pods.build/dev-iphonesimulator/SwiftKeychainWrapper.build/Objects-normal/i386/SwiftKeychainWrapper_lto.o -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator -Xlinker -add_ast_path -Xlinker /Users/emilyhennessy/workspace-swift/ios/build/obj/Pods.build/dev-iphonesimulator/SwiftKeychainWrapper.build/Objects-normal/i386/SwiftKeychainWrapper.swiftmodule -framework Foundation -single_module -compatibility_version 1 -current_version 1 -Xlinker -dependency_info -Xlinker /Users/emilyhennessy/workspace-swift/ios/build/obj/Pods.build/dev-iphonesimulator/SwiftKeychainWrapper.build/Objects-normal/i386/SwiftKeychainWrapper_dependency_info.dat -o /Users/emilyhennessy/workspace-swift/ios/build/obj/Pods.build/dev-iphonesimulator/SwiftKeychainWrapper.build/Objects-normal/i386/SwiftKeychainWrapper 09:56:48.075 [INFO] [org.openbakery.CommandRunner] 09:56:48.076 [INFO] [org.openbakery.CommandRunner] CreateUniversalBinary /Users/emilyhennessy/workspace-swift/ios/build/sym/dev-iphonesimulator/SwiftKeychainWrapper/SwiftKeychainWrapper.framework/SwiftKeychainWrapper normal i386\ x86_64 09:56:48.076 [INFO] [org.openbakery.CommandRunner] cd /Users/emilyhennessy/workspace-swift/ios/Pods 09:56:48.076 [INFO] [org.openbakery.CommandRunner] export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/emilyhennessy/Library/Android/sdk/platform-tools:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin" 09:56:48.076 [INFO] [org.openbakery.CommandRunner] /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/emilyhennessy/workspace-swift/ios/build/obj/Pods.build/dev-iphonesimulator/SwiftKeychainWrapper.build/Objects-normal/i386/SwiftKeychainWrapper /Users/emilyhennessy/workspace-swift/ios/build/obj/Pods.build/dev-iphonesimulator/SwiftKeychainWrapper.build/Objects-normal/x86_64/SwiftKeychainWrapper -output /Users/emilyhennessy/workspace-swift/ios/build/sym/dev-iphonesimulator/SwiftKeychainWrapper/SwiftKeychainWrapper.framework/SwiftKeychainWrapper 09:56:48.176 [INFO] [org.openbakery.CommandRunner] 09:56:48.254 [INFO] [org.openbakery.CommandRunner] 2016-09-26 09:56:48.250 xcodebuild[8018:54631] Error Domain=IDETestOperationsObserverErrorDomain Code=3 "Test operation was canceled. If you believe this error represents a bug, please attach the log file at /Users/emilyhennessy/workspace-swift/ios/build/derivedData/Logs/Test/D4EC1CFF-4EE4-438E-8883-5B9B39F10FAC/Session-DeviceConXUITests-2016-09-26_095611-DHt05S.log" UserInfo={NSLocalizedDescription=Test operation was canceled. If you believe this error represents a bug, please attach the log file at /Users/emilyhennessy/workspace-swift/ios/build/derivedData/Logs/Test/D4EC1CFF-4EE4-438E-8883-5B9B39F10FAC/Session-DeviceConXUITests-2016-09-26_095611-DHt05S.log} 09:56:48.255 [INFO] [org.openbakery.CommandRunner] 2016-09-26 09:56:48.251 xcodebuild[8018:54631] Error Domain=IDETestOperationsObserverErrorDomain Code=3 "Test operation was canceled. If you believe this error represents a bug, please attach the log file at /Users/emilyhennessy/workspace-swift/ios/build/derivedData/Logs/Test/D4EC1CFF-4EE4-438E-8883-5B9B39F10FAC/Session-DeviceConXTests-2016-09-26_095611-cCisl2.log" UserInfo={NSLocalizedDescription=Test operation was canceled. If you believe this error represents a bug, please attach the log file at /Users/emilyhennessy/workspace-swift/ios/build/derivedData/Logs/Test/D4EC1CFF-4EE4-438E-8883-5B9B39F10FAC/Session-DeviceConXTests-2016-09-26_095611-cCisl2.log} 09:56:48.274 [INFO] [org.openbakery.CommandRunner] 09:56:48.274 [INFO] [org.openbakery.CommandRunner] Testing failed: 09:56:48.275 [INFO] [org.openbakery.CommandRunner] Command failed due to signal: Segmentation fault: 11 09:56:48.276 [INFO] [org.openbakery.CommandRunner] ** TEST FAILED ** 09:56:48.276 [DEBUG] [org.openbakery.output.TestBuildOutputAppender] printFailureOutput 09:56:48.277 [LIFECYCLE] [org.openbakery.XcodeBuildTask] Testing failed: 09:56:48.278 [LIFECYCLE] [org.openbakery.XcodeBuildTask] Command failed due to signal: Segmentation fault: 11 09:56:48.278 [LIFECYCLE] [org.openbakery.XcodeBuildTask] 0 tests completed 09:56:48.278 [INFO] [org.openbakery.CommandRunner] 09:56:48.278 [INFO] [org.openbakery.CommandRunner] 09:56:48.278 [INFO] [org.openbakery.CommandRunner] The following build commands failed: 09:56:48.279 [INFO] [org.openbakery.CommandRunner] CompileSwift normal x86_64 /Users/emilyhennessy/workspace-swift/ios/Pods/CryptoSwift/Sources/CryptoSwift/Generics.swift 09:56:48.279 [INFO] [org.openbakery.CommandRunner] CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler 09:56:48.279 [INFO] [org.openbakery.CommandRunner] (2 failures) 09:56:48.297 [DEBUG] [org.openbakery.CommandRunner] Exit Code: 65 09:56:48.298 [DEBUG] [org.gradle.api.Task] store to test-result.xml 09:56:48.298 [LIFECYCLE] [org.gradle.api.Task] Test Results generated in 0:00:00.001 09:56:48.298 [LIFECYCLE] [org.gradle.api.Task] All 0 tests were successful 09:56:48.299 [DEBUG] [org.gradle.api.internal.tasks.execution.ExecuteAtMostOnceTaskExecuter] Finished executing task ':xcodetest' 09:56:48.299 [LIFECYCLE] [class org.gradle.internal.buildevents.TaskExecutionLogger] :xcodetest FAILED 09:56:48.299 [INFO] [org.gradle.execution.taskgraph.AbstractTaskPlanExecutor] :xcodetest (Thread[Daemon worker Thread 5,5,main]) completed. Took 38.93 secs. 09:56:48.299 [DEBUG] [org.gradle.internal.operations.DefaultBuildOperationWorkerRegistry] Worker root.4 completed (0 in use) 09:56:48.299 [DEBUG] [org.gradle.execution.taskgraph.AbstractTaskPlanExecutor] Task worker [Thread[Daemon worker Thread 5,5,main]] finished, busy: 39.099 secs, idle: 0.002 secs 09:56:48.300 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] 09:56:48.300 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] FAILURE: Build failed with an exception. 09:56:48.300 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] 09:56:48.300 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] * What went wrong: 09:56:48.300 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] Execution failed for task ':xcodetest'. 09:56:48.300 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] > java.lang.Exception: Error attempting to run the unit tests! 09:56:48.301 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] 09:56:48.301 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] * Try: 09:56:48.301 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] Run with --stacktrace option to get the stack trace. 09:56:48.301 [LIFECYCLE] [org.gradle.internal.buildevents.BuildResultLogger] 09:56:48.301 [LIFECYCLE] [org.gradle.internal.buildevents.BuildResultLogger] BUILD FAILED 09:56:48.301 [LIFECYCLE] [org.gradle.internal.buildevents.BuildResultLogger] 09:56:48.301 [LIFECYCLE] [org.gradle.internal.buildevents.BuildResultLogger] Total time: 40.783 secs username_2: command: gradle build -debug simulator: iPhone 6s 10.1 log output: `15:38:15.968 [INFO] [org.openbakery.CommandRunner] 2016-09-26 15:38:15.968 xcodebuild[30367:187800] Error Domain=IDETestOperationsObserverErrorDomain Code=3 "Test operation was canceled. If you believe this error represents a bug, please attach the log file at workspace-swift/ios/build/derivedData/Logs/Test/C20C08F3-68B6-4C46-B4C3-6B9044656EEE/Session-Tests-2016-09-26_153658-ph7U8O.log" UserInfo={NSLocalizedDescription=Test operation was canceled. If you believe this error represents a bug, please attach the log file at /workspace-swift/ios/build/derivedData/Logs/Test/C20C08F3-68B6-4C46-B4C3-6B9044656EEE/Session-Tests-2016-09-26_153658-ph7U8O.log} 15:38:15.992 [INFO] [org.openbakery.CommandRunner] 15:38:15.992 [INFO] [org.openbakery.CommandRunner] Testing failed: 15:38:15.992 [INFO] [org.openbakery.CommandRunner] Command failed due to signal: Segmentation fault: 11 15:38:15.993 [INFO] [org.openbakery.CommandRunner] ** TEST FAILED ** 15:38:15.993 [DEBUG] [org.openbakery.output.TestBuildOutputAppender] printFailureOutput 15:38:15.996 [LIFECYCLE] [org.openbakery.XcodeBuildTask] Testing failed: 15:38:15.996 [LIFECYCLE] [org.openbakery.XcodeBuildTask] Command failed due to signal: Segmentation fault: 11 15:38:15.997 [LIFECYCLE] [org.openbakery.XcodeBuildTask] 0 tests completed 15:38:15.997 [INFO] [org.openbakery.CommandRunner] 15:38:15.998 [INFO] [org.openbakery.CommandRunner] 15:38:15.998 [INFO] [org.openbakery.CommandRunner] The following build commands failed: 15:38:15.998 [INFO] [org.openbakery.CommandRunner] CompileSwift normal i386 /workspace-swift/ios/Pods/CryptoSwift/Sources/CryptoSwift/Generics.swift 15:38:15.998 [INFO] [org.openbakery.CommandRunner] CompileSwiftSources normal i386 com.apple.xcode.tools.swift.compiler 15:38:15.998 [INFO] [org.openbakery.CommandRunner] (2 failures) 15:38:16.016 [DEBUG] [org.openbakery.CommandRunner] Exit Code: 65 15:38:16.017 [DEBUG] [org.gradle.api.Task] store to test-result.xml 15:38:16.018 [LIFECYCLE] [org.gradle.api.Task] Test Results generated in 0:00:00.001 15:38:16.018 [LIFECYCLE] [org.gradle.api.Task] All 0 tests were successful 15:38:16.018 [DEBUG] [org.gradle.api.internal.tasks.execution.ExecuteAtMostOnceTaskExecuter] Finished executing task ':xcodetest' 15:38:16.018 [LIFECYCLE] [class org.gradle.internal.buildevents.TaskExecutionLogger] :xcodetest FAILED 15:38:16.019 [INFO] [org.gradle.execution.taskgraph.AbstractTaskPlanExecutor] :xcodetest (Thread[Daemon worker Thread 3,5,main]) completed. Took 1 mins 19.468 secs. 15:38:16.019 [DEBUG] [org.gradle.internal.operations.DefaultBuildOperationWorkerRegistry] Worker root.4 completed (0 in use) 15:38:16.019 [DEBUG] [org.gradle.execution.taskgraph.AbstractTaskPlanExecutor] Task worker [Thread[Daemon worker Thread 3,5,main]] finished, busy: 1 mins 19.618 secs, idle: 0.002 secs 15:38:16.020 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] 15:38:16.020 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] FAILURE: Build failed with an exception. 15:38:16.020 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] 15:38:16.020 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] * What went wrong: 15:38:16.020 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] Execution failed for task ':xcodetest'. 15:38:16.021 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] > java.lang.Exception: Error attempting to run the unit tests! 15:38:16.021 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] 15:38:16.021 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] * Try: 15:38:16.021 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] Run with --stacktrace option to get the stack trace. 15:38:16.021 [LIFECYCLE] [org.gradle.internal.buildevents.BuildResultLogger] 15:38:16.021 [LIFECYCLE] [org.gradle.internal.buildevents.BuildResultLogger] BUILD FAILED 15:38:16.021 [LIFECYCLE] [org.gradle.internal.buildevents.BuildResultLogger] 15:38:16.021 [LIFECYCLE] [org.gradle.internal.buildevents.BuildResultLogger] Total time: 1 mins 21.133 secs` username_1: Looks like that the simulator can be launched or crashes. Can you try to shut down the simulator first and then run a "gradle simCreate" so that all the simualtors are recreated and try the build again. username_2: I get the same results after running 'gradle simCreate'. I have also tried on a 9.3 simulator and a 10.1 beta simulator with the same results. username_1: And using Xcode 8 compiling and running the unit tests works? What does the log file say that in `derivedData/Logs/Test...` username_2: I have since upgraded to xcode 8.1 beta and I have cocoapods version 1.1.0.rc.2. Compiling and running unit tests works with 8.1 and it previously worked with 8. I am also able to successfully run tests using fastlane with the command 'fastlane test'. I can build with gradle, but I cannot test with gradle. My derivedData/Logs/Test contains: ``` 10:19:48.587 xcodebuild[1545:10916] Beginning test session Tests-750B3B03-AAAB-4D2C-BC4F-77C031C0E4AA at 2016-09-27 10:19:48.585 with Xcode 8T29o on target <DVTiPhoneSimulator: 0x7fc73bf08860> { SimDevice: SimDevice : iPhone 6s (6A2B5856-1A2D-4808-9E1B-17D0EC5BD78B) : state={ Booted } deviceType={ SimDeviceType : com.apple.CoreSimulator.SimDeviceType.iPhone-6s } runtime={ SimRuntime : 10.1 (14B54) - com.apple.CoreSimulator.SimRuntime.iOS-10-1 } } (10.1 (14B54)) 10:19:48.587 xcodebuild[1545:10916] /Applications/Xcode-beta.app/Contents/Developer/usr/bin/xcodebuild -scheme dev -workspace AppName.xcworkspace -configuration dev CODE_SIGN_IDENTITY= CODE_SIGNING_REQUIRED=NO -destination name=iPhone 6s -derivedDataPath /workspace-swift/ios/build/derivedData DSTROOT=/workspace-swift/ios/build/dst OBJROOT=/workspace-swift/ios/build/obj SYMROOT=/workspace-swift/ios/build/sym SHARED_PRECOMPS_DIR=/workspace-swift/ios/build/shared -enableCodeCoverage yes test 10:19:48.587 xcodebuild[1545:10916] Launching with Xcode.IDEFoundation.Launcher.PosixSpawn 10:19:48.590 xcodebuild[1545:10916] Initializing test infrastructure. 10:19:48.590 xcodebuild[1545:10919] 6A2B5856-1A2D-4808-9E1B-17D0EC5BD78B: Registered for sim device notification, got token 4 10:19:48.590 xcodebuild[1545:10919] 6A2B5856-1A2D-4808-9E1B-17D0EC5BD78B: Unregistering for sim device notification with token 4 10:19:48.590 xcodebuild[1545:10919] Sim iPhone 6s is booted (state = 3) 10:19:48.590 xcodebuild[1545:10919] Calling -[SimDevice getenv:error:] for TESTMANAGERD_SIM_SOCK 10:19:48.591 xcodebuild[1545:10919] Returning /private/tmp/com.apple.launchd.tMf31lx3td/com.apple.testmanagerd.unix-domain.socket for TESTMANAGERD_SIM_SOCK 10:19:48.591 xcodebuild[1545:10919] Sim iPhone 6s has testmanagerd socket at /private/tmp/com.apple.launchd.tMf31lx3td/com.apple.testmanagerd.unix-domain.socket 10:19:48.591 xcodebuild[1545:10919] Connected socket 33 to testmanagerd for Sim iPhone 6s 10:19:48.592 xcodebuild[1545:10919] Creating the test bundle connection. 10:19:48.592 xcodebuild[1545:10919] Listening for proxy connection request from the test bundle (all platforms) 10:19:48.592 xcodebuild[1545:10919] Resuming the connection. 10:19:48.593 xcodebuild[1545:10919] Test connection requires daemon assistance. 10:19:48.598 xcodebuild[1545:10916] Received Ready from iOSSimulator 10:19:48.598 xcodebuild[1545:10916] Sending notification: NSConcreteNotification 0x7fc73c30f7d0 {name = com.apple.iphonesimulator.startSession; userInfo = { deviceUDID = "6A2B5856-1A2D-4808-9E1B-17D0EC5BD78B"; }} 10:19:48.783 xcodebuild[1545:10916] Starting test session with ID <__NSConcreteUUID 0x7fc73c1f6ce0> 750B3B03-AAAB-4D2C-BC4F-77C031C0E4AA 10:19:48.783 xcodebuild[1545:10916] Checking test manager availability..., will wait up to 120s 10:19:50.090 xcodebuild[1545:10970] testmanagerd handled session request. 10:19:50.091 xcodebuild[1545:10916] Waiting for test process to launch. 10:20:14.292 xcodebuild[1545:10916] Test operation failure: Test operation was canceled. 10:20:14.292 xcodebuild[1545:10916] _finishWithError:Error Domain=IDETestOperationsObserverErrorDomain Code=3 "Test operation was canceled." UserInfo={NSLocalizedDescription=Test operation was canceled.} didCancel: 1 ``` username_0: Hi @username_1, I just tried using the current development version of the plugin but unfortunately I'm seeing the same error message as describe earlier in this thread. username_1: Does this issue also occur when you create a new project? If not can you create example project that has this problem. My problem is that I cannot reproduce this issue, therefor it is hard to guess what the problem is. username_0: @username_1: Sure, I'll make a new project that demonstrates the problem. Watch this space. username_3: I'm having the same issue. Last week everything worked fine. Now that i have Unit-Tests in Swift instead of obj-C the test won't run. Any update? username_1: As I said, I cannot reproduce this issue. If someone provide an example project where I can reproduce this issue, I can work on it. username_0: Apologies for the delay in putting together a project that demonstrates this error. It's on my todo list. username_4: FYI: I had the following error when running a test target on Jenkins, but not when running it directly in Xcode. As it turns out, you need to copy your frameworks in a copy files phase for test targets... xcodebuild[75962:9097252] Error Domain=IDETestOperationsObserverErrorDomain Code=5 "Early unexpected exit, operation never finished bootstrapping - no restart will be attempted" UserInfo={NSLocalizedDescription=Early unexpected exit, operation never finished bootstrapping - no restart will be attempted} username_0: @username_4: good to hear you got it working! What values did you put in for "Destination", "Subpath" etc in the "Copy Files" Build Phases setting that you added? I've attached a screenshot of my project structure (see below). As you can see, my test target links to the "ShardCode" and "TestContracts" static library targets by by means of the "Link Binary With Libraries" Build Phase. And my test target links to the "JustRideSDK" target by means of the "Compile Sources" Build Phase. The tests run and pass when run in Xcode. I get linker errors however when running the tests by means of the Xcode Gradle plugin. (I am yet to compose a small example of the problem. Watch this space!) ![screen shot xcode project](https://cloud.githubusercontent.com/assets/17025131/22290633/e7fb6c68-e2f9-11e6-8047-ca261ef2d551.png) username_4: Destination: Frameworks Rest: blank I had to add the **dynamic frameworks** (e.g. Swift frameworks) in a copy files phase. You don't need to copy static libraries for test targets AFAIK, because they are already linked to your app. So you might have another issue there... username_0: Good news: I've just tried this on Xcode 9.0 with the latest development version of this plugin and it appears to be working again. Status: Issue closed
Opentrons/opentrons
559295492
Title: Eliminate unit test relationships Question: username_0: ## overview API unit test are inconsistent. Many tests are not cleaning up after themselves leading to interdependence. ## current behavior While all the tests pass when the full suite is run, many tests fail when run independently. ## steps to reproduce This is not an exhaustive list. 1: - `pytest tests` - all tests pass - `pytest tests/opentrons/labware/test_pipette.py` - test_dispense_move_to will fail 2: - `pytest tests/opentrons/hardware_control` - all tests pass - `pytest tests/opentrons/protocol_api` - 6 tests fail. 3: - `pytest tests` - all tests pass - `pytest tests/opentrons/hardware_control` - all tests pass - `pytest tests/opentrons/hardware_control` - 2 tests fail ## expected behavior Each test should pass regardless of how it is run (ie by itself, before or after any other test). Answers: username_0: I think we've gradually chipped away at this issue. I cannot reproduce using the steps in the description. #7317 fixes some concrete cases and should close this issue. Status: Issue closed
panel-attack/panel-attack
1122667347
Title: Add extra menu backgrounds and music Question: username_0: The "About custom [feature]" text dump in the Options menu can have a background separate from the usual menu background for that theme. I'd like to see this feature expanded to other "sub-menus" such as the 2P VS Online menu (where one can challenge others). Additionally, I'd like to see (or rather, hear) separate music for these sub-menus based on the currently selected Theme. Status: Issue closed Answers: username_0: The "About custom [feature]" text dump in the Options menu can have a background separate from the usual menu background for that theme. I'd like to see this feature expanded to other "sub-menus" such as the 2P VS Online menu (where one can challenge others). Additionally, I'd like to see (or rather, hear) separate music for these sub-menus based on the currently selected Theme.
Dsumodhee/dsumodhee.github.io
565901435
Title: Therapies / Behaviour change Question: username_0: Whether it is quitting smoking, eating healthily, taking up exercise or weight management, changing a behaviour or routine can improve one’s well being. However, changing behaviour practised over years can be challenging. I design behaviour change interventions with the most up-to-date findings in behaviour change science with theories, behaviour change techniques, motivational interviewing and problem solving techniques to help to adopt health-enhancing behaviours or stop health-damaging ones. I tailor each intervention according to my client’s needs [look Michie book]. If you would like to talk to someone about your behaviour change, please get in touch with me by booking online by clicking below.<issue_closed> Status: Issue closed
TSHEPO-CLOUD/capstone-my-spaceship
958867300
Title: Assign team members Question: username_0: https://github.com/TSHEPO-CLOUD/capstone-my-spaceship **Members:** - TSHEPO DAVID - <NAME>ova Answers: username_1: Hello there Your project is complete! There is nothing else to say other than... it's time to merge it 🛳 Congratulations! 🎉 Happy coding. Cheers! 🚀🚀 If you feel something isn't clear enough you can leave a question or comment in the PR thread. ------ _As described in the [Code reviews limits policy](https://microverse.zendesk.com/hc/en-us/articles/1500004088561) you have a limited number of reviews per project (check the exact number in your Dashboard). If you think that the code review was not fair, you can request a second opinion using [this form](https://airtable.com/shrQAqnBwek5a0O0s)._
ktorio/ktor
428638185
Title: RequestConfig cannot be set on request and client's one is not taken into account Question: username_0: ### Ktor Version 1.1.1 ### Ktor Engine Used(client or server and name) apache-client ### JVM Version, Operating System and Relevant Context JVM 1.8, Win ### Feedback `HttpRequestBuilder` doesn't have `setConfig` method which allows to set `RequestConfig` params. There's possibility to set default RequestConfig on client instance but it *doesn't work neither** (the value is not taken into account and is being overwritten during the request): ``` setDefaultRequestConfig(RequestConfig .custom() .setTargetPreferredAuthSchemes(listOf(AuthSchemes.BASIC)) .build() ) ``` Answers: username_1: Please check the <a href="https://youtrack.jetbrains.com/issue/KTOR-635">following ticket</a> on YouTrack for follow-ups to this issue. GitHub issues will be closed in the coming weeks. username_2: Customization of a default request config works as expected with Ktor 1.6.1: ```kt val client = HttpClient(Apache) { engine { customizeRequest { setSocketTimeout(1) } } } client.get<String>("https://httpbin.org/delay/1") ```
neo4j/neo4j-ogm
145960014
Title: neo4j-ogm 2.0.0 inter-depenencies are broken Question: username_0: neo4j-ogm artifacts are using value of org.neo4j.version as a <version> tag for inter-project dependencies. It's defined to be 2.0.0-SNAPSHOT in parent and was not updated during release. As a result (an example): neo4j-ogm-core 2.0.0 depends on neo4j-ogm-api with 2.0.0-SNAPSHOT version. Please, use ${project.version} instead of ${org.neo4j.version} for dependencies between subprojects, then Maven will correctly handle dependencies between subprojects Answers: username_1: Thanks for bringing this problem to our attention. The 2.0.0 release was borked as a result of this error. The latest and correct release on maven central is now 2.0.1 Status: Issue closed
oracle/vagrant-projects
690346595
Title: VirtualBox-6.1.6-r137129-Win.msi Question: username_0: Hi, kindly I have a problem in WINDOWS10 installing a new version, in a nutshell I can no longer update Vb because the file VirtualBox-6.1.6-r137129-Win.msi, I can't find it anymore, so I can't install the new version and not even uninstall, I also made a mistake I deleted some files, folders and log files manually without solving the problem, I had never had such a problem, the .MSI file downloaded by you, and not it I find more if you can kindly help me to find the .MSI file or give me a solution, in the faq I have not found the solution. Status: Issue closed Answers: username_0: Hi, kindly I have a problem in WINDOWS10 installing a new version, in a nutshell I can no longer update Vb because the file VirtualBox-6.1.6-r137129-Win.msi, I can't find it anymore, so I can't install the new version and not even uninstall, I also made a mistake I deleted some files, folders and log files manually without solving the problem, I had never had such a problem, the .MSI file downloaded by you, and not it I find more if you can kindly help me to find the .MSI file or give me a solution, in the faq I have not found the solution. username_0: No comet username_1: @username_0 It might be better to ask about this in the VirtualBox forums at [https://forums.virtualbox.org](https://forums.virtualbox.org). However, you can download the VirtualBox 6.1.6 installer (VirtualBox-6.1.6-137129-Win.exe) from [https://download.virtualbox.org/virtualbox/6.1.6](https://download.virtualbox.org/virtualbox/6.1.6). Re-running the VirtualBox 6.1.6 installer might fix the problem, depending on what files and folders were deleted. I hope this helps. username_0: Salve, Sig paulNeumann, il mio problema e trovare il file MSI, ho fatto quello che mi ha detto ma non ce stato nessun risultato, ho provato nel forum virtualbox ma nessuno sa come risolvere, una volta mi era successo ho dovuto formattare il pc, siccome non ho intenzione di formattare comunque grazie. username_1: @username_0 You can extract the MSI file from the EXE installer. First, download the VirtualBox 6.1.6 installer (VirtualBox-6.1.6-137129-Win.exe) from [https://download.virtualbox.org/virtualbox/6.1.6](https://download.virtualbox.org/virtualbox/6.1.6). Then run the following command in a Command Prompt or PowerShell window: ``` VirtualBox-6.1.6-137129-Win.exe -extract ``` This will extract the MSI file (VirtualBox-6.1.6-r137129.msi) to a temporary directory and display a message with the directory path (usually `%TEMP%\VirtualBox`). I hope this helps. Status: Issue closed username_0: Buonasera, sig username_1, grazie per avermi risposto, ma il comando non ha funzionato, ma facendo qualche ricerca ho risolto il problema file MSI mancante, e installato la nuova versione quindi questo post si può chiudere.
GovernIB/notib
626609165
Title: Error recurrent quan notifica retorna error en la consulta de notificacions Question: username_0: Error recurrent consultant estat de notificació: ``` 2020-05-28 02:19:44,987 ERROR [es.caib.notib.core.helper.NotificaV2Helper] (taskScheduler-6) Error al consultar l'estat d'un enviament fet amb NotificaV2 (notificacioId=42002, notificaIdentificador=22148335dd6a4085baf2) javax.xml.ws.soap.SOAPFaultException: No se ha podido recuperar el contenido del documento at org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:146) at com.sun.proxy.$Proxy822.infoEnvioV2(Unknown Source) at es.caib.notib.core.helper.NotificaV2Helper.enviamentRefrescarEstat(NotificaV2Helper.java:219) at es.caib.notib.core.helper.NotificaHelper.enviamentRefrescarEstat(NotificaHelper.java:42) ``` S'ha detectat que quan hi ha algun problema amb una notificació, de manera que notifica retorna un error cada cop que es consulta, aquesta notificació es continua consultant de manera indefinida, afegint peticions innecessàries. Es procedirà a definir un nombre de reintents de consulta, en el cas de consulta amb errors consecutius, i una consulta que doni la possibilitat de reemprendre la consulta de l'estat.<issue_closed> Status: Issue closed
Xinyuan-LilyGO/LilyGO-T-SIM7000G
668812616
Title: Very bad GPS signal on new version 20200415 when was perfect in old version 20191227 Question: username_0: Hi, I bought 25x LilyGO-T-SIM7000G Version 20200415, but before that I bought 5x Version 20191227. I made a lot of tests with the old Version 20191227 and everything was working perfect, so I decided to buy 25 of new version to make production tests before buy more 150 boards. Unfortunately in this new version is very hard to getting the GPS signal, including in the middle of the road. My program is very simple, it does: set the baudrate to 115200 wait for +CPIN: READY AT+CFUN=1 AT+CGDCONT=1,"IP","orangeworld" AT+CIPSHUT AT+CGATT=1 AT+SAPBR=3,1,"CONTYPE","GPRS" AT+SAPBR=3,1,"APN","orangeworld" AT+CSTT="orangeworld" AT+SAPBR=1,1 AT+CIICR AT+CGNSPWR=1 AT+CGNSMOD=1,1,1,1 After all this sequence correct, waiting for the OKs, I have a loop every second calling AT+CGNSINF to get gps data. In the old version it's very fast to start to receive valid data, but in this new version the gps data never is valid. Or just a few time I got some valid data. Can you please help me with this problem? Is it possible to buy the old version boards yet? Tks Answers: username_0: Sorry to answer my own question. ``` Modem GPS is the internal GPIO of the SIM7000G module. When using GPS, GPIO4 needs to be set to high level, as shown below: // Set SIM7000G GPIO4 HIGH ,Open GPS power modem.sendAT("+SGPIO=0,4,1,1"); ``` https://github.com/Xinyuan-LilyGO/LilyGO-T-SIM7000G/tree/master/Historical/SIM7000G_20200415 Status: Issue closed
gotcha/ipdb
543463069
Title: Django 3 - RuntimeError: There is no current event loop in thread 'Thread-1'. Question: username_0: ``` ---> 17 document.user = self.request.user 18 document.save() Internal Server Error: /dashboard/ Traceback (most recent call last): File "/Users/juan/Documents/manu/dev/trends/venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 34, in inner response = get_response(request) File "/Users/juan/Documents/manu/dev/trends/venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 113, in _get_response response = wrapped_callback(request, *callback_args, **callback_kwargs) File "/Users/juan/Documents/manu/dev/trends/venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 113, in _get_response response = wrapped_callback(request, *callback_args, **callback_kwargs) File "/Users/juan/Documents/manu/dev/trends/venv/lib/python3.7/site-packages/django/views/generic/base.py", line 71, in view return self.dispatch(request, *args, **kwargs) File "/Users/juan/Documents/manu/dev/trends/venv/lib/python3.7/site-packages/django/views/generic/base.py", line 97, in dispatch return handler(request, *args, **kwargs) File "/Users/juan/Documents/manu/dev/trends/dashboard/views.py", line 17, in post document.user = self.request.user File "/Users/juan/Documents/manu/dev/trends/dashboard/views.py", line 17, in post document.user = self.request.user File "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/bdb.py", line 88, in trace_dispatch return self.dispatch_line(frame) File "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/bdb.py", line 112, in dispatch_line self.user_line(frame) File "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/pdb.py", line 259, in user_line self.interaction(frame, None) File "/Users/juan/Documents/manu/dev/trends/venv/lib/python3.7/site-packages/IPython/core/debugger.py", line 294, in interaction OldPdb.interaction(self, frame, traceback) File "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/pdb.py", line 350, in interaction self._cmdloop() File "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/pdb.py", line 319, in _cmdloop self.cmdloop() File "/Users/juan/Documents/manu/dev/trends/venv/lib/python3.7/site-packages/IPython/terminal/debugger.py", line 97, in cmdloop line = self.pt_app.prompt() # reset_current_buffer=True) File "/Users/juan/Documents/manu/dev/trends/venv/lib/python3.7/site-packages/prompt_toolkit/shortcuts/prompt.py", line 986, in prompt return self.app.run() File "/Users/juan/Documents/manu/dev/trends/venv/lib/python3.7/site-packages/prompt_toolkit/application/application.py", line 788, in run return get_event_loop().run_until_complete(self.run_async(pre_run=pre_run)) File "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/asyncio/events.py", line 644, in get_event_loop % threading.current_thread().name) RuntimeError: There is no current event loop in thread 'Thread-1'. ``` I'm using ipdb==0.12.3 Django==3.0.1 Answers: username_1: This looks like a bad interaction with ``prompt_toolkit`` which is an IPython dependency. You might want to check with IPython team. username_2: In case it helps, I just hit an issue that looks like this in IPython (without any use of Django), and fixed it by upgrading `prompt-toolkit` from `3.0.2` to `3.0.5`. username_3: I was having this issue in IPython, as well. Would bomb my scrollback with this error. Updating `prompt-toolkit` solved the issue. Status: Issue closed
dotnet/spark
442229624
Title: RDD and Parallelize availability in Nuget Package Question: username_0: Is there anyway to manage RDD and Parallelize context by using Nuget Package. It seems they're all "Internal" and not accessible or I'm missing something. Also can't see anything a bit more advance in samples like what Mobius was providing. Answers: username_1: @username_0 : Thank you for starting the discussion. We have a very preliminary support for RDDs but all the APIs are currently internal as you correctly pointed out (we have no plans of opening them up unless there is strong demand for production use cases). Before we started this project, we had several rounds of discussion with PMC members of the Apache Spark community. Their advice was that Dataframes is the future of Apache Spark which is the main reason why we started with Dataframe support (this is also mostly because several query optimizations are possible when users are writing their logic using Dataframes). The reason why we started with RDDs in Mobius was because the support for Dataframes was not that great (context: I was one of the tech leads for Mobius). We had several teams internal to Microsoft who deployed RDD-backed code into production and thought the performance was not that great (this is not surprising considering that Spark has very little logic to optimize RDDs themselves). We'd be very much interested in hearing your thoughts. Could you describe some use cases for which you want to use an RDD as opposed to a Dataframe? username_0: @username_1 :Thank you for the response, The main reason I'd like to use spark is to create a pipeline for parallel processing big batches of data. The calculation is not heavy at all but splitting batches automatically with fault tolerance is my main goal to achieve. But alternatively maybe it's better to have streamer at the beginning to stream batch files and have spark on top of that but still not sure the parallel/ micro batching will happen. As the longest portion of my processing is updating transactions by calling 3rd parties API's its very handy to process micro batches parallely without implementing in-house microservices with similar logic to process them parallely. username_1: Have you considered putting your data into a system such as Kafka and pulling the data through Spark Structured Streaming (we support this [scenario](https://github.com/dotnet/spark/blob/master/examples/Microsoft.Spark.CSharp.Examples/Sql/Streaming/StructuredKafkaWordCount.cs) - you can parallelize your operations this way. username_0: Thanks @username_1 , my plan initially was similar concept and it's great that you support this type of parallel processing.there will be some microservices to initiate/load data to streams and on top of stream we can use spark's advantages to process them rapidly.the goal to achieve here is prevent creating a functionality in generic manner to process micro batches in parallel approach. I wonder how Spark make difference for processing batches with size of less than 10K transactions out of your experience? username_2: Hi @username_1, I see that Kakfa is supported by spark .net but I get an error that it requires a different deployment...Do you know where I can find clear instructions of how to run the Kafka sample code? Thanks username_3: @username_2 can you please file a separate issue and describe what is not clear about instructions, etc.? username_4: I would second this request to support Parallelize and other native functions to create RDDs from data. I also would like to use this to pull data from external bulk APIs, store as objects which I can then batch, transform, and write as Parquet. I have experience with Scala on Spark, but I am working with a .NET team and was hoping to not force them to change languages while also learning the Spark platform. Alternatively I could stream the data into Parquet and ingest it as Parquet files, but all of the libraries to write Parquet from .NET I have tried I find sub-standard and/or overly complex, and since this is a pass-through to Spark on Scala I am fairly certain it would be my best bet to actually create those Parquet files. To be honest, without supporting such functionality I would probably suggest using Scala or Python natively in Spark rather than trying to implement this platform despite the learning curve. username_1: @username_4: Thank you for your detailed feedback! We appreciate it! We are currently investigation introducing [spark.createDataFrame](https://github.com/apache/spark/blob/c26379b446e90b3104ebe36f288be483f613a652/sql/core/src/main/scala/org/apache/spark/sql/SQLContext.scala#L438). This will allow you to still pull data from any source, batch it up and create a dataframe (after which you can continue to write it as Parquet etc.). Will this address your scenario? username_4: @username_1 I assume you mean the flavor where I can specify a collection of Row objects and a schema...in which case, yes, I believe that would be sufficient. Thank you for the reply and additional information. username_1: Great! I'll update you on our investigation soon. Thank you for your patience! Status: Issue closed username_3: Closing this. We will follow up with #161.
aws-amplify/amplify-js
503329050
Title: Subscriptions not working for authorized types Question: username_0: **Describe the bug** I am following the basic example here: https://aws-amplify.github.io/docs/cli-toolchain/graphql#authorizing-subscriptions When if I turn subscription level to public everything works fine. If not, and I provide an owner as described in the example, it crashes my react native app. **To Reproduce** https://aws-amplify.github.io/docs/cli-toolchain/graphql#authorizing-subscriptions + react native app with something like this: ``` import { API, graphqlOperation } from 'aws-amplify'; const onCreateTodo = `subscription OnCreateTodo($owner: String!) { onCreateTodo(owner: $owner) { id createdAt } } `; const subscription = API.graphql( graphqlOperation(onCreateTodo) ).subscribe({ next: (todoData) => console.log(todoData) }); ``` **Expected behavior** Not to get an exception. **Screenshots** ![image](https://user-images.githubusercontent.com/24530625/66299220-f343cc80-e8a7-11e9-9f94-ace5d03df9ab.png) ![image](https://user-images.githubusercontent.com/24530625/66299263-05be0600-e8a8-11e9-9561-1e1e124e1bab.png) **Smartphone (please complete the following information):** iOS 13.1 ![image](https://user-images.githubusercontent.com/24530625/66299335-29814c00-e8a8-11e9-8ab1-ebb3bae2da37.png) **Sample code** just the code above plus a simple model as described in the link provided. ``` type Todo @model @auth(rules: [ { allow: owner } ]) { id: ID! owner: String } ``` Answers: username_0: Please Ignore. Ugh. I was passing a username that's not the same as the authenticated one. Status: Issue closed
Codeception/Codeception
139306913
Title: Code highlight issues in codeception.com Question: username_0: @username_1 I just noticed that some css may be broken, see: ![capture 2016-03-02 at 16 31 45](https://cloud.githubusercontent.com/assets/1375475/13606199/6a34887a-e54b-11e5-9ccd-4b9e31d112db.png) at: http://codeception.com/docs/07-AdvancedUsage Status: Issue closed Answers: username_1: Thanks. Fixed
eric-yyjau/paperNotes
470059570
Title: Semi-Supervised Classification with Graph Convolutional Networks Question: username_0: [1609.02907] Semi-Supervised Classification with Graph Convolutional Networks https://arxiv.org/abs/1609.02907 <NAME>, <NAME> - arXiv preprint arXiv:1609.02907, 2016 ![image](https://user-images.githubusercontent.com/17765629/61500090-93134d80-a97e-11e9-9cb3-bfa5dafb7d88.png) Answers: username_0: - Tutorials How to do Deep Learning on Graphs with Graph Convolutional Networks https://towardsdatascience.com/how-to-do-deep-learning-on-graphs-with-graph-convolutional-networks-7d2250723780 How to do Deep Learning on Graphs with Graph Convolutional Networks https://towardsdatascience.com/how-to-do-deep-learning-on-graphs-with-graph-convolutional-networks-62acf5b143d0
ikedaosushi/tech-news
342935638
Title: PSIRT Framework のご紹介 Question: username_0: PSIRT Framework &#12398;&#12372;&#32057;&#20171;<br> &#12371;&#12435;&#12395;&#12385;&#12399;&#12290;&#12475;&#12461;&#12517;&#12522;&#12486;&#12451;&#23460;&#12398;&#20234;&#34276;&#12391;&#12377;&#12290; &#26152;&#24180;&#12363;&#12425;&#21462;&#12426;&#32068;&#12435;&#12391;&#12365;&#12383; PSIRT Framework&#65288;&#12489;&#12521;&#12501;&#12488;&#29256;&#65289;&#12434;&#26085;&#26412;&#35486;&#12395;&#25220;&#35379;&#12375;&#12383;&#25104;&#26524;&#29289;&#12364;&#20844;&#38283;&#12373;&#12428;&#12414;&#12375;&#12383;&#12398;&#12391;&#12289; &#26412;&#12502;&#12525;&#12464;&#12391;&#12289;&#12372;&#32057;&#20171;&#12356;&#12383;&#12375;&#12414;&#12377;&#12290;<br> https://ift.tt/2L3eIqu
ctrlplusb/easy-peasy
510716935
Title: How to use thunkOn middleware to get error details? Question: username_0: Hi, this is a question. How can I use thunkOn middleware and stage **failType** of target to get error detail? Thanks. Answers: username_1: Hey @username_0 The `target` parameter for listeners (`actionOn`/`thunkOn`) will contain an error for a **failType**. See the [respective docs here](https://easy-peasy.now.sh/docs/api/listeners.html). Status: Issue closed
fullcalendar/fullcalendar
737729439
Title: Calendar crashes when there is only one slot per day Question: username_0: When there is only one slot per day, the calendar crashes and becomes unusable. ![Screenshot from 2020-11-06 11-55-56](https://user-images.githubusercontent.com/10051373/98366989-28839680-2035-11eb-8c9e-b40eaac4691c.png) I had a quick view on the code. The problem lies in the class TimeColsSlatsCoords.ts. There the the following of method computeTimeTop(duration: Duration) delivers an NPE let slotDurationMs = slatMetas[1].date.valueOf() - slatMetas[0].date.valueOf() // we assume dates are uniform Obviously, this happens when there is only a single slot per day. A revision is required here since this very common use case cannot be excluded!
scala/bug
220105978
Title: resetLocalAttrs does not work with existential types Question: username_0: ```scala Welcome to Scala version 2.10.3 (Java HotSpot(TM) 64-Bit Server VM, Java 1.7.0_45). Type in expressions to have them evaluated. Type :help for more information. scala> object Mover { | import scala.reflect.macros.Context | def moveTreeMacro(c: Context)(e: c.Expr[Any]): c.Expr[Any] = { | import c._ | import c.universe._ | val ee = c.Expr(c.resetLocalAttrs(e.tree)) | reify { | new AnyRef { | def moved = { | ee.splice | } | } | } | } | import scala.language.experimental.macros | def moveTree(e: Any): Any = macro moveTreeMacro | } defined module Mover scala> trait Container[+A] defined trait Container scala> case class ContainerImpl[A](value: A) extends Container[A] defined class ContainerImpl scala> Mover.moveTree { | val buf: Seq[_] = null | val c = ContainerImpl(buf(0)) | } <console>:14: error: type mismatch; found : (some other)_$1(in value buf) required: _$1(in value buf) val c = ContainerImpl(buf(0)) ^ ``` Answers: username_1: consolidating here: * https://github.com/scala/bug/issues/8825 (same, but for unapplySeq) * https://github.com/scala/bug/issues/8505 (same, but for local case classes)
PublicHealthDynamicsLab/FRED
180082553
Title: Use GNU C++ compiler instead of ANSI C++ Question: username_0: I wasn't able to build FRED using cygwin without changing the compiler for the following lines in FRED/src/Makefile: lines 105, 108, 110, 172, 173, and 176 I just needed to change `-std=c++11` to `-std:gnu++11` and I was then able to make without errors, so I am guessing some of the dependencies are GNU C/C++ exclusive libraries. Also, FRED/bin/fred_rt is hitting errors when I try to run it as-is. Answers: username_1: Hey Terry, Thanks for the cygwin update. As for rt - it is there for our team to verify that we haven't changed anything. However, you are changing compilers, so it is doubtful that the way your compiler generates random numbers is going to be the same as the way clang does on a Mac. I would suggest that if you are able to get FRED to compile and run, then you are fine.
ComparativeGenomicsToolkit/cactus
435543704
Title: out-of-memory error with TrimAndRecurseOnOutgroups Question: username_0: Hi, I am seeing many jobs associated with the TrimAndRecurseOnOutgroups step failing due to lack of memory. I am using Slurm and toil v 3.19. ``` INFO:toil.leader:Issued job 'TrimAndRecurseOnOutgroups' J/1/jobmfa436 with job batch system ID: 62 and cores: 1, disk: 2.0 G, and memory: 3.0 G INFO:toil.leader:Job ended successfully: 'TrimAndRecurseOnOutgroups' J/1/jobmfa436 WARNING:toil.leader:The job seems to have left a log file, indicating failure: 'TrimAndRecurseOnOutgroups' J/1/jobmfa436 WARNING:toil.leader:J/1/jobmfa436 INFO:toil.worker:---TOIL WORKER OUTPUT LOG--- WARNING:toil.leader:J/1/jobmfa436 INFO:toil:Running Toil version 3.19.0-0feb1d4d1b4fc66062fc4dbc5d8f7fb046df39e6. WARNING:toil.leader:J/1/jobmfa436 WARNING:toil.resource:'JTRES_487db7e35980364bd76c90413e988c94' may exist, but is not yet referenced by the worker (KeyError from os.environ[]). WARNING:toil.leader:J/1/jobmfa436 INFO:toil.lib.bioio:Calculating coverage of cigar file /tmp/toil-540d735d-7b74-4320-89a3-3b8ea7c62d05-1e4ee729-0a33-477c-9099-d1a437c00af4/tmpcalaRv/cd8936ec-1b72-4a15-aa45-a1bdb3f592d0/tmpH6Bts9.tmp on /tmp/toil-540d735d-7b74-4320-89a3-3b8ea7c62d05-1e4ee729-0a33-477c-9099-d1a437c00af4/tmpcalaRv/cd8936ec-1b72-4a15-aa45-a1bdb3f592d0/tmpnVJ0ja.tmp, writing to /tmp/toil-540d735d-7b74-4320-89a3-3b8ea7c62d05-1e4ee729-0a33-477c-9099-d1a437c00af4/tmpcalaRv/cd8936ec-1b72-4a15-aa45-a1bdb3f592d0/tmpvNwxXG.tmp WARNING:toil.leader:J/1/jobmfa436 INFO:cactus.shared.common:Running the command ['cactus_coverage', u'/tmp/toil-540d735d-7b74-4320-89a3-3b8ea7c62d05-1e4ee729-0a33-477c-9099-d1a437c00af4/tmpcalaRv/cd8936ec-1b72-4a15-aa45-a1bdb3f592d0/tmpnVJ0ja.tmp', u'/tmp/toil-540d735d-7b74-4320-89a3-3b8ea7c62d05-1e4ee729-0a33-477c-9099-d1a437c00af4/tmpcalaRv/cd8936ec-1b72-4a15-aa45-a1bdb3f592d0/tmpH6Bts9.tmp'] WARNING:toil.leader:J/1/jobmfa436 WARNING:toil.fileStore:LOG-TO-MASTER: Job used more disk than requested. Consider modifying the user script to avoid the chance of failure due to incorrectly requested resources. Job a/2/job9y9jN5/g/tmpBWyPnA-_serialiseJob-stream used 128.38% (2.6 GB [2756931584B] used, 2.0 GB [2147483648B] requested) at the end of its run. WARNING:toil.leader:J/1/jobmfa436 Traceback (most recent call last): WARNING:toil.leader:J/1/jobmfa436 File "/n/home01/lassance/.conda/envs/ENV_CACTUS/lib/python2.7/site-packages/toil/worker.py", line 324, in workerScript WARNING:toil.leader:J/1/jobmfa436 job._runner(jobGraph=jobGraph, jobStore=jobStore, fileStore=fileStore) WARNING:toil.leader:J/1/jobmfa436 File "/n/home01/lassance/.conda/envs/ENV_CACTUS/lib/python2.7/site-packages/cactus/shared/common.py", line 1094, in _runner WARNING:toil.leader:J/1/jobmfa436 super(RoundedJob, self)._runner(jobGraph=jobGraph, jobStore=jobStore, fileStore=fileStore) WARNING:toil.leader:J/1/jobmfa436 File "/n/home01/lassance/.conda/envs/ENV_CACTUS/lib/python2.7/site-packages/toil/job.py", line 1351, in _runner WARNING:toil.leader:J/1/jobmfa436 returnValues = self._run(jobGraph, fileStore) WARNING:toil.leader:J/1/jobmfa436 File "/n/home01/lassance/.conda/envs/ENV_CACTUS/lib/python2.7/site-packages/toil/job.py", line 1296, in _run WARNING:toil.leader:J/1/jobmfa436 return self.run(fileStore) WARNING:toil.leader:J/1/jobmfa436 File "/n/home01/lassance/.conda/envs/ENV_CACTUS/lib/python2.7/site-packages/cactus/blast/blast.py", line 279, in run WARNING:toil.leader:J/1/jobmfa436 mostRecentResultsFile, outgroupCoverage) WARNING:toil.leader:J/1/jobmfa436 File "/n/home01/lassance/.conda/envs/ENV_CACTUS/lib/python2.7/site-packages/cactus/blast/blast.py", line 517, in calculateCoverage WARNING:toil.leader:J/1/jobmfa436 parameters=["cactus_coverage"] + args) WARNING:toil.leader:J/1/jobmfa436 File "/n/home01/lassance/.conda/envs/ENV_CACTUS/lib/python2.7/site-packages/cactus/shared/common.py", line 1038, in cactus_call WARNING:toil.leader:J/1/jobmfa436 raise RuntimeError("Command %s failed with output: %s" % (call, output)) WARNING:toil.leader:J/1/jobmfa436 RuntimeError: Command ['cactus_coverage', u'/tmp/toil-540d735d-7b74-4320-89a3-3b8ea7c62d05-1e4ee729-0a33-477c-9099-d1a437c00af4/tmpcalaRv/cd8936ec-1b72-4a15-aa45-a1bdb3f592d0/tmpnVJ0ja.tmp', u'/tmp/toil-540d735d-7b74-4320-89a3-3b8ea7c62d05-1e4ee729-0a33-477c-9099-d1a437c00af4/tmpcalaRv/cd8936ec-1b72-4a15-aa45-a1bdb3f592d0/tmpH6Bts9.tmp'] failed with output: None WARNING:toil.leader:J/1/jobmfa436 ERROR:toil.worker:Exiting the worker because of a failed job on host holy7b01214.rc.fas.harvard.edu WARNING:toil.leader:J/1/jobmfa436 WARNING:toil.jobGraph:Due to failure we are reducing the remaining retry count of job 'TrimAndRecurseOnOutgroups' J/1/jobmfa436 with ID J/1/jobmfa436 to 0 WARNING:toil.leader:Job 'TrimAndRecurseOnOutgroups' J/1/jobmfa436 with ID J/1/jobmfa436 is completely failed ``` Answers: username_1: Me too. I ended up altering [the code here](https://github.com/ComparativeGenomicsToolkit/cactus/blob/0ac7b8d5c117e4c95486f5ce5e976412d2e2f2f9/src/cactus/blast/blast.py#L257). I changed this: ```python super(TrimAndRecurseOnOutgroups, self).__init__(preemptable=True) ``` to this: ```python memory = 7900000000 super(TrimAndRecurseOnOutgroups, self).__init__(memory=memory, preemptable=True) ``` and that has done the trick for me so far. No warranty of course. username_0: Thanks, I will give this a try username_2: Just wanted to confirm that I had the same problem and this fix worked. I had to give it about twice that much memory for a mammalian genome, though. username_3: Would you create a pull request with this change? username_2: Sure, just did. username_3: Thanks! The new default memory is too high for Travis. Can you come up with a default more similar to what was actually used before. Mark <NAME> <<EMAIL>> writes: > Sure, just did. > > > > On Mon, Sep 16, 2019 at 5:50 PM <NAME> <<EMAIL>> > wrote: > > > > > Would you create a pull request with this change? > > > > <NAME> <<EMAIL>> writes: > > > > Me too. I ended up altering [the code here]( > > https://github.com/ComparativeGenomicsToolkit/cactus/blob/0ac7b8d5c117e4c95486f5ce5e976412d2e2f2f9/src/cactus/blast/blast.py#L257). > > I changed this: > > > > > > > > ```python > > > > super(TrimAndRecurseOnOutgroups, self).__init__(preemptable=True) > > > > ``` > > > > > > > > to this: > > > > > > > > ```python > > > > memory = 7900000000 > > > > super(TrimAndRecurseOnOutgroups, self).__init__(memory=memory, > > preemptable=True) > > > > ``` > > > > > > > > and that has done the trick for me so far. No warranty of course. > > > > > > Just wanted to confirm that I had the same problem and this fix worked. > > I had to give it about twice that much memory for a mammalian genome, > > though. > > > > > > -- > > > You are receiving this because you are subscribed to this thread. > > > Reply to this email directly or view it on GitHub: > > > > > https://github.com/ComparativeGenomicsToolkit/cactus/issues/76#issuecomment-531835161 > > > Me too. I ended up altering the code here. I changed this: > > > > > > super(TrimAndRecurseOnOutgroups, self).__init__(preemptable=True) > > > > > > to this: > > > > > > memory = 7900000000 > > > super(TrimAndRecurseOnOutgroups, self).__init__(memory=memory, > > preemptable=True) > > > > > > and that has done the trick for me so far. No warranty of course. > > > > > > Just wanted to confirm that I had the same problem and this fix worked. > > I had [Truncated] > > > > > > > — > > You are receiving this because you commented. > > Reply to this email directly, view it on GitHub > > <https://github.com/ComparativeGenomicsToolkit/cactus/issues/76?email_source=notifications&email_token=<KEY>#issuecomment-531838499>, > > or mute the thread > > <https://github.com/notifications/unsubscribe-auth/ABLL5JNZIQCGKMZWF7O43ILQJ6TNDANCNFSM4HHMKQTA> > > . > > > > > -- > You are receiving this because you commented. > Reply to this email directly or view it on GitHub: > https://github.com/ComparativeGenomicsToolkit/cactus/issues/76#issuecomment-531846650Sure, just did. > > > > username_2: Sure, just added a new commit. I actually did need all that memory to run it, so of course allocating memory dynamically rather than hard-coding would be ideal, but I don't have enough experience will toil to figure out how to do this easily. I'll try to figure it out at some point. username_1: I spent half a day trying to figure this out (maybe 6 months ago; perhaps things have changed since then), but in the end retreated to editing the code. Perhaps the cactus/toil developers could direct us to the correct approach?
ssciolla/ebook-ident
581828105
Title: Improve publisher matching by considering key words Question: username_0: Sometimes publishers are listed in WorldCat with dramatically different names, which would probably make them fail the Levenshtein Distance thresholds. To improve the matching, we might consider prioritizing matching on proper nouns (e.g. "Princeton" but not "University"), perhaps using a library like `nltk` to determine part of speech.
oeg-upm/epnoi
130330131
Title: Package the Harvester module as Docker image Question: username_0: - Include a code for checking memory leaks that will close the application when free memory is lower than a threshold. - Include the option `--restart=always` in docker image to restart when memory leak occurs. Answers: username_0: Docker-Compose containing the harvester module along with a ftp server: - https://hub.docker.com/u/librairy/dashboard/ Status: Issue closed
yiisoft/yii2
304670265
Title: dropDownList exception on array nested Question: username_0: The render of dropDownList as active field in an active form generate an array to string conversion exception. The same view with the same data structure with version 2.0.12 not generate the same error. The array is structured as follow: `[ $key1 => [ $key11 => $val11, $key12 => $val12, ], $key2 => [ $key21 => $val21, $key22 => $val22, ], ... ]` In the version 2.0.12 the result is a render of a select wich have the options grouped by main key (in the data structure example $key1 and $ke2) Temporary the substitution of the class BaseHtml with the same of the 2.0.12 version solve the problem. ### Additional info | Q | A | ---------------- | --- | Yii version | 2.0.14 | PHP version | 7.0 | Operating system | Ubuntu 16 Answers: username_1: Thank you for the report. Would you like to help us fixing this bug by submitting a pull request? username_0: Yes sure! I'm not sure to know how do a pull request but this is the moment to learn! username_2: Are you able to reproduce with a small example? This works fine for me on 2.0.14.1, ```php echo yii\helpers\Html::activeDropDownList($model, 'test', [ '$key1' => [ '$key11' => '$val11', '$key12' => '$val12', ], '$key2' => [ '$key21' => '$val21', '$key22' => '$val22', ], ]); ``` ![image](https://user-images.githubusercontent.com/1797626/37346269-cdf3a152-26c6-11e8-9823-8468bda87cb2.png) username_2: More data is good :) Can you show the part of the view that renders the dropdown? username_0: `<?= $form->field($model, 'TempleCode')->dropDownList($model->TempleCode, [ 'prompt' => 'text-prompt','class' => 'form-control select2',]) ?>` $form is an instance of ActiveForm widget, follow the dump of $model->TempleCode `array(2) { [140]=> array(14) { ["ASP0000434"]=> string(24) "ASTE SO 140mm C045(BLUE)" ["ASP0000436"]=> string(40) "ASTE SO 140mm C549(DARK RED BLACK HAVAN)" ["ASP0000437"]=> string(25) "ASTE SO 140mm C001(BLACK)" ["ASP0000440"]=> string(29) "ASTE SO 140mm C015(DARK GRAY)" ["ASP0000442"]=> string(28) "ASTE SO 140mm C017(DARK RED)" ["ASP0000444"]=> string(27) "ASTE SO 140mm C010(CRYSTAL)" ["ASP0000446"]=> string(33) "ASTE SO 140mm C069(FLAMED HAVANA)" ["ASP0000459"]=> string(26) "ASTE SO 140mm C009 (WHITE)" ["ASP0000460"]=> string(35) "ASTE SO 140mm C089 (PETROL PATTERN)" ["ASP0000461"]=> string(27) "ASTE SO 140mm C622 (ORANGE)" ["ASP0000463"]=> string(25) "ASTE SO 140mm C624 (BLUE)" ["ASP0000464"]=> string(25) "ASTE SO 140mm C394 (HORN)" ["ASP0000468"]=> string(25) "ASTE SO 140mm C619 (PINK)" ["ASP0000473"]=> string(29) "ASTE SO 140mm C087 (RED POIX)" } [145]=> array(14) { ["ASP0000435"]=> string(33) "ASTE SO 145mm C069(FLAMED HAVANA)" ["ASP0000438"]=> string(27) "ASTE SO 145mm C010(CRYSTAL)" ["ASP0000439"]=> string(25) "ASTE SO 145mm C001(BLACK)" ["ASP0000441"]=> string(28) "ASTE SO 145mm C017(DARK RED)" ["ASP0000443"]=> string(24) "ASTE SO 145mm C045(BLUE)" ["ASP0000445"]=> string(29) "ASTE SO 145mm C015(DARK GRAY)" ["ASP0000447"]=> string(40) "ASTE SO 145mm C549(DARK RED BLACK HAVAN)" ["ASP0000462"]=> string(25) "ASTE SO 145mm C394 (HORN)" ["ASP0000465"]=> string(25) "ASTE SO 145mm C619 (PINK)" ["ASP0000469"]=> string(26) "ASTE SO 145mm C009 (WHITE)" ["ASP0000470"]=> string(35) "ASTE SO 145mm C089 (PETROL PATTERN)" ["ASP0000471"]=> string(27) "ASTE SO 145mm C622 (ORANGE)" ["ASP0000472"]=> string(29) "ASTE SO 145mm C087 (RED POIX)" ["ASP0000474"]=> string(25) "ASTE SO 145mm C624 (BLUE)" } } ` I'm sorry but I'm not able to format better the array. Now I'm not able to reproduce the error because is on a project I'm working but if it is useful for understand I can try to reproduce username_3: Formatted. Check https://guides.github.com/features/mastering-markdown/ username_2: Ok, I'm pretty sure your error is to do with passing an array as an attribute name. ```<?= $form->field($model, 'TempleCode') ... ?>``` If `$model->TempleCode` is an array it won't work in field as it's expecting an attribute name as a string. username_0: Ok but TempleCode is the name of attribute, in the model I've override a init() function to populate the attribute with the possible values for the dropdownList, whith other fields work fine, the only difference is the array structure, the others are simple key => value array. Furthermore with yii2 2.12 this work fine username_2: What type of column is `TempleCode` in the DB? You're mixing things up. The selectable items in the dropdown should be separate. ```php $values = []; // Nested array with values $form->field($model, 'TempleCode')->dropDownList($values, ['prompt' => 'text-prompt', 'class' => 'form-control select2',]) ``` username_0: I think (is only my opinion) that set a default value for the attribute is more clear, in this case I have a list of possible values to chose, is this not possible or not correct in Yii? The database attribute is a varchar(50) username_4: @username_0 I think you are mixing things up, like @username_2 said. You can surely set a default value for attributes, but the value needs to make sense for your application. You said that you override the init() method to populate the TempleCode with the possible values, but TempleCode only need to carry a single code that user will choose in the dropdown (Correct me if I'm wrong); If so I suggest you to refact your model. Remove the part that you are assign TempleCode in model's init() method. And add a method like that in your model: ```php public function getTempleCodeOptions() { // return the array of possible temple code options } ``` and you can build a dropDownList like that: ```php <?= $form->field($model, 'TempleCode')->dropDownList($model->getTempleCodeOptions(), ['prompt' => 'text-prompt','class' => 'form-control select2',]) ?> ``` Status: Issue closed
FusionAuth/fusionauth-issues
640724210
Title: Device Verification URL disappears Question: username_0: ## (Put bug title here) ### Description In the admin UI, the device verification url sometimes disappears. ### Steps to reproduce Steps to reproduce the behavior: 1. Log in to the admin UI 1. Create a new application and save it 1. Edit the application 1. Go to the 'OAuth' tab 1. Check the 'device' checkbox in enabled grants 1. Uncheck the 'authorization code' checkbox 1. The 'device verification url' text box disappears. No errors in the javascript console. ### Expected behavior As long as the device grant is enabled, the 'device verification url' text box should be present. When the device grant is disabled, it should not be. ### Platform This is with FA 1.17.1 running in docker. I see this with Firefox and Safari on a mac.<issue_closed> Status: Issue closed
romainl/vim-qf
323497265
Title: Please make qf#filegroup#NextFile() / qf#filegroup#PreviousFile() mappings optional Question: username_0: The `{` / `}` buffer local mappings are currently not optional, I would like them to be :) There is already a comment `" TODO: allow customization` there, so I'm guessing you already have something planned, but I couldn't find an issue. I tried to convert them to plugin mappings like so: ```` nmap <Plug>(qf_fg_next_file) :<C-u> call qf#filegroup#NextFile()<CR> nmap <Plug>(qf_fg_previous_file) :<C-u> call qf#filegroup#PreviousFile()<CR> ```` but couldn't get them to work after that - possibly because they're defined in `after`? I don't know enough vimscript to fix it. Personally, I prefer for plugins to make no key bindings, but offer me the opportunity to make my own. Answers: username_1: I completely agree. I've already thought about it but found that `<Plug>` mappings don't play well with filetype stuff. Thanks for reminding me about that flaw. username_1: @username_0, @username_2, could you try branch issue#74, please? username_2: Works fine so far for me, but it does prevent the user mapping any other custom functionality to whichever keys they choose. I also wonder about the performance impact of getting and filtering the list of every nmap everytime we call the mapping outside a quickfix window. Vim handles it fine for me, but there might be problems for people with more mappings/slow hardware. username_1: I hate it when plugins show their guts or ask unreasonable coding from their users. In the absence of an actual mapping clash I think I will stick with those two `<Plug>` mappings. username_1: Or I could simply use the same method as with the Ack mappings: hide the feature behind a global variable. Something like: let qf_filegroup_maps = ['{', '}'] This would allow me to keep the mappings in `after/ftplugin/qf.vim` and thus: * return them to their previous simplicity, * avoid clashing with user-defined mappings. I'd prefer exposing `<Plug>` mappings but this seems like an acceptable compromise. username_0: Sorry to say it doesn't work for well for me. I have `[[` and `]]` mapped to indent level movement (with [IndentWise](https://github.com/jeetsukumaran/vim-indentwise)), and I tried your new mappings with it: `nmap ]] <Plug>(qf_next_file)` (`[[` analogous) Expected result: in quickfix / loclist, `qf_(next|previous)_file`, in all other filetypes, indent level movement. Actual result: quickfix / loclist work das expected, but in other filetypes, `[[` reverts back to vim builtin `[[`. Makes sense of course - I overwrite my original mapping with the vim-qf one. The solution from @username_2 with augroup should work for my usecase, and is, in my opinion, reasonable to ask of a user. I think very few people remember all the names of the plugin provided mappings, they check the help and copy from there anyway - letting them copy a 6 line block instead of 2 mappings will not be huge issue. username_1: @username_0, @username_2, can you try again? I didn't update the README and doc but it's easy to test; just add these two lines to your `virmc`: let g:qf_mapping_filegroup_previous = '{' let g:qf_mapping_filegroup_next = '}' username_0: Thank you, that works perfectly for my use case! username_2: The reason I advocated the lower level approach was that it allows less customisation than a plug mapping. For example, with a plug mapping there's the freedom to compose mappings like this, amongst other things. autocmd Vimrc Filetype qf \ nmap <buffer> ) <plug>(qf_fg_next_file) \| nmap <buffer> ( <plug>(qf_fg_previous_file) \| nmap <buffer> } <plug>(qf_fg_next_file)o \| nmap <buffer> { <plug>(qf_fg_previous_file)o Also adding nowait does have the disadvantage that someone might actually want vim to wait for them to complete a multicharacter mapping (though I haven't ever seen an example), With a plug mapping you can add the `<nowait.>` yourself (although you'd still probably have to document that). Status: Issue closed username_1: Done. username_0: Looks great, thanks!
OpenNebula/one
421103657
Title: FSCK doesn't update running quotas Question: username_0: **Description** The FSCK doesn't update any of the running quotas. **To Reproduce** Run FSCK with running quotas. **Expected behavior** Running quotas are updated correctly. **Details** - Affected Component: fsck - Version: development <!--////////////////////////////////////////////--> <!-- THIS SECTION IS FOR THE DEVELOPMENT TEAM --> <!-- BOTH FOR BUGS AND ENHANCEMENT REQUESTS --> <!-- PROGRESS WILL BE REFLECTED HERE --> <!--////////////////////////////////////////////--> ## Progress Status - [ ] Branch created - [ ] Code committed to development branch - [ ] Testing - QA - [ ] Documentation - [ ] Release notes - resolved issues, compatibility, known issues - [ ] Code committed to upstream release/hotfix branches - [ ] Documentation committed to upstream release/hotfix branches Answers: username_0: PRs to merge: OpenNebula/one: https://github.com/OpenNebula/one/pull/3251 OpenNebula/docs: https://github.com/OpenNebula/docs/pull/596 OpenNebula/development: https://github.com/OpenNebula/development/pull/608 Status: Issue closed
systemjs/systemjs
230345956
Title: module loading order is messed up Question: username_0: I have a file and module (`storage.js`) that merely reexports functions from several other modules - to create a single namespace for 3rd party apps using the library and to only export the functions they should see (internally the modules export more). I got `undefined` for some of those reexports because apparently those modules were loaded (and run) *after* the reexporting module. That itself already is strange since no other module anywhere imports that reexporting module, so that should be the last one that gets loaded (and run). I added a console log statement "module-name-1" at the top of each module (all those imported into `storage.js` as well as into each of those modules), and "module-name-2" at the very end. Inside `storage.js` just after its `require()` statements I have a log statement that shows the names exported by each module. Here is what I get when I run the code in node.js (the code is system-independent, runs on the browser just as fine): ``` storage-base-common-1 storage-base-common-2 storage-unversioned-objects-1 storage-unversioned-objects-2 storage-1 storage-versioned-objects-1 storage-versioned-objects-2 storage-plan-1 storage-plan-2 [ 'CRYPTO_HASH_RE', 'CREATION_STATUS', 'StorageError', 'FileNotFoundError', 'createTempFileName' ] [ 'storeStream', 'getReadStream', 'storeUTF8Clob', 'getFileType' ] [ 'storeUnversionedObject', 'storeSystemObject', 'getObjectAsString', 'getObjectAsObject', 'getObjectAsObjectWithType', 'getSystemMap' ] [ 'onReverseMapUpdate', 'mapTemplate', 'storeVersionedObject', 'getObjectByIdHash', 'getObjectByIdObj', 'getVersionedObject', 'listVersionsByIdHash', 'listVersionsByIdObj' ] [ 'createManyObjects', 'createSingleObject' ] storage-2 ``` So it seems `storage.js` is paused/blocked when the `require` statements are found ("storage-1" is shown but "storage-2" at the end of the module much later). Here is what I get from SystemJS ``` storage-base-common-1 storage-base-common-2 storage-unversioned-objects-1 storage-raw-files-1 storage-1 storage-versioned-objects-1 storage-versioned-objects-2 storage-plan-1 storage-plan-2 ["CRYPTO_HASH_RE", "CREATION_STATUS", "StorageError", "FileNotFoundError", "createTempFileName"] [] [] ["onReverseMapUpdate", "mapTemplate", "storeVersionedObject", "getObjectByIdHash", "getObjectByIdObj", "getVersionedObject", "listVersionsByIdHash", "listVersionsByIdObj"] ["createManyObjects", "createSingleObject"] storage-2 storage-raw-files-2 storage-unversioned-objects-2 ``` Here two modules' exports are `undefined` - because they are only run to completion *after* `storage.js`. What is going on here? Why does it work in node bu not in SystemJS (browser)? By the way, my setup is mentioned in [this (solved and unrelated) SO ticket.](http://stackoverflow.com/questions/43983850/browser-test-setup-how-to-make-already-global-systemjs-module-available-to-requ) Status: Issue closed Answers: username_0: Put on hold why I investigate more...
VROOM-Project/vroom-scripts
911672348
Title: Code formatter Question: username_0: It would be nice to have a code formatter for the python scripts in place in order to set a deterministic standard and focus on content. Answers: username_0: It looks like [Black](https://github.com/psf/black) is a strong candidate for the job. Status: Issue closed
department-of-veterans-affairs/messaging-fe
184547689
Title: Remove "From" field from Compose screen? Question: username_0: Do we actually need to include it in the UI? Not sure it will be included with the API token and data from our authentication stuff, but the sender knows who they are. <img width="817" alt="screen shot 2016-10-21 at 11 57 57 am" src="https://cloud.githubusercontent.com/assets/354277/19608373/b6121b94-9785-11e6-8e01-752e4aeb5b18.png"> Answers: username_1: @username_0 Let's remove it! Status: Issue closed
tomncooper/CSC8101-Documentation
211066782
Title: Cassandra/Streaming: Do we need to do anything about overlapping windows? Question: username_0: In the Cassandra/Streaming courseworks we are dealing with overlapping windows of data... should we be doing anything about the fact that each record will appear in two windows? to avoid everything being doubled? I didn't see any specific requirements on this (though it's possible I missed something). Thanks Answers: username_1: No need to worry about replicated data in overlapping windows. Status: Issue closed username_0: Thanks; out of interest is that because the system handles it for us - or that technically it is an issue but is out of scope for our assignment? username_1: The second one
TyCoding/tumo
397184903
Title: maven报错 Question: username_0: 心态崩了,maven疯狂报错一会又是project那里报cannot reconnect,一会又是Failed to read artifact descriptor for什么什么,一会又是Failure to transfer Answers: username_0: 我把你的.mvn文件夹,还有那堆啥mvnw文件删了再在pom那里删除项目再add as maven project就好了,可能就是你说的本地环境问题 username_1: 请问怎么导入到Iddea中? username_2: 感谢你的分享,我现在导入idea后运行显示Process finished with exit code 0导致web无法访问,请问怎么解决,3Q username_3: 导致wen无法访问是什么意思呢?可以吧错误截图发到QQ交流群中 username_2: 就是运行看起来成功了,但是最后显示了一行 ”Process finished with exit code 0”,在浏览器访问8084端口没有显示,内个配置数据库的yml是灰色的不知道有没有关,我先找下QQ群加一下~
hotosm/tasking-manager
577864489
Title: Check if task is already open in another browser tab Question: username_0: Every time you use the ‘Resume mapping’ button, it loads the task as a new layer. Consider changing to not allow task to be opened if it showing as locked but to give warning message instead and allow user to update EDIT STATUS and Submit to clear the lock. This would alert user that they already have task opened in editor. Answers: username_1: @username_0 It should work that way, because I compose the window name using the project and task ids, but I don't know why it fails. Reference: https://developer.mozilla.org/en-US/docs/Web/API/Window/open I think it'll be deprecated when we integrate iD editor, so I think it's not worth working on that. Status: Issue closed username_0: Agreed. Thanks.
learningequality/kolibri
839061307
Title: Implement integrity check of job_storage database at startup and clear if broken Question: username_0: ### Observed behavior If something like an unclean shutdown has caused the job_storage sqlite file to be in a bad state, then any subsequent queries to the Tasks database may result in errors. ### Expected behavior We should attempt to read any extant jobs in the tasks database at startup, and if it results in an error and is using SQLite, clear the file. ### User-facing consequences Unclean shutdowns that leave the job storage database in an unclean state could prevent the usual 'clear at startup' that we do, and then leave 500s coming from queries to the Task API. Answers: username_1: @username_0 the recent update of making jobs persistent across server restart might have some implications on this bug...? Do we still need to address this issue, since now, we don't clear jobs on startup? username_0: Yes, it is still possible for this to get into this state, this is also in spite of us trying to do some integrity checking on the database at initial startup: https://github.com/learningequality/kolibri/blob/44bf1ed3591321f4b7ef7c4e5c6ceda8c01db7ae/kolibri/core/tasks/main.py#L72 username_1: @username_0 umm, I will look into this deeply tomorrow and I'll report you on slack about a potential fix. Status: Issue closed username_0: ### Observed behavior If something like an unclean shutdown has caused the job_storage sqlite file to be in a bad state, then any subsequent queries to the Tasks database may result in errors. ### Expected behavior We should attempt to read any extant jobs in the tasks database at startup, and if it results in an error and is using SQLite, clear the file. ### User-facing consequences Unclean shutdowns that leave the job storage database in an unclean state could prevent the usual 'clear at startup' that we do, and then leave 500s coming from queries to the Task API. Status: Issue closed
dart-lang/language
776730388
Title: Overriding fields to be final Question: username_0: Consider this code: ```dart class A { bool _temp; bool get temp => _temp; set temp(bool value) { print("Changing A.temp to $value"); _temp = value; } A(this._temp); } class B extends A { @override final bool temp; B(this.temp) : super(temp); } void main() { final A a = A(true); a.temp = false; // "Changing A.temp to false" print(a.temp); // false final B b = B(true); b.temp = false; // "Changing A.temp to false" print(b.temp); // true } ``` Based on the print statements, it seems that Dart is referring to A's setter because B doesn't have one. I can confirm this because when I changed B.temp from final to a getter and setter like A has, B's print statements ran instead. But this behavior is unintuitive, and I would expect this to either error or B's getter to return whatever A's setter received. Answers: username_1: The behavior you're describing is, for better or worse, working as intended. A pair of pretty fundamental design decisions made early on with Dart is that: - Setters and getters are almost entirely uncoupled - Fields and setters/getters are interchangeable That said, this seems like a really good candidate for a lint/hint. It feels to me that any time you are: - overriding a setter/getter pair with a final field - overriding a mutable field with a final field you are highly likely to not be doing so intentionally. It's a little less clear if you are overriding only one of a setter/getter pair, but that also seems a little suspect. cc @pq @bwilkerson @username_5 @username_4 @srawlins for thoughts on a hint/lint here? username_0: I believe there actually is a lint for this, although it's very generalized: [overridden_fields](https://dart-lang.github.io/linter/lints/overridden_fields.html). The intended behavior _is_ understandable (which is how I knew where to put the print statements), but I feel since this is SO unintuitive and may not be discovered until there's a bug down the line, maybe this should be a compile-time error? Especially since including `final`, in either the superclass or the subclass will result in undesired behavior. Maybe whenever you override a field with a getter/setter, or override a getter/setter with a field it should be an error? username_2: There can be good reasons for overriding a field, even a mutable field, with a getter (for example to log access, in which case it typically will read `super.field` afterwards, so the field isn't lost). That even makes sense when you only override the one of the getter and setter. There can be reasons to override getters/setters with a field (perhaps the getter/setter is a default implementation which always returns `null` and you're overriding it with a real field). In general, it should never matter whether something is a field or a getter/setter. Making it an error to override a field with getter, but not a getter with a getter, will make it a breaking change for the superclass to change a getter to a field. That should not be a breaking change. All in all, I think we might be able to heuristically detect some undesired cases, but it won't be as simple as disallowing some getter/setter/field override combinations unconditionally. It would have to look at the actual content and context of the overrides, and it would most likely be at most a hint. username_3: I think we can say that Dart is optimized for extensibility and not for constraints when it comes to 'properties'. This choice is supported by the decision to introduce getters and setters implicitly for instance variables (if final: only a getter), and this means that we do _not_ have the rule of thumb (known from, e.g., Java) that every instance variable `T x` must be private and there must be a `T getX()` and/or a `void setX(T)` if it is intended to be accessed from any "non-trivial distance". The `getX`/`setX` declarations could be public, package-private, protected, etc., but the point is that we are protecting the implementation of the property `x` such that we can change our minds about storing a value in memory or computing the value on demand. Dart ensures that we abstract away from this implementation choice. This also means that Dart can use a concise syntax (`o.x` and `o.x = ...`) for computed properties. Constraints weren't prioritized as much. In particular, getters and setters are used uniformly to read and write instance variables, and they may be overridden freely with implicitly induced as well as explicitly written getters/setters. So even the useless or error-prone combinations can be used, e.g., combinations where memory is allocated but never used, because an instance variable is overridden and no super-invocations exist. However, constraints to avoid special cases that are useless or error-prone fit very well as a lint or a hint. They are not in the language specification, and lints can be enabled or disabled, so there is a considerable amount of freedom in the selection and treatment of such undesirable cases. I would consider hinting the situation where storage is allocated and never used: ```dart class A1 { int i; } class A2 extends A1 { int i; } // No invocations of `super.i` getter or setter. class A3 extends A1 { // Again no super-invocations, can't use the storage of `A1.i`. int get i => 42; set i(int value) {} } class A4 extends A1 { int get i => 42; // We can store new values into `A1.i`, but we can't read them. } ``` I guess this amounts to overriding an implicitly induced getter, and never calling it via a super-invocation (in any instance member of that class). This implies that we can't _use_ that storage, even though we may actually be able to store something in there. Similarly, we should probably hint if we can read a particular storage location, but we can't write to it. So it will have to have an initial value from an initializer or from each generative constructor, or it needs to have a nullable type. This case will cover the situation "override a getter/setter (written or implicit) by a final instance variable" mentioned [here](https://github.com/dart-lang/language/issues/1390#issuecomment-754345144), except that it won't complain if both the overridden getter and the overridden setter are invoked in super-invocations somewhere. On the other hand, I don't think it's useful to hint just because a particular implementation is overridden and made uncallable: ```dart class B1 { int get i => /*...something, presumably useful...*/; } class B2 extends B1 { int i; } // OK, even without a super-invocation. class B3 extends B1 { int get i => 43; } // Ditto. ``` username_1: While I agree that there are specific instances that are useful, I also I identified a specific list of combinations that I thought were problematic in my comment above. username_1: To expand a bit on my previous comment: I think the responses are fixating on the "setter/getter" vs "field" aspect, whereas what I think is most relevant is having a thing which affords both setting and getting overridden by a final field. username_4: I agree that the 2 specific cases you described are likely to have few or no false positives. I can't think of a good reason to override a writable property with a final field, but it's easy to do by mistake. If someone has a valid reason to use this pattern and doesn't want to see the hint I think we could allow suppressing it by making the behavior explicit. I'd probably argue for in a code review anyway, even if only as a place to hang a comment. ```dart @override final bool temp; @override // A hopefully convincing argument for using this pattern... set temp(bool value) => super.temp = value; ``` To double check we could search for existing occurrences of this pattern and see if any look intentional. username_0: I think it might be appropriate to use this lint, and just add more details as to **why** it's "bad practice". That is, unless that lint is referring to general OOP principles and not this behavior. username_3: I think [`overridden_fields`](https://dart-lang.github.io/linter/lints/overridden_fields.html) rules out some perfectly meaningful designs, e.g., subclasses where a setter invocation should be intercepted, perhaps because setting the variable should be accompanied by some adjustments to other parts of the state, it should be recorded (logged, added to an undo stack, ...), it should be verified that the new value is appropriate, etc. Similarly, a subclass might have reasons to intercept getter invocations. I think it is unnecessarily limiting to decide up front that these designs are prohibited. ```dart class A { int i; } class B extends A { set i(value) { ... /* interception code: validate, adjust state, ... */ super.i = value; } } ``` This is exactly the reason why I [suggested](https://github.com/dart-lang/language/issues/1390#issuecomment-755005244) that a hint against undesirable overrides should focus on the underlying problem: A storage area is allocated in the object, but it is never used (because we can't write anything into it, or we can write but we can't read anything out of it). The above examples _do_ allow us to read and write the storage, so they won't trigger that hint. username_2: The problematic cases Leaf mentioned above are when overriding a mutable property (getter and setter, maybe only if non-abstract) with a final field. I agree that that does seem awkward. Arguably, it can be just as awkward to override such a property with just a getter, if that getter is oblivious to the field being mutable. It's just harder to detect. Disallowing such an override would mean that adding a setter to a class can break subclasses. That's potentially a good thing, since making a property settable is an important change that subclasses probably need to know about. If they just keep going with a a getter which ignores the setter, things might break. That's true for any API change which can affect the object state. Adding a *method* which can mutate state which was previously immutable can also break subclasses relying on the state not changing. A final field overriding a mutable property is a good heuristic for detecting an oblivious override. It's *probably* a mistake. Lots of other things are also probably mistakes, but not as easily recognizable (although anything shadowing a field getter so that it's no longer accessible in any way, so not referenced by any `super.getter` invocations, is probably also a red flag.) tl;dr: What Erik said. The underlying symptom is state being completely inaccessible. A final field overriding a mutable property is a good place to start looking for that problem. username_5: +1 for linting this. I think the overridden_fields lint is a little too broad but these two cases seem like they are almost always erroneous. username_0: Completely agree with the rest of the points, but just to clarify, the `overriding_fields` lint does not warn against overriding getters or setters, just overriding the field itself. This will not present warnings: ```dart class A { int field = 0; } class B extends A { @override int get field => 1; } ``` But this will: ```dart class A { int field = 0; } class B extends A { @override int field = 1; } ``` username_2: This seems to be converging towards lints or warnings, so should it be moved to the SDK repository?
microsoft/react-native-windows-samples
778316093
Title: The KeyboardProps documentation isn't working in the last RNW build Question: username_0: <!-- Your issue will be triaged by the RNW team according to this process: https://github.com/microsoft/react-native-windows/wiki/Triage-Process --> ## Environment Run the following in your terminal and copy the results here. 1. `npx react-native --version`: 2. `npx react-native info`: System: OS: Windows 10 10.0.18363 CPU: (8) x64 Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz Memory: 9.06 GB / 15.92 GB Binaries: Node: 14.10.0 - C:\Program Files\nodejs\node.EXE Yarn: 1.22.4 - C:\Program Files (x86)\Yarn\bin\yarn.CMD npm: 6.14.8 - C:\Program Files\nodejs\npm.CMD Watchman: Not Found SDKs: Android SDK: Not Found Windows SDK: AllowDevelopmentWithoutDevLicense: Enabled AllowAllTrustedApps: Enabled Versions: 10.0.17763.0, 10.0.18362.0 IDEs: Android Studio: Version 4.1.0.0 AI-201.8743.12.41.6858069 Visual Studio: 16.5.30011.22 (Visual Studio Community 2019) Languages: Java: Not Found Python: 3.8.5 - C:\Python38\python.EXE npmPackages: @react-native-community/cli: ^4.13.0 => 4.13.0 react: 16.9.0 => 16.9.0 react-native: 0.63.0 => 0.63.0 react-native-windows: 0.63.3 => 0.63.3 npmGlobalPackages: *react-native*: Not Found <!-- Consider including this information as well: What SDK version are you building for? Choose from 10.0.15063, 10.0.16299, 10.0.18362, etc. - Target Platform Version(s): What device(s) are you targeting? Choose any from Desktop, Xbox, Hololens) - Target Device(s): Desktop & Xbox Which version of Visual Studio are you using? Specify Visual Studio 2017 or Visual Studio 2019 - Visual Studio Version: Microsoft Visual Studio Community 2019 - Version 16.5.4 Which build configuration are you running? Choose from Debug, DebugBundle, Release, ReleaseBundle - Build Configuration: Debug --> ## Steps To Reproduce Provide a detailed list of steps that reproduce the issue. 1. Create a new project (Or use any project) 2. Use the example code found [here on the API page]( https://microsoft.github.io/react-native-windows/docs/ikeyboardprops-api) ## Expected Results Describe what you expected to happen. Keyboards inputs are accepted. <!-- Troubleshooting If you see build failure on `react-native run-windows`, please try again with 'react-native run-windows --logging' and provide the output. --> ## Snack, code example, screenshot, or link to a repository: Please provide a Snack (https://snack.expo.io/), a link to a repository on GitHub, or provide a minimal code example that reproduces the problem. You may provide a screenshot of the application if you think it is relevant to your bug report. Here are some tips for providing a minimal example: https://stackoverflow.com/help/mcve Answers: username_0: Any chance this can be done ASAP? Our product may be held up entirely without keyboard and gamepad controls. username_1: @username_0 - you might be able to find more recent and fuller set of APIs in this [spec](https://github.com/microsoft/react-native-windows/blob/master/vnext/proposals/active/keyboard-reconcile-desktop.md) while we write up some samples and docs in the website in the coming weeks. username_0: Thank you but this didn't work for us. Is it possible to get some help with this? username_2: @username_0 A few weeks ago, I fixed `onKeyDown` not working for \<View> https://github.com/microsoft/react-native-windows/pull/7406 Let us know if this helps you, and we can close this issue. Status: Issue closed username_2: Verified this works now. Closing. username_2: @username_0 I just realized that my PR was addressing a problem with Pressable - this worked for View all along - can you elaborate what exactly your problem was? I am able to hit breakpoints in the keyDown handler, using the code from the website you linked to.
eXeC64/imv
116932431
Title: dwm doesn't tile imv properly Question: username_0: A user sent this screenshot: http://i.imgur.com/jx8RYST.png We need to figure out why it doesn't tile, and resolve that. Answers: username_0: Installed dwm and did some testing. imv tiled just fine for me. Status: Issue closed username_0: See #44 for details username_0: A user sent this screenshot: http://i.imgur.com/jx8RYST.png We need to figure out why it doesn't tile, and resolve that. username_1: imv-1.2 tiles fine on dwm now :) Status: Issue closed username_0: Wonderful! Thanks for the heads up.
rome/tools
877601377
Title: 🐛 Running update snapshots causing runtime error Question: username_0: │ ^ 405 │ } else { 406 │ throw parser.unexpected({ 7. parseTag (internal/markup/parse.ts:324:17) 8. parseChild (internal/markup/parse.ts:404:9) 9. parseTag (internal/markup/parse.ts:324:17) 10. parseChild (internal/markup/parse.ts:404:9) 11. parseTag (internal/markup/parse.ts:324:17) 12. parseChild (internal/markup/parse.ts:404:9) 13. parseTag (internal/markup/parse.ts:324:17) 14. parseChild (internal/markup/parse.ts:404:9) 15. parseTag (internal/markup/parse.ts:324:17) 16. parseChild (internal/markup/parse.ts:404:9) 17. parseTag (internal/markup/parse.ts:324:17) 18. parseChild (internal/markup/parse.ts:404:9) 19. parseTag (internal/markup/parse.ts:324:17) 20. parseChild (internal/markup/parse.ts:404:9) ℹ You can find the specific test that caused this by running rome test --sync-tests ℹ Terminated execution of event testRun in Worker(server) ⚠ This diagnostic was derived from an internal Rome error. Potential bug, please report if necessary. css-handler > prefix > box-sizing internal/compiler/transforms/compile/index.test.ts tests/cancelled ━━━━━━━━━━━━━━ ✖ Test was cancelled css-handler > prefix > clip-path internal/compiler/transforms/compile/index.test.ts tests/cancelled ━━━━━━━━━━━━━━ ✖ Test was cancelled ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ✔ 10 tests passed ✖ Found 4 problems ``` ``` ## Expected Results - Expect to automatically add tests update snapshots Answers: username_0: \cc @jer3m01 username_0: - Running on Gitpod throwing same error: ![Screenshot_20210506_205433](https://user-images.githubusercontent.com/42062622/117324438-6a3eae00-aead-11eb-829e-b84d653067f6.png) username_1: @username_0 the error says that you don't have a "input.css" file inside the fixtures. Did you make sure you have it? username_0: Yes I verified it, It's automatically generated by that command @username_1 username_1: Could you share a small repo? username_1: Unless you did something that you missed here, the error is expected because there's hasn't been any implementation. The script you launched is used to automatically generate some boilerplate that alone would fail; it needs a correct implementation in order to work. Instead, if you implemented the rule in some way, you could share a repository here. Status: Issue closed username_1: @username_0 by chatting with people on Discord, it turns out that this error is thrown when the rule is not correctly implemented. Make sure that `browserFeaturesKey` is correctly passed, without it, there's an error. username_0: @username_1 can you check this once why updating tests snapshot is failing with errors https://github.com/username_0/tools/commit/73c2b07a134fff1ed4dedb195614dcdf80a149fe username_1: It fails because you're trying to prefix the parameter `unicode-bidi`, instead you need to prefix the value. username_0: Do I have to add `value:` param in `unicode-bidi.ts` ? @username_1 username_1: I'd suggest to check how other similar rules are implemented. [This is an example](https://github.com/rome/tools/blob/main/internal/compiler/transforms/compile/css-handler/prefix/prefixes/image-set.ts) username_0: Thanks @username_1
huridocs/uwazi
361842866
Title: Being able to e2e the template creation is critical! Question: username_0: Recent changes have broken the template creation process. Since this procedure depends on drag-and-drop functionality, there hasn't been an e2e covering this feature. With the current level of complexity, plus the several in-production instances now depending on Uwazi, I believe this need to be a priority. If drag-and-drop testing is not an option, add to template creation a clickable procedure to at least be able to test routes and correct property validation.<issue_closed> Status: Issue closed
IQSS/dataverse.org
52538928
Title: Repository Cards: Responsive Solution Question: username_0: Currently, the cards flip but they take up a lot of screen room and are hard to close on a mobile device. We can investigate this more in January and see if we can figured out a solution. Additionally, the gray card explaining these are repository cards doesn't adjust on a mobile device to fit the screen. Answers: username_1: These cards haven't existed since we've moved to dataverse.org to OpenScholar years ago. Closing. Status: Issue closed
libero/reviewer
710420165
Title: Details page - title should be empty Question: username_0: **Environment**: Any **Steps**: 1. Start a new submission 2. Upload a file where science beam can extract a title 3. On the details page, delete the title, and make changes else where on the page leaving title empty. Wait for autosave. 4. Refresh the page and notice that the title is not empty but the extracted title **Expected outcome**: Title should be empty
ProfStick/12SDD_PseudoExe
649347342
Title: Restructure time Question: username_0: @tynanmatthews @DanTroYer @HunterDJ03 I propose we do a quick but thorough restructure of the project. We - park what we have done in a branch called parked - start working with something more like the agile approach/test-driven develoipment - start with a very simple script and only write sufficient ebnf/lexer/parser to translate that script - make the script and ebnf/lexer/parser increasingly complex in very small steps (sprints) - make the pseudexe script syntax a little tighter because the course specs pseudocode is pretty ugly and inconsistent - keywords in ALL CAPS eg. BEGIN, DISPLAY, FOR, NEXT etc - program names start with upper case - variables start with lower case - strings in double quotes Our aim will still be a language sophisticated enough to print the fibonacci series but in small steps. So stop work until I do the restructure. I will commit all open pull requests to the parked branch and hopefully will have the master branch reorganised in a day or two. Answers: username_0: @tynanmatthews @HunterDJ03 @DanTroYer The restructure is done. We will now work in sprints. The first has been done. I will create solutions to the rest of them that you can view if you want but feel free to try and solve the issues yourselves. For each sprint create a new branch and pull request.
codestates/ds-TIL
707970162
Title: [TIL]이동훈_092420 Question: username_0: :warning: :no_entry_sign: **과제 솔루션 공유 절대 금지** :no_entry_sign: :warning: ## 어려웠던 부분 Kmeans는 n개의 Feature 가 있는 dataSet을 처리할 수 있다. (굳이 PCA를 할 필요는 없지만, 하는 이유는 분명히 있다) ## 더 알고 싶은 부분 / 공부하고 싶은 부분 시각화: 흠... scatterplot을 plt로 할 줄 몰라서 seaborn으로 했다... Span, Basis Norm, Unit Vector의 명확한 차이를 아직 구문하지 못해서, 다음주에 알고 넘어가야겠다. ## 느낀 점 처음에 그냥 KMeans를 하라고해서 뭥미? 이러고 있었는데 막상 PCA를 하지 않은 KMeans와, PCA후 KMeans를 한 그래프를 보고 <img src='https://media.tenor.com/images/4f50c4cd9773f2c4b62880277313e8b5/tenor.gif' width = 200> insight 라고 하기엔 부끄럽지만. 엄청난 insight를 가질수 있게 되었다. (OH, I LOVE DATA SCIENE!) 테이블로만 보았을때 알기 어려울법한 정보를 알 수 있게 되었다. ### 키워드 KMeans Clustering, PCA
helix-toolkit/helix-toolkit
740712261
Title: GetProjectionMatrix of OrthographicCamera - Matrix not invertible when camera "width" has a high value Question: username_0: Hello, i have an issue using an OrthographicCamera. Everything works fine (zoom, pan ...) until camera "width" value gets really high ( e.g. 1000000). If i add a factor, everything works fine. (CameraHelper Line 563) if (orthographicCamera != null) { double xscale = 2.0 / orthographicCamera.Width; xscale = xscale * 1000; double yscale = xscale * aspectRatio; double znear = orthographicCamera.NearPlaneDistance * 1000; double zfar = orthographicCamera.FarPlaneDistance; if (double.IsPositiveInfinity(zfar)) { zfar = znear * 1e5; } double dzinv = 1000.0 / (znear - zfar); var m = new Matrix3D(xscale, 0, 0, 0, 0, yscale, 0, 0, 0, 0, dzinv, 0, 0, 0, znear * dzinv, 1000); return m; } Does this have any side effects or is there a better solution? Thanks Answers: username_1: Maybe try to scale your scene size, otherwise you may hit the floating point accuracy issue.
GrantThorntonETSI/eFile_Reimagined
422898309
Title: Update User in Another Form screen flow Question: username_0: ![image](https://user-images.githubusercontent.com/46028434/54633507-afe25780-4a56-11e9-8f93-3a5333e8826f.png) Answers: username_1: Remove the first question. So the only question is the "Is this for the whole, or park of the mark?" and radio button "Whole" and "In part" Status: Issue closed
confluentinc/confluent-kafka-go
429601184
Title: librdkafka out of sync with confluent-kafka-go Question: username_0: Description =========== So I am running the latest version of confluent-kafka-go and librdkafka. So when I instantiate the producer, I get the following error: ``` confluent-kafka-go requires librdkafka v1.0.0 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html: librdkafka version 0.11.3 (0xb03ff) detected ``` So I though this might be because I installed librdkafka using `apt`. So I built librdkafka from source and did a `apt remove` of the package before this. I still got the same error again. I though maybe the wrong version of librdkafka was getting built. So I explicitly, checked out the latest version of librdkafka before configuring and `make` and `make install`. I checked out `8695b9d63ac0fe1b891b511d5b36302ffc84d4e2`. Still same error. How to reproduce ================ ```go producer, err = kafka.NewProducer(&kafkaConfigs) if err != nil { return errors.Wrap(err, "failed to create Kafka producer") } return nil ``` Checklist ========= Please provide the following information: - [x] confluent-kafka-go and librdkafka version (`LibraryVersion()`): Claims to be version `0.11.3`. - [x] Apache Kafka broker version: KAFKA_VERSION 2.1.1 ZOOKEEPER_VERSION 3.4.13 SCALA_VERSION 2.12 - [x] Client configuration: `ConfigMap{...}` ```go { "bootstrap.servers": fmt.Sprintf("%v:%v", constants.KafkaHost, constants.KafkaPort), } ``` - [x] Operating system: ``` Distributor ID: Ubuntu Description: Ubuntu 18.04.2 LTS Release: 18.04 Codename: bionic ``` - [x] Provide client logs (with `"debug": ".."` as necessary) Not relevant. - [x] Provide broker log excerpts Not relevant. - [x] Critical issue<issue_closed> Status: Issue closed
heroku/heroku-buildpack-grails
833055885
Title: Support for Heroku-18 stack Question: username_0: I get that Grails 2.4.4 has been deprecated for a while, but I have an app written in grails with a client who doesn't want to pay for having it upgraded or migrated. Since yesterday the app started to fail when connecting to the postgress DB and seems related to this https://stackoverflow.com/questions/66623937/heroku-postgres-suddenly-appeared-error. While trying to fix it I'm now unable to deploy any updates to the app (note that the last deploy was on nov 2019 prior to the forced update to Heroku 18). As I'm not an expert in buildpacks, does anyone know what needs to be done to support Heroku 18 and be able to deploy?
philburk/jsyn
278705815
Title: Syntona exports unit voice with two part output Question: username_0: UnitOutputPort on exported Syntona unitVoice has two parts instead of one. Expected behavior: the simple SineVoice attached should have a one part output but has two instead. Note the "public UnitOutputPort voice;" in addition to "public UnitOutputPort output;" in exported source (commented by me) Note also main() method I added which shows that output has two parts [SineVoice.zip](https://github.com/philburk/jsyn/files/1524049/SineVoice.zip) [SineVoice.zip](https://github.com/philburk/jsyn/files/1524050/SineVoice.zip)
doccano/doccano
533158551
Title: annotation graph counts labels and not samples Question: username_0: for any multi-label annotation project, let's say you annotate 10 samples with 30 labels, the graph will show 30 annotations and not 10. this doesn't sound like a reasonable behavior. Answers: username_1: @username_2: Our team has also been confused as to why we observe different completion values for the same project across several accounts (example: 4/847 vs 263/847). We had thought that the progress bar and pie chart was representative of how many samples ("documents") had been marked as "approved". Thanks @username_0 for explaining this behavior. Interestingly, this observed behavior does not appear to be present in [this screenshot](https://camo.githubusercontent.com/fb1384fdacf5ec153d05bd34846aa485764dbbf8/68747470733a2f2f7773312e73696e61696d672e636e2f6c617267652f303036744e62527767793166796a773676363834726a3331723330753074626a2e6a7067) from [the tutorial](https://github.com/doccano/doccano/wiki/A-Tutorial-For-Sequence-Labeling-Project). As an end user, this is unexpected. If the counter is intentionally designed and implemented this way, then we find it to violate the [principle of least astonishment](https://en.wikipedia.org/wiki/Principle_of_least_astonishment). Without looking at the source code, I would assume that this is an artifact from the way progress tracking works in classification projects; a classified sample ("document") has just one label, so tracking the number of labels over the number of samples functions as a completion counter. username_2: Thank you for your valuable opinions. We deal with this as an enhancement not question and consider improvement. username_3: Hey @username_2 @username_4 @username_0 I am picking up this issue for development. Thanks. username_3: Added the PR for this issue's fix: https://github.com/doccano/doccano/pull/678 Status: Issue closed
dotnet/aspnetcore
660996316
Title: Endpoint Routing does not support 'IApplicationBuilder.UseMvc(...) Question: username_0: <!-- More information on our issue management policies can be found here: https://aka.ms/aspnet/issue-policies Please keep in mind that the GitHub issue tracker is not intended as a general support forum, but for reporting **non-security** bugs and feature requests. If you believe you have an issue that affects the SECURITY of the platform, please do NOT create an issue and instead email your issue details to <EMAIL>. Your report may be eligible for our [bug bounty](https://www.microsoft.com/en-us/msrc/bounty-dot-net-core) but ONLY if it is reported through email. For other types of questions, consider using [StackOverflow](https://stackoverflow.com). --> ### Endpoint Routing does not support 'IApplicationBuilder.UseMvc(...) When try to start the API app (.NET Core 3.1 framewrok) , getting the below error System.InvalidOperationException HResult=0x80131509 Message=Endpoint Routing does not support 'IApplicationBuilder.UseMvc(...)'. To use 'IApplicationBuilder.UseMvc' set 'MvcOptions.EnableEndpointRouting = false' inside 'ConfigureServices(...). Source=Microsoft.AspNetCore.Mvc.Core StackTrace: at Microsoft.AspNetCore.Builder.MvcApplicationBuilderExtensions.UseMvc(IApplicationBuilder app, Action`1 configureRoutes) at Microsoft.AspNetCore.Builder.MvcApplicationBuilderExtensions.UseMvc(IApplicationBuilder app) at Hexagonal.RESTApiWithJWTSample.Startup.Configure(IApplicationBuilder app, IHostingEnvironment env) in D:\8.GitHub\username_0\ASP.NET-Core-JWT-Authentication\src\Hexagonal.JWTAuthentication\Hexagonal.RESTApiWithJWTSample\Startup.cs:line 42 at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor, Boolean wrapExceptions) at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) at Microsoft.AspNetCore.Hosting.ConfigureBuilder.Invoke(Object instance, IApplicationBuilder builder) at Microsoft.AspNetCore.Hosting.ConfigureBuilder.<>c__DisplayClass4_0.<Build>b__0(IApplicationBuilder builder) at Microsoft.AspNetCore.Hosting.ConventionBasedStartup.Configure(IApplicationBuilder app) ### To Reproduce <!-- We ❤ code! Point us to a minimalistic repro project hosted in a GitHub repo. For a repro project, create a new ASP.NET Core project using the template of your your choice, apply the minimum required code to result in the issue you're observing. We will close this issue if: - the repro project you share with us is complex. We can't investigate custom projects, so don't point us to such, please. - if we will not be able to repro the behavior you're reporting --> Trying to build REST api using .NET Core 3.1 and EF Core ### Exceptions (if any) <!-- Include the exception you get when facing this issue -->   | Name | Value | Type -- | -- | -- | -- ▶ | TargetSite | {Microsoft.AspNetCore.Builder.IApplicationBuilder UseMvc(Microsoft.AspNetCore.Builder.IApplicationBuilder, System.Action`1[Microsoft.AspNetCore.Routing.IRouteBuilder])} | System.Reflection.MethodBase {System.Reflection.RuntimeMethodInfo} ▶ | Data | {System.Collections.ListDictionaryInternal} | System.Collections.IDictionary {System.Collections.ListDictionaryInternal} ### Further technical details - ASP.NET Core version : 3.1 - .NET Core SDK (reflecting any global.json): Version: 3.1.300 Commit: b2475c1295 Runtime Environment: OS Name: Windows [Truncated] Version: 3.1.4 Commit: 0c2e69caa6 .NET Core SDKs installed: 2.1.514 [C:\Program Files\dotnet\sdk] 3.1.300 [C:\Program Files\dotnet\sdk] .NET Core runtimes installed: Microsoft.AspNetCore.All 2.1.18 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.All] Microsoft.AspNetCore.App 2.1.18 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App] Microsoft.AspNetCore.App 3.1.4 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App] Microsoft.NETCore.App 2.1.18 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App] Microsoft.NETCore.App 3.1.4 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App] Microsoft.WindowsDesktop.App 3.1.4 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App] To install additional .NET Core runtimes or SDKs: https://aka.ms/dotnet-download - The IDE : VS 2019 Version 16.6.1 ![image](https://user-images.githubusercontent.com/33819543/87882383-4cd34d00-ca1d-11ea-8ab2-547767bf1f63.png) Answers: username_1: Yes this is by design, please see the migration guide https://docs.microsoft.com/en-us/aspnet/core/migration/22-to-30?view=aspnetcore-3.1&tabs=visual-studio#mvc-service-registration Status: Issue closed
blakeblackshear/frigate
1147403299
Title: [Support]: Question: username_0: ### Describe the problem you are having After updating from 0.9.4 to 0.10 the cpu utilization increased significantly and the number of motion boxes appears to be the reasons. The increase in motion detection is happening on all four cameras. I'm using the default values for all motion parameters on both versions. Looking for suggestions/settings to get the motion detection on version 0.10 closer to 0.9.4. Motion boxes on version 0.9.4: ![Frigate 0 9 4 debug side cam ](https://user-images.githubusercontent.com/85527415/155221873-365c5bf7-9d6d-455a-8b7f-00c661f95cf5.png) Same view showing increased number of motion boxes on 0.10. It is very overcast today with no wind. When sunny there are 30 to 50 motion boxes in this view: ![Frigate 0 10 debug side cam](https://user-images.githubusercontent.com/85527415/155221898-7e81870b-a08c-400d-aac6-4f6e3fcb717b.png) On version 0.9.4 cpu utilization at 41%: ![cpu 0 9 4](https://user-images.githubusercontent.com/85527415/155224939-a8f2c5b5-073b-430d-a6be-1357c81f7a07.png) On version 0.10 cpu utilization at 102% and goes much higher on sunny day: ![cpu 10](https://user-images.githubusercontent.com/85527415/155221929-dc760de3-6e57-4e5d-bee6-771f1a213e48.png) ### Version 0.10.0-BFECEE9 ### Frigate config file ```yaml mqtt: host: 192.168.0.217 user: mqttadmin password: <PASSWORD> environment_vars: LIBVA_DRIVER_NAME: radeonsi ffmpeg: hwaccel_args: - -hwaccel - qsv - -qsv_device - /dev/dri/renderD128 cameras: side_yard: ffmpeg: inputs: - path: rtsp://admin:[email protected]:554 roles: - detect detect: width: 3840 height: 2160 fps: 5 rtmp: enabled: false objects: track: - car - person filters: car: mask: [Truncated] ### Install method HassOS Addon ### Coral version CPU (no coral) ### Network connection Wired ### Camera make and model Amcrest 4k ip8m-2496e ### Any other information that may be helpful _No response_ Answers: username_1: The release notes stated a change to make it less sensitive than `0.9.4` so becoming too sensitive would be inconsistent with that, not sure how that would be the case. ![Screen Shot 2022-02-22 at 3 23 10 PM](https://user-images.githubusercontent.com/14866235/155229757-ff29af36-a0bb-4422-ab9d-adca65b391c0.png) In any case, you can tune the motion sensitivity by adjusting ```yaml motion: contour_area: frame_height: ``` It will take some tuning but I would say a good starting place would be: ```yaml motion: contour_area: 50 ``` if that doesn't work may need to also change `frame_height` to be lower. username_0: Yes, I read and followed the release notes, that is why I used the default settings for contour area, frame height, and motion threshold. What about the motion threshold default setting. It appears it changed from 25 on version 0.9.4 to 5 on 0.10? Was this part of removing the dynamic motion sensitivity and is 5 without dynamic motion sensitivity, equal to 25 with dynamic motion sensitivity? I tried adjusting contour area and frame height and it didn't seem to effect motion sensitivity significantly. I did change the motion threshold back up to 25 and it did reduce the motion sensitivity and the number of motion boxes, but it seems that is not the parameter I'm suppose to be changing. username_2: So a couple things changed related to motion detection: 0.9.4 would dynamically choose a frame_height and a contour_area based on the resolution of the camera. With high resolutions like this, that meant it was using a much larger frame for detecting motion. This would often result in much smaller details being detected as motion. 0.10.0 fixed those values because in reality the resolution shouldn't drive how fine the details are that count as motion. A car in a 720p frame takes up roughly the same % of the frame as a 4k camera. These changes would have reduced the sensitivity of motion detection for high resolutions like this. In addition, 0.10.0 introduced dynamic contrast. Essentially it amplifies the differences between light and dark areas to improve motion detection under IR lights or in low contrast situations during the day. Those changes would have **increased** sensitivity of the motion detection. So essentially, some changes increased sensitivity and others reduced it, but for very different reasons. I believe in this case the increase in sensitivity is being driven by the dynamic contrast or the differences in the pixel values. I would try increasing the `threshold` setting which will require a larger difference in the pixel value from one frame to the next to be considered motion. Increasing the `contour_area` will require that a larger area changed pixels will be near eachother. That will prevent small things like leaves from being detected as motion. username_2: The default threshold is definitely [still 25 in 0.10.0](https://github.com/username_2/frigate/blob/master/frigate/config.py#L120). What makes you think thats not the case? username_2: Assuming the resolutions are the same, with 0.9.4 your previous motion settings would have been calculated as: ```yaml frame_height: 360 contour_area: 400 ``` However, reverting to these values won't match the same behavior due to the new dynamic contrast. I would recommend the following: 1. Try increasing your `contour_area`. If you find that small objects are not being detected as motion, reduce that number back to the default. 2. Try increasing your `threshold`. If you start missing motion, that means the difference in the pixel values isn't enough to cross the threshold. 3. You could also see if your cameras support Wide Dynamic Range (WDR) and enable that. It should increase the contrast on the camera dynamically which would reduce the amount Frigate dynamically adjusts contrast. 4. As a last resort, try increasing the frame_height and contour_area together while keeping the contour_area roughly the same % of the total pixels of the frame resolution. Also, thanks a ton for the well crafted issue. Much appreciated. username_0: I thought I saw the motion threshold set at 5 in the config section of the debug page when version 0.10 was loaded, but I was wrong. I will give your tuning adjustments a try. The cameras do support WDR, so I will also give that a try. Thank you for the suggestions. username_3: Did you have any luck in getting the right threshold and contour_area values? I've got a similar setup to you and need threshold=50 and contour_area=50 for motion detection to be reduced. Unfortunately this results in some motion being missed and still some false positives so I'm kind of stuck in the middle :P username_0: Tried Blake's suggestion of increasing contour_area first with little success. I started at 50 and slowly went up to 500. The only change was larger motion boxes, but at the same frequency and no improvement in cpu loading. Next tried increasing the threshold and most of the motion boxes stopped in the 40 - 45 range, but motion was being missed and small object detection suffered, but it was probably due to lack of motion detection. Always had many false detections, i.e. rocks and fountains detected as people and cars. Tried changing the contour_area and frame_height together and again could not significantly reduce the motion detection sensitivity. Then I went back to the default settings for contour_area, frame_height, and threshold and tried greatly increasing the contrast settings on the cameras. I changed the contrast settings on the cameras from 55% to 90%. This stopped the overly sensitive motion detection, reduced cpu loading, and detection seemed better. The picture from the cameras doesn't look natural (see attached) and it seemed to make the false detections a little more frequent. It appears the the dynamic contrast adjustment may be overly aggressive, at least for high resolution cameras. Maybe an adjustable gain parameter for the dynamic contrast would allow it to work for high resolution cameras? At this point it was the end of February and my coral accelerator was suppose to ship on March 1. So, I went back to Frigate version 0.9.4 and planned to go back to version 0.10 with the coral. Of course it didn't ship, so I will probably stay on 0.9.4 until the coral ships or a new version of Frigate is released. I'm using the default 0.10 settings for contour_area, frame_height, and threshold on version 0.9.4 and they work fine. Picture with contrast setting at 55%: ![NC Front](https://user-images.githubusercontent.com/85527415/156907404-051af1d0-66d1-4560-bc71-4336bf5b3e4c.png) Picture with contrast setting at 90%: ![HC Front](https://user-images.githubusercontent.com/85527415/156907427-f39fd2de-4cd1-46d6-b679-9243e88b0f3d.png) username_2: It would be great if you could share a sample of a few minutes of video on Google Drive with <EMAIL>. That way I can play with it myself. I may just make the dynamic contrast adjustable and/or only run it when cameras are in IR mode. To clarify, the contrast is adjusted dynamically only for motion. It does not impact the frame sent for object detection in any way. The false positives are just because object detection is running more frequently with the increased motion activity. More chances for a false positive. username_0: Sent the video. Yes, the increase in motion activation was 100X, so many more chances for false positives. After increasing the camera's contrast settings the motion detections returned to normal and there was still an increase in false detections. I believe this was caused by the stark contrast of the picture/frame being used for detection. username_0: I have been able to restore version 0.9.4 from a backup many times while evaluating version 0.10. I have several version 0.9.4 backups, but they fail to revert to version 0.9.4. Any idea what is going on? The supervisor log is below: 22-03-10 23:10:54 INFO (MainThread) [supervisor.backups.manager] Found 10 backup files 22-03-10 23:10:54 INFO (MainThread) [supervisor.backups.manager] Found 10 backup files 22-03-10 23:11:13 INFO (MainThread) [supervisor.backups.manager] Partial-Restore b44c9ee5 start 22-03-10 23:11:17 INFO (MainThread) [supervisor.backups.manager] Restoring b44c9ee5 Docker config 22-03-10 23:11:17 INFO (MainThread) [supervisor.backups.manager] Restoring b44c9ee5 Repositories 22-03-10 23:11:18 WARNING (SyncWorker_1) [supervisor.addons.validate] Add-on have full device access, and selective device access in the configuration. Please report this to the maintainer of Frigate NVR (Full Access) Beta (0.11.0) 22-03-10 23:11:18 WARNING (SyncWorker_1) [supervisor.addons.validate] Add-on have full device access, and selective device access in the configuration. Please report this to the maintainer of Frigate NVR (Full Access) 22-03-10 23:11:18 INFO (MainThread) [supervisor.store] Loading add-ons from store: 67 all - 0 new - 0 remove 22-03-10 23:11:18 INFO (MainThread) [supervisor.backups.manager] Restoring b44c9ee5 Add-ons 22-03-10 23:11:24 INFO (MainThread) [supervisor.addons.addon] Restore config for addon ccab4aaf_frigate 22-03-10 23:11:24 ERROR (MainThread) [supervisor.jobs] Unhandled exception: 'ccab4aaf_frigate' Traceback (most recent call last): File "/usr/src/supervisor/supervisor/jobs/decorator.py", line 106, in wrapper return await self._method(*args, **kwargs) File "/usr/src/supervisor/supervisor/addons/__init__.py", line 367, in restore await addon.restore(tar_file) File "/usr/src/supervisor/supervisor/addons/addon.py", line 832, in restore restore_image = self._image(data[ATTR_SYSTEM]) File "/usr/src/supervisor/supervisor/addons/model.py", line 632, in _image return f"{config[ATTR_REPOSITORY]}/{self.arch}-addon-{config[ATTR_SLUG]}" File "/usr/src/supervisor/supervisor/addons/model.py", line 509, in arch if ATTR_IMAGE in self.data: File "/usr/src/supervisor/supervisor/addons/addon.py", line 157, in data return self.sys_addons.data.system[self.slug] KeyError: 'ccab4aaf_frigate' 22-03-10 23:11:24 WARNING (MainThread) [supervisor.backups.backup] Can't restore Add-on ccab4aaf_frigate: 22-03-10 23:11:24 INFO (MainThread) [supervisor.backups.manager] Partial-Restore b44c9ee5 done username_1: It looks like at one point you may have switched between the normal and full-access modes and it doesn't like restoring a backup for the other (not 100% sure but that is what it seems.) Frigate `0.10.1` was just released with the dynamic contrast disabled by default though so I would recommend maybe giving that one a go since that should solve the issue you are having here. username_0: I've been on "normal" for a long time. I've also restored version 0.9.4 from backups many times in the last two weeks and it has always worked until now. I'm not sure how HA backs up addons, but it seems it may only backup settings and pointers to github. Is it possible something on github has changed where it can't find version 0.9.4? That's great news about version 10.1. I will give it a try and provide feedback.
KedharaNethra/CMPE202-UMLParser
210277187
Title: Weekly Documentation(WEEK-2)-Kanban & TIME-PDF Question: username_0: Update PDF document with 1.)Screenshot of-Kanban board 2.)Provide URL link to GitHub Repo 3.)Provide URL link to Waffle Board 4.)TIME Calculation-Update the Cycle and wait time for all the cards(Issues in waffle) Calculation of The "TIME" part a.)Total Cycle time = Total Time a card took in the "In-Progress" column after it left the column (i.e. was dragged out) and into the "Done" column b.)Wait Time= Time a card is in a column since the time it was first dragged into the column.<issue_closed> Status: Issue closed
leanprover-community/mathlib
583528746
Title: Strong epimorphisms and strong epi-mono-factorizations Question: username_0: See, for example, sections 4.3 and 4.4 of Borceux, volume 1. In an abelian category, the image factorizations `P ⟶ kernel (cokernel.π f) ⟶ Q` and `P ⟶ cokernel (kernel.ι f) ⟶ Q` are both strong epi-mono-factorizations, and this fact can be used to derive the isomorphism `cokernel (kernel.ι f) ≅ kernel (cokernel.π f)`. Answers: username_0: Fixed in 0567b7faba5783ac4c272c3b6265a4513f69c47d. Status: Issue closed
SmartlyDressedGames/Unturned-3.x-Community
623961643
Title: ace with scope?! Question: username_0: Hello, a player killed a cheater (as he claims) , and he found Ace with scope among his items. here is a screenshots https://cdn.discordapp.com/attachments/612059834396966942/714247503763210292/unknown.png Greetings Answers: username_0: an admin said: this is a gun which can obtained by the scientist npc on russia sry for disturb username_1: You are right that this item was probably acquired from the quest. (cheaters cannot attach items that violate attachment rules) Status: Issue closed
Azure/azure-event-hubs-spark
983921187
Title: java.util.concurrent.CompletionException: java.util.concurrent.RejectedExecutionException: ReactorDispatcher instance is closed Question: username_0: Hi , We have pyspark code fetching data from single consumer group with multiple partitions from different event Hub instances under same Event Hub namespace . The jobs run 24*7 without any downtime expected . iterating in loop for every 15 minutes and pulling data and writing to ADLS Gen 1 Sink. recently after upgrading to Databricks Runtime 8.3 , Scala 2.12 , Spark 3.1.1 and event hub library version - azure-eventhubs-spark_2.12:2.3.20 the jobs ran fine without any issues for the first 8-9 days , but now we are seeing failed instances with error as below An error occurred while calling o2180548.count. : org.apache.spark.SparkException: Job aborted due to stage failure: Task 11 in stage 157672.0 failed 4 times, most recent failure: Lost task 11.3 in stage 157672.0 (TID 1205598) (10.139.64.6 executor 3312): java.util.concurrent.CompletionException: java.util.concurrent.RejectedExecutionException: ReactorDispatcher instance is closed. at java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:292) at java.util.concurrent.Com Command Line: 72 After restarting the cluster the issue was gone . I am afraid , i might encounter the issue again . What is the cause for this issue ? Answers: username_1: We have the same issue with our pyspark code, see my comment to issue #363. Databricks Runtime 8.4 Library versions: - com.microsoft.azure:azure-eventhubs-spark_2.12:2.3.21 - com.microsoft.azure:azure-eventhubs:3.3.0 The error message: org.apache.spark.SparkException: Job aborted due to stage failure: Task 1 in stage 3350.0 failed 1 times, most recent failure: Lost task 1.1 in stage 3350.0 (TID 7401) (10.139.64.4 executor driver): java.util.concurrent.CompletionException: java.util.concurrent.RejectedExecutionException: ReactorDispatcher instance is closed. and further down: Caused by: java.util.concurrent.CompletionException: java.util.concurrent.RejectedExecutionException: ReactorDispatcher instance is closed. at java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:292) at java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:308) ... username_2: Hi, we are getting the same error. **Cluster Config**: * com.microsoft.azure:azure-eventhubs-spark_2.12:2.3.21 (maven) * azure_eventhub (pypy) * Databricks Runtime: 8.2 username_1: @username_3 I have sent you an email with the full logs. username_3: @username_1 Thanks for sharing the log with me. The logs indicate that the issue in your case happened when a receiving task got preempted by the scheduler, which resulted in closing the ReactorDispatcher object used by the connector. After that retrying the task resulted in aborting the job due to the closed ReactorDispatcher object. We'll work on fixing the issue and make the connector resilient against task preemption. Meanwhile, to mitigate the issue I suggest adjusting the configs to prevent task preemptions. Specifically, in the logs I noticed the max parallelism is set to 4, which seems low for running multiple streams. Increasing the number of parallel tasks should help to prevent task preemptions. username_4: @username_3 is max parallelism refer to the threadPool Size in EventHubConf or databricks related configuration?
RedHatInsights/insights-core
314829279
Title: Performance Degradation Processing Archives Question: username_0: We recently [switched to using grep for filtering](https://github.com/RedHatInsights/insights-core/commit/f58f667bfbe2a320318539f52df5443695f8d3df#diff-e35265e0d3d90da9734e2d75b3681acd), but this introduced a significant performance penalty when processing existing archives that are already filtered. We also [called cat on non-filtered files](https://github.com/RedHatInsights/insights-core/commit/f58f667bfbe2a320318539f52df5443695f8d3df#diff-e35265e0d3d90da9734e2d75b3681acdR158) for symmetry, but that turns out to be very slow as well. I think we need to create a switch that can disable filtering altogether and to change the call to cat back to `f.readlines()` Answers: username_0: The performance penalty was on OS X where the default, non-GNU version of grep is [very slow](http://jlebar.com/2012/11/28/GNU_grep_is_10x_faster_than_Mac_grep.html). We still need a switch to disable filtering in certain contexts, but I'll break that out into a separate issue. Status: Issue closed
WEC-Sim/WEC-Sim
1000267672
Title: [Theory or Implementation] Power output Question: username_0: **Is your question request related to a problem? Please describe.** I’m trying to model a FOSWEC. The characteristics are based on “The NumWEC project” paper. But the produced power is 20% of the expected power based on the paper. I’m not sure what is the exact problem with my model and I hope your team can help me with this problem. **Describe the theory or implementation approach that you have a question** My model has 4 flaps and a floating frame. For the BEM data, I used Ansys Aqwa and I assumed that the mass of bodies is equal to their displacement. I modeled the 5 bodies separately in Ansys Aqwa and then I combined them with BEMIO. I ran the WEC-SIM code with 4 mooring lines and I just assumed a 40 kn/m stiffness with the mooring matrix. The wave states and the PTO damping and stiffness were based on “The NumWEC project” paper. But the power is much less than expected. For the irregular wave condition of JONSWAP and the wave state of 2.5 m wave height and 11 s wave period, the average power is 16 kW in WEC-SIM whereas the expected power is 80 kW in “The NumWEC project” paper. But the thing is when I assume that the frame is fixed the produced power increase a lot and it's about 50% more than the expected power in “The NumWEC project” paper. I guess that maybe it has to do with the mooring properties. I thought about modeling the mooring with MoorDyn but I figured that I can’t model more than 1 mooring line with MoorDyn. Is that right? And I have a question about the WaveSpread setting. For one single wave direction angle of 0 degrees, what the value of WaveSpread should be? The maximum value for WaveSpread is 1? when I assign a higher value of WaveSpread the power gets higher. But I don’t know if WaveSpread value can be more than 1 or not. And I wanted to know about the moment of inertia and which point it is calculated about? At the COG of the body? Or at the hinge? **Personal project context** Here I share my WEC-SIM files. [FOSWEC.zip](https://github.com/WEC-Sim/WEC-Sim/files/7191694/FOSWEC.zip) **Describe the type of conclusion or resolution you are looking for** I don’t understand why the power produced in my model is much less than the expected power of 80 KW. Thank you in advance for your support. **Additional context** N/A Regards, Haniyeh Answers: username_1: Hi @username_0 Can you please provide a *zip file of your input file, hydrodata, and simulink model please? The screenshots are helpful but the ability to run the model from my end would be ideal. There are a bunch of questions here so I will try to break them out one by one: 1). "Modeled each body separately in ANSYS and combined them using BEMIO" I am not familiar with the NumWEC paper, but have worked extensively with the FOSWEC, and I am dubious of this implementation because a strong hydrodynamic coupling exists between the flaps. I am not sure that running ANSYS on the separate bodies will capture this coupling. Additionally, assuming that the mass of each body is equal to displacement is potentially problematic, since the aggregate 5-body system floats at the prescribed position, but each individual body is not neutrally buoyant. This alone is probably introducing a significant difference between your results and the NumWEC paper. 2). Your mooring matrix implementation is atypical: the mooring matrix simply assumes a linear restoring force that is applied proportional to displacement and velocity of the connected body (F_moor(i) = mooring(i).matrix.k * displacement + mooring(i).matrix * velocity , in the 6 DOFs). The "other end" of the mooring is assumed to be some stationary point such that the displacement of the mooring is equal to the displacement of the connected body. Since each line is connected to the same rigid body (I assume?) you should be able to condense your 4 mooring lines to a single, equivalent connection. 3). Can you model more than one line with MoorDyn? In short, yes. There are examples provided in their documentation with how to do this. 4). "And I wanted to know about the moment of inertia and which point it is calculated about? At the COG of the body? Or at the hinge?" **All hydrodynamic parameters used by WEC-Sim MUST be calculated about the COG** This includes the moment of inertia. Simscape applies the necessary transformations based upon the constraint/PTO locations. 5). The waveSpread setting. Check out the documentation for waveClass. http://wec-sim.github.io/WEC-Sim/dev/user/advanced_features.html#user-advanced-features-wave. Wave spread is a probability vector of wave direction. So if the value is 1 and length 1, 100% of waves will come from the single prescribed direction. It should not be more than 1. Frankly we should probably incorporate an error message if this is specified to be larger than 1. 6). "Can you give guidance on how to calculate the optimized PTO damping and stiffness for a wave state?" Oh boy can I. See closed issue #422 . username_0: @username_1 Thank you for your help. Here are my model’s files. [model.zip](https://github.com/WEC-Sim/WEC-Sim/files/7235488/model.zip) 1) The reason I modeled the bodies separately was that the Ansys Aqwa has a limitation for the number of elements for meshing, and due to the large size of my model I couldn't model the whole bodies in one model. You said there is a strong hydrodynamic coupling between the flaps, so do you think that I can model the 4 flaps in one model and the frame in another model? Can it give a more realistic result? Cause I can’t model the whole frame and flaps in one model. About the mass of the bodies, I considered it equal to the displacement of the bodies because it was mentioned in the paper that I was using. But I did model the flaps with half of this mass and the frame with some ballasts but it did not work and it made the FOSWEC unstable and it became floated on the water. I did model the bodies with the mass equal to displacement for them to be stable. Is there anything about the mass that should be considered here? And here’s another thing about my model. I assumed the water size in my BEM model 100meter x 100meter. Now I understand that maybe it is small compared to my model size of 25x25 and it can make some problems in boundary conditions. Is it so? And is there any formula for considering the water size? 2) about the mooring matrix I wanted to define stiffness in translational DOF, so I looked in the issue [https://github.com/WEC-Sim/WEC-Sim/issues/43](url) and concluded this kind of matrix implementation. If I want the mooring to have stiffness in horizontal and vertical directions how can I define it? 3) thanks, I will look it up in the user manual. 5) yeah, so Wave spread can’t be more than 1. 6) thank you so much, I’ll read the papers for PTO coefficients. It will be a great help if you check out my file and help me with the mistakes in my modeling. Regards, Haniyeh username_0: Hi @username_1 Hope you're having a great day. I will be so grateful if you help me with my questions. Especially about the mooring matrix and mass of the bodies and their stability. Thank you in advance Haniyeh username_2: Hi @username_0 First of all, please take a look at our [METS2014 paper ](http://vtechworks.lib.vt.edu/bitstream/handle/10919/49236/137-Lawson.pdf?sequence=1&isAllowed=y ). We had an example of using WEC-SIm to model the Langlee design presented by Babarit in the NumWEC project and compared our solutions to his results. To answer your question: 1. The purpose of the mooring here for the Langlee design is to keep the device in position. The mooring should have VERY little influence on the WEC power performance in this case. In our METS2014 paper, we used ONE mooring matrix with a small spring stiffness value of 40 kN/m. There is no need of having four mooring matrix. 2. If you lock the frame, it is expected to generate more power because the system will loose power when the frame moves, except for some special resonant wave frequencies. 3. For WEC-Sim, the moment of inertia is always given at the COB. 4. One thing I noticed is that you had 4 flaps and 4 PTOs in your model, but we had 2 flaps and 2 PTOs in our METS2014 study. I believe this is what Babarit did as well. In our case, we modeled the two fore flaps as one body and two aft flaps as another body. This assumption is valid when the wave direction is normal to the flap surface. If you model the system using four flaps, you will need to cut your CPTO and KPTO values by half. 5. As @username_1 have said, modeling the bodies separately and combine them in BEMIO may result in a set of inaccurate hydrodynamic coefficients, where the interaction between bodies are neglected. --Yi-Hsiang Status: Issue closed
tlswg/tls-exported-authenticator
286935738
Title: Enforcement of security requirements Question: username_0: Relaying feedback received: We currently require EMS+TLS 1.2 or TLS 1.3+ in order for the Exported Authenticator API to be validly used. However, the definition of the APIs don't explicitly call out a failure path. We should probably address this. Simplest option would be to add a sentence to the description of each API that it fails if those conditions aren't met.<issue_closed> Status: Issue closed
OrchardCMS/OrchardCore
277266480
Title: Custom lucene index Question: username_0: Need configuration in admin for Lucene indices. Currently only allow creation with no customization. Todo: https://github.com/OrchardCMS/OrchardCore/blob/efe497b6d4ac38a607f87ac6b071a5ed582da145/src/OrchardCore.Modules/OrchardCore.Lucene/Handler/LuceneIndexingContentHandler.cs#L29 Answers: username_1: I want to completely change how indices are created, by allowing custom logic to be defined to create a document, probably using some Javascript too on the documents, that would return a json object containing the data to index, and how to index it (store, tokenize, ...) Status: Issue closed username_1: Duplicate of #1485 More details in this discussion
realm/realm-studio
356581904
Title: Feature: Studio: Select multiple rows Question: username_0: @rubengarciam commented on [Mon Dec 04 2017](https://github.com/realm/realm-object-server/issues/313) ## Goals Select multiple rows and perform the same action on them (i.e, 'delete') ## Expected Results Saving ridiculous amount of time ## Actual Results None, one by one --- @username_1 commented on [Mon Dec 04 2017](https://github.com/realm/realm-object-server/issues/313#issuecomment-349049932) Ping @username_2 --- @username_2 commented on [Wed Dec 13 2017](https://github.com/realm/realm-object-server/issues/313#issuecomment-351390338) Can you think of other operations than bulk deletion that this could be useful for? --- @astigsen commented on [Wed Dec 13 2017](https://github.com/realm/realm-object-server/issues/313#issuecomment-351477590) Drag-n-drop --- @rubengarciam commented on [Thu Dec 14 2017](https://github.com/realm/realm-object-server/issues/313#issuecomment-351557965) @username_2 any operation on either the full items or specific properties would definitely be welcomed --- @calumk commented on [Tue Jan 23 2018](https://github.com/realm/realm-object-server/issues/313#issuecomment-359768171) +1 I Cant believe this isn't implemented Studio seems to me to be larger, (150mb bigger - but electron based and cross platform, so i understand why) And less functional than browser was, and missing many of the features i would expect from a database editor. **Things missing that were in browser** Keyboard shortcuts (add new row) Lock? Export CSV **Things that are annoying** MODALS EVERYWHERE- in browser, you could add an object (using a shortcut) and then you simply clicked the object to edit. Database applications really don't need Modals with delays and transition animations, and opacity. its just irritating. Why cant I edit schema in the studio? Ok so it might not be 100% the best way to do it, but sometimes you just _dont need_ to migrate everything, I just wanna add or delete a row, or change the datatype, If I'm in the early stage of development, Why cant i just do that in the studio? [Truncated] @bigfish24 Great to hear some feedback on this, sorry if my original post was a bit harshly worded. 100% agree electron is the right way to go with an app like this, cross-platform is obviously the best for everyone going forward, even if we get a slightly bigger program as a result. Could i suggest that you upload the codebase to github? I imagine it would be better to have topics like this on the specific repo, instead of on the object server repo --- @bigfish24 commented on [Fri Jan 26 2018](https://github.com/realm/realm-object-server/issues/313#issuecomment-360667057) 🙌 glad you agree with strategy and no worries on tone, I would rather have passionate feedback than none at all! Agree it would be better to move these topics to Studio repo, but at this time we have not made a decision to open source it. --- @username_0 commented on [Mon Sep 03 2018](https://github.com/realm/realm-object-server/issues/313#issuecomment-418176554) @calumk Studio is now open source, so I'll move this issue there for further comments. Answers: username_1: Isn't that implemented already? username_2: This feature was shipped with Realm Studio v1.20.0. Status: Issue closed
googlecast/CastVideos-ios
60228672
Title: Issue building with Cocoapods Question: username_0: When I build using the latest cococapods, it doesn't build and I get the following error: ``` Pods-CastVideos was rejected as an implicit dependency for 'libPods-CastVideos.a' because its architectures 'i386' didn't contain all required architectures 'i386 x86_64' ``` Answers: username_0: updated build settings in to be inherited and matched library arch. Seems ok now. Will document the fix and contribute it back if I get some time. Status: Issue closed
int128/gradle-ssh-plugin
71834472
Title: Solution to start background processes and keep them alive after Gradle script ends Question: username_0: What is the solution to run multiples remote scripts that don't stop when finishing the gradle script execution ? I've tried things like : executeBackground 'nohup start_my_web_server.sh &' executeBackground 'nohup start_my_database_server.sh &' but processes stop when stopping the Gradle script. Thanks Answers: username_1: Please try `nohup start_my_web_server.sh < /dev/null > /dev/null 2> /dev/null &`. See #144. username_0: Thanks This worked for me : executeBackground "nohup sh -c '( ( ${cmd} ) & )'" Status: Issue closed
hbb20/CountryCodePickerProject
333139593
Title: Right to Left Issue Question: username_0: Country code popup not showing anything .Close button covers all the contents ![screenshot_1529300469](https://user-images.githubusercontent.com/31410282/41519900-7eb63884-72e8-11e8-8498-8f24b4d9726e.png) Answers: username_1: oops Sorry about that... That should not happen... Can you please post the library version? username_0: com.username_1:ccp:2.2.0 username_1: @username_0 , thank you for reporting. As a temporary solution, add `app:ccpDialog_showTitle="false"` to your CCP. We will release the new version soon (mostly weekend) with the fix.
FTBTeam/FTB-Interactions
656028957
Title: Whittling stick turn in is broken... Question: username_0: ## Modpack Version: 1.9.1-1.12.2.zip <!-- Required --> ## Bug Report: whittling sticks do not turn in correctly to the quest menu. only fix is to go into editing mode <!-- Bugs: Describe the current behavior --> ## Expected Behavior/Suggestions: what is supposed to happen is you craft 2 whittling sticks and it completes that piece. <!-- Bugs: Describe the expected behavior --> <!-- Suggestions: Tell us how it should be --> ## Is It Repeatable? Steps to Reproduce: <!--- Video evidence to reproduce is preferred, otherwise list steps below--> 1. get to the clay kiln quest 2. make two whittling sticks <!--- Add more if needed --> ## Link to Log or Crash File Paste**: wouldn't be helpful and i can't find it. <!-- Use https://paste.feed-the-beast.com/ to paste the text of your log/crash file --> ## Mod/s Affected: just the quest-book progression. <!-- optional; list an mods confirmed to cause the issue --> ## Known Fix: just for the players, you go into editing mode and force-complete it. <!-- optional; if you know of a fix please let me know! Thanks --> Answers: username_1: This is fixed in 2.0+ of the pack, you should consider updating Status: Issue closed
joomla/joomla.org
115810009
Title: Look into way to track database version control Question: username_0: Developers that are working locally to merge and migrate websites from our many instances to a larger main website will need to have their DB version controlled and a way to merge into the master DB. Need to ask how this can be done 'easily' and managed. Answers: username_1: https://groups.google.com/d/msg/joomla-dev-cms/tYLWDU5jxjI/hiu4SPowBgAJ
urbit/urbit
485457418
Title: Blank /~publish/recent after a new post Question: username_0: I created a new post today through the web UI and ever since then my /~publish/recent is blank. If I explicity navigate to a known previous post, I get a blank page with infinititely spinning circle at the top left next to the home icon. I did publish this very close in time to the recent OTA update. Here is a sampling of the errors printed on my console after I created the post. ``` /~winter-paches/home/~2019.8.19..01.42.19..5ab5/sys/vane/ford:<[4.828 18].[4.828 59]> /~winter-paches/home/0/lib/publish/hoon::[3 1].[232 3]> /~winter-paches/home/0/lib/publish/hoon::[171 3].[230 5]> /~winter-paches/home/0/lib/publish/hoon::[171 7].[171 16]> /~winter-paches/home/0/lib/publish/hoon::[171 11].[171 16]> -find.state ford: %slim failed: ford: %ride failed to compute type: ford: %plan failed: ford: %core on /~winter-paches/home/0/lib/publish/hoon failed: %plan failed: ford: %core on /~winter-paches/home/0/app/publish/hoon failed: ``` FWIW, I am also getting js errors from that blank page: <img width="529" alt="image" src="https://user-images.githubusercontent.com/87197/63724293-6d068600-c825-11e9-92d0-763097301e2d.png"> Answers: username_1: Might fuck around and make a "print-subs" poke username_2: For those following along at home, you should be able to run `:publish &publish-action [%unsubscribe ~host-ship %notebook-name]` from dojo. username_2: The second chunk of the printed state, `subs`, is a `map` from subscription source to collection data. All the keys there (`[ship @tas]` with face `p=`) are notebooks you've subscribed to. username_3: It needn't match what's in the master branch in general; not everything that gets committed there can be easily pushed out over-the-air (yet). You can see the tree corresponding to the latest release here: https://github.com/urbit/urbit/tree/arvo.2019.8.25 username_1: @username_4 This is the one I was referring to. The immediate fix here is to make sure that the recents page doesn't blow up on a single post preview page failing. This can be done in ye olde JavaScript. username_4: So while the new post view has error checking before submitting udon, edit posts just dutifully submit broken udon which saves the post like so: ``` \/ford: %bake %publish-post on /~haddef-sigwen/home/0/web/publish/replicate-me\/ -captain/i-m-gonna-fuck-it failed:\/ \/as-renderer{ /& failed: ford: failed to %cast ford: %cast failed while trying to cast from udon to elem: ford: %cast failed to ride /~haddef-sigwen/home/0/mar/udon/hoon during +grow: ford: %ride failed to execute: syntax error {15 4} /~haddef-sigwen/home/0/mar/udon/hoon:<[15 17].[15 2... ``` (That's direct from my React state!) Thus you get this whole issue where it's choking trying to get the recent posts; for whatever reason it doesn't have any object to pull a date from, and the whole thing tanks. If I throw a try/catch into `buildRecent` it at least renders the UI ... but I can't subscribe to a new notebook and the recent post listing is still blank. Subscribing to a notebook just refuses with this in the terminal: ``` [ ! /~haddef-sigwen/home/0/app/publish/hoon:<[1.602 3].[1.603 13]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[1.603 3].[1.603 13]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[541 3].[542 29]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[542 3].[542 29]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[542 11].[542 29]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[254 5].[400 7]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[255 5].[400 7]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[317 7].[336 32]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[319 7].[336 32]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[321 7].[336 32]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[324 7].[336 32]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[326 7].[336 32]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[327 7].[335 9]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[328 7].[335 9]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[330 7].[335 9]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[332 7].[335 9]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[333 18].[333 55]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[531 5].[535 12]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[532 5].[535 12]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[533 5].[535 12]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[533 18].[533 39]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[473 5].[488 12]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[474 5].[488 12]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[475 5].[488 12]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[476 5].[488 12]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[477 5].[488 12]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[478 7].[487 9]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[479 7].[487 9]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[481 7].[487 9]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[481 23].[481 73]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[481 36].[481 73]> [%ap-lame %publish %diff-publish-rumor] ] [%recieved-quit-from-gall '1567216105355-38a2be'] [ ! /~haddef-sigwen/home/0/app/publish/hoon:<[1.602 3].[1.603 13]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[1.603 3].[1.603 13]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[541 3].[542 29]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[542 3].[542 29]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[542 11].[542 29]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[254 5].[400 7]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[255 5].[400 7]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[317 7].[336 32]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[319 7].[336 32]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[321 7].[336 32]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[324 7].[336 32]> [Truncated] ! /~haddef-sigwen/home/0/app/publish/hoon:<[473 5].[488 12]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[474 5].[488 12]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[475 5].[488 12]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[476 5].[488 12]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[477 5].[488 12]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[478 7].[487 9]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[479 7].[487 9]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[481 7].[487 9]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[481 23].[481 73]> ! /~haddef-sigwen/home/0/app/publish/hoon:<[481 36].[481 73]> [%ap-lame %publish %diff-publish-rumor] ] [%recieved-quit-from-gall '1567216284165-c9ec49'] ``` Every attempted subscription after is a silent fail in both React and on the ship. I imagine it won't want to change the objects it has. I can try another replication case where I have a few subscriptions first, but basically: - It needs error catching in post editing so this doesn't happen ever again - I have to figure out the ideal way of navigating how to reconstruct the `pubs` and `subs` objects when there's a borked notebook. It seems to be irreparably borked once you submit broken udon? username_4: My intuition is that this, #1676 and #1649 are all somewhat related? As if there were a cascading set of failures if a broken udon post gets added to a collection you are subbed to or write yourself, that then seemingly interacts with all other notebook interactions. username_4: @username_1 The more I investigate the more I'm unsure how to contain the damage of this one error — or whether this is just a cluster of related bugs for 'broken posts.' There's a few levels here. No error checking on post editing creates the error on the local ship, and every ship subscribed to that notebook. All Publish UI in Landscape crashes, because React 16+ does so when you don't dictate an ErrorBoundary component for the entire application. We can navigate this with writing an ErrorBoundary if we want, or (as we thought to start) we can null out bad posts and call it a day. But, seemingly we can't just do that. Let's say I put in a whole bunch of ternary operators to just return `null` if the post.body is a string of Ford errors, instead of an object as expected. This would be put in about a dozen or so times. It would look like this, not perfect, but at least the UI renders. <img width="510" alt="Screen Shot 2019-09-04 at 12 00 53 AM" src="https://user-images.githubusercontent.com/20846414/64224948-586e6180-cea7-11e9-909d-985bc9a74d71.png"> If I try and make a new post after ... no dice. The new post just silently fails in Landscape, no error in JS console. In the Dojo, you get this: <img width="469" alt="image" src="https://user-images.githubusercontent.com/20846414/64225011-9cf9fd00-cea7-11e9-9675-be99d30f5adf.png"> Presumably, this means it added the post anyway (see the plus). However, it does not show up on the Landscape UI. Ditto for any new subscriptions to any notebook on other ships (see my previous posts above). This one post breaking ... seemingly breaks `publish.hoon`'s entire state on-ship, somehow? What's weirder is the error @username_2 brought up in #1688. Even if you go into post _in Clay_ and edit a broken Udon post _yourself_, it doesn't show on the Landscape UI nor does Publish seemingly recover. I've been going at this for most of the evening tonight after my first go early last weekend, but I'm starting to think this just needs to be contained: - Instating error checking on post edits — without submitting it to the ship. I gotta think on how to do this one. - Assisting with deleting pre-existing broken notebooks as they are reported. - Ideally, doing a refactor on Publish, or at least recovering from bad post syntax gracefully. I should test to see if all these null catches work when one is a subscriber to a bad notebook — ideally it should, because then it doesn't spread the issue. If so, I'll put a PR in for that soon. username_5: Oh, I think I understand the error now. It has to do with the creation of secondary indices (like latest, unread) into broken posts. We should talk more tomorrow. Status: Issue closed username_4: Closing via #1694.
Sunev/jinrou
418157866
Title: 人狼被怪盗盗取职业时,能够提前得知自己被盗取了 Question: username_0: **简述bug** 请概要地描述一下bug的情况。 人狼在夜间被怪盗盗取职业,天亮后狼单中没有自己但是有怪盗,所以可以提前得知自己被盗取了职业。 **出现bug的房间地址** https://www.werewolf.com.cn/room/76047 **出现bug的玩家昵称** 鱼家小店的偶像鱼儿大人 蒼崎青子 **出现bug的时间** 第一天夜里~第二天天亮 **预期行为** 请简单描述一下你认为此处在没有bug的情况下应该是什么样子。 **截屏** 如果能够提供有效的截屏,能够更好地协助我修复bug。 ![image](https://user-images.githubusercontent.com/44828559/53937918-88e86500-40e9-11e9-8bce-a94275ae76ce.png) **更多内容** 如果有更多能够协助修复bug的内容,请填写在这里。 Answers: username_1: 由 30a5061 修复 Status: Issue closed
spring-projects/spring-security
582931609
Title: Blocking call to UUID.randomUUID in WebSessionServerCsrfTokenRepository (blockhound) Question: username_0: <!-- For Security Vulnerabilities, please use https://pivotal.io/security#reporting --> ### Summary <!-- Please provide a high level summary of the issue you are having --> Detected by blockhound: `WebSessionServerCsrfTokenRepository` and `CookieServerCsrfTokenRepository` make blocking calls to `UUID.randomUUID` when generating the token. It would be nice to have a non-blocking SecureRandom to solve this. It can of course be offloaded to the boundedElastic scheduler but that looks sub optimal. https://github.com/spring-projects/spring-security/blob/747d8817cbadc307f7407c26fc88b2ff63c37149/web/src/main/java/org/springframework/security/web/server/csrf/WebSessionServerCsrfTokenRepository.java#L112 ### Version <!-- Please describe what version you are using. Does the problem occur in other versions? --> 5.2.2.RELEASE Answers: username_1: Thanks for the report @username_0! I'm not aware of a non-blocking secure random source. Are you? If we don't have a non-blocking secure random source then I agree our best bet is to use the boundedElastic. Would you be interested in submitting a PR? username_0: No, I'm not either. I guess even reading /dev/random with NIO is offloading to a thread-pool. Would be nice to have it in Java one day though. I'll do the PR for boundedElastic, no problem username_0: I want to put a `publishOn` in generateToken but I don't find a good place I coud do ```java @Override public Mono<CsrfToken> generateToken(ServerWebExchange exchange) { return Mono.just(exchange) .publishOn(Schedulers.boundedElastic()) .fromCallable(() -> createCsrfToken()); } ``` but maybe there's a better way without wrapping exchange (which is not used) ? ``` username_1: That looks correct to me. username_1: @username_0 Are you still interested in submitting this? username_0: Yes. Sorry I've been quite busy. I'll do it this week. Status: Issue closed
Opentrons/opentrons
520239401
Title: PD Final Polish: Link in the crash info box Question: username_0: ## overview The link in the crash info box (from #4410) doesn't go anywhere yet Answers: username_1: @username_2 please provide links for the separate articles once they're posted username_2: @username_0 https://docs.google.com/document/d/1<KEY>/edit?usp=sharing Status: Issue closed
yukiarrr/ios-build-action
925884853
Title: Seems to be a very old project file format Question: username_0: Hi yukiarrr, I have been trying to automate the deployment of one of my ios project to testflight through github actions, i am able to archive and deliver to testflight without any problems on my local mac machine, however, when i run the actions i receive this error "Seems to be a very old project file format - please open your project file in a more recent version of xcode" everytime. ![Screenshot 2021-06-17 at 6 33 12 PM](https://user-images.githubusercontent.com/45256284/122718468-8fda1800-d29f-11eb-9357-b287ebeb9d6c.png)
peeringdb/peeringdb
520613390
Title: Fix tutorial data reset Question: username_0: Sync part of the reset relied on the old `django-peeringdb` sync functionality. Should now instead use `peeringdb-py` 1.0.0 to handle the sync. Answers: username_1: @peeringdb/pc please vote ... +1 from my side username_2: +1 username_3: +1 username_1: @koalafil , please proceed as @username_3 @username_2 and @username_1 support this issue Status: Issue closed username_1: Issue was introduced in 2.16.0 with the upgrade to `django-peeringdb 1.0` Sync part of the reset relied on the old `django-peeringdb` sync functionality. Should now instead use `peeringdb-py` 1.0.0 to handle the sync. Since we also have test.peeringdb.com now should add a test with full reset and sync from test.peeringdb.com so this doesn't get missed in the future. username_1: It's still not working :( ![20200127 Reset Environment Preview PeeringDB](https://user-images.githubusercontent.com/16888757/73170304-54650980-40fe-11ea-9c6f-97c15b7194b8.png) username_1: @peeringdb/oc or @username_0 is there something else I have to take care of? I simply selected "Reset Environment", then pressed "Preview Command" and got the error message "cannot import name sync". username_2: @username_1 I believe this is taken care of with the tutorial 2.18 deploy? username_2: Closing since no news is good news. :) @username_1 please reopen if it didn't work as intended. Status: Issue closed
jackieli123723/jackieli123723.github.io
250229927
Title: React 在服务端渲染的实现 Question: username_0: # React 在服务端渲染的实现 React是最受欢迎的客户端 JavaScript 框架,但你知道吗(或许更应该试试),你可以使用 React 在服务器端进行渲染? 假设你为客户构建了一个很棒的事件列表 React app。。该应用程序使用了您最喜欢的服务器端工具构建的API。几周后,用户告诉您,他们的页面没有显示在 Google 上,发布到 Facebook 时也显示不出来。 这些问题似乎是可以解决的,对吧? 您会发现,要解决这个问题,需要在初始加载时从服务器渲染 React 页面,以便来自搜索引擎和社交媒体网站的爬虫工具可以读取您的标记。有证据表明,Google 有时会执行 javascript 程序并且对生成的内容进行索引,但并不总是这样。因此,如果您希望确保与其他服​​务(如 Facebook、Twitter)有良好的 SEO 兼容性,那么始终建议使用服务器端渲染。 在本教程中,我们将逐步介绍服务器端的呈现示例。包括围绕与 API 交流的 React 应用程序的共同路障。 在本教程中,我们将逐步向您介绍服务器端的渲染示例。包括围绕着 APIS 交流一些在服务端渲染 React 应用程序的共同障碍。 # 服务端渲染的优势 可能您的团队谈论到服务端渲染的好处是首先会想到 SEO,但这并不是唯一的潜在好处。 更大的好处如下:服务器端渲染能更快地显示页面。使用服务器端渲染,您的服务器对浏览器进行响应是在您的 HTML 页面可以渲染的时候,因此浏览器可以不用等待所有的 JavaScript 被下载和执行就可以开始渲染。当浏览器下载并执行页面所需的 JavaScript 和其他资源时,不会出现 “白屏” 现象,而 “白屏” 却可能在完全由客户端渲染的 React 网站中出现。 # 入门 接下来让我们来看看如何将服务器端渲染添加到一个基本的客户端渲染的使用 Babel 和 Webpack 的 React 应用程序中。我们的应用程序将会因从第三方 API 获取数据而变得有点复杂。我们在 GitHub 上提供了[相关代码](https://github.com/ButterCMS/react-ssr-example/releases/tag/starter-code),您可以在其中看到完整的示例。 提供的代码中只有一个 React 组件,\`hello.js\`,这个文件将向 [ButterCMS API](https://buttercms.com/) 发出异步请求,并渲染返回 JSON 列表中的博文。ButterCMS 是一个基于 API 的博客引擎,可供个人使用,因此它非常适合测试现实生活中的用例。启动代码中连接着一个 API token,如果你想使用你自己的 API token 可以[使用你的 GitHub 账号登入 ButterCMS](https://buttercms.com/home/)。 ``` js import React from 'react'; import Butter from 'buttercms' const butter = Butter('b60a008584313ed21803780bc9208557b3b49fbb'); var Hello = React.createClass({ getInitialState: function() { return {loaded: false}; }, componentWillMount: function() { butter.post.list().then((resp) => { this.setState({ loaded: true, resp: resp.data }) }); }, render: function() { if (this.state.loaded) { return ( <div> {this.state.resp.data.map((post) => { return ( <div key={post.slug}>{post.title}</div> ) })} </div> ); } else { return <div>Loading...</div>; } } }); export default Hello; ``` [Truncated] const app = express(); // 服务器使用 static 中间件构建 build 路径 app.use('/build', express.static(path.join(__dirname, 'build'))); // 使用我们的 handleRender 中间件处理服务端请求 app.get('*', handleRender); // 启动服务器 app.listen(3000); ``` 重新启动服务器浏览到 `http://localhost:3000`。查看页面源代码,您将看到该页面现在完全呈现在服务器上! ![](https://res.cloudinary.com/css-tricks/image/upload/c_scale,w_1000,f_auto,q_auto/v1497358548/rendered-react_t5neam.png) # 更进一步 我们做到了!在服务器上使用 React 可能很棘手,尤其是从 API 获取数据时。幸运的是,React 社区正在蓬勃发展,并创造了许多有用的工具。如果您对构建在客户端和服务器上渲染的大型 React 应用程序的框架感兴趣,请查看 Walmart Labs 的 [Electrode](https://github.com/electrode-io/electrode) 或 [Next.js](https://github.com/zeit/next.js)。或者如果要在 Ruby 中渲染 React ,请查看 Airbnb 的 [Hypernova](https://github.com/airbnb/hypernova) 。 Answers: username_1: 最近在搞 vdom server side render 的事情,翻到这里来。 博主写得很认真,赞一个,而且引用的链接也很赞,对我帮助很大。 谢谢。😄
ChurchCRM/CRM
970526029
Title: Mr.\'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||\' Question: username_0: 1 Collected Value Title | Data ----------------------|---------------- Page Name |/ChurchCRMp3sjnw7xxg/v2/people?familyActiveStatus=inactive Screen Size |600x800 Window Size |1024x1280 Page Size |1024x1280 Platform Information | Linux demos6.softaculous.com 3.10.0-514.el7.x86_64 #1 SMP Tue Nov 22 16:42:41 UTC 2016 x86_64 PHP Version | 7.4.19 SQL Version | 5.7.33 ChurchCRM Version |4.4.5 Reporting Browser |Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Prerequisite Status |Missing Prerequisites: ["Include\/Config file is writeable"] Integrity check status |{"status":"success"} Apache Modules |core,prefork,http_core,mod_so,mod_auth_basic,mod_auth_digest,mod_authn_file,mod_authn_default,mod_authz_host,mod_authz_user,mod_authz_default,mod_include,mod_log_config,mod_env,mod_reqtimeout,mod_headers,mod_setenvif,mod_mime,mod_dav,mod_status,mod_autoindex,mod_info,mod_negotiation,mod_dir,mod_actions,mod_alias,mod_rewrite,mod_proxy,mod_proxy_http,mod_proxy_html,mod_cgi,mod_version,mod_ruid2,mod_ssl,mod_suphp,mod_php7<issue_closed> Status: Issue closed
codemaoz90/javascript-es6
824441110
Title: Falta readme de proyecto Question: username_0: Ahora que comienzas con ejercicios más completos, conviene añadir readmes a proyectos por si ve tu perfil un reclutador cuando entregues una prueba técnica. Conviene añadir mínimo: - Descripción del proyecto - Pntallazos - Link a demo (codesandbox por ejemplo) https://github.com/codemaoz90/javascript-es6/blob/4f7c2259564cdcf2f49236ff3bf42d1ed3cb3480/nivel3/index.html#L4