frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Engaging Essays in Cosmology [1971-2026]

https://archive.org/details/a.-tomilin-engaging-essays-in-cosmology-mir-titles-2026
1•the-mitr•1m ago•0 comments

Yann LeCun's Billion Dollar Bet [video]

https://www.youtube.com/watch?v=kYkIdXwW2AE
1•mfiguiere•4m ago•0 comments

Show HN: Stay Lean – Calorie Navigation

https://apps.apple.com/us/app/stay-lean-calorie-navigation/id6762153463
1•janpmz•5m ago•1 comments

Making Postman load 60% Faster

1•vedkribhu•10m ago•0 comments

Model Engines Manufacturable drawings/plans

https://outerzone.co.uk/plans.asp?cat=Engines&Xcardsperpage=48
1•pillars•12m ago•0 comments

I wrote a custom CUDA inference engine to run Qwen3.5-27B on $130 mining cards

https://news.ycombinator.com/submit
2•Haru-neo•14m ago•0 comments

Einstein's Big Idea Documentry(2005) - 1h 49M [video]

https://thinktv.pbslearningmedia.org/resource/nvfb-sci-einsteinsidea/wgbh-nova-einsteins-big-idea...
1•num42•17m ago•0 comments

Pgxbackup: Continuity Support for PgBackRest

https://thebuild.com/blog/2026/05/01/pgxbackup-continuity-support-for-pgbackrest/
1•thunderbong•17m ago•0 comments

Show HN: Keryx: TypeScript framework where one Action becomes HTTP, WS, CLI, MCP

https://www.keryxjs.com
1•evantahler•27m ago•1 comments

The Reality of Being a Man in Your 50s in South Korea

https://indignified.com/the-hidden-realities-of-midlife-masculinity-in-south-korea/
2•ZguideZ•29m ago•0 comments

Mouse Pointer as a Mere Mortal

https://unsung.aresluna.org/mouse-pointer-as-a-mere-mortal/
1•zdw•36m ago•0 comments

Quantum Machine Learning: A Pragmatic Guide for Classical ML Engineers

https://pawankjha.substack.com/p/quantum-machine-learning-the-pragmatic
2•pawanjha25•36m ago•0 comments

Redesigning Agent Skills – two missing parts

https://simianwords.bearblog.dev/what-agent-skills-misses-now/
1•simianwords•37m ago•0 comments

NodeMind – binary document index, 48× smaller than float32 RAG, no GPU required

https://github.com/QLNI/NodeMind
2•Nodemind•38m ago•0 comments

MX Script: a scripting language for one file web APIs

https://www.mxscript.com/
2•jlkdevelop•45m ago•0 comments

Under sea internet cables need backup

https://restofworld.org/2026/iraq-big-tech-gulf-war-data/
1•hemc4•52m ago•1 comments

The Duke in His Domain (1957)

https://www.newyorker.com/magazine/1957/11/09/marlon-brando-profile-truman-capote
1•cocacola1•53m ago•0 comments

Saudi Arabia ranks 2nd globally in data center market attractiveness

https://saudigazette.com.sa/article/661023/saudi-arabia/saudi-arabia-ranks-2nd-globally-in-data-c...
1•xlmnxp•59m ago•0 comments

The Last Post

https://www.penmachine.com/2011/05/the-last-post
2•lockyc•1h ago•0 comments

The AI Spending Trap: Why Adoption Outpaces Outcomes

https://age-of-product.com/ai-spending-trap/
1•swolpers•1h ago•0 comments

55M Smartphones Run on the HarmonyOS

https://www.scmp.com/tech/tech-trends/article/3351837/huaweis-harmonyos-more-55m-phones-china-ste...
2•hemc4•1h ago•0 comments

I built a free SEO/AEO/security scanner for websites

https://visrank.org
1•Drages•1h ago•0 comments

Can AI Design Therapies?

https://www.scmp.com/tech/article/3352032/bytedances-drug-unit-presents-ai-designed-therapies-glo...
1•hemc4•1h ago•0 comments

Show HN: Hangman Game

https://threej.in/games/talha37-12-hangman-game/index.html
1•threejin•1h ago•1 comments

Big Tech will spend nearly $700B on AI in 2026. No one knows where buildout ends

https://fortune.com/2026/04/30/big-tech-hyperscalers-will-spend-700-billion-on-ai-infrastructure-...
3•1vuio0pswjnm7•1h ago•0 comments

Why sugarcane bagasse tableware is eco friendly?

1•merakipack•1h ago•0 comments

Suno picks up Songkick as part of AI licensing deal with Warner Music

https://completemusicupdate.com/suno-picks-up-songkick-as-part-of-ai-licensing-deal-with-warner-m...
3•gnabgib•1h ago•0 comments

Show HN: ScaleBridge – sync Withings weigh-ins to Garmin Connect

https://scalebridge.ulf.su/en
1•ulfdev•1h ago•0 comments

Taking down a European network with a TLS certificate

https://mxsasha.eu/posts/ripe-ncc-rpki-exploit-chain/
1•tardedmeme•1h ago•0 comments

Comparing the Z80 and 6502 to Their Relatives

https://bumbershootsoft.wordpress.com/2026/05/02/comparing-the-z80-and-6502-to-their-relatives/
3•ibobev•1h 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•12mo ago
Is this a problem that people actually have?
xeromal•12mo ago
Fun side project man!
primitivesuave•12mo 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•12mo 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•12mo ago
You can still control it by adding "//no-await". In fact, the "//no-await" makes me feel more clear.
nextweek2•12mo 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•12mo ago
It should be noted that there is already a lint rule for this: https://typescript-eslint.io/rules/no-floating-promises/