frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What Is Braille?

https://afb.org/blindness-and-low-vision/braille/what-braille
1•andsoitis•2m ago•0 comments

Vero: Can AI Agents Build Formally Verified Software Repositories?

https://vero.verina.io/
1•matt_d•3m ago•0 comments

DEF Con 19: Skunkworks: Daniel Beckwitt on Bitcoin in 2019 [video]

https://www.youtube.com/watch?v=Yj2blBX2iBw
1•nodesocket•4m ago•1 comments

Are You in Danger of Becoming a Robot?

https://nautil.us/are-you-in-danger-of-becoming-a-robot-1284114
1•Brajeshwar•4m ago•0 comments

Show HN: Live Sports

https://tipoffwatch.com/sports
1•buffer_overlord•5m ago•0 comments

Moonlander Ergonomic Keyboard

https://www.zsa.io/moonlander
1•andsoitis•10m ago•0 comments

The Hidden Pipeline Behind AI Search Visibility

https://medium.com/the-discovery-collective/the-hidden-pipeline-behind-ai-search-visibility-d4e9c...
1•rakeshmenon•10m ago•1 comments

Compile-Time Improvements in LLVM 23

https://aengelke.net/llvm23-ct.html
1•matt_d•11m ago•0 comments

AI's potential climate benefits outweighed by role in boosting fossil fuels

https://www.theguardian.com/technology/2026/aug/11/ai-will-do-more-to-boost-fossil-fuel-productio...
1•bryanrasmussen•11m ago•0 comments

While government reviews aged care algorithm, waitlists are growing

https://www.abc.net.au/news/2026-08-23/independent-assessment-tool-four-corners-mark-butler-aged-...
1•ahonhn•12m ago•0 comments

Drop_file_cache: Evict cached data for files/directories without root

https://github.com/shenwei356/drop_file_cache
1•shenwei356•15m ago•0 comments

Humanoid robots surpass human records in 100M, high jump

https://www.espn.com/olympics/story/_/id/49692320/humanoid-robots-surpass-human-records-100m-high...
2•geox•15m ago•1 comments

Who is the founder of 0x Alpha?

https://openrouter.ai
1•LYFMail•16m ago•0 comments

Show HN: Mokup – Backend not ready? Mock API responses in Chrome DevTools

https://chromewebstore.google.com/detail/mokup-mock-apis-in-devtoo/pemnjopjhbagogaojfgcfamailepnebb
1•pxdev•17m ago•0 comments

Quantum Mathematics for Modeling BioPhysics (including BioOS v2 software)

https://zenodo.org/records/22064550
1•GeometryKernel•18m ago•0 comments

Show HN: TDILEARNED – a rabbit-hole machine

https://til-seven.vercel.app/
1•mythiix•28m ago•0 comments

T&T Homes Elite Rivera

https://www.facebook.com/groups/ttvinhlong.chinhthuc/posts/1053828987263728/
1•phuocphamrealty•28m ago•0 comments

Andreessen Horowitz Focus of DOJ Probe over Board Directors

https://finance.yahoo.com/technology/ai/articles/andreessen-horowitz-focus-doj-probe-171350711.html
1•ah27182•31m ago•0 comments

SpliceKit for Final Cut Pro – Command Palette and MCP Server

https://splicekit.fcp.cafe/
1•danboarder•33m ago•0 comments

StageX: Eliminating Single Points of Failure in Linux Distributions [pdf]

https://codeberg.org/stagex/whitepapers/raw/branch/main/out/stagex.pdf
1•networked•33m ago•0 comments

Four Years Ago, a Crypto Boss Went Missing. Now His Successor Has

https://www.nytimes.com/2026/08/23/world/europe/poland-estonia-cryptocurrency.html
4•ilamont•34m ago•0 comments

Activity Monitor for AI Application on Mac OS X

https://popy.app/apps/corral
1•kulekci•39m ago•0 comments

Hundreds of leaked AWS keys give full control over corporate accounts

https://www.bleepingcomputer.com/news/security/hundreds-of-leaked-aws-keys-give-full-control-over...
2•Brajeshwar•43m ago•0 comments

Cyberleek Viewer based on-chain (no browser needed)

https://github.com/ZeroHackz/cyberleek-viewer
1•zerolines•44m ago•0 comments

The Covid-19 scandal is still unfolding

https://www.economist.com/united-states/2026/08/20/the-real-covid-19-scandal-is-still-unfolding
8•bediger4000•45m ago•2 comments

Show HN: One portal for all your MCP servers

https://onemcp.dev/
2•ddoronin•51m ago•0 comments

Palantir's Karp – frontier AI labs that are 'trying to drug addict us'

https://www.cnbc.com/2026/08/03/palantir-karp-open-ai-anthropic-open-weight.html
7•rishabhd•58m ago•1 comments

Liberal Families Are Looking Pretty Traditional

https://www.theatlantic.com/ideas/2026/08/democrat-liberal-conservative-traditional-family/688369/
2•loughnane•1h ago•0 comments

The Decline of America's Public Pools

https://www.theatlantic.com/health/archive/2024/08/america-is-ignoring-its-public-pools/679428/
2•loughnane•1h ago•1 comments

TrustLens – Detect Fake News and Verify Claims

https://trustlens.lyfmail.com/
2•LYFMail•1h 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/