Saturday, January 31, 2009

Create RAID-1 Using MDADM

WARNING : Masih Beta Version !! Haha soalnya masih dalam tahap pengerjaan juga. Dan satu lagi, tidak ada JAMINAN kalau jawaban saya ini benar 100%, hehehe.
Sebagai salah satu program latihan sih admin IF ITB, maka saya sebagai admin 06 IF ITB diberi tugas oleh admin-admin 05. Yah sebagai latihan se, buat ngoprek2 dan nambah pengetahuan juga. Walau awalnya cukup antusias dalam membuat tugas ini, tetapi karena efek liburan mungkin jadi ya gini deh masih berceceran dan ada beberapa yang terlewatkan dan belum dikerjain. Yah dalam perngerjaan kali ini juga saya bekerja sama dengan salah satu admin IF 06 yaitu saudara Ramon Rusli, hehe. Yah berikut hasil pengerjaan tugas kami.

RAID(Redundant Array of Inexpensive Disk)
Sebenarnya RAID dapat digunakan dalam beberapa cara, tapi saya hanya akan membahas mengenai RAID-1 saja.
RAID 1, dikenal dengan nama mirroring. Data akan ditulis sama persis ke semua anggota RAID. Keuntungan dari pola ini adalah jika terjadi kerusakan pada salah satu partisi anggota RAID, maka Anda bisa langsung menggunakan data cadangan di partisi lainnya.
Ingat untuk membuat RAID-1 ini maka sudah pasti kita harus membuat minimal 2 partisi hardisk terlebih dahulu. Bila sudah buat partisi, mari kita mulai.
1. rpm -qa | grep mdadm -> untuk mengecek apakah mdadm sudah terinstall
2. Membuat device RAID-1 dengan 2 partisi(hda dan hdb)
mdadm --create /dev/md0 --chunk=64 --level=raid1 --raid-devices=2 /dev/hda /dev/hdb
3. cat /proc/mdstat -> melihat persentase sinkronisasi, tunggu sampai sinkronisasi selesai
4. mdadm --detail --scan >> /etc/mdadm.conf -> simpan informasi bahwa kita sudah buat array
5. cat /etc/mdadm.conf -> lihat apakah sudah benar apa belum

How to Set Up LDAP Server

WARNING : Masih Beta Version !! Haha soalnya masih dalam tahap pengerjaan juga, moga2 tar malem sudah terupdate lagi, harap maklum. Dan satu lagi, tidak ada JAMINAN kalau jawaban saya ini benar 100%, hehehe.
Sebagai salah satu program latihan sih admin IF ITB, maka saya sebagai admin 06 IF ITB diberi tugas oleh admin-admin 05. Yah sebagai latihan se, buat ngoprek2 dan nambah pengetahuan juga. Walau awalnya cukup antusias dalam membuat tugas ini, tetapi karena efek liburan mungkin jadi ya gini deh masih berceceran dan ada beberapa yang terlewatkan dan belum dikerjain. Yah dalam perngerjaan kali ini juga saya bekerja sama dengan salah satu admin IF 06 yaitu saudara Ramon Rusli, hehe. Yah berikut hasil pengerjaan tugas kami.


