Windows Vista Ultimate 64 bit fresh install

This is a follow up to my previous post, Windows Vista Ultimate 64 bit crashed on fresh install. Now, I can install Windows Vista Ultimate 64 bit perfectly 🙂 This post can also serve as a guide on “How to slipstream SP1 to Windows Vista Ultimate 64 bit”. This is what I do: Download Windows Vista SP1 for 64 bit…

Read More »

WordPress Super Cache Issue

WP Super Cache is installed properly and you have followed the instruction in readme.txt file carefully, but it won’t cache 🙁 First of all, make sure you have followed the instruction carefully. Starting from “Installation” section to “Troubleshooting” provided by the readme.txt If the plugin still won’t cache, check your template specifically the footer section/file. Make sure there is a…

Read More »

Regular expression for validating email address

A simple regular expression (regex) for validating email address using PHP which I used mostly on my web apps. I love being a Web developer and it’s been a lot of fun — this is one of them [php]<?php function validateEmail($email) { if (ereg("^[_a-zA-Z0-9-]+(\.[_a-zA-Z0-9-]+)*@+([_a-zA-Z0-9-]+\.)*[a-zA-Z0-9-]{2,200}\.[a-zA-Z]{2,6}$", $email)) { return true; } else { return false; } } ?>[/php] Usage: [php]<?php if (validateEmail($email))…

Read More »

How to: Sony Ericsson P990i as USB modem on CentOS

Sony Ericsson P990i is a smartphone and the successor of Sony Ericsson P910. The phone uses the UIQ 3 software platform, which is based upon Symbian OS 9.1 link. Sony Ericsson P990i technical specifications (network related only): [*] GSM 900 / 1800 / 1900 [*] UMTS 2100 [*] GPRS Class 10 (4+1/3+2 slots), 32 – 48 kbps [*] 3G, 384…

Read More »

Windows Vista Ultimate 64 bit crashed on fresh install

This is my first experience doing Windows Vista Ultimate 64 bit live fresh install. Please bear with me. The machine specification: Processor: AMD X2 4200+ with stock cooler + Artic Cooling MX2 Motherboard: Abit AN9-32X with latest bios update RAM: 4 x 1GB Team Elite PC6400 Graphic Card: XFX 8600 GT XXX Harddisks: Western Digital Caviar 320GB SATA II +…

Read More »