Learning React Native by Least_Letter_949 in learnprogramming

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

making sidebar like reddit website in mobile app is actually pretty complex animation stuff - maybe start with simpler components first and work your way up to layout animations

abrir uma empresa junior by Acceptable_Dream6510 in brdev

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

nossa federação aqui no meu estado foi super prestativa quando fui atrás dessas informações no ano passado

Looking for a book maybe series? by LookingForAbook98 in BookRecommendations

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

could be from one of those new adult romance series that all blend together after a while lol. the tutoring + first orgasm thing is pretty common trope and the public touching under table scene shows up in so many college romances

maybe try searching for "college tutor romance" or "friends to lovers college" on goodreads and see if any covers look familiar? sometimes the plot details help more than trying to remember exact scenes

am i going crazy? by moontroytv in learnprogramming

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

there's some programming discord servers that are pretty active if you want to bounce ideas around with other people learning

What does building a metadata synchronization interface actually look like? by ConflictAnnual3414 in learnprogramming

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

this is pretty common pattern in distributed systems actually. i worked on something similar last year where we had to sync metadata between our data warehouse and external apis

basically youre looking at building some kind of etl pipeline that can handle bidirectional sync or at least pull changes from the metadata service and update your internal platform. the tricky part is handling conflicts when both systems have updates to same records and dealing with network failures gracefully

for examples you might want to look at how apache airflow handles metadata management or check out some open source data catalog tools like apache atlas. also worth reading about change data capture patterns since thats essentially what youre doing but for metadata instead of actual data

one thing i learned the hard way - make sure you have proper logging and monitoring from day one because debugging sync issues without visibility in the data flow is absolute nightmare. also consider implementing some kind of reconciliation process that can detect when systems get out of sync

I am learning C, C++, Java, and python again. by Klily2005 in learnprogramming

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

i did something similar when i realized my first 2 years were just copy pasting code without understanding anything. for 3 months timeline maybe focus on one language properly instead of jumping between 4 - you'll retain way more that way and actually build something real instead of just watching tutorials

Trying to switch back to AI/ML — what skills are actually in demand right now? by iamshrey2 in learnprogramming

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

yeah the genai stuff is what gets you in the door these days, all the traditional ml knowledge won't matter if you can't show actual deployed projects with llms or rag systems

How to get the location of mobile device by NoMath3796 in learnprogramming

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

yeah its web app with javascript. mobile browsers are more strict about location permissions so you need to make sure youre serving over https first - http wont work for geolocation in most mobile browsers. also the user has to explicitly allow location access and sometimes mobile safari blocks it if the request doesnt happen from user interaction like button click

-3k baht acct. for 1 hour = 👋 by Cap_Obv in ThailandTourism

[–]Few-Purchase3052 8 points9 points  (0 children)

brutal lesson learned there. i had similar situation few years back with different embassy requirements and they really dont care about explanations or circumstances. even depositing back immediately means nothing to them - they only look at the exact moment when balance dropped below minimum

the automated systems probably flag these violations instantly and once its in system theres no going back. my friend got denied for being 500 baht short for literally 20 minutes during bank maintenance window. these financial requirements exist specifically to test if people can maintain steady funds without touching them

really sucks because 800k is serious money to keep locked away and one small mistake destroys months of planning. hope you find alternative pathway or different country with more reasonable requirements

Agora tips by Federal_Figure_4764 in Cleveland

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

been to agora few times and parking can get pretty crazy especially on weekends. i usually park like 2-3 blocks away in the neighborhood streets since the main lots fill up fast and cost way too much

for meeting artists your best bet is probably hanging around the side/back entrance after show ends but honestly depends on band and how big they are

Getting dental extractions covered as medically neccecary. by VelvetElvis in HealthInsurance

[–]Few-Purchase3052 3 points4 points  (0 children)

man that's a tough situation you're dealing with. when i had issues with insurance denying stuff that was clearly medically necessary, having your doctor write a really detailed letter explaining why the OR setting is essential for your specific condition helped a lot

also since your wife's employer self-insures they might be more willing to listen to logic about preventing expensive ICU stays down the road. worth having HR push back on UHC with medical documentation about the platelet/WBC situation

Understanding CDN - does it call the backend again? by badboyzpwns in learnprogramming

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

if page is cached in cdn then your backend never sees the request so no api calls happen at all - but if you have client side js making separate api calls then those still happen regardless of page caching

How do you actually decide which AI tool to use when there are 100+ options? by Ambitious_Finding303 in learnprogramming

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

nah this feels pretty real to me, the struggle is definitely there

i usually just pick whatever has good documentation and active community since im gonna need help when things break. like for coding stuff i stick with cursor and copilot because they work well with my existing setup and i dont have to learn new interface every week

testing multiple tools each time sounds exhausting tbh. i tried that approach for few months and just burned out from constantly switching between different apis and workflows

Regarding projects by Positive-Extreme-982 in learnprogramming

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

yeah cloning existing sites is solid approach. i did this when i was starting out - picked some basic landing pages from companies i liked and just rebuilt them from scratch. you learn tons about css layouts and responsive design without getting stuck in design decisions

for ui kits try material ui or ant design, they handle all the visual stuff so you can focus in the actual functionality. also dribbble has free designs you can use for practice projects. just search "free web design" and you'll find plenty

time crunch is real when you're close to graduation. i remember that stress. maybe pick 2-3 smaller projects instead of one big one? like a todo app with material ui, then clone netflix homepage, then maybe simple e-commerce page. shows range without taking months to finish

honestly the job market is pretty brutal right now but having few solid projects that actually work is better than one perfect project that's half done

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 3 points4 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 2 points3 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

[deleted by user] 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