Taking Notes is a WASTE OF TIME When You're Learning To Code! DO THIS INSTEAD!

  Рет қаралды 545,850

Dorian Develops

Dorian Develops

Күн бұрын

Check out topmate.io/doriandevelops if you're interesting in chatting with me about anything!
Zero To Mastery - Junior to Senior Web Developer Roadmap: bit.ly/ZTM_Web_Developer_Roadmap
Zero To Mastery - Master the Coding Interview! Data Structures + Algorithms: bit.ly/ZTM_Coding_Interview_Prep
Zero To Mastery - Complete React Developer in 2022:
bit.ly/ZTM_React_Developer
Receive 10% off at Zero To Mastery by using FRIENDS10 coupon code at checkout!
My Resume & Cover Letter Bundle (sowl.co/s/Rfqsd)
Check out Mint Mobile if you’re looking to save money on your cell phone bill mintmobile.com/doriandevelops
Join my Discord ( / discord )
Here are some direct affiliate links for the gear that I use in my home office and gear that I use to make my KZfaq videos
____KZfaq Gear____
Camera Sony FX3 (amzn.to/3AXfFGM)
Sony GMaster II 16-35mm Lens (amzn.to/3onQtpw)
Sony GMaster II 24-70mm Lens (amzn.to/3XeCjFT)
Aputure Light Storm LS 300X (amzn.to/3MErzLC)
Aputure Light Dome II (amzn.to/3wvDQfG)
Rode NTG5 Shotgun mic (amzn.to/3onM7OU)
Shure SM7B Microphone (amzn.to/3Pzrs5R)
Elgato Key Lights (amzn.to/2Y7oxvl)
_____Home Office____
MacBook Pro (amzn.to/3PxYxPh)
Monitor (amzn.to/39FdoHd)
Secretlab Titan - bit.ly/3maIKX6
Keyboard (amzn.to/3MvY4Lz)
Mouse (amzn.to/3yTLO3T)
Beat Studio Buds (amzn.to/3Lu5YUz)
Noise Canceling Headphones (amzn.to/2EOKB4e)
Standing Desk Base (amzn.to/38FJz9x)
Rest of the gear I use that you can buy on my Amazon store: www.amazon.com/shop/doriandev...

