Tuhan dan Tukang Cukur (id)

Tuhan dan Tukang Cukur (id)
Suatu hari seorang laki-laki, sebut saja steve, datang kesebuah barber shop untuk memotong rambut dan jenggotnya. Ia pun memulai pembicaraan yang hangat dengan tukang cukur yang melayaninya. Berbagai macam topikpun akhirnya menjadi pilihan mereka, hingga akhirnya Tuhan menjadi subyek pembicaraan mereka.
Tukang Cukur (TC) : "hai tuan, saya ini tidak percaya kalau Tuhan itu ada, seperti yang anda katakan tadi".
mendengar hal tersebut, steve terkejut dan bertanya
Steve (S) : "mengapa anda berkata demikian?".
TC : "iy, jika Tuhan itu ada, mengapa banyak orang yang sakit? dan mengapa banyak anak-anak yang terlantar. jika Tuhan itu ada, tentu tidak ada sakit dan penderitaan. Tuhan apa yang mengijinkan semua itu terjadi?".
Steve pun berpikir tentang apa yang baru saja diungkapkan oleh si tukang cukur. Namun iya sama sekali tidak memberi respon agar argumen tersebut tidak lebih meluas lagi. Saat steve keluar dari barber shop, tiba-tiba ia berpapasan dengan seorang laki-laki berambut panjang dan jenggotnya sangat lebat. Sepertinya ia sudah lama tidak pergi ke tukang cukur dan itu membuatnya terlihat sangat tidak rapi. Akhirnya steve kembali masuk ke barber shop dan ia berkata kepada sang tukang cukur.
S : "ternyata di dunia ini tidak ada yang namanya tukang cukur!"
Otomatis si tukang cukur terkejut.
TC : "bagaimana mungkin mereka tidak ada tuan, buktinya adalah saya, saya ada disni dan saya adalah seorang tukang cukur".
S : "Kalau mereka memang benar-benar ada, tentu tidak mungkin ada orang yang berambut panjang dan berjenggot lebat seperti bapak yang satu ini".
TC : "ah... anda bisa saja tuan. Tukang cukur itu selalu ada dimana-mana, yang terjadi pada pria ini, adalah bahwa ia tidak mau datang ke barber shop saya untuk dicukur".
S : "Tepat. Itulah kuncinya. sebenarnya Tuhan itu ada, yang terjadi pada umat manusia adalah mereka tidak mau datang menemuinya. Itulah sebabnya menapa tampak begitu banyak penderitaan diseluruh dunia ini".
Kadang kita terlalu gampang mengambil kesimpulan dari sesuatu hal yang tidak kita pikirkan secara mendalam. Tukang cukut itu adalah diri kita juga, yang kadang mereka menderita dan lalu mengatakan bahwa Tuhan tidak ada. Sementara kita sesungguhnya tidak mengenal Tuhan dan mungkin kita tidak dekat dengan-Nya.

Versi MP3 bisa di download disini : Tuhan dan Tukang Cukur

Animasi kursor Bounce Ball (id)

Animasi kursor Bounce Ball (id)
Aku mau share tutorial buat ngasi animasi di kursor. aku kasi bayangan dikit, intinya, setelah masukin script dibawah ini, kursor kamu akan ada "buntutnya" yaitu bola-bola yang bisa memantul. berhubung aku g da blog "korban", aku g bisa ngasi SS contohnya. Buat temen-temen yang uda nyoba, bisa kasi SS di komentar y... buat referensi yang laen.... :P
Ni langkah-langkahnya :
1. Buka blogger.com trus login
2. Masuk dashbord, trus pilih "design" blog yang mau kamu pasang animasi ini.
3. klik "edit HTML"
4. centang "Expand Widget Templates"
5. trus cari tag </body> (biar gampang, tekan ctrl + f)
6. Copy semua script yang di kolom bawah ni tepat "DIATAS" atau "SEBELUM" tag </body>

<script LANGUAGE="JavaScript">
<!--Bounce Ball Start
// image src
var trailsrc = "URL/sumber gambar bolamu";

var nDots = 7;
var Xbpos = 0;
var Ybpos = 0;

// fixed time step, no relation to real time
var DELTAT = .01;
// size of one spring in pixels
var SEGLEN = 10;
// spring constant, stiffness of springs
var SPRINGK = 10;
// all the physics is bogus, just picked stuff to make it look okay
var MASS = 1;
// Positive XGRAVITY pulls right, negative pulls left
// Positive YGRAVITY pulls down, negative up
var XGRAVITY = 0;
var YGRAVITY = 50;
// RESISTANCE determines a slowing force proportional to velocity
var RESISTANCE = 10;
// stopping criterea to prevent endless jittering
// doesn't work when sitting on bottom since floor
// doesn't push back so acceleration always as big
// as gravity
var STOPVEL = 0.1;
var STOPACC = 0.1;
var DOTSIZE = 11;
// BOUNCE is percent of velocity retained when
// bouncing off a wall
var BOUNCE = 0.75;

var ff=(document.getElementById&&!document.all);
var ns=(document.layers);
var ie=(document.all);

// always on for now, could be played with to
// let dots fall to botton, get thrown, etc.
var followmouse = true;
var dots = new Array();

function init()
{
    var i = 0;
    for (i = 0; i < nDots; i++) {
        dots[i] = new dot(i);
    }
 
    // set their positions
    for (i = 0; i < nDots; i++) {
        dots[i].obj.left = dots[i].X;
        dots[i].obj.top = dots[i].Y;
    }
 
    setTimeout("startanimate()", 10);
}

function dot(i)
{
this.X  = Xbpos;
this.Y  = Ybpos;
this.dx = 0;
this.dy = 0;

if (ns){
 document.write("<layer id=\"mtrail"+ i +"\" ><img src='"+trailsrc+"' border=\"0\"><\/layer>");
} else if (ie||ff) {
if (i == 0) {
 document.write("<div id=\"mtrail"+ i +"\" style=\"POSITION: absolute;z-index:999;VISIBILITY: hidden;\"><img src='"+trailsrc+"' border=\"0\"><\/div>");
} else {
          document.write("<div id=\"mtrail"+ i +"\" style=\"POSITION: absolute; z-index:999;\"><img src='"+trailsrc+"' border=\"0\"><\/div>");
        }
        }

if (ie)
{
this.obj = eval("mtrail" + i + ".style");
} else if (ff)
{
this.obj = document.getElementById("mtrail" + i).style;
}
else
{
this.obj = eval("document.mtrail" + i);
}
}

function startanimate() {
    setInterval("animate()", 20);
}

// just save mouse position for animate() to use
function MoveHandler(e)
{
    if (ie) {
    Xbpos = window.event.clientX + document.body.scrollLeft;
    Ybpos = window.event.clientY + document.body.scrollTop;
    }
    else {
    Xbpos = e.pageX;
    Ybpos = e.pageY;
    }
}

function vec(X, Y)
{
    this.X = X;
    this.Y = Y;
}

// adds force in X and Y to spring for dot[i] on dot[j]
function springForce(i, j, spring)
{
    var dx = (dots[i].X - dots[j].X);
    var dy = (dots[i].Y - dots[j].Y);
    var len = Math.sqrt(dx*dx + dy*dy);
    if (len > SEGLEN) {
        var springF = SPRINGK * (len - SEGLEN);
        spring.X += (dx / len) * springF;
        spring.Y += (dy / len) * springF;
    }
}


