12/29/2020

Funny gifs!

 Hello!

Today, I'll show you some favorite gifs!


1. Oof!


The baby go from the weekend to..... OOF!
Monday!
Everyone does not like Monday~!
I like the story off this Gif!

2. Don't shake too much!

Oh, bad luck, or maybe good luck!
Everyone makes mistakes, it is ok!(It is not Ok.)
Did she shake too much?

3. Turtle Shower



Oh, there is a cute turtle.....Wha!!!???
The turtle is dancing! lol
Maybe he is be damaged from the shower!
But that is cute too! (But a little scared)


Bye!!!


12/28/2020

Among us

 Hello!

Today is about Among us!


Last time, I showed you Among us but that was not the real rule.

This is the real rule!




Among us is a game about devective.
Find the Imposter with your crew mates, if you are a imposter, you need to kill everyone!!
Discuss, and decide who should eject!

Bye!!!
 










12/25/2020

My Christmas present

 Hello!

Today I'll show you my Christmas present!














This is my 2020 Christmas present!

It is Taiko no Tatujin's Dedicated controller!!

We can do "Don" and "Ka" Like in the arcade!

And we don't need moneys!

We have buttons, Great!

We have also a Stick holder!


Bye!!!

12/22/2020

Fun games (ninja.io)

 Hello!

Today is ninja.io!


Ninja.io


Ninja.io is a battle royale with ninjas.

You can choose a weapon and fight!!!


Bye!!!

12/20/2020

