I was at the Enterprise Ireland 'The Business Value of Open Source Software' event yesterday. The speakers included: Simon Phipps (Open Source Initiative) Tim Willoughby and Tom Mackey (Limerick City Council) Ronan Kirby (Red Hat) David... » More
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
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
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
Just read about Justniffer on UbuntuGeek and decided to give it a whirl. Downloaded deb installer from SourceForge and ran with:justniffer -i eth0I received the following output showing a few web connections and a telnet session to a mail... » More
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
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 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
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
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