frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

No Agenda, No Meeting

https://noagendanomeeting.net
1•mooreds•33s ago•0 comments

Char.social

https://char.social/p/34731
1•poorIy•1m ago•0 comments

Astronomer May Have Witnessed a Comet Stop Its Spin–Then Reverse Its Rotation

https://www.smithsonianmag.com/smart-news/in-a-first-an-astronomer-may-have-witnessed-a-comet-sto...
1•pseudolus•2m ago•0 comments

Book Review: There Is No Antimemetics Division

https://www.stephendiehl.com/posts/no_antimimetics/
1•ibobev•3m ago•0 comments

Book Review: Piranesi

https://www.stephendiehl.com/posts/piranesi/
1•ibobev•3m ago•0 comments

Book Review: What We Can Know

https://www.stephendiehl.com/posts/what_we_can_know/
1•ibobev•4m ago•0 comments

A DIY OpenClaw

https://ben.page/claude-mac
2•jer0me•5m ago•0 comments

Building a Custom Claude Code Statusline

https://www.dandoescode.com/blog/claude-code-custom-statusline
1•juanpabloaj•6m ago•0 comments

Is.team – AI agents and humans on the same project board

https://is.team
1•spotlayn•6m ago•0 comments

Anthropic says Claude Code subscribers will need to pay extra for OpenClaw usage

https://techcrunch.com/2026/04/04/anthropic-says-claude-code-subscribers-will-need-to-pay-extra-f...
1•taude•7m ago•0 comments

Adam Curtis Fears AI Is a Hungry Ghost

https://www.youtube.com/watch?v=SM9hRuy31JA
2•OhMeadhbh•8m ago•1 comments

Txpay.app – Your Crypto Payment Link

https://txpay.app/
1•maximoCorrea•8m ago•0 comments

Open States strives to improve civic engagement at the state level

https://github.com/openstates
1•janandonly•9m ago•0 comments

Exposing and Understanding Scrolling Transfer Functions (2012) [pdf]

https://direction.bordeaux.inria.fr/~roussel/publications/2012-UIST-scrolling-tf.pdf
2•t23414321•10m ago•0 comments

Benchmark-Dependent Output Dynamics in LLM Prompt Compression

https://arxiv.org/abs/2603.23527
1•PaulHoule•10m ago•0 comments

Leaked texts reveal how Russian spies recruit, pressure and run their informants

https://www.politico.eu/article/russia-spy-recruit-pressure/
2•Michelangelo11•10m ago•0 comments

BlackIceHQ – detecting account takeover from login sequences

https://www.blackicehq.com/
1•alexmocki•11m ago•1 comments

TecBot

https://tecbot.h2msolutions.de
1•h2msolutions•12m ago•1 comments

Full Report: What Claude Code Actually Chooses

https://amplifying.ai/research/claude-code-picks/report
1•firtoz•12m ago•1 comments

Ask HN: How are you orchestrating multi-agent AI workflows in production?

2•swrly•13m ago•0 comments

Hallucinated citations are polluting the scientific literature.What can be done?

https://www.nature.com/articles/d41586-026-00969-z
1•bookofjoe•14m ago•1 comments

Pscale – Logarithmic compression for LLM knowledge bases

https://github.com/pscale-commons/pscale
1•davidmpinto•14m ago•1 comments

LiteClaw – Use Claude Code from Your Phone via Telegram

1•breaktheready•14m ago•0 comments

Value numbering

https://bernsteinbear.com/blog/value-numbering/
1•tekknolagi•16m ago•0 comments

I Woke Up Not Knowing Who I Was – Building an AI Robot Brain [video]

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

If we hope to build artificial souls, where should we start?

https://aeon.co/essays/if-we-hope-to-build-artificial-souls-where-should-we-start
2•speckx•20m ago•2 comments

Show HN: Expi – Local No Subscription Converter and Media Editor

https://getexpi.app
2•philematic•20m ago•0 comments

Is grep all you need for agentic search?

https://softwaredoug.com/blog/2026/04/06/agentic-search-is-having-a-grep-moment.html
2•ingve•21m ago•0 comments

SpectralQuant: Breaking TurboQuant's Compression Limit via Spectral Structure

https://github.com/Dynamis-Labs/spectralquant
1•Numerlor•23m ago•0 comments

We Built a Skills Optimizer, Here's What We Learned About Claude Code

https://aaroneaton.com/walkthroughs/claudecode-skill-evolution-retrospective/
1•obrien1984ae•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•11mo ago

Comments

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