Bypassing Google's big anti-adblock update
0x44.xyz
Hacking Coroutines into C
wiomoc.de
Nuclear Explosion for Carbon Sequestration
arxiv.org
Kimi k2 largest open source SOTA model?
github.com
Switching to Claude Code and VSCode Inside Docker
timsh.org
MacPaint Art from the Mid-80s Still Looks Great Today
blog.decryption.net.au
Chrome's hidden X-Browser-Validation header reverse engineered
github.com
Edward Burtynsky's monumental chronicle of the human impact on the planet
newyorker.com
Aeron: Efficient reliable UDP unicast, UDP multicast, and IPC message transport
github.com
Parse, Don't Validate (For C)
lelanthran.com
Lost Chapter of Automate the Boring Stuff: Audio, Video, and Webcams in Python
inventwithpython.com
Programming Affordances That Invite Mistakes
thetechenabler.substack.com
Two-step system makes plastic from carbon dioxide, water and electricity
phys.org
The fish kick may be the fastest subsurface swim stroke yet (2015)
nautil.us
A better Ghidra MCP server – GhidrAssistMCP
github.com
Light exposure at night predicts incidence of cardiovascular diseases
medrxiv.org
Show HN: I made a JSFiddle-style playground to test and share prompts fast
langfa.st
HNSW as abstract data structure: video intro to Redis vector sets
youtube.com
New Date("wtf") – How well do you know JavaScript's Date class?
jsdate.wtf
Supreme Court's ruling practically wipes out free speech for sex writing online
ellsberg.substack.com
Malware found in official gravityforms plugin indicating supply chain breach
patchstack.com
Working through 'Writing A C Compiler'
jollygoodsw.wordpress.com
Second Variety, by Philip K. Dick (1953)
gutenberg.org
Exposing a web service with Cloudflare Tunnel (2022)
erisa.dev
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.