frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Hunt for Dark Breakfast – Can we derive breakfasts we have never observed?

https://moultano.wordpress.com/2026/02/22/the-hunt-for-dark-breakfast/
1•moultano•1m ago•0 comments

Technical Debt Plaguing Us All

https://github.com/h-michaelson20/tech-debt-visualizer
2•hmichaelson24•1m ago•1 comments

Better Python tests with inline-snapshot

https://pydantic.dev/articles/inline-snapshot
1•PaulHoule•2m ago•0 comments

Advice to a Senior Engineer looking for work in an AI world

https://medium.com/@rotbart/advice-to-a-senior-engineer-looking-for-work-in-an-ai-world-153aa9cd3d81
1•rotbart•2m ago•0 comments

Show HN: WorldFlightSim – Free flight SIM in browser with Google Maps

https://worldflightsim.com
1•fmfamaral•3m ago•1 comments

Sucoder: Sandbox for coding agents based on Unix filesystem permissions

https://github.com/ligon/sucoder
1•incomplete•3m ago•0 comments

Show HN: SentencePieceKit – Swift package wrapper for Google's SentencePiece

https://github.com/spencer0124/SentencePieceKit
1•spencer0124•3m ago•0 comments

Tech Monitor

https://tech.worldmonitor.app
1•jacktang•4m ago•0 comments

Worldmonitor: Real-time global intelligence dashboard

https://github.com/koala73/worldmonitor
1•jacktang•5m ago•0 comments

Curse of Scotland

https://en.wikipedia.org/wiki/Curse_of_Scotland
1•vinnyglennon•9m ago•0 comments

LaunchScore – Validate startup ideas with real landing pages before you build

https://www.launchscore.app/
1•cmackay•10m ago•0 comments

Anthropic Drops Flagship Safety Pledge

https://time.com/7380854/exclusive-anthropic-drops-flagship-safety-pledge/
2•cwwc•13m ago•0 comments

Why America's Most Important State Is Collapsing [video]

https://www.youtube.com/watch?v=CkLHqCpKbLw
1•keepamovin•15m ago•0 comments

Show HN: VeriContext – Preventing Stale Documentation for LLM Agents

https://github.com/amsminn/vericontext
1•amsminn•19m ago•0 comments

Show HN: Xcode Copilot Code Assistant

https://github.com/mobile-ar/xcode-assistant-copilot-server
1•mobile-ar•19m ago•0 comments

Linum: The simple musical notation and synthesizer

https://linum-notation.org
1•foss-enjoyer•21m ago•0 comments

Amazon Busted for Widespread Scheme to Inflate Prices Across the Economy

https://www.thebignewsletter.com/p/amazon-busted-for-widespread-price
4•toomuchtodo•21m ago•1 comments

Show HN: I solo-validated Fed learning at 10M nodes with 50% Byzantine tolerance

https://github.com/rwilliamspbg-ops/Sovereign_Map_Federated_Learning/releases/tag/v1.0.0
1•rwilliamspbgops•21m ago•0 comments

Show HN: Free bartending school app – learn cocktails without paying for school

https://apps.apple.com/ca/app/bartending-school-by-gigz-labs/id6757450275
1•gigzlabs•21m ago•0 comments

Google 'deeply sorry' after N-word written out in alert about BAFTA Film Awards

https://ew.com/google-deeply-sorry-after-n-word-written-out-news-alert-11913141
1•longislandguido•22m ago•0 comments

Open-source AI execution management for test automation

https://github.com/isagawa-qa/platform
1•isagawa-co•22m ago•1 comments

Show HN: A fake AI face-matcher to test if people question surveillance

https://pleasejuststop.org
1•paperplant•22m ago•1 comments

CGIT 1.3 Web Front End for Git Released After Six Years

https://www.phoronix.com/news/CGIT-1.3-Released
2•anonymousiam•24m ago•0 comments

Traders Rush to Dump Software Loans That Began Year at 100 Cents

https://www.bloomberg.com/news/articles/2026-02-24/traders-rush-to-dump-software-loans-that-began...
2•petethomas•24m ago•0 comments

Show HN: JadeAI – Resume builder with AI parsing, 50 templates, and self-hosting

1•twwch•24m ago•0 comments

A.I. Is Not Going to Replace Software [video]

https://www.youtube.com/watch?v=Epp-Vz0FrPg
1•nradov•25m ago•0 comments

Five security lessons from the FBI's Washington Post raid

https://freedom.press/digisec/blog/wapo-raid-security-lessons/
4•ColinWright•27m ago•0 comments

How insurance became the lifeblood of private credit

https://www.ft.com/content/b6be87a9-0abf-4950-9060-2159aa547f3d
2•petethomas•28m ago•0 comments

Spec-Driven Development: From Vibe Coding to Structured Development

https://zarar.dev/spec-driven-development-from-vibe-coding-to-structured-development/
1•recroad•30m ago•0 comments

Open-source tool alerts when your agent starts looping,drifting,burning tokens

https://github.com/ThirumaranAsokan/Driftshield-mini
1•dev_developer•31m ago•1 comments
Open in hackernews

Show HN: Run automated ML experiments using Claude Code

https://github.com/killerstorm/claude-torch-template
1•killerstorm•9mo ago
I made a template which can be used to conduct (basic) ML experiments in a fully automated mode: Claude Code will write the code, you only need to provide a working environment and the idea.

The goal was largely to demonstrate that this is possible, specifically to:

* encourage to people who want to run some ML experiment but don't have time t code it to actually give it a try * provide evidence that LLM recursive self-improvement is not "science fiction"

The template is bare bones, it does not come with niceties for monitoring experiments, conduct experiments at scale, etc.

The script assumes that CUDA, Python, PyTorch are already set up. This is quite easy if you rent an instance from https://lambda.ai/ - that's pre-installed. You'd only need to install Claude Code (which itself requires npm) to get it going.

As I mentioned in the README, the most advanced experiment I tried so far is injection of sentence-embedding memory into a pre-trained transformer.

The timeline on https://ai-2027.com/ assumes that we'll only be able to get AI coding agents which can do ML experiments in 2026, but it seems like it is already possible now. (I spent only few hours on this, obviously proper AI labs can spend whole days on infrastructure, scaffolding, prompting, fine-tuning, etc.)

Comments

killerstorm•9mo ago
If you actually want to conduct some experiment, I'd suggest:

* fist iterate on the idea with o3 (best choice) or other big model (Opus 4, Gemini 2.5 Pro, Grok 3) -- ask it whether it was done before, how to improve it, what is the expected outcome, etc. o3 is really smart, it can explain intuition between different choices, etc. * Python packages are hard. Using virtual environment (venv) is recommended. `uv` is probably the modern way to manage venv, but installing torch with CUDA support via uv is pain, what I found works is: * `uv pip install torch --torch-backend=cu126` (uv pip uninstall torch) * lambda.ai provides high-quality environment, but it might lack cheaper GPU options. * as I mentioned in README, there's no sandboxing, Claude can do pretty much arbitrary stuff...