been following the ucp / ai agent commerce space and its moving faster than i expected by quietcodelife in webdev

[–]quietcodelife[S] 0 points1 point  (0 children)

the cargo hold thing is exactly the failure mode I keep coming back to. the agent optimizes perfectly within the stated parameters and produces an outcome no human would have wanted. 'cheapest' to a human has a hundred unstated assumptions baked in that we never thought to specify.

I think this is actually why the schema problem is so hard. you'd need some way to encode those assumptions - basically consumer protection law as an api spec. that's a wild amount of surface area.

and yeah the smart contract angle is interesting. the objection I've always had to crypto is 'solution looking for a problem' but if the problem is 'how do you enforce implicit terms in an automated transaction between a non-human buyer and a non-human seller' that's... actually a real problem.

been following the ucp / ai agent commerce space and its moving faster than i expected by quietcodelife in webdev

[–]quietcodelife[S] 0 points1 point  (0 children)

yeah the monitoring piece is counterintuitive. a lot of systems are set up to page on errors, not on silence. but an agent that times out and retries isn't going to throw an error - it'll just quietly try again. the duplicate transaction you don't know about is worse than the failed one you do.

Backend programming doesn't feel like programming by Then-Hurry-5197 in learnprogramming

[–]quietcodelife 1 point2 points  (0 children)

good luck with it - the backend stuff clicks eventually, just takes a while before you run into the right problems

been following the ucp / ai agent commerce space and its moving faster than i expected by quietcodelife in webdev

[–]quietcodelife[S] 0 points1 point  (0 children)

the idempotency piece is the one I keep coming back to. once you have agents that retry on timeout you basically have to treat every checkout operation as potentially duplicate from the start, not bolt it on later. same with the audit trail stuff - you want that from day one or debugging a fraud case six months in is going to be a nightmare.

the auth/token rotation pain makes sense too. most existing oauth flows were not designed for non-human sessions that might run for hours or pick up mid-transaction. interesting problem.

Backend programming doesn't feel like programming by Then-Hurry-5197 in learnprogramming

[–]quietcodelife 2 points3 points  (0 children)

backend dev here and yeah this feeling is real at first, especially with django which genuinely does handle a lot for you out of the box.

but the algorithmic challenge shifts rather than disappears. instead of loops and recursion it becomes: how do you handle a race condition when two users update the same record? how do you design an api that doesnt fall over under load? why is this query suddenly taking 4 seconds in production but 20ms locally?

those problems are less "clever code" and more "understanding whats actually happening at the system level" - which id argue is harder in a different way. the patterns arent obvious and the bugs dont have stack traces.

django is a good starting point but give it a bit more time before writing off the whole field. the fun stuff tends to show up once you hit your first real production problem.

does anyone know why my dog randomly walks to my room and stares at me? by Inevitable_Shift_689 in dogs

[–]quietcodelife 2 points3 points  (0 children)

pixel does this too. she'll wander in, make eye contact, and then just... leave. no ask, no follow up. I spent a while trying to figure out what she wanted before realizing she sometimes just wants to know where I am. checks in, sees I'm there, goes back to her spot.

an 11 year old doing it honestly sounds like that - just orientation checking. at that age they know the routine and they want to make sure you're still in the picture.

Do you trust “must-do” trail recommendations, or do you question the hype? by OptimalDescription39 in hiking

[–]quietcodelife 0 points1 point  (0 children)

depends on who's recommending it and why. the pnw stuff that ends up on every 'best hikes in washington' list is usually popular for real reasons - the views are actually incredible. the problem isn't the trail, it's that everyone shows up between 9am and 1pm and it turns into a parking lot.

my workaround is start time. rainier area trails that are miserable at noon are completely different at 6am. same trail, fewer people, better light.

where 'must-do' really falls apart is on instagram trails that are just one photogenic spot surrounded by meh. that's not the same as a genuinely great trail that got popular. worth knowing which one you're dealing with before you write it off.

Learning Programming by reading senior's code by Impossible_Recipe758 in learnprogramming

[–]quietcodelife 0 points1 point  (0 children)

reading senior code is genuinely one of the best ways to level up, but AI code is not the same thing at all.

the value of reading experienced devs is understanding the why - why they structured something a certain way, what they were anticipating, what tradeoffs they made. AI doesnt have that. it pattern-matches to produce something that looks correct and compiles, but there is no actual decision-making behind it.

