localhosted

Results 10 comments of localhosted

Can't use it at all in Windows, only forking and fixing. Any news on this PR(https://github.com/hibiken/asynqmon/pull/251)?

Having interfaces returned instead of types from requests can cause bugs if you have interfaces with overlapping required methods or interfaces with purely optional methods Just spent some minutes-too-many to...

Had to add this line to get_host_os.sh: ``` elif [[ "$(expr substr "${os_name}" 1 6)" == "MSYS_N" ]]; then echo "Windows" ```

I was going to try Ory Cloud as our auth solution for our next project because for some reason I though this already was available, this is a blocker

It's from the extension pg_trgm Runs on postgres 9.6+ ``` SELECT * FROM movies WHERE to_tsvector( unaccent ( NAME ) ) @@to_tsquery( 'portuguese', 'star:*' ) ```

I can't build Deno on Windows because of this error: `cannot find type 'UnixStream' in module 'tokio::net`, afaik adding UDS should make it possible to build tokio?

I'm trying to build a static [Edge Runtime](https://github.com/supabase/edge-runtime/) but I'm new to Rust. Where could I start to attempt to build deno statically?

@ZenLiuCN Do you have more information on createing the static duckdb build and linking it to go? I haven't found any instructions on a static build in github.com/duckdb/duckdb/blob/main/Makefile

Is duckdb still working? I'm still getting the same error: > error: Uncaught (in promise) Error: Cannot find module 'C:\Users\Usuario\AppData\Local\deno\npm\registry.npmjs.org\duckdb\1.0.0\lib\binding\duckdb.node' > deno 2.0.0-rc.2+3f15e30 (canary, release, x86_64-pc-windows-msvc) v8 12.9.202.13-rusty typescript 5.5.2...

I just did `deno init --serve ` , then in main.ts: ``` import duckdb from "npm:duckdb" const db = new duckdb.Database(':memory:'); db.all('SELECT 42 AS fortytwo', function(err, res) { if (err)...