Tag: Long post

  • Variables in JavaScript, 2/27/2024, Tuesday

    Console.log( Variables in JavaScript, which I will be referring to as JS from now on, is relatively similar to python. First, we have the ‘let’ variable type. ‘let’ is a variable type put before the variable, but functions just like a normal python variable. you can reference it, you can change it, all that good…

    Continue Reading →

  • Feb 23, 2024, Friday Classwork

    Extends Feb 16, 2024, Friday Classwork After finished up the 2nd video, and nearly finishing the 3rd in the series, I was able to finally!! Make some players, and get them to move. The main code to get them moving is in our new file, called KeyInput.java In KeyInput.java Obviously the space on here is…

    Continue Reading →

  • Feb 2, 2024, Friday classwork

    A good portion of the first part of class was looking up the best code to use for the purpose I plan to use it for. While I am used to Python, I was well aware it was not suited for the type of game I wished to make. I was hoping to use a…

    Continue Reading →

  • Jan 17, async

    Video I used to learn: https://www.youtube.com/watch?v=A_Z1lgZLSNc Threading: Running pieces of code concurrently/at the same time Python has something like this; it allows the coder to run two or maybe more pieces of code at the same time. Obviously, such a thing isn’t technically possible, but with how fast machines work it is very close to…

    Continue Reading →