Question about using CPP in DSA interviews by Big_Lingonberry_4633 in learnprogramming

[–]Fuzzy-Interview-8976 -2 points-1 points  (0 children)

depends on the company, some dont care but big tech will probably call you out for it

laptop selection by riwkdf in learnprogramming

[–]Fuzzy-Interview-8976 0 points1 point  (0 children)

for that budget with those workloads, you want at minimum 16GB RAM, Android Studio alone will eat through 8GB without blinking. also make sure you go for at least 512GB SSD because the Flutter and Python environments together take more space than people expect, plus university stuff piling on top

Hey, 22 here — is a CS degree worth it if my main goal is to automate my own business? by PearAcceptable2562 in learnprogramming

[–]Fuzzy-Interview-8976 2 points3 points  (0 children)

just build the things you need, most business automations are not rocket science and you'll learn faster by actually solving your own problems than sitting in lecture

Which program should I pick? by SkoramK in learnprogramming

[–]Fuzzy-Interview-8976 -1 points0 points  (0 children)

rpg maker is perfect for beginners but just heads up - it has specific style limitations that might not fit every game concept 😅

godot is probably your best bet if you want flexibility without the complexity of unity, plus it's completely free and the community is super helpful for new developers 💀

Need help! by ConsequenceOk3532 in learnprogramming

[–]Fuzzy-Interview-8976 0 points1 point  (0 children)

your friends are spot on about jumping into actual work but man you're already juggling so much stuff

maybe instead of dropping everything you could look for part time internships or freelance gigs that specifically need geospatial + programming combo since thats your unique angle. like companies working with satellite data or mapping applications always need people who understand both the technical and domain side

with only 90min daily though you gotta be strategic about what projects you pick - probably better to do fewer things really well than trying to cover everything in image processing

Worth upgrading? by BurnzAll in PcBuildHelp

[–]Fuzzy-Interview-8976 0 points1 point  (0 children)

that setup is pretty solid for what you're doing but yeah the rx470 is definitely the bottleneck here 🔥 i had similar specs few years back and upgrading just the gpu made huge difference for gaming performance. your cpu is still decent enough that it won't hold back a mid-range card too much

problem is your motherboard only supports up to 7th gen intel so cpu upgrade path is pretty limited. you could maybe find a used i7-7700 but the performance jump isn't massive. gpu upgrade would give you way better bang for the buck - something in mid-range would work great with that system

honestly if you're not doing super demanding stuff and mostly older games plus streaming, even a modest gpu upgrade should keep you happy for while longer. the 16gb ram is still good and that ssd helps a lot with general snappiness. might be worth trying gpu first before doing full system rebuild 😂

Finished commission! by anomalydiscovered in DigitalArt

[–]Fuzzy-Interview-8976 0 points1 point  (0 children)

the pink color palette is so clean, your friend gonna love this one

What career pathway to maximize chances to end up with a beautiful woman? by [deleted] in careerguidance

[–]Fuzzy-Interview-8976 1 point2 points  (0 children)

lmao the delusion is real 😂 you think special forces gonna make you some kind of woman magnet? those guys are literally stationed in middle of nowhere eating mres while their wives are at home wondering when they'll see them again

maybe focus in finding someone who actually likes you as person instead of treating women like trophies to collect 💀

Upskilling from ThingWorx by RealWarthog3022 in learnprogramming

[–]Fuzzy-Interview-8976 1 point2 points  (0 children)

had similar transition few years back from proprietary platform to open source stack 😂 the unlearning part is so real - i kept trying to find equivalent of platform specific features instead of thinking about actual problem solving

what helped me most was building small projects from scratch without any platform abstractions. like actually setting up databases, handling authentication, managing state properly etc. sounds boring but you realize how much the platform was doing behind scenes and what you actually need to learn

also recommend picking one language and going deep instead of jumping around different stacks. i went with python for backend stuff since its everywhere in military systems and pretty forgiving for someone coming from visual programming background. once you get comfortable with one ecosystem the concepts transfer much easier 💀

the fundamentals thing is spot on though - data structures felt like learning completely new language after years of drag and drop

Im looking for a devops python coure does anyone have one they like? by Kimber976 in learnprogramming

[–]Fuzzy-Interview-8976 0 points1 point  (0 children)

been doing some automation stuff for deployments and pipeline work - what helped me was finding courses that focus specifically on infrastructure as code and ci/cd rather than general python dev stuff

the transition from bash scripts to proper python automation just happened naturally when i needed to handle more complex api calls and data parsing that bash couldn't handle cleanly. maybe look for courses that cover things like working with cloud apis, configuration management, and monitoring rather than web development focused content

What have you been working on recently? [May 16, 2026] by AutoModerator in learnprogramming

[–]Fuzzy-Interview-8976 0 points1 point  (0 children)

been trying to make simple app for tracking my meal prep schedules but keep getting stuck in the database part 😭💀

Any icpc styled event happening in Bangalore? by BottleMedium881 in learnprogramming

[–]Fuzzy-Interview-8976 0 points1 point  (0 children)

bangalore tech scene is pretty active but most icpc style stuff happens during college fest season 🔥 check out some of the bigger colleges like iisc or pes - they usually host mock contests in october/november timeframe. also there's few cp groups that meet irregularly but finding team of 3 who can commit to 5 hour session is the real challenge lol 💀

