frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Nowmine

https://signal.nowmine.site/
2•tjjune•7m ago•0 comments

Ask HN: Why have we normalized jobs and soft skills bullshit so much?

3•thomasjeff1•7m ago•0 comments

The Scourge of x86 Emulation

https://fex-emu.com/Scourge-of-emulation/
2•dagmx•11m ago•0 comments

Ngrx Inspector

https://marketplace.visualstudio.com/items?itemName=fredyang.ngrx-inspector
1•freddy18•12m ago•0 comments

Reflections on Trusting Trust, Revisited: Poisoning Self-Modifying AI Coding

https://arxiv.org/abs/2609.17817
2•sbulaev•13m ago•0 comments

Hacker

2•jurryythg•16m ago•2 comments

Anderon (IBM) finalizes $1B CHIPS award for US quantum foundry R&D

https://newsroom.ibm.com/2026-09-16-anderon,-an-ibm-company,-finalizes-agreement-with-the-u-s-dep...
2•osnium123•17m ago•0 comments

A Bitter Lesson for Data Filtering

https://arxiv.org/abs/2605.19407
2•nujan_dev•18m ago•1 comments

Mojo 1.1: the compiler now accepts contributions

https://www.modular.com/blog/modular-26-6-open-compiler-contributions-audio-generation-and-expand...
2•user142•19m ago•0 comments

Show HN: Continuity – project state your AI sessions can't silently contradict

https://github.com/vikcena01/ai-continuity-plugin
1•vikcena01•24m ago•0 comments

Show HN: Free Tournament Bracket Maker and Generator

https://snapbracket.com/
1•littlelight•24m ago•0 comments

macOS 27 is a lifesaver for killing leftover AI Agent processes

https://9to5mac.com/2026/06/09/macos-27-golden-gate-makes-it-clear-when-apps-are-sneakily-running...
2•pierreneter•25m ago•2 comments

The Provenance Tax: How LLM Watermarking Changes AI Agent Behavior

https://www.lasso.security/blog/the-provenance-tax-understanding-the-impact-of-llm-watermarking-o...
2•fourfire•27m ago•0 comments

Waymo in Singapore

https://waymo.com/waymo-in-singapore/
3•ramanan•31m ago•1 comments

The Concerns Surrounding Rapid Rise of AI and What We Should Do About It

https://medium.com/@f9121212/this-article-addresses-the-concerns-surrounding-the-rapid-rise-of-ai...
1•ortrich•32m ago•0 comments

Age of Beyond [video]

https://www.youtube.com/watch?v=vp7xoPeWzEw
1•suopspaces•35m ago•0 comments

Natural General Intelligence

https://naturalgeneralintelligence.ai/
2•jbegley•40m ago•0 comments

Youper is shutting down – What kills mental health AI?

https://www.youper.ai/notice
2•batman2019•57m ago•0 comments

Show HN: Free GitHub Action that scans PR diffs for malicious code, not quality

https://github.com/marketplace/actions/vigil-pr-scanner
2•arsalsajjad•59m ago•0 comments

The Bitterest Lesson

https://typesafe.ai/blog/bitterest-lesson
2•emersonmacro•1h ago•0 comments

Google announces new experimental "CC" AI agent for families

https://arstechnica.com/google/2026/09/google-announces-new-experimental-cc-ai-agent-for-families/
2•geoffbp•1h ago•0 comments

Show HN: Green Screen Remover – free in-browser chroma key, nothing uploaded

https://greenscreenremover.net/
2•wangqing333•1h ago•0 comments

I built the fastest PHP webserver in the world

https://qbixserver.com
2•EGreg•1h ago•0 comments

Data

2•justavalidman•1h ago•0 comments

Running OpenBAO on Kubernetes with a CloudNativePG PostgreSQL Back End

https://www.cncf.io/blog/2026/09/16/running-openbao-on-kubernetes-with-a-cloudnativepg-postgresql...
2•geoffbp•1h ago•0 comments

Show HN: Concat: the open-source CapCut replacement.

https://github.com/jub0t/Concat
3•calanus•1h ago•0 comments

Pre-Greek: The lost language hidden within Ancient Greek

https://linguisticdiscovery.com/posts/pre-greek/
7•axiologist•1h ago•0 comments

Code Scans

https://devin.ai/blog/introducing-code-scans
8•geoffbp•1h ago•0 comments

Warez: The Infrastructure and Aesthetics of Piracy Culture

https://archive.org/details/b904a8eb-9c98-4bb1-bf25-3cb9d075b157
6•succinct_ideas•1h ago•0 comments

Show HN: Jinx – a link shortener you host free on GitHub Pages

https://jinx.fyi
2•SubmersibleZoom•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/