Show HN: Clippy – 90s UI for local LLMs
felixrieseberg.github.io
Launch HN: Exa (YC S21) – The web as a database
OpenAI reaches agreement to buy Windsurf for $3B
bloomberg.com
Claude's system prompt is over 24k tokens with tools
github.com
Alignment is not free: How model upgrades can silence your confidence signals
variance.co
docker2exe: Convert a Docker image to an executable
github.com
Tabular (YC S24) Is Hiring
ycombinator.com
Matt Godbolt sold me on Rust by showing me C++
collabora.com
(ab?)using Node module hooks to speed up development
immaculata.dev
Bloat is still software's biggest vulnerability (2024)
spectrum.ieee.org
ACE-Step: A step towards music generation foundation model
github.com
WebMonkeys: parallel GPU programming in JavaScript
github.com
FTC rule on unfair or deceptive fees to take effect on May 12
ftc.gov
DuoBook: Generate bilingual stories to learn any language
duobook.co
Old Timey Code and Old Timey Mono Fonts
github.com
Gemini 2.5 Pro Preview
developers.googleblog.com
Scientists have found a way to 'tattoo' tardigrades
phys.org
Show HN: Whippy Term - GUI terminal for embedded development (Linux and Windows)
whippyterm.com
Brush (Bo(u)rn(e) RUsty SHell) a POSIX and Bash-Compatible Shell in Rust
github.com
India launches attack on 9 sites in Pakistan and Pakistani Jammu and Kashmir
reuters.com
Accents in latent spaces: How AI hears accent strength in English
accent-strength.boldvoice.com
Nnd – a TUI debugger alternative to GDB, LLDB
github.com
Loving 21st century gaming like an 18th century furniture expert
kimimithegameeatingshemonster.com
I took a peek at the implementation - I think this only works for a case where the typing explicitly contains the string "Promise". For example, I don't think it would work if I use `SomeInterface["some_promise_key"]` or might incorrectly add an async if I use `Awaited<Promise<...>>`.
I think what you're trying to build might be best served by Typescript's VFS - https://www.npmjs.com/package/@typescript/vfs. You can load the local files into an in-memory type system, and quickly extract async/await hints that might be more useful for a typical TS developer. I think there's a lot of really interesting static analysis you could do to improve async/await safety, as it certainly leads to issues from time to time.