id int64 393k 2.82B | repo stringclasses 68
values | title stringlengths 1 936 | body stringlengths 0 256k β | labels stringlengths 2 508 | priority stringclasses 3
values | severity stringclasses 3
values |
|---|---|---|---|---|---|---|
622,557,502 | godot | Is a godot_uint (not) needed ? | PR #36163 has made `godot_int` an alias to `int64_t`, this pretty good for GDnative (before that calling methods returning uint64_t/int64_t could lead to segfault, see #34254)
However I wonder from a documentation point of view this is not perfect given the methods returning uint64_t are presented to GDnative users ... | discussion,topic:core | low | Minor |
622,594,274 | go | x/pkgsite: proposal for search filters: language features and possible compatibility issues | ### What is the URL of the page with the issue?
https://pkg.go.dev/
Proposal(?) to add search filter functionality to include/exclude features when searching for packages, modules.
Usefulness in descending order (for me at least):
- cgo usage <-- this! ("cgo is not Go")
- package unsafe usage
- package reflect... | NeedsInvestigation,FeatureRequest,pkgsite,pkgsite/search | medium | Major |
622,599,575 | godot | CameraServer.FeedImage: Duplicate values in Enumeration Values cause issues for language bindings like Swift and Rust | **Godot version:**
3.2
**OS/device including version:**
All
**Issue description:**
The enumeration for CameraServer.FeedImage has four values, three of them have the same value "0" so it is not possible to use those values:
"FEED_RGBA_IMAGE": 0,
"FEED_YCBCR_IMAGE": 0,
"FEED_Y_IMAGE": 0
| bug,topic:core,topic:gdextension,topic:xr | low | Major |
622,617,332 | pytorch | Override `__call__` instead of `forward` | ## π Feature
Let users override `__call__` of modules so that it works with type checking.
## Motivation
This is a [Module class](https://github.com/lab-ml/labml/blob/master/labml/helpers/pytorch/module.py) I've been using over `torch.nn.Module` so that I can override `__call__` instead of `forward`.
## Pitc... | module: typing,triaged | low | Critical |
622,632,534 | PowerToys | [PowerRename] Rename files based on external file list | # Summary of the new feature/enhancement
Import external file list of new names that will be used on the current queue.
<!--
A clear and concise description of what the problem is that the new feature would solve.
Describe why and how a user would use this new functionality (if applicable).
-->
Some people jus... | Idea-Enhancement,Help Wanted,Product-PowerRename | low | Major |
622,632,548 | bitcoin | Tor-only transaction broadcast onlynet=onion alternative | It would be nice if there was a way to tell core to only broadcast transactions over Tor, but use clearnet for everything else.
As far as I can tell the only way to guarantee transaction broadcast over Tor is to use onlynet=onion, which means that all network traffic goes over Tor. The problem is that this introduce... | Feature | low | Major |
622,671,471 | vscode | Resize Pane actions for all panes | 
I just discovered these, why are they just for the terminal and not for the panel in general? They would be useful anywhere. | feature-request,accessibility,layout,workbench-views | low | Minor |
622,690,806 | create-react-app | Use react-scripts outside of a CRA project | ### Is your proposal related to a problem?
<!--
Provide a clear and concise description of what the problem is.
For example, "I'm always frustrated when..."
-->
My team developer a couple of CRA applications from a Lerna monorepo. And to make life easier, we don't install Jest, Webpack, etc. so we don't up... | issue: proposal,needs triage | low | Minor |
622,700,320 | terminal | conhost: evaluate continued collection of connected process stats | Are we still using the list of connected processes and their VT statistics? If not, we can declutter our lives and remove a potential source of community consternation.
https://github.com/microsoft/terminal/blob/master/src/host/telemetry.cpp#L287 | Product-Conhost,Issue-Task,Area-CodeHealth,Priority-2 | low | Minor |
622,716,359 | flutter | hot_mode_dev_cycle__benchmark needs a more capable benchmark/regression tracking | The hot reload/restart cycle is critical to the Flutter developer workflow, but our benchmarks that measure it don't tell the whole story. Unfortunately, when one of these benchmarks regresses it is extremely difficult to pinpoint the cause via bisecting due to:
1. The benchmark performs a large number of operations... | c: new feature,team,tool,c: performance,P2,team-tool,triaged-tool | low | Major |
622,732,436 | terminal | Scenario: TerminalControl Interactivity Improvements | This is a comprehensive list of improvements to our interactivity model for v2. This is not finalized and may be updated as new issues come in or we make cuts for v2.
## (Hidden) Refactors
- [ ] #5099: mouse selection should begin/end at nearest cell boundary (and be inclusive start exclusive end like accessibility... | Area-Input,Area-TerminalControl,Product-Terminal,Issue-Scenario | low | Critical |
622,761,389 | three.js | Gamepad Support | Is it possible to add Gamepad support for controllers.
It is well documented and I guess quite useful to get interaction for all buttons, touch pad, thumbstick on controllers.
https://immersive-web.github.io/webxr-gamepads-module/
PS: It looks like I don't have permission to add label Enhancement | Enhancement,Design | low | Minor |
622,780,117 | three.js | SkinnedMesh.clone doesn't work properly, results in undefined skeleton property | When cloning `SkinnedMesh`, the resulting `SkinnedMesh` instance doesn't have `skeleton` property defined.
I'm not sure if this is also a bug, but having a `SkinnedMesh` with undefined `skeleton` crashes the renderer with:
```
Uncaught TypeError: Cannot read property 'frame' of undefined
```
at
https://git... | Bug | low | Critical |
622,780,333 | deno | Installed scripts can't know their own name | There's no way for a `deno install`ed script to know its own name.
```
$ deno install -n cmdname https://url.to/script.ts
^^^^^^^
```
This has a significant impact on CLI modules, that may need it for various reasons such as showing help messages and usage examples, registering shell completion... | cli,suggestion | low | Major |
622,802,313 | flutter | Remove all "await Future.delayed" logic from tests | Having a test just wait a few seconds is a race condition waiting to happen.
We should remove all occurrences of `Future<void>.delayed` in our tests.
For example:
https://github.com/flutter/flutter/blob/master/dev/integration_tests/ui/test_driver/keyboard_resize_test.dart#L36 | a: tests,team,framework,P2,c: flake,team-framework,triaged-framework | low | Major |
622,802,548 | go | runtime: move tests for runtime-gdb.py to a separate package and do not run them during all.bash | The tests in `runtime-gdb_test.go`, for the GDB bindings in `runtime-gdb.py`, have historically been very flaky. They are currently skipped on a large fraction of platforms due to:
* #15603
* #17366
* #18784
* #20821
* #21380 / #22021 / #22687
* #22893
* #25939
* #28558
* #29508
* #35710
* and what appears t... | Testing,NeedsDecision,Debugging,compiler/runtime | low | Critical |
622,809,632 | godot | Listener3D will override hearing location even if not current | **Godot version:**
3.2.1
**Issue description:**
So docs say that Listener
```
Once added to the scene tree and enabled using [method make_current], this node will override the location sounds are heard from.
```
However this is not true. You don't need to make it current, it will automatically become current i... | discussion,topic:core | low | Minor |
622,815,705 | PowerToys | [Run] Allow open of bitlocker encrypted drives like windows search does | On the windows search (start menu) I can enter the drive letter of an encrypted drive and after press enter I will be asked for the password.
In launcher this won't work.
Please add this functionality to launcher.
**Note:**
In start menu this command is marked as type "command". | Idea-Enhancement,Product-PowerToys Run | low | Minor |
622,817,761 | terminal | Add a explorer context menu entry to let the user pick the profile they want to "open here" | Follow up from #6100
We should add another entry to the explorer context menu to let the user select which profile.
This is the _only_ other option I'm considering at this time, I don't want to clutter that UI too badly.
#### notes:
* We could maybe allow arbitrary customization akin to what we're planning fo... | Product-Terminal,Issue-Task,Area-ShellExtension | medium | Critical |
622,819,110 | terminal | The explorer context menu should only appear on shift+click | Follow-up from #6100.
The Explorer context menu is notoriously cluttered. We shouldn't add to that clutter if we can avoid it. This issue represents me taking the time to investigate how exactly to make the menu only appear on shift+right click, not _just_ right click. | Help Wanted,Product-Terminal,Issue-Task,Area-ShellExtension | low | Major |
622,851,847 | rust | Make core::panic::Location available from another module? | I scanned the history but didn't see this question mentioned. Has there been any discussion about moving the Location type out of the std::panic module, or even just re-exporting under a different name if it needs to stay there for backwards compatibility?
I'm really looking forward to track_caller, but almost none ... | C-enhancement,T-libs-api,F-track_caller | low | Minor |
622,854,899 | node | errorMonitor be emitted consistently | <!--
Thank you for suggesting an idea to make Node.js better.
Please fill in as much of the template below as you're able.
-->
**Is your feature request related to a problem? Please describe.**
No
In an event callback, the current way to capture an error in an `async` function is to have the `captureRejecti... | events | low | Critical |
622,859,035 | flutter | Back swipe crash if deep linking into routes that contain hero widget. | <!-- Thank you for using Flutter!
If you are looking for support, please check out our documentation
or consider asking a question on Stack Overflow:
* https://flutter.dev/
* https://api.flutter.dev/
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
If you hav... | c: crash,framework,f: cupertino,f: routes,has reproducible steps,found in release: 2.10,found in release: 2.13,team-design,triaged-design | low | Critical |
622,879,189 | PowerToys | [KBM] Allow users to map only modifier key shortcuts | # Summary of the new feature/enhancement
Right now, if we try to set either the original shortcut or the new shortcut to finish on a modifier key (<kbd>Ctrl</kbd>, <kbd>Shift</kbd>, <kbd>Alt</kbd>, <kbd>Win</kbd>), the error message "Some of the keys could not be remapped. Do you want to continue anyway?" appears. All... | Idea-Enhancement,Product-Keyboard Shortcut Manager | low | Critical |
622,899,342 | vscode | Strange bug in PHP files with HTML and Emmet parser because conditionals are been mistaken as opening and/or closing tags |
Issue Type: <b>Bug</b>
1. Open or create a PHP file
2. Type the following example code:
```php
<?php
$looping = 1;
$while = [];
while ($looping <= 5) {
//here you can't use emmet or html! give it a try!
$while[] = $looping;
$looping++;
}
var_dump($while);
$looping = 5;
$while = [];
do {... | bug,upstream,php,emmet,upstream-issue-linked | low | Critical |
622,902,980 | flutter | [Feature request] control padding on a ThemeData level | I was just looking for a padding property for CardTheme, but there was none. I would like a uniform padding across all my cards in the app...
<!-- Thank you for using Flutter!
If you are looking for support, please check out our documentation
or consider asking a question on Stack Overflow:
* http... | c: new feature,framework,f: material design,c: proposal,team-design,triaged-design | low | Critical |
622,940,032 | PowerToys | [Run] Apps don't launch proper folder (link target) | From #3422, a user requested copy file path, we have open containing folder however.
When trying out "word", this actually opens up the LNK folder, not the exe folder.
Example: I search for word and i get C:\ProgramData\Microsoft\Windows\Start Menu\Programs
In reality it should be: "C:\Program Files\Microsoft ... | Idea-Enhancement,Help Wanted,Product-PowerToys Run | low | Minor |
622,940,797 | pytorch | Memory Leak with Docker GPU | ## π Bug
I built a custom image based on `pytorch/pytorch:1.5-cuda10.1-cudnn7-runtime`, but it has memory leak once ran using docker with gpus. As an example, this ran (https://app.wandb.ai/cleanrl/cleanRL/runs/1giu2q8i?workspace=user-costa-huang) has its memory risen from 9% to 80% of 64 GB memory in minutes. In c... | high priority,module: cudnn,module: cuda,module: memory usage,triaged,module: regression | low | Critical |
622,942,753 | flutter | Add BoxConstraints.screen() | I tried to place a `Scaffold` with a `NestedScrollView` inside a `AnimatedCrossFade` that's inside a `FutureBuilder` and I got several rendering errors saying:
(`FutureBuilder` > `AnimatedCrossFade` > `Scaffold` > `NestedScrollView`)
```
RenderCustomMultiChildLayoutBox object was given an infinite size during la... | c: new feature,framework,f: material design,c: proposal,a: layout,team-design,triaged-design | low | Critical |
622,963,295 | pytorch | [FR] cuda.comm.broadcast/reduce_add support `out=` | ## π Feature
It would be easy for `broadcast` and `reduce_add` to support `out=`. Such a functionality would be useful when users want to optimize customize intraprocess communication. For me this comes up when I code a SyncBatchNorm variant for DataParallel.
cc @ngimel @pietern @mrshenli @pritamdamania87 @zhaojuanm... | oncall: distributed,feature,module: cuda,triaged | low | Minor |
622,983,592 | TypeScript | `moduleResolution: node` doesn't align with Node's module resolution when targeting ES2015. | **TL;DR**: When resolving CommonJS modules in NodeJS, it will implicitly look for an `index.js` file within a folder if the folder matches the import path. When resolving ES2015 modules in NodeJS however, this is not true. Currently, TypeScript will always implicitly resolve `index.js` in a folder matching the provid... | Needs Investigation,Rescheduled | low | Critical |
623,018,693 | go | Missing support for arm64e | <!--
Please answer these questions before submitting your issue. Thanks!
For questions please use one of our forums: https://github.com/golang/go/wiki/Questions
-->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.14.3 darwin/amd64
</pre>
### Does this issue repr... | ExpertNeeded,NeedsInvestigation,arch-arm64 | low | Major |
623,034,541 | TypeScript | Use TypeScript declaration files alongside JavaScript | **TypeScript Version:** 3.9.3
**Search Terms:**
TypeScript along side JavaScript
**Code**
Button.jsx
```js
const Button = ({ text, onClick }) => {
return <button onClick={onClick}>{text}</button>
}
```
Button.d.ts
```ts
interface Props {
text: string
onClick: () => void
}
declare const ... | Suggestion,Awaiting More Feedback | low | Minor |
623,084,263 | terminal | Show a warning if the background image can't be loaded | Hi,
The `backgroundImage` parameter in `settings.json` has a somewhat permissive path, for example all the following examples work:
- **Windows directory separators:** `C:\\<username>\\Pictures\\some image.png`
- **Unix directory separators:** `C:/<username>/Pictures/some image.png`
- **A mix of both Windows... | Help Wanted,Area-Settings,Product-Terminal,Issue-Task,Priority-3 | low | Critical |
623,087,000 | flutter | Memory leak when switch route too fast | <details>
<summary>flutter doctor -v</summary>
```
$ flutter doctor -v
[β] Flutter (Channel stable, v1.17.1, on Microsoft Windows [Version 6.1.7601], locale en-US)
β’ Flutter version 1.17.1 at C:\flutter
β’ Framework revision f7a6a7906b (9 days ago), 2020-05-12 18:39:00 -0700
β’ Engine revision 6bc... | framework,c: performance,f: routes,d: devtools,perf: memory,P2,team-framework,triaged-framework | low | Major |
623,109,694 | flutter | keyboard in dialog resizes scaffold in background | Steps to Reproduce
<!-- You must include full steps to reproduce so that we can reproduce the problem. -->
Got a scaffold and inside that I open a dialog using [showDialog](https://api.flutter.dev/flutter/material/showDialog.html). In that I have a text field. When the keyboard is showing the content in backgrou... | framework,f: material design,c: proposal,P3,team-design,triaged-design | low | Critical |
623,193,752 | terminal | Strip or replace tabs when pasting | <!--
π¨π¨π¨π¨π¨π¨π¨π¨π¨π¨
I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING:
1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement.
2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl... | Help Wanted,Area-TerminalControl,Product-Terminal,Issue-Task | low | Critical |
623,199,609 | PowerToys | [System tray] Update colored icon to an outlined version | This was discussed in various issues - this one can be used to track this request and post ideas.
# Summary of the new feature/enhancement
The current icon that shows up in the system tray uses the PowerToys app icon. To feel as native as possible, it would be nice to use a black/white icon that are similar to syst... | Help Wanted,Area-User Interface | medium | Major |
623,201,141 | go | x/build/cmd/gopherbot: released things get marked Unreleased | Any issue in an x/ package that is vendored into the release should not be milestoned Unreleased by Gopherbot.
Issue #32441 was left alone for a long time in part because it was in the Unreleased milestone.
And it appears to have ended up in the Unreleased milestone because Gopherbot put it there.
And Gopherbot appear... | Builders,NeedsInvestigation | low | Critical |
623,207,900 | PowerToys | TGA and SBSAR preview (and as many more image/visual formats possible) | Creative people use Windows on a daily basis to create content.
TGA among other image formats is one used a lot in game development, 3D Animation, Visualization, VFX, Video Editing and more.
Another set of tools that has fast become the standard in visual arts is Substance. Substance Painter is the most popular... | Idea-Enhancement,Product-File Explorer | low | Major |
623,215,216 | godot | CustomNode in VisualShader gets replaced with Null box | **Godot version:**
3.2.0-stable (until latest beta)
**Issue description:**
One of the custom visual shader nodes gets replaced with Null node, rendering the shader useless.
When I saved, the shader looked like this:

- `$TERM`: `printenv TERM` = `screen`
### Steps to reproduce using `nvim -u NORC`
Start with this buffer content:
```
line1
longer line2
line3
```
Select all three lines with linewi... | enhancement,visual-mode | low | Major |
623,240,193 | PowerToys | [Preview Panes] Ability to select text in any text type file on preview | # Summary of the new feature/enhancement
I would like to have the ability to select the text on the selected file in the preview.
I can do the same feature using the keyboard with SHIFT+ Arrow Keys, but to improve the UX it would be nice to also be able to do the same with mouse (and maybe touch?)
Here is a gif o... | Idea-New PowerToy,Product-File Explorer | low | Critical |
623,281,751 | godot | Usage of included functions resulting in `.dll` not being found | **Godot version:** 3.2.1
**OS/device including version:** Windows 10, build 1903
### The issue
Hey, I hope I'm in the right place with this, I've followed the example in the docs for c++: https://docs.godotengine.org/en/stable/tutorials/plugins/gdnative/gdnative-cpp-example.html. This went all right, my next s... | bug,topic:gdextension | low | Critical |
623,375,937 | youtube-dl | wykop.pl support | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | site-support-request | low | Critical |
623,379,629 | TypeScript | Pre-Compiler Plugin Proposal | ## Search Terms
Extension, Plugin, Vue, Custom extensions
I found some issues but no proposal :/
## Suggestion
Hi! I'm an author of the [`fork-ts-checker-webpack-plugin`](https://github.com/TypeStrong/fork-ts-checker-webpack-plugin). Last few months I was busy with [rewriting this plugin to pay off the technolo... | Suggestion,In Discussion | high | Critical |
623,383,629 | TypeScript | Document how (lazy) type checking works | Before the whole compiler and its API is documented, could you add a few details about the type checker:
* What normally forces the type checking and inference of a name?
* How TSC forces all types to be checked?
* What are the options for an application using the compiler API to control/force type checking?
Pote... | Docs | low | Minor |
623,397,322 | rust | rustdoc should add repository links automatically | It's handy to jump from docs to a repo, e.g. to explore/open issues, find examples, etc.
As an example of what this might look like, see [anyhow](https://docs.rs/anyhow/1.0.31/anyhow/).

Can the repositor... | T-rustdoc,C-feature-request | low | Minor |
623,399,150 | pytorch | [FR] DataParallel arg rename device_ids->devices | ## π Feature
It already accepts a list of devices. So this would make the argument consistent with the rest of the codebase. We can keep both / do a deprecation cycle / just put a warning for device_ids permanently for BC reasons. | triaged,enhancement,module: data parallel | low | Minor |
623,431,383 | rust | Lifetime issues: assigning to a mutable reference with part of its current value | **Edit: simplified reproducer as well as workaround available at https://github.com/rust-lang/rust/issues/72477#issuecomment-632890675**
Hello,
While trying to implement an AsyncRead wrapper, I have hit something that I think is the borrow-checker being too restrictive with `&mut` inside `Pin`.
I originally th... | A-lifetimes,T-compiler,C-bug | low | Critical |
623,446,666 | youtube-dl | Is there a way to download only Youtube videos that have english subtitles? | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | question | low | Critical |
623,456,132 | godot | Label with bottom alignment draws outside of its boundaries with the editor theme | Godot 3.2.1
I am making an editor plugin in which I designed a custom list of items. Each item has a label inside, and to handle the case of varying font sizes easily, I decided to simply make the label cover the item and use `bottom` alignment. This works great when designed in the scene editor:
. It seems to me that, if a resize happens and the cursor gets pushed off-screen, then that will always trigger a scroll, which the application can detect and scroll the viewport back up and redraw th... | Issue-Question,Product-Meta,Needs-Tag-Fix | low | Major |
623,522,313 | TypeScript | TSServer Completions - Context Needed | ## Search Terms
- completions
- tsserver
- completionsInfo
- completionEntryDetails
## Suggestion
I know this may need to go through the lengthy process of going through lsp spec then implementation etc etc but figured I would bring it up here first in case I am missing something.
I was recently working ... | Suggestion,Awaiting More Feedback | low | Minor |
623,526,516 | go | x/tools/go/analysis/passes/asmdecl: false error report for 16 byte move | The following assembly
```s
#include "textflag.h"
// func Shuffle(mask []byte, data []byte) [4]uint32
// Requires: SSE2, SSSE3
TEXT Β·Shuffle(SB), NOSPLIT, $0-64
MOVQ mask_base+0(FP), AX
MOVQ data_base+24(FP), CX
MOVOU (CX), X0
PSHUFB (AX), X0
MOVOU X0, ret+48(FP)
RET
```
produces the foll... | NeedsInvestigation,Tools,Analysis | low | Critical |
623,563,299 | tensorflow | Unable to log scalar summaries in XLA | **System information**
- Have I written custom code (as opposed to using a stock example script provided in TensorFlow): yes
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): macOS 10.15.5 Beta
- Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: n/a
- TensorFlow ... | comp:tensorboard,stat:awaiting tensorflower,type:bug,comp:xla,TF 2.11 | low | Critical |
623,572,256 | PowerToys | New Folder with Selection | # Summary of the new feature/enhancement
Provide a means to select files then put them into a new folder created at the time the operation is executed.
# Proposed technical implementation details (optional)
Essentially this is a Windows Explorer implementation of the similarly named function in (Apple's) macOS Fin... | Help Wanted,Idea-New PowerToy,Status-In progress | medium | Critical |
623,598,899 | godot | Image.FORMAT_R8 uses Alpha in GLES2 instead of Red channel, this is not reflected in docs | **Godot version:** v3.2.1.stable.official, though relevant code appears to be the same in master
**OS/device including version:**
**Issue description:** Using `Image.FORMAT_R8` in GLES3 correctly produces `ImageTexture`s that have your given data in the *Red* channel. In GLES2, the data is not in the *Red* chann... | bug,discussion,topic:core,good first issue,documentation | low | Minor |
623,603,377 | terminal | When WSL is slow to respond, and a WSL profile is default, we throw a weird error message | <!--
π¨π¨π¨π¨π¨π¨π¨π¨π¨π¨
I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING:
1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement.
2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl... | Help Wanted,Issue-Bug,Area-Settings,Product-Terminal | low | Critical |
623,614,250 | youtube-dl | Parentheses for meta fields in format selection syntax | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | request | low | Critical |
623,621,618 | create-react-app | public ,src, script directory is not creating while installing create-react-app | on run command npx create-react-app my-app not creating public, src and script folder, only node-modules, package.json and yarn.lock file is coming
OS: windows10
node: V12.14.0
npm/npx : 6.13.4
C:\Users\vivek_Vishu\Desktop\project>npx create-react-app my-app
Creating a new React app in C:\Users\vivek_Vishu... | issue: needs investigation | medium | Critical |
623,624,367 | terminal | Box drawing characters are not antialiased | # Environment
```none
Windows build number: Microsoft Windows [Version 10.0.18362.592]
Windows Terminal version (if applicable): Version: 1.0.1401.0
Any other software? No.
```
# Steps to reproduce
1. Install the latest 1.x version of Windows Terminal and open a WSL terminal.
2. Download and display the [... | Area-Rendering,Issue-Bug,Product-Terminal,Priority-3 | medium | Major |
623,642,482 | rust | Incorrect error message, βcan't call method on ambiguous numeric type `{integer}`β | ```rust
// use std::ops::AddAssign;
fn foo() {
1.add_assign(1);
}
```
Uncomment the `use` and it compiles, QED.
([Playground](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=a9ade89e2201a31813f3c3c56ac117a0))
Errors:
```
Compiling playground v0.0.1 (/playground)
erro... | C-enhancement,A-diagnostics,T-compiler,A-suggestion-diagnostics,D-papercut | low | Critical |
623,652,927 | PowerToys | Disable "Alt+underlined letter" menu | it's super annoying when i'm using ALL KINDS OF APPLICATIONS (like photoshop,powerpoint etc.),and there is no official way to fix it,maybe we can fix it by PWT

ps: unofficial solutionοΌ
htt... | Idea-New PowerToy | low | Major |
623,653,914 | godot | GLES2.0 shader time precision error | **Godot version:**
3.2.2 Beta 3 Official
**OS/device including version:**
Android (Xiaomi Poccophone)
**Issue description:**
When using time uniform in shaders for trigonometrical functions it will mess up the calculations after a time, even when using modulo to prevent precision errors. This will not happen i... | platform:android,topic:shaders | low | Critical |
623,655,378 | godot | Material UI not responding when updating shader params in tool mode | **Godot version:**
3.2.2 Beta 3 Official
**OS/device including version:**
Windows 10
**Issue description:**
Having a `sprite node` with a tool script attached to it:
```
tool
extends Sprite
func _process(delta: float) -> void:
material["shader_param/Uniform"] = ArbitraryValue
```
And having a materia... | bug,topic:editor,topic:shaders | low | Minor |
623,662,406 | PowerToys | [Run] Add option for custom locations, custom commands, workflow | Hi,
First of all let me say I absolutely love PowerToys and use it on a daily basis.
The new app launcher is great and since it works more smoothly and lag free for me compared to other third-party programs is what attracted me to it. But the only thing, at least in my workflow, is the ability to create custom comm... | Idea-Enhancement,Product-PowerToys Run | high | Critical |
623,663,889 | flutter | [web ]Tab label shows white and text overflows when using long text | ## Steps to Reproduce
1. Put a few tabs into a `DefaultTabController` with relatively long labels.
2. Make sure you reduce the width of your browser window so that the tabs have no room to display in full.
**Expected results:**
Correct display.
**Actual results:**
Labels with overflown texts will show a... | engine,platform-web,e: web_html,has reproducible steps,customer: web10,P2,customer: june,found in release: 3.3,found in release: 3.6,team-web,triaged-web | low | Major |
623,669,256 | pytorch | fold variation | current scenario -
the current nn.Fold module adds all the overlalpping values, would it be a good idea to add `mode` to nn.Fold, for example,
```
x = torch.randn(5, 5)
x = x.unfold(0, 3, 1).unfold(1, 3, 1)
x = x.reshape(1, 9, 9)
x
```
gives
```
tensor([[[-0.6498, 0.0957, 0.0787, 0.8407, -2.1366, 0.4104, ... | feature,module: nn,triaged,function request | low | Major |
623,695,922 | terminal | Settings might not load correctly if file is saved as ANSI, not UTF-8 (WAS: No background image displayed if set to a path that contains accented chars.) | <!--
π¨π¨π¨π¨π¨π¨π¨π¨π¨π¨
I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING:
1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement.
2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl... | Help Wanted,Issue-Bug,Area-TerminalControl,Area-Settings,Product-Terminal,Priority-2 | medium | Critical |
623,703,295 | PowerToys | [KBM] Use Tab or Space as modifier key | # Use Tab or Space as modifier key
Normally, only Shift, Alt, Ctrl are modifier keys. But if who is a fanboy of AutoHotKey will know the well-known mapping of using Tab or Space as modifier, especially to use Tab + W/A/S/D as arrow keys
| Idea-Enhancement,Product-Keyboard Shortcut Manager | low | Major |
623,714,220 | rust | Audit uses of `skip_binder` in diagnostics code | As discussed in #71618, `skip_binder` is called very often in diagnostics code. In general, this is incorrect for types with late-bound regions, e.g. function pointers. We should audit uses of `skip_binder` and replace them with `no_bound_vars` + early return or `unwrap`. If there are uses of `skip_binder` that are ben... | C-cleanup,A-diagnostics,A-trait-system,T-compiler,T-types | low | Critical |
623,721,231 | PowerToys | [Run][Calculator Plugin] Add functions (bin2dec,hex2dec,oct2dec) | <!--
**Important: When reporting BSODs or security issues, DO NOT attach memory dumps, logs, or traces to Github issues**.
Instead, send dumps/traces to secure@microsoft.com, referencing this GitHub issue.
-->
# Environment
```
Windows build number: 10.0.18363.836
PowerToys version: 0.18.1
PowerToy module f... | Idea-Enhancement,Product-PowerToys Run,Run-Plugin | low | Critical |
623,724,009 | excalidraw | Canvas background color is not synced in collaborative mode | Right now we only sync the elements in the drawing in collaborative mode. We also need to sync the background color from appState or figure out another way to do it. | bug,collaboration | low | Minor |
623,724,224 | rust | Consider making `cfg(feature = "crt-static")` available *only* for link-time configuration | `cfg` predicates used for link-time configuration (`#[link(cfg(predicate))]` https://github.com/rust-lang/rust/issues/37406 https://github.com/rust-lang/rust/issues/72059) may want to use data that is available only long after the regular `cfg` expansion happens.
For example,
- whether we are linking an executable ... | A-linkage,C-enhancement,T-lang,T-compiler | low | Minor |
623,730,675 | rust | No warning when trait extension fn's conflict with pre-existing fn's | When trying to use a trait extension for the Result type, I found that calling code seemed to not be using my implemented methods at all. Turns out, I was defining `or(self, Self) -> Self`, which Result already has an implementation of - so any code calling a.or(b) was calling Result's `or`, not my `or`. I know this is... | A-type-system,T-libs-api,C-bug,T-types | low | Critical |
623,732,009 | create-react-app | ES7 features support & export-ns-from support | Is CRA planning to support this proposal from stage 4?
https://github.com/tc39/proposal-export-ns-from | tag: underlying tools | low | Minor |
623,732,832 | TypeScript | Function parameter that has inferred type has no intellisense in the return , while it has in the rest of the function body | **TypeScript Version:** 3.9.2
**Search Terms:** generic , intellisense , infered type
**Code**:
```typescript
/*
This function will be used in javascript projects.
I want its intellisense to work in javascript projects.
*/
function component<T>(p: {
actions : () => T,
htmlTemplate: <S extends T>(action... | Bug | low | Minor |
623,746,191 | rust | Clarify stages of MIR pipeline, and make MIR lints consistent | The [`rustc_mir::transform`](https://github.com/rust-lang/rust/blob/master/src/librustc_mir/transform/mod.rs) module defines the pipeline of analysis passes and transformations that run on the MIR after it is lowered but before it is passed to codegen. However, it's not always clear whether certain invariants apply to... | C-cleanup,T-compiler,A-MIR | low | Critical |
623,751,624 | create-react-app | Development server errors due to emacs file lock | <!--
Please note that your issue will be fixed much faster if you spend about
half an hour preparing it, including the exact reproduction steps and a demo.
If you're in a hurry or don't feel confident, it's fine to report bugs with
less details, but this makes it less likely they'll get fixed soon... | issue: bug report | high | Critical |
623,753,313 | go | x/tools/gopls: consider using &S form instead of *S for pointer type struct field autocompletion | Currently autocompletion for a struct field uses the field's type as the placeholder text. For example,
```
type F struct {...}
type S struct {
Field *F
}
```
The autocompletion for the `Field` will return `"newText":"Field: ${1:*F},"`.
`gopls` uses the type info for placeholder text, so I don't think t... | help wanted,NeedsDecision,gopls,Tools | low | Major |
623,780,498 | opencv | Inference speed on GPU is much slower than that on CPU. | ##### System information (version)
<!-- Example
- OpenCV => 4.2
- Operating System / Platform => Windows 64 Bit
- Compiler => Visual Studio 2017
-->
- OpenCV => :4.2 and 4.3
- Operating System / Platform => :Windows 10 64 Bit
- Compiler => : VS 2017 and VS 2015
- GPU => : RTX 2080Ti Γ 2
##### Detailed descr... | bug,optimization,category: dnn,confirmed,Hackathon | low | Critical |
623,782,791 | deno | security: mixed content blocking subleties | Many thanks @bartlomieju for adding an initial implementation of mixed content blocking (#1064).
I noticed a few subtle security issues with the logic in pull #5680, compared to [how browsers do this](https://developers.google.com/web/fundamentals/security/prevent-mixed-content/what-is-mixed-content) which has been ... | bug,cli | low | Critical |
623,827,433 | excalidraw | Import geographic geometries and or SVGs | Hello there, big fan here π .
I was wondering if you would be interested in supporting importing geographic geometry files such as GeoJSON and TopoJSON. I made an experiment and already got it working:
You can see a video [here](https://twitter.com/sorodrigo/status/1264481839466586112?s=20) and the code is avail... | discussion | low | Major |
623,827,985 | PowerToys | [KBM] Mapping ALT GR to ALT doesn't work | # Environment
```
Windows build number: 10.0.18363.836
PowerToys version: 0.18.1
PowerToy module for which you are reporting the bug (if applicable): Keyboard Manager
```
# Background
ALT GR is a special key that appears on a number of international keyboard layouts, including US-International and UK layou... | Issue-Bug,Product-Keyboard Shortcut Manager,Priority-1 | low | Critical |
623,867,431 | godot | Stack underflow on yielding | **Godot version:**
3.2.1
**OS/device including version:**
Windows 10
**Issue description:**
Stack underflow on yielding
Throws error:
`E 0:00:12.232 _disconnect: Disconnecting nonexistent signal 'checkpoint_reached', slot: 1305:_signal_callback.
<C++ Error> Condition "!s->slot_map.has(target)" is true.
... | bug,topic:gdscript | low | Critical |
623,879,258 | neovim | Prevent cursor from moving after using an operator | <!-- Before reporting: search existing issues and check the FAQ. -->
- `nvim --version`: v0.4.3
- `vim -u DEFAULTS` (version: ) behaves differently? vim behaves the same (all version I'm aware of)
- Operating system/version: Ubuntu 19.10
- Terminal name/version: yakuake
- `$TERM`: xterm-256color
### Steps to ... | enhancement | low | Major |
623,883,281 | pytorch | [JIT] jit can not recognize the imported function | ## π Bug
JIT can not recognize the imported function when I want to script a class outside the file where it is defined.
## To Reproduce
Suppose we have the following file structureοΌ
```
main.py
files/
__init__.py
a.py
b.py
```
and each file contains:
``` python
# a.py
from .b import f
... | oncall: jit,triaged | low | Critical |
623,885,772 | create-react-app | Add fable-fsharp support to create react app | ### Is your proposal related to a problem?
Would be nice to have a template in create react app with Fable.js (F#) instead of Typescript as a transpiled language
(Write your answer here.)
### Describe the solution you'd like
A similar approach exists for typescript, but instead would be nice to have one for... | issue: proposal,needs triage | low | Minor |
623,900,854 | node | http2: add checks and test for `state.headRequest` | Though I think `headRequest` is slightly broken or maybe I don't understand it. There is special handling for it in `Http2ServerResponse.end()` but not in `Http2ServerResponse.write()`? Not sure who is a good ping there. @jasnell?
_Originally posted by @ronag in https://github.com/nodejs/node/pull/33506_ | http2 | low | Critical |
623,949,522 | vscode | Allow to modify hardcoded quick open keybinding shortcuts | Issue Type: <b>Bug</b>
When I step through the the VSCode Quick Open menu, I want it not to automatically switch between editors until I've selected the file I'm interested in (and hit enter). But with a recent (April?) change to VSCode, it automatically shows me each file as I step through the menu. Furthermore, i... | feature-request,quick-pick | medium | Critical |
623,970,870 | youtube-dl | change how the program records dates in a video file's description. | Windows has the option to sort content within a folder based on "date archived" and "date created".
It would make sense to log within the file's description when a file was downloaded in the "date archived", and the date the author uploaded the video file to the website where the content was downloaded from in the "... | request | low | Minor |
623,999,713 | flutter | Show adb log when flutter attach | ## Proposal
I think we need log(logcat) when we use `flutter attach -d <deviceID>` to debug flutter application, is there any plan to do this? | c: new feature,platform-android,tool,a: debugging,c: proposal,P3,team-android,triaged-android | low | Critical |
623,999,896 | youtube-dl | Power Nation TV | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | site-support-request | low | Critical |
624,007,534 | rust | Slicing after `str::starts_with` performs unnecessary checks | Without unsafe ([playground](https://play.rust-lang.org/?version=stable&mode=release&edition=2018&gist=46367ccb1081dd81d8b1fa36d053922d))
```rust
pub struct Foo<'a> {
string: &'a str,
}
impl Foo<'_> {
pub fn bar(&mut self) -> Option<&str> {
if self.string.starts_with("[[") {
let ... | I-slow,C-enhancement,T-compiler,A-str,C-optimization | low | Major |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.