Jennings Zhang

Results 188 issues of Jennings Zhang

**Do you want to request a _feature_ or report a _bug_?** bug **What is the current behaviour?** CSS `opacity` with units as a [percentage] is capped at `1%` for production...

```python from typing import NewType, Dict from serde import deserialize, from_dict @deserialize class A: a: Dict assert from_dict(A, {'a': {'x': 'y'}}).a == {'x': 'y'} MyType = NewType('MyType', Dict) @deserialize class...

enhancement

https://github.com/stevedonovan/gentle-intro/blob/11650e1ca487e81ad8a77724e961846a0c759bd1/src/6-error-handling.md?plain=1#L19 > Trait objects without an explicit 'dyn' are deprecated

I have a use case where I want to run async code setup before all tests (e.g. check server is online). Unfortunately, I saw that [async once fixtures](https://github.com/la10736/rstest/issues/119) are forbidden....

Spy does not work on frozen dataclasses, it would be nice if it did (for instance, by using `object.__setattr__(obj, name, spy)` ```python from dataclasses import dataclass from typing import Callable...

enhancement

The headers of MINC files have information which specifies the volume units (almost always mm). This PR exposes the data via `MincHeader.get_xyzt_units()`, which is homologous to `Nifti1Header.get_xyzt_units()`. But I don't...

**Describe the bug** Destructive installation on /dev/sda, then reboot. Bootloader did not start. **To Reproduce** 1. create bootable USB 2. boot USB in UEFI mode 3. `clr-installer` 4. choose "Destructive...

sighting
bug_triage

https://github.com/dattn/dnd-grid/blob/1d4c05bbb540dc71d131a67a63aeb4816f128d69/src/Container.vue#L27 Is `!important` necessary here? It's reasonable that one would want to override the default CSS rules of `.dnd-grid-box.placeholder`. eg. ` transition: ease-out 0.2s;`

enhancement

In the original script, columns would be misaligned because `df` is called several times on different mount points, so its spacing would be different when filesystem names differ in length....