frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: SubstanceWiki – Open-source encyclopedia of psychoactive substances

https://substancewiki.org
1•toprak123•35s ago•0 comments

What if you never had to get an API key ever again?

https://stevekrouse.com/x402
1•Tiberium•1m ago•0 comments

A willingness to look stupid is the most underrated moat in doing creative work

https://sharif.io/looking-stupid
1•Samin100•1m ago•0 comments

Why use F# for scripting and automation?

https://iev.ee/blog/why-use-fsharp/
1•nsm•4m ago•0 comments

Custom Agents in Visual Studio

https://devblogs.microsoft.com/visualstudio/custom-agents-in-visual-studio-built-in-and-build-you...
1•ankitg12•6m ago•0 comments

Advice for Operating a Public-Facing API (2023)

https://jcs.org/2023/07/12/api
2•wrxd•6m ago•0 comments

Show HN: TemplUI v1.7.0 – UI components for Go and templ, now with import mode

https://github.com/templui/templui
1•axadrn•7m ago•0 comments

Gemini Exporter – Save Gemini to PDF, Word, Google Docs and Notion

https://chromewebstore.google.com/detail/gemini-exporter-save-gemi/lgipeakgdkcgnkdljeagconfbfeolidj
2•backrun•7m ago•2 comments

Ireland shuts last coal plant, becomes 15th coal-free country in Europe

https://www.pv-magazine.com/2025/06/20/ireland-coal-free-ends-coal-power-generation-moneypoint/
2•robin_reala•8m ago•0 comments

Gemini Exporter – Export Gemini Chat to PDF, Word, and Notion in One Click

2•backrun•11m ago•1 comments

EL Filósofo Espiritualista

2•jgalera•11m ago•0 comments

Probability and Induction

https://iep.utm.edu/probability-and-induction/
1•jruohonen•15m ago•0 comments

Quantum Simulates Properties of First Half-Möbius Molecule by IBM Researchers

https://research.ibm.com/blog/half-mobius-molecule
2•birdculture•16m ago•0 comments

Show HN: I built a secure AI mediator to handle my own marital conflicts

https://ashti.ai
1•thedevguy•16m ago•1 comments

Show HN: Generate HTTP and Jsonrpc from IDL

https://github.com/xidl/xidl
2•battery8318•16m ago•1 comments

The Window Chrome of Our Discontent

https://pxlnv.com/blog/window-chrome-of-our-discontent/
2•crbelaus•18m ago•0 comments

Ask HN: Do AI providers optimize for "Pelican riding a bicycle”?

1•kandros•18m ago•0 comments

Show HN: Starter-structure-CLI – scaffold apps from stack combinations

https://github.com/mohosin2126/starter-structure-cli
1•mrwick2126•20m ago•0 comments

ComicsAI

https://www.comicsai.org/en
2•liangmeihua93•22m ago•0 comments

Show HN: arxiv-digest: Daily robotics paper scouting for OpenClaw and Zotero

https://github.com/tb5z035i/arxiv-digest
1•tb5z035i•22m ago•0 comments

SSH-Based Mail for Agents

https://github.com/rolandnsharp/sshmail-client
2•epscylonb•23m ago•0 comments

Knuth Claude's Cycles note update: problem now fully solved, by LLMs

https://www-cs-faculty.stanford.edu/~knuth/papers/claude-cycles.pdf?#page=6
2•fs123•23m ago•1 comments

Programmers will document for Claude, but not for each other

https://blog.plover.com/2026/03/09/
2•frizlab•24m ago•0 comments

Emit Emails – Personalized email sending without the fluff

1•AlphaTheGoat•25m ago•0 comments

AI Crash the Physics of the Collapse [video]

https://www.youtube.com/watch?v=PZ0sS41zwo4
1•CrzyLngPwd•26m ago•1 comments

3AM Coding:cracking persistent open-source memory for agents

https://github.com/aayoawoyemi/Ori-Mnemos
1•starro____•27m ago•0 comments

Crow Watch: A Hacker News Alternative

https://crow.watch
2•medv•30m ago•0 comments

Analysis of Ninth Circuit Allows TOS Amendment by Email–Ireland-Gordy vs. Tile

https://blog.ericgoldman.org/archives/2026/03/ninth-circuit-allows-tos-amendment-by-email-ireland...
1•hazzamanic•31m ago•0 comments

Terence Tao: Formalizing a proof in Lean using Claude Code [video]

https://www.youtube.com/watch?v=JHEO7cplfk8
2•helloplanets•32m ago•0 comments

Apple: The first 50 years, CBS Sunday Morning [video]

https://www.youtube.com/watch?v=7bA2w7uwUbs
2•oldnetguy•36m ago•0 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...