How to set up LDAP server
1. Download openldap-stable-20080813.tgz
2. extract file .tgz tsb:
#tar xvzf file.tgz
3. cd openldap-2.
4. #./configure -prefix=user/local/openldap
5. Tunggu sebentar
6. #make depend
7. #echo ・usr/local/openldap/lib・>/etc/ld.so.conf
8. #echo 砥sr/local/openldap/lib・>/etc/ldap.conf
9. #ldconfig
10. Buat slapd.conf , taruh di etc/openldap
include /usr/local/openldap/etc/openldap/schema/core.schema
include /usr/local/openldap/etc/openldap/schema/cosine.schema
include /usr/local/openldap/etc/openldap/schema/inetorgperson.schema
include /usr/local/openldap/etc/openldap/schema/nis.schema
include /usr/local/openldap/etc/openldap/schema/samba.schema
pidfile /usr/local/openldap/var/run/slapd.pid
argsfile /usr/local/openldap/var/run/slapd.args
database bdb
suffix "dc=ldapserv,dc=if,dc=itb,dc=ac,dc=id"
rootdn "cn=Manager,dc=ldapserv,dc=if,dc=itb,dc=ac,dc=id"
rootpw {SSHA}64CzwMTSDoy5wmhL1FWMyQJ0HERjQPAN
directory /usr/local/openldap/var/openldap-data
index objectClass eq,pres
index ou,cn,sn,mail,givenname eq,pres,sub
index uidNumber,gidNumber,memberUid eq,pres
index loginshell eq,pres
index uid pres,sub,eq
index displayName pres,sub,eq
index nisMapName,nisMapEntry eq,pres,sub
index sambaSID eq,sub
index sambaPrimaryGroupSID eq
index sambaDomainName eq
index default sub
access to attrs=userPassword,sambaNTPassword,sambaLMPassword,sambaPwdMustChange,sambaPwdLastSet
by dn="cn=Manager,dc=ldapserv,dc=if,dc=itb,dc=ac,dc=id" write
by self write
by anonymous auth
by * read
access to attrs=shadowLastChange,shadowMax
by dn="cn=Manager,dc=ldapserv,dc=if,dc=itb,dc=ac,dc=id" write
by self write
by anonymous auth
by * read
access to attribute=userPassword
by anonymous auth
by self write
by * none
access to *
by * read
11. Buat ldap.conf, timpa di /etc/openldap
BASE dc=ldapserv,dc=if,dc=itb,dc=ac,dc=id
scope sub
URI ldap://127.0.0.01
suffix "dc=ldapserv,dc=if,dc=itb,dc=ac,dc=id"
timelimit 5
bind_timelimit 5
ldap_version 3
pam_filter objectclass=posixAccount
pam_login_attribute uid
pam_member_attribute memberuid
nss_base_passwd ou=Computers,dc=ldapserv,dc=if,dc=itb,dc=ac,dc=id
nss_base_passwd ou=People,dc=ldapserv,dc=if,dc=itb,dc=ac,dc=id
nss_base_shadow ou=People,dc=ldapserv,dc=if,dc=itb,dc=ac,dc=id
nss_base_group ou=Group,dc=ldapserv,dc=if,dc=itb,dc=ac,dc=id
nss_base_hosts ou=Hosts,dc=ldapserv,dc=if,dc=itb,dc=ac,dc=id

12. Jalankan LDAP
#/usr/local/open/libexec/slapd

Shell Bash Scripting to Remove Comment in a File

WARNING : Masih Beta Version !! Haha soalnya masih dalam tahap pengerjaan juga. Dan satu lagi, tidak ada JAMINAN kalau jawaban saya ini benar 100%, hehehe.
Sebagai salah satu program latihan sih admin IF ITB, maka saya sebagai admin 06 IF ITB diberi tugas oleh admin-admin 05. Yah sebagai latihan se, buat ngoprek2 dan nambah pengetahuan juga. Walau awalnya cukup antusias dalam membuat tugas ini, tetapi karena efek liburan mungkin jadi ya gini deh masih berceceran dan ada beberapa yang terlewatkan dan belum dikerjain. Yah dalam perngerjaan kali ini juga saya bekerja sama dengan salah satu admin IF 06 yaitu saudara Ramon Rusli, hehe. Yah berikut hasil pengerjaan tugas kami.

Dalam melihat konfigurasi seringkali kita disulitkan dengan banyaknya komentar pada file
konfigurasi sehingga memperlambatkan pengedtian file konfigurasi. Tulislah suatu script yang panjang satu baris menggunakn grep untuk menyaring file konfigurasi.
Jawab :
TANPA MENGGUNAKAN GREP:
sed "s/#.*//" $1 > a.txt; cp a.txt $1 ; rm a.txt
DENGAN GREP:
grep '#' $1 > a.txt; sed "s/#.*.." a.txt > b.txt; cp b.txt $1 ; rm a.txt ; rm b.txt

