frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI Has No Wisdom and Neither Will You

https://alexn.org/blog/2026/09/22/ai-has-no-wisdom-and-neither-will-you/
1•dimonomid•8s ago•0 comments

Search the Past

https://sk500.online/tech/search-the-past/
1•airhangerf15•21s ago•0 comments

NanaZip: The 7-Zip derivative intended for the modern Windows experience

https://github.com/M2Team/NanaZip
1•aniviacat•1m ago•0 comments

Omarchy: Alibaba as a Founding Corporate Patron for the Omacom Foundation

https://twitter.com/dhh/status/2102366320369016915
1•tosh•1m ago•0 comments

This app turns off the MacBook display when it connects to an external monitor

https://manualdousuario.net/en/one-display-turns-off-macbook-display/
1•rpgbr•2m ago•0 comments

Show HN: Nimblegate – Git push guardrails for AI agents

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

Building AI MVPs: Testing Demand, Model Quality, and Cost

https://geekyants.com/service/mvp-development-service
1•Harish_0089•3m ago•0 comments

Alibaba Cloud Joins Omarchy as a Founding Corporate Patron with $3M

https://omarchy.org/news/2026/09/alibaba-cloud-joins-as-founding-corporate-patron/
3•tommica•3m ago•0 comments

Agents That Edit Documents: Measuring Agentic PDF Forgery Against a Non-Agentic

https://arxiv.org/abs/2609.23953
1•sbulaev•4m ago•0 comments

Will Open Source Survive the Agents That Replaced It?

https://albertoarena.it/posts/will-open-source-survive-the-agents-that-replaced-it/
2•albertoarena•6m ago•0 comments

CleanShot's Bulldozed Settings

https://unsung.aresluna.org/cleanshots-bulldozed-settings/
1•haeseong•7m ago•0 comments

The Agenda Behind the AI Panic

https://www.wsj.com/opinion/the-hidden-agenda-behind-the-ai-panic-19ef191f
2•Bostonian•7m ago•1 comments

Working for a just world, where conflict is resolved without the use of force

https://caat.org.uk/
1•Bluestein•9m ago•0 comments

Open-source "PostHog" for AI visibility

https://github.com/Canonry/canonry
1•arberx•9m ago•1 comments

Show HN: Owl24.dev – Hand a production error to your coding agent, get a PR back

https://owl24.dev
1•owl24dev•10m ago•0 comments

The mystery animal on an ancient god's head

https://signoregalilei.com/2026/09/13/the-mystery-animal-on-an-ancient-gods-head/
1•surprisetalk•11m ago•0 comments

Automating Wi-Fi setup testing on the ESP32

https://groundrun.io/blog/automating-wi-fi-setup-testing-on-the-esp32/
1•adunk•11m ago•0 comments

Show HN: Roblox wiki for 100 Days At Sea that only lists confirmed codes

https://www.100daysatsea.com
1•leiships•14m ago•0 comments

About Spurious Correlations

https://tylervigen.com/about-spurious-correlations
1•quijoteuniv•16m ago•0 comments

Véhicules utilitaires électriques et diesel performants

https://www.maxusmotors.fr/
1•davidbarefdg•16m ago•0 comments

The Life of Death and the Enshittificator (Norwegian Consumer Council) [video]

https://www.youtube.com/watch?v=d6SPV4GZp-U
2•rekl•16m ago•0 comments

Compositor – The Photoshop alternative for Mac

https://robbietilton.com/compositor
2•tobr•18m ago•0 comments

Memorisation versus Generalisation for AI and for Us

https://wilsoniumite.com/2026/09/21/a-thing-we-may-be-able-to-learn-from-ai/
1•Wilsoniumite•19m ago•0 comments

A dataset hub for LLM serving research

https://data.freeinference.org/
1•Anon84•21m ago•0 comments

MCP was always a bad idea?

https://simonwillison.net/2026/Sep/20/hn-49779718/
1•hnp9j9qtda•22m ago•1 comments

Ask HN: Business Logic in the Database?

2•boxesnlines•23m ago•0 comments

EU Transformative AI Strategy

https://transformative-ai.eu/
1•cc62cf4a4f20•23m ago•0 comments

Simurg – Kills LLM hallucinations mid-stream, with free web search built in

https://huggingface.co/MergenAI/SIMURG
1•lebagetdefrance•24m ago•0 comments

Show HN: Matcha – fresh job postings pulled directly from company career pages

https://matchajobs.co/
1•jpercy•27m ago•1 comments

The backend that ran every game we made, ten years and counting

https://www.m2h.nl/writing/the-toolkit-behind-ten-years-of-games/
1•MikeHer•29m 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/