frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The New Must-Have College Admissions Skill: Tolerating Other Viewpoints

https://www.wsj.com/us-news/education/college-admissions-essays-applications-disagreement-questio...
1•JumpCrisscross•4m ago•1 comments

Image models generating partially-eaten burritos over time

https://www.generativist.com/notes/2025/Nov/25/generative-burrito-test.html
3•pathdependent•5m ago•1 comments

Enough with the Brussels Sprouts Already

https://www.theatlantic.com/ideas/2025/11/thanksgiving-food-vegetables-cabbage/685047/
1•petethomas•5m ago•0 comments

Ask HN: Do you sanitize secrets before pasting code into ChatGPT?

1•giovanella•5m ago•0 comments

Show HN: Praval Agentic AI Framework

https://github.com/aiexplorations/praval
1•aiexplorations•5m ago•0 comments

LLVM Adds Constant-Time Support for Protecting Cryptographic Code

https://blog.trailofbits.com/2025/11/25/constant-time-support-lands-in-llvm-protecting-cryptograp...
2•birdculture•6m ago•1 comments

Turning a Sphere Inside Out

https://youtu.be/wO61D9x6lNY?si=eKsRTnRqlzq8ewxl
1•JimmyBuckets•7m ago•0 comments

Navy Cancels Constellation-Class Frigate Program

https://news.usni.org/2025/11/25/navy-cancels-constellation-class-frigate-program-considering-new...
3•mjbellantoni•15m ago•2 comments

How many times can I shift direction before I get a paying user?

https://boldlystatic.com/
1•yinychan•16m ago•1 comments

Ask HN: Have major security breeches been less common lately?

1•Wowfunhappy•20m ago•0 comments

Stop Hacklore – An Open Letter

https://www.hacklore.org/letter
3•todsacerdoti•26m ago•1 comments

Model Context Protocol turns one, releases new spec version

http://blog.modelcontextprotocol.io/posts/2025-11-25-first-mcp-anniversary/
1•dend•26m ago•0 comments

Show HN: Kodaii generated a 20K-line FastAPI back end from one prompt

https://github.com/OlivierKodaii/calendarKodaii
1•vigile•28m ago•0 comments

Texas Buys $5M in BTC ETF as States Edge Toward First Government Crypto Reserves

https://www.coindesk.com/policy/2025/11/25/texas-buys-usd5m-in-btc-etf-as-states-edge-toward-firs...
2•wslh•28m ago•0 comments

Reverse Engineering UberEats and DoorDash

https://tgrcode.com/posts/digging_into_chowline
1•chilipepperhott•31m ago•0 comments

Hamas Victims' Families Sue Binance, Accusing It of Aiding Terrorism

https://www.nytimes.com/2025/11/25/business/binance-hamas-terrorism.html
1•jeffwass•32m ago•0 comments

Academia

https://www.academia.edu/
1•bookofjoe•35m ago•1 comments

A one-stop solution from desiging ER diagram to generating final view data

https://github.com/allmonday/pydantic-resolve
1•tank-34•47m ago•0 comments

Car influencers love Chinese EVs – and China loves them back

https://www.theverge.com/transportation/828155/car-influencer-china-ev-youtube-influencer-pay-play
2•naves•52m ago•3 comments

Notes on the Troubleshooting and Repair of Computer and Video Monitors

https://www.repairfaq.org/sam/monfaq.htm
3•WorldPeas•52m ago•0 comments

Plex's crackdown on free remote streaming access starts this week

https://arstechnica.com/gadgets/2025/11/plexs-crackdown-on-free-remote-streaming-access-starts-th...
5•nobody9999•53m ago•1 comments

Reinventing How .NET Builds and Ships (Again)

https://devblogs.microsoft.com/dotnet/reinventing-how-dotnet-builds-and-ships-again/
5•IcyWindows•55m ago•0 comments

Extracting Reddit data with chat bots

https://blog.hakanserce.com/post/reddit-ai-integration/
2•hakanserce•57m ago•0 comments

Rightness Is a Prison

https://usefulfictions.substack.com/p/rightness-is-a-prison
2•paulpauper•58m ago•0 comments

My Ethical Conundrum Around Writing About Meditation (16/30)

https://psychotechnology.substack.com/p/my-ethical-conundrum-around-writing
2•paulpauper•59m ago•0 comments

How to Sound Like an Expert in Any AI Bubble Debate

https://www.derekthompson.org/p/how-to-sound-like-an-expert-in-any
1•jellyfishrole•1h ago•0 comments

Ask HN: When an AI holds your company hostage, what will be the best defense?

1•isodude•1h ago•0 comments

2025 Weight Loss and Obesity Medication Facts

https://getskinnyjax.com/2025-weight-loss-stats/
1•blocchainz•1h ago•0 comments

Overclocking Dbt: Discord's Custom Solution in Processing Petabytes of Data

https://discord.com/blog/overclocking-dbt-discords-custom-solution-in-processing-petabytes-of-data
3•neighbour•1h ago•1 comments

Wikipedia Replaces IP Addresses with Temporary Accounts for Logged-Out Editors

https://en.wikipedia.org/wiki/Wikipedia:Temporary_accounts
3•tech234a•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/