Slashdot Mirror


User: epyT-R

epyT-R's activity in the archive.

Stories
0
Comments
6,504
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 6,504

  1. Re:Finaly. on YouTube Ditches Flash For HTML5 Video By Default · · Score: 1

    No, you just lack reading comprehension skills.

  2. huhuh... on One In Five Developers Now Works On IoT Projects · · Score: 1

    Everyone knows the internet is for porn.. It is the internet of thingies..

  3. Re:still awful on Latest Windows 10 Preview Build Brings Slew of Enhancements · · Score: 1

    There's just no need for 99% of the features UEFI offers, like those silly UIs and built in apps that exist only because phoenix/AM are desperate to stay relevant and visible. Really all the firmware needs to do is get the hardware into a stable state, boot a kernel or chainload a system specific bootloader that handles preboot setup for that os, and then get the hell out of the way. Having the os call back into firmware code for hardware specific features sounds nice until you realize a lot of that bios code is completely broken on a lot of hardware. The old MBR standard has size limitations but it is far nicer to deal with than incomprehensible GUIDs. The latter is bad enough in windows.

    Secure boot is only optional on x86 laptops/desktops. On other platforms it is used to block user-installed os. How long do you think it will be before that 'mandatory' option is simply not mandatory anymore?

  4. Re:Wow so negative here on Latest Windows 10 Preview Build Brings Slew of Enhancements · · Score: 1

    Perhaps you never realized that the 'old' 'new stuff is cool' attitude came with an implied expectation/judgment of sensible/objective improvement, that, for the most part, products were passing (except for stuff like msbob). That hasn't changed. What has changed is the hierarchy of priorities within major software firms. Around 2000, the engineers were told to go to the back of the bus while the 'user experience designers' took over, targeting the soccer mom instead of the intelligent user. They prettyed everything up with lots of white space, oversized fonts, wordy and unmemorable phrases in place of single terms, and reduced the functionality and flexibility to something morons could comprehend. Oh, and then they slapped search boxes on everything to compensate for this braindead nonsense. Instead of knowing where things are in sensibly named and organized layouts, the user has to know the magic incantation search to bring up each. Welcome to the future.

  5. Re:Change for change's sake on Latest Windows 10 Preview Build Brings Slew of Enhancements · · Score: 1

    The main complaints about windows 8+ comes from people using desktop/laptop computers to make the content used on touch devices. Touch/mobile interfaces don't work well for this at all. Who wants interfaces riddled with full screen 24pt font modal dialog boxes and tons of wasted whitespace? Who wants fingerprints on their monitors?

  6. Re:English as the first language a MUST! on Ask Slashdot: What Makes a Great Software Developer? · · Score: 1

    eh, apparently you can't, mate.

  7. Re:It depends on Ask Slashdot: What Makes a Great Software Developer? · · Score: 2

    If today's software is used as an example, it seems like most team programmers are chosen for their willingness not to to rock the boat (or management ego) first and programming skills last.

  8. Re:Finaly. on YouTube Ditches Flash For HTML5 Video By Default · · Score: 2

    Simple, when the user clicks the url, the browser opens the appropriate application for the urltype. That's how it should be anyway.

  9. Re:About D%^& time. on YouTube Ditches Flash For HTML5 Video By Default · · Score: 1

    because last time I checked, that requires logging into youtube/google.

  10. Re:Adobe on YouTube Ditches Flash For HTML5 Video By Default · · Score: 5, Informative

    Anyone dumb enough to depend on cloud services for critical workflow deserves what they get.

  11. Re:Hey! I've been gypped! on NVIDIA Responds To GTX 970 Memory Bug · · Score: 1

    using [] brackets and [menu] you could break up the config.sys too, then in autoexec, reference the breaks with a GOTO %CONFIG%.

  12. Re:RPP on NVIDIA Responds To GTX 970 Memory Bug · · Score: 1

    Judge the problem on its own merit and context rather than by the relative wealth of the person who has it.

  13. Re:Pedantic, but... on Google Just Made It Easier To Run Linux On Your Chromebook · · Score: 1

    or maybe systemd/linux!

  14. Re:Pedantic, but... on Google Just Made It Easier To Run Linux On Your Chromebook · · Score: 1, Troll

    Eventually systemd will replace GNU entirely, so it'd be linux/systemd.. eventually, the kernel will be forked too and it'll be redhat/systemd

  15. Re:Some people say it's too pricy. on NVIDIA Launches New Midrange Maxwell-Based GeForce GTX 960 Graphics Card · · Score: 2

    It might be an old meme, but it's still true, especially for opengl. Their d3d is ok if you plan to run the games tweaked in that particular version of the driver.

  16. Re:Midrange? on NVIDIA Launches New Midrange Maxwell-Based GeForce GTX 960 Graphics Card · · Score: 1

    It really depends on the game and your expectations for minimum framerate. If you want lots of gfx detail and high minimums, 1920x1080 still requires high end graphics.

  17. Re:Awesome, I shall buy one in a year on NVIDIA Launches New Midrange Maxwell-Based GeForce GTX 960 Graphics Card · · Score: 2

    Yes, if you're happy chugging along at 20-35fps with dips into the low teens.

  18. Re:No way! on Senator Who Calls STEM Shortage a Hoax Appointed To Head Immigration · · Score: 1

    'You get what you pay for' is also common sense.

  19. Re:lol, Java on Oracle Releases Massive Security Update · · Score: 1

    Obviously, the efficiency of the C lib functions will vary by hardware and by author competence, but here's no way virtualized code could run faster and with less cpu and ram overhead than well written (or compiler generated) native code on given hardware.

    An interesting bench done with 7 year old software and hardware (perhaps things are better today?).
    http://zi.fi/shootout/

    While it's gotten a lot better since the 90s, ~35-50% slower is still significant (assuming you discount the 'compiled away' situations). The strings bench is near the bottom. Unfortunately, he did not measure memory footprint or calling overhead. This is too bad because this is another area where managed runtimes come up short.

    For example, the installer for freespace2 SCP is java based, and it takes 50MB of ram on startup, and grows from there as it downloads files from the network. I use tinywall on my windows box, and currently that's sitting at over 100 MB..for something that just inserts rules into the system firewall based on PID/name. That's nuts for such simple programs.

    Most managed programs call out to C libraries through shims when speed is needed because the vm carries too much overhead, even when the executable is targeted for specific hardware. For example, modern game engines do this a lot. The fact that virtualized logic can touch unmanaged space breaks the security model, making it pointless to expect any additional security from the virtualization.

    stack smashing, buffer overflows, invalid pointer dereference, malloc failures, code overwriting done by a program written in pure Java?

    Properly written C does not cause those. Buggy C certainly does, just like buggy vms. The fact that oracle has been patching java exploits for years suggests its security isn't much better than a typical unmanaged C++ program at least as far as the user's concerned.

    I mentioned the UI/system integration before. For me this is reason enough to avoid managed/interpreted runtime programs unless I have no choice. The shimming and overhead is prone to breakage and there're usually native alternatives that behave better.

  20. Re:Bad idea on FBI Seeks To Legally Hack You If You're Connected To TOR Or a VPN · · Score: 1

    I only meant to imply that such law would basically require a license and key disclosure in order to setup a vpn. Your employer would have a license for this because they're a corp that can afford it.. your home vpn would require a separate license, complete with key disclosure of course.

    I never said this was a good idea. It's terrible.

  21. Re:lol, Java on Oracle Releases Massive Security Update · · Score: 1

    A large percentage works just fine even with holes, and with greater performance and less overhead. The supposed claim to fame for java was that, while slower and resource intensive, it prevented programmers from writing exploitable code. Today, we know it's possible to make a shitpile with any tool, leaving java and other runtimes to sacrifice much of the potential for lean, high performance software for small gains in security (the latter with a growing list of caveats). I'm not a fan of such mediocrity but it has become the norm these days. It also doesn't help that java comes with a browser plugin that opens a complete runtime environment to drivebys. Microsoft abandoned activex for this reason.

  22. Re:argumentum ad populum? on US Senate Set To Vote On Whether Climate Change Is a Hoax · · Score: 1

    Yup.. It's become quite the proto-singularity..

  23. argumentum ad populum? on US Senate Set To Vote On Whether Climate Change Is a Hoax · · Score: 1

    Just because the majority think something is true or false doesn't make it so. Voting will not change reality. Washington's royalty culture needs to die.

  24. Re:Silverlight isn't long for this world on Silverlight Exploits Up, Java Exploits Down, Says Cisco · · Score: 1

    Why wouldn't it support html5 for netflix?

  25. Re:Attitudes on The Current State of Linux Video Editing · · Score: 1

    err I meant vfw not vfs.