Category: Java
20 March, 2007 (02:37) | Java, Technology
Just got hit with this error:
And regrettably I spent a lot of time searching through Javascript in mootools javascript, and the small 2 lines of javascript Wicket adds to the page. Finally, I decided to actually google the error (which I should have done immediately).
Low and behold, because I was inlining some Javascript for […]
13 March, 2007 (16:20) | Java, Technology
The writing has definitely been on the wall for some time now. All the “agile” frameworks out there picking on Java and its love affair with XML had an effect. More and more projects have sprung up that tout one of their prized features, no XML required.
Wicket (currently undergoing incubation with Apache) is […]
21 August, 2006 (17:47) | Java
Qwicket is an easy and fast solution for creating your next project with Wicket. Right from the website, you can create an account (if you’d like to save your work as you go), and add beans to your project directly from the UI.
Qwicket 0.4 was just recently released by Justin Lee, and it features […]
21 August, 2006 (00:17) | Java
After much loss of sleep trying to use DatePicker in wicket-extensions, I’ve instead opted to create a simple component with date selectable dropdowns of month, day, year. This little pet project was great, in that it helped me really get a better understanding of how Model’s work with Wicket, and what it takes to […]
20 April, 2006 (18:57) | Java
With a little help from freenode folks in ##java and #awk .. I’ve got a one liner which will give you a word count for your resource bundle files:
grep -vE ‘^#’ YourResourceBundle.properties | cut -d = -f 2 | wc -w
whew.
25 March, 2006 (18:20) | Java, Apple
Something that just struck me as handy, was Growl notifications for certain steps in the ant build process. If you’re doing something else, its always nice to see “Build completed”. I could go into a long process on how to create an ant plugin, integrate it with Growls’ Java bindings, and have a […]
2 February, 2006 (21:13) | Java
I will be preparing a full tutorial on building a simple but functional application using Wicket. Here are two applications which were built in a very short amount of time, with the very simple framework.
Pastebin is homage to the several applications built before it, and was built in a few hours time at most. […]
31 January, 2006 (00:15) | Java
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:
SELECT field1, count(*) FROM tbl1 GROUP BY field1 HAVING count(*)>1;
problem solved, a nice simple list of […]
30 January, 2006 (12:02) | Java
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 […]