frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Troubleshooting USB speed issues with Claude Code

https://gjolly.fr/blog/usb-cable-bottleneck/
1•warenhor•2m ago•0 comments

Schooling Has a Meaning Crisis. Paradoxically, AI Can Help

https://betterschooling.in/collection/schooling-has-a-meaning-crisis.-paradoxically-ai-can-help.
1•ChaitanyaSai•4m ago•0 comments

Show HN: Stateful Inference with 99% Token Savings

https://github.com/umbecanessa/neural-ledger-system
1•wasnaga•5m ago•0 comments

The New Tap-In, Tap-Out

https://www.shibaprasadb.com/2026/04/29/tokenmaxxing-tap-in.html
1•shibaprasadb•5m ago•0 comments

Ask HN: Is AI resulting in net revenue gain for non-tech companies?

1•jusonchan81•6m ago•0 comments

Anthropic has overtaken OpenAI on secondary markets

https://twitter.com/pitdesi/status/2049593815749865859
1•malshe•8m ago•1 comments

Ubuntu's AI plans have Linux users looking for a 'kill switch'

https://www.theverge.com/tech/920723/linux-ubuntu-ai-features-ai-kill-switch
2•rolph•9m ago•0 comments

House panels probe Airbnb, Anysphere over use of Chinese AI models

https://www.nextgov.com/artificial-intelligence/2026/04/house-panels-probe-airbnb-anysphere-over-...
6•jethronethro•11m ago•2 comments

Traditional models still outperform AI for extreme weather forecasts

https://www.carbonbrief.org/traditional-models-still-outperform-ai-for-extreme-weather-forecasts/
1•layer8•14m ago•0 comments

Show HN: Reli – a sampling profiler and VM state inspector for PHP

https://github.com/reliforp/reli-prof
1•sji•17m ago•0 comments

Show HN: Exploding Hamsters

https://explodinghamsters.com
2•pompomsheep•18m ago•0 comments

Utilyze measures how efficiently your GPU is doing useful work

https://github.com/systalyze/utilyze
2•nateb2022•20m ago•0 comments

ubuntu.com is down

https://status.canonical.com/
3•scoops_•20m ago•0 comments

Does Prop 13 explain California's relatively lower birth rates?

https://maxmautner.com/2026/04/25/prop13-fertility.html
1•mslate•20m ago•0 comments

The math behind how LLMs are trained and served

https://www.dwarkesh.com/p/reiner-pope
1•gmays•20m ago•0 comments

Does Postgres Scale?

https://www.dbos.dev/blog/benchmarking-workflow-execution-scalability-on-postgres
3•KraftyOne•24m ago•0 comments

Half a Month of Consolation Writing Advice

https://www.astralcodexten.com/p/half-a-month-of-consolation-writing
2•paulpauper•25m ago•0 comments

The 3rd Annual Blog Post Competition, Extravaganza, and Jamboree

https://www.experimental-history.com/p/the-3rd-annual-blog-post-competition
1•paulpauper•26m ago•0 comments

Cook Like an Engineer

https://www.exfatloss.com/p/cook-like-an-engineer
2•paulpauper•26m ago•0 comments

Reading the Book

https://www.natemeyvis.com/on-actually-reading-the-book/
2•jimsojim•26m ago•0 comments

Is Creativity a Young Person's Game?

https://thereader.mitpress.mit.edu/is-creativity-a-young-persons-game/
1•spking•28m ago•0 comments

Picture-in-picture is expanding to more viewers

https://support.google.com/youtube/thread/425771437/picture-in-picture-is-expanding-to-more-viewe...
1•Tomte•29m ago•0 comments

Shipping containerization, born at Port Newark, marks 70 years

https://www.ajot.com/news/shipping-containerization-born-at-port-newark-marks-70-years
2•Tomte•30m ago•0 comments

If Apple makes an iPad Neo, it's all over

https://www.techadvisor.com/article/3128472/if-apple-makes-an-ipad-neo-its-all-over.html
12•ndr42•32m ago•3 comments

VPNs and Residential Proxies Are Used in Abuse

https://ipinfo.io/blog/vpns-residential-proxies-abuse-findings-rsac-2026
1•speckx•32m ago•0 comments

Terminal AI Coding Agents Comparison Table

https://terminaltrove.com/compare/ai-coding-agents/
2•pelcg•34m ago•0 comments

What we learned at YC's AI alumni event: running AI-native companies

https://antonyevans.com/blog/engineering/c068-coo-job-is-building-ai-operating-system/
1•technotony•36m ago•0 comments

The Human Creativity Benchmark – Evaluating Generative AI in Creative Work

https://contralabs.com/research/human-creativity-benchmark
2•0bytematt•36m ago•0 comments

ReadBetweenTheWalls – AI Jargon Translator

https://www.readbetweenthewalls.com
1•creatorcuffee•37m ago•0 comments

When the Partnership Breaks, So Does the Company: The Jawbone Story

https://joshcarterpdx.substack.com/p/when-the-partnership-breaks-so-does
1•josh_carterPDX•37m ago•0 comments
Open in hackernews

Automatically add missing "async/await" keywords to your TypeScript code

https://github.com/stanNthe5/typescript-autoawait
7•theThree•12mo ago

Comments

bastawhiz•11mo ago
Is this a problem that people actually have?
xeromal•11mo ago
Fun side project man!
primitivesuave•11mo ago
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.

joshstrange•11mo ago
I do not want to be mean but I think you'd be much better served with ESLint rules to yell at you when you don't await when you should or do when you shouldn't.

This should _not_ be an automatic operation since it can change behavior in ways that will be unclear to the developer (completely undoing any gain from them being added automatically).

theThree•11mo ago
You can still control it by adding "//no-await". In fact, the "//no-await" makes me feel more clear.
nextweek2•11mo ago
I created a ticket, using comments is not necessary because there is already the `void` syntax for when you don't want to wait:

https://github.com/stanNthe5/typescript-autoawait/issues/1

nextweek2•11mo ago
It should be noted that there is already a lint rule for this: https://typescript-eslint.io/rules/no-floating-promises/