Slashdot Mirror


User: jones_supa

jones_supa's activity in the archive.

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

Comments · 6,543

  1. Re:Step 1 on How Apple Can Take Its Headphones To the Next Level · · Score: 1

    That was exactly what he was talking about.

  2. Re:Not impressed. on Intelligent Autonomous Flying Robots Learn and Map Environment As They Fly · · Score: 2

    Indeed, who would be interested in an vacuum cleaner capable of smoothly navigating in 3D space. At least design something practical, like a TV integrated on my fridge.

  3. Re:Want the Sound Quality To Improve? on How Apple Can Take Its Headphones To the Next Level · · Score: 1

    Meeh. Why even bother with lossy codecs anymore when we have the HDD space. Give me just RIFF WAVE or FLAC and be done with it.

  4. Re:EarPods were shit on How Apple Can Take Its Headphones To the Next Level · · Score: 1

    Sound directly from bone conduction: Head Bones

    Another 'No Speakers' approach: Sound Band

    Player inside the in-ear phones: Dash

  5. Re:EarPods were shit on How Apple Can Take Its Headphones To the Next Level · · Score: 0

    Let me linkify those links

    Nice try, but in proper hyperlinking the link text is not supposed to be the URL.

  6. Re:how about we stick to making the basics better on How Apple Can Take Its Headphones To the Next Level · · Score: 3, Insightful

    While it might be happening, that kind of intentional weakening is actually very rare. I also suspect that that Samsung incident wasn't intentionally planned. We simply have better capability to engineer things accurately to a lower price point, which also leads to more flimsy materials.

  7. Re:Kernel bloat on Are the Hard-to-Exploit Bugs In LZO Compression Algorithm Just Hype? · · Score: 1

    A cynical man would say that none of those four things you listed are not that important. :) I think only "compressed init filesystem" is widely used in PCs, and we would have enough space to leave it uncompressed too.

  8. Re:Fanboy much? on KeyStore Vulnerability Affects 86% of Android Devices · · Score: 2

    I wrote it. Thanks for the feedback.

  9. Re:And for those of us outside the old NTSC areas on YouTube Introduces 60fps Video Support · · Score: 1

    These days most LCD panels are 60Hz, so it makes sense to go with 60fps.

  10. Re:Too bad Framefree never caught on on YouTube Introduces 60fps Video Support · · Score: 1

    Wow, that sounds quite cool.

  11. Re:For 2D games too on YouTube Introduces 60fps Video Support · · Score: 1

    What does VDP mean?

  12. Re:sudo apt-get install xubuntu-desktop #already on Microsoft Suspending "Patch Tuesday" Emails · · Score: 1

    As an extra tip for anyone using XFCE, it's a good idea to disable the integrated compositor and use Compton instead. The default XFWM4 compositor uses XRender which often causes tearing.

  13. Re:Google I/O on Why The Korean Government Could Go Open Source By 2020 · · Score: 2

    There is also a bug where the initial install of Windows 8 fails to show progress when installing updates (stuck at 0%), while the backend updates worker is actually installing updates just fine. Also a bug from Windows 7 is still present: the File Explorer occasionally loses the ability to display Japanese characters properly: they are shown as squares instead. The "Burn disc" button does not work from the ribbon menu, but "Burn disc" from the right-click context menu works.

    Hey, I agree with you. Windows is not an angel either.

    The problem is that Linux has 100x more of these kind of bugs.

  14. Re:Proofread... on YouTube Introduces 60fps Video Support · · Score: 1

    Ok, that certainly makes sense. Thanks.

  15. Re:Proofread... on YouTube Introduces 60fps Video Support · · Score: 1

    Submitter here, thanks for the feedback. For me to be able to continue delivering high-quality content to you in future, can you describe more accurately what the problem is with the sentence? Please notice that in the beginning of the summary, "two new features" is mentioned.

  16. Re:Google I/O on Why The Korean Government Could Go Open Source By 2020 · · Score: 5, Informative

    On PC desktop the QA is still terrible. For example, Ubuntu 14.04 LTS ships with a media player which does not work properly with touchpad and which crashes when the subtitle setting is changed. Also the ACPI fan speed control is broken for a bunch of laptops. Sure, the correct solution here is simply to switch from Totem to VLC, and use a different kernel for the fan problem. Easy enough... but soon enough, some other glitch pops up. As long as Linux desktops (not only Ubuntu) are filled with these nasty surprises, the support costs will be enormous for fixing all these bugs or finding workarounds for them.

  17. Re:Real programmers use echo on Ask Slashdot: Correlation Between Text Editor and Programming Language? · · Score: 1

    Ah yes, that's true.

  18. Re:Real programmers use echo on Ask Slashdot: Correlation Between Text Editor and Programming Language? · · Score: 1

    You didn't make a.out executable.

  19. Re:Uh, sure.. on Ask Slashdot: Correlation Between Text Editor and Programming Language? · · Score: 1

    Apparently running it on a 486 with 256mb of RAM is, well, your fucking problem.

    That's a lot of RAM for a 486. :)

    4 or 8 megabytes was typical.

  20. Re:Sanitize crazyness on Exploiting Wildcards On Linux/Unix · · Score: 1

    Interesting idea. That might be used to mitigate the danger.

  21. Re:s/Linux\/Unix/GNU/ on Exploiting Wildcards On Linux/Unix · · Score: 1

    It would still work if the first file name is interpreted as an argument.

  22. Re:in root? Am I missing something? on Exploiting Wildcards On Linux/Unix · · Score: 1

    Yeah, you have a point there. But there's all kinds of scenarios. Maybe an upset employee leaves such a bomb somewhere and it is triggered after he has left the company.

  23. Re:PowerShell on Exploiting Wildcards On Linux/Unix · · Score: 2

    Well, yeah. The object-oriented approach is pretty clever for example. Do not have to sweat over spaces in file names breaking your scripts and things like that.

  24. Re:Sanitize crazyness on Exploiting Wildcards On Linux/Unix · · Score: 1

    Yes, but what if the "--whatever" happens to be the first file name in the list?

  25. Re:Question... -- ? on Exploiting Wildcards On Linux/Unix · · Score: 2

    Use "find" to delete the files. This way you avoid all the wildcard bombs. Look in /etc/init/mounted-tmp.conf in Debian/Ubuntu for an example:

    # Remove all old files, then all empty directories
    find . -depth -xdev $TEXPR $EXCEPT ! -type d -delete
    find . -depth -xdev $DEXPR $EXCEPT -type d -empty -delete