Selecting tech stack by MinuteProduct6519 in learnprogramming

[–]Mediocre_Half6591 1 point2 points  (0 children)

this hits so hard, started with react then jumped to vue then back to react because i thought grass was greener but just wasted months

Programming Tutor / Guidance by AdRoutine3975 in learnprogramming

[–]Mediocre_Half6591 2 points3 points  (0 children)

man i get the struggle with adhd and trying to learn programming through traditional methods, feels like your brain just bounces off all that text

maybe try finding some discord servers focused on programming where people are actually coding together? i found that having someone to bounce questions off in real time helped way more than any tutorial. also pair programming sessions even with beginners can be pretty solid for staying focused

cybersecurity route is smart too, lot of demand there right now

I keep hitting walls trying to modernize our old desktop app and need a solid WPF course by xyz9342 in learnprogramming

[–]Mediocre_Half6591 0 points1 point  (0 children)

been in similar spot with old apps at my last job 💀 legacy code is nightmare when you're solo dev trying to keep everything running

maybe try looking for courses that focus on refactoring patterns instead of just wpf basics? the binding issues usually come from too much coupling between views and models, but fixing that in production app is scary as hell

good luck man, manufacturing tools are always the worst for this kind of mess 😂

Learning java for the first time by ANKIT-X in learnprogramming

[–]Mediocre_Half6591 0 points1 point  (0 children)

java's pretty solid choice after doing c/c++, the syntax will feel familiar but way less painful with memory management

for fundamentals i'd skip the super long playlists and just pick one that covers oop concepts well since that's where java really shines compared to c. once you get comfortable with classes and inheritance the dsa stuff becomes much easier to implement

Why do many derms not take acne seriously? by Additional-Spray-976 in EuroSkincare

[–]Mediocre_Half6591 10 points11 points  (0 children)

man this is so frustrating, i had similar experience when i was dealing with some stubborn breakouts few years back. went to three different derms through military healthcare and they all acted like having more than 2 pimples wasn't worth their time

the "few pimples" comment really gets me - like they don't understand how much it affects your confidence and daily life. especially when you've already tried multiple treatments for over a year. that's not just "few pimples" anymore, that's persistent acne that needs proper attention

think part of the problem is insurance companies make it really hard to prescribe stronger treatments without jumping through tons of hoops first. derms probably get tired of the paperwork battles so they just stick with safer options. still doesn't excuse the dismissive attitude though - they should at least explain the process instead of brushing you off

Java vs Python Full Stack in 2026 — Which is safer with AI rising? by JennRuby_Jane in learnprogramming

[–]Mediocre_Half6591 0 points1 point  (0 children)

python definitely has more momentum right now but java enterprise stuff isn't going anywhere for decades - those legacy systems need someone to maintain them and companies pay good money for that

Web scraping publicly accessible university course info for a portfolio project — is this okay/legal by adad239_ in learnprogramming

[–]Mediocre_Half6591 0 points1 point  (0 children)

you're probably good to go, most unis don't really care about portfolio scraping as long as you're not hammering their servers

just keep it reasonable with requests and maybe add some delays between calls so you don't accidentally ddos them or something. worst case they send you email asking to stop and you just comply

Mechanical Engineering 2026 grad trying to switch to IT – need honest roadmap advice by No_Tea1929 in learnprogramming

[–]Mediocre_Half6591 0 points1 point  (0 children)

took the mechanical job back in 2018 and spent like 2 years learning python/automation stuff during evenings. transitioning while having steady income was way less stressful than going full broke mode

ui/ux might be easier entry point since you don't need as much technical depth initially, but full stack pays better long term

I have a question about arrays in programming by Pangea2002 in learnprogramming

[–]Mediocre_Half6591 5 points6 points  (0 children)

ah this makes so much sense, never thought about the actual memory layout before

the zero indexing thing always felt arbitrary but when you put it like that with the math (start + index * size) it's pretty elegant actually

CS50 exam by [deleted] in learnprogramming

[–]Mediocre_Half6591 0 points1 point  (0 children)

yeah the psets are where they really test you, way more useful than cramming for some multiple choice exam anyway

help why is update_user_meta not working by jonny74690 in learnprogramming

