frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Can influencers post AI ads without alienating their fans?

https://www.businessinsider.com/ai-brand-deals-chatgpt-claude-influencers-weigh-backlash-over-pay...
1•petethomas•1m ago•0 comments

'With All My Heart, Natalie.' Trump's Most Devoted Aide Emerges

https://www.nytimes.com/2026/08/18/us/politics/natalie-harp-trump-devotion-white-house.html
2•whack•2m ago•0 comments

US warns of AI-powered attacks on Siemens PLCs in critical infrastructure

https://www.bleepingcomputer.com/news/security/us-warns-of-ai-powered-attacks-on-siemens-plcs-in-...
3•devonnull•2m ago•0 comments

Training Thousands of LoRA Adapters at Once

https://osmosis.ai/blogs/training-thousands-of-lora-adapters-at-once
1•jxmorris12•3m ago•0 comments

Android Developers Blog: Preparing your app for broader memory limits

https://android-developers.googleblog.com/2026/08/app-broader-memory-limits.html
1•theanonymousone•4m ago•0 comments

Trump's Justice Dept. Targets Smaller Fraud Cases

https://www.nytimes.com/2026/08/14/us/politics/trump-doj-fraud-california-food-truck.html
2•paulpauper•5m ago•0 comments

Trump's Police Spying on Americans? It's Darker Than We Knew

https://newrepublic.com/article/214482/trump-dhs-secret-police-spying-anti-ice-americans
3•bediger4000•5m ago•0 comments

Apply to Inkhaven 3

https://tomasbjartur.substack.com/p/you-should-apply-to-inkhaven-3
1•paulpauper•7m ago•0 comments

Your Friendly Neighborhood Hooters

https://www.newyorker.com/magazine/2026/08/24/your-friendly-neighborhood-hooters
1•petethomas•7m ago•0 comments

Cross-platform file explorer, powered by a virtual distributed filesystem

https://github.com/spacedriveapp/spacedrive
1•LelouBil•8m ago•0 comments

How do people live beyond 110? Abundance of cancer-killing cells might be key

https://www.nature.com/articles/d41586-026-02587-1
3•bookofjoe•8m ago•1 comments

Scientists Release Biggest 2D Map of the Universe

https://newscenter.lbl.gov/2026/08/10/scientists-release-biggest-2d-map-of-the-universe/
3•gmays•10m ago•0 comments

Everything but the model: what matters in production agents

https://medium.com/@fsaint/i-built-a-cloud-for-ai-agents-the-cloud-was-the-wrong-part-a974484b78b0
2•fsaint•10m ago•0 comments

Employment Effects of Guaranteed Income: Experimental Evidence from Two States

https://academic.oup.com/qje/advance-article/doi/10.1093/qje/qjag042/8761769?login=false
2•paulpauper•11m ago•0 comments

Show HN: A data viewer for choosing Frigate-compatible IP cameras

https://github.com/ch-bas/cctv-camera-database
11•martinAndy•12m ago•0 comments

Can LRMs Do Analogical Reasoning Under Perceptual Uncertainty? (2025)

https://arxiv.org/abs/2503.11207
2•wslh•12m ago•0 comments

Sears didn't miss e-commerce – Eddie Lampert stripped it [video]

https://www.youtube.com/watch?v=Vxe1kXKBClg
2•adhikaribipin•15m ago•0 comments

Show HN: Let your coding agents set up your test coverage

https://blog.codacy.com/introducing-codacy-skills-part-3-let-your-agent-set-up-test-coverage
2•ARayOutOfBounds•16m ago•0 comments

Tool to explore what skills employers ask for based on 1M+ job postings

https://corvi.careers/skills-explorer/
2•sp1982•17m ago•0 comments

Fewer contrails would be good for the climate

https://www.economist.com/leaders/2026/08/20/fewer-contrails-would-be-good-for-the-climate
2•Gander5739•17m ago•0 comments

Pursuit of AGI

https://cognitus.grrn.io
3•grrnteam•20m ago•1 comments

Satd (Full Bitcoin Node in Rust): Guided Code Tour

https://epochbtc.github.io/satd/tour.html
2•epochbtc•20m ago•0 comments

More than 150 Polymarket wallets may have traded on military secrets

https://www.msn.com/en-gb/money/economy/ar-AA2azznW
5•bcaulfield•22m ago•0 comments

Better Batteries

https://matklad.github.io/2026/08/20/better-batteries.html
2•surprisetalk•22m ago•0 comments

Surprise Treasury Move Can't Mask America's Record Debt Problem

https://www.bloomberg.com/news/newsletters/2026-08-20/surprise-treasury-buyback-can-t-mask-americ...
4•petethomas•23m ago•0 comments

Iceland cuts store losses by 80% with AI-powered theft detection

https://www.retailgazette.co.uk/blog/2026/08/iceland-cuts-store-losses-by-80-with-ai-powered-thef...
3•theanonymousone•24m ago•0 comments

Views on the Dollar Shortage Controversy

https://www.aeaweb.org/research/great-dollar-shortage-debate
2•wslh•26m ago•0 comments

Citizen Devs: Everyone is an engineer now

https://www.massdriver.cloud/blogs/the-citizen-developer
6•metal13•27m ago•2 comments

Ask HN: How did you write code on restricted hardware?

2•diselody•27m ago•2 comments

Go updates may delight diehard gophers but displease AI overlords

https://www.theregister.com/devops/2026/08/20/go-updates-may-delight-diehard-gophers-but-displeas...
3•joebuckwilliams•27m 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•1y 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•1y ago
It should be noted that there is already a lint rule for this: https://typescript-eslint.io/rules/no-floating-promises/