Losing Your Apps the Second Time

Just great! Connected my phone and launched iTunes then started browsing the app store and download 6 new apps. There was a warning popup but I thought I understood it very well so I started synching… then all gone. How nice! My first time was when I upgraded to iOS 5.

Well, I guess this is a good personal test if I am able to let go quickly of things that I can actually live without. And besides it’s Ash Wednesday (Roman Catholic) today so this is the best sacrifice.

HELP CDO Graphic Download

HELP CDO

Aside from my little financial help, here’s a graphic I designed for this sad event. I hope you can help my fellowmen by financial and/or spreading this graphic so others will see.

Download:

Zip File (Bundle of all dimensions) | 2267 x 1250  |  1920 x 1080 | 1280 x 720 | 800 x 600 | 600 x 480

Password:

In case you need to input a password, just type designcabinet.

Donation:

For those who have spare money, you can send them here: helpcdo.com or tabangsendong.xu.edu.ph

The Mozilla Story

I’ve been using Mozilla Firefox ever since I knew their existence. I love the way they directed the animation in this video. Here’s a word from them.

We believe the Web is a place where anyone can come to build their dreams.

Watch the video and learn how a small group of people dedicated to making the Web a safe, open and accessible tool for communication, collaboration and community came together to create Mozilla – and how that work continues today.

How to display Parent Titles

Recently I had a project in WordPress that has main categories, subcategories, and the content.

Main Category
|
|_ Subcategory Content
|
|_ The Content

Here’s how to display the parent category. Parent Category of The Content will be Subcategory Content, and Subcategory Content’s parent will be Main Category.

if($post->post_parent) {
    $parent_title = get_the_title($post->post_parent);
    echo $parent_title;
}

And here’s how to display Main Category title from all pages whether you’re in Subcategory Content or The Content.

if ( 0 == $post->post_parent ) {
    the_title();
} else {
    $parents = get_post_ancestors( $post->ID );
    echo apply_filters( "the_title", get_the_title( end ( $parents ) ) );
}