Gunnlaugur Thor Briem

Results 41 issues of Gunnlaugur Thor Briem

I want to deserialize an enum property without ReflectDecorators: ```typescript enum Color { red="RED", green="GREEN", blue="BLUE" } @jsonObject class Thing { @jsonMember({what: "todo?"}) public color?: Color } console.log(TypedJSON.parse('{"color": "green"}', Thing));...

missing documentation

Requirements files can contain lines like: ``` --index-url https://pypi.mycompany.com/local --extra-index-url https://pypi.mycompany.com/simple ``` but `curd install -r requirements.txt` tries to install these as if they were package names: ``` --index-url https://pypi.mycompany.com/local...

We run (and I imagine many companies run) a local PyPI server with two sides to it: a cache for the actual PyPI, and a local repository for our own...

Fixed in https://github.com/sunlightlabs/psycopg2-ctypes/commit/d30d4bdfe41f5ff9765594a9a59265faad0f05a2 which should be merged in.

## How to reproduce the problem Start with a vanilla Windows 10 machine that doesn't have the Microsoft Visual C++ Redistributable installed, and in particular doesn't have `msvcp140.dll` in `C:\Windows\system32`....

help wanted
install
windows

I can make a single-field struct transparent: ```rust #[derive(Serialize)] #[serde(transparent)] struct Bar { baz: i8 } ``` I'd _like_ to be able to do the same with a single-field struct...

enhancement

When I make this particular mistake (missing curly braces around the `"foo": ...` attribute): ```rust let exp = json!( [ "foo": { "bar": "baz" } ] ); ``` ... the...

We just had to swiftly revert our dependency on `serde-wasm-bindgen` back to 0.3.1, as [the introduction of BigInt support](https://github.com/cloudflare/serde-wasm-bindgen/pull/24) makes `BigUint64Array` and `BigInt64Array` be referenced at module scope in the...

In bundler mode, generate `package.json` with `"type": "module"` and use the `"main"` attribute instead of the `"module"` attribute. This change makes the built ES module palatable to Node.js (when run...