Category: Reference
2 September, 2009 (00:35) | FEED, PHP, Reference, class, programming | 1 comment
Tags: ATOM, class, FEED, PHP, Programming, RSS, XML
RayFeedReader, A Simple and Easy SimpleXML based feed reader class using PHP.
First of all it’s another reinvention of wheel. This class is designed to provide quick access to any XML based RSS feed and it’s content. Usages are very simple and require only one line of code. Html rendering functionality is provided through separate pluggable [...]
28 June, 2009 (09:51) | PHP, Reference, programming | 4 comments
Tags: Array, class, PHP, Programming
RayArray is a array utility class.
I have wrapped three static functions for converting multidimensional configuration data. It is very much useful when working with configuration data. I have used this class in one of my project to store arbitrary configuration data just like windows registry data.
File: rayarray.php
<?php
/**
* RayArray arrays utility class
*
* This class provides configuration [...]
13 June, 2009 (13:01) | PHP, Reference, programming | 7 comments
Tags: class, http, PHP, Programming, Tutorial
RayHttp, A Simple Http Client Class for PHP Development.
This class is designed to provide quick http reqest method to access external website. A CURL alternative to php native file_get_contents method. It can work without any configuration and can be called anywhere is your application using singleton design pattern. Unlike other Http client class in php, [...]
15 April, 2009 (12:09) | Fedora, Linux, Reference, Ubuntu | No comments
Tags: Fedora, iptables, Linux, Tutorial, Ubuntu
Iptables is the default and powerful firewall that works on almost all Linux version including Ubuntu and Fedora. Here I have listed some important commands and a short description of each command for quick help. It can help people who already know little Iptables.
manage chain:
# iptables -N new_chain // create a chain
# iptables -E new_chain old_chain [...]
21 November, 2008 (02:49) | Linux, MySQL, PHP, Reference, Ubuntu, personal | 8 comments
Tags: Bash Script, Install, Linux, Tutorial, Ubuntu
I have created a bash script file to install almost all necessary softwares to run and work on a Ubuntu box. I have tried this script in Ubuntu 8.04 Hardy Heron and Ubuntu 8.10 Intrepid Ibex. Softwares I have placed in this script covers PHP-MySQL development and desktop applications for graphics, multimedia, to Internet [...]
20 November, 2008 (16:09) | MySQL, PHP, Reference, programming | 36 comments
Tags: Image, MySQL, PHP, Tutorial, Upload
A basic approach to upload and save image to a MySQL database and then display the image from the database.
First you need to create a table in MySQL Database to store the image data. Log into you database and run the following sql command:
CREATE TABLE `images` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(100) default NULL,
`size` int(11) [...]
21 September, 2008 (01:40) | Fedora, Linux, Reference, Ubuntu | 4 comments
Tags: Boot, Fedora, GRUB, Linux, Troublshooting, Tutorial, Ubuntu
Running linux with windows in dual boot mode is not hassle free at all. Specially if you reinstall or repair windows, your linux system will disappear. As a newbie you may stop using linux or reinstall it again instead of solving the problem. In this article I will share my experience on how to recover [...]
20 July, 2008 (00:03) | Fedora, Linux, Reference | 2 comments
Tags: Fedora, Linux
I receives lots of call from my friends to help them fixing mp3 problem in fedora. Some of them already have internet connection to their fedora box.
Here is a single command what can solve the problem if you have internet connection.
# yum -y install gstreamer*
This command will automatically find, download and install the GStreamer [...]
19 July, 2008 (22:19) | Fedora, Linux, Reference | 6 comments
Tags: Fedora, GPRS, Linux, Tutorial
This is how I connect to internet from fedora box using my motorola L6 GPRS modem. I use this procedure with Teletalk connection.
After a fresh fedora installation I enter the following command in the shell. This command creates a wvdial configuration file for my modem.
# wvdialconf /etc/wvdial.conf
Now I need to modify some contents of wvdial.conf [...]
26 June, 2008 (12:50) | CakePHP, PHP, Reference, programming | 1 comment
Tags: PHP, Tutorial
Currently I am working on the documentation of my software written in PHP. From this documentation project I have found that proper commenting of code is a good documentation. If you write your code base along with comment then you don’t need to worry about the API Documentation of your software. You just have to [...]
« Older entries