frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Benchmarking GPT-5.1 vs. Gemini 3.0 vs. Opus 4.5 across 3 Coding Tasks

https://blog.kilo.ai/p/benchmarking-gpt-51-vs-gemini-30-vs-opus-45
1•heymax054•2m ago•0 comments

Recent Performance and Administration Features in Firebird

https://www.ibphoenix.com/articles/art-00000602
1•mariuz•3m ago•0 comments

Show HN: Lifeline – Visual memory journal with emotion auras and AI companion

https://mylifelineapp.com/
1•Remi_Etien•4m ago•0 comments

Why Pricing Power Is the Most Important Economic Signal No One Tracks

https://capitalfolly.com/
1•d_e_solomon•12m ago•1 comments

Should R ecosystem be a choice for longer-term projects?

1•northlondoner•16m ago•0 comments

If you're building an AI product, interface is your primry competitive advantage

https://eleganthack.com/ux-is-your-moat-and-youre-ignoring-it/
1•kaizenb•16m ago•0 comments

Kastor – Build data pipelines visually

https://kastor-242087227970.us-west1.run.app/
1•Snidow•21m ago•1 comments

Statistical Process Control in Python

https://timothyfraser.com/sigma/statistical-process-control-in-python.html
1•lifeisstillgood•22m ago•0 comments

Show HN: SpacePigeon – Save and Restore macOS Workspaces

https://github.com/louivers/spacepigeon
1•kakmuis•28m ago•0 comments

It's Not Just You – The iOS Keyboard Is Broken

https://youtu.be/hksVvXONrIo
2•jmaker•29m ago•1 comments

Show HN: Hanzi Stroke – An interactive tool to learn Chinese character writing

https://www.hanzistroke.com/en
1•YarkYao•30m ago•0 comments

After nearly 100 years, scientists may have detected dark matter

https://phys.org/news/2025-11-years-scientists-dark.html
1•alex-moon•31m ago•0 comments

Stanford AI Club: Jeff Dean on Important AI Trends [video]

https://www.youtube.com/watch?v=AnTw_t21ayE
1•pss314•32m ago•0 comments

Show HN: SkimIt – An extension to highlight Green/Red flags on LinkedIn profiles

https://chromewebstore.google.com/detail/skimit-linkedin-recruiter/ipaajbgmiinahmfbmmjpikmfjkccpocj
1•ngninja•35m ago•0 comments

AWS is 10x slower than a dedicated server for the same price [video]

https://www.youtube.com/watch?v=Ps3AI1kTIR4
69•wolfgangbabad•44m ago•55 comments

Show HN: I built directory of fashion brands because I didn't know how to dress

https://brandlist.it.com
1•EthanSeo•45m ago•1 comments

First make it fast, then make it smart

https://kix.dev/first-make-it-fast-then-make-it-smart/
1•kixpanganiban•48m ago•0 comments

Branch, Test, Deploy: A Git-Inspired Approach for Data

https://motherduck.com/blog/git-for-data-part-1/
2•articsputnik•49m ago•0 comments

Human_fallback

https://www.nplusonemag.com/issue-44/essays/human_fallback/
1•pizza•50m ago•0 comments

Tor switches to new Counter Galois Onion relay encryption algorithm

https://www.bleepingcomputer.com/news/security/tor-switches-to-new-counter-galois-onion-relay-enc...
2•N19PEDL2•50m ago•0 comments

AI Slop Recipes Are Taking over the Internet – and Thanksgiving Dinner

https://www.bloomberg.com/news/articles/2025-11-25/ai-slop-recipes-are-taking-over-the-internet-a...
1•thm•51m ago•0 comments

What's the point of learning functional programming?

https://blog.daniel-beskin.com/2025-11-13-point-of-learning-fp
1•imjacobclark•54m ago•0 comments

Show HN: I Cloned a YC startup in 3 hours

https://kanjieight.vercel.app/
2•Mikecraft•57m ago•0 comments

Qiskit – software stack for quantum computing

https://www.ibm.com/quantum/qiskit
1•thinkingemote•57m ago•0 comments

Cloud Neocloud Lambda's vision of the future: 'One GPU, one person'

https://www.fierce-network.com/cloud/neocloud-lambdas-vision-future-one-gpu-one-person
1•oavioklein•1h ago•0 comments

Idempotency Keys

https://www.morling.dev/blog/on-idempotency-keys/
1•ingve•1h ago•0 comments

Why AI Safety Won't Make America Lose the Race with China

https://www.astralcodexten.com/p/why-ai-safety-wont-make-america-lose
2•pseudolus•1h ago•0 comments

Image Diffusion Models Exhibit Emergent Temporal Propagation in Videos

https://arxiv.org/abs/2511.19936
2•50kIters•1h ago•0 comments

The Thanksgiving Special

https://medium.com/luminasticity/the-thanksgiving-special-cc1f9b6fc9d5
1•bryanrasmussen•1h ago•0 comments

How to Run Profitable Pricing Experiments?

https://cleancommit.io/blog/pricing-experiments/
1•mrkaluzny•1h ago•0 comments
Open in hackernews

Show HN: Run automated ML experiments using Claude Code

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