Slashdot Mirror


User: DocHoncho

DocHoncho's activity in the archive.

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

Comments · 608

  1. Re:The general public is incredibly stupid on How the FCC Plans To Save the Internet By Destroying It · · Score: 1

    I don't know if anything you said is true, but it doesn't really matter. Problem is, there are no viable alternatives!/em If you think the Dem's don't do shit just like this all the time, you're deluded. R or D, they're all a bunch of opportunistic scoundrels, taking every chance to bolster their own position and prestige, regardless of the cost to the rest of us.

  2. Re: Congressional fix? on How the FCC Plans To Save the Internet By Destroying It · · Score: 1

    That's been the reality everywhere, forever. It's cute that the founders of the USA actually believed their experiment in limited government was ever going to last. The USA is simply catching up to where the rest of the world has always been. It was inevitable.

  3. Re:DVD's are just as easy. on How Much Data Plan Bandwidth Is Wasted By DRM? · · Score: 1

    It's really not that bad, considering most TV shows aren't really going to suffer that much by the loss of visual detail. Besides, if you can't see that well in the first place, isn't it all just blurry blobs on a big screen TV too?

    Sorry Grandad, I'll get off your lawn now...

  4. Re:Useful Idiot on Snowden Queries Putin On Live TV Regarding Russian Internet Surveillance · · Score: 1

    Anwar Al-Awlaki ringing any bells?

    Link

  5. Re:Old proverb on Snowden Queries Putin On Live TV Regarding Russian Internet Surveillance · · Score: 1

    I wish I could mod this up. "Competing governments" found out about this stuff merely as consequence of the American public being informed of what their government is doing in their name. Snowden's detractors try to argue that his intention was merely to inform foreign governments of the USA's intelligence tactics, rather than his stated intention of informing his fellow citizens. At this point, there is no reason to believe he was acting on the behalf of a foreign power. Believing otherwise is an unwarranted assumption .

  6. Re:Useful Idiot on Snowden Queries Putin On Live TV Regarding Russian Internet Surveillance · · Score: 1

    You're absolutely right, he should have fled to one of the US lapdogs that would have returned him to their masters at the first opportunity. Or maybe some smallish country the US wouldn't have any hesitation about a missile strike or special forces operation. Nope, there couldn't possibly be a reason to go to one of the "bad guy superpowers" except because he's a communist stooge.

  7. Re:Useful Idiot on Snowden Queries Putin On Live TV Regarding Russian Internet Surveillance · · Score: 1

    You're making the classic mistake of believing the two parties are anything but a political cartel, publically denigrating each other, privately scheming to keep their golden goose laying eggs. Conservatives and liberals alike are being played for fools by a corrupt and cynical political class dedicated to maintaining their power and privilege by any means necessary.

  8. Re:Useful Idiot on Snowden Queries Putin On Live TV Regarding Russian Internet Surveillance · · Score: 1

    If you think about it a little more carefully you might come to the conclusion that China and Russia, despite their obvious shortcomings, are two places where he would be guaranteed that the US wouldn't do anything to get at him that would start WW3. Most anyplace else, they'd launch a few missiles at wherever they thought he was, write some letters of apology to the government there and move on.

    I don't care to argue the merits of what he did, but those two countries are the safest possible places from the US federal government.

  9. Re:Margeret Thatcher? on Why the IETF Isn't Working · · Score: 2

    Don't worry, crazy people will have social justice advocates before long and then Crazy, even the batshit kind, will be a unacceptable term in the PC world. We don't call them crazy, we call them Differently Alligned with Reality

  10. Re:Ah, antimatter on Why Are We Made of Matter? · · Score: 1

    Looks like it might be somewhat unclear, the font of all knowledge suggests the etymology of the word is uncertain, although the Germanic origin theory is persuasive.

  11. Re:Something From Nothing. on Why Are We Made of Matter? · · Score: 1

    Humans have a 'will'

    There is actually a great deal of debate about this question, it's very possible that "will" may be an observer-based phenomena that only appears to exist from a very specific perspective, not unlike centrifugal force. Personally I find the theory counter-productive since by definition if its true it doesn't matter, while believing it if it's false is potentially horribly destructive to the human spirit (be it metaphysical or metaphorical)

    Ahh, the illusion of agency. We have no idea how our brains do what they do, but we're more than happy to take all the credit for it, as if we were somehow responsible for the particular configuration of neurons and electrical impulses that create whatever the hell sentience is. Don't get me wrong, I'm just a guilty of doing it as everyone else, it's just something I've thought about frequently. I've found myself doing things I can't explain enough times to realize there's more going on with sentience, will, and the like than meets then eye.

  12. Re:Ah, antimatter on Why Are We Made of Matter? · · Score: 1

    That would be Religion qua religion that is cheap. The Vatican or Joel Osteen are simply shysters that have are manifestations of Religion, and, acting in it's name, fleecing the faithful. In the case of the Vatican, they've been doing this for nearly two millennia. Osteen has a long way to go if he want's to rival the Vatican.

  13. Re:So many bugs on Facebook Introduces Hack: Statically Typed PHP · · Score: 1

    The fix for problems like this is not to ditch dynamic typing systems, but to use languages with strong types. You'll still have to wait until runtime, but once the code tries to use "five" as a number is going to crash and burn. Languages like Javascript or PHP that will happily do the wrong thing are pathological, there's no reason to allow such things. Unless your language is stupid simple and treats everything as a string or something, things have implicit types so use them!!

  14. Re:So many bugs on Facebook Introduces Hack: Statically Typed PHP · · Score: 1

    You're describing a weakly typed language, like PHP. Something like Python or Ruby would give similar errors as you described. And even Java, which is super finicky about types will have runtime errors that require you to do the same debugger-boogie as any other language.

    Don't get me wrong, static typing can be a huge boon. But it can also be a huge pain, and in many situations hardly worth the hassle. The part I find most compelling about static typed languages is that you can understand a lot more from function signatures and the like. Seeing int foo(int bar) you know that, whatever the hell foo does, it's taking an int and giving one back. The compiler taking care of the sticky details involved in making sure that is always the case is a bonus.

  15. Re:Dynamic typing proponents are not awesome on Facebook Introduces Hack: Statically Typed PHP · · Score: 1

    While statically typed languages can be a pain, there are tangible benefits for using one. As far as dynamic typed languages, well, I'll settle for it being strongly typed. Weakly typed languages are awful.

  16. Re:English? on Facebook Introduces Hack: Statically Typed PHP · · Score: 1

    Ugh, this is exactly what I've been dealing with lately. Got stuck using PHP for some project for reasons beyond my control. When I realized there was this "autoloader" thing magically loading and "linking" code without me explicitly having requested it, I understandably threw up my hands in despair. How are you supposed to know, at a glance, which parts of the project are being referenced by a particular class/file? Can you predict whatOh, right, "You need to know your framework," they say. But it's the frameworks that are full of this shit!!!

    I've settled on accepting autoload as it is, since there's really no sane way around it. Which is very typical PHP: pathological solutions to insane problems. Throwing in use statements for every class you use is about the best you can do. Even those are a bit... off, but it sure the hell beats writing Foo\Bar\baz->doStuff($x); all over the place. And the PSR-4 guidelines seems to have caused many package maintainers to come up with... interesting namespace layouts.

    Sorry about the rant. I'm pretty sure it's part of the grieving process, and Anger, Bargaining, and Depression are all co-incident.

  17. Re:So, that means that Carmack... on Facebook Buying Oculus VR For $2 Billion · · Score: 1

    Where have you been? He'd have to use Hack, that's the new hotness. Or something. And here I thought PHP couldn't get any uglier. It's practically worse than some of the more hoary C++ syntax out there.

  18. Re:Kickstarter is not an investment on Facebook Buying Oculus VR For $2 Billion · · Score: 1

    Certainly there is an opportunity if you really want to participate in social media experiments. Will they sell a tethered product that requires a facebook account to activate? Will you need some sort of integration with online accounts?

    They probably wouldn't force it, not exactly. They'll make it as hard to avoid as possible, while lauding all the benefits of linking this that and the other. "Blink here to +1 on Facebook!!", "Tell all your friends how good you are at this Skinner box disguised as a game!".

    God only knows what other data it might send them, even if there's nothing directly identifying you they have enough data to correlate you with other data quite easily.

  19. Re:Fuck that guy. on Jesse Jackson To Take On Silicon Valley's Lack of Diversity · · Score: 1

    Tattoos have been around for a long, long time. I doubt they are just going to "disappear."

    I didn't mean to imply that. However, it's hard to deny that the current trend of "MOAR TATTOOS" is just that, a trend. Once the fad has passed, tattoos will once again be the province of strippers, bikers, gang members, and tribal wannabes.

  20. Re: Ridiculous. on Time Dilation Drug Could Let Heinous Criminals Serve 1,000 Year Sentences · · Score: 1

    I suppose that, in case that the State decides to do the right thing and admit they fucked up, a life sentence can be lifted. The death penalty, not so much.

    Of course there's too many political careers at stake to allow our the Judicial branch to admit wrongful conviction with any worthwhile frequency. The stories you hear about wrongful convictions being overturned are but drops in the vast bucket of convictions, right or wrong. And even if you're released after decades of imprisionment, your life has been ruined, all so some hotshot prosecutor could keep climbing up the ladder. It's a sick joke.

  21. Re: Fuck that guy. on Jesse Jackson To Take On Silicon Valley's Lack of Diversity · · Score: 1

    Am I to take from this comment that there are neckbeards, who think tattoos are absurd, and everyone else who apparently thinks tattoos are the coolest thing ever? At least a beard can be shaven once the owner changes their tastes, tattoos are forever. So good luck with that way cool skeleton fairy on your back, I'm sure the grand kids will think it's awesome, especially once your skin starts losing its plasticity and your former work of art looks like it was done on saggy bread dough.

    Also thought I'd point out that I am quite clean shaven. In point of fact, I can't really even grow facial hair at all. I never considered that my facial hair, or lack thereof, would be such an influence on my opinions.

  22. Re:Fuck that guy. on Jesse Jackson To Take On Silicon Valley's Lack of Diversity · · Score: 1

    tl;dr: You can get cheap tattoos, but don't.

    Unless one of your life goals is to achieve internet notoriety by being featured on Ugliest Tattoos.

  23. Re:Fuck that guy. on Jesse Jackson To Take On Silicon Valley's Lack of Diversity · · Score: 1

    Thing is, the tattoo trend is inevitably going to fade away, leaving all these dupes with their bodies covered in "art."

    "Like, every single tat has a deep significance to me man. Like this Monster drink logo. That represents my susceptibility to advertisement and that my identity is tied up in what brands are cool or best. It's deep, man, you just don't get it. I'm going to get a yin yang on my forearm because, it's like, deep and I have no idea what cliche or trite means. I'm an individual, man. All my friends get tattoos, it's just cool!"

    Whatever.

  24. Re:keywords like terrorism on Officials: NSA's PRISM Targets Email Addresses, Not Keywords · · Score: 1

    Shouldn't Bob be asking Mallory about a terrorism date next monday? Or is Mallory the NSA? I'm confused... can someone provide a car-centric metaphor?

  25. Re:Audio is amazing on Measuring the Xbox One Against PCs With Titanfall · · Score: 1

    It would be just as stunning with lossless compression like FLAC too. In fact, without trying to start an audiophile flamewar, a sufficiently high bitrate MP3 would be stunning too. Either way the audio would take up drastically less space.