This definitely works; I'm actually watching this while doing my first refactor of the first apps that I've built over the past few months. Very therapeutic scenery and natural sounds (and the typing too). Great film making by the way!
@semirsinani13422 жыл бұрын
when i saw the video format i thought of Takuya immediately. I am glad that you gave credit in the video.
@Coding_Asmr_PraDev2 жыл бұрын
Need more these brother, it motivates me to not quit what I have been doing.
@MudassirKhan-sx9jy2 жыл бұрын
👍Dev as life . 👍Chris courses .
@DisneyToons_0074 ай бұрын
Brilliant teacher ❤❤
@gaganrastogi96242 жыл бұрын
Wow, you are also a fan of "devaslife". I love your videos too. Thanks for making these.
@ChrisCourses2 жыл бұрын
Big fan, thanks for watching!
@trashinGame2 жыл бұрын
man the scenery and the typing sounds make this an absolute banger of an ASMR video + u get to learn too!
@Nodsaibot2 жыл бұрын
but no socks with them sandals -100 points!
@neunmalelf Жыл бұрын
I really enjoy this format. 😊👍
@jinyoung-ch Жыл бұрын
Would you mind sharing how you managed to modify the opacity of the Sublime Text background? Looks awesome :)
@fullcourseyellow59402 жыл бұрын
How did u make ur code window be transpalent to the bg video?
@vaaaaaaaaan86782 жыл бұрын
This literally helps. I started to understand some parts that I cant understand before
@jonathanzhu69172 жыл бұрын
devaslife is amazing and I love his style of videos, honestly wouldn't mind seeing more people pick up on it!
@ChrisCourses2 жыл бұрын
Love his style, very peaceful and fun to make, can't wait to see more from him
@KaueO.Castro Жыл бұрын
@@ChrisCourses os night
@KaueO.Castro Жыл бұрын
Pode night
@KaueO.Castro Жыл бұрын
Pode night
@andreaspetersen266210 ай бұрын
When i go on pension after being a corporate dev most of my life, this is the type of stuff i want to do 😂
Nice style, I see you’re a fan of devaslife programming videos
@ChrisCourses2 жыл бұрын
Big fan, love his work 🙌
@senseiAree Жыл бұрын
Hey Chris, just a quick and real question... How did you kept ur laptop charged?
@ChrisCourses Жыл бұрын
The newest MacBooks have great battery life, think mine can go about 6-8 hours of basic use without a charge
@QkysenQ9 ай бұрын
damn@@ChrisCourses
@rupertodiaz86732 жыл бұрын
Great tutorial Chris, kuddos++
@biirdman892 жыл бұрын
really damn cool. as someone who has been self-taught for a while now, I'm happy I was able to keep up and understand what you were doing.
@ChrisCourses2 жыл бұрын
Awesome, glad you have the hang of it, takes some time for sure, but eventually you'll be able to code all of this stuff from your head as the knowledge continues to build
@comoyun2 жыл бұрын
quality content 👌
@notSoAnonyymus2 жыл бұрын
I'm not sure what tutorial you plan on doing next but what about rogue like or dungeon crawler?
@rummanmiazi30222 жыл бұрын
What is the code editor you use
@apartbrain2 жыл бұрын
Hi, can you tell which editor it is and how did you achieve transparent background?
@DwikiIkhwan2 жыл бұрын
What a fresh idea, great tutorial overall. Salute!
@mounir1012 жыл бұрын
So glad to see you with this tutorial. Thanks so much, bro.
@shinodesigns2472 жыл бұрын
This would be a dope series, great ASMR btw!
@Turbo_Waitress2 жыл бұрын
This is awesome. What type of laptop do you use for development?
@grivelator Жыл бұрын
Probably a MacBook with MacOS...
@peterweyland1172 жыл бұрын
Thank you!)) Great tutorials!))
@xcliber2 жыл бұрын
Forgot to swap one of the 'width' to 'height' when you copy/pasted the ball physics for bouncing off the bottom. That's why the ball's not going all the way down. I need to get back into programming.
@ChrisCourses2 жыл бұрын
This is true, noticed after the fact and was like: welp, too late now 😅 Fixed in the source and for the end screen preview
@xcliber2 жыл бұрын
May wanna mute the part of the video where you can hear Free Fallin' in the background. This style of video is pretty cool and I wouldn't want to see it taken down.
@briankgarland2 жыл бұрын
Didn't even look up as the girls walked by. True programmer. 😂
@ChrisCourses2 жыл бұрын
🤣🤣🤣
@dustintrombly Жыл бұрын
I assume this is an Apple silicon MacBook? Looks like one. The battery life, screen quality + brightness, and ability to actually use it on your lap without heating your legs is such a treat. I did something similar to this recently and was blown away at the realization that up until owning my M1, I wasn’t able to truly have an enjoyable extended experience taking my laptop outdoors.
@marcelo.victor2 жыл бұрын
Chris, hi, your subscriber from Brazil! Amazing simple Pong tutorial! Can you make a javascript tutorial on how to display a div on a button click, the div being always attached to the button by the ID (inserted dinamically via JS with "after" and show above/bottom or left/right of the button when this button is positioned at top, bottom, left, right of the window? Without this div created by JS being cut off screen? I have tried a lot but I'm bangging my head against the wall trying to do this!
@ChrisCourses2 жыл бұрын
Hey Marcelo, if you have a CodePen of your current work, shoot it over through this comment. I can make some quick edits w comments to point you in the right direction, should be relatively quick I believe 🙏
@marcelo.victor2 жыл бұрын
@@ChrisCourses thank you so much for being able to help me! I tried more, studied more and finally i did it! Please continue the AWESOME work on this channel!
@KylerTull-m5s Жыл бұрын
Hey @marcelo.victor, i looked into the comment and i think i found a way to do it: Dynamic Div #dynamicDiv { display: none; position: absolute; border: 1px solid #ccc; padding: 10px; background-color: #fff; z-index: 1; } Click me document.getElementById('myButton').addEventListener('click', function() { // Create a dynamic div var dynamicDiv = document.createElement('div'); dynamicDiv.id = 'dynamicDiv'; dynamicDiv.innerHTML = 'This is the dynamically created div!'; // Attach the dynamic div after the button this.after(dynamicDiv); // Position the dynamic div relative to the button positionDynamicDiv(dynamicDiv, this); // Display the dynamic div dynamicDiv.style.display = 'block'; // Remove the dynamic div after a certain time (for demo purposes) setTimeout(function() { dynamicDiv.remove(); }, 5000); }); // Function to position the dynamic div based on the button's position function positionDynamicDiv(div, button) { var rect = button.getBoundingClientRect(); var viewportWidth = window.innerWidth; var viewportHeight = window.innerHeight; // Check the position of the button relative to the viewport if (rect.top < viewportHeight / 2) { // Button is in the top half of the viewport div.style.top = rect.bottom + 'px'; } else { // Button is in the bottom half of the viewport div.style.bottom = (viewportHeight - rect.top) + 'px'; } if (rect.left < viewportWidth / 2) { // Button is in the left half of the viewport div.style.left = rect.right + 'px'; } else { // Button is in the right half of the viewport div.style.right = (viewportWidth - rect.left) + 'px'; } }
@armandsalle84472 жыл бұрын
Really nice !! How did you do the video editing with you code editor?
@yugimaniaca80432 жыл бұрын
Hello Chris, your video looks great!!! Can you do a video tutorial on how to apply the chroma key?
@ChrisCourses2 жыл бұрын
I could, but probably shouldn't since I know devaslife mentioned in one of his videos that he isn't ready to reveal that info just yet. Wouldn't want to disrespect him by revealing his channel's special ingredient, but to give you some direction, I did it all in post, meaning that there was no special setting I added to sublime to change the background or anything like that. Used Davinci Resolve and was able to get something going after 3ish hours of learning their color panel and chroma key tool. Hope that helps a bit!
@emanuelvidalrm2 жыл бұрын
nice homage to @devaslife
@Alb0z322 жыл бұрын
These javascript game tutorials are very helpful man, they helped me learn more about OOP in javascript and the game logic. Keep up the good work man :)
@comoyun2 жыл бұрын
how long have u been coding?
@Alb0z322 жыл бұрын
@@comoyun 3 years, mainly full stack(front end and nodejs with express and react). I also recently learned basics of java in a bootcamp
@comoyun2 жыл бұрын
@@Alb0z32 oh, that's awesome!
@rummanmiazi30222 жыл бұрын
Good good good good
@gnet8882 жыл бұрын
good idea
@martinthomas89552 жыл бұрын
How did you record this? its beautiful
@Nodsaibot2 жыл бұрын
You should declare or include a mini lib with shorthand names for common operations and methods? like OneLoneCoder does for example const select = el => document.querySelector(el); so you just do on the next line and ALL future DOM selects const canvas = select('canvas'); then include the lib in the comments? :D
@omenworks Жыл бұрын
@devaslife fan here ;)
@trashinGame2 жыл бұрын
congrats on 100k subs man! *Programming Elden Ring in the Park* when?
@simon-hb7wf2 жыл бұрын
I love the concept !! keep up the great work !
@rummanmiazi30222 жыл бұрын
How to install unity
@tojuju2 жыл бұрын
this is so cool. hope you have more of these
@bohardw18842 жыл бұрын
This video is familiar with Takuya's video! Its great
@souvikbiswas91692 жыл бұрын
Miss you!
@Skylla542 жыл бұрын
coded along with you, that was fun 😄👍 To keep up with you and doesnt loose track to often, i used `vi{zf` to fold the folders.
@05.aishiqmishra48 ай бұрын
I woke up and i saw this
@souvikbiswas91692 жыл бұрын
Where you have been!
@rakasin2 жыл бұрын
This is hot shit! Love it 😍
@Geloooooooooo2 жыл бұрын
Nice content
@Vim_Tim2 жыл бұрын
Nice but needs more Neovim
@MudassirKhan-sx9jy2 жыл бұрын
Cool♥️
@shuaidong7995 Жыл бұрын
不错不错!!!我也很喜欢 @devaslife 视频风格, 从此我也开始关注你. 希望你的视频越来越好 (Great, great!!! I also really like @devaslife's video style, and now I'm following you too. I hope your videos will get better and better.)
@blakevollbrecht90262 жыл бұрын
14:50 NOOOOOOO
@lakehighland2 жыл бұрын
I’m on the train to 100k subs!!!
@calcio4372 жыл бұрын
nice
@sidekick3rida2 жыл бұрын
Central Park!
@ChrisCourses2 жыл бұрын
Nailed it 👍
@cecece7752 жыл бұрын
I thaought takya dropped a new vidéo hahahha
@7aidas72 жыл бұрын
PLEASE can you make object fall game with images changing with score? I searched in youtube and didn't find anything like that. Can you make that game? Pls like this comment guys
@rummanmiazi30222 жыл бұрын
So so so so so so so so so so so so
@brafesta Жыл бұрын
i'm a c# programmer and somehow i just realize that c# and js are really really similar ... bruh