Virtual Server : IT Profesional Trend

WARNING : Masih Beta Version !! Haha soalnya masih dalam tahap pengerjaan juga. Dan satu lagi, tidak ada JAMINAN kalau jawaban saya ini benar 100%, hehehe.
Sebagai salah satu program latihan sih admin IF ITB, maka saya sebagai admin 06 IF ITB diberi tugas oleh admin-admin 05. Yah sebagai latihan se, buat ngoprek2 dan nambah pengetahuan juga. Walau awalnya cukup antusias dalam membuat tugas ini, tetapi karena efek liburan mungkin jadi ya gini deh masih berceceran dan ada beberapa yang terlewatkan dan belum dikerjain. Yah dalam perngerjaan kali ini juga saya bekerja sama dengan salah satu admin IF 06 yaitu saudara Ramon Rusli, hehe. Yah berikut hasil pengerjaan tugas kami.

sekitar dua tahun belakangan muncul suatu trend di kalangan IT profesional yaitu Virtual server.
Dalam praktiknya IT pro tidak lagi mengeset satu server untuk satu service, namun menggunakan suatu
server yang didalamnya di set banyak server virtual.
1. Apakah kalian pro atau kontra terhadap trend ini?
Saya pro terhadap virtual server.
2. Jelaskan alasan kalian!
Alasannya adalah karena virtual server ini meringankan beban biaya untuk membangun
sebuah jaringan atau web yang membutuhkan lebih dari satu server. Selain itu virtual
server ini juga memungkinkan terjadinya sharing hardware untuk server lain, misalnya
shared web hosting. Satu lagi kelebihan dengan menggunakan virtual server adalah
dapat membagi tugas, request,dll dalam jumlah tinggi yang dapat memberatkan suatu server
,sehingga satu server tidak terlalu dibebani dan menjadi lambat(multiple servers).
3. Berikan plus dan minus dari pilihan kalian!
Plus :
- Mendukung multiple servers pada satu hardware.
- Biaya untuk membangun banyak server dapat dikurangi.
- Mengurangi kemungkinan overload satu server dengan menggunakan multiple servers.
Minus :
- Karena memakai satu hardware, sehingga bila hardware tersebut rusak atau bermasalah
,maka semua server pada hardware tersebut juga akan mengalami masalah.
4. Dari segi disaster recovery planning mana yang lebih baik?, jelaskan!
Dari segi disaster recovery, saya melihat ada beberapa kasus yang dapat terjadi. Anggap saja A merupakan hardware yang mengimplementasi virtual server dan B adalah hardware yang mengimplementasi dedicated server biasa.
- Pada kasus dimana A dan B masing-masing terdiri dari jumlah hardware yang sama, dan A
memiliki lebih dari 1 server, maka dari segi disaster recovery planning A akan lebih
kompleks karena kita harus melakukan disaster recovery planning untuk semua server yang ada, sedangkan B hanyaperlu memperhatikan server itu saja. Pada kasus ini, dedicated server lebih baik.
- Pada kasus dimana A hanya terdiri dari 1 buah hardware dan B terdiri dari lebih dari 1 buah
hardware. Maka pada kasus ini, virtual server menjadi pilihan yang lebih baik dari segi disaster
recovery planning. Karena A hanya perlu memikirkan hardwarenya sendiri, sedangkan B harus memikirkan skenario dari B1,B2,..Bn hardware.
- Pada kasus dimana A memiliki hardware lebih banyak dari B, maka pilihan yang lebih baik adalah dedicated server.
- Pada kasus dimana A mamiliki lebih dari 1 hardware dan jumlahnya lebih sedikit dari B, maka tidak dapat ditentukan mana yang lebih baik tergantung perbandingan jumlah server dan server virtualnya.
Jadi kesimpulan mana yang lebih baik dari segi disaster recovery planningnya menurut saya tergantung kepada kondisi yang ada.

