frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Why your Delaware franchise tax notice says $85,165 (calculator)

https://www.incorpassist.com/blog/us-states/delaware-franchise-tax
1•incorpassist•2m ago•0 comments

The Jobs Apocalypse Is Postponed. An AI Jobs Boom Is Here

https://www.economist.com/finance-and-economics/2026/09/04/the-jobs-apocalypse-is-postponed-an-ai...
1•karakoram•6m ago•1 comments

All About IQ. Does AI Have an IQ?

https://desnitch.substack.com/p/what-is-your-iq-ready-to-take-this
1•desnitch•8m ago•0 comments

The AI Boom Is Coming for Your Gadgets

https://www.economist.com/graphic-detail/2026/09/03/the-ai-boom-is-coming-for-your-gadgets
1•karakoram•9m ago•1 comments

A party game for the couch. The game plays on the TV your phone is the buzzer

https://couchbattles.com
2•DCnow•10m ago•0 comments

US has access to more than half of Australia's military bases

https://www.theguardian.com/australia-news/ng-interactive/2026/sep/07/us-military-bases-in-austra...
1•siquick•14m ago•0 comments

Robots just had their GPT3 moment [video]

https://www.youtube.com/watch?v=cqwKceUSZ5Q
1•nazgul17•14m ago•1 comments

Show HN: Blueprintr – Diagram-first knowledge base with live cloud import

https://blueprintr.io
1•JoshJamesAnthon•21m ago•1 comments

The Living Documents Manifesto

https://orionfold.com/manifesto/
1•arkwor•22m ago•0 comments

The Continued Decline of White Collar Prosecutions

https://therevolvingdoorproject.org/the-continued-decline-of-white-collar-prosecutions/
2•paulpauper•22m ago•1 comments

Federated Stars (2024)

https://domaindrivenarchitecture.org/blog/2024-06-05-howto-federated-stars/
1•birdculture•23m ago•0 comments

Elena Ferrante and the people who vouched for her

https://www.strangeclarity.com/p/elena-ferrante-and-the-people-who
1•paulpauper•25m ago•0 comments

Do children grow continuously or do they grow in fits and starts?

https://statmodeling.stat.columbia.edu/2026/08/31/fits-and-starts/
2•paulpauper•26m ago•0 comments

3D Printed Hydrogels for Soft Robotic Applications (2025)

https://www.sciencedirect.com/org/science/article/pii/S0973862225000261
1•pliiight•29m ago•0 comments

VCF West 2026: Making games in the 1980s – David Crane, Garry Kitchen [video]

https://www.youtube.com/watch?v=9ramxZ1a6NM
1•fortran77•32m ago•0 comments

Show HN: Antifailure, a disposable copy of production for every pull request

https://antifailure.dev
2•VirS•33m ago•1 comments

Slop-Creep: When Building Gets Cheaper Than Thinking

https://awaitinginput.substack.com/p/slop-creep-when-building-gets-cheaper
2•bs2•33m ago•0 comments

Elon Musks 7 Predictions?

https://nostradamusintellect.com/articles/elon-musk-predictions-scored
1•Nikola5•34m ago•0 comments

Show HN: MaskShift – a maximalist coding agent with zero NPM dependencies

https://github.com/nafeeur/MaskShift
1•Nafeeur•37m ago•0 comments

David Rumsey Map Collection

https://www.davidrumsey.com
2•twalichiewicz•38m ago•1 comments

Armed man attacks Ohio governor candidate Amy Acton, several injured

https://www.dispatch.com/story/news/politics/2026/09/06/armed-man-attacks-ohio-governor-candidate...
3•cocacola1•41m ago•0 comments

Apple Just Fixed TestFlight

https://www.macrumors.com/2026/09/04/apple-just-fixed-testflight/
2•7777777phil•41m ago•0 comments

Show HN: AlternateRealities.lol – Create any kind of poing and click story

https://alternaterealities.lol
2•nihey•49m ago•0 comments

The Microeconomics of Artificial Intelligence (Open Access)

https://direct.mit.edu/books/oa-monograph/6067/The-Microeconomics-of-Artificial-Intelligence
2•neehao•51m ago•0 comments

London's approach to knife crime is working

https://www.economist.com/britain/2026/09/03/londons-approach-to-knife-crime-is-working
3•andsoitis•52m ago•1 comments

Rising Income Risk at the Top

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=7377841
2•neehao•53m ago•0 comments

GPU kernel bug by derived structure from measured hardware shape, not profiling

https://github.com/arraylady-jpg/moa-shape-derivation
1•lmullin•54m ago•0 comments

Toward a Symbiotic Society with Generative AI: For Living Together into Future

https://link.springer.com/chapter/10.1007/978-981-95-1327-7_35
1•andsoitis•55m ago•0 comments

Frontier Models' Vulnerability Patches are Often F.L.A.W.E.D. [pdf]

https://1password.com/files/resources/frontier-models-vulnerability-patches-flawed.pdf
1•crummy•55m ago•0 comments

Windows 11's "special" developer edition looks like another marketing misfire

https://www.neowin.net/opinions/windows-11s-special-developer-edition-sounds-like-yet-another-mar...
17•bundie•1h ago•3 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/