It took me 5 minutes…
Posted by MrMercy67@reddit | learnprogramming | View on Reddit | 41 comments
5 minutes to set up mingw and gdb in VSCode. Something that was barely brushed over in my sophomore C++ course to the point I never understood it and just used print statements the entire 4 years of undergrad. God I feel like an idiot. Next up is teaching myself how to push to a Git repo without accidentally wiping it every time.
silly_bet_3454@reddit
Yep, not even your fault, for some insane reason schools and universities don't focus enough on basic pragmatic stuff like this. It's similar to how in high school nobody learns how to pay their taxes, understand compound interest, etc. but everybody studies trigonometry. Like what are we doing...
This is a good resource for practical stuff: https://missing.csail.mit.edu
Alicuza@reddit
Sorry, but basic high school math teaches you about compound interest. It's one of the most used examples for how exponential growth works.
robdogg37@reddit
You’re right on that specific point, but his overall point definitely stands.
Alicuza@reddit
His point being what, school doesn't teach you marketable skills? It's simply not true. I know enough people who had the occasion of learning practical topics in school and those were seen as just as boring and useless as everything else.
Basic education isn't supposed to be a trade school.
robdogg37@reddit
He’s not saying that school doesn’t teach you marketable skills. He’s saying that school misses out teaching you some important life skills that are useful for just being alive and thriving in today’s society, and it’s absolutely true. For instance taxes, loans (they teach you about how interest works in maths but not really all the different types of loans you can get, what apr means etc.), credit score, and just other basic stuff which maybe isn’t ‘academic’, but is still very much important l.
PLTCHK@reddit
ONLY 5 minutes???
OptimalFox1800@reddit
Congrats man!
ReplacementOk2105@reddit
Meanwhile Linux users: mingw? I compile from source
NatoBoram@reddit
Might want to practice those Git commands on an empty repo a few minutes before putting your project on Git
And backup the project before starting just in case
There are commands to undo changes and everything not committed is a change. You may see where this is going.
Gtantha@reddit
How do you manage to accidentally wipe a git repo when pushing? I'm genuinely stumped on how to do that.
MrMercy67@reddit (OP)
It was a year ago during my capstone so I forgot tbh, but from what I remember it involved a lot of rebase and force flags lmao
Gtantha@reddit
slow blink gif
And the word force didn't indicate to you that there must be a better way than, well, forcing things?
Anyways, good on you for learning. Most things git can be done with commit, checkout, pull and push. No force or rebase needed. The most complicated thing in the beginning will be merging. And a lot of that can be avoided by pulling before starting work and pushing once you're done. Or being the only person working on a repository.
MrMercy67@reddit (OP)
Well yeah lol but our problem was me being too over confident in my limited git exposure since nobody else in my group had used it. After we sorted that out though we just relied on chatgpt for future commits and everything went smoothly haha. But yeah I agree it’s a hell of a lot easier when everyone sets it up before committing anything.
Gtantha@reddit
And that's hopefully the stupidest thing I read today.
MrMercy67@reddit (OP)
Well yes but also it was kinda the point of our capstone ironically, we were specifically told by our industry sponsor to create a embedded system using chatgpt as much as possible to teach ourself lol.
Gtantha@reddit
I'm sorry that you had such a bad instructor. I hope any further education you receive is done by better people.
canibanoglu@reddit
And that’s how beginners learn not to do it. Kinda like how all road cyclists fall off the bike before learning how to use clipless pedals
leitondelamuerte@reddit
Next up is teaching myself how to push to a Git repo without accidentally wiping it every time.:
1 - before you start to work use create branch from master(or main):
git checkout -b myFeature master
here you are creating a branch called myFeature based on the master branch
2 - before you begin to work use:
git pull origin master
when you created the branch in the first step, you created it based on the master version stored in your pc, not on the repository, this will refresh the myFeature branch with the most recent online version of master branch
3 - do your work on myFeature branch
4 - before push the myFeature branch use git pull origin master again to refresh it again with the most recent version of master(someone may have worked on it while you are doing your work)
5 - push the myFeature branch to git
6 - compare the myFeature branch with master to see what files are being modified, if the only changes that are show are the ones you made and nothing more, create a pull request myFeature -> master
7 aprove the pull request
8 back in your ide, checkout to master branche and use git pull origin master again
J_K27@reddit
Yes sometimes I feel silly for spending thousands of dollars on college when 90 percent of the important stuff I either knew already or had to learn it on my own. Also how TF do you accidentally delete your repo lmao.
MrMercy67@reddit (OP)
Basically ran into merge conflicts and was being stupid since I was naive and saw someone on stack overflow recommended a force rebase for a similar thing, but it didn’t work out like I wanted to lmao. Long story short after a few hours we rewrote all the code and didn’t have the issue occur again.
canibanoglu@reddit
It’s completely normal. I’ll drop a piece of wisdom I got from a professor a couple of decades ago: “Universities are not there to prepare you to take on jobs, they’re there to prepare you for academia”.
Many students are completely clueless about how to do some of the most common and straightforward things upon graduation. I went through the same. You will learn how to be an engineer for a job on the job, the school will not prepare you for it.
Space-Robot@reddit
I remember a friend showing me we could "cheat" on our cs project by using Eclipse.
There's a LOT to learn after school.
RQuarx@reddit
Installing a compiler and stuff on windows is somehow overly complicated, its easier to setup a wsl and install everything there for me...
JoToRay@reddit
I did the same with WSL, if you have visual studio installed though you can compile using it although annoyingly you need to use the "Visual Studio Developer" PowerShell or command prompt
spllooge@reddit
Nice! Setting up with GitHub is always the most frustrating part, the commands below are for version control and will become second nature to you once you start using Git.
Once new_repo is created manually on the website with the "New" button.
To setup in empty local project folder: git init git remote add origin
git add .
git commit -m "Commit info"
git push origin main
Some more info: You will likely run into a problem with the default branch being named master instead of main. Run the command you are prompted with in your terminal.
Origin is the default alias of the remote branch that your project is connected to.
The '.' will prepare every file in the current directory that has been edited to be pushed to the remote repository. You can replace this with the name of specific files (e.g. git add main.py helper.py)
The -m flag allows you to put your commit message inline rather than opening your default text editor without it.
GodlessThoughts@reddit
ohshitgit.com is a great resource for finding commands for problematic scenarios. It’s tries to address the issue of having to look up commands blindly when you already don’t know what you actually need.
CrepuscularSoul@reddit
One nitpick to add on to this
Will stage the current directory AND any subdirectories. So if you're in the root folder that's everything not explicitly ignored via .gitignore. And if you're in a subdirectory it won't be all files, just the ones within that directory and it's subs.
0biwan_Shinobi@reddit
once you have git set up VScode makes it stupid easy. It tracks all the code changes. you can add message, commit & push in one click
AlSweigart@reddit
Debugging, source control, logging, documentation, unit tests.
We're too busy to learn the things that save us time.
Gorblonzo@reddit
Can you show me what you did? Im learning how to set up vscode as well and im kinda stumped its like I don't even know what it is I don't know
MrMercy67@reddit (OP)
So there’s a lot of videos I’ve found, but I watched this one and it helped a lot setting up the extensions and getting the debugger environment set up. If you’re on windows, he had a link to another video the description on how to download and install MinGW which I highly recommend watching first. Good luck and lmk if u have questions :)
arkvesper@reddit
oh man, this thread's a good kick to actually take some time looking into proper debugging for js & python. been coding for years with test suites at work but my personal projects are always just console logs haha
ValentineBlacker@reddit
If your code runs in a browser, browsers have pretty good built-in debugging tools for JS.
Gorblonzo@reddit
thanks ill have a look at it
MrMercy67@reddit (OP)
Yeah he goes a little fast but overall it’s not too bad to follow, the only change is using “g++” over “gcc” if compiling for C++
Embarrassed-Green898@reddit
A few things I learned from a book , probably Programatic Programmer
SpookLordNeato@reddit
learning to properly use a debugger is one of the biggest “holy fucking shit i’ve wasted so much time” feelings i’ve had
LostBazooka@reddit
hell yeah, keep on learning my fellow guild wars 2 player 🫡
MrMercy67@reddit (OP)
Haha one of us! One of us!
dmazzoni@reddit
Awesome!
Everyone should learn to use a debugger, it's so important.
That doesn't mean using print statements isn't good sometimes, but you should learn all of the tools and pick the best one for each job.
MrMercy67@reddit (OP)
I mean I passed all my classes using them so it’s definitely not useless haha, but yeah I agree using breakpoints and examining the addresses and values of pointers has made it such a breeze to step through functions.