Uncategorized Category

Begin develop Facebook Application

In: Uncategorized

I’ve wanted to start an entry about writing Facebook applicationsĀ  for long time but seem these days I am quite busy with my running projects. From Internet, I got some useful links for people begin with as Facebook developers.
These are very helpful pieces of information highly recommend for reading before you get too far into […]

40 signs of a lousy PHP coder

In: Uncategorized

Passing through PHPDevelopers.org, I found this worth to read article of how lousy a PHP coder standing out of the project team. The second sign is not very correct as sometimes I just need a Notepad or gedit or VIM but it is from Reinhold blog, I keep them all intact.
By Reinhold Weber

Cheatsheet collection

In: Uncategorized

JavaScript
Regular expression
MySQL
PHP
CSS
mod_rewrite

A C# class to validate email and url

In: Uncategorized

Regular expression is not only difficult to write it correctly but also because we don’t have time to study details of a specification of the expression we want to validate. So I try to collect as much as I can common used regex for reference.

using System;
using System.Text.RegularExpressions;

public class GeneralValidation
{

public static bool IsEmail(string Email)
{
string strRegex = […]

Begin a PHP class

In: Uncategorized

Can’t wait until my new community site finish to run a PHP class, I will start it soon with the WordPress blog on which today I installed lot of plug-in and try some new theme.

Zend Neon on FC8

In: Uncategorized

Installing is not possible, as far as I know, with the bundled jre and not possible with FC 8 bundled jre Ice-tea. You should download and install Sun’s jdk to install. You can find very thorough and good instructions from Mauriat Miranda how to do that. You do not have to set the Sun’s kit […]

Installing memcached on FC8

In: Uncategorized

When install memcached on FC8 and libevent.1.3e, there is an error loading libevent.1.3e.so.
Here is how to overcome this error:

Download memcached and libevent
Install libevent (1.3e)
Unzip memcached
Instead of ./configure, use this:
DFLAGS=’-Wl,–rpath /usr/local/lib’ ./configure –prefix=/usr/local
make
make install
now you can run without error:
memcached -d -u root

CHM reader for Linux

In: Uncategorized

Though you are on Linux, there are many chances you need to read CHM files as a developers such as PHP manual, MySQL, etc. I encountered this need soon after moving from Windows to Linux and had to find a CHM reader tool meet my need.
There are many tools reviewed on a blog called Linux […]

Installing CPAN

In: Uncategorized

I don’t know why Fedora core 8 does not install CPAN with Perl. Here is some step to install CPAN if you type
# perl -MCPAN -e shell
and receive error CPAN.pm not found.
Go to http://search.cpan.org to download CPAN package.
Extract the package to your home.
# perl Makefile.PL
# make
# make install
and that is you have CPAN ready to […]

I am a newbie Linux and got lot of trouble with my Dell Inpriron E1405. Its wireless card is Intel Wireless Pro 3945ABG but when I install FC8, the first time I got my Wireless ready and run perfectly until reboot. Fedora 8 shipped with iwl3945 supporting Intel Wireless Pro 3945ABG but I never get […]