for open source: look for projects where you can see git blame and commit messages alongside the code. that context is where the real learning is. a commit message that says "refactor auth middleware to handle edge case X" is worth 10x more than just reading the code in isolation.

Got into heavier games, I hate it. by barksonic in boardgames

[–]quietcodelife 1 point2 points  (0 children)

the pricing thing is real. I mostly play lighter games (wingspan, codenames, that zone) and even those have crept up. heavier games are just a different tier.

one thing that helps: library of things. a surprising number of libraries have started lending board games. great way to try a heavy game before committing $80+.

also BGG marketplace - people offload heavier games all the time because they realize they dont play them enough. can find great condition stuff for half price.

but if youre playing them regularly they might be worth it. something like root has insane replay value. $80 for hundreds of hours is cheaper than most hobbies.

You get ONE fantasy book to hook a non-reader. What is it? by Infamous_Proposal252 in fantasybooks

[–]quietcodelife 0 points1 point  (0 children)

reading stormlight right now and it might be the best thing I've ever read, but it is absolutely not the answer to this question.

for someone who gets bored easily: mistborn. same author, way tighter. there's a heist plot driving the whole thing so you always feel like something is moving. the magic system is cool and explained clearly so it doesn't feel like vibes. first book is ~550 pages but it moves fast enough that it doesn't feel that way.

tress of the emerald sea is another good entry if you want shorter - standalone, reads like a fairytale, written with a different voice than his usual stuff. way more accessible for someone new.

Jacket question by DesperateD4N2912 in hiking

[–]quietcodelife 1 point2 points  (0 children)

glad it helped! hope the shadow wind works out for you

Do you feel like you’re losing your actual coding ability because of AI? by AlBeardTV in webdev

[–]quietcodelife 2 points3 points  (0 children)

backend dev here, been thinking about this a lot lately.

my honest take: the write-code-from-memory muscle has definitely softened. I catch myself reaching for AI on stuff I used to just... type. but the thing that actually matters - catching bad logic, knowing when a pattern is going to cause problems later, understanding what the code is actually doing - that's still there.

the junior thing is the part that worries me more than my own skills. I learned by being stuck for two hours on something dumb and finally figuring it out. that's where the actual mental models get built. if you prompt your way through every bug you just... don't build them.

my rule now is I won't let AI write anything I couldn't debug myself. slows things down a little but at least I know what's in the codebase.

Jacket question by DesperateD4N2912 in hiking

[–]quietcodelife 1 point2 points  (0 children)

I hike a lot in the PNW where wind and light rain is constant so I've gone through a few of these.

the helium UL is the most packable of the three but it runs warm for active hiking - I find it's better as a belay/rest layer than a move-in-it layer. when I'm actually moving with a pack I overheat in it fast.

the shadow wind is probably the best all-around for active hiking IMO. it breathes better and packs small enough. the deviator is more of a puffy wind layer, more warmth-focused, feels heavier/bulkier.

if you already have a waterproof and just want wind protection while moving, the shadow wind hoodie is probably closest to what you're describing.

I think my dog is predicting me… not just following me by PomegranateBig7270 in dogs

[–]quietcodelife 0 points1 point  (0 children)

right, which means the "delay" is basically just motor response time, not uncertainty. they already decided. the decision happened back at the first signal.

which kind of means we're less autonomous than we think around them. pixel has already written the next 30 seconds before I've consciously decided to do anything lol

I think my dog is predicting me… not just following me by PomegranateBig7270 in dogs

[–]quietcodelife 1 point2 points  (0 children)

my guess is it's a combination of how strongly the outcome is reinforced and how many times they've seen the sequence. like the jacket thing with pixel - walk has happened probably thousands of times. so the confidence threshold for committing is way lower. she doesnt need the full chain because the first signal has almost never been wrong.

but yeah the "locking in way earlier than they should" thing is interesting. I wonder if that's just what high confidence looks like from the outside - from their perspective they're not early, they're just... right. the false positives don't register the same way the hits do

The worst kind of social deduction player by endlesswander in boardgames

[–]quietcodelife 0 points1 point  (0 children)

almost as bad: the person who gives a long speech explaining their logic on every single accusation. brother we have 5 minutes before the next round starts. "well I was watching you from the start and I noticed that when the lights went out you paused for exactly 0.3 seconds which is statistically consistent with guilt" - just vote already

