Jeroen | December 29, 2004 15:38
| 15:38
As I mentioned in a previous blog I am doing some work related to Continuous integration in Java. It’s nothing fancy, but still people are not doing it because they are unaware of the benefits.
Yesterdag evening I had my first take on the presentation. It’s comming together quite nicely, but still I’m in doubt about the ammount of demo versus the ammount of theory. But that’ll all come together after a while.
Now for my Msc on the other hand I have to do an assignment about some game called Mankala. It’s focussed around the design of this game. It’s not my cup of thea and I think that whatever me and my colleague are going to deliver will be an overengineered piece of ehr…. work. You know the drill, a simple application burdened by it’s heavy weight enterprise design.
But on the otherhand it’s a nice short assignment on which I can brush up aquintance with the gang of four and friends.
Jeroen | December 25, 2004 17:34
| 17:34
oreilly.com — Online Catalog: Java 5.0 Tiger: A Developer’s Notebook
Recently I bought this book. It’s an excellent read. Do note that you have have some experience writing software in Java releases prior to Java 5.0.
The book introduces the new language features in a code oriented approach. This results in a very quick and solid introduction into the new language features of Java 5.0. Don’t forget about the other new features of Java 5.0 though.
Jeroen |
| 16:18
Welcome to Leenarts.net
I think it’s starting to come along nicely. I changed the layout a bit, and I think the page has a better balanced now.
Things I want to put on my site are all listed now in the menu, but still most pages display a friendly “To be addressed” statement.
Jeroen | December 22, 2004 22:07
| 22:07
Welcome to Leenarts.net
I’ve been trying a new style for my website. Its still a bit plain, but I hope it’ll get better over time.
Jeroen | December 21, 2004 21:42
| 21:42
This is one of the pictures circulating my employers intranet since saterday. Am I screwed?? 
xmas-freggel-2004.jpg (JPEG Image, 1136×852 pixels) - Scaled (96%)
Oh my, it’s me jumping in frame from behind people…
(People are now calling me the XMass Freggel.)
Jeroen | December 19, 2004 13:10
| 13:10
Last night my employer threw a christmas party. The invitation said “Tenue de ville”. So almost everybody was dressed classy. Anyway, I almost got blasted
Usually I never drink any alchohol, but sometimes… (like once a year or so) Anyway, I only had 5 or six “Hertog Jan”. It’s a beer, but not just beer like buds or heineken. Noooo…. This is a bit stronger. It’s a dark beer.
Anyway… Had lots of fun, but this morning my head was a bit painfull, couldn’t eat breakfast. So I just skipped all that and checked out and went home.
Good to see my colleagues in a different setting. One thing though… Yesterday evening I had a minute to myself and was looking over the dance floor and I thought… “My my, gorgeous women… Wow!! Wait… Party.. Work… Colleagues… Tech company… Women = Colleagues partners. Shit!! I think I’ll get another beer.”
As I said, lots of fun.
Jeroen | December 18, 2004 12:41
| 12:41
Thunderbird 1.0 Reaches 1,000,000 Downloads in Just 10 Days! - Spread Firefox
There is still hope!! Get FireFox and Thunderbird today. You will be glad you did. And Sunbird is also in the making. (Working name) When Sunbird is released, you also hava a fully integrated calendar application.
Jeroen |
| 1:45
Google AdSense
Just applied for Google AdSense. Which I think is great. When you google, do you notice the tiny adds on the right side of the search page? I do and their great. With Google AdSense you can do the same for your site. Google indexes your site and makes targeted adds available. You can then display these in a non intrusive way with a small javascript. (Do check their policy!)
Jeroen |
| 1:14
Java Tip 52: Singletons vs. class (un)loading
This page seems to support my opinion about class unloading. Sweet… Now all I need to do is try doing it. 
Jeroen |
| 1:11
ClassLoader .defineClass(…)(Java 2 Platform SE 5.0)
Just been fooling around a bit. I like what the API docs say about the infamous classloader. Basicly, when I want to dynamicly load a class into my application, I can just do it myself with a custom classloader. I believe that when this classloader has been marked for collection that also all loaded classes of the custom classloader will be deleted from memory.
Would be very nice when that would be true. I can imagine some nifty tricks with this. Like injecting code into the application while the app is running. Would be very usefull, especially in distributed scenario’s. Or to enable changable runtime analysis code into a application. Perhaps it doesn’t sound usefull of the bat, but it will score you some kudos on any project anyway.