frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Joint statement on the 'Child safety online' report [pdf]

https://5rightsfoundation.com/wp-content/uploads/2026/09/Joint-Statement-on-the-expert-panel-repo...
1•worik•1m ago•0 comments

Now it's China's experts who are gig workers training AI

https://restofworld.org/2026/china-expert-ai-trainers/
4•billybuckwheat•2m ago•0 comments

Fileless ELF Execution via Kernel Keyring

https://matheuzsecurity.github.io/hacking/linux-kernel-keyring-fileless-exec/
2•matheuzsec_•3m ago•1 comments

Show HN: Searchy SEO – feature-rich mobile app for Google Search Console

https://searchy.mateuszwozniak.com
1•matisiekpl•3m ago•0 comments

Going Up and Going In

https://longreads.com/2026/09/01/free-solo-climbing-risk-philosophy/
1•mooreds•4m ago•0 comments

Risk Management for Uncertain Estimates

https://honestroadmaps.substack.com/p/risk-management-for-uncertain-estimates
1•mooreds•5m ago•0 comments

iPhone Duo: the high price is a feature

https://larrysalibra.com/iphone-duo-the-high-price-is-a-feature/
2•larrysalibra•5m ago•0 comments

Apple Watch Heart Rate Accuracy Study [pdf]

https://www.apple.com/legal/more-resources/docs/Heart_Rate_Accuracy_Study_2026.pdf
1•corvad•12m ago•1 comments

The Company Man

https://tomasbjartur.substack.com/p/the-company-man
1•TomasBjartur•14m ago•0 comments

Steam now requires a Credit Card to view 18 plus games in Australia

https://i.imgur.com/IUYeWcc.jpeg
2•pixeldins•15m ago•0 comments

FRAME37 – we tried to bring the constraints of film photography to phones

https://apps.apple.com/us/app/frame-37-film-camera/id6789953544
1•evgenii_isupov•16m ago•1 comments

DHS Program Analyzes Americans' Finances to Flag Drivers for Traffic Stops

https://www.military.com/dhs-program-analyzes-americans-finances-to-flag-drivers-for-traffic-stop...
3•randycupertino•16m ago•1 comments

Joshua L. Chamberlain and Civil War Memory (2016)

https://werehistory.org/memory/
1•mooreds•16m ago•0 comments

Prepare your app for iPhone Duo [video]

https://developer.apple.com/videos/play/tech-talks/111461/
1•alwillis•19m ago•0 comments

Be Engineering Insights: Adventures in Graphics Drivers

https://www.haiku-os.org/legacy-docs/benewsletter/Issue4-8.html
1•markus_zhang•20m ago•0 comments

What Is Messaging Layer Security (MLS)?

https://messaginglayersecurity.rocks/
1•ColinWright•20m ago•0 comments

Steward-Ownership

https://en.wikipedia.org/wiki/Steward-ownership
2•tcfhgj•20m ago•0 comments

GPT-6 Astra is better at making money, more ethical than Claude Fable 5.1

https://twitter.com/andonlabs/status/2097377692966633952
2•tosh•20m ago•0 comments

Adsense approval website 100% guaranted method 2026/2027 not saturable

https://cheapmarketprices.com/index.php/product/adsense-approval-website-100-guaranted-method-202...
1•ilaysyou•20m ago•0 comments

Perfection Is Faceless

https://wilsoniumite.com/2026/09/08/perfection-is-faceless/
1•Wilsoniumite•21m ago•0 comments

Zuckerberg's New AI Gets Muse Insta, 2.7M-Follower Band Relegated to MuseBand

https://www.ibtimes.co.uk/meta-muse-ai-branding-clash-rock-band-1818743
1•randycupertino•21m ago•2 comments

40% of companies post fake job listings

https://www.youtube.com/watch?v=uIHAiy_iEHQ
1•Betelbuddy•22m ago•0 comments

Factoring RSA 260

https://cognition.com/blog/factoring-rsa-260
1•samyok•22m ago•0 comments

Post by Val.sheshed.rocks – Bluesky

https://bsky.app/profile/val.sheshed.rocks/post/3mv2ayqyqdk2q
1•untitledsource•23m ago•0 comments

AI reveals new class of cellular 'off switch' linked to cancer pathways

https://news.cornell.edu/stories/2026/09/ai-reveals-new-class-cellular-switch-linked-cancer-pathways
3•geox•25m ago•1 comments

The Engineering of Ideas: Introducing the Conceptual History of Technology

https://www.jhiblog.org/2026/09/08/the-engineering-of-ideas-introducing-the-forum-on-the-conceptu...
1•Traces•25m ago•0 comments

Due to DMA, Siri AI delayed in EU for iOS 27 and iPadOS 27

https://www.apple.com/newsroom/2026/06/due-to-dma-siri-ai-delayed-in-eu-for-ios-27-and-ipados-27/
1•tosh•27m ago•0 comments

What Is the Multiverse?

1•JodiMiller•28m ago•0 comments

Jacob Coxon resignation appears to be a PR stunt for AI regulation

https://twitter.com/ParkerThayer/status/2097759699626328575
13•hodder•29m ago•1 comments

Apple Watch 12 & "Siri Recap": Audio Intelligence Privacy Overview [pdf]

https://www.apple.com/privacy/docs/Audio_Intelligence_Privacy_Overview_Sep_2026.pdf
3•quicklywilliam•29m ago•2 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/