frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Risks of Platform Control over Historical Memory

https://www.lawfaremedia.org/article/the-hidden-risks-of-platform-control-over-historical-memory
1•hn_acker•26s ago•0 comments

Dell says PC sales flat despite slow Windows 11 transition

https://www.theregister.com/2025/11/26/dell_q3_2026/
1•mikece•2m ago•0 comments

Load ZX Spectrum – first Museum dedicated to our first personal computer

https://loadzx.com/en/
1•elvis70•3m ago•0 comments

Show HN: A Real-World Lesson – The Missing DMARC Configuration

https://www.defendflow.xyz/blog/dmarc-configuration-lesson
1•riyao_lin•3m ago•0 comments

China's top memory chip maker YMTC to build 3rd plant, eyeing 2027 start

https://asia.nikkei.com/business/tech/semiconductors/china-s-top-memory-chip-maker-ymtc-to-build-...
1•walterbell•3m ago•0 comments

If Quantum Computing Is Solving Impossible Questions, How Do We Know It's Right

https://scitechdaily.com/if-quantum-computing-is-solving-impossible-questions-how-do-we-know-they...
1•AIBytes•3m ago•0 comments

ST-506/ST-412

https://en.wikipedia.org/wiki/ST-506/ST-412
1•mosura•4m ago•0 comments

Oncle Bob: static sites for everyone

https://onclebob.com/
2•ptramo•7m ago•1 comments

The Zone [video]

https://vimeo.com/40260708
1•limbicsystem•7m ago•0 comments

Show HN: Just-Claude: Sync just recipes with Claude Skills

https://github.com/tombedor/just-claude
1•jjfoooo4•7m ago•0 comments

The State of College Hackathons

https://dev.shetty.me/blog/the-state-of-college-hackathons?v=2
1•deveesh_shetty•8m ago•0 comments

What does it mean to understand language?

https://arxiv.org/abs/2511.19757
1•AIBytes•9m ago•0 comments

Edge Requests on Vercel? Essentially they don't have a free tier

https://sometechblog.com/posts/no-free-tier-on-vercel/
1•l5870uoo9y•9m ago•0 comments

AI Propels Dell's Datacenter Top Line – Bottom Line Is a Challenge

https://www.nextplatform.com/2025/11/26/ai-propels-dells-datacenter-top-line-bottom-line-is-a-cha...
1•rbanffy•10m ago•0 comments

Epic Games Outage

https://status.epicgames.com
1•HughParry•11m ago•0 comments

Researchers fine tune their models to search their own parameters

https://www.deeplearning.ai/the-batch/researchers-fine-tune-models-to-search-their-own-parameters...
2•imjacobclark•13m ago•0 comments

Slop Evader – Search the Internet Before AI

https://tegabrain.com/Slop-Evader
3•HotGarbage•14m ago•0 comments

No sales after midnight: The impact of business curfew on crime in tenderloin

https://link.springer.com/article/10.1057/s41284-025-00517-w
1•apwheele•15m ago•0 comments

Dark Matter: A Worldwide Search – symmetry magazine

https://www.symmetrymagazine.org/article/dark-matter-a-worldwide-search?language_content_entity=und
3•rbanffy•15m ago•0 comments

The contradiction at the heart of the trillion-dollar AI race

https://www.bbc.com/news/articles/cvgvynlxqdyo
4•billybuckwheat•15m ago•0 comments

Russia's Soyuz 5 will soon come alive. But will anyone want to fly on it?

https://arstechnica.com/space/2025/11/after-a-decade-russias-native-built-soyuz-5-rocket-finally-...
2•rbanffy•17m ago•0 comments

36 Dead and other trapped as fire continues to burn through Hong Kong high-rise

https://www.cnn.com/world/live-news/hong-kong-tai-po-buildings-fire-11-26-25
3•donsupreme•18m ago•1 comments

The MUD Client Protocol (MCP)

https://www.moo.mud.org/mcp/
1•jal278•19m ago•0 comments

Show HN: EnvHush – share .env files securely (E2E-encrypted, self-destructing)

https://www.envhush.com/
1•madsterdev•19m ago•0 comments

China Has Three Reusable Rockets Ready for Their Debut Flights

https://www.china-in-space.com/p/china-has-three-reusable-rockets
5•speckx•20m ago•0 comments

XFT (cross fault tolerance) and XPaxos: practical fault tolerance beyond crashes [pdf]

https://www.usenix.org/system/files/conference/osdi16/osdi16-liu.pdf
2•fanf2•24m ago•0 comments

Nachphlburna

https://blog.cloudflare.com/welcome-to-connectivity-cloud/
2•Nachphlburna•25m ago•0 comments

Universal Consciousness as Foundational Field

https://pubs.aip.org/aip/adv/article/15/11/115319/3372193/Universal-consciousness-as-foundational...
3•theoa•27m ago•1 comments

ADHD diagnoses are growing. What's going on?

https://www.nature.com/articles/d41586-025-03855-2
2•bikenaga•27m ago•0 comments

Opting Out of Black Friday

https://blog.zgp.org/opting-out-of-black-friday/
1•speckx•28m 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/