frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Running a full AI coding agent inside Cloudflare Durable Object

https://github.com/pawaca/dsh-edge
1•pawaca•1m ago•0 comments

Ask HN: Who's Building Small and Simple?

1•8by3•4m ago•0 comments

A Conversation with Cinematographer Vilmos Zsigmond

https://cinemasojourns.com/2026/08/22/a-conversation-with-cinematographer-vilmos-zsigmond/
2•jjgreen•5m ago•0 comments

Show HN: Pisesh, a zero-dependency TUI for finding and resuming Pi sessions

https://github.com/Blue-B/pisesh
1•blue-b•5m ago•0 comments

Brand Hype Has Existed Since the Bronze Age, Scientists Discover

https://www.404media.co/brand-hype-has-existed-since-the-bronze-age-scientists-discover/
1•Brajeshwar•7m ago•0 comments

Ask HN: Who's Building Small and Simple?

https://werkr.co.za/s/SFMyNTY.g2gDaAJhA3cDbmlsbgYAt_y4KaABYgABUYA.N-OUR_TJ-EnHPBpyC93dNsqjOWfSo-2...
1•8by3•7m ago•1 comments

Ex-Amazon VP: Why Bad Managers Don't Get Fired [video]

https://www.youtube.com/watch?v=76v7xbi_USc
1•adletbalzhanov•8m ago•0 comments

Good writing is obvious, not original

https://www.seangoedecke.com/good-writing-is-obvious-not-original/
1•tolerance•8m ago•0 comments

Nostr is an inclusive communication commons

https://nostr.org/
2•Bluestein•11m ago•0 comments

Ask HN: Is there an anti-mosquito system that actually works?

1•simonebrunozzi•15m ago•0 comments

You can't buy anything on these food delivery and shopping sites

https://www.cbc.ca/lite/story/9.7313588
3•colinprince•16m ago•1 comments

He Said He Was the Healthiest Man. Then Came a Diagnosis

https://www.nytimes.com/2026/08/21/us/bryan-johnson-biohacker-autoimmune-gastritis.html
2•whack•18m ago•1 comments

One Step Away from Terminators

https://www.ukrinform.net/rubric-ato/4155812-one-step-away-from-terminators.html
1•rwmj•18m ago•0 comments

Ante: Self-contained coding agent that lives in your terminal and self-organizes

https://docs.antigma.ai/
1•Bluestein•20m ago•0 comments

Chinese robot runs 100M sprint quicker than Usain Bolt's world record

https://www.theguardian.com/sport/2026/aug/22/chinese-robot-runs-100m-sprint-quicker-usain-bolt-w...
4•bookofjoe•20m ago•1 comments

We Need a New Science of Progress (2019)

https://www.theatlantic.com/science/archive/2019/07/we-need-new-science-progress/594946/
2•ronfriedhaber•22m ago•0 comments

Official RC2014 repository for hardware schematics / software

https://github.com/RC2014Z80/RC2014
1•Bluestein•23m ago•0 comments

The New MCP Roadmap

https://blog.modelcontextprotocol.io/posts/mcp-roadmap/
2•pentagrama•28m ago•0 comments

Reading List Hotkey: Save Web Pages to Apple Reminders Using Shortcuts App

https://rdamodar.com.np/thought/2026/08/2026-08-22-reading-list-hotkey/
1•fhcxvbdb•31m ago•0 comments

Fine-Grained Shader Validation in Three.js

https://ben3d.ca/blog/fine-grained-shader-validation-in-threejs
1•bhouston•32m ago•0 comments

A Kantian Critique of "Sorry" by Justin Bieber

https://decodingvibes.com/blog/a-kantian-critique-of-sorry-by-justin-bieber/
23•altmanaltman•35m ago•3 comments

A Most Comfortable Dead End

https://monokai.com/articles/a-most-comfortable-dead-end/
2•monokai_nl•37m ago•0 comments

Font League – new website typography

https://fontleague.com/
4•stephenkelman_•39m ago•1 comments

Show HN: A Ruby IDE running on a microcontroller

https://github.com/engneer-hamachan/area512
2•hamachang•41m ago•0 comments

I finally did it.Custom 4K screens with analog knobs,beautiful feedbadk fractals

https://www.youtube.com/watch?v=koDCabeh5kQ
2•thelightherder•43m ago•0 comments

The fun thing about Electron apps

https://yoavmoshe.com/blog/electron/
3•yoavm•44m ago•0 comments

Improving matrix multiplication exponent w. modern optimization and AlphaEvolve

https://arxiv.org/abs/2608.16884
2•theanonymousone•44m ago•0 comments

Are we cooked? Algorithms have rewired our language

https://www.npr.org/2026/08/21/g-s1-139147/are-we-cooked-algorithms-have-rewired-our-language
2•theanonymousone•46m ago•0 comments

AI Stock Research Assistant · Streamlit

https://ai-stock-research-kiaan.streamlit.app
2•KiaanKothari•47m ago•0 comments

Show HN: Forst – migrate TypeScript back ends to Go

https://forst-lang.org/docs
3•haveyaseen•47m 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/