frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Imageaicraft] – GPT Image 2 Image Generator and Editor

https://imageaicraft.com
1•zhou594660747•2m ago•0 comments

Making Hundreds of Mugs by Hand

https://www.youtube.com/watch?v=O163JMvWixg
1•brudgers•3m ago•0 comments

Artifactory: In-the-Wild Exploitation of CVE-2026-42016,CVE-2026-42018

https://www.wiz.io/blog/artifactory-under-attack-in-the-wild-exploitation-of-cve-2026-42016-cve-2...
1•ls1911•5m ago•0 comments

OEMpocalypse: Unprivileged Android app to root on Samsung, Xiaomi, others

https://calif.io/research/oempocalypse
2•negura•7m ago•0 comments

Brief Legal [1A] Thoughts on the "AI Safety" Fights to Come

https://prestonbyrne.com/2026/09/13/brief-legal-thoughts-on-the-ai-safety-fights-to-come/
2•blueSky1989•7m ago•1 comments

A.I. Slopware Is Everywhere Now. Nobody Is Using It

https://www.nytimes.com/2026/09/12/opinion/ai-software-coding-apps.html
5•walterbell•9m ago•0 comments

Show HN: Kairo – Fail-closed LLM inference routing from RTX 5090 measurements

https://github.com/peter941221/Kairo
2•peter941221•11m ago•0 comments

Bernie Sanders proposes 20 years in prison for developers pursuing ASI plans

https://www.tomshardware.com/tech-industry/artificial-intelligence/sanders-proposes-20-year-priso...
2•girish_r•11m ago•0 comments

Show HN: PaperFlip – the bird never moves, you fold the paper

https://apps.apple.com/us/app/paperflip/id6807705987
1•hongbiaoluo15•11m ago•0 comments

Why Forth Matters

https://nomlang.org/post/post.14.sep.2026.html
1•mjbq•14m ago•1 comments

Historic Business Machines Collection

https://cdm16471.contentdm.oclc.org/digital/collection/p16471coll9/search
2•Group_B•15m ago•0 comments

Sere, a compiled Python-like systems programming language

https://sere-lang.com
2•handheldheart•17m ago•3 comments

Show HN: Bipluk, Open-source browser Web MIDI librarian for vintage synthesizers

https://github.com/maxcomperatore/bipluk.com
2•halfradaition•17m ago•0 comments

Show HN: Dllog – Replay debug logs when an operation fails

https://github.com/arhuman/dllog
2•doolta•17m ago•0 comments

The logging dilemma: keeping debug context without debug noise

https://blog.assad.fr/en/post/log-dilemma/
2•doolta•18m ago•0 comments

AI Forces You to Commit to Your Initial Belief

https://idiallo.com/blog/making-changes-mid-sentence
2•walterbell•19m ago•0 comments

Show HN: I made a tiny MoE/Engram viz tool

https://sw-ml-study.github.io/moe-microscope/
2•softwarewright•33m ago•0 comments

The Accelerationist Case for Frontier Pacing

https://contraptions.venkateshrao.com/p/the-accelerationist-case-for-frontier
3•wskinner•33m ago•0 comments

Show HN: Is It Greg?

https://github.com/antoineleclair/is-it-greg
17•antoineleclair•34m ago•3 comments

Bruce Schneier: No, AI doesn't mean the end of mathematics – at least not yet

https://www.theguardian.com/commentisfree/2026/aug/25/ai-mathematics-careers
5•emil-lp•37m ago•0 comments

"Oopsies " FreeBSD Devs Say There's Still GPL in the Kernel

https://fossforce.com/2026/07/oopsies-freebsd-devs-say-theres-still-gpl-in-the-kernel/
2•pizzaiolo•40m ago•0 comments

new free website for people who are interested in free trading tools

2•Mohamed_Amineio•46m ago•0 comments

Made a Simple Link Extractor from HN Comments

https://hn-links.netlify.app/?id=49684393
2•rammy1234•52m ago•1 comments

The Malicious Use of Artificial Intelligence

https://arxiv.org/abs/1802.07228
4•rasengan0•1h ago•0 comments

Sandbox-API

https://hub.docker.com/r/credkellar/sandbox-api
2•credkellarboop•1h ago•0 comments

System 3 Thinking

2•rexossbear•1h ago•0 comments

The Biology of Claude's Tokenizer

https://tokencontributions.substack.com/p/on-the-biology-of-claudes-tokenizer
3•brimtown•1h ago•0 comments

Opportunistic AI detects colorectal cancer using routine, noncontrast CT

https://radiologybusiness.com/topics/artificial-intelligence/opportunistic-ai-detects-colorectal-...
3•pseudolus•1h ago•1 comments

Show HN: Exploring the intersection of prediction markets and social media

https://www.thevidmarket.com/
3•ryanpere2298•1h ago•0 comments

Jeff-a-Sketch

https://www.drjeffdaniels.com/jeffasketch
4•cebert•1h ago•2 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/