Mengelola banyak akun instagram di android smartphone

Mungkin banyak pengguna instagram yang bertanya-tanya gmana cara manage multiple instagram account di smartphone androidnya, karena aplikasi resmi instagram tidak menyediakan login beberapa akun instagram di satu aplikasi. Ada banyak aplikasi yang tersedia di Play store, salah satunya Phonegram, tapi beberapa aplikasi yang tersedia tersebut rata-rata tidak memberikan akses untuk posting gambar (cmiiw). Setelah googling…

Restrict access to your Apache Virtual Host

In some case you need to restrict your virtual host site by IP address. Usually the type of site that handle important information such as Administrator site or web-based database administration site (eg : phpMyAdmin) or else. For example the admin site of your website can be accessed only in Office network. This Apache configuration…

How to export your MongoDB collections to CSV files

For some reasons, we might want to export our data in our mongodb collections into csv files. Is it possible? Yes, it is. Mongodb provide a tools called mongoexport which can used to export your data to JSON or CSV files. Here is the usage example. mongoexport –db pricebook –collection product_specification –csv –fields “product_id,category_id,specs” -o…

How to convert foreign chars on Code Igniter

Working with foreign chars on Code Igniter is super simple. I’ve been working on website with vietnamese language for quite some time. Yes, vietnamese character with their curly accessories on alphabets. For example if you use slug on your vietnamese language on url you will get “Disallowed Character” error. Another case if you are working…

Jquery zFilter – Filtering your HTML table rows

Pernah punya data dalam tabel yang rownya banyaknya minta ampun dan gak ada fitur searchnya? Nah plugin jquery ini jawabannya… Jquery plugin zFilter untuk mengakomodir hal itu. Plugin jquery buatan @hazmi ini bisa digunakan untuk memfilter row dalam table berdasarkan pencarian. Cara menggunakan plugin ini cukup mudah, include jquery dan file plugin jquery zfilter, kemudian…

CodeIgniter Session Problem

“Why my user session keep expiring?” “Why CodeIgniter session expires when the page refreshed?“ Bagi yang sudah sering menggunakan CI biasanya pernah mengalami masalah session problem ini. Usut punya usut dan cari punya cari, ternyata banyak juga yang mengalami masalah serupa. Di forum CodeIgniter pun ada beberapa thread yang posting masalah ini. Kenapa sessionnya expired…