frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Public WebGPU Benchmarking via VGPU

https://web3dsurvey.com/benchmark
1•bhouston•46s ago•0 comments

First ever macOS Core Location Spoofing

https://github.com/TimBitBox/mac-location-spoofer
1•Gab01•1m ago•0 comments

Runway Reaches 200M ARR

https://bloomberg.com/news/articles/2026-09-08/ai-startup-runway-hits-200-million-in-annual-recur...
1•utiiiD•3m ago•0 comments

Moving to Graviton 5 halved our ClickHouse query latency

https://www.dash0.com/blog/migration-to-graviton-5-what-upgrading-our-clickhouse-cluster-actually...
2•ishener•3m ago•0 comments

GrapheneOS on AI Usage

https://grapheneos.social/@GrapheneOS/117236529351603001
1•garo-pro•4m ago•0 comments

What Should I Do to Win Back the Love of My Boyfriend?

https://etechx.co.ke/what-should-i-do-to-win-back-the-love-of-my-boyfriend
2•manyik•4m ago•0 comments

Show HN: AI Mood Tracker and Journal for iPhone

https://apps.apple.com/us/app/moon-mood-tracker-journal/id6773049470
3•losteden1•6m ago•0 comments

Robots "protest" in Warsaw to demand regulation of AI and automation

https://notesfrompoland.com/2026/09/08/robots-protest-in-warsaw-to-demand-regulation-of-ai-and-au...
2•giuliomagnifico•6m ago•0 comments

Versign Announce New .web Domain Extension

https://investor.verisign.com/news-releases/news-release-details/verisign-announces-delegation-web/
1•a_paddy•6m ago•0 comments

OpenAI Just Claimed a Math Discovery. Some Academics Are Crying Foul

https://www.wired.com/story/openai-navier-stokes-math-discovery-academics/
2•olalonde•7m ago•0 comments

EU and Canada Plan Far-Reaching Alliance to Strengthen Partnership

https://www.bloomberg.com/news/articles/2026-09-08/eu-and-canada-plan-far-reaching-alliance-to-st...
2•helsinkiandrew•8m ago•1 comments

Ask HN: Is there anything worth developing with AI?

1•mf2hd•10m ago•0 comments

Show HN: I made a moving map of SF's trains in real time

https://sf-motion-s9et3.reachpad.app/
1•sakuraiben•11m ago•0 comments

MiniPACS

https://minipacs.net/
1•tr00x•13m ago•1 comments

A Meta engineer's guide to surviving the coming tribulation

https://whatjusthappened.org/
1•jmcv•13m ago•0 comments

Show HN: Readerbeam – Anything you read. Straight to your eReader

https://www.readerbeam.com/
1•carlos-menezes•14m ago•0 comments

Get a website Adsense approval [pdf] guide

https://www.ebay.com/itm/366656695844
1•ilaysyou•14m ago•0 comments

Show HN: Internet Apology – pay to publish a public apology receipt

https://internetapology.com
1•museumkeeper•14m ago•0 comments

Tech Needs Humanists More

https://passo.uno/tech-needs-humanists-more-than-ever/
1•theletterf•17m ago•0 comments

Cinema lessons from a trash-movie auteur

https://www.newyorker.com/culture/the-weekend-essay/cinema-lessons-from-a-trash-movie-auteur
1•samizdis•19m ago•0 comments

Hqtui: Terminal UI for TypeScript, Rust, Go, Python, Zig, Ruby

https://hqtui.com/
3•thunderbong•19m ago•0 comments

Why the 'Temu Range Rover' Is Such a Threat to Jaguar Land Rover

https://www.bbc.co.uk/news/articles/c5y4l22p262o
1•microsoftedging•20m ago•0 comments

The Incumbents Are Coming

https://twitter.com/seema_amble/status/2095546732633379079
1•gmays•20m ago•0 comments

Slime moulds and the bitter debate over the nature of intelligence

https://www.theguardian.com/news/ng-interactive/2026/sep/08/this-is-dangerous-slime-moulds-and-th...
1•Betelbuddy•21m ago•0 comments

Show HN: I built a filterable list of beginner whittling projects

https://whittling.hashu.org/
1•avihashu•23m ago•1 comments

Show HN: AgentDFS – Fantasy Football for Agents

https://agentdfs.dev
1•crabasa•23m ago•1 comments

Scientists Are Making Concrete with Human Poop – and It Gets 42% Stronger

https://www.sciencealert.com/scientists-are-making-concrete-with-human-poop-and-it-gets-42-stronger
2•downbad_•23m ago•0 comments

AI-Generated Life

https://anuratype.bearblog.dev/ai-generated-life/
1•typeepyt•24m ago•0 comments

Floodtide: Keep your Mac up to date (MacUpdater replacement)

https://bhopstudio.com/floodtide
2•luckman212•24m ago•1 comments

Iceland Summons U.S. Ambassador over Provocative Trump Map

https://www.nytimes.com/2026/09/08/world/europe/iceland-summon-ambassador-trump-map-greenland.html
1•_doctor_love•25m ago•1 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/