frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

With AI, researchers discover new way to detect sudden cardiac death risk

https://news.berkeley.edu/2026/06/24/with-ai-researchers-discover-new-way-to-detect-sudden-cardia...
1•hhs•1m ago•0 comments

Computation Is Bound by Physical Laws: A Fact-Based Church-Turing Thesis

https://cryptpad.fr/code/#/2/code/edit/kZK83-Xxeqb1cOHsonKZgAWm/
2•wij•4m ago•0 comments

Quake in 13 Kilobytes

https://js13kgames.com/games/q1k3
1•mortenjorck•4m ago•0 comments

Foreign funds help make housing unaffordable: research

https://news.mccombs.utexas.edu/research/foreign-funds-help-make-housing-unaffordable/
1•hhs•5m ago•0 comments

Holos: Device Is Your Fediverse Server

https://holos.social/
1•severine•5m ago•0 comments

Writing and Code: Same Leverage, Different Story

https://vincentping.com/en/writing-vs-code-leverage
1•vincentping•7m ago•0 comments

Forward Self Models

https://jagilley.github.io/forward-self-models.html
1•E-Reverance•7m ago•0 comments

Om

https://daringfireball.net/2026/06/om
2•throw0101a•7m ago•0 comments

Trump threatens 100% tariff on European digital services taxes

https://www.bbc.co.uk/news/articles/cn4rd71411ko
2•lifeisstillgood•11m ago•1 comments

Waveloop: What Fable Left Me

https://neynt.ca/writing/waveloop/
3•personjerry•11m ago•0 comments

Ask HN: Anthropic Billing Issues?

1•nycdatasci•12m ago•0 comments

Steam Controller auto-charge with computer vision tracking

https://github.com/FossPrime/Steam-Controller-Auto-Charge
1•phoronixrly•15m ago•0 comments

A molecular seesaw drives healthy skin development: research

https://med.stanford.edu/news/all-news/2026/06/molecular-seesaw-skin-development.html
1•hhs•16m ago•0 comments

Darwin: Libsystem_malloc .dylib and XZone

https://df-f.com/blog/darwin-libsystem-malloc-dylib-and-xzone
1•akyuu•19m ago•0 comments

Decker Fantasy Camp 2026

https://itch.io/jam/decker-fantasy-camp-2026
1•RodgerTheGreat•23m ago•0 comments

Understanding Ordinary Events

https://ordinary.blog/posts/understanding-ordinary-events/
2•watters•23m ago•0 comments

Speeding Up Ratchets with Resharp

https://danverbraganza.com/writings/ratchets-run-faster-with-resharp
1•nvader•28m ago•0 comments

The Church-Turing Thesis from the Perspective of Discrete Physics

https://gist.github.com/wyniijj5-wq/66f06982a912fa4b4812cea5615c2d6f
1•wij•31m ago•0 comments

Volkswagen reportedly planning to axe 100k jobs

https://www.cnn.com/2026/06/26/economy/volkswagen-job-cuts
6•teleforce•31m ago•0 comments

Thomas Salme

https://en.wikipedia.org/wiki/Thomas_Salme
4•st_goliath•36m ago•0 comments

Apple Internals: Swift in the Kernel

https://blog.calif.io/p/apple-internals-swift-in-the-kernel
1•akyuu•36m ago•0 comments

Revolut dials back remote work for graduates

https://sifted.eu/articles/revolut-dials-back-remote-work-for-graduates
1•tg180•36m ago•0 comments

Over 1/3 of households in Poland consist of one person amid demographic change

https://notesfrompoland.com/2026/06/25/over-a-third-of-households-in-poland-now-consist-of-one-pe...
1•toomuchtodo•37m ago•1 comments

Retraction questions claim that cancer therapy works better in morning

https://www.science.org/content/article/retraction-questions-claim-cancer-therapy-works-better-mo...
1•hentrep•37m ago•0 comments

Trump admin allows Anthropic to release Mythos AI model to some companies

https://www.cnbc.com/2026/06/26/us-government-anthropic-claude-mythos5-ai.html
3•dataking•40m ago•1 comments

US releases powerful Anthropic model Mythos to some US companies

https://www.semafor.com/article/06/27/2026/us-releases-powerful-anthropic-model-mythos-to-some-us...
2•wasting_time•43m ago•0 comments

Rocket Lab launches 10th Synspective satellite – SpaceNews

https://spacenews.com/rocket-lab-launches-10th-synspective-satellite/
2•rbanffy•45m ago•0 comments

Interview – ADHD Child vs. Non-ADHD Child [video]

https://www.youtube.com/watch?v=-IO6zqIm88s
1•gurjeet•48m ago•1 comments

You can't always trust a BMC's inventory of the server's hardware

https://utcc.utoronto.ca/~cks/space/blog/tech/BMCDontTrustHardwareInventory
3•LorenDB•49m ago•0 comments

Due to the AI memory crisis, Apple is bringing back the original Apple I

https://old.reddit.com/r/MacStudio/comments/1ugkygr/due_to_the_ai_memory_crisis_apple_is_bringing/
1•akirahittoxyz•50m 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...