In this tutorial, I am going to show you how to use Gosu 2D Ruby Game development library. I assume you have some experience with coding in ruby programming language. If you are not comfortable with loops, classes and functions then I suggest you to take a few hours to learn ruby programming language. [Read more…]
Archives for 2013
JSON with PHP
In this tutorial, we are going to learn how to use the JSON with PHP. JSON is a simple way to store and exchange information. JSON is a lightweight than XML, faster and easier to parse with any programming language. The output of JSON encoded data is very easy to read by both humans and machines. [Read more…]
Learn MongoDB on Ubuntu Linux
Lets learn how MongoDB works in this simple tutorial . NoSQL databases are very interesting to learn and MongoDB is the easiest NoSQL DB you can learn in very short amount of time. [Read more…]
PHP Command Line Interface
PHP can be used to run command line programs and is not restricted to browser only app development. PHP SH can be installed on Linux, windows and mac which helps you execute php files from your terminal. These programs can fetch data from web server, manipulate the data and store it on hard-disk. Though php can be used for doing command line operations, you can’t execute html specific code from the command line using Php SH. In such case, using php on browser with web server should be your focus like most of the web based programming languages. [Read more…]
PHP MySQLi Procedural and Object-Oriented Interface
MySQLi is a new improved extension for accessing mysql database. It allows procedural and object oriented interface for accessing mysql database. Though you can use the old mysql functions but new mysqli offers security, advanced options, speed and similar syntax. So if you’re trying to write code using old mysql functions, just switch to mysqli. You have nothing to lose even if you don’t know how to use Object oriented way of accessing the database. [Read more…]
How to Use a Git Repository – Guide to Github and Bitbucket CVS
The purpose of this tutorial is to teach you how to use git for hosting your project on github and bitbucket. I am going to cover installation of git and using multiple repositories. If you are new to the git and subversion control then keep reading in order to learn how to manage git repository in an easy way. [Read more…]