Florian Loitsch

Results 128 issues of Florian Loitsch

### Environment * PostgreSQL version: (if using docker, specify the image) public.ecr.aws/supabase/postgres:15.1.0.90 * PostgREST version: (if using docker, specify the image) public.ecr.aws/supabase/postgrest:v11.1.0 * Operating system: Linux ### Description of issue...

docs

This addresses a comment from #2134: https://github.com/toitlang/toit/pull/2134/files#r1520983255

cla-signed

The zlib codec blocks if `write` is used. We need to `try-write` instead.

cla-signed

After creating a symbolic link that points to "../foo.txt", Toit can't read that file anymore. Replacing the '/' with '\' is enough to make it work. Powershell and bash correctly...

``` foo_int -> int?: return 499 foo_string -> string?: return "hello" main: while x := foo_int: x = foo_string while x/any := foo_int: x = foo_string ``` In the first...