Showing posts with label =). Show all posts
Showing posts with label =). Show all posts

         Ive tried so hard

Today is a new accomplishment, Ive learned how to eat with chopsticks!!! wohoho... Me and my girlfriend went to the mall to go shopping when suddenly we tried to eat in a Chinese restaurant. There it was, my worst enemy and my endeavor, the chopsticks. My girlfriend taught me how to use them. luckily, after a few minutes I learned how to use chopsticks. yeah!! yeah!! yeah!!


|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

Ouran high school host club (my favorite anime)

Haruhi Fujioka is a scholarship student at Ouran High School, a fictional school located in Bunkyō, Tokyo. Because of the superlative cost of the school uniform, Haruhi resorts to wearing long slacks, polo shirts and vests. Combined with her large glasses and tousled short hair, Haruhi's look causes her to be confused for a boy.

Looking for a quiet place to study, Haruhi stumbles upon the Third Music Room, a place where the Ouran high school host club gathers, a group of six extremely attractive male students; Takashi Morinozuka, called "Mori"; follows Hunny as a best friend Mitsukuni Haninozuka, called "Hunny". Twins Kaoru and Hikaru Hitachiin; stick together and thinks everyone else around them are uneducated outsiders. Tamaki Suoh, the leader of the club and creator and Kyoya Ootori ,who manages all the events for the club. During their first meeting, Haruhi accidentally knocks over and breaks a vase valued at ¥8,000,000 and is told she was in debt to them for her action. She then joins the club, dressed like a boy in order to pay off her debt.


|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

traversing a directed graph (code)

download he header files:

http://h1.ripway.com/vedcruzer111/graph.h

http://h1.ripway.com/vedcruzer111/edge.h

http://h1.ripway.com/vedcruzer111/vertex.h

This is my code for vertex input

#include
#include
#include "edge.h"
#include "vertex.h"
#include "graph.h"
#include


//##################################################################
//############## ###################
//############## vertex ###################
//##################################################################

Vertex::Vertex(char theData, Vertex *nextVert) {
data = theData;
next = nextVert;
edges = NULL;
}

Vertex:: ~Vertex() {
delete next;
delete edges;
}

char Vertex::getData() {
return data;
}


void Vertex::printEdges() {
if (edges == NULL)
cout << "vertex " << getData() << " has no edges\n";
else {
cout << "vertex " << getData() << " has edges to: ";
edges -> print();
}
}

void Vertex::printGraph() {
printEdges();
if (next != NULL)
next -> printGraph();
}


void Vertex::connectTo(Vertex *Vert) {

Edge *newEdge = new Edge(Vert, edges);


edges = newEdge;
}


Vertex *Vertex::getNext() {
return next;
}

//##################################################################
//############## ###################
//############## vertex ###################
//##################################################################



//##################################################################
//############## ###################
//############## edge ###################
//##################################################################

Edge *Vertex::getFirstEdge() {
return edges;
}


Edge::Edge(Vertex *Vert, Edge *nextEdge) {
end = Vert;
next = nextEdge;
}

Edge::~Edge() {
delete next;
}


Vertex *Edge::getEnd() {
return end;
}



void Edge::print() {
cout <<> getData() << " ";
if (next == NULL)
cout << endl;
else {
next -> print();
}
}


Edge *Edge::getNext() {
return next;
}

//##################################################################
//############## ###################
//############## edge ###################
//##################################################################

//#####################################################################
Graph::Graph() {
first = NULL;
}


Graph::~Graph() {
delete first;
}


Vertex *Graph::find(char theData) {
Vertex *vPtr = first;

while (vPtr != NULL) {

if ( vPtr -> getData() == theData)
return vPtr;

vPtr = vPtr -> getNext();
}


return NULL;
}


bool Graph::AddVertex(char theData) {

if ( find(theData) != NULL )
return false;


Vertex *newVertex = new Vertex(theData, first);

first = newVertex;
return true;
}


bool Graph::AddEdge(char Begin, char End) {

Vertex *vEnd = find(End);


if (vEnd == NULL) return false;
Vertex *vBegin = find(Begin);
if (vBegin == NULL) return false;


vBegin -> connectTo(vEnd);
return true;
}


void Graph::print() {
if (first == NULL)
cout << "Graph has no vertexes " << endl;
else
first -> printGraph();
}
//###############################################################################



//############################################################################

