I haven’t used my MySQL install on Mac OS X for a while and I’d forgotten where it was located 🙂
By default, it gets installed to /usr/local/mysql-versionnumber, with a symlink /usr/local/mysql pointing to this dir.

Articles, notes and random thoughts on Software Development and Technology
I haven’t used my MySQL install on Mac OS X for a while and I’d forgotten where it was located 🙂
By default, it gets installed to /usr/local/mysql-versionnumber, with a symlink /usr/local/mysql pointing to this dir.
Here’s the namespace declarations for the JSF 2.0 tags:
<!DOCTYPE HTML> <h:html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" xmlns:ui="http://java.sun.com/jsf/facelets">
For JSF 2.2 the URLs have changed. See post here.
There’s some seemly odd design choices in the way some things are implemented in Windows 8, like how to get to the Shutdown option, but maybe compared to Clicking on ‘Start’ to get to ‘Shutdown’ in hindsight really doesn’t make much sense either… it’s just that we’ve lived with it for so long now we’re just got used to it.
Here’s a few tips for Windows 8:
Created my first project in Scala IDE and got this error on my project:
"Unable to find a scala library. Please add the scala container or a scala library jar to the build path."
It seems that the project build path is missing the Scala system library. To fix:
– right-click project, click Properties
– click Java Build Path, then Libraries tab
– press Add Library button, select ‘Scala Library’ and then ok.
Done!