frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

What the Eurostack Is Missing

https://pluralistic.net/2025/10/15/freedom-of-movement/#data-dieselgate
1•FromTheArchives•7m ago•0 comments

Show HN: maptail – Tail GeoIP data on a world map in realtime

https://maptail.live/
1•stagas•7m ago•0 comments

China's Rare Earth Restrictions Aim to Beat U.S. at Its Own Game

https://www.nytimes.com/2025/10/16/business/economy/china-rare-earths-supply-chain.html
1•curtistyr•12m ago•0 comments

Inverse Collatz's Tape

https://gbragafibra.github.io/2025/10/15/collatz_ant10.html
1•Fibra•14m ago•0 comments

Technology is my leverage, not design

https://herland.me/blog/technology-is-my-leverage-not-design/
1•gogoro•15m ago•0 comments

The Economic Cost of Antisemitism

https://critiqueanddigest.substack.com/p/the-economic-cost-of-antisemitism
2•omnibrain•16m ago•0 comments

The present and potential future of progressive image rendering

https://jakearchibald.com/2025/present-and-future-of-progressive-image-rendering/
1•FromTheArchives•19m ago•0 comments

Sora2 AI Video Generator

https://www.sora2-ai.top
1•detectmeai•19m ago•0 comments

Don't Stop Believin' in OpenAI

https://buildcognitiveresonance.substack.com/p/dont-stop-believin-in-openai
1•FromTheArchives•22m ago•0 comments

The Slack I Loved Is Slipping Away

https://sjg.io/writing/the-slack-i-loved-is-slipping-away/
1•simonjgreen•22m ago•1 comments

Where's the AI Design Renaissance?

https://www.learnui.design/blog/wheres-the-ai-design-renaissance.html
1•tobr•23m ago•0 comments

Haskell Weekly – Issue 494

https://haskellweekly.news/issue/494.html
2•amalinovic•29m ago•0 comments

MuPDF Explored (2022)

https://casper.mupdf.com/docs/mupdf_explored.pdf
1•nyir•30m ago•0 comments

Why does collapsing a bubble with a sound wave produce light?

https://akshatjiwannotes.blogspot.com/2025/10/why-does-collapsing-bubble-with-sound.html
3•akshatjiwan•31m ago•0 comments

AI agents are on the verge of being recognized as full-fledged workers

https://www.lemonde.fr/en/opinion/article/2025/10/16/ai-agents-are-on-the-verge-of-being-recogniz...
2•geox•38m ago•0 comments

The Beads Revolution: The Todo System That AI Agents Want to Use

https://steve-yegge.medium.com/the-beads-revolution-how-i-built-the-todo-system-that-ai-agents-ac...
1•SafeDusk•39m ago•0 comments

Waymo is bringing autonomous, driverless ride-hailing to London in 2026

https://9to5google.com/2025/10/15/waymo-london-2026/
5•pykello•40m ago•0 comments

WordPress Sub Menu or Mega Menu hidden behind other elements using Elementor [video]

https://www.youtube.com/watch?v=qsgfx1hlJwA
1•techwrath11•44m ago•0 comments

The Architect's Dilemma

https://www.oreilly.com/radar/the-architects-dilemma/
3•BerislavLopac•45m ago•0 comments

Understanding Spec-Driven-Development

https://martinfowler.com/articles/exploring-gen-ai/sdd-3-tools.html
4•BerislavLopac•45m ago•0 comments

3D Low Poly Character of Master Chef or Iron Chef in Blender

https://www.patreon.com/posts/3d-low-poly-of-103411260
1•techwrath11•45m ago•0 comments

Driverless taxis are coming to London's streets in the spring

https://www.londoncentric.media/p/driverless-taxis-waymo-wayve-are-coming-to-london
1•BerislavLopac•45m ago•0 comments

Introducing the Massive Legal Embedding Benchmark (MLEB)

https://isaacus.com/blog/introducing-mleb
4•ubutler•47m ago•4 comments

Running Kubernetes on a Million Nodes

https://bchess.github.io/k8s-1m/
2•yankcrime•49m ago•0 comments

I switched from Ruby to elixir and built a product to learn new tool

https://alexsinelnikov.blog/how-i-switched-from-ruby-to-elixir-and-to-learn-it-better-built-a-pro...
2•avdept•50m ago•0 comments

Agents, APIs, and Advertising: Lessons from Engineering Our MCP Server

https://medium.com/criteo-engineering/agents-apis-and-advertising-lessons-from-engineering-our-mc...
7•ouvreboite•52m ago•0 comments

The Rest of the World Is Following America's Retreat on EVs

https://www.wsj.com/business/autos/the-rest-of-the-world-is-following-americas-retreat-on-evs-e46...
1•measurablefunc•53m ago•2 comments

Comparison of Terminal Emulators

https://blog.randomstring.org/2025/09/26/a-comparison-of-terminal-emulators/
1•gasull•56m ago•0 comments

NASA let me test my weird chain theory in space [video]

https://www.youtube.com/watch?v=NtZaP8VMv0c
2•alexmolas•1h ago•0 comments

Homeless Man AI Prank Prompt: Risks, Ethics, and How to Use AI Responsibly

https://ray3.run/posts/homeless-man-ai-prank-prompt
2•combineimages•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•5mo ago

Comments

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