frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Llamora, a private journal that remembers with you

https://welcome.llamora.app/
1•anon1253•6m ago•0 comments

Fighting YouTube Addiction

https://buttondown.com/usaa.ma/archive/fighting-youtube-addiction/
1•usamasulaiman•9m ago•0 comments

From APIs to Languages: Generalising Method Names [using regular expressions]

https://blog.acolyer.org/2015/11/09/from-apis-to-languages-generalising-method-names/
1•ogogmad•15m ago•0 comments

How do you run System One decision models locally?

https://stackness.dev/blog/how-do-you-run-system-one-decision-models-locally-ollaya-laya-mlx-and-...
2•gosen•18m ago•0 comments

DeepSeek has 64% market share

https://twitter.com/gherget/status/2104155774910083275
2•gaborme•19m ago•0 comments

Sponsored-logs-rs: Open the Rust book: monetize the tracing exhaust

https://github.com/sponsoredlogs/sponsored-logs-rs
2•thunderbong•20m ago•0 comments

Show HN: Jev-windows-agent – Windows UI Automation back end for CUA agents

https://github.com/VBS2004/jev-windows-agent
2•VBS2004•22m ago•0 comments

Being Mentioned in AI Answers Is Not the Same as Being Recommended

https://cuescout.com/blog/mentioned-is-not-recommended
3•cuescout•24m ago•0 comments

SRE Udemy Course: Software Reliability Map

https://www.udemy.com/course/reliability-map/
2•Brixdes•28m ago•0 comments

Jempo by Thomas Ha

https://www.lightspeedmagazine.com/fiction/jempo/
2•Alien1Being•30m ago•0 comments

"As a Language Model": Chat Template Switches LLM Self-Referential Voice

https://arxiv.org/abs/2609.25021
18•yu3zhou4•33m ago•2 comments

Changes in quality of life: digital exercise therapy for knee/hip osteoarthritis

https://doi.org/10.1186/s12955-026-02634-5
3•chavasorani•33m ago•0 comments

Postgres AT TIME ZONE 'UTC' does NOT do what you think it does

https://bookofrevenue.com/blog/6ab81e9a97a13f0001f7e4e1/postgres-at-time-zone-u-does-not-do-what-...
1•birdculture•40m ago•0 comments

Trying GPT-6 Sol with AI SDK Evaluation API

https://vercel.com/i/using-gpt-6-sol-with-ai-sdk-evaluation
1•flashbrew•45m ago•0 comments

Show HN: TanStack Start and TanStack AI Jev Integration

https://vercel.com/i/using-jev-in-tanstack-start-with-tanstack-ai
1•flashbrew•46m ago•0 comments

Another week, another data breach for Revolut customers

https://www.theregister.com/cyber-crime/2026/09/25/another-week-another-data-breach-for-revolut-c...
4•imalerba•47m ago•0 comments

Ask HN: What does your AI workflow look like?

1•tadziokas•48m ago•2 comments

The Importance of Human Knowledge in the AI Era

https://jonbehnken.substack.com/p/the-case-for-learning
1•greedywhale•51m ago•0 comments

Claude Isn't Allowed to Write Me Prose

https://blog.kvit.app/posts/agent-not-allowed-to-write-prose/
2•skolos•53m ago•0 comments

YouTube stores three auto-extracted frames for every video, and nobody uses them

https://github.com/InfinityLoop1308/PipePipeClient/pull/98
2•jrejaud•55m ago•0 comments

How AI Is Accelerating PCB Design and Prototyping

https://www.eetimes.com/how-ai-is-accelerating-pcb-design-and-prototyping/
1•giuliomagnifico•58m ago•0 comments

Poisoning a Go Cache

https://lukasschwab.me/blog/gen/poisoning-go-cache.html
2•ingve•1h ago•1 comments

Genius AI APı Anahtarı

1•Ayazefe•1h ago•0 comments

Makeraoke: Share your side project in a video between three and nine minutes

https://www.reddit.com/r/Makeraoke/
1•cs1996•1h ago•0 comments

Musk – Official Trailer (2026)

https://www.youtube.com/watch?v=-52sVAzXwLM
3•Betelbuddy•1h ago•0 comments

Sandbox-first AI coding harness

https://chock.ws/
1•rosscomputerguy•1h ago•0 comments

Show HN: Peekaboolean – image and jev-like typed questions in typed anwers out

https://github.com/bykof/peekaboolean
2•bykof•1h ago•0 comments

I Posed as a Problem Gambler. DraftKings Made Me a VIP

https://www.propublica.org/article/draftkings-sports-gambling-problem-vip-fanduel
8•theblazehen•1h ago•1 comments

Show HN: Afterlife Vault – a virtual dead man's switch

https://afterlife-vault.com
2•wmeter•1h ago•1 comments

Using Claude Code: Spending your effort

https://claude.dev/blog/spending-your-effort/
3•e12e•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/