frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: AI Usage Ball – Claude/Codex/Antigravity Quota as Mac Liquid Orbs

https://github.com/aiusageball/ai-usage-ball
1•xbyxy2000•30s ago•0 comments

Show HN: I built a better right-click menu for macOS

https://github.com/ganeshmshetty/openclip
1•ganeshmshetty•45s ago•0 comments

Show HN: Flipdot display with an AI chat that codes sandboxed animations for it

https://github.com/mdbug/flipdot
1•mdbug•1m ago•0 comments

When 'if' slows you down, avoid it

https://easylang.online/blog/branchless
1•theanonymousone•3m ago•0 comments

Skills vs. MCP tools for AI agents: when to use which

https://blog.logrocket.com/skills-vs-mcp-tools-agent-guide/
1•deepmem•3m ago•0 comments

Training a coding model to paint watercolours

https://huggingface.co/blog/train-to-paint-with-code
1•makaimc•6m ago•0 comments

Unveiling the Cognitive and Social Toll of ChatGPT Over-Reliance

https://onlinelibrary.wiley.com/doi/10.1002/acp.70205
1•geox•8m ago•0 comments

I turned the periodic table into a live market

https://elementswar.lol
1•tunarob•9m ago•0 comments

HotDog and Sausage Software: the HTML editor that barked at the world

https://karamatli.com/posts/hotdog-html-editor-sausage-software/
1•sparsesignal•9m ago•1 comments

Show HN: jeden.day – a compact habit tracker with flexible schedules

https://jeden.day/
3•mdbug•10m ago•0 comments

A Story About Joe

https://alisnic.github.io/posts/story-about-joe/
1•alisnic•12m ago•0 comments

Jern Cloud – a coding agent bound by a policy file in your repository

https://jern.ai
1•ademar•12m ago•0 comments

A brief guide to French polling data

https://maxhalford.github.io/blog/french-polling-data/
1•sebg•12m ago•0 comments

Free OpenHelper AI Chatbot v2 Preview is coming with many features

https://techambient.github.io/HybridAI/v2.html
1•techambient•13m ago•0 comments

Bill Gates' roots in the trashcans of history (2000)

https://www.theregister.com/software/2000/06/29/bill-gates-roots-in-the-trashcans-of-history/1502096
1•Bluestein•14m ago•0 comments

Show HN: I built my first MCP to manage Google Ads

https://adchestra.com/
2•MichalKrk•14m ago•0 comments

Anthropic's distillation battle turns to the dark web as China concerns swell

https://www.cnbc.com/2026/09/03/anthropic-distillation-battle-turns-to-dark-web-china-concerns-sw...
2•prng2021•14m ago•0 comments

'Insane data': Duke professor Dan Ariely accused of additional research fraud

https://dukechronicle.com/article/duke-university-professor-dan-ariely-accused-of-additional-rese...
1•_tk_•15m ago•0 comments

Nvidia to Acquire Hugging Face

https://blogs.nvidia.com/blog/nvidia-to-acquire-hugging-face/
5•tosh•15m ago•0 comments

Freelancers are getting buried with 'soulless' AI slop cleanup

https://www.theguardian.com/technology/2026/sep/02/ai-jobs-freelance-cleanup
1•_____k•16m ago•0 comments

Absurd Adventure and Amygdalectomy Advocacy

https://www.astralcodexten.com/p/absurd-adventure-and-amygdalectomy
1•eatitraw•19m ago•0 comments

Show HN: Vantage – One prioritized health action per day from Apple Health

https://www.vantagehealthapp.com/
1•petreradu•20m ago•0 comments

Show HN: Oconee Runtime – Policy enforcement for browser AI and coding agents

https://www.oconeeruntime.com/news/policy-enforcement-for-browser-ai-and-coding-agents
2•hthomas4•22m ago•0 comments

Release 13.0.8 · Grafana/Grafana

https://github.com/grafana/grafana/releases/tag/v13.0.8
2•kyisaiah47•23m ago•0 comments

We ported 65 OSS projects with AI

https://akka.io/blog/we-ported-65-oss-projects
2•TylerJewell•24m ago•2 comments

GoPro: A normal, unremarkable piece of merger activity

https://www.ft.com/content/e7cc6fc2-74ae-497b-92bf-d8254dd161fa
1•root-parent•25m ago•0 comments

How Swiss tables work in Go built-in map

https://victoriametrics.com/blog/go-swiss-table-map/index.html
1•valyala•26m ago•0 comments

Show HN: StillMade – Programmable AI video pipeline; Chat to video (now)

https://www.stillmade.shop
2•nomanWasTaken•27m ago•1 comments

Elmway – Tasks and Notes

2•victor_dd•28m ago•0 comments

OWASP MCP Governance and Risk Framework

https://github.com/OWASP/OWASP-MCP-Governance-and-Risk-Project
1•882542F3884314B•28m 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/