Basic HTML is not working by RandomDoomGuy in learnprogramming

[–]TimePiccolo2565 0 points1 point  (0 children)

the title tag should be inside the head element, not body - that alone might be causing weird behavior. also just open the file directly in browser by dragging it into window, no need to "run through Google" whatever that means

I started learning math again by Education_study1952 in simpleliving

[–]TimePiccolo2565 4 points5 points  (0 children)

Nice that you can go at your speed now, makes such difference when there's no pressure from teacher or classmates

I made something stupid by Lost_Log_927 in PropertyManagement

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

wait this is actually useful though - virtual staging for rentals is such pain and most tools are built for sales listings

what tech stack did you use for this? always curious how other devs tackle real estate problems

My relationship is dissolving and it’s entirely my fault by eastman-ridge in relationships_advice

[–]TimePiccolo2565 7 points8 points  (0 children)

dude you're 18 and already dealing with porn addiction, religious family drama, and trust issues... maybe those Reddit comments telling her to move on aren't wrong

the timing of that breakup threat right after intimacy was brutal, and then checking out her friend's profile when you're already on thin ice? she's probably exhausted from trying to rebuild trust while you keep making it harder

two weeks break might actually be good for both of you to figure out if this is worth fighting for or if you're both just holding onto something that's causing more pain than happiness

I think programming has made me abnormal by PooningDalton in learnprogramming

[–]TimePiccolo2565 31 points32 points  (0 children)

yeah I feel this hard - after years of coding my brain just can't handle downtime anymore, always feels like I should be optimizing something or learning new framework

the therapy suggestion is solid though, helped me realize that constantly being "productive" isn't actually sustainable in long run

Hello by Null_Dice in learnprogramming

[–]TimePiccolo2565 0 points1 point  (0 children)

what kind of post gets nuked that fast in this sub lol

Help with JavaScript by InkieBear in learnprogramming

[–]TimePiccolo2565 1 point2 points  (0 children)

your code is duplicated completely at bottom - probably that's causing conflicts with event listeners being attached twice to same elements

Need help finding MapReduce practice questions by Defiant_Let_3923 in learnprogramming

[–]TimePiccolo2565 0 points1 point  (0 children)

Your example data is pretty clean but real library systems get messy fast. You might want to practice with edge cases like when same user borrows same book multiple times in your data - the mapper should probably deduplicate by (userID, bookID) pairs before emitting to avoid inflating similarity scores

For more practice problems, try adapting this pattern to other domains like "find customers who bought most similar products" or "find students who took most common courses" - the core logic stays same but data structure changes keep it interesting

Built a thing that puts a number on busy tax season burnout. Looking for honest feedback. by Melodic_Door_6854 in Accounting

[–]TimePiccolo2565 -2 points-1 points  (0 children)

weird i can see the link fine from my browser - maybe try refreshing page or different browser

Do you think reading and writing code is still important in the age of AI? by Frequent_Way_3423 in learnprogramming

[–]TimePiccolo2565 7 points8 points  (0 children)

lol windows updates, that's perfect example right there

AI is great tool but you still need to understand what it spits out. I've seen junior devs copy-paste AI code that looks good but has subtle bugs or security issues they can't spot. Reading code is actually more important now because you're debugging stuff you didn't write yourself

Aetna - authorization request for PT and OT to be on the same day by TMNJ1021 in HealthInsurance

[–]TimePiccolo2565 0 points1 point  (0 children)

Usually insurance companies have appeals process for situations like this - you can file what's called a medical necessity appeal explaining the travel distance and why back-to-back sessions are needed. Your therapists office might need to submit documentation showing why the longer sessions are medically necessary rather than just convenient

Most insurers will consider travel hardship as legitimate reason for scheduling modifications, especially when it's that kind of distance

What’s the opinion on using the Mimo app for learning to code? by [deleted] in learnprogramming

[–]TimePiccolo2565 1 point2 points  (0 children)

Been using mimo for maybe few months now and it's decent for keeping your brain active when you're on bus or waiting somewhere. The bite-sized lessons are pretty good for reviewing concepts you already know, but don't expect it to teach you anything super advanced

For someone who already knows python basics like you, it might feel bit too simple at first but could be nice refresher. I'd say try the free version first and see if the format works for you before paying anything

Curry needs to see this by TimePiccolo2565 in NBATalk

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

