RE: Jakarta Newsletter - May 2002

2002-06-05 Thread Tom Copeland
Yup, this is great stuff. Kind of like kernel-traffic (http://kt.zork.net/kernel-traffic/latest.html) for Jakarta. Thanks much, Tom -Original Message- From: Leo Simons [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 9:09 AM To: Jakarta General List Subject: Re: Jakarta

RE: Differences between Structs and Turbine ???

2002-10-10 Thread Tom Copeland
Since we're OT already, I have to interject a good Jamie Zawinski database quote: === It was a hard sell, since he's a database person, and as far as I've seen, once those database worms eat into your brain, it's hard to ever get anything practical done again. To a database person, every

RE: [Fwd: Re: [eclipse-dev] Java compiler defaults changed]

2002-10-23 Thread Tom Copeland
Speaking of mass source code analysis, here's some of the Sourceforge projects and their unused code stats (unused locals, unused fields, etc): http://pmd.sourceforge.net/cgi-bin/webpmd.pl I thought about doing a similar page for Jakarta projects - just use the anonymous CVS access for each

RE: A Jakarta unused code scoreboard [was RE: [Fwd: Re: [eclipse-dev] Java compiler defaults changed]]...

2002-10-24 Thread Tom Copeland
things in POI which are like duh its an API of course its an 'unused' class -- or duh its a development utility or test case which isn't MEANT to be flexible --but these are actually pretty good! I forwarded them to the poi dev list. Thanks, -Andy Tom Copeland wrote: ...is up now

A Jakarta unused code scoreboard [was RE: [Fwd: Re: [eclipse-dev] Java compiler defaults changed]]...

2002-10-24 Thread Tom Copeland
: Re: [eclipse-dev] Java compiler defaults changed] on 2002/10/23 2:24 PM, Tom Copeland [EMAIL PROTECTED] wrote: Speaking of mass source code analysis, here's some of the Sourceforge projects and their unused code stats (unused locals, unused fields, etc

RE: running history command on apache CVS modules...

2002-10-30 Thread Tom Copeland
Hi Jon - cvs history -a lists repository access history for all users. You can grep or sed some module names out of there, but no guarantees. AFAIK, there's no built-in way to get a list of modules if all you know is the repository root - unless of course you have access to the machine and just

RE: running history command on apache CVS modules...

2002-10-30 Thread Tom Copeland
- Jon Froehlich UCal-Irvine Graduate Student [EMAIL PROTECTED] -Original Message- From: Tom Copeland [mailto:tom;infoether.com] Sent: Wednesday, October 30, 2002 11:10 AM To: 'Jakarta General List' Subject: RE: running history command on apache CVS modules

More fun with unused/duplicate/unnecessary import statements

2002-11-20 Thread Tom Copeland
Here's the same sort of report that I posted a couple weeks ago, but this time it includes stuff like: package foo.bar; import foo.bar.Baz; public class Buz {} i.e., imports from the same package. Numbers are about the same

RE: More fun with unused/duplicate/unnecessary import statements

2002-11-20 Thread Tom Copeland
This is really neat, could you add a percentage column though, just to save me from trying to do the math in my head? Thanks. --- Tom Copeland [EMAIL PROTECTED] wrote: i.e., imports from the same package. Numbers are about the same http://cvs.apache.org/~tcopeland

RE: More fun with unused/duplicate/unnecessary import statements

2002-11-20 Thread Tom Copeland
-generate bumbled patches per project fixing the unused imports? Just asking ;-) --DD -Original Message- From: Tom Copeland [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 2:17 PM To: 'Jakarta General List' Subject: More fun with unused/duplicate/unnecessary import

RE: More fun with unused/duplicate/unnecessary import statements

2002-11-21 Thread Tom Copeland
List Subject: Re: More fun with unused/duplicate/unnecessary import statements Tom Copeland wrote: Done: http://cvs.apache.org/~tcopeland/bad_imports_20_nov_02.htm How about adding xml-* projects into the list? Vadim Tom -Original Message- From

Due to popular demand, the bad imports report has been updated...

2002-12-06 Thread Tom Copeland
. Although I suspect this decrease will be asymptotic. Yours, Tom Copeland InfoEther 703-486-4543 -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: A Jakarta wiki?

2002-12-20 Thread Tom Copeland
Love 'em. Let's pick one and set it up... they're very cool tom -Original Message- From: Rodney Waldhoff [mailto:[EMAIL PROTECTED]] Sent: Friday, December 20, 2002 12:36 PM To: Jakarta General List Subject: Re: A Jakarta wiki? On Sat, 21 Dec 2002, Scott Eade wrote: So

RE: Forum Software.

2003-01-22 Thread Tom Copeland
-1 Well, once again I would like to bring up the concept of forum software for Jakarta. The reason I am bringing it up again is that mailing lists are intrusive and spammy. Are they? I can't agree... I find them non-intrusive (my mail client quiet files them in a folder) and non-spammy

RE: Forum Software.

2003-01-22 Thread Tom Copeland
1) The vast majority of Jakarta users will not want to be inundated with email on a daily basis. They either wont bother to read it or will unsubscribe. This will ultimately cost us hundreds of potential developers that might have wanted to work on a part of a project but didn't know

Here's the latest bad imports report....

2003-01-23 Thread Tom Copeland
...for all the Jakarta projects: Module LOC Bad imports Pctg = jakarta-oro 5777 0 0.00% jakarta-turbine-torque8383 1 0.01% jakarta-struts 15789 4 0.03% jakarta-turbine-maven

