frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

A Complete History of Quantum Computing (and what comes next)

https://quantumzeitgeist.com/a-complete-history-of-quantum-computing/
1•Nazzareno•1m ago•0 comments

Show HN: Devicons, +1300 logos and icons in React, SVG, and icon format

https://devicons.io/
1•vorillaz•1m ago•0 comments

A Year of Hetzner Auction Data: Where Did All the Servers Go?

https://blog.iodev.org/blog/hetzner-auction-supply-crunch/
1•100ms•4m ago•0 comments

London Met Police investigates officers after using Palantir AI tool

https://www.theguardian.com/uk-news/2026/apr/25/met-police-investigates-hundreds-officers-palanti...
1•lucidplot•4m ago•0 comments

Claud is missing the 2. Sense – Transcribe the web

https://webtranscriber.com/
1•broalkvam•5m ago•1 comments

Show HN: A free crypto trade journal with cycle support and CSV import

https://retired.today/log
1•attendos•6m ago•0 comments

Show HN: Delegare – let AI agents pay safely (x402, AP2 – base/USDC and Stripe)

https://delegare.dev/
1•tpfuetze•7m ago•0 comments

From milliseconds to 26 nanoseconds: how a $20 eBay SFP module beat my NT

https://austinsnerdythings.com/2026/04/26/ptp-osa5401-26-nanoseconds-raspberry-pi/
1•fanf2•10m ago•0 comments

How to run a local coding agent with Gemma 4 and Pi

https://patloeber.com/gemma-4-pi-agent/
1•mariuz•11m ago•0 comments

Top Negotiation Skills

https://www.pon.harvard.edu/daily/negotiation-skills-daily/top-10-negotiation-skills/
1•lucidplot•11m ago•0 comments

Bohu Laser Facility

https://en.wikipedia.org/wiki/Bohu_laser_facility
1•lumax•12m ago•0 comments

I built a WordPress plugin that generates 1000 SEO pages in minutes

https://www.indiehackers.com/post/i-built-a-wordpress-plugin-that-generates-100-seo-pages-in-minu...
1•codefreex•12m ago•0 comments

Trump administration to pay companies to walk away from US offshore wind leases

https://apnews.com/article/trump-offshore-wind-energy-climate-interior-02a1fa04b750809bbe035a7025...
1•geox•15m ago•0 comments

Show HN: The newsroom that runs itself; hiring AI Journalists [TokenToday]

1•gnapapp•17m ago•0 comments

Mitigating Belief Inertia via Active Intervention in Embodied Agents

https://arxiv.org/abs/2604.17252
2•MemTensor•23m ago•1 comments

Ruby Concurrency: What Happens

https://paolino.me/ruby-concurrency-what-actually-happens/
2•earcar•24m ago•0 comments

Height Hunt

https://adamtownsend.com/heighthunt/
1•thip•27m ago•0 comments

Enterprise Solutions for Global AI Search Visibility: A Practical Guide

https://dageno.ai
1•timdageno•27m ago•0 comments

Using group theory to explore the space of positional encodings for attention

https://blog.janestreet.com/using-group-theory-to-explore-positional-encodings-attention/
1•ingve•28m ago•0 comments

Technical Overview of an AI RAG System with React, Python, Laravel, Redis

https://gist.io/@alessandrofuda/c0513948003265e3548f288fef0e8ea1
1•aledevv•29m ago•0 comments

Show HN: Bumpy – versioning/changelog tool, fixed 120 open changesets issues

https://github.com/dmno-dev/bumpy
2•theozero•32m ago•0 comments

Show HN: I got tired of hand-syncing AI coding rules across four tools

https://github.com/sampleXbro/agentsmesh
1•samplexBro•34m ago•0 comments

Show HN: I built a way to see if your SDK is AI-friendly

1•nguyenhu•39m ago•0 comments

Building a Threadiverse Community Platform

https://fedify.dev/tutorial/threadiverse
1•dahlia•40m ago•0 comments

Australia threatens tech companies with 2.25% tax if they don't pay publishers

https://www.theregister.com/2026/04/28/australia_news_bargaining_incentive/
3•defrost•44m ago•1 comments

How Do Perpetual Futures Differ from Spot Trading in Crypto?

https://www.bitdeal.net/cryptocurrency-exchange-development
1•harrisonrichrd•50m ago•0 comments

Meta prepares to undo acquisition of Singapore-based Manus after China ban

https://www.businesstimes.com.sg/international/global/meta-prepares-undo-acquisition-singapore-ba...
2•doppp•50m ago•0 comments

Freelancer for hire – full stack, ML, DevOps

1•Hopfield•52m ago•0 comments

Talos OS images are now bit-by-bit reproducible

https://github.com/siderolabs/talos/releases/tag/v1.13.0
1•matesz•53m ago•0 comments

I Use AI in 2026

https://fedepaol.github.io/blog/2026/04/25/how-i-use-ai-in-2026/
1•fedepaol•54m 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/