frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Is Claude opus 4.5 any good?

https://www.aithings.dev/blog/is-claude-opus-45-good
2•irere123•6m ago•1 comments

Made a simple pastebin – feedback appreciated

https://fourbin.onrender.com/
1•redemption•7m ago•0 comments

Virtual ARchaeological Computer EMulator – cycle exact old x86 PC emulator

https://github.com/VARCem/VARCem
2•peter_d_sherman•8m ago•0 comments

Show HN: AI agent that rotates your passwords (browser-use and zero-knowledge)

https://thepassword.app/
2•thepasswordapp•11m ago•0 comments

Reduce Cron Email Noise with Logdiff

https://chapati.systems/reduce-cron-email-noise-with-logdiff/
2•Wronnay•15m ago•0 comments

DeepSeekMath-V2: Towards Self-Verifiable Mathematical Reasoning

https://github.com/deepseek-ai/DeepSeek-Math-V2
2•maxloh•15m ago•0 comments

Anime event in Shanghai canceled after singer's show interrupted

https://www.japantimes.co.jp/news/2025/11/29/japan/shanghai-japan-anime-event-cancel/
1•DustinEchoes•18m ago•0 comments

Unconditional self-acceptance is impossible

https://www.technotheoria.org/p/unconditional-self-acceptance-is
1•paulpauper•18m ago•0 comments

A Different Type of Dementia Is Changing What's Known About Cognitive Decline

https://www.nytimes.com/2025/11/28/health/late-dementia-alzheimers.html
1•mitchbob•21m ago•1 comments

Why Doesn't Anyone Monitor AI Consciousness? [video]

https://youtu.be/S8ttAlUXbc0
1•indigodaddy•22m ago•0 comments

Colleges Are Preparing to Self-Lobotomize

https://www.theatlantic.com/ideas/2025/11/colleges-ai-education-students/685039/
2•JumpCrisscross•25m ago•1 comments

We're learning more about what Vitamin D does to our bodies

https://www.technologyreview.com/2025/11/21/1128206/vitamin-d-bodies-bone-health-immune/
5•Brajeshwar•27m ago•0 comments

A real-time stream of anonymous human thoughts

https://cloudly.cc
2•98469056•27m ago•0 comments

Inside the deal-making power of the F-35: A weapon, a network, strategic lock-in

https://timesofindia.indiatimes.com/world/us/inside-the-deal-making-power-of-the-f-35-a-weapon-a-...
1•rustoo•27m ago•0 comments

UN Convention Against Torture–Findings Re Albania, Argentina, Bahrain and Israel

https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/SessionDetails1.aspx?SessionID=2844&L...
1•treetalker•27m ago•1 comments

How and Why You Should Cut Your Social Media Usage

https://www.samstack.io/p/how-and-why-you-should-cut-your-social
1•paulpauper•28m ago•0 comments

N.Y. Law Could Set Stage for A.I. Regulation's Next 'Big Battleground'

https://www.nytimes.com/2025/11/29/nyregion/personalized-surveillance-pricing-ai-new-york.html
1•mitchbob•29m ago•1 comments

Experts warn of growing risk of 'ChatGPT psychosis' among AI chatbot users

https://techoreon.com/ai-chatgpt-psychosis-delusion-among-chatbot-users-experts/
3•ashishgupta2209•29m ago•0 comments

Auditing Large-Scale GCP Environments with InSpec/CINC

https://www.alexbilz.com/post/2025-11-18-auditing-gcp-with-inspec/
1•ninefinger•30m ago•1 comments

I measure my cortisol from sweat using a hacked-together device

https://www.reddit.com/r/Biohackers/s/lSS8Z42oWq
2•hentrep•30m ago•0 comments

His Very Variousness: Benjamin Franklin's Experiments

https://www.lrb.co.uk/the-paper/v47/n22/ferdinand-mount/his-very-variousness
1•jger15•31m ago•0 comments

I used an algorithm to see every inch of my neighborhood

https://youtu.be/hjuu-w2sK2g
2•dbsdev•32m ago•0 comments

How much do I owe in taxes?

https://taxquarterly.com/
1•vetraxneo_apps•32m ago•2 comments

FAA issues airspace warning for the SVZM FIR

https://safeairspace.net/venezuela/
1•ByteBlaster•34m ago•0 comments

Openreview Statement Regarding API Security Incident

https://openreview.net/forum/user%7Cstatement_regarding_api_security_incident
1•sieste•38m ago•0 comments

Individual and well-being factors associated w chatbot usage: A 6-country study

https://journals.sagepub.com/doi/10.1177/02654075251392956
1•DrierCycle•38m ago•0 comments

I'm a Concert Pianist. This Is Why I Seek Imperfection.

https://www.nytimes.com/2025/11/29/opinion/pianist-music-performance-perfection.html
1•mitchbob•38m ago•1 comments

Schubfach: The smallest double-to-string implementation

https://vitaut.net/posts/2025/smallest-dtoa/
2•todsacerdoti•40m ago•0 comments

Setting a wallpaper with less than 250 Kb

https://www.lgfae.com/posts/2025-11-21-SettingAWallpaperWithLessThan250KB.html
1•todsacerdoti•42m ago•0 comments

Bikeshedding, or why I want to build a laptop

https://geohot.github.io//blog/jekyll/update/2025/11/29/bikeshedding-or-laptop.html
4•lairv•44m ago•1 comments
Open in hackernews

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

https://github.com/stanNthe5/typescript-autoawait
7•theThree•7mo 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/