frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Mass Deportation and American Jobs

https://www.wsj.com/opinion/mass-deportation-american-jobs-nber-university-of-colorado-boulder-st...
1•petethomas•2m ago•0 comments

Go is FIPS 140-3 certified

https://csrc.nist.gov/projects/cryptographic-module-validation-program/certificate/5247
1•birdculture•3m ago•0 comments

Agents of Chaos

https://agentsofchaos.baulab.info/
1•giwook•4m ago•0 comments

ADT says customer data stolen in cyber intrusion

https://therecord.media/ADT-data-breach-cyberattack
1•PaulHoule•6m ago•0 comments

The Loudest Known Sound Ever (2024)

https://www.audiology.org/the-loudest-known-sound-ever/
1•thunderbong•8m ago•0 comments

Naval Character Living Inside iMessage

https://naval.chat
3•oqy•9m ago•0 comments

Correction Has to Occur – NYU Finance Professor Warn

https://finance.yahoo.com/news/correction-occur-nyu-finance-professor-160057855.html
3•laxmena•11m ago•0 comments

Have you sent a smile today?

https://mylightstillshines.wordpress.com/2026/05/06/have-you-smiled-at-somebody-today/
1•jaygirl•11m ago•0 comments

QUIC will soon be as important as TCP – but it's vastly different

https://www.theregister.com/on-prem/2026/04/16/quic-will-soon-be-as-important-as-tcp/5227423
2•Bender•14m ago•0 comments

Kash Patel's Personalized Bourbon Stash

https://www.theatlantic.com/politics/2026/05/kash-patel-fbi-bourbon/687066/
4•petethomas•15m ago•0 comments

Iran cybersnoops still LARPing as ransomware crooks in espionage ops

https://www.theregister.com/security/2026/05/06/iran-cyberspies-larping-as-ransomware-crims-in-es...
1•Bender•16m ago•0 comments

I just sent out my first Quote as a business owner

2•Jbird2k•16m ago•0 comments

Justin Wolfers, Cable's Favorite Economist, Joins the Creator Economy

https://www.nytimes.com/2026/05/06/business/dealbook/justin-wolfers-media-company.html
1•paulpauper•17m ago•0 comments

Counting as a minimal probe of language model reliability

https://arxiv.org/abs/2605.02028
1•nateb2022•17m ago•0 comments

Kicking the Tires: A Voluntary Path to Pre-Deployment AI Vetting

https://www.lawfaremedia.org/article/kicking-the-tires--a-voluntary-path-to-pre-deployment-ai-vet...
1•paulpauper•17m ago•0 comments

What I've Been Reading

https://marginalrevolution.com/marginalrevolution/2026/05/what-ive-been-reading-287.html
1•paulpauper•17m ago•0 comments

Hacking on a PDP1 front panel replica [Computerphile video]

https://www.youtube.com/watch?v=7WEewUVQabU
1•ozymandiax•18m ago•0 comments

On-Policy [LLM] Distillation (2025)

https://thinkingmachines.ai/blog/on-policy-distillation/
2•nateb2022•18m ago•0 comments

Talk to Your Competitors

https://herbertlui.net/talk-to-your-competitors/
1•herbertl•22m ago•0 comments

China Eastern Airlines Flight 5735 NTSB Documents

https://commons.wikimedia.org/wiki/Category:China_Eastern_Airlines_Flight_5735_NTSB_documents
2•guardiangod•22m ago•0 comments

Show HN: Gpu.fund, live GPU cloud rental prices

https://gpu.fund/
1•justacatbot•25m ago•0 comments

Show HN: Yasna – My infosec news aggregator

https://yasna.io
2•reti•29m ago•2 comments

Companies help parents try to pick their babies' traits. Experts are wary

https://www.npr.org/2026/05/06/nx-s1-5704317/genetic-embryo-screening
1•ki4jgt•30m ago•0 comments

Richard Dawkins 'convinced' AI is conscious

https://www.telegraph.co.uk/news/2026/05/06/richard-dawkins-convinced-ai-is-conscious/
3•beatthatflight•30m ago•1 comments

How the NBA Schedule Is Made

https://www.nbastuffer.com/analytics101/how-the-nba-schedule-is-made/
1•thebigship•33m ago•0 comments

What British people mean when they say 'sorry'

https://www.bbc.com/travel/article/20260506-what-british-people-really-mean-when-they-say-sorry
3•BiraIgnacio•35m ago•0 comments

Anthropic leases Colossus 1 datacentre from Space X

https://www.ft.com/content/aa0239b8-0d57-4dc8-8c1a-ed7ac4d689fb
3•avianlyric•40m ago•1 comments

We Built an AI Recruiter That Conducts Interviews on Google Meet

https://brydg.app
1•sarh543•41m ago•0 comments

VCV Tower Vertical Construction Starts, Virginia's Tallest Building

https://constructionreviewonline.com/ls-greenlinks-vcv-tower-vertical-construction-starts-in-ches...
1•eatonphil•46m ago•1 comments

Show HN: Screen Adapt – auto-scaffolds responsive CSS and Tailwind variants

https://marketplace.visualstudio.com/items?itemName=ShawnKhoo.screen-adapt
3•Shawn_Something•49m ago•0 comments
Open in hackernews

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

https://github.com/stanNthe5/typescript-autoawait
7•theThree•1y ago

Comments

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