Camella Homes Broker

This project is created for Camella Homes Philippines broker of Paragon Property Specialists. It's a simple a website where she can show the properties of Camella she is selling. CMS - WordPress 3.0 Customized fully widgetized template SEO ... Read More

View Next Project View Complete Portfolio

IPD ShipPharma

IPD ShipPharma maritime medical services based in the Netherlands. The company manages medical cabinets of ships according to its registry requirements. They also do on-board inspections in the Bremen-Dunkerque area and supply medicines throughout the world where... Read More

View Next Project View Complete Portfolio

Latest happenings from my blog

View All Posts In My Blog »


How to get IP addresses accessing your website

0 Comments

Got this one from Donncha on his Who’s abusing your website?

grep -v "wp-content" access.log|grep -v wp-includes|cut -f 1 -d " "|sort|uniq -c|sort -nr|less

Hmnn.. pretty neat, noh? It will list down all IP addresses that accessed your website including the number of appearance (how many times the site was accessed by the IP).
Read more…


MySQL Dump and Reload

0 Comments

This one has been on my draft for more than a year already so I better fix it up and share. Besides, I find myself more and more googling my site to find my posts instead of searching via the WP admin. Without further ado, here it is..
Read more…


Drop/Remove Column in Oracle Table

0 Comments

Here’s a quick post on how to drop a column/field in a table.

Dropping One Column
alter table
table_name
drop column col_name1;

Dropping Multiple Columns

alter table
table_name
drop (col_name1, col_name2);

Simple, eh?


Free ScreenCapture Software

0 Comments

In my previous job, I use SnagIt v8.x in creating screenshots and I would say that it’s a great tool. It’s very efficient, non-obstructive and relatively lightweight screen capture tool. I find it an indispensable tool especially when doing documentations or user manuals and also in creating screenshots for blogs. However, SnagIt is not free. So below are some of the screen capture I use in place of SnagIt.
Read more…


Convert Rows to One Column

0 Comments

Converting rows to column is a breeze if you are using Microsoft Access or reporting tools like Oracle Reports Builder. However, there are times that you’ll also need it for something else. I mean like displaying rows to one column in a SQL*Plus report. So how leh? (imagine that saying with a Singaporean accent)
Read more…