Well I came across a situation the other day where a client had data in one column and wanted to extract that data and put elements of that column into…
Split data in 1 excel column into multiple columns (Split by delimiter)
Google Hangout vs Skype
I’ve been watching Google Hangout for quite sometime, and tested it quite a bit with Google+. The voice quality and video quality is absolutely brilliant, and knocks skype out the…
Remove price when 0 or empty in Classipress
Sometimes people would just like to post without selling something – e.g advertising clubs, bands, etc. In such cases there is no need for the price. To remove the price…
Only show wordpress admin bar for administrators
The title says it all, the following code does the trick: Simply add this code to the bottom of your functions.php file for your active theme [box] (!current_user_can(‘manage_options’)) { add_filter(‘show_admin_bar’,’__return_false’);…
Change the "From Name" and Sender email address WordPress
Although easily done in code, there is a nice and simple plugin (freeware) which allows you to change the from name and sender email address in WordPress: [box] plugin – Check…
How to stop Eclipse java application
Eclipse is a wonderful dev environment, but sometimes tends to hide things ? To close running applications in Eclipse: [box] Click on Window Hover over “Open Perspective” Click on “Debug”…
Gmail SMTP not working Zimbra
For quite some time my gmail SMTP hasn’t been working using Zimbra – after quite a bit of Googling I never found a solution. So here it is: [box] Disable…
Fix Error: could not find Java SE Runtime Environment – Eclipse
Ah the infamous Java classpath and referencing issues! A quick a solution: [box] Go to you eclipse directory Open eclipse.ini file At the end of the file paste the following:…
Bluecove Java Bluetooth Library on Windows 7 64Bit – Solved
You might be receiving this error when using the Bluecove library on Windows 7 64bit: Native Library intelbth_x64 not available Native Library bluecove_x64 not available A quick a dirty solution: [box]…
Get selectedIndex for ListView C# – Solved
The ListView control does not have the selectedIndex property, so a nice and quick workaround is: [box] yourListView.FocusedItem.Index [/box] Cheerio ?









