frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Why installing Argo CD didn't fix your deployments

https://platformengineering.org/blog/why-installing-argo-cd-didnt-fix-your-deployments
1•donutshop•1m ago•0 comments

RustSec bug reports result in claims of harassment, ban

https://www.theregister.com/2026/03/20/cryptographer_nadim_kobeissi_rustsec_ban/
1•weedhopper•2m ago•0 comments

Why AI startups and founders now use "taste" to describe their products

https://www.newyorker.com/culture/infinite-scroll/why-tech-bros-are-now-obsessed-with-taste
1•ilamont•4m ago•0 comments

EuroStack

https://eurostack.eu/
2•amai•4m ago•0 comments

Bernie vs. Claude [video]

https://www.youtube.com/watch?v=h3AtWdeu_G0
2•Jupe•5m ago•0 comments

The Responsibility of Intellectuals (1967)

https://chomsky.info/19670223/
1•caaqil•5m ago•0 comments

Cacti Defy Darwin

https://nautil.us/how-cacti-defy-darwin-1279117
1•Brajeshwar•6m ago•0 comments

Mayor of Paris removed parking spaces, "drastically" reduced the number of cars

https://www.cnn.com/2026/03/21/travel/paris-transformation-anne-hidalgo-mayor
2•heresie-dabord•8m ago•0 comments

Ask HN: Why do we train AI on one-on-one dialogues instead of group dynamics?

2•kubiknubika•11m ago•2 comments

Are AI Agents like von Hammerstein's industrious and stupid?

3•multidude•12m ago•2 comments

Why the Spec-to-Code Gap Cannot Be Closed?

https://www.causalitylimited.com/p/why-the-spec-to-code-gap-cannot-be
1•causalityltd•12m ago•0 comments

No Pills or Needles, Just Paper: How Deadly Drugs Are Changing

https://www.nytimes.com/2026/03/21/world/deadly-drugs-paper.html
1•Physkal•14m ago•0 comments

Agentic pre-commit hook with OpenCode Go SDK

https://www.youtube.com/watch?v=3j_Oh525Xrs
1•der_gopher•16m ago•0 comments

Reevaluating 1990s OOP in Java: DOP, Scoped Values, and Structured Concurrency

https://blog.arkstack.dev/en/blog/reevaluating-1990s-oop-in-java/
1•arkstack•17m ago•0 comments

A Simulated Dinosaur Nest Revealed Prehistoric Parenting Strategies

https://nautil.us/how-a-simulated-dinosaur-nest-revealed-prehistoric-parenting-strategies-1279134
1•Brajeshwar•19m ago•0 comments

Music and song discovery made simple

https://www.secondtrack.co/feed
1•eriatarka•25m ago•1 comments

Show HN: A minimal SVG polygon shape creator in the web

https://svg.koljasam.com/
1•blackbrokkoli•26m ago•0 comments

Healing and the Church

https://deepcode.substack.com/p/the-coming-great-transition-healing
3•longitudinal93•26m ago•0 comments

DFS and BFS Graph Searching Algorithms Explained

https://www.youtube.com/watch?v=TIbUeeksXcI
1•Brysonbw•26m ago•0 comments

Nvidia is expanding its empire

https://www.economist.com/business/2026/03/17/nvidia-is-expanding-its-empire
2•andsoitis•28m ago•0 comments

Show HN: Looq, a Quick Look Extension for Markdown, Code, CSV, SQLite, and More

https://parcse.com/looq
1•sitxh•28m ago•0 comments

Iran's Strike Attempt on Diego Garcia Reveals Missile Range

https://www.bloomberg.com/news/articles/2026-03-21/iran-s-failed-diego-garcia-strike-is-show-of-m...
1•geox•30m ago•0 comments

The Trillion Dollar Race to Automate Our Entire Lives

https://www.wsj.com/tech/ai/claude-code-cursor-codex-vibe-coding-52750531
1•bookofjoe•31m ago•1 comments

Ask HN: Why isn't the NSA categorized as an APT?

2•TheOpenSourcer•32m ago•0 comments

The biggest medieval march in English history never happened

https://www.popsci.com/science/battle-of-hastings-march-wrong/
1•Brajeshwar•33m ago•0 comments

Context Anchoring

https://martinfowler.com/articles/reduce-friction-ai/context-anchoring.html
1•reg_dunlop•36m ago•1 comments

Show HN: Cap the spending of your agents

https://github.com/day50-dev/capit/
1•kristopolous•37m ago•0 comments

Interactive NEXRAD point cloud 3D visualization

https://github.com/dcgrigsby/nexrad
1•cyril-crutches•37m ago•0 comments

Design systems aren't for designers anymore, they're for agents

https://vibeflow.ai/blog/ai-doesnt-have-bad-taste-you-have-no-system/
3•alepeak•39m ago•0 comments

Autonomous AI research agent with Overleaf sync

https://github.com/nanoAgentTeam/research-claw
2•nanoAgentTeam•40m ago•1 comments
Open in hackernews

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

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

Comments

bastawhiz•10mo ago
Is this a problem that people actually have?
xeromal•10mo ago
Fun side project man!
primitivesuave•10mo 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•10mo 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•10mo ago
You can still control it by adding "//no-await". In fact, the "//no-await" makes me feel more clear.
nextweek2•10mo 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•10mo ago
It should be noted that there is already a lint rule for this: https://typescript-eslint.io/rules/no-floating-promises/