frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

What Happens When Your Stripe Payment Fails

https://dvcoolarun.com/stripe/system-design/payments/2026/03/11/What-Happens-When-Your-Stripe-Pay...
1•dvcoolarun•25s ago•0 comments

Elastic Docs Skills

https://github.com/elastic/elastic-docs-skills
1•taubek•40s ago•0 comments

The Death of Coding Is Cancelled

https://medium.com/predict/the-death-of-coding-is-cancelled-why-your-ai-assistant-is-quickly-beco...
1•youknownothing•41s ago•0 comments

Chasing Boring at Just the Right Speed

https://log.andvari.net/no-mttr.html
1•rdoherty•51s ago•0 comments

RedwoodSDK v1.0 released – We stopped breaking everything

https://rwsdk.com
1•pistoriusp•2m ago•0 comments

Near token jumps 17% after 'Confidential Intents' launch

https://www.coindesk.com/markets/2026/03/02/near-token-jumps-17-after-confidential-intents-launch...
1•PaulHoule•2m ago•0 comments

The Complexity of a 60-Line Script

https://www.etiq.ai/posts/why-visual-programming-and-testing-are-the-next-step
1•robertcizmas•2m ago•1 comments

The Browser Becomes Your WordPress

https://wordpress.org/news/2026/03/announcing-my-wordpress/
2•tiernano•4m ago•0 comments

Hitching Your Software Engineering Firm's Positioning to a Platform

https://punctuation.com/hitching-your-software-engineering-firms-positioning-to-a-platform/
1•herbertl•4m ago•0 comments

Show HN: Opensoul – Open-source agentic marketing stack (6 AI agents)

https://github.com/iamevandrake/opensoul
1•iamevandrake•4m ago•1 comments

Applying Statistics to LLM Evaluations

https://cameronrwolfe.substack.com/p/stats-llm-evals
2•Brajeshwar•7m ago•0 comments

Let yourself fall down more

https://ntietz.com/blog/let-yourself-fall-down-more/
3•Brajeshwar•7m ago•0 comments

After the AI Revolution

https://www.noemamag.com/after-the-ai-revolution/
1•Brajeshwar•7m ago•0 comments

A Chrome extension to export a Gemini chat or selected messages

https://chromewebstore.google.com/detail/gemini-exporter-save-gemi/lgipeakgdkcgnkdljeagconfbfeolidj
1•nongquy•8m ago•0 comments

U.S. at Fault in Strike on School in Iran, Preliminary Inquiry Says

https://www.nytimes.com/2026/03/11/us/politics/iran-school-missile-strike.html
9•jbegley•11m ago•2 comments

Functional Universe – Physics as Composable Functional Transitions

https://voxleone.github.io/FunctionalUniverse/index.html
1•voxleone•11m ago•0 comments

Diffusion LLM may make most of the AI engineering stack obsolete

2•victorpiles99•12m ago•0 comments

When Your Life's Work Becomes Free and Abundant

https://x.com/adityaag/article/2031396465063436395
1•vednig•13m ago•0 comments

Inline MCP results are the new prompt bloat

https://futuresearch.ai/blog/mcp-results-widget/
6•rafaelpo•13m ago•1 comments

Wiz Joins Google

https://www.wiz.io/blog/google-closes-deal-to-acquire-wiz
5•aldarisbm•13m ago•0 comments

I made a tool that scores your startup, app or business "objectively"

https://stacksleuth.vercel.app
1•aether-dev•14m ago•1 comments

Notes from Token Town: Negotiating for the Fortune 5M

https://twitter.com/sarahmsachs/status/2031473087791902991
1•sundaypancakes•14m ago•0 comments

New Programming Languages Have an AI Problem

https://edgl.dev/blog/ai-language-adoption/
2•edg-l•15m ago•1 comments

The first AI Operating System for serious professionals

https://www.sooko.ai/
1•Femiaguda•15m ago•1 comments

Legend of Zelda: Ocarina of Time on the Apple Watch [video]

https://www.youtube.com/watch?v=1DR0ESBEC8s
1•zdw•16m ago•0 comments

HTTPS certificates in the age of quantum computing

https://lwn.net/SubscriberLink/1060941/af07898a15c68291/
1•askl•17m ago•0 comments

The Upfront Investment That Saves 10k Hours

https://eric.mann.blog/the-upfront-investment-that-saves-10000-hours/
1•eamann•17m ago•0 comments

DNSSEC NTAs: No Good Compromises

https://quad9.net/news/blog/dnssec-ntas-no-good-compromises/
2•Velocifyer•17m ago•0 comments

Answering Machine Messages from "Weird Al" Yankovic

http://www.noveltyansweringmachine.com/video/weirdal.html
1•TigerUniversity•17m ago•0 comments

Code Quality in the Age of Coding Agents

https://michaeltimbs.me/blog/code-quality-in-the-age-of-coding-agents/
2•mmorris•17m ago•1 comments
Open in hackernews

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

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

Comments

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