Friday, October 15, 2010

The RunRio Trilogy Leg 3 - Unilab Run United 2 - November 20 - 21, 2010




During race: 1st late exp. lol, we're 3 minutes late, Gun started at 5:45, we've arrived and started 5:48, lol. anyway it's worth it coz of freebies, bag, finisher's shirt, sports items etc.

I planned to register online, coz I'm worried na baka maubusan ng singlet, because only 1st 10 thousand registrars lang ung may singlet, but I changed my mind coz of USD 3.33 delivery fee, :P, so I went to Timex MOA Oct. 10, 2010 to register, but out of stock ung medium size na singlet, so I asked my friend to pick my singlet kinabukasan.

I choose to register at 3K category, at 1st I planned to register @ 5K category, but my group registered @ 3K cat, kaya dun na rin ako, since the finisher's kit is the same with 5K category.

here's the singlet together with bib number and race kit. just ignore the PHCare feminine wash.. LOL






Location: Bonifacio Global City, Taguig


Race result:

Thursday, October 14, 2010

10.10.10 Run for Pasig River - October 10, 2010

The Philippines' biggest Fun Run Event for 2010, which was joined by approximately 120 thousand participants to save Pasig River, and hopes to break the Guinness Word Record for the most participants in a footage by San Francisco’s Bays in 1988.


Though they don't have a singlet, PhP. 250 registration fee is still worth it because I really enjoyed the run.

Well, I didn't break my previous record of 34 minutes for 5K, I can't really run because there's a lot of participants, and trying to wait my 2 friends which is I left behind but after reaching 2 kilometers of slow running, I started to run with my full speed and finished the race with approximately 36 minutes.

After Reaching the finish line, I claimed my Finishers Band, I only got one, coz that't what I supposed to get, but my friends got more than one finishers band, one of them got 7 yes 7 finishers band, see the image below, LOL.

See this Finisher's Band?




Location : for 5K category - PICC to MOA

Tuesday, October 5, 2010

1st FINEX Fun Run - September 12, 2010

My second time to run, I'm so exhausted after the Fun Run, but still enjoy, as I've said from my 1st run, stress reliever and makakalimutan mo lahat ng problema mo dahil s pagod, hahaha, anyway, don't plan to join to this event because 2 of my friends didn't join, that's because of Singlet Design, ang pangit daw, and sorry to say this, but agree wth them, ang pangit nga ng design tapos hindi maganda ung tela, ^^ sorry hehe. pero nag enjoy naman ako.

When I got my singlet together with route map and Bib No, Ive noticed that the date was differ from the event date., or should I say, na moved ung date nung event, due to unknown reason, hindi ko na inalam, hehe.

Anyway it's not so important, as long as I've finished the race, though nakakapagod talaga, I need more practice, :P.

Here's what I've got. my 1st Sling bag? haha.




Here my race result, though it's unofficial, I don't mind. haha


Location : MOA

Zzzzzz nakaka antok mag sulat, bonne nuit...zZZzzz

Monday, October 4, 2010

ACTIVATE! Run and Pump it Up – August 15, 2010

That's right it's a Fun Run, this is my first time to do this and I really enjoyed it. "Sabi nga nila masarap pag First Time", but I cannot gain without a massive PAIN, that's because I have no idea about the right posture? of my foot? during this fun run. Anyway I saw "Pinoy Zorro" in that event, hehe ang kulit ng costume nya, but he's very tough and full of stamina. I think he was on 10K event, ako 5K lng :P, 1st time eh.

One of my friend named Katsu, just invited me to join, actually SOBRANG kulit na bata, he's really a pain in my head. LOL just kidding, haha, but thanks to him, I have now a stress reliever. :P

Anyway, here what I've got from the race. hehe, I really love that magazine, with Erich G. as a cover :P.. she's hot.. haha


5K Race Result. wow 76th place within 33 minutes, am I slow for being a 1stimer? oh well, it's not that so important, as long as I've successfully finished the race. ^^


Location : UP Diliman

Sunday, October 3, 2010

Reborn!!!

LOL, I think I have to continue this blog, since I'm have a lot of things to write, to preserve, to share. ^^

Tuesday, April 22, 2008

Factorial n!(Logic in Programming)

During my College life as a computer science, I have encountered Factorial problems often at programming. I just want to share this, hope it help.

In mathematics, the factorial of a non-negative integer n, denoted by n!, is the product of all positive integers less than or equal to n. For example,

