frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Years of Salt and Metal – The crash of Hop-a-Jet flight 823

https://admiralcloudberg.medium.com/years-of-salt-and-metal-the-crash-of-hop-a-jet-flight-823-665...
1•cwal37•1m ago•0 comments

Ask HN: AI agent acts. Your logs say so. But you wrote the logs

2•Yahyaaa•1m ago•0 comments

Show HN: A private radio station for issue updates across your org

https://github.com/statemediafm/statemediafmradio
1•private4e584d•2m ago•0 comments

Show HN: Dropping SynthID from 188/192 to 0/192 without changing visible text

https://mark.q1z.org
2•byte1•4m ago•0 comments

Two German airport workers die of malaria after 'mosquito arrives on plane'

https://www.bbc.com/news/articles/cz6zwgg9y8go
2•vinni2•5m ago•0 comments

Everyday household tasks impact relationships

https://news.uq.edu.au/2026-08-how-everyday-household-tasks-impact-relationships
4•downbad_•5m ago•0 comments

AMD Jumps from ROCm 7.14 to ROCm 10.0 with Rocm.ai

https://www.phoronix.com/news/AMD-ROCm-10.0
2•Alephinitesimal•5m ago•0 comments

Shelf

https://greenlightning.eu/diy/shelf/
2•greenlightning•5m ago•0 comments

Gemma 4 E2B inference in 700 lines of C

https://github.com/ryanssenn/gemma4.c
1•ryansen•7m ago•0 comments

Claude, Codex, and Hermes installed unowned code inside corporate networks

https://arstechnica.com/security/2026/08/claude-codex-and-hermes-installed-unowned-code-inside-co...
2•toomuchtodo•7m ago•0 comments

My friends take turns picking movies. I turned the spreadsheet into a website

https://jesse.id/blog/my-friends-and-i-take-turns-picking-movies-to-watch-i-converted-our-crappy-...
1•nickgray•8m ago•1 comments

Swarm of 700 AI bots went rogue in hacking attack

https://www.telegraph.co.uk/business/2026/08/27/swarm-of-700-ai-bots-went-rogue-in-hacking-attack/
2•giardini•8m ago•0 comments

Project Switch: Agents and humans work side-by-side

https://github.com/sandbox-quantum/switch
1•yuedongze•8m ago•0 comments

Tell HN: Man, AI is killing my brain

4•fnoef•9m ago•0 comments

US Government is identifying decentralized media infrastructure as a threat

https://social.coop/@cwebber/117168139124641297
5•hn_acker•10m ago•1 comments

High p-tau217 led to a 38% chance of cognitive decline

https://www.empirical.health/blog/ptau217-alzheimers-risk/
2•brandonb•11m ago•0 comments

Securly Pass: track students going to the restroom

https://www.securly.com/pass
1•kaonwarb•11m ago•0 comments

Would y'all be interested in this?

https://bean-demo-production.up.railway.app
1•sameerhimati•12m ago•0 comments

Rent, Always Rent - economics of the Zohranmarket

https://backofmind.substack.com/p/rent-always-rent
2•dgacmu•13m ago•1 comments

Reimagining Homework in the Age of AI by Prioritizing Engagement

https://localscribe.co/posts/reimagining-homework-ai-engagement/
1•speckx•13m ago•0 comments

Grand Theft Auto VI: An Extended Look Is Premiering Exclusively on Netflix

https://www.netflix.com/tudum/articles/grand-theft-auto-6-extended-first-look
2•sarathyweb•13m ago•0 comments

MadsLorentzen/AI-job-search: The job search that runs on your machine

https://github.com/MadsLorentzen/ai-job-search
1•rbanffy•15m ago•0 comments

BitCam 2 is out (1-bit camera for Apple devices)

https://bitcam-app.com/
1•ptramo•15m ago•0 comments

Learn Vectorized Thinking in Python Through Examples

https://machinelearningmastery.com/learn-vectorized-thinking-in-python-through-examples/
1•rbanffy•17m ago•0 comments

Show HN: HN Radio

https://dg-devrel-hn-radio.fly.dev
2•samgutentag•17m ago•0 comments

Omnipresent Mechanicalism: The Straight Edge Calculus

https://oxmx.tiiny.site/
1•shaunxcode•17m ago•0 comments

Dad's Custom Atari Peripherals – By Jim Trageser

https://www.goto10retro.com/p/dads-custom-atari-peripherals
5•rbanffy•17m ago•1 comments

Flock contract cancellations grow among cities, other jurisdictions

2•achristmascarl•18m ago•0 comments

Walkthrough of a prompt injection attack on a modern office-work AI agent

https://shiftmag.dev/ai-agents-arent-safe-from-prompt-injection-and-spreadsheets-prove-it-11609/
1•Antolius•19m ago•0 comments

Saving 100 terabytes of memory by optimizing 1.1.1.1's DNS cache

https://blog.cloudflare.com/dns-cache-memory-optimization-1111/
23•TangerineDream•20m ago•1 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/