frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Each degree of warming could add a month of intolerable heat for 1B people

https://phys.org/news/2026-08-degree-month-intolerable-billion-people.html
1•geox•1m ago•0 comments

Operation Blue Skies: Reducing aviation climate impact with AI

https://blog.google/innovation-and-ai/models-and-research/google-research/blue-skies/
1•thm•3m ago•0 comments

Show HN: MCP-Proxy Add MCP support to any REST API – no code changes required

https://github.com/crhuber/mcp-proxy
1•cr_huber•7m ago•0 comments

Show HN: MyPdfly – 30 free PDF tools, no signup required

https://mypdfly.com
1•Tauseef199•8m ago•0 comments

Tell HN: Use AI to music score your books

1•arisAlexis•8m ago•0 comments

The Berlin Government has been Hacked

https://www.heistberlin.com/news/berlin-senate-government-hacked-cyberattack-bela/
4•dudefeliciano•9m ago•1 comments

Show HN: DynaJS – New JavaScript runtime with batteries included

https://github.com/corporatepiyush/dynajs
1•truth_seeker•9m ago•0 comments

Toxicity and Antisocial Behavior over User Lifetimes on Social Media (2024)

https://arxiv.org/abs/2407.09365
1•wslh•9m ago•0 comments

Job Ads Tell You What Employers Want, Not What You Want

https://julienreszka.com/blog/job-ads-tell-you-what-employers-want-not-what-you-want/
2•julienreszka•16m ago•0 comments

How Krackpot works: secp256k1, SHA-256 and RIPEMD-160 in WebGPU

https://krackpot.io/blog/how-it-works
2•svenfaw•17m ago•0 comments

Executable pseudocode for learning CS without syntax barriers

https://thaduscodelabs.com
2•thadusTeam•19m ago•0 comments

Anthropic's Annualized Revenue Tops $65B Before IPO

https://www.bloomberg.com/news/articles/2026-08-17/anthropic-revenue-run-rate-surpasses-65-billio...
2•johnbarron•19m ago•1 comments

So Long Relayd, and Thanks for All the Fish

https://btxx.org/posts/so-long-relayd/
3•bradley_taunt•20m ago•0 comments

Everybody Wants You to Win

https://web.navan.dev/posts/2026-07-15-everybody-wants-you-to-win.html
3•jger15•21m ago•0 comments

AI automation: Lock in payroll savings or reinvest capacity into growth

https://urnicus.com/blog/the-quiet-cost/
2•urnicus•24m ago•0 comments

Show HN: The Hacker News Puzzle

https://pzlgames.com/games/hackernews/
4•pompomsheep•25m ago•0 comments

Maiden voyage for India's first hydrogen train

https://www.chemistryworld.com/news/maiden-voyage-for-indias-first-hydrogen-train-signals-the-cou...
2•valeg•25m ago•0 comments

Show HN: Samuel, a Silly Speech Model

https://samuel.vvolhejn.com/
2•vvolhejn•26m ago•0 comments

Show HN: AnyCreature. making 3D creature by agent. harness by 3D assets pipeline

https://github.com/Ariescar/anyCreature
3•Ariescar•29m ago•0 comments

Google buys crashed airline Spirit's data at auction, because AI

https://www.theregister.com/ai-and-ml/2026/08/18/google-buys-crashed-airline-spirits-data-at-auct...
17•pseudolus•30m ago•2 comments

Native vLLM and ROCm 7.15 for RX 6000 (RDNA2) on Windows 11 – 26 Tflops FP16

https://github.com/sebastianmechno-sys/vllm-rocm-windows-rdna2
2•esseba-dev•31m ago•0 comments

MacBook Is Now an AI Workstation: Run Qwen 3.8 Locally

https://suyash-joshi.medium.com/your-macbook-is-now-an-ai-workstation-run-qwen-3-8-locally-d1e103...
4•suyash•33m ago•1 comments

Show HN: MeetMoves – video/GIF backgrounds for Google Meet, no OBS needed

https://chromewebstore.google.com/detail/meetmoves/pcihfjkbfcfademdaplkhmgngdlkfepg
3•amu4biz•36m ago•0 comments

KTransformers 0.7 Expands AVX-512 Support to Benefit AMD EPYC Servers

https://www.phoronix.com/news/KTransformers-0.7
2•rbanffy•48m ago•0 comments

Global collaboration group for people worldwide

4•jonahSong•1h ago•0 comments

An X Live Show for Indie Founders

https://x.com/jaimememb
2•Jaime_MB•1h ago•0 comments

Lisp Used in Nanotechnology [video]

https://www.youtube.com/watch?v=fytGL8vzGeQ
2•dipanshuhappy•1h ago•0 comments

The Case for Tri-State Dark Mode Toggles

https://www.bram.us/2026/08/18/the-case-for-tri-state-dark-mode-toggles/
2•cheeaun•1h ago•0 comments

How the Dutch Police Clung to Predictive Policing for a Decade Without Evidence

https://algorithmwatch.org/en/dutch-police-cas-predictive-policing/
5•giuliomagnifico•1h ago•0 comments

Learning always pays dividends someday

https://ad4mou.com/posts/learning-pays-dividends
2•adamrjk•1h 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/