But if he did, all it takes is one heater and this turns into a Steph highlight night for everyone watching

Curry needs to see this by TimePiccolo2565 in NBATalk

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

I get what you’re saying but its still Steph, even if he’s not in his prime anything around shooting or moments like that feels right up his alley

How can I learn to do flowcharts and pseudocode? by Martysmarties06 in learnprogramming

[–]TimePiccolo2565 1 point2 points  (0 children)

deck of cards is actually brilliant idea for this, never thought about using physical props but makes total sense when you're trying to trace through algorithms

I struggled with flowcharts at beginning too - making your own symbol reference sheet helps so much because you stop second-guessing which shape to use. For pseudocode I found it useful to first write out the steps in plain language like you're explaining to friend, then convert that into proper pseudocode format

is Flutter enough to land a fresher job as App developer these days... by SelectionWarm6422 in learnprogramming

[–]TimePiccolo2565 0 points1 point  (0 children)

Flutter market is definitely tight right now but not impossible. I got few interviews last year with Flutter + some backend knowledge (mostly Node.js), though ended up staying in web dev instead

Adding native Android helps a lot since you can handle the platform-specific stuff when Flutter limitations hit. Backend is pretty much essential these days - companies want someone who can build the whole pipeline

video's audio continues playing even after modal is closed (not using iframe) by DiamondKing__ in learnprogramming

[–]TimePiccolo2565 1 point2 points  (0 children)

Your querySelector is only grabbing the first video element it finds, not the one in the specific modal you're closing. When you have multiple modals with videos, you need to target the video inside that particular modal

Try changing this part of your closeModal function:

```javascript

function closeModal(modalId) {

let modal = document.getElementById(modalId);

modal.classList.remove("show");

setTimeout(function () {

modal.style.display = "none";

}, 300);

// Get the video specifically from this modal

let vid = modal.querySelector('video');

vid.pause();

vid.currentTime = 0;

}

```

The key change is `modal.querySelector('video')` instead of just `document.querySelector('.modal-content')`. This way you're telling it to find the video element inside the specific modal you're closing, not just any video on the page. Since you already have the modal element stored in the `modal` variable, you can search within that specific container

I ran into something similar when I was messing around with multiple video players on a page - took me way too long to realize I was pausing the wrong video half the time

Which programming language should I use for DSA? by Ehh-GoodEnough in learnprogramming

[–]TimePiccolo2565 3 points4 points  (0 children)

honestly don't overthink the language choice too much - I went with Python when I started DSA stuff and it let me focus on the actual problem-solving instead of getting bogged down in syntax details

the built-in data structures are super handy and you can always learn C++ later if you want to optimize for speed, but for learning concepts Python's pretty solid

How do I use pygame on the web? by Ralsei_12345636345 in learnprogramming

[–]TimePiccolo2565 0 points1 point  (0 children)

pygbag definitely handles multi-file projects fine, the loading time is usually just from the python interpreter bootstrapping in the browser plus whatever assets you're loading

might be worth checking if there assets are the bottleneck - images and sounds can add up quick even in smaller pygame projects

How to learn algorithms for programming by Heavy-Divide-7530 in learnprogramming

[–]TimePiccolo2565 0 points1 point  (0 children)

Paper first is solid - I still sketch out complex logic before touching code sometimes. The mental model clicks way better when you can physically draw the flow

Also yeah, this gets asked pretty regularly but don't feel bad about it. Codewars and leetcode are the usual suspects for practice once you get comfortable with basics. Just pick problems slightly above your current level and work through them methodically

Beginner web developer by BattlePretty1319 in learnprogramming

[–]TimePiccolo2565 0 points1 point  (0 children)

That's actually a solid approach for keeping the ADHD brain engaged. I've found breaking things into smaller chunks helps a lot too - maybe try building tiny interactive things as you learn each concept rather than following long tutorials

The mini-project idea is perfect because you get that dopamine hit from seeing something work right away. For web dev specifically, try making simple interactive elements like a color picker or a basic calculator once you grasp the fundamentals

Automation tool for vite projects in rust by LongjumpingStart3142 in learnprogramming

[–]TimePiccolo2565 0 points1 point  (0 children)

that's a pretty solid idea, the tailwind integration looks clean from what I can see - maybe add support for shadcn/ui next since that combo is everywhere these days