How To Think Like A Programmer

Sdílet
Vložit
  • čas přidán 1. 06. 2024
  • Learning to program is hard because programming feels different than other skills. But programming isn't about the languages - it is about the way one should think.
    SPEAKER:
    Andy Harris
    ****
    INTERESTED IN THE STOCK MARKET?
    I developed a profitable trading model that generates high probability BUY & SELL signals on S&P500. To learn about it, visit yuriymatso.com/sp500-model/

Komentáře • 2,2K

  • @AndyHarrisProgramming
    @AndyHarrisProgramming Před 5 lety +9563

    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.

    • @luciadippolito8559
      @luciadippolito8559 Před 5 lety +192

      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.

    • @MrsCyImsofly
      @MrsCyImsofly Před 5 lety +93

      Dude you are hilarious and so relatable. As a solutions analyst everything you said helps explain the basics of solution planning 👩🏽‍🏫👍🏼

    • @Cognitoman
      @Cognitoman Před 5 lety +91

      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.

    • @doot2359
      @doot2359 Před 5 lety +11

      You are a legend ! 💪💪

    • @ElectronWranglerTV
      @ElectronWranglerTV Před 5 lety +21

      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).

  • @rafihasan7787
    @rafihasan7787 Před 6 měsíci +17

    People coming from The Odin Project: Congratulations 🎉 you are going strong, I'm really proud of you!!

  • @f4ephilosophy691
    @f4ephilosophy691 Před 10 měsíci +370

    Starting #TheOdinProject you saw hundreds and hundreds of people cheering each other on in the comment section of CZcams 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
      @nolstarrzz619 Před 10 měsíci +23

      I was looking for this comment, we got this!!

    • @tylermorath9098
      @tylermorath9098 Před 9 měsíci +18

      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
      @bungeroohooo Před 9 měsíci +11

      Let's keep it up!! I'm also here from TOP 🎉

    • @chimpankie1954
      @chimpankie1954 Před 8 měsíci +8

      Also here from TOP!

    • @peacecode7
      @peacecode7 Před 8 měsíci +4

      Here from TOP

  • @bloodypommelstudios7144
    @bloodypommelstudios7144 Před 4 lety +1520

    "You need to learn to be as mind-numbingly stupid as a computer"
    I think I can manage that.

    • @crow1720
      @crow1720 Před 3 lety +44

      The people thanks you for the sacrifice you made for our entertainment.

    • @max_ishere
      @max_ishere Před 3 lety +4

      No you can't.

    • @EvenStarLoveAnanda
      @EvenStarLoveAnanda Před 3 lety +16

      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.

    • @achtsekundenfurz7876
      @achtsekundenfurz7876 Před 3 lety +9

      "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_Obliviousness
      @Sir_Obliviousness Před 3 lety +7

      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.

  • @lefxxwill7740
    @lefxxwill7740 Před 3 lety +533

    "Code is there to explain the comments to the computer" hits different

  • @diskographi
    @diskographi Před 5 lety +3877

    Thank you, Will Ferrell, for teaching me how to think like a programmer.

  • @aymanjd4898
    @aymanjd4898 Před 3 lety +1007

    "The secret isn't code, the secret is algorithms and data" that changed my entire mindset, thank you sir.

    • @maxmaxwell4211
      @maxmaxwell4211 Před 3 lety +13

      So should I focus on understanding and learning algorithms and data structures?

    • @aymanjd4898
      @aymanjd4898 Před 3 lety +41

      @@maxmaxwell4211 Yes that's the basic thing u should learn first.

    • @imalwaysright1408
      @imalwaysright1408 Před 2 lety +9

      @@ccriztoff “real programmer” like what? Is the measuring stick your opinion of real and fake??

    • @imalwaysright1408
      @imalwaysright1408 Před 2 lety +3

      @@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 🤷‍♂️

    • @ishmel11
      @ishmel11 Před 2 lety +5

      @@ccriztoff oof if you couldnt understand Chand i think you're the one who needs to learn english lmfao

  • @yukiyuka731
    @yukiyuka731 Před 3 lety +1489

    Me before coding: perfect grammar
    Me after coding: give me that thing in the fridge is not Apple

    • @sabrinahussaini2756
      @sabrinahussaini2756 Před 3 lety +23

      LOL best comment

    • @magnusm4
      @magnusm4 Před 3 lety +137

      Bed is if not cold then true else false if true sleep.

    • @Scholz23
      @Scholz23 Před 3 lety +49

      Apple = false

    • @pyra1488
      @pyra1488 Před 3 lety +41

      And you gotta check everything one by one to decide if it is an apple or not with a for loop

    • @AyalMorann
      @AyalMorann Před 3 lety +30

      @@pyra1488 cant u sort the fridge first to lower the time complexity?

  • @lancejensen9750
    @lancejensen9750 Před 5 měsíci +6

    If you're here from the Odin Project, congrats on getting here! We're almost there! Keep pushing!

  • @aerospaceengenieeringknowl3204
    @aerospaceengenieeringknowl3204 Před 8 měsíci +15

    - 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.

  • @soriano1996
    @soriano1996 Před 2 lety +147

    "I want them to fail, but I want them to be able to overcome that failure." Very well said, sir. Great presentation 👏🏽

  • @abstractapproach634
    @abstractapproach634 Před 4 lety +286

    11:28 underrated statement, "first of all you hated math class, I'm not sure you've met math"

    • @aleisterlavey9716
      @aleisterlavey9716 Před 4 lety +5

      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.

    • @slimzztv9963
      @slimzztv9963 Před 3 lety +3

      That shit got real deep

    • @michellemercy2715
      @michellemercy2715 Před 3 lety +5

      I actually watched a full ged math breakdown and it did help me immensely with coding.

    • @AnitaSharma-rz5yk
      @AnitaSharma-rz5yk Před 2 lety

      @@aleisterlavey9716
      See

    • @skyhighflying1525
      @skyhighflying1525 Před 2 lety +3

      @@michellemercy2715 is it possible to send link?

  • @Giraffinator
    @Giraffinator Před 5 lety +1794

    I refuse to believe that the python logo isn't two dudes with jacked-up chins.

  • @Perfidion
    @Perfidion Před 5 lety +1344

    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.

    • @magnusm4
      @magnusm4 Před 3 lety +23

      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.

    • @WhatTheFozz
      @WhatTheFozz Před 3 lety +3

      I’m in this same situation, any advice for me? I’m really in need of it

    •  Před 2 lety +2

      @@WhatTheFozz Break it down to numbers. Hopefully you're already there.

    • @WhatTheFozz
      @WhatTheFozz Před 2 lety +3

      @ thank you, I’ve gotten a grip of it and getter better, thanks again (:

    • @yourkodi3945
      @yourkodi3945 Před 2 lety +5

      Once everyone understands you have to tell the computer(program) (EVERYTHING) it needs to do it will make peoples lives easier. Great video

  • @ephilihp
    @ephilihp Před 3 lety +509

    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.

  • @Irzani938
    @Irzani938 Před 4 lety +125

    Watching for 2nd time.
    Trying to restart my programming journey.

    • @johnsonpham2000
      @johnsonpham2000 Před 4 lety +2

      hope you're doing well and still continuing!

    • @Harrisdrew625
      @Harrisdrew625 Před 3 lety +2

      Just starting my journey again as well 4 years after I quit. Hope you're still going strong!

    • @r4lfxd
      @r4lfxd Před 3 lety

      Kinda the same, weird.

  • @yesweet
    @yesweet Před 5 lety +404

    After 3 years coding, I continually nodded during his talk, kind of flashback for all my experiences.

    • @alibaba8266
      @alibaba8266 Před 5 lety +5

      same here :)

    • @simonolofsson7488
      @simonolofsson7488 Před 5 lety +9

      liang lu absolutely. My favorite part is the ‘comment being the code’ and code being the translation part.

    • @larva5606
      @larva5606 Před 4 lety +5

      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

    • @ica885
      @ica885 Před 4 lety

      Great! :))

    • @eb4416
      @eb4416 Před 2 lety

      @@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.

  • @marzappel8858
    @marzappel8858 Před 5 lety +325

    I love how enthusiastic this speaker is

    • @MrAnonymoose
      @MrAnonymoose Před 5 lety +26

      Mar Mar even to a somewhat dead crowd, he's still lively. Guess that's what it takes to teach a college classroom lmao

    • @Giraffinator
      @Giraffinator Před 5 lety +6

      I honestly wish I've could've -watched- him be enthusiastic, seems like a good time in itself

  • @RichardBronosky
    @RichardBronosky Před 4 lety +63

    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.

  • @Big__Thicc
    @Big__Thicc Před 3 lety +321

    "The real problem is they don't really understand the problem they're trying to solve"
    I can relate to this in so many ways. Every time I try to code something without thinking it through, there is no way I can do it. But when I stop and just think about the problem and I come to the solution, its almost like the code writes itself, it becomes insanely easy once you figured out how to solve the problem.

    • @Sunpath_
      @Sunpath_ Před rokem +5

      A kind of process like this, where the code writes itself, where the rules meld into each other, is beautiful.

  • @gamestv4875
    @gamestv4875 Před 5 lety +539

    It's almost like I am sitting in Church.

    • @NimhLabs
      @NimhLabs Před 5 lety +61

      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!

    • @ex0stasis72
      @ex0stasis72 Před 5 lety +20

      That's actually what I was thinking as well. He sounds like a youth pastor.

    • @RandyDrayton
      @RandyDrayton Před 5 lety +3

      Weird because he sounds like a deacon that was at my church when I was younger

    • @taliaa7856
      @taliaa7856 Před 5 lety +9

      Cause he was definitely preaching!

    • @albertdugba
      @albertdugba Před 4 lety +1

      Yeah me too

  • @Sercil00
    @Sercil00 Před 5 lety +279

    "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.

    • @MaiconMatos08
      @MaiconMatos08 Před 5 lety

      Im Trying Learn How To Code With This Video

    • @djkly1
      @djkly1 Před 5 lety +30

      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 CZcams 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.

    • @theralhaljordan7337
      @theralhaljordan7337 Před 5 lety +4

      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

    • @SKuLLxKruSHeR
      @SKuLLxKruSHeR Před 5 lety +6

      The effect of privatization of education

    • @voxorox
      @voxorox Před 5 lety +1

      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.

  • @skytale35
    @skytale35 Před 4 lety +67

    "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".

  • @AMoore-qx6vv
    @AMoore-qx6vv Před 4 lety +358

    When he said "public static void main(String[] args){}, I felt that.

    • @Hasnain1F
      @Hasnain1F Před 4 lety +55

      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!!!!

    • @Canleaf08
      @Canleaf08 Před 4 lety +10

      ​@@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.

    • @Hasnain1F
      @Hasnain1F Před 4 lety +2

      @@Canleaf08 Thanks. Yes, I knew that.

    • @Saboor-Hamedi
      @Saboor-Hamedi Před 4 lety +1

      S.A. Moore shortcut on netbeans ctrl + space; lol

    • @gdolphy
      @gdolphy Před 4 lety +10

      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.

  • @hasbaraalways4410
    @hasbaraalways4410 Před 5 lety +347

    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👍

    • @constantfear
      @constantfear Před 5 lety +14

      Less is more.the simpler the better.

    • @MrNuudleS
      @MrNuudleS Před 4 lety +3

      Yes I totally feel the same way!!

    • @Mayank-mf7xr
      @Mayank-mf7xr Před 3 lety +15

      Algorithm is just a sequence of processes you would use to solve a problem. Simple as that.

    • @GordieGii
      @GordieGii Před 2 lety +4

      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.

    • @questioneverything4633
      @questioneverything4633 Před 2 lety +19

      It's just a pretentious word for a list of instructions. Nothing to be afraid if.

  • @affansiddhiqui3739
    @affansiddhiqui3739 Před 2 lety +26

    He's been coding for 30 years and he says "here's what i'm learning" now that's what we call humility

  • @yoonseok1223
    @yoonseok1223 Před 3 lety +28

    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.

    • @SemiMono
      @SemiMono Před 2 lety +1

      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_Spooky27
      @Little_Spooky27 Před 2 lety +3

      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!

    • @SemiMono
      @SemiMono Před 2 lety +6

      @@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).

    • @huihui666
      @huihui666 Před 2 lety +2

      first year, we started with C, then second year, we did C++

  • @annetteiglesias2372
    @annetteiglesias2372 Před 2 lety +14

    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.

  • @SteveGouldinSpain
    @SteveGouldinSpain Před 5 lety +1342

    Programming is loops and conditions. Everything else is politics.

    • @1889990
      @1889990 Před 5 lety +148

      Programming is recursion and conditions. Everything else is imperative

    • @philippg6023
      @philippg6023 Před 5 lety +12

      @@1889990 and some pointiers...

    • @NimhLabs
      @NimhLabs Před 5 lety +71

      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.

    • @1889990
      @1889990 Před 5 lety +2

      @@NimhLabs xkcd comic ;)

    • @mikul3122
      @mikul3122 Před 5 lety +118

      Isn't life just one big while(!dead)

  • @beawakened7298
    @beawakened7298 Před 5 lety +614

    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....

    • @donaldderrick1595
      @donaldderrick1595 Před 5 lety +21

      loooooooool REAL ASS SHIT

    • @ism9017
      @ism9017 Před 4 lety +5

      dragon story lol!

    • @Andrea-lf3jq
      @Andrea-lf3jq Před 4 lety +4

      hahahha laughed so hard

    • @chennn958
      @chennn958 Před 3 lety +3

      arent we all?

    • @daffy1981
      @daffy1981 Před 3 lety +1

      $ ed
      I need lecture now how to think like a regular person (adopted for programers)...
      ?
      write
      ?
      quit
      ?
      ^C
      ?

  • @dragonore2009
    @dragonore2009 Před 3 lety +70

    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.

    • @worldshaper1723
      @worldshaper1723 Před 2 lety +4

      Thank you!!!

    • @alexschexnayder8624
      @alexschexnayder8624 Před 2 lety

      Or according to the lecturer, not dumb enough

    • @N0M4D_22
      @N0M4D_22 Před 2 lety +5

      Damn brother I needed to hear that former grunt here looking to branch out into this world

    • @josephthecreator
      @josephthecreator Před 2 lety +4

      @@N0M4D_22 former grunt (USMC) here too. We got this bro.

    • @N0M4D_22
      @N0M4D_22 Před 2 lety +3

      @@josephthecreator damn straight brother Appreciate the support devil dog!

  • @dianathomas2674
    @dianathomas2674 Před rokem +6

    "Concepts first and coding second." I've been looking for this so hard. Thank you! 💟

  • @omahacheeks764
    @omahacheeks764 Před 5 lety +627

    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!

    • @dietfitnessweightlosstips2830
      @dietfitnessweightlosstips2830 Před 5 lety +9

      I like the strategy!!

    • @BobBeatski71
      @BobBeatski71 Před 5 lety +48

      I'll be 48 this year. The more I learn the more I realise just how much I don't know!

    • @jon_13
      @jon_13 Před 5 lety +1

      Amen!

    • @billybobgeo
      @billybobgeo Před 5 lety +19

      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

    • @Synth2000
      @Synth2000 Před 5 lety +2

      same ship and age here Becky, good luck!

  • @drinkingpoolwater
    @drinkingpoolwater Před 5 lety +125

    this is definitely one of those videos you end up watching the whole way thru without even realizing it.

    • @Lars-ce4rd
      @Lars-ce4rd Před 4 lety +8

      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!

    • @gonderage
      @gonderage Před 3 lety +1

      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"

  • @jampamatosful
    @jampamatosful Před 2 lety +14

    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)

  • @christophershelton6301
    @christophershelton6301 Před 3 lety +222

    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!)

    • @brucebaker810
      @brucebaker810 Před 3 lety +7

      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?

    • @JeffReeves
      @JeffReeves Před 3 lety +21

      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.

    • @burner918
      @burner918 Před 2 lety +5

      @@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.

    • @JeffReeves
      @JeffReeves Před 2 lety +10

      @@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-jk9vz
      @JM-jk9vz Před 2 lety +7

      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 CZcams 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.

  • @voxorox
    @voxorox Před 5 lety +146

    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?!?"

    • @voxorox
      @voxorox Před 5 lety +10

      In practice:
      Build the entrance. Build the exit. Build the exit condition. Now build the rest of it.

    • @philippg6023
      @philippg6023 Před 5 lety +2

      Never forget the exit in rekursion😥😆

    • @owenwexler7214
      @owenwexler7214 Před 4 lety +1

      Philipp Grunwald or while/do-while loops for that matter #InfiniteLoop #CRAAAASH

  • @meltedcheese1908
    @meltedcheese1908 Před 5 lety +490

    I really like the idea of writing down an algorithim before actually writing the code.

    • @NimhLabs
      @NimhLabs Před 5 lety +8

      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.

    • @spacenodus7959
      @spacenodus7959 Před 5 lety +2

      @@NimhLabs what's BSP

    • @johndoeski842
      @johndoeski842 Před 5 lety +3

      It's spelled "algorithm" not "algorithmim".

    • @NimhLabs
      @NimhLabs Před 5 lety

      @@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.

    • @nicklomas2743
      @nicklomas2743 Před 5 lety +8

      ​@@johndoeski842 the cheese spelled it "algorithim" not "algorithmim"

  • @professorkaos62
    @professorkaos62 Před rokem +3

    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

  • @darconp
    @darconp Před měsícem +3

    Here from The Odin Project. This is great content. Thank you Mr. Harris.

  • @leonardsalt
    @leonardsalt Před 5 lety +322

    Him: "Did you tell it what to do incorrectly or did you tell it to do the wrong thing?"
    Me, an intellectual: "Yes."

  • @sallybugs1695
    @sallybugs1695 Před 5 lety +75

    If you were my teacher i would never skip classes. Thank you and excellent work.

    • @celadon2048
      @celadon2048 Před 5 lety +3

      I've had him for two courses and he helped me on a side project. Great prof.

    • @gonderage
      @gonderage Před 3 lety

      id attend his classes, but if it's at 7 in the morning, i'll just hope thre are recordings

  • @idontwhy3132
    @idontwhy3132 Před 3 lety +13

    when I started learning to write code I watched this for guidance. Right now I'm watching it for the comedy

  • @aaronvansichem
    @aaronvansichem Před 3 lety +22

    This lecture probably legitimately changed my future and how I view going into coding. THANK YOU!

    • @GraphicGamingHQ
      @GraphicGamingHQ Před 2 lety +1

      Did it?

    • @farooqazam712
      @farooqazam712 Před 2 lety

      Bright future?

    • @aaronvansichem
      @aaronvansichem Před 2 lety +5

      yeah it did, currently studying game development and trying to program my own game. Hopefully i've got bright future ahead :)

  • @jt659
    @jt659 Před 5 lety +299

    This guy could get a potato interested in programming...then program said potato.

  • @bjr816
    @bjr816 Před 5 lety +53

    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

  • @random-xl3zm
    @random-xl3zm Před 7 měsíci +2

    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

  • @DemolaOkesola
    @DemolaOkesola Před 2 lety +5

    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

  • @DragonWarriorCodes
    @DragonWarriorCodes Před 5 lety +9

    I needed this video 5 years ago .. still happy watching this after 5 years of learning programming .. still and will always keep learning.

  • @psacentralcoast6970
    @psacentralcoast6970 Před 5 lety +209

    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.

    • @autohmae
      @autohmae Před 5 lety +13

      Let me know if you have any questions. Python is not something I use every day, but I'm willing to help.

    • @psacentralcoast6970
      @psacentralcoast6970 Před 5 lety +3

      autohmae thanks, that’s awesome. I’ll definitely take up that offer.

    • @autohmae
      @autohmae Před 5 lety +3

      @@psacentralcoast6970 Well, I can only try to be helpful, no guarantee. :-)

    • @user_16309
      @user_16309 Před 5 lety +13

      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!

    • @psacentralcoast6970
      @psacentralcoast6970 Před 5 lety

      Dustin Wright good on you legend. Thanks for the the confidence brother.

  • @adeel.travel
    @adeel.travel Před 3 lety +27

    Phenomenal teacher. Finding someone who can explain things so well is unique.
    Most programmers I've come across use big, jargon-filled words.

    • @Marioinsydney
      @Marioinsydney Před 2 lety +2

      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.

  • @andressuarez3079
    @andressuarez3079 Před 4 lety +9

    I was stuck with basics and this might be the lever that un-stucks me. Thank you, this video was so great.

  • @Calypso694
    @Calypso694 Před 4 lety +38

    “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.

    • @ZlothZloth
      @ZlothZloth Před 3 lety +3

      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.

    • @Calypso694
      @Calypso694 Před 3 lety +1

      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!

    • @Oncopoda
      @Oncopoda Před 3 lety

      @@Calypso694 how's your coding journey 1 year in?

    • @Calypso694
      @Calypso694 Před 3 lety +2

      @@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

    • @Oncopoda
      @Oncopoda Před 3 lety +1

      @@Calypso694 lmao shit even I know that.

  • @mktwatcher
    @mktwatcher Před 5 lety +43

    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.

  • @tamar7065
    @tamar7065 Před 2 lety +4

    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!

  • @aaronshaw1006
    @aaronshaw1006 Před 15 dny

    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!

  • @clearwavepro100
    @clearwavepro100 Před 5 lety +21

    After a few seconds, I knew I would appreciate the talk. Thanks for sharing this!

  • @Reaganlu
    @Reaganlu Před 3 lety +8

    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!

  • @vikaspal2799
    @vikaspal2799 Před 3 lety +12

    " You hated math Class, I am sure you never Met Maths" GOLDEN WORDS

  • @foureyes91dn
    @foureyes91dn Před 2 lety +2

    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.

  • @ZenataUSA
    @ZenataUSA Před 3 lety +47

    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.

    • @tiutech3994
      @tiutech3994 Před 2 lety +1

      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

  • @katkodes6055
    @katkodes6055 Před rokem +7

    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!!

    • @owannn
      @owannn Před rokem

      i m here from the odin project too?? where are you currently on your journey?

    • @tiffanyhuynh1890
      @tiffanyhuynh1890 Před rokem

      Hi from another person doing the Odin Project!

    • @katkodes6055
      @katkodes6055 Před rokem

      @@tiffanyhuynh1890 hello! Hope your studies are going well. I'm about halfway down the JavaScript path

    • @g-whittington
      @g-whittington Před rokem

      I'm glad to have made it to this point

  • @igboman2860
    @igboman2860 Před 2 lety +2

    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

  • @ekukoski8508
    @ekukoski8508 Před 2 lety +4

    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.

  • @chatttownsaint
    @chatttownsaint Před 5 lety +44

    As a beginner, thanks for posting this. It gave me some insight.

  • @rgpandrade
    @rgpandrade Před 5 lety +7

    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.

  • @BRich057
    @BRich057 Před 2 lety

    I have listened to this before. You definitely knocked it out of the park. Everything you go over helped me feel better about the learning and direction I am going. Thank you

  • @redfinance3403
    @redfinance3403 Před 6 měsíci +1

    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.

  • @BEEFSTEW0830
    @BEEFSTEW0830 Před 3 lety +16

    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"

    • @TalsonHacks
      @TalsonHacks Před 2 lety +1

      It took me some time to get it lol

  • @millertime6
    @millertime6 Před 5 lety +30

    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!

    • @breakout3348
      @breakout3348 Před 5 lety +3

      after 4 years of trying to understand why, once it clicked, everything is coming much easier.

    • @Raptor3614
      @Raptor3614 Před 4 lety +4

      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.

  • @debra-kayeelliott3646
    @debra-kayeelliott3646 Před 2 lety +4

    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!

  • @mackadamianut5538
    @mackadamianut5538 Před 2 lety

    What a great speaker and teacher. This is the kind of energy and tone I can enjoy learning from. Thank you!

  • @TimmyBarr
    @TimmyBarr Před 4 lety +14

    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.

  • @PrescottLawani
    @PrescottLawani Před 4 lety +5

    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!

  • @cococolonel
    @cococolonel Před 3 lety +1

    Best lecture I've heard since I was so scared of code (and failing) since college. Jumping back into it after this isn't so scary after all.

  • @jbusom
    @jbusom Před 7 měsíci +1

    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.

  • @robbieh440
    @robbieh440 Před 4 lety +3

    I absolutely love this guy. I hope there are more lectures to find by him

  • @eyeronic9573
    @eyeronic9573 Před 2 lety +3

    Watching this in 2021 and it's still gently motivating and at the same time eye-opening. Thanks to Mr. Harris for this wonderful presentation which I'm pretty sure I'll watch whenever I lose motivation to go forward. p.s- I'm starting my journey in computer science engineering.

  • @gustavomartinez6892
    @gustavomartinez6892 Před 4 lety +1

    I really want to thank you and thank you again, because I have read at least 6 books about programing in Python, and seen toons of videos, on CZcams and other platforms, and you explain like no other I think what makes you especial is the thing that you speak like when you ask a friend that explains something to you, you know that is a difference with a professor that stays more distant, anyways excellent, brilliant!!! Just see the difference, other channels just repeat the things that are in the books more or less the same, but the way that you explain, I didn't saw it in any book, pure original.
    Just thank you!!!

  • @nanaQwesi
    @nanaQwesi Před 4 lety +1

    This is a really good talk. Every beginner needs to listen to it. Thanks Andy for providing value.

  • @ther6989
    @ther6989 Před 3 lety +3

    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.

  • @ScaerieTale
    @ScaerieTale Před 2 lety +14

    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
      @ScaerieTale Před rokem +2

      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

  • @GoodlyRogue
    @GoodlyRogue Před rokem +1

    Watched it all the way. Thank you so much Mr. Harris!

  • @Roc327
    @Roc327 Před 9 měsíci

    Thank you @AndyHarisPrograming as a new (learning) programmer this really helped change the way I looked at the entire process from new concepts to things I already 'knew' but were resisting. Again thank you for a well structured well delivered and thoughtful lecture.

  • @0GULSHAN
    @0GULSHAN Před 2 lety +10

    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.

  • @ralexander9495
    @ralexander9495 Před 4 lety +3

    "how consistent is the syntax? Painfully!"
    biggest smile I have had in at least 24 hours. Thanks!

  • @jonathanaspeling9535
    @jonathanaspeling9535 Před 3 lety

    Really enjoyed this 👍 thanks for all the clever analogies, takes on things and clear and simple answers. Good to have spent time absorbing. Looking forward to helping others continue the persuit.

  • @keytve4889
    @keytve4889 Před 3 lety +1

    while I am someone new to programming a lot of your jokes went well over my head, I appreciate a lot of the tips and analogies as it really helped to put the overwhelming concept of coding into bite sized easy to digest and approach pieces.

  • @annagizziatlas62
    @annagizziatlas62 Před 3 lety +19

    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.

    • @dovacody3512
      @dovacody3512 Před 3 lety +2

      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
      @geethareddy1000 Před 7 měsíci

      ​@@dovacody35123

  • @citizengoose1342
    @citizengoose1342 Před 4 lety +31

    I thought it was one of those clickbait videos, until I saw it was an hour long

  • @marvintoussaint6591
    @marvintoussaint6591 Před 2 lety +1

    This was an amazing lecture Andy. Definitely very eye opening.

  • @PaperRaines
    @PaperRaines Před 3 lety +1

    This was literally the best video I've ever watched on anything. Thank you for your service

  • @cilibekd
    @cilibekd Před 2 lety +4

    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! :)

  • @aldergate-ca
    @aldergate-ca Před 2 lety +5

    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.

  • @investgeek.crypto
    @investgeek.crypto Před 3 lety

    I wish you could be my teacher! I've been struggling to teach myself for 2 months with the assistance of two coding bootcamps and here you go and blow my mind in your first 20min and change the entire trajectory of my program and explain what I've been doing wrong without me even asking you!

  • @finitoSA
    @finitoSA Před 2 lety

    Such a good lecture. I couldn't count how many times I just nodded or said "YEAH, my thoughts exactly!" in my head

  • @je25ff
    @je25ff Před rokem +3

    I just started a 10 month long program and I just started Java. As someone with no programming experience, logic isn't difficult, the steps aren't difficult, what is difficult is: thinking very logically about small things that 99.999% of your life appear to work on their own.

  • @NimhLabs
    @NimhLabs Před 5 lety +55

    I'm a self taught programmer... but back in the 80s and 90s. We did not have Google. We had to either grab books from the library... or pay hundreds of dollars for a book that explained things incorrectly. The books at the library were never up to date and usually were missing a lot of important information--and taught just as many bad practices as the expensive "good" books elsewhere.
    The notion that a computer is "dumb as a rock" strikes me as incorrect... I could easily believe the rock (or in this case, shoe) is by far more intelligent than the computer.

    • @JamRPink
      @JamRPink Před 4 lety

      😂

    • @RichardFrost
      @RichardFrost Před 4 lety +3

      Me too - learnt on C64 and Amiga. I programmed on an Amiga using a floppy disk compiler and wrote GUI apps using Intuition. We had to read books to understand the API - really had to dig deep . No googling. And no fancy editor when you have limited memory and disk space. Kids these days have it way easier to learn that what we had. But us old coders had to really get deep into our code in our heads. We had to run the logic in our brain not on the computer to really debug. !!

    • @silentlessons4221
      @silentlessons4221 Před 3 lety +3

      yea but guys back in the 80s and 90s, becauses of no google, synthesized what they learnt much better and often coded from memory. many revolutionary programs were invented around that time. I remember studying cobol, pascal, basic. I had to write dozens of programs from memory. i miss those days. today its more of a copy and paste era.

    • @NimhLabs
      @NimhLabs Před 3 lety +1

      @@silentlessons4221 yes, there was better coding back then... but there was also a lot of REALLY REALLY shit coding done as well
      Luckily, none of my shit coding has managed to survive to today... but rest assured... the crappy bullshit doesn't really last past the current generation
      Just think of how little bullshit from the 90s people still remember being a thing... same for the 00s.
      Eventually, nobody will remember the bullshit from the 10s, only the good stuff--and people will act like nothing bad was ever made in the 10s

  • @LDInDevelopment
    @LDInDevelopment Před 2 lety +1

    Halfway through and this has already been life changing for my learning process as a beginner!

  • @alessandrasimoes8363
    @alessandrasimoes8363 Před 2 lety +2

    Thank you so much for this. At first I thought it was for advanced programmers but this is actually perfect for beginners like me. Really helpful!