Slashdot Mirror


User: Sexy+Commando

Sexy+Commando's activity in the archive.

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

Comments · 135

  1. Re:Who cares? on Sony Pushes Back Release For Blu-Ray Players · · Score: 2, Funny
    I won't be buying anymore Sony junk, period. I don't care if it is late or not.

    What did you do to make Sony's period late?

  2. Re:Maybe I'm too paranoid, but... on China Frustrated In Encryption Talks · · Score: 1

    Maybe you should check out GB18030

  3. What's Next on OSDL to Bridge GNOME and KDE · · Score: 5, Funny

    vi and emacs?

  4. Re:Heads roll on Heads Roll As Microsoft Misses Vista Target · · Score: 1

    A Recursive head!

  5. Re:Here's a solution on Scaremongering over Spyware? · · Score: 1

    I think you misunderstood how Registry works. All registry are only writable by admin except HKEY_CURRENT_USER, which is a separate file sotred in each users home directory. A well-designed application will store global settings in HKEY_LOCAL_MACHINE and user-specific settings in HKEY_CURRENT_USER. That's why backing up your home directory will also back up your user registry settings.
    In addition, there is an ACL for each key-value pair for fine-grained security.
    Running as Admin will be a problem because spyware can modify HKLM to enable launching spyware as startup for ALL users. (think /etc/profile)
    Running as normal user will be less problematic because spyware can only modify HKCU to enable startup on current user. (think ~/.bashrc)

  6. Emotions? on Robot Demonstrates Self-awareness · · Score: 3, Funny
    The ground-breaking technology could eventually lead to robots able to express emotions.

    Bite my shiney metal ass.

  7. Re:ratio on Searchable C/C++ DB surpasses 275 million lines · · Score: 1

    Uh... See this.

  8. Re:Thank God... on Firefox 1.5 Final Now Available · · Score: 3, Funny

    Except they forgot to put IE inside.

  9. We use this on What Workplace Coding Practices Do You Use? · · Score: 1

    We use agile programming methods.

  10. Re:Wow.. more mis-information... Again... on MSSQL 2005 Finally Released · · Score: 2, Informative

    It seems they are offering free downloads for one year.

  11. Re:Direct download on .Net Framework and Visual Studio Now Available · · Score: 1

    I'm getting 4000kb/s at work.

  12. Re:Lemme guess... on Microsoft Loses Two Key Executives · · Score: 1

    Informative?

  13. Re:We need to reduce number of open source license on Microsoft Reduces Shared Source Licenses · · Score: 1

    We can create a micro-license which people can load modules to add more clauses to it.

  14. Re:Here comes UTF-32! on Asia Next Frontier in Blogging · · Score: 2, Interesting

    You are confused UTF-16 with UCS2. UTF-16 has surrogates to represent the entire Unicode table.

  15. I'll Add... on The Code Is The Design · · Score: 4, Insightful

    The code is the comments.

  16. Re:Sorry Bill but you're full of shit on BBC Bill Gates Interview Part 2: Security · · Score: 1

    I think you computer's infected because iexplorer.exe does run as

  17. Re:Need for a superuser? on Coyotos, A New Security-focused OS & Language · · Score: 1

    Read the second half of my comment.

  18. Re:Need for a superuser? on Coyotos, A New Security-focused OS & Language · · Score: 1
    Simple.

    You rip the drive out and stick into another computer. If there is encryption, superuser won't solve it anyway.

  19. Re:Application vs. OS on Three New Microsoft Bulletins · · Score: 1

    I am the only user on the machine and I compile things everyday. So I use nosuid instead of noexec. It suits my need better.

  20. Re:Application vs. OS on Three New Microsoft Bulletins · · Score: 1

    That would cause major inconvenience to the users. And you forgot the more dangerous places such as /tmp

  21. Re:Application vs. OS on Three New Microsoft Bulletins · · Score: 1
    With MS, IE is part of the OS

    And you believe everything Ballmer said?

    The phrase "part of the OS" is in the sense of sh is part of Linux distribution. IE code runs in Userland. There is nothing magical about it. IExplorer.exe is jsut a tiny piece of frontend-like program that calls this huge MSHTML library, which many windows applications depend on. And they are all user land applications.

    If you said something about most people run IE as Admin, I would believe you. But that's not really the issue here because most spywares and viruses and mass mailers can be installed in the home directory without any problem. ("PREFIX=~ ./configure" anyone?)

  22. Re:No, that one is obvious too on IT Practice Within Microsoft · · Score: 1

    At where I work we are given at least two machines and can install whatever we want, including dual boot to other OS's. We are also allowed to listen to mp3 all the time while coding. Guess it's different culture.

  23. Re:No, that one is obvious too on IT Practice Within Microsoft · · Score: 1

    So you are basically saying that lack of sandboxing limits the users control to their own machines. Seti@home runs perfectly fine in a heterogenius envirnment. distcc runs fine given that you have the right version of cc or cross compiler on that machine. you can even rlogin to usermode linux or vmware or something. It's your implementation that force you to put a DRM on each machine and take away users' power to do whatever they like to their own machine.

  24. Re:No, that one is obvious too on IT Practice Within Microsoft · · Score: 1

    The environment you described is a situation where many people share a few machine. But in Microsoft people are given multiple machines to just play around. Nothing is really shared except files on file servers.
    You also ignored the fact that Those are local admins, not DOMAIN admins. People cannot screw with other people's files no matter what if the admin rights are only local to users' own machines.
    Why would you want other people to
    At the end you also give an invalid example on how those rlogin machines have to be locked down. It has nothing to do with people's desktops. Do you rlogin to reception desk's computer to build a project? Think not.

  25. Re:Comedy... on IT Practice Within Microsoft · · Score: 1

    Then what's the difference from giving the user admin access to his own machine? stuff in /bin or /etc are hardly critical compared to the data in your home directory, say, checked out source codes. IT people probably already have backup of those common directories but not user diretories.