Older blog entries for ksandstr (starting at number 1)

Ugh. I probably shouldn't be writing this, but what the hell. Being tired and having missed about 18 hours of sleep during the last 7 days gives a good excuse to rant mindlessly.

So, it's been precisely one month since my last diary entry. Whee. Nothing much has happened at work, but still I'm feeling overworked, underpaid and severely irritated.

omniORB3 looks pretty good. Shame that there aren't any debian packages available that I know of. The Python binding for omniORB also looks pretty damn convincing; at least for purposes of rapid prototyping. I've had some misgivings about the python interpreter's habit of keeping reference counts of python objects (thinking that it'd be slower than the mark-and-sweep GC commonly used in JVMs), but after running some tests using a CORBA object factory server written in python I can say that no, python doesn't seem to leak memory provided you do things the proper way (i.e. paranoid del's in the main program and such). Besides, it seems that a group of, say, 10 python statements would do a lot more than 10 statements of Java, let alone C++.

I still don't understand why it was so important to have strong typing in Java. Since most JVMs do a good bit of checking and validation and other things to java bytecode before execution, I wouldn't imagine that it'd be a big problem to do some crude type resolution in the bytecode validator. To me it looks like Java combines the disadvantages of both strong typing (which tend to make the average non-trivial line of code longer than 80 columns [casting, methodsThatAreWrittenLikeThis, ...]) and a bytecode compilation pass (loss of meaningful source code as well as the information contained therein that would give a smart JIT compiler an edge).

Looks like this diary entry became a rant about my pet peeves regarding Java. Oh well. Time to catch some shut-eye. (also, it looks like I kept the promise I made earlier on, the one about ranting without focus...)

Aww crap. Looks like nymia went ahead and commented the "getting rid of files" article to the same effect that I would have. Saves me the trouble, though. The comment also reads much better than the incoherent drivel I would've spewed forth :-)

Since I'm probably going to write stuff about my current research[1] and other interests, I might as well start right now...

Spent a few days (the 19 and 20th days to be precise) studying omniORB. It's funny how the version 2.8.0 Debian package is in non-free when the newest version is licensed under the GNU licenses; I ended up removing the debian packages and compiling it by hand. Looks like they have made lots of improvements (POA, many CORBAservices, other neat and 2.2-compliant stuff), which is nice.

I also spent a few hours today (aug 26th) fruitlessly trying to install orbit-cpp, just to see if it was the better choice for my purposes. Couldn't get it to compile a POA-compatible servant so either I'm not paying enough attention and botched the installation at some point (which is likely), or I've laid my dirty paws on pre-pre-pre-alpha software. Anyway, even if I can't use orbit-cpp right now, I figure that if I write my servants for the POA, they ought to port to the future orbit-cpp system with minimal pain. I'd really like to use ORBit since

  1. it's used by the GNOME people, So It Has Got To Be Good,
  2. that also means continued development and
  3. I like the idea that there's only one set of libraries providing ORB functionality in my system most of the time.

Perhaps in time orbit-cpp will also mature and grow some of the standard CORBA services (you know, LifeCycle and its brethren) and all that stuff. In the mean time, omniORB looks like the ORB of choice for me, both philosophically and technically.

[1]Code word for "what I'm currently poking because I can't think of a better way to spend what little free time I have"

New Advogato Features

New HTML Parser: The long-awaited libxml2 based HTML parser code is live. It needs further work but already handles most markup better than the original parser.

Keep up with the latest Advogato features by reading the Advogato status blog.

If you're a C programmer with some spare time, take a look at the mod_virgule project page and help us with one of the tasks on the ToDo list!