Put Your Records On – Corinne Bailey Rae Cover (ft. my lil sisters) + random montage

super random. BUT, here’s a little video. enjoyyyy. I hope that you’re having a great week, HYDRATING, and staying awesome. Being awesome is good.

ALSO:

have you been working on finding your inner peace? 

have you laughed till u peed recently because you should.

remember to take breaks and rest.

I’m proud of you!!

love youuuu! ❤

 

 

 

 

 

 

 

Da (amazing) Coffee Recipe (that you must try) + a surprise!!

It’s an awesome concoction that tastes absolutely like heaven. And, today, I shall bestow my knowledge on this super-yummy-extraordinary-amazing-mouthwatering-tasty recipe to you, my lovely audience. Let’s get this started.

First order of business! Gaaaaather the components of Da Coffee:

  • Black Coffee
  • Butter
  • Coconut Oil (preferable hardened)
  • Brown Sugar

You will also need:

  • A blender
  • Two teaspoons
  • A cup

Step 1: Brew the Coffee

Okay, so I brew my coffee in a Stovetop Coffee Maker. But, whatever you have to brew your coffee, you may use too!

Step 2: Let the Coffee CoooOoOl down

Follow the title of this step. Just a lil bit of a cool down.

Step 3: Mix in the magic in a blender

Get your freshly brewed coffee, put it in your blender. Be careful doing this! Then, add a little more than half a teaspoon of butter and another half a teaspoon of your coconut oil.

Then, blend immediately!! Watch your coffee turn into a nice cream blend.

Step 4 : YUMMY STUFF

Pour your coffee into your cup and add sugar to your desired sweetness.

 

HI, MY AWESOME PEEPS! Here’S the surprise! My first youtube video…… about this coffeee concoction. It was fun making it.. hehehe:

 

Yours truly,

L.O.A.S.H


© Elizabeth Anne Villoria

L.O.A.S.H’s Guide to (nearly) Everything: Arduino Color Lamp Mixer!

Quote of awesomeness: “Is not about creating an object. It is about creating a perspective.” ~ Albert Paley

Level of hardness: intermediate (You can do this!)

Heyyy!!!! Here’s another Arduino project for you!

For this project, you will need the following:

  • 1x Arduino UNO Board
  • 1x USB Cable Type A/B
  • 1x Breadboard
  • 1x RGB LED 
  • 3x 220-Ohm Resistor
  • 3x 10k-Ohm Resistor
  • 3x Photoresistors
  • 13x Jumper Wires

 

Step 1:

0-02-01-25a0a6f9debabdd212fbc3c05acd2fcf5f1c439705c879adf26fea2d27db35df_full.jpg

The first step is two connect your breadboard to your Arduino and it should look something like the photo above. Then, add your RGB LED to your breadboard. 

Step 2:

0-02-01-ce8d12da04188f7a9054ea5aa04a72e5ac576232bc208167812c08ec3ba18cfe_full

 

Next, you need to grab another wire and connect the other positive lane of the breadboard to the negative lane on the other side of the breadboard.

 

Step 3:

0-02-01-9bde85f3c5437a50c6a476f15138e6c5858ce46a700364835db6ee8e53447d2f_full

In this step, we will be placing the three 220-Ohm Resistors to three of the legs of the RGB LED. You will only be placing the resistors on the R, G and B of the RGB LED, this will leave you with one leg unconnected.

 

Step 4:

0-02-01-dbc63a13ab6f50466eb8dd3465af30d65b8f5e7967920a87645ee225ffaa44ea_full.jpg

For this step, you will be needing four wires. Remember I told you that you were left with one leg of the RGB LED which isn’t connected? Well, it’s time to connect it now! Place one end of the wire to the remaining leg of the RGB LED then place the other end to the negative lane of the board. In the photo, the wire which I used for this connection is white.

0-02-01-61ac8f02b55daa224f1962b3e828047ead0580414fcee62ded86ee5ad453523a_full.jpg

With the other three wires, connect it to each of the 220-ohm resistors. Then, connect the other end of the wires to the Arduino 9, 19, and 11.

 

Step 5:

0-02-01-9f2cb7be6b6ebbcc06aaf7b34dfd409e332e34965665efa0386c1a48cf6d16fb_full.jpg

Let’s place the photo-resistors on the breadboard so that they cross the center divide from one side to the other. 

 

