frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Small Lies Developers Tell to Keep Work Moving

https://shiftmag.dev/the-small-lies-developers-tell-to-keep-work-moving-10305/
1•dxs•28s ago•0 comments

Applying Brevity and Language Efficiency in Prompt Engineering

https://prahladyeri.github.io/guides/applying-brevity-and-language-efficiency-to-prompt-engineeri...
1•pyeri•2m ago•0 comments

Formal Methods and the Future of Programming

https://blog.janestreet.com/formal-methods-at-jane-street-index/
1•osener•2m ago•0 comments

Generative AI and Ethical Speculation

https://www.internetruleslab.com/black-mirror-survey
1•speckx•4m ago•0 comments

Akse3D – open-source 3D modelling anyone can master

https://akse3d-en.skaperiet.no
1•joachimhs•5m ago•0 comments

WSP WordPress MCP – Connect AI Agents to WordPress

https://github.com/bilalnaseer/wsp-wordpress-mcp
1•web_sensepro•6m ago•0 comments

Fox Corporation to Acquire Roku, Inc

https://www.foxcorporation.com/news/corp-press-releases/2026/fox-corporation-to-acquire-roku-inc/
2•jaredwiener•7m ago•0 comments

General-purpose LLMs outperform specialized clinical AI tools

https://www.nature.com/articles/s41591-026-04431-5
2•doppp•7m ago•0 comments

The Robot Arm Nobody Dares Rip Out – Industrial and Manufacturing

https://atomsfrontier.substack.com/p/the-robot-arm-nobody-dares-rip-out
1•jpatel3•7m ago•0 comments

SpaceX is coming to your 401(k) – maybe

https://www.cnn.com/2026/06/15/markets/spacex-shares-401k
1•rawgabbit•8m ago•0 comments

The Math Behind "AI Will Replace Engineers" Is Wrong [video]

https://www.youtube.com/watch?v=ItSLny8on5I
1•DeusExMachina•8m ago•0 comments

New Font: Nic7pin

https://scruss.com/blog/2026/06/10/new-font-nic7pin/
1•rbanffy•10m ago•1 comments

I built 80% of the core features of Shopify in 30 hours

https://yep.shop/blog/how-i-built-it
1•aliasaria•10m ago•0 comments

OpenAI requires face scan to use o3 (June 2025)

https://community.openai.com/t/has-openai-lost-its-mind-face-scan-required-to-use-o3/1286152
1•nycdatasci•10m ago•1 comments

Show HN: PIM – app blocker that inconveniences you instead of locking you out

https://pleaseinconvenienceme.com
1•SMV279438•13m ago•1 comments

How do you delete a user from a model you fine-tuned?

https://legallayer.substack.com/p/how-do-you-delete-a-user-from-a-model
1•senaevren•15m ago•1 comments

The Formula Won

https://www.collisiondetector.com/the-formula-won/
1•speckx•17m ago•0 comments

Show HN: Mcpwn – nobody's pentesting their MCP servers, so I built a tool for it

https://github.com/D0rs4n/mcpwn
1•thedorsan•17m ago•0 comments

Towards Atom-by-Atom Fabrication: Mechanosynthetic Donation and Abstraction

https://arxiv.org/abs/2606.13876
1•gene-h•18m ago•0 comments

The UK Joins the Pirates

https://www.craigmurray.org.uk/archives/2026/06/the-uk-joins-the-pirates/
2•jjgreen•19m ago•0 comments

Your Vegan Fallacy

https://yourveganfallacyis.com/en
2•num42•20m ago•0 comments

Pinboard's DNS registration has expired

https://pinboard.in
1•noisediver•20m ago•0 comments

American Express to buy Tripadvisor's restaurant booking platform TheFork

https://www.reuters.com/legal/transactional/american-express-buy-tripadvisors-restaurant-booking-...
1•jjar•20m ago•0 comments

The Subprime Code Crisis: When Faster Code Generation Does Not Improve Delivery

https://github.com/UncertaintyArchitectureGroup/The-Subprime-Code-Crisis
2•oddish-tv•21m ago•1 comments

N-Tier Services and Systems Complexity Essay (2004)

https://yegge.ai/essays/services-and-complexity/
1•aberoham•23m ago•0 comments

Natural Language Autoencoders Produce Explanations of LLM Activations

https://transformer-circuits.pub/2026/nla/
1•Anon84•23m ago•0 comments

Your Carpenter Hates You, Your Code Sucks

https://www.tobiokewole.com/writing/your-carpenter-hates-you
1•flyingsky•24m ago•0 comments

N-Tier Services and Systems Complexity (2004)

https://yegge.ai/listings/services-and-complexity
2•aberoham•25m ago•0 comments

What happens if you click the first link on every Wikipedia article? [video]

https://www.youtube.com/watch?v=dpLG3DpfSlM
3•skibz•25m ago•0 comments

Great Society

https://en.wikipedia.org/wiki/Great_Society
1•simonebrunozzi•26m 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...