frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Saudi Arabia bets on driverless trucks

https://en.majalla.com/node/332904/business-economy/bold-road-saudi-arabia-bets-driverless-trucks
1•Alien1Being•3m ago•0 comments

"We Have to Assume That the Internet Will Go Offline in the Next Few Years"

https://www.trendingtopics.eu/emad-mostaque-ai-internet-outlook-english/
1•gumby•10m ago•0 comments

WordStar 4.0 – the real 1987 word processor, in the browser

https://nampara-ai.github.io/wordstar/
1•Tomte•10m ago•0 comments

Project Zenith: The ready-to-code Windows experience on developer-class devices

https://blogs.windows.com/windowsdeveloper/2026/09/04/announcing-project-zenith-the-ready-to-code...
1•poisonborz•13m ago•0 comments

How Marine Rifle Squads Plan to Fight Future Wars Dominated by Drones

https://www.twz.com/sea/how-marine-rifle-squads-plan-to-fight-future-wars-dominated-by-drones
1•cisc•22m ago•0 comments

Low Interest Rates Ruined the Economy

https://www.oftwominds.com/blogaug26/powder-key-economy8-26.html
1•BerislavLopac•25m ago•0 comments

Bespoke: A Programming Language for People Who Say Please

https://blog.hofstede.it/bespoke-a-programming-language-for-people-who-say-please/
1•birdculture•27m ago•0 comments

Isthmus – a small Go trust-kernel for NanoClaw

https://github.com/prathish-ks/isthmus
1•sriyapaka•28m ago•0 comments

AI Chip Regulation Is Not a Dystopian Surveillance State

https://www.astralcodexten.com/p/ai-chip-regulation-is-not-a-dystopian
1•reasonableklout•31m ago•0 comments

How to evaluate LLMs before production

https://github.blog/ai-and-ml/llms/how-to-evaluate-llms-before-production/
1•officekamiya•33m ago•0 comments

I gave my AI agent a sleep cycle – it dreams about its errors and fixes them

https://github.com/openamer/openamer
1•openamer•34m ago•0 comments

Archive.org in need of large hard drives

https://mastodon.archive.org/@textfiles/117220856033120449
1•happosai•36m ago•0 comments

Show HN: Kaden – Linux Terminal where Ctrl+C copies

https://github.com/glitcher255/Kaden-Terminal
1•Glitcher255•40m ago•0 comments

Nimvarya – Let AI coding agents control Chrome without stealing focus

https://github.com/Basiliskin/nimvarya
1•dimitrykatz•40m ago•0 comments

Derick Nwasor, Nigeria – Just Add Water – Quantum Regenerative Fuelcell

https://africaprize.raeng.org.uk/2026-cohort/derick-nwasor/
1•thunderbong•42m ago•0 comments

The SimCity Planning Commission Handbook (2024)

https://www.thomas-huehn.com/simcity/
1•Tomte•43m ago•0 comments

From all-or-nothing to task-based OAuth consent

https://blog.cloudflare.com/task-based-oauth-consent/
1•officekamiya•49m ago•0 comments

Python sets and dictionaries can have quadratic-time performance

https://lemire.me/blog/2026/09/03/python-sets-and-dictionaries-can-have-quadratic-time-performance/
2•signa11•57m ago•1 comments

Handoru: AI customer conversation agents for service businesses

https://handoru.ai/
1•Zabrodsk•57m ago•1 comments

Knowing Where to Type 'Zero' (2015)

https://randomascii.wordpress.com/2015/01/19/knowing-where-to-type-zero/
2•signa11•57m ago•0 comments

Writing Docs in LLMese

https://passo.uno/write-docs-llms-language/
1•theletterf•1h ago•0 comments

AI Programming: A Layered Model

https://lemire.me/blog/2026/09/05/ai-programming-a-layered-model/
1•signa11•1h ago•0 comments

Play GTA III in the Browser

https://quenq.com/apps/vice-city-online/
2•rzk•1h ago•0 comments

Notey and Noisy: A Sound Science Mathemusical

https://malwebb.com/notnoi.html
1•_kb•1h ago•0 comments

Show HN: Blunderbase: A Personal Chess Database

https://github.com/philphilphil/blunderbase
1•philphilphil•1h ago•0 comments

Isar Aerospace reaches orbit and deploys payloads on second flight

https://isaraerospace.com/press/history-for-european-spaceflight-isar-aerospace-reaches-orbit-and...
6•mpweiher•1h ago•1 comments

An Open Letter to Bernie Sanders: Regulate AI's Dangers, Don't Ban Its Promise

https://www.unite.ai/an-open-letter-to-bernie-sanders-regulate-ais-dangers-dont-ban-its-promise/
1•50kIters•1h ago•0 comments

GPT-6 Astra Plays Portal

https://www.youtube.com/watch?v=g5u2y0BwRJ0
2•liminal-dev•1h ago•0 comments

"Catching Crumbs from the Table"

https://www.nature.com/articles/35014679
3•stefanpie•1h ago•0 comments

How to Name Things

https://kolemannix.com/blog/how-to-name-things/
1•theanonymousone•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/