People always forget how fast you did a job

But they will remember how well you did it

Create a WordPress Options Panel Using CodeIgniter

Written by Feelinc on 3 March, 2010 - 06:53 PM in Blog, Experience, Featured, Research, Theme — Tags: , , , , ,
theme-panel
The first thing that we all think about when we want to start to create a WordPress Options Panel is the code structure. How the code structure is quite clean and easy to enhance. WordPress is one of the most popular Content Management Software (CMS) systems out there.So how we would like integrate CodeIgniter into [...]

Membuat OOP di Javascript supaya terstruktur

Written by Feelinc on 3 July, 2009 - 05:39 PM in Blog, Experience, Research — Tags: , ,
Nah bagaimana supaya lebih enak kita pakai dan untuk future enhancement nya lebih mudah ??? Pertama kita buat file saya.js, isi file ini yang akan berfungsi seperti objek global bagi Anda dengan isi seperti berikut : (function(){ if (window.Saya) {var Saya = window.Saya;} var Saya = window.Saya = function() {return new Saya.init();}; Saya.apply = function(o, [...]

Trik mengolah HTML on-the-fly menggunakan jQuery + JSON

Written by Feelinc on 3 July, 2009 - 10:50 AM in Blog, Experience, Research — Tags: , , , , ,
Terkadang kita bingung bagaimana cara terbaik atau yang relevan untuk membuat atau mengolah html dengan menggunakan javascript, terdapat beberapa cara : ———————————————————————————————————————— 1. Dengan membuat tag-tag html langsung $(document).ready(function(){ var list = ''; for (var i=0; i<2; i++) { list += '<li>'+i+'</li>'; } }); ('#list').html(list); maka akan menghasilkan : <ul id="list"> <li>0</li> <li>1</li> </ul> Tetapi [...]

Web Chat – Facebook Like

Written by Feelinc on 27 June, 2009 - 09:02 PM in Blog, Featured, Research — Tags: , , , , ,
Facebook
Melihat web chat facebook mantep banget deh, pengen coba bikin tetapi mau diimplementasi dimana ya ? bingung juga. Kebetulan bos lg punya ide bikin sesuatu jadi deh kepikiran gimana kalau ditambahin web chat. Konsep nya mirip seperti facebook, yang berbeda jika facebook person-to-person chat box, kalau saya mau bikin seperti biasa yaitu chat-room, tetapi tidak [...]