Hacker News
You can write in LLMese, but you don't have to
Article URL: https://passo.uno/write-docs-llms-language/
Comments URL: https://news.ycombinator.com/item?id=48916251
Points: 1
# Comments: 0
Job Hunters Are Using AI to Cheat in Interviews, and Failing at the Office
Article URL: https://www.bloomberg.com/news/articles/2026-07-14/ai-tools-can-help-job-hunters-cheat-on-interviews-and-coding-tests
Comments URL: https://news.ycombinator.com/item?id=48916250
Points: 3
# Comments: 0
Electron isAccessibilitySupportEnabled broken when running JAWS since v34
Article URL: https://github.com/electron/electron/issues/45856
Comments URL: https://news.ycombinator.com/item?id=48916245
Points: 1
# Comments: 0
How Brands Sneak in Cheaper Ingredients to Protect Their Profit Margins
7 Questions to Custom Business Funding
Article URL: https://fundingexplained.com/business-funding-quiz/
Comments URL: https://news.ycombinator.com/item?id=48916212
Points: 2
# Comments: 0
Telstra outage blamed on known bug in obsolete server
Article URL: https://ia.acs.org.au/article/2026/telstra-outage-blamed-on-known-bug-in-obsolete-server.html
Comments URL: https://news.ycombinator.com/item?id=48916171
Points: 2
# Comments: 0
We don't let the LLM decide what's clinically allowed
Article URL: https://www.hamo.ai/blog/taking-the-clinical-decision-out-of-the-llm/
Comments URL: https://news.ycombinator.com/item?id=48916167
Points: 2
# Comments: 1
Trust but Verify? Uncovering the Security Debt of Autonomous Coding Agents
Article URL: https://arxiv.org/abs/2607.12428
Comments URL: https://news.ycombinator.com/item?id=48916157
Points: 1
# Comments: 0
Xtree Fan Page
Article URL: https://www.xtreefanpage.org/
Comments URL: https://news.ycombinator.com/item?id=48916154
Points: 2
# Comments: 0
Google and Epic stop fighting – third-party Android app stores coming next week
Article URL: https://www.theverge.com/policy/965792/google-epic-withdraw-injunction-third-party-app-stores-coming-google-play
Comments URL: https://news.ycombinator.com/item?id=48916127
Points: 1
# Comments: 0
Show HN: I open-sourced the portal I built for a client's vibe-coded apps
Article URL: https://github.com/menagerai/menagerai
Comments URL: https://news.ycombinator.com/item?id=48916108
Points: 1
# Comments: 1
Threading the AI in the UI for a personal app
Article URL: https://millfolio.app/blog/millwright-ui-layers/
Comments URL: https://news.ycombinator.com/item?id=48916095
Points: 2
# Comments: 0
Colombian Public School Reaches Top in Best School Prizes 2026
Article URL: https://colombiaone.com/2026/07/13/colombian-public-school-reaches-top-10-in-worlds-best-school-prizes-2026/
Comments URL: https://news.ycombinator.com/item?id=48916082
Points: 1
# Comments: 0
Poland begins construction of €2.3B deepwater port on Baltic coast
Article URL: https://notesfrompoland.com/2026/07/14/poland-begins-construction-of-e2-3bn-deepwater-port-on-baltic-coast/
Comments URL: https://news.ycombinator.com/item?id=48916081
Points: 2
# Comments: 0
Is this the end of the once-mighty GoPro?
Article URL: https://amateurphotographer.com/latest/photo-news/going-going-gone-is-this-the-end-of-the-once-mighty-gopro/
Comments URL: https://news.ycombinator.com/item?id=48916044
Points: 2
# Comments: 1
Using One Agent Across Multiple Machines
Article URL: https://syncless.ai/articles/let-syncless-across-your-environments
Comments URL: https://news.ycombinator.com/item?id=48916035
Points: 1
# Comments: 0
The Matter of Taste(2018)
Article URL: https://www.callum.website/the-matter-of-taste
Comments URL: https://news.ycombinator.com/item?id=48915990
Points: 2
# Comments: 0
Make any winning ad yours
Article URL: https://trykopykat.com/
Comments URL: https://news.ycombinator.com/item?id=48915903
Points: 1
# Comments: 0
Show HN: GWZ – Git Workspace Zone (multi-repo that feels like plain Git)
Coming from the land of the mono-repo (ex-googler), I decided to embrace the multi-repo, plain-git style. Methought, “hey, submodules, what could possibly go wrong”. Well, how about everything: detached HEADs, impossibly tedious commit management, and just about everything else. "OKAY" I said, a simple Python script should be fine, right? Well, NO. It turns out to be more complex. So I thought "others have got this, right? My time in mono-repo land was long and someone will have solved this" — well, yeah NAH. I won't bore you (the longer, boring comparison is in the docs) but everything I tried had baggage. All I want is a tool that gets out of my way and makes my multi-repo look like a mono-repo when I want, and a multi-repo when I want. I want my cake and I want it now.
"claude, codex and gemini, make me gwz" I said, "and make it work much like using git itself" I said — which they proceeded to ignore, but after many rounds in the rink, they produced a product which is delightfully good at the goal. I have to admit, the little beasties did take some creative license and made it better than I asked.
So what does gwz do?
- Member repositories remain ordinary Git repositories. No submodules unexpectedly detaching (unless you ask to materialize to a tag/snapshot). - “Snapshots” and “commit markers” can recover workspace state. That state lives in the root repo. - The similarities don't end at gwz being 3 letters starting with "g", no, gwz has status, diff, add, pull, push, commit, tag, stash, clone, init all play similar (not exact) roles to their git namesakes. - Extra commands to manage members: gwz repo create / clone / add / sync / detach / attach. - A “forall” command that runs anything across selected member repos.
Also, the member repos are hidden from the root repo's git (via .git/info/exclude), so you can't mess up the members from the root.
For my daily workflow gwz is great, and it's now my goto — I hardly use raw git anymore. But gwz, like any form of art, will never be finished. There's always more, but; it's now time to lift the veil, shine the light or yell from the rafters.
Caveats: it's written in Rust and I can't yet write Rust if my life depended on it. So why Rust and not Python or C++ (my usual gotos)? I have another project that needs to manage repos, which meant gwz had to be carved up into a CLI and a "core" crate with a typed protocol between them — so the engine is embeddable and wire-friendly, not fused to a terminal. That other project's target is also Rust, and (suspense) it's not ready to reveal, so: stay tuned.
The little LLM helpers created copious amounts of very fine documentation (seriously), which I invite you to peruse at: https://owebeeone.github.io/gwz-cli/
One interesting LLM initiated feature (I did not ask for it but it sounded good and it falls out as part of the gwz-core protocol anyway) is the “--json/jsonl” output which seems to give LLMs much better context of the response. Who woulda thunk, an LLM making its own lingo.
Honest state:
- It has a few rough UX edges, nothing so egregious it'll make you chunder. - Across gwz-core, gwz-cli and gwz-py, gwz currently has 764 tests, with roughly 82% line coverage. - For my workflow gwz is great. YMMV (tell me about it - good, bad or indifferent, Nah, scratch that, only the good). - gwz-dev - the root gwz repo is a “gwz managed” repo. Eat your own fishfood. - The CLI comes in Rust and Python variants. I use the Rust gwz daily; the Python gwz-py should work but gets less use, so it probably has bugs — it started life as a validation harness proving the core's message protocol holds up when driven from a second language. - It's v0.9.2 and pre-1.0: the protocol and some command surfaces may still move. - GPL-2.0-only, the same license family as git.
Comments URL: https://news.ycombinator.com/item?id=48915902
Points: 1
# Comments: 0
Our Company Was Worth $6B. We Shared Passwords over Slack
Article URL: https://www.cerby.com/blog/our-company-was-worth-6-billion.-we-shared-passwords-over-slack
Comments URL: https://news.ycombinator.com/item?id=48915900
Points: 1
# Comments: 0
