frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Hunter syndrome: Boy amazes doctors after world-first gene therapy

https://www.bbc.co.uk/news/articles/c5y0y56x6veo
1•lkramer•4m ago•0 comments

AltSendme: Another Alternative to MAgic Wormhole?

https://github.com/tonyantony300/alt-sendme
1•nhatcher•11m ago•0 comments

Budget BB Creams in India for Everyday Use

1•Hackbreaker•11m ago•0 comments

Typing an AI prompt is not 'active' music creation

https://www.theverge.com/report/825141/sunos-ceo-ai-text-prompt-really-active-music-creation
2•JeanKage•14m ago•0 comments

The future LED light both illuminates and communicates

https://www.6gflagship.com/news/future-led-light-illuminates-and-communicates/
1•JeanKage•17m ago•0 comments

Show HN: Deploy a Production Webhook Delivery System in 5 Minutes

https://codehooks.io/blog/build-webhook-delivery-system-5-minutes-codehooks-io
3•bjabrboe1984•18m ago•0 comments

A Tsunami of Cogs

https://betterthanrandom.substack.com/p/a-tsunami-of-cogs
3•weltview•18m ago•0 comments

I've built human-first alternative to 11x

https://dealmayker.com/alternative/11x
1•aleksam•19m ago•0 comments

ASML allegedly offered to spy on China for the US

https://www.tomshardware.com/tech-industry/big-tech/asml-allegedly-offered-to-spy-on-china-for-th...
4•dataflow•20m ago•0 comments

Pig's bacon was delicious. But she's alive and well

https://grist.org/climate-energy/this-pigs-bacon-was-delicious-but-shes-alive-and-well/
3•JeanKage•21m ago•1 comments

'Stone-cold killers': New Zealand to eradicate feral cats by 2050

https://www.theguardian.com/world/2025/nov/24/new-zealand-to-eradicate-feral-cats-by-2050
1•defrost•21m ago•0 comments

Google Workspace Chat is down

https://www.google.com/appsstatus/dashboard/incidents/KZuQxLyBKvPD1zS6sxVA
3•yla92•25m ago•0 comments

A new week is here – and at ConnectApp.inc

1•tobinews•25m ago•0 comments

Posthog NPM packages are compromised

https://twitter.com/posthog/status/1992894777524674642
3•h1fra•28m ago•0 comments

Great SEO starts with clarity – we craft every Keyword Phrase with that purpose

https://youtu.be/Y7dKocYIZJQ?si
1•RIGHTSEODIGITAL•32m ago•0 comments

Differentiable max-SAT Solver for real world optimization problems

https://navokoj.shunyabar.foo/
3•stuehieyr•33m ago•2 comments

Norway's wealth tax trades millionaires for equality

https://www.reuters.com/business/norways-wealth-tax-trades-millionaires-equality-2025-11-24/
5•praptak•34m ago•0 comments

A fast EDN (Extensible Data Notation) reader written in C11 with SIMD boost

https://github.com/DotFox/edn.c
1•delaguardo•36m ago•0 comments

EU AI Act: Pre-Market Rules Don't Fit Runtime AI Agents

https://www.europeanlawblog.eu/pub/dq249o3c/release/1
1•lloydjones•36m ago•0 comments

Show HN: Flag Waver, create and simulate realistic waving flags online

https://flagwaver.org
2•star98•38m ago•0 comments

Show HN: EphemeralNet – Secure C++ P2P infrastructure for hostile networks

https://eph.shardian.com/
1•cpp_enjoyer•39m ago•2 comments

Community Appeal: Help Validate PhaseFlip QEC on Real Hardware

https://github.com/shemshallah/phaseflip-qec
1•shemshallah•40m ago•1 comments

Asianometry: Can Superconductors Put an AI Data Center into a Shoebox? [video]

https://www.youtube.com/watch?v=mfk0vTe46ds
1•Klaster_1•40m ago•0 comments

Supabase Is Down?

https://status.supabase.com
5•mercurialsolo•41m ago•3 comments

WIP – Version control for AI agents. Diffs, rollback, sandbox

https://twitter.com/_NilsJacobsen/status/1992890927778582868
2•NilsJacobsen•45m ago•0 comments

Show HN: Volume Shader – GPU Performance Test with 3D Visualization

https://volume-shader.com
2•star98•45m ago•0 comments

Libfive: Solid Modelling with Functional Representations

https://libfive.com/
1•fanf2•46m ago•0 comments

Show HN: Smart Router Kit – Prevent "Garbage in" for RAG Using Pydantic and LLMs

https://github.com/2dogsandanerd/smart-router-kit
1•2dogsanerd•47m ago•0 comments

Fifty Shades of OOP

https://lesleylai.info/en/fifty_shades_of_oop/
2•todsacerdoti•47m ago•0 comments

Now witness the power of this operational Fediverse

https://shkspr.mobi/blog/2025/11/now-witness-the-power-of-this-fully-operational-fediverse/
3•cheeaun•48m ago•0 comments
Open in hackernews

Automatically add missing "async/await" keywords to your TypeScript code

https://github.com/stanNthe5/typescript-autoawait
7•theThree•6mo ago

Comments

bastawhiz•6mo ago
Is this a problem that people actually have?
xeromal•6mo ago
Fun side project man!
primitivesuave•6mo 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•6mo 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•6mo ago
You can still control it by adding "//no-await". In fact, the "//no-await" makes me feel more clear.
nextweek2•6mo 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•6mo ago
It should be noted that there is already a lint rule for this: https://typescript-eslint.io/rules/no-floating-promises/