frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GitHub Stacks in Jujutsu

https://alan.norbauer.com/articles/github-stacks-with-jujutsu/
1•birdculture•2m ago•0 comments

Conjecscore

https://conjecscore.org/
1•thyrgle•2m ago•1 comments

Man attempts to prompt-inject court, fails

https://arstechnica.com/tech-policy/2026/08/suspecting-court-of-using-ai-man-injected-prompts-in-...
1•madaxe_again•4m ago•0 comments

OKLCH in CSS: why we moved from RGB and HSL

https://evilmartians.com/chronicles/oklch-in-css-why-quit-rgb-hsl
2•Trattue•5m ago•0 comments

Elon Musk mocks locals concerned about data center water use

https://twitter.com/essenviews/status/2088217508725559402
2•grandpajoey•6m ago•0 comments

Porkbun Forces ID Verification

https://www.reddit.com/r/selfhosted/comments/1rblh8n/porkbun_forces_id_verification/
4•trinsic2•7m ago•1 comments

Wikipedia: List of predictions for autonomous Tesla vehicles by Elon Musk

2•glaslong•7m ago•0 comments

Show HN: Embassia – LLM Search Console – Web crawlers talk to your site's agent

https://embassia.com
1•ramazanaliakdas•8m ago•0 comments

America's largest home lender falls out of the hamster wheel

https://www.ft.com/content/0a4794fa-7112-436f-a311-9077fcba14b8
1•petethomas•13m ago•0 comments

Show HN: Open-Source Paper

https://github.com/caffeinum/tracepaper
1•bykhun•17m ago•0 comments

Show HN: A sandbox for AI agents using nothing but Go's standard library

https://towardsdev.com/i-built-an-ai-agent-sandbox-from-the-go-standard-library-350ecac5d578?sk=f...
1•cheikhdev•20m ago•0 comments

Bill Gates' daughter Phoebe accused of 'cookie stuffing' scheme

https://nypost.com/2026/08/12/business/bill-gates-daughter-phoebe-accused-of-cookie-stuffing-sche...
5•randycupertino•20m ago•2 comments

Pikuma: SIMD in the 90s: Programming Intel's Pentium MMX

https://pikuma.com/blog/programming-intel-pentium-mmx-simd
1•rbanffy•21m ago•0 comments

Compilable Wishes

https://opentheory.substack.com/p/compilable-wishes
1•eatitraw•22m ago•0 comments

Vesta, adaptive ontology for Claude Code

https://github.com/kanjani-ai-research/Vesta
1•aug2uag•22m ago•1 comments

AI runs here. Not out there

https://osaurus.ai
1•ALLTaken•23m ago•0 comments

Ukrainian drones wipe out US tank brigade in live war game

https://arstechnica.com/gadgets/2026/08/ukrainian-drones-wipe-out-entire-us-tank-brigade-in-live-...
2•rbanffy•24m ago•0 comments

Show HN: AlmondLab – Virtual lab and Stage 1 report for salt-tolerant crops

https://consigcody94.github.io/saltwater-mini-almond/
1•sentinelowl•27m ago•0 comments

Are You a Human?

https://www.newyorker.com/magazine/2026/08/17/are-you-a-human
1•petethomas•29m ago•0 comments

Qwen 3.8 27B vs. Nemotron 3.5 vs. Muse Glimmer on an RTX 5090

https://kgptalkie.com/tutorials/generative-ai/qwen-3-8-27b-vs-nemotron-3-5-vs-muse-glimmer
1•2a0c40•30m ago•0 comments

Talking with Synopsys about the Physics of Chip Design at DAC 2026

https://chipsandcheese.com/p/talking-with-synopsys-about-the-physics
2•rbanffy•33m ago•0 comments

Lightweight Task agent – checkable receipts

https://github.com/GCLprimary/PAT
1•wwes369•34m ago•1 comments

Luigi Mangione pleads guilty to federal stalking charges in killing of UHC CEO

https://apnews.com/article/luigi-mangione-plea-unitedhealthcare-ceo-3b8a5bb41589c9f5f4775dba2beea66f
2•cagey•34m ago•0 comments

The online shopping trend where you buy nothing

https://restofworld.org/2026/south-korea-shopping-trend/
2•herbertl•40m ago•0 comments

YeshiAI – AI for spiritual practice across five religious paths

https://yeshi.ai/
1•eli_genc•40m ago•0 comments

R-rated director's cut of X-Files movie released

https://arstechnica.com/culture/2026/08/r-rated-directors-cut-of-x-files-film-restores-chris-cart...
3•nate•41m ago•0 comments

'Rehabilitated' postwar Germany's government was full of Nazis, study reveals

https://www.timesofisrael.com/study-reveals-how-rehabilitated-postwar-west-germanys-government-wa...
5•kome•45m ago•2 comments

I built an autonomous rover from scratch in my mom's basement

https://twitter.com/SohailMSayed/status/2088365274768572681
1•okincilleb•45m ago•1 comments

UK Bans Disposable BBQs

https://www.independent.co.uk/news/uk/home-news/disposable-bbq-ban-burnham-wildfires-heatwave-b30...
5•denysonique•49m ago•1 comments

Show HN: A simple, powerful, and cheaper email verification API

https://emailverifier.dev/
1•usamaejaz•49m ago•1 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/