frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Meta's 'digital experiences for kids' worker busted in undercover NYC sting

https://nypost.com/2026/07/20/us-news/meta-worker-who-developed-digital-experiences-for-kids-admi...
1•pndy•6m ago•1 comments

Fuzzy-Pattern Tsetlin Machine for Text Generation

https://github.com/BooBSD/Tsetlin.jl
2•BooBSD•7m ago•1 comments

Parallel SSH with auto-coalesces identical output

https://clustershell.readthedocs.io/en/latest/tools/clush.html
1•ankitg12•8m ago•0 comments

Show HN: Traicer – save your AI traces to sell later

https://github.com/smashah/traicer
1•smashah•9m ago•0 comments

OpenSEO

https://themarketingnewsletter.org/p/openseo-the-open-source-alternative
3•hamidreza23•12m ago•0 comments

How Smart Supplier Risk Management Helps Manufacturers Stay Ahead?

https://saxon.ai/blogs/a-practical-guide-on-supplier-risk-management-for-manufacturing/
1•vemareddy•16m ago•0 comments

Cursor, Codex, Gemini CLI, Antigravity hit by sandbox escapes

https://www.bleepingcomputer.com/news/security/cursor-codex-gemini-cli-antigravity-hit-by-sandbox...
3•thm•17m ago•0 comments

New research: Social Media use increases achievement and conformity orientation

https://journals.sagepub.com/doi/10.1177/01461672261461314
2•XzetaU8•18m ago•0 comments

Anthropic's landmark $1.5B copyright settlement is approved

https://techcrunch.com/2026/07/20/anthropics-landmark-1-5b-copyright-settlement-is-approved/
2•thm•18m ago•0 comments

Show HN: Trigger-tree; see which project docs your AI coding agent reads

https://github.com/Hedde/trigger_tree
1•DevAutomationCC•21m ago•0 comments

Show HN: Otua – on-device live captions I built for my hard-of-hearing wife

https://otua.app/
1•cadwell•22m ago•0 comments

SPIR-V on ROCm: A Portable IR for AMD GPUs

https://rocm.blogs.amd.com/software-tools-optimization/spir-v-rocm/README.html
2•pjmlp•22m ago•0 comments

How Far Behind the Frontier Are Leading Open-Weight Models on Cyber?

https://www.aisi.gov.uk/blog/how-far-behind-the-frontier-are-leading-open-weight-models-on-cyber
3•Imbiss•25m ago•0 comments

Shorter is longer than longer [video]

https://www.youtube.com/watch?v=MFR6SMV64h4
1•Zinu•25m ago•1 comments

Zero risk isn't the job: a CISO's guide to agentic AI

https://claude.com/blog/ciso-guide-to-agentic-ai
1•talboren•25m ago•0 comments

Why S-Expressions

https://modolap.substack.com/p/why-s-expressions
2•ronfriedhaber•29m ago•0 comments

The secret Trump administration battle to fight Chinese AI

https://www.axios.com/2026/07/20/ai-us-china-open-source-kimi
2•_____k•29m ago•0 comments

Private Inference for Coding Agents

https://zro.moonmath.ai/
1•Otsar_zro•30m ago•0 comments

GENE.01: Comes to Life [video]

https://www.youtube.com/watch?v=mGF142yepjc
1•mndren•31m ago•0 comments

Show HN: Mu – A Personal Home Server

https://github.com/micro/mu
1•asim•31m ago•0 comments

Throw, Result, or Neither?

https://www.architecture-weekly.com/p/throw-result-or-neither
1•thunderbong•31m ago•0 comments

Google Is Building an A.I. Fence Around the Internet It Once Championed

https://www.nytimes.com/2026/07/20/technology/google-ai-open-web.html
5•napolux•41m ago•0 comments

Show HN: Lokalite – local secrets for CLIs and coding agents

https://github.com/RubenGlez/lokalite
1•rubenglez•42m ago•0 comments

Show HN: Remove the Gemini watermark by solving the alpha blend, not inpainting

https://github.com/long66666/gemini-watermark-remover
1•LohnChen•44m ago•0 comments

AliSQL 8.0.44-2: DuckDB, VIDX, Native Flashback, and Transaction Optimizations

https://p1p1bear.github.io/alisql-release-page/
1•baotiao•44m ago•0 comments

Burnham is fifth UK PM in four years, now he'll try to buck the trend

https://www.bbc.com/news/articles/cr7knml2y99o
5•teleforce•46m ago•1 comments

Computers Care About Code

https://davidwhitney.co.uk/blog/2026/07/20/computers_finally_care_about_code/
1•henrik_w•48m ago•0 comments

Unity CLI

https://unity.com/blog/meet-the-unity-cli
1•doanbactam•50m ago•1 comments

Show HN: Flag Buddy, a learning game for kids (who can't read yet)

https://labs.davidbauer.ch/kindergames/flaggen-buddy/en/
1•davidbauer•53m ago•0 comments

IPv8: The Draft of a New Internet

https://transitai.app/blog/ipv8-draft-zone-server-math/
5•fofoz•53m 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/