Postingan

Menampilkan postingan dari 2010

how to remove ubuntu on dual boot with Windows XP

I used to use 2 OS on my laptop, ubuntu and Windows XP. But now there's only Windows XP on it. Here's what i did to remove ubuntu: First, remove ubuntu from boot option: boot using Windows XP CD choose "Repair" enter your installation number enter your admin password at the command prompt, type "fixmbr" (without quotation), then enter. Windows will overwrite the MBR. reboot. You'll don't have to choose OS again. Ok, ubuntu has been remove from boot option. Next is re-formatting the ubuntu partition into NTFS or FAT32, so Windows XP can read the partition: open "Administrative Tools" from Control Panel. open "Computer Management". choose "Storage", then choose "Disk Management". you'll see all the partition of the disk (on right area). right-click on the ubuntu partition, the do the re-formatting. Reboot your computer, just to make sure all things work well. Based on my experience, it

buy your lottery ticket

I just watched eat, pray, love last monday. Well, the movie fail to impressed me. But there's a part of the movie that really, really interesting to me. It's the Italian joke part. There's a wonderful old Italian joke about a poor man who goes to church every day and prays before the statue of a great saint, begging, "Dear saint–please, please, please... give me the grace to win the lottery." This lament goes on for months. Finally the exasperated statue comes to life, looks down at the begging man and says in weary disgust, "My son–please, please, please... buy a ticket." LOL, damn it's so true! This wonderful joke simply remind me that i have to do something to get what i want. I have to take the first step if i wanna go thousand miles. I have to wake up if i wanna make my dream happen. Do you want something to be given to you? go ask it. Do you wanna find something? go seek it. Do you want the door to be opened to you? go knock it. anyway

jQuery and DWR conflict

pernah pake jQuery dan DWR di satu halaman web yg sama? yah, ternyata mreka berdua tdk terlalu berteman baik... ada konflik diantara mereka yg bikin ga bisa jalan bareng di satu halaman. Katanya sih $ nya si jQuery yg bikin konflik sama DWR. Nah supaya mereka bisa jalan bareng, coba contoh code ini: <script src="/mypath/jquery/jquery.js" type="text/javascript"></script> <script type="text/javascript"> var jq = jQuery.noConflict(); </script> <script src="/mypath/dwr/engine.js" type="text/javascript"></script> <script src="/mypath/dwr/util.js" type="text/javascript"></script> <script type="text/javascript"> jq(document).ready(function() { //this is your jQuery function }); </script> jadi intinya '$' nya jQuery diganti pake variable lain, contoh diatas pake 'jq'. Cara ini aku dapat dari sini . what a simple solution to save my da