The Gini Dragon

August 24, 2010

Reuni Ek2 Rongewu Papat

Filed under: dragon personality,j.e.s.t.e.r latest d'journal — Administrators @ 3:24 am

yo, hehehe do mbuka iki to, nah ning kene ono info go reuni 2010 ek2 rongewu papat

ok iki acarane

tanggal 13 september 2010 dino senen

Tempat : SMK N 3
Pukul : 9 Tepat Waktu Indonesia Bagian Barat
Acara : Temu Kumpul , Kumpul Bareng (setelah itu terserah pendapat temen2 mau ziarah, mau silaturahmi, mau jalan2, ato mau makan2) nanti kita bahas, yang utama adalah ngumpul dulu

Biaya : 50rb (untuk bli kaos) bagi yang membawa istri, suami, keponakan, bapak ibu di hitung perkepala, dengan kata lain nantinya biaya makan di tanggung sendiri,

dimohon sangat kedatangannya, ga perlu gengsi2an atau sombong2an, disini kita kumpul menjaga silahturahmi sesama, bagi yang keberatan silahkan complain, bagi yang pinfin ikut tapi ga bisa dengan alasan tertentu, kalau mau pesan kaos silahkan menghubungi saya ata mas unggul,

sekali lagi tujuan utama ada lah ngumpul

saat ini produksi kaos akan kita lakukan, untuk pembayaran tolong dikirim ke unggul atau saya, pembayaran dimuka,

terima kasih

August 11, 2010

Modern Creation of Bandung Bondowoso

this is a request from someone, she ask me if i could built 1000 temples for her in one night, this project begun at 00.00 GMT +7,
first thing i did was create a layout for 1000 temple :) just kiding, i just design the layout,

around 01.00 am first temple was built, the i begun move to the next temple, i repeat it till 1000th temples,

and this is the result,

i created this temples over one night (half night) :D ,

this is sample of modern way bandung bondowoso create prambanan temple at one night…

here the link Nagagini Temple by jester

June 10, 2010

How to build Simple WordPress Plugin ?

Filed under: Code Playground,dragon personality,php,programming — Administrators @ 4:10 am

WordPress is one of most CMS which very familiar and easy to use, many web developer use wordpress as their cms is because they can customize the look an feel of the wordpress theme as they want,, here is the simple way to customize wordpress,

if you want to change the behaviour of wordpress function, don’t edit the wordpress core, just hook the wordpress action or filter to change the behaviour,

ok let start..
our goal is to strip bad word such as fuck to something like f**k

here the code

/**
* . . . pusing version 1.0
* @author jester
*/

function strip_bad_word($text){
     // use it to access the wordpress database
     global $wpdb;
     str_replace("fuck","f**k",$text);
}

add_filter('the_content','strip_bad_word');

as you can see there are function definition and add_filter function call, add_filter function use to hook the user defined function to hook api provided by wordpress, in this case i use “the_content” hook filter to alter the post content before it displayed, like i said before, our goal is to strip “fuck” to “f**k” so i use “str_replace“, this is just simple sample, the rest is up to you,

WordPress Plugin Resource

Codex WordPress Developer

June 9, 2010

Video Ariel dan Aura Kasih [real]

Filed under: Pranks,video — Administrators @ 11:50 am

nah ini dia

video

ariel

dan

aura kasih

bagaimana?

March 23, 2010

Burning Head!

Filed under: Code Playground,dragon personality — Administrators @ 7:49 am
/**
* . . . pusing version 1.0
* @author jester
*/

$me = new Me();
$me->get->sick();
$me->get->medicine();
if($me->isSembuh()){
     $me->goTo("work");
}else{
     $me->sleep(1000);
}
break;

March 13, 2010

To be continued..

After having my blogspot account removed by google, i haven’t wrote any article again, so this is my first article, hope you enjoy and we can share

there will be alot of programming update, curently i do a lot of programming update from php , as3, python, javascript , etc

so stay tune on The Gini Dragon

Powered by WordPress