Python Explanation(Edabit // Drunken Python)

 Hello!

Today's question is this!

Python got drunk and the built-in functions str() and int() are acting odd:

str(4) ➞ 4

str("4") ➞ 4

int("4") ➞ "4"

int(4) ➞ "4"

You need to create two functions to substitute str() and int(). A function called int_to_str() that converts integers into strings and a function called str_to_int()that converts strings into integers.


And this is my solved code!

str, int = int, str


def int_to_str(n):
return str(n)


def str_to_int(s):
return int(s)

 

 First, we make two function int_to_str and str_to_int.

Inside int_to_str we return the number stringed.

Inside str_to_int we return the string numbered.


Easy!!!


Bye!!!!!!!



12/16/2020

good games(paper.io)

 Hello!

Today is Paper.io!


Paper.io


Paper.io is a game that you make your territory bigger.

You draw a line to the territory and get bigger.

If you touched your own line, you are dead.

Or if you are touched from the opponent, you are dead.


Bye!!!

Good games (skribbl.io)

 Hello!

Today is skribbl.io!


Skribble.io 


skribble io is a drawing and guessing game!

One draws the subject, and the other one needs to guess what it is guessing.

Drawer, Don't tell the answer!


Bye!!!

Good games (Wormate.io)

 Hello!

Today is Wormate.io!


Wormate.io


wormate.io is like slither.io but the snake is worm, and the items is sweets!

It's like a slither.io for girls!


Bye!!

Good games (agar.io)

 Hello!

 Today is agar.io!


Agar.io


https://agar.io/#battleroyale


Agar.io is a game that you take many coins and get bigger.

You can split into, 2, 4, ....!!

You can eat other ones but, you can also be eaten.


Bye!!!

Good games (hole.io)

 Hello!

Today it is hole.io!


Hole.io


Control your black hole, eating up everything on your way. 

The bigger you get,  the larger structures you are able to suck in.

Keep an eye on the opponent's size, too, you will get eaten.


Bye!!


Good games (droll.io)

 Hello!

Today is droll io!


Droll.io

https://droll.io

Droll.io is a unique puzzle game in which several users watch the same viral videos online and try to guess how said videos end. Popular clips about cats, dogs and other animals, dash cam footage and other kinds of entertaining real-life content are full of surprises.


Bye!!!

Good games (slither.io)

 Hello!

Today, we will do slither.io!


Slither.io


http://slither.io


slither.io is a game that you eat the light and get bigger.

If you touch the enemy's body, you die, but if the enemy touched your body, the enemy will die.


Bye!!!

Good games 2 (Among us)

 Hello!

Today is this game!


Among us


https://amongusplay.online


Something went wrong on the spaceship. There is a traitor in the ranks who wants to quietly bring down everyone else.

Anything goes: attacking other crew members, sabotage and deception. There is no other way if you want to survive. If the traitor is caught red-handed, he will be thrown into outer space to his death. Be resourceful and cunning, because YOU are the imposter!


Bye!!

Good games

 Hello!

Today, I'll show you one online game!


Aquapark.io


https://aquapark.io


Aquapark.io is a racing game unlike any other that you have ever seen. If you think racing is not your thing, this new title is very likely to change your mind because it subverts expectations and brings something new to the table. You control a character sliding down a waterpark slide together with many other players. The slide is huge and spirals down from the sky. Here’s the fun part: you can actually jump off the track at any moment and try to land on a lower level overtaking everyone in an instant! You can also push the others off the track and achieve an impressive kill count.


Bye!!!

12/15/2020

Logos with a Hidden Meaning that we never even noticed

 Hello!

Today I will introduce 3 logos with a hidden Meaning!


1. Amazon




Amazon looks normal but if you see the arrow, it starts from "a" and ends with "z".

It means it has it has products from A-Z!


2. Baskin Robbins







This also looks normal, but look at the pink part.

It forms "31". You know what it means now.


3. Hyundai





Hyundai's logo looks like the letter "H", but the "H" actually means a man and a man shaking their hands.


Bye!!!


12/13/2020

Python Explanation (Edabit // List of multiples)

 Hello!

Today's question is this!

Create a function that takes two numbers as arguments (numlength) and returns a list of multiples of num until the list length reaches length.

Examples

list_of_multiples(7, 5) ➞ [7, 14, 21, 28, 35]

list_of_multiples(12, 10) ➞ [12, 24, 36, 48, 60, 72, 84, 96, 108, 120]

list_of_multiples(17, 6) ➞ [17, 34, 51, 68, 85, 102]

This is my solved code!

def list_of_multiples(num, length):
lst = []
for i in range(length):
lst.append(num + i * num)
return lst

First, make an empty list.

Second, We loop of the length.

Next we will append multiple number.

Lastly, we will return the list.

Easy!


Bye!!!

12/08/2020

Yushiro

Today is Yushiro!


Yushiro (愈史郎)











Yushiro is the only boy who was demonized by Tamayo. While hiding with Tamayo, he also acts without eating humans.


Bye!!

12/06/2020

Python Explanation (Edabit // Change Every Letter to the Next Letter)

 Hello!

Today is going to be the Python Explanation!

First is the question!

Write a function that changes every letter to the next letter:

  • "a" becomes "b"
  • "b" becomes "c"
  • "d" becomes "e"
  • and so on ...

Examples

move("hello") ➞ "ifmmp"

move("bye") ➞ "czf"

move("welcome") ➞ "xfmdpnf"

Notes

There will be no z's in the tests.

Then it is going to be the solved code.

def move(word):
moved_word = ''
for i in word:
moved_word += chr(ord(i) + 1)
return moved_word

First, we will create a new string.

Then we loop the word.

So we look at the letters of that word.

We will add the off that letter's next letter into the new string.

After we go out of the String, we will return.

It was easy!


Bye!!!




12/05/2020

Urokodaki

 Hello!

Today is Urokodaki!


Urokodaki Sakonji







Urokodaki is a teacher of Taijiro.

He taught the breathing techniques.


Bye!!

12/03/2020

Tamayo

 Hello!

Today is Tamayo!








Tamayo is a demon that losed the grip from Muzan.

Tamayo is a researcher.


Bye!!

12/02/2020

Nezuko

 Hello!

Today is Nezuko!


Kamado Nezuko(竈門 禰豆子)








Nezuko is Tanjiro's little sister, she was made to a demon.

She overcome the sun, demon usually die by walking in the sun.


Bye!!

12/01/2020

Genya

Hello!

Today is Genya!


Shinazugawa Genya(不死川玄弥)








Genya is a little brother of Sanemi.

He don't uses breathing, but he can eat demons and be demons with a hour.


Bye!!!

Super Leo 4!

  Leo : Let's do this! Reimu : I'll kill those monsters, so you go! Leo : Yeah! I'll go to the goal!  Leo : Let's go〜! ? Wai...