function animate() {
    // dots[0] follows the mouse,
    // though no dot is drawn there
    var start = 0;
    if (followmouse) {
        dots[0].X = Xbpos;
        dots[0].Y = Ybpos;
        start = 1;
    }
 
    for (i = start ; i < nDots; i++ ) {
     
        var spring = new vec(0, 0);
        if (i > 0) {
            springForce(i-1, i, spring);
        }
        if (i < (nDots - 1)) {
            springForce(i+1, i, spring);
        }
     
        // air resisitance/friction
        var resist = new vec(-dots[i].dx * RESISTANCE,
            -dots[i].dy * RESISTANCE);
     
        // compute new accel, including gravity
        var accel = new vec((spring.X + resist.X)/MASS + XGRAVITY,
            (spring.Y + resist.Y)/ MASS + YGRAVITY);
     
        // compute new velocity
        dots[i].dx += (DELTAT * accel.X);
        dots[i].dy += (DELTAT * accel.Y);
     
        // stop dead so it doesn't jitter when nearly still
        if (Math.abs(dots[i].dx) < STOPVEL &&
            Math.abs(dots[i].dy) < STOPVEL &&
            Math.abs(accel.X) < STOPACC &&
            Math.abs(accel.Y) < STOPACC) {
            dots[i].dx = 0;
            dots[i].dy = 0;
        }
     
        // move to new position
        dots[i].X += dots[i].dx;
        dots[i].Y += dots[i].dy;
     
        // get size of window
        var height, width;
        if (!ie) {
            height = window.innerHeight + window.pageYOffset;
            width = window.innerWidth + window.pageXOffset;
        } else {
            height = document.body.clientHeight + document.body.scrollTop;
            width = document.body.clientWidth + document.body.scrollLeft;
        }
     
        // bounce off 3 walls (leave ceiling open)
        if (dots[i].Y >=  height - DOTSIZE - 1) {
            if (dots[i].dy > 0) {
                dots[i].dy = BOUNCE * -dots[i].dy;
            }
            dots[i].Y = height - DOTSIZE - 1;
        }
        if (dots[i].X >= width - DOTSIZE) {
            if (dots[i].dx > 0) {
                dots[i].dx = BOUNCE * -dots[i].dx;
            }
            dots[i].X = width - DOTSIZE - 1;
        }
        if (dots[i].X < 0) {
            if (dots[i].dx < 0) {
                dots[i].dx = BOUNCE * -dots[i].dx;
            }
            dots[i].X = 0;
        }
     
        // move img to new position
        dots[i].obj.left = dots[i].X;
        dots[i].obj.top =  dots[i].Y;
    }
}

init();
if(ns)window.captureEvents(Event.MOUSEMOVE);
document.onmousemove = MoveHandler;
-->bounce ball end
</script>
7. Jangan lupa mengganti URL/sumber gambar bolamu. 
8. Save, trus coba buka blog kamu.


Ni aku kasi contoh bola sama URL gambar bolanya.
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiWGALoJCoud5nWN7wvRSpjrGLHvXf9OU7lMqrWDATVUK2QLfZC6Eaow5L8BR_m8Wcb2wMcKZXMHms3M_bueKsDdzx0iOUDq0v6cI9QIBmjLzzoAq_L3Um47jyTZ7KojMcHQ8V9YBsP7i3d/s11/Blue%252520Ball.gif
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiuWjEVuIBeHMQR6KnByjTJnkqXE-dIVGm59DeYnxnNcwgBas623LkkyMifVsumPs7-KIWi1KtjitjPSxJF92ktcMgEzG2VetreFCVZsigvc6TyY268KqczjUvoEg3S-dw38Ez0Lu6rQEPq/s128/Gray%252520Ball.gif
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg1yyKpkAnsxKzucXCCAb_kgHZFAhQ5I-Ie542NTt4XdV3xLtGGjO8QBfOUQ4-wtPA6mIZ_n0s-6EHewqJNQlCPHRXJZnh8oCR3jmND66g2xCGsdUjleLaSZ_wWvqST2ExieGj0ssLQ3ZCq/s128/Green%252520Ball.gif
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiZSAbEcvpWDeTPhAr9C_8NDCYWpmRtr4Fm17GcXmn-5sP8tNIdkYApvovk6RDcSeakAukOeoExRy9m9u43gmvF9TQTlkvSofmtdzHPiXbJwiAPWA1eaeMHEK7NE6pqfCzFpT-3qEfAn3Pr/s128/Purple%252520Ball.gif
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhjmW019DYpkEjz3xBNDcYyjLHzGfSQslgRzqcVv0O4fjxune0bno_hX_v1Bl8866WbF4_-KU8tRgi2Y1RvMv9wCB546EE0lR5wL4Ixk4inXlGhuKpewUUWxHH-ap6wnU_vjfynHjDwd5VD/s128/Red%252520Ball.gif

Cara Cepat Meningkatkan Peringkat Alexa

Kaget sebenarnya setelah mengetahui fakta yang satu ini. Awal saya mulai membuat blog ini trus daftar di alexa, peringkat blog saya dimata alexa sekitar 24.000.000. Dalam hati saya bergumam "wajar, blog baru... g mungkin langsung masuk 5jtan".
Tapi beberapa hari belakangan saya baru sadar kalo ternyata blog saya sudah masuk jadi 4jtan. Seneng sih, tapi juga bingung, "kenapa bisa??" padahal saya g ngerasa ngelakuin sesuatu buat naikin alexa rank.
Usut punya usut, ternyata ini efek dari saya bergabung di infolinks.com dan clicksor. Awalnya sih g percaya, akhirnya saya coba pasang script infolinks di blog saya yang satu lagi (yang dimata alexa masih tidak ada data peringkat). 3 hari setelah pemasangan, ternyata blog saya tu dah masuk peringkat 8jtan.
Atas dasar itulah, saya ingin berbagi info ini buat temen-temen yang g sengaja nyasar kesini. buat daftar infolinks, ada beberapa persyaratan, yang utama "blog harus berbahasa inggris".
Cara mengakalinya, kamu simpan dulu semua artikel kamu jadi draft, trus posting 5-10 lirik lagu bahasa inggris. Selain tu, biar lebih aman, kamu bisa hilangkan dulu semua widgetmu. trus daftar di infolinks.com, tunggu konfirmasinya. Kalo belum da konfirmasi, jangan posting dulu artikelmu yang tadi kamu draft-in tu. Kalo dah ada konfirmasi, baru kamu tampilkan lagi semuanya n jangan lupa pasang juga script infolinks.com (y iya lah, buat pa daftar kalo scripnya g kita pasang???).
Untuk daftar di clicksor, g da persyaratan seperti di infolinks.com, tinggal daftar trus copas script widgetnya.


Oy, buat ngeliat secara real-time (dan bisa untuk semua web/blog) alexa rank, kamu bisa pasang tolbarnya, sudah aku kasi tutorialnya di alexa untuk blogmu
Semoga tutorial kali ni bisa berguna buat temen-temen blogger. Keep spirit to Blogging. :P


Blog percobaan : http://album-dagip.blogspot.com/
Link daftar Alexa : alexa.com
Link daftar infolinks.com : infolinks.com
Link daftar clicksor : Clicksor.com

Build Bridge (Game)

