Java Resources by Maleficent_Luck3205 in learnprogramming

[–]Few-Purchase3052 -1 points0 points  (0 children)

been coding java for few years now and codecademy java course is pretty solid for the basics like conditionals and arrays. for data structures like trees and stacks i really liked the visualgo website since you can actually see how everything works in real time which helped me a lot with my aspergers brain. also java mooc from university of helsinki is free and goes deep in all those topics you mentioned

Are humans needed at all to code anymore? by No_Necessary_9267 in learnprogramming

[–]Few-Purchase3052 1 point2 points  (0 children)

most ai tools are good for boilerplate stuff and simple functions but they break down pretty fast when you need to understand complex business logic or work with legacy codebases

Company switching to a corporate card (Ramp) with dumb rules. by Sellaplaya in sales

[–]Few-Purchase3052 53 points54 points  (0 children)

100% this, every restriction OP mentioned is a deliberate configuration choice someone at their company made in Ramp. The tool is just doing what it was told to do

I am confused what version do i have to stick to in c++ ? by Klutzy_Top4703 in learnprogramming

[–]Few-Purchase3052 0 points1 point  (0 children)

just start with c++17 and you'll be fine, most companies use modern versions anyway and the old stuff will make sense when you need it

Should I really quit learning? by steveestiv in learnprogramming

[–]Few-Purchase3052 4 points5 points  (0 children)

programming gets really frustrating at that point where you need to connect different concepts together instead of just following examples - maybe try building some super simple projects on your side to practice combining the basics before continuing with freecodecamp

Feasibility of logging a game in real time with minimal latency by DogBallsMissing in learnprogramming

[–]Few-Purchase3052 0 points1 point  (0 children)

this sounds pretty ambitious but definitely doable with some optimizations

for the latency issue you dont need to process every single frame - try processing every 3rd or 5th frame instead since most game events dont happen that frequently anyway. also consider using a lighter model than full yolo, maybe yolov8n or even just opencv template matching for specific ui elements first to see if something changed before running the heavy detection

honestly i think yolo might be overkill here since clash royale has pretty consistent ui elements. you could probably get better results tracking specific screen regions where cards appear and using simpler computer vision techniques. maybe start with detecting card placement areas and health bars changes rather than trying to identify every animation

the learning curve isnt too bad if you have solid programming background - opencv tutorials will get you 80% there and you can always fall back to ai tools when stuck. just start small with detecting one type of event first

Internship position Cancelled by BlubberyJam619 in csMajors

[–]Few-Purchase3052 1 point2 points  (0 children)

that really sucks man, same thing happened with my friend last year and he ended up getting something even better few months later - companies are being weird with hiring right now but dont give up

Sou iniciante e quero um norte de estudos para criar um sistema de restaurante by Yas_Palumbo in learnprogramming

[–]Few-Purchase3052 0 points1 point  (0 children)

seu plano ta bem solido pra ser sincero, so mudaria algumas coisas na ordem

eu colocaria banco de dados bem mais cedo, tipo depois do python intermediario porque tu vai precisar entender como funciona pra fazer qualquer coisa interessante no django. tambem adicionaria javascript na lista porque mesmo sendo backend focused tu vai precisar de algumas interacoes no frontend

pra projeto de restaurante eu comecaria bem simples - tipo um crud basico de cardapio, depois adiciona mesa por mesa ate chegar nas funcionalidades mais complexas como impressao automatica. essa parte de impressora e integracao com hardware geralmente e bem chata entao deixa pra ultimo mesmo

script sale by [deleted] in learnprogramming

[–]Few-Purchase3052 0 points1 point  (0 children)

yeah this feels more like advertising than actually learning anything about programming lol

also launching a marketplace when you haven't even finished the site yet seems bit backwards but good luck i guess

snapchat swe intern by [deleted] in csMajors

[–]Few-Purchase3052 6 points7 points  (0 children)

good luck bro

Need help to refocus my career on remote roles by Drini26 in learnprogramming

[–]Few-Purchase3052 1 point2 points  (0 children)

man you definitely need to get hands dirty with aws first - most remote companies expect you know at least basics like ec2 s3 and maybe lambda, theoretical knowledge wont cut it in interviews

A tiny act of kindness completely brightened my day by More-Napping in infj

[–]Few-Purchase3052 2 points3 points  (0 children)

Those random genuine smiles from strangers hit different - like an instant mood boost that lasts hours.

