Don't worry you guys will get better, I used to feel that. The worse you feel about yourself, the more you'll want to improve, and so you'll get better. 3 years ago, this guy would be my idol, now he is just another coder to me
I think what has to be realized is not only does he have years of experience: He one hundred percent did his research and practiced before hand. Y'all got this, don't let this put you down if it does.
I understood none I just started learning Python a wee ago and I'm only on list comprehension now and even that's still only touching the surface of what you can do with list comprehension
I have an error PLS HELP : [Running] python -u "d:\python in 1 video\snakes.py" Redirection is not supported. [Done] exited with code=1 in 0.179 seconds
@@elferson Bro I have now installed vs code in linux , and have installed modules like flask,pandas, playsound,,, but every time I run code in vs it gives me import error: module not found,,, please help
@@yashkumarjha5254 Pip might be installing modules in the wrong directory. If that is the case there are a lot of different causes for this problem and I can't give you a solution. Try looking at stack overflow threads.
Narender Ravulakollu it’ll take u a while to get like this guy at a certain point in someone’s coding career they have coded so much that they dream in code
THANK YOU! I’m learning Python currently. I watched this video and followed along in VSCode. If I expose myself to as many projects/tutorials as possible and try to script or program some, I will learn to become proficient. I humbly ask, PLEASE KEEP THEM COMING.
Why do you have to do it timed or under time pressure (especially since you spent quite some time thinking about it)? The educational value would be more if you spend more time explaining the logic.
Having the education behind the video is very helpful, but on the other hand. I felt the way he came about it was helpful. He made it fun to want to learn. Great video man and thank you.
@@rimskyrichard8651 Import is used for second files, in this case, he has two imported files, random and curses, these are two separate files that he has that are .py files. So basically it takes anything that is in the other file and allows it, and the variables inside and anything else to be used in the first snake.py file he was using. From- A kid in his first year in a class for python!
Boss(after the meeting): So this is how we are going to code the software any questions and engineer man pls concentrate on the meeting don't play with your laptop. Engineer man: Sir, already finished coding it.
I don't get the point of these kind of videos. This isn't a 5 min coding challenge. This is a how fast can I copy my precoded game into an empty file... Do you really think he does this with no preparation? If yes you have no idea of coding or writing your own computer programs. I would love to see a real tutorial on how to make games, were he explains everything but for this content I can go on stackoverflow. Please correct me if I am completely wrong
Engineer Man Thanks for your response. I study computer science now, so I know that it is not possible to get something like this done in 5 minutes. I would love to see you explaining why you use all the commands and showing how I can do this myself. This video has for someone, who wants to learn to code properly only a small value.
Alle Gaming TV you must be awesome at parties. His preparation for this is not the hour or two of prep, but the years of studying computer science, coding and writing applications leading up to it. The only case your argument makes sense if it is done by a non-computer science person or perhaps a baby. Then everyone could be marvelling at such a feat, but you likely would just be shitting on that too.
Definitely understand that it would be a bit of a stretch to expect it in 5 minutes, but do you think you could do a longer video implementing it in C?
Great job, thank you! For anyone following along in python 3.6, when you get the error about w.addch() "TypeError: Integer argument expected, got float", just convert them to ints by surrounding the first two arguments for the .addch() with "int()". Again, thanks Engineer Man! I'd love to have more of these :).
@@fractaldesigns7175 It should look like this w.addch(int(food[0]), int(food[1]), curses.ACS_PI) w.addch(int(snake[0][0]), int(snake[0][1]), curses.ACS_CKBOARD) Just do it for all four w.addch functions and you should be good.
On a school day: Engineer man: Oh shit I forgot to my python homework Teacher: Where is your homework Engineer man: Ma'am I am just finding the file on my laptop *meanwhile* he does his homework in 5 mins
@@EngineerMan Yeah I had to manually install an older version of curses(I use python 3) Also, (i guess that's new in python3), int/int returns a float. you just have to convert the numbers to int (x and y coordinates for example)
dude I've watched this video a few times and everytime I see this I'm in awe damn, just started teaching myself python, I'm pretty sure it's gonna take me years before I can do anything close to what you just did
He's just copying it? He often looks at another screen to his right to check what to do next. Still takes skill to know what you are doing of course. But don't let this video fool you into thinking that the dude is just coming up with the code on the spot on first try.
It's scripted and obvious that he's practiced it many times. And the quality of his code is utter shit. Stop wishing you were like the programmers you see on youtube, you have the potential to be better.
This is awesome! It shows how practice can give you the ability to not only build "working" applications in record time, but compete in hackathons. Everyone agrees that it takes a team to build a polished application in a reasonable time-period, but an individual can reach the point of building MVPs within minutes. Its amazing.
The part that's missing is the planning that went into it. As a coder, I was amazed how much quicker I coded by just mapping out what I need to get done. If not on paper, atleast make some mental notes.
Hopewell Mbuli That’s a really good point. Just taking the time to write down all expectations and requirements prevents you from doing a lot of backtracking and wasted time
All I can say is that with programming, practice makes perfect. The real issues come in when you are not prepared for a question and you need to sit and think what you will be using to make your code work. But well done nevertheless, very few people can even type an email that fast. Was fun watching though
@@reeve8640 i think you misunderstood. he's saying that it wasn't coded live; he's copying code off of the other screen making it more like a typing test than actual live coding. if you didn't misunderstand, i'm not quite sure why you'd ask, "you can program?" whether or not he can code has nothing to do with the statement he made.
"Oh yeah, gimme some pie" lol. Solid performance! I really enjoy these types of videos. It helps me wrap my mind around the whole concept of programming without feeling like I am climbing up a mountain with a blindfold on.
After working with C/C++ I wanna die when I keep typing semi colons but python doesn't have them. Let's not even talk about pointers..ugh, I just hate python
am I the only one where it's not working? I got a default in the curse file "Terminal not found" Traceback (most recent call last): File "/Users//PycharmProjects/Games/Snake", line 6, in s = curses.initscr() File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/curses/__init__.py", line 30, in initscr fd =_sys.__stdout__.fileno())
Probably a good time to remind everybody that of course I had notes on another screen. I've made no attempts to hide that and I've mentioned this at least 50 times in this comment section.
Traceback (most recent call last): File "C:/Users/Stop lookingg at my name/Documents/2snake.py", line 2, in import curses File "C:\Users\Stop lookingg at my name\AppData\Local\Programs\Python\Python37-32\lib\curses\__init__.py", line 13, in from _curses import * ModuleNotFoundError: No module named '_curses' Process finished with exit code 1
Meanwhile I'm like
>print("Hello World")
>*stares proudly*
>gonna start my software house tomorrow
Me too feel like this.....😀
lmao dude, I feel you.
Same here
Don't worry you guys will get better, I used to feel that. The worse you feel about yourself, the more you'll want to improve, and so you'll get better. 3 years ago, this guy would be my idol, now he is just another coder to me
MrKagemitsu lmao same here!
Me: **learns to program "Hello World"
After 5 mins
Also me: **Searches "How to build Pubg in Python"
Sad life 😢😢
😅
THat is so true but so false
lol
You are so funny. you must be a youtuber. 😆😆😆
In python you can also do something like this:
1.Create AI
2.Request him to make snake.
3.Profit
Haha
awesome ! :)
Probably in 2021
MicroPanda how please!! /-\
stonks
Him: snake game in 5 minutes
Me: Ima copy that all down
me 30 minutes later: *stares proudly at screen*
@Live, Love and Skate yes lol its work
@@shifajakati889 u must download some program first.I forgot the name lol
Sebastian Marpaung: You mean Pycharm?
Do you really thing he does this without preparation?
Yeah tomorrow I am gonna do that too .I mean I will try
he programed the game like writing an article for a blog, loved it.
you write an article in five minutes?? coz I dont! jajjaj
Yeah, I know right
Bro can you please tell me in which app or software you have programed pls tell I also want to try this please 🙏🏻🙏🏻🙏🏻🙏🏻it's a humble request
@@sohamsharma9157 PyCharm - tool name
@@m4leopard635 which module he installed for curses ? , i can't find that module , is it windows-curses?
2020: My 'Hello World' program is still throwing errors
Arwah Sapi Hahahahhhh 🤣 really funny, I guess we have the same problem even I'm an I.T 🤣🤣🤣
@@jesusdacoast872 🤣🤣🤣🔔😂😂😂🔔🔔🔔🔔
' ' for python, " " everywhere else lol
print ('Hello World')
May ur soul R.I.P
print("helloWorld") lol
Engineer man: I have 5 minutes to develop a game
*imports math just to use the pi symbol*
I think what has to be realized is not only does he have years of experience: He one hundred percent did his research and practiced before hand. Y'all got this, don't let this put you down if it does.
He clearly did. He's constantly looking away at another screen - presumably copying his original code.
the only line I understood was import random
Yes
Lol same
I understood none I just started learning Python a wee ago and I'm only on list comprehension now and even that's still only touching the surface of what you can do with list comprehension
I also understood what the equal sign meant
200 IQ
He used additional packages, of course we can't understand.
Boss: how many days do you need to develop the new game?
Engineer man: Yes.
69 likes
nice
Acshkuakly the answer == "no"
@@EpicLokvanji the answer is in 1s complement 🙄🙄
Holy.... I laughed so hard
A DECADE
Using Python to create Snake...
_I see what you did there_
lol i get it😂
What version of python did he used?
@@janinefrias3003 python 3
python, cobra, anaconda who win?
Using Java to create Coffee next
5 years later
Engineer man: hello guys, today am gonna be making FIFA 26
* 15 minutes later *
And that's how you make FIFA 26 thanks for watching
You do know the mechanics take up about 2 months of work.
All the fifas are same so he made fifa 1000
@@FavFriedChicken It's a joke, of course he knows, if he didn't he wouldn't have done the joke
@@FavFriedChicken You do know that people exaggerate for comedic effect, right?
Well you start by copying Fifa 25 files...
Friend: Want to play Fortnite?
Engineer Man: Sure give me 5 minutes.
Please help me which software he is using to create this game
@@NarenderRavulakollu I can't be 100% sure but to me it looks like Pycharm. That's what I use to program in python and it looks very similar
Thanks @kevin
@@NarenderRavulakollu he uses atom
@@NarenderRavulakollu atom and running the program through terminal
Now make GTA V
Rzyas in 10 Minutes
*1.0 minutes
0.1 MIN@@Crowen.
lol
Oh yeah ....
Lost you at “engineer man here”
JAJAJAJAJ
Hahahhaha deberia tener miles de likes.
Just copy everything he made
@@thegameofthelords6185 I'm getting a curses module not found error
Mom: time to sleep
Engineer man: give me 5 minute mom
Mom: oh ok
Engineer man :
That's nothing! I can do it in a whopping 11 hours (and it still won't run properly)..
that's awesome, dude!
Snakes don't run dude 😂
Same hahaha!
@@shamanthkumar5017 He meant that the code won't run properly
@Imnot John r/woosh
this guy: creates snake in under 5 minutes
me: proud of the lines of code i copied from the book
I have an error PLS HELP :
[Running] python -u "d:\python in 1 video\snakes.py"
Redirection is not supported.
[Done] exited with code=1 in 0.179 seconds
@@yashkumarjha5254 I faced same issue with python 3.8
@@yashkumarjha5254 you need to run " pip install windows-curses " in command prompt
@@elferson Bro I have now installed vs code in linux , and have installed modules like flask,pandas, playsound,,, but every time I run code in vs it gives me import error: module not found,,, please help
@@yashkumarjha5254 Pip might be installing modules in the wrong directory. If that is the case there are a lot of different causes for this problem and I can't give you a solution. Try looking at stack overflow threads.
It would have been great if you did a follow-up video explaining your code in a little bit more detailed manner with a longer video
It's quite basic though, you'll be able to understand it
@@imranabbasi9535 it really is quite basic haha
i like how he had finished a whole snake game in 5 minutes while i'm here struggling with installing packages and libraries
>print("hello world")
"I'm in"
In my case, "fail" was defined.
Because it recognises 'fail' from a failure😂
@@sandy456j R/Whooooosh
@@carsontaylor2389 r/ihaveareddit
NerdWithFriends you’re doing the exact same thing by linking a subreddit
No I’m not, he r/whooooshed him for no reason, I’m saying the guy he whooooshed got the joke
Boss: U have one week to deliver the project
Me:
import Engineer Man as myself
Help me which software he is using to create this game
@@NarenderRavulakollu i think it is PyCharm
@@ergpopler413 Nope,he is using atom(a text editor) and running the program from the command line.
Narender Ravulakollu it’ll take u a while to get like this guy at a certain point in someone’s coding career they have coded so much that they dream in code
well i got the joke but while importing engineer man it will throw a error because Man is treated as another argument.
THANK YOU! I’m learning Python currently. I watched this video and followed along in VSCode. If I expose myself to as many projects/tutorials as possible and try to script or program some, I will learn to become proficient. I humbly ask, PLEASE KEEP THEM COMING.
Great job. I liked the way you explained the idea behind each line of the code while you were writing the code...
I had to do it kinda fast, but I tried.
Een agha khaili baahoosheh !
Why do you have to do it timed or under time pressure (especially since you spent quite some time thinking about it)? The educational value would be more if you spend more time explaining the logic.
Having the education behind the video is very helpful, but on the other hand. I felt the way he came about it was helpful. He made it fun to want to learn. Great video man and thank you.
the point of this video wasnt to teach how to write a game of snake
Man I just started learning python and this was motivating.... Genius.
I just started to learning python too, really cool language
@@gabriell.pereira535 same here, i literally just got it like 2 hours ago, im hoping to make some cool things in the future
@@otterr209 lmao I've also started learning python.
I'm watching tutorials of giraffe academy 😅
lol i just started learning python also and i begun with Giraffe Academy too
@@gabriell.pereira535 me too
Who knew this comment section would be this funny?. 😂😂
Hahaha. I literally only watch the comment section once in a while. And this time I'm already stuck here for 5 minutes
Am sick and tired of liking each and every comment I come across cause they're all good
Help me which software he is using to create this game
@@NarenderRavulakollu I believe he used PyCharm
"Creating a snake game in substantially longer than 5 minutes, putting the code on my second screen, and then re-typing it in under 5 minutes"
Creating a Python game with Snake in under 5 minutes
Дэниэль Аубакиров What why did you restate what the title said
Danneh SG read it again
ur so dumb XD
Kanny MäcKornmick I think Danneh SG legit didn’t read the title probably
SilentNite well then i should deleze the comment
I lost you at (import)
I can relate
@@kaarukun1651 can anyone tell me what the hell import does
@@rimskyrichard8651 Import is used for second files, in this case, he has two imported files, random and curses, these are two separate files that he has that are .py files. So basically it takes anything that is in the other file and allows it, and the variables inside and anything else to be used in the first snake.py file he was using. From- A kid in his first year in a class for python!
rimsky richard it imports files. For example you can't use randint() without doing import random
i dont find module curses.so what is that? and where can i get it?
Not needing a 5 minute one..instead a 30 minute one explaing each and every line used.
It’s not a tutorial
@@alextsukada4013 That's the point lmao
r/thatsthejoke
@@theparrot271 r/ihavereddit
Alex Tsukada My point was If this was a tutorial then it would have been great..
He does explain almost every line. Just pause after each line you don’t understand. Follow along by coding and you will most likely understand it.
I was like “huh” for the first 5:38 seconds
Better then me as I only understood at 5:40
i only understand when i do: CTRL+C CTRL+V :)
Boss(after the meeting): So this is how we are going to code the software any questions and engineer man pls concentrate on the meeting don't play with your laptop.
Engineer man: Sir, already finished coding it.
🤣🤣🤣🤣👌
😂
I don't get the point of these kind of videos. This isn't a 5 min coding challenge. This is a how fast can I copy my precoded game into an empty file...
Do you really think he does this with no preparation? If yes you have no idea of coding or writing your own computer programs.
I would love to see a real tutorial on how to make games, were he explains everything but for this content I can go on stackoverflow.
Please correct me if I am completely wrong
I just assumed nobody actually thinks that I conceptualized, designed, and coded, from scratch, everything in 5 minutes...because that's impossible.
Engineer Man Thanks for your response. I study computer science now, so I know that it is not possible to get something like this done in 5 minutes. I would love to see you explaining why you use all the commands and showing how I can do this myself. This video has for someone, who wants to learn to code properly only a small value.
Alle Gaming TV still, it only takes 5 minutes to punch in the correct code... Of course research and development will take longer.
Alle Gaming TV you make a great point. I know there are definitely people who assumed that he just code and plan everything live within 5 mins
Alle Gaming TV you must be awesome at parties. His preparation for this is not the hour or two of prep, but the years of studying computer science, coding and writing applications leading up to it. The only case your argument makes sense if it is done by a non-computer science person or perhaps a baby. Then everyone could be marvelling at such a feat, but you likely would just be shitting on that too.
Now do it in C.
Scary Punk Goose I actually was going to, in keeping with the rest of my videos, but I can't type and think that fast.
Definitely understand that it would be a bit of a stretch to expect it in 5 minutes, but do you think you could do a longer video implementing it in C?
Yes, that seems reasonable.
Luke Spademan byte code? Lol!! I program using laser to flip bits
best book/material to learn python?
You can tell this man is a programmer. He has nothing else in his house but a computer and desk.
Great job, thank you! For anyone following along in python 3.6, when you get the error about w.addch() "TypeError: Integer argument expected, got float", just convert them to ints by surrounding the first two arguments for the .addch() with "int()". Again, thanks Engineer Man! I'd love to have more of these :).
can you paste the line of code here? im having problems, not sure where to paste the int()
@@fractaldesigns7175 It should look like this
w.addch(int(food[0]), int(food[1]), curses.ACS_PI)
w.addch(int(snake[0][0]), int(snake[0][1]), curses.ACS_CKBOARD)
Just do it for all four w.addch functions and you should be good.
@@disicinco15 Okay, thank you!
Me in Python terminal:
x = 1
While x == 1:
Print("69420")
Me: nice *∞
me in python terminal:
b = 2
while b > 0:
b *= b
print(b)
big number appear
69420
69420
69420
69420
69420
69420
69420
69420
69420
69420
69420
69420
69420
Use
Break
@@nehavishwakarma7557 what would you need break for in my or finna's examples
Finna Yeet please stop...oops infinity
Watching other people coding is REALLY FUN.
But coding by yourself is HEADACHE 🌚
اخ العرب it’s really fun until something breaks lol
@@rban123 it all was fun and laughs untill the shell did not respond
It is actually
oh
Its fun until it says syntax error and you dont know what you did wrong
On a school day:
Engineer man: Oh shit I forgot to my python homework
Teacher: Where is your homework
Engineer man: Ma'am I am just finding the file on my laptop
*meanwhile* he does his homework in 5 mins
The way he types is satisfying
Wow, a lot of python newbies in the comments, seems like you inspired a lot of people to try coding
Good job
Too many people that can't figure out how to install curses.
@@EngineerMan lol
@@EngineerMan 😂😂
@@EngineerMan how much you earn from programming
@@EngineerMan Yeah I had to manually install an older version of curses(I use python 3)
Also, (i guess that's new in python3), int/int returns a float.
you just have to convert the numbers to int (x and y coordinates for example)
Me: Tries to understand
Understands nothing
Also me: Calculates basic addition
*happiness noises
Lmfao 😂 😂
dude I've watched this video a few times and everytime I see this I'm in awe damn, just started teaching myself python, I'm pretty sure it's gonna take me years before I can do anything close to what you just did
Enjoyed the video, smashed the like-button, now it's pregnant.
mojo For the sake of all the stillborn dislike buttons I hope the seed is strong.
3 more months till the like gives birth
When's the baby shower?
just 2 months more, YEAHHH !
@@shubamkrishan7358 yap,2 months
Please make the same video by explaining.
So that we can also understand
yeh
He explains as he's writing the code lol
It’s easy to understand
@@TitouanYT not everyone is good at it like you lol
CR3ATUR3 i was joking, but it’s not the goal of this video to explain
From my perspective, this is God level right there. I'm light years away to get at his level...lol
He's just copying it? He often looks at another screen to his right to check what to do next. Still takes skill to know what you are doing of course. But don't let this video fool you into thinking that the dude is just coming up with the code on the spot on first try.
@@danyDesignsright bro
Bro u should trust on yourself .....u r greqter than him
It's scripted and obvious that he's practiced it many times. And the quality of his code is utter shit. Stop wishing you were like the programmers you see on youtube, you have the potential to be better.
the idiot memorized it
This is awesome! It shows how practice can give you the ability to not only build "working" applications in record time, but compete in hackathons. Everyone agrees that it takes a team to build a polished application in a reasonable time-period, but an individual can reach the point of building MVPs within minutes. Its amazing.
Me: let's play GTA6
Engineer man: Give me 5 mins let me write the code🤝
"while food is None" Relatable for hungry people everywhere.
Engineer man : let’s make something tht will take me 5m 😏
Keyboard: oh god please save me 🥺
😂😂
Humor doesnt exist in your life buddy(:
keyboard_reaction = "pls save me"
print(keyboard_reaction)
@@mootssss 😂🤣👍
Boomer joke
me : print (" Hello world ")
my mind : wow am so good!
also me : ' How to build Minecraft in python under 5 minutes '
Still stuck at "Hello world" compiler error!!😅😅
Bahahaha
That's like, impossible lmao
I got you... print(“hello cruel world, why is python so hard”)
Agrey saria,, use DEVC++
print ("Hello World!") Don't forget after you do this you are officially one step closer to being a Pokemon master
I mean python master.
Now you should try with the real snake game, Metal Gear Solid.
MGS
Me after learning printing Hello word
Also me: thinking to develop a game without any programing experience.
It's quick and short, he explains every line as he types so that was really educational.
Great video.
The part that's missing is the planning that went into it.
As a coder, I was amazed how much quicker I coded by just mapping out what I need to get done. If not on paper, atleast make some mental notes.
Hopewell Mbuli
That’s a really good point. Just taking the time to write down all expectations and requirements prevents you from doing a lot of backtracking and wasted time
My reading level: 10
My understanding level: 0
Interviewer : How good are you in python ?
Engineer : Yes
Just started learning to program today using python, and this has seriously inspired me! Can’t wait until I reach this level of expertise.
his 5 minutes are much more effective than I wasted 4 years in university to do computer science while learning nothing
Now let's create a snake game with Python
Whoosh
Done..!
Imma play this on 0.25 speed and finaly make mom proud
Merry Christmas and happy new year Brother
Glad to see your channel is doing great
wait, what's this I came here to see python creating snake.
Ikr I didn't see anything, I just saw the finished result :/ ???
Hahaha
Me : a= 1
Print (a)
*I am genius 😂
Me: a=1
print ('1')
Impressive!
Thanks!
Yeah it’s very impressive
All I can say is that with programming, practice makes perfect. The real issues come in when you are not prepared for a question and you need to sit and think what you will be using to make your code work. But well done nevertheless, very few people can even type an email that fast. Was fun watching though
I just copied everything it took me like half an hour and I got a syntax error from line *13* I made it like 7 actual lines of code
😂😂
Are you CS student?
have the same error. its something with import. cant find the folder or something
@@xGino_n u guys using pycharm?
Shubby yeah whats wrong with pycharm?
@@sahermikho nothing im just making sure
Badass programmer. 😅
Me: Still “Hello, World”
He’s legit reading code from another screen u can see it in the face cam
I like this guy, but this "in under 5 minutes" video is nothing but a typing test.
Mark Minneman you can program?
@@reeve8640 i think you misunderstood. he's saying that it wasn't coded live; he's copying code off of the other screen making it more like a typing test than actual live coding. if you didn't misunderstand, i'm not quite sure why you'd ask, "you can program?" whether or not he can code has nothing to do with the statement he made.
This was awesome, great stuff and done rather quickly and very fluid!
Me: I know programming
My friend: Make me a snake game
Me: print("🐍")
Me again: Can we play snake & ladders?
the thing you should do next is to put some decor in the background in less than 5 minutes.
Nice coding I like your style ;
everyone watching this vid: Hippity Hoppity your game is now my property
"Oh yeah, gimme some pie" lol. Solid performance! I really enjoy these types of videos. It helps me wrap my mind around the whole concept of programming without feeling like I am climbing up a mountain with a blindfold on.
coding train: *coding the snake game in 15 minu-*
engineer man: bet
Coding train does everything realtime, while this guy made it earlier then just retyped code, not quite the same.
After working with Javascript it's so nice to see code that isn't covered in semi colons.
After working with C/C++ I wanna die when I keep typing semi colons but python doesn't have them. Let's not even talk about pointers..ugh, I just hate python
Pluvo2for1 I use c# for Unity and all those dam semicolons...
Actually JS Standard Style recommends not using semicolons since they're not necessary. Be cluttered no longer!
@Sajo8 You have to respect the coding standards of each language. So no.
@@puskywastaken type them anyway to keep good habits, then when you are done, replace them all with nothing using find & replace
Just free the python. It's already a snake😂
😂
হ্যা ভাই সেই।
Underrated comment this one😂
Lol
Badumptss
I'm a medical student and I have zero idea about coding but the way he explains every code he writes just makes it so easier to understand
I'm looking at this video as a break while creating hangman
It has taken 4 hours and 10mimutes so far
Each pie the snake eats the decimal place increases in the value of pie
print("Done a great job bro!")
I love how you look so chill and relaxed in that seat in every video.
Can you explain this slowly in another video series? I have been looking for such series on YT but can't find any.
You don't know how to search
Try t-series
Switch of cc.
Go for CS Dojo
Try “ learn python”
Do people write code this fast or was he just prepared?
He was prepared. Coding needs reflexion. Reflexion can take many minutes.
But maybe he's not prepared.
@@Jomtek You can see him copying code from another source so he was prepared
you can see hime averting his eyes often to his right.
You're a legend, inspired the shit out of me. 👌🏾
That's really great! Keep working on your trade and you'll do anything you want to.
Engineer Man Thanks man, that's the goal. 👊🏾
My Dad a JavaScript programmer: YOU ALWAYS FORGET THE SEMICOLON
I can make one in 5 seconds. Just copy-paste a program. 😂
I bet you can't in 5 minutes even if you copy the code coz it will give a lot of errors x,y,x modules not installed etc
Which compailer did u used?
I can in 0.0000001 sec
You are such a noob. CTRL + V takes less than a sec lol
Hehe.. soo funny.. i die right now
I can make a snake game in less then 2 seconds:
Ctr+C, Ctr+V
Wow. Genius
U r super 😂😂😂
oh my god, einstien is jealous!!!!!!
And you still have errors. Ctrl*** not ctr 😂
@@NivAwesome wtf lmaoooooooooooooooooo
am I the only one where it's not working? I got a default in the curse file "Terminal not found"
Traceback (most recent call last):
File "/Users//PycharmProjects/Games/Snake", line 6, in
s = curses.initscr()
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/curses/__init__.py", line 30, in initscr
fd =_sys.__stdout__.fileno())
I got the same and after searching for so Iong I still don't know how to fix it
i also got the same problem ? do u get it?
we all know how happy we get when we type our fist line of code and say straigt asaw
print("I'm gonna be a coder right now")
you: typing the code + explain =
It is a third party module, you would need to install it
Me too
There's some problem with Windows and curses
@hawk468 Hey! I still have the problem after installing curses. Can you hel me out?
Try 'pip install windows-curses' for Windows
He was clearly looking at an another monitor
maybe his camera was in a different spot than his monitor.
@@timmyfan55 I am his brother he told me that he cheated.
Probably a good time to remind everybody that of course I had notes on another screen. I've made no attempts to hide that and I've mentioned this at least 50 times in this comment section.
Engineer Man oh
Engineer Man I was just messing around
And i thought writing hello world in 10 seconds was an achievement
😂
He keeps looking over to the side so he obviously already did this and is just rewriting it 😂
Hi.. cool video .. can u do a video on screen saver with some graphic ..more specific an image or time .. please .. thank you .. good job keep it up
are you indian
@@donutbedum9837 LOL
@@donutbedum9837 I'm indian...... and i think you're funny
why so many ellipses lmao
Didn't understand but looks cool😂
Traceback (most recent call last):
File "C:/Users/Stop lookingg at my name/Documents/2snake.py", line 2, in
import curses
File "C:\Users\Stop lookingg at my name\AppData\Local\Programs\Python\Python37-32\lib\curses\__init__.py", line 13, in
from _curses import *
ModuleNotFoundError: No module named '_curses'
Process finished with exit code 1
got the same error bro :(
Got the same(
@@69ingYOface +
use pip install curses in your command prompt for windows
Clarity of purpose is a key factor in programming.