Buat Jembatan
This morning I woke up really surprised, my sister did not sleep the whole night. At first I thought the task, it was play games. Intrigued by the game being played (until he's willing to not sleep), I try to play the game. Apparently only a flash game, not a heaavy game, but it turned out pretty well sharpen the brain.
At first glance, this game (hence its name) we build bridges that will be used the way the character there to pick up the goods. He cried again, we are limited with money to build that bridge.... Substantially challenged.
Want to try? just download this file, only 6 mb.


Download :
Build Bridge

Bangun Jembatan (game)

Buat Jembatan
Tadi pagi aku bangun kaget banget, adikku ternyata g tidur semalam penuh. Awalnya aku kira ngerjakan tugas, ternyata maen game. Penasaran dengan game yang dimainin (mpek dia rela g tidur), aku coba mainin gamenya. ternyata hanya game flash, bukan game berat, tapi ternyata cukup mengasah otak juga.
Sekilas, game ini y sesuai namanya, kita membangun jembatan yang nantinya dijadikan jalan buat si karakter disana untuk ngambil barang. Na asiknya lagi, kita dibatasi dengan uang buat bangun jembatan tu... pokoknya menantang n buat gemes.
Bisa di coba, filenya hanya sebesar 6 mb j.

Download :
Bangun Jembatan

King and His Four Wives

King and His Four Wives
A long time ago, there a king who had 4 wives. The king was very much in love his fourth wife and has always presented him with expensive clothes and gave him the most delicious food, Only the best will given to the wife. He also adored his third wife and always shot it off to the officials of the neighboring kingdom. That's because he was afraid that one day this wife will be left him.
The king also loved his second wife. Because his wife on this one is where the outpouring of his heart, which will always be friendly, caring and patience. At the time of the king facing a problem, he would reveal the content only at his third wife because he could help her through the tough times that.

King's first wife was a very loyal partner and has contribute a large part in maintaining his wealth and for his kingdom. However, the king did not care about his first wife was even the wife loved him so much, it remains difficult for the king to attention his wife's.
Until one day, the king feel ill and he knew that death was imminent. While contemplating a very luxurious life, the king then thought, "right now I have 4 wives beside me, but when I go, maybe I'll own". Then, he asked to the fourth wife, "until now, I most love you, I gave you a gift the most beautiful of the clothes and gave a great attention just for you. Now I'm dying, are you going to follow and stay with me?" "it will not!" replied the fourth wife, he went away without saying anything more. the answer of his wife is like a knife piercing her heart was so right. The king sad and said to his third wife, "I really adore you with all my soul. Now I'm dying, do you still follow and always be with me?" "No!" said the wife. "Life is so beautiful! When you die, I will be married again!" the king feelings emptiness and froze. Moment later, the king asked to his second wife, "All this time, when I needed you, you're always there for me. The next time I die, if you will follow and continue beside me?" "Forgive me, for this time I could not fulfill your wish!" replied his second wife. "All I could do, just go with you to your funeral".

Again, the response of the wife like a bolt that grabbed and broke her heart. Suddenly, a voice said "I will be with you and accompany you whenever you go". The king turned his head looking for anyone who talked to him and saw his first wife. He looked so thin, such as suffering from malnutrition. With very deep regret and profound sorrow, the king said wistfully, "I should have more notice you when I still had plenty of opportunities!".


Moral of this story :

In reality, actually we all have "four wives" in our lives. "The fourth wife" of us are our bodies. No matter how much time and effort we spend to make il took good, still, he'll leave us when we die. Then the "third wife" of us are ambition, status and wealth. When we die, all of it will surely fall into the other hands. While the "second wife" of us are family and our friends. No matter how long time already spent with us, still the can only accompany us up to the funeral. And finally "first wife" of us is the spirit, soul, our faith, which is often overlooked because of busy chasing wealth, power and satisfaction of lush. In fact, soulus, spirit or faith is what will follow us wherever we go, that would show our identity to the world.

AVG Internet Security 2012

AVG Internet Security 2012
Previously I've shared about KIS 2011 Plus Resetter is already widely trusted by the toughness. Now I want to share the antivirus which is also a rival of KIS. Namely AVG Internet Security.
Many say that this AV is making a heavy laptop or slow, but as long as I use this AV, I do not feel the symptoms that people say (my laptop also antiquarian with only 1GB of RAM and Pentium 4 Processor).

What I like from this AV that is "I do't need to pay for it" hehehehe.... in this article, I also include an activation key for this AV (Valid until 2018).

For my friends who are willing and want to try using this AV, please direct download at the link I give below. Please comment and criticism....

I attach below the advantages of this AV :

Protection that actually speeds up your PC
Some security products slow down your PC; AVG Internet Security 2012 speeds it up, by accelerating the download of content-rich files. Faster system start-up and support for Flash and HD video means you can enjoy online video like YouTube faster than ever before.AVG AcceleratorAVG System Tools.

Block hackers and stop identity thieves
More than just Antivirus, AVG Internet Security protects you when shopping and banking, keeping your identity safe. The AVG Firewall prevents inbound and outbound attacks, while Identity Protection secures personal content you enter online.AVG Enhanced FirewallAVG Identity Protection.

Award winning Anti-Virus that just works
Antivirus protection that automatically updates to protect you from continually evolving threats. As hackers develop new techniques, AVG’s research labs are constantly processing web data to provide new defenses to keep you automatically protected.Anti-Virus, Anti-Malware, Anti-SpywareAVG Protective Cloud TechnologyAVG Community Protection Network.

Gaming and surfing without interruptions
Get on with your surfing and gaming without interference. Scans operate when you are away from your PC, and it also knows when you are gaming and ensures that the security operates in the background only, leaving you free to play.AVG Smart ScanningGame ModeAuto-Fix.

Keep messaging free of spam, worms and scams
Keep your inbox clear of spam and also protect it from phishing scams along with the hidden viruses that they contain. AVG will also protect you when exchanging files through popular instant messaging like MSN and Yahoo.AVG Anti-SpamAVG Online Shield™AVG Email Scanner.

Surf and search the web safely
You want to search and surf, but you don’t ever want to go to any infected websites. AVG helps you out by clearly alerting you to threats and keeping you clear of them.LinkScanner® Search-ShieldLinkScanner® Surf-Shield.

Share your life on Facebook, not viruses
With AVG protecting your system, you can chat and message your friends on Facebook and other social networks in the knowledge that each web page and link is checked for safety. You won’t pick up a malicious link from your friends - and you won’t send one either!AVG Social Networking Protection.

Expert support from techies that care
AVG understands the need to stay safely connected to the web no matter your geographical location or time of day - our mission is to provide ongoing peace of mind on a 24/7 basis.AVG SupportAVG Advisor.

Download : AVG Internet Security 2012
List Key :
                8MEH-RXYFD-JUV72-8922R-FTBZ6-QEMBR-ACED
                8MEH-RAJC2-O3P77-KRRQA-H3SLN-REMBR-ACED
                8MEH-RXYFD-JUV72-8922R-FTBZ6-QEMBR-ACED

One Heart Different Purpose

One Heart Different Purpose
Mr. Mamat, was a peasant village with one field and two cows. His days he used to take care of their field and find grass for the cattle. Tp perform these activities, he has an old bike to ride to the field and forests the village where he was mowing the grass. However, lately, he is constrained to reach their fields early in order to mowing the grass more quickly because the bike saddle broken and unlikely to be used again. He chose to walk though the energy expended is greater because they have driven a long distance and lift the grass is quite heavy.
This kondition has actually been known by Mrs. Mamat, but what power, he can not help her husband. Until one day, he remembered the earring that left one side only. "Why am I not help my husband with sell the remaining earring are then bought a saddle for my husband?"

Hewas carrying out that his intention without the knowledge of her husband because he wanted to give as a surprise gift on the anniversary of her husband.

On the other hand, her husband, who every day walk to go fields and forest began to feel comfortable with these condition, even he feels much healthier than eveer before while he was still able to use the bike. He is thinking of selling his bike and then buy earring for his wife who uses only one earring. Later, he was carrying out his intention also unbeknownst to his wife because he wanted to give a gift to his wife on his birthday.

Birthday arrived, When on the morning they were about to start the activity of each, his wife ran to get something that has been wrapped neatly to give to her husband. He congratulated the birthday and asked her husband to unwarp that. What a surprise Mr. Mamat, because he found saddle in the package which is nothing but a result of the sale of his wife's earrings. Then, he reached in the pocket a small package taht turned out to containing earrings that result sales of the bicycle.

Mr. Mamat had a commendable heart for his wife happiness by giving gift even though he had to give up something very valuable property. On the same occasion Mrs. Mamat also has a commendable conscience because a gave up a earring for her husband's happiness. However, the goodness of that two noble hearts which ultimately there is no benefit because there is no intensive communication about their intent and willingness of each.


The depth of the ocean can be expected, but anyone knows inside the heart.
Communication is one technique to know inside one's heart.

Ants, Spiders and Bees

Ants, Spiders and Bees
Ants gather food little by little without ceasing. That said, these little animals can gather food for many years while his age not more than one year. Willingness of so great that he tried and often succeeded in taking something that is bigger than the body, even if something is not useful to him.
Spiders have the most fragile nest, it's not a safe place, anything that caught there will be ambushed. Never mind the insect which are not similar, the males also ambushed after the completion making sex to be destroyed by the females. The eggs that hatched can jostle each other to annhilate.

As for bees, have an instinct to build nests hexagon-shaped instead of pentagon or square to avoid waste in the location. He eats the flowers and did not like the ants that accumulate-pilling food, bees processing the food and their processed products are wax and honey is very beneficial. They are very disciplined, knowing the division of labor and all the useless of the nest removal. Bees did not interfere unless there is a disturbing, even the sting can be a medicine.

The attitude of human life is often likened to the various types of animals.
Animals = Human - Conscience
Obviously there are a cultured human ants the human species that raise and accumulate knowledge (without process) and material (without costumized to their needs). Ants culture is a culture hoard that nurtured with culture "while there is a chance".
Wonder how much the number of spiders that exist on the earth (perhaps also including ours), that is no longer need to think what, where and when he ate, but thay think "who will they make prey".
Bees do not eat but the good, does not produce except that useful / helpful and did not damage something around it.
can we be like bees, not ants especially spiders...???

Replace the Windows XP Display When Copying

Replace the Windows XP Display When Copying

Sorry in advande, Iwas confused for the title of this article, but the point is that.... hehehe. I write this article about the "hack" windows XP (only in XP) display when we copying files or folders.
Now depending on how far our imagination and daring to try with this software. Ok, first i give simple steps...


  1. Download the file here (password: rumah-dagip.blogspot.com)
  2. Extract the file
  3. Double click ResHacker.exe
  4. Click "file" ==> shell32.dll (second from under, if not present, try find in Drive C:==>Windows==>system32==>shell32.dll)
  5. After that, on the left column find "Dialog"==>1020==>1033
  6. After steps 5, on right column will appear the words more or less like this :

1020 DIALOGEX 20, 20, 263, 104
STYLE DS_FIXEDSYS | DS_MODALFRAME | DS_NOIDLEMSG | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU
EXSTYLE WS_EX_APPWINDOW
CAPTION ""
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
FONT 8, "MS SHELL DLG"
{
   CONTROL "Cancel", 2, BUTTON, BS_DEFPUSHBUTTON | WS_CHILD | WS_VISIBLE, 198, 87, 58, 14 
   CONTROL "", 102, STATIC, SS_LEFT | SS_NOPREFIX | WS_CHILD | WS_VISIBLE, 68, 40, 155, 10 
   CONTROL "", 103, STATIC, SS_LEFT | SS_NOPREFIX | WS_CHILD | WS_VISIBLE, 68, 30, 155, 10 
   CONTROL "", 104, "msctls_progress32", PBS_SMOOTH | WS_CHILD | WS_VISIBLE, 30, 65, 224, 8 
   CONTROL "", 105, STATIC, SS_LEFT | SS_NOPREFIX | WS_CHILD | WS_VISIBLE, 68, 50, 155, 10 
   CONTROL "", 107, STATIC, SS_GRAYFRAME | WS_CHILD | WS_VISIBLE, 0, 83, 263, 1 
   CONTROL "Location:", 0, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 8, 30, 31, 10 
   CONTROL "File name:", 0, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 8, 40, 33, 10 
   CONTROL "Time remaining:", 0, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 8, 50, 53, 10 
   CONTROL "", 106, "SysAnimate32", ACS_TRANSPARENT | ACS_AUTOPLAY | ACS_TIMER | WS_CHILD | WS_VISIBLE, 65532, 0, 267, 25 
   CONTROL 8000, 0, STATIC, SS_ICON | WS_CHILD | WS_VISIBLE | WS_GROUP, 8, 63, 21, 20 
}

Above is the original data for the windows went the operating system to copy files or moving files. Following examples of modification that I did :

1020 DIALOGEX 20, 20, 263, 114
STYLE DS_FIXEDSYS | DS_MODALFRAME | DS_NOIDLEMSG | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU
EXSTYLE WS_EX_APPWINDOW
CAPTION ""
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
FONT 8, "MS SHELL DLG"
{
   CONTROL "Cancel", 2, BUTTON, BS_DEFPUSHBUTTON | WS_CHILD | WS_VISIBLE, 198, 97, 58, 14 
   CONTROL "", 102, STATIC, SS_LEFT | SS_NOPREFIX | WS_CHILD | WS_VISIBLE, 68, 50, 155, 10 
   CONTROL "", 103, STATIC, SS_LEFT | SS_NOPREFIX | WS_CHILD | WS_VISIBLE, 68, 40, 155, 10 
   CONTROL "", 104, "msctls_progress32", PBS_SMOOTH | WS_CHILD | WS_VISIBLE, 30, 75, 224, 8 
   CONTROL "", 105, STATIC, SS_LEFT | SS_NOPREFIX | WS_CHILD | WS_VISIBLE, 68, 60, 155, 10 
   CONTROL "", 107, STATIC, SS_GRAYFRAME | WS_CHILD | WS_VISIBLE, 0, 93, 263, 1 
   CONTROL "Sabar ya..... Sebentar aja kok........ {Damas Gigih Pratama}", 0, STATIC, SS_CENTER | WS_CHILD | WS_VISIBLE | WS_GROUP, 0, 30, 263, 10 
   CONTROL "Location:", 0, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 8, 40, 31, 10 
   CONTROL "File name:", 0, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 8, 50, 33, 10 
   CONTROL "Time remaining:", 0, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 8, 60, 53, 10 
   CONTROL "", 106, "SysAnimate32", ACS_TRANSPARENT | ACS_AUTOPLAY | ACS_TIMER | WS_CHILD | WS_VISIBLE, 65532, 0, 267, 25 
   CONTROL 8000, 0, STATIC, SS_ICON | WS_CHILD | WS_VISIBLE | WS_GROUP, 8, 73, 21, 20 
}

The green font is the modification that I did, and the result like this :



Try to make your own, don't forget to share if you have something..

Download :
Password : rumah-dagip.blogspot.com
2. Winrar

KIS plus resetter

KIS plus resetter

This antivirus that I like, besides light, is also easy to use. Kaspersky antivirus including world-call lined the many users and has been trusted to keep its value in the computer / laptop users.

This time I will provide a little oportunity for my friends who want to try this Antivirus. But when we use the trial version, we are only given oportunity to enjoy of this AV 30 days, therefore I include resetter so that we can re-activation if our KIS trial periode have been exhausted.
The resetter very easy to use, already include in the file.
Lets try this one.

Here to download :
KIS11.0.2.556
Resetter

Wisdom Story (All in One)

Wisdom Story (All In One)
Sudah beberapa lama saya share tentang Wisdom Story, mulai part 1 sampai part 7. jadi sudah sekitar 21 File MP3 yang saya share. Kemarin waktu asik jalan-jalan ke blog-blog orang, la kok dapat sesuatu yang buat saya kaget. ternyata Wisdom Story yang saya share sudah pernah di share sama bang Oga di webnya.... untuk menebus kesalahan dan agar g dianggap sebagai tukang duplikat, saya memutuskan merangkum semua file wisdom story jadi satu posting artikel (mungkin akan sering di update, kl saya dapat file serupa). terimakasih sebelumnya buat bang Ogi, beberapa file saya ambil dari web abang, dan saya upload ulang. heheh.... bagi teman-teman yang ingin download, bisa dari web saya atau webnya bang ogi, akan saya sertakan link aktif di bawah artikel ini nanti. Happy Download... (Bila ada link yang broken, silahkan kasi komentar...)

  1. Tuhan dan Tukang Cukur
  2. Tempayan Retak
  3. Anjing Kecil
  4. Persaudaraan
  5. Kura-kura Dan Kalajengking
  6. Jessica
  7. Duka Diperjalanan
  8. Mata Cinta Kopi Asin
  9. Memaafkan
  10. Cinta Dan Waktu
  11. Kearifan Segenggam Garam
  12. Kisah Petani Yang Bijak
  13. Refleksi Diri
  14. Roda
  15. Sang Juara
  16. Pertunjukan Terkhir
  17. Sandal Kulit Sang Raja
  18. Hidup Adalah Pilihan
  19. Belajar sabar
  20. Batu Besar
  21. Paku Yang Meninggalkan Bekas
  22. Cangkir Cantik
  23. Jendela Rumah Sakit
  24. Mencoba Sesuatu Yang Positif
  25. Mengasah Diri
  26. Ibunda Mengapa Kau Menangis
  27. Cintailah Cinta
  28. Kisah Seekor Belalang
  29. Mawar Untuk Ibu
  30. Menolong Bukanlah Suatu Pekerjaan
  31. Keledai Yang Cerdik
  32. Tangan Ibu Yang Gemetar
  33. Baju-Baju Yang Menipu
  34. Rautan Meja Kayu
  35. Cinta Di Senja Pernikahan
  36. Penyelesaian Yang Tak Berujung
  37. Ucapan Cinta Yang Terakhir
  38. Si Kecil Cassie
  39. Kekuatan Tanpa Kekerasan
  40. Belajar Dari Seekor Cicak
  41. Kelinci Sakti
  42. Burung Pipit
  43. Serbuk Kayu dan Arloji
  44. Mensyukuri Nikmat
  45. Mulailah Memberi
  46. Tidak Ada Yang Sempurna
  47. Pembeli Istimewa
  48. Harga Waktu Seorang Ayah
  49. Racun Yang Menyembuhkan
  50. Jembatan Kasih Sayang
  51. Kisah Sang Tikus
  52. Kelalaian Seorang Tukang Kayu
  53. Lukisan Kedamaian
  54. Jangan Mudah Percaya Pada Orang Lain
  55. Kecantikan Sesungguhnya
  56. Kelinci Penakut
  57. Arti Didikan Keras Seorang Ayah
  58. Catatan Kehidupan
  59. Cinta, Kesuksesan dan Kekayaan
  60. Daftar Kekurangan
  61. Kita Hanya Butuh Tempat Yang Kecil
  62. Penantian Panjang Seorang Ibu
  63. Emas Dan Permata
  64. Semua Pasti Berlalu
  65. Bunyi Yang Berarti
  66. Dibelakang Layar
  67. Pesankan Saya Tempat Dineraka
  68. Batu Kecil
  69. Cara British Airway Menghadapi Rasialisme
  70. Goressan Luka 1
  71. Goresan Luka 2
  72. Buah Kesabaran Dan Kesedihan
  73. Cinta Dan Perkawinan
  74. Ayam Dan Sapi
  75. Jangan Menyimpan Dendam
  76. Kesalahan Yang Harus Dibayar Mahal
  77. Katak KEcil Yang Tuli
  78. Jalur Kereta Api
  79. Hati Yang Sempurna
  80. Kematian
  81. Cinta Dan Kehangatan
  82. Keraguan
  83. Belaian Yang Lembut
  84. Cerita Seorang Buruh
  85. Panah
  86. Komentator
  87. Hidup Yang Bermakna
  88. Mengapa Berteriak
  89. Nama Baik dan Status
  90. Kupu-kupu
  91. Emas Dan Permata
  92. Pujian
  93. 100 Ekor Burung Pipit
  94. Tak Sesulit Yang anda Bayangkan
  95. Ikan Kecil dan Air
  96. Apa Yang Kau Lihat
  97. Maafkan Dan Lupakan
  98. Dalam Hidup Jangan Berlari Terlalu Cepat
Beberapa file belum saya beri link, karena belum sempat saya upload, sesegera mungkin akan saya upload dan saya update artikel ini. Selamat menikmati.

Beberapa file saya dapatkan dari : http://ogainahcydna.blogspot.com/2010/02/mp3-resonansi-jiwa.html sebagian lagi saya dapat dari teman saya Nur Ahmad. Thanks 4 you all....

Bagaimana Mereka Shalat Subuh???

Bagaimana Mereka Shalat Subuh
Seorang da’i duduk dan mencaeritakan pengalaman dakwahnya di hadapan seorang syaikh dan sekumpulan tentara Cina yang ikut berperang dalam perang teluk III. Dia berkata:
Para tentara itu ikut dalam operasi dukungan di utara kerajaan Saudi Arabia. Dan menjadi kewajiban bagi kami sebagai da’i kepada Allah SWT untuk mendakwahi mereka kepada Islam, mengeluarkan mereka dari kegelapan syirik, kegelapan penyembahan kepada Budha, dan konfusisme, sertaa berhala-berhala lain kepada penyembahan kepada Allah yang Maha Perkasa lagi Maha Mengetahui.
Allah SWT telah memberikan taufik kepada kami dalam tugas kami, lalu masuk islamlah mereka dengan jumlah yang lumayan. Maka kamipun terus mengajari mereka rukun-rukun islam, kewajiban-kewajibanya, lalu merekapun mulai menunaikan shalat pada waktu-waktunya jauh dari komandan dan atasan-atasan mereka.
Akan tetapi permasalahan yang mereka hadapi adalah dalam shalat subuh, saat komandan mereka mengetahui berkumpulnya mereka dalam satu kemah untuk saling bergantian begadang agar tidak tertinggal shalat subuh, maka mereka memisahkan diri mereka di antara kemah-kemah.
Maka masing-masing di antara mereka membawa beker, akan tetapi beker merekapun dikeluarkan. Setiap kali mereka menemukan cara baru untuk membangunkan mereka sebelum fajar untuk shalat subuh pada waktunya, para komandan itupun memerangi mereka, menutup segala jendela dan pintu mereka.
Tiba-tiba mereka menemukan cara baru untuk bangun.
Masing-masing memutuskan untuk meminum sejumlah besar air sebulum tidur agar mereka bisa terbangun untuk pergi kekamar mandi, termasuk untuk melihat ke jam mereka, agar mengetahui berapa jam lagi waktu shalat subuh. Jika dekat masanya, mereka menunggu dan shalat, bila tidak, maka mereka minum sejumlah air yang diperhatikan jumlahnya.
Bersamaan dengan berlangsungnya percobaan berkali-kali, mereka bisa menghitung berapa ukuran air yang bisa menjadikan mereka bangun pada waktu yang hampir dekat dengan waktu fajar. Kemudian jadilah masing-masing diantara mereka menunaikan shalat subuh pada waktunya.
Di saat itulah sang da’i melihat kepada wajah syaikh, ternyata kedua matanya tengah mengeluarkan air mata.
Mereka adalah orang yang baru masuk islam, namun kecintaan di hati mereka mencapai tingkatan seperti itu, mengapa??
Karena mereka mengetahui kejahiliyahan dan kerusakaannya, lebih dari itu, mereka mengetahui islam dan kebahagiaannya, lalu mereka berpegang teguh padanya.
Maka di manakah kita dari mereka????

Alexa untuk blogmu

Alexa untuk blogmu
Setelah muter-muter nyari cara buat ningkatin peringkat dari Alexa, akhirnya dapet juga. Dari beberapa blog yang udah aku buka-buka, kira-kira seperti ini tips yang diberikan mereka.
  1. Buka web alexa trus pilih tab site tools kemudian di bawah da tulisan "Claim Your Site", trus ikutin langkah-langkahnya mpek kelar.
  2. Selesai yang pertama, lanjut ke pemasangan widgets alexa, disebelah "Claim Your Site" tadi, trus pasang di blog kamu.
  3. Instal toolbar alexa di browser kamu, kata para tetua sih ni bisa ningkatin page rank kita soalnya tiap kita buka web/blog kita dengan browser yang udah kepasang alexa toolbar, point kita akan di hitung ma si alexa tadi. :P
  4. Buat tulisan yang terkait dengan alexa, baik pa tu alexa, cara pasangnya, keuntungan to kerugiannya dan lain-lain yang berhubungan dengan alexa. katanya sih da yang mpek naik 200.000 habis nulis artikel gituan.
Tu sebagian (semua yang aku tahu) tentang cara naikin rank blogmu di mata alexa. Tapi aku yakin masih banyak lagi cara yang bisa dilakukan untuk mempopulerkan blog/web kita. Bila ada yang mau berkomentar sembari meninggalkan link, saya persilahkan.

AVG Internet Security 2012

AVG Internet Security 2012
Sebelumnya saya pernah share tentang KIS 2011 plus resetter yang udah banyak percaya dengan ketangguhannya. na sekarang saya mau share antivirus yang juga merupakan saingan dari KIS tadi. yaitu AVG Internet Security 2012.

banyak yang bilang kalo AV satu ini bikin laptop berat alias lemot, tapi selama saya menggunakan AV ini, saya tidak merasakan gejala yang dibilang orang-orang (laptop saya juga jadul dengan RAM hanya 1Gb + prosesor pentium 4).

Yang saya suka dari AV ini yaitu "saya tidak perlu membayar untuk mendapatkannya" he..he... di artikel ini saya juga sertakan key untuk aktivasi AV ini (valid sampai 2018).

buat temen-temen yang bersedia dan ingin mencoba menggunakan AV ini, silahkan langsung download di link yang aku kasi di bawah. mohon komen dan kritiknya y....

di bawah ini saya lampirkan kelebihan dari AV ini :

Protection that actually speeds up your PC
Some security products slow down your PC; AVG Internet Security 2012 speeds it up, by accelerating the download of content-rich files. Faster system start-up and support for Flash and HD video means you can enjoy online video like YouTube faster than ever before.AVG AcceleratorAVG System Tools.

Block hackers and stop identity thieves
More than just Antivirus, AVG Internet Security protects you when shopping and banking, keeping your identity safe. The AVG Firewall prevents inbound and outbound attacks, while Identity Protection secures personal content you enter online.AVG Enhanced FirewallAVG Identity Protection.

Award winning Anti-Virus that just works
Antivirus protection that automatically updates to protect you from continually evolving threats. As hackers develop new techniques, AVG’s research labs are constantly processing web data to provide new defenses to keep you automatically protected.Anti-Virus, Anti-Malware, Anti-SpywareAVG Protective Cloud TechnologyAVG Community Protection Network.

Gaming and surfing without interruptions
Get on with your surfing and gaming without interference. Scans operate when you are away from your PC, and it also knows when you are gaming and ensures that the security operates in the background only, leaving you free to play.AVG Smart ScanningGame ModeAuto-Fix.

Keep messaging free of spam, worms and scams
Keep your inbox clear of spam and also protect it from phishing scams along with the hidden viruses that they contain. AVG will also protect you when exchanging files through popular instant messaging like MSN and Yahoo.AVG Anti-SpamAVG Online Shield™AVG Email Scanner.

Surf and search the web safely
You want to search and surf, but you don’t ever want to go to any infected websites. AVG helps you out by clearly alerting you to threats and keeping you clear of them.LinkScanner® Search-ShieldLinkScanner® Surf-Shield.

Share your life on Facebook, not viruses
With AVG protecting your system, you can chat and message your friends on Facebook and other social networks in the knowledge that each web page and link is checked for safety. You won’t pick up a malicious link from your friends - and you won’t send one either!AVG Social Networking Protection.

Expert support from techies that care
AVG understands the need to stay safely connected to the web no matter your geographical location or time of day - our mission is to provide ongoing peace of mind on a 24/7 basis.AVG SupportAVG Advisor.

Download : AVG Internet Security 2012
List Key :
                8MEH-RXYFD-JUV72-8922R-FTBZ6-QEMBR-ACED
                8MEH-RAJC2-O3P77-KRRQA-H3SLN-REMBR-ACED
                8MEH-RXYFD-JUV72-8922R-FTBZ6-QEMBR-ACED

Wisdom Story (Part 7)

Wisdom Story (Part 7)

Lumayan lama g lanjut update Wisdom Story, terakhir sampai part 6, berarti sudah ada 21 file MP3 yang aku share, semoga bisa nambah semangat hidup kita.
1. Cangkir Cantik
2. Jendela Rumah Sakit
3. Mencoba Sesuatu Yang Postif

Moga kita jadi pribadi yang lebih baik....

Dukung Komodo Kita

Dukung Komodo Kita

Siapa yang g tau komodo? hewan besar melata dan masuk spesies kadal yang hanya ada di Indonesia, tepatnya di pulau komodo (Nusa Tenggara) (wikipedia). Baru-baru ini masuk nominasi keajaiban dunia baru. ni aku kasi kutipannya.
Adalah New 7 Wonders Foundation ( Yayasan Pendiri 7 Keajaiban Dunia Baru ) yang berbasis di Zurich, Switzerland, didirikan pada tahun 2000, dengan Bernard Weber (kebangsaan Kanada-Swiss) sebagai pendiri sekaligus presiden kampanye N7WS. Ide Bernard untuk menggalang masyarakat global lebih berperan aktif dalam dunia maya direalisasikan dengan menjelajahi antero dunia menggalang kampanye pemungutan suara, untuk memilih tempat yang memiliki nilai historis budaya yang tinggi hingga lebih 2000 tahun yang lampau dan ditopang dengan keindahan pesona alam yang menakjubkan, bahkan di luar batas nalar otak manusia. Selama 7 tahun,voting dilakukan secara global di seluruh penduduk dunia melalui dunia maya, dengan supervisi para ahli di bidang terkait. Dengan menggenggam 100 juta suara, hasil pertama dukungan suara global diumumkan pada deklarasi N7WS diresmikan di Lisbon, Portugal pada tanggal 07-07-2007, dihadapan 50.000 penonton dan jutaan pemirsa televisi seluruh dunia. Pada kesempatan ini ditetapkan 7 Keajaiban Dunia Buatan Manusia hasil polling secara acak, yakni Tembok Besar China, Petra, Chichen Itza, Patung Kristus Penebus, Colosseum, Machu Picchu dan Taj Mahal.
(pilih komodo)
Na, berhubung ni sistemnya poling, jadi perlu banyak partisipasi dari kita-kita sebagai bangsaa Indonesia (yang dikenal punya banyak penduduk) untuk mengangkat komodo sebagai Keajaiban Dunia. buat temen-temen yang mau ikutan berpartisipasi, bisa dengan cara berikut ini :
ketik KOMODO trus kirim ke 9818 (Rp. 1/sms all operator)
ayu terus dukung bangsa kita sendiri, biar g terus-terusan kalah ma bangsa lainnya....
Web resmi : pilihkomodo.com

Daemon Tools Lite

Daemon Tools Lite
Buat temen-temen yang punya game trus maennya harus pake CD/DVD, pasti kesel. Bolak-balik masukin CD/DVD ke laptop/komputer. belum lagi kemungkinan rusaknya tu CD room..... Na, buat ngatasi masalah ni, aku share freeware yang sangat bantu banget (aku juga pakai ni software). Nama softwarenya Daemon Tools Lite. Sebenarnya ada fersi berbayarnya juga, tapi yang free uda cukup lah.
Dengan software ini, kalian bisa buat Cd/DVD image, maksutnya isi tu CD/DVD di copy total ke harddisk (bukan di copy biasa, tapi ngopinya juga pake ni software). Hasilnya nanti bisa dibuka dan dianggap tu CD/DVD masuk ke CD room ma komp kita, jadi pas buat maen game tadi, kita g perlu masukin CD/DVD kita, cukup buka image yang tadi kita buat tu.... Enak bukan....
buat yang masih bingung, bisa komen di bawah, ntar aku kasi pencerahan.....

(kalau link rusak, tolong beritahu saya)
Download : Daemon Tools Lite V. 4.12.1

Seperti Anak Kucing

Seperti Anak Kucing
Sering kita dengar berita baik di TV, koran atau di radio, ada anak yang bingung nyari ayahnya, atau ada istri yang bunuh diri karena ditinggal suaminya. Sering aku g habis pikir sama alasan mereka mau dan mampu melakukan itu. sering juga bahkan sampai g tahu "hidup" yang sebenarnya itu seperti apa, saking sibuknya dia mencari sesuatu yang udah ninggalin dia, yang udah g mikirin dia, yang mungkin udah lupa ma dia.
Contohnya j, pernah aku ketemu seorang nenek-nenek, waktu itu di bus waktu aku mau pulang. si nenek tu cerita, kalo dia dah 7 taon lebih bolak-balik malang-probolinggo (hampir tiap minggu) untuk minta adiknya pulang ke rumah mereka yang di probolinggo, alasannya biar dia ada temennya di rumah. Sampek akhirnya hari itu (hari si nenek ketemu aku) dia di bentak sama si adik. padahal, si adik juga masih sering ke rumah dia di probolinggo tu, y meski hanya tiap hari raya j.
Coba kita liat anak kucing, pernah liat dia bingung nyari ayahnya? pernah dia protes ke sang ibu soalnya sang ibu kawinnya ma kucing kampung, padahal si ibu kucing persia misalkan? pernah dia protes kenapa bulu-bulunya berwarna hitam? ato coklat? bukannya putih atau kuning emas gitu? g da.....
Si anak kucing tau, mempermasalahkan itu hanya akan menambah beban hidupnya, sedangkan dia sendiri punya banyak hal lain yang lebih baik untuk dilakukan, dibandingkan untuk mempersoalkan itu. dia lebih baik bermain dengan saudara-saudaranya, dia lebih asik berburu tikus atau ngejar anak kelinci, dia lebih asik menjelajahi lingkungan tempat hidupnya, dia terlihat lebih "hidup" dibandingkan manusia yang mengalami hal yang sama.
Intinya, kapan kita  bisa membuat hidup kita benar-benar bermakna dan memang perlu kita jalani. Kapan kita bisa membuat orang lain yang hidup di dunia kita, bukan kita yang numpang hidup di dunia orang lain.

Satu Hati Beda Tujuan

Satu Hati Beda Tujuan
Pak Mamat, hanyalah seorang petani desa dengan sepetak sawah dan dua ekor sapi. Hari-harinya ia pergunakan untuk mengurus sawahnya dan mencarikan rumput bagi sapinya. Untuk melakukan kegiatan-kegiatan tersebut, ia memiliki sebuah sepeda tua untuk dinaiki menuju sawahnya dan hutan desa tempat ia menyabit rumput. Namun, akhir-akhir ini, ia terkendala untuk mencapai sawahnya lebih pagi guna menyabit rumput lebih cepat karena sadel sepedanya rusak dan tidak mungkin untuk dipakai lagi. Ia memilih berjalan kaki walaupun energi yang dikeluarkan lebih besarkarena harus menempuh perjalanan yang jauh dan mengangkat rumput yang cukup berat.

Kondisi ini sebenarnya telah diketahui oleh Ibu Mamat, tetapi apa daya ia tidak dapat membantu suaminya. Hingga suatu hari, ia teringat akan giwangnya yang tinggal sebelah. "Mengapa saya tidak membantu suami saya dengan menjual giwang yang tinggal sebelah ini kemudian membelikan sadel untuk suami saya?"

Ia melaksanakan niatnya tersebut tanpa sepengetahuan suaminya karena ia ingin memberikan hadiah tersebut sebagai kejutan pada hari ulang tahun suaminya.

Di lain pihak, suaminya yang setiap hari berjalan kaki untuk menuju sawah dan hutan mulai merasa nyaman dengan kondisi tersebut, bahkan ia merasa jauh lebih sehat dibandingkan sebelumnya saat ia masih bisa menggunakan sepedanya. Ia berpikir untuk menjual sepedanya kemudian membelikan giwang bagi istrinya yang hanya menggunakan satu giwang. Kemudian, ia melaksanakan niatnya juga tanpa sepengetahuan istrinya karena ingin memberikan hadiah kepda istrinya pada hari ulang tahunnya sendiri.

Hari ulang tahun pun tiba. Ketika pada pagi hari saat mereka hendak memulai aktivitas masing-masing, istrinya berlari mengambil sesuatu yang telah dibungkusnya dengan rapi untuk diberikan kepada suaminya. Ia mengucapkan selamat hari ulang tahun dan meminta suaminya untuk membuka bungkusan tersebut. Alangkah terkejut Pak Mamat karena ia mendapatkan sadel di dalam bungkusan tersebut yang tak lain merupakan hasil penjualan giwang sang istri. Kemudian, ia meraih bungkusan kecil di sakunya yang ternyata berisi giwang hasil penjualan sepedanya.

Pak Mamat memiliki hati terpuji untuk membahagiakan istrinya dengan memberikan hadiah walaupun ia harus merelakan sesuatu yang sangat berharga miliknya. Pada kesempatan yang sama Bu Mamat juga memiliki nurani yang terpuji karena merelakan sebuah giwangnya bagi kebahagiaan suaminya. Namun, Kebaikan dua hati yang mulia tersebut akhirnya tidak ada manfaatnya karena tidak ada komunikasi yang intensif tentang niat dan kemauan mereka masing-masing.


Dalamnya lautan dapat diduga, tetapi dalamnya hati siapa yang mengetahuinya. Komunikasi adalah salah satu teknik mengetahui dalamnya hati seseorang.

Wisdom Story (Part 6)

Wisdom Story (Part 6)
Lanjut sodara..... tambah koleksinya.... bisa langsung do DL di ink di bawah tu.....
BTW, perlu komen ni, buat masukkan ni blog... :P

1. Belajar Sabar
2. Batu Besar
3. Paku Yang Meninggalkan Bekas

kalo ada link yang broken, kabari gan, ntar aku upload ulang....

Google Chrome 16.0.904.0 Beta

Google Chrome 16.0.904.0 Beta
Setelah sebelumnya saya share tentang Mozilla Firefox, kali ini saya share browser pesaing Mozilla, yaitu Google Chrome. Banyak pihak mengklaim Google Chrome lebih ringan daripada Mozilla. Menurut pengalaman saya pribadi, Chrome memang lebih ringan dan stabil, terutama bagi saya yang menggunakan laptop dengan spesifikasi yang tidak seberapa.
Buat kalian para "surfer" di dunia maya, saya sangat merekomendasikan browser satu ini, namun tetap saja, namanya selera g bisa di paksa.... hehe... oke dah, silahkan langsung j download softwarenya....

(kalau link rusak, tolong beri tahu saya)
Download : Google Chrome 16.0.904.0 Beta

Mozilla Firefox 7.0.1

Bagi para pengguna Mozilla Firefork, sekarang adalah saat yang paling ditunggu-tunggu. Mozilla akhirnya me release update browser  terbarunya. versi 7.0.1. tidak diragukan lagi, browser satu ini memang sangat digemari oleh banyak "penjelajah" internet. pastinya, selain perbaikan dari sisi bug pada versi sebelumnya, di versi ini juga ada peningkatan performa baik ketika digunakan untuk menjelajah maupun dari sisi penggunaan RAM.

Langsung saja ke TKP, kalian bisa download browser baru ini di link yang sudah aku sediakan.

(tolong beritahu bila link rusak)
Download : Mozilla Firefork 7.0.1

Wisdon Story (Part 5)

Wisdon Story (Part 5)
Lanjutan update koleksi cerita-cerita bijak, yang (buat aku) bisa membuka mata kita lebih lebar dalam memandang dunia. Langsung aja do Download buat ngelengkapi koleksinya....

1. Pertunjukkan terakhir
2. Sandal Kulit Sang Raja
3. Hidup Adalah Pilihan

jangan lupa jempolnya y.... :)

