CSS list styles

CSS list styles

I got fed up of hunting down what css list style produces what, so I made a quick page that shows you. see examples of list styles

Server build notes

Server build notes

Part 1 Retrieve the full license key from Plesk using the web control panel License Manager. Backup and download the key. # cp /etc/psa/psa.key /var/www/vhosts/<domain>/httpdocs/ Visit http://<domain>/psa.key Part 2 Then run the offline installer script… Read more

Plesk, 1and1 and CentOS

Plesk, 1and1 and CentOS

I’m currently building a new server for a client and am finding great success using the top notch tools from atomic rocket turtle. (Atomic Corp) By using Scott’s AOOI script I have managed to install Read more

RPMBUILD

I had to build an rpm file from a src.rpm file for the first time today… shows you how well yum etc. are working. Here’s a handy page of instructions on getting this done. http://perso.b2b2c.ca/sarrazip/dev/rpm-building-crash-course.html

Feeling Bashful

Counting files in a folder ls -1 | wc -l Deleting a lot of files when plain ol rm won’t work find . -name ‘prefix*’ -print0 | xargs -0 rm Find files containing a text Read more

An IV for VI

It seems with VI you are always learning a new trick to it every other day, so I thought I’d start adding the tools I use regularly here. The search and replace in VI is Read more