frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Congratulations to the Winners of the 2026 Online Journalism Awards

https://awards.journalists.org/2026/09/03/congratulations-2026-oja-virtual-ceremony-winners/
2•rdmuser•3m ago•0 comments

Why I am so against volunteering in academia (ecology-edition)

https://statmodeling.stat.columbia.edu/2026/08/19/why-i-am-so-against-volunteering-in-academia-ec...
1•luu•9m ago•0 comments

British police try to track down theft of 70k pints worth of Guinness stout

https://apnews.com/article/guinness-heist-stout-stolen-truck-depot-pabst-pbr-88b7745450be79af57d3...
1•ChrisArchitect•9m ago•0 comments

Delve (YC W24) accused of misleading customers with 'fake compliance'

https://finance.yahoo.com/sectors/technology/articles/delve-accused-misleading-customers-fake-170...
2•mgh2•10m ago•2 comments

Where Europe Goes to Gig

https://europeancorrespondent.com/en/r/where-europe-goes-to-gig
1•gmays•15m ago•0 comments

Project Xanadu: Even More Hindsight

https://gwern.net/xanadu
2•andsoitis•16m ago•0 comments

Mercury Poisoning Situation at MIT [video]

https://www.youtube.com/shorts/Z78WXXQd4ok
1•fortran77•16m ago•0 comments

Patient Who Received Pig Kidney First to Progress to Human Kidney Transplant

https://hms.harvard.edu/news/patient-who-received-pig-kidney-becomes-first-progress-human-kidney-...
1•bookofjoe•17m ago•0 comments

Burning Man has become a wrinkled sausage fest of aging millennial men

https://nypost.com/2026/09/03/us-news/burning-man-has-become-a-wrinkled-sausage-fest-of-aging-mil...
1•fortran77•18m ago•0 comments

Stream Ciphers and ChaCha20-Poly1305

https://ekunazanu.foo/lab/stream-ciphers/
1•vismit2000•18m ago•0 comments

Release 13.1.5 · Grafana/Grafana

https://github.com/grafana/grafana/releases/tag/v13.1.5
1•kyisaiah47•19m ago•0 comments

Late Merge

https://third-bit.com/2026/06/03/late-merge/
1•greyface-•20m ago•0 comments

Show HN: a Rust compiler translating Joern CPGs to Nuclei templates

https://medium.com/@mhiritarek/why-i-built-a-deterministic-cpg-to-nuclei-compiler-in-rust-bcb6c7a...
1•Tarek-M•21m ago•1 comments

The Summer of Open Weights

https://martinalderson.com/posts/the-summer-of-open-weights/
1•gmays•26m ago•0 comments

What is Nueralese and Why is it Bad

https://www.lesswrong.com/posts/RCYF2rW8wgusidZk7/what-is-neuralese-and-why-is-it-bad
1•tristanMatthias•28m ago•0 comments

An Alternative to Jira ScriptRunner

https://github.com/ONES-com/onescript-workflow-automation
1•BeautifulONES•28m ago•0 comments

The Last Interview

https://nition.momentstudio.co.nz/p/the-last-interview
2•Nition•30m ago•0 comments

NuFinder, a macOS file manager with real RAID across S3-compatible buckets

https://nufinder.org/
1•LouisvilleGeek•36m ago•0 comments

Kalder CEO Pleads Guilty to Securities Fraud

https://www.justice.gov/usao-sdny/pr/kalder-ceo-pleads-guilty-securities-fraud
3•mgh2•36m ago•0 comments

BoardUI

https://github.com/BoardUI/boardui
1•handfuloflight•43m ago•0 comments

Ask HN: How do you break AI agents out of the "apologize and repeat" loop

2•Marvin_RunAI•44m ago•0 comments

Remember Bebo? Founder shares the story

https://www.youtube.com/watch?v=H3QXvlY-kYM
1•kirstyaden•45m ago•0 comments

ArtStation Should Put Artists First

https://magazine.artstation.com/2026/09/ai-updates-from-artstation/
2•doppp•49m ago•0 comments

Crew – A multiplayer AI workspace for humans and agents, now with iOS apps

https://github.com/JamelHammoud/crew
1•alihammoud21•50m ago•0 comments

Wikimedia Workers Overwhelmingly Win Union with 93% Yes Vote

https://www.wired.com/story/wikipedia-workers-vote-on-whether-to-unionize/
4•taftfartley•51m ago•0 comments

GPT‑6 Astra

https://simonwillison.net/2026/Sep/3/gpt6-astra/
1•doppp•52m ago•0 comments

MemWeaver – a vector DB with predictable memory usage

https://github.com/daib/mem_weaver
1•legosys•52m ago•0 comments

Shell.Online: live browser link for any terminal process

https://shell.online/
1•handfuloflight•53m ago•0 comments

The Latest YC Batch

https://www.neweconomies.co/p/y-combinator-summer-26-batch
1•ollieforsyth•54m ago•0 comments

The Analyst – Practice Data Science Inside a Synthetic 16M-Row Company

https://theanalyst.dev
1•Stuart_Jones•55m 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/