Saturday, February 25, 2012

I KNOW IT'S BEEN A WHILE...

...But this is important.
Today i watched and un-aired ep 25 of Steins;Gate.
It was fantastic and reminded me why it was one, if not, the best anime's iv'e ever seen.

And because i'm too lazy to write anything longer.
I just want to also say say that this manga is fantastic:


It's called "Girls of the Wild's".
And the art style it has is superb.
instantly became one of my favourites...

Well, there we go. my first post in nearly 2 weeks, and it's super short.
Whatever.

Tuesday, February 14, 2012

HAPPY VALENTINES TO PEOPLE.

Because i'm others are enjoying it and not spending it alone, at home, in bed, eating chocolate like i am.
FOREVER ALONE D:


But whatevs.
I actually spent most of today programming.


I was working on some tutorial stuff (might work on some more later).
And i was really enjoying it.
I'm glad i switched to the programming course.
(I'll post the code in my latest programming session at the end of the blog post. Be warned, it's REALLY long, haha)



I also played the Mass Effect 3 demo a couple of days ago.
It was enjoyable, but only lasted about half an hour...
I have yet to try the multiplayer yet, as when i tried before, EA's servers were down (go figure).



And as of today, i raised my "Games that iv'e already ordered and are coming in-" up to 3.
I'm not awaiting:


-Arcana Heart 3, at some time this week.
-The Last story, at the end of the month

-Mass Effect 3, next month

-Ghost Recon: Future Soldier, in a few months time

Amazingly only 1 is a PS3 title, the other 2 are xbox, and at the highpoint of amazingness; one of them is a WII TITLE.


Yeah.
Been a while since iv'e gotten a wii game...

Also, in other unrelated news.


I broke my glasses last week.
So now i'm blind.
So yeah.
That's a thing...

The first day of uni back was also really good.
Hanging out with Sean and Travis was awesome.
Cool guys and i'm glad to be working with them.


Now i'm just awaiting my Thursday class to see what that's like.
But all the cool people are in my tutorial group.
So it should be good.

Well, that's it.
Not much else...
but as promised, i will post the extremely long code.
Goodbye.

#include <iostream>
#include <math.h>
void squareArea()
{
float sqArea = 0;
std::cout << "Please type in the length of the squares side: ";
std::cin >> sqArea;
float ans = sqArea * sqArea;
std::cout << "The area of the sqaure is: " << ans << std::endl;
}
void triangleArea()
{
float triBase = 0;
float triHeight = 0;
std::cout << "Please type in the length of the traingles base: ";
std::cin >> triBase;
std::cout << "Please type in the length of the traingles hieght: ";
std::cin >> triHeight;
float ans = (triBase / 2) * triHeight;
std::cout << "The area of the triangleis: " << ans << std::endl;
}
void circleArea()
{
float pi = 3.141592654;
float ciRadius = 0;
std::cout << "Please type in the circles radius: ";
std::cin >> ciRadius;
float ans = pi * (ciRadius * ciRadius);
std::cout << "The area of the circle is: " << ans << std::endl;

}
void circleCircumference()
{
float pi = 3.141592654;
float ciRadius = 0;
std::cout << "Please type in the circles radius: ";
std::cin >> ciRadius;
float ans = 2 * pi * ciRadius;
std::cout << "The circumference of the circle is: " << ans << std::endl;

}
void cubeVolume()
{
float cubeSide = 0;
std::cout << "Please type in the length of the cubes side: ";
std::cin >> cubeSide;
float ans = cubeSide * cubeSide * cubeSide;
std::cout << "The volume of the cube is: " << ans << std::endl;

}
void cubeSurface()
{
float cubeSide = 0;
std::cout << "Please type in the length of the cubes side: ";
std::cin >> cubeSide;
float ans = 6 * (cubeSide * cubeSide);
std::cout << "The surface area of the cube is: " << ans << std::endl;

}
void trapSurfaceAndVolume()
{
float trapBase1 = 0;
float trapBase2 = 0;
float trapHeight = 0;
float trapSide1 = 0;
float trapSide2 = 0;
float trapLength = 0;
std::cout << "Please type in Base 1 of the trapezoid: ";
std::cin >> trapBase1;
std::cout << "Please type in Base 2 of the trapezoid: ";
std::cin >> trapBase2;
std::cout << "Please type in Side 1 of the trapezoid: ";
std::cin >> trapSide1;
std::cout << "Please type in Side 2 of the trapezoid: ";
std::cin >> trapSide2;
std::cout << "Please type in the height of the trapezoid: ";
std::cin >> trapHeight;
std::cout << "Please type in the Length of the trapezoid: ";
std::cin >> trapLength;
float trapVol = (trapBase1 + trapBase2 + trapSide1 + trapSide2) * trapLength;
float trapSurface = (trapBase1 + trapBase2) * trapHeight / 2;
std::cout << "The volume of the trapezoid is: " << trapVol << ", and the surface area of the trapezoid is: " << trapSurface << std::endl;

}
void elipArea()
{
float pi = 3.141592654;
float P = 1.6075;
float sideA = 0;
float sideB = 0;
float sideC = 0;
std::cout << "Please type in the length of side A: ";
std::cin >> sideA;
std::cout << "Please type in the length of side B: ";
std::cin >> sideB;
std::cout << "Please type in the length of side C: ";
std::cin >> sideC;
float ans = 4 * pi * (((sideA * P) * (sideB * P) + (sideA * P) * (sideC * P) + (sideB * P) * (sideC * P)) / 3) * 1 / P;
std::cout << "The surface area of the ellipsoid is: " << ans << std::endl;

}
void pyrVolume()
{
float base = 0;
float height = 0;
std::cout << "Please type in the side length of the pyramids base: ";
std::cin >> base;
std::cout << "Please type in the hight of the pyramid: ";
std::cin >> height;
float ans = (1 / 3) * (base * base) * height;
std::cout << "The volume fo the pyramid is: " << ans << std::endl;
}
void triPrisVolume()
{
float length = 0;
float height = 0;
float width = 0;
std::cout << "Please type in the width of the triangular prism: ";
std::cin >> width;
std::cout << "Please type in the height of the triangular prism: ";
std::cin >> height;
std::cout << "Please type in the length of the triangular prism: ";
std::cin >> length;
float ans = (1 / 2) * width * length * height;
std::cout << "The volume for the triangular prism is: " << ans << std::endl;
}
void cylVolume()
{
float pi = 3.141592654;
float radius = 0;
float height = 0;
std::cout << "Please type in the radius of the cylinder: ";
std::cin >> radius;
std::cout << "Please type in the height of the cylinder: ";
std::cin >> height;
float ans = pi * (radius * radius) * height;
std::cout << "The volume for the cylinder is: " << ans << std::endl;
}
void timeGravity()
{
float distance = 0;
float gravity = 0;
std::cout << "Please type in the distance of the object (in metres): ";
std::cin >> distance;
std::cout << "Please type in the level of gravity (in m/s2): ";
std::cin >> gravity;
float ans = sqrt((2 * distance) / gravity);
std::cout << "The time taken for the object to travel is: " << ans << " seconds" << std::endl;
}

