Monthly Archives: October 2019

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>