frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Nuts News

https://news.nuts.services/
1•kordlessagain•4m ago•0 comments

Australia Tops Claude Usage

https://www.forbes.com.au/news/innovation/australia-is-the-worlds-biggest-claude-user-now-anthrop...
1•ishanz•9m ago•0 comments

AI's Biggest Unlock Isn't Productivity. It's Access to Expertise

https://diviv.substack.com/p/ais-biggest-unlock-isnt-productivity
1•divi_vijay•10m ago•0 comments

Mushroom trip: a mycologist's tour of the Tarkine

https://www.theguardian.com/science/ng-interactive/2026/jul/13/mushroom-trip-a-mycologists-tour-o...
1•Anon84•10m ago•0 comments

Sam Altman and Elon Musk Argue over Who's Running the Bigger Scam

https://daringfireball.net/linked/2026/07/12/altman-musk
4•MaysonL•12m ago•0 comments

Quantum Mechanics May Not Need Imaginary Numbers After All

https://scitechdaily.com/quantum-mechanics-may-not-need-imaginary-numbers-after-all/
1•westurner•14m ago•0 comments

Billion Dollar PDFs

https://billiondollarpdf.com/
1•rafaepta•14m ago•0 comments

OneDev AI: Coding Agents as Teammates in Issues, Pull Requests, and CI

https://onedev.io/blogs/ai-teammates
2•timplant•15m ago•0 comments

Student's £30 device 'translates in real time'

https://www.bbc.com/news/articles/ced47540de2o
3•jethronethro•16m ago•0 comments

Circular Obstacle Pathfinding (2017)

https://redblobgames.github.io/circular-obstacle-pathfinding/
1•andsoitis•17m ago•0 comments

Deployment is All You Need: The case for deployment engineering

https://cephos.substack.com/p/deployment-is-all-you-need
2•ism-cep•23m ago•0 comments

Show HN: WA State Tolls tool that shows the best time to take it to save money

https://watolls.danielsada.tech/
1•dshacker•25m ago•0 comments

Micro-JavaScript: A pure Python JavaScript engine, inspired by MicroQuickJS

https://github.com/simonw/micro-javascript
1•nz•37m ago•0 comments

Rashidieh

https://en.wikipedia.org/wiki/Rashidieh
2•vinnyglennon•39m ago•0 comments

AI agent startup uses agent to lead 100M round

https://techcrunch.com/2026/07/09/an-ai-agent-startup-just-let-its-agent-run-its-100-million-fund...
2•noashavit•44m ago•0 comments

Lindsey Graham Dead at 71

https://www.economist.com/united-states/2026/07/12/lindsey-graham-represented-the-arc-of-his-party
4•andsoitis•45m ago•1 comments

Show HN: Hologram, photo management and culling built with Tauri

https://github.com/ThatXliner/Hologram
1•thatxliner•49m ago•0 comments

2028 Could Bring the Most Mind-Bendingly Expensive Apple Product of All Time

https://gizmodo.com/2028-could-bring-the-most-mind-bendingly-expensive-apple-product-of-all-time-...
3•megamike•51m ago•2 comments

The cost of AI-assisted development: cognitive fatigue

https://warpedvisions.org/blog/2025/hitting-the-wall-at-ai-speed/
3•winter_blue•54m ago•0 comments

How to Get What You Want

https://andys.blog/how-to-get-what-you-want/
4•andytratt•54m ago•0 comments

Amicro: Micro-Transitions Library

https://amicro.vercel.app/
2•handfuloflight•59m ago•0 comments

Argocd-AI-Assistant

https://github.com/saidsef/argocd-ai-assistant
2•saidsef•59m ago•0 comments

Physicists recreate black hole energy extraction in the lab

https://www.sciencedaily.com/releases/2026/07/260711010120.htm
3•stonlyb•1h ago•0 comments

Grok 4.5 and GPT5.6 beat Anthropic for finding security vulnerabilities in PRs

https://docs.damsecure.ai/blog/pr-review-security-benchmark/
5•pcollins123•1h ago•1 comments

Designing and assembling my first PCB

https://vilkeliskis.com/b/2026/0711.html
13•tadasv•1h ago•0 comments

Prescryb – an MCP server for CVE and config remediation

https://github.com/konstruktoid/prescryb
2•konstruktoid•1h ago•0 comments

Privacy-First PDF Tools

https://cleanvault.github.io/
2•audit-mate•1h ago•1 comments

Dither Kit: Make your charts dither

https://www.tripwire.sh/dither-kit
2•handfuloflight•1h ago•0 comments

Architecture Description Languages [pdf]

https://ics.uci.edu/~taylor/documents/2000-ADLs-TSE.pdf
7•ascent817•1h ago•1 comments

Why Vanilla JavaScript

https://guseyn.com/html/posts/why-vanilla-js.html
2•guseyn•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/