For example:

5! = 1 x 2 x 3 x 4 x 5 = 120


In Programming:

Note: 0! = 1

N = input;

ANS=1;

For ( ctr = N; ctr >=1; ctr--)
{
ANS = ANS * ctr;
}

PRINT(“Total: ” + ANS);

Wednesday, March 5, 2008

Nested For-loop using Java

I took an exam from one of the Japanese company here in the Philippines for the programmer’s trainee position, and then the programming part is the same as this problem that you can use C or Java programming, depends to our knowledge.

I know that this problem is very easy, because I’ve encountered this problem when I was a first year college student using C language, but whyyyy I can’t answer this simple problem during that exam, well the result is failed, (lol), because of that incident, and because of my stupidity I tried this problem into my own computer, then I got it right (sad). I’m working for almost 8 months as a junior programmer, but then I didn’t pass that exam. (I think, because I didn’t get any proper training at all, or maybe I’m just really stupid), well there is always another chance :P.


1. Code: Try4.java

class Try4{

public static void main(String[] args){

for(int ctr=0;ctr<6;ctr++){

for(int ctr2=4;ctr2>=ctr;ctr2--){

System.out.print("* ");

}

for(int ctr3=0;ctr3<=ctr;ctr3++){

System.out.print("@ ");

}

System.out.println(" ");

}

for(int ct=0;ct<5;ct++){

for(int ct2=0;ct2<=ct;ct2++){

System.out.print("* ");

}

for(int ct3=4;ct3>=ct;ct3--){

System.out.print("@ ");

}

System.out.println(" ");

}

}

}






2. Code: Try3.java

class Try3{

public static void main(String[] args){

for(int ctr=0;ctr<10;ctr++){

for(int ctr2=8;ctr2>=ctr;ctr2--){

System.out.print("* ");

}

for(int ctr3=0;ctr3<=ctr;ctr3++){

System.out.print("@ ");

System.out.print(" ");

}

System.out.println(" ");

}

}

}




3. Code: Try2.java

class Try2{

public static void main(String[] args){

for(int ctr=0;ctr<10;ctr++){

for(int ctr2=1;ctr2<=ctr;ctr2++){

System.out.print(" ");

System.out.print(" ");

}

for(int ctr3=9;ctr3>=ctr;ctr3--){

System.out.print("* ");

}

System.out.println(" ");

}

}

}




4. Code: Try.java

class Try{

public static void main(String[] args){

for(int ctr=0;ctr<10;ctr++){

for(int ctr2=8;ctr2>=ctr;ctr2--){

System.out.print(" ");

System.out.print(" ");

}

for(int ctr3=0;ctr3<=ctr;ctr3++){

System.out.print("* ");

}

System.out.println(" ");

}

}

}




5. Code: Triangle.java

class Triangle{

public static void main(String[] args){

for(int ctr=0;ctr<10;ctr++){

for(int ctr2=9;ctr2>=ctr;ctr2--){

System.out.print(" ");

}

for(int ctr3=0;ctr3<=ctr;ctr3++){

System.out.print("@ ");

}

System.out.println(" ");

}

}

}




6. Code: Square2.java

class Square2{

public static void main(String[] args){

for(int ctr=0;ctr<10;ctr++){

for(int ctr2=0;ctr2<=ctr;ctr2++){

System.out.print("@ ");

}

for(int ctr3=9;ctr3>=ctr;ctr3--){

System.out.print("* ");

}

System.out.println(" ");

}

}

}




7. Code: Square.java

class Square{

public static void main(String[] args){

for(int ctr=0;ctr<10;ctr++){

for(int ctr2=9;ctr2>=ctr;ctr2--){

System.out.print("* ");

}

for(int ctr3=0;ctr3<=ctr;ctr3++){

System.out.print("@ ");

}

System.out.println(" ");

}

}

}




8. Code: Sample2.java

class Sample2{

public static void main(String[] args){

for(int ctr=0;ctr<10;ctr++){

for(int ctr2=9;ctr2>=ctr;ctr2--){

System.out.print("* ");

}

System.out.println(" ");

}

}

}




9. Code: Sample.java

class Sample{

public static void main(String[] args){

for(int ctr=0;ctr<10;ctr++){

for(int ctr2=0;ctr2<=ctr;ctr2++){

System.out.print("* ");

}

System.out.println(" ");

}

}

}