frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Your Agent is a Distributed System (and fails like one)

https://maheshba.bitbucket.io/blog/2026/04/24/agentfailures.html
1•Malp•2m ago•0 comments

Show HN: Homebutler – See and manage your homelab from one Go binary

https://homebutler.dev
1•swq115•2m ago•0 comments

Python and C killer seekers rejoice

1•kvthweatt•5m ago•0 comments

A View from the Floor of the White House Correspondents' Dinner

https://dandiamond.substack.com/p/a-view-from-the-floor-of-the-white
1•_tk_•6m ago•0 comments

I work 10 hours daily without deadlines or schedules

https://orchidfiles.com/building-without-booking-time/
1•theorchid•7m ago•0 comments

Disneyland guests can opt out of facial recognition at park entrances

https://thehill.com/policy/technology/5847024-disneyland-facial-recognition-entry-gates-opt-out/
1•thunderbong•10m ago•0 comments

Gestionale magazzino su misura: come ho digitalizzato un'azienda di ricambi

https://donatodelpeschio.it/blog/gestionale-magazzino-pmi-ricambi-automotive-napoli-laravel
1•donnyBlanko•10m ago•0 comments

The LinkedIn Spyware Situation [video]

https://www.youtube.com/watch?v=mHj6IvBmlpU
1•mannanj•16m ago•0 comments

Books for People with Print Disabilities

https://archive.org/details/printdisabled
2•bookofjoe•17m ago•0 comments

Has AI Changed the Course of Drug Development? Three Years Later

https://divingintogeneticsandgenomics.com/post/has-ai-changed-drug-development-3-years-later/
1•YeGoblynQueenne•18m ago•0 comments

Why Every AI-Coded App Is an Island

https://rootcx.com/blog/why-every-ai-coded-app-is-an-island
1•seyz•18m ago•0 comments

The AI Question That No AI Person Asks [video]

https://www.youtube.com/watch?v=o9Vbvp4awQU
1•vermilingua•19m ago•0 comments

CPU Has More Registers Than You'd Think

https://fp32.org/register_renaming.html
1•birdculture•22m ago•0 comments

The Fastest Linux Timestamps

https://www.hmpcabral.com/2026/04/26/the-fastest-linux-timestamps/
1•hmpc•22m ago•0 comments

Ask HN: Md PhD

1•Sxouterred•22m ago•0 comments

QNX on the Commodore 900 – Raiders of the lost hard drive [video]

https://archive.fosdem.org/2025/schedule/event/fosdem-2025-5479-raiders-of-the-lost-hard-drive/
2•rbanffy•27m ago•0 comments

At least 10 people tied to sensitive US research have died or disappeared

https://www.cnn.com/2026/04/21/us/deaths-disappearances-scientists-investigation
16•acdanger•27m ago•3 comments

National Science Board members told by Trump administration they were terminated

https://thehill.com/policy/energy-environment/5849158-national-science-board-members-terminated-t...
2•pera•31m ago•0 comments

DeepSeek V4 plays Go on a 9x9 board

https://chat.deepseek.com/share/95z1fr6y7rj4q5nmd0
2•morpheos137•34m ago•2 comments

Innovative Captcha Solutions for Reality of Modern Attacks

https://github.com/mCaptcha/mCaptcha/discussions/199
1•paulnpace•35m ago•0 comments

Microsoft Reportedly Looking at Rebasing Azure Linux on Fedora

https://www.phoronix.com/news/MS-Azure-Linux-Fedora-Based
4•rbanffy•35m ago•0 comments

Build Yourself Flowers

https://vickiboykis.com/2026/04/20/build-yourself-flowers/
1•mooreds•36m ago•0 comments

Artemis II broke Fred Haise's distance record, but he is happy to pass it on

https://arstechnica.com/science/2026/04/artemis-ii-broke-fred-haises-distance-record-but-he-is-ha...
1•rbanffy•37m ago•0 comments

Hyper-DERP: C++/io_uring DERP relay

https://hyper-derp.dev/blog/hyper-derp-announcement/
1•mooreds•37m ago•0 comments

Show HN: Thelawin – Generate EU e-invoices from JSON

https://thelawin.dev/
1•steviee•39m ago•0 comments

Show HN: UseMoney AI: AI Copilot for Retail Investors of India

1•deepshaswat•40m ago•0 comments

What I Learned Running DevRel in 2026

https://www.joekarlsson.com/blog/running-devrel-2026/
1•mooreds•41m ago•0 comments

Bob Odenkirk Would Like to Remind You That Life Is a Meaningless Farce

https://www.nytimes.com/2026/04/25/magazine/bob-odenkirk-interview.html
1•wslh•41m ago•1 comments

A Thermodynamics for Biology

https://chillphysicsenjoyer.substack.com/p/a-thermodynamics-for-biology
1•crescit_eundo•44m ago•0 comments

We have no chance against this: Honda reacts to China's supplier strength

https://www.motor1.com/news/792130/honda-reacts-china-supplier-strength/
1•teleforce•47m 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/