North101

Results 19 issues of North101

``` from pytypes import typechecked @typechecked class Class1(): def __init__(self, arg1: str) -> None: pass class Class2(Class1): def __init__(self, arg1: str, arg2: str) -> None: Class1.__init__(self, arg1) Class2("arg1", "arg2") ```...

question

Add a `--bg` option to `image_converter.py` with the choices `black` or `white`. This is useful for converting images with transparency.

$where now generates a function with every table included in the query. It would be nice if this function had a type alias that could be imported. I'm not sure...

enhancement

I'm not sure whether or not this is worth doing but if there is a lot of data to be inserted when creating the db, it seems overkill to store...

enhancement

I have a a lot of tables where I have queries like: ```sql SELECT table1.**, table2.**, table3.** ``` but what I'd really like to do is have: ```sql SELECT table1.*,...

enhancement

When the server is streaming data to a client and server.shutdown() is called, it'll hang as the connection never finishes. ``` grpc: dependency: "direct main" description: name: grpc url: "https://pub.dartlang.org"...

type-bug

Example: ```typescript interface Foo { foo?: string; } const foo1: Foo = { foo: undefined, } const foo2: Foo = {} console.log(is(foo1)); // false console.log(is(foo2)); // true ``` Should they...

I think using icons for locations would be a lot easier to read instead of images of the location card

When backing up data, in addition to backing up campaign data it be great to backup app settings.