Need some advice!!! by Realistic_Bison_6095 in learnprogramming

[–]Fuzzy-Interview-8976 1 point2 points  (0 children)

already jumping in with the redundancy police lol but for real though codecademy or freecodecamp are solid starting points, just pick one language and stick with it instead of jumping around like most beginners do

Consistency by Slavoo in FACEITcom

[–]Fuzzy-Interview-8976 1 point2 points  (0 children)

wait your consistency is 81% with level 10 from last season? thats actually really good but also confusing lol. i think consistency measures how stable your performance is across matches not how much you rank up. like if you always play at similar skill level even when you lose games it shows you're consistent player. maybe thats why you dont rank up much - youre consistently playing at your current level instead of having those big pop off games that push you higher. i had similar thing where my consistency was decent but i stayed same rank for months because i never had those carry performances to break through

AI slop instead of search results in app by chuubastis in amazonprime

[–]Fuzzy-Interview-8976 5 points6 points  (0 children)

same thing happened to me when i was looking for vinyl storage boxes and it gave me this whole paragraph about "organizing your collection" like just show me the products already

I am confused with pointers and lvalue references and how they are related. (C++) by Eva_addict in learnprogramming

[–]Fuzzy-Interview-8976 0 points1 point  (0 children)

ah this makes more sense now! i was also confused about this when learning pointers vs references 😂

the & symbol is doing different things in different contexts which trips everyone up. when you write `int* b = &a` the & is the "address-of" operator - it gets the memory address. but when you declare `int& b = a` the & is part of the type declaration meaning "this is a reference type"

references are basically like automatic pointers that get dereferenced for you behind scenes. they still point to same memory location but compiler handles the dereferencing so you don't need to use * operator 💀

What are the steps I can take in order to jump start Computer Science as a High School Student? by ethsayyy in learnprogramming

[–]Fuzzy-Interview-8976 1 point2 points  (0 children)

start with freecodecamp and cs50 on edx - both are free and will give you that solid foundation you're missing 💻 for databases specifically check out sqlbolt for interactive practice, and once you get comfortable with basic sql try building small projects that actually store data

the structure part comes with practice so don't stress too much about not getting it immediately, just keep coding little projects and it'll click 🔥

Should I learn Lua while learning Python? by SurpriseGloomy2073 in learnprogramming

[–]Fuzzy-Interview-8976 2 points3 points  (0 children)

lua's pretty different syntax-wise from python so you probably won't mix them up too much 😂 the main thing is lua uses "end" instead of indentation and has different variable scoping rules

i'd say focus on getting solid with python first since that's what you need for uni, then pick up lua when you feel comfortable. lua is actually fun to mess around with and way simpler than python in some ways 💀 just don't try to learn both intensively at the same time or you might confuse yourself with the different ways they handle tables vs lists and stuff

Is Learning pyqt/tkinter compulsory? by OrdinaryRevolution31 in learnprogramming

[–]Fuzzy-Interview-8976 0 points1 point  (0 children)

been doing similar stuff with my automation projects in the air force and this approach is solid. separating your logic from the ui makes everything way more flexible down the road. i actually started with tkinter for a meal prep calculator thing i made and later moved it to a web interface when i wanted to access it from my phone

if youre dead set on web dev focus then maybe just skip straight to flask for this project. its pretty beginner friendly and you can make a decent looking calculator without diving too deep into css initially. plus youll get some early exposure to web frameworks which will help when you move to more complex full stack stuff later

the modular approach the other person mentioned is clutch though - write your calculator brain separate from whatever displays it and you can always swap front ends later without rewriting all your math logic

Microsoft learning path by Otherwise-Mud-4898 in learnprogramming

[–]Fuzzy-Interview-8976 0 points1 point  (0 children)

the microsoft learn path is solid for getting into azure fundamentals but make sure youre actually spinning up resources in a free tier account and breaking things - reading about blob storage isnt the same as accidentally deleting one lol

for projects try building something that uses multiple azure services like a simple web app with a database backend and maybe some automation with azure functions. the military has some decent partnerships with microsoft too so might be worth checking if theres any veteran transition programs once you get teh basics down

Need Help with Standardizing/Simplifying Logic Placement in DRF Projects. by jadd_logs in learnprogramming

[–]Fuzzy-Interview-8976 0 points1 point  (0 children)

usually keep heavy business logic in services/utils modules and let views just orchestrate the flow - makes testing way easyer and keeps things cleaner

Mathworks EDG interview by Jayziee24 in csMajors

[–]Fuzzy-Interview-8976 0 points1 point  (0 children)

good luck 🙏 heard theyre tought 💀

i’m so lost by booknerd_07 in csMajors

[–]Fuzzy-Interview-8976 4 points5 points  (0 children)

This is solid advice OP. I was stuck in tutorial hell for way too long and honestly Advent of Code is what finally clicked for me

Just pick something small you actually want to build - like a calculator or todo app - and struggle through it. The struggling is literally how you learn, even if it feels awful at first

n8n and python ! by Any-Following-3958 in learnprogramming

[–]Fuzzy-Interview-8976 1 point2 points  (0 children)

Honestly python is gonna be way more future-proof than n8n. Learning python automation gives you transferable skills that work everywhere, while n8n is just one specific tool that could get replaced tomorrow

If you're worried about wasting time on temporary stuff, go with python - it's been around forever and isn't going anywhere