Text mangling with Grep, Sed and Awk

Just an example for future reference of text mangling on unix/linux making use of sed, awk, and grep on a CSV/text file containing names, email addresses etc delimited with a semi-colon ; cat emailaddresses.csv | grep "@" | awk -F ";" '{print $1}' |... » More

PHP Reporting Errors

To get PHP error reporting for a file or web application use one of the following methods:1. Add the following to the PHP code in the file:error_reporting(E_ALL);ini_set('display_errors', '1');2. Add the following to a .htaccess file in the same... » More

Firefox Windows 7 and Linux proxy.pac

Had a problem today with Firefox on Windows 7 and Firefox on Linux. Upon reading our proxy.pac (wpad) file the if statements were not working:if(isInNet(myIpAddress(), "123.111.123.0","255.255.254.0"))According to this post on Mozilla the problem is due... » More

TinyMCE for Sending Email

I had an issue today with TinyMCE WYSIWYG editor which uses proper XHTML and CSS for aligning elements. This is all good for CMS style usage but my usage was for sending HTML emails and on some email clients the alignment in CSS is ignored. I really... » More

Images Working in IE but not Firefox

I had an issue today while working on Peter Fitzpatrick Estate Agents website. I had an image to add to the side bar to focus visitors attention on a new service. Mistakenly I had named that image with the word 'ad' in it. It loaded OK in Internet... » More

Ashtree Show Jumps Newry Ireland

Ashtree construct and supply quality affordable show jumps for beginner to advanced levels. Our speciality is mobile easy-to-move cross-country fences built on a one-fits-all removable axle system. We supply jumps at complete height range with delivery... » More

Some vi Tips

A few tricks using vi for increased? productivity:Global Search and Replace:% s#changefrom#changeto#gDelete from the cursor to the end of the line:DReplace from here to the end of line:CDelete All Remaining Lines in a File, (from here to the end of the... » More

Exporting Active Directory Data

I had a need to export particular data of users from a specific group in Active Directory. Windows has two tools for this: cvsde and ldifde - the de stands for Directory Exchange.So the following gives an example of exporting to CSV data of users from a... » More