WordPress Sharedaddy With Google +1 Button

I love using WordPress Sharedaddy plugin to help me to display sharing button at the end of my post. And as you know recently Google +1 is launched on June 1st 2011. And now lot of websites already implement this button. There are some Google +1 plugin available for free in WordPress repository. But i don't like to use those plugin because i already have sharedaddy and they cannot work together.After a while doing my search, i found someone did a patch to add Google +1 button to … Read more...

HeidiSQL: Another Free MySQL Client Tools

I bet many of you know what is MySQL and probably use it a lot. One of the best MySQL client tools is MySQL Workbench as it have all fancy features. But it is too heavy to use. So instead of design the database structure, i'm using HeidiSQL to administrate my MySQL server. I found it extremely light and easy to use.[quote sourceurl="http://www.heidisql.com/" sourcename="HeidiSQL Official"]HeidiSQL is a lightweight, Windows based interface for MySQL databases. It enables you to browse and … Read more...

Launching My Online Resume

Today on June 1st 2011 i proudly announce my new online resume to public. This resume is built on WordPress and use MyResume themes from Eleganthemes.com. This online resume intend to tell more about me and could contact me if you need my help. And since it built on WordPress, it is easy to track and update my recent projects/portfolios in professional way. And of course it give me more credibility so you can trust me and working with me in the future.[quote]I'm quite happy with my new … Read more...

AJAX and Javascript Live Testing Tools

Ajax and javascript is hard to debug and find where it go wrong. One of the great offline tools to debug your ajax and javascript code is Firebug with Firefly extension. But you need to modify your code and insert some debug code from firebug, and you can see the result in Firebug windows. I have it in my Firefox browser to develop my projects, but sometimes i need to testing ajax live or testing javascript live without using Firebug.These are the best 2 online ajax and javascript testing … Read more...

Facebook FBML Live Testing Tool

Recently i tried to developing an application for Facebook as my client demand. Facebook use XFBML (eXtensible FaceBook Markup Language) as their mark up language to use Facebook UI and API. And it took me a while to testing and do it right since i have to try and error it for every changes i made. And i just found (i know it's been a while there) Facebook FBML live testing tools provide by Facebook developer.This application called Rell, it is FBML and javascript test console, saving so … Read more...

Securing OpenSSH: Filter Host To Limit Access

One technique to securing OpenSSH is filter some hosts that allowed to access your server through SSH. This technique will prevent us from openSSH brute force attack. To filter some hosts that allow to connect from port 22 (SSH port), we can use firewall. You can use whether ConfigServer Security & Firewall or denyhosts. Both are free to use. To use CSF you may need to have cPanel for easy configuration. So now let's choose denyhosts instead.[quote]DenyHosts is a script intended to be … Read more...

PHP Suhosin: Hardening Your PHP5 On Ubuntu

PHP Suhosin is an open source patch for PHP5 to hardened the servers security. From the PHP Suhosin official:"Suhosin is an advanced protection system for PHP installations that was designed to protect servers and users from known and unknown flaws in PHP applications and the PHP core. Suhosin comes in two independent parts, that can be used separately or in combination. The first part is a small patch against the PHP core, that implements a few low-level protections against bufferoverflows or … Read more...

OpenPGP Thunderbird 3 With Enigmail

OpenPGP (Open Pretty Good Privacy) is a data encryption and decryption that provides cryptographic privacy and authentication for data communication such as email. We can create OpenPGP Thunderbird 3 with Enigmail addon. Enigmail adds OpenPGP message encryption and authentication to your email client. It features automatic encryption, decryption and integrated key management functionality. OpenPGP Thunderbird 3 with Enigmail works in multi platform such as Windows, Linux (32-bit) and Mac OS X … Read more...

WordPress Backup Database And Files

The next to do list after you have done configuring your WordPress or post some articles is WordPress backup. Regular WordPress backup is the wise thing to do and you have to make sure you put it in your to do list. Once a month or twice a month is reasonable you need to do WordPress backup. So make sure you put it in your schedule. I always do WordPress backup in net15 which means every date 15 and 30, twice a month. And to save some space i only keep the last 5 backup files. Why WordPress … Read more...

Creating deb Packages From tar.bz File In Ubuntu

Creating deb Packages in Ubuntu from tar.bz is possible using "alien" command. Alien command converts an RPM or source package files into a Debian package file or Alien can install an RPM file directly. Creating deb packages with alien is not recommended to replace important system packages, like init, libc, or other things that are essential for the functioning of your system, because some distributions setup these packages differently. But for other packages that doesn't available yet in … Read more...