frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

General Radio Company

https://mitmuseum.mit.edu/collections/organization/3901
1•stmw•9s ago•1 comments

The Bessent Doctrine (Essay by Mohammed El-Erian)

https://www.nytimes.com/2026/07/07/opinion/scott-bessent-trade-economy.html
1•cs702•56s ago•0 comments

The Many Casualties of Precision Warfare

https://jacobin.com/2026/05/iraq-precision-weapons-civilians-responsibility
1•speckx•1m ago•0 comments

The Software Engineering War

https://www.manager.dev/newsletter/the-software-engineering-war
1•pmg101•1m ago•0 comments

America's missing middle: The shrinking 45-64 population

https://www.axios.com/2026/07/07/gen-x-population-shrinking-taxes-economy
1•toomuchtodo•3m ago•0 comments

Show HN: I Recreated Digg Labs

https://www.topaztee.com/digglabs/
1•topaztee•3m ago•0 comments

Enabling non-devs to contribute code at Slack

https://www.aviator.co/podcast/devex-slack-frances-coronel
1•tonkkatonka•3m ago•0 comments

"We're extending access to Claude Fable 5 on all paid plans through July 12."

https://twitter.com/claudeai/status/2074548242386178258
1•minimaxir•4m ago•1 comments

Run Multiple Claude Accounts Side by Side on macOS

https://old.reddit.com/r/ClaudeAI/comments/1uq27do/run_multiple_claude_accounts_side_by_side_on_m...
1•IGHOR•5m ago•0 comments

Your family's $300 stake in OpenAI

https://www.technologyreview.com/2026/07/06/1140176/your-familys-300-stake-in-openai/
2•Brajeshwar•7m ago•0 comments

I tried to build a post scheduler but meta app review messed it up

1•anirudh_parmar•8m ago•0 comments

Show HN: HTMLDrive – serve HTML files from your Google Drive

https://html-drive.com
2•debamitro•9m ago•0 comments

Show HN: Fence – Jiminy Cricket for AI coding agents

1•andriosr•10m ago•0 comments

Designing tech to have good etiquette

https://caseorganic.substack.com/p/sit-siri
1•SLHamlet•11m ago•0 comments

Review AI code line by line is like review movies frame by frame

https://bsky.app/profile/metaessen.bsky.social/post/3mq33yrxeh22a
1•lilerjee•11m ago•0 comments

Type-safe Django fork – Django-CFG

https://djangocfg.com/
1•Onavo•11m ago•0 comments

Emerging evidence links tire pollution to Alzheimer's risk

https://www.eurekalert.org/news-releases/1134924
2•ndsipa_pomu•12m ago•0 comments

Manna (2003)

https://marshallbrain.com/manna1
1•Curiositry•12m ago•0 comments

I found 3 self-contradictions in the Agentic Commerce Protocol spec

https://github.com/baseballcubs99x-dev/acp-check
1•JBIRMING199•13m ago•0 comments

Trump renews Greenland threats at NATO summit

https://www.cnbc.com/2026/07/07/trump-nato-summit-greenland-us-troops-europe.html
2•tcp_handshaker•14m ago•0 comments

Incentives Drive Everything

https://yusufaytas.com/incentives-drive-everything
1•Curiositry•15m ago•0 comments

Managed Agents in Gemini API: background tasks, remote MCP and more

https://twitter.com/GoogleAIStudio/status/2074533418004591077
1•pretext•17m ago•0 comments

A dummy/debug app that runs a web server and prints environment variables

https://github.com/whalesalad/docker-debug
1•mooreds•17m ago•0 comments

Show HN: ComplyLedge – Clean, normalized OSHA enforcement data via API

https://complyledge.com
1•infinito25•18m ago•0 comments

Why we're moving Wire off Cloudflare Durable Objects

https://usewire.io/why-wire/architecture-benchmark/
1•jitpal•18m ago•0 comments

2026 French cybersecurity startup radar

https://www.wavestone.com/en/insight/2026-french-cybersecurity-startup-radar/
1•mooreds•19m ago•0 comments

Why AI Agents Forget by Design

https://stantyan.com/blog/why-ai-agents-forget/
1•stantyan•20m ago•0 comments

Conversing with antiquity: Agentic AI partner for expanding historical research

https://deepmind.google/science/workflows/conversing-with-antiquity/
1•pretext•21m ago•0 comments

Former Microsoft engineer shrinks Notepad down to size

https://www.theregister.com/os-platforms/2026/06/30/former-microsoft-engineer-shrinks-notepad-dow...
1•vintagedave•22m ago•1 comments

Are you ready for what it takes to stop ghost guns?

https://www.theverge.com/tech/960802/3d-printed-gun-laws-ghost-guns
1•aarvin_roshin•23m 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/