Search the web
Sign In
New User? Sign Up
straight_talking_java · Former JDJ Straight Talking list
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 47898 - 47927 of 57226   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
47898
Now that we're all on, you guys want to try for a weekly chat free-for-all at a mutually inconvenient time?...
Miles Parker
lodro_s
Offline Send Email
Sep 1, 2005
2:27 pm
47899
... But does Google/Jabber even support multi-user chat? It doesn't seem to show as an option in Gaim for those accounts (it does for Yahoo, AIM, and Sametime)...
Eric Rizzo
asmalltalker
Online Now Send Email
Sep 1, 2005
2:54 pm
47900
I've had to deal with nearly full files systems often enough that I wrote this tiny alias. `du -ks * 2> /dev/null | sort -nr | head' I normally alias it to hog...
Jon Strayer
jstrayer2
Offline Send Email
Sep 1, 2005
3:06 pm
47901
Here are a few I use 1) To find old files that use a lot of disk space: find / -mtime +300 -size +10000 -print 2> /tmp/junk -mtime is the last modified time...
DePasquale, Nicholas
zlt1
Offline Send Email
Sep 1, 2005
3:18 pm
47902
... I use this one a lot: search through a directory tree for all files (optionally restricted to any particular wildcard pattern) containing a particular...
Rosenstrauch, David
darose2
Offline Send Email
Sep 1, 2005
3:29 pm
47903
... coast, so it always seemed to fall at the same time as a meeting or iteration or release, so I think I only participated once or twice. I like the idea. I...
Curtis Cooley
TheDarkSavant
Offline Send Email
Sep 1, 2005
3:47 pm
47904
... Thanks for those, I just found a couple of files I can get rid of....
Jon Strayer
jstrayer2
Offline Send Email
Sep 1, 2005
3:53 pm
47905
Yea, I mean it can just be a drop in thing. btw, how does one set a custom idle message? I figured out the 'here' and 'away' msgs, but this one eludes me.....
Miles Parker
lodro_s
Offline Send Email
Sep 1, 2005
4:31 pm
47906
AFAICT Google doesn't support conference chats. There is a thread on the user forum asking for it. Bob...
Bob Foster
xmlbob
Offline Send Email
Sep 1, 2005
5:29 pm
47907
I have this class we use to tell if we have been sent a duplicate file to process. It computes a hash of the file and uses that as a key into a HashMap. In...
Jon Strayer
jstrayer2
Offline Send Email
Sep 1, 2005
11:17 pm
47908
... I don't know what might be causing it to continually grow (perhaps something about the complex way HashMap implements its internal storage), but I can...
Eric Rizzo
asmalltalker
Online Now Send Email
Sep 1, 2005
11:33 pm
47909
Let me understand this... When you start up, you deserialize your hash map, then when a file comes in you perform the following: 1. Put the file to your hash...
Victor Grazi
victor.grazi@...
Send Email
Sep 2, 2005
1:02 am
47910
simon.macdonald@... Yes, I found that very interesting too. In fact I had a guy from Australia willing to pay me for the address. ... -- Later... Simon...
Simon MacDonald
macdonst
Offline Send Email
Sep 2, 2005
12:55 pm
47911
I bet there is a simonmcdonald and a bob_foster (and bob.foster, etc) there though. I have the luxury of the one less 't' in my first name. ... -- Autonomous...
Scot Mcphee
scotartt
Offline Send Email
Sep 2, 2005
1:13 pm
47912
... From: straight_talking_java@yahoogroups.com [mailto:straight_talking_java@yahoogroups.com]On Behalf Of Scot Mcphee Sent: Friday, September 02, 2005 9:13 AM...
Rosenstrauch, David
darose2
Offline Send Email
Sep 2, 2005
2:02 pm
47913
find out then; i just sent you invite. (on that I note my invites are now up to 100). ... -- Autonomous Organisation http://www.autonomous.org/...
Scot Mcphee
scotartt
Offline Send Email
Sep 2, 2005
2:16 pm
47914
... From: straight_talking_java@yahoogroups.com [mailto:straight_talking_java@yahoogroups.com]On Behalf Of Scot Mcphee Sent: Friday, September 02, 2005 10:16...
Rosenstrauch, David
darose2
Offline Send Email
Sep 2, 2005
2:27 pm
47915
It's tough to say without more details. Why are you dereferencing the class and calling System.gc? Serialization should be independent of that. Where are...
gjfdh
Offline Send Email
Sep 2, 2005
9:49 pm
47916
We all know that Class.forName("java.lang.Integer") will return the appropriate Class instance for Integers. There is also the literal java.lang.Integer.TYPE...
Eric Rizzo
asmalltalker
Online Now Send Email
Sep 2, 2005
11:07 pm
47917
I found this thread on java.sun.com (someone wanting to do exactly what I want to). Interesting work-around near the bottom, but not good enough for me. ...
Eric Rizzo
asmalltalker
Online Now Send Email
Sep 2, 2005
11:22 pm
47918
ads? the ads are not intrusive at all. as an ex-squirrelmail user, i can tell you they are in now way comparable either! I ditched *thunderbird* to switch to...
Scot Mcphee
scotartt
Offline Send Email
Sep 2, 2005
11:32 pm
47919
Depending on the size of the map, you might want to serialize it in an ASCII format instead. That would eliminate any peculiarities and probably be performant...
Rod McChesney
rod_mcchesney
Offline Send Email
Sep 2, 2005
11:49 pm
47920
You could also, possibly, be seeing growth at the deserialization point. The readResolve serialization method can be used to normalize objects. If there's a...
gjfdh
Offline Send Email
Sep 2, 2005
11:57 pm
47921
I had a similar issue a long time ago, but no real resolution. If the darn method Class.getPrimitiveClass(String) were public, I think you'd be pretty much...
Miles Parker
lodro_s
Offline Send Email
Sep 3, 2005
1:10 am
47922
The only time I ever even notice the adds is when I think "I wonder if google has anything interesting about this?"In which case it saves me a manual search....
Miles Parker
lodro_s
Offline Send Email
Sep 3, 2005
1:12 am
47923
... Private (or "package") methods are definitely among the most mis-used features of the language. S$#t, it really annoeys me when someone has marked...
Eric Rizzo
asmalltalker
Online Now Send Email
Sep 3, 2005
4:05 am
47924
Have to disagree here. Private has a definite use and can oft (dare I say most) times be preferred as once you make something public then so it must remain for...
Victor Grazi
victor.grazi@...
Send Email
Sep 4, 2005
1:38 am
47925
... You're forgetting about protected scope. Beyond that, I don't buy the argument about once something is public you can't change change. Very few of us are...
Eric Rizzo
asmalltalker
Online Now Send Email
Sep 4, 2005
4:34 am
47926
Ok. We can agree to disagree - I think you are referring to a case where libraries are published externally in which case I would largely agree. I would say...
Victor Grazi
victor.grazi@...
Send Email
Sep 4, 2005
1:42 pm
47927
Gunter, Often, it's cheaper to use an external gateway. They use the international roaming platform for sending messages to all worldwide telecom operators...
Geert Van Damme
darlingvandamme
Offline Send Email
Sep 5, 2005
10:10 am
Messages 47898 - 47927 of 57226   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help