frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Play Anthakshari Online

https://anthakshari.ai/
1•hareeshimo•1m ago•0 comments

Israeli minister calls for killing '30 to 40′ Palestinians in Gaza nightly

https://www.aljazeera.com/news/2026/8/16/israeli-minister-calls-for-killing-30-to-40-palestinians...
1•LAC-Tech•6m ago•0 comments

Prolly: A content-addressed ordered map built on prolly trees

https://github.com/crabbuild/prolly
1•forhappy•8m ago•0 comments

Show HN: Continuum – Financial simulations for DIY multimillionaires

https://continuum-app.xyz/
1•charleswcho•10m ago•1 comments

Wallflower – A Social Reader

https://thewallflower.app/about
1•tldrthelaw•19m ago•0 comments

Rhombus 1.1 is now available

https://blog.racket-lang.org/2026/08/rhombus-v1.1.html
2•spdegabrielle•20m ago•1 comments

Social Processes and Proofs of Theorems and Programs (1979)

https://dl.acm.org/doi/10.1145/359104.359106
3•lioeters•31m ago•0 comments

Harvestman Spider with a 'Black Bunny' Head Captured on Video

https://allthatsinteresting.com/bunny-harvestman-spider
1•thunderbong•31m ago•0 comments

Applying a photosynthetic process to treat "dry eye"

https://www.science.org/content/blog-post/taking-tip-plants-eyes
1•gumby•33m ago•0 comments

Show HN: Convertix – Fast, 100% in-browser media and QR tools

https://convertix-fast-imager-co.blogspot.com/p/blog-page.html
1•convertix123•36m ago•0 comments

The CLI your AI agent drives to manage your knowledge graph

https://useokf.com/
1•jhgaylor•36m ago•0 comments

The System from Nowhere

https://mail.cyberneticforests.com/the-system-from-nowhere/
1•peterm4•42m ago•0 comments

The Life and Death of Direct File [pdf]

https://www.ischool.berkeley.edu/sites/default/files/vinton_report_5.pdf
21•ronbenton•50m ago•0 comments

Hawaii flooded by Lala with thousands without power [video]

https://www.youtube.com/watch?v=gKzA4zDHyUc
1•Bender•51m ago•0 comments

The federal keyword lists that canceled billions in research funding

https://www.highereddive.com/news/inside-the-federal-keyword-lists-that-canceled-billions-in-rese...
7•walrus01•54m ago•0 comments

Harnessing the Power of Slop Driven Development

https://hank.bond/posts/harnessing-the-power-of-slop-driven-development/
2•hankbond•59m ago•1 comments

Kindred Sciences Unveils First Dogs Genetically Edited to Remove Dog Allergen

https://www.businesswire.com/news/home/20260805451804/en/Kindred-Companion-Sciences-Unveils-First...
3•ca98am79•59m ago•0 comments

TSMC Uses Old Fabs to Make New Chips [video]

https://www.youtube.com/watch?v=cDxVYQrxeiQ
6•eig•1h ago•2 comments

Webmaster a Manifesto for Everyone

https://brennan.day/webmaster-a-manifesto-for-everyone/
8•OuterVale•1h ago•2 comments

Conversion of CO2 to CO by Solvated Electrons in Molten Salts

https://pubs.acs.org/aelccp/article/11/8/5297/5243806/
1•car•1h ago•0 comments

Reticulum – Decentralized Mesh Network

https://reticulum.network/
3•sudo_cowsay•1h ago•1 comments

The Chauffeur Problem

https://engines.egr.uh.edu/episode/1495
1•leowoo91•1h ago•0 comments

Can you fit a song into a QR code? [YouTube]

https://www.youtube.com/watch?v=w5hIdQcUnRE
2•qingcharles•1h ago•0 comments

Show HN: A visual ping utility that is pretty

https://source.tube/ache/rusty-ping
1•_ache_•1h ago•0 comments

With OpenRouter, Is Stripe Becoming the Amazon of AI

https://github.com/getlago/lago/wiki/With-OpenRouter,-is-Stripe-becoming-the-Amazon-of-AI
2•AnhTho_FR•1h ago•2 comments

The Metabase SQLi: Exploited in the Wild

https://www.wiz.io/blog/inside-the-metabase-sqli-exploited-in-the-wild
1•ghiculescu•1h ago•0 comments

Qwen 3.8 27B is excellent, but it defaults to overthinking things

https://simonwillison.net/2026/Aug/16/qwen-38-27b/
5•bilsbie•1h ago•2 comments

Slop Rolls Downhill

https://nadeeshacabral.com/posts/slop-rolls-downhill/
6•lunarcave•1h ago•2 comments

Context for Claude – give eyes and ears to your agents

https://www.contextforclaude.com/
4•Archit_lal_•1h ago•2 comments

Open-source Shopify Hydrogen theme with RTL, internationalization, seeding CLI

https://github.com/ozgursagiroglu/shopify-hydrogen-fashion-theme
1•ozgursagiroglu•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•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/