The meetup is still on for May 19 @ 7:00 PM. Since I didn't get anyone volunteering to be a faculty sponsor, I'm working on an alternative meetup location....
The May 19th @ 7:00PM Java meetup will be at Honolulu Community College's Pacific Center for Advanced Technology Training (PCATT) room #514. From Jerry Cerny,...
One of the things we talked about in the last meeting was a 5 minute segment for each member to talk about work or interests. I'm currently working on an...
Perfect! In addition to talking about it, feel free to bring diagrams or code snippets. Unfortunately, you will only have 5 minutes but hopefully we can...
Kecap, Just wondering, why implement JMS yourself when there are so many out there. Getting GMD and the other requirements are quite a bear. Is it for fun or...
I know about myself, ben, eric, and I believe a professor from UH. I've gotten several other emails from people wanting to make sure it is at HCC and not the...
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the honolulu-java-meetup group. File :...
honolulu-java-meetup@...
May 20, 2003 10:58 am
12
Just some ideas for serialization per meeting on 19th May a) Parsing the stream format b) Writing serialized objects from other languages c) Optimizing...
These sound good. Here is the problem that I mentioned at the meeting: Item 55 in Block's Effective Java book gives a StringList class which is a doubly linked...
Dr Freese, I made a simple test for this problem (which I posted here under files) to see if overriding the read/writeObject methods would alter the object...
Eric, I uploaded the file, sorry I didn't do that originally. The difference in our examples is that my clone is a *very* shallow clone. Namely all of the ...
Dr Freese, I saw your posting. The problem with the supplied source is that your are not comparing the serialized String data, but the newly instantiated...
Eraticus and Dr. Freese: Perhaps this is a good example of religiously implementing the equals method (and also the hashCode method as well) in your objects....
Hi Eric, My point is that the Object graph of the reconstructed object is not isomorphic to the original. (The Java Programming Language, 3rd ed. p. 406, says...
Eric, GREAT HACK!! I love it. You 1. do some surgery on the object. 2. put it in the object stream so it can be properly identified (and the surgery cuts out...
Ralph, Indexing the Entrys in a Map is a great idea. I have one more version which does this on the files dir. Eric ... could ... will ... expands ... and ... ...
Mr Buruzaemon, I agree completely. In addition, I'd add: clone () -- deep copies are always needed. suid -- speeds up serialization, and aids in evolution. ...
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the honolulu-java-meetup group. File :...
honolulu-java-meetup@...
Jun 4, 2003 9:46 pm
23
The next meetup will happen June 16th at 7:00PM at DigitalNet's Kailua office. I've added driving directions in the files section: ...
... Kailua ... 20Directions.pdf ... Hey Don, I tried the link supplied above and it doesn't seem to work... I'd like to attend the next meeting, but need...
yea... I just got a link to a PDF file with directions... Thanks! ... to the ... if that ... <mrdon@t...> ... meetup/files/Driving% ... by Dr. ... other ... ...
Reminder from the Calendar of honolulu-java-meetup
http://groups.yahoo.com/group/honolulu-java-meetup/cal
Java Meetup at DigitNet Kailua Office
Monday June...
Yahoo! Reminder
reminders@...
Jun 9, 2003 6:55 pm
28
After Dr Freese's discussion, I will be discussing the internal format of a serialized object stream. Shouldn't take more than 15 minutes. These are the...
See, this is what I love about the so-called hardcore Java programmers. They'll beat you up for hours on end because yer code isn't object-oriented enough,...
Mr Tennis, Thanks for the feedback. Mr Tennis absolutely right. Hacking the serialization stream bypasses all object constructors, and is tantamount manually...