frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The State of Agentic Memory

https://medium.com/@majid.fekri/the-state-of-agentic-memory-497d687e0488
1•supportm•29s ago•0 comments

Jay Miner on the History of the Amiga [video]

https://www.youtube.com/watch?v=nRHQHZhbocw
1•doener•4m ago•1 comments

Show HN: Self-Hosted Inference for Agents

https://github.com/superlinked/sie
1•rafaepta•5m ago•1 comments

Rogue AI agent hacks gym to get its user a spot in a popular class

https://www.the-independent.com/tech/security/ai-agent-hacks-gym-openclaw-anthropic-b3030267.html
1•mellosouls•5m ago•0 comments

An Approach to Technical AGI Safety and Security, DeepMind (GDM)

https://gdmalignment.substack.com/p/agi-safety-and-alignment-at-google
1•aigalaxiome•6m ago•0 comments

The lattice of sets of natural numbers is rich

https://jdh.hamkins.org/the-lattice-of-sets-of-natural-numbers-is-rich/
1•benmandrew•7m ago•0 comments

HLSmith: An Expert-Guided Agentic Framework for C/C++-to-HLS Translation

https://arxiv.org/abs/2608.06791
1•rbanffy•8m ago•0 comments

Web Design for Terminal Browsers

https://en.andros.dev/blog/70d817e8/web-design-for-terminal-browsers/
1•andros•9m ago•0 comments

XenDroid – Android Xbox 360 Emulator

https://github.com/rfandango/XenDroid
1•Topfi•10m ago•0 comments

AI's profits are 'being funded by investors rather than earned from customers

https://fortune.com/2026/08/10/torsten-slok-ai-profit-margins-capex-oracle/
5•Anon84•11m ago•0 comments

Call Stack Diffs

https://oskrim.github.io/engineering/2026/08/02/call-stack-diffs.html
1•oskrim•12m ago•0 comments

What Is Docker, and What It Silently Replaced

https://fagnerbrack.com/what-is-docker-and-what-it-quietly-replaced-602ceb3c9205
1•fagnerbrack•12m ago•0 comments

How to Use Podman for Home Lab Setup

https://oneuptime.com/blog/post/2026-03-18-use-podman-home-lab-setup/view
2•speckx•13m ago•1 comments

How to Improve Your First Principles Thinking Skills

https://www.philmckinney.com/how-to-improve-your-first-principles-thinking-skills/
1•fagnerbrack•13m ago•0 comments

A Growing Threat: The Anti-Rights Movement in the UK (By Amnesty International)

https://archive.org/details/report-a-growing-threat-the-anti-rights-movement-in-the-uk-july
1•latexr•14m ago•0 comments

How to Overcome Confirmation Bias

https://www.philmckinney.com/how-to-overcome-confirmation-bias/
1•fagnerbrack•14m ago•0 comments

The BS That Is Generated by Wellness Apps

https://theskepticalcardiologist.substack.com/p/on-the-massive-bs-that-is-generated
1•elo2000•15m ago•0 comments

Failing After Success

https://idiallo.com/blog/failing-after-success
1•vcfgdev•15m ago•0 comments

OpenAI / Hugging Face Hack

https://smlx.dev/posts/openai-huggingface/
1•frizlab•18m ago•0 comments

Amazon DynamoDB now supports real-time vector search at any scale

https://aws.amazon.com/blogs/aws/amazon-dynamodb-now-supports-real-time-vector-search-at-any-scale/
1•root-parent•19m ago•0 comments

Using AI to analyze life patterns

https://vkrakovna.wordpress.com/2026/07/30/using-ai-to-analyze-life-patterns/
1•surprisetalk•19m ago•0 comments

China is now the world's greatest oil power

https://www.economist.com/finance-and-economics/2026/08/09/china-is-now-the-worlds-great-oil-power
2•bookofjoe•20m ago•1 comments

Primus AI Researcher – Free

https://lab.cloud/
1•anonymous_llama•20m ago•0 comments

Colombia Hit by Magnitude 7.4 Quake, Widespread Damage Reported

https://www.bloomberg.com/news/articles/2026-08-10/colombia-hit-by-strong-earthquake-that-shakes-...
4•alephnerd•22m ago•0 comments

Foxes, Lions, and LLMs: The Machiavellian Game of Tech Hiring

https://twitter.com/0xb33bs/status/2086809075631763920
2•0xbeebs•22m ago•0 comments

AI Fortunes Are Reviving an Old Debate About Private Power

https://ai-updates.net/ai-fortunes-philanthropy-private-power/
2•ashurandi•23m ago•0 comments

The Final Third Football

https://thefinalthirdfootball.substack.com/
1•Africanway•24m ago•0 comments

Humanising LLM Outputs Is Dumb

https://kuber.studio/blog/Reflections/Humanising-LLM-Outputs-is-Actually-Dumb
2•kuberwastaken•25m ago•0 comments

Archer to Acquire Wisk, Insitu, and SkyGrid from Boeing

https://archer.com/news/archer-to-shape-physical-ai-future-of-aerospace-and-defense-with-acquisition
1•kejaed•26m ago•0 comments

The untold story of a Russian-born federal contractor killed by the FBI

https://www.cnn.com/2026/08/10/us/fbi-shooting-russia-ukraine-spy-vis-invs
3•OutOfHere•27m ago•2 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/