Slashdot Mirror


User: kevin_conaway

kevin_conaway's activity in the archive.

Stories
0
Comments
657
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 657

  1. Re:Can I just point out on ECMAScript 4.0 Is Dead · · Score: 4, Interesting

    [Can I just point out] That Javascript as a development platform, as it seems to have become, is evil. It's just horrible from an efficiency, performance, security and architectural point of view. It seems to be the future.

    You can point that out, but you'd be wrong. JavaScript hasn't recently "become" anything. The last major revision that all browsers supported was in November 2000.

    It is a beautiful, expressive and quite powerful language that is just now starting to shine after years of being misunderstood by people like you.

  2. Crockford and Standards on ECMAScript 4.0 Is Dead · · Score: 5, Informative

    I invite everyone to read Douglas Crockford's latest post on the YUI blog entitled: The Only Thing We Have To Fear Is Premature Standardization

    He gives some insight into how ES4 got to where it is today and its impact on standards in general

  3. Re:Who Cares What Language, It Reeks of Poor Desig on Why COBOL Could Come Back · · Score: 2, Informative

    Thread here. The gentleman in question is Tom Harper.

  4. Re:Canvas Element / API on Firefox 3.1 Alpha "Shiretoko" Released · · Score: 2, Informative

    I don't think I'm understanding what this is. What W3C specification exists for a Javascript drawing API?

    HTML 5

    I don't want Firefox embracing and extending web protocols. The other changes are in line with W3C specs, but this sounds like a cool whizzbang thing that developers might like. I don't want that stuff in there. If you want a drawing API, use Flash, or Java, or something else.

    Thankfully, we don't have uninformed luddites like yourself on the development staff

  5. Formatting vs coding practices on Best and Worst Coding Standards? · · Score: 2, Informative

    We found that it doesn't really help to enforce a *formatting* style on developers because everyone has their own. The only thing you really should be enforcing is tabs vs spaces (and it should be spaces) because mixing the two can produce some really ugly results.

    We have a much better rate of return running tools like JSLint or PMD to catch issues that are syntactically valid but will be sure to cause problems down the line

  6. Re:Good software on PhD Research On Software Design Principles? · · Score: 3, Insightful

    So you are saying that open source software that isn't written for a paying customer is not good?

    No, I'm not saying that. I should have worded that sentence as: A principal or group of principals who care about the future of the software and is active in its development

    There must be some end user or group of users who will continue to drive the needs of a given piece of software and help it evolve.

  7. Good software on PhD Research On Software Design Principles? · · Score: 4, Insightful

    Good software has:

    1. Continuous integration
    2. A large and useful suite of tests that are run during #1
    3. A paying customer who cares about the future of the software and is active in its development
    4. A manager who understands the full software development life cycle
    5. Developers who understand the business domain and problem the software is designed to solve
  8. Re:Links please? on Community Choice Award "Most Likely to be Shut Down By Govt" · · Score: 3, Funny

    Had you read the summary, you'd know that the poll has already been conducted and that this post is merely announcing the winners

    Oh the irony of this post in light of how wrong I am.

    I apologize and retract my statement

  9. Re:Links please? on Community Choice Award "Most Likely to be Shut Down By Govt" · · Score: -1, Flamebait

    I hate to whine-- well all right, in point of fact I love to whine-- but this poll is going to be a little difficult to do without links to the projects.

    I can see that. Its also apparent that you hate to read.

    Had you read the summary, you'd know that the poll has already been conducted and that this post is merely announcing the winners

  10. Yes on Do Static Source Code Analysis Tools Really Work? · · Score: 4, Informative

    Add me to the Yes column

    We use them (PMD and FindBugs) for eliminating code that is perfectly valid, yet has bitten us in the past. Two Java examples are unsynchronized access to a static DateFormat object and using the commons IOUtils.copy() instead of IOUtils.copyLarge().

    Most tools are easy to add to your build cycle and repay that effort after the first violation

  11. Re:Code Reviews and Coding Conventions on Google Shares Its Security Secrets · · Score: 4, Informative

    Tools like PMD help with this .

    We ended up getting bitten by bugs like unsynchronized access to static DateFormat object so we wrote used a PMD rule to fail our build if anyone does such a thing. We have other rules that curb the use of IOUtils.copy (instead of copyLarge).

    I highly recommend using some sort of static analysis as part of your CI process

  12. Re:Then you had better lower those prices! on Sony Thinks Blu-ray Will Sell Like DVDs by Year End · · Score: 5, Insightful

    If you're going mainstream, you had damn sure better get those prices into the mainstream. Japan made be filled with technophiles who are willing to spend big money on the latest tech of the moment. But most of the rest of world isn't.

    Average people will not spend $400 on new technology especially with an economic recession looming over us.

  13. Knees on Women's Attractiveness Judged by Software · · Score: 2, Funny

    I thought the true measure of a womans attractiveness was the pointiness of her knees

  14. Clandestine? on Clandestine Operations at Google · · Score: 5, Insightful

    I don't see anything clandestine about a software/hardware company providing software/hardware solutions to the Federal government, especially when said information is printed in a nationally recognized newspaper and linked on a major news aggregator.

    It seems more like an opportunity to get the Google haters and rumor mongers fired up.

  15. Re:Bugzilla! on Practical Experience As a Beginning Programmer? · · Score: 5, Insightful

    I've often heard it said that open source experience is useless on resumes, because then employers of developers for closed source projects (regrettably the majority of software jobs) will think you are so kind of hippie rebel and they won't trust you keeping their code under wraps.

    An excellent sign of a company you don't want to work for. If an interviewer ever said something to that effect, I would thank them for their time and leave.

  16. More like on Understanding Art for Geeks · · Score: 4, Insightful

    More like art for people who waste enough time on the internet to know the current memes and cliches.

  17. Solving their problems on Promoting FOSS to People Who Don't Care · · Score: 1

    Do they have current problems with the software they're using? If so, explain how a different piece of software will be able to alleviate those problems. If you're trying to get them to switch software just because its proprietary vs open source, well you should probably just leave them be.

  18. Re:who doesn't know about Refactoring? on Refactoring: Improving the Design of Existing Code · · Score: 1

    I don't mean to be a wet blanket, but the book has been out for quite some time -- checking Amazon, July of 1999. It is pretty great, and I would recommend it to those who somehow managed to miss it up to this point, but a review almost nine years later? Slow news day much?

    I see where you're coming from but I think this book is so fundamental that the article will be worth it if one new person reads the book and takes its advice to heart.

    The book is 9 years old and its concepts are still relevant and practical today. That says a lot about a tech book

  19. Re:Refactoring sucks on Refactoring: Improving the Design of Existing Code · · Score: 1

    You seem to be making the mistake of thinking that refactoring means "making ugly software prettier" when a closer meaning is "making bad software better"

  20. Re:A problem with 'refactoring' on Refactoring: Improving the Design of Existing Code · · Score: 1

    While I'm glad someone wrote a book on refactoring methodology, in my experience what we need is a book which describes how to write "simple" code: code that is just as complicated as it needs to be, and no more. And a book which also describes how to simplify overly-complicated code, how to pick simpler techniques, and how to manage programmers who have an "itch" so they go scratch it somewhere else--I think that would be a much more useful book. It's easy to add complexity. It's hard to simplify.

    If you read the book, you'll find that Mr. Fowler agrees with you.

    Read the TDD book by Beck. In it, he describes that TDD methodology in terms of making the code simple in terms of doing only what it should and no more.

  21. Re:Love refactoring but primary problem is legal on Refactoring: Improving the Design of Existing Code · · Score: 1

    The primary problem is not legal, but your management.

    Improving your software is always a benefit, whether that benefit is visible to the customer or not is an exercise for your management to handle. By improving your code, you make it easier to maintain which in turn allows more NEW features to be added to it with less headaches.

  22. Re:it's not even cutting corners on Gaming Google a Gateway To Crime? · · Score: 5, Insightful

    A person with true moral fiber does not act based upon the laws, but acts based upon his code of ethics at all times. For example, it is clear that beating the living tar out of someone that just viciously beat and stole a purse from an old woman, is a very moral act

    Thats actually not clear at all.

  23. Carbon footprint on UPS Using Software To Eliminate Left Turns · · Score: 1

    I heard about this a while ago but in terms of the "green" advantage it gave them. They save a lot of money on gas and reduce their carboon footprint by not idling at red lights waiting to make a left turn.

  24. Re:The Importance of Privacy on Online Sex Offender Database Leads To Murder? · · Score: 2, Funny

    I am, in fact, a child molester.

    BURN HIM!

  25. Re:Ham's day is over, probably on Ham Radio Operators Are Heroes In Oregon · · Score: 1

    Perhaps that's because they've had their houses since before subdividers began putting a stop to amateur radio with covenants against antennas.

    Its my understanding that only the FCC can place limits on radio equipment such as antennae. Can someone correct me?