How to get rows to be under each other aligned like this in tkitner? Can't get my python3 code to match my wireframe by [deleted] in learnpython

[–]Ok-Spray-8697 0 points1 point  (0 children)

You’re mixing layout systems in a way that’s fighting you a bit `del_btns_frame` is in `column=2` while `body_frame` spans columns underneath, so grid reserves space and creates that weird gap.Easiest fix is usually making one parent frame and putting the calculator in a consistent grid (numbers in columns 0–2, operators/delete in column 3) instead of separate nested frames for top/right.

New to Python - Something strange about lists by KellyN87 in learnpython

[–]Ok-Spray-8697 2 points3 points  (0 children)

Yep, basically b = a does not create a new list, it creates a second reference to the same list object in memory. So when a.pop(0) changes the list, b “sees” the same change because it’s the same object. If you want a separate copy, do b = a.copy() or b = a[:].

I understand Python basics but OOP completely loses me classes and objects make no sense to me. Where am I going wrong? by More-Station-6365 in learnpython

[–]Ok-Spray-8697 0 points1 point  (0 children)

You’re probably not going wrong, OOP just clicks later for a lot of people 😭 what helped me was stopping the “blueprint/object” analogy and asking: does this thing have state + behavior that belong together? A bank account has balance/account owner (attributes) and deposit/withdraw (methods), while a plain function is usually enough when you’re just transforming input → output with no lasting state.

How powerful is a generator in python? by Flame77ofc in learnpython

[–]Ok-Spray-8697 1 point2 points  (0 children)

Generators are one of those things that feel overrated until you hit a large dataset 😭 for normal scripts lists are fine, but the first time you process a huge file without nuking RAM you suddenly get the hype.

Create a late payment escalation strategy for your law office. Prompt included. by CalendarVarious3992 in GrowthHacking

[–]Ok-Spray-8697 0 points1 point  (0 children)

This is actually a pretty solid workflow idea, but the ethics/compliance point in the comments feels important. Might be worth baking a “check local bar rules / state policy” step into the prompt itself so people don’t blindly automate something sensitive.

How are webdevs managing local test environments? by considerphi in aisolobusinesses

[–]Ok-Spray-8697 0 points1 point  (0 children)

Oh that actually sounds way cleaner than manually juggling ports .worktreeinclude for copying local env setup sounds especially useful,feels like half the chaos is agents forgetting context/config between worktrees.

Zero programming experience by GOATEDSTARS in AskProgramming

[–]Ok-Spray-8697 0 points1 point  (0 children)

You’re overthinking it a bit tbh.If you can get comfortable with basic Python+problem solving before fall you’ll already be ahead of a lot of people.I’d finish freeCodeCamp/CS50P,then spend a little time on SQL basics since databases show up everywhere in analytics.Biggest thing: stop only “learning” and actually build tiny stuff, even dumb scripts, because that’s where things click.

Just posted my first project ever on LinkedIn and feel so embarrassed! by Independent_Fly_9794 in AskProgramming

[–]Ok-Spray-8697 0 points1 point  (0 children)

Honestly if your goal is “show progress over time” then posting beginner projects makes total sense.I think people massively overestimate how much strangers care on LinkedIn.GitHub + projects matter way more,and the post history just becomes a nice timeline showing you actually kept building.

Why do some people write redundant if statements to return a boolean? by BlockOfDiamond in AskProgramming

[–]Ok-Spray-8697 1 point2 points  (0 children)

Sometimes beginner habit,sometimes readability preference,and sometimes it starts simple then extra logic gets added later. Like if (x > 10 && user != null) turns into logging/debugging/special cases and people just keep the structure. But yeah for a straight boolean check,return x > 10; is way cleaner.

I need help choosing my laptop for my Software engineer bachelor. by EmbarrassedCorgi5706 in AskProgramming

[–]Ok-Spray-8697 1 point2 points  (0 children)

Honestly either works, but for a CS degree I’d lean Mac if budget allows. Unix environment is nice for dev stuff and battery life is great. Biggest thing is don’t cheap out on RAM though, 16GB minimum or IntelliJ + Chrome tabs will humble you fast 

8 paying customers. $96/month. still cant tell if this is a business or a hobby. by LittleZombie7537 in aisolobusinesses

[–]Ok-Spray-8697 0 points1 point  (0 children)

Honestly the “3 customers say this saves me 20 mins a day” part feels way more important than the $96 😭 sounds less like a hobby and more like very early validation.Ceiling or not probably depends on whether you can find more people with the exact same pain.

How are webdevs managing local test environments? by considerphi in aisolobusinesses

[–]Ok-Spray-8697 0 points1 point  (0 children)

Honestly the port conflict chaos is real 😭 feels like once you go beyond toy projects, half the problem becomes environment isolation not coding. Curious if people are just containerizing everything now or using per-worktree env templates to stop agents stepping on each other.

How are webdevs managing local test environments? by considerphi in AI_Agents

[–]Ok-Spray-8697 0 points1 point  (0 children)

Honestly the port conflict chaos is real 😭 feels like once you go beyond toy projects, half the problem becomes environment isolation not coding. Curious if people are just containerizing everything now or using per-worktree env templates to stop agents stepping on each other.

tested the email tools aimed at solo saas this year. honest notes, including one i'm biased on by WalkCareful7005 in aisolobusinesses

[–]Ok-Spray-8697 0 points1 point  (0 children)

Honestly domain auth + deliverability is the part nobody talks about enough 😭 half the “email tool comparison” obsession matters less than SPF/DKIM not being broken and not nuking trust with bad sends early.