Пікірлер: 873
@vickys40
@vickys40 2 жыл бұрын
1. Don't Bother taking notes for the first 2 months rather focus on the course or tutorial. 2. After learning the basics, start building projects and comment on every single line. 3. Write documentation, basically explaining the purpose of your project (watch other tutorials on how to write documentation in VScode). 4. Only take notes of those concepts which you use very often and find it difficult to remember them. Thank you, Dorian it really helped a lot :)
@Turnpost2552
@Turnpost2552 Жыл бұрын
4. Only take notes of those concepts which you use very often and find it difficult to remember them. Yeah thats everything lol
@thedarkriver1
@thedarkriver1 Жыл бұрын
Thats what commenting is?
@persas1683
@persas1683 11 ай бұрын
thank you too
@Kat_is_Coding
@Kat_is_Coding 10 ай бұрын
​@@Turnpost2552😮
@arthuralbert5530
@arthuralbert5530 4 ай бұрын
thank you mate
@viper341
@viper341 3 жыл бұрын
I'm an Unreal Engine game dev working on a large project, and documentation and commenting is SOOOO important, it's everything. All code is at its core is a communication tool, so one of the biggest parts of being a good developer is communicating as clearly as possible.
@thatoneuser8600
@thatoneuser8600 2 жыл бұрын
Do game devs need to learn design patterns? I feel like following SOLID and clear-cut design patterns would make for good code that is already self documenting, but maybe comments would still need to exist. I haven't learned design patterns yet as right now I'm learning multithreading, and I heard design patterns should be one of the last things an entry developer should learn, as it can get pretty complex. Would you agree that learning design patterns is not easy - that some can become complex? Or should I learn it immediately - asap...?
@brentsteyn6671
@brentsteyn6671 2 жыл бұрын
Really! This is very bad, commenting should be the last resort. But I do agree with the documentation.
@domincwild
@domincwild 2 жыл бұрын
"All code is at its core is a communication tool" completely agree and which is why comments should only be for things you cannot capture through code, i.e., why something is implemented in a certain way vs "how" its implemented.
@RiversJ
@RiversJ 2 жыл бұрын
Focus on Very clear variable names, this isn't the 1980's and you are not character limited. m_Debug_Iterator is not a variable name it's gibberish or obfuscation, variables should either be adjectives, verbs or objects (language sense). Then use xml summaries etc to document your methods. Only comment choices you can't explain with your code inline, everything your can't fit in that like program logic, document it. I was very lucky to have a talented and pedantic lead programmer actually teach me things especially regarding making code understandable, still learning but it has been invaluable experience.
@matthewmartin6271
@matthewmartin6271 2 жыл бұрын
In school comments were just as important as the code you would loose so many marks if you didn't comment.
@Jamal-pd1tl
@Jamal-pd1tl 2 жыл бұрын
You are absolutely right. Programming is similar to mathematics you write down important formullas but at the end it's all about practicing and solving more and more problems.
@Othorius
@Othorius 2 жыл бұрын
The same could be said about any skill worth learning. You could take all the notes you want on it... But it doesn't really help you out if you don't actively practice the skill.
@uncomfortabletruths7990
@uncomfortabletruths7990 2 жыл бұрын
This is it what he said what so ever
@Pensnmusic
@Pensnmusic 2 жыл бұрын
@@Othorius I always found memorizing details to be much harder than understanding concepts Maybe it depends on the person? Memorizing formulas might be your weakest link, for example.
@talhaejax8589
@talhaejax8589 2 жыл бұрын
Nope wrong. Situations variable constants making certain shape if all elements in place making certain way then apply this
@talhaejax8589
@talhaejax8589 2 жыл бұрын
If you learn one thing try it simple way different ways then shortest way for different scenarios then find common ground, revise that puzzling step and it's solution
@TricoliciSerghei
@TricoliciSerghei 2 жыл бұрын
My 2 cents as a senior developer. This is a good starting point for juniors, but as time goes on (maybe 1-2 years or more) you will understand that it's better to write clean-code and name identifiers correctly (this comes with years of experience), and you won't need comments, they will slow you down because they need to be maintained just as your code does. Quality code are the best "comments" you can possibly write.
@TricoliciSerghei
@TricoliciSerghei 2 жыл бұрын
@Ryan Tandy No advice is "final". If you think that you need to use comments in your project, DO IT. Comments will always have a place in our code, some things can only be explained by comments and if it makes the team happy, even better.
@krillansavillan
@krillansavillan 2 жыл бұрын
Do you mean coding according to whatever style guide is used on the project?
@TricoliciSerghei
@TricoliciSerghei 2 жыл бұрын
@@krillansavillan Yes and no. Sry for the riddle, but life is always about balance and change. If you have a good company you'll have style guides and standards per company then per project, but it's ok if you have only standards per project. Who decides the standards? "The TEAM" - All the people involved in the project. The interesting thing is that standards can change and should change with time, because the team changes (people come and go) and also because the people in the team get better with years of experience. (programming as a practice also) So yes, code to the project standards, but don't be afraid to change the standards for the better when you guys feel like they need a change.
@krillansavillan
@krillansavillan 2 жыл бұрын
@@TricoliciSerghei thanks Serghei, I appreciate the response. Totally get it how it's not just black or white.
@TricoliciSerghei
@TricoliciSerghei 2 жыл бұрын
@@krillansavillan Glad to be of help. Cheers!
@kazimsyed7367
@kazimsyed7367 3 жыл бұрын
I did a course on Udemy, I created my notes in a document. Since I forgot stuff and tricks. I have to again go through the video. Now using a document my speed to catch up is instant. It is real gold. I don't mind the time it takes. It is worth the effort when u take a break for a month and forgot what that class or syntax do.
@199Carlitos
@199Carlitos 3 жыл бұрын
Totally agree.
@hajji384
@hajji384 3 жыл бұрын
May you share with me document ? Plz
@frankthetank7444
@frankthetank7444 2 жыл бұрын
same for me,, some people need it, as it helps you stay organized, and worry free, cause you've got everything written down, your own personal stack overflow.
@smrtfasizmu6161
@smrtfasizmu6161 2 жыл бұрын
That's exactly why I started writing comments. At first I didn't do it and it happened to me that I would forgot how part of my own code works. Since then I started writing comments, even though I should be writing more comments according to this guy, since I am still a beginner.
@smrtfasizmu6161
@smrtfasizmu6161 2 жыл бұрын
Even before watching this video my preffered option was to comment the code than to take notes but I still do take notes of some things, how some things work.
@JDMorris81
@JDMorris81 3 жыл бұрын
For me the taking of notes reinforces the learning more than reviewing the notes later
@-ASTROMAGIC
@-ASTROMAGIC 2 жыл бұрын
Tips broken down into steps: 1. Comment on your code, build this habit. -The amount of comments at the start should be commented to explain what they're doing. As you get better, this will be needed less and less. Eventually you will only need to comment on important steps (this will be intuitive). 2. Write documentation. -Every project you start should start with a readme file. Learn basic markdown, many markdown cheat sheets often. You'll build the habit of starting with readme files. See how other apps and technologies write their own documentation. Expand and develop this skill as you learn. Potential employers will look at github documentation will value this. A nice portfolio will have applications with explained comments and documentation.
@ysammo214
@ysammo214 2 жыл бұрын
Thankyou
@amitkumargupta-
@amitkumargupta- 2 жыл бұрын
thanks bruh, you saved me 10 mins.
@xenocromium
@xenocromium 2 жыл бұрын
You're a legend 🙏
@emmancrafts.
@emmancrafts. 2 жыл бұрын
I don't really understand what you mean by the 2nd one, mind explaining more to me? 😶
@-ASTROMAGIC
@-ASTROMAGIC 2 жыл бұрын
@@emmancrafts. I'm still relatively new to building my own apps but the best examples can be found on github. To put it simply, whenever you look up or download someone else's work, there are usually readme files that come attached with it. This is documentation. Say you were building your first app, like a food suggestion app. Your documentation would be the readme file attached to the app, explaining exactly what the app does and what its purpose is. To be even more thorough you could also explain what skills you were trying to polish by building this app. As you build your skills, your documentation should also become clearer and more intuitive.
@bruno913
@bruno913 3 жыл бұрын
I’m glad I caught this video. I have been self teaching myself and have been taking notes on a 5 subject notebook. Half of the notebook is filled and I’m not even halfway through my course! I will definitely take your advice and comment more on my code.
@corotoz5513
@corotoz5513 2 жыл бұрын
How's it going now?
@ipodtouch470
@ipodtouch470 2 жыл бұрын
You should take notes on things that don't come up often, but things like loops, vars, functions, etc should all be learnt by muscle memory. That isn't the stuff you should have to google.
@Jamal-pd1tl
@Jamal-pd1tl 2 жыл бұрын
same here. Take my advise, never copy a full code from your source. Let your hands get used to typing codes, it worked for me.
@zombiemachinery4868
@zombiemachinery4868 2 жыл бұрын
Wait until you get back to your notes in the future and you don't understand sh*t about what you wrote no matter how well you wrote it.
@dot5816
@dot5816 2 жыл бұрын
How's it going now??
@dacritter8397
@dacritter8397 2 жыл бұрын
While learning, I absolutely agree. The problem with comments in the workplace is that -- code gets updated but comments rarely do so you wind up working on code where the available comments are no longer applicable. Companies prefer code that is self explanatory through descriptive class/method/variable/etc names which act as comments as you're reading the actual code. That is a GREAT habit to form while you are learning that transfers very well to the workplace.
@HepCatJack
@HepCatJack 2 жыл бұрын
That's fine if the company keeps all of its history of specs because sometimes you have a sleeping bug that can pop up 10 to 15 years later and you see what the code does, but it doesn't say anywhere what the business rules intended it to do. Sometimes, the person who worked on it originally doesn't remember doing it. If the full history of specs isn't kept, the comments are the next best thing.
@happiflowrr
@happiflowrr 2 жыл бұрын
Gonna have to disagree-ish; in an enterprise level code base, part of good coding practices along with readable naming conventions is updating the comments and aptly naming commits.
@Neurotrace
@Neurotrace 2 жыл бұрын
Have worked on large scale enterprise systems. Well named functions/variables/etc. is the baseline. Good comments are paramount to maintaining a large codebase. Code often cannot read as prose nor explain intent. The GREAT habit is updating any surrounding comments when you touch the nearby code
@HepCatJack
@HepCatJack 2 жыл бұрын
I've worked on systems where the people who had designed it were self taught. The problem was it showed in the code. The designers clearly didn't know the difference between a goto and a gosub, the applications would behave in ways not intended because they didn't understand the memory stacks. I've seen over-use of small variable names as if the computers used still had 2k of memory and there was very little in use of comments which would describe what the code was supposed to do. I've seen over two pages of code in some programs that was no longer reachable by the code that ran but it wasn't commented out so a person could waste time reading non-accessible code etc. This bad coding could have been prevented by having the programmer reading a few books on good coding practice.
@skilz8098
@skilz8098 2 жыл бұрын
​@@HepCatJack I can agree to some extent, however I am 100% self taught where my field of study is within C/C++ and I dove into 3D Graphics Engine Design, Hardware Emulation, and more. I taught myself all about the entire process. Not just on the software side of things, also at the assembly level, the compiler and linker or interpreter side of things, I learned how to use the debuggers. And it doesn't stop there. I even dove into and researched into OS design, as well as ISA or Computer Architect Design. I mean building a basic CPU from Logic Gates! There's a lot more than just the stack frame and stack pointer involved. You have calling conventions, name mangling - symbol tables, virtual function tables, utilizing the cache, understanding the branch predictors especially with modern systems that implement out of order instructions, and more... and the list goes on! If it involves a Circuit and Software, I'm game about learning how it works and how to instruct it to get it what I want it to do! I even started to pick up a little bit of Python and some JavaScript when I started to learn about A.I. Algorithms, Neural Networks and Machine Learning. It's not just the programming, nor the data structures, the algorithms, Big O, etc. it's also all of the math that is involved from basic Algebra to Linear Algebra and Vector Calculus, Boolean Algebra, Lambda Calculus and even Number and Information Theory! I have had some college courses in the mid 2000's around 2005-08... but none of my courses involved computer science... the highest mathematics I had was Calc II and Physics II. All of the rest was all self taught! I believe the comment you made can be self evident in many cases sure, but I also find it to be very stereotypical. In all honesty, it comes down to the individual and how they apply themselves! Some of your best engineers or programmers don't have any "formal education". They are smart enough to figure it out on their own. I would tend to think that the stuff you are seeing may not necessarily be from someone who's self taught. It could actually come from someone with a bachelor's degree, one who took it and just barely passed with a high C average about a 2.8-3.2 compared to those with a 3.8-4.0 GPA... I'm not claiming this is so in your particular case, I'm just stating that it is highly possible, even highly probable! They could have either just happened to do well in the interview or got lucky as opposed to someone who knows the entire workings of a computer system as well as the different layers of abstractions, the different paradigms, idioms, etc... One should never assume something based on a stereotypical mindset without having more information, more details and proper context! Just because there's one bad or poor apple doesn't mean the entire orchard is bad! Why do I say this? Throughout the years, most of your inventions came through Garages! And many of those people didn't even graduate from high school! It's almost analogous to the old saying, "never judge a book by its cover!" From my own experience, reading books can be good and helpful and do make a good reference, however, one of the best ways of learning is just by doing it through trial and error, finding what works and what doesn't, finding your mistakes and fixing them. A good programmer, software developer, computer scientist, software engineer, etc... isn't based just on their ability to "write source code". No! What makes them good is their ability to Debug It! The most tedious and dreadful aspect throughout the entire development cycle! If you can debug it! Then you know what's going on under the hood!
@meceka3337
@meceka3337 3 жыл бұрын
Your videos getting better and better every day.
@DorianDevelops
@DorianDevelops 3 жыл бұрын
Thank you very much!
@fnregistration
@fnregistration 2 жыл бұрын
I had a high school programming teacher back in the day who really emphasized comments. Especially early on, he would give us assignments requiring us to write nothing but comments or pseudocode first and submit it, then go back and write the actual code. I think it helped me a lot.
@elg281
@elg281 2 жыл бұрын
Back in the day? Huh
@MzeeRatili
@MzeeRatili 2 жыл бұрын
I'm stuck at high school programming teacher ....some people are very lucky😂
@Nigromancy
@Nigromancy 2 жыл бұрын
Thanks dude I was getting overwhelmed by my notes! Just going to go through the courses and trust my muscles from now on!
@christinefredricksen8743
@christinefredricksen8743 3 жыл бұрын
When I started I took a lot of notes and have cut way back as I feel more comfortable working with the editors, languages and all of that. I use index cards to jot down quick reminders and notes as I am learning something and just keep them nearby, and as soon I don't need them anymore I toss them. I really like the idea of commenting your code and making documentation for your project, good thinking to build those habits and get the benefits of note taking all in one. I am going to make the effort to do this from now on. Thank you so much for the video!
@DorianDevelops
@DorianDevelops 3 жыл бұрын
Keep it up and do what works for you. Definitely can't go wrong when you start building good habits early in your learning!
@samr9622
@samr9622 2 жыл бұрын
This is a great tip! Like coding flash cards, love this idea and makes it a lot easier for note takers like myself to have a quick reference in your own words.
@muhammadyahya9343
@muhammadyahya9343 2 жыл бұрын
Simply when you're starting at coding as a beginner u need some notes...but once speed up and running you might not need them...go with comments and documentation...
@dariusseals8803
@dariusseals8803 2 жыл бұрын
Great vid! Two benefits I gained from taking notes. They helped reinforce things as I learned, and I was also able to look over them later on in my career to measure my progress and understanding because what didn’t make sense before made sense. I was able to confirm what I understood by looking through my notes and explaining the concepts to myself and others, whereas I could not do that early on.
@victorekea
@victorekea Жыл бұрын
When I saw this video, I thought the title was clickbait, but since I take a ton of notes, I decide to check it out. And I have to say that this is really good advice. I realized taking notes has made me spend twice as much time to learn something because I have to write it down in human language, which is hard. It helps you retain more information but you spend too much time in the process. The worse part about it all is I never go back to my notes. The comments I make on each code line ends up becoming a better reference point. Absolutely sound advice! Thanks for sharing, Dorian. Subscribed.
@GyngerNynja
@GyngerNynja 2 жыл бұрын
Thanks for that, I started thinking way more critically about my code when I started using annotations, this is a really good tip.
@amappola7
@amappola7 2 жыл бұрын
This is the best advice ever! Really is very helpful. It saves you a lot of time and allows you to really put in practice what you've been learning.
@Lesliethewordsmith
@Lesliethewordsmith 2 жыл бұрын
This video came up on my suggestions and I'm glad because I always commented on my code when first learning , and still do! great vid.
@danielvinicius4906
@danielvinicius4906 2 жыл бұрын
More one subscriber, I'm a Brazilian so I don't know much English, so thank you so much for put subtitles. Your voice is very clear and easy to understand. I have a lot of notes about React basics that's I almost never reviewed.
@Blooddarkstar
@Blooddarkstar 2 жыл бұрын
This is the third of your videos I am watching and it is on point a question I raised during my own research and learning periods. Thanks again for the good advice!
@cristopherarecheguillen247
@cristopherarecheguillen247 3 жыл бұрын
Im starting to think that you are actually reading my mind dude. 😭 Great video!
@DorianDevelops
@DorianDevelops 3 жыл бұрын
hahaha 🤯
@roving-camera_72
@roving-camera_72 2 жыл бұрын
Your advise makes a whole lot of sense. Thanks for sharing your knowledge!
@blues4509
@blues4509 2 жыл бұрын
Thanks for this video. I'm learning right now and began taking notes down immediately since, like you, I came off earning my CompTIA (Network +) so took the same approach. Knowing it's better to focus on the practical aspect and not to kill myself jotting every detail down for the sake of memorization has encouraged me to focus on repetition and google if anything if I get lost. Thanks again!
@TheJacklwilliams
@TheJacklwilliams 2 жыл бұрын
Solid. Thank you. As I move forward building my site, portfolio, etc... this will be the heart of the effort. Thanks Dorian. As usual, knocked it out of the park.
@TH-ie6jr
@TH-ie6jr 3 жыл бұрын
Really appreciate the production value bud in this one. You’ve come a long way. 💪
@Account-qh5ci
@Account-qh5ci 2 жыл бұрын
This is some of the best advice I've received getting started in programing... much respect man.
@joshuaduffney
@joshuaduffney 2 жыл бұрын
Love the idea of using the comments as the notes. It forces you to write very concisely and keeps it with the sample code. +100 great idea, thank you.
@faicalghali9562
@faicalghali9562 2 жыл бұрын
Thanks for you honest content that get direct to the point and with alot of informations that can save any one like me who start his journey learning to code . I like to watch your videos and i hope you keep the good work up . Always waiting for the next videp 👌👍
@tylerlaflamboy4545
@tylerlaflamboy4545 2 жыл бұрын
Really appreciate the advice I’m glad I found this while working on my first project thank you
@patrickst-louis6537
@patrickst-louis6537 2 жыл бұрын
Excellent tips, I couldn't agree more. Another habit I started implementing is creating my own cheat sheets. Great time saver and helps structuring some of your coding habits.
@MichaelGolpe
@MichaelGolpe Жыл бұрын
Thanks, Dorian! I have been struggling and think this will help me immensely!
@nguyenhoangminh6775
@nguyenhoangminh6775 3 жыл бұрын
This is super valuable advice! This even can be applied to experienced software developers learning new programming languages or frameworks.
@bandotrax
@bandotrax Жыл бұрын
I'm taking this cs50 class and I've definitely been taking notes, I actually found this video looking for things I should’ve studied before taking the course. Thank for he tips.
@shd_hussain
@shd_hussain 2 жыл бұрын
Thanks, man. This was exactly the video I was looking for.
@osmandolu
@osmandolu 2 жыл бұрын
Hi Dorian, many thanks for making a nice video for this important topic. Keep up the good work and please keep sharing your valuable experience with us.
@-0-__-0-
@-0-__-0- 2 жыл бұрын
I learned the essence of how to properly write your code and commenting when I first watched CS50. They'll grade your code based on its functionality and its design and then I also learned that the most efficient way for me to write my code is creating the pseudocode first. Understand how you want your program to run, then for each line of the pseudocode, write the actual code which will make everything else really easy.
@chizonwazuo
@chizonwazuo 2 жыл бұрын
I feel like this mostly only works when you're solving algorithmic problems. If you're writing some layout code, or some simple stuff, it may be overkill
@-0-__-0-
@-0-__-0- 2 жыл бұрын
@@chizonwazuo Yes, since most problem sets there are related to algorithms.
@AdrianMark
@AdrianMark 2 жыл бұрын
Thanks for this. Realised it the hard way but now I'm becoming more laser focused on just practicing coding and focusing on communicating what's going on in the code.
@riacharda
@riacharda 2 жыл бұрын
I'm currently learning Javascript and agree with you. I only note down key takeaways and concepts as I go along.
@LimitBreakerJ
@LimitBreakerJ 2 жыл бұрын
Thank you for this video, definitely doing this from now on ‼
@user-ho5pm4jn4h
@user-ho5pm4jn4h 3 жыл бұрын
One for the algorithm. Your videos are getting really good man. Keep it up!
@DorianDevelops
@DorianDevelops 3 жыл бұрын
Thanks, will do!
@nickhackas4534
@nickhackas4534 Жыл бұрын
This is THE best video on coding, hands down! Thank you man.
@kengfaihui9575
@kengfaihui9575 3 жыл бұрын
I take notes on a notepad , I did feel exactly what you described, not sure what to and what not to note down, going to switch to comments! And only note down stuff I really can’t get into my head ! Love this video, thank you.
@luisarango1607
@luisarango1607 2 жыл бұрын
Great video ! You will hit 100k soon brother! We respect your honest approach
@danielcarrasco1540
@danielcarrasco1540 8 ай бұрын
Great advice and wonderful, inspiring videos! Got a new subscriber
@cemkocainan1831
@cemkocainan1831 Жыл бұрын
Thanks! I had this question on my mind for a while.
@ImprovementGang
@ImprovementGang 2 жыл бұрын
This is similar to an approach I saw in a video about math. The person explained to not write out the code itself, but explain in words the process one needs to follow to get the right answer. These are the comments that could help someone really learn. Good video!
@vidalesparza8722
@vidalesparza8722 2 жыл бұрын
Really great points in this video. I will be implementing this for myself. Thank you.
@nlsn1865
@nlsn1865 2 жыл бұрын
very fresh info i get from this video, which i dont get from others. Thanks!
@abdulbasitali9520
@abdulbasitali9520 2 жыл бұрын
A really good advise! I am going to follow it for sure
@scottisitt
@scottisitt 3 жыл бұрын
Very helpful! I take notes on concepts and comment in my code. I hadn't considered documentation. I will look into how to do that.
@grimmhue
@grimmhue 2 жыл бұрын
I was just struggling with a beginner project that I'm trying to tackle. Thank you for the video, because I'm definitely taking too much notes that I'm not going to use. Having myself explain what the code does is definitely better than doing pseudo work.
@user-lp9cd7bd4n
@user-lp9cd7bd4n 2 жыл бұрын
This is a gold nugget advice I started immediately implementing it, luckily I am learning right now
@Origon09
@Origon09 2 жыл бұрын
I remember taking a lot of notes when dealing with Data Structures and Algorithms. In fact I still have them by my desk. The only reason I was really pushed to was because I wanted to see how the code worked next to a picture of what it was doing. This was really helpful. But I would probably agree with you in the fact that being able to comment your code helps in the two ways. 1) People can understand what you are doing. 2) You understand what you are doing. Great Video!
@nindyafadhila4242
@nindyafadhila4242 Жыл бұрын
thank you for your tips and tricks. its gorgeously helpful for my learning soon
@johnathancooper4817
@johnathancooper4817 3 жыл бұрын
Thank you. I was just about to buy a $7 coding notebook and everything you said makes perfect sense.
@richardvanhelden1420
@richardvanhelden1420 2 жыл бұрын
Brilliant and eye opening video. Thx!!
@DorianDevelops
@DorianDevelops 3 жыл бұрын
Are you taking notes while you're learning to code? Let us know in the comments below!
@eddier2k9
@eddier2k9 3 жыл бұрын
Not anymore after this video lol 😂 thanks! I’m on js now
@victorizquierdo5320
@victorizquierdo5320 3 жыл бұрын
Yep, something like that. I 'm doing the FCC so I download each answear and comment it. So when I'am building and dont know how to, just search the file and read my comments. Also each line of code from FCC I rewrite it in VSCode for practicing.
@mddilshadalam8561
@mddilshadalam8561 3 жыл бұрын
I need mentor for my coding journey I learn c then data structure now I m learning greedy algorithm I know c++,html , css little bit too but after completing dsa should I go with java or c++ ? help me out buddy
@TheSpringClover
@TheSpringClover 3 жыл бұрын
Yes, I’m so used to learning this way especially coming from a science background. Your advice makes great sense! Thank you!
@self-taughtprogrammer1779
@self-taughtprogrammer1779 3 жыл бұрын
HEY DORIAN! I've been in this channel since you have a small subs. Can I ask do you post you videos outside like FACEBOOK to increase your views or KZfaq just got you through Algorithm? sorry for the non related question :)
@Social-Hacking
@Social-Hacking Жыл бұрын
I love your channel man. I appreciate that you don't sugar coat $***. There needs to be more honest people out there like you.
@mrcoolanimator685
@mrcoolanimator685 2 жыл бұрын
Bro first video I found is your video about this topic. I am still a beginner and I am currently taking a course, but I was really confused about what exactly should I take note of since all of them kinda look important, thanks a lot for the video. Good luck on your journey
@mind_of_a_darkhorse
@mind_of_a_darkhorse 2 жыл бұрын
Everything you say here makes a lot of sense and it is a great help!
@Utube87madg
@Utube87madg Жыл бұрын
Such a great advice for beginners I’m going to implement this ASAP thank you
@OsascogamingBrSP
@OsascogamingBrSP 3 жыл бұрын
Thank you for these valuable advices!
@courtneynel7433
@courtneynel7433 2 жыл бұрын
I spent my first year studying frontend taking notes college ap style, with highlighters and bullet systems. In a way it helped me retain the basics (that should be known/memorized) but after a while it reallyyyyy hindered me time-wise and as I was taking more notes and practicing less, I noticed that they weren’t helping my comprehension at all so I abandoned note-taking, as great at it as I may be, it just isn’t as useful for learning and applying code. Thanks for the tips about documentation, that sounds so much more proactive and useful in the long run.
@peterchristiansen5835
@peterchristiansen5835 2 жыл бұрын
This is literally how I feel. This was very helpful - good stuff.
@freeus6085
@freeus6085 2 жыл бұрын
Really solid advice man thank you!
@ronnysusanto6755
@ronnysusanto6755 Жыл бұрын
Interesting and good tips! Thank you for the insight!
@mirovaltonen112
@mirovaltonen112 2 жыл бұрын
This is great! I'm in my learning process now. Better take this documenting seriously to my practice too.
@johnheine4099
@johnheine4099 2 жыл бұрын
I'm very new and the thing that has helped me is referencing my older code. I haven't taken notes and have commented a little bit, but I've found myself recalling past projects or algorithms that I've done and referenced those files. Idk if that's an efficient way to do it for learning but I do like the idea on comments to help myself walk through a problem/ segment of code. Thanks for the advice!!!
@mjrodelas3636
@mjrodelas3636 2 жыл бұрын
Thank you for this suggestion!
@miorosa318
@miorosa318 2 жыл бұрын
this is why im loving discord so much more, i have my own little personal learning server and jot things down in which i can just go into and remember later, tho this helps a lot too and ill have to remember it from now to apply them
@tysonefford5522
@tysonefford5522 Жыл бұрын
Thank you so much, I'm taking all your tips as a beginner.
@MoMan9
@MoMan9 2 жыл бұрын
this is crazy advice! i love it!
@defu8592
@defu8592 2 жыл бұрын
Really great suggestion thank you! I type too many notes atm tho I am somewhat doing that because I'm wanting to refine my typing and the other is cause I'm scared of missing something. I think your suggestion is much better for how I learn and has actual practical use as well so thank you!
@jamesbell8148
@jamesbell8148 3 жыл бұрын
Thanks so much about the notes great advice i started doing it for everything :) your totally right im a bit of a dinosaur and liked making notepad notes and they have now been lost and i dont know where to look so now i ust note on my practice pages to save time :) keep up the good work much appreciated.
@DoingLifeToday
@DoingLifeToday 3 жыл бұрын
Great video! Loved the editing and b-roll❤️👍
@DorianDevelops
@DorianDevelops 3 жыл бұрын
Thanks! Really trying to step it up and learn how to use this new camera!
@Supaboy000
@Supaboy000 3 жыл бұрын
This is immensely useful information because this is a question I had for a while. I eventually asked some Redditors and for the most part they said they did not take notes essentially. I've been coding for around 4 months now and I stopped taking notes after a while with the thought that it was taking away from me recollecting things. No you cannot memorize everything but you do memorize some things that are basic and used often. I feel when I stopped taking notes I got a bit better at coding and doing things on the fly as opposed to having to reference my notes 24/7. The tip to comment in your code instead of taking notes is an amazing idea!
@manuelpagliuca
@manuelpagliuca 2 жыл бұрын
thank you for this video man!
@gplus46
@gplus46 2 жыл бұрын
Coming from the education industry I almost bypassed this, but coming from the education industry I had to take a look:) Glad I did. I'm commenting the hell out of my entry work. As I was doing it I figured out where some of my errors were. Thanks!!
@mindlessdeveloper5708
@mindlessdeveloper5708 2 жыл бұрын
some very good tips in here, great infomation
@jmcclinton8
@jmcclinton8 4 ай бұрын
Thanks for this tip. I was wondering how I can remember stuff and how to take notes on certain things.
@swojnowski453
@swojnowski453 3 жыл бұрын
My method is this: I draw an object i want to build or work with, I describe all the variables on it. Then I define algorithms for the object which I encapsulate as methods on the object. Once all these are done I build a test suite and test all that. Once done I move everything to objects own folder, that is the drawing, the class and the tests. That is my, reusable note. Finally, I have one drawing with all the objects I have ever developed, worked with and tested. Every time I have a problem I look at these objects and think which one might be a solution to the problem. This is not a traditional note taking, but something that I developed on the basis of how I solve problems mathematically. You need a drawing, you need all the variables and you need algorithms clearly described.
@djamz3793
@djamz3793 3 жыл бұрын
Hey might giving an example of this ? Like an example of one drawing you did with all this info. Your strategy seems really interesting and a good approach to understand
@swojnowski453
@swojnowski453 3 жыл бұрын
@@djamz3793 Imagine a stack. It is a container with a pointer variable called top with value -1 and a variable capacity, which tells you how many items you can put on the stack. Open inkscape or other program for vector graphics drawing and draw a box with open top, call it container, then draw a red horizontal arrow right at the bottom of the box, to the right of it write top and set the value of this variable to -1. At the of the box draw another red arrow and at the top of it write capacity and set it to how many items your stack can have. I use orange color to describe all the parts of my data structure that normally would be considered variables. So box, top and capacity would all be orange. Next to your stack draw some blue boxes and label each of them item. These are items you will be putting on your stack. Once you have your basic structure you are ready to draw how actions will affect your data structure. Lets say you want action called push, which is normally used to put an item on a stack. Copy your basic data structure and paste it below. Label it push(), Draw a black arrow from one of items to point into the box. Then draw a green vertical arrow under the red horizontal arrow next to variable top. It shows that value of top changes from -1 to 0 as you push an item on the stack. This is a very simple example of how you might visualize things. You should do similar drawings for other operations defined on the stack like isEmpty or pop. It does not really matter how you draw. What matters is, you should use colors, make all the variables available for change on your data structure and be precise how they change as you manipulate your data structure. Sometimes it takes several copies of the basic data structure to depict what happens as you sort or do some other thing. You might say, this is too time consuming method. It might look like that, but remember that you do it once. Once you have these drawings, your code based on it and tests you are set for many many years. When you need a quick reminder how things work, you take a quick glance what you drew and you know immediately. Your code should be based on your drawings, and your tests on your code. This is nothing different to what you would do while solving a maths problem. Drawing gives a nice face to programming and helps to define classes and actions on them very cleanly. On top it is an extremely pleasant part of coding process. Finally, you are left with something that you can always come back to for a quick review. Finally, once you have drawn a couple of things, you have reusable components, like arrows, items, containers, you can use to draw other things quickly. Once you have started with this it becomes a habit, one which is invaluable when you have to deal with a complex data structure with many moving parts ... in fact, when you see that there are too many moving parts, it is time to separate some parts and move them to a different drawing. Your drawings should have no more than 6 moving parts as your classes should not have more than 6 variables in them. Hope this helps.
@lonestarrk9308
@lonestarrk9308 2 жыл бұрын
An unfinished Rubik’s cube bothers the shit out of me lol. I finish every one I see.
@humblebean957
@humblebean957 3 жыл бұрын
Very glad to see you comfortable back in your own workspace bud. looking forward to the future content.
@DorianDevelops
@DorianDevelops 3 жыл бұрын
Definitely feels more comfortable! I will be trying to make all my new videos better and better! Thanks for watching!
@humblebean957
@humblebean957 3 жыл бұрын
@@DorianDevelops Pleasure mate
@theboringtube
@theboringtube 2 жыл бұрын
thanks man, yes i am stuck of learning how to code because I'm taking so much notes in order to remember everything
@ayaaly2866
@ayaaly2866 Жыл бұрын
Literally you're like my code angel your help and guidance means the world to me thank you ❤️
@77Sherms
@77Sherms 2 жыл бұрын
Great video. I have been learning to code for about two years now and I spent alot of time taking notes. I think it helped a little with retention but overall I think it's been more of a disadvantage because: 1.It adds to the time it takes to finish a course, tutorial or book and, 2.It stops you from focusing on applying what you learn. I have not done any coding for about three months as I ended up feeling overwhelmed and burnt out. I'm starting to get some energy and motivation back and I will start back up again. I think the key here is to keep it simple and straight forward. Its important not to overthink things. If you don't understand something or copy it, that's ok. If you keep doing it you'll understand it over time.
@edsonwinnerify
@edsonwinnerify 2 жыл бұрын
Great advice, thanks.
@JustinDAMusic
@JustinDAMusic Жыл бұрын
You should take notes. The point of doing a course is not to get through it as quickly as possible. It is to learn as much as possible. And no taking notes does not take your focus off what you are learning. It actually helps you.
@samlawson2685
@samlawson2685 Жыл бұрын
@@JustinDAMusic Did you watch the video entirely ?
@sophiesjourney1551
@sophiesjourney1551 2 жыл бұрын
Thank you so much it really helped.
@thestereokid6073
@thestereokid6073 6 ай бұрын
Yo, thanks, bro! It's funny how simple good advice can be sometimes. :) Even though I learned to comment and document my code faster than other developers I got stuck on taking notes for far too long and even as a developer, almost 5 years into my career this is still a blocker for me since I love taking notes. I'm busy looking for new jobs and I know that I'm going to have to learn some new tech and pick up the pace so this was a good pointer for me and I can't wait to get started and get productive! I think the main takeaway for me here was to learn by writing more code and not to focus so much on writing better code. Peace and Love from South Africa!
@elenaperez6327
@elenaperez6327 Жыл бұрын
A great video! Good tip on the comments! I still don't have the developer mind and writing comments to explain everything will help me understand code for sure. I often write code without fully understanding it. I need to level up! Thank you!
@Dassick89
@Dassick89 Жыл бұрын
A thing I have picked up that has started to help me remember things better. Being a complete beginner with no code experience ever. Is to explain the concept of what you just learned outloud to either yourself or something like a toy next to you. Pretending that thing is another person that you have to teach what you just learned. Yeah it really makes you realize if you learned what you just did, or just went through the motions.
@patsymprice
@patsymprice 2 жыл бұрын
Wow, this really works. I am in a bootcamp learning javascript. I use comments in the code instead of notes and my comprehension has increased tremendously. Great advice that I will take with me into my career.
@NURSEPAULINERN
@NURSEPAULINERN 2 жыл бұрын
Thanks for sharing this interesting video 😊 I subscribed
@amybarsdorf6111
@amybarsdorf6111 Жыл бұрын
Thank you this video helps alot🙏🙏🙏 grateful.
@Aaron-sy5yx
@Aaron-sy5yx 2 жыл бұрын
So far I've watched 2 videos and you've already saved me months of work
@Great_YY2
@Great_YY2 2 жыл бұрын
This video is gold thank you 🙏🏻
@TheBothWorlds
@TheBothWorlds 2 жыл бұрын
This was really helpful thanks!
@Ruzgfpegk
@Ruzgfpegk 2 жыл бұрын
Notes may be a waste of time depending on how you're planning to use them. "writing once to remember and never read again" is indeed bad. You have to take notes for yourself in the future, not yourself right now. My current approach is to use Markdown (with Joplin to manage notes by "Notebooks" and tags, one note per book chapter) to note everything I don't know yet or will surely need quick reference to in the future. And if I ever needed to reread a book, rereading the notes should be enough. They're the step between the book and the cheat sheet. As for comments in the code, I don't fully agree. Drowning the code in a sea of comments can have the opposite effect so I'd rather organize the code in a way so that anyone could understand directly what's happening and why, but it's easier said than done (applying the "Clean Code" rules). If your language has widely accepted header comments such as JavaDoc or PHPDoc of course it's wise to use them, in no small part to help your IDE help you back.
@EnokMadrid
@EnokMadrid 3 жыл бұрын
I did this too. When I was learning my first few months, I had my notes app and iCloud full of code snippets ...it got messy lol.. later on I learned to write comments. I'm glad you bring this up for those who are starting out.. btw great video production quality ..love it 👍
@DorianDevelops
@DorianDevelops 3 жыл бұрын
It's something I think that we all do when we're first learning. I'm old and much of my early notes were pen and paper 😂 that was messy as well. Had to step up the production values to try to reach a wider audience. People really like "entertaining" video.
@jacobmyers5204
@jacobmyers5204 2 жыл бұрын
Glad this video showed up, I never used to use comments for this. I took alot of notes, still have tons of notebooks filled with code notes.
@WizeChoice
@WizeChoice 2 ай бұрын
Amazing advice👉🏽✨✨✨Thank You Much!!
Why Self Taught Programmers Fail or Quit When Learning How To Code
15:47
Dorian Develops
Рет қаралды 270 М.
I learned a system for remembering everything
10:50
Matt D'Avella
Рет қаралды 8 МЛН
¡Puaj! No comas piruleta sucia, usa un gadget 😱 #herramienta
00:30
JOON Spanish
Рет қаралды 22 МЛН
How I would learn to code (If I could start over)
9:16
Jason Goodison
Рет қаралды 4,4 МЛН
How I Take Notes: the Best Note Taking Method | Jim Kwik
11:20
Self Taught Web Developer Portfolio That Got Me Hired Over 4 Years
36:43
Dorian Develops
Рет қаралды 256 М.
I stopped taking notes in medical school
10:03
Cajun Koi Academy
Рет қаралды 2,5 МЛН
Learn to code with an unfair advantage.
15:05
Jason Goodison
Рет қаралды 159 М.
Self Taught Programmers... Listen Up.
10:00
Kenny Gunderman
Рет қаралды 1,8 МЛН
Obsidian: The King of Learning Tools (FULL GUIDE + SETUP)
36:26
The Harsh Reality of Being a Software Engineer
10:21
Gyasi Linje
Рет қаралды 2,8 МЛН
Stop wasting time when you're learning to code!
6:56
Coder Coder
Рет қаралды 1,8 МЛН