frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Men, masculinities, and the planet at the end of (M)Anthropocene

https://www.tandfonline.com/doi/full/10.1080/18902138.2025.2576458
1•DamonHD•59s ago•0 comments

Craft-guilds of the thirteenth century in Paris (1915)

https://gutenberg.org/cache/epub/78623/pg78623-images.html
1•petethomas•4m ago•0 comments

GigaQR – Dynamic QR Codes and Analytics for Teams – GigaQR

https://gigaqr.com
2•darkrishabh•10m ago•0 comments

Show HN: Agent-skills-eval – Test whether Agent Skills improve outputs

https://github.com/darkrishabh/agent-skills-eval
2•darkrishabh•11m ago•0 comments

Architectural Framework for Agentic AI in Identity and Eligibility

https://wwps.microsoft.com/content/agentic-ai-identity-eligibility/
2•krautburglar•13m ago•0 comments

The Bean is here (New "pointing stick" mouse by Ploopy)

https://blog.ploopy.co/the-bean-is-here-435
3•arcanemachiner•17m ago•2 comments

Mythos Shows AI Weapons Inspectors Need Sharp Teeth

https://www.bloomberg.com/opinion/articles/2026-05-07/anthropic-s-mythos-shows-ai-weapons-inspect...
3•helsinkiandrew•20m ago•0 comments

Show HN: Trust – Coding Rust like it's 1989

https://github.com/wojtczyk/trust
2•wojtczyk•25m ago•0 comments

How to Buy Cheap Claude Tokens in China

https://www.chinatalk.media/p/how-to-buy-cheap-claude-tokens-in
4•tristanj•28m ago•0 comments

DNA donors help identify Franklin expedition members

https://www.theglobeandmail.com/canada/science/article-dna-donors-help-identify-franklin-expediti...
2•petethomas•30m ago•0 comments

I'm now "writing" my blog

https://www.310networks.com/posts/im-now-writing-my-blog/
3•kookster310•31m ago•0 comments

Show HN: StackSense – AI/data/systems engineering knowledge graph

https://www.stacksense.cc/
3•langtang1996•31m ago•0 comments

Show HN: Password-less authentication via Ramanujan's 1/π series and Nvidia-B200

https://zenodo.org/records/20049892
2•Prakash_1•36m ago•0 comments

MRC Protocol: Supercomputer networking to accelerate large scale AI training

https://openai.com/index/mrc-supercomputer-networking/
3•eyalitki•37m ago•1 comments

The surprisingly complex journey to text-selectable client-side generated PDFs

https://sdocs.dev/blogs/journey-to-pdf-generation
5•FailMore•46m ago•0 comments

Actor alleges James Cameron used her teenage face to create 'Avatar' character

https://www.nbcnews.com/pop-culture/movies/actor-alleges-james-cameron-teen-face-create-avatar-ch...
5•anigbrowl•51m ago•0 comments

Show HN: CRO analysis tool that finds conversion issues

https://spectry.io/analyze
3•spectry•52m ago•0 comments

Show HN: Kstack – Skill pack for monitoring/troubleshooting K8s in Claude Code

https://github.com/kubetail-org/kstack
3•andres•59m ago•0 comments

Great Attractor

https://en.wikipedia.org/wiki/Great_Attractor
2•the-mitr•59m ago•0 comments

Don't Automate Your Moat: Matching AI Autonomy to Risk and Competitive Stakes

https://www.oreilly.com/radar/dont-automate-your-moat-matching-ai-autonomy-to-risk-and-competitiv...
3•knightabu•1h ago•1 comments

LAWS: A new transform operation turning LLM inference into cheap cache lookups

https://arxiv.org/abs/2605.04069
6•EGreg•1h ago•1 comments

Elon Musk's Lawyers Ask OpenAI's President Why He Is Worth $30B

https://www.nytimes.com/2026/05/04/technology/elon-musk-greg-brockman-openai-trial.html
6•1vuio0pswjnm7•1h ago•2 comments

Publishers sue Meta, claiming it violated copyrights in training AI with books

https://www.washingtonpost.com/national-security/2026/05/05/publishers-sue-meta-ai-copyright/
2•1vuio0pswjnm7•1h ago•0 comments

Red Button, Blue Button

https://softmax.com/blog/red-button-blue-button
1•tosh•1h ago•0 comments

ABG – An Online Bioinformatics Lab

https://abg-discord.vercel.app/
1•jeremykalfus•1h ago•0 comments

'FOMO has proven a stronger incentive than poor stock performance' Goldman Sachs

https://fortune.com/2026/05/06/is-ai-a-bubble-goldman-sachs-skeptics-overhyped/
3•1vuio0pswjnm7•1h ago•0 comments

Europe Tech Tools

1•RickyFarmer•1h ago•1 comments

Prompt API: No web standard should require users to agree an ads company's TOC

https://wil.to/posts/googles-prompt-api/
1•maxloh•1h ago•0 comments

GitHub outage: CCR and CCA failing to start for PR comments

https://www.githubstatus.com/incidents/qp0lxr014sw8
7•paulannesley•1h ago•11 comments

ZAYA1-8B: Frontier intelligence density, trained on AMD

https://www.zyphra.com/post/zaya1-8b
3•armcat•1h 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/