Edit Tampilan Windows Sewaktu Copy File

Edit Tampilan Windows Sewaktu Copy File
Maap sebelumnya, aku bingung buat judul ni artikel, tapi intinya gitu dah.... hehehe. artikel yang mau aku tulis ni tentang "hack" tampilan windows sewaktu kita mengopy file/folder.

sekarang tergantung seberapa jauh kita berimajinasi dan berani mencoba ni software. OK, aku kasi langkah-langkahnya yang sederhana j dolo.....

1. download filenya disini (passwordnya : rumah-dagip.blogspot.com)
2. ekstrak filenya
3. klik 2 kali ResHacker.exe 
4. klik file ==> shell32.dll (nmr 2 dari bawah. kalo g da, bisa cari di Windows==>system32==>shell32.dll)
5. trus dikolom sebelah kiri cari Dialog==>1020==>1033
6. ntar di kolom kanan bakalan muncul tulisan kurang lebih kayak gini :

1020 DIALOGEX 20, 20, 263, 104
STYLE DS_FIXEDSYS | DS_MODALFRAME | DS_NOIDLEMSG | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU
EXSTYLE WS_EX_APPWINDOW
CAPTION ""
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
FONT 8, "MS SHELL DLG"
{
   CONTROL "Cancel", 2, BUTTON, BS_DEFPUSHBUTTON | WS_CHILD | WS_VISIBLE, 198, 87, 58, 14 
   CONTROL "", 102, STATIC, SS_LEFT | SS_NOPREFIX | WS_CHILD | WS_VISIBLE, 68, 40, 155, 10 
   CONTROL "", 103, STATIC, SS_LEFT | SS_NOPREFIX | WS_CHILD | WS_VISIBLE, 68, 30, 155, 10 
   CONTROL "", 104, "msctls_progress32", PBS_SMOOTH | WS_CHILD | WS_VISIBLE, 30, 65, 224, 8 
   CONTROL "", 105, STATIC, SS_LEFT | SS_NOPREFIX | WS_CHILD | WS_VISIBLE, 68, 50, 155, 10 
   CONTROL "", 107, STATIC, SS_GRAYFRAME | WS_CHILD | WS_VISIBLE, 0, 83, 263, 1 
   CONTROL "Location:", 0, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 8, 30, 31, 10 
   CONTROL "File name:", 0, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 8, 40, 33, 10 
   CONTROL "Time remaining:", 0, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 8, 50, 53, 10 
   CONTROL "", 106, "SysAnimate32", ACS_TRANSPARENT | ACS_AUTOPLAY | ACS_TIMER | WS_CHILD | WS_VISIBLE, 65532, 0, 267, 25 
   CONTROL 8000, 0, STATIC, SS_ICON | WS_CHILD | WS_VISIBLE | WS_GROUP, 8, 63, 21, 20 
}

