frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Euler's Eyes

https://valeman.medium.com/eulers-eyes-14dcad8fe694
1•ibobev•37s ago•0 comments

Engagement Speak is the hen-house with a growth chart attached

https://notsocommonthoughts.com/blog/engagement-speak/
1•kohlhofer•47s ago•1 comments

Virus-Like 'Jumping Genes' Became Our Partners in Evolution

https://www.quantamagazine.org/how-virus-like-jumping-genes-became-our-partners-in-evolution-2026...
1•ibobev•1m ago•0 comments

Biology Might Not Be Quantum, but Its Math Is Quantumlike

https://www.quantamagazine.org/biology-might-not-be-quantum-but-its-math-is-quantumlike-20260923/
1•ibobev•1m ago•0 comments

Code Critique: Intent, Drift, and Spotlight for AI-Generated Diffs at Scale

https://arxiv.org/abs/2607.29516
1•raahelb•1m ago•0 comments

Owners mourn spoiled food after firmware update bricks Samsung smart fridges

https://arstechnica.com/gadgets/2026/09/owners-mourn-spoiled-food-after-firmware-update-bricks-sa...
1•healsdata•1m ago•0 comments

Opaquer .NET Obfuscator

https://opaquer.net/
1•Rustemsoft•4m ago•0 comments

Show HN: AgentRun: DSL to turn agents into Workflows

https://github.com/Parcha-ai/agentrun
3•miguelrios•4m ago•0 comments

VSArena – The official open browser benchmark for embodied AI

https://vsarena.vercel.app
1•AranKair•5m ago•0 comments

Earth's magnetic field alters lifespans of fruit flies in surprising ways

https://www.404media.co/earth-magnetic-field-effects-on-aging-study/
1•anigbrowl•7m ago•0 comments

Designing a domain-specific research harness

https://sparsethought.com/2026/09/23/how-to-design-the-right-domain-specific-harness/
1•galsapir•11m ago•0 comments

"Good" AI

https://thoughts.wyounas.com/p/what-does-good-ai-mean
2•simplegeek•12m ago•1 comments

GoAccess – real-time web log analyzer

https://github.com/allinurl/goaccess
1•nobody42•13m ago•0 comments

Nuvio – Open-Source Alternative to Netflix for Your Own Media Sources

https://digitalescapetools.com/tools/nuvio.html
2•xabd•13m ago•0 comments

Algorithms of Isolation

https://boris.schapira.dev/notes/2026-09-algorithms-of-isolation/
2•speckx•14m ago•0 comments

Support for Local AI Models in the Antigravity SDK

https://developers.googleblog.com/introducing-support-for-local-ai-models-in-the-antigravity-sdk/
1•theanonymousone•14m ago•0 comments

Anna's Archive 502

https://annas-archive.gl
2•figbert•15m ago•0 comments

Show HN: I built a Bitcoin full node from scratch in Rust

https://github.com/realtonypark/mini-bitcoin
1•realtonypark•17m ago•0 comments

Senate Hearing on Flock Cameras [live]

https://www.youtube.com/watch?v=klE498xFjOY
3•Cider9986•18m ago•0 comments

Xilinx

https://www.xilinx.com/.html
1•MaxBareiss•19m ago•1 comments

So You Want to Build Your Own Data Center

https://blog.railway.com/p/data-center-build-part-one
1•gk1•19m ago•0 comments

Show HN: Suparelay – Call any phone in the world from a browser tab

https://suparelay.app
1•azyc•23m ago•0 comments

How we made claude.ai 3x faster in two weeks

https://claude.dev/blog/how-we-made-claude-ai-faster/
22•matthieu_bl•23m ago•2 comments

Show HN: I made a free and open source Muse/Instinct

https://github.com/jayzalowitz/skytwin
1•jayzalowitz•24m ago•0 comments

Show HN: Ceptile AI Search platform which combines web results with AI chat

https://www.ceptile.com/
1•ShauryaAgarwalr•24m ago•0 comments

Toys 'R' Us is opening 120 new stores as grownup collectors fuel toy sales

https://www.nbcnews.com/business/consumer/toys-r-us-opening-120-new-stores-rcna598543
1•bko•26m ago•1 comments

Stop Wasting Time. Learn Agentic RAG Patterns

https://medium.com/@NikoZero11/rag-is-easy-until-the-questions-stop-being-easy-a76186e11394
1•Natashiiy•27m ago•0 comments

MiMo-V3 is getting a new architecture. The core of it, HySparse2, is out today

https://twitter.com/_LuoFuli/status/2102766365190901957
1•ksec•28m ago•0 comments

Beyond Images: Bringing Rust Brotli to Edge Network Stack

https://microsoftedge.github.io/edgevr/posts/Beyond-Images-Bringing-Rust-Brotli-to-Edge-Network-S...
1•wsxarcher•31m ago•0 comments

Navigation with only addition, subtraction, and tables

https://www.johndcook.com/blog/2026/09/23/navigation-minimum/
2•ibobev•31m 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/