int main() {

Graph myGraph;
char vertex;
int choice;
char Begin, End;
myloop:
system("cls");
cout<<"[1.] Add vertex\n";
cout<<"[2.] Add edge\n";
cout<<"[3.] show graph\n\n";
cout<<"Enter mo choice mo: ";
cin>>choice;

if(choice==1)
{
cout<<"Enter the vertex: ";
cin>>vertex;
myGraph.AddVertex(vertex);
goto myloop;
}
else if(choice==2){
cout<<"Enter begin: ";
cin>>Begin;
cout<<"Enter End: ";
cin>>End;
myGraph.AddEdge(Begin, End);

goto myloop;
}
else if(choice==3){
myGraph.print();
system("pause");
goto myloop;
}
system("pause");
return 0;
}


|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

Summer is near

OMG!!! I'm ready for this coming summer, lots of parties and vacations. Many things happened this school year, things I didn't expect to happen. God really has a plan for everything. Maybe your to blind that you only see your problems but trust me, You got a great plan? God has a better one. Its feels just like yesterday when I first came to college, now I'm at 3rd year already. Luckily this semester was the best semester for me, not only this semester but this school year rather. I can't wait to feel the cool breeze of the beach and the hot essence of summer. Its nostalgic every time this season comes, The summer that changed my life...



|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

latest movie Ive seen(street fighter legend of chun li)

Powerful forces are converging on the streets of Bangkok. They are warriors, some of whom possess extraordinary abilities, all of whom are determined to see their side prevail. Some fight for us; the others for unlimited power. Now, they are preparing for the ultimate battle -- of terror versus beauty, light versus darkness, and good versus evil.

The forces of darkness are led by Bison (Neal McDonough), a crime boss of seemingly limitless power, and whose past holds a shocking secret. Bison's syndicate, Shadaloo, is taking over the slums of the Thai capital, a task overseen by Balrog (Michael Clarke Duncan), a massively built enforcer and killer. Also in Bison's employ is the assassin Vega (Taboo, of the group The Black Eyed Peas), a masked talon-wielding warrior, whose weapon is tailor-made for slashing and stabbing attacks. Bison's attache is the beautiful but deadly Cantana (Josie Ho).


Reviews:

It's a cheerfully stupid endeavor, enlivened by some gnarly fights and endullened by all the talky stuff in between.

-Eric D. Snider, Film.com

When Chris Klein yells "Bomb! Everybody Out!", he just as well could have been talking about this movie too.

- Pete Hammond, Hollywood.com

Gallery:















|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

My created banners for our web develpement class





|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

Am I wrong?

Maybe I'm just exaggerating or something yet maybe I'm just jealous. Would you be jealous if your girlfriend is talking to a cool, handsome, actor type of guy? I'm not a girl but in my place, what I feel is insecurity. I know I'm old enough to think about this childish things. But I don't have much to offer to my girl. I'm just afraid that she would get the happiness she was looking for from another person instead of me. I'm to selfish for that stuff, but its what I'm really feeling. This depression is eating me alive!!!. At the end of all this , My only wish is that she wouldn't leave me. there is also one thing I want to say, and I'm serious about this. If she finds happiness to another person, then I would never take that happiness from her, definitely I would set her free.


|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

You and me

When all things break down into pieces, who do you turn to? What does life offer you after a hard struggle? What keeps you on going despite of all the troubles in this world? In my experience, inspiration is the key. You aim for something that in the end leads you to the right path. We may never know were the road of life will take us, but as we take one step we must learn to see who are behind us, beside us, and in front of us. I am lucky to find that inspiration in my life that's giving me strength, courage, and love. Maybe the words "Someone will come into your life, and make you feel less lonely..." is true. I heard it from a movie I saw last summer called "caregiver". I met someone I never knew would be a big part of my life, Maybe because we are worlds different to each other. I met her at school drinking water with her friends. At the moment I saw her, the natural reaction happened to me. My heart started to beat faster, my eyes were stuck watching her walk away( I was a complete loser to girls as you may know). We became friends after a few months, she had a boyfriend that time. The last thing I know was she was my best friend already. She made me smile every time I'm lonely, talk to me when I have problems, all the things a person needed was already mine. But for me something is still missing, I wanted to be with her , I wished shed knew how much I love her.

.....After a few months

I became so much happy because the girl of my life was mine, but many
problems came and I changed into someone I shouldn't be. I made her cry in front of my eyes, I embarrassed her. I was a complete son of a bitch, but as I write this story. I promise to become better for her, to be a person she could be proud of. If she reads this blog, I only ask of one thing, forgiveness. Maybe The person she knew from the start was still there only hiding at the deepest parts of my heart, and only her could bring it out again...


