Slashdot Mirror


User: scotch

scotch's activity in the archive.

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

Comments · 1,593

  1. Re:A Christian viewpoint on A Field Trip To the Creation Museum · · Score: 1

    I've always found the fact that religion is cultural, almost inherited, to be one of the most damning pieces of evidence against it.

  2. Re:Boost? Ugh on Memory Checker Tools For C++? · · Score: 1

    However there may or may not be whitespace between those two tokens, so a simple text-search may not be able to find it without great rigmarole (you'd have to have a search capable of finding tokens separated by any amount of whitespace, such as a regex).

    Any programmer who can't do this without thinking hard should check in his keyboard.

  3. Re:Sticks and Stones on FCC Indecency Ruling Struck Down · · Score: 1

    You are deluded. The propensity to cuss is orthogonal to intelligence.

  4. Re:Censorship is good? on FCC Indecency Ruling Struck Down · · Score: 1

    Besides which, fuck and shit and all those words have been common English usage for over a thousand years. It's only been about a century and half since the Victorians decided legs were limbs and people never defecated. Enough. I'm tired of toeing Victoria's line. The bitch is dead, we don't have to be afraid anymore. The words only have power because hysteric lexiphobes insist that they do. And the biggest "moralists" always turn out to be the biggest wankers anyway, so I really don't care what the Guardians of Nice Mannerisms have to say anyway. They'll be in the docket for child molestation soon enough.

    Fucking well put.

  5. Re:Censorship is good? on FCC Indecency Ruling Struck Down · · Score: 1

    Your two year old watches live news feeds? And you worry about him hearing the word "fuck"?

  6. Re:Here's a humorous solution.... on Shutting Down Annoying Recruiters? · · Score: 1

    Funny, reminds me of a kids in the hall skit. "Would you like to beat me up now?"

  7. Re:Distribution Wars? on Fedora 7 Released · · Score: 1

    Wow, just wow.

  8. Re:"Altruism" is rational and selfish ... on The Drive For Altruism Is Hardwired · · Score: 1
    Whoa - I don't know how these researchers could have missed maslow's hierarchy!! Good catch.

  9. Re:It hardly matters, now, does it. on Best Presidential Candidate for Nerds? · · Score: 1
    Well, they are right in thinking that the "cities control things". Because they do, as much as non-entities can control things. Because that's where most people in the US live. And that's where the engines of commerce and foreign trade are. And that's where wealth, power, and media are concentrated. And that's where culture evolves and where the challenges of labor, poverty, and other social issues are largely fought. I could pretend like this were not the case when talking with people "back home" (which by the way, has been encroached by the city since I left). But why lie? However, person A, living in city B, doesn't control things anymore, and probably less so, than person C, living in rural area D. What's better than tyranny of the majority? Tyranny of the minority? Ummmmm.....

    I'm no constitutional scholar, but, seems to me, "the tyranny of the majority" is not about giving more power to the minority in a general (e.g. presidential) election. The phrase is supposed to support the republic form of government: e.g. the chosen congress critters are allowed to decide because they would make a wiser decision than a popular referendum on issues, e.g. that rights enumerated in the constitution designed to protect the minority (e.g. bill of rights, due process), are not easily subverted with a simple majority.

    The extra power given to less populous states (the senate and the electoral college) don't have anything to do with tyranny of the majority, but instead are the result of the historical necessities and compromises required to form the union in the first place.

    I think the assertion that abandoning the electoral system would further disenfranchise those who live in rural states is false. Many of these places are already ignored by campaigns under the electoral system. The populous states that sit on the fence control things (and these are not the *most* populous states, lately), and the electoral system enhances that effect (and also ensures to bring both parties toward the center somewhat).

  10. Re:It hardly matters, now, does it. on Best Presidential Candidate for Nerds? · · Score: 1
    I do come from a rural area, but live in an urban area. This is what I'm getting at:

    http://www.princeton.edu/~rvdb/JAVA/election2004/p urple_america_2004.gif

    The cities in the map are really no where like 100% one way, though some of the rural areas might be. The popular contest was pretty close as was the electoral contest. Mostly, in cities and in rural areas, the votes range in the 35%/65% to 65%/35% range. So the ideas that the cities would vote as a monolithic entity if we got rid of the electoral college, is, well, just fucking stupid.

  11. Re:Simple on Best Presidential Candidate for Nerds? · · Score: 1

    Yeah, that's true, and I even support that, but it seems to be impossible to propose anything like that without being coming off as someone who doesn't support the troops. They deserve blame, but they get an iota more credit than the other guys.

  12. Re:It hardly matters, now, does it. on Best Presidential Candidate for Nerds? · · Score: 1

    Cities don't vote, people vote. If people live in cities, why would you hold it against them? It's funny that when people suggest this, they are so brainwashed by the electoral system that they assume all the citizens of a large city would essentially vote the same way. This is nonsense. A more typical voter split in a big biased city in a blue state might be 65%/35%. Those 35% join with other votes in other places, and if that candidate could mass enough, he would win. Isn't that what we want? The will of the people, not the will of the cities?

  13. Re:Simple on Best Presidential Candidate for Nerds? · · Score: 1

    They tried something like that. Did you miss the threatened veto? The dems don't have enough pull to override a veto.

  14. Re:Simple on Best Presidential Candidate for Nerds? · · Score: 1

    How can we notice patterns if you're posting as an AC?

  15. Re:Well, people, time to cough up the dough on Dell PCs with Ubuntu Are A Little Less Expensive · · Score: 1

    Ok, I just bought one!

  16. Re:They are nuts on the C front. on Top 10 Dead (or Dying) Computer Skills · · Score: 1

    Not if you use C99 - come on people, the standard is 8 years old already.

  17. Re:They are nuts on the C front. on Top 10 Dead (or Dying) Computer Skills · · Score: 1

    a C programmer can move to C++ without a problem but the reverse is not true

    I've seen that happen - you end up with C code that you just compile with a C++ compiler.

  18. Re:What? C? on Top 10 Dead (or Dying) Computer Skills · · Score: 1

    1992? I tried right an OS in c++ in 1970, bloody stupid idea!!!

  19. Re:Some of the list looks good on Top 10 Dead (or Dying) Computer Skills · · Score: 1
    namespaces - allows group aliasing and lookup/binding changes
    overloading - ok, maybe

    classes - more than you let on - aggregation, scoping, encapsulation, polymorphism - you can do all in c with something you roll yourself, but chaces are, you'll fuck it up unless you have a pretty narrow use case
    template - bzzz - more than a fancy preprocessor

    exceptions - once you get them, embrace them, and especially their use with RAII, writing place C is distasteful

    I know both, you guys are both right

  20. Re:Gas Price in Europe is $10 Per Gallon on US Gasoline Prices Spur Telework · · Score: 1
    Question, Dr. Square: are you still a fat slob?

    Just because 40 minutes a day of cycling didn't cure you of your caloric surplus problem or gland problem or whatever doesn't mean that it is "worthless". Light aerobic activity is good for your heart, lungs, and arteries. A definite improvement over a sedentary lifestyle. Sure, heavy aerobic activity is even better for some people. And if you want to shed the pounds, you're probably going to need more than tooling back and forth to and from work on your bike. For example, a small daily caloric deficit is essential to the process.

    If you want heavy aerobic workout on the bike, come ride with me sometime. I have trouble losing too much weight.

    I think it's hilarious you call be a nut job for promoting cycling when I've read your anti-cycling stuff all over this thread and on other occasions in this very forum.

    Doesn't work for you? Fine. I think it's a pretty great thing to advocate on many counts though. It's not like I'm advocating heroin or violence or something. Your nutjob bar is pretty fucking low.

  21. Re:Gas Price in Europe is $10 Per Gallon on US Gasoline Prices Spur Telework · · Score: 1

    Rich from am AC. Of course, not being constrained to a wheel chair, I'm not going to be able to brag about my experiences there. Of course the OP who brought up fake hips and wheel chairs wasn't thus affected, either. So woo hoo. Why should I not bring up the great accomplishments of these people when some other schmutz brings up the wheel chair as a general excuse against riding a bike?

  22. Re:Gas Price in Europe is $10 Per Gallon on US Gasoline Prices Spur Telework · · Score: 1
    You spend more time dissing cycling than I do promoting it. I'm just doing some suggesting and defending, not any forcing, pansy.

    I am a fucking nutjob though.

  23. Re:All Cars or Trucks Too? on Toyota Going 100% Hybrid By 2020 · · Score: 1
    First, let me say as a cyclist, that many cyclists are a little too loose with the law. I wait for read lights except for at the rare vacant intersections with known problems detecting bikes, and I stop at stop signs and only roll it when there is no one around (e.g. same as in a car). When I'm waiting at a red light, and some joker on a bike blows through without regard to cross traffic, I think - what an ass - he's going to get creamed. But I don't hate all cyclists for it.

    Nothing makes bicyclists so special that they don't have the to follow the law. Here's the thing - motorist are a little loose with the law as well. Car drivers roll stop signs, run red lights, speed, fail to signal, talk on cell phones or text-message while driving. I see it every day, from a large number of motorists. Sometimes it's worse than just negligence - drivers acting aggressively, using their cars as tools of intimidation, assault, etc.

    And of course, the same applies to pedestrians.

    So do you also hold motorists in general in disdain because many many motorists don't obey the law? Do you not see these infractions? I'd be willing to bet that you yourself break traffic rules a half-dozen times or more on your average trip.

    We could all do well to be safer on the roads - cyclists, motorists, pedestrians. Don't be a hater.

  24. Re:All Cars or Trucks Too? on Toyota Going 100% Hybrid By 2020 · · Score: 1

    900 people a year are killed on bicycles in the United States. Apparently, 0.22% of them died on this one road you describe. I would avoid that road if I were cycling in your neck of the woods.

  25. Re:Gas Price in Europe is $10 Per Gallon on US Gasoline Prices Spur Telework · · Score: 1
    Yeah, all that stuff is great! What's the downside again? You nailed all the upsides.

    What, exactly, is a recovering cyclist? Is your car like methadone or more like Rehab? Do you ever drive by a cycling and start Jonesing, seeing the cyclists sheer, endorphine-fueled joy? Come one, get back on your bike, you know you want to. First ride is free.

    You big list of shit is way overblown - I commute by bike almost every day of the year - and almost none of that crap is an issue. Hilarious. Good luck with your commuting lifestyle choice, though.