Create Local VirtualHost For Your Development Environment

If you are using xampp, you can access your local server just by go to http://localhost. So now i would like to share to you how to create your own local domain and add your local domain into apache virtual host, so you can have your local website for development purpose. For example you can have www.domain.local. To create this you only need to edit your apache vhost and your hosts file.If you are using Windows you can edit your hosts files in C:\Windows\System32\drivers\etc\hosts, you can … Read more...

Create Patch Files From Multiple Commits In Git

As i am working on some open source project with the community, it is best to send the file patches instead of merge request. And couple projects are not using Github or Gitlab. And the team leader need us to send the patch file instead of push them right away to the main git repository. The reason for testing and staging purpose.Fortunately git could export those commits into patches with this command:where -x means how many commits back from the current head and it has to be … Read more...

DB Cache Reloaded Fix on Github

First of all i would like to thanks all of you that already support me and using DB Cache Reloaded Fix plugin. And also i would to apologize if lately the DB Cache Reloaded Fix development is delayed. I also keep reading the WordPress forum for my plugin development, and there are some nice idea and fixes that need to be implemented, but i really busy at the moment since i just build my own company. And there are many things on my plate to do.And there some brilliant developers ask me if … Read more...

Git Introduction

What is Git? Git is a distributed revision control and software code management used in team software or web development. Git allow single developer or a team to develop software or web application together with fast, efficient and reliable. Git was originally develop by Linus Torvalds (creator of linux) in 2005 for his Linux kernel development. Why Git Beside Git is a free and open source, Git also a very powerful tools and incredibly fast for software code management. Don't forget that Git … Read more...

DB Cache Reloaded Fix v2.2.4 Released

I'm happily to announce DB Cache Reloaded Fix v2.2.4. For you who don't know DB Cache Reloaded Fix, it's a WordPress plugin to cache the queries made to the database whereas improve your WordPress blog performance. It's not originally mine, but it is a fork from the old DB Cache Reloaded which not compatible since WordPress 3.1. And thanks for all of you, your input and feedback is really helpful. What's New in DB Cache Reloaded Fix v2.2.4 There are some fixes that will definitely improve the … Read more...

Facebook Thumbnail Image

Here come a question from my Facebook fans regarding Facebook thumbnail image: [quote]How can i share my blog post with the right thumbnail on Facebook? Sometimes it show the wrong thumbnail and worst doesn't show any thumbnail.[/quote]Facebook Thumbnail Image ExplanationFirst we need to find out what cause the issue. Facebook script trying to parse your web page and looking for the right image for the thumbnail. But most of the time it is fail to give the right image and worst no image … Read more...

Optimize Image Size With Photoshop

Images have important role for web design, but in the other hand un-optimized images could be a nightmare for your bandwidth. We need to optimize image size for our web design. Please bear in mind that, your visitors love fast loading web page rather than fancy but take a long time just to see your home page. There are a lot of tools to optimize image size, but only some of them are good in keeping your image quality. We are not just reduce the image size, we need to optimize the image quality … 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...

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