Step 6:

0-02-01-c45f2f455156cfbfb4d1aee3c77926f4c5d55503f0796170018956fc0281a57a_full.jpg

Now, connect the 10k-Ohm resistors to one side of the photo-resistors and the other side to the negative lane of the breadboard.

 

Step 7:

0-02-01-3e1c74c9aa8f84a2158daa0ca5b528a6e2785236e0f532f18c1820533a1aa4a9_full.jpg

Taking three other wires, connect it between the photo-resistor and the 10k-Ohm resistor then connect the other end to the Analog In pins 0, 1, and 2 on the Arduino.

 

Step 8:

0-02-01-b946dc989126c65408412e7a570d06c10c28d9cfba450fc3cdc3bf12acca7b91_full.jpg

Going on the other side of the photo-resistor, connect each leg to the positive lane of the Arduino with three wires.

0-02-01-1733d59664a66910bba653033a94e1427937448a2a20dee06bab915fa06fac0f_full.jpg

Your result should look something like this!

 

Step 9:

This is the final step! Connect your Arduino to your computer, fire up your Arduino and copy paste in the following code:

const int greenLEDPin = 9;
const int redLEDPin = 11;
const int blueLEDPin = 10;

const int redSensorPin = A0;
const int greenSensorPin = A1;
const int blueSensorPin = A2;

int redValue = 0;
int greenValue = 0;
int blueValue = 0;

int redSensorValue = 0;
int greenSensorValue = 0;
int blueSensorValue = 0;

void setup() {
Serial.begin(9600);

pinMode(greenLEDPin, OUTPUT);
pinMode(redLEDPin, OUTPUT);
pinMode(blueLEDPin, OUTPUT);

}

void loop() {
redSensorValue = analogRead(redSensorPin);
delay(5);
greenSensorValue = analogRead(greenSensorPin);
delay(5);
blueSensorValue = analogRead(blueSensorPin);

Serial.print(“Raw Sensor Value \t Red: “);
Serial.print(redSensorValue);
Serial.print(“\t Green: “);
Serial.print(greenSensorValue);
Serial.print(“\t Blue: “);
Serial.print(blueSensorValue);

redValue = redSensorValue/4;
greenValue = greenSensorValue/4;
blueValue = blueSensorValue/4;

Serial.print(“Mapped Sensor Values \t Red: “);
Serial.print(redValue);
Serial.print(“\t Green: “);
Serial.print(greenValue);
Serial.print(“\t Blue: “);
Serial.println(blueValue);

analogWrite(redLEDPin, redValue);
analogWrite(greenLEDPin, greenValue);
analogWrite(blueLEDPin, blueValue);
}

 

Then watch as your RGD LED comes to life! It should change, mix and fade in different colours as the light around it changes, too! Awesome, right?? Yeah, it totally is.

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

In Danjugan, Day 3: What Bird is that?

APRIL 20, 2017 | DAY 3

5:30 – 7:00 am

Our wake up call was thirty minutes earlier than our normal routine and we all started to prepare. My roommates and I changed quickly and then headed down to meet up with the others. As all the colored groups assembled, we headed out team by team into the limestone forest. We went our normal route to one of the beaches as we were getting hyped for the day.

Apparently, we were doing bird watching! It was a really fun adventure. Each team was handed three pages of different birds each. We spotted a few migratory birds in the distance which seemed to be lounging on top of a branch. As we walked near the end of the beach, we started to play these learning games. Before the answers were revealed, we were given chances to guess the answer to their questions about birds. This also helped teams to earn more points and really just have fun. A few of the questions asked were:”

Q: “How many species of birds are found on Danjugan Island?”

A: “72 species are found on the island”

Q: “Which bird sounds like a witch laughing?”

A: “Umm, Philippine Cuckoo Dove?”

Everyone was putting their ideas and asking their questions and really learning. As questions about which bird was this or that came up, everyone stared intently at their laminated papers of bird species. There was a time when one of the AL’s asked which birds had a yellow body and black tail me and another camper both screamed “BLACK-NAPED ORIOLE!”. Just in case you were wondering, the number of points earned for this question was 1000 and I couldn’t help but try. We got it correctly and I and the other camper split it into 500 each for our teams.

This is what the pages of birds species they handed out.

A bird that stuck to my mind as we went on with our interactive lesson was the bird called Olive-backed Sunbird. It was a small but beautiful bird. The male (olive-backed) Sunbird had a shiny bluish breast which was used to attract the female birds. Did you know that male birds are sometimes way more attractive compared to the female birds? An example of a certain type of bird compared with its opposite sex is the following:

220px-cinnyris_jugularis_28female29_-singapore_botanic_gardens-8  c9c7486fb5364af615245246f13d4188 

[Disclaimer: I do NOT own these photos.]

The bird on the right is the male while the bird on the left is female. According to Scientific American, it was Charles Darwin who “developed much of the theory that helps explain this. He proposed that traits promoting survival in individuals are favored by the process of natural selection, whereas traits that help the individuals of just one sex (usually the males) compete for mates are favored by sexual selection. Sexual selection is responsible for many of the features unique to one sex in a given species. These features can be divided into two general categories: those acting as weapons that allow males to fight for access to females (antlers on deer, for example) and those acting as ornaments that attract the attention of females, such as long tails on birds”.

So long story short, some males have the different burst of colors and other features to use as weapons against other males to access female birds and attract female birds to mate.

Another activity we did was identify different species of birds according to their sound! As the AL grabbed her phone out and started to play a bird sound, the beach seemed to hush as all the campers huddled around trying to remember what kind of bird it was. This was fairly hard as we’ve gotten a few birds mixed up. I forgot to mention, but last night, we were also learning the bird sounds and which bird it matched to. Another thing we learned was the anatomy of a bird.

Screen Shot 2017-06-22 at 19.52.48

After we finished spotting birds and trying to name them as they swooped by us, we headed back to the camp to enjoy some breakfast.

7:30 – 9:00 am

After eating our breakfast, we all just relaxed for about 15 minutes as we played some board games and talked about we learned and other things.

We then started our lecture about Climate Change and Renewable Energy. Did you know that in 2015, it was recorded as the hottest year? Did you know that 2016 is recorded as the hottest year in history? And, did you know that 2017 is set to be the hottest year next? You’ve probably heard it all. The climate change is getting worse. Our Ice Caps are melting. Our polar bears losing their homes. Beach fronts and other cities are starting to sink. Heat waves are taking people’s lives. This has been a major problem for a long time.

Screen Shot 2017-06-23 at 08.34.24.png

Did you know that the kids and plenty of other people and families have to wear a mask as they live their lives in Beijing? Below are pictures from an article written by Mashable where they wrote about Beijing such as:

When Sean Gallagher first visited Beijing in 2005, they simply called it “fog.”

The British photographer, who has lived in Asia for the past decade, noticed that very few people in Beijing truly considered the city’s notorious air pollution much of an issue.

That attitude shifted in 2006 when Beijing hosted the Summer Olympics and the city’s choking pollution became an issue in the Chinese press.

“It entered people’s consciousness, but wasn’t something people took action to protect themselves against,” Gallagher said.

Nine years later, they wear the mask.”…….

 

This slideshow requires JavaScript.

At least the Chinese government is taking this seriously and making changes like they “banned new coal-fired power plants in major cities” and China’s renewable energy is doing great.

Yes, this is just one of the many problems that are occurring. Another example is what is happening in India. There have been so many heat waves that have victimized thousands of people. In 2010, 1300 lives were gone. In 2013, 1500 lives were taken. In 2015, another heat wave came and took 2,500 lives more. Also, there are “tens of millions of Indian lives” that are in poverty which also puts about 1.3 billion people (a quarter of India’s population) who doesn’t have electricity and lives on less than $1.25 a day to have no air – conditioner (which is seen as middle-class luxury) and struggle in finding a way to survive through the terrible heat (Waldman).

Before continuing, I shared to the camp my own experience of the Yolanda Typhoon which some say was the effect of climate change. We had to barricade our windows as the wind kept hitting it and composing these loud shaky sounds which made us worry about our windows breaking. We also had to go through about 1 month of brown out which was hard as we took turns at night to fan each other and help exchange flashlights and candles to navigate our way through the house at night. One thing which I was utterly terrified about was our neighborhoods restaurant’s roof flew off. The roof was big and strong and destroyed a couple of houses just a couple blocks from our house. If you looked down when you go outside, you could see leaves or smithereens of rocks going around in small circles which just showed the directions the winds were moving, which seemed to be everywhere.

Other campers told their experiences as well. We then went on from the drastic changes the earth has gone through and climate changes and tipping points to renewable energy.

We all raised our hands as we tried guessing and explaining the different types of renewable energy and what we know about them. What is “Renewable Energy” or “Green Energy” you might ask. Well, it’s energy which is generated from natural sources such as the sun, the wind, water or hydro, the rain, the tides, and geothermal heat. The good thing about renewable energy compared to coal is that it won’t deplete or run out and (AND) it’s naturally replenished.

As you may have heard, there are already many different types of renewable energy such as:

  • Solar
  • Wind Power
  • Hydroelectric Energy (Energy from Water)
  • Biomass (Energy from Plants)
  • Geothermal Power

I feel that we all are competent to save our world and restoring it back to it’s healthier self. If we all and try to do our part even if it’s just a little (such as spreading the word or not littering) we could make a difference.

9:30 – 12:00

After learning more on climate change and renewable energy, each group was given a piece of manila paper and some crayons. We were going to draw down what we loved most or enjoy about mother nature. We put a line to divide the paper for four people in our group (just like everyone else). When we all finished our assignment, each group showed their drawing to their teammate. Each group was quietly explaining why we drew what we drew to each other. My idea was to draw a tree because I’ve grown up loving trees and walking through them in the quiet and beautiful forests. I also love how trees help to make air and have shelters for birds and other animals and look magnificent. Then, I added a saw next to a tree and the money sign. For the last requirement, I drew a sign that showed no plastic and no deforestation. All the other campers did an amazing job, too! Another camper from another group color drew a group of fish, cyanide, and trash (like plastic) being thrown in the water and then to protect these awesome creatures were MPA or MSA areas which are also known as Marine Protected (or Secured) Area.

After this, we were all then handed another sheet of Manila paper and told to draw a symbol. A symbol of mother nature. Or, just nature.

As everyone sat on their separate tables with their group, we all seemed to be thinking. Four minds for each group were just quite for like two minutes just wondering what would be a good idea.

Eventually, the cabana was filled with excited talk about what their project would be. In my team (the white group, YEAH!), we made up the idea to draw a big shield with trees, fish, animals, and even a mountain to fill some of the space up. Outside the shield, we put smoke, cyanide and other things that affect nature. When everyone else finished, each group was supposed to show the drawing that we made as a well as an explanation about it. As our turn came up, we had this small debate going on about who would talk about it. I immediately got the paper and held it up so that I would be the holder and not the speaker. Eventually, we coordinated into all speaking up a little. We told everyone we wanted these things inside the shield to be protected and everything outside to be stopped or lessened. Another camper from another group color actually told the ALs to give us some extra points because of the inspiration for the shield idea.

We refueled our minds with some snacks that they handed out like puto.

After this, we prepared for a little island exploration and ventured into the limestone forest.

12:30 – 5:00 pm

L. U. N. C. H. Party lunch!!! We were celebrating one of the campers birthdays! I was surprised haha. A cake came in and everyone started singing. After getting a slice and some spaghetti.

Before I tell you what happened next, I just need to say I was innocent. I was not the culprit and I don’t know how I got dragged into this. I was just sitting there with my cake eating and having a happy life when one of my friends smudged a cake on my face. I paused for awhile trying to understand the situation. I laughed before standing up and getting ready to get them back. Then, a few of my other friends targeted me and I just got them back. Hahaha. It was a good moment and time.

We were actually given a 2 hour “free time”. We had the choices to just hanging out with other, kayak, swim and others. A few campers chose to do some snorkeling and I decided to do some kayaking with some friends. An AL had to accompany us because of the recent spottings of boxed jellyfish. I rowed around the Morey lagoon looking at the bottom to find some urchins. We even saw some fire corals! I nearly bumped into a few things but eventually, I decided to go back to shore because the sun just wouldn’t stop heating us up.

After awhile, we may have regretted the decision in not joining the group of campers who recently left to snorkel. The first group which left used the boat to get to their destination. As we just sat on the beach wondering what to do, we saw a few campers with an AL who were about to swim somewhere. We asked if we could join them and they gladly waited for us. We quickly changed, got our snorkel and swam. We swam all the way to the boat. Then, we swam all the way to the other campers who were pretty far from the boat. They were surprised to see us but then we all started looking down into the deep ocean to look for some sea creatures.

We got so lucky!! There were about 20 big and long barracudas below us! It wasn’t that close don’t worry. It looked amazing they kept swimming back and forth all together. Did you know that it’s safer to be around barracudas when they are in a group rather when they are just alone? It’s because when a barracuda is alone, they feel more insecure and uneasy which makes them attack more easily when they get scared.

More minutes pass and I realized I was the only girl left in the water with the other guys and a few ALs. We took one last look at the barracudas and a few underwater shots and swam back to the boat.

5:00 – 6:30 pm

We sat down in the dining cabana as our swimming attire slowly dripped all its water out and eventually dried up. We did another lesson but this time on mangroves for about 30 minutes. FACTS:

FACTS:

Q: “Why are Mangroves important?”

A: Mangroves are home to small fish and crustaceans. And, did you know that they help in calming the waters when strong waves come in and also reduce the impact from tsunamis? They even help stop erosions from happening on the shoreline, too! Mangroves pretty much are our shield against tsunamis, storms and help save lives and properties. While doing all these things, mangroves also work as a home to different animals and provide wood, fruits, seafood, medicine, and fiber.

We learned more about how they help and how important they are.

Everyone went back to their cabanas to change or prepare to go to the beach because we were going to have an activity!

The first game they asked us a question “who’s good at running or who likes to run and tag?”. One of my friends raised her hand. This game was a demonstration of silt and soil. All the other campers were silt and the It (my friend who volunteered to be the tagger) was supposed to touch us. We were given a measured big space where were suppose to run to the other side without being tagged. If we were to be tagged, then we would have to stop at our place (not moving) and try to move our arms join the tagger (but in the place we got tagged). The only person who would get to run and the tag was the It. This game was so fun and we did the second round trying to implement a good strategy. We let everyone run first and while the It is distracted with the people who first ran, we would try to run all the way to the other side. Works like a charm.

The next activity we did was in the water. And, it had TEAMWORK in it. Wait, song intermission:

“What’s gonna work? Teammmmm Workkk!!!”

What’s gonna work? Teammm Work!!!”

To those who know where this is from, You’re AWESOME! But, to those who don’t know this song, You’re Still AWESOME!!

Now, getting back to what we did…. Each group went together and the tallest went to the back and the shortest at the front (which is me). We were only three because one of our teammates wasn’t feeling so good. While we were in the water, each group had to cling on to each other in a line with the legs and had to row using their arms. We did a few races and it was tiring but really enjoyable. A few more ecology games and we started to head back to the camp after a few sunset shot.

6:30 – 10:00 pm

We were all excited to finally have a (one bucket of water) shower! When we finished showering and changed into much more comfy clothes, we waited for dinner. Some of us were just resting in our cabanas, playing some guitar, singing and talking.

After some dinner, we closed all the lights and everyone quietly looked down at the lagoon. We spotted some Bioluminescent Algae! It was glowing. Every time a fish moved, it touched the algae and made it illuminate. These algae are widespread on the surface of the water and produce a blue and green light when moved or disturbed by motion, just what the fish was doing! They produce a flash of blue-green light whenever the water they are living in is disturbed by motion.

We had a long and amazing day which everyone enjoyed. I’m looking forward to tomorrow! We learned so much today 🙂

(to be continued)

~ L.O.A.S.H

 

DIY: 2 Types of Slime

The first slime is a simple recipe and all you will be needing is:

  • Glue
  • Liquid Detergent
  • Food Coloring (optional)

Follow the steps (or try experimenting (with small portions at first)):

  1. Put an amount of glue
  2. Comparing back to the glue that you’ve just put, add small amounts of liquid detergent at a time while mixing. Eventually, you’ll start to see you slime form! Yes, it will be slightly sticky and wet but you have to keep squishing it and turning it inside out to dry and make it form. But, if it’s too sticky, then you should add more detergent.
  3. Then, add in your food coloring if you want too.

 

The next recipe is just fluffy slime.

For this, follow the recipe above, but before adding the liquid detergent, add some shaving cream. You should squirt less than 1/4 amount comparing to the glue. Not too much. Also, mix it in well with the glue before adding the detergent. This fluffy slime recipe has worked so well for me and I hope you enjoy it!

Yes, sometimes it will be difficult and you’ll make some mistakes like too watery or something else but just keep trying.

Yours truly,

L.O.A.S.H