frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

America Needs to Build More Housing

https://www.nytimes.com/interactive/2026/05/18/opinion/affordable-housing-america.html
1•michaelrkn•3m ago•0 comments

Flipper One – we need your help

https://blog.flipper.net/flipper-one-we-need-your-help/
1•sandebert•5m ago•0 comments

Tech researchers are suing the Trump administration over the future of online s

https://www.technologyreview.com/2026/05/21/1137632/lawsuit-trump-administration-online-safety-co...
2•joozio•6m ago•0 comments

Lost Images from the 1945 Trinity Nuclear Test Restored

https://spectrum.ieee.org/trinity-nuclear-test
2•pseudolus•6m ago•0 comments

One opinionated path from what is money? to I run my own Bitcoin node

https://www.learnbitcoin.com/journey
2•granya•7m ago•0 comments

Necropolis in Spain is forcing rethink of who built Europe's first great tombs

https://sciencex.com/news/2026-05-year-necropolis-central-spain-radical.html
2•pseudolus•7m ago•0 comments

Python is weird – Maciej Kowalski

https://kowal.dev/blog/python-is-weird
2•rbanffy•8m ago•1 comments

3.125-Bit LLM quantization bypassing tensor cores

https://blog.djellalmohamedaniss.workers.dev/posts/data-free-3bit-quantization/
2•dmaniss•13m ago•0 comments

Galviq

https://galviq.com
2•alediemmee•14m ago•0 comments

Dimster, a performance benchmarking tool for Apache Kafka

https://jack-vanlightly.com/blog/2026/5/20/introducing-dimster-a-performance-benchmarking-tool-fo...
2•rmoff•14m ago•0 comments

Reviewing Last Decade's Predictions for 2026

https://micahblachman.beehiiv.com/p/reviewing-last-decade-s-predictions-for-2026-part-1
2•subdomain•15m ago•0 comments

Wati alternatives compared by real all-in cost at 2k conversations/month

https://wexio.io/blog/wati-alternatives
2•Puvvl•16m ago•0 comments

Bun Isolated Installs

https://bun.com/docs/pm/isolated-installs
2•ankitg12•16m ago•0 comments

Earth is now heating up twice as fast as in previous decades

https://www.newscientist.com/article/2518362-earth-is-now-heating-up-twice-as-fast-as-in-previous...
2•Anon84•16m ago•0 comments

Insurance Pricing – compare TabPFN 3.0 vs. classic ML

https://oleksandrruppelt.substack.com/p/insurance-pricing-with-tabpfn-30
2•pplonski86•22m ago•0 comments

Gribouille: A Grammar of Graphics for Typst

https://mickael.canouil.fr/posts/2026-05-20-gribouille-grammar-of-graphics-for-typst/
2•mcanouil•24m ago•0 comments

Denmark's wind and solar investments shield it from global energy turmoil

https://www.pbs.org/newshour/show/how-denmarks-wind-and-solar-investments-shield-it-from-global-e...
3•vrganj•24m ago•0 comments

Show HN: A searchable archive of 500 historical medical curiosities

https://www.thomas-morris.uk/medical-curiosities-archive/
3•mrtndavid•25m ago•0 comments

IBM invented semiconductor manufacturing automation

https://spectrum.ieee.org/semiconductor-fabrication
2•rbanffy•29m ago•0 comments

AI Can Seem More Human Than Real Humans in a Classic Turing Test, Study Finds

https://today.ucsd.edu/story/ai-can-seem-more-human-than-real-humans-in-a-classic-turing-test-stu...
3•giuliomagnifico•32m ago•1 comments

Imec Semiconductor Technology Roadmap: CFETs in 2033

https://spectrum.ieee.org/semiconductor-technology-roadmap
3•rbanffy•33m ago•0 comments

Async Python client for private DeepSeek API

https://github.com/boykopovar/aiodeepseek
2•boykopovar•36m ago•0 comments

Lessons I Learned from Creating Searx

https://hister.org/posts/lessons-i-learned-from-creating-searx
8•mstef•38m ago•1 comments

Built a live multi-agent AI operations workspace for software engineering teams

https://realtechsolutions.work.gd/
2•MunangiwaR•40m ago•0 comments

QuickSilver Pro – OpenAI-Compatible Platform for DeepSeek V4 and Qwen

https://quicksilverpro.io/
2•charlei•40m ago•1 comments

Book on Truth in the Age of A.I. Contains Quotes Made Up by A.I

https://www.nytimes.com/2026/05/19/business/media/future-of-truth-ai-quotes.html
2•andsoitis•40m ago•0 comments

Pi creator removed from OpenClaw's GitHub organization

https://twitter.com/badlogicgames/status/2057391656379269272
2•rob•41m ago•0 comments

Gillette's Metropolis. A Razor Dystopia

https://passingstrangeness.wordpress.com/2026/05/12/gillettes-metropolis/
2•nephihaha•44m ago•0 comments

KiroGraph: Local code knowledge graph for AI, optimized for token efficiency

https://github.com/davide-desio-eleva/kirograph
2•ddesio•45m ago•0 comments

The three layers: browser, index, AI – what happens when you own all three

https://github.com/the-ai-coop/open-letter
2•the-ai-coop•46m 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/