Routing In Netkit

WARNING : Masih Beta Version !! Haha soalnya masih dalam tahap pengerjaan. Dan satu lagi, tidak ada JAMINAN kalau jawaban saya ini benar 100%, hehehe.
Sebagai salah satu program latihan sih admin IF ITB, maka saya sebagai admin 06 IF ITB diberi tugas oleh admin-admin 05. Yah sebagai latihan se, buat ngoprek2 dan nambah pengetahuan juga. Walau awalnya cukup antusias dalam membuat tugas ini, tetapi karena efek liburan mungkin jadi ya gini deh masih berceceran dan ada beberapa yang terlewatkan dan belum dikerjain. Yah dalam perngerjaan kali ini juga saya bekerja sama dengan salah satu admin IF 06 yaitu saudara Ramon Rusli, hehe. Yah berikut hasil pengerjaan tugas kami.

Networking basic
Soal : jumlah subnet yang dibutuhkan 6
jumlah host yang dipakai dalam satu network 30
network address 210.100.56.0
Jawab :
1. Address Class = C
2. Default Subnet Mask for Class C = 255.255.255.0
3. Custom Subnet Mask = 255.255.255.224
4. Total Number Subnet = 8
5. Number Usable Subnet = 2^3 - 2 = 6
6. Total Host Address = 32 hosts per subnet
7. Number of Usable Addesses = 2^5 - 2 = 30 hosts per subnet
Simulasi jaringan dengan netkit
Ada 3 buah pc : pc1,pc2,pc3 dan 3 buah router :router1,router2,router3
pc1 berhubungan dengan router1 (10.0.1.0/24), pc2 berhubungan dengan router2 (10.0.2.0/24), pc3 berhubungan dengan router3(192.168.1.0/24), router1 berhubungan dengan router2(100.0.0.8/30), dan router2 berhubungan dengan router3(100.0.0.12/30).
ip pc1 = 10.0.1.5, ip pc2 = 10.0.2.9, ip pc3 = 192.168.1.5
Dalam hal ini saya sedikit menghadapi masalah yaitu saya belum bisa untuk menghubungkan router1 dan router2 melewati jaringan 100.0.0.8/30 sesuai yang diminta, begitu juga dengan router2 dan router3 melewati jaringan 100.0.0.12/30. Jadi saya melakukan sedikit modifikasi sehingga semua komponen tersebut dapat berkomunikasi.
Routing Statik
1. Ekstrak ketiga buah file berikut :
netkit-2.6.tar.bz2
netkit-filesystem-F4.0.tar.bz2
netkit-kernel-K2.6.tar.bz2
2. Maka akan tercipta folder netkit, sebelum mulai kita haru mengeset path netkit
misalnya kita mengekstrak netkit di folder /home/william
export NETKIT_HOME=/home/william/netkit/
export PATH=$PATH:$NETKIT_HOME/bin
export MANPATH=$MANPATH:$NETKIT_HOME/man
3. Jalankan check_configuration.sh di folder netkit
./check_configuration.sh
4. Kita mulai membuat virtual pc = pc1,pc2,pc3 dan routernya = router1,router2,router3
vstart pc1 --eth0=a
vstart pc2 --eth0=b
vstart pc3 --eth0=c
vstart router1 --eth0=a --eth1=d
vstart router2 --eth0=b --eth1=d --eth2=e
vstart router3 --eth0=c --eth1=e
pc1 = ifconfig eth0 10.0.1.5 netmask 255.255.255.0 broadcast 10.0.1.255
pc2 = ifconfig eth0 10.0.2.9 netmask 255.255.255.0 broadcast 10.0.2.255
pc3 = ifconfig eth0 192.168.1.5 netmask 255.255.255.0 broadcast 192.168.1.255
router1 = ifconfig eth0 10.0.1.1 netmask 255.255.255.0 broadcast 10.0.1.255
ifconfig eth1 100.0.0.2 netmask 255.255.255.252 broadcast 100.0.0.255
router2 = ifconfig eth0 10.0.2.1 netmask 255.255.255.0 broadcast 10.0.2.255
ifconfig eth1 100.0.0.1 netmask 255.255.255.252 broadcast 100.0.0.255
ifconfig eth2 100.0.1.1 netmask 255.255.255.252 broadcast 100.0.10.255
router3 = ifconfig eth0 192.168.1.1 netmask 255.255.255.0 broadcast 192.168.10.255
ifconfig eth1 100.0.1.2 netmask 255.255.255.252 broadcast 100.0.10.255
pc1 = route add default gw 10.0.1.1
pc2 = route add default gw 10.0.2.1
pc3 = route add default gw 192.168.1.1
router1 = ip route add 10.0.2.0/24 via 100.0.0.1
route add default gw 100.0.0.1
router2 = ip route add 10.0.1.0/24 via 100.0.0.2
ip route add 192.168.1.0/24 via 100.0.1.2
router3 = ip route add 10.0.2.0/24 via 100.0.1.1
route add default gw 100.0.1.1

