frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Four Stable Kernels for Wednesday

https://lwn.net/Articles/1068981/
1•kazu11max17•2m ago•0 comments

When Your Digital Life Vanishes

https://www.newyorker.com/magazine/2026/04/27/when-your-digital-life-vanishes
3•benbreen•5m ago•0 comments

The IOC's decision to protect the female category is a victory for fairness

https://www.theguardian.com/commentisfree/2026/apr/21/ioc-decision-female-category-olympics-trans...
1•vlebb•8m ago•0 comments

In two years nobody will care if actors are AI or not–director Mathieu Kassovitz

https://www.theguardian.com/film/2026/apr/22/actors-ai-la-haine-director-mathieu-kassovitz
1•bookofjoe•9m ago•0 comments

gRPC benchmark results 2026-04-23

https://github.com/LesnyRumcajs/grpc_bench/discussions/559
1•materialferret•10m ago•0 comments

GitHub Driven RSS Feeds: Paul Graham, Anthropic, and More

https://github.com/Olshansk/rss-feeds
2•Olshansky•11m ago•1 comments

Bring your own Agent to MS Teams

https://microsoft.github.io/teams-sdk/blog/bring-your-agent-to-teams/
3•umangsehgal93•11m ago•0 comments

You want your Moon landings in HD? So does NASA

https://arstechnica.com/space/2026/04/you-want-your-moon-landings-in-hdtv-so-does-nasa-heres-how-...
1•jnord•12m ago•0 comments

Exercise and Weekly Sirolimus (Rapamycin) in Older Adults (Trial)

https://onlinelibrary.wiley.com/doi/10.1002/jcsm.70274
1•evo_9•14m ago•0 comments

HEPA air purifiers may boost brain power in adults over 40

https://medicalxpress.com/news/2026-04-hepa-air-purifiers-boost-brain.html
1•OutOfHere•15m ago•0 comments

Discover the Robot Athlete That Competes with Professional Table Tennis Players

https://ai.sony/blog/inside-project-ace-discover-the-robot-athlete-that-competes-with-professiona...
2•dbcooper•17m ago•0 comments

Andreessen, Thrive Poised for Windfall from SpaceX's Cursor Bid

https://www.bloomberg.com/news/articles/2026-04-22/andreessen-thrive-poised-for-windfall-from-spa...
1•petethomas•18m ago•0 comments

A new programming model for durable execution

https://vercel.com/blog/a-new-programming-model-for-durable-execution
2•gmays•18m ago•0 comments

Show HN: Archon-memory-core – agent memory that resolves contradictions

https://divergencerouter.com/amc/
1•Divergence42•21m ago•0 comments

Scaling Test-Time Compute for Agentic Coding

https://arxiv.org/abs/2604.16529
1•matt_d•21m ago•0 comments

Opus 4.7 is having a rough day. double check its work

https://imgur.com/a/eg5zL1u
1•prallo•22m ago•0 comments

LemmaScript: A Verification Toolchain for TypeScript via Dafny

https://midspiral.com/blog/lemmascript-a-verification-toolchain-for-typescript/
2•namin•22m ago•0 comments

Six-year-old girl has sight restored by gene therapy

https://news.sky.com/story/parents-hail-incredible-results-after-six-year-old-girl-has-sight-rest...
4•austinallegro•26m ago•0 comments

What 81000 Claude users said about the economics of AI

https://www.anthropic.com/research/81k-economics
1•schyzomaniac•26m ago•1 comments

Claude Code for the Outer Loop: An AI SRE Playbook

https://www.arcade.dev/blog/claude-code-ai-sre-oncall-workflows/
1•manveerc•28m ago•0 comments

Show HN: A visual CSS editor, Mac native

https://bendansby.com/cest/
1•webwielder2•31m ago•0 comments

生き甲斐 (ikigai) “a reason for being”

https://en.wikipedia.org/wiki/Ikigai
1•guessmyname•33m ago•0 comments

Ping-Pong Robot Stuns World by Defeating Elite Human Players [video]

https://www.youtube.com/watch?v=lWp6XNHaWRk
1•mgh2•34m ago•0 comments

I'm Using Claude Code for Everything Else but Coding

https://chandlernguyen.com/blog/2026/04/22/im-using-claude-code-for-everything-else-but-coding/
1•chandlernguyen•35m ago•1 comments

We built a multi-agent app on Genkit and Firebase

https://www.conveen.ai/building-with-genkit-and-firebase
2•ruby-kandah•36m ago•0 comments

Tom Lehrer (1928–2025): A (Mostly) Mathematical Appreciation [pdf]

https://www.ams.org/journals/notices/202602/rnoti-p118.pdf
2•ganitam•37m ago•2 comments

There's Another Reason Gen Z Can't Find Work

https://www.nytimes.com/2026/04/22/opinion/gen-z-job-ladder.html
1•doener•38m ago•0 comments

Proximal Policy Optimization with Clojure and PyTorch

https://clojurecivitas.org/ppo/main.html
2•wedesoft•38m ago•1 comments

Oxford Calculators

https://en.wikipedia.org/wiki/Oxford_Calculators
2•danielam•38m ago•0 comments

Apple Is Boring Now

https://www.theatlantic.com/ideas/2026/04/tim-cook-ternus-apple/686893/
1•paulpauper•38m ago•0 comments
Open in hackernews

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

https://github.com/stanNthe5/typescript-autoawait
7•theThree•11mo 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/