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!!!

11/30/2020

Kanao

 Hello!

Today is Kanao!


Tsururi Kanao(栗花落 カナヲ)









Kanao is a demon slayer corps team mate.

She uses the Flower breathing.


Her birthday : May, 19th


Bye!!!

11/29/2020

Wakayama Shirahama Trip!

 Hello!

Today is about a trip!


Trip to Wakayama Shirahama


We went to Wakayama・Shirahama(和歌山・白浜) by car, with my parents.

First, we went to a Seafood market, Tore Tore Market(とれとれ市場).

There was many fishes!!









We bought Salted Plum.

Then, we went to a hotel called Hotel Harvest.








We checked in, go to the room and first rested in the room.

Then we went to the restaurant and ate buffet.

There is so many food, my tummy get bigger!

After that, we went to the main bath and rested.

It was a good bath.

Then, we did Nintendo Switch a little and slept.

..........

We woke up.

It's the second day!

We went  to the restaurant, and it's the buffet!

I ate so much.

After that, I went to the main bath.

Great!

We checked out and went to....

Adventure World!

We saw the Pandas!

It was really cute!











I heard a panda birthed a baby!

But, we couldn't see.

We saw the Penguins, the Birds, and many!

We rode on a car that leaded to the safari!

There was White tigers, Lions, and etc.


The Dolphin show was really amazing!


Then, we come home.


Bye!!!


11/27/2020

Sanemi 🌬

 Hello!

Today is Sanemi!


Shinazugawa Sanemi(不死川実弥)


Sanemi is a Wind Pillar, he has a little brother, Genya.

He is mad at Genya, and he loves Ohagi.


His birthday : November 29th


Bye!!

11/26/2020

Gyomei 🌄

 Today is Gyomei!


Himejima Gyomei (悲鳴嶼行冥)










Gyomei is a Rock Pillar, he was in the temple. 

One time, a demon came to the temple, and he finished the demon off by punching.


His birthday : August 23rd


Bye!!!

11/24/2020

Obanai 🐍

 Hello!

Today is Obanai!


Iguro Obanai (伊黒小芭内)








Obanai is a snake pillar, he has a Insistent personality.

He has a snake, Kaburamaru.


His birthday : September 15th


Bye!!


11/23/2020

Misturi 💕

 Today is Mitsuri!


Kanroji Misturi (甘露寺蜜璃)









Mitsuri is a Love pillar, she ate to many Sakura Mochi, and her hair and eye's color changed.

Her master is Kyojuro, the Fire Pillar.

She eats many food, and her muscles are getting really big!


Her birthday : June 1st


Bye!!!

11/21/2020

