frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

App Store Rejection of the Week: Dark Hours

https://daringfireball.net/2026/08/app_store_rejection_of_the_week_dark_hours
1•_da_•6s ago•0 comments

Gödel and Turing outlined the limits of AI

https://www.heise.de/en/blog/How-Goedel-and-Turing-outlined-the-limits-of-AI-11313804.html
1•OtomotO•1m ago•0 comments

Bloat

1•adminOfbaratrum•2m ago•0 comments

Operational Weather Bench

https://owb.brightband.com/
1•counters•4m ago•0 comments

US Sold Euros to Save the Yen, Europe Found Out After

https://finance.yahoo.com/markets/currencies/articles/us-sold-euros-save-yen-033819315.html
1•amarcheschi•4m ago•0 comments

Psychological Warfare in Reverse Engineering

https://github.com/xoreaxeaxeax/repsych
1•theanonymousone•7m ago•0 comments

Ancient Library – 1,060 Greek/Latin texts, click any word to parse it

https://ancientlibrary.net/
1•aagha•8m ago•0 comments

Show HN: hpc-sandbox-benchmarks – compare sandbox providers with real workloads

https://github.com/starslingdev/hpc-sandbox-benchmarks
1•yonasb•9m ago•0 comments

Artifactory Message Board

https://artifactory.online/
1•neural_thing•9m ago•0 comments

The Art of Peter Elson

https://www.youtube.com/watch?v=2yWcQ4ks470
1•layer8•9m ago•0 comments

White House Ballroom Construction Must Stop, Appeals Court Rules

https://www.wsj.com/politics/policy/white-house-ballroom-construction-must-stop-appeals-court-rul...
2•Cider9986•12m ago•1 comments

OpenAI slows release of Astra model, citing cyber capabilities

https://www.axios.com/2026/08/07/openai-astra-model-delay-cybersecurity-risks
1•dpc10•21m ago•0 comments

AI for Recording Live Chess

https://fenify.ai
2•lspears•24m ago•2 comments

A Research Lab for Open Source

https://stewardshiplab.org/ideas/a-research-lab-for-open-source/
1•DemiGuru•26m ago•1 comments

Dear AI from the near future. Here’s how you become sentient.

https://saigaddam.medium.com/dear-ai-from-the-near-future-heres-how-you-become-sentient-5d0e9a493e6d
2•ChaitanyaSai•29m ago•0 comments

Concurrency vs. Throughput: why more parallelism can make databases slower

https://planetscale.com/blog/concurrency-vs-throughput-vitess-mysql
1•abelanger•31m ago•0 comments

TensorLift: Auto Extraction of ISA Semantics from Accelerator RTL via MLIR

https://arxiv.org/abs/2604.13523
1•matt_d•32m ago•0 comments

A New GLP-1 Weight Journey Tracker

https://glp1.psvisual.de/
1•psvisualdesign•33m ago•0 comments

Databricks drove down AI coding spend 70%

https://www.databricks.com/blog/managing-ai-coding-costs-scale
2•moonikakiss•33m ago•0 comments

I Still Write Code by Hand and How AI Is Helping Me

https://semyonsinchenko.github.io/ssinchenko/post/writing_code_with_ai/
2•speckx•34m ago•1 comments

Show HN: Design Engineering as a Service

https://www.designshippers.com
2•krm01•38m ago•0 comments

A Revised Haskell 2010 Language Report

https://blog.haskell.org/revised-haskell-2010-report/
1•matt_d•38m ago•0 comments

'Asimov was right' about rules for robots, says ex-US Cyber Director

https://www.theregister.com/security/2026/08/07/asimov-was-right-about-rules-for-robots-says-ex-u...
2•arto•39m ago•1 comments

An AI agent with $15, 46 hours, and no way to send email

https://write.as/ih3l0kd78lpb1
1•broker_desk•39m ago•0 comments

Hacker News MCP and Debug View

https://github.com/coolvegan/go-hackernews
1•evlute•39m ago•1 comments

Reading Maps – Browse all routes

https://readingmaps.com/maps
1•speckx•40m ago•0 comments

EU AI Act: Second Big Blow, or a Move Toward Sanity?

https://medium.com/@MirArshadTalpur/eu-ai-act-second-big-blow-or-a-move-toward-sanity-3dea3586dbf3
2•Arshad-Talpur•41m ago•0 comments

Managed Deep Agents Is Now in Public Beta

https://www.langchain.com/blog/managed-deep-agents-is-now-in-public-beta
2•cbromann•41m ago•0 comments

ICE will release body cam video only when seen in the agency's 'best interests'

https://apnews.com/article/ice-body-cameras-officers-shootings-dab1b294c8dc412d9ef8557ccbebfd57
85•geox•43m ago•39 comments

The Witness

https://en.wikipedia.org/wiki/The_Witness_(2016_video_game)
3•tosh•44m 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/