frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A Collectivist, Economic Vision for AI

https://cacm.acm.org/research/a-collectivist-economic-vision-for-ai/
1•visha1v•3m ago•0 comments

Automated researchers can reliably mitigate alignment failures

https://www.anthropic.com/research/automated-researchers-mitigate-alignment-failures
1•EvgeniyZh•8m ago•0 comments

Show HN: Hikaru – image compression that hits an exact file size, no slider

https://hikarulabs.xyz
1•CFBL•9m ago•0 comments

The Ultimate Dream

https://blog.br11k.dev/2026-08-29-the-ultimate-dream
1•konovalov-nk•13m ago•1 comments

Git.kernel.org Is "Interesting" to Crawlers

https://people.kernel.org/monsieuricon/creepy-crawlies
1•sohkamyung•14m ago•1 comments

Show HN: Snippety – a native text expander for Mac and iPhone

https://snippety.app
1•snippety•14m ago•0 comments

We Ran Code Inside Fortune 500s Using Files They Published for AI Agents

https://medium.com/@alonhertz1/data-became-code-we-ran-code-inside-fortune-500s-using-files-they-...
3•nizbit•15m ago•1 comments

Does Computer Science Need Computers?

https://www.quantamagazine.org/does-computer-science-need-computers-20260828/
1•rbanffy•16m ago•0 comments

You Know GDPR Is Good Based on Who Hates It

https://matduggan.com/you-know-gdpr-is-good-based-on-who-hates-it/
2•latexr•19m ago•0 comments

Making $2.7M a Year Selling Ice in NYC [video]

https://www.youtube.com/watch?v=iGejCONYVjA
1•binyu•19m ago•0 comments

I ran a little experiment: could I make agent memory deterministic

https://www.lorekit.io/blog/agent-memory-data-model
1•mthines•20m ago•0 comments

Adversarial Interoperability

https://www.eff.org/deeplinks/2019/10/adversarial-interoperability
1•orphereus•25m ago•0 comments

"Lead through code" – engineering managers getting squeezed

https://www.youtube.com/watch?v=MPVmV-6O5to
1•lifeisstillgood•26m ago•0 comments

Show HN: Player vs. Computer

https://github.com/Rubinoslaw/Player-vs-Computer/
1•PolishDevelop22•29m ago•0 comments

LuaDB: Lightweight, embeddable, zero-dependency RDBMS written 100% in pure Lua

https://github.com/jncastilho/luadb
1•thunderbong•30m ago•0 comments

How bicycle coaster brakes work (2018)

https://www.dougbarnesauthor.com/2018/06/how-bicycle-coaster-brakes-work.html
1•Vedor•32m ago•0 comments

Rhine Group: Draghi, Collison unite experts for EU competitiveness

https://en.ilsole24ore.com/art/draghi-and-collison-stripe-set-to-boost-growth-in-europe-the-rhine...
3•Lucasoato•38m ago•0 comments

InferenceFS: Never worry about data again (Again)

https://github.com/philipl/inferencefs/
1•linkdd•39m ago•0 comments

Breakscale: Distributed Systems Design Simulator

https://github.com/xevrion/breakscale
1•handfuloflight•41m ago•0 comments

Muraqib, free nightly QA that lets Claude open a fix PR when tests fail

https://github.com/holistis/muraqib
1•Bugintelligence•54m ago•0 comments

Show HN: AgentBridge – Let one AI think while another AI writes the code

https://github.com/IndexFlowing/AgentBridge
2•mandarinclips•1h ago•1 comments

Nepal's flood damage may cost up to a tenth of economy to rebuild

https://www.reuters.com/world/china/nepal-needs-least-4-billion-rebuilding-finance-minister-says-...
2•geox•1h ago•0 comments

Pentagon's blacklisting of Anthropic was unlawful, US judge rules

https://www.theguardian.com/technology/2026/aug/28/us-court-rules-pentagon-anthropic-ban-illegal-...
2•vinni2•1h ago•0 comments

Walkable Cities

https://nartier.itch.io/walkable-cities
3•tehsauce•1h ago•0 comments

Some GitHub bounty repos are honeypots that farm free work from AI agents

https://oactodev.github.io/ninety-quid/report/
1•ninetyquid•1h ago•0 comments

Five ways 3D printing is improving lab work

https://www.nature.com/articles/d41586-026-02535-z
2•zeristor•1h ago•0 comments

Books Turned into Podcast Series

https://bookdialogues.com/home
1•jasmeet0817•1h ago•1 comments

Researcher Tricked Claude, Codex and Hermes into Running Malware

https://startupfortune.com/researcher-alon-hertz-tricked-claude-codex-and-hermes-into-running-mal...
12•CuriousLLM•1h ago•0 comments

SynapticChain: Single-wallet concurrency record (5,307 TPS from 1 key in Rust)

https://explorer.synapticchain.xyz
1•abdulshabazz•1h ago•0 comments

I built a financial visibility layer for multi-model AI applications

https://credlier.com/
1•dcriglerd•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/