Python Explnation (Edabit // Longest word)

 Hello!

Today's question is this!

Create a function that takes a word and extends all vowels by a number num.

Write a function that finds the longest word in a sentence. If two or more words are found, return the first longest word. Characters such as apostophe, comma, period (and the like) count as part of the word (e.g. O'Connor is 8 characters long).

Examples

longest_word("Margaret's toy is a pretty doll.") ➞ "Margaret's"

longest_word("A thing of beauty is a joy forever.") ➞ "forever."
  
longest_word("Forgetfulness is by all means powerless!") ➞ "Forgetfulness"

 

OK!

This is my solved code!

def longest_word(s):
words = s.split(' ')
string = ""
for word in words:
if len(string) < len(word):
string = word
return string

Let's split the word!

Then, let's make a new string and loop.

We will check if the length of the string is smaller than the word's length.

Then, we will change the string to the word.

Lastly, we will return the string.

 

Easy!

Bye!!!

 

Zelda mods!!

 Hello!

Today, I'll show you some Zelda mods!


1. Playable princess



You can now play with Zelda, not Link!


2. The Legend of Waluigi : Breath of the wild


Waluigi is replaced with Link!



Bye!!

11/20/2020

Tengen 🎶

 Hello! Today is Tengen!


Uzui Tengen(宇随天元)











Tengen is a Sound pillar, he has 3 wives.

He retired demon slayer corps while a fight with Upper rank 6.


His birthday : October 31st

Bye!!


11/19/2020

Muichiro 🌫

 Today is Muichiro!


Tokito Muichiro(時任 無一郎)











Muichiro is the Mist pillar, he has a brother, Yuitchiro.

He became to a Hashira in 2 months.


His birthday : August 8th


Bye!!!


11/18/2020

Kyojuro🔥

 Hello!

Today is going to be Kyojuro.


Rengoku Kyojuro










Kyojuro is Fire pillar, he has a little brother Senjuro.

Kyojuro is really strong, and kind.

But he died while fighting with Upper Rank 3.


His birthday : May 5th


Bye!!!


11/16/2020

Shinobu🦋

 Hello!

Today is going to be Shinobu!


Cocho Shinobu (胡蝶 しのぶ)











Shinobu is studying poison that kills demons.

Shinobu is always angry, and she is the insect pillar.

Her sister was killed by Upper rank 2.


Her birthday : February, 24th


Bye!!!

11/15/2020

Python Explanation (Edabit // Employee class with keywords)

 Hello!

Today I will solve this question!

Create a class Employee that will take a full name as argument, as well as a set of none, one or more keywords. Each instance should have a name and a lastname attributes plus one more attribute for each of the keywords, if any.

Examples

john = Employee("John Doe")
mary = Employee("Mary Major", salary=120000)
richard = Employee("Richard Roe", salary=110000, height=178)
giancarlo = Employee("Giancarlo Rossi", salary=115000, height=182, nationality="Italian")

john.name ➞ "John"
mary.lastname ➞ "Major"
richard.height ➞ 178
giancarlo.nationality ➞ "Italian"

And this is my solved code!

class Employee:
def __init__(self, name, salary=0, height=0, nationality="", subordinates=""):
self.firstname, self.lastname = name.split(' ')
self.salary = salary
self.height = height
self.nationality = nationality
self.subordinates = subordinates

First, the first name and the last name is the name splited.

Wendy (Split) Nickel

Next, we have the variable salary.

Put the salary into the self.salary.

Height, nationality, and subordinates is also same!

Put the (height, nationality subordinates) into the self.(height, nationality subordinates) .



That was really easy!

Bye!!!

11/14/2020

Tomioka Giyu 🌊

 Hello!

Today is Giyu!


Tomioka Giyu(冨岡 義勇)











Giyu is a calm swordsman.

He invited Taijiro to Demon slayer corps.

He uses water breathing, and little frustrated with Shinobu(しのぶ).


His birthday : February 8


Bye!!!

11/13/2020

Inosuke 🐗

 Hello!

Today, I will introduce about Inosuke!


Hashibira Inosuke (伊之助)












Inosuke is a rough character, and he is raised by a mountain.

He has two swords, that is rough.

He has a headgear which looks like wild boar.


His birthday : April 22nd

His age : 15


Bye!!

11/12/2020

Zenitsu⚡️

Hello!
Today, we will show you about Zenitsu!


Agatsuma Zentitsu(我妻 善逸)




















Zenitsu is a coward, but when he sleeps, he unleashes his power.
He also is kind!


Birthday : September 3rd
His likes : Sweet and Expensive things


Bye!!

11/11/2020

Sort the apps!3

 Hello!

Today, we will also split apps!

Today we will split with how to use!


Writings

1. Evernote

2. Reminders

3. Notes

4. Stickes

5. Google spread sheet

6. Blogger 


Code

1. Visual studio code

2. Scratch

3. Idle

4. Pycharm


Audio

1. Google play music

2. Youtube music

3. Siri

4. Google Home

5, Itunes


Bye!!!



11/10/2020

Sort the apps! 2

 Today, we will sort the apps by how to use.



MUSIC

1. Spotify

2. Itunes

3. Google play music

4. Youtube music(?)


BROWSER

1. Safari

2. Google

3. Bing

4. Internet Explorer


PHOTOS

1. Photo booth

2. Photos

3. Google photos

4. Skitch

5. Quick time player


SNS AND COMUNICATION

1. Twitter

2. Facebook

3. Skype

4. Messenges

5. Discord


Next is going to split about how to use again!

Bye!!!


11/09/2020

Sort the apps

Hello!

Today, we will sort apps into colors.


BLUE APPS

1. Skype

2. Dropbox

3. App Store

4. Discord

5. Facebook

6. Twitter

7. Messenges

8. Weather

9. Visual Studio Code


RED APPS

1. Dictionary

2. Photo Booth

3. Skitch

4. Voice Recorder

5. Youtube


YELLOW APPS

1. IBooks

2. Stickies


GREEN APPS

1. CotEditor

2. Evernote

3. Face time

4. Spotify


COLORFUL APPS

1. Grapher

2. Photos

3. Itunes

4. Mission Control

5. Siri

6. Chrome

7. Google maps

8. Google photos

9. Play store

10. Gmail

11. Instagram

12. Tik tok


Colorful apps WIN!!

So, colorful apps is when the apps color is more than 3 colors or more.

Bye!!!

11/08/2020

Python explanation (Edabit // Fizz Buzz Interview Question)

Hello!
Today is going to be Python Explanation!
🐍: ME?😍
Leo618 : Uh, no...😓
🐍 : Oh.....😒
Leo618 : Sorry, uh..... Never mind.😅
 The question is this!

Create a function that takes a number as an argument and returns "Fizz""Buzz" or "FizzBuzz".

  • If the number is a multiple of 3 the output should be "Fizz".
  • If the number given is a multiple of 5, the output should be "Buzz".
  • If the number given is a multiple of both 3 and 5, the output should be "FizzBuzz".
  • If the number is not a multiple of either 3 or 5, the number should be output on its own as shown in the examples below.
  • The output should always be a string even if it is not a multiple of 3 or 5.

Examples

fizz_buzz(3) ➞ "Fizz"

fizz_buzz(5) ➞ "Buzz"

fizz_buzz(15) ➞ "FizzBuzz"

fizz_buzz(4) ➞ "4"
So, this is the solved code!!
def fizz_buzz(num):
if num % 3 == 0 and num % 5 == 0:
return "FizzBuzz"
if num % 3 == 0:
return "Fizz"
if num % 5 == 0:
return "Buzz"
else:
return str(num)

I'll change the font...😎(WHY!)
so, Let's see the code.
The first if is when the number is a multiple of either 3 or 5.
If the answer is 0 when the number ModulO with 3, AND when the answer is 0 when the number Modulo with 5.
Then, we return "FizzBuzz"!
The second if  is when the number is a muLtiple of 3.
If the Answer is 0 when the number Modulo with 3, then we return "Fizz"!
The third if is when the number is a multiple of 5.
If the answer is 0 when the number modulo with 5, then we return "BUZZ"!
Lastly, when the number is not a multiple of 3 or 5, Return the number Stringed.
How was it?
It was really easy!
Piece of a cake!
Bye!!!


11/07/2020

Crazy places at Google maps

 Hello!

Today is crazy!

1. Fire arms....

Oh bad, there is a man with firearms!

We hope that is a toy gun.(No it isn't)


2. 2 Samurai

Wow, there is two samurais fighting! 

Which wins....!


3. Donkey eating garbage

Poor Donkey, he came to a city and eats garbage.....



Bye!!!

11/06/2020

Scary places at google street 2

 Hello!

Today is also scary places at google street!

1. Flamingo legs

You can see woman that's a flamingo legs, it should be google street glitch.


2. Gas baby

There is many gas masks ruled by a baby, you should never go there.


3. Clever boy

I think he's hiding some dead bodies in the sewer while he pretends as a city sewer inspector.



11/05/2020

Scary places at google street

 Hello!

Today I will show you some scary places at google street!

1. Battle Cat

Wow, there is a new cat!


2. Bye-bye safe journey

Let's stay in this side and continue the safe journey.


3. Spider car

There is a car on a wall!

That's funny....


4. Strange clouds

I don't know why this happen, but it is really creepy.....



Bye!!!

11/04/2020

Scary places at google street

 Hello!

Let's see this creepy places at google street.

1. Aliens on Earth?

This can't be real!

Alien are here!


2. A Glitch

There is a glitch!

Don't get traped!

3. The guy in the gas mask
There is a guy in the gas mask looking Google street.
Is there something?





Life hacks

 Today is going to be life hacks!

1. DIY Sprinkler

You can make a DIY Sprinkler with a bottle.


2. Paper clips!

Stick paper clips to the end off the tape.


3. Dust tape opener

You can use a dust tape to open tough lids.



Life hacks!

 Hello!

Today is going to be the Life hacks!

1. Wine opener in a car.

If you are drinking beverages with a bottle cap, you can open with your seat belt buckle.


2. Coffee cups

You can use coffee cups and a brush to make a pallet and brush


3. Posting

You can post important things on the door.


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...