+Charlie L. I'm no expert. I would get a breadboard and learn how to make some basic circuits. All the diagrams should be online. If you have a programming background or are interested in programming I would get a programmable microcontroller. They are really fun if you learn to use them. I would pick the form of learning that works best for you.
I'm watching this at home so when he said at time-stamp 45:24 and 46:31 to "discuss this with your neighbor", I didn't have a neighbor right next to me, so I went across the street to discuss this with my neighbor and they told me to get a life.
I just watched this to help get ahead for my classes at Virginia Technical Institute. I found it very helpful. Thank you for posting publicly on UA-cam, I appreciate the attitude you hold regarding others general education.
Denny Freeman was on my PhD thesis committee and our labs were next to each other. Having him as a mentor has been a blessing in my career. So happy this lecture came up in my suggested videos today.
My ultimate goal is to attend MIT for my phd in Electrical Engineering. If I can handle these courses then I should have no problem at all in the future. Thank you for allowing us the opportunity to learn and prepare for free.
wow! 2020 I'm watching this and got blown away... First Lecture all my issues with name binding, scopes, and program executions was solved. I've watched some MIT tutorial non ever disappoint but so far this is best CS lecture I've seen anywhere in an hour of lecture I feel like a CS engineer already. Thank you MIT thanks to AL Abelson and all the staffs and management of MIT. This is incredible Thanks to the Lecturer/Professor/associate professor or whatever his hierarchy is.
I agree. I am 17 as well and I am planing to study electrical engineering too. Videos likes these gives the High School students an opportunity, we can't deny. We are being informed and filled with knowledge, which we can take advantage of and be prepared for the university. :) So sad that not that many people watch these kinds of videos :(
THANK YOU SOOOOOOOO MUCH MIT for this upload. I love electronics and computers but was a bit nervous about the in depth part of engineering. Loved It. Thanks I've finally picked my major. :)
I'm always sad that most Chinese people cannot see youtube everytime when I saw this kind of valuable videos. ALL video websites in China suck so bad, only shallow things without any deep thoughts. So jealous of you guys. However it's great great thing that every technical problem can be conquered, even the one that is settled by the gov. ;)
I love these videos so much because I’m a ECE major right now and all these videos are a wonderful supplement to everything I’m studying. It’s incredible that all these information is free on UA-cam thank you.
just the way these lectures are thought... there is soo much passion as you can see from these professors! they go beyond the basic knowledge, they engage their students..
The technical college that I started with didn't do a very good job either. They were passing students that should not have been passed. The instructors didn't know very much. I always felt like I wasn't getting a very good education. The university I am attending has been much better.
yeah. mine was like we learn to solve some EE equation and then in another class we learn C programming and do nothing related to EE. we dont even learn CS. and then we take final exams.
thanks for making these lectures available. great to hear how the content is introduced and discussed. I will be teaching python this fall. I like the command and confidence of the delivery.
I love engineering lectures. Interesting enough that my mind doesn’t wander too much, dull enough that I’ll pass right out if I’m laying down. Imma wake up a genius someday... 😂
When I found this I was extremely happy! I want to attend Georgia Tech for my Phd but MIT is my second choice. I diverted from my original course in Computer Engineering to Networking but Engineering has a strong pull on me, so we will see what happens. I wish you the best with your studies!
Wow. I was desperately looking for this kind of lecture that teaches basic concept of electrical engineering. Thank you for all your hard work to provide this valuable lectures. Thank you!
I loved it! And I have a general comment. What I love about being a professor, is that I can behave like an insane person and, still, be valued and respected.
i just found out my university classes were not so good so i randomly came to youtube to search my semester topics to learn and boom i got the best video in single search
Sir I love your teaching style and the way you explain things. It was all very comprehensible. I really enjoyed your class very much and the way of learning engineering in MIT which stresses practical knowledge is great.
Certainly not what I remember of my intro class from the 90s , but that being said I understood the content. It’s more a combination of multiple streams we did. The thing many people miss is that tertiary education is about learning to learn for yourself instead of spoonfeed education in k12. Self study is paramount to success beyond tertiary education. Given any problem Engineer needs to break it down and solve it. That line in the movie Martian, fix one problem then another and then another and eventually you go home. Same is true of Apollo 13 mission. I did not go to the best engineering university of my area but am always grateful to my dean , the professors and faculty who pushed me to be independent and to own my success or failures as my own.😮
I really envy those smart geeks boys and girls who attend to perhaps the most prestigious and rigorous school in the world within the field of electrical, electronics and computer engineering. MIT dictates the rules and it's an outstanding reference within the STEM sciences.
One of my first computer science assignments was to use the SCHEME language (car, cdr, etc.) to navigate out of a maze with a foolproof (though not necessarily the best) way out of the maze (if such an exit exists, else it goes forever). The recursion of SCHEME language made this rather trivial. As I recall, it doesn't matter which you choose -- left or right-hand paths...so long as you stick to that plan all the way through the course. For example, if you find yourself in a maze, put your right hand against the wall, and just follow it wherever it takes you...you'll eventually find the exit.
Honestly, I never though my professor was far more better than this man, filipino engr professor the best... direct to the point...the problem were, we pay for laboratory that does not exist...a ghost... western mindanao state university, zamboanga city... too much politic in school administration, lack of funds...
I'm old. I learned how to program on an Apple II and Atari 800. My first programming job was creating Atari 2600 games. What a wonderful time to learn program because there was almost nothing to learn. Modularity for example was "duh" because it became obvious in just a few hours. The 6502 instruction set took a day or two to learn. When OOP first came on the scene I was all in. After 20 years I came to the conclusion OOP is horrible. I moved back to C. Keep it simple. OOP has become so complex I see engineers spending most of their time on the language instead of creating products. Time spent making code work instead of making products work.
OOP includes all computer languages. The idea is that it allows reuse of code, instead of having to start from scratch for common tasks. The bad part is when you can't match pre-written object/module for your particular task. Then, you need to be able to modify and edit code imternals for your particular program, for efficiency--but often computing efficiency is not a top requirement (e.g. Windows.) The worst part of OOP is that it can lead to program bloat, where an OOP can include features you don't need. Modularization is key to quickly creating complex systems without having to reinvent the wheel, which is very useful, particularly when efficiency is not a key requirement.
OOP is awesome because you can do so much and reuse old code. But yes many people do get caught up in perfecting code or making something modular when maybe it doesn’t need to be and writing it out without really going deep into OOP is better. It’s all a spectrum, and the best programmers know how to balance it.
I think many engineers are myopic in the way they look at programming languages. In business application programming, the priorities are much different than the things you're probably used to doing. It's much less about optimization/performance and much more about producing functional software that is "good enough" to get the job done within a minimal timeline and budget. That's the reason Visual Basic was such a hit in the 1990's and C# and Java in the following 20 years. Software written in modern Object Oriented programming languages can seem bloated, but they're modular and can be put together very quickly by skilled engineers. The funny thing is, developers are moving toward interpreted scripting languages like python and javascript for business applications now. I think it's awful, but I'm doing it because that's what sells. The mess of interpreted type-less spaghetti I'm seeing from engineers these days is a bit depressing.
He was talking about variable scopes; access modifiers and scopes are not the same thing. (That is private and local variables are not the same thing).
in herarchy, upon wich, sequnctials are derivates or sub classes of the base a. is just a straight line where b has lesser value then a. b is part of a. but b is not a part of c, but c is a part. from b and a. where each line defines a border between levels of the class herarchy. symbolicly. like a flat building or a high tower. where every floor. contains a symbol. a b or c. but in this case. a room inside a room where a. is the total building. the ground class. or base. and b is a room in that building where c is a room in b and d is a room in c. leaving open the possibilty that there are more rooms. or buildings. like building a1 or room b2 in building a or building a2. while still maintaing its. impact or value or place on the herarchy being a part of a. although. b is a part of a. a may be of a lesser numeric value. or a higher one. all in perspective. since it is virtual space. it may defy the laws of cardasian space. saying in theory. that a can be smaller then b although b is still a part of the a class.
Way cool. Love building stuff and science in general. I love that I can watch these videos and hit the MIT site for the actual course work. Now if only I could get the lab robot lol. Got lots of time after work, and this looks fun and its a topic I would love to understand in more detail. Thank for giving us all this stuff for free!
I was a philosophy minor in undergraduate school (my major was biology). As part of my philosophy minor, I had to take a philosophy class called Logic. The way that Python works is exactly the same way that philosophical logic worked. Frank Frank Reiser Video/Audio Service
I'm a Sohpomore in High School and this is already more interesting than my classes. It is either the way the professor is fully enthusiastic, or this is fully mesmerizing to me.
this is so great that you get to watch these videos free on the internet, so amazing :). I am 17 and soon planing to go to Electrical Engineering at either the university of Ottawa or dalhouise university, both in Canada. I believe that knowledge is key for our society to grow. And MIT is showing that they really care about spreading education to the masses. But it makes me sad that these videos get little to no views :(.
I just want to give suggestion concerning the camera. I wanted to look at the slide whenever the lecturer was discussing so that I can follow what he was talking about but sometimes the camera was not focusing on the slide. The camera should only capture the general audience if the lecturer is not discussing about the slide...This is the only thing I don't want in this video but generally the lecture is good...Thank You MIT. May you consider my advice...
i'm starting at 20/12 as electrical engineering guys ,, very hyped for it , my father and my brother are both electrical engineers hahaha , wish me luck :)
And Guess what,,... Electronic engineering is a subset of Electrical engineering, just like Electromagnetic, Electromechanic, ElectroOptic engineering.
@@abhinavchauhan6863 wait, isn't electronics a SUBFIELD in electrical engineering. So technically electronics engineering isn't part of electrical engineering because they're two different majors
@@vernoneatwell5449doesn't change the fact that it is a subfield/subset/part (whatever you call) of Electrical Engineering. Electric + Ionic -> Electro-Ionic -> Electronic. That's the etymology.
There are several components to learning electronics. One resource I found which succeeds in merging these is the Gregs Electro Blog (check it out on google) without a doubt the most helpful course that I have ever seen. Check out this awesome resource.
Lectures 4 and 11 were deliberately left out by the instructors and are not available. The course is complete. See the course on MIT OpenCourseWare for the full course progression and materials (readings, assignments, exams with solutions, etc). ocw.mit.edu/6-01SCS11
As someone who has been programming for 7 years, holds a full time job as a software developer, watched MIT 6.00, Stanford CS106A and CS106B (amongst many other lectures on further CS topics), and read multiple books on programming, I would advise anyone who is unfamiliar with programming to go ahead and start with MIT 6.00 first. The programming introduction here is rushed and wholly inadequate. You will not understand what is going on, and you will not be able to keep up. This is a EECS introductory course, not an introduction to programming course. Trying to learn programming through this course misses the point.
I drew myself a MIT diploma and signed it. Thanks MIT!
Charlie L. I don't have any experience. I'm just interested in EE.
+Charlie L. I'm no expert. I would get a breadboard and learn how to make some basic circuits. All the diagrams should be online. If you have a programming background or are interested in programming I would get a programmable microcontroller. They are really fun if you learn to use them. I would pick the form of learning that works best for you.
Ma boi going places
But is it original though?
BawdSpeellar has
Thank you MIT for making all this information freely available to the public.
I'm watching this at home so when he said at time-stamp 45:24 and 46:31 to "discuss this with your neighbor", I didn't have a neighbor right next to me, so I went across the street to discuss this with my neighbor and they told me to get a life.
So, you're the one that came knock on my door!!! you son'bitch, go get a life!! ;-P
I'm sorry - next time I'll bring pie - happy to meet you - have a great life!
LOL
+Bobby Millionaire HAHAHA
Well you can come visit me.. IF you are a millionaire.
I can listen to the lecture all day and not get bored. Awesome lecture. I wish I had a chance to go to MIT.
We all do
You DID but you wasted it
we all do
me too
I just watched this to help get ahead for my classes at Virginia Technical Institute. I found it very helpful. Thank you for posting publicly on UA-cam, I appreciate the attitude you hold regarding others general education.
Hey dude, how are you doing now? Tell us!
hes dead
how are you doing now?
Nicholas Pillow
How'd it go ?
How is life now time traveler?
Denny Freeman was on my PhD thesis committee and our labs were next to each other. Having him as a mentor has been a blessing in my career. So happy this lecture came up in my suggested videos today.
Hi👋 can you please tell me which software he was using while demostrating the code for that sonar robot ?
You know you're in for an incredible educational experience when even the first lecture blows your mind.
The professor's mannerisms are fantastic
My ultimate goal is to attend MIT for my phd in Electrical Engineering. If I can handle these courses then I should have no problem at all in the future. Thank you for allowing us the opportunity to learn and prepare for free.
Well seems like u failed
So did you end up attending MIT?
@@FadedLotussy’all so mean lol
wow! 2020 I'm watching this and got blown away... First Lecture all my issues with name binding, scopes, and program executions was solved. I've watched some MIT tutorial non ever disappoint but so far this is best CS lecture I've seen anywhere in an hour of lecture I feel like a CS engineer already. Thank you MIT thanks to AL Abelson and all the staffs and management of MIT. This is incredible Thanks to the Lecturer/Professor/associate professor or whatever his hierarchy is.
Wow, I learned more in this single lecture, than 3 years of computer programming courses at my local college. This guy knows his stuff!
David Powell what... I think your college.. ehm has some problems..... because this video is an introduction.........
PM
Mlm.
@@jinjunliu2401 r/woosh
I don't think there was a joke.
Where did you go to college? 😯
These videos are golden. I feel like I can study these videos, go take the classes, and get A's.
I agree. I am 17 as well and I am planing to study electrical engineering too. Videos likes these gives the High School students an opportunity, we can't deny. We are being informed and filled with knowledge, which we can take advantage of and be prepared for the university. :) So sad that not that many people watch these kinds of videos :(
Great job, stay ahead of the game!
Hi! How you doing, are you an electrical engineer now?
@@samilnaml7299 I would like to know too!
You aliv?
THANK YOU SOOOOOOOO MUCH MIT for this upload. I love electronics and computers but was a bit nervous about the in depth part of engineering. Loved It. Thanks I've finally picked my major. :)
How'd it go?
@@billyusher4907 lack of reply is kinda sus ngl
How is life now?
He probably dropped it
Yooooo he dropped his yt account that means it either went really well or really not well.
I'm just trying to learn the basics of programming and this is helped out a lot it's awesome that you guys do this for people like us thank you
I'm always sad that most Chinese people cannot see youtube everytime when I saw this kind of valuable videos. ALL video websites in China suck so bad, only shallow things without any deep thoughts. So jealous of you guys. However it's great great thing that every technical problem can be conquered, even the one that is settled by the gov. ;)
I love these videos so much because I’m a ECE major right now and all these videos are a wonderful supplement to everything I’m studying. It’s incredible that all these information is free on UA-cam thank you.
he is such a good professor. he has a way to make everything understood very well, id love to be in his class!!
I guess I am an idiot because I do not follow :(
watching these lectures .... I feel like my university education was a rip off
Why?
just the way these lectures are thought... there is soo much passion as you can see from these professors! they go beyond the basic knowledge, they engage their students..
The technical college that I started with didn't do a very good job either. They were passing students that should not have been passed. The instructors didn't know very much. I always felt like I wasn't getting a very good education. The university I am attending has been much better.
Learn Computer Science Off topic but do you do videos?
yeah. mine was like we learn to solve some EE equation and then in another class we learn C programming and do nothing related to EE. we dont even learn CS. and then we take final exams.
thanks for making these lectures available. great to hear how the content is introduced and discussed. I will be teaching python this fall. I like the command and confidence of the delivery.
As a student in a third world MIT is opening it's content to the world for FREE ❤
Can’t wait to be at computer engineering class this coming semester..you all wish me well thank you
How's it going so far?
Edit?
I love engineering lectures. Interesting enough that my mind doesn’t wander too much, dull enough that I’ll pass right out if I’m laying down. Imma wake up a genius someday... 😂
When I found this I was extremely happy! I want to attend Georgia Tech for my Phd but MIT is my second choice. I diverted from my original course in Computer Engineering to Networking but Engineering has a strong pull on me, so we will see what happens. I wish you the best with your studies!
Yuck networking
I like watching these lectures, because it gives me an idea of what I want to do in the future.
What did decide to do?
Wow.
I was desperately looking for this kind of lecture that teaches basic concept of electrical engineering.
Thank you for all your hard work to provide this valuable lectures.
Thank you!
How is life now?
I loved it! And I have a general comment.
What I love about being a professor, is that I can behave like an insane person and, still, be valued and respected.
It's a real pleasure to listen to Mr. Freeman. Kudos for sharing this wonderful knowledge online MIT🖤
Amazing lecture. He makes this so easy to understand.
i just found out my university classes were not so good so i randomly came to youtube to search my semester topics to learn and boom i got the best video in single search
This kind of teacher in my school = Priceless !
He is a good magnet....I just lost myself into his lecture....great lecture...!!!
Sir I love your teaching style and the way you explain things. It was all very comprehensible. I really enjoyed your class very much and the way of learning engineering in MIT which stresses practical knowledge is great.
Certainly not what I remember of my intro class from the 90s , but that being said I understood the content. It’s more a combination of multiple streams we did. The thing many people miss is that tertiary education is about learning to learn for yourself instead of spoonfeed education in k12. Self study is paramount to success beyond tertiary education. Given any problem Engineer needs to break it down and solve it. That line in the movie Martian, fix one problem then another and then another and eventually you go home. Same is true of Apollo 13 mission. I did not go to the best engineering university of my area but am always grateful to my dean , the professors and faculty who pushed me to be independent and to own my success or failures as my own.😮
I really envy those smart geeks boys and girls who attend to perhaps the most prestigious and rigorous school in the world within the field of electrical, electronics and computer engineering. MIT dictates the rules and it's an outstanding reference within the STEM sciences.
The better word is jealous not envy
@@talibunajat8178 Wrong.
One of my first computer science assignments was to use the SCHEME language (car, cdr, etc.) to navigate out of a maze with a foolproof (though not necessarily the best) way out of the maze (if such an exit exists, else it goes forever). The recursion of SCHEME language made this rather trivial. As I recall, it doesn't matter which you choose -- left or right-hand paths...so long as you stick to that plan all the way through the course. For example, if you find yourself in a maze, put your right hand against the wall, and just follow it wherever it takes you...you'll eventually find the exit.
Y'all are the best for making these free.
Honestly, I never though my professor was far more better than this man, filipino engr professor the best... direct to the point...the problem were, we pay for laboratory that does not exist...a ghost... western mindanao state university, zamboanga city... too much politic in school administration, lack of funds...
Nonoy Fire what’s your complaint??
I'm old. I learned how to program on an Apple II and Atari 800. My first programming job was creating Atari 2600 games. What a wonderful time to learn program because there was almost nothing to learn. Modularity for example was "duh" because it became obvious in just a few hours. The 6502 instruction set took a day or two to learn.
When OOP first came on the scene I was all in. After 20 years I came to the conclusion OOP is horrible. I moved back to C. Keep it simple. OOP has become so complex I see engineers spending most of their time on the language instead of creating products. Time spent making code work instead of making products work.
funny. you dont look old
I agree about OOP. but then again, I'm old
OOP includes all computer languages. The idea is that it allows reuse of code, instead of having to start from scratch for common tasks. The bad part is when you can't match pre-written object/module for your particular task. Then, you need to be able to modify and edit code imternals for your particular program, for efficiency--but often computing efficiency is not a top requirement (e.g. Windows.) The worst part of OOP is that it can lead to program bloat, where an OOP can include features you don't need. Modularization is key to quickly creating complex systems without having to reinvent the wheel, which is very useful, particularly when efficiency is not a key requirement.
OOP is awesome because you can do so much and reuse old code. But yes many people do get caught up in perfecting code or making something modular when maybe it doesn’t need to be and writing it out without really going deep into OOP is better. It’s all a spectrum, and the best programmers know how to balance it.
Experienced, not just old. You could be just old. But luckily, you’re not. I’m 20y in, agreeing fully.
I think many engineers are myopic in the way they look at programming languages. In business application programming, the priorities are much different than the things you're probably used to doing. It's much less about optimization/performance and much more about producing functional software that is "good enough" to get the job done within a minimal timeline and budget. That's the reason Visual Basic was such a hit in the 1990's and C# and Java in the following 20 years. Software written in modern Object Oriented programming languages can seem bloated, but they're modular and can be put together very quickly by skilled engineers. The funny thing is, developers are moving toward interpreted scripting languages like python and javascript for business applications now. I think it's awful, but I'm doing it because that's what sells. The mess of interpreted type-less spaghetti I'm seeing from engineers these days is a bit depressing.
I don't comment on online lectures but this professor is brilliant and understand able Thanks MIT..
I don't know how to thank MIT because of these lectures. It wonderfully superbly instruction
Bill Gates + Steve Hawkin + Mini Me from Austin Powers and you have one of the best Lecturers ever.
He was talking about variable scopes; access modifiers and scopes are not the same thing. (That is private and local variables are not the same thing).
Watching these lectures MIT feels like my home.
Great instructor. I am going to enjoy going through this series.
I learned more in this one lecture than I did in a whole semester of computer science at a state university learning pseudo codes.
Z was defined outside the function as global
function(Z)
local static x = Z
if x=0 then inc Z
end
I think that was the most complicated way to explain private and public variables I've listened to.
dkail08 actual definition > dumbed down
in herarchy, upon wich, sequnctials are derivates or sub classes of the base a. is just a straight line where b has lesser value then a. b is part of a. but b is not a part of c, but c is a part. from b and a. where each line defines a border between levels of the class herarchy. symbolicly. like a flat building or a high tower. where every floor. contains a symbol. a b or c. but in this case. a room inside a room where a. is the total building. the ground class. or base. and b is a room in that building where c is a room in b and d is a room in c. leaving open the possibilty that there are more rooms. or buildings. like building a1 or room b2 in building a or building a2. while still maintaing its. impact or value or place on the herarchy being a part of a. although. b is a part of a. a may be of a lesser numeric value. or a higher one. all in perspective. since it is virtual space. it may defy the laws of cardasian space. saying in theory. that a can be smaller then b although b is still a part of the a class.
in a collection and not a calculation.
I was skimming over the video at 2x, and then I jump to the 45th minute, and god, that was the most crazy thing I have seen on a MIT video.
considering the views of most youtube videos more people watching this would definitely be beneficial.
In sha Allah.
One day I will be a professor at MIT
From Bangladesh ❤️
It's like going to MIT for free!
+Jabran Shakil without the big paper "Diploma"
Youcef Mahdadi or the big money. Asalamwalakum
w 3laykoum
assalam
@@JabranShakil or the good paying job when you get the degree 🤷♂️ but hey free right..
34:46 - It's gonna say "UUHH".
try:
print ('Hello'+3)
except:
playAudio("UUHH")
Way cool. Love building stuff and science in general. I love that I can watch these videos and hit the MIT site for the actual course work. Now if only I could get the lab robot lol. Got lots of time after work, and this looks fun and its a topic I would love to understand in more detail. Thank for giving us all this stuff for free!
I really like the idea of "practice - theory - practice"
This instructor is awesome
I was a philosophy minor in undergraduate school (my major was biology). As part of my philosophy minor, I had to take a philosophy class called Logic. The way that Python works is exactly the same way that philosophical logic worked.
Frank
Frank Reiser Video/Audio Service
What I dislike about these lectures, is that there is usually a problem with a video, a video missing, or something that keeps me from going forward.
I’m in 8th grade I watched this and I actually understood this and I watched string theory lectures thank you I love these videos
If you live the teachings, then the teachings are you.
I'm a Sohpomore in High School and this is already more interesting than my classes. It is either the way the professor is fully enthusiastic, or this is fully mesmerizing to me.
That genuine passion/enthusiasm is everything for me when taking a course
Damn! Dennis freeman is a fantastic professor!
very good teacher nd very good lecture - thanks .MIT
bro is this the first lecture of the whole engineering course?
Good lecture. Very easy to understand. Thanks.
Well you're a genius where I am in algebra 2 which you were probably in in 2nd grade
pegy hill Hi Pegy, how's Hank?
thank you MIT for sharing this free education.
Whatever knowledge you are having by yourself is self-knowledge.
You can tell the quality of this professor from the first 30 seconds of this video
I am impressed by MIT.
so this is what MIT lvl education is like doesn't seem all that different from what I learned at my local community college.
It’s the intro lecture
Op-amp is operational amplifier.
Thanks, It reminds me a lot, with my school days in Engineering
Mr.Freeman was a great prof, signals and system was a bit tough for me, also thought the Midterm was very hard.
6:50 is the best part... about learning
I fucking love this man. so animated you can't help but pay attention
this lecture is really quite intriguing! i really am interested in ee after watching this.
this is so great that you get to watch these videos free on the internet, so amazing :). I am 17 and soon planing to go to Electrical Engineering at either the university of Ottawa or dalhouise university, both in Canada. I believe that knowledge is key for our society to grow. And MIT is showing that they really care about spreading education to the masses. But it makes me sad that these videos get little to no views :(.
jordanzs521 how you doing 5 years later?
good basic computer engineering knowledge lecture in MIT by engineer Dennis Freeman #
this profecer looks like Luke skywalker
i think he looks like Angela merkel
shalom, my brother
And sounds like his version of "The Joker" too
Very true. And we are all Yodas.
I just want to give suggestion concerning the camera. I wanted to look at the slide whenever the lecturer was discussing so that I can follow what he was talking about but sometimes the camera was not focusing on the slide. The camera should only capture the general audience if the lecturer is not discussing about the slide...This is the only thing I don't want in this video but generally the lecture is good...Thank You MIT. May you consider my advice...
i'm starting at 20/12 as electrical engineering guys ,, very hyped for it , my father and my brother are both electrical engineers hahaha , wish me luck :)
Good luck!!
I'm trying to go there, I'm so excited in EE!
Arsyad Kamili it's a trap!!!
Get back lol.....
Hows it going?
@@Shadow77999 we've lost it.
When you're going to school in a few days and you're watching an MIT lecture instead of reviewing all your shit from 8th grade
Beginning my journey as an Electrical and Computer Engineering student in about a week. May God have mercy on me.
How's is it going so far?
@@DeadlyWarrior45 Lmao just failed a maths test. Not bad overall, though.
@@DeadlyWarrior45 Thanks for asking.
@@fusuyreds1236 Can't always have great grades xd
@@fusuyreds1236 don't blow it.
This guys hilarious! His jokes are so subtly good
.
That damn lip smacking after every sentence. *Smack*
This is the reason I was looking through the comment section. lol
Omg I can't unhear it now!!!!
And it only gets funnier everytime
After reading this I focused on the lip smacking intensely!
It should be Introduction to Eletronics Engineering and Computer Science I
And Guess what,,... Electronic engineering is a subset of Electrical engineering, just like Electromagnetic, Electromechanic, ElectroOptic engineering.
@@abhinavchauhan6863 really? I never knew that
@@abhinavchauhan6863 wait, isn't electronics a SUBFIELD in electrical engineering. So technically electronics engineering isn't part of electrical engineering because they're two different majors
@@vernoneatwell5449doesn't change the fact that it is a subfield/subset/part (whatever you call) of Electrical Engineering.
Electric + Ionic -> Electro-Ionic -> Electronic. That's the etymology.
There are several components to learning electronics. One resource I found which succeeds in merging these is the Gregs Electro Blog (check it out on google) without a doubt the most helpful course that I have ever seen. Check out this awesome resource.
youtube suggested me this video. I clicked it by accident. NOW I'M AN ENGINEER
Greatest lecture ever. I loved it.
can someone explain why another environment can be created, why not just keep one?
Was this instructor in "The Princess Bride?"
"Inconceivable!!"
Belief destroys intelligence.
My love goes to this institute,
I love the institute too, fuck the railroad and the BoS
Sounds Lec4 and Lec 11 are not uploaded? Can not find them out. Can anybody help? Thanks a lot.
Lectures 4 and 11 were deliberately left out by the instructors and are not available. The course is complete. See the course on MIT OpenCourseWare for the full course progression and materials (readings, assignments, exams with solutions, etc). ocw.mit.edu/6-01SCS11
***** Thanks sincerely for the feedback. It's really helpful to me!
IHTFP - but i still love it.
Thank you, Lisa Su!
As someone who has been programming for 7 years, holds a full time job as a software developer, watched MIT 6.00, Stanford CS106A and CS106B (amongst many other lectures on further CS topics), and read multiple books on programming, I would advise anyone who is unfamiliar with programming to go ahead and start with MIT 6.00 first. The programming introduction here is rushed and wholly inadequate. You will not understand what is going on, and you will not be able to keep up. This is a EECS introductory course, not an introduction to programming course. Trying to learn programming through this course misses the point.
I love his body language. It's very entertaining.
Thank you i was enlightened by this lecture.
Is this lesson still relevant ? In 2017
But is it relevant in 2020?
@@leojoy9347 2021?
@@ratchetreadings5692 wow one year already?! Damn time flies
@@leojoy9347 another year flew;)
@@organicfarm5524 Ahhhh come on!!! Another year again. I'm just the friggin same. Let's see again next year.
Learned and the wise are one.