Sunday, January 18, 2009

January 2009 Anime Recomendation

Huuf, there are some new animes this January and most of are very2 promising !! Okay actually there are 8 of them that I recomend( 8, do u believe it !!) But I only review 6 of them, because one of the, Akikan has already been reviewed by me in December's post and one other is Minami-Ke Okaeri (3rd season of Minami-Ke) and most of you maybe already watch the first or maybe the second season of it, haha but what I can say that the 3rd season is really good. Okay lets go to the main topic, and here it is the first one, Kurokami.
This anime is created by Bandai and Sunrise, so it will be one promising anime. This anime give a Shakugan of Shana impression really maybe the genre is kinda the same. In the story, it says that everyone in the world were created with 2 more people who look like it(doplegengar/dopleliner), and one of the is the center root. So when the other 2 died because meeting each other, the center root will get all of their luck. A high school boy, Keita Ibuki knew about doplegengar because his friend, neighbor,and mother died after they saw their doplegengar. One day, he met a girl called Kuro, and learn about this thing, and so the story begin.
The second is Asu no Yoichi. Yoichi is a boy who live in the mountain with his dad, training to become the greatest samurai. One day his father order him to go to the city to become a better samurai. In the city he live with 4 beautiful girls, because their families have a long relation. So then, his life in the city begin. Hmm, actually it is a harem anime and I believe that it is also a fighting genre anime. The story is good and the animation is just fine. But I like this easygoing anime, it kinda refreshing.


Okay next one is RideBack produced by studio Madlax. The story takes place in year 2025, where the world has been taken over by a group of people. In that year, a new vehicle is developed, it is rideback, but somehow the vehicle is still forbiden to use. One day a ballete star who just quit ballete and go to her new high school, accidentally found a rideback club and she found out that riding the rideback is a very fascinating thing to do. The one outstanding point of this anime is it's beautiful animation and outstanding computer graphic although I cann't see where the story will go on, but still it is a worth anime to watch.

The fourth one is Maria+Holic. At first sight, this anime is just like a yuri story in an all girl school. The story take place when the female main character who just transfered to an all girl high school to find her destined one(the main character has a allergy to man, so the destined one is a female^^) met a very beautiful girl named Maria. After charmed by Maria's beauty, then accidentally she found out that Maria is a male!! And Maria who is quite a sadistic person with all his authority keep eye on her 24 hour a day and bullied her also. So mainly the story is abot a lesbian girl meet a sadistic cross dressing guy in an all girl high school. The story is interesting and unusual but it still entertain us. The studio and the team who produced this anime is the same one as Negima!? so the art and the feeling are quite similiar. Oh, one more thing, this anime has break the record of the most nosebleed in an anime, hahaha.
The fifth one is Shikabane Hime Kuro. This is the second season of Shikabane Hime. I already watched the first season and of course look forward for this one. The story is good but not a happy kind of story and the action scene animation is great. The studio that produced it is Gainax (studio who produced FLCL and Tengen Toppa Gurren lagann), so a worthy anime to watch. The story is about corpes that run loose in this world and the one who hunt them is shikabane hime(corpse queen). Shikabane hime is a corpse that made a contract with priest to kill corpse so she can go to heaven.

