Slashdot Mirror


User: cpeterso

cpeterso's activity in the archive.

Stories
0
Comments
2,527
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2,527

  1. Re:This vs. Electoral-Vote.com on Stanford Predicts The Presidential Election · · Score: 1


    a voter sees that bush has a 72%chance of winning, and decides that the country can't be wrong and goes along with it.

    The only wasted vote is a superfluous vote for the winner. Since I don't live in a swing state, I can vote my conscious (Libertarian Party) instead of holding my nose and voting for John Kerry (hoping for divided government to keep him and Congress in a political stalemate).

  2. my impression of C++ Builder on Borland C++Builder Revolt · · Score: 2, Interesting


    I just started using Borland's C++ Builder 1.5 Mobile Edition for Symbian/Nokia mobile phone software. So far, it sucks. It can't perform incremental builds: changing one .cpp file requires a clean build! It can't use the standard Symbian/Nokia SDKs. You have to install Borland's special Symbian SDKs, which seem to be missing some library files. The IDE supposedly has a remote debugger, allowing you to debug code running on an actual phone (just like Microsoft's Embedded Visual C++), but none of my co-workers could get it to work. It just freezes.

    I think there is a reason that Microsoft Visual C++ won out over Borland's C++ tools. :( Microsoft needs some REAL competition.

  3. Re:Cost is a great motivator for conservation. on Group Warns on Consumption of Resources · · Score: 1


    I agree that there are market externalities, "invisible" costs of resources the producer doesn't have to pay for. But part of the problem is that the US government HEAVILY subsidizes fossil fuels, making them appear cheaper to customers (even though they might be more expensive when you include the taxes that paid the subsidies). Plus laws that demand better gas mileage from cars just INCREASES the viability of oil because customers will get more value from the same gas. If everyone drove a Hummer, we'd run out gas sooner and gas would be more expensive sooner, thus making alternatives viable.

  4. Re:Dvorak vs Christensen on Microsoft Advised To Learn To Love Linux · · Score: 1


    John Dvorak's 15 minutes are up. He seems to be wrong about almost everything he predicts or promotes.

  5. Re:Oh, For Pete's Sake on U.S. Programmers An Endangered Species? · · Score: 1


    and this is what the article's author tells his buddies: "About a year ago I hired a writer on Slashdot to do my job. I pay him $0 out of the $12,000 I get. He's happy to have the work. I'm happy that I have to work only 90 minutes a day just supervising Slashdot. My employer thinks I'm telecommuting. Now I'm considering getting a second job and doing the same thing.

  6. Re:what's worse? on DNC and Voter Suppression · · Score: 1


    So you prefer fewer rather than more choices? That doesn't sound very democratic.

  7. Re:Reduce Demand, Not Supply on Zero-emission Power Plants Proposed · · Score: 1


    High prices reduce demand. When power becomes more expensive, people will naturally reduce their power use.

  8. Re:Still burning hydrocarbons though on Zero-emission Power Plants Proposed · · Score: 1


    A coal plant releases (into the air) in one day the same amount of radiation that a nuclear plant releases (in controlled, contained waste) in one year.

  9. Re:How is this diffrent? on Zero-emission Power Plants Proposed · · Score: 1


    There is also the theory that neo-cons ARE small-government conservatives, but they plans to get there by overspending now, thus forcing the state to later cut spending because of huge expenses and debts. This almost makes sense if you consider that most politicians favor spending money but fear cutting programs.

  10. Re:what he should have said... on Bush, Kerry, and Nader Respond to Youth Voter Questions · · Score: 1


    or: "I realised it was destroying my mind and changed my life." :)

  11. Re:you have it exactly backwards on Bush, Kerry, and Nader Respond to Youth Voter Questions · · Score: 1


    In a related example, I've read (blah: who needs sources? :) that there is a POSITIVE correlation between DARE classes and drug use. That is, DARE students are MORE likely to use drugs than control groups who did not take any drug classes! But when people wanted to stop funding DARE (because of its negative results), other people complained!

  12. Re:Bush response to sex-ed question on Bush, Kerry, and Nader Respond to Youth Voter Questions · · Score: 1


    The difference between murder and teen pregnancy: the murder victim did not choose to be murdered. The pregnant teen chose to not take steps to avoid pregnancy.

  13. Re:Does this shock anyone? on Libertarians Lose Case to Block Presidential Debate · · Score: 2, Funny


    If Bush loses this election I would expect history to look at the first debate as the reason why.

    If Bush loses this election, it's because of his debate performance and not all the past four years of his administration's BS?

  14. Re:Green-leaning libertarian? on Libertarian Badnarik an Election Spoiler? · · Score: 1


    yup, I have felt politically schizophrenic until I discovered a name for my afflication: Green ("classical") liberalism! However, I still feel politically homeless in the arena of US political parties..


    In Green Liberalism, the planet is highly valued; it is viewed as being important that the planet be passed down to the next generation unharmed. Green Liberalism accepts that the natural world is a system in a state of flux, and does not seek to conserve the natural world as it is. It does however, seek to minimise the damage by the human species on the natural world, and to aid regeneration of damaged areas.

    Classical liberalism opposes any regulation by the state, but Green Liberalism allows environmental regulation. The argument being "We do not own the planet, we borrow it from our children. Therefore, the planet is not ours to do with as we please, rather it is our responsibility to protect it from harm."

    Green Liberals advocate their brand of green politics over that of some Green Parties. The reason stated is that liberalism is repulsed by authoritarian politics, which the Green Parties do not explicitly reject.

  15. Re:Depends which conservatives, ala Bob Barr on Libertarian Badnarik an Election Spoiler? · · Score: 1


    Even though I am registered Libertarian, I think the only successful third-party will be a moderate, libertarian-minded splinter group from the GOP. You can already see it in motion: McCain, Schwarzenegger , Ron Paul. And was Ross Perot a Republican before he formed the Reform Party? These are GOP politicians are popular, but they don't toe the Bush/Cheney line. As a green-leaning libertarian, I would vote for such a party (though I am torn as to whether I would vote for the same candidates if they still ran under the GOP flag).

    I wonder what such party would be called?

    Badnarik needs to get on John Stewart's "Daily Show"! What is Badnarik waiting for?!

  16. Re:Too Many Toolkits on Interview with Chris Schlaeger from Novell/SUSE · · Score: 1


    Fortunately, most people do not have multiple versions of Microsoft Office installed side-by-side.

  17. Re:Several ways to view this on Congress Plans Space Tourism Regulation · · Score: 1


    If the FAA is supposed help the Common Man, then why are airports and flying such a horrible experience? The FAA allows big airline companies to maintain monopolies our air routes and airport landing rights.

  18. Re:All-time most-useful open-source program on Sought: 500 Great Lines Of Open Source Code · · Score: 1


    On which platforms does exit() return an error? I thought exit() returned void. And you should not should not return 0 or 1 from main(). You should return EXIT_SUCCESS or EXIT_FAILURE.


    #include /* for EXIT_SUCCESS and EXIT_FAILURE */
    #include /* for printf() */

    int main(int argc, const char* argv[])
    {
    printf("Hello, world!\n");
    return EXIT_SUCCESS;
    }

  19. Re:As a Conservative, this said it best for me. on Crawford Newspaper Endorses Kerry · · Score: 2, Insightful


    The Republican Party I used to know placed heavy emphasis on fiscal responsibility, which included balancing the budget whenever the state of the economy allowed it to do so.

    I'm not sure which Republican Party he was thinking of, but the Republican Party I know has not been fiscally responsible or balanced budgets for over 20 years: http://www.centrists.org/images/charts_and_graphs/ deficit_1980-2015.gif He must be confusing Clinton for a Republican.

  20. Re:AdWords may not be good enough on The Google News Dilemma · · Score: 1


    Sounds like Google needs a real-time AdSense. Does anyone do real-time ad personalization? hmmm! (wheels turning inside head) :)

  21. Re:Please remind me. on Part Of The Patriot Act Shot Down · · Score: 1


    Senator John Kerry not only voted for the Patriot Act, he wrote part of it. His older anti-privacy bills (requiring banks for reveal its customers' info to the FBI) had been shot down. When he was given the chance, Kerry slipstreamed his unpopular anti-privacy provisions in the Patriot Act. And that, kids, is how a bill becomes law...

  22. Re:Please remind me. on Part Of The Patriot Act Shot Down · · Score: 1



    yes: Russ Feingold of Wisconson voted against the Patriot Act.

  23. Re:Storage, not technology, is the problem on Amec Working on Long-Term Nuclear Waste Solution · · Score: 1


    worse than NIMBYs are BANANAs: Build Absolutely Nothing Anywhere Near Anything.

  24. Re:The acceptable cost of disposal? on Amec Working on Long-Term Nuclear Waste Solution · · Score: 1


    Cars kill around 40,000 people each year in the US alone.

    Why do we allow terrorists to have driver's licenses? With 40,000 terrorists driving their cars into people, you would think the mainstream media would have picked up on it..

  25. Re:Forget Nuclear on Amec Working on Long-Term Nuclear Waste Solution · · Score: 1


    and Seattle's water contains caffeine and London's water contains Prozac. true!