frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Arness – I automated my dev process, but this time from idea to infra

https://github.com/AppsVortex/arness
1•fredcallagan•25s ago•0 comments

An open set of code changes that look fine but fail SoC 2 / GDPR checks

https://github.com/better-isms/control-in-code
1•betterisms•33s ago•0 comments

Show HN: We Built the Agentic World Cup – LLMs Competing in 1v1 Soccer

https://agenticworldcup.ai/
2•agenticworldcup•1m ago•1 comments

Show HN: Chain – A Python-like language with native inline C++

https://github.com/Nebania/chain-lang
1•Pilot0253•1m ago•0 comments

Code-first personal email lead enrichment

https://shipgtm.substack.com/p/unlocking-company-data-from-personal
1•namadaza•2m ago•0 comments

Chlorine Dilution Calculator

https://www.publichealthontario.ca/en/health-topics/environmental-occupational-health/water-quali...
1•Bluestein•3m ago•0 comments

Show HN: Remarc – Your feedback layer for AI collaboration

https://github.com/metedata/Remarc
1•young_mete•3m ago•0 comments

The Bench as a Made Object

https://idle.news/blog/the-bench-as-a-made-object/
1•casca•4m ago•0 comments

Self-improving agents are event sourced

https://lobu.ai/blog/self-improving-agents-are-event-sourced/
1•buremba•4m ago•0 comments

Flock Camera Avoidance Routing

https://dontgetflocked.com/
1•aloukissas•4m ago•0 comments

Thoughts I had while reading your comment

https://dynomight.net/comment/
1•surprisetalk•4m ago•0 comments

The AGI Race Has Two Scoreboards. You Only Need One

https://hvasc.dev/articles/agi-two-scoreboards
1•felltrifortence•4m ago•0 comments

An MCP Server in One Bash File

https://blazed.sh/blog/posts/mcp-server-in-one-bash-file/
1•fipso•5m ago•0 comments

I do read AI code

https://dmitriid.com/adding-to-i-dont-read-ai-code-discourse
1•troupo•6m ago•0 comments

The death of AI workflow builders

https://www.adriankrebs.ch/blog/death-of-ai-workflow-builders/
1•hubraumhugo•7m ago•0 comments

The million-dollar home is becoming surprisingly normal

https://www.foxbusiness.com/real-estate/million-dollar-home-becoming-surprisingly-normal
2•geox•9m ago•0 comments

Odd Comments and Doings in Unix

https://9p.io/who/dmr/odd.html
1•birdculture•10m ago•0 comments

Show HN: Git-knife – edit commit messages, authors, and dates like a spreadsheet

https://github.com/TheRealYT/git-knife
5•YonathanTesfaye•10m ago•1 comments

Adaptive Auto Skinning: Skinning Benchmark

https://jessyleite.dev/posts/automatic-skinning-benchmark-comparison/
1•klaussilveira•10m ago•0 comments

Ask HN: What is some software that you wish existed?

1•yangikan•10m ago•2 comments

Show HN: 60-second cognitive test to tell humans from bots (no camera)

https://cognitive-signature.com
2•zefparis•11m ago•1 comments

Show HN: Add the official EU AI-content labels to images and videos

https://github.com/Run-Labs-com/agent-skills/tree/main
1•mnewme•12m ago•0 comments

CheetahSpec: Native execution speed WGSL browser cryptosolver

https://github.com/renz0kuken9/CheetahSpec
1•w2seraph•12m ago•0 comments

Show HN: OJCP – an open protocol for agent-consumable job data

https://ojcp.dev/
5•fraywing•12m ago•1 comments

AI's potential climate benefits outweighed by role in boosting fossil fuels

https://www.theguardian.com/technology/2026/aug/11/ai-will-do-more-to-boost-fossil-fuel-productio...
1•sbulaev•12m ago•0 comments

Google's Westinghouse Bet

https://asimovaddendum.substack.com/p/googles-westinghouse-bet
1•ilamont•13m ago•0 comments

Apocalyptic events should mean action and structural reform, not individualism

https://100r.co/site/off_the_grid.html
2•Bluestein•14m ago•0 comments

I coded myself into a corner with AI, this is how I wrote myself out

https://medium.com/@daniel-payne-keldan-systems/i-coded-myself-into-a-corner-with-ai-this-is-how-...
1•daniel-payne•15m ago•0 comments

Show HN: Proxima serves 4x more requests with no hardware change on vLLM

https://github.com/Tenosra/Proxima
1•pythongiant•16m ago•1 comments

Relevare: Self-driving AI enablement and modernization for non-technical teams

https://relevare.tech
1•npb12•16m ago•1 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/