frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Farewell etaoin shrdlu: the end of the Linotype at the New York Times

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

Tokenflation: When "Hi" triggers 33 tool calls

https://quesma.com/blog/tokenflation-when-hi-triggers-33-tool-calls/
1•Bluestein•3m ago•0 comments

HTML over WebSockets: real-time SPAs with barely any JavaScript

https://en.andros.dev/blog/ef4968f5/html-over-websockets-real-time-spas-with-barely-any-javascript/
1•andros•5m ago•0 comments

Log-Aesthetic Curves

https://www.yoshida-lab.net/english/research-e/log-aesthetic-curves
1•lioeters•8m ago•0 comments

Claude Code pricing: same tokens, same model, up to 40x the price

https://quesma.com/blog/claude-code-pricing-for-enterprise/
3•jakozaur•10m ago•0 comments

Eight Myths About Architecture Refuted

https://www.bensouthwood.co.uk/p/eight-architecture-myths-busted-by
1•barry-cotter•14m ago•0 comments

What changes Claude Code behaviour in Claude.md (with a free generator)

https://smeltworks.com/claudemd/
1•shipkit_pbzs•15m ago•0 comments

Highlight reel for white #14 was generated by open source

https://www.reddit.com/r/highschoolsports/comments/1vlbjay/this_highlight_reel_for_white_14_playe...
1•buffer_overlord•17m ago•0 comments

To anyone thinking of buying JetKVM

https://mastodon.social/@fernvenue/117075911253206097
2•fernvenue•20m ago•0 comments

Show HN: HN karma in your menu bar

https://github.com/rorz/karma-bar
1•sarreph•21m ago•0 comments

Tell HN: Anthropic is starting to inject ads into Claude Code turns

2•skeledrew•23m ago•2 comments

First we shape our social graph; then it shapes us (2022)

https://www.henrikkarlsson.xyz/p/first-we-shape-our-social-graph-then
1•downbad_•24m ago•0 comments

Why won't some people pay for news? (2022)

https://diaspora.glasswings.com/posts/867c94d0ba87013aca41448a5b29e257
1•downbad_•24m ago•0 comments

Gangs using Airbnb-type rentals as drug stash houses, top Belgian official says

https://www.theguardian.com/technology/2026/aug/11/airbnb-type-rentals-drugs-crime-gangs-belgium
2•mv9•25m ago•0 comments

Ask HN: ChatGPT named chat with Chinese characters

2•freakynit•25m ago•0 comments

Flock cameras could go before voters in two Houston-area cities

https://www.chron.com/news/article/flock-cameras-conroe-league-city-22382212.php
2•Cider9986•28m ago•0 comments

Show HN: OpenCode-memory – local persistent memory for OpenCode

https://github.com/cioffiAI/opencode-memory
1•cioffiAI•28m ago•1 comments

Closing Canario Terminal source code

https://rapha.land/closing-canario-terminal-source-code/
1•atan2•28m ago•0 comments

France to ban unsolicited telemarketing calls

https://www.lemonde.fr/en/france/article/2026/08/06/france-to-ban-unsolicited-telemarketing-calls...
17•aziaziazi•29m ago•1 comments

SandboxGym

https://sandboxgym.io/
1•Luc•31m ago•0 comments

Point your webcam at a Rubik's Cube and watch it descramble in 3D

https://leereilly.net/rubiks-rubrics/
1•lee337•32m ago•0 comments

Show HN: Workcell – Secure workspaces for autonomous agents

https://github.com/birand/workcell
1•b0sl37•37m ago•0 comments

Fallacy of Decentralization

https://kaindume.bearblog.dev/fallacy-of-decentralization/
2•merelydev•38m ago•0 comments

Text AI watermarks will always be trivial to remove

https://www.seangoedecke.com/text-ai-watermarks/
2•rzk•40m ago•0 comments

Show HN: I added real Spark support to my pipeline-tuning tool (event-log based)

https://opti-pipe.onrender.com/
1•dorfarber•40m ago•0 comments

Show HN: Dora – a tiny LLM agent with only bash tool

https://github.com/lgxz/dora
1•lgxz•42m ago•0 comments

OpenAI Daybreak Blue

https://developers.openai.com/api/docs/models/daybreak-blue-latest
3•danielfalbo•42m ago•0 comments

Show HN: Repairo-I built CLI tool that detects breaking API changes and fixes it

https://www.heyrepairo.in/
1•Adityasshinde23•46m ago•0 comments

LLM PCB Routing: What the Contract Engineer Taught It

https://edgelog.dev/blog/llm-pcb-routing-human-taught/
1•0xecro1•49m ago•0 comments

Account of Nagasaki's atomic bombing in WW2

https://www.bbc.com/culture/article/20260806-a-us-physicists-inside-account-of-nagasakis-atomic-b...
1•nhatcher•54m 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/