Michal
Michal
Serde supports [untagged enum variants](https://serde.rs/variant-attrs.html#untagged) (added in [this PR](https://github.com/serde-rs/serde/pull/2403)): ```rust #[derive(Serialize, Deserialize)] #[serde(rename_all = "kebab-case")] pub enum Foo { Bar, Qux, #[serde(untagged)] Other(f64), } ``` This should result in the...
On my Raspberry Pi Pico W using the latest SDK, trying to use the library leads to crashing the CPU – execution just hangs, and the chip doesn't do anything...
## Feature Synaptic touchpads on Windows have a feature called [Edge Motion](https://documentation.help/Synaptics-TouchPad/synt0e7n.htm). It causes the cursor to keep moving when the user reaches the edge of their touchpad. In Elementary,...
### Clear and concise description of the problem From the package description, Stacks CLI looks like a nice way to create CLI apps. In Rust I use clap, and I'd...
### Check for existing issues - [X] Completed ### Describe the bug / provide steps to reproduce it 1. Open a TypeScript file (or any language whose LSP supports jump...
## The Problem Sometimes I come across a scenario where instead of the normal class export ```ts export class Foo { ... } ``` ... I need to slightly modify...
In TypeScript, there are ways to make a numeric literal representing `Infinity` and `-Infinity`: ```ts export type PositiveInfinity = 1e999; export type NegativeInfinity = -1e999; ``` However, trying to publish...
**Is your feature request related to a problem? Please describe.** I love how with jsr.io, Deno's std is on the way to become a true "standard library" for JavaScript. Not...
I have a repo for a library library where I want to have quite strict standards for code coverage. I want to automatically show coverage gutters next to all files...
Svelte 5 TS: `class` property in template literal causes Unterminated template / Unexpected token!
### Describe the bug [Optional chaining](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Optional_chaining) to a property named `class` inside a [template literal](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals) in a TypeScript script breaks the Svelte 5 parser. ### Reproduction ```svelte const str =...