frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Reflections on software engineering in the age of AI

https://glattetre.me/blog/reflections-on-software-engineering/
1•GOATS-•1m ago•0 comments

Notes On Distance Dialing (1956) [pdf]

https://explodingthephone.com/hoppdocs/nodd1956.pdf
1•colinprince•3m ago•0 comments

Rogue OpenAI models teamed up to break out of their testing environment

https://www.tomshardware.com/tech-industry/artificial-intelligence/rogue-openai-models-behind-unp...
1•sbulaev•3m ago•0 comments

How does it feel if u get hot leads on your dashboard

2•Brikuio•3m ago•0 comments

A Mathematical Theory of the Antilibrary

https://growingbits.dev/fragments/a-mathematical-theory-of-the-antilibrary#3-the-utility-score
1•MexicanYoda•3m ago•0 comments

Google Built a Monopoly on Search Defaults and Will Do It Again in AI

https://spreadprivacy.com/google-appeal-amicus/
4•dotcoma•3m ago•0 comments

Show HN: The Channels SDK – Bring Any Agent to Any Channel (Slack, MS Teams)

https://github.com/CopilotKit/channels-sdk
14•davidmckayv•4m ago•0 comments

Show HN: Silo – S3-compatible object storage, a maintained fork of MinIO

https://silo.pgsty.com
4•Vonng•5m ago•0 comments

Building a Dual V100 AI Workstation for Local LLMs

https://jayakody2000lk.blogspot.com/2026/07/building-dual-v100-ai-workstation-for.html
2•speckx•6m ago•0 comments

The impact of nonlinear child costs on Switzerland's birthrate

https://www.swissinfo.ch/eng/swiss-politics/falling-first-births-and-the-swiss-third-child-dilemm...
1•chobouser•6m ago•0 comments

Digital twins of your business to test your agents

https://sonatalabs.ai/before-you-deploy/
1•matildagh•6m ago•1 comments

Study reveals new role for tau, a top target for Alzheimer's drug development

https://www.statnews.com/2026/08/06/research-finds-how-tau-targets-cells-structure-alzheimers-dru...
2•petethomas•6m ago•0 comments

Show HN: Popcorn – An open-source browser cloud that runs inside TEEs

https://blog.reclaimprotocol.org/posts/why-we-built-popcorn
5•abdulrreshamwal•6m ago•0 comments

Suno offers its AI song on Vynil

https://vinyl.suno.com/
3•hmokiguess•7m ago•0 comments

Thursday Morning and Grothendieck

https://ideal.iroha1203.dev/thursday-morning-and-grothendieck-05c0fec11561
3•iroha1203•7m ago•0 comments

Colourfields

https://quuxplusone.github.io/blog/2026/08/05/colourfields/
1•ibobev•7m ago•0 comments

Cppdashboard.dev – The aggregator of what matters in C++

https://mariusbancila.ro/blog/2026/08/04/cppdashboard-dev-the-aggregator-of-what-matters-in-cpp-r...
2•ibobev•8m ago•0 comments

Show HN: Stop Animated Images from Autoplaying

https://neonglow.studio/gif-control/
1•neonglow•8m ago•1 comments

DARPA Lift Challenge

https://www.darpaliftchallenge.com/watch
1•rkwasny•8m ago•0 comments

We built Pandroid: a small, accessible robot for running AI in the world

https://pantograph.com/hardware
3•agajews•9m ago•1 comments

When a long-running agent crashes, what does recovery mean?

https://runta.com/blog/agents-arent-software/
3•guanlan•9m ago•0 comments

Coinage – every dollar invested until the second you spend it

https://www.coinage.app
3•nandhd•10m ago•4 comments

Show HN: mcp-use v2 rebuilt from scratch for stateless 2026-07-28 MCP spec

https://manufact.com/blog/mcp-use-v2
8•luigipederzani•10m ago•1 comments

I built Picodevil using an LLM

https://blog.vbuckenham.com/i-built-picodevil-using-an-llm/
2•wertyk•10m ago•0 comments

How AI is breaking the British state

https://www.economist.com/leaders/2026/08/06/how-ai-is-breaking-the-british-state
1•edward•10m ago•0 comments

Launch HN: ProvenMetal (YC S26) delivers circuit boards in days instead of weeks

https://provenmetal.com
2•willcarkner•11m ago•0 comments

C++26: Embed

https://www.sandordargo.com/blog/2026/08/05/cpp26-embed
1•ibobev•11m ago•0 comments

Why AI-generated vulnerability patches still require expert human review

https://1password.com/blog/why-ai-generated-patches-still-require-human-review
2•speckx•11m ago•0 comments

Local models head to head for extraction

https://rakuensoftware.com/blog/local-llm-fact-extraction-head-to-head
2•jbailes•13m ago•0 comments

Amiga and Commodore, Back Together (Sort Of)

https://hackaday.com/2026/08/06/amiga-and-commodore-back-together-sort-of/
1•theanonymousone•13m ago•0 comments
Open in hackernews

Show HN: Run automated ML experiments using Claude Code

https://github.com/killerstorm/claude-torch-template
1•killerstorm•1y 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•1y 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...