frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

No Biting: The Easy Way to Understand AI Alignment

https://ishayirashashem.substack.com/p/no-biting-the-easy-way-to-understand
1•ishayirashashem•1m ago•0 comments

Who Stands Behind the Words?

https://www.tandfonline.com/doi/full/10.1080/00963402.2026.2718008
1•magicseth•1m ago•0 comments

Ask HN: I don't want better models, just faster ones

1•level87•2m ago•0 comments

Is the Arctic set to be China's new battery highway to Europe?

https://www.batteriesinternational.com/news/is-the-arctic-set-to-be-chinas-new-battery-highway-to...
1•speckx•2m ago•0 comments

Tripwire – sandboxed security scanner for AI skills and MCP servers

https://github.com/neomatrix369/tripwire
1•neomatrix369•3m ago•0 comments

Validating snapshots before restoring an AI coding workspace

https://github.com/croviatrust/causari/pull/44
1•CroviaTrust•3m ago•0 comments

Show HN: Briff – Site Summarizer

https://briff.site
1•Kuyawa•4m ago•0 comments

Show HN: TideGlass, nature simulations for a second monitor, written in Metal

https://tideglass.app/
1•PiXeL161616•4m ago•0 comments

Suno launches v6, v6-wild and v6-mini

https://suno.com/blog/introducing-v6
1•levysoft•4m ago•0 comments

Clip Art Studio

https://clipart.studio/
2•bookofjoe•5m ago•0 comments

Voice AI Benchmarks: a directory of voice-agent evaluations

https://voicebenchmarks.com/
1•codelion•5m ago•0 comments

New app: Yesterday, an iPhone app for yesterday's weather

https://interconnected.org/home/2026/08/26/yesterday
1•surprisetalk•7m ago•0 comments

A Design Space Exploration of Async/Await

https://cel.cs.brown.edu/blog/design-space-async-await/
1•wcrichton•8m ago•0 comments

Anthropic insiders warn AI could kill all humans

https://www.axios.com/2026/09/09/anthropic-insiders-warn-ai-could-kill-all-humans
2•utkarsh858•8m ago•0 comments

AI Made Lots Hideous Code but Found Major Bottlenecks for Fast Linux Compilation

https://www.phoronix.com/news/AI-To-Faster-Linux-Kernel-Comp
1•mdp2021•9m ago•0 comments

Navier stokes- Problem solution and the math for absolute dumbfucks

https://x.com/kingofknowwhere/article/2097441617640886376
1•gmays•9m ago•0 comments

Date with a Recruitment Scammer

https://freebird.in/date-with-a-scammer-vulture/
1•bobkb•11m ago•0 comments

I rewrote my back end in Go in 72 hours – the 30 day follow-up

https://www.bajura.online/2026/09/i-rewrote-my-backend-in-go-in-72-hours_0359752883.html
1•odilelof•13m ago•0 comments

The Ancient Greek Water Clock That Kept the Most Accurate Time for 1,800 Years

https://www.openculture.com/2026/09/the-ancient-greek-water-clock-that-kept-the-most-accurate-tim...
4•Brajeshwar•13m ago•0 comments

My LLM eval cried wolf. Here's what I measured

https://digline.dev/blog/my-llm-eval-cried-wolf/
2•alexpran•15m ago•0 comments

A remote island, these GPS hackers are preparing for an invisible war

https://www.bbc.com/future/article/20260908-inside-the-fight-to-protect-the-worlds-satellite-signals
1•tigerlily•15m ago•0 comments

Google Gives a 20-Year Lifeline to Nordic Nuclear Power Plant [Loviisa]

https://www.bloomberg.com/news/articles/2026-09-09/google-gives-a-20-year-lifeline-to-nordic-nucl...
1•toomuchtodo•17m ago•1 comments

Electronic shelf labels likely to cost jobs and drive up grocery prices

https://www.theguardian.com/us-news/2026/sep/09/electronic-shelf-labels-grocery
3•geox•20m ago•0 comments

Show HN: Castforge – run Claude Code, Codex and Gemini as one dev team

https://castforge.ai/
3•jabenhaim•20m ago•0 comments

An exclusive club for humans waiting on their AI to respond

https://waiting.club
2•billychasen•20m ago•0 comments

Show HN: Mnemiq – Open-source text-to-SQL tuned to your own database

https://github.com/agenticfabriq/mnemiq
2•paulinazhxu•21m ago•0 comments

Upyo 0.6.0: MIME composition, streaming attachments, and calendar invitations

https://github.com/dahlia/upyo/discussions/75
2•dahlia•21m ago•0 comments

AI Image Make

https://www.aiimagemake.com/
3•wsm123456•22m ago•0 comments

The expensive model was cheaper: six other things I got wrong on an LLM judge

https://rekall.study/blog/expensive-model-was-cheaper/
2•AdamWendrich•25m ago•0 comments

Who you recruit is determined by your position in the network

https://andrewmarritt.substack.com/p/who-you-recruit-is-determined-by
2•hunglee2•25m 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/