YOUTUBE CHANNEL!!!!!

I have decided to create a YouTube channel to share with all of you. It will consist of better (and more frequently updated) programming tutorials, gaming, and hopefully, some collabs with other YouTubers I know. Right now, the channel is called JET Trom, but I am hoping to change that. If I do, I will let you know. Make sure to sub! Go to channel:

This is my first vid!

PYTHON TUTORIALS

THE PYTHON TUTORIALS ARE HERE!!!!

I took some time during this weekend to create Python tutorials, finally. I am extremely sorry for such the long wait, and will make even more later. I forgot to include a tutorial on using the Python IDE, so I hope to create that very soon. For now, you can use an online Python IDE that I, personally, use a lot, called Repl.it. I encourage you guys to take a look at other tutorials, unless you specifically want them from me, on websites like sololearn.com, or w3schools.com. Comment below if you want anything else specifically, and if you want me to showcase some of my best Python code. See ya later!

Games

I have revisited the games idea, and have come of with the solution of jettromz.com/games. This is a game hub for embedded code that you can run using Flash. The hub includes games like The World’s Hardest Game 1, 2, and 3, QWOP, Rogue Souls, and a unique one-play platformer game. If you have any other ideas for games, feel free to contact me in the real world or comment below.

Python Tutorials

Hello. From now on, I will start creating Python tutorials for beginners. These tutorials will be entirely created by me, and will go through each stage of Python so that, in the end, you will have a intermediate understanding of the programming language Python. Go to my new-coming Python page to learn more.

-Jet Tromz, Dev.

Binary Challenge

What is 10001001001001010010010 in base 10 translated from binary?

What is 65536 in binary translated from base 10?

Comment your answers below. Whomever gets the answers right will win a shout out in my next post!

BONUS: Solve qlaayvtg.jvt/wypgl in the Caesar cipher with a shift of 7 for an even more special prize! Go to the link once completed; there you will find your prize.

CSS Button Animation With HTML

<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.button {
  padding: 15px 25px;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #fff;
  background-color: #4CAF50;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
}

.button:hover {background-color: #3e8e41}

.button:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}
</style>
</head>
<body>

<h2>Animated Buttons - "Pressed Effect"</h2>

<button class="button">Click Me</button>

</body>
</html>