frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Sky Heist

https://www.skyheist.me/
1•clivehays•7m ago•0 comments

Ask HN: How to make a mono-repo AI-Ready?

1•kasnaka•12m ago•0 comments

Velocipedia

https://www.gianlucagimini.it/portfolio-item/velocipedia/
2•vintagedave•13m ago•0 comments

PostgreSQL backup tool gets some backup of its own

https://www.theregister.com/databases/2026/05/20/postgresql-backup-tool-gets-some-backup-of-its-o...
2•jjgreen•17m ago•0 comments

Public have more fear than hope on AI and future of work, study finds

https://www.kcl.ac.uk/news/one-in-five-britons-think-ai-will-create-civil-unrest-study-finds
3•geox•18m ago•0 comments

Coding Slow Is Smooth, Coding Smooth Is Fast

https://daily.tinyprojects.dev/207
1•tinyprojects•20m ago•1 comments

Show HN: Kreuzberg Cloud – ultra fast content intelligence – in public beta

https://kreuzberg.dev
2•nhirschfeld•21m ago•4 comments

Show HN: Show HN: Widget Cast – Video Widgets for Your iPhone and Apple Watch

1•kingofspain•25m ago•0 comments

Elevated radiation levels detected on Russian drone debris

https://unn.ua/en/news/elevated-radiation-levels-detected-on-russian-drone-debris-striking-elemen...
4•defly•27m ago•0 comments

The Fallacy of Levelized Cost and the Politics of Demand

https://systemsthinkingcollection.substack.com/p/sustainable-energy
2•InputName•33m ago•0 comments

Google Antigravity 2.0

https://antigravity.google/blog/introducing-google-antigravity-2-0
2•haizhung•34m ago•0 comments

The weird, wild story of humanity's obsession with gold

https://www.economist.com/culture/2026/05/14/the-weird-wild-story-of-humanitys-obsession-with-gold
2•andsoitis•35m ago•0 comments

Watch RT Live Anywhere in the World

https://rtlive.ru
2•dorkel•40m ago•0 comments

Pay Attention – Jon Haidt's Commencement Address at NYU

https://www.theatlantic.com/ideas/2026/05/nyu-jonathan-haidt-commencement-speech/687168/
2•gladuz•40m ago•0 comments

Blood Pumping Mechanism of the Hoof

https://horses.extension.org/blood-pumping-mechanism-of-the-hoof/
2•thunderbong•41m ago•0 comments

Show HN: Agent thread – Share claude code and codex sessions as public links

https://agent-thread.com
1•pixxxel•42m ago•0 comments

Optimizing Your PowerShell $Profile

https://devblogs.microsoft.com/powershell/optimizing-your-profile/
2•ankitg12•42m ago•0 comments

"An (important) message from Infomaniak's founder"

7•netfortius•44m ago•1 comments

Google is rolling out its redesigned Workspace app icons

https://www.theverge.com/tech/932417/google-gmail-docs-cal-sheets-workspace-icon-redesign
2•xanthine•44m ago•2 comments

I Decided to Leave Mistral

https://twitter.com/Briviagra/status/2056975510731698188
2•defly•45m ago•2 comments

A small revolt against bloated software

https://www.f-rello.com/manifesto
2•karstenb•45m ago•0 comments

Proposal: Surface=Laterite

https://wiki.openstreetmap.org/wiki/Proposal:Surface%3Dlaterite
1•altilunium•47m ago•0 comments

Ask HN: Sorry, what Was FiveThirtyEight?

2•gagdiez•47m ago•2 comments

AI will create more jobs than it eliminates from 2028

https://www.gartner.com/en/newsroom/press-releases/2026-05-13-gartner-hr-research-reveals-ai-will...
2•01-_-•47m ago•2 comments

Cerebras Brings Trillion Parameter Inference to Enterprises with Kimi K2.6

https://www.cerebras.ai/blog/cerebras-kimi-k2-Enterprise
2•GaggiX•51m ago•0 comments

MailVault Pro – Own your inbox. Forever

https://mailvaulty.com
1•khaledsabae•52m ago•0 comments

The Expired Domain Trap: Why Legacy SEO Metrics Fail in the Age of AI Agents

https://domainalot.substack.com/p/the-great-domain-illusion-why-legacy
1•sonofmarzipan•53m ago•1 comments

Auto Agent Protocol – an A2A vertical for AI agents buying cars

https://autoagentprotocol.org/
2•yankouskia•54m ago•0 comments

Hack: A through-glass shower karaoke system

https://www.youtube.com/watch?v=pkvA6WhwxnU
1•mattkwan•54m ago•0 comments

The AI Quant Desk for Onchain Finance

https://grid.raster.finance/en/portfolio-analytics
4•Iwan-Raster•56m ago•0 comments
Open in hackernews

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

https://github.com/stanNthe5/typescript-autoawait
7•theThree•1y ago

Comments

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