Coding Challenge

  Рет қаралды 220,076

The Coding Train

The Coding Train

Күн бұрын

Пікірлер: 247
@franchello1105
@franchello1105 6 жыл бұрын
20 minutes in and just realized this was angry birds and no flappy bird
@aryamankejriwal5959
@aryamankejriwal5959 6 жыл бұрын
I know right? I thought it was flappy bird too for the first couple of seconds!😂
@elvsrbad2
@elvsrbad2 6 жыл бұрын
He's done flappy bird in another video iirc
@aryamankejriwal5959
@aryamankejriwal5959 6 жыл бұрын
elvsrbad2 yes, but he’s done sooooo many flappy bird videos that it wasn’t too much of a stretch for him to do another one😂
@toasty7408
@toasty7408 5 жыл бұрын
Holy shit same lol
@konstanty8094
@konstanty8094 5 жыл бұрын
"I'm gonna be ising matter.js physics engine" - a bit of overkill if you ask me
@CYXXYC
@CYXXYC 6 жыл бұрын
"it already knows the name bird.js" when it was first file you already made
@xBrOwNeDoG
@xBrOwNeDoG 6 жыл бұрын
Once he created bird.js it became a suggested name. Its only once he created the file that it showed. Edit: But I dont doubt that he has done this challenge off camera to make sure he can actually complete it.
@CYXXYC
@CYXXYC 6 жыл бұрын
@@xBrOwNeDoG thats what i said lol
@xBrOwNeDoG
@xBrOwNeDoG 6 жыл бұрын
@@CYXXYC lol I didnt think thats what you meant. All good though
@maximgasai1349
@maximgasai1349 6 жыл бұрын
I laughed so hard at that moment
@bluhb
@bluhb 5 жыл бұрын
It was literally the first file he created in this video. No doubt he has done this before to test, but that's not where the suggestion necessarily came from.
@abdulhadilababidi8052
@abdulhadilababidi8052 6 жыл бұрын
41:24 such a weird kiss 😂 you are the funnest tutor on KZbin Keep going!
@Taterzz
@Taterzz 4 жыл бұрын
i don't even javascript but these videos definitely help me in terms of understanding how to properly break down an issue into a programmable solution. the jovial attitude just makes it more infectious.
@zhabiboss
@zhabiboss 2 жыл бұрын
Him: making a bird.js file Also him after 5 min: IT EXACTLY KNOWS WHAT I AM GONNA CREATE IN ADVANCE
@tejaswanama
@tejaswanama 4 жыл бұрын
I love very much the coding train channel. I learn whole javascript from this channel only.. I thank to this channel to makes me knowledgeable...❤❤
@SimpleCarGuy
@SimpleCarGuy Жыл бұрын
Amazing presenter, great personality, even better coder and yet, the worse box drawer (that’s proportional and square) I have ever seen! Love the vids!
@simeydotme
@simeydotme 5 жыл бұрын
So good. The style, attitude and communication are brilliant!
@adamulrich5011
@adamulrich5011 6 жыл бұрын
Those libraries in your hands are simply OP. Keep it up!
@krimo4342
@krimo4342 6 жыл бұрын
I think the best way for the bird to reach Max speed is to release after test if bird position has reached slingshot point position not just delaying it 100ms, PS: thx for matter.js explanation
@rukna3775
@rukna3775 6 жыл бұрын
the editing at the end of the the video was pretty good and also unexpected.
@xTWiZTED
@xTWiZTED 6 жыл бұрын
A solution to dettaching the slingshot would be comparing the circle's x (call it c) value to the slingshot's x (call it s) value. If c > s and mouseReleased, dettach the slingshot.
@morphman86
@morphman86 6 жыл бұрын
I got a coding challenge for you. You have done a lot of the really, really classic games, and a few modern ones, but I don't think we have seen you make any mid-era classics yet. So my challenge would be Dr. Mario. For the uninitiated, you have a 8x32 grid. At random positions, 3-8 (depending on difficulty) "virus blocks" are placed. Your playing piece will start at the top middle and fall down. The pieces consist of 2 blocks of random colours. You may rotate the piece as it falls, just like in Tetris. Your mission is to match up 4 or more blocks of the same colour, where the "virus block" is part of that chain. Once you do, all blocks in that chain disappears. Once all viruses are gone, you have won. If a piece lands in a way so that one block ends up over the top of the screen, you have lost, just like in Tetris. If a piece land sideways with one block sticking out, and there is no block in the position right below it, the overhanging block will continue to fall, but you no longer have control over it, until it lands on top of another block or the floor. Good luck, fellow programmers!
@sadhlife
@sadhlife 5 жыл бұрын
now i want to code bomberman in p5
@morphman86
@morphman86 5 жыл бұрын
@@sadhlife Go ahead. It's all grid-based, so if you watch Coding Train's videos about grids, you'll be halfway there.
@minionbay8982
@minionbay8982 5 жыл бұрын
the coding train is the most subbed programming channel on KZbin
@noahburget3323
@noahburget3323 5 жыл бұрын
I always watch your videos for motivation in my own code. Thank you so much!
@epicclutchers233
@epicclutchers233 4 жыл бұрын
I am a kid and i love watching this guys videos
@vashupandey2212
@vashupandey2212 4 жыл бұрын
you ara a coding hero
@lapetitemort1666
@lapetitemort1666 6 жыл бұрын
i am learned English to watch your lessons. VERY NICE TANKS YOU!!!!!
@lapetitemort1666
@lapetitemort1666 6 жыл бұрын
Aayush Pokharel oh, yes my level elementary but i am continue learning
@taba1950
@taba1950 5 жыл бұрын
Missed the chance to call it birdbox challenge. great as always.
@Brahvim
@Brahvim 3 жыл бұрын
29:46 :D I had this idea in my mind while you were thinking: Let's assume that users are only going to pull the bird towards the left side. If that is the case, then if the bird's x-position is greater than that of pointA (..? ...or whatever is the starting point of the constraint is called!), then we destroy/remove/stop the constraint. Same thing if it's going backwards! Another idea I had while writing/typing (😂👍) literally the last line was to check for the length of the constraint. If the 'spring' of the slingshot/constraint has reached a certain radius from the point/has been extended to a certain length, we store the force gained, and then let go of the constraint...that is, delete it (just like you set it to null). Then we remove all existing forces from the bird (other than gravity of course!) and add the force stored in the last step, back into the body. Pretty sure I accidentally didn't write the last step correctly and my idea is not gonna work xD! But the first one has to work....99 point cardinally infinite 9's guarantee! (I feel so confused about the second method I specified that my brain is going haywire right now...like, what does 'guarantee' even mean!? >:O) ( _please send help_ )
@Hello_There820
@Hello_There820 2 жыл бұрын
(Please Ignore) 25:04
@KongBorup
@KongBorup 6 жыл бұрын
IMO, a better approach would be to replace the setTimeout controlling the slingshot release with an if statement that checks if the bird has crossed the point on the x-axis where the slingshot is placed.
@joogps
@joogps 5 жыл бұрын
6:30 When he said that I imagined javascript reporting ''Error: Null Pointer Exception (I dunno what ur talkin about)"
@michelangelo3330
@michelangelo3330 6 жыл бұрын
u r my leader in coding world
@Garry-jj6jh
@Garry-jj6jh 6 жыл бұрын
Thank you for giving us your knowledge and also being so positive😁. Keep up the good work
@Thorou
@Thorou 6 жыл бұрын
If you had written it in python, you could've used semicolons as the boxes.
@carterjean
@carterjean 6 жыл бұрын
the bird is ‘def’
@shaggiel3099
@shaggiel3099 3 жыл бұрын
lmaooo
@Robber7
@Robber7 6 жыл бұрын
You could just check the birds X if its a bit greater than the connection point of the sling (the bird is on the right) it should release. So that way it will only release if it actually moves to the right of the sling. Could also check the speed as well. Like if speed > X and x > slingshot.X + 5 fly()
@hashmitsingh572
@hashmitsingh572 3 жыл бұрын
thanx for the help , u deserve more subs
@kolliden
@kolliden 6 жыл бұрын
Love ur content
@Ubayla
@Ubayla 6 жыл бұрын
I noticed the "rest length" really seems to be a "min length", because it pushes the object towards the length value. Obviously, that's not the desired behavior. It's especially noticeable at 27:01. All sorts of weird behavior because it's trying to keep the bird at least 100 units away from the pivot point. Was kinda surprised nobody in chat mentioned this.
@jaackotorus5589
@jaackotorus5589 5 жыл бұрын
this is why type="module" is useful, everyone is just tired over worrying over the order of scripts
@oscantes
@oscantes 6 жыл бұрын
29:49 Yeah I might, and it would be to compare the x positions of the bird and the point that spring is attached to. When bird.pos.x is higher than that attach point, it would be released. And this way bird will be faster cause you won't be wasting the energy that's left in the spring like you do with the timeout thing.
@DaveBriccetti
@DaveBriccetti 6 жыл бұрын
Great fun! I'm gonna try Matter with my students. And good to see you naturally using const now.
@TheCodingTrain
@TheCodingTrain 5 жыл бұрын
Pretty soon I'll be pronouncing GIF with a soft g!
@DaveBriccetti
@DaveBriccetti 5 жыл бұрын
@@TheCodingTrain Ha ha. If you did that I would be thrilled!
@luismiguelgallegogomez8000
@luismiguelgallegogomez8000 6 жыл бұрын
This really should be the "Crush the castle with Matter.js" coding challenge
@BrettCooper4702
@BrettCooper4702 6 жыл бұрын
Tank Wars :D
@leandroaraujo4201
@leandroaraujo4201 6 жыл бұрын
Wow 139 likes and 0 dislikes atm, btw nice video. It's a pity I've missed the stream
@MaxPicAxe
@MaxPicAxe 6 жыл бұрын
4:00 "oh look it like knows what I'm going to do in advance" xD
@XGSDEV
@XGSDEV 2 ай бұрын
And doesn't realize he already called it! lol
@XGSDEV
@XGSDEV 2 ай бұрын
He thought that it knew what he was going to type, but the thing is he already called it! (LOLLLLLLL)
6 жыл бұрын
Maybe you could release the bird when it’s position is at the slingshot?
@TimToolman
@TimToolman 6 жыл бұрын
Pål Oliver Kristiansen agreed, either when the bird is at the slingshot constraint 0 point, or simpler when the x delta changes sign after release ( ie your bird went past the slingshot post)
@joogps
@joogps 5 жыл бұрын
that’s exactly what I thought... looking forward to implement that tomorrow!
@robertlister5192
@robertlister5192 5 жыл бұрын
@@joogps anyone get this working be trying this for a while would be much appreciated.
@robertlister5192
@robertlister5192 5 жыл бұрын
@@joogps function mouseReleased() { console.log(balls.x) console.log(slingshot.sling.pointA.x) if (balls.x >= slingshot.sling.pointA.x){ slingshot.fly(); } } cant get it to work. Everything is the same I cant get it to spring forward before detaching the constraint it just drops as soon as i release.
@clprackers7093
@clprackers7093 5 жыл бұрын
Robert Lister you aren’t constantly checking the x positions... only once when the mouse is released
@nachosacco5871
@nachosacco5871 5 жыл бұрын
That keyboard sound
@HossynAssghary
@HossynAssghary 6 жыл бұрын
Oh rainbow im coding with unity for game this is awesome. I love 🌈
@neelgohel335
@neelgohel335 6 жыл бұрын
Awesome!
@gid9551
@gid9551 6 жыл бұрын
38:24 "Things have gone really off the rails here!" Heh.
@FalcoGer
@FalcoGer 2 жыл бұрын
whenever you copy and paste code, especially large parts such as at 15:10, it's time for pulling it out and making it it's own function, possibly a parent class member.
@matiasvlevi6647
@matiasvlevi6647 5 жыл бұрын
15:36 I don't know why but I had to write " this.body = Matter.Bodies.circle(x, y, r/2); " dividing radius by 2. Is it possible that they updated the way matter.js works and made it the diameter input instead of radius?
@DragonSparks
@DragonSparks 5 жыл бұрын
I feel like your right, but the api still has it as radius, maybe they havent updated the api? I was having the issue of it floating over the ground
@Eniallator
@Eniallator 6 жыл бұрын
To detach the bird at the right moment, you could also detect when the bird's x position is greater than the slingshot's x position and then when it is, trigger the detachment 🙂
@victorwei6053
@victorwei6053 5 жыл бұрын
This method works great when the slingshot is fully charged, but not very effective when slingshot is not very pulled back.
@Eniallator
@Eniallator 5 жыл бұрын
@@victorwei6053 if you don't pull it back very much, you can't get any more power out of the shot. This is because once the bird's x position passes the slingshot's x position, the slingshot will start to slow the velocity of the bird down and bring it back. It's pendulum physics 😉
@robertlister5192
@robertlister5192 5 жыл бұрын
@@Eniallator do you have the code to get this to work having trouble because of the class objects.
@Eniallator
@Eniallator 5 жыл бұрын
@@robertlister5192 I don't, sorry
@robertlister5192
@robertlister5192 5 жыл бұрын
No worries :)
@EENYX
@EENYX 6 жыл бұрын
Why u so pro at programing ?? How did u learn that ??
@sergioescobar3468
@sergioescobar3468 6 жыл бұрын
awesome!, you made a great game as few minutes..
@bernardorodrigues8848
@bernardorodrigues8848 3 жыл бұрын
Super late to the party, I know, but is there a reason not to have the this.body.isStatic in the box constructor, and so when you create a new box you just tell it if it’s true or false?
@alexandrezuppo2095
@alexandrezuppo2095 4 жыл бұрын
AMAZING 😂😂😂😂😂😂
@atakanakkas2580
@atakanakkas2580 5 жыл бұрын
Good Content you better do more videos like this before those (fast typing) fingers get tired
@YitzharVered
@YitzharVered 6 жыл бұрын
Just remember, pong took him longer.
@micronix1888
@micronix1888 6 жыл бұрын
Good job
@kavyagandhi8839
@kavyagandhi8839 4 жыл бұрын
bro you are best
@sajeevanfuels1980
@sajeevanfuels1980 4 жыл бұрын
Daniel Sir Can you tell me which book should I prefer for javascript coding that includes all the concepts right from variables to physics enjine and everything please tell! :)
@malikd.mcnish6482
@malikd.mcnish6482 2 жыл бұрын
great vid, how do you setup the presentation of your vidoes (what are the softwares)
@JuanMunoz-th3vn
@JuanMunoz-th3vn 5 жыл бұрын
finally was a HAPPY BIRDS , thanks Dan
@Uhrbfbdb88
@Uhrbfbdb88 3 жыл бұрын
im learning about kinetic energy and potental energy at school!
@KX36
@KX36 5 жыл бұрын
bird's x velocity is maximum when its x position passes the slingshot's x position, so release then.
@sorrychou
@sorrychou 6 жыл бұрын
👍👍👍厲害!
@KakoriGames
@KakoriGames 6 жыл бұрын
Maybe it would be better to release the bird when its distance to pointA is less than a certain number, that way the bird can get the full momentum before releasing and you don't have to time it.
@carterjean
@carterjean 6 жыл бұрын
12:22 *its okay, we can break physics and make a floor*
@minghaoliang4311
@minghaoliang4311 6 жыл бұрын
what about checking the position: when the bird is on the right side of the constraint position, release the sling
@cutipets8706
@cutipets8706 6 жыл бұрын
wooow that's amazing
@aryamankejriwal5959
@aryamankejriwal5959 6 жыл бұрын
Another minor thing was that because the ground was exactly the same size as the screen, any blocks that went partially off screen could be seen falling off the ground
@TheCodingTrain
@TheCodingTrain 6 жыл бұрын
Ah, yes, that definitely needs to be fixed!
@alefsdev
@alefsdev 6 жыл бұрын
It would be great if u do the jenga one!
@GuillemRibes-w7y
@GuillemRibes-w7y 5 жыл бұрын
I actually have an error. In around the minute 19:00 Dan writes code that is able to move the bird object around and toss it. This rarely works for me and it grabs the bird when the cursor isn't even on it! I think that this has to do with the scale but I can't think of anything else, if anybody who has also had this problem or have been able to do this challenge anyway, please help. Thanks
@TheCodingTrain
@TheCodingTrain 5 жыл бұрын
Oh! Are you on a "high pixel density display" by any chance? Try adding the following: mouse.pixelRatio = pixelDensity();
@adk_88
@adk_88 4 жыл бұрын
@@TheCodingTrain I had the same problem on a 4k display, this fixed it. Thanks !
@Yufukfu
@Yufukfu 6 жыл бұрын
Just release the bird when distance between the bird and the constraint is less than the initial length
@average-enjoyer7
@average-enjoyer7 6 жыл бұрын
Hi, a big fan of your channel! You have mentioned this project is done in an object orientated manner, I can't help but wonder how would you simulate this in a functional programming paradigm :) Cheers!
@joestevenson5568
@joestevenson5568 5 жыл бұрын
With great difficulty. OOP is really ideal for graphical and physics problems as they typically revolve around objects. Functional programming is better suited for tasks requiring guaranteed memory and thread safety.
@MrWindboarder
@MrWindboarder 4 жыл бұрын
If anyone is having troubles with the mouseConstraint part, you may need to set this parameter if you are on a HD display: mouseConstraint.mouse.pixelRatio = 2;
@tekoreypy
@tekoreypy 5 жыл бұрын
It is a very useful and entertaining video, I just missed the part where the teacher explains than you must run the code from a java server or the browser will not load the images Because the cors system. but it let me learn about Apache and tomcat, so a the end I'm thankful for that too
@TheCodingTrain
@TheCodingTrain 5 жыл бұрын
More in this workflow series! kzbin.info/aero/PLRqwX-V7Uu6Zu_uqEA6NqhLzKLACwU74X
@Adam-rt1lc
@Adam-rt1lc 6 жыл бұрын
Bonne vidéo!!!
@xFaull
@xFaull 5 жыл бұрын
help 19:00 matter-js: MouseConstraint.create: options.mouse was undefined, options.element was undefined, may not function as expected i dont know why but when i type mouse: mouse it doesnt let me move the ball but i figured if i type Mouse: mouse it does but comes up with the warning above
@CodeBlue-le2sf
@CodeBlue-le2sf 5 жыл бұрын
Same... Did you ever figure it out im just now watchong this?
@ziuhoque1532
@ziuhoque1532 6 жыл бұрын
keep coding challenage
@toxiczappyt5937
@toxiczappyt5937 4 жыл бұрын
why is my bird floating
@hedwinbonnavaud6998
@hedwinbonnavaud6998 6 жыл бұрын
What about problem: click on equals enemy to move them? :D plz show how to fix it!
@Henkie
@Henkie 6 жыл бұрын
bird box? ground
@averagewojak2623
@averagewojak2623 6 жыл бұрын
:O
@mikkel1383
@mikkel1383 6 жыл бұрын
I have tried to find someone say bird box in the chat for a long time, FINALY😂
@unlikelysalmon786
@unlikelysalmon786 6 жыл бұрын
Heya, I was just wondering why you sometimes use function and sometimes use classes when you can just do both with function. Is there a difference, and if so, is it important enough to use both? Edit: great video btw
@DrBlort
@DrBlort 6 жыл бұрын
Think of OOP as a way to model a problem, which is closer to how we (humans) think. You could resolve all programming problems with just variables, loops, conditionals, and functions (and maybe even without functions), which in the end is how CPUs work. When you model your data and behaviours in classes, you're making it easier for you to think about a solution. A classic example would be to model a car, which has an engine, and wheels, all interconnected, and you can only accelerate, brake, or steer. Otherwise, imagine having a chassis, an engine, and wheels, and having access to their innards, and moving everything with wire and by hand :D
@liamasman
@liamasman 6 жыл бұрын
woooo!
@aryamaangoswamy179
@aryamaangoswamy179 6 жыл бұрын
Can you do a coding challenge where you create an interactive Rubik's cube? And possibly publish it to the Internet? Also, include a few buttons to make those moves (like an R button, L button etc.).
@TheCodingTrain
@TheCodingTrain 6 жыл бұрын
Please suggest or upvote here! github.com/CodingTrain/Rainbow-Topics/issues
@melody3741
@melody3741 4 жыл бұрын
Wait u til mouse press set a flag the flag looks for mouse release and then once that happens it waits until the ball crosses the center point i.e. string is length 0 it releases.
@bhagatvirsindhu4869
@bhagatvirsindhu4869 5 жыл бұрын
Hello Daniel, I have a question : I am 13 years old and I'm currently in 8th grade and I will be in 9th grade in April. I have opted for computer science because I love coding a lot and I want to become a software engineer when I grow up. I will be taught processing.py in school. So I decided to learn Java (Processing) and came across your channel. I saw that in your older videos, you taught processing but in the newer videos, you moved to p5.js and you began to do most of the Coding Challenges with p5.js. It made me think whether I should continue to learn Processing or move to p5.js and leave Processing. This is my question - Whether I continue learning Processing or turn to p5.js. Please answer this question as soon as possible. Thanks
@TheCodingTrain
@TheCodingTrain 5 жыл бұрын
Hi! So glad to hear from you! Maybe this is a disappointing answer, but my answer is. . I have no answer! I think both are great and can have their pros and cons. One reason to use p5.js is that you can run everything in the browser and share easily with friends. But Processing is often faster and you can do more "full screen" things with it as well as interface with hardware and many Processing libraries! Just go with what you enjoy and feel like doing!
@bhagatvirsindhu4869
@bhagatvirsindhu4869 5 жыл бұрын
@@TheCodingTrain I feel like doing both, I'll first learn from all of your Processing videos and then I will begin with p5.js because it seems more tempting. Thanks a lot for replying.
@Zxios
@Zxios 5 жыл бұрын
Dan, you of all people should know by now that preincrement is superior to postincrement.
@LapSiLap
@LapSiLap 6 жыл бұрын
Nice video! Btw instead of const options = { mouse: mouse} you can just do const options = { mouse}
@WEBSTART-LIVE
@WEBSTART-LIVE 4 жыл бұрын
спасибо за русские субтитры!)
@χάθηκα
@χάθηκα 2 жыл бұрын
I just can't stop laughing with that bird.js
@VikingCanadian
@VikingCanadian 5 жыл бұрын
Can you do the Tower of Hanoi, showing the algorithm's work every step. I would love to see this!! :)
@TheCodingTrain
@TheCodingTrain 5 жыл бұрын
Please suggest here! github.com/CodingTrain/Rainbow-Topics/issues
@pasirbedog124
@pasirbedog124 6 жыл бұрын
The coding train Vs all coding challenge
@Robber7
@Robber7 6 жыл бұрын
Could you do a video of depolying processing applications on Android? I couldn't get it to work that well unfortunately.
@sonalinichit7156
@sonalinichit7156 3 жыл бұрын
You are cool
@FroyoAnto
@FroyoAnto 6 жыл бұрын
you need a shorter drumroll sound.
@mihir89rd
@mihir89rd 6 жыл бұрын
What purpose does pushing and popping in the bird show method serve?
@TheCodingTrain
@TheCodingTrain 5 жыл бұрын
I explain these concepts in this video: kzbin.info/www/bejne/pWrWmJ2rnZJ2eK8
@boradrutvik4291
@boradrutvik4291 6 жыл бұрын
Hey what soft ware are u using in the video???
@TheCodingTrain
@TheCodingTrain 6 жыл бұрын
I'm using the p5.js web editor (editor.p5js.org).
@proyas21
@proyas21 4 жыл бұрын
4:00 lol🤣
@chloewatson7245
@chloewatson7245 4 жыл бұрын
Hey I tried the code but I am getting an error. And also there was a problem with the swing .Can someone please help me out.
@jydendmonte190
@jydendmonte190 3 жыл бұрын
ummm pls i hope u see this anbd answer but my bird has an invisible wall around it not letting me touch the ball wut do i do pls respond to this
@davidbundgaard
@davidbundgaard 6 жыл бұрын
I guess the proper way is to calculate the circle distance to start position and when it reaches 0 cut the line.
@EduardsSilins
@EduardsSilins 6 жыл бұрын
You should check after releasing mouse when the ball gets to its start position. In that way you will get the best results... :D At least i would do that...
@EduardsSilins
@EduardsSilins 6 жыл бұрын
Try this one out... editor.p5js.org/redsky_48/present/PNusb_TyE
@TheCodingTrain
@TheCodingTrain 5 жыл бұрын
Nice!
@isaidstream4547
@isaidstream4547 6 жыл бұрын
Hi, is there a library to make online games?
@joogps
@joogps 5 жыл бұрын
isaid stream you should take a look at his videos about websockets :)
@amrantomer8005
@amrantomer8005 5 жыл бұрын
My collision physics is off. things shoot out in the wrong direction with non realistic momentum. Has someone encountered this problem?
@Troy-ol5fk
@Troy-ol5fk 3 жыл бұрын
I think it would be more realistic to remove the constraint when mouse is released *and* the magnitude/length of the slingshot line equals 0
Coding Challenge #139: Calculating Digits of Pi with Collisions
31:42
The Coding Train
Рет қаралды 413 М.
Coding Challenge #71: Minesweeper
53:46
The Coding Train
Рет қаралды 533 М.
Правильный подход к детям
00:18
Beatrise
Рет қаралды 11 МЛН
Une nouvelle voiture pour Noël 🥹
00:28
Nicocapone
Рет қаралды 9 МЛН
Сестра обхитрила!
00:17
Victoria Portfolio
Рет қаралды 958 М.
STOP Using Classes In JavaScript | Prime Reacts
14:02
ThePrimeTime
Рет қаралды 265 М.
Stop using std::vector wrong
23:14
The Cherno
Рет қаралды 173 М.
Coding Challenge 177: Soft Body Physics
29:09
The Coding Train
Рет қаралды 164 М.
3 Ideas on Refactoring by Martin Fowler
5:50
Christopher Okhravi
Рет қаралды 23 М.
Angry Birds Star Wars 2 - All Birds & Pigs Abilities Gameplay
14:16
Why You Shouldn't Nest Your Code
8:30
CodeAesthetic
Рет қаралды 2,9 МЛН
Coding Challenge 182: Apollonian Gasket Fractal
56:48
The Coding Train
Рет қаралды 90 М.
Coding Challenge #86: Cube Wave by Bees and Bombs
30:09
The Coding Train
Рет қаралды 631 М.
The BEST Mechanical Display You've EVER Seen!!
13:51
Tin Foil Hat
Рет қаралды 618 М.
How do non-euclidean games work? | Bitwise
14:19
DigiDigger
Рет қаралды 2,5 МЛН