frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Multistack 1.0 – Lightweight TUI for orchestrating coding agents

https://crates.io/crates/multistack/1.0.0#1.0.0
1•gidellav•2m ago•0 comments

Zerostack 1.5 – Lightweight Unix-inspired coding agent

https://crates.io/crates/zerostack/1.5.0#1.5.0
1•gidellav•2m ago•0 comments

Show HN: VibeKnow – content-to-video agent using Remotion

https://vibeknow.ai/
1•xutangly•4m ago•0 comments

Donate Agent Traces

https://huggingface.co/spaces/trace-commons/web
1•simon-inta•4m ago•0 comments

Magic Buffers and io_uring Registered Buffers

https://www.mindfruit.co.uk/posts/2025/10/magic-buffers-and-io-uring-write-fixed/
1•tosh•6m ago•0 comments

Alt-Tab Creates Background Service After Uninstall

https://github.com/lwouis/alt-tab-macos/issues/5758
1•0x616e677279•9m ago•0 comments

Show HN: 10k moving agents in Godot using GDScript

https://vav-labs.com/blog/moving-10000-agents-in-godot/
1•Vav-Labs•10m ago•0 comments

Writing books at the push of a button (Philip M. Parker) [video]

https://www.youtube.com/watch?v=m8WuGKyBR90
1•seren4321•10m ago•0 comments

Sustainability requires protecting finite resources, not optimizing consumption

https://zenodo.org/records/20596148
1•ErystelaThevale•11m ago•0 comments

Show HN: CefSwift, a SwiftUI-first wrapper around Chromium Embedded Framework

https://github.com/Rajaniraiyn/CefSwift
1•rajaniraiyn•11m ago•0 comments

Skill to Create Flashcards

https://getspace.app/blog/flashcards-skill
1•friebetill•13m ago•1 comments

Four-Day Week Could Transform Employment Access for Disabled Workers

https://www.disabilityrightsuk.org/news/four-day-week-could-transform-employment-access-and-inclu...
1•robtherobber•14m ago•0 comments

The Window Has Closed

https://twitter.com/i/status/2066332670817456584
2•Michelangelo11•15m ago•0 comments

How to Write Better Git Commit Messages with AI

https://theaileverageweekly.com/posts/how-to-write-better-git-commit-messages-with-ai.html
1•talvardi7•16m ago•1 comments

Recycled phone clusters build low-cost data centers with strong core performance

https://www.tomshardware.com/desktops/servers/researchers-recycle-old-phones-and-cluster-them-int...
1•maxloh•16m ago•0 comments

Show HN: Chess rankings based on checkmates, positions, and not just ELO

https://chessranks.net/
1•brkvdn•17m ago•0 comments

Interactive Tokamak Plasma Simulator

https://www.fusionsimulator.io/
2•dalbin•18m ago•0 comments

Why is cloning a Git repo much slower than downloading an equivalent-sized file?

https://twitter.com/jarredsumner/status/2066420871753838913
2•tosh•18m ago•0 comments

Agentic Coding for Maps

https://openmaps.dev
1•TreborSuek•18m ago•0 comments

Claude Code Is Dead

https://claude-code-is-dead.vercel.app/#5
1•gidellav•19m ago•0 comments

Free, BYOK resume optimizer to beat the ATS black hole

https://ats.myurll.in/
1•nookeshkarri7•21m ago•0 comments

Dwarf Fortress in the Browser

https://github.com/Sessa93/remote-df
1•andre9317•21m ago•1 comments

Everything's Fine. (2024)

https://arxiv.org/abs/2403.19891
1•hamburgererror•22m ago•0 comments

UK to ban social media for under-16s, following Australia's model

https://www.gov.uk/government/news/social-media-to-be-banned-for-under-16s-in-landmark-government...
2•chrishawes•24m ago•0 comments

AI Study Tools: A Comparison of Flashcard and Spaced Repetition Apps

https://longtermemory.com/b/ai-study-tools-comparison-2026/
1•aledevv•24m ago•0 comments

SimpleRelay, self-hosted SMTP relay for apps in a single Docker container

https://relay.mailtoinbox.vip
1•toinbox•24m ago•0 comments

Millions of Lifetimes

https://wilsoniumite.com/2026/06/15/millions-of-lifetimes/
3•Wilsoniumite•26m ago•0 comments

Agentic-fs, a cloud-hosted filesystem for AI agents

https://github.com/vivekkhimani/agentic-fs
1•vivekkhimani•27m ago•0 comments

War Is a Racket

https://en.wikipedia.org/wiki/War_Is_a_Racket
1•simonebrunozzi•27m ago•0 comments

LLM SoccerArena: Which model predicts the 2026 World Cup best?

https://llmsoccerarena.up.railway.app/
1•philipp1234•28m 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/