Category: Programming

  • Creating a WordPress theme

    Creating a WordPress theme

    This article is related with the theme development in WordPress. This article is intended for beginners in WordPress. In this article we will look onto the basics of theme development in WordPress. Pre-requisites – Basic Idea in core PHP – Basic Idea of what WordPress Is – Knowledge on Basic HTML – WordPress Installed How…

  • Installing Java on Ubuntu 14.04

    Installing Java on Ubuntu 14.04

    Java is a technology originally developed by Sun Microsystems, and acquired by Oracle. Oracle JAVA, Open JDK, IBM Java, GNU compiler are the prevalent implementations. Installing Java with apt-get is easy. First, update the package index: sudo apt-get update Then, check if Java is not already installed: java -version If it returns “The program java…

  • Making Admin Panel using Codeigniter 3.0+

    Making Admin Panel using Codeigniter 3.0+

    This tutorial will teach on how to create the Back-end and Front-end by creating two Controllers. The frontend controller is the Controller that will control the actions and logic seen in the Public whereas, the backend will be mainly used by the site author, administrator etc . The idea of this is to reduce too…

  • Gulp and Grunt. Ah! The Two Task Runners

    Gulp and Grunt. Ah! The Two Task Runners

    Gulp.js is a new Node based automated task runner that has been causing lots of buzz. Although automation and task runners are not a new idea, they have become very popular in the front-end community after the introduction of Grunt.js. Grunt was built by Ben Alman to help simplify the process of automating repetitive tasks.…