June 21, 2008
9:03 pm

Switching into Firefox 3

It has been 4 days Mozilla launched their hottest product Firefox 3. To be honest I’m really excited and decided to test it and upgrade my older firefox. But here goes the problems, as predictable there are issues that most of older addons aren’t compatible with newer version. It was happen to me and I was pissed that almost my addons weren’t compatible. :(

Firefox 3

But things have changed! Within 3 days I have all my addons 100% compatible. So I’ve got no problems anymore, so I really recommend this, try Firefox 3 dude!

June 17, 2008
1:15 am

How to modify Wordpress into CMS

We all know WordPress is an amazing tool for making blog. With its widely capable of customization and tons of plugins making WordPress almost a perfect way for newbie even for IT pro to create their own website. Since I’m getting more and more interested to customizing WordPress I just wondering whether it possible to make WordPress into CMS.

Well… The answer is of course it could. The process seems to be working for me, so these are what I found out so far:

Making a Frontpage


The first thing I want to do is to make my blog page into my second menu page not the main page or home page. If you’re using WordPress ver 2.5.0 above you can easily modified this. Just log into the admin panel and go to settings - reading, and you’ll find Front Page Displays customization. Before you do this, you should have write 2 pages. First page is the homepage (you can write title Home for example) which will display on your frontpage, and the second is your blog page (you just need to write the title) which will display your post page in second menu.

Reading Setting Ex

Customizing the Sidebar


Ok, Now you have a frontpage, the next thing is to customize your sidebar. Sidebar is the other column that showing your other information. A frontpage should describes only the purpose of your website and what do you want to offer to the visitors. It’s also display your latest news or latest projects. In WordPress default you can’t customize your sidebar into different contents for each pages. For example you don’t want to display your recent comments, recent trackbacks, or arhive on your frontpage. So how do we do this?

Here is the tricky one, you can customize your sidebar contents by using the conditional method. I’ve finally found out that each pages have their own ID except the blog page. So before you using the method, you must know your each page’s ID. You can easily find out by adding this magnificent script into your page.php:

<?php echo $page_id; ?>

This script will display your page’s ID on each pages. So the next step is putting the conditional script on you sidebar.php by using $page_id variable. For the example my homepage’s ID is 47 and my workpage’s ID is 19, and I don’t want to put recent comments information on those pages, so I insert:

<php if (($page_id != "47") && ($page_id != "19")) : ?>
<div class="widget">
<?php if (function_exists('get_recent_comments')) { ?>
<h3><?php _e('Recent Comments'); ?></h3>
<ul>
<?php get_recent_comments(); ?>
</ul>
<?php } ?>
</div>
<?php endif; ?>

The script above makes my homepage and workpage won’t display the recent comments information. But it appears only on my blog page. Pretty cool huh?

But if you’re using custom permalinks, the things will much easier. You don’t need to find out your page’s ID because it is the same as your page’s title. The different is you must use $pagename for determine the value. Here goes for example:

<?php if (($pagename != "home") &&($pagename != "works")) : ?>
<div class="widget">
<?php if (function_exists('get_recent_comments')) { ?>
<h3><?php _e('Recent Comments:'); ?></h3>
<ul>
<?php get_recent_comments(); ?>
</ul>
<?php } ?>
</div>
<?php endif; ?>

It’ll give the same result. For more information about conditional statements you can check here and for logical operator check here.

However, if you’re using widget you can’t customize the contents, unless you determine each function into a single widget or more which are little complicated. Thats why I prefer use standalone script. :)

Page Links to


If you have another site like flickr, facebook, last.fm etc and you want to integrate it in your WordPress page, Page links to maybe the simplest way to do that. It’s also good for making link to sections of a page, rather than an entirely separate page.

Voila, now you have your own website ;)

PS: sory for bad english

June 8, 2008
12:10 am

Abingdon Boys School - music review

Now, Lets talk about music. Recently I’m listening to Abingdon Boys School, a JRock band. I got this from my friend Rama. (he is great illustrator, Music Programmer, and an Indonesian Eminem! :twisted: )

abingdon_boys_school

When I heard it for the first time, Man!! This band is awesome!!! Its rock on my life now!! This might be my top favorite JRock band behind Laruku, Maximum the Hormone, or Asian Kung-Fu Generation. Its so energic! Its reminds me of LinkinPark (especially Lost Reason) and here are some of my reviews:

  • HOWLING - Really love this, its straight to punch your head off with great arrangement song :twisted:
  • INNOCENT SORROW - Great song and makes you to play it over and over again, also this is the opening theme to the anime D.Gray-man, never watch it though
  • DOWN TO YOU - At first I thought this is an English Song, I love the way Takanori’s singing the song. Awesome and Energic!
  • LOST REASON - Amazing song that reminds me of LinkinPark. Its a rap rock colaboration with MICRO from HOME MADE KAZOKU :D My God! the Japanese rap is awesome!!
  • BLADE CHORD - Wonderfull song with old Japanese touch.

Those are the best song from Band to me, the rest also wonderful and it has an energic instrument song (Rebirth + Reverse). Love them, They’re incredible!!

June 4, 2008
9:25 pm

Quality of most Indonesian Advertisement

Last day I met my old friend and do some talking blah..blah..blah. I realize that he kinda different from the last time we met. I recognize it by the way he speaking:

Me: Hebat km dunk, bisa kerja di jepang ntar, eh tp kok bisa dapet?
My friend: Ya iyalah, ak ditawarin dosen waktu itu ngajakin ikut program perusahaan di jepang, jadi ya kasih daaah
Me: :| Emang km bisa bahasa jepang?
My Friend: Ya iyalah nggak, tp ntar ada kursusnya, gratis lg
Me: Masa si?
My Friend: Ya iyalah masa ya iya donk, kan Mulan Jamelah bukan Mulan Jamidonk
Me: :|

That was a piece of our conversation, and if you notice that my friend’s mouth was infected by Indonesian advertisement :twisted: Apparently this phenomena isn’t just happened to him but also to my friends lately.

Actually this is exactly what the Companies want. They try to make their products become trend by making a stupid or funny words in its advertisement. The things like “kasih daah” or “ya iyalah” or “apa kata dunia” already spreading in our conversation and for those who don’t use it, will be marked “kurang gaul”. WTF??

There is nothing wrong with the method, but if we look at the quality of most of Indonesian advertisement, I think it’s sucks. Try to compare with 28 Extremely Creative Advertisement I have Ever Seen! and that’s what I call unique, striking and creative advertisement!

Page Navigation
Advertisement