GitHub is a well-known git repository, but one limit is that it is not free for private git repository (cost $7/month this posting time). It means that your source code of an important project will also be available for your competitors one day. So this tutorial guides how to setup a […]
PHP
If you are a PHP Developer, you might find out that different development environments often create too many problems to the development work. There might be bugs which was not appeared in Windows machines but in Linux. There are also many bugs relating to different PHP versions, PHP modules, web […]
A great news for the PHP community is that Zend Optimizer+ was became open-source, so it is built-in from PHP 5.5. This tutorial will guide how to install Zend Opcache in PHP 5.5 and will mention a little bit about its performance. What is Optimizer+? According to PHP OptimizerPlus RFC, Optimizer+ […]
You might ask: What is Laravel (and Laravel 4)? In short, it is the PHP frameworks for web artisans. This contains notes for beginners. We can generate tables for application by utilizing the migration feature with artisan. For example, in order to setup a user table, we use parameters –table and –create:[bash]php […]
Lets start with the basics. The “netstat” command is quite useful for checking connections to your machine. If we wanted to see ALL of the connections (which i really recommend you don’t do unless you’re trying to debug something and then you should probably pipe it to a file) we […]
This article will explain about different kinds of PHP handlers and how it will impact to each aspect of an application: from resources usage to security level of each. Understanding pros and cons of each handler might help you save much effort on tuning your website performance. The original article […]
Below are some tips from WordPress pros from across the community. Many of the tips cover development, but there’s also advice on business, running your website and, of course, getting involved with the community. Image: Phil Oakley Tips For Developers USE EVERYTHING WORDPRESS HAS TO OFFER WordPress’ core can do a […]
Xdebug is a PHP extension created by Derick Rethans, one of the PHP core developers. Webgrind is an Xdebug profiling web frontend in PHP5. It implements a subset of the features of kcachegrind and installs in seconds and works on all platforms. For quick’n’dirty optimizations it does the job. This article will show how to install […]