After working on my machine for quite a bit today, I started getting crashes in certain programs, and I haven’t seen this pre-10.4.4. The following was seen in Console.app: CGSResolveShmemReference : offset exceeds bounds And it did so for several apps, Firefox, GLterm, iSync (wouldn’t even run). A simple logout and login seems to have [...]
Thanks goes to Xgc in #mysql on freenode for showing me this little one-liner. We needed to add a unique key to one of our tables, and a duplicate was in our midst. Enter this handy one-liner: ?View Code SQL SELECT field1, count(*) FROM tbl1 GROUP BY field1 HAVING count(*) > 1; problem solved, a [...]
After using several of the web frameworks that are prevalant in the java world, I do believe I’ve finally found a virtual nirvana. Here at Mystic, we’re doing lots of development with Wicket, a java web application framework that “takes simplicity, separation of concerns and ease of development to a whole new level.” So what [...]