Slashdot Mirror


User: tcopeland

tcopeland's activity in the archive.

Stories
0
Comments
1,760
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,760

  1. Re:Success not solely a function of genetics on Will Genetic Engineering Kill Us? · · Score: 1

    Yup, he was a good guy - everybody had a lot of respect for him. Pretty cool.

    Yours,

    tom

  2. Re:This WILL happen! on Will Genetic Engineering Kill Us? · · Score: 1

    > These cells will combine on-the-fly

    Will they use a Class.forName() or a dynamic proxy? Or maybe they'll all implement Combinable?

  3. Re:Success not solely a function of genetics on Will Genetic Engineering Kill Us? · · Score: 1

    My high school baseball coach (Dick Bankston) told me once:

    Tom, I wasn't a great baseball player. I was OK, but not great. But I worked very hard and got the most that I could out of what talent I had. So I was able to play Div III college ball and have fun without being disappointed about not being able to go professional. I knew I had done the best I could with what I had.

    He was a good guy and I thought his attitude was pretty cool.

    Tom

  4. Re:Exactly! on Too Much Free Software · · Score: 1

    Quite so. I recently threw away about 400 lines of Java code from PMD and replaced it with 10 XPath expressions. Less code, same unit tests, same results. All good stuff.

    Yours,

    Tom

  5. Re:We do it for fun, don't we? on Too Much Free Software · · Score: 1

    > 95% of OSS projects are neither

    Hmm.... but the level of effort required to start an OSS project is nil. I mean, anyone can put up a web page saying "I'm writing an open source PhotoShop!" and then let it sit.

    So counting noses and calculating percentages in the open source world doesn't really get you very far...

    Yours,

    Tom

  6. Re:Use some helper code on REST vs. SOAP In Amazon Web Services · · Score: 1

    This is so true. Your client code should look something like:

    Client client = new XMLRPCClient("host", "userid", "passwd");
    client.doStuff();

    Abstract all the underlying protocol stuff behind that Client interface and your code will be much easier to read and understand...

    Tom

  7. Re:This book misses the mark on Build Your Own Database-Driven Website · · Score: 1

    Fair enough, there's certainly a place for both ways of doing it... and you can always refactor stuff into classes if it becomes necessary to bolt on XML-RPC or SOAP or whatever...

    Yours,

    Tom

  8. Re:This book misses the mark on Build Your Own Database-Driven Website · · Score: 3, Interesting

    Hmm.... I don't question your experience... but I've found that if a server app is written using classes and such it's much easier to go back and plug in a SOAP wrapper to the "business objects".

    For example, GForge has a bunch of classes that we've wrapped via SOAP, so now a Java client can do something like:

    Client c = new Client("my.gforge.host", "myproject");
    client.login("tom,"fiddlesticks");
    Bug[] bugs = client.getOpenBugs();

    Fun stuff!

    Yours,

    Tom

  9. Re:nice hardware on Ellison: Linux Will Soon Decimate MS Windows · · Score: 1

    And 2 GB of RAM... happy days!

  10. Re:What does it take... on Ellison: Linux Will Soon Decimate MS Windows · · Score: 1

    I'm running 1.01 on my workstation and it's fast as all git out. On the other hand:

    [tom@hal javacc]$ cat /proc/cpuinfo | grep Xeon
    model name : Intel(R) Xeon(TM) CPU 2.80GHz
    model name : Intel(R) Xeon(TM) CPU 2.80GHz
    model name : Intel(R) Xeon(TM) CPU 2.80GHz
    model name : Intel(R) Xeon(TM) CPU 2.80GHz
    [tom@hal javacc]$

    tom

  11. Re:Sourceforge / Savannah / Debian SF/ GForge HUH? on Debian's Own SourceForge · · Score: 1

    Hm.... that's true in some sense. I mean, the user/group creation is done via a cronjob; it's not manual, but it's not immediate, either. I suppose you could set the cronjob to run every 5 minutes, but there would still be a lag.

    I haven't used the LDAP code, so I can't speak to that...

    Yours,

    Tom

  12. Re:G-Forge on Debian's Own SourceForge · · Score: 1

    It will in the not so distant future... see Lo-lan-do's post here:

    http://alioth.debian.org/forum/message.php?msg_id= 105

    Yours,

    Tom

  13. Re:Sourceforge? on Debian's Own SourceForge · · Score: 2, Informative

    Got suggestions? Head on over to GForge and send 'em in... also, what do you think of the GForge default theme?

    Yours,

    Tom

  14. Re:Sourceforge / Savannah / Debian SF/ GForge HUH? on Debian's Own SourceForge · · Score: 2, Informative

    Hmmm.... I'm not sure what you mean. GForge does support CVS access (albeit via a series of cron jobs that create the repositories and CVSROOT/readers files and such) and LDAP integration (although I've never used it since storing user info in the database works fine).

    The above sentence is not a LISP expression, although it comes close.

    Yours,

    Tom

  15. Re:Why WOULD you use classes and objects? on PHP MySQL Website Programming · · Score: 1

    Right on. It also lets you bolt on an XML-RPC or SOAP interface later on, which is what we've done with GForge.

    Tom

  16. Re:Sourceforge / Savannah / Debian SF/ GForge HUH? on Debian's Own SourceForge · · Score: 3, Informative

    GForge is definitely the "main line" of SourceForge development now... with many new features, including nascent SOAP support, better task management, and an active development community, it's definitely worth a look-see if you need a project management tool.

    Here's the GForge install I support - CougaarForge.

    Yours,

    Tom

  17. Re:And, if you want it right now... on Introduction to PHP5 · · Score: 1
    Yup, Ruby's pretty cool. This is all generated by Ruby... fun stuff!

    Tom

  18. Re:Of course not on Too Cool For Secure Code? · · Score: 1

    sed -e 's/23/22/g'

    Assuming you meant SSH...

  19. Re:Sweet! on Andalucia Adopts Free Software · · Score: 1

    Point... counterpoint!

    I enjoy seeing these articles. I think it's neat that a government would make such a decision, and I'd be especially interested in follow up articles that would say "we ran into these problems which we solved using this program".

    And you're right, it wouldn't be as interesting if it were Win2K. I suppose that's because Win2K isn't a community effort...

    Yours,

    Tom

  20. Re:Uhhhh on Designers - Are You Influenced By What You Read? · · Score: 1

    "Dead Souls" is great stuff. If you like that, you might also want to read some of the books by Mikhail Bulgakov - "Heart of a Dog", especially.

    Yours,

    Tom

  21. Re:Blah, everyone knows, we're just too lazy on Scott Trappe's Answers About Code Quality · · Score: 2, Interesting

    Wellll.... maybe.... but I think that for many Java projects, at least, a culture of JUnit tests is developing.

    Seeing a JUnit report page like this certainly gives me a bit more confidence in a project...

    Tom

  22. Re:Independent code checking on Scott Trappe's Answers About Code Quality · · Score: 4, Interesting

    Yup, code reviews are fraught with pitfalls.

    Here's another scenario: you write a class, it gets reviewed by someone and they suggest you use a Factory pattern. You rewrite it to use Factory, and then it gets reviewed by someone else and they say "why are you adding in that Factory pattern? that just makes it more complicated to use - you're over abstracting!". Both reviewers are right in a way... it all depends on how the class is being used.

    There's a nice discussion of alternatives to code reviews here.

    tom

  23. Re:Appropriate Bugs or not... on Bug Reporting Etiquette · · Score: 1

    True, many bug reports can be translated as "I didn't read the manual".

    Nevertheless - there are good ways to handle these. On the info-cvs list there's a fellow who deals with this sort of thing by posting a link to the appropriate FAQ entry or manual page. For example, today someone asked "hey, this -z3 parameter to cvs isn't documented!". Rather than flaming the fellow, Larry just posted a one line response to the exact section of the CVS manual that talks about compression levels. Concise, helpful, and the user will probably get the point that "ah, perchance I should look thru the manual more next time." All good.

    Yours,

    Tom

  24. Re:No good answer on What Software Do You Use for Unix Backups? · · Score: 1

    We use BRU on a couple Linux servers here; seems to work well. Backups are quick and restoring isn't too much of a pain...

    Tom

  25. Re:XPath makes XML bearable.... on XML Co-Creator says XML Is Too Hard For Programmers · · Score: 1

    PMD isn't a database... it's a static code analysis tool.

    Yours,

    Tom