|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

once upon a recollection

SmileysThis picture was taken at our 2nd college recollection. The characters from left to right are Mervyn, Arbie, Spoopi, Paul, Alfid, Me, Roldan, Alvin, and at the back center is Yatz. More than a recollection, this is a bonding for us, excaping the noisy essence of the city. Someone told me that "Life is not measured by the breaths we take, but with the moments that take are breath away", and this picture is a moment worthy to be remembered. Something I can smile on when I'm older. Isn't it why were living for? To have a happy life? Maybe its right to fool around, we just need to keep it at minimal. And at the end of the day we lie in our beds hoping tomorrow would be a whole new adventure. For me, I want to live life at the fullest doing things I've never done before.
Smileys


|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

Sleep - Rivermaya


Tonight's the first night
You're no longer in my arms
A little colder
Nothing but the darkness and the stars

My hand wanders through
The space where you used to be
I really wish that you'd
Still come home to me

Until then I'll sleep
Sleep.

Remember yesterday
When your smile filled every room
Imagined forever with you
Now you're gone too soon

I can feel you calling
There's no place that I'd rather be
Just here with you, sleeping
If only in my mind

Until then I'll sleep
Sleep.

I can feel you calling
There's no place that I'd rather be
Just here with you, sleeping
If only in my mind

Until then I'll sleep
Sleep.


|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

Quicktime installer download

You got Itunes? I got quicktime...

here's a sample of the software, just download here.



Mirror 1 quicktime download by cloud




|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

Top 10 Sites To Make Money With Your Travel Photos

1. iStockphoto

2. Shutterstock

3. Fotolia

4. Dreamstime

5. 123RF

6. DeviantArt

7. Stockxpert

8. Crestock

9. BigStockPhoto

10. Scoopt



|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

Dressed to kill


Dressed To Kill - New Found Glory


I know it's hard for you
To understand what I'm going through
But now I sit here to remind myself
You're always dressed to kill
And you feel like you owe it to the world
But you owe it to yourself
And you're, you're not here
And I can't stop pretending
That you're forever mine...
And I
I can't dream anymore since you left
I miss you singing me to sleep
I can't wake anymore in your arms
I miss you singing me to sleep
Cheer up my friends all say
You're better alone anyways
But you're always on tour
And you're never home
I'm always dressed to kill
And I feel like I owe it to the world
But I owe it to myself
And you're, you're not here
And I can't stop pretending
That you're forever mine...
And I
I can't dream anymore since you left
I miss you singing me to sleep
I can't wake anymore in your arms
I miss you singing me to sleep
Cheer up my friends all say...
And I can't stop pretending
That you're forever mine
You're better alone anyways
And you're not here, not here
I can't dream anymore since you left
I miss you singing me to sleep
I can't wake anymore in your arms
I miss you singing me to sleep
Cheer up my friends all say...


|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

My photoshop brushes

This are my most favorite brushes, hope you would like it to. Try this brushes in your own style and create art that can boost up your imagination.


download here -->CLOUD




|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

xion music player

This software is great for music lovers cuz it makes ur listening much fun with animated skins and sick graphics. you'll know what I'm saying after you download this software...enjoy!

mirror 1 xion media player by cloud





|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

youtube downloader free download

Obviously this software allows you to download videos from you tube and convert to kinds of file formats.


mirror 1 Youtube dowloader by cloud





|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

Pc booster 2008 download

This is a software increases your PC's performance, Mostly by increasing dump memory in the RAM or deleting unnecessary internet saved files. In my experience it did increase my system.


Mirror 1 Pc booster 2008 by Cloud




|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

photoscape download

Create and edit .gif photos in an instant. A very unique photo editing software and easy to use. This is the 3.1 version of photoscape and hope you enjoy.



Mirror 1 Photoscape V3.1 by Cloud





|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

Avast antivirus download

This is my favorite anti virus since this is the only one that deleted my worst enemies, The Trojan horse and worms...YUCK!!. I would like to share this software to every one. here is a mirror link for the download.


Mirror 1 Avast download by Cloud




|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

Naruto chapter 434



Naruto Shippuuden chapter 434 seems to be a bit exciting since naruto is getting stronger. Can't wait till the next chapter comes when Naruto fights with saske yet I know its to far to come.


|

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS