Youtube University

Quote of awesomeness: “I am still learning” ~ Michelangelo

Youtube, youtube, youtube, how it’s grown these past few years. Let’s go back to the beginning, shall we?

There’s no youtube university….. YET! But, with youtube, you can learn so much from coding, cooking, hacking, how-to’s, about the universe and so much more!! Any gender, color, and ethnicity have the free access to learn and even add about what they know into youtube, as long as there’s wi-fi. It’s amazing, isn’t it?

It was 2005, February 15 when the website, called Youtube, was being built up. Who were the faces behind this, exactly? Three names Chad Hurley, Steve Chen, and Jawed Karim. This idea started when Chad and Hurley tried sending a video with sound to their friends through e-mail. But, then the file was too large that it wouldn’t send which then sparked an idea to create a website where videos could be shared!

Ooooh, I wonder *wink* where could do *wink* that now (hint: Starts with You and ends with Tube). 

The first ever video on Youtube was on April 23, 2005, which was posted by Jawed Karim, was their testing video to see if the website worked. 

Here is the first youtube video! It’s called “Me at the Zoo” and is only about 19 seconds long. There are about 46,035,660 views and growing as people still come and visit the first ever youtube video. If you scroll down a bit on this youtube video, it’s very likely to see very very very recent comments. This was 12 years ago! Imagine how this literally started a new era.

100 million videos were on the site when Youtube was just one year old! And, on October 9, 2006, Google bought youtube for $1.65 billion. 



Awesome Learning Channels to Subscribe to!

  • – CRASH COURSE –

Screen Shot 2018-02-19 at 15.48.06In Crash Course, there are plenty of videos on World History, Biology, Ecology, Literature, Philosophy, Mythology, Physics, Chemistry, Computer Science and way more! It’s an awesome channel to learn about so many different subjects in such a fun and entertaining way. Check it out!

  • – TED-Ed –

Screen Shot 2018-02-19 at 15.57.13

TED-ed is also composed of educational videos on different subjects and they even have riddles to solve. I personally love watching videos from TED-ed because they are very informative and fun at the same time! And, the videos posted here are animated, too!

  • ASAP SCIENCE –

Screen Shot 2018-02-19 at 16.03.51.png

Here at Asap Science, you can find plenty of fun and interesting science videos which are all mostly made from drawings! Here is one of their videos:

 

  • Khan Academy

Screen Shot 2018-02-24 at 14.50.47

The videos from Khan Academy have truly helped me and they have various videos on plenty different subjects. I suggest you check this out! 



 

Awesome, right? There are so many things that can be learned with everyone sharing and teaching others through youtube. It’s possible that you could find any tutorial on how to do anything out there, from how to take make puppy food to even building a solar car!  You can even post your one videos!

Yours truly,

L.O.A.S.H

 


 © Elizabeth Anne Villoria 

Python Basics!!!

Quote of awesomeness: “It’s harder to read code than to write it.” ~ Joel Spolsky

Let’s learn some basics!

Here are some simple datatypes:

  • Integers (whole number)
    • 1, 2, 3, 4, 5, 6….

 

  • Floats (decimals)
    • 1.1, 1.2, 1.3, 1.4, 1.5…..

 

  • String (anything in “quotation marks”)
    • “hello”, “my”, “awesome”, “readers!”

 

  • Boolean (I know, sounds kinda funny right)
    • these datatypes are values at two constant objects
    • a boolean is either True or False (yes, with a capital T and a capital F)

 

Want to do something cool? Yeah, me too. Okay, once you open up your terminal, type in and press enter. The next that should have happened is that your terminal should have showed this:

>>>

Did you know??!!: #when a hashtag is put in python, this is known as a comment and it doesn’t affect the code

Did you know that we can keep datatypes stored into variables? It works like this. When you write a variable a word or letter, for example, then followed by this is a equal sign you can assign a variable. Let’s try it out on your terminal! Try doing something similar to the following:

>>> x = “helllloooooo thereeee!!!”

When you pressed enter, you must have not seen anything happen but just another >>>. But, it’s okay, here’s the thing. The string I just put with the variable is now stored. So when I put my variable alone this is what happens:

>>> x

Press enter and theeeeen!!

>>> helllloooooo thereeee!!!

TADA! WASN’T THAT SUPER COOL?!?! And, that’s just the very basics of what can be reached with python. 

You can even do some math with python. The arithmetics might be slightly different but I’m sure you will get the hang of it soon!:

  • Multiply (it’s the asterisks sign)
  • Division (it’s the slash)
  • Addition (it’s the plus sign)
    • +
  • Subtraction (it’s the minus sign)
  • Exponentiation (it’s two asterisks)
    • **
  • Modulus (it’s the percentage sign) 
    • %
    • this divides a number with another number and inputs the remainder

Here’s an example of each of these signs and their outputs. You can also test this out on the python which we opened up earlier on the terminal.


multiplication, *

>>> 2 * 9

When we put the equation above, our output would be

>>> 18


 

division, /

>>> 256 / 2

The output would be:

>>> 128


 

addition, +

>>> 1000 + 1000

The output would be

>>> 2000


 

subtraction, –

>>> 500 – 200

The output would be:

>>> 300


exponentiation, **

>>> 4 ** 2

The output would be:

>>> 16


 

modulus, %

>>> 2 % 5

Would get the output of:

>>> 1


 

Go on. Try experimenting at your terminal!

!important! : Unlike other programming types, python is very picky with whitespace. Meaning the indentations! Sometimes an error on expected or unexpected indentations may rise here and there but it’s nothing a few backspaces or the tab button can’t handle.

We’ve gotten down with some of the very basics that can be done with programming. With what you’ve learned here so far try exploring and trying this out! 

Yours truly,

L.O.A.S.H