T

Posts

Recent Comments

2h ago

in

Screwed up a stamped patio because I ignored the weather

hosing green concrete is a total gamble and half the time it just washes out the fines on the surface. you end up with a weak crumbly top layer that dusts off for years. if the mix was too dry or the finishing was rushed, hitting it again just messes up the aggregate exposure. gotta let the stuff set properly and accept whatever finish you got. half these "fixes" just make things worse down the road.

3h ago

in

Surprised by how many lights I could run on a single 15 amp circuit after actually doing the math

Oh the 80% rule is more of a guideline for continuous loads, not a hard limit for circuit breakers lol. A tripping breaker is actually doing its job with that space heater, the 80% thing is about what you should plan for not what the breaker can handle.

15d ago

in

Rant: My cousin's IT guy told me to stop reusing passwords... and he was right

You ever feel like the password manager is just a really organized villain waiting to strike?

16d ago

in

Rant: That safety meeting last week changed how I think about air checks

Has anyone else thought about how the REAL danger isn't just the big obvious failures, but the tiny stuff that's quiet and sneaky? I found a hairline crack in a yoke o-ring once that was so small I almost missed it, but it would have leaked air fast enough to empty an 80 in like 10 minutes underwater. That's the kind of thing that doesn't make a dramatic pop or hiss, it just slowly starts letting go. Mike's story about the valve seal is the same deal, its those microscopic flaws that only show up under pressure. Makes me wonder how many close calls we've all had without even knowing it.

17d ago

in

Hit 1000 API calls in 3 hours and finally got why rate limits matter

Started noticing the same thing with latency eating up my budget. Had a script that would wait for complete responses before moving to the next call but those wait times stacked up fast. Switched to sending requests in parallel batches instead and cut my total time by like 60%. The detailed prompt trick works too once you learn to frontload all the context upfront so the model doesn't need to ask clarifying questions that burn tokens. Also found that setting a max token limit slightly below what I needed kept it from rambling on and wasting my daily cap on filler text.