Okay, I save the last one for the best, it is Sora o Kakeru Shoujo(The Girl Who Leap Through Space).

Hmm there are a few reason I think that this is the best one. First the animation and CG are SUPERB. The story is quite good and interesting. Now, for the last thing that I noticed after watched the second episode that this anime has this element : Ali Project + Mecha + Sunrise + Lelouch's seiyuu. SO it is a high posibility that this anime is created by the same team who created Code Geass !! With that there is no reason you won't watch this one ^^.

So, which one will you choose to watch ?? It's hard to choose right ? hahaha

Saturday, January 17, 2009

16 Random Things About Me

Wow ternyata namaku ada di list Mr KW dalam postannya yang berjudul '16 Random Things About Me' bersama beberapa nama lainnya yang rata2 pasti belum membaca secara lengkap postingan tersebut. OK2 karena gw juga baru baca yah maklum d, tapi menarik juga makanya sekarang gw coba2 de menggambarkan diri gw dalam 16 hal berikut ini.

This is how I think about myself
1. I am a melancholis-sanguinis
Hmmm yah ini juga dari hasil personality test, menurut gw sendiri ,dan kata2 orang se.
2. I like to choose different things from others
Gw nampaknya tidak suka memilih sesuatu yang sama dengan orang banyak, pengennya barang yang gw pilih atau miliki berbeda dari yang lainnya. Hahaha gw beli handphone Samsung P850, mungkin gara2 handphone gw yang terdahulu (Nokia 6600) merupakan handphone sejuta umat.
3. I am a logical person
Gw mendahulukan logika dulu se sebelum mengikuti perasaan. Akibatnya sekarang gw ada di Software Engineering IF ITB padahal perasaan mengatakan gw harusnya di Computer Science !
4. I am a little bit klepto^^
Hmm ga tau kenapa tangan gw thu suka gatel dan mengambil serta memainkan barang2 di sekitar gw, TAPI yah ga pernah bener2 gw ambil koq, tenang aja(paling mentok rusak).
5. I don't really like to talk about myself
Hmm kalo sadar ya, gw thu jarang banget lho menceritakan tentang diri gw sendiri secara mendalam(yah paling luar2nya doank).
6. I don't like to be a nuisance to others
Jujur aja gw paling ga suka menjadi pengganggu bagi orang lain, karena gw sendiri juga ga gitu suka diganggu, tapi yah kalo ga gitu nyusain dan gw lagi senggang ma ok2 aja. Kalo nyusain harus dalam keadaan darurat baru gw mau ngerti, hehehe.
7. Its hard for me to start something but dedicated to finish it
Gw sangat sulit kalo mau melakukan sesuatu tapi kalo sudah dilakukan susah juga dihentikan !! hahaha contoh aja ketika gw ngerakit gundam, nonton anim, dan main game.
8. I'm not to sure about what God really is
Nah, hal ini juga mungkin banyak yang mengalaminya juga ya. Menurut gw se agama itu baik dan memiliki ajaran2 yang baik.Gw se percaya ama Tuhan itu ada, tetapi sekarang gw masih ragu apakah Tuhan itu seperti apa yang agama2 atau orang banyak katakan, karena agama adalah ciptaan manusia.
9. I'm an objective person
Gw adalah orang yang sangat objektif dan hampir tidak pernah subjektif kalau dalam menilai suatu kejadian( tapi ini bukan tentang taste gw ya kyk makanan, mainan,dll). Gw selalu mencoba melihat dari berbagai sudut pandang dalam menghadapi suatu masalah tapi akibatnya jadi sulit untuk menanggapi masalah tersebut, karena tidak ada kebenaran yang merupakan kebenaran sejati.
10. I like everything that is in order
Menurut gw segala sesuatu itu harus rapih, yah minimal tersusun dengan baik. Jadi gw cukup gatel melihat desktop laptop Mr RR yang sangat berantakan!!!!
11. Maybe I have MPD
Ini sih sulit dilihat atau dideteksi, tapi ada yang bilang gw kadang-kadang sering berbuat tidak seperti gw yang biasanya. Mr SG juga pernah bilang kalau kadang2 gw itu rada jahat, hahaha. Walau begitu menurut gw ini semua cuma karena gw bertindak berbeda tergantung orang yang gw hadapi.
12. Simplicity is the best
Gw suka desain yang simpel dan rapih, coba liat aja bagaimana gw mendesain layout blog ini.
13. I like both eastern and western food
Gw menyukai berbagai jenis makanan KECUALI makanan dari Aceh, Schezuan, India, Korea,dan Thailand. Karena makanan2 tersebut rata2 pedas dan entah mengapa ga cocok ama lidah gw. Untuk makanan eastern favorit itu adalah sushi, sashimi, mie ayam keriting, dim-sum, shabu-shabu, sate ayam madura, gado-gado, ketoprak, kwetiaw sapi, dan berbagai jenis chinese food lain. Untuk western adalah pasta, salad, beef ribs, hamburgers,dan Ice cream.
14. I like anime more than mangascan
Gw lebih suka mendownload dan nonton anime daripada download dan baca mangascan. Ga tau kenapa ya menurut gw mangascan itu bacanya susah dan ga nyaman, gw jauh lebih suka baca manga biasa. Jadi ga aneh kalau gw sering beli komik.
15. Comedy, Mystery, Thriller,and Action is my genre
Keempat genre di atas lah, genre2 yang paling gw suka dari sebuah film, anime,atau komik.
16. Prefer joystick than keyboard for game
Untuk maen game gw sangat2 ga suka memakai keyboard dan lebih suka pake joystick. Karena menurut gw kalo dengan joystick tangan gw itu seperti fix dengan semua tombol yang ada dan seperti memegang controller suatu barang secara langsung(kayak nyetir kendaraan).

