I’m Feeling Lucky
Hay hay hay dilihat dari judulnya pasti akan bercerita tentang keberuntunganku. Oke! let see....
Tahukan anda tentang i'm feeling lucky ?? belum tau ? oke saya juga belum tau... Hmmm oke fokus menulis fokus!! Kali...
Download Drupal e-book
Download Drupal e-book tutorial ?
Drupal E-book Part 1
e-book Using Drupal.pdf
Front End Drupal.pdf
Learning.Drupal.6.Module.Development.May.2008.pdf
Leveraging Drupal.pdf
Pro Drupal Development, Second Edition.pdf
Selling Online With Drupal E-commerce.pdf
Drupal E-book Part 2
Drupal 6 Ultimate...
Argo UML (Open source UML Modeling)
Apa itu Argo UML ? apa kelebihannya sih ? Tutorialnya ada ga ?
Informasi Gempa Terkini BMKG
Gempa ? adalah sebuah kalimat yang mungkin tak asing lagi didengar kita semua. Pasca terjadinya gempa Yogyakarta Mei pada tahun 2006, kalimat gempa sudah cukup sering terdengar, bahkan sekarang sebagai infomasi agenda yang cukup penting diinformasikan mengingat negara yang kita cintai ini berada di area yang akan cukup sering mengalami gempa. Tercatat hampir setiap hari gempa dirasakan di negara kita (Indonesia), sepertinya negara ini tinggal menunggu waktu saja untuk mendapat giliran gempa. Hmmm...
Menambah ringtone notifikasi android
Setelah coba cari mencari bagaimanakah cara menambah ringtone notifikasi di android ternyata ada caranya. Cara menambah ringtonenya pun unik, hanya dengan membuat struktur folder di SD Card. Begini caranya :
Pada root dari SDCard anda...
Angry Birds For SPICA [patched]
Anda pengguna Android Samsung Galaxy Spica ? bermasalah ketika memainkan game Angry Birds ? Masalahnya pada grafic yang sebagaian tidak bisa dirender/ sebagian tampilan menjadi tidak berwarna, tidak perlu jangan kuatir lagi !! Berikut...
Launcher Pro Plus
Pengguna android yang ingin merasakan launcher pro plus namun hanya punya versi trialnya tidak perlu kuatir, berikut cara membuat Launcher Pro Plus.
1.Download launcher pro trial dari market.
2.Buka preference launcherpro, trus pilih "backup homescreen &...
How to resize images from the command line
How to resize images from the command line on linux (Ubuntu) using imagemagick.
Install imagemagick :
sudo apt-get install imagemagick
Create a directory in the location named “resized-pictures” as follows :
$ mkdir resized-pictures
Now run the mogrify command from...
Limit character textarea using Jquery
Here we can do, copy this jquery plugins :
jQuery.fn.maxLength = function(max){
this.each(function(){
//Get the type of the matched element
var type = this.tagName.toLowerCase();
//If the type property exists, save it in lower case
var inputType = this.type? this.type.toLowerCase() :...
Code To Change Hyperlink Underline Color
Here we can do to change hyperlink underline color
<a href="change-underline-color.php" style="text-decoration: none; border-bottom: 1px solid #999999">change underline color</a>
TinyMCE produce P elements
This is way If you want to change new line in TinyMCE with <br/> character :
For the display you can use a simple CSS trick like this on file tiny_mce/themes/advanced/skin/default/content.css :
p {margin:0; padding: 0;}.
See...
Jquery Check All
Here we can do with jquery, check all checkbox with name parameters :
sample code :
function checkallitems(){
var arr=$("input']");
if($('#contestall').attr('checked')==true){
for(var i=0;i<arr.length;i++){
$(arr).attr('checked','checked');
}
}else{
for(var i=0;i<arr.length;i++){
$(arr).attr('checked',false);
}
}
}
note :
contest is the name of checkbox will be checked.
contestall is a checkbox for control check...
Change IE document default view
If you have problem with CSS view in IE 8, maybe you must try this solution.
Add this tag on head :
<meta http-equiv="X-UA-Compatible" content="IE=8" >
it will be change your default document view to IE 8...