RE: nice

2003-01-29 Thread Tom Copeland
http://info.astrian.net/jargon/terms/g/godwin_s_law.html Tom -Original Message- From: Micael [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 29, 2003 12:20 PM To: Jakarta General List Subject: Re: nice I think the next improvement on who decides should mention guns,

Another unused import statement report is out...

2003-02-26 Thread Tom Copeland
unused imports are down 40% since last November, crikey! http://cvs.apache.org/~tcopeland/jakarta_bad_imports.htm Past reports can be found here - http://cvs.apache.org/~tcopeland/, and mad props to the xml-xalan project, who went from 1421 unused imports to 2 in the last month. Yours, Tom

RE: Another unused import statement report is out...

2003-02-26 Thread Tom Copeland
Basically. Except it's: Fred fred = (Fred)doSomething(); in some cases. Hmmm it seems like that local variable is unnecessary if it's not being used later on if this is a JUnit test and it's meant to ensure a certain type is return, seems like this: assertTrue(Whoa, doSomething

RE: Another unused import statement report is out...

2003-02-26 Thread Tom Copeland
Perhaps test code should not be analysed at all. In HttpClient we are rigorus about imports (and style in general) in production code, but are more lax in test code. Not that test code is in anyway unimportant, but just has a different purpose than production code. Yup, I'm the

RE: Another unused import statement report is out...

2003-02-26 Thread Tom Copeland
I still don't understand what the hubub about unused imports is about. Tapestry is pretty clean of them, but even if it wasn't, I wouldn't say that code quality suffered. I mean, there's some fractional difference in compile speed I guess, and a tiny difference in code comprehension that

Re: Another unused import statement report is out...

2003-02-26 Thread Tom Copeland
, Multitask Consulting Blog: http://www.freeroller.net/page/dion/Weblog Work: http://www.multitask.com.au Tom Copeland [EMAIL PROTECTED] wrote on 27/02/2003 06:57:50 AM: unused imports are down 40% since last November, crikey! http://cvs.apache.org/~tcopeland

Re: Another unused import statement report is out...

2003-02-26 Thread Tom Copeland
Historically Checkstyle focuses more on coding standards and checks for things like Javadoc quality, brace placement, use of whitespace, number of parameters in methods, etc. It does find unused imports and other QA checks. PMD has more of a bent on analysing the meaning of the source code,

Re: Free java profiler tools for open source projects?

2003-03-13 Thread Tom Copeland
. Anyone who remembers that thread, or knows about some freebie Java profiling tool for ASF projects? Thanks, /Steven -- Tom Copeland [EMAIL PROTECTED] InfoEther - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [Proposal] SuperXMailer

2003-04-01 Thread Tom Copeland
I'm +1 to Andrew's proposal. I think it is terrible that there is not an enterprise class open source solution in this field. All those poor businessmen, using hacked together solutions or proprietary technologies. To make success inevitable, let's start by drawing a bunch of UML diagrams!

Re: [Proposal] SuperXMailer

2003-04-02 Thread Tom Copeland
I hereby appoint myself Chief Architect. As my first act, I have completed our High Level Architecture. Here it is: --- - SuperXMailer - - - Other stuff - --- Rose .mdl files will be posted to [insert expensive

Re: Proposal: Jakarta should protect community email addresses

2003-07-01 Thread Tom Copeland
! He keeps sending me viruses! Tom Copeland [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [vote] XMLBeans to enter XML incubation [was: Re: Vote forXMLBeans proposal in the XML Project (was RE: Vote for XMLBeans proposal)]

2003-07-08 Thread Tom Copeland
Please cast your vote on the acceptance of the XMLBeans project for incubation in the XML.Apache project: [ ] I agree with and support this proposal (+1) +1 Tom Copeland (Maven) - To unsubscribe, e-mail: [EMAIL

Another installment of the Jakarta bad imports page is out...

2003-07-18 Thread Tom Copeland
, Tom -- Tom Copeland [EMAIL PROTECTED] InfoEther - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: compressed body in HTTP POST request; using Jabber for IM

2004-02-11 Thread Tom Copeland
On Wed, 2004-02-11 at 10:10, Adrian German wrote: One last question would be about the relative performance of compressed HTTP vs. technologies currently used for Instant Messaging such as Jabber. I know that this is too general but I'd be very interested to know if (in your experience, or

Re: [VOTE] HiveMind as a Jakarta sub-project

2004-03-03 Thread Tom Copeland
the ASF*. [X] +1 I support this proposal [ ] -1 I don't support this proposal [ ] 0 I abstain from voting for or against this proposal Tom Copeland - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

RE: [Watchdog] Dead?

2004-06-04 Thread Tom Copeland
On Fri, 2004-06-04 at 15:14, Tim O'Brien wrote: It is the invite people to be active part that interests me. I'm not saying I want an activity meter the likes of Sourceforge, but it is polite to our users to give people a sense of activity. That's one of the nice things about a GForge-ish

Re: Why wiki logs to [EMAIL PROTECTED] -- site-cvs@ might be better

2004-07-07 Thread Tom Copeland
On Wed, 2004-07-07 at 15:51, Martin Cooper wrote: On Thu, 8 Jul 2004, Tetsuya Kitahata wrote: Hi, Why wiki log (diff) messages would have occupied [EMAIL PROTECTED] It seems appropriate to me, since these messages are notifications of changes to the general (sic) Jakarta wiki. The