frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

TI-74 Basicalc

https://en.wikipedia.org/wiki/TI-74
1•rbc•38s ago•1 comments

Grand Theft Auto VI: An Extended Look [video]

https://www.youtube.com/watch?v=tJbzMqJGH4k
1•piotrgrabowski•56s ago•0 comments

Fractured Apps

https://medium.com/@kelseyhightower/12-fractured-apps-1080c73d481c
1•Brysonbw•9m ago•0 comments

Awareness Local: local-first memory for AI coding agents (96% R5 on LongMemEval)

https://github.com/everest-an/Awareness-Market
1•everestawarenes•10m ago•0 comments

The "I don't know, Claude wrote this" pandemic

https://www.manager.dev/newsletter/the-i-don-t-know-claude-wrote-this-pandemic
1•fagnerbrack•11m ago•0 comments

Show HN: Lightweight reimplementation of YaCy peer as small Go services

https://github.com/nikitakarpei/my-yacy-node
1•nikitakarpei•14m ago•0 comments

Ego Blockchain

https://egoblockchain.com/
2•artitmuhaxhiri•15m ago•0 comments

Sandboxing Coding Agents

https://micahflee.com/sandboxing-coding-agents/
2•jbegley•20m ago•0 comments

Lenovo XClarity Administrator in FreeBSD Bhyve VM

https://vermaden.wordpress.com/2026/08/28/lenovo-xclarity-administrator-in-freebsd-bhyve-vm/
1•vermaden•22m ago•0 comments

They confided in ChatGPT. Their secrets ended up in court.

https://www.washingtonpost.com/technology/2026/08/27/chatgpt-chats-are-being-swept-into-civil-cri...
1•bookofjoe•23m ago•1 comments

Heaven

2•artvogel•24m ago•0 comments

Show HN: Marsbase – an interactive map of fictional Mars outposts

https://marsbase.io/
1•si_164•24m ago•0 comments

WindFoil – algorithm for computing winding and anti-aliasing of 2D vector shapes

https://github.com/texel-org/windfoil
2•coffeeaddict1•35m ago•0 comments

Earth's mysterious 'hum' points to the sound of waves crashing across the world

https://www.rnz.co.nz/news/world/1160121/earth-s-mysterious-hum-points-to-the-sound-of-waves-cras...
3•billybuckwheat•37m ago•0 comments

Show HN: Risk of Train – a 1D roguelike drawn in one terminal font

https://wookinarium.itch.io/risk-of-train?password=wookamegabong
1•devenvdev•38m ago•0 comments

The Library of Lost Maps

https://magazine.ucl.ac.uk/autumn-2025/portico-magazine-autumn-2025-ucl/features/the-library-of-l...
1•emot•38m ago•0 comments

Man builds supersonic trebuchet in his backyard

https://www.popsci.com/technology/supersonic-trebuchet-video/
2•_josh_meyer_•39m ago•1 comments

The everything theory of mass transit

https://worksinprogress.co/issue/the-everything-theory-of-mass-transit/
2•littlexsparkee•40m ago•0 comments

Show HN: Karaokeo – a karaoke party app with no user accounts at all

https://karaokeo.com
2•ricardoaponte•40m ago•0 comments

Protestant Accountability Tracking Database

https://protestantaccountability.org/purpose/
1•achristmascarl•44m ago•0 comments

Wheel of Jira

https://markwbrown.github.io/wheel-of-jira/
1•sudoaptgetinsta•47m ago•0 comments

Yet Another AI Builder But

https://apps.apple.com/us/app/wanno-ai-web-app-builder/id6795772860
1•federiconbo•49m ago•0 comments

Why robotic pizza makers are failing

https://www.bbc.com/news/articles/czxq0wgkkdjo
4•mauvehaus•50m ago•0 comments

PostgreSQL 17 Logical Failover Slots and CDC

https://www.artie.com/blogs/postgresql-17-logical-failover-slots-cdc
1•j-cheong•50m ago•0 comments

Discover how much money you're losing if you don't optimize trial conversions

https://tripo.dimarket.biz
1•BambaDev•52m ago•1 comments

How do I remove the controls from a school Chromebook

3•Jay_bird•55m ago•1 comments

The Easy Part of Building Is Over

https://debarshibasak.github.io/readables/blogs/building-is-going-to-be-more-difficult
5•debarshri•57m ago•2 comments

Vibe Adventures Launches Dynamic Packaging Platform for Multi-Day Tours

https://www.tourradar.com/pr/tourradar-vibe-adventures-integration
3•Alex_Veka•58m ago•0 comments

Show HN: Caravan, a flexible TypeScript-first logger for JavaScript applications

https://github.com/carlos-menezes/caravan
4•carlos-menezes•1h ago•0 comments

Terminal-Bench-Science: Evaluating AI agents on scientific research workflows

https://www.terminal-bench-science.ai/announcement
13•matt_d•1h ago•3 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/