frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Why your speedometer is lying to you (in a good way)

https://sidecar.clutch.engineering/news/2025/11/22/Why-your-speedometer-is-lying-to-you/
1•featherless•2m ago•0 comments

A Detailed M&A Journey Selling My Company

https://blog.thefoundermanual.com/p/my-m-a-journey-selling-classhook
1•adeeb•7m ago•0 comments

Byju's founder to appeal U.S. court order to pay over $1B in bankruptcy case

https://techcrunch.com/2025/11/22/byjus-founder-to-appeal-u-s-court-order-to-pay-over-1b-in-bankr...
1•jimexp69•8m ago•0 comments

Serenity, Courage, Wisdom and AI

https://thehumanspirit.substack.com/p/serenity-courage-wisdom-and-ai
1•OgsyedIE•10m ago•0 comments

Show HN: Emoji Translator

https://emojitranslator.cc
1•HenryZheng99•14m ago•0 comments

Compute Forecast (AI 2027)

https://ai-2027.com/research/compute-forecast
1•jxmorris12•15m ago•0 comments

Demis Hassabis Reveals Google's 'Secret' Behind Benchmark-Topping Gemini 3

https://officechai.com/ai/demis-hassabis-reveals-googles-secret-behind-benchmark-topping-gemini-3/
1•salkahfi•15m ago•0 comments

New BoM Site Totalled $96M

https://www.smh.com.au/politics/federal/total-bill-for-bom-s-new-website-came-in-at-96-million-20...
1•razodactyl•20m ago•1 comments

Newest Starship booster is significantly damaged during testing

https://arstechnica.com/space/2025/11/newest-starship-booster-is-significantly-damaged-during-tes...
1•perihelions•20m ago•0 comments

Jeffrey Epstein's Inbox

https://epsteininbox.com/
1•hgarg•27m ago•1 comments

Show HN: I recreated fuse wallets app onboarding in SwiftUI and made it reusable

https://github.com/georgecartridge/FuseAppOnboarding
3•georgecartridge•34m ago•0 comments

Kids for cash scandal (2004-8, for-profit incarceration in PA)

https://www.youtube.com/watch?v=tyPGSJUw87I
3•burnt-resistor•35m ago•0 comments

Cara Menghubungi CS Garuda Indonesia

1•indahponsel•37m ago•3 comments

Global Insider Trading Network Charged W Securities Fraud AndMoney Laundering

https://www.justice.gov/usao-ma/pr/eight-members-global-insider-trading-network-charged-securitie...
2•737min•37m ago•0 comments

CS Garuda Indonesia

1•indahponsel•38m ago•0 comments

Tinker: Thinking Machines Lab Thoughts

https://pranavc28.github.io/blog/posts/generative-ui-tinker/
1•pranavc28•38m ago•1 comments

Tesla Sued Over Another Fatal Crash in Growing Scrutiny of Doors

https://www.bloomberg.com/news/articles/2025-11-21/tesla-sued-over-another-fatal-crash-in-growing...
1•voxadam•40m ago•1 comments

Ask HN: How Newton did so much without tea or coffee?

3•upxx•40m ago•3 comments

Show HN: Use AI to Clean Data at Scale

https://www.cluedin.com/home
2•jerrong•45m ago•0 comments

Show HN: Elasticsale.com, an open-source SaaS for retail cashback campaigns

https://elasticsale.com
1•dcvr•45m ago•0 comments

Some fundamental theorems in math – Oliver KNILL [pdf]

https://people.math.harvard.edu/~knill/graphgeometry/papers/fundamental.pdf
3•marysminefnuf•52m ago•0 comments

The European startup market is ready for the limelight

https://techcrunch.com/2025/11/21/the-european-startup-market-is-ready-for-the-limelight/
4•paulatreides•56m ago•1 comments

Show HN: smtp.js, a drop-in relay to prevent your sites spamming your users

https://community.qbix.com/t/drop-in-smtp-relay-to-combat-bots-and-prevent-spamming-users/780
1•EGreg•56m ago•0 comments

Chomsky had deeper ties to Epstein than previously known, documents reveal

https://www.theguardian.com/us-news/2025/nov/22/noam-chomsky-jeffrey-epstein-ties-emails
8•clanky•56m ago•0 comments

An Interview with a YouTube Writer Behind 500M+ Views

https://www.humaninvariant.com/blog/youtube-interview
1•humaninvariant•57m ago•0 comments

A Fast 64-Bit Date Algorithm (30–40% faster by counting dates backwards)

https://www.benjoffe.com/fast-date-64
2•benjoffe•58m ago•1 comments

Simple One-Time Passcode Inputs

https://cloudfour.com/thinks/simple-one-time-passcode-inputs/
1•gm678•1h ago•0 comments

The Lost Cat of Sullivan's Island

https://www.trulyadventure.us/lost-on-sulls-island
1•gmays•1h ago•0 comments

GCC SC approves inclusion of Algol 68 Front End

https://gcc.gnu.org/pipermail/gcc/2025-November/247020.html
41•edelsohn•1h ago•5 comments

Build with Nano Banana Pro google official developer blog post

https://blog.google/technology/developers/gemini-3-pro-image-developers/
1•visioninmyblood•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•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/