frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Keigo Higashino, author of The Devotion of Suspect X, dies at 68

https://www.oricon.co.jp/news/2470322/
1•linzhangrun•6m ago•0 comments

Even in Utah Families Are Getting Smaller

https://www.nytimes.com/2026/07/25/us/politics/utah-birth-rate-fertility-decline.html
1•geox•14m ago•0 comments

Show HN: A browser-based vector animation engine rendering animated objects

https://thorvg-janitor.vercel.app/
3•hermet•16m ago•2 comments

I made a anoynmous file sharing service

https://coldfiles.dev/
1•bunchy7s•16m ago•5 comments

Show HN: Comparing stock returns after cyber incidents

https://incidentimpact.com/
1•0xad•21m ago•0 comments

Build internal tools for your Startup with Construct AI

https://construct.computer/blog/build-internal-tools-with-construct/
1•ankushKun•22m ago•0 comments

From Seed to Startup: How AI Is Revolutionizing Cannabis Cultivation

https://www.researchgate.net/publication/410602482_From_Seed_to_Startup_How_AI_Is_Revolutionizing...
1•fofoz•29m ago•0 comments

Could a Neuroscientist Understand a Microprocessor?(2017)

http://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1005268
1•num42•32m ago•0 comments

Can a Biologist Fix a Radio?(2002)

https://www.cell.com/action/showPdf?pii=S1535-6108%2802%2900133-2
1•num42•33m ago•0 comments

Reverse Engineering of Biological Complexity(2002) [pdf]

https://courses.physics.illinois.edu/phys498BIO/sp2009/LECTURE7/Doyle.pdf
1•num42•33m ago•0 comments

Ask HN: Does the tech industry require deterministic ML training?

3•Swapnopam•34m ago•0 comments

The Lean Theorem Prover: Design, Evolution, and Impact

https://leodemoura.github.io/static/floc26/
1•tosh•34m ago•0 comments

General Resolution: LLM Usage in Debian

https://www.debian.org/vote/2026/vote_002#texta
1•olalonde•37m ago•0 comments

LVMH CEO Bernard Arnault's open letter responding to Le Monde's investigation

https://twitter.com/i/status/2081439415268790328
1•Michelangelo11•40m ago•0 comments

Building Real-Time Financial Analytics with Stream Processing

https://medium.com/@DolphinDB_Inc/why-stream-processing-matters-and-how-dolphindb-does-it-b63c5dc...
2•chaercling•43m ago•0 comments

CstWeave – On-device, privacy-first Chrome extension for tab region GIFs

1•fujidevv•44m ago•0 comments

Overprint vs. Knockout

https://www.designyourway.net/blog/overprint-vs-knockout/
1•ankitg12•45m ago•0 comments

Show HN: Watch 14-Byte AI "brains" attempt to solve a 2D maze (Its hard)

https://con-dog.github.io/MINIMIO-PUBLIC-FRONTEND/
3•purple-leafy•48m ago•1 comments

Show HN: Anduril, Apple, Antropic. Recap the biggest tech news from last week

https://choclatenews.substack.com/p/icymi-anduril-unveiled-thunder
1•dariusogenyiebu•49m ago•0 comments

Show HN: How big of a deal of energy dependence on technology market?

https://raylinement.substack.com/p/how-big-of-a-deal-of-energy-dependence
1•rzwsan•49m ago•0 comments

Show HN: How to Resolve Software Deployment Issues with SeaTicket in 4 Steps

2•Daniel-Pan•52m ago•0 comments

China wants to end AI romances

https://www.economist.com/china/2026/07/16/china-wants-to-end-ai-romances
3•hebelehubele•55m ago•3 comments

Show HN: 'Write' – A Markdown Editor in the Browser

https://codeberg.org/joexo/write
1•joexo•56m ago•0 comments

API Testing Chrome Extension

https://chromewebstore.google.com/detail/repost-api-tester/eipmeckflplenlbnlhbpmjojahephhkp
1•info-chirila•1h ago•0 comments

OpenAI's myopia keeps causing alignment problems

https://www.lesswrong.com/posts/Mxx5GapJtqyQtpy96/openai-s-myopia-keeps-causing-alignment-problems
1•joozio•1h ago•0 comments

AgentHost – Persistent, governed AI agents in your own cloud

https://agenthost.space/
1•stevekaplanai•1h ago•0 comments

Seriously, what is the large code-model even for?

https://fzakaria.com/2026/07/26/seriously-what-is-the-large-code-model-even-for
1•ingve•1h ago•0 comments

Sodaslim| Natural Weight Management Support

https://finance.yahoo.com/healthcare/articles/sodaslim-releases-updated-2026-highlights-122400710...
1•Zoerieves•1h ago•0 comments

The Problem with Capitalism – Smarter Every Day [video]

https://www.youtube.com/watch?v=vS6HEes8daw
2•Erikun•1h ago•1 comments

ASD-STE100 Simplified Technical English for LLMs

https://github.com/woosal1337/blog/tree/main/videos/ep01-the-cure-for-ai-slop
2•modinfo•1h 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/