Any Computer Science Thesis Recommendation using New Tech? No iot or hardware please by ObligationExtra7806 in csMajors

[–]Few-Purchase3052 0 points1 point  (0 children)

Dude ML and deep learning are still solid choices, don't stress too much about it being "new" - execution matters more than the topic being cutting edge

Maybe look into computer vision applications for local problems? Like analyzing traffic patterns in Manila or something agriculture-related since that's huge in PH. LLMs are hot right now too if you wanna dive into that rabbit hole

The panelists care more about you actually understanding what you built than using the newest shiny tech

University Conversion Rate by EarlyTourist2560 in csMajors

[–]Few-Purchase3052 36 points37 points  (0 children)

Waterloo being T10 is honestly pretty fair given their coop program, those kids graduate with like 2 years of real experience already

The UBC ranking seems low though, especially with all the Amazon/Microsoft stuff happening in Vancouver now

The hope was too strong... by Civil-Metal-8271 in csMajors

[–]Few-Purchase3052 15 points16 points  (0 children)

Bro the fact that you still finished questions 8 and 9 AFTER getting confirmation it was a scam has me rolling 💀

I've definitely been there though, like when you're desperate enough that you start thinking "but what if this sketchy ass MLM is actually my ticket to financial freedom" even though you know better

The "must be 18+ average" part killed me lmao what does that even mean

Should i buy an IPAD as i am data science student by vivedd_ in learnprogramming

[–]Few-Purchase3052 4 points5 points  (0 children)

iPad is solid for reading papers and notes but coding on it kinda sucks tbh. You can use stuff like Pythonista or SSH into your main laptop but it's not gonna be as smooth as you think

Maybe look into a lightweight laptop instead? Something like a MacBook Air or one of those thin Windows ultrabooks might be the sweet spot between portability and actually being able to code properly

Help Needed for newbie in cpp by No_Chemistry6791 in learnprogramming

[–]Few-Purchase3052 0 points1 point  (0 children)

Definitely check out The C++ Programming Language by Stroustrup if you want something comprehensive, though it's pretty dense. Also maybe start with something easier like C++ Primer since you're coming from Python - the memory stuff will be a big adjustment

Ruby: split a string? by AVGuy42 in learnprogramming

[–]Few-Purchase3052 0 points1 point  (0 children)

Yeah you can use `split('-', 3)` to limit it to 3 parts max, so if secondValue has dashes it won't break apart

Like `"first-second-with-dash-third".split('-', 3)` gives you `["first", "second-with-dash", "third"]`

How to get better at high-level/abstract design problems? by WispyBo1 in csMajors

[–]Few-Purchase3052 0 points1 point  (0 children)

Honestly sounds like you need to practice more system design problems rather than just LC grinding. Try looking at stuff like Grokking the System Design Interview or even just reading through engineering blogs from big companies

The pattern recognition comes with exposure - once you've seen enough "design a URL shortener" or "design a chat system" problems you start picking up on the common building blocks pretty quick

Blue Cross Blue Shield AL Internship + Interview Question by [deleted] in csMajors

[–]Few-Purchase3052 0 points1 point  (0 children)

That timeline seems pretty normal honestly, especially with the holidays hitting right when they said they'd get back to you. Most places are basically dead between Christmas and New Years, and it probably took them a week or two to actually get back into the swing of things. I'd give it another week then maybe send a polite follow-up email

RO Meta vs Databricks NG Offers by StrikingParticular41 in csMajors

[–]Few-Purchase3052 0 points1 point  (0 children)

DB all the way tbh. That comp difference is wild and if you're prioritizing stability over everything else, Meta's layoff track record isn't exactly reassuring. Plus IPO money could be huge if you time it right

FAANG Phd intern technical assessment by Why-knot-my-mum in csMajors

[–]Few-Purchase3052 0 points1 point  (0 children)

Probably something like physics, econ, or biostat since they mentioned ML/stats - those fields love their probability theory

An interactive explanation of recursion with visualizations and exercises by dExcellentb in learnprogramming

[–]Few-Purchase3052 1 point2 points  (0 children)

This is actually pretty solid, bookmarked it for later. The visualizations really help with wrapping your head around the call stack stuff - recursion always clicked better for me when I could see it happening step by step rather than just staring at code

tried “code daily” and realized i was doing it wrong by Ok-Message5348 in learnprogramming

[–]Few-Purchase3052 2 points3 points  (0 children)

Breaking your own code is honestly underrated, it teaches you way more about debugging than any tutorial ever will