frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ontario Teachers' pension plan posts 9.5% return through SpaceX stake

https://financialpost.com/fp-finance/ontario-teachers-pension-return-2026-spacex-stake
1•cuoder•1m ago•0 comments

100 Kodiak driverless trucks are headed for public roads

https://www.foxnews.com/tech/100-kodiak-driverless-trucks-headed-public-roads
1•RickJWagner•2m ago•0 comments

'I felt Tourette's would ruin my life, now I teach at Cambridge'

https://www.bbc.com/news/articles/c7944gv359jo
1•RickJWagner•3m ago•0 comments

CapShip – Mobile Starter Kit

https://capship.org/
1•yousefbustamiii•6m ago•1 comments

Unified.nvim

https://github.com/axkirillov/unified.nvim
1•dboon•12m ago•0 comments

A C++ toolchain from 357 bytes, in Bazel

https://fzakaria.com/2026/08/01/a-c++-toolchain-from-357-bytes-in-bazel
1•signa11•16m ago•0 comments

Old.reddit.com Stops Working

https://old.reddit.com/r/emacs
1•snfernandez•19m ago•1 comments

They don't make 'em like Sublime Text anymore

https://dbushell.com/2026/08/07/sublime-text/
2•Curiositry•20m ago•0 comments

Propaganda of the deed

https://en.wikipedia.org/wiki/Propaganda_of_the_deed
1•petethomas•23m ago•0 comments

Hyperspace

https://hypercritical.co/hyperspace/
2•swyx•28m ago•0 comments

I wrote my book by hand

https://augustlamm.substack.com/p/i-wrote-my-book-by-hand
2•herbertl•29m ago•0 comments

Claude will watermark AI-generated text and images

https://tokenstead.ai/
3•cdnsteve•29m ago•0 comments

In Arizona, it may be easier to steal a home than a TV as deed fraud grows

https://www.usatoday.com/
3•rawgabbit•31m ago•1 comments

Recycle – Floppydisks

https://www.floppydisk.com/recycle
2•calvinmorrison•32m ago•0 comments

Another August

https://kellykeene.blog/2026/08/01/another-august/
1•wawayanda•36m ago•0 comments

Chinese rocket explodes shortly after liftoff

https://www.space.com/space-exploration/launches-spacecraft/chinese-rocket-explodes-less-than-90-...
2•glimshe•37m ago•0 comments

Japanese government announces measures against mega-solar projects

https://twitter.com/takaichi_sanae/status/2086977599130194229
1•anigbrowl•38m ago•0 comments

ChatGPT to Markdown: export any chat [video]

https://www.youtube.com/watch?v=TXPMnpUxab4
2•quysala147258•40m ago•2 comments

eBay scammer took $600 from me; eBay suggests cotton-candy flavor energy drinks

https://www.reddit.com/r/Wellthatsucks/s/si0ksx7ceI
1•rogerrogerr•44m ago•0 comments

Attackers Can Steal Enterprise Data with One Click Through Atlassian Rovo Flaw

https://www.kobaran.com/attackers-can-steal-enterprise-data-with-one-click-through-atlassian-rovo...
1•supportm•45m ago•0 comments

Building a Pure-Rust, Sandboxed, Local-First Browser for Agents

https://www.reddit.com/r/codex/comments/1vl404k/purerust_sandboxed_localfirst_browser_for_agents/
2•syumei•47m ago•0 comments

Show HN: SendPage – turn AI-generated HTML into a shareable link

https://sendpageapp.com
2•jack714•49m ago•0 comments

We Built Linear Agent

https://linear.app/now/how-we-built-linear-agent
2•cristinacordova•55m ago•0 comments

Canada Is Building a Surveillance State via 5 Bills

https://x.com/lucyhargreaves4/article/2066903272271544551
6•vancouvermatt•56m ago•0 comments

New Claude model improves lower bound on problem linked to Reimann hypothesis

https://marqr.codes/u3bno
1•ajax33•56m ago•2 comments

Sprout – easily build an app with AI, share it, and use other apps

https://sprout.monkeyai.io/
1•davidk2yang•1h ago•1 comments

Antirez/h3.c: MiniMax H3 inference engine for Mac computers

https://github.com/antirez/h3.c
4•swyx•1h ago•0 comments

Show HN: Insidedb, an interactive, animated explainer of database internals

https://david-g-3654.github.io/insidedb/
2•davai-g•1h ago•0 comments

Show HN: Sketchling – a hand-drawn animation language for coding agents

https://github.com/AnayGarodia/sketchling
1•ag5250•1h ago•0 comments

Predicting AI Job Exposure

https://www.ben-evans.com/benedictevans/2026/5/24/ai-job-exposure
1•fagnerbrack•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/