frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Interpretability Illusion – Why we should train models to be interpretable

https://hisku.substack.com/p/the-interpretability-illusion-why
1•Hiskias•48s ago•0 comments

Evidence over Anecdotes: Running A/B Tests on AI Agent Tooling

https://www.pagerduty.com/eng/evidence-over-anecdotes-running-a-b-tests-on-ai-agent-tooling/
1•mooreds•4m ago•0 comments

Habeas Data

https://en.wikipedia.org/wiki/Habeas_data
1•pizzaiolo•8m ago•0 comments

Cops murder woman in Clackamas County Jail by preventing her breathing [video]

https://www.youtube.com/watch?v=MQiHKHEoCII
1•julienreszka•9m ago•0 comments

The search for consciousness inside AI

https://www.economist.com/interactive/briefing/2026/08/20/the-search-for-consciousness-inside-llms
1•pingou•11m ago•0 comments

Mother Tongue

https://www.technologyreview.com/2026/08/21/1141726/mother-tongue-fiction/
1•joozio•16m ago•0 comments

'AI refuser' quit her dream job, and hopes others follow

https://www.smh.com.au/technology/this-ai-refuser-quit-her-dream-job-and-hopes-others-follow-2026...
2•mcapodici•24m ago•0 comments

Debt Apple owes to CIA (through NeXT)

https://www.wsj.com/tech/steve-jobs-apple-next-cia-161b65f9
2•krackout•36m ago•2 comments

Your Open Source Model Could Have a Hidden Time-Release Backdoor

https://morgin.ai/articles/your-open-source-model-could-have-a-hidden-time-release-backdoor.html
2•chknlttle•38m ago•1 comments

Why do Canadians call the last letter of the alphabet Zed?

https://www.cbc.ca/news/canada/newfoundland-labrador/zed-explained-canadians-9.7315717
2•theanonymousone•41m ago•1 comments

Zcomplete – Shell Typo Correction

https://github.com/omarfakih1/zcomplete
1•omarfakih•46m ago•1 comments

AI datasets (2.6k entries) – automated collection, updated daily

https://huggingface.co/gemmozero
2•LegionAPI•48m ago•0 comments

Programming Language Semantics and Memory Safety

https://burakemir.ch/post/formal-semantics/
2•birdculture•53m ago•0 comments

Show HN: Budgethole.com – Close the US federal deficit yourself

https://budgethole.com
1•polocode•54m ago•1 comments

US corporate AI debt surge tests investor limits as fatigue emerges

https://www.reuters.com/legal/transactional/us-corporate-ai-debt-surge-tests-investor-limits-fati...
4•1vuio0pswjnm7•55m ago•1 comments

Show HN: 26-node n8n workflow for scoring and routing B2B leads

https://n8n.io/workflows/18528-score-and-route-b2b-website-leads-with-google-sheets-and-gmail/
1•tinyopsstudio•56m ago•0 comments

Austrian mountain town [Leoben] finds niche in AI boom

https://techxplore.com/news/2026-08-austrian-mountain-town-niche-ai.html
1•mdp2021•57m ago•0 comments

Meta is latest "tech" giant to land in her courtroom. Meet YGR

https://www.cnbc.com/2026/08/22/meet-yvonne-gonzalez-rogers-judge-taking-on-meta.html
1•1vuio0pswjnm7•58m ago•0 comments

Show HN: Kloni – Keyboard-first mind mapping for macOS with tasks built in

https://kloni.app/
1•maketrueco•1h ago•0 comments

Sydney Marathon medal mistakenly depicts Munich stadium

https://www.bbc.com/news/articles/cvg92y1wzn8o
1•epestr•1h ago•0 comments

Destiny Installers Ds-TV installers

https://destinyinstallers.co.za/
1•takundagava•1h ago•1 comments

NYTimes opinion article proposes default as a way to deal with US National debt

https://www.nytimes.com/2026/08/22/opinion/us-debt-40-trillion.html
2•killingtime74•1h ago•1 comments

Show HN: SpotWarp – Zero-loss failover & backup for Spot GPUs

https://github.com/enplabs/spotwarp
1•choi5844•1h ago•0 comments

How Big Tech Captured American Schools

https://www.nytimes.com/2026/08/23/business/schools-big-tech-google-microsoft.html
3•sbulaev•1h ago•2 comments

Iranian hackers shut down UK power plant for 4 days

https://www.telegraph.co.uk/news/2026/08/22/iranian-hackers-shut-down-uk-power-plant/
2•giuliomagnifico•1h ago•0 comments

I gave Qwen 3.8 27B a reverse-engineering job and it finished in 30 minutes

https://www.xda-developers.com/qwen-3-8-27b-reverse-engineering-job-frontier-model/
3•raybb•1h ago•0 comments

I Made the First "Link Compressor"

https://www.youtube.com/watch?v=TOr1Vvji6jA
1•conferza•1h ago•0 comments

25 Years of Mixxx Intergalactic DJ Contest

https://mixxx.org/news/2026-08-23-25_years_of_mixxx_dj_contest/
1•SamWhited•1h ago•0 comments

What if coding agents didn't have to read code?

https://benzi.fly.dev/about
2•showhz•1h ago•1 comments

AI Writing Without the Slop

https://sfactory.dev
1•jasfi•1h 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/