frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: TripleFantasy Reconstructed Source Code

https://github.com/Sadpainy/TripleFantasy
1•CMDDestory•25s ago•0 comments

Timeline of Mathematics

https://mathigon.org/timeline
2•o4c•2m ago•0 comments

Autodafe VES: a free vintage emulator studio plugin based on MAME framework

https://synthanatomy.com/2026/09/autodafe-ves-a-free-vintage-emulator-studio-plugin.html
1•bane•5m ago•1 comments

We have a year to fix security everywhere

https://jyn.dev/a-year-to-fix-security/
2•saikatsg•7m ago•0 comments

A Modern Proxmox Docker Architecture with Disposable VMs, VirtIO-FS, and ZFS

https://du.nkel.dev/blog/2026-05-16_rootless_docker_virtiofs_proxmox/
1•Helmut10001•15m ago•0 comments

Cognition Has More Than One Shape: From AI to Synthetic Cognition

https://tvvocold.github.io/2026/09/08/cognition-has-more-than-one-shape.html
2•tvvocold•15m ago•0 comments

The VMs Powering Mobile Agents (Instinct, Claude Code)

https://rohanadwankar.github.io/posts/platforms.html
2•RohanAdwankar•19m ago•1 comments

Canada's counter-tariffs take effect on various US goods

https://www.france24.com/en/live-news/20260908-canada-s-counter-tariffs-take-effect-on-various-us...
2•geox•29m ago•0 comments

Bonds – AI messenger where group chats generate their own apps

https://apps.apple.com/us/app/bonds-the-smart-messenger/id6798100604
1•juanchoabdon1•30m ago•0 comments

RabbitMQ vs. Apache Kafka

https://www.rabbitmq.com/docs/compare/kafka
2•vinhnx•31m ago•0 comments

Evidence runtime for autonomous agent task management

https://grainulator.app
3•aid-ninja•31m ago•0 comments

Show HN: Manhattan Safety Atlas

https://manhattan-neighborhood-atlas.pplx.app/
1•tesseractinf•33m ago•0 comments

Shatranj

https://en.wikipedia.org/wiki/Shatranj
1•teleforce•34m ago•0 comments

Secret screening of Nathan Fielder's new Elizabeth Holmes documentary

https://www.latimes.com/entertainment-arts/movies/story/2026-09-07/nathan-fielder-elizabeth-holme...
1•aanet•34m ago•2 comments

Australia to opt out of social media algorithms, Albanese confirms

https://www.smh.com.au/politics/federal/australia-to-opt-out-of-social-media-algorithms-albanese-...
2•mrkpdl•35m ago•0 comments

Experience is becoming a higher priority for tech hiring

https://www.a16z.news/p/chart-of-the-week-experience-skills
2•deepmem•39m ago•0 comments

GifBook – turn any GIF into a printable flipbook (free)

https://www.mrbray.com/gifbook
1•mrbray•46m ago•1 comments

Uncensored Open-Weight Models: Redistribution as the Persistence Layer

https://arxiv.org/abs/2609.05241
1•sbulaev•48m ago•0 comments

Things to Do with Tailscale

https://toce.ch/101-things-to-do-with-tailscale/
2•cyb0rg0•48m ago•0 comments

Arm Mali G2-Ultra NX GPU: desktop-class mobile gameplay with AI-native graphics

https://newsroom.arm.com/blog/arm-mali-g2-ultra-nx-ai-native-mobile-graphics
10•Re-Tails•49m ago•3 comments

Why the Harness Matters More Than the Model [video]

https://www.youtube.com/watch?v=n9xKblqyQ28
3•mellosouls•51m ago•0 comments

Pope's Top US Cardinals Visit Silicon Valley, Warn Millions Will Lose Jobs

https://www.thelettersfromleo.com/p/pope-leo-xivs-top-us-cardinals-visit
2•MaxLeiter•55m ago•0 comments

Magnum Opus

https://nexum.fyi/
1•wbeebe•56m ago•1 comments

Sen. Kennedy rails against AI developers as 'high IQ stupid people'

https://www.politico.com/news/2026/09/06/kennedy-ai-developers-high-iq-stupid-people-01066756
1•apical_dendrite•57m ago•0 comments

Blast Radius 1.0

https://blastradius.dpdns.org/
1•codebyaditya•1h ago•0 comments

How the heart, lungs and brain work together to shape experience

https://medicalxpress.com/news/2026-09-heart-lungs-brain.html
1•mdp2021•1h ago•0 comments

Show HN: DragonRuby Game Toolkit Shaders (Hotloaded)

https://www.youtube.com/watch?v=Y7Oc2V5fDUc
1•amirrajan•1h ago•1 comments

I tested 10 model/harness combinations on the same Three.js task

https://alvins82.github.io/hangar-harness-model-tests/
6•alvins82•1h ago•0 comments

GamersNexus and LG: Or why rooting your TV is a bad idea

https://leaflet.pub/p/did:plc:yhgc5rlqhoezrx6fbawajxlh/3muwrqenzfk2n
2•drasticactions•1h ago•0 comments

Ask HN: Anyone else feeling uneasy with the latest developments in AI?

4•sensitivekt9q3•1h ago•6 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/