frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Deviant, a feature-length sci-fi thriller about AI, made with AI

https://deviantmovie.com/
1•johnpolacek•1m ago•0 comments

Conway's Law Is Dead. Or Is It?

https://domenkozar.com/2026/09/12/conways-law-is-dead-or-is-it/
1•domenkozar•2m ago•0 comments

Memories of how you heard about 9/11 may well be wrong

https://theconversation.com/your-memories-of-how-you-heard-about-9-11-may-well-be-wrong-weve-been...
1•GlibMonkeyDeath•4m ago•1 comments

Compressing a Flag to 11 Bits

https://read.vantezzen.io/miniflags
1•bennett_dev•5m ago•0 comments

Agent Scan Skill Inspector

https://labs.snyk.io/experiments/skill-scan/
1•taubek•6m ago•0 comments

Inexpressible States: The History and Usage of Algebraic Data Types

https://www.makonea.com/en-US/blog/inexpressible-states-the-history-and-usage-of-algebraic-data-t...
1•jdw64•6m ago•0 comments

The Ritz-Carlton purge, a $1.3B demand and nine years trapped in Saudi Arabia

https://www.ft.com/content/50f38214-3a0a-4d6f-9838-c93611d21a0c
2•JumpCrisscross•9m ago•0 comments

Who Should Buy Snap Inc?

https://www.s-1.site/s/snap-inc-pivot-to-subscriptions.html
2•anthonybourdain•12m ago•1 comments

Microcode in Intel's 8087 floating-point chip: the scale instruction

https://www.righto.com/2026/09/8087-microcode-reverse-engineering-fscale.html
3•pwg•13m ago•0 comments

I Just Joined Bros

2•trony_tasx•13m ago•0 comments

Show HN: Dry Diving Club – A darkly comic browser game

https://drydiving.club/
2•crapthings•14m ago•0 comments

HBM System Architecture: Thermal, Signal Integrity, and Reliability Limits

https://www.siliconcodesign.com/p/the-system-architecture-of-hbm-how
2•yarapavan•16m ago•0 comments

Show HN:TurboBench: Data Compression Benchmark. The Compression Lie Detector

https://github.com/powturbo/TurboBench
2•powturbo•16m ago•1 comments

Orcrist: A Coding Agent using LLM state machines

https://github.com/simone20a/Orcrist
1•simone20a•17m ago•0 comments

Show HN: MCP that gives Codex/Claude your SEO and AI visibility data

https://bloomiro.com/mcp
3•johnbuildss•18m ago•0 comments

Lessons I learned as a software engineer

https://www.thetrueengineer.com/p/10-lessons-from-the-journey-what
2•adletbalzhanov•20m ago•1 comments

A Misalignment of AI and Cancer Biology

https://twitter.com/mbeisen/status/2098582265190351334
1•harporoeder•20m ago•0 comments

Ask HN: Can we do a karma reset?

5•HNKarmaReset•21m ago•1 comments

Cities like Raleigh finish construction before e.g. San Francisco approves them

https://twitter.com/esoltas/status/2098162675989565925
1•JumpCrisscross•23m ago•0 comments

The Unravelling of the American Age Is Accelerating

https://phillipspobrien.substack.com/p/the-unravelling-of-the-american-age
4•JumpCrisscross•24m ago•0 comments

Show HN: OpenVurp – An open-source alternative to Grok Bot

https://github.com/openvurp/openvurp
1•vforno•24m ago•1 comments

Why Spotify Is Not Using Bayesian A/B Testing

https://engineering.atspotify.com/2026/9/why-spotify-is-not-using-bayesian-a-b-testing
1•sanj•24m ago•0 comments

Show HN: Redis Lua scripts as typed Python functions

https://github.com/IgnaceMaes/redis-lua-py
1•Nebulic•26m ago•0 comments

LG responds to TV spying allegations

https://www.theverge.com/tech/994333/lg-responds-to-tv-spying-allegations
12•OuterVale•29m ago•1 comments

GrapheneOS: Nearly all of our recent posts on Hacker News are being flagged

https://twitter.com/GrapheneOS/status/2098792171058889006
3•timedude•31m ago•1 comments

Rapidly scaling online storage to serve over 1B ChatGPT users

https://openai.com/index/scaling-storage-one-billion-users-part-one/
1•tamnd•31m ago•0 comments

YoooClaw C·ONE: a Chinese AI card that captures context instead of processing it

https://sinosphereapp.substack.com/p/yoooclaw-cone-the-ai-gadget-that
1•Nyloc1•32m ago•0 comments

Anthropic CEO calls for immediate slowdown in AI development

https://www.axios.com/2026/09/12/anthropic-ai-amodei-pacing
5•doctoboggan•33m ago•2 comments

Why Balaclava?

https://www.espacecagoules.com/en/blogs/tout-sur-la-cagoule/pourquoi-balaclava
1•jruohonen•34m ago•1 comments

Is This a New WhatsApp Hack?

3•MarcellusDrum•34m 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/