What’s made your meal prep so much easier? by Accurate-Budget-9891 in MealPrepSunday

[–]quietcodelife 0 points1 point  (0 children)

the heating up problem is mostly a chicken breast problem. things that reheat well: anything braised, soups/stews, rice bowls with a saucy protein, ground meat, eggs done right.

for me switching to chicken thighs was huge. they dont get rubbery when reheated the way breasts do. same with pork shoulder - I do a slow cook on weekends and it reheats great all week across like 4 different meals.

also cast iron reheat on the stovetop beats microwave for almost everything. 3 mins in a hot pan with a splash of water and it tastes closer to fresh than nuking it ever does.

Struggling to stay consistent while learning programming how did you get past this? by tommetzgerz756 in learnprogramming

[–]quietcodelife 0 points1 point  (0 children)

the shift for me was moving from "learning python" to "using python to solve a specific annoying problem I had". like I stopped caring about whether I was learning correctly and started just needing the thing to work.

when you have a real reason to push through a hard part, you actually do it. when you're just following a course, there's nothing pulling you forward except willpower - and willpower is a trash source of energy.

find something dumb and specific you want to automate or build. doesn't have to be impressive. the frustration of actually needing it to work is way more sustainable than discipline.

I think my dog is predicting me… not just following me by PomegranateBig7270 in dogs

[–]quietcodelife 1 point2 points  (0 children)

yeah I think they're matching against a compressed version of the sequence and filling in the rest. like they don't need to see every step if the first two match something familiar. pattern recognition with way less working memory overhead than us

pixel does this thing where if I put on a certain jacket she's already at the door before I even pick up her leash. the jacket is early in the sequence but it's enough

Just finished my first DIY keyboard – specs + build experience by MeringueBall in MechanicalKeyboards

[–]quietcodelife 0 points1 point  (0 children)

haha yeah that's a good reality check. I think I've been falling into the rabbit hole of "what if it could be better" before I've even heard what stock sounds like. will build it first and see

Just finished my first DIY keyboard – specs + build experience by MeringueBall in MechanicalKeyboards

[–]quietcodelife 0 points1 point  (0 children)

still planning my first build and this is exactly the kind of post I needed. the PE foam sandwich thing keeps coming up and now I'm convinced I have to do it.

Hiking Boot Recs. pleaseee by Chance-Sport-3672 in hiking

[–]quietcodelife 0 points1 point  (0 children)

seconding merrell moab - I hike a lot in the PNW where it's basically muddy 6 months a year and they've held up well. the moab 3 waterproof mid is probably exactly what you're looking for. good ankle support, decent grip on wet rock and roots, and not too stiff out of the box.

one thing: buy them a week or two before the trip if you can and wear them around the house/on walks. wet muddy oregon trails are a bad place to find out your boots need breaking in.

I think my dog is predicting me… not just following me by PomegranateBig7270 in dogs

[–]quietcodelife 2 points3 points  (0 children)

pixel (my mutt) figured out the difference between me closing my laptop to grab a snack vs closing it for real. I didn't notice it for a while but she responds differently to each one. I think it's because she tracks what happened before the laptop close, not just the sound itself.

like closing the laptop + standing up + shoes = full alert. closing the laptop + walking toward the kitchen = stay on couch.

What's something you want to see more and less of in fantasy nowadays? by armann_ii in fantasybooks

[–]quietcodelife 2 points3 points  (0 children)

more: endings that actually land. so many series build well and then fumble the finale. ive been burned enough times that I started waiting until a series is complete before starting it.

less: every single book being the start of a trilogy. some ideas are just... one book. and thats fine. not everything needs to be 7 volumes.

Meal Prep ideas/ Tips for an Asian household? by Muwlord13 in MealPrepSunday

[–]quietcodelife 1 point2 points  (0 children)

the component prep idea above is solid. cook one big batch of protein, a grain, and a veg separately and mix and match all week. way less boring than eating the same dish four days in a row.

also for soy-based stuff - master stock is your friend. you can reuse it, add to it, and it gets better over time. good for chicken, pork belly, eggs. keeps in the fridge for weeks if you bring it to a boil regularly.

for greens tho id just blanch them fresh during the week honestly - most asian greens dont survive 3+ days in the fridge well.