frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

OpenAI has, in practice, abandoned its Stargate JV

https://www.ft.com/content/664a57e2-dffa-401e-81ad-55129ffb0e89
1•cwwc•1m ago•0 comments

AI reads your Google Reviews and builds a landing page for your business

https://favurl.com/
2•valon•1m ago•0 comments

Mechatronic System Design(2023)

https://ocw.tudelft.nl/courses/mechatronic-system-design/
1•num42•2m ago•0 comments

PocketOS lost their prod DB in 9s. The rules to prevent it were in the prompt

https://github.com/exospherehost/failproofai
2•nikita-ag•2m ago•0 comments

Phi Browser – local-first memory and AI that looks like Arc

https://phibrowser.com
2•alphato_o•2m ago•0 comments

The Building Block Economy

https://mitchellh.com/writing/building-block-economy
1•tie-in•2m ago•0 comments

Pen Can Only Be Stolen

https://www.theoldghosts.com/stories/the-best-pen-can-only-be-stolen/
1•speckx•3m ago•0 comments

How HN: A natural language calorie tracker that logs to Google Sheet in terminal

https://github.com/csawai/calorie-tracker
1•csawai•5m ago•0 comments

Search Isn't Going Anywhere

https://ossama.is/writing/search
1•ossa-ma•7m ago•0 comments

OpenObserve Raises $10M Series A

https://openobserve.ai/blog/series-a-announcement/
1•prabhatsharma•8m ago•0 comments

GraphQL wasn't made for AI. But it might be one of the best ways to talk to it

https://chillicream.com/blog/2026/04/22/semantic-introspection/
1•pascal_senn•10m ago•0 comments

Finding and Fixing 24 CVEs in WeKan

https://aisle.com/blog/finding-and-fixing-24-cves-in-wekan-with-aisles-analyzer
1•mmsc•10m ago•0 comments

Warp's gambles its AI tool going open source will help it take on closed rivals

https://thenewstack.io/warp-open-source-client/
1•CrankyBear•11m ago•1 comments

CKKS – Polynomials, the Canonical Embedding, and Encoding

https://www.jeremykun.com/2026/04/29/ckks-polynomials-the-canonical-embedding-and-encoding/
1•ibobev•12m ago•0 comments

What if you tried hard?

https://aaronfrancis.com/2024/what-if-you-tried-hard-dac139a5
1•_vaporwave_•12m ago•0 comments

Stripe link-CLI: Secure one-time-use payment credentials from a Link wallet

https://github.com/stripe/link-cli
2•Olshansky•15m ago•0 comments

Opus 4.7 knows the real Kelsey

https://www.theargumentmag.com/p/i-can-never-talk-to-an-ai-anonymously
3•ilamont•16m ago•0 comments

Why JSON Schema matters more than ever in the age of generative AI

https://thenewstack.io/json-schema-ai-reliability/
1•Brajeshwar•16m ago•0 comments

Show HN: Crforest – Competing-risks RSF in Python, 6× faster than R's rfSRC

https://github.com/sunnyadn/crforest
1•sunnyadn•20m ago•0 comments

Windows K2 with faster start menu, less ads and AI, to win back user trust

https://www.windowscentral.com/microsoft/windows-11/what-is-windows-k2-everything-you-need-to-kno...
3•workfromspace•21m ago•2 comments

I got stood up by an AI agent, and tracked down its human owner in China

https://restofworld.org/2026/ai-agent-china-one-person-company/
4•speckx•22m ago•0 comments

Why a recent supply-chain attack singled out security firms Checkmarx and Bitwa

https://arstechnica.com/information-technology/2026/04/why-a-recent-supply-chain-attack-singled-o...
1•joozio•23m ago•0 comments

Ghost is now a digital public good

https://ghost.org/changelog/digital-public-good/
2•cdrnsf•23m ago•1 comments

The Design of High Performance Mechatronics(2020)

https://annas-archive.gl/md5/724e29591bb37ff0944399da5713ed77
1•num42•23m ago•1 comments

Give First, Build Right with Eric Ries

https://feld.com/archives/2026/04/give-first-build-right-with-eric-ries/
2•wslh•24m ago•0 comments

Tindie Now Owned by EETree

https://blog.adafruit.com/2026/04/29/tindie-is-back-online-and-now-owned-by-eetree-llc-a-suzhou-f...
1•abetusk•24m ago•1 comments

Address by King Charles III Before the U.S. Congress

https://brucebartlett.substack.com/p/address-by-king-charles-iii-before
1•zdw•25m ago•0 comments

A New Drug Concept to Treat Obesity and Type 2 Diabetes

https://idw-online.de/en/news870041
2•geox•25m ago•0 comments

The Emancipation of the Russia's Serfs, Part I: The Gift the Cost Everything

https://russianartandempire.substack.com/p/the-emancipation-of-russias-serfs
2•jerrybmarchant•26m ago•0 comments

Laws of UX

https://lawsofux.com/
3•bobbiechen•27m ago•0 comments
Open in hackernews

Automatically add missing "async/await" keywords to your TypeScript code

https://github.com/stanNthe5/typescript-autoawait
7•theThree•12mo 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/