Andrew Brey
Andrew Brey
When in `watch` mode with the `remix` cli we do incremental rebuilds of changed files, but unfortunately there is no way for external processes (e.g. a dev server) to _know_...
Today, there are no string case utilities in the `std lib`, but one need only look around to `npm` briefly to see that there is a healthy appetite for shared...
In the following example: ```ts import { $ } from "https://deno.land/x/[email protected]/mod.ts"; await $.request("https://example.com").noThrow().timeout(10).fetch(); ``` unless `example.com` responds alarmingly fast, this code will throw an `AbortError` when the request is aborted...
Thanks for this and all the other awesome Charmbracelet projects! The ability to type a password with character masking is great, but it can be hard to feel confident that...
> **Note** Demo / reproduction repository: https://github.com/andrewbrey/deno_npm_compat_drizzle-orm --- When attempting to use the `drizzle-orm` (https://orm.drizzle.team) tool called `drizzle-kit` to generate sql schema migrations from TypeScript model definitions **via npm-specifiers in...
### Validations - [X] I believe this is a way to improve. I'll try to join the [Continue Discord](https://discord.gg/NWtdYexhMs) for questions - [X] I'm not able to find an [open...
Thank you for the very cool project! I noticed that when setting up `crossterm` mouse input is captured: https://github.com/dustinblackman/oatmeal/blob/3049bd5fdec98b1b0b1386df6f305ade3eb64236/src/application/ui.rs#L265-L270 and I think that one result of this is that attempting...
To support the use case where a progress bar has a "track" (the incomplete portion of the progress) that should be visible as the progress takes place, this PR adds...
Per the history of the TC39 spec for this feature (https://github.com/tc39/proposal-import-attributes?tab=readme-ov-file#history) the most current syntax for "import attributes" uses the `with` keyword instead of the `assert` keyword. Usage of this...
I downloaded the contents of a webpage and attempted to format it with `deno fmt` and produced a panic. I then attempted to format the file with `prettier` which had...