frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Christian Grothoff

https://www.ashoka.org/en-us/fellow/christian-grothoff
1•sigalor•1m ago•1 comments

Syncer – find a meeting time without the scheduling back-and-forth

https://syncerapp.vercel.app/
1•leo_proger•1m ago•0 comments

Repos and a Spend Cap

https://dev.profullstack.com/~anthony/blog/015-post.html
1•buffer_overlord•3m ago•0 comments

Chartbook 467 "Mad dogs and ": Heatwave economics – summer 2026

https://adamtooze.substack.com/p/chartbook-467-mad-dogs-and-heatwave
1•hackandthink•3m ago•0 comments

Evaluating AI Agents as Products

https://www.marble.onl/posts/evaluating_ai_product_quality.html
1•amarble•3m ago•0 comments

Invasive beetle is spreading across the world. It's costing economies billions

https://www.cnn.com/2026/08/13/science/shot-hole-borer-invasive-beetle-africa-intl
2•Tomte•5m ago•0 comments

Sky – Sales Copilot for technical founders

https://sky.bz/
1•Waseemkhalo•7m ago•0 comments

Treasury Orders Erasure of Domestic Ownership Records

https://home.treasury.gov/news/press-releases/sb0603
2•Jimmc414•7m ago•0 comments

Emacs canvas patch is on master

https://debbugs.gnu.org/cgi/bugreport.cgi?bug=80281
3•iLemming•8m ago•1 comments

AI is not just one bubble, strategist says – but a 'rolling sequence of bubbles'

https://fortune.com/2026/08/16/ai-bubble-sequence-saas-software-stocks-silver-prices-chipmakers/
1•pessimizer•9m ago•0 comments

Show HN: Bringing Back a Bulletin Board with (Mostly) Static HTML

https://www.folj.com/architecture.htm
1•nzealand•10m ago•0 comments

I've built a free, open-source local and remote memory system for agentw and CL

https://www.lorekit.io/blog/give-your-agent-a-memory
2•mthines•12m ago•1 comments

The Book Is a Book, Not Disembodied Information

https://nntaleb.substack.com/p/the-book-is-a-book-not-disembodied
1•CrypticShift•14m ago•0 comments

Interface Cheat Sheet

https://interfaces.dev/cheat-sheet
1•handfuloflight•14m ago•0 comments

Show HN: Local-first note taking web app powered by SQLite WASM – notem

https://notem.pages.dev/
1•hanhan22•18m ago•0 comments

Linux Storage 101: Drives, Partitions, and Mounts

https://labs.iximiuz.com/skill-paths/linux-storage-101
1•theanonymousone•19m ago•0 comments

Base-2 vs. base-e log-sum-exp mismatch silently corrupts attention in SGLang

https://twitter.com/advprop/status/2089046843690729620
1•apsys•23m ago•0 comments

Tell HN: Cloudflare silently injects its analytics when you switch nameservers

4•stagas•25m ago•0 comments

Show HN: Atlas.nvim – Review PRs Inside Neovim

https://github.com/emrearmagan/atlas.nvim
2•emrearmagan•25m ago•0 comments

Spectre on RISC-V Silicon [pdf]

https://lukasgerlach.me/publication/2026-speculative-execution-attacks-on-risc-v-silicon/riscv_sp...
1•Tomte•26m ago•0 comments

AppleWorks on the Apple II

https://stonetools.ghost.io/appleworks-apple2/
1•TMWNN•28m ago•0 comments

Why all AI content sounds the same (and how to fix it)

https://dreasays.substack.com/p/why-all-ai-content-sounds-exactly
2•dundalk03•32m ago•1 comments

Show HN: Flynt.js – 2.2kb, zero-build, CSP-safe reactivity library for MPAs

https://github.com/marsbos/flynt.js
2•bosmarcel•34m ago•0 comments

The Life and Death of Direct File

https://www.ischool.berkeley.edu/research/publications/2026/life-and-death-direct-file
2•ronbenton•36m ago•0 comments

Show HN: I built my 15-year-old game idea in a week with AI

3•ashitlerferad•39m ago•0 comments

Google's new watch tracks insulin resistance to flag diabetes risk

https://www.latimes.com/business/story/2026-08-13/googles-wearables-will-track-insulin-resistance...
2•brandonb•40m ago•0 comments

Quality by John Galsworthy

https://americanliterature.com/author/john-galsworthy/short-story/quality
1•lain98•40m ago•0 comments

Show HN: I built an open-source, local-first work journal for developers

https://github.com/Meridiona/meridian/
1•adithyaharish•42m ago•0 comments

Lenire – Tinnitus Treatment Using Bimodal Stimulation

https://www.lenire.com/
1•Obscurity4340•42m ago•0 comments

Microsoft.Testing.Platform Crash-Resilient TRX

https://medium.com/c-sharp-programming/microsoft-testing-platform-crash-resilient-trx-e62f7cb6e16d
1•sukhpinder0804•43m 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/