Slashdot Mirror


User: HaZardman27

HaZardman27's activity in the archive.

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

Comments · 906

  1. Re:If you wanted to know about humans, on We Aren't the World: Why Americans Make Bad Study Subjects · · Score: 1

    Rather than planning for the shit hitting the fan, let's get together, clean up the shit and turn off the fan.

    But where am I supposed to direct my pent-up frustrations and aggression?

  2. Re:Kids console? on Is the Wii U Already Dead? · · Score: 2

    Nail on the freaking head. I'm fairly confident that games like Pikmin 3 and the Wind Waker HD remake will sell some consoles, and Monster Hunter 3 Ultimate next month will as well, especially in Japan where Monster Hunter is huge. While I still like some shooters (Halo in particular, although Microsoft and 343 seem determined to turn it into Call of Duty In Space), I get turned off by games that use violence and mature themes for simply the sake of being graphically violent or "mature." Nintendo has the art of boiling a game down to simple and unoffensive fun down to a science. Nintendo games are also still the best games to play with some friends or family in the living room, which in my opinion beats online play any time.

  3. Re:Nintendo needs to rethink its place in the worl on Is the Wii U Already Dead? · · Score: 1

    Nintendo needs to publish a few games on their own to encourage gamers to buy the system so third party developers will make games for it

    It blows my mind that Nintendo didn't have a better lineup planned for the release.

    N64 release: Super Mario 64, Mario Kart 64, and (I think) Starfox 64
    Gamecube release: Luigi's Mansion, Rogue Leader, and a month later Super Smash Bros Melee
    Wii release: LoZ Twilight Princess, Super Smash Bros Brawl a few months later
    Wii U relase: an update to the same Mario game you've been playing for years (New Super Mario Bros U) with Pikmin 3 eventually and Monster Hunter 3 Ultimate 5 months down the road

  4. Re:Because the games were boring on Is the Wii U Already Dead? · · Score: 1

    Name me the Nintendo Wii U games that won't bore a seasoned gamer to death

    Nothing that's out yet, but Monster Hunter 3 Ultimate might be the game that makes me buy a Wii U, and Pikmin 3 also looks very good. There's also supposed to be an HD remake of Legend of Zelda: The Wind Waker in the fall, which will make me glad I have one (once I do).

  5. Re:They should use HOSTS file to secure it on North Korea To Enable Mobile Internet Access — For Visitors Only · · Score: 2

    In case you are not aware, the post is a satire of a fellow known as APK. The grammar used is modeled after APK's as you can see here. Or, you can just look around a bit and see some of his posts on here about the wonders of host files.

  6. Re:More evidence on Troll Complaint Dismissed; Subscriber Not Necessarily Infringer · · Score: 3, Interesting

    Doesn't that make it pretty much impossible to file a copyright infringement claim against someone for downloading a file?

    Oh gosh, we can only hope.

  7. Re:buy a security system + cameras on Ask Slashdot: Starting From Scratch After a Burglary? · · Score: 1

    Well, generally you shouldn't be getting much more for the payout than the value of the stolen goods (at least with my experience, just because you have say $10k worth of insurance doesn't mean you're getting a check for $10k, you report the items that were stolen and the insurance company determines the value). If you buy identical items to what was stolen, even if they're newer, it's unlikely that you're making much of a gain considering all of the negative things associated with a break-in.

  8. Re:buy a security system + cameras on Ask Slashdot: Starting From Scratch After a Burglary? · · Score: 2

    The stress isn't worth it. I had my house burgled once and the police tried to bring my wife down to the station to interrogate her for insurance fraud and take a lie detector test (I told them no thanks, of course). Also, it took nearly two months before the insurance money even arrived.

  9. Re:Android on Full Review of the Color TI-84 Plus · · Score: 2

    I have a Nexus 7 and found a couple free graphing calculator apps that completely eliminate any need I might have otherwise had for a full graphing calculator. I actually first started looking at apps because I wanted my old TI-83 for something but couldn't find it. Granted, students wouldn't be able to bring a fully functional Android device with them to a test, so I guess that's why TI can continue to charge the ridiculous prices they do for these things.

  10. Re:If I had Google glass.. on Google Looking for "Creative Individuals" For Glass Developer Program · · Score: 1

    I guess you (and I) will need prescription Glass...

  11. Re:So... on Google Looking for "Creative Individuals" For Glass Developer Program · · Score: 1

    Why has this not been modded through the roof?!

  12. Re:How unique! on Book Review: Enyo: Up and Running · · Score: 4, Informative

    Grow up. The reality is that software is expected to do more than ever these days, which means programmers need to be able to spend more time on solving business problems rather than on moving bits and packets around.

  13. Re:It's a good start, but... on IE Standardization Fading Fast · · Score: 1

    Yes, there are definitely some security vulnerabilities unique to Javascript because of the strange environment that Javascript operates in, which is sending/receiving data to/from multiple sources simultaneously in what looks like a single page or application to the user.

  14. Re:It's not 3D, plus sucks on Why Hasn't 3D Taken Off For the Web? · · Score: 1

    This is about rendering 3D graphics with hardware acceleration, you know, the stuff that your video card does. Until recently, to get 3D rendering in a web browser you had to either use a proprietary plugin like Flash or Unity, or rely on slow software rendering. WebGL is a developing standard for giving web browsers an implementation of OpenGL ES 2.0. It can be used for 3D browser games, charts, etc.

  15. Re:It's a good start, but... on IE Standardization Fading Fast · · Score: 4, Insightful

    This. The percentage of web users who are running non-JS browsers or have JS disabled is small enough not to matter for the people funding web development. As a developer, the best you can do, particularly in a project involving AJAX, is to have RESTful web services that allow a clever enough user to get the information they need without Javascript running, even if the site is as ugly as hell. They may have to parse some JSON or XML on their own, but that's their problem if they don't feel comfortable with their browsing executing JS.

  16. Re:It's a good start, but... on IE Standardization Fading Fast · · Score: 5, Informative

    JavaScript is insecure and violates privacy

    Javascript is a language; it cannot violate your privacy. Security and privacy issues related to Javascript can only be application-specific issues which are introduced by the developers of said application. Javascript as a language is in no more violation of your privacy than C.

  17. Re:It's a good start, but... on IE Standardization Fading Fast · · Score: 3, Insightful

    Developers have become way too fucking dependant on JS and frameworks like jQuery, Mootools and YUI

    There is no better way for making interactive web applications than using Javascript. The only real alternatives are using proprietary platforms like Flash or Silverlight. The level of interactivity on the web that people demand these days has gone past the level you can get from reloading an HTML document every time the user clicks something or enters some text. Add in the development of WebGL for hardware accelerated 3D graphics in web browsers and some of the other fancy features of HTML5 and it's easy to see that Javascript isn't going anywhere for a while. jQuery, on the other hand, is pretty slow and should be used sparingly.

  18. Re:Anyone who doesn't like electric cars on NY Times' Broder Responds To Tesla's Elon Musk · · Score: 4, Insightful

    Less so for Tesla. Their site doesn't have any external ads, so they're not making anything from ad revenue, and most people can't afford their cars.

  19. Re:MS Offfice 2013 - Javascript apps on Ask Slashdot: Spreadsheet With Decent Programming Language? · · Score: 1

    Yes, it's so much better to expect users to learn a proprietary language they would otherwise never have any use for.

  20. Re:Good News / Bad News on Elon Musk Lays Out His Evidence That NYT Tesla Test Drive Was Staged · · Score: 0

    Why can't we have dishonest television in the States?

    Apparently because our newspapers have a monopoly on that.

  21. Re:Don't be too quick to pass judgement on this on on Elon Musk Lays Out His Evidence That NYT Tesla Test Drive Was Staged · · Score: 2

    When you're citing a Gawker Media site as a reference, please forgive me if my opinion is not swayed.

  22. Re:Good News / Bad News on Elon Musk Lays Out His Evidence That NYT Tesla Test Drive Was Staged · · Score: 5, Informative

    Pretty much the same thing. They implied that the car could break down inside its range and showed the staff pushing a functional car back to the garage.

  23. Re:It's willful ignorance not fear. on Lawmakers Say CFAA Is Too Hard On Hackers · · Score: 1

    Hackers who don't cooperate with them seem to end up charged with rape, child porn, or just a bunch of bullshit charges that prosecutors can find to leverage on them to try to break them

    I'm going to have to ask for some citation, please. The exact story you're posting on is discussing how the penalties for hacking-related charges are too high. If the government can throw you in prison for several years for hacking, why would they need to frame you for something unrelated?

  24. Re:Read your employment contract for conflict on Ask Slashdot: Making Side-Money As a Programmer? · · Score: 4, Funny

    Do you perhaps work in the Deep South during the early 1800's?

  25. Re:Making Peace? on North Korea Conducts Third Nuclear Test · · Score: 1

    Probably by Kim Jong Un's definition.