Slashdot Mirror


User: chad.koehler

chad.koehler's activity in the archive.

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

Comments · 182

  1. Re:It's amazing how out of touch he is on David Lowery On the Ethics of Music Piracy · · Score: 1

    David Lowery suggests that the "ethical and legal" amount for ownership of those songs however is only $2139.50 (it's in the article, stated several times).  Unfortunately, David doesn't seem to understand that there is nowhere that the music is actually available at that price (approximately $.20 per song).

  2. The Moral Amount... on David Lowery On the Ethics of Music Piracy · · Score: 3, Interesting

    In this article David Lowery attempts to get readers on his side of the fence by discussing what would have needed to be paid to "ethically and legally" support the artists, specifically for the 11,000 songs that Emily White has in her collection.  His stated value for those songs, $2,139.50.

    That is approximately $0.20 per song.  I think everyone would agree that is a fair price.  Unfortunately, there is nowhere that you can actually purchase music at anywhere near that price.

    David Lowery suggests that $2,139.50 is fair, and yet then attempts to direct Emily to iTunes, where that collection would likely cost exactly $10,890, assuming an average cost of $0.99.

  3. Threaten a law suit on Student Expelled From Indiana High School For Tweeting Profanity · · Score: 2

    As someone who has dealt with the enormity of school idiocy, let me just state that a quick call to the family lawyer will get all this straightened right out.  If threatened with a law suit, the school will buckle.  Also, if this is what constitutes an expulsion these days, I never would have made it out of grade school.

  4. Re:Uh...right on "World's Most Relaxing Music" Composed · · Score: 1

    Reminded me of this:  http://xkcd.com/699/

  5. Re:Programmers are not designers on GNOME vs. KDE: the Latest Round · · Score: 1

    I'm not disagreeing with your points at all, I was simply responding to the parent.

    "Follow the success of the web. Use HTML+JavaScript. Let the web designers who already have a suite of awesome tools to come in and design the desktop. Allow users to install different designs (similar to add-ons/extensions in Firefox). Stop holding our desktops hostage because only a select few people actually understand the GNOME/KDE codebase well enough to code their ideas."

    Specifically this was worded to say that GNOME 3 was not customizable, I simply pointed out that GNOME 3 does exactly what is being proposed.  Now, the fact that the majority of users will not be able to customize it is a shortcoming, but if it gets popular enough I'm sure there will be add on tools that enable customization.

  6. Re:Programmers are not designers on GNOME vs. KDE: the Latest Round · · Score: 1

    GNOME 3 is fully customizable via Javascript.

  7. Re:Shipping Costs, Etc. on Every Day's a Tax Holiday At Amazon · · Score: 1

    Obviously there are significanly more zip codes than states,there are also much more factors to eal with than that.  To tac this properly there would have to be a registry of all potential addresses I the nation, special rules for PO boxes etc.

    For example, I live in a small municipality that has an additional tax rate, surrounded by mostly unincorporated portions of the county.  However, we are small enough to not have our own zip code.  How would I be taxed?  Tax everyone in a zip code at the highest rate?  The lowest?

    This situation is not unique, and oversimplification of the rules means it's still not "fair" for everyone.

  8. Re:Shipping Costs, Etc. on Every Day's a Tax Holiday At Amazon · · Score: 1

    <quote>... How hard would it be to add sales tax based on the zip code of the delivery address?...</quote>

    Significantly harder then you make it sound.  There are a lot of zip codes in the country, each with tax rates changing year to year and potentially more often.  Who maintains this database?  Where does the information come from originally?

    What everyone seems to be missing on, is the fact that Amazon does not have to PAY sales tax.  No retailer pays sales tax at the time of the consumer purchase.  Retailers CHARGE sales tax to the consumer.  It is the consumer's responsibility to pay this tax.  Retailers collect sales taxes and it goes directly to the state, this is done because it is more efficient (and reliable) to force the retailers to keep track of the amount of taxes that should be paid (by consumers), then to rely on every individual consumer to track their purchases and pay their fair share.

  9. Re:Hmmm .... on Mystery Missile Launched Near LA · · Score: 1

    Hank:  Uh, Dad, this is Minh, he's....  Japanese

    Cotton:  No he aint....  He's Laotian.

    One of the funniest lines ever.

  10. Re:Try whatever you got in the house. on Fun With an Induction Cooktop? · · Score: 1

    This was a localization issue.  In this context (in the US at least), bullet == cartridge.

  11. Re:Induction Heating of Block Ice = Glowing Red Ho on Fun With an Induction Cooktop? · · Score: 1

    Most BBs are made of lead -- wouldn't that be a bad idea, just in general?

  12. Re:Congrats! on EPIC Files Lawsuit To Suspend Airport Body Scanner Use · · Score: 2, Informative

    The long term health effects of the backscatter are not known.  This is effectively a low dose of radiation, applied over your entire body.  For someone who frequently travels, this could be a legitimate concern.  Also, the effects of radiation on bodies still in development is unknown.  If it became necessary to travel with my kids, I would absolutely not allow them to go through the scanner.  However, as it stands this means that I would have to subject my kids to a very thorough pat down by some screening personnel; someone with whom I am not familiar, and have no knowledge of their qualifications.  Unacceptable.

  13. Re:Wasted opportunity on College Student Finds GPS On Car, FBI Retrieves It · · Score: 5, Funny

    Or mail it to Pakistan via Fedex.

  14. Dont' call your lawyer? on College Student Finds GPS On Car, FBI Retrieves It · · Score: 5, Insightful

    When the FBI tells you "Not to worry" and "Don't call your lawyer", do you want to guess who the very next person you should call is?

    Hint:  It's not your mom.

  15. Re:Phone home? on Canonical Begins Tracking Ubuntu Installations · · Score: 1

    Welcome to the voter apathy party!

  16. Re:But this does actually cost them money on For-Profit, Illegal Movie Download Sites Threaten MPAA · · Score: 1

    I'm trying, but Trainspotting and The English patient aren't showing up on any trackers :(

  17. Re:As they should be. on Pentagon Seeking Out Wikileaks Founder Julian Assange · · Score: 1

    Don't let the door hit you on the way out!

  18. Re:1.5 Trillion?! on RIAA Says LimeWire Owes $1.5 Trillion · · Score: 5, Informative

    2 Billion is pretty far off 1.5 Trillion.

  19. Re:How many ways are there to do simple things? on Why Computer Science Students Cheat · · Score: 1

    Several?

    #include <iostream>

    class NumberPrinter
    {
    public:
       NumberPrinter() : n(1)  {cout << n++ << "\n";}
       ~NumberPrinter()        {cout << n++ << "\n";}

       NumberPrinter& operator*()                      {cout << n++ << "\n";   return *this;}
       NumberPrinter& operator,(const NumberPrinter&)  {cout << n++ << "\n";   return *this;}
       NumberPrinter& operator!()                      {cout << n++ << "\n";   return *this;}
       NumberPrinter& operator++()                     {++n; return *this;} // haha
    private:
       int n;
    };

    int main(int argc, char** argv)
    {
       NumberPrinter plagerism_sucks;
       *plagerism_sucks,plagerism_sucks,plagerism_sucks,plagerism_sucks;
       !plagerism_sucks,!plagerism_sucks;
       ++plagerism_sucks;
       cout << "9\n";
       return 0;
    }

  20. Re:Anonymous Coward on A Video Ad, In a Paper Magazine · · Score: 1

    No, you're not. There's a lot going into the manufacture and distribution of this, only to be put into a periodical (not even a good one) to be thrown away in a week. My earth hurts....

  21. Re:TCP? on Guaranteed Transmission Protocols For Windows? · · Score: 1

    You're not making this up, indeed. I hear this a lot. It does not make it right though.

  22. Re:Scary that they sold the disk at all on Unclean Military Hard Drives Sold On eBay · · Score: 1

    But if you use /dev/urandom you never know WHAT they'll be able to get off of your harddrive! For you know you SS# could be there! ;)

  23. Re:PS3 != Xbox 360 != Wii on Game Publishers Pressuring Sony For PS3 Price Cut · · Score: 1

    The Xbox360 uses a standard HDMI cable.

  24. Re:I don't see how a PS3 price cut is "long overdu on Game Publishers Pressuring Sony For PS3 Price Cut · · Score: 1

    Speaking of cherry picked statistics:

    22m / 2.5 = 8.8 28m / 3.5 = 8

    While your overall point still holds, it seems like your statistics were "cherry picked".

  25. Re:Never explain by conspiracy . . . on When Teachers Are Obstacles To Linux In Education · · Score: 1, Troll

    I agree. Hans Reiser IS an excellent role model!

    Actually, there are good and bad role models in everything. There are some VERY good role models working in closed source shops. Herb Sutter works for Microsoft.