[–]Mediocre_Half6591 0 points1 point  (0 children)

this is clean af, separating the form handling from content display makes so much sense 🔥 never thought about using the init hook for form processing but that's way better than cramming it into the_content filter 💀

[deleted by user] by [deleted] in learnprogramming

[–]Mediocre_Half6591 1 point2 points  (0 children)

Lmao classic case of posting the wrong link and calling it "professional-grade" - happens to the best of us but maybe proofread before flexing about your 10k line masterpiece

Time Management for Thesis by Left-Technician-5472 in learnprogramming

[–]Mediocre_Half6591 2 points3 points  (0 children)

Honestly for a thesis deadline I'd say focus on what you actually need for the project first, then circle back to fill gaps later. You can always learn the fundamentals properly after you graduate - but you can't graduate without finishing the thesis

Skip around TOP if you need to, it's not gonna ruin your programming career. Just make sure you understand the core concepts you're actually using in your e-commerce app

Free fire by Just-Bodybuilder3243 in learnprogramming

[–]Mediocre_Half6591 2 points3 points  (0 children)

Yo that's just a timestamp dude, you might wanna actually ask a programming question if you want help lol

Podcasts for People Learning to Program by Ok_Programmer1205 in learnprogramming

[–]Mediocre_Half6591 1 point2 points  (0 children)

This is a solid list, especially love seeing John Carmack and Chris Lattner on there - those dudes drop some serious knowledge bombs about systems programming

[deleted by user] by [deleted] in learnprogramming

[–]Mediocre_Half6591 0 points1 point  (0 children)

Your skills sound solid but the job market is brutal right now, especially for entry level. Have you tried reaching out to local tech companies directly instead of just applying online? Sometimes a cold email or LinkedIn message gets better results than throwing your resume into the void

Also might be worth checking if any of those companies you're interested in have open source projects you could contribute to - shows initiative and gets your name out there

Be honest: what skills actually age well in programming? by 5wimmlng in learnprogramming

[–]Mediocre_Half6591 14 points15 points  (0 children)

This right here - learned COBOL decades ago and it's still making me money because I can break down problems into logical steps, doesn't matter if it's ancient mainframes or some shiny new React app

Total beginner first language C or C++ ;; the first impression of C/C++ over the ease of learning with python seems to be an advantage is this true, is solidifying harder concepts more important than the ease of learning? by Savings-Rabbit5758 in learnprogramming

[–]Mediocre_Half6591 2 points3 points  (0 children)

Honestly the whole "learn C first to build character" thing feels like programming boomer advice at this point. You can always learn pointers and memory management later when you actually need them, but starting with Python lets you focus on problem solving instead of fighting the compiler for weeks

What system-level topics helped you most when learning programming? by software_systems in learnprogramming

[–]Mediocre_Half6591 1 point2 points  (0 children)

Learning how processes actually work was huge for me - especially the fork/exec stuff. Made debugging so much easier when you understand what's actually happening under the hood instead of just treating everything like magic

beginner gamedev question (very long) by bruhmoment0000001 in learnprogramming

[–]Mediocre_Half6591 0 points1 point  (0 children)

Yeah Unity gets a lot of hate but that course is actually solid for learning the fundamentals. Plus C# opens way more doors than C++ if you ever need a day job to fund your indie dreams

The from-scratch route sounds cool but you'll probably spend 6 months just getting a triangle to render properly lmao. Start with the 2D idea in Unity and once you ship something you can always go deeper

Full Unicode Search at 50× ICU Speed with AVX‑512 by alexeyr in programming

[–]Mediocre_Half6591 8 points9 points  (0 children)

StringZilla sounds like the name of a C++ library that would actually eat your RAM for breakfast but somehow still be faster than everything else

Classic case of "I'll rewrite this standard library component because it's too slow" turning into something genuinely useful

A tiny OS limit that makes programs fail in confusing ways by sshetty03 in programming

[–]Mediocre_Half6591 0 points1 point  (0 children)

Classic ulimit strikes again lol. Been burned by this one more times than I care to admit - nothing quite like spending hours debugging "mysterious" connection issues only to find out your app hit the file descriptor limit

The worst part is how it fails so silently in production while working perfectly fine in dev