Coding

Berisi informasi dunia development, koding, Tutorial programming website, Tutorial programming Android. Memberikan source code programming free.

Min.X WordPress Themes

Themes kali ini diberi nama min.X Keunggulannya adalah ini simple, clean, responsive design! Load faster? it depend on your internet connections. lol Themes ini masih terus dalam tahap development, terkadang  masih sering saya utak utik codenya,...

Get Android version with javascript

Hi All, This is the simple way to get Android Version from javascript. Simple way to use: Done  

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...

Instagram Photo and Video Embeds

Informasi pertama yang menarik perhatian saya dipagi ini adalah Instagram mengeluarkan fitur embed untuk foto dan video diunggah. Fitur ini sebenarnya tidak mengejutkan atau bukan termasuk dalam fitur yang wah, Sebelumnya fitur ini sudah...

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...

Google Maps 3D Demo on Mobile

  For detail please see my video below, This demo on my HTC phone, with ICS Android. Thanks,!

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() :...

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...

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>

Cara menyimpan gambar di Memori browser Agar performa server membaik

Simpan gambar di Memory browser agar performa server membaik Walaupun belum membuktikannya, tapi aku cukup yakin metode ini dapat membuat performa server menjadi lebih baik. Yuk mari kita bahas.

Perbedaan GET dan POST, mana yang lebih baik?

Berkat sedikit diskusi, saya mencoba mencari tahu apa sih perbedaan antara GET dan POST. Kapan perlu pakai GET dan kapan saat yang tepat mengunakan POST. Apa sih sebenarnya kelebihan kekurangan dari GET...

Membuat Shortcut untuk switch Dark dan Light Mode di Macbook

Baru baru ini aku menginginkan sebuah fungsi tombol yang bisa mengganti tema di Macbook secara cepat, dari Dark Mode menjadi Light mode ataupun sebaliknya. Kenapa aku menginginkan ada...