7. diatas adalah data asli untuk jendela ketika windows melakukan copy file maupun moving file. dibawah ini contoh hasil modifikasi yang aku lakukan :

1020 DIALOGEX 20, 20, 263, 114
STYLE DS_FIXEDSYS | DS_MODALFRAME | DS_NOIDLEMSG | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU
EXSTYLE WS_EX_APPWINDOW
CAPTION ""
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
FONT 8, "MS SHELL DLG"
{
   CONTROL "Cancel", 2, BUTTON, BS_DEFPUSHBUTTON | WS_CHILD | WS_VISIBLE, 198, 97, 58, 14 
   CONTROL "", 102, STATIC, SS_LEFT | SS_NOPREFIX | WS_CHILD | WS_VISIBLE, 68, 50, 155, 10 
   CONTROL "", 103, STATIC, SS_LEFT | SS_NOPREFIX | WS_CHILD | WS_VISIBLE, 68, 40, 155, 10 
   CONTROL "", 104, "msctls_progress32", PBS_SMOOTH | WS_CHILD | WS_VISIBLE, 30, 75, 224, 8 
   CONTROL "", 105, STATIC, SS_LEFT | SS_NOPREFIX | WS_CHILD | WS_VISIBLE, 68, 60, 155, 10 
   CONTROL "", 107, STATIC, SS_GRAYFRAME | WS_CHILD | WS_VISIBLE, 0, 93, 263, 1 
   CONTROL "Sabar ya..... Sebentar aja kok........ {Damas Gigih Pratama}", 0, STATIC, SS_CENTER | WS_CHILD | WS_VISIBLE | WS_GROUP, 0, 30, 263, 10 
   CONTROL "Location:", 0, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 8, 40, 31, 10 
   CONTROL "File name:", 0, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 8, 50, 33, 10 
   CONTROL "Time remaining:", 0, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 8, 60, 53, 10 
   CONTROL "", 106, "SysAnimate32", ACS_TRANSPARENT | ACS_AUTOPLAY | ACS_TIMER | WS_CHILD | WS_VISIBLE, 65532, 0, 267, 25 
   CONTROL 8000, 0, STATIC, SS_ICON | WS_CHILD | WS_VISIBLE | WS_GROUP, 8, 73, 21, 20 
}

8. yang aku beri warna hijau adalah perubaha yang aku lakukan.
hasilnya seperti ini :


silahkan mencoba, jangan lupa share ilmunya... oke....
Semangat bro...... :P

Download :
Password : rumah-dagip.blogspot.com
 
Copyright © 2011. My World Is Yours - All Rights Reserved
Template Modify by My World Is Yours
Proudly powered by Blogger