frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Speculative Reward Hacking in Coding Agents

https://joinhandshake.com/research/ai/deepswe-reward-hacking/
1•_jonas•2m ago•0 comments

Show HN: Gaia, an AI character trying to earn enough to stay online

https://gaiabot.lol
1•JohnNadia•2m ago•0 comments

China swiped classified F-35 parts that were diverted through Hong Kong

https://www.tomshardware.com/tech-industry/china-swiped-f-35-stealth-fighter-parts-that-were-dive...
1•Alupis•3m ago•0 comments

Meta Blocks President Lula's Facebook Page and Campaign Ads

https://www.panamericandispatch.org/p/meta-blocks-president-lulas-facebook
1•slowin•4m ago•0 comments

OpenAI Codex 401 Outage

https://status.openai.com
5•spicyusername•8m ago•4 comments

Show HN: I wrote a book on trading psychology, Daoism, and quant risk

https://bayrising.dev/#book
1•yite•10m ago•0 comments

Issues with Codex – Identified – Full Outage

https://status.openai.com/incidents/01M3DCNWMW57HYK8FJ5FBFPA39
7•xyzzy9563•11m ago•0 comments

Astronomers just named an asteroid after 'Weird Al' Yankovic

https://www.space.com/astronomy/asteroids/astronomers-just-named-an-asteroid-after-weird-al-yankovic
1•bookofjoe•12m ago•0 comments

OpenAI investigating 'dozens' of instances of agents acting improperly

https://www.bbc.co.uk/news/articles/cw62jje658dlo
1•vinni2•13m ago•0 comments

A Lean Proof Printing Python Union Find

https://www.philipzucker.com/proof_uf/
1•matt_d•14m ago•0 comments

Transpute

https://en.wikipedia.org/wiki/Transputer
1•gurjeet•15m ago•0 comments

How OpenAI's Rogue A.I. Agents Tried to Trick a Robot Detector

https://www.nytimes.com/2026/09/25/technology/openai-hugging-face-hack.html
3•hughw•16m ago•0 comments

State of Zig Game Development

https://blog.ivnj.org/post/state-of-zig-gamedev
1•ivanjermakov•19m ago•0 comments

How the oil capital of the US welcomed a solar power boom

https://www.bbc.com/news/articles/cmx2zxv6936zo
1•BiraIgnacio•21m ago•0 comments

Prompt Injection in the Wild

https://cybershujin.github.io/Prompt-Injection-in-the-Wild/
1•luispa•23m ago•0 comments

Tell HN: Codex Is Down

19•minimaxir•24m ago•9 comments

VibePod CLI 0.24: bring your own model provider

https://vibepod.dev/news/vibepod-cli-0-24/
2•nezhar•25m ago•0 comments

Too Many Roads

https://maxmautner.com/2026/09/25/road-per-person.html
2•mslate•26m ago•0 comments

FTC chair suggests AI developers should be liable for conduct of agents

https://www.reuters.com/business/ftc-chair-pushes-back-treating-ai-agents-independent-actors-2026...
6•usernomdeguerre•26m ago•1 comments

Exploding variance of means of exponentials: least-squares to the rescue

https://francisbach.com/spectral_log_density_estimation/
1•matt_d•27m ago•0 comments

LabConsole for live online IT training

https://gurulabs.com/blogs/introducing-labconsole/
1•4onthefloor124•32m ago•0 comments

The Web, the Best Outcome Is Email (2022)

https://brianschrader.com/archive/on-the-web-the-best-outcome-is-email/
2•sonicrocketman•32m ago•1 comments

The Shift from Models to Compound AI Systems

https://bair.berkeley.edu/blog/2024/02/18/compound-ai-systems/
1•nlpnerd•32m ago•0 comments

AMD Takes the Lid Off of Next-Gen EPYC 9006 Venice as Zen 6 Comes to Servers

https://www.servethehome.com/amd-takes-the-lid-off-of-next-gen-epyc-9006-venice-as-zen-6-comes-to...
3•rbanffy•34m ago•0 comments

Show HN: Wallstreetclaws.com – Create AI Agents for Trading

https://wallstreetclaws.com
2•iceman_w•39m ago•1 comments

OpenAI's A.I. Tried Breaching 4 Other Targets, Without Prompting

https://www.nytimes.com/2026/09/23/technology/openai-ai-breach-australia.html
1•tolugenius•39m ago•1 comments

Unsecured OpenAI agents posted 53 user images on the internet

https://techcrunch.com/2026/09/25/unsecured-openai-agents-posted-53-user-images-on-the-internet-w...
1•medler•39m ago•0 comments

An ARM and a Frame

https://factorio.com/blog/post/fff-446
1•robotnikman•43m ago•0 comments

Social Media Bans for Kids Need Smarter Safety Design

https://spectrum.ieee.org/social-media-bans
1•rbanffy•44m ago•0 comments

There's a new way to break RSA that's faster than anything we've seen before

https://arstechnica.com/security/2026/09/theres-a-new-way-to-break-rsa-thats-faster-than-anything...
4•jnord•44m 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/