This is my dad’s book, he wrote it to teach kids how to code. Check out other things I’ve made with code on this website. If you want to learn how to do things like that then this book is for you. Click here to purchase
This is my dad’s book, he wrote it to teach kids how to code. Check out other things I’ve made with code on this website. If you want to learn how to do things like that then this book is for you. Click here to purchase
I just made this timer for solving your Rubik’s Cube. Have you ever wondered, man my Rubik’s Cube timer always needs me to touch and then release. Well, not anymore. This LEGO timer is completely Lego and does not require you to press any buttons, you simply just remove the cube from the platform, solve it, […]
In these videos I am going to teach you how to code in JavaScript (Fractions): Finding The LCM Finding The GCF Reduce Fractions Regroup Fractions Add Fractions
So from the title you know my game Blob Attack is now properly playable on a phone or touch device. 😆 😆 😆 😆 😆 😆 😆 😆 😆 😆 😆 😆 😆 😆 😆 😆 click here to play now###!!!
So I made a game, right? Well my game just got updates such as: New background color and graphics We now have a leader board Guess what! “what?” we got more levels! Now there are 20. “no way!” Levels 12-20 have all side lasers by clicking W for up laser, S for down laser, A […]
Hey everybody! My new game Blob Attack has come so you better check it out right now because it is EPIC. I do coding with my dad and we just came out with a new game! Here are some things to know about this game: Level 3-14: Click the space bar to shoot lasers! OMG […]
I am going to tell you about the really cool card game that I just made and now you can play it OH YEAH! It is a simple card game called 7-8. I still have a few more things to work on but it is playable. Here is a link to my dad’s blog post about […]
Hey so you heard about the card game I am working on. NO!!!!!!!!! okay here is a link to learn more about my card game. I made a card class to make cards for my game. var Card =function(number,suite) { this.number=number this.suite=suite } I also made a deck class to get the right cards and […]
Classes: An object’s type is a class. The class tells you what properties and methods that type of object has. Here is how you would write a class in JavaScript: var FidgetSpinner=function(color,shape) { this.color=color this.shape=shape } FidgetSpinner.prototype.spin=function() { //Do something here } Objects: Now that we learned about classes we can make an object var spinner=new FidgetSpinner(“color”,”shape”) let’s spin the spinner […]
Step 6: Write the code to make the conveyor belt move when the sensor detects something.(in this case the coin) How it works: put an infinite loop put a wait block (wait block waits for sensor reflected light intensity greater than 20) next put a motor block (spin the motor one time) put a wait […]