Category: java

Smarter Beans?

1 min read java personal programming 0 comments

In Java, Beans are an important part of good programming practices and good Object-Oriented coding. There has been a lot of discussion recently about monitoring changes on beans other such functionality that is not inherently built into Java. With my Magic Beans project I've already done a lot of…

Read more →

Multithreaded Unzip?

2 min read java programming 15 comments

A co-worker and I were discussing the possibilities of performance gain doing extraction of ZIP files using multiple threads rather than the typically single-threading extraction that the majority (if not all) mainstream archive extraction utilities use and given Java's great ZIP file support…

Read more →

Applet Roadblock

2 min read flex hacks java javascript jseamless programming 0 comments

My massive hack for native drag-and-drop in jSeamless Flex implementation is functional, but only in Firefox. Apparently there is an interesting "feature" in IE that even though you may sign your Applet and the user grants that they way to trust said Applet, it still never gives you read access to…

Read more →

Stressing

1 min read flex java jseamless 0 comments

No, in a good way. 🙂 We've been working through a lot of stress testing at work for jSeamless to prove that it can stand up to an unreasonable load only exceeded by getting "slashdotted. We have faired quite well and we're currently working to get the document released for public "consumption".…

Read more →

More Advanced Object Pooling

1 min read games java jgn programming 0 comments

I generally post a message in my blog after I've already done it, but this time I'm trying something a bit different and posting the idea as a mechanism to draw it out. In my jCommon project I have Object Pooling support already, but it's explicitly limited to the pooling itself. While developing…

Read more →

Sudoku API

1 min read games java sudoku 0 comments

Yeah, I've done it again. I'm well known for reinventing the wheel and this is no exception. As I've previously mentioned I decided to write a Multiplayer Sudoku game that you can compete with other players online playing. Well, I sort of got stuck for a while on the puzzle generation. I hate the…

Read more →