frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A Hustler's Way – Multiplayer mafia browser game with live economies

https://hustlersway-ten.vercel.app/login
1•YGhosty•1m ago•0 comments

The Fragility of Self-Improving Agents: Variance, Task Order

https://arxiv.org/abs/2608.18066
1•jdcaballerov•2m ago•0 comments

The search for consciousness inside LLMs

https://www.economist.com/interactive/briefing/2026/08/20/the-search-for-consciousness-inside-llms
1•samizdis•5m ago•0 comments

Oura rings unable to measure any signals needed to assess sleep quality / stages

https://techcrunch.com/2026/08/21/oura-faces-lawsuit-accusing-it-of-misleading-consumers-about-sl...
1•cwwc•6m ago•0 comments

The importance of teaching students what AI can't do

https://theconversation.com/the-importance-of-teaching-students-what-ai-cant-do-286100
5•billybuckwheat•9m ago•0 comments

DeepSeek's Price Increase Goes Beyond GPU Costs

https://blog.chuanxilu.net/en/posts/2026/08/deepseek-price-increase-beyond-gpu/
1•gmays•11m ago•0 comments

Books That Will Change the Way You Look at the World

https://ardentlyhuman.substack.com/p/20-books-that-changes-perspective
1•theanonymousone•17m ago•0 comments

Slide-deck.io: remixable decks and MCP so Claude returns a live URL (gantt too)

https://slide-deck.io/
1•mortondigital•19m ago•0 comments

Show HN: Oxbow, a dynamic tiling window manager for the Wayland compositor River

https://oxbow-wm.readthedocs.io/en/latest/
2•3L0C•21m ago•0 comments

If Machines Could Talk

https://american-innocence.com/p/if-machines-could-talk
2•AnnaGat•23m ago•0 comments

Mortal Limits, Humans Minds

https://american-innocence.com/p/mortal-limits-humans-minds
1•AnnaGat•24m ago•0 comments

Response of epigenetic aging biomarkers to longevity interventions in humans

https://www.nature.com/articles/s41591-026-04562-9
2•bookofjoe•24m ago•0 comments

Where are people finding GPU capacity?

2•adilhafeez•25m ago•1 comments

Tracking the cost of Donald Trump's tariffs

https://www.economist.com/interactive/trump-tariff-costs-tracker
3•vinni2•25m ago•0 comments

Delve

https://netwars.pelicancrossing.net/2026/08/21/delve/
1•ColinWright•26m ago•0 comments

My Ultimate Affordable Adventure Bikepacking Setup After 1 Year and 10.000kms

https://www.youtube.com/watch?v=MbBUZPkjopc
1•conferza•28m ago•0 comments

Yeast β-glucan supplementation supports immunometabolic anti-tumor responses

https://www.cell.com/cell-reports/fulltext/S2211-1247(26)00726-6
2•OutOfHere•32m ago•1 comments

The software buyout wave is upon us

https://www.semafor.com/article/08/20/2026/the-software-buyout-wave-is-upon-us
2•RickJWagner•32m ago•0 comments

Oral therapy protected mice from lethal radiation while sparing cancer treatment

https://medicalxpress.com/news/2026-08-oral-therapy-mice-lethal-cancer.html
2•mdp2021•33m ago•0 comments

Show HN: Locum – Grok Bot delegates tasks to Claude/Codex CLI on your machine

https://github.com/HarjjotSinghh/locum
1•harjjotsinghh•34m ago•0 comments

The Wright Brothers Didn't Learn by Crashing

https://julienreszka.com/blog/the-wright-brothers-didn-t-learn-by-crashing/
1•julienreszka•34m ago•1 comments

Show HN: Rmd – lightweight reminder daemon and CLI for Linux

https://github.com/PaulBunch/rmd
1•PaulBunch•38m ago•0 comments

Portland area leaders are dismantling a third of the homeless shelter system

https://www.oregonlive.com/politics/2026/08/portland-area-leaders-are-dismantling-a-third-of-the-...
2•petethomas•40m ago•0 comments

Show HN: Cloudflare Workers boilerplate for your bidding site

https://outbid-directory.lol/outbid-boilerplate
2•buildItN0w_•41m ago•1 comments

Ingo Swann

https://en.wikipedia.org/wiki/Ingo_Swann
2•softwaredoug•41m ago•0 comments

AutoBio – Biographical Pages

https://autobio.halilibrahimoezcan.com
1•OezMaster•42m ago•0 comments

The most important European act

https://0xksure.medium.com/the-most-important-european-act-f6f298ed693a
1•kristohb•42m ago•1 comments

The Developer's Identity Crisis: Europe's Compliant Wave

https://medium.com/@MirArshadTalpur/the-developers-identity-crisis-europe-s-compliant-wave-1de6b1...
2•Arshad-Talpur•43m ago•1 comments

Show HN: Built a CLI to find and disable telemetry for package.json dependencies

https://github.com/apvarun/no-telemetry
2•apvarun•47m ago•0 comments

GDOS64

https://bitbucket.org/mkgit64/area6510/src/master/releases/geos-gdos64/
1•erickhill•48m 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/