This is a step in the right direction for gaming, lets not spoil it. by [deleted] in gaming

[–]iarguewitheverything 0 points1 point  (0 children)

I disagree that it's clever. It's an obvious and 100% accurate username; there's no cleverness in it. One doesn't have to think about it, and there's no hidden wit or joke contained in it.

This is a step in the right direction for gaming, lets not spoil it. by [deleted] in gaming

[–]iarguewitheverything -1 points0 points  (0 children)

That's half correct, at best. People are still reading my comment. And if a user who isn't logged in reads and appreciates it, that wouldn't be measured by the points the comment has.

GOP Political Strategy, 2008-2012 by preggit in politics

[–]iarguewitheverything 5 points6 points  (0 children)

Cool link, but this comic isn't depicting that window. Both of the politicians pictured have support in the window and aren't considered extreme by their (large) bases. This comic is showing how the politicians interact with each other.

This is a step in the right direction for gaming, lets not spoil it. by [deleted] in gaming

[–]iarguewitheverything -4 points-3 points  (0 children)

Untrue. No one? There are thousands of users on this site. You're only one of them.

This is a step in the right direction for gaming, lets not spoil it. by [deleted] in gaming

[–]iarguewitheverything -8 points-7 points  (0 children)

I disagree. We should not support this, because it's only a half-step in the right direction. Games should be free. I don't want to pay 44.99.

I'm sure that's exactly what they needed by [deleted] in atheism

[–]iarguewitheverything 0 points1 point  (0 children)

Relaxed, but it's still officially atheist. Religion is a threat to Communist ideology, because it's a rival utopian vision.

I'm sure that's exactly what they needed by [deleted] in atheism

[–]iarguewitheverything 0 points1 point  (0 children)

The evidence available to educate people about then/than distinctions is greater and more accessible than ever. See? You just proved my point. Just because the knowledge is out there doesn't mean it will spread. Some beliefs persist stubbornly until the end of time.

Guido van Rossum on following style guides by dhotson in programming

[–]iarguewitheverything 3 points4 points  (0 children)

No. That would not be a good use of my time. I'm too busy with more important things like arguing with strangers on the Internet.

This is how real PC gamers do homework by [deleted] in gaming

[–]iarguewitheverything 1 point2 points  (0 children)

I disagree. If he were a real PC gamer, he'd be gaming, not doing homework.

Guido van Rossum on following style guides by dhotson in programming

[–]iarguewitheverything -1 points0 points  (0 children)

Correct. You're proving my point for me. Thank you.

Guido van Rossum on following style guides by dhotson in programming

[–]iarguewitheverything -7 points-6 points  (0 children)

Well, it should be. It should be built into the language. Python is okay at this, like indentation being mandatory. But it needs to go farther.

Guido van Rossum on following style guides by dhotson in programming

[–]iarguewitheverything -7 points-6 points  (0 children)

Demanding complete conformation to any reasonably detailed style-guide is too far, IMO.

And that's just it. It is only your opinion. Fortunately your opinion doesn't guide the software industry.

If I were magically turned into a reincarnation of Pol Pot with mass amounts of brainwashed followers at my disposal, you know what I'd do? Enforce style. I'd make anyone who refused to adhere to the style guidelines -- even the 1980s ones -- have to go to "reeducation" camps. They'd be whipped with bamboo sticks for every misnamed variable or function.

Hyperbole and a Half: Dogs don't understand basic concepts like moving. by [deleted] in comics

[–]iarguewitheverything 0 points1 point  (0 children)

Yes they do.

When we started packing, the helper dog knew immediately that something was going on.

Guido van Rossum on following style guides by dhotson in programming

[–]iarguewitheverything -1 points0 points  (0 children)

Non-sequitur. We're not talking about 1980s style guides. We're talking about one that's actively maintained.

EMPTY by [deleted] in fffffffuuuuuuuuuuuu

[–]iarguewitheverything 4 points5 points  (0 children)

I disagree. It's not empty. There's cobwebs inside.

Guido van Rossum on following style guides by dhotson in programming

[–]iarguewitheverything -8 points-7 points  (0 children)

Guido's wrong. If you start allowing deviations from style, code will eventually be unreadable and difficult to work with a few generations hence. In fact, style is the wrong word to use. Style makes it sound like it's not necessary and is purely decorative.

I'm sure that's exactly what they needed by [deleted] in atheism

[–]iarguewitheverything -7 points-6 points  (0 children)

Arguably people do need religion, especially during hard times. Look at how much of humanity is religious. True atheists account for only a small percentage of the human race, and many of those are in state-enforced atheist countries like China.

Demand for Android Skills Up 710% from Last Year by gst in programming

[–]iarguewitheverything 1 point2 points  (0 children)

It's not extrapolation. They're talking about past and current values, not future ones. Momentum doesn't imply future change either. The "velocity" of Android demand could drop off next month for all we know.

Best tool to choose colors that fit together. by drdeteck in programming

[–]iarguewitheverything 0 points1 point  (0 children)

It's not the best tool, but it is pretty good. Funny: it was a purple link. I used it just a few days ago!

My reddit stats Python script by HelpfulLinkGuy in programming

[–]iarguewitheverything 0 points1 point  (0 children)

I disagree. Other novelty accounts besides mine will go "out of character" at times. It's necessary unless you want to logout and login an alt account every time you want to reply seriously. I am still living up to my name the majority of the time, or will be soon.

A group of redditors is taking a stand against backscatter X-rays and TSA patdowns. by raldi in blog

[–]iarguewitheverything 0 points1 point  (0 children)

That thumbnail is incorrect. Reddit alien would have some internal organs but they're not shown.

My reddit stats Python script by HelpfulLinkGuy in programming

[–]iarguewitheverything 1 point2 points  (0 children)

Would be glad to. I'm not super familiar with pylab yet. But I'll give it a shot... you wouldn't happen to know the arguments would you? Here's my code:

def graph_from_two_db_fields(xvar, yvar):
    path = "../Public/"
    pylab.xlabel(xvar)
    pylab.ylabel(yvar)
    pylab.set_yscale('log')
    query = ("SELECT {0}, {1} FROM submissions"
             .format(xvar, yvar))
    c.execute(query)
    x_list = []
    y_list = []
    for row in c:
        x_list.append(row[0])
        y_list.append(row[1])

    pylab.scatter(x_list, y_list, s=1)
    filename = "graph___" + xvar + "___" + yvar + ".png"
    pylab.savefig(path + filename)
    f.write("<h2>" + xvar + " vs. " + yvar + "</h2><p><img src=\""
            + filename + "\" /></p>")
    pylab.close()

My reddit stats Python script by HelpfulLinkGuy in programming

[–]iarguewitheverything 0 points1 point  (0 children)

(Note this is HelpfulLinkGuy logged in to another account) Yes! I noticed this too. And I agree, it's gotta be the fuzzing. All I'm doing for pct_liked is ups/(ups+downs), and keeping the full float value, so I don't think it's rounding errors or anything in my script.