Coding Challenge #59: Steering Behaviors

  Рет қаралды 188,558

The Coding Train

The Coding Train

Күн бұрын

Пікірлер
@igotapochahontas
@igotapochahontas 6 жыл бұрын
Should've called the "flee algorithm" the 'elephant algorithm'. Because it's afraid of the mouse. I'm here all week...
@hue_dream3568
@hue_dream3568 2 жыл бұрын
Thats so smart...
@RedHair651
@RedHair651 Жыл бұрын
Very clever
@Lysness
@Lysness 7 жыл бұрын
This is what I imagine coding with Bob Ross would be like.
@harukogaki
@harukogaki 7 жыл бұрын
111slb except he doesn't beat the devil out of anything
@nngogol244
@nngogol244 7 жыл бұрын
LUUUULZ
@mimiorbe8273
@mimiorbe8273 6 жыл бұрын
Thanks for the Video! Excuse me for the intrusion, I would love your thoughts. Have you researched - Trentvorty Kids Science Theorem (do a google search)? It is a good one off guide for becoming an excellent parent minus the normal expense. Ive heard some amazing things about it and my mate after a lifetime of fighting got astronomical results with it.
@mikedoan5214
@mikedoan5214 6 жыл бұрын
that's not how you advertise efficiently
@michaldvorak2230
@michaldvorak2230 6 жыл бұрын
ups, can't name the variable point, because it's already a p5.js function - HAPPY LITTLE ACCIDENTS!
@chrissesock4245
@chrissesock4245 7 жыл бұрын
Your positive attitude and cheer always put me in a good mood. These videos have become my go-to when I'm stressed out or nervous.
@TheCodingTrain
@TheCodingTrain 7 жыл бұрын
That's so nice to hear!
@thecollectorsstudio4245
@thecollectorsstudio4245 3 жыл бұрын
@@TheCodingTrain 8
@AmeeliaK
@AmeeliaK 4 жыл бұрын
I have searched for the "text to points" function all my (coding) life, I looked into every graphics library I saw, I even searched for it in the p5 doc but I didn't know how to call it, so I never found it. Now the creative ideas are flowing and I know how to implement them. Thank you so much!
@Grizix
@Grizix 7 жыл бұрын
I already read your book, so I know most of the code in this challenge, but that's so much better when you do the train between theoretical explanation and hazardous coding. I really love your videos, even if it makes me regret I never had a teacher like you.
@mrduck7957
@mrduck7957 7 жыл бұрын
10:47 This is why I love you you are the best.
@kiriitoh
@kiriitoh 7 жыл бұрын
You make my bus journey to college productive!!! Thanks!
@___aZa___
@___aZa___ 7 жыл бұрын
you are the best teacher ever! :)
@TheCodingTrain
@TheCodingTrain 7 жыл бұрын
Thanks for the nice feedback!
@albertorep97
@albertorep97 6 жыл бұрын
Man, I know this video is pretty old, but you are amazing, probably my favorite channel in KZbin (no kidding). I am motivated to learn about technology and code watching your videos man.
@stylextv
@stylextv 6 жыл бұрын
The alpha in the text objectives is for pixels on the edge, so the edges don't look so pixelated.
@NeverBeenToBrisbane
@NeverBeenToBrisbane 7 жыл бұрын
omg thank you so much for confirming a prototype tutorial! I'm super excited about it now :D you better stick to it!
@TheCodingTrain
@TheCodingTrain 7 жыл бұрын
Part 1 is already published, check recent uploads!
@grainfrizz
@grainfrizz 7 жыл бұрын
So beautiful, Dan! I love you already.
@morphman86
@morphman86 6 жыл бұрын
Everything is relative! Position is where things are. Velocity is change in that position. Acceleration is change in that velocity. (A bit misnamed, as it could also be a deceleration or nothingness, but the proper term of deltaV is harder to put in variables and much more confusing) So acceleration is the change in the change of the position.
@anusha8085
@anusha8085 4 жыл бұрын
This is so cool...I first saw it in Anurag Hazra's project in his website. Totally blew up my mind
@michaelsohnen6526
@michaelsohnen6526 6 жыл бұрын
If I didn't know about the p5 font library, I would write text to a p5 graphics and then analyze the pixels in the graphics object to see where the text-interior /text-border is
@kmjohnny
@kmjohnny 7 жыл бұрын
First I saw Steering Behaviour in Mat Buckland's book, still amazing stuff.
@anirudh6642
@anirudh6642 5 жыл бұрын
I had a nightmare about that dance gif at the end. It was a gif in my dream for 20 days. shook.
@flolow.4990
@flolow.4990 4 жыл бұрын
Here is the code for Processing(JAVA): ArrayList points = new ArrayList(); void setup() { //fullScreen(); size(800, 600); for (int x = 10; x < width; x += 10) { for (int y = 200; y < height-200; y += 50) { points.add(new Point(x, y)); } } } void draw() { background(0); for (Point p : points) { p.show(); p.test(); } } class Point { PVector rightloc; PVector loc; PVector move; float speed = 5; int radius = 150; Point(float x, float y) { rightloc = new PVector(x, y); loc = new PVector(x, y); move = new PVector(0, 0); } void show() { fill(255); stroke(255); ellipse(loc.x, loc.y, 10, 10); } void test() { PVector richtung = new PVector(0, 0); float d = dist(mouseX, mouseY, loc.x, loc.y); if (d < radius) { PVector mouse = new PVector(mouseX, mouseY); richtung = PVector.sub(loc, mouse); richtung.normalize(); richtung.mult(3); } else { richtung = PVector.sub(rightloc, loc); richtung.normalize(); } move.add(richtung); int genauigkeit = 10; if (!(d < radius) && rightloc.x = loc.x-genauigkeit && rightloc.y = loc.y-genauigkeit) { move.set(0, 0); loc.set(rightloc); } else { move.limit(30); move.mult(0.9); } loc.add(move); } }
@peterlang6911
@peterlang6911 7 жыл бұрын
Coding Challange: can you programm conway's game of life pls?
@JohnJ-xm3fg
@JohnJ-xm3fg 7 жыл бұрын
Peter Lang +Daniel Shiffman Conway's game of life!
@TheCodingTrain
@TheCodingTrain 7 жыл бұрын
I have a video about it already, but I like the idea of doing it as a challenge. Upvote here! github.com/CodingTrain/Rainbow-Topics/issues
@JohnJ-xm3fg
@JohnJ-xm3fg 7 жыл бұрын
The Coding Train TIP: dont forget "this dot" lol Great vids btw Have a good day
@Dhakshith1189
@Dhakshith1189 7 жыл бұрын
kzbin.info/www/bejne/fIi2g5JtoL-oj8k
@PilatusAnon
@PilatusAnon 2 жыл бұрын
Man this guy is such a nerd. I love his videos
@anogrotter1985
@anogrotter1985 7 жыл бұрын
Damn daniel back at it again with the white points. [I'm never getting tired of this meme] Great video as always. I'm really interested in this subject (actually discovered your channel through those old steering behavior videos) so it's always nice to see more of that. Would love to see some complex ideas you come up with in steering.
@TheCodingTrain
@TheCodingTrain 7 жыл бұрын
Wait, what's the "points" meme?
@RupertBruce
@RupertBruce Жыл бұрын
@20.45 Have a display showing the animation and a prize for finding the text. It would be easy for AI (or a behavior-parsing algorithm from a clever student)
@c.toobitz7566
@c.toobitz7566 2 жыл бұрын
This is amazing. Thank you so much for the video!
@ssuntexx
@ssuntexx 7 жыл бұрын
Watched the Stream Now Ganna Watch the video! Btw The Dots game ( The game you said you liked on your phone) is pretty fun, and I just realized something, this dots game, and this dot. Illuminati Confirmed
@JohnJ-xm3fg
@JohnJ-xm3fg 7 жыл бұрын
function Shiffman(){ this.dot = function(){alert("this.dot() song");}; this.dot("game"); }; var shiffman=(new Shiffman().dot()); for(;;;){ shiffman.dot(); }
@Grizix
@Grizix 7 жыл бұрын
I'd really like a coding challenge about random walking agents. Can't manage to make mine satisfying.
@sujals7108
@sujals7108 6 жыл бұрын
It's already made. Check the nature of code series
@karlduckett
@karlduckett 7 жыл бұрын
Awesome as usual! Can I ask why don't you use Atom + P5 library installed and use the preview panel for live updates? Is it better setting up the local host and continually switching to the browser?
@prashanthkumar0
@prashanthkumar0 7 жыл бұрын
you are awsome bro you explain every little things required for programming in your all videos love your style😋
@haifengzeng464
@haifengzeng464 7 жыл бұрын
Great lesson, how can I get 'textBound' with a given font or any fonts ,or image bound?
@asafshitrit3878
@asafshitrit3878 7 жыл бұрын
another day another great challange ! keep up the good work dan :)
@TheCodingTrain
@TheCodingTrain 7 жыл бұрын
Glad to hear you liked it!
@JensAndree
@JensAndree 7 жыл бұрын
This video only seems to be available from your playlist and not by browsing your videos... ...but apart from that I really liked what you did here! This was way harder to do with 68k assembler back in the days ;)
@TheCodingTrain
@TheCodingTrain 7 жыл бұрын
This video will be officially released later this week. Glad you liked it! -MB
@JohnJ-xm3fg
@JohnJ-xm3fg 7 жыл бұрын
The Coding Train i just got a notification so i assume its released
@GABRIELFILMSTUDIOS
@GABRIELFILMSTUDIOS 7 жыл бұрын
Who is MB?
@robertborghesi4349
@robertborghesi4349 6 жыл бұрын
Awesome, love it
@dr_frankenmiller2607
@dr_frankenmiller2607 2 жыл бұрын
Thank you for all the great content and coding adventures, it's really fun to hang out here and be productive few hours expanding coding portfolio and developing cool skills You say "Uhh.." sounds exactly like BH from MTV's Beavis and Butthead HaHa I can't help it
@Guil118
@Guil118 7 жыл бұрын
You should make the background color the number of the episode. It would be so meta.
@camelcase9225
@camelcase9225 7 жыл бұрын
This was really great!
@tc536890
@tc536890 7 жыл бұрын
Wacky but entertaining and informative as ever, love it !
@kiriitoh
@kiriitoh 7 жыл бұрын
Sooo COOL, nice vid!
@Dimi-Tech
@Dimi-Tech 5 жыл бұрын
Dude thanks for everything, you are legend! U DA BOSS !!!
@ekarademir
@ekarademir 7 жыл бұрын
The overall behaviour of the particles seems like springs. In fact the definition of arrive is just like Hooke's law.
@TheCodingTrain
@TheCodingTrain 7 жыл бұрын
Ah, excellent point!
@lizabeti3457
@lizabeti3457 6 жыл бұрын
A mouse button press to keep the dots from every letter following the cursor then when releasing they would go on their places would be nice xD
@santhanam2855
@santhanam2855 6 жыл бұрын
Adding a mouse motion light and mapping it with the motion of the dots would do that I'm thinking
@CherPsKy
@CherPsKy 7 жыл бұрын
You are inspirational, sir. What did you study? You're a robot.
@GawblyOG
@GawblyOG 7 жыл бұрын
Love your videos!!! I wonder why you're still using annotations, don't you think it's time to move to end screens?
@TheCodingTrain
@TheCodingTrain 7 жыл бұрын
Yup, planning on trying this out soon!
@sibamarcel9428
@sibamarcel9428 6 жыл бұрын
Wow so simple. You're the best...
@maxwellbrookes1165
@maxwellbrookes1165 4 жыл бұрын
is there a Font.textToPoints() equivalent in java?
@sariaghaziri6448
@sariaghaziri6448 6 жыл бұрын
I am trying SO hard to do this on Processing it is so different! Have you done any tutorials explaining how to extract font path points from Strings on Processing?? You're the best!
@TheCodingTrain
@TheCodingTrain 6 жыл бұрын
Check out: www.ricardmarxer.com/geomerative/
@3stylaz
@3stylaz 7 жыл бұрын
Don't forget the script source, script source. 🎼Script sooource, script sooource, script source script source song DRY principles in coding train songs 😊
@ErnestGWilsonII
@ErnestGWilsonII 7 жыл бұрын
Another awesome video!
@Marcsine
@Marcsine 7 жыл бұрын
Makes this.r, a variable that holds the strokeWeight of the points. Forgets and just uses a hard-coded number...
@quickscopesheep5994
@quickscopesheep5994 4 жыл бұрын
This is who everyone wishes there IT teacher was
@JuanGarcia-lo2el
@JuanGarcia-lo2el 5 жыл бұрын
Do you have a tutorial about how to set a computer with all the necessary to code with p5.js ?
@xnick_uy
@xnick_uy 7 жыл бұрын
Good video! A new idea for a challenge: make a program that initially recognizes some mouse gestures, and then turn it into some sort of OCR, where you can draw letters using the mouse and the program can identify what you are writing (matching your drawing to a letter from the font file).
@mikstevan
@mikstevan 7 жыл бұрын
x nick That would be cool and would most likely entail using neural networks :)
@adpio6996
@adpio6996 4 жыл бұрын
can we do same thing with outline of loaded svg?
@user-xv9ni2jj7t
@user-xv9ni2jj7t 7 жыл бұрын
I have a code challenge for you. Lets call it idk, "Shazam challenge". Try to find a song from a 2-5 sec. part song where its location is x1 and the parts position in original song is x2. Doing this for 3 months, would be awesome to see your way doing it. Paul
@seamikiseamiki1825
@seamikiseamiki1825 7 жыл бұрын
First of all let me express my gratitude because without your teaching method/style/examples i would have never got into coding. Is there a way to have the textToPoints() function to be consistent wit the textAlign() function? Playing around i found an offset between the points and the text whenever I aligned the text with textAlign(CENTER).
@SigmaSixSoftware
@SigmaSixSoftware 7 жыл бұрын
Hey Dan do you know if the foreach loop was included in the latest version of Processing, It's just conviennient thats all
@akshatamurdeshwar8867
@akshatamurdeshwar8867 4 жыл бұрын
In the video you have said how it would be possible to make the points from one word to form another one (ofcourse, that would require splitting or joining of points etc). For example on clicking, I am wondering how this could be done. I have been working on this for a long time but can't seem to figure it out. If anyone has any leads, could you point me towards them? Thank you all!
@haleemulhassan9158
@haleemulhassan9158 7 жыл бұрын
I have a question regarding p5.js. Could we maybe use other js libraries WITH p5.js? Like velocity.js or greensock or three.js etc? I think combining the drawing powers of p5 with other libraries would really yield even more awesome results and possibilities
@TheCodingTrain
@TheCodingTrain 7 жыл бұрын
Absolutely yes! I'll try to cover this in future videos.
@haleemulhassan9158
@haleemulhassan9158 7 жыл бұрын
Awesome! Really looking forward to it. You are my programming hero
@sujals7108
@sujals7108 6 жыл бұрын
He has already used physics engines so I think it's already done.
@swaree
@swaree 7 жыл бұрын
A Gosper's Glider Gun or another automata machine would be great
@user-mg8jd4jv6e
@user-mg8jd4jv6e 6 жыл бұрын
Why would you need the acceleration property on the vehicle? Since you are adding it to the velocity exactly once per update and reseting it afterwards, I think adding the force directly to the velocity would give the same result. I may just be dumb though.
@leandroaraujo4201
@leandroaraujo4201 5 жыл бұрын
I think he did that to increase the velocity of the points over time, instead of having them always move at the same speed.
@ddcddc_
@ddcddc_ 6 жыл бұрын
So... a steering algorithm is a negative feedback loop, just like the ones in opamps and control systems?
@wilfreddv
@wilfreddv 6 жыл бұрын
This at 1.5x speed... Oh my
@igotapochahontas
@igotapochahontas 6 жыл бұрын
Hilgert Bos just tried it. Game changer.
@muhammadzeeshan6965
@muhammadzeeshan6965 6 жыл бұрын
Awesome :)
@jan_harald
@jan_harald 7 жыл бұрын
101th like... also...would be a nice loading screen...
@poorman-trending
@poorman-trending 5 жыл бұрын
Towards the end you mention there are some ways to keep from slow down when doing comparisons between every object (n^2 order). Where can I find information on those techniques?
@097_shashanksahu6
@097_shashanksahu6 5 жыл бұрын
Hey,if i understood your problem. Correctly Quadtree is what you are looking for. DAN has already made some nice videos on them. kzbin.info/www/bejne/hXvbdpapZdySoac
@BioHazardKillzHD
@BioHazardKillzHD 7 жыл бұрын
Bob Ross of code - Dan
@cody1834
@cody1834 7 жыл бұрын
Can you provide a link for the beginners to learning code? Down to the basics of using a few most popular softwares.
@gakarik
@gakarik 7 жыл бұрын
how can i implement font.textToPoints()? can u make a video to talk about it? i hope u will make that!
@BrunoBarcelosAlves
@BrunoBarcelosAlves 8 ай бұрын
I haven't read Vehicles but I watched the Disney Pixar film adaptation.
@cool-as-cucumber
@cool-as-cucumber 7 жыл бұрын
@The Coding Train How can get reference of current font? I didnt find any function to do something like font = currentFont(). It is necessary to load a external font?
@pansilukv
@pansilukv 4 жыл бұрын
WOW !!! He is the man.
@TheAverageDev1
@TheAverageDev1 7 жыл бұрын
couldnt you also make like a line that is the same color as the background and put it behind the letters and make the line travel across the screen at a desired speed and make the circles that make up the letters repel from that line and make the circles fade out to the color of the background and make them where the circles dont come back and it is like the word explodes out and fades away, and also before the line goes across leave a little bit of time to have time to read it
@TheAverageDev1
@TheAverageDev1 7 жыл бұрын
like if you agree
@AlissonNunes
@AlissonNunes 7 жыл бұрын
Awesome!!!
@benjamintroquereau6163
@benjamintroquereau6163 7 жыл бұрын
could you implement dynamic grap with clusterization
@Grizix
@Grizix 7 жыл бұрын
Don't you have to limit the velocity to maxspeed in Vehicle.update ?
@ManosChalvatzopoulos
@ManosChalvatzopoulos 7 жыл бұрын
Hello Daniel, first of all i would like to thank you for these awesome videos. I have a question. I realized that the atom editor is putting automatically ; at the brackets of prototype functions, and as a result the code was not working, then i removed ; and it worked just fine. Can you please explain me why did this happened ?
@camilabianchi689
@camilabianchi689 3 жыл бұрын
is it possible to do something similar on a WEBGL canvas ?
@PetrosPollakis
@PetrosPollakis 5 жыл бұрын
Console give me TypeError: undefined is not an object (evaluating 'font.textToPoints') why is that happen?
@FellippeHeitor
@FellippeHeitor 7 жыл бұрын
At 20:55 it looks like what Apple added to the messaging app and called "Invisible Ink"
@GabrielMonette
@GabrielMonette 4 жыл бұрын
Is it possible to insert it easily in a "one page" html/javascript webpage?
@PollederBoss
@PollederBoss 4 жыл бұрын
yes, it´s very easy. it looks like you have no Idea, so I start with the basics: - you need to refer a Tag in your html header with the p5.js file. you get it here: p5js.org/libraries/ - then you need to refer a Tag in your html body with the scetch.js file. Thats the file where you write or copy your javascript code inside. check out the w3 school or mozilla.org for refence and syntax on basic html stuff. There is also a "how to get started" with p5 and html playlist on coding train. Daniel Shiffman is the best teacher. I guess you want to position the canvas as well: Let´s say you want an animated header. As far as I know, you cant just replace a header picture with a canvas element, but you can overlay it from the body. Use the p5 parent() function and refer it to the css header element. p5js.org/reference/#/p5.Element/parent That´s how I would do it, but it depends on your present layout how easy you can insert it. good luck!
@LoomisRex
@LoomisRex 7 жыл бұрын
this steering is very familiar to PID controllers
@swaree
@swaree 7 жыл бұрын
I suggest a renewal of the Conway's game of life
@TheCodingTrain
@TheCodingTrain 7 жыл бұрын
Yes, I think I will do this soon!
@maxbranco7321
@maxbranco7321 4 жыл бұрын
Vehicles, vehicles, vehicles, vehicles, vehicles, vehicles, vehicles, vehicles, vehicles... Vehicles has lost all it's meaning.
@1732ashish
@1732ashish 6 жыл бұрын
textToPoints function is cool.. do we have any equivalent in java API
@luiscraftpt3753
@luiscraftpt3753 7 жыл бұрын
were you get this font ?
@regnatus6031
@regnatus6031 7 жыл бұрын
What Coding editor do you use for these videos?
@stinkytoby
@stinkytoby 7 жыл бұрын
Regnatus Programs used are on the left of the screen. It's "Brackets"
@regnatus6031
@regnatus6031 7 жыл бұрын
Thanks, looks like a nice clean editor so going to use it
@Nola1222Piano
@Nola1222Piano 7 жыл бұрын
Regnatus He used brackets one time. his regular editor is "Atom"
@hascheidl
@hascheidl 7 жыл бұрын
Any tips about an equivalent of "textToPoints" in Processing (java)?
@TheCodingTrain
@TheCodingTrain 7 жыл бұрын
Try looking up the geomerative library.
@hascheidl
@hascheidl 7 жыл бұрын
The Coding Train thanks Dan! I was skeptical since the library hasn't been updated in a long time, but it worked like a charm! Needed to port the JS "Vehicles" to java-equivalent and combine with the code samples from geomerative... I will put it to github
@Johanvanderschelling
@Johanvanderschelling 7 жыл бұрын
I'm completely stuck trying to load the font. I setup a local server with node.js. I get the following error: sketch.js:22 Uncaught TypeError: font.textToPoints is not a function at setup (sketch.js:22) at p5. (p5.js:8900) at _runIfPreloadsAreDone (p5.js:8853) at p5._decrementPreload (p5.js:8862) at p5.js:19362 at p5.js:1123 at XMLHttpRequest.request.onload (p5.js:972) Suggestions anyone?
@darknessfalls714
@darknessfalls714 7 жыл бұрын
Mac or Pc, and what specs ? I want to invest in a computer that will last me throughout college for multiple languages too
@nikitamalpani8602
@nikitamalpani8602 6 жыл бұрын
V nice idea...
@kennethgreer
@kennethgreer 7 жыл бұрын
When I'm working in atom and I make a change in my code and save it, chrome won't load the updated files until I rehost them on a different port using hode http server. Is this a problem with my chrome settings? Am I missing a step somewhere?
@kennethgreer
@kennethgreer 7 жыл бұрын
Nevermind I found the disable cache option. I knew I would figure it out as soon as I posted this comment.
@hrthykw3255
@hrthykw3255 7 жыл бұрын
a basic question why p5.js and not processing
@TheCodingTrain
@TheCodingTrain 7 жыл бұрын
I choose somewhat arbitrarily. This time I used p5.js to make use of textToPoints() function.
@drahmin4412
@drahmin4412 7 жыл бұрын
Is there a similar function for processing? I have tried looking and haven't found much on a textToPoints() for processing
@Slinx92OLD
@Slinx92OLD 5 жыл бұрын
Why do you use processing very rarely?
@jaminpie6757
@jaminpie6757 7 жыл бұрын
Hi Daniel, what atom package that you used for the auto indent ?
@TheCodingTrain
@TheCodingTrain 7 жыл бұрын
atom-beautify
@jaminpie6757
@jaminpie6757 7 жыл бұрын
The Coding Train thanks for that
@hoseinmovahedi999
@hoseinmovahedi999 6 жыл бұрын
It's very interesting
@fachriem
@fachriem 7 жыл бұрын
why i get this error:( sorry i'm new here. "XMLHttpRequest cannot load file:///D:/Electron-Project/Repulsion_Force/AvenirNextLTPro-Demi. Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https."
@ntarun2000
@ntarun2000 7 жыл бұрын
Me too. I did a bit of debugging and found that loadFont() is causing that error. Anybody any idea?
@darkbabaf4899
@darkbabaf4899 7 жыл бұрын
you need to run on localhost
@anthonywhyte8173
@anthonywhyte8173 5 жыл бұрын
I am trying this project out but the preload function takes forever to load.
@TheCodingTrain
@TheCodingTrain 5 жыл бұрын
This is most likely an issue with the filename or file itself. Can you ask at discourse.processing.org/! It's a better platform for Processing and p5.js related code questions and you can share code there easily! Feel free to link from here to your post.
@tinylittleanj2
@tinylittleanj2 5 жыл бұрын
That was cool
@mbpl10
@mbpl10 7 жыл бұрын
How do You get Atom to insert spaces between + - * etc.?
@maximilientirard1720
@maximilientirard1720 7 жыл бұрын
How close is the steering behavior to a PID or PD controller?
@rosslahive
@rosslahive 4 жыл бұрын
Is anyone else having issues adding an otf file?
@dannyshf1993
@dannyshf1993 7 жыл бұрын
i tries to run the program on atom text editor, how do i see the output? all i received is JavaScript - attractor_repulsion.js:17
Coding Challenge 180: Falling Sand
23:00
The Coding Train
Рет қаралды 1 МЛН
Coding Challenge #62.1: Plinko with Matter.js Part 1
25:58
The Coding Train
Рет қаралды 99 М.
How To Choose Mac N Cheese Date Night.. 🧀
00:58
Jojo Sim
Рет қаралды 104 МЛН
coco在求救? #小丑 #天使 #shorts
00:29
好人小丑
Рет қаралды 53 МЛН
Twin Telepathy Challenge!
00:23
Stokes Twins
Рет қаралды 126 МЛН
Sigma Kid Mistake #funny #sigma
00:17
CRAZY GREAPA
Рет қаралды 7 МЛН
Why Didn't He Get the Job? Let's Find Out! // Code Review
27:25
The Cherno
Рет қаралды 151 М.
9.19: Prototypes in Javascript - p5.js Tutorial
19:24
The Coding Train
Рет қаралды 258 М.
Coding Challenge #90: Floyd-Steinberg Dithering
28:51
The Coding Train
Рет қаралды 439 М.
The Most Important Skill You Never Learned
34:56
Web Dev Simplified
Рет қаралды 219 М.
Coding Challenge #50.1: Animated Circle Packing - Part 1
28:32
The Coding Train
Рет қаралды 251 М.
Advance Enemy AI in Godot
8:17
Jackie Codes
Рет қаралды 30 М.
Collisions Without a Physics Library! (Coding Challenge 184)
31:05
The Coding Train
Рет қаралды 125 М.
Coding Challenge #47: Pixel Sorting in Processing
20:31
The Coding Train
Рет қаралды 201 М.
Coding Challenge #61: Fractal Spirograph
44:19
The Coding Train
Рет қаралды 77 М.
Harder Than It Seems? 5 Minute Timer in C++
20:10
The Cherno
Рет қаралды 220 М.
How To Choose Mac N Cheese Date Night.. 🧀
00:58
Jojo Sim
Рет қаралды 104 МЛН