Hmm itu dulu de ttg gw hahaha, gmana puas?

New Gundam Model Kit Series

Another suprise from Bandai this year, after the info about Red Astray Perfect Grade !! This March, Bandai will release a new grade of Gundam model kit. It is JG ( Jumbo Grade ) series

Zeta Gundam is chosen to be the first in this series. What about the price ??? hahahahahha
It is an incredible 28140 yen !!!!!!!!!!!! Can you believe IT !! a model kit with that price !!
But with that price you will get a very large Gundam model kit. The height of Zeta JG is 56,5 cm.
And this Zeta can still transform into its plane shape or flight mode. You will also get a large selection of decals/stickers. Hmmm will I be able to see it with my own real eyes, at least the box ? haha it is almost imposible here in Indonesia.

Astray Red Perfect Grade

Woohohoho... new gundam PG(Perfect Grade) series will be out this year !!, specificly at March this year. After the last PG Gundam Strike Rouge, it's been a while we didn't saw new PG. BUT it is imposible for me to buy this one, the price is very2 expensive 18900 yen !!! Nowdays 1 yen cost about 130 rupiah and most hobby shop in Indonesia sell Gundam about 140 to 170 rupiah per yen. SO this fuckin PG will AT LEAST cost about Rp 2.646.000 !!! hahahhahahaha

Hmm for you guys who is interested can download the pdf file of Bandai's sale catalog for this Gundam Astray Red Perfect Grade here and remember to show it to me if you buy this Gundam, ahahhahahahaha.

Tuesday, January 13, 2009

Model Kit's Gold Paint

