Or how to code a pygame game for mobile!! Should be complex enough and very cool
@gidartsproduction54394 жыл бұрын
School management system software tutorial_02
@EAU1834 жыл бұрын
An efficient way to use EMACS as a IDE.
@dpskane4 жыл бұрын
there is one part about debugging that you left out, which is sometimes quite important: conditional breakpoints. Because due to an exception you might know the line where the error happens and certain values of variables at that point, but if it's inside a big for loop you might have to click "continue" hundreds of times before you get to the one loop that breaks everything. In your code e.g. there could be an exception when "num = 349". you don't understand, *why*, but you either have to change the code or you need to put a condition on your breakpoint - otherwise you might have to click a bizillion times before num actually turns into 349
@aanisnoor2293 жыл бұрын
Thank you!
@Lazerbeam504 жыл бұрын
This is easily one of the most useful programming skills I've ever learned. Thank you so much for explaining everything so clearly!
@dhruvgupta31774 жыл бұрын
right when i was getting stuck with a bunch of bugs... TIM SAVES THE DAY!!! thanks tim keep doing what u do i got my real interest in python bcz of u
@stevencvisuals4 жыл бұрын
Nothing more annoying than a bad indentation -_-
@tempor83364 жыл бұрын
Steven Cheung or mixing = and == searching for the error during 3 hours and then figuring it out.
@mandem517610 ай бұрын
I remember watching your coding tutorials and stream and here I am 4 years later, back for some nostalgia.
@narfee75294 жыл бұрын
I needed this! Thanks Tim 🙏
@TechWithTim4 жыл бұрын
Glad it was helpful!
@tanmaydeshpande4 жыл бұрын
Same. Never figured out how to use a debugger before this vid.
@krishshah39742 жыл бұрын
@@tanmaydeshpande ikr
@Raghav12054 жыл бұрын
Hey Tim could you do some advanced data structures stuff like graphs and graph algorithms and how to implement them
@johndavies7293 жыл бұрын
A moment of silence for those of us who already went through the fun tutorials but broke something and now we've ended up here
@matchalover084 ай бұрын
Finally I found some reliable debugging tutorial, I barely understood the other videos
@_sammy4 жыл бұрын
I know most people who will watch this video probably program in either Python or Java, but for any of my C and C++ programmers, I highly suggest learning how to use gdb. It runs in the command line so it’s really light weight. I’m sure there are tons of tutorials online. It’s really powerful and save you from tons of headaches, speaking from personal experience 😅
@RahulRaj-jc7os4 ай бұрын
hey can you please suggest a tutorial for the same?
@MysteriousK694 жыл бұрын
Would love to see Android game development
@Moonlight-jx2sj3 жыл бұрын
I think you missed the main part: how to set up the .json file for debugger.
@mariany46913 жыл бұрын
It's usually very dependent on the language you're coding in
@toreger28522 жыл бұрын
Third video was the charm! Still the best ground-up explanation two years later :))
@TechWithTim2 жыл бұрын
Glad it was helpful!
@hanweiz843 жыл бұрын
Thanks Tim. Felt like I somewhat "levelled up" after watching your debugger video. I have been printing debugging statements within my code the entire time!
@pjc_codes2 ай бұрын
Tim, thanks for all your great videos. They ve been really useful for me as a beginner! :)
@Bennilenny4 жыл бұрын
I knew about debugging but NOT ABOUT THE STEP BUTTON !! thanks, Tim.
@databridgeconsultants91634 жыл бұрын
Thanks Tim . Your Videos are Superb . Atleast you make videos which are directly implementable in real life projects . Great Job man .
@servantofthelord8147 Жыл бұрын
I always used to ignore this part of the menu until today. 😂😂Thank you
@juliajulsen56234 жыл бұрын
Thanks for the video! I also find myself using the debug console in VS Code often. Extremely useful tool
@hemanth69514 жыл бұрын
One of the best editor
@therealosose4 жыл бұрын
I just needed this thanks tim!!
@robosergTV8 ай бұрын
dude saved my ass at my job, thanks :)
@peterv31222 жыл бұрын
This is a great video. Thanks Tim!
@anandmano43753 жыл бұрын
Excellent Sir... for the Best Tutorial on Debugging on VS code...
@Dogberto9994 жыл бұрын
9:45 - Yeah, denominator goes down (or on the bottom of the fraction). That's how I remembered it.
@pampagrimaldi85842 жыл бұрын
very clearylt explained Tim, thank you very much!
@AliAliOxenFree2 жыл бұрын
great video. clear, concise and to the point. no extra fluff. earned a sub!
@superbroker.dxb0072 жыл бұрын
amazing amazing. You will go places my friend.
@datarobe2 жыл бұрын
This video is very helpful, I searched a lot but was unable to get step by step procedure to use VS code Debugger for Python ( even the VS Code document does not give this level of clarity ). Thank You. P.S. - I am almost new to Python ( Actually any programming language ). 😊
@mohammadahsan7873 Жыл бұрын
Its really helpful. Thanks a lot. ❤
@Michael201078 Жыл бұрын
Very good explanation. Thank you
@premkatta1128 Жыл бұрын
Thanks, simple and useful video !
@hiteshpant98684 жыл бұрын
FABULOUS EXPLANATION... KEEP IT UP
@qorbanimaq4 жыл бұрын
Really helpful! Thank you, Tim.
@debjyotiray83644 жыл бұрын
Man, I take you as my role model; you are just too awesome at explanation
@akshitagarwal13093 жыл бұрын
What theme are you using in VSCode? Looks cool.
@mizel_almizel3 жыл бұрын
I’m not speaking English but you are the best you never lies u tech me something that I need thank you bro
@khangthaitran2 жыл бұрын
Very informative video! Thanks!
@himanshuagrawal20142 жыл бұрын
Excellent Video and thoroughly explained, Stay Blessed. Thank you so much.
@Sumit-pl8rq3 жыл бұрын
Thanks for this wonderful explanation.
@georgitanev-w4b Жыл бұрын
Great video Tim!
@umerselmani67994 жыл бұрын
Idk why, but I guess I need a bit more explanation to wrap this thing around my head, all is good, I suppose I will have to get my hands dirty with this to grasp the idea of the debugger. Thank You.
@unknownman52964 жыл бұрын
thanks your videos are very useful !!!
@marytavakoli36922 жыл бұрын
I learned a lot, as always
@JamesTJoseph4 жыл бұрын
Conditional breakpoint, it is helpful when looping through an iterable.
@himbary4 жыл бұрын
Thanks! No one talked about how it actually works
@grandpaK4204 жыл бұрын
What is the color theme he is using?
@adityachoudhary16374 жыл бұрын
great video keep posting more videos like this😀
@Kvothestark264 жыл бұрын
I love your videos Tim😍😍
@mrpancakes4 жыл бұрын
Thank you for this
@frankkevy3 жыл бұрын
I finally understood it
@saminchowdhury79954 жыл бұрын
Thank you so much master This was very helpful
@TechWithTim4 жыл бұрын
Glad it helped!
@saxsafon4 жыл бұрын
Thanks, Tim! Just in time
@kunalbhatt4333 Жыл бұрын
I started learning to code in 2015, better late than never!
@saisiddhartha5375 Жыл бұрын
The best thing that you could do
@krishj80115 ай бұрын
Awesome Tutorial...
@shambhaviaggarwal99774 жыл бұрын
Sublime theme in vs code is really bothering me.
@user-wc1sm8cj8s3 жыл бұрын
extremely helpful!!!!! thanks!!!
@客家饒舌執牛耳3 жыл бұрын
Thank god I see this right now after finishing two homework...
@adityaroshan16883 жыл бұрын
What a fantastic tutorial
@top5things968 Жыл бұрын
Thank you 🎉
@redrum44862 жыл бұрын
Awesome! I used to get frustrating runnign the debug and it would just run the app - ALL because i did not include breakpoints before hand xD
@ianbortnic29602 жыл бұрын
This was so useful!
@peteedwards84393 ай бұрын
How about a video on setting up the debugger environment in VSCode?
@rameshahparameswaraiah69082 жыл бұрын
Well explained
@Tarragen4 жыл бұрын
thanks i needed this
@therealosose4 жыл бұрын
The audio is really nice🔊🎤
@TechWithTim4 жыл бұрын
Thank you! Still need to do some tweaks but always working on making it better for you guys
@FirstLast-gk6lg3 жыл бұрын
I would like to see overviews of wide concepts. For example look at a full stack project and give a top down overview of what the technologies are and what they do
@sakman27cap454 жыл бұрын
It is cool to see live comments after reloading the page ;)
@chriszink52253 жыл бұрын
Please do more of these
@satoshinakamoto1714 жыл бұрын
software design tutorial # 2? i really liked the first part. thanks
@bouloukosxontropoulos74364 жыл бұрын
Really great video !! By the way what font family are you using ? It's really good...especially how the def sticks out ! Is there a trick to do that?
@stefaandumez23193 жыл бұрын
I have the same. Only thing I did is to use the Monokai color theme. You can check out if it works for you.
@kirillzlobin71354 ай бұрын
7:11 Video on debugging: the call stack is complicated, so I am not going to explain that... lol
@TIMJR6254 жыл бұрын
Great video!
@TechWithTim4 жыл бұрын
Thanks!
@abhinavkuruvilajoseph92744 жыл бұрын
The video i have been waiting for
@theseusRJ73 жыл бұрын
Are you from kerala
@abhinavkuruvilajoseph92743 жыл бұрын
@@theseusRJ7 ye i am
@ilayarajaramasamy1263 Жыл бұрын
Debugger is not showing for me
@Ronald-s6Ronald__s96 ай бұрын
Cash is returning to your pocket-notification
@josephputra29873 жыл бұрын
Thanks😀
@aanisnoor2293 жыл бұрын
Thank you!
@luizfelipecastrocoelho93143 жыл бұрын
DUDE! You have no idea how much of a lifesaver u r!!! And super cute as well!
@gidartsproduction54394 жыл бұрын
Please Tim, are you going to continue with the software you just mentioned previously about school management system or you were just giving us a quick foundation?
@TechWithTim4 жыл бұрын
I do plan on continuing it, just takes a while to film and code it all out
@dasten1232 жыл бұрын
I wish I had seen a video like this back when I started programming. For many years I didn't use a debugger and that was just dumb
@basetroll16272 жыл бұрын
Same here!
@vk10944 жыл бұрын
Does anyone what theme has he applied and what extension he uses, please!!
@grandpaK4204 жыл бұрын
I NEED TO KNOW TOO
@vk10944 жыл бұрын
@@grandpaK420 it's sublime theme.
@grandpaK4204 жыл бұрын
@@vk1094 cant find it in vscode extensions can you tell me who made the theme
@paramjangale55494 жыл бұрын
Really helpful!!
@jailnet4 жыл бұрын
Man, i'm trying to fit learning python into my schedule, but im finding it difficult to find a balance between study and python 🤷🙍
@siyam.884 жыл бұрын
I would say that if you don't get enough time to code that's not a big problem, be consistent to it, code everyday even for 20 minutes, learn a new topic each day.
@adityachoudhary16374 жыл бұрын
i would advice you to watch plenty of videos for python on youtube or any learning source you can find, rest would be easy. you can make your task easier by listing what skills you want to learn in python and move step by step
@adityachoudhary16374 жыл бұрын
each day watch 2 videos for topic you decided for yourself not more than that your interest will carry you rest of the way😀
@FalseDev4 жыл бұрын
Just study python then..... 😁
@umerselmani67994 жыл бұрын
My advice would be, if you can do 30 mins a day as a starter, it would be really good/enough imo. Though the best what you can do is actually getting yourself into coding. I use the phrase "getting your hands dirty with programming" meaning, when you start to write code, you really will get the idea and the meaning of each line of code you write. And also take notes, sometimes write the pieces of code in a paper too, in my nation they say, writing is equal to 10 readings, so your memory will be better in remembering things you write down. Attention: ONLY watching KZbin videos or reading books without applying the knowledge, will be no much of benefit, and the best way is, doing them (watching and writing) as simultaneously as possible.
@dineshsen18073 жыл бұрын
Really helpful
@rektm81414 жыл бұрын
love the videos tim
@TechWithTim4 жыл бұрын
:)
@Laci44652 жыл бұрын
Is the code that you show/use here on Github?
@vaeshethblade9312 жыл бұрын
This is a decent tutorial for editing a known file, but when a program is dumping straight to memory, how can you find where it's going so you can debug it? I can hack the crap out of any file you give me, but I have a game that "hides" its files by placing markers in the save file and taking queues from memory in real time. Debugging is the answer to the problem, but I can't figure out how to locate the memory file I need to hack.
@piotrmazgaj4 ай бұрын
This is my seal. I have watched the entire video, understood it, and I can explain it in my own words, thus I have gained knowledge. This is my seal.
@darkequinox41974 жыл бұрын
U should do ur intro like this "Hello everyone i am back with the best video like everyday ;) " This is the truth
@hamadler28984 жыл бұрын
ふざけんな。
@t_tek7604 жыл бұрын
Thanks 🙏
@pythonmacho99544 жыл бұрын
your thumbnail looks very attractive
@TechWithTim4 жыл бұрын
Thank you!
@pythonmacho99544 жыл бұрын
@@TechWithTim joined your discord server
@KonbunTiggles7614 күн бұрын
Thank you
@choccooco11 күн бұрын
thank you :)
@gmc97534 жыл бұрын
I thought a watchpoint is when the debugger stops when a variable changes or when it hits a certain value, or is watch and watchpoint different in VS code.
@SAsquirtle3 жыл бұрын
holy shit this is an invaluable video
@sarthaksingh44684 жыл бұрын
when is software enginnering part 2 coming???
@doriboaz4 жыл бұрын
Tim hi what about conditional break points usefull for convergence math and for loop analysis.
@sagarganiga3417 Жыл бұрын
when i click on debugging only 2 options are available that is pause and restart. rest are not accesible
@IamAlex1244 жыл бұрын
Awesome video , how do you get your python syntax looking like that in VS code ?