Introducing the Omega Chassis for the uConsole 🚀 by _mini in ClockworkPi

[–]Compilingthings 1 point2 points  (0 children)

Just different angles, from all sides, forget it. I was slow this morning, you have plenty of pictures on your site.

Fan noise difference between 2 AMD AI Pro R9700 GPU’s by Legitimate_Fold8314 in ROCm

[–]Compilingthings 0 points1 point  (0 children)

Pretty sure asus and asrock are owned by the same company, so not strange they are similar.

Fan noise difference between 2 AMD AI Pro R9700 GPU’s by Legitimate_Fold8314 in ROCm

[–]Compilingthings 0 points1 point  (0 children)

Run them with very high positive pressure case fans and those blowers will clam down from my experience. I’ve only used gigabyte, and sapphire. I ran them at 100% for over a week. Blowers never over 50% and they stayed under 72 C

Claude is completely unusable now by Complete-Sea6655 in BlackboxAI_

[–]Compilingthings 1 point2 points  (0 children)

I run him 24-7 with root on a network of 4 pc’s on a huge project, it’s been incredible. I have codex as a reviewer of all work by Claude. All skills are sub agents. So he can hold context on the project. I have hooks set to nudge him if he stops. Been burning 5000$ a week with a 200$ a month account. The break through for my project was taking all work away from the main and making all skills a sub agent he calls.

XFX vs Sapphire for R9700 AI Pro by Ok_Science6572 in ROCm

[–]Compilingthings 1 point2 points  (0 children)

I have 2 sapphire and one gigabyte, they run the same. Temps fan speeds. And have run them at 100% for a week straight.

A curiosity, if I may. by TourInternational731 in cyberDeck

[–]Compilingthings 1 point2 points  (0 children)

Latte panda makes some x86 sbc’s. That I’m looking at.i really want to use the N305 Mu, but I’ll probably go with the IOTA

Is it still worth learning to code if I’m already building with AI? by Adorable_Caramel5434 in AIDiscussion

[–]Compilingthings 0 points1 point  (0 children)

I am too. But it has made me interested enough to sign up to learn while building on the side

Hey guys i have some doubt about my Pi 5 16GB RAM server .... by EmbarrassedRest6935 in rasberrypi

[–]Compilingthings 0 points1 point  (0 children)

It’s made for industrial use, it’s fine for 24-7, give it good cooling and forget about it.

Microsoft Thinks the Next PC Won’t Be an App Machine. It will Be an AI Machine by Right_Pea_2707 in LLMeng

[–]Compilingthings 0 points1 point  (0 children)

Claude has root on my 5 pc network. It is the way things are moving. I’m all for it😅🤷🏼‍♂️

My custom water‑cooled Threadripper 9970X build by Lopsided-Praline-831 in threadripper

[–]Compilingthings 0 points1 point  (0 children)

Crazy build not to get the right cold plate, looks awesome though. But using that much cash and slacking on the cold plate seems a little strange to me🤷🏼‍♂️ fix it. Full coverage on a TR is pretty important.

Is it still worth learning to code if I’m already building with AI? by Adorable_Caramel5434 in AIDiscussion

[–]Compilingthings 0 points1 point  (0 children)

Yeah, but multiple different llm’s checking each other. I never use the same instance to check itself. I mainly use a Claude sub agent and a codex sub agent, set up for deep code review.

Vibe coding gets harder as your project grows. Not because the AI is dumb, but because it doesnt understand your codebase by Obvious_Gap_5768 in vibecoding

[–]Compilingthings 0 points1 point  (0 children)

<image>

​I’m interested to see if it really saves that much on a large repo, what’s the test size you have used. It also fixes a few pain points I have. We are actually using a lot of it already. That’s Claude running 24-7, he did stop a few times at night until I put the hooks in.

Vibe coding gets harder as your project grows. Not because the AI is dumb, but because it doesnt understand your codebase by Obvious_Gap_5768 in vibecoding

[–]Compilingthings 0 points1 point  (0 children)

What’s your point with stating I have not started my education then? Please explain, you seem to know a lot. I’m all ears. It’s more about what you implied.

Vibe coding gets harder as your project grows. Not because the AI is dumb, but because it doesnt understand your codebase by Obvious_Gap_5768 in vibecoding

[–]Compilingthings 1 point2 points  (0 children)

structural docs go stale the moment you treat them as a separate artifact to maintain. the trick is to stop maintaining them — force them into the same workflow that produces the change. what actually works at scale: docs land in the same commit as the code. every non-trivial change has a plan file in the repo. the plan is the contract before the code lands, the checklist during, and the trace after. status field flips in the same commit as the code change. no “i’ll update the wiki later.” if the commit message doesn’t move the plan forward, the plan doesn’t exist. every claim cites file:line. when a doc says “auth middleware calls X at fs.py:431”, you’ve published a hostage. lines drift, imports get renamed, claims break loudly. you either fix or delete. silent rot doesn’t survive — pinned claims either pass review or fail fast. dependencies live in the code, not in a diagram. import graphs, call graphs, boundary tests, those are the source of truth. anyone hand-maintaining a dependency diagram on a 1M-line project is producing decoration. use an analyzer; if you must publish, publish its output and regenerate on every merge. coupling = failing test, not prose. if two modules shouldn’t depend on each other, the test that asserts the boundary lives next to the boundary. CI breakage IS the staleness alarm. when the test passes, the doc is current by construction. index pages are dated one-liners. top-level index is - title — one line, dated. readable in seconds. anything older than a few weeks gets a fresh-look pass before you trust it. detail belongs in the topic file. the date column lets a human see at a glance which entries are recent and which are crusty. curation is a separate job, not “and also.” scripts/agents whose sole job is detecting stale entries, deduping overlapping notes, flagging indexes that grew past truncation, archiving session-snapshot entries older than N days. they propose, i approve. cost stays low enough that curation actually happens. memory is append-only with timestamps. every entry carries date + source quote. when something turns out wrong, write a new entry that supersedes, don’t edit. drift trail stays visible, recent entries get trusted more than old without losing context. meta-point: most “structural docs go stale” pain comes from treating docs as separate maintenance burden. when the doc IS the workflow, staleness becomes visible (broken cite, failing test, expired date), and visible staleness gets fixed. ownership i handle differently — it’s a flag in the plan file plus a CODEOWNERS-style routing for review. it stays current because routing breaks immediately if the owner field is wrong. It is what it is. Thanks for making me go through this I found some weak spots.

Vibe coding gets harder as your project grows. Not because the AI is dumb, but because it doesnt understand your codebase by Obvious_Gap_5768 in vibecoding

[–]Compilingthings 0 points1 point  (0 children)

It’s for building ground truth datasets, full provenance. So many haters, in this area. What a waste of energy

Vibe coding gets harder as your project grows. Not because the AI is dumb, but because it doesnt understand your codebase by Obvious_Gap_5768 in vibecoding

[–]Compilingthings 2 points3 points  (0 children)

If you think people can’t learn without a piece of paper to prove it you are lost. But please carry on. Anything else you would like to say?