frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Crypto hoarding company shares under pressure as risk appetite wanes

https://www.reuters.com/business/finance/crypto-hoarding-company-shares-under-pressure-risk-appet...
1•1vuio0pswjnm7•1m ago•0 comments

Italy's Competition Watchdog Broadens WhatsApp AI Policy Probe

https://www.wsj.com/tech/ai/italys-competition-watchdog-broadens-whatsapp-ai-policy-probe-64c904cd
1•1vuio0pswjnm7•4m ago•0 comments

X402 – protocol for micropayments and the rise of an agentic economy

https://oasis.net/blog/x402-https-internet-native-payments
1•adrianwaj•7m ago•1 comments

Show HN: Tacopy – Tail Call Optimization for Python

https://github.com/raaidrt/tacopy
1•raaid-rt•12m ago•0 comments

CrowdStrike: Security Flaws DeepSeek-Generated Code Linked to Political Triggers

https://www.crowdstrike.com/en-us/blog/crowdstrike-researchers-identify-hidden-vulnerabilities-ai...
1•fosco•12m ago•1 comments

Harvard Database Hacked in Latest Ivy League Cyberattacks

https://www.bloomberg.com/news/articles/2025-11-22/harvard-hacked-in-most-recent-case-of-ivy-leag...
1•1vuio0pswjnm7•17m ago•0 comments

Best Free Headshot Generator 2026: 9 AI Tools Tested and Compared

https://www.aiheadshotreviews.com/articles/best-free-headshot-generator
1•naveensky•23m ago•1 comments

Why Jailbreaking Calculators Is (Unfortunately) a Thing Now [video]

https://www.youtube.com/watch?v=3a-X6FZfl2Y
1•josephcsible•24m ago•0 comments

Discord for LLMs in a single 3.7k-line HTML file

https://modelarena.xyz
2•Estrick•26m ago•1 comments

Onion AI – AI Poster Maker

https://onionai.so/en
1•ovelv•33m ago•0 comments

Ask HN: How can we measure AI's impact on global developer productivity?

2•obilgic•36m ago•0 comments

Listen to music like it's 2005

https://lukecyca.com/2025/listen-to-music-like-its-2005.html
2•ireflect•43m ago•0 comments

Dennis Sullivan: Simplicity Is the Point (2014) [video]

https://www.youtube.com/watch?v=ixc0TNfT0ks
1•vismit2000•48m ago•0 comments

"Many students are simply refusing to do *anything*."

https://bsky.app/profile/jesbattis.bsky.social/post/3m6pvvkojqk2l
2•dougb5•48m ago•0 comments

AI just proved Erdos Problem #124

https://twitter.com/vladtenev/status/1994922827208663383
2•nl•1h ago•0 comments

Decoding Ageing: Blueprint Theory of Ageing [video]

https://www.youtube.com/watch?v=SQAFLDTvQfM
1•escargot•1h ago•0 comments

Show HN: LLM Newsletter Kit – A TypeScript Framework for AI Newsletters

https://github.com/kimhongyeon/llm-newsletter-kit-core
1•hongyeon•1h ago•0 comments

Kopi Luwak

https://en.wikipedia.org/wiki/Kopi_luwak
5•thunderbong•1h ago•0 comments

Tom Stoppard, Award-Winning Playwright of Witty Drama, Dies at 88

https://www.nytimes.com/2025/11/29/theater/tom-stoppard-dead.html
4•mitchbob•1h ago•1 comments

The Markets Aggregating Political Reality

https://freesystems.substack.com/p/inside-the-markets-aggregating-political
1•gwintrob•1h ago•0 comments

Adolescence lasts into 30s – new study shows four pivotal ages for your brain

https://www.bbc.co.uk/news/articles/cgl6klez226o
1•ifh-hn•1h ago•2 comments

Show HN: I built a Web 1.0 budgeting tool, Budget Pro 3000

https://budgetpro3000.com
1•adrianvxyz•1h ago•0 comments

Do we need a new GitHub for AI coding era?

https://github.com/memovai/memov
2•ssslvky1•1h ago•2 comments

Welcome to My Andrew Lloyd Website

https://andrewlloydwebsite.neocities.org/
1•nxobject•1h ago•0 comments

Steven Pinker's Cheesecake for the Mind (1998)

http://cogweb.ucla.edu/Abstracts/Carroll_C98.html
3•lioeters•1h ago•1 comments

Show HN: iOS Old App Downloader 2 [video]

https://www.youtube.com/watch?v=xuX6alPg1yQ
1•txthinking•1h ago•0 comments

NFCGate flagged as malware even after multiple followups saying it isn't

https://github.com/nfcgate/nfcgate/issues/164
2•Antitoxic6185•1h ago•0 comments

Coupang says 33.7M customer accounts breached

https://www.reuters.com/sustainability/boards-policy-regulation/south-korean-e-commerce-firm-coup...
1•alephnerd•2h ago•0 comments

Cybertruck Drives 1,200 Miles FSD 14.2 Autonomously

https://gearmusk.com/2025/11/30/cybertruck-drives-1200-miles-fsd/
5•loog5566•2h ago•1 comments

LLM live ranking (Gemini, OpenAI, xAI)

https://metrik-dashboard.vercel.app/
1•mbouassa•2h ago•0 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/