Sometimes it is pretty important for programmers to auto deploy the latest Git repositories to update the local source codes in development server or live project server. After researching lots of easy and complex resource I found some pretty easy techniques to do that things in few minutes. Let’s see how we can accomplish this task which can save our big time. *in this article I used Ubuntu 12.04 Server OS and GitHub as code hosting platforms * Step 01 …
Category: Programming
Read articles, tips & tutorials, news and updates on programming language. I write on mostly all languages and try to share my experience with you so you don’t need to spent too much time to find the solution by yourself. Sharing is the true power of knowledge.
There are 8 types of Data in PHP programming language. Here is the list of all Data Types: #####Scalar Type 1. Boolean 2. Integar 3. Float 4. String Compound Type 5. Array 6. Object Special Type 7. Resource 8. Null Now please see the following code and run yourself on your computer to see the result and I hope you will easily understand about what is PHP Data Type and the usage of this. <?php /** * @Author: G. M. …
JetBrains PhpStorm is one of the best development IDE for PHP developers. However, according to PHP community it’s license price is costly specially who want to learn. It’s one of the modern IDE till now for PHP. Today I am going to show how to run PhpStorm from terminal in Linux machine (Ubuntu, CentOS and other platform). Also I will describe about to create PhpStorm launcher in Ubuntu and other Linux OS. From the command line even you can run …
I receive very frequent request from clients to use custom fonts they chose for their expected PDF. And most of them choose fonts from Google Web Fonts because of their extended library. I also love it for all of our front-end projects. So I ended up facing with the issue to use Google Web Fonts for wkhtmltopdf. After searching a lot I have found the solutions by myself and I realized that I should write about it all the pieces …
Recently I was just curious about what’s coming with PHP’s latest release. I am using 5.3.10 in my UBUNTU PC since long time. Now I need to update my PHP 5.3.10 to 5.4.11 (according to php.net it is the latest stable release of PHP). I am using UBUNTU 12.04 LTS. So I am now writing this post what was tested on this OS. I was just installed Apache2 and PHP5 on my PC. Now I am just writing about how …