Okay, it is my first time ever colouring gundam parts with paint !! mmm this is because my curiosity to make my 3 kingdom SD Gundam look better^^ and also my Shin Musha MG Gundam. So, I began searching in the internet to find the best paint for it, then I found out that most people use Tamiya Colour Paint with Code X12 Gold Leaf!! But how disappointing that I cann't find this paint !!!!!!! I already search in some shops in Jakarta and almost all hobby shops in Bandung!! -___- .In my despair, I bought a super metalic gold paint from Mr Colour, but again the result of the paint is disapointing because it is too dark for a gold colour althougt it is a metalic gold. Then, yesterday I read one of my friend's blog Fermul, he said about a hobby shop called Zero in Bandung. Of course, I searched this shop and find it ^^ BUT again there is no gold leaf paint, then I asked the shop keeper, how can I paint gold colour in 3 kingdom SD gundam without X12 gold leaf. Then he recomended me using the clear yellow colour of tamiya paint colour, above the layer of part that has already been painted with a metalic colour!
SO here is the result, it is quite satisfying,wuahahahaha. THANK YOU, Sir !!
BUT I wanted to try and experiment a little more because I also bought a X31 Titanium Gold.

I ran some experiment, and I can say that Mr Colour paint has a better quality than Tamiya paint colour. Because, Tamiya's paint can easily turn from liquid to emulsion because its tinner dry faster, but the pait itself need a long time to dry. After it has dry, the paint can easily torn off, if you scratch it ( happen on a non-clear paint). Mr Colour's paint doesn't has those problem and work beautifully !!
BUT in the end, I'm not really sure because I only used 3 kind of paint Titanium Gold and Clear Yellow from Tamiya and Super Metalic Gold from Mr Colour ( and the super metalic gold paint is a waaaay more expensive than the usual Mr Colour's paint or Tamiya's paint ).
Okay now for the conclusion of my experiment :
1. Titanium Gold is a reaaaaaly2 pale metalic gold
2. Super Metalic Gold is quite like dark copper metalic gold
3. Titanium Gold + Clear Yellow is a bright and a little pale gold, hmm quite near the 3 kingdom gundam's gold colour we all hope ..
4. Super Metalic Gold + Clear Yellow( 1 layer ) is like the colour above(no 3) but not pale and more yellowish ... I prefer this one^^
5. Super Metalic Gold + Clear Yellow ( 2 layer ) is just a little darker and more orange colour than colour no3 ( the picture you see above ), hmm I think this is a very good gold colour, but it is not quite ideal for 3 kingdom gundam

So thats all, mmm I still experimenting a little to find the best result, hehe ^^
Hope u find the ideal gold colour for your model kit also ....

Gundam 00 S2 Episode 14

It's 2009, Gundam 00 enter its 14th episode with new opening and ending, and some new mechas too !! The first one answer the question about what is another function of the big face gundam at the back of Seravee Gundam

Amazingly the face is another gundam, Seraphim Gundam !! There is almost no equipment equiped to this gundam beside that its hand can shoot out beams. With this gundam, one inovator is down, and that sure is very much pissed Ribbon out. And a suprise truth that Ribbon is the pilot of 0-Gundam that saved Setsuna and made him a gundam meister !

Yes, Mr Bushido's new mobile suit is revealed, the Masurao !!, cool design and look strong too, Mr KW will watch for this model kit carefully and won't miss it !! ^^ haha. From the opening I can guess that this is a rival suit for 00-riser Gundam beside The new mobile armor I saw in the opening that own by Louise(Hey a mobile armor for a girl, hhmmmm this storyline replicate the first series of Mobile Suit Gundam and the girl pilot died protecting Char from Gundam RX78(the 1st gundam) ,hmm another classic part in modern Gundam series .Gundam Seed and Destiny have a lot of them). Anyway because Ali's Throne Gundam has been defeated by 00-riser so it won't be 00-riser rival, I assume ^^. I guess Ali will be Tieria rival. No, clue about another Gundam yet, but I hope they will make one or two new suit at least. Cann't wait for the next episode because the series is geting more and more interesting ^^

Get the latest of Gundam 00 series at http://gundam00fan.com