Today we have simple snake game (Fully Commented Code) 😉 LIKE video to support me create new content 🙏❤
@ipigtaiwan Жыл бұрын
nice
@AsmrProg Жыл бұрын
Thanks 🙏❤️
@jameskeita9657 Жыл бұрын
what kind of fon in vs code do u have i mean tries ?? maybe extension ??
@AsmrProg Жыл бұрын
Font?! Cascadia code
@10kgTNTequivalent Жыл бұрын
you did not fixed that you couldnt go up if snake was going down, you had to go on sides first. idk about going down if going up, propably same bug. :(
@erfanhap4758 Жыл бұрын
well done mate, i've kept tracking your progress. You are doing great! keep it up dadash
@AsmrProg Жыл бұрын
Qalbi ke erfan jan 🙏❤️
@shadower3707 Жыл бұрын
I like the sound of this keyboard, feel like someone scratching my head , keep it up
@AsmrProg Жыл бұрын
Thanks bro 🙏❤️
@brians4265 Жыл бұрын
Man this is amazing , been watching a lot of your videos and I always learn new things, also,the speed with which you code is impressive . I’m learning how to code now and can only aspire to be able to code like you someday . Was wondering , how many years experience you have ?
@AsmrProg Жыл бұрын
Thanks bro 🙏 ~7 8 years coding in different languages
@jaserogers997 Жыл бұрын
He's not coding that fast - you can see little jumps in the video where he has obviously stopped to think about the next step.
@AsmrProg Жыл бұрын
Yes, video is edited 🙏
@PitchLost Жыл бұрын
@@AsmrProg Hey Mate. Do you also write the code before filming the video? Very well done I am attempting to make the same game right as I write this
@AsmrProg Жыл бұрын
@warthunderlandings3062 hi, yes! Also I’m edited video and removed searching sections 🙏
@UniQueVpN Жыл бұрын
It was the code he was looking for, thank you very much ♥♥🔥
@AsmrProg Жыл бұрын
Thanks bro 🙏❤️
@vini8v8 Жыл бұрын
To prevent food from spawning inside a snake's body part, you can add this checker inside the 'updateFoodPosition'. So, whenever food spawns inside the snake, it will generate a random position again, until food spawns in a free space. //Update food position const updateFoodPos = () => { foodX = Math.floor(Math.random() * 30) + 1; foodY = Math.floor(Math.random() * 30) + 1; //Check if food is at the same place as one of the snake's part for (let i = 0; i < snakeBody.length; i++) { if (snakeBody[i][0] == foodX && snakeBody[i][1] == foodY) { updateFoodPos(); } } };
@AsmrProg Жыл бұрын
Oh thanks for additional info 🙏❤️
@vini8v8 Жыл бұрын
@@AsmrProg Thank you for your work and for all the inspiration you provide me ♥
@AsmrProg Жыл бұрын
@vini8v8 🙏❤️
@lucabarrientos1864 Жыл бұрын
Hermoso tus proyectos y tu codigo, inspira mucho. Saludos desde Argentina
@AsmrProg Жыл бұрын
Thanks a lot 🙏❤️
@hhhhhhhhhhghdsf Жыл бұрын
I can't believe it got so many views😮 It's really cool, congratulations😊 You should be happy😊 I've always wanted to code a weather forecast, thanks to you, I will❤
@AsmrProg Жыл бұрын
Thanks a lot 🙏❤️
@ThomasFirsich Жыл бұрын
Thanks for another great tutorial!!
@AsmrProg Жыл бұрын
🙏❤️
@ivanavatkov7618 Жыл бұрын
Really inspiring, thanks for your videos!
@AsmrProg Жыл бұрын
🙏❤️
@codehandasmr Жыл бұрын
Liked!
@AsmrProg Жыл бұрын
Thanks 🙏❤️
@Codeminton Жыл бұрын
An impressive video made with care 😳
@AsmrProg Жыл бұрын
Thanks a lot bro 🙏 such as your video’s ❤️
@Codeminton Жыл бұрын
@@AsmrProg Thanks 💌
@AsmrProg Жыл бұрын
🙏❤️
@trekkers2239 Жыл бұрын
Gonna try this next
@AsmrProg Жыл бұрын
😉❤️
@rope89 Жыл бұрын
Awesome video, great skills. QQ: What are the specs/brand of your keyboard?
@AsmrProg Жыл бұрын
Thanks, newmen gm610 keyboard
@rope89 Жыл бұрын
@@AsmrProg Thanks!
@AsmrProg Жыл бұрын
🙏❤️
@jackntv Жыл бұрын
Let’s say you want to make the snake go faster than right now What value we need to change ? (New to javascript here just started a course)
@AsmrProg Жыл бұрын
To increase the snake's moving speed, you can modify the interval duration of the "setInterval" function. The interval duration determines how often the "initGame" function is called, which in turn updates the game state and moves the snake. In code, the "setInterval" function is called with a duration of 100 milliseconds: "setInterval(initGame, 100);". To increase the speed, you can decrease this duration value. For example, if you set the duration to 50 milliseconds, the snake will move twice as fast: "setInterval(initGame, 50);".
@jackntv Жыл бұрын
@@AsmrProg Thank you so much!!!
@AsmrProg Жыл бұрын
🙏❤️
@yt-user2176 Жыл бұрын
great content! btw what keyboard is this?
@AsmrProg Жыл бұрын
Thx 🙏 newmen gm610
@bl4zetube757 Жыл бұрын
best more creative idea
@AsmrProg Жыл бұрын
Thanks bro 🙏❤️
@ledog6953 Жыл бұрын
Came across your video. Amazing video! about your vscode snippet, may I ask what extension that is?
@AsmrProg Жыл бұрын
Thanks a lot bro, Which extension you saying? i have meny extensions!
@ledog6953 Жыл бұрын
@@AsmrProg the one you type span.{className} and fill in the rest for you
@AsmrProg Жыл бұрын
It’s vscode default, but you can use emmet in other code editors, it’s emmet features 🙏
@aissa-dev1 Жыл бұрын
i love your videos bro
@AsmrProg Жыл бұрын
Thanks 🙏❤️
@user-nacv-8867 Жыл бұрын
Fantastic upload 👍
@AsmrProg Жыл бұрын
Thanks 🙏
@meryameddaif4951 Жыл бұрын
Please can you make a video for different fonctionnality of vs code such as making a beautiful background like yours ❤️❤️🙏🏻🙏🏻🙏🏻✔️
@AsmrProg Жыл бұрын
Hi, i have a community post about it in my channel, check it 😉🙏
@meryameddaif4951 Жыл бұрын
@@AsmrProg ok 💞
@AsmrProg Жыл бұрын
🙏❤️
@craftopiaZone Жыл бұрын
wow nostalgic game
@AsmrProg Жыл бұрын
😉🙏❤️
@SHUKLA.NAMANX Жыл бұрын
Bro, please give me link of your mechanical keyboard
@AsmrProg Жыл бұрын
Hi, in this video it's newmen gm610, available in amazon website 🙏
@unusuariocomun8281 Жыл бұрын
Tomaré este juego lo mejorare muchísimo, serán zombies en lugar de serpiente y tendrá más acción. PD estará en la playstore
@AsmrProg Жыл бұрын
Keep going on 😉🙏
@mrtasos9196 Жыл бұрын
Can you create next a web application trivia where you can put your own questions etc.
@AsmrProg Жыл бұрын
Hi, video’s depending on votes in my channel community page, check it 😉🙏
@MrPorschkub Жыл бұрын
i love your video nice i tried flashing my keyboard with qmk i spent 1 day for nothing haha. idk what went wrong 😂😂
@AsmrProg Жыл бұрын
Thanks 🙏😉 keep it up
@Bongosiik Жыл бұрын
What Application u use to code? and by the way u do GREAT job. Wild Respect.
@AsmrProg Жыл бұрын
Hi bro, it’s visual studio code, thanks 🙏❤️
@MrGamersid Жыл бұрын
Hi, how could I increase the speed of the snake every time it ate the food? by the way good job I loved your video
@AsmrProg Жыл бұрын
You need just have a variable for speed then after eating food speed++.
@tLearningTree Жыл бұрын
what extension do you use for for syntax highliting?
@AsmrProg Жыл бұрын
Hi, check my GitHub, there is a repository about all of my vscode settings 🙏
@ЯрославКученко-в3д Жыл бұрын
Cool, thanks!
@AsmrProg Жыл бұрын
Thanks bro 🙏❤️
@GAbeszl9adhc Жыл бұрын
Hi, I just did this and it doesn't work for me at line 55 and the click code is the same and doesn't detect javascript, I don't know why I press f12 and it doesn't show only css and html
@AsmrProg Жыл бұрын
Hi, please check my source code on github, link in description 🙏❤️
@adarshdubey7865 Жыл бұрын
Bro uh really help me alott⚡⚡❤️🔥💝
@AsmrProg Жыл бұрын
😉🙏❤️
@EkoIrawandb Жыл бұрын
is possible to add some feature for pause?. 😁😁
@AsmrProg Жыл бұрын
Yes, but need code it again!
@JuanDRSoft Жыл бұрын
nice bro!!! 😍
@AsmrProg Жыл бұрын
Thx so much 🙏❤️
@adeptusxiao02 Жыл бұрын
COOLLL
@AsmrProg Жыл бұрын
Thanks 🙏❤️
@tev5388 Жыл бұрын
Is it your job? If so, how much do you get paid for coding a software like this? Great video!
@AsmrProg Жыл бұрын
Thanks, I didn’t get any money for this type of projects! It’s just for youtube!
@tev5388 Жыл бұрын
@@AsmrProg keep up the good work
@AsmrProg Жыл бұрын
🙏❤️
@Harbor811 Жыл бұрын
14:51 is there any particular reason why you traverse the snake body array in reverse order?
@AsmrProg Жыл бұрын
We reduced it’s body to push it to forward
@Harbor811 Жыл бұрын
@@AsmrProg Ah I see, that's a pretty smart way of doing it
@AsmrProg Жыл бұрын
😉🙏
@mikearnold1927 Жыл бұрын
Hello! Please also make one of a gem that is brilliant cut and can be rotated. Thanks!
@AsmrProg Жыл бұрын
Hi bro, i'm answered your comment in another video!
@xboyghost_ Жыл бұрын
thx for a new video programing idea
@AsmrProg Жыл бұрын
Thanks bro 🙏❤️
@sdgdsgsdgdsg1594 Жыл бұрын
how did you make this background in visual studio code? And such icons near the index and css and the text you have a nice design, advise the extension
@AsmrProg Жыл бұрын
Hi, for background use glassit extension and for icons use “icons” extension 🙏
@sdgdsgsdgdsg1594 Жыл бұрын
@@AsmrProg Ty brother
@AsmrProg Жыл бұрын
🙏❤️
@AceFROMSpace_ Жыл бұрын
Hey i have question can u aslo use python ?
@AsmrProg Жыл бұрын
Hi, no I’m worked python just to know main structure!
@Zaico-np9jx Жыл бұрын
Which editor do u use ?
@AsmrProg Жыл бұрын
Hi, it’s visual studio code
@Mahmoud_176 Жыл бұрын
What does "Shifting Forward Values of elements in snake body" do? thanks in advance
@AsmrProg Жыл бұрын
That changes snake body array to forward one by one
@artem_bohak Жыл бұрын
Thank you for your content, I really wonder how I can install such a theme as yours. What is it called?
@AsmrProg Жыл бұрын
Hi, it’s glassit extension + reui or firefly pro theme
@artem_bohak Жыл бұрын
@@AsmrProg thank you again)
@AsmrProg Жыл бұрын
🙏❤️
@thanhtoannn Жыл бұрын
What theme are you using?
@AsmrProg Жыл бұрын
Hi, Reui, Firefly pro
@dilqdirov2973 Жыл бұрын
i dont understand changeDirection function,please explain this function and what is velocity and where did his values come from
@AsmrProg Жыл бұрын
Change direction function is for snake head direction changing and velocity is for it too, change x and y based on key press!
@dilqdirov2973 Жыл бұрын
@@AsmrProg What is the meaning of these values '-1,1,0',i am sorry,i am beginner in js
@AsmrProg Жыл бұрын
It’s x y value that sets position of snake
@ahmadshahidi8101 Жыл бұрын
You are amazing
@AsmrProg Жыл бұрын
Thanks a lot 🙏❤️
@asmrcoding_ Жыл бұрын
Nice video 👍 good luck 🤞
@AsmrProg Жыл бұрын
Thanks bro 🙏❤️
@Pedro..778 Жыл бұрын
bro where did u get you keyboard from?
@AsmrProg Жыл бұрын
Hi bro, amazon website!
@miiiiikeee Жыл бұрын
how come you type x with your index finger instead of your middle finger?
@AsmrProg Жыл бұрын
according to habit
@superhero25e Жыл бұрын
@@AsmrProg same, middle finger was very uncomfortable for me
@AsmrProg Жыл бұрын
It’s ok for me but not in all keyboards!
@adityadeshmukh1121 Жыл бұрын
Bro please tell me how do you got that cursor trail, i really want to know about that please tell me
@AsmrProg Жыл бұрын
Hi bro, it’s screen recorder effects!
@CineAnimeAMVs Жыл бұрын
What is your keyboard?
@AsmrProg Жыл бұрын
Hi bro, in this video newmen gm610
@cankrs Жыл бұрын
How do you position your camera to shoot the keyboard from this angle?
@AsmrProg Жыл бұрын
Hi, with T base
@cankrs Жыл бұрын
@@AsmrProg oh thanks for your answer but what is t base :D
@AsmrProg Жыл бұрын
T Camera Holder
@parsahashemi9037 Жыл бұрын
damet garm man asheghetam mitooni ye chanle amoozesh ham dorost koni ?
@AsmrProg Жыл бұрын
Fada, che channeli!
@harambe9461 Жыл бұрын
How about something with React Native
@AsmrProg Жыл бұрын
Hi, yes we will have full playlist of it 😉
@Landscapephotographyvlog Жыл бұрын
Great ideas
@AsmrProg Жыл бұрын
Thx so much 🙏❤️
@2syk4ever Жыл бұрын
Could you make a video review your keyboard 🥺
@AsmrProg Жыл бұрын
Hi, search newmen gm610!
@_bailon_8022 Жыл бұрын
as a text editor do you use VScode?
@AsmrProg Жыл бұрын
No, text editor notepad++, for coding im use vscode
@straightSekiro Жыл бұрын
How can I make the same smooth typing of text as in the video? (I mean in editor)
@AsmrProg Жыл бұрын
Hi, search cursor effect in vscode settings and set it on smooth
@straightSekiro Жыл бұрын
@@AsmrProg thank you very much😇
@AsmrProg Жыл бұрын
🙏❤️
@speeddragon48 Жыл бұрын
can you please tell your keyboard name?
@AsmrProg Жыл бұрын
Hi bro, newmen gm610
@FolwinEsports Жыл бұрын
invest in a good silent mechanical keyboard buddy
@AsmrProg Жыл бұрын
Hi, thanks for suggestion 🙏
@noob_4986 Жыл бұрын
which font are you using in vscode? how do I get it?
@AsmrProg Жыл бұрын
Hi, it's "Cascadia Code", available on google!
@DBGamesOficial Жыл бұрын
Which is the keyboard?
@AsmrProg Жыл бұрын
Hi, newmen gm610
@modyhh7451 Жыл бұрын
I'm good at html and CSS But in js I feel weak How long does it take to learn Javascript well? What are the sources that may help me in learning Sorry, I can't speak English, so I translated from Arabic to English I follow you from Egypt You are an amazing person, keep going
@AsmrProg Жыл бұрын
We will have a full course for web development in channel, i will tell subs in community post soon 😉
@vaishnomatabhaktamandali2000 Жыл бұрын
@@AsmrProg Ya please help us in javascript🖤
@AsmrProg Жыл бұрын
You will be surprised with best js full course 😉
@_elektrikal_ Жыл бұрын
It took me around 2 months to learn the fundamentals and around 6 months to learn intermediate JS. Keep in mind that I was programming 2 hours a day.
@AsmrProg Жыл бұрын
Yes, but with experience you will be legend in coding!
@SilasJrOficial Жыл бұрын
Extension for this glass theme, pls!
@AsmrProg Жыл бұрын
Hi, it’s glassit extension 🙏
@zohaibs3693 Жыл бұрын
What keyboard is that?
@AsmrProg Жыл бұрын
Hi, this one newmen gm610
@zohaibs3693 Жыл бұрын
@@AsmrProg thanks mate. Videos are amazing, genuinely help me relax 👍🏽
@AsmrProg Жыл бұрын
🙏❤️
@hehebuoyyy2200 Жыл бұрын
why it doesnt work😢 so many errors i have done everything as u typed but still somethings wrong😢😢😢
@AsmrProg Жыл бұрын
Hi bro, check description, source available on my github and you can fix errors 😉🙏
@hehebuoyyy2200 Жыл бұрын
@@AsmrProg got it thankyouu
@AsmrProg Жыл бұрын
🙏❤️
@ChaqChan15 ай бұрын
Cool
@AlI0901-1 Жыл бұрын
Good game 👌👌👌👌
@AsmrProg Жыл бұрын
Thx 🙏❤️
@barisu4755 Жыл бұрын
Cok iyi olmus 💪 Telegramin var mi kardes?
@AsmrProg Жыл бұрын
Hi bro, yes link in my channel about page 🙏❤️
@RajAryan-tp6qf Жыл бұрын
Kindly change your vs code background the code is not visible clearly
@AsmrProg Жыл бұрын
Hi, in new video’s changed!
@_bailon_8022 Жыл бұрын
what theme do you use?
@AsmrProg Жыл бұрын
Firefly Pro theme
@atharvnasare8962 Жыл бұрын
Which language he use to make this game
@AsmrProg Жыл бұрын
Hi, it’s web coding with html, css and js 🙏
@atharvnasare8962 Жыл бұрын
Thanks bro
@AsmrProg Жыл бұрын
🙏❤️
@gabrielcarmnn Жыл бұрын
How do you put your vs theme like that ?
@AsmrProg Жыл бұрын
Hi bro, it’s reui theme + glassit extension!
@eraspusdev Жыл бұрын
how did you make typing animated
@AsmrProg Жыл бұрын
Hi, with vscode settings
@eraspusdev Жыл бұрын
@@AsmrProg thanks
@AsmrProg Жыл бұрын
🙏❤️
@HoangNguyen-ez1ek Жыл бұрын
how to you setup backgrounf vscode?
@AsmrProg Жыл бұрын
Hi, I’m using glassit extension
@HoangNguyen-ez1ek Жыл бұрын
@@AsmrProg thanh you👍👍👍
@AsmrProg Жыл бұрын
🙏❤️
@nurki9315 Жыл бұрын
Did you write this code before? Because you are so fast, that makes me think that you are looking some code.
@AsmrProg Жыл бұрын
Yes, codes written before and when i record video’s i run it with fixed bugs!
@Levi-sb3sn Жыл бұрын
the background photo is very distracting
@AsmrProg Жыл бұрын
Why?!
@Levi-sb3sn Жыл бұрын
@@AsmrProg I don't know, I can't focus when I watch :(
@AsmrProg Жыл бұрын
Oh ok, i will change it in next video 🙏😉
@SuhaYlmazok Жыл бұрын
how can i change my vs background photo?
@AsmrProg Жыл бұрын
Hi, with glassit extension
@SuhaYlmazok Жыл бұрын
@@AsmrProg is it working on mac
@AsmrProg Жыл бұрын
Yes!
@SuhaYlmazok Жыл бұрын
@@AsmrProg are u sure because i couldnt make it
@AsmrProg Жыл бұрын
You need just install it then make your vscode transpaernt, then everything you have behind it will shown!
@sunnyheheheh9401 Жыл бұрын
You should learn touch typing it will improve your typing experience once and for all and will prevent making any odd movements with the hands and fingers
@AsmrProg Жыл бұрын
Oh ok bro 🙏
@mehrnooshroostazadeh615211 ай бұрын
Why dollar sign is not working for me ?
@AsmrProg10 ай бұрын
Sorry?!
@garikgasparyan1668 Жыл бұрын
@AsmrProg Bro I have a one bug Can you Help Me?🙂
@AsmrProg Жыл бұрын
Hi, what’s problem?
@pedromoreno2798 Жыл бұрын
Muito bom
@AsmrProg Жыл бұрын
Thanks 🙏❤️
@realsamirop Жыл бұрын
KeyBoard?
@AsmrProg Жыл бұрын
Hi, in this video newmen gm610
@bhaiyaG-f2t Жыл бұрын
what is the thing use in the cursor tell me plz
@AsmrProg Жыл бұрын
Hi bro, it's screen recorder effect!
@bhaiyaG-f2t Жыл бұрын
@@AsmrProg how i can use
@sayaanda8698 Жыл бұрын
The control button is ruined
@AsmrProg Жыл бұрын
No! I’m pressed it bad!
@sam-of7de Жыл бұрын
nice I tried ur code and i spent 1 hour for nothing HAHA idk what went wrong
@AsmrProg Жыл бұрын
Hi bro, code is correct! I think your code has bug, check my source link in description 🙏❤️
@sam-of7de Жыл бұрын
@@AsmrProg nah ur code is fine, its just idk what I put wrong on the javascript part, its my first time learning java, ill get better
@sam-of7de Жыл бұрын
@@AsmrProg Thanks bro I checked ur code and it works fine, appreciate it
@AsmrProg Жыл бұрын
Keep going on
@AsmrProg Жыл бұрын
Thanks bro 🙏❤️
@Glazemeal Жыл бұрын
bro my code don't work?
@AsmrProg Жыл бұрын
Hi bro, i think it’s has bug, check my source, link in description 🙏
@Glazemeal Жыл бұрын
@@AsmrProg thank u bro Ok
@AsmrProg Жыл бұрын
🙏❤️
@SHUBHAMGUPTA-gy7ev Жыл бұрын
How much you earn from this channel ? And please give me some SEO tips
@AsmrProg Жыл бұрын
Hi bro, DM me on telegram, link on my channel about page 🙏
@SHUBHAMGUPTA-gy7ev Жыл бұрын
@@AsmrProg I don't use telegram plzz tell here
@SHUBHAMGUPTA-gy7ev Жыл бұрын
@@AsmrProg plzz tell me. You can delete your comment after 1 minute....I really want to know plz
@AsmrProg Жыл бұрын
Bro it’s depending on monthly views, dm me i will send you full data!
@AsmrProg Жыл бұрын
Install it i will help you 😉
@Tiger367 Жыл бұрын
first
@AsmrProg Жыл бұрын
Yes 🙏❤️
@Harrier97 Жыл бұрын
Can you give me the purchase link for that keyboard?
@AsmrProg Жыл бұрын
Hi, search newmen gm610 on amazon site 🙏
@Tenaciouss666 Жыл бұрын
@@AsmrProg hey, what switch you have?
@AsmrProg Жыл бұрын
Blue Switches
@Tenaciouss666 Жыл бұрын
@@AsmrProg Thanks!
@AsmrProg Жыл бұрын
🙏❤️
@sahadathossain6940 Жыл бұрын
How can i get the theme you are currently using🥹
@AsmrProg Жыл бұрын
Hi, it's Firefly Pro Theme
@ipigtaiwan Жыл бұрын
do you have discord
@AsmrProg Жыл бұрын
No but i will create 😉
@ipigtaiwan Жыл бұрын
@@AsmrProg nice
@vaishnomatabhaktamandali2000 Жыл бұрын
@@AsmrProg Yes please do😎Btw I'm a verified developer there if you need any help tell me