Hello. I'm Andy Harris - the speaker in this video. I taped this talk at the IndyPy meeting on election night 2016 (yeah, that election night.) I had no idea this video was going to take off like this. Thank you all for your kind comments. (Even the not-so-kind comments, thanks for watching.) I had fun doing this talk, and I'm thrilled if it might help somebody else.
@luciadippolito85595 жыл бұрын
THANK YOU! What you teach in this video is so valuable! I probably don't have to tell you how much I'm struggling to become a software developer. Your words give me hope. I only know one more person who said the same things you teach here and he is an excellent developer for years already. I wished I could somehow learn more from you. I will watch this video again and again.
@MrsCyImsofly5 жыл бұрын
Dude you are hilarious and so relatable. As a solutions analyst everything you said helps explain the basics of solution planning 👩🏽🏫👍🏼
@Cognitoman5 жыл бұрын
I was in special ed...but I dropped out. I wish you could have been my teacher. To be honest I think a lot of people in special ed are actually smart, but they learn differently.
@doot23595 жыл бұрын
You are a legend ! 💪💪
@ElectronWranglerTV5 жыл бұрын
Enjoyed your presentation Andy. Everything you said is the kind of knowledge we have but never think about until someone like you comes along and points it out, then the rest of us think "Oooohhhh yeaaahhhh, you're right." I think the best points were about shutting the laptop on students' fingers, first understanding the concepts then converting everything to code, and code naturally follows a well-written algorithm. I program primarily in various flavors of assembly, but have used many other languages, and still create old school flowcharts before writing a single line of code. I can't count the times I've had people ask why I'm bothering with flowcharts. The answer quickly comes when I've written an ISR and several related routines in assembly while they're still fumbling with their object hierarchy and relationships in C++ (no readers, that's not a knock on OOP/C++, but on a lack of planning before coding).
@f4ephilosophy691 Жыл бұрын
Starting #TheOdinProject you saw hundreds and hundreds of people cheering each other on in the comment section of KZbin videos recommended for reading material. As the course went on and on you also noticed less people talking in the comments because there were less people who made it this far. You may not think you did much yet but trust me we have. We made it this far and we can keep going. Make it to the end and continue your journey.
@nolstarrzz619 Жыл бұрын
I was looking for this comment, we got this!!
@tylermorath9098 Жыл бұрын
Slowly learning to love Javascript. Was definitely feeling discouraged a few times, but solving problems is the best way to solidify your learning. Good luck to all my fellow Odin Project-ers :)
@bungeroohooo Жыл бұрын
Let's keep it up!! I'm also here from TOP 🎉
@chimpankie1954 Жыл бұрын
Also here from TOP!
@peacecode7 Жыл бұрын
Here from TOP
@rafihasan7787 Жыл бұрын
People coming from The Odin Project: Congratulations 🎉 you are going strong, I'm really proud of you!!
@mueblenudecarpinteriacancu86167 ай бұрын
hope youre doing great brother! how far are u in TOP now?
@rafihasan77877 ай бұрын
@@mueblenudecarpinteriacancu8616 I don't wanna discourage you, I reached deep into Javascript path, but life got in the way, with a full time job and way to many bs, I completely stopped at January, I will start again very shortly.
@peteryakubu34346 ай бұрын
where you at now
@bashehu6 ай бұрын
I am currently at Problem Solving, Foundations Course
@OP-ny8tf6 ай бұрын
best of luck you all
@aymanjd48984 жыл бұрын
"The secret isn't code, the secret is algorithms and data" that changed my entire mindset, thank you sir.
@maxmaxwell42114 жыл бұрын
So should I focus on understanding and learning algorithms and data structures?
@aymanjd48984 жыл бұрын
@@maxmaxwell4211 Yes that's the basic thing u should learn first.
@imalwaysright14083 жыл бұрын
@@ccriztoff “real programmer” like what? Is the measuring stick your opinion of real and fake??
@imalwaysright14083 жыл бұрын
@@ccriztoff clearly you’ve been spending too much time on the computer you’re as dumb as they are if misplaced questions marks (utube bug) means it’s a different language 🤷♂️
@ishmel113 жыл бұрын
@@ccriztoff oof if you couldnt understand Chand i think you're the one who needs to learn english lmfao
@lefxxwill77403 жыл бұрын
"Code is there to explain the comments to the computer" hits different
@juicystrawberry93513 жыл бұрын
@@super_super_super485 Comments explain the code to you but to the computer the code explains the comments
@juicystrawberry93513 жыл бұрын
@@ccriztoff are you talking to me
@juicystrawberry93513 жыл бұрын
@@ccriztoff what does this have to do with anything
@juicystrawberry93513 жыл бұрын
@@ccriztoff or what
@daurham3 жыл бұрын
🚬😗💨 Gatdamnn poetry
@diskographi6 жыл бұрын
Thank you, Will Ferrell, for teaching me how to think like a programmer.
@DebbieMason6 жыл бұрын
I knew this voice sounded familiar. Lol.
@peterjhartvideo6 жыл бұрын
Actually it's Pete Holmes
@WilliamBay6 жыл бұрын
Actually it’s Chad Smith.
@anotancro6 жыл бұрын
More like Seinfeld
@SlippinJimmy4Life6 жыл бұрын
LOL
@bloodypommelstudios71445 жыл бұрын
"You need to learn to be as mind-numbingly stupid as a computer" I think I can manage that.
@max_ishere4 жыл бұрын
No you can't.
@EvenStarLoveAnanda4 жыл бұрын
The computer can only ad and subtract. Not even multiplication. You can't be that stupid. This is why we will never have Self aware AI. AI is only a simulation created by us.
@achtsekundenfurz78764 жыл бұрын
"The computer can only ad and subtract. Not even multiplication." That was the 6502; the Intel 808xx line can totally do MUL. Well, internally, it's like long multiplication, with the trick that binary does a lot with shifting and adding. BUT those long-number-crunchers do things faster than that, via tricks like "Karatsuba's scheme", a scheme that multiplies WITHOUT multiplying each digit of one factor by each of the other. The basics of Karatsuba can be explained in decimal, too: there's an excellent example on Wikipedia.
@Sir_Obliviousness4 жыл бұрын
You guys are acting like multiplying is different than adding... it is quite literally the same thing. 2x3 is just 3 twice i.e. 3+3. Exponents? Still adding at the end of the day. As humans we tend to skip the step of adding things together but all that’s really happening is that we remember the answer. When you see 2x3 the lookup table in your head finds 6 without doing any addition. Computers can technically do the same.
@Sir_Obliviousness4 жыл бұрын
@@EvenStarLoveAnanda If by your definition a computer can’t multiply, it also cannot subtract. Subtraction is still addition in a computer it just uses the complement of one number.
@aiero-h2x Жыл бұрын
- Computers are not smarter than a shoe. Programming is about explaining things to the idiot computer. - Computer languages have about 100 words. The syntax is painfully rigid. - The secret isn't code, the secret is algorithms and data. - Write out the concepts first, then convert them to code. - If you're lost in coding, it's probably because you shouldn't be coding yet. - First you need to understand the problem you're trying to solve. Don't jump straight to coding without understanding algorithms. - Having goals is good, but if goals lead to inevitable failure and defeat, maybe pick something else... - No matter what, do not feel like an idiot. - Comments are not there to explain the code to programmers, code is there to explain the comments to the computer. - The coding part is the easy part. The algorithm part is the hard part. - If you're really confused, find someone that feels comfortable and make them uncomfortable. - Did you tell it to do it incorrectly, or did you tell it to do the wrong thing? - Don't start with a solution. Don't try to solve a problem you don't understand. - Beginner? Python. Not all, maybe not the main, just some points.
@soriano19963 жыл бұрын
"I want them to fail, but I want them to be able to overcome that failure." Very well said, sir. Great presentation 👏🏽
@ephilihp3 жыл бұрын
As a coder for over 20 years and professionally for over 15, this presentation is 100% great advice for anyone who wants to pursue it! Thank you for making and publishing this.
@kylarlee93123 жыл бұрын
Where do I start? I only have a chromebook, should I upgrade?
@runningislashl37493 жыл бұрын
Programar todo
@kirsty_yamaha3 жыл бұрын
@Emmanuel Kasirivu Lugoloobi did you query a search index
@SpaceCityCowboy882 жыл бұрын
100
@Perfidion6 жыл бұрын
That was really good. The hardest part for me isn't the coding, it's the 'where the hell do I start with this?' stage prior to breaking things down into workable chunks. You have to train yourself to stop making assumptions. The computer doesn't make assumptions. It just does exactly what you tell it to do. Learning to dial back all that logic leap stuff people normally do is fairly tricky.
@magnusm44 жыл бұрын
Can't tell how many times this has happened when I write a variable or a layermask. And either the character isn't moving or the detection doesn't hit anything. Cause the default layer is set to nothing and the default value is 0 so I multiplied by zero --_-- Re wrote and made 3 completely different sets of code for moving and 7 with detection until I realized I didn't set the values.
@WhatTheFozz4 жыл бұрын
I’m in this same situation, any advice for me? I’m really in need of it
3 жыл бұрын
@@WhatTheFozz Break it down to numbers. Hopefully you're already there.
@WhatTheFozz3 жыл бұрын
@ thank you, I’ve gotten a grip of it and getter better, thanks again (:
@yourkodi39453 жыл бұрын
Once everyone understands you have to tell the computer(program) (EVERYTHING) it needs to do it will make peoples lives easier. Great video
@yesweet6 жыл бұрын
After 3 years coding, I continually nodded during his talk, kind of flashback for all my experiences.
@alibaba82666 жыл бұрын
same here :)
@simonolofsson74886 жыл бұрын
liang lu absolutely. My favorite part is the ‘comment being the code’ and code being the translation part.
@larva56065 жыл бұрын
This i# great 5o hear from someone who’s just starting. To know that the advice I’m ingesting isn’t going to do me wrong. 😁 Thanks
@ica8854 жыл бұрын
Great! :))
@eb44163 жыл бұрын
@@simonolofsson7488 totally agree! I first of all write in plain text what i want to happen next, then I add the code which executes exactly that! This was a gamechanger for me.
@lancejensen9750 Жыл бұрын
If you're here from the Odin Project, congrats on getting here! We're almost there! Keep pushing!
@_Desiree5 ай бұрын
have you finished, or are you still plugging away? I'm taking forever with this course!
@gabiromilk4 ай бұрын
hell yeahhhh!!! let's go! :)
@dylliebobs993 ай бұрын
@@_Desiree i have read alot of people at various levels in the course talk about it not mattering how long it takes to complete. the only thing that matters is carrying on with it. even if one lesson takes a whole week to complete. its about learning and understanding not how long it takes to click mark complete at the bottom.
@abstractapproach6344 жыл бұрын
11:28 underrated statement, "first of all you hated math class, I'm not sure you've met math"
@aleisterlavey97164 жыл бұрын
A sure we met meth in class, was about 5 months... or was it years ago, hover this guy's sister told me her bf met some gang kiddies and they said she told him, i should gave her the money and thats how i learned subtraction.
@foreverhumanpodcast4 жыл бұрын
That shit got real deep
@michellemercy27153 жыл бұрын
I actually watched a full ged math breakdown and it did help me immensely with coding.
@AnitaSharma-rz5yk3 жыл бұрын
@@aleisterlavey9716 See
@skyhighflying15253 жыл бұрын
@@michellemercy2715 is it possible to send link?
@yukiyuka7314 жыл бұрын
Me before coding: perfect grammar Me after coding: give me that thing in the fridge is not Apple
@sabrinahussaini27564 жыл бұрын
LOL best comment
@magnusm44 жыл бұрын
Bed is if not cold then true else false if true sleep.
@Scholz234 жыл бұрын
Apple = false
@pyra14883 жыл бұрын
And you gotta check everything one by one to decide if it is an apple or not with a for loop
@xHershel3 жыл бұрын
@@pyra1488 cant u sort the fridge first to lower the time complexity?
@marzappel88586 жыл бұрын
I love how enthusiastic this speaker is
@MrAnonymoose6 жыл бұрын
Mar Mar even to a somewhat dead crowd, he's still lively. Guess that's what it takes to teach a college classroom lmao
@Giraffinator6 жыл бұрын
I honestly wish I've could've -watched- him be enthusiastic, seems like a good time in itself
@Giraffinator6 жыл бұрын
I refuse to believe that the python logo isn't two dudes with jacked-up chins.
@AJScarrRoyalty6 жыл бұрын
its two pythons...
@Giraffinator6 жыл бұрын
Two dudes with jacked-up chins entertains me more, so it's that
@lewis65906 жыл бұрын
Can't unsee
@andrewkelly84036 жыл бұрын
@@lewis6590 I was just about to say the same thing lmao
@thehighshow6 жыл бұрын
ill never unsee it now
@Irzani9385 жыл бұрын
Watching for 2nd time. Trying to restart my programming journey.
@johnsonpham20004 жыл бұрын
hope you're doing well and still continuing!
@Harrisdrew6253 жыл бұрын
Just starting my journey again as well 4 years after I quit. Hope you're still going strong!
@r4lfxd3 жыл бұрын
Kinda the same, weird.
@jampamatosful3 жыл бұрын
I'm at 11 minutes and 38 seconds of this video and i can safely say this is one of the best content i've ever seen on youtube ever. thanks a lot for that (and thanks Odin Project for bringing me here)
@RichardBronosky5 жыл бұрын
At 16:25 "Write out the concepts first, then convert to code later." I am a DevOps lead engineer. I am constantly coaching Ops engineers to improve at coding. I am known for using A LOT of sticky notes. One for each requirement. One for each failure mode. One for each possible solution. Then you start pseudocoding those requirements. One for each service call. One for each function you need to write. One for each loop. One for each condition of conditionals. One for each Try/Catch/Else/Finally/Promise/Then/Catch. You have the freedom to move them around, shorten your loops, minimize round-trips, etc.
@psacentralcoast69706 жыл бұрын
I needed this! I’m in my late 40’s and I really want to code. There is such a great divide between coders and learning that it’s overwhelming. I didn’t finish HTML and CSS because I couldn’t do what I want fast enough. I’m really keen to learn Python, this inspired me. I teach people how to surf and skateboard and it’s about simplicity. Thanks for this I needed it.
@autohmae6 жыл бұрын
Let me know if you have any questions. Python is not something I use every day, but I'm willing to help.
@psacentralcoast69706 жыл бұрын
autohmae thanks, that’s awesome. I’ll definitely take up that offer.
@autohmae6 жыл бұрын
@@psacentralcoast6970 Well, I can only try to be helpful, no guarantee. :-)
@user_163096 жыл бұрын
I"m right there with you. I'm 50 in a couple weeks. Been trying to learn off and on for 30 years. Going to give this a listen. Don't give up!
@psacentralcoast69706 жыл бұрын
Dustin Wright good on you legend. Thanks for the the confidence brother.
@hasbaraalways44105 жыл бұрын
After watching this as a new programer i've realized i made myself way to scared of the word algorithm. In my head an algorithm is some super complex math equation like google search engine. Now i realize it doesn't have to be so complex! Awesome Lecture👍
@constantfear5 жыл бұрын
Less is more.the simpler the better.
@MrNuudleS5 жыл бұрын
Yes I totally feel the same way!!
@Mayank-mf7xr3 жыл бұрын
Algorithm is just a sequence of processes you would use to solve a problem. Simple as that.
@GordieGii3 жыл бұрын
Absolutely. An algorithm is something like: Add the two smallest digits. Carry. Add the next two (or three) digits. Carry. Repeat until there are no more digits. The first time you hear it as a child it seems like super complex math, but you learn the steps so you don't even have to think about it anymore. Then when you start programming you have to remember that there are steps so you can teach the mind-numbingly stupid computer.
@questioneverything46333 жыл бұрын
It's just a pretentious word for a list of instructions. Nothing to be afraid if.
@yoonseok12234 жыл бұрын
I came here cause after having 4 years university degree in SE, I still suck at coding to this day, I still couldn't believe when he said that C++ isn't a language to be taught first to beginers, because it was the first language we were taught in class in our first semester, and from that onwards I built up the fear of ever learning programming.
@SemiMono3 жыл бұрын
Yeah, C++ is best in class at nothing except being confusing. I'd say if you want to get a light abstraction from assembly, use C (NOT C++), and if you really want to understand software, use something more akin to python or java. I think his statement about language not mattering is true until you hit C++, which always demands more attention than the actual problem being solved.
@Little_Spooky273 жыл бұрын
A little late but almost same here. I just graduated with a 4 year CS degree and still suck at coding. I relate to the fear part, got taught Java freshman year which I barely got ahold of then I’m thrown into theory, DS&A, ML, and Web Apps classes which hit me with a lot of self doubt and almost giving up. I’m just now realizing that I’ve been learning code wrong this whole time!
@SemiMono3 жыл бұрын
@@Little_Spooky27 Yes, university is not a good place to learn to code. I learned to code before I went to university, then it was comparably easy. Many of my classmates still couldn't code (not really) even after they graduated (and they REALLY struggled to get the degree).
@huihui6663 жыл бұрын
first year, we started with C, then second year, we did C++
@christophershelton63014 жыл бұрын
OMG Andy Harris, Thank You! I'm a reasonably smart guy (former licensed architect and all) but I took HTML and Javascript classes at community college and felt so humiliated and discourage because they started on the first day with actual languages and details of syntax without explaining the basic concepts AT ALL. I was instantly overwhelmed with too much to memorize and barely passed the classes. I thought I "hated coding" which made me sad because it seemed conceptually interesting and powerful. I thought I'd never participate in this realm because I just couldn't do it. Your video changed all that. Your remarks about writing algorithms in plain english is brilliant, as are so many of your lessons in this video. I'm literally crying to realize that I'm not a stupid idiot after all (and I'm angry that the other teachers did such a crappy job!)
@brucebaker8103 жыл бұрын
Not a coder, but I feel ya. Wouldn't it be great to have Square One specialists (with the passion mod) to choose from for lots of things? What would THAT world be like?
@JeffReeves3 жыл бұрын
Most academia has horrible teachers. If you ever want to learn HTML and JavaScript again in an easy way, I'd highly recommend Jon Duckett's "HTML & CSS" and "JavaScript & JQuery" books. He's a designer that got into coding and thought, "why isn't there a simple to read and understand book to teach people visually?" These two books were indispensable for me when I got started back in many years ago.
@burner9183 жыл бұрын
@@JeffReeves 👍So true. Beginner programmer here and I have both of those books. They're so appealing to read that I have those lying around on the couch and when watching TV, I'll skip to random pages during commercial breaks just because. I've never come a programming book that looks anything like these two. Didn't know that Jon Duckett was a designer -- just had an "Aaaahh, now I see why" moment.
@JeffReeves3 жыл бұрын
@@burner918 That's awesome! Glad you enjoy them. Getting into tech is hard because most of the learning materials are so dry and written by people who know tech but not how to communicate to other humans lol.
@JM-jk9vz3 жыл бұрын
I had this same problem 6 years ago when I was a freshman in college. The lecturer dove right into it and I had no clue what I was doing. I still have my exam papers and the code I wrote was absolutely horrendous. I dropped out after 2 years. I didn’t give up though, I taught myself, I paid for courses on Udemy, watched KZbin videos, read articles online, downloaded programming books wherever I could find them. I made more progress learning to code this way in 2 months than the college did for me in 2 years. I know about 7 languages now and I still write code as a hobby. I even published 2 games and made my own website from scratch. I realized that programming is hard and it’s intimidating but with a great lecturer and persistence it gets easier. This video is the link I was missing that I didn’t know I was missing.
@dianathomas2674 Жыл бұрын
"Concepts first and coding second." I've been looking for this so hard. Thank you! 💟
@mktwatcher5 жыл бұрын
This is really good, especially since I'm a beginner programmer who has been telling myself I'm not smart enough to write software. Crazy funny talk but Andy makes you understand that programming is first about understanding the problem and being able to think it through first. The programming only requires a little bit of syntax and rules.
@trulyka55342 жыл бұрын
Yeah give us an updateee
@premanand78032 жыл бұрын
How are you doing now in programming??
@aaronvansichem4 жыл бұрын
This lecture probably legitimately changed my future and how I view going into coding. THANK YOU!
@GraphicGamingHQ3 жыл бұрын
Did it?
@farooqazam7123 жыл бұрын
Bright future?
@aaronvansichem3 жыл бұрын
yeah it did, currently studying game development and trying to program my own game. Hopefully i've got bright future ahead :)
@AnkitFreefire696 ай бұрын
How you doin man
@aaronvansichem6 ай бұрын
@@AnkitFreefire69 3rd year of coding, got the hang of it now (with ofcourse a lot of room for improvement still left) but will be honest that im not enjoying it as much as I used to and sometimes not at all anymore. Hopefully it’s just a phase. Dont know if this is an individual thing or a common thing but i figured i’d share anyway. I will say the main reason is not the coding itself but my university and the way they so densly pack everything together which make it easy to burn out.
@annetteiglesias23723 жыл бұрын
Great lecture! This helped me push through a bout of imposter syndrome last night. If I could like this video 1000 times more, I would.
@katkodes60552 жыл бұрын
I was having trouble with syntax and getting very frustrated. Then the Odin project led me to this video. This is exactly what beginners need to hear I think! Everything feels much easier after implementing these tips. Thank you Andy Harris!!
@owannn2 жыл бұрын
i m here from the odin project too?? where are you currently on your journey?
@tiffanyhuynh18902 жыл бұрын
Hi from another person doing the Odin Project!
@katkodes60552 жыл бұрын
@@tiffanyhuynh1890 hello! Hope your studies are going well. I'm about halfway down the JavaScript path
@g-whittington Жыл бұрын
I'm glad to have made it to this point
@skytale354 жыл бұрын
"Coding is how you explain your comments to the computer", see, that right there should not be overlooked. Also glad to know i'm not the only one who got hung up on "self".
@DragonWarriorCodes5 жыл бұрын
I needed this video 5 years ago .. still happy watching this after 5 years of learning programming .. still and will always keep learning.
@bjr8166 жыл бұрын
Damn this man is an excellent speaker/instructor, I wish I had him as a professor. I wanna attend panels and speeches like this in NYC
@meltedcheese19086 жыл бұрын
I really like the idea of writing down an algorithim before actually writing the code.
@NimhLabs6 жыл бұрын
I mostly do not like it--as I find out that my idea for an algorithm is flawed... and that the really good algorithms make no sense when you explain them. Quick Sort counts as one of those algorithms that exist in a, "wait... what are you attempting to do?"... also BSP trees to display visual content SHOULD exist as a "that sounds nice, but it doesn't work as an algorithm"... but somehow, that does work when programmed.
@spacenodus79596 жыл бұрын
@@NimhLabs what's BSP
@johndoeski8425 жыл бұрын
It's spelled "algorithm" not "algorithmim".
@NimhLabs5 жыл бұрын
@@spacenodus7959 Exactly my point! Oh right... after Ray Tracing stopped being how 3D stuff was rendered in the early 90s (well, started to stop, it was still in use until the early 00s), one of the methods that was propped up in its stead was using BSP trees for the purpose of rendering 3D content onto a screen. This was before hardware graphical acceleration started including their own FPU and rebranded it as a GPU. Yes... I know there are differences between how FPU and GPU handle code... there are differences between how ARM and 6802 handle code... yet both of those are CPUs.
@nicklomas27435 жыл бұрын
@@johndoeski842 the cheese spelled it "algorithim" not "algorithmim"
@mydevnote4 күн бұрын
I'm so grateful for this video. Came all the way from The Odin Project. I learned a lot in just the first 20 minutes which I should have learned a long while ago when I started out programming. My favorite line from this video so far is "comment is not there to explain the code to the programmer, code is there to explain the comment to the computer". This alone changes a lot in how I should approach programming henceforth. Plus the presenter is very much interactive making it even more fun to watch/listen.
@aaronshaw10068 ай бұрын
Got sent here from the Odin Project! It's so refreshing to know that the standards I assume in my head are not the truth of what learning code actually is. Fantastic video!
@drinkingpoolwater6 жыл бұрын
this is definitely one of those videos you end up watching the whole way thru without even realizing it.
@Lars-ce4rd4 жыл бұрын
Yup. First i was like, '1 hr?! It's too late in the evening for watching this', but suddenly I was 40 mins in and I really wanted to see it through. I am not even a newbie, I have 2yrs of professional experience and more time self-taught, but i love talks like this! When you feel like you're in a really complicated place in the software development world, it really helps just taking a few steps back and reminding yourself of that basic knowledge. You can only tackle one problem at a time and each problem will take the required amount of time to solve. In the corporate world it is easy to get confused about that. Each problem feels like an obstacle because you always stress about the time usage, but the reality is that the problems will require time usage no matter how much you are stressing it. Remember to relax, then solving the problems will not feel like an obstacle and less time will be spent stressing, more time will be spent enjoying to solve problems!
@gonderage3 жыл бұрын
bro i set my tablet to play long videos (between 50 to 59 minutes), and i woke up hearing this man, and i'm like "let's skip sleep"
@andressuarez30795 жыл бұрын
I was stuck with basics and this might be the lever that un-stucks me. Thank you, this video was so great.
@lifeofadeel4 жыл бұрын
Phenomenal teacher. Finding someone who can explain things so well is unique. Most programmers I've come across use big, jargon-filled words.
@Marioinsydney2 жыл бұрын
Totally agree, because teaching requires empathy and understanding of what it's like to be someone several levels of learning below the teacher. Most people who teach things teach it as if the student is on the same level as them.
@professorkaos622 жыл бұрын
I came here from The Odin Project and originally thought "holy crap an hour long video" but after watching it, very entertaining, time flew by, great information. Awesome presentation
@g-whittington Жыл бұрын
I'm glad to have made it to this point
@AnkitFreefire696 ай бұрын
How you doing man
@Reaganlu4 жыл бұрын
I'm CS senior student one semester away from graduating and I end up to this video because nobody thought us to think this way in college. Without knowing those things, we struggling after all this years. Thank you for the video!
@sallybugs16955 жыл бұрын
If you were my teacher i would never skip classes. Thank you and excellent work.
@celadon20485 жыл бұрын
I've had him for two courses and he helped me on a side project. Great prof.
@gonderage3 жыл бұрын
id attend his classes, but if it's at 7 in the morning, i'll just hope thre are recordings
@Sercil006 жыл бұрын
"Good programmers are not often good teachers" That would explain my current teachers. They are talking, talking, talking, talking. Sometimes they throw in a keyword straight from their code, and they always mispronounce those words (they're not native English speakers so have fun guessing what they just said). They always talk about 3 topics simultaneously and switch around between them. Well, they got hundreds of slides. Except they usually have 2-3 different pdfs open, they jump from the end to the start to the middle. They often mention the most crucial things in one sentence, which they inject so seemlessly into their 3-hour info-dump so that out of a room of 30 students, a total of 3 catch it. And those 3 only caught it because they spent 2 hours yesterday figuring it out for themselves. I'm glad to hear I'm not the only one who has the problems he mentioned. I was beginning to think I'm either stupid, or just extremely unlucky with my professors.
@MaiconMatos086 жыл бұрын
Im Trying Learn How To Code With This Video
@djkly16 жыл бұрын
Bruh all my programming courses in college are Hybrid. Meaning I go to class just to be told about the assignments I have to hand in, while I have to teach myself on my own with all the books & video links from KZbin that they give us. It’s like im paying just to get links to specific YT vids & 3 college credits, yet I have to teach myself & then get hard tests & practicals based on nothing the professor actually taught.
@theralhaljordan73376 жыл бұрын
I've seen some good programming teachers online, but yet to have a com sci prof I actually like listening to. Most of my learning is self taught, and I try to stay ahead of my classes so hopefully the lectures are re-learning stuff I research and then hopefully unlearning what I misunderstood
@SKuLLxKruSHeR6 жыл бұрын
The effect of privatization of education
@voxorox6 жыл бұрын
I've been trying to teach my coworker how to code, and I go out of my way to NOT just give him the coded answers. I try to describe the task, walk through the steps in relatively plain English, and force him to think of it that way. And only then will I sometimes assume the role of "Google" and tell him the specific code for specific steps. Currently trying to get him to understand the power of arrays, and get him to use them effectively. That's not easy to put in plain English.
@chatttownsaint6 жыл бұрын
As a beginner, thanks for posting this. It gave me some insight.
@TheGreatishere3 жыл бұрын
Hey how has your journey been?
@FigueMonkАй бұрын
My godness... This video gave me a new and life-changing outlook on coding... It's not about programming, it's just about solving problems. That's it. Explain the comments to the computer through the code, that's the biggest insight from this video.
@ZenataUSA4 жыл бұрын
7:27 My university's introductory programming course was entirely in C++. I tried pretty hard and ended up with a B even though my code was pretty terrible. It definitely turned off quite a few would-be developers. I remember spending so much more time on that homework than any other class I ever took.
@tiutech39942 жыл бұрын
I just finished an assignment using Arduino which i believe is in C++. I really feel this comment, i spent 2 weeks day n night working on it....i cant believe how many people failed, its pretty bonkerz. If anything though, if feel more motivated to get better. I simply i hate sucking at things i like
@omahacheeks7646 жыл бұрын
I'll be 46 in a couple of weeks and am reinventing myself, again, to stay relevant so I can keep making $$. Never stop learning!
@dietfitnessweightlosstips28306 жыл бұрын
I like the strategy!!
@BobBeatski716 жыл бұрын
I'll be 48 this year. The more I learn the more I realise just how much I don't know!
@jon_135 жыл бұрын
Amen!
@billybobgeo5 жыл бұрын
You go! -- i'm at 51 and have spent the last 30 years continually learning and reinventing myself - it works! - also doesn't hurt that my mum was a teacher... just you putting this out there is inspiring
@Synth20005 жыл бұрын
same ship and age here Becky, good luck!
@AMoore-qx6vv5 жыл бұрын
When he said "public static void main(String[] args){}, I felt that.
@Hasnain1F5 жыл бұрын
public is an access modifier. static keyword is used to make sure something has only one instance running in the memory, void is a return type, main is the name of the function and String[] args are the arguments passed by a user in command line that you can make use of in your code. D: I can finally understand it!!!!
@Canleaf085 жыл бұрын
@@Hasnain1F The String array args in the brackets are passed arguments which can be passed to the programme and even read out by indices. It behaves like an Array, but you could also take the args to create special programme modes. But that's java's main function. Fundamentally important to run java code in class.
@Hasnain1F5 жыл бұрын
@@Canleaf08 Thanks. Yes, I knew that.
@Saboor-Hamedi5 жыл бұрын
S.A. Moore shortcut on netbeans ctrl + space; lol
@gdolphy5 жыл бұрын
So, I think I comprehend your code. I'll submit for a code review. PR below: We publicly try to show we are different but are fundamentally static creatures where many of our supposed contributions are void. Our main function results in a string of arguments sometimes contained in small groups. When those groups get large enough we block them into coutries throw flags when racy conditions encountered.
@gamestv48756 жыл бұрын
It's almost like I am sitting in Church.
@NimhLabs6 жыл бұрын
PRAISED BE THE HOLY FUNCTIONAL LANGUAGE! Repend your evil sinful Object Orientated Programming! OOP Programming is the subject of the EVIL EMACS users! But we can CONVERT them to the glorious VIM congregation! Now, we kneel and bow down our heads as the makefile runs the compilation statements. If people ask if we are taking a nap, we lie about it. CAN I GET AN AMEN!
@ex0stasis726 жыл бұрын
That's actually what I was thinking as well. He sounds like a youth pastor.
@RandyDrayton5 жыл бұрын
Weird because he sounds like a deacon that was at my church when I was younger
@taliaa78565 жыл бұрын
Cause he was definitely preaching!
@albertdugba5 жыл бұрын
Yeah me too
@tamar70653 жыл бұрын
Over the years, I've had multiple false starts with multiple languages trying to teach myself to code. I think this helped me pinpoint where the real issue is for me, and the exercise midway through was very enlightening. Thanks so much!
@alifeofagod56224 ай бұрын
Coming from The Odin Project I thought to myself, why watch an hour long video? but then again I remembered how far I've come reading all those long articles, this means I am now getting to the more and nitty and gritty stuff and I will watch till the end because I don't want to give up along the way when I get stuck and remember that I never finished watching this video... To everyone on this journey with me. Lets keep pushing, we are almost there!
@voxorox6 жыл бұрын
49:39 Any time I build a loop of any kind, I'm reminded of the line from Star Wars: "When you came in here, didn't you have a plan for getting out?!?"
@voxorox6 жыл бұрын
In practice: Build the entrance. Build the exit. Build the exit condition. Now build the rest of it.
@philippg60236 жыл бұрын
Never forget the exit in rekursion😥😆
@owenwexler72144 жыл бұрын
Philipp Grunwald or while/do-while loops for that matter #InfiniteLoop #CRAAAASH
@beawakened72986 жыл бұрын
No wonder he taught so well and we understood so well.... . . . . Because he was a special ed teacher.... We are special ed students of programming....
@donaldderrick15955 жыл бұрын
loooooooool REAL ASS SHIT
@ism90175 жыл бұрын
dragon story lol!
@Andrea-lf3jq4 жыл бұрын
hahahha laughed so hard
@chennn9584 жыл бұрын
arent we all?
@daffy19814 жыл бұрын
$ ed I need lecture now how to think like a regular person (adopted for programers)... ? write ? quit ? ^C ?
@clearwavepro1006 жыл бұрын
After a few seconds, I knew I would appreciate the talk. Thanks for sharing this!
@dragonore20094 жыл бұрын
I first started learning programming when I was in the Army, on my off time. I knew eventually I would get out of the Army and into the private sector. I failed allot in learning programming on my own, allot. I thought to myself, maybe this isn't for me, it is too hard, I can't do it. The only reason I continued on, was because I was pot committed, I put too much time into it and now I'm a software developr for a fortune 500 company. I say all that to say this, you might think you are too dumb or whatever, you proably are not, you just have to keep practicing.
@worldshaper17233 жыл бұрын
Thank you!!!
@alexschexnayder86242 жыл бұрын
Or according to the lecturer, not dumb enough
@N0M4D_222 жыл бұрын
Damn brother I needed to hear that former grunt here looking to branch out into this world
@josephthecreator2 жыл бұрын
@@N0M4D_22 former grunt (USMC) here too. We got this bro.
@N0M4D_222 жыл бұрын
@@josephthecreator damn straight brother Appreciate the support devil dog!
@TimmyBarr4 жыл бұрын
I've worked in IT for a decade doing networks support and implementation and I have always secretly been fascinated by software development and I have a list of apps that I'd like to develop so I'm going to start learning software development. I just hope that I'm as good at it and I like it as much as my other IT skills.
@lonestarvoid Жыл бұрын
How is it going
@millertime65 жыл бұрын
I loved the idea of starting to learn code *before* opening your computer! I had a tough time with tutorials that run through syntax and expect you to memorize where it goes rather than why it goes there. I’m one if those people that needs to know why!
@breakout33485 жыл бұрын
after 4 years of trying to understand why, once it clicked, everything is coming much easier.
@Raptor36145 жыл бұрын
Syntax allows the compiler to know what you’re doing. For example (this is Java btw) if you do: int x; -> this tells the compiler that you just declared a date type of “int” with a variable name “x.” Now if you do this: x = 10; -> this tells the compiler you just initialized the variable “x” to equal the value of 10. Now if you do this: System.out.println(x); -> This tells the compiler you want to print the variable “x,” which prints 10. P.S the “;” is used after each statement because it allows the compiler to know when to move onto the next line of code. Hopes this helps why syntax is extremely important to memorize.
@annagizziatlas623 жыл бұрын
As a former art teacher, currently trying to teach myself Python, this video hits so hard. I'm a month in and was starting to feel like a huge idiot. This was extremely encouraging! Thank you for validating my frustrations and encouraging my curiosity.
@dovacody35123 жыл бұрын
I’m a junior in college studying software engineering. Don’t give up, it’s constantly learning and rolling with the punches. You got it dude
@geethareddy1000 Жыл бұрын
@@dovacody35123
@affansiddhiqui37393 жыл бұрын
He's been coding for 30 years and he says "here's what i'm learning" now that's what we call humility
@mydevnote4 күн бұрын
Andy Harris' students are so lucky, I can't even emphasize how much. I watched the video to the end, enjoyed it, and learned a lot.
@jbusom Жыл бұрын
This has been the most fun and "eureka moment" video from The Odin Project. The hour flew by like its nothing, thank you so much Andy.
@darconp9 ай бұрын
Here from The Odin Project. This is great content. Thank you Mr. Harris.
@VidhathShetty Жыл бұрын
For the thousandth time as it's been yelled out Thank you for clarifying the basics and i wish I found you sooner
@ScaerieTale3 жыл бұрын
As I write this, I'm still new to Python (about 3 weeks), only just wrote my first program without any guidance, and I have to say, I agree with everything you said. I even encountered the string input problem on my own, and had to google how to convert. And then I was like "There's got to be a faster way..." And I googled that. And my God Python is a beautiful language :)
@ScaerieTale Жыл бұрын
Rewatching this a year and a half later, I'm DYING because I'm learning Japanese right now, and all the Spanish is coming out! :D
@foureyes91dn2 жыл бұрын
I am very new to programming, currently I am working through Harvard CS50 and I'm banging my head against a wall trying to learn C in the first few weeks. So I thought I'd watch this instead of overloading myself with C tutorial after C tutorial. 20 mins in and my mind has been blown "Code explains the comments to the computer". I have written this down and have it stuck on the side of my screen. Amazing, thanks.
@redfinance3403 Жыл бұрын
This video helped me immensely. I have come back after 2 years seeing this for the first time to say thank you. I don't think I would have made as much progress as I did had I not known of this mindset! This should be shown in every programming class (particularly in the beginning). Watching this video could have been one of the best decisions I made in learning to program, although the effect may not have been immediate.
@debra-kayeelliott36462 жыл бұрын
Someone just shared this talk with me, and I'm cracking up with how funny 😂, but *so* relatable this information is as a self-teaching beginner front end dev. I'll definitely be re-watching this. Thank you!
@rgpandrade5 жыл бұрын
Hi Andy; thank you so much for this talk. When you got to the Bad Advice section I laughed so hard I cried. I had received all of that advice and actually started my learning process in C++. I wish some pf my teachers actually broke things down the way you did. I feel my experience would have been much better. Thank you again.
@SteveGouldinSpain6 жыл бұрын
Programming is loops and conditions. Everything else is politics.
@18899906 жыл бұрын
Programming is recursion and conditions. Everything else is imperative
@philippg60236 жыл бұрын
@@1889990 and some pointiers...
@NimhLabs6 жыл бұрын
Programming is about waving your hands to influence air currents in a similar way to butterflies flapping their wings, to influence the electrons in storage units. Everything else is fluff.
@18899906 жыл бұрын
@@NimhLabs xkcd comic ;)
@mikul31226 жыл бұрын
Isn't life just one big while(!dead)
@oceeta4 ай бұрын
I have already watched this video before, but I got redirected here from The Odin Project, which I've been doing recently. I didn't know this video was linked in their curriculum, so this is very nice to see. Might be time for a rewatch, because this video is an absolute gem! To other learners out there, I wish you all the best in all your pursuits.
@0GULSHAN3 жыл бұрын
Man o maaann... I've six years of experience in programming and I still feel like an idiot but somehow the people I train or trained in the past think like I know everything... and yet I am looking at this video and learning a number of new things or the things that was lost somewhere in my mind. Thank you, Andy Harris for this wonderful lecture.
@DemolaOkesola3 жыл бұрын
I have been writing code for years. This is the best explanation of programming I have ever heard. AND I learnt a lot from this! This is TIMELESS
@leonardsalt6 жыл бұрын
Him: "Did you tell it what to do incorrectly or did you tell it to do the wrong thing?" Me, an intellectual: "Yes."
@larva56065 жыл бұрын
Leonardo Segura 🤣💀👏🏼👏🏼👏🏼👌🏼
@henriherrera97444 жыл бұрын
That's deep sht bro.
@michellemercy27153 жыл бұрын
This hurts me 😹
@idontwhy31323 жыл бұрын
when I started learning to write code I watched this for guidance. Right now I'm watching it for the comedy
@playtheshorts3 ай бұрын
Started The odin project 6 months ago, but due to some major circumstances I paused, and today I am resuming where I left. I feel very good after seeing the discussions of the odin project folks in these comment sections.
@igboman28603 жыл бұрын
How I wish many programmers will be as humble as this speaker. It is really interesting how you see young devs think they are Rockstars but this veteran keeps reminding himself that programming is a lifelong process in learning
@ekukoski85083 жыл бұрын
Thank you for this! I’m learning JavaScript on my own right now and this makes me wish i were in school so i could have a teacher like you. Loved your humor and charisma. Very useful and encouraging stuff! This is just the kind of lecture i needed.
@jt6596 жыл бұрын
This guy could get a potato interested in programming...then program said potato.
@Ryutsashi5 жыл бұрын
Probably the other way around. You have to declare the potato first before interacting with it.
@keinunvergebenesaliasgefunden5 жыл бұрын
The potato is, so it interacts
@sjoerdvelzen82555 жыл бұрын
Error: 'Potato' is not defined.
@tayaraaktube5 жыл бұрын
recursion
@Menelik.videos5 жыл бұрын
I'm that potato hahaha
@Calypso6944 жыл бұрын
“What’s smarter, a shoe or a gaming computer? It’s a tie.” Probably the most motivating, light bulb clicking thing I’ve heard in my (so far as of writing this) 3rd day in my coding, over anxiety, stress inducing journey.
@ZlothZloth4 жыл бұрын
It's completely wrong, though. In the 4 months since you posted that, have you tried to wear either a shoe or a computer around your neck? The shoe can kinda work if the laces are long enough but really, neither of them make a good tie.
@Calypso6944 жыл бұрын
ZlothZloth I’ve learned so far that it’s up to The User. How smart the computer is up to me. As for the shoe? I live in Florida so flip flops all day baby!
@Oncopoda3 жыл бұрын
@@Calypso694 how's your coding journey 1 year in?
@Calypso6943 жыл бұрын
@@Oncopoda I’ve built a small dungeon crawler, downloaded and tried out some game engines, still learning. I’m learning C++ for GameDev. I also found out that when I talk it out loud to someone I understand it more. Those success stories of people starting coding and in 6 months they have a job? They aren’t learning C++ lol
@Oncopoda3 жыл бұрын
@@Calypso694 lmao shit even I know that.
@victoryfactionАй бұрын
I've wanted something like Barbara Oakley's A Mind For Numbers but for programming and this is damn near it. Thank you.
@wahtdafukkkkk11822 жыл бұрын
In my second semester of computer science and currently learning Java after c. This was the video I’ve needed all along.
@wintur28562 жыл бұрын
This upcoming semester I'm learning C. Then Java next semester. 😟
@ralexander94954 жыл бұрын
"how consistent is the syntax? Painfully!" biggest smile I have had in at least 24 hours. Thanks!
@ther69893 жыл бұрын
I've been programming using Julia, and it's by far my favorite language. I've used C, C++, C#, Python3, Java, Dart, Solidity, Crystal, Rust, R, D, and more. Julia is my new best friend. I'm currently involved in a project to create a wrapper for blockchain. It might not be the most suitable for blockchain just yet, but I see great potential in the future once the Julia cryptography libraries grow.
@310McQueen3 жыл бұрын
The best programming textbook I ever had was "Getting Started With TRS-80 Model III BASIC." I think the first program, or one of the first, was something like the "hello user" program described. The book used short stories to teach people to solve simple but relatable problems using the computer's programming language.
@nyambubeauty2130 Жыл бұрын
Thanks I'll check it out
@RahmetAli-ki7vlАй бұрын
I wish I saw this video 5 years ago when I started my CS degree in college, but I'm glad I could find it now.
@emanuelvallejo92602 жыл бұрын
Thanks!
@BEEFSTEW08303 жыл бұрын
54:05 How did you not get a single laugh from that? That was hilarious. "An 'elif' is like a 'dwarif', but is taller and has ears"
@TalsonHacks3 жыл бұрын
It took me some time to get it lol
@thePadlockesTech4 жыл бұрын
This was epic and hilarious. It also made me think of how to write algorithms. I have always tried to code first and put comments as notes, but never thought of using the comments as algorithms. I solved a problem I was having for a long time really quickly just by writing it out first. Thanks!
@Troncoso016 жыл бұрын
I really thought the first 2 seconds were an intro to a rap
@romanruano13696 жыл бұрын
Was it: Lazy Town - Cooking by the Book ft Lil Jon
@robynpalmerwilliams73166 жыл бұрын
How?!
@ramirezvilla6 жыл бұрын
kinda sounds like the lead to the fresh prince of Bel-air lol
@kristen51496 жыл бұрын
HAHAHAHAHAH
@ashruth71835 жыл бұрын
Hahahaha
@GoodlyRogue Жыл бұрын
Watched it all the way. Thank you so much Mr. Harris!
@gateCodeKC Жыл бұрын
Thank you for this thoughtful & wonderful video! I'm in 2 weeks of learning how to code and, though I'm a persistent person, almost everyday I'm having imposter syndrome. I will try to always come back to this everytime I will feel that. Thank you!
@wenchfmedia Жыл бұрын
Fantastic! Just unlearn - and then relearn in certain ways
@aldergate-ca3 жыл бұрын
I thank this is the first time that I made notes and screen shots... ever. Thanks Andy. Im learning C because I golf with tour blade irons(feed back), and Python because I loved Monty Python's Flying Circus and because it's so powerful.
@cilibekd3 жыл бұрын
Amazing. Funny and Entertaining. I feel vindicated for some of my past experiences by watching this presentation. Also Andy sounds like Will Farrell when he gets animated, so that also added to my enjoyment. Thanks for posting! :)
@Lickiecat4 жыл бұрын
I absolutely love this guy. I hope there are more lectures to find by him
@clairelolita6612 Жыл бұрын
I'm pretty lost on learning/understanding to code on my own right now, I feel like getting nothing from going to college (Computer science major) and need to study/revise after I get back home all the time until it's time for sleep throughout the year with little effectives on learning. for me it's been rough and I notice that I've been learning it wrong this video showed up just in time when I felt like giving up You'll never know how much I needed this, this gives back my light of hope :,)
@PaperRaines3 жыл бұрын
This was literally the best video I've ever watched on anything. Thank you for your service
@citizengoose13425 жыл бұрын
I thought it was one of those clickbait videos, until I saw it was an hour long
@vikaspal27994 жыл бұрын
" You hated math Class, I am sure you never Met Maths" GOLDEN WORDS
@alexcarl9868 Жыл бұрын
#TheOdinProject Keep up the great work, it's going to get hard but do not give up!
@random-xl3zm Жыл бұрын
My personal learning 1. There r 8 common things in every coding lang 2. Coding isnt about writting code its about algo nd data science how to make a good algo on paper that solve the prob is the main work 3.try to understand the prob first 4. If u get stuck and lost while coding u shouldnt be coding actually u sud be planning instead about algorithm
@demiansims7284 жыл бұрын
This is should be a ‘must listen’ for every programmer. The best lecture ever.