Rafael Gutkowski

Results 32 comments of Rafael Gutkowski

Using server_sent_event.ts from std solves the issue. See https://github.com/denoland/deno/issues/19143#issuecomment-1549141025 for more. One can filter SSE closes with following code: ```ts async function handle(conn: Deno.Conn) { const httpConn = Deno.serveHttp(conn) for...

@dankochetov just a kind reminder that it's waiting for the review. I'd love to have it move upstream!

Any chance to get it merged? OpenAPI ecosystem is not sleeping and v3 is used all over the place.

I think this issue can be closed. This feature was added in v.1.2.2 ([changelog](https://bun.sh/blog/bun-v1.2.2)) cc @paperclover

Try: ```lua return { { "zbirenbaum/copilot.lua", opts = { filetypes = { ["."] = false, go = true }, }, }, } ```

What really helps me is having Effect repo open in another window to peek at the code and tests. Granted, I read the whole documentation and this may be a...

Fly uses it to share state across 1000s of machines. There are probably more production system that use cr-sqlite as a daily driver. It's a software project. Software is not...

I get the same error when `deno dev` with project created by `npm:create-vite-extra` as per [official docs](https://deno.com/[email protected]/basics/react). ``` deno --version deno 1.34.3 (release, aarch64-apple-darwin) v8 11.5.150.2 typescript 5.0.4 ```

This tagging name format is widely used in changesets & turobrepo. Using bun as a package manager for these packages is not currently possible.

Here's workaround using `Effect.all`: ```ts import { Effect, Stream } from "effect" const stream = Stream.make(1, 2, 3).pipe( Stream.mapEffect((v) => Effect.all( { n1: Effect.succeed(v), n2: Effect.succeed(v * 2), n3: Effect.succeed(v...