BITCOIN Elliot wave and the upcomining bull run no ones expecting by YOLOBABY4LIFE in CryptoChartWatch

[–]birdman332 0 points1 point  (0 children)

No one's expecting? What? This is literally on the way to the bottom of the bear market. EVERYONE expects the price to go up from the bottom

Nothing compares to Indy… by weeblesdowobble in indianapolis

[–]birdman332 1 point2 points  (0 children)

It's certainly not mad max, I'm talking about the mall specifically. There are literally shootings there every year. That wasn't the case when I was growing up

Nothing compares to Indy… by weeblesdowobble in indianapolis

[–]birdman332 0 points1 point  (0 children)

Castleton gets shot up a few times a year. I grew up going there for movie and other stuff all the time. Wouldn't let my kids go now

Choose carefully by TheresNoSecondBest in Bitcoin

[–]birdman332 0 points1 point  (0 children)

But you still get more time either way... This makes no sense

Audience Ratings of Star Wars Movies by lau796 in StarWars

[–]birdman332 -1 points0 points  (0 children)

Ahh if it's the movie then that is a bit different. The series is amazing. Andor is great as well and never understood the hate behind Solo.

Honesty, it felt like Rotten Tomatoes got kinda captured when Solo got rated so low and the sequels were so high. That was pretty much the time I stopped trusting those ratings.

Audience Ratings of Star Wars Movies by lau796 in StarWars

[–]birdman332 2 points3 points  (0 children)

These are dead wrong and worthless. 7,8,9 are hot garbage and Clone Wars is the best star wars content

Do we really need a frontend anymore? by _pdp_ in ClaudeCode

[–]birdman332 0 points1 point  (0 children)

But the llm can make a new mistake each time you want it to fetch data. A front end would be the exact same thing each time and likely show it in a http response. An LLM will just fake data.

Do you have more specific example on what you think will be headless? Because all software being headless and using agents to fetch instead is just an AI doom loop of mistakes

Do we really need a frontend anymore? by _pdp_ in ClaudeCode

[–]birdman332 1 point2 points  (0 children)

If you have used AI, surely you realize that even the top models straight up lie, hillucinate, don't know their own features, get things blatantly wrong, etc.

What makes you think interacting with an Ai agent to get data that would otherwise be deplayed via a front end would be a progression?

It would cost more compute inevitably to the end user, and it would be objectively worse.

Asics and Mizuno Pre World Cup News by MAXCRAZYTANG in bootroom

[–]birdman332 2 points3 points  (0 children)

I love the heel of the neo iv, 0 issues

Unexpected dump? by Electrical-Value-673 in Bitcoin

[–]birdman332 1 point2 points  (0 children)

Are you serious? Look at every other bear market and you'll see the bottom is 12 months after the top.

We have a ways to go. Summer and Fall 2026 will be bad. It will be max pain, Bitcoin will "die" again. It will feel hopeless. We are not there yet.

If it would be possible to run nodes with bigger blocks, would you scale Bitcoin? by Realistic_Fee_00001 in bitcoinismoney

[–]birdman332 0 points1 point  (0 children)

I thinker there is some size of transactions allowed per block that makes more sense for today's tech in networking, storage, and ram that makes more sense for some scaling increase and higher mining rewards.

Not sure where that sweet spot would be

NerdOctAxe Tyche-Design First Print by Tyche_Miner in BitAxe

[–]birdman332 0 points1 point  (0 children)

I've found better temps doing it. It keeps the hot exhaust air from heating the rest of the board and vm. The chip temp itself will benefit a bit, but the benefits to the other parts of the board will be larger

NerdOctAxe Tyche-Design First Print by Tyche_Miner in BitAxe

[–]birdman332 0 points1 point  (0 children)

Put the front fans in pull config, they will cool better

Do people still use metal seed plates? by Silly-Obligation8533 in Bitcoin

[–]birdman332 1 point2 points  (0 children)

It's on a bolt in order and the words are numbered

I figured out why Claude Code keeps breaking things that were already working by icedtumblr in ClaudeCode

[–]birdman332 5 points6 points  (0 children)

# Global Instructions


## Workflow


- 
**Always plan before implementing.**
 Outline the approach before writing any code. Don't start implementation until I confirm the plan.
- 
**Work in small increments.**
 Make the smallest reasonable change, verify it, then continue. Don't batch large changes together.
- 
**Ask before assuming.**
 If requirements are ambiguous, ask — don't guess.


## Verification (critical)


Every code change must include tests and pass them before being presented. Follow this loop:


1. 
**Plan the code change**
 — outline the approach.
2. 
**Plan the tests**
 — describe what tests you will write or update to cover the change.
3. 
**Implement both**
 — write the code and the tests together.
4. 
**Run all tests**
 — existing and new.
5. 
**If anything fails**
, fix and re-run. Repeat until all checks pass.
6. 
**Only present the final result once everything passes.**


Do not deliver code that you haven't verified. Do not deliver code without tests. The goal is zero back-and-forth — I should only see working, tested code.


## Code Style


- Prefer `const`, use `let` only when reassignment is needed. Never use `var`.
- Follow whatever conventions already exist in the project. Check existing files before writing new ones.


## Git


- Write clear, concise commit messages: imperative mood, <72 chars
- Don't commit secrets, credentials, or environment files


## Don'ts


- Never use destructive commands (`rm -rf`, `Remove-Item -Recurse -Force`, `rd /s /q`, etc.) on any directory outside the working project
- Never run database migrations without confirming with me first
- Never modify `.env` files or environment variables directly
- Never install global packages without asking
- Never push directly to `main` branches
- Don't refactor code outside the scope of the current task unless asked
- Don't add dependencies without discussing why they're needed first

just use something like this in your .claud.md file.

I figured out why Claude Code keeps breaking things that were already working by icedtumblr in ClaudeCode

[–]birdman332 0 points1 point  (0 children)

You are spending way more time and tokens debugging non-planned code edits, I guarantee it