Friday, March 1, 2013

Calaguas Island

Mahabang Buhangin Beach or Halabang Baybay in Bicol (long beach) is an attractive beach located on the northern part of barangay Mangcawayan (Tinaga Island) Calaguas Island in Vinzons, Camarines Norte - Philippines.
Mahabang buhangis shoreline
Waves are 6 feet high
Me and my wife enjoying the sun and sand



Tuesday, February 19, 2013

Stephanie Jillian Benito


Here are some pictures of my little one.

At birth

1st Month
2nd Month


3rd Month


4th Month

5th Month


6th Month

7th Month

8th Month

9th Month

10th Month
It's less than 2 months and she will be turning one year old.








Iterating over List elements

The common way to iterate over List elements:

List list;
for (int i = 0; i < list.size(); i++) {
    doSomething(list.get(i));
}

The correct way to iterate polymorphic List is via Iterator or for-each loop:

List list;
for (Iterator it = list.iterator(); it.hasNext(); ) {
    doSomething(it.next());
}

// for each
for (E elem : list) {
    doSomething(elem);

Tuesday, November 27, 2012

See you when I see you...


I'll see you in a bit, Mountains....





Top priorities for the future...
Building shelter for the little ones...
B12 L04 coming soon...
Positive vibes ahead...

Sunday, April 1, 2012

Finally, after 41 weeks and 2 days of long waiting our baby has been delivered via emergency cesarean section. Welcome to the outside world baby Stephanie Jillian Benito. We love you. - Mommy and Daddy




Related Posts Plugin for WordPress, Blogger...

Blog List