void funChoice()
{
float choice = 0;
std::cout << "..." << std::endl;
std::cout << "Please type the number corresponding to the function" << std::endl;
std::cin >> choice;
if(choice == 1)
{
squareArea();
}
else if(choice == 2)
{
triangleArea();
}
else if(choice == 3)
{
circleArea();
}
else if(choice == 4)
{
circleCircumference();
}
else if(choice == 5)
{
cubeVolume();
}
else if(choice == 6)
{
cubeSurface();
}
else if(choice == 7)
{
trapSurfaceAndVolume();
}
else if(choice == 8)
{
elipArea();
}
else if(choice == 9)
{
pyrVolume();
}
else if(choice == 10)
{
triPrisVolume();
}
else if(choice == 11)
{
cylVolume();
}
else if(choice == 12)
{
timeGravity();
}
else
{
funChoice();
}

}


void main()
{
std::cout << "Welcome to the math calculator thing" << std::endl;
std::cout << "These are the currently available maths functions:" << std::endl;
std::cout << "1 -Area of a square" << std::endl;
std::cout << "2- Area of a triangle" << std::endl;
std::cout << "3- Area of a circle" << std::endl;
std::cout << "4- Circumference of a circle" << std::endl;
std::cout << "5- Volume of a cube" << std::endl;
std::cout << "6- Surface area of a cube" << std::endl;
std::cout << "7- Volume and Surface area of a trapezoid" << std::endl;
std::cout << "8- Area of an ellipsoid" << std::endl;
std::cout << "9- Volume of a square based pyramid" << std::endl;
std::cout << "10- Volume of a triangular prism" << std::endl;
std::cout << "11- Volume of a cylinder" << std::endl;
std::cout << "12- Time for an object to fall to the ground from a given height at given gravity in a vacuum" << std::endl;
funChoice();
}

Friday, February 10, 2012

MINECRAFT IS EATING MY FACE!

And I'll happily let it continue to do so.
Because iv'e realised, that i may just love you minecraft.
Now, i don't just say this to all the games out there.
(That's a lie, i actually do)
And i think you're really the one...
Well, until my Arcana Heart 3 gets here...
Then i'll enjoy my all girls fighter game.
So many girls... some of them are so small...
My god i can't wait.

But iv'e pretty much spent all of today playing minecraft.
But i did spend a little time playing Final Fantasy.
I still love you final fantasy. (Don't tell minecraft)
I used most of my time working on a fully functioning train station.
There so much messy redstone controlling it.
I should really clean it up, but...
So much work...
I'll just leave it all sloppy like outside.
And keep it looking all nice inside.
There, problem solved.

As an update to going to races yesterday.
I didn't do very good...
I only returned with like an extra $50.
My last run mast have just been all luck T^T



BUT WHAT ELSE DO I HAVE PLANNED?
Well, as far as i know, most people from uni are meeting up tomorrow night to catch up before the new trimester starts.
So that should be awesome.
I also plan to stare at my mailbox until Arcana Heart 3 is in it.
As i really want that game.
Like, right now.
...
WHY MUST YOU MAKE ME WAIT?!?!?

...

But i digress.

Also, some fun facts that iv'e learned today. (yay)

-Binary keeps you warm at night, and fires lasers from it's nipples.
-Cereal still tastes delicious.
-To much redstone makes the brain hurt.

-Ecchi manga is fantastic

-Etc.

SO THAT'S IT.
Go away.

Wednesday, February 8, 2012

WHILE WAITING FOR MY CRAP INTERNET TO LOAD A YOUTUBE VIDEO-

-I will make a blog post.

My internet suddenly started going slow the moment i tried to watch the youtube video...
In fact, it does that a lot.
And always for the same person.
Oh internet, why you hate EthosLab so much?
I just want to watch his videos easily...
But whatevs.
It gives me time to write something.
Which admittedly, i haven't done for a while.



So what have a done lately?
Oh that's right, silly me...
FINAL

FUCKING
FANTASY

It grabs my life by the throat, and then just doesn't let go.
Not a bad thing of course.
Because I love me some Final Fantasy 
The gameplay is so much more fun then the original.
And the feel of the game is so much nicer...
AND EVERYONE LOOKS SO AWESOME.

*cough* But lets try and move away from that subject, before i cease to be able to control myself on the matter...
Iv'e also being playing minecraft a lot recently.
I really love the game, and have had it since it's initial release.
But for the first time, iv'e played the survival mode after the release of 1.0
OH MY GOD


THERE IS SO MUCH TO DO
Why did i never try this before?
IT'S SO FUN!
Minecraft, i love you so much.



In real life news though.
There's only half a week left until uni starts up again.
I can't wait.
getting to see everybody again will be awesome.
And i'm exited about starting the programming course.

Iv'e also heard that of the large mass of new February intake students.
Few are females.
And that only ONE of them is attractive.
*Sigh*
Looks like it's war time again...



But other then that, not much is going on.
I'm heading to the races again tomorrow.
This time i'm off to Werribee.


Hopefully i shall return with an abundance of cash.
That is the dream.



But my video is loaded now.
So i no longer have a motive for writing.

Goodbye.

Sunday, February 5, 2012

IT'S BEEN A WHILE PEOPLE.

Seriously, how long has it been since my last post?

The last one was about Australia day right?
SO LONG AGO.
But i have an excuse, or two.
FIRST-
I was moving to a new place/searching for a new place.

So that took about half a week of my time up.
So yeah.
No time to do anything.
SECOND-
After we found a new place and moved into it.

We found out that we have no electricity.
No electricity = no laptop or internet.
So that was something.
I'm at my my parent place in Bendigo at the moment though.
But i got here a couple of days ago.
I was just too lazy to write anything until now... 
BUT NO NEED TO FEAR.
As electricity is now on at my new place.

So what was missed in the last week?

Well, pretty much just moving.
And i don't want to talk about that.
So much hard work...

BUT IN MORE RECENT FANTASTIC NEWS THAT IS FANTASTIC AND ALL THING SUPER FANTASTICAL-

FFXIII-2 WAS RELEASED!
And i even went to the midnight release to pick up my copy of Crystal edition.
OH MY GOD IT LOOKS SO GOOD.
even despite the fact that i haven't played it yet due to the "No electricity" thing...
BUT I WILL DESTROY IT WHEN I RETURN TO MELBOURNE.
LIKE SERIOUSLY.

IF IT WAS A HUMAN BEING, IT WOULD BE CONSTITUTED AS RAPE.
But a loving sort of rape...

I also purchased the Collectors Edition hintbook when i got the game.
Might as well throw in some pictures of it.

WHAT ELSE HAS HAPPENED?
HMMMMMMMM.


AH.

I also changed my major at Uni the other day.
I switched from Animation into Programming.

The process was SOOOOOO easy.
At first it was like "you may not have the requirements to switch into this course".
Then they seen my maths score from highschool, and it was instantly "you're in".
Maths actually came in handy?
What's the odds?
So yeah.
Programmer now.
Should be good :D

AND ONE LAST THING!
Well, unless i remember something else after i write this...
Lately iv'e been listening to a lot of LM.C
more specifically-
PUNKY❤HEART

IT SOUNDS SO GOOD.

AND THE VIDEO FOR IT,
I CAN'T STOP WATCHING IT.
MAYA LOOKS SO MUCH LIKE A GIRL.
SOOOOOO MUCH.

But that's about it.
Not really much else.

I'm not sure if i'll post again soon.
As i assume Final Fantasy will eat my soul until i start uni again...
...Which i'm okay with.

UNTIL NEXT TIME!