frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Oops, Should've Thought of That

https://blog.jim-nielsen.com/2026/oops-shouldve-thought-of-that/
1•Brajeshwar•1m ago•0 comments

Best Enterprise AI Gateway for Scalability and Cost Control

https://medium.com/@sebuzdugan/best-enterprise-ai-gateway-for-scalability-and-cost-control-837680...
1•sebuzdugan•4m ago•0 comments

Option Prices Imply Little Will Happen This Coming Month

https://www.emergingtrajectories.com/lh/cboe-indices-too-calm/
1•cl42•4m ago•0 comments

Self-Hosted Sandbox for Coding Agents

https://medium.com/@Koukyosyumei/self-hosted-sandbox-for-coding-agents-bf1f16c9144e
1•syumei•4m ago•0 comments

Is Europe safer than America?

https://www.economist.com/graphic-detail/2026/08/09/is-europe-safer-than-america
1•alphabetatango•6m ago•1 comments

Which countries have passed peak population, and when will the rest do?

https://ourworldindata.org/which-countries-have-already-passed-peak-population-and-when-will-the-...
1•alphabetatango•8m ago•0 comments

Show HN: Smplkit – feature flags, remote config, dynamic log levels – solo dev

https://www.smplkit.com/
1•mike-gorman•12m ago•0 comments

Kickstart Exchange

https://exchange.kickstart.tools/
2•wrxd•13m ago•0 comments

Netlify is building its own Git platform

https://www.netlify.com/blog/netlify-source-with-netlify-cto-dana-lawson/
3•serhalp•13m ago•0 comments

The Secret Word Game Bank of America's CEO Plays with Wall Street

https://www.wsj.com/finance/banking/the-secret-word-game-bank-of-americas-ceo-plays-with-wall-str...
1•gmays•14m ago•0 comments

Modular Cognitive Architecture Emerges in Large Language Models

https://arxiv.org/abs/2608.13567
1•Brajeshwar•16m ago•0 comments

Show HN: Convert Documents to Markdown

https://insanai.github.io/zenfmt/
1•vikrantrathore•16m ago•0 comments

Future of the Brain: Dr. Shulgin, Dr. Koch, Dr. Churchland (2005) [video]

https://www.youtube.com/watch?v=Lf0YfMX_MFk
1•binyu•17m ago•0 comments

Show HN: A distributed experiment in structured prime search

https://github.com/max-russo-com/max-prime-challenge
1•max-russo•17m ago•1 comments

Spain extends Almaraz nuclear plant operations through 2030

https://www.reuters.com/business/energy/spain-extends-almaraz-nuclear-plant-operations-through-20...
1•mpweiher•17m ago•0 comments

Modjo's "Lady": Memories of the Video

https://francoisnemeta.wordpress.com/2016/06/29/modjo-lady-hear-me-tonight-the-story/
1•Michelangelo11•17m ago•0 comments

Exercises Physical Therapists Wish Everyone Did to Age Well

https://www.nytimes.com/2026/08/15/well/move/exercises-physical-therapists-longevity.html
1•whack•19m ago•0 comments

Exclusive model of Ferrari's first electric car, Luce, sells for $40M

https://www.cnn.com/2026/08/17/cars/ferrari-electric-luce-record-sale-intl-scli
1•thm•19m ago•1 comments

New weekly injection offers diabetics alternative to daily insulin shots

https://www.washingtonpost.com/health/2026/08/16/new-weekly-injection-offers-diabetics-alternativ...
1•bookofjoe•20m ago•1 comments

Autonomous Buying of Experiment Equipment

https://chillphysicsenjoyer.substack.com/p/autonomous-buying-of-experiment-equipment
1•surprisetalk•20m ago•0 comments

Ubuntu is growing faster on Windows 11 than on native Linux PCs, says Canonical

https://www.windowslatest.com/2026/08/16/ubuntu-is-growing-faster-on-windows-11-than-on-native-li...
3•CoolCold•22m ago•3 comments

The Great Lock in of 2026

https://www.punctr.art/lock-in/
1•speckx•25m ago•0 comments

ZX Spectrum System Tour: Memory Mapping

https://bumbershootsoft.wordpress.com/2026/08/15/zx-spectrum-system-tour-memory-mapping/
2•ibobev•25m ago•0 comments

Thumbnail Decoding Challenge

https://www.colino.net/wordpress/archives/2026/08/16/thumbnail-decoding-challenge/
1•ibobev•25m ago•0 comments

MALDA – a language where LLM prompts and tools are syntax

https://github.com/amaldini/maldalang
2•amaldini•25m ago•0 comments

The History of Swinth

https://www.goto10retro.com/p/the-history-of-swinth
1•ibobev•25m ago•0 comments

Satellite operators are in panic mode due to a worsening launch crisis

https://arstechnica.com/space/2026/08/theres-a-huge-launch-crunch-right-now-and-it-will-probably-...
2•ryzvonusef•26m ago•1 comments

346 of 1600 new TLDs coming revealed

https://namedesk.app/tlds
2•zeppelin_7•27m ago•1 comments

Show HN: Moba Go – Go with alternating long thinks and rapid bursts

https://go.danieltan.omg.lol
1•danieltanfh95•28m ago•1 comments

The outstanding engineer who wanted to become a mediocre manager

https://maroun-baydoun.com/blog/from-outstanding-engineer-to-mediocre-manager/
1•marounbaydoun•29m 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/