Entries by Kevin Godden

Massive 10GB Magento Database

This is a classic, a venerable magento database was presented to me today – it had grown over time to 10GB and was in danger of being booted right off its hosting due to its wide girth!  I’d say cron hadn’t been run for years. Anyway its very easy to clean up the magento database, […]

New Look Website

If you are a repeat visitor you may (or may not) have noticed that we have launched our brand new-look website.  There are still a few tweaks to do so if you notice anything dodge please let us know! Many thank to Ridge Design, Wicklow for the fantastic web design!

Boost link error – undefined reference to boost filesystem detail copy_file( )

I had some difficulty today getting my code to link to boost::filesystem::copy_file() (linking to boost version 1.53.0, gcc v4.7.2), I suffered from link errors like this: undefined reference to `boost::filesystem::detail::copy_file(boost::filesystem::path const&, boost::filesystem::path const&, boost::filesystem::copy_option, boost::system::error_code*)’ From reading this post, it seemed that my problem may have stemmed from my use of c++0x.   None of […]

boost filesystem compile warnings – boost system posix_category defined but not used

If you are using boost::filesystem in your C++ code and getting are some build warnings along the lines of:   ‘boost::system::posix_category’ defined but not used   Then you may find that inserting the following code before #including boost/filesystem gets rid of them for you: #ifndef BOOST_SYSTEM_NO_DEPRECATED #define BOOST_SYSTEM_NO_DEPRECATED 1 #endif #include This gets rid of […]

Fedora released for Raspberry Pi

Another OS option for your Pi – Fedora Remix has been released for the Raspberry Pi, it is based on the Fedora ARM secondary architecture project, more details can be found here: http://zenit.senecac.on.ca/wiki/index.php/Raspberry_Pi_Fedora_Remix_FAQ I love the 4th. item in the FAQ, it is entitled – “Why is the Remix slow?” lol It makes me very […]