Slashdot Mirror


User: spiffmastercow

spiffmastercow's activity in the archive.

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

Comments · 1,343

  1. Re:Obesity on Does Higher Health Care Spending Lead To Better Patient Outcomes? · · Score: 2

    Or, maybe, move the corn subsidies to fruits and vegetables? Eating healthy is really expensive.

  2. Re:April fools on NYC Bans Mention of Dinosaurs, Dancing, Birthdays On Student Tests · · Score: 1

    "spared the [really bad thing]" is what I meant to write.

  3. Re:April fools on NYC Bans Mention of Dinosaurs, Dancing, Birthdays On Student Tests · · Score: 1

    I think you misunderstand.. I was not implying anything about the afterlife here. The OT was all about "so and so pleased the Lord, and was spared the ". I meant "burn your ass" more in the sense of an example of something He would do to you if you didn't properly please thine God.

  4. Re:April fools on NYC Bans Mention of Dinosaurs, Dancing, Birthdays On Student Tests · · Score: 1

    So apart from plaguing Egypt for fun, there isn't much sense in all that. It just looks like a cruel and mean god. I really don't know why people would trust Him, much less follow his words.

    Because if you don't do what He says, He'll burn your ass. Clearly you did not take take away the correct lessons from your reading.

  5. Re:ASP.NET MVC is OK, but C# is awesome on Microsoft Releases ASP.NET MVC Under the Apache License · · Score: 1

    I honestly don't give a fuck about VB, one way or the other. The fact that it doesn't default to short circuiting seems dumb to me, but whatever. What I'm seeing is you trying to defend the honor of VB when nobody has called it into question. My mistake was feeding the troll

  6. Re:ASP.NET MVC is OK, but C# is awesome on Microsoft Releases ASP.NET MVC Under the Apache License · · Score: 0

    First, you're wrong. second, you're arguing against a point that nobody was making. Your insecurities are very telling.

  7. Re:ASP.NET MVC is OK, but C# is awesome on Microsoft Releases ASP.NET MVC Under the Apache License · · Score: 1

    Honest question: Which of those C# features does Visual Basic not have?

    The latest VB should have most, if not all the features as the latest C#. That said, the syntax of VB, along with the lack of short circuit conditionals, makes my eye twitch.

  8. Re:ASP.NET MVC is OK, but C# is awesome on Microsoft Releases ASP.NET MVC Under the Apache License · · Score: 1

    C# 2.0 was basically a clone of Java and didn't really have anything that made it particularly special. With 4.0, it has almost everything that made Python great, without any of the huge drawbacks of Python. It's fast (in relative terms.. slower than C and C++, faster than most anything else), it has an extensive standard library, closures, lambda functions, Linq (similar in function to Python's list building and iterator expressions, but more robust), good multi-threading support, and some top notch metaprogramming support through generics and expression trees.

  9. Sometimes yes, but not for the reasons you think on Do Women Make Better Bosses? · · Score: 1

    My boss is a woman, and she's the best boss I've ever had. Why? Because she had to prove herself, and she succeeded in doing so. The odds are stacked against women in management, and those who succeed are often better because they had to be significantly better than all the male candidates in order to stand out.

    Disclaimer: This is a combination of anecdotal evidence and socio-demographic conjecture. Not all women make good bosses, and not all female bosses are good.

  10. Re:There's Your Problem Right There on Tennessee Passes Bill That Allows "Teaching the Controversy" of Evolution · · Score: 1

    Fail. See this for more details.. Religion was pretty well split on the issue.

  11. Re:There's Your Problem Right There on Tennessee Passes Bill That Allows "Teaching the Controversy" of Evolution · · Score: 1

    Been smoking the wacky tobaccy that god left out on the ground for you? The founding fathers were mostly deists. They believed in a god that didn't give a crap. They didn't pray.

  12. Re:There's Your Problem Right There on Tennessee Passes Bill That Allows "Teaching the Controversy" of Evolution · · Score: 3, Insightful

    Okay, I'll bite. What freedoms do we have that were championed by the pious and condemned by the non-believers? And this must apply to the bulk of each side, not simply a few outliers.

  13. Re:Python's problem on Van Rossum: Python Not Too Slow · · Score: 1

    There's a ton of overhead that goes into communicating between processes. If you can, its much more efficien (and pleasant) to use threads. The point of using Python is that it's supposed to be simple. Setting up a complicated inter-process communication mechanism every time you need to run a background thread makes it not so simple.

  14. Python's problem on Van Rossum: Python Not Too Slow · · Score: 4, Informative

    The problem with Python isn't the speed -- he's right about optimizing with bits of C. The problem is the GIL. Without good multithreading support, I have to give up on Python for a large number of application domains.

  15. Re:That's what America needs to be competitive! on Bring Back the 40-Hour Work Week · · Score: 1

    You mean as a country rich in oil and other natural resources. Not every country has that luxury, you smug son of a bitch.

    Or as a country of people that mostly realize that having 12 kids is not a good idea.

  16. 38% with the placebo? on LSD Can Treat Alcoholism · · Score: 1

    Man, this placebo is a wonder drug! It doesn't work as well as most drugs at any one thing, but it works somewhat well on most everything!

  17. Bullshit on Japan Creates Earthquake-Proof Levitating House System · · Score: 0, Troll

    In other bews, 88 Japanese people just got scammed for a lot of money.

  18. management on Ask Slashdot: Life After Software Development? · · Score: 2

    Up not out. You can be the manager who excels at the technical side of things.. And try to learn not to suck too bad at the social side of it.

  19. Re:Seems reasonable.. on Doctors "Fire" Vaccine Refusers · · Score: 4, Interesting

    How old is your son? My son is also highly allergic to eggs (we have to carry the epi pen everwhere we go), and he's had all his age-scheduled shots so far with no problem, and he's almost 2. Which ones does your son need that don't have a non-egg version?

  20. Re:makes COBOL look like a paradise on What Does a Software Tester's Job Constitute? · · Score: 1

    If you plan on testing something more than once you're probably wasting your time if you're not automating it. It's wasteful, unreliable, and makes it very expensive in time and money to release new versions, or even patches for old ones.

    We automate what we can, but there's quite a few things that aren't well suited to automation. A big problem for us is the various display issues with different browsers, or bugs in our stylesheets. That's not something you can automate easily.

  21. makes COBOL look like a paradise on What Does a Software Tester's Job Constitute? · · Score: 1

    I pity our poor testers.. I have to assume that they must develop some sort of mental detachment capabilities to be able to sit there and test the same thing over and over and over. Go back to your cube. Spending hours trying to get the damn login screen to work in every browser might seem painful, but it's nothing compared to the hell that is testing.

  22. Maintainability on Ask Slashdot: Transitioning From 'Hacker' To 'Engineer'? · · Score: 4, Insightful

    Ignore the assholes. Debates about the meaning of 'Engineer' aside, what you really need to learn is maintainability, testing, and patience. Writ code that you wouldn't mind maintaining if you weren't the original author. Don't repeat yourself. Follow coding standards. And most of all, learn to work with others and leave your ego at the door. That's what separates a 'hacker' from a professional.

  23. Re:Uh? on Ask Slashdot: Does Europe Have Better Magazines Than the US? · · Score: 1

    This was in France..

  24. Re:They found 16? on Don't Worry About Global Warming, Say 16 Scientists in the WSJ · · Score: 1

    Evidence or GTFO. This conspiracy theory bullshit is getting really old.

  25. Re:They found 16? on Don't Worry About Global Warming, Say 16 Scientists in the WSJ · · Score: 1

    You're slippery, I'll give you that. First off, I never called anyone a "crackpot" or "denier". I merely claimed that, if you are going to make a claim that counters scientific consensus, then you better be prepared to back it up. What you're essentially claiming is that, based on a few scientists' objections and no observable evidence, we should reopen the entire question of whether or not climate change is happening. Do you honestly think all think that nobody is looking into this? There is far more funding for scientists trying to disprove climate change than there is for those trying to prove it. But trying to convince you is like arguing with a table. You're not going to listen to what I have to say unless I get my own show on Fox News. In the mean time, the vast majority of the scientific community is listening to their peers.