Slashdot Mirror


User: Ayende+Rahien

Ayende+Rahien's activity in the archive.

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

Comments · 941

  1. Re:No, it's not legal - it's viral on Microsoft EULA stokes crusade · · Score: 2

    It's different because you can't take GPL code and use it with another license.
    MS at least gives you the choice of licenses, you can choose licenses which aren't GPL/like it.

    Yuck! MS is more free then FSF? I think I need a lie down.

    --
    Two witches watch two watches.

  2. Re:Is this legal? on Microsoft EULA stokes crusade · · Score: 2

    An SDK contain some MS code, header files, mainly.

    But headers are enough to GPL the code as well.

    So it's not like you don't have *any* code.


    --
    Two witches watch two watches.

  3. Re:Is this legal? on Microsoft EULA stokes crusade · · Score: 2

    The part about not using their software in production machines is to prevent you from coming to them whining as say "Look, your evil beta software crashed and all my data is gone."

    (Not that you could do that any case, but still.)

    The part about not distributing the application talks about *their* application, not your code.

    --
    Two witches watch two watches.

  4. Re:Likelihood of .NET and hailstorm success is low on Authentication is the Key · · Score: 2

    Hm, I know that NTFS has something like it, I wonder if it works over networks, anybody knows?

    --
    Two witches watch two watches.

  5. Re:Which means... on Authentication is the Key · · Score: 2

    It may be a medium sized company in the number of its employees, but it's a big sized company considerring its revenue stream and its profits.

    Frex:
    Did you know?
    MS had more profits than IBM.

    --
    Two witches watch two watches.

  6. Doesn't seem to be problem on Can University Students GPL Their Submitted Works? · · Score: 2

    Since the University require a non-exclusive license, you can give them your code under whatever license you want, and also license it under the GPL.
    The University can do whatever it wants with the code you handed them, and you can use your code under the GPL, or any other license that you want.
    It's no different than the dual licensing of projects.

    --
    Two witches watch two watches.

  7. Re:Read a little more closely next time on Can University Students GPL Their Submitted Works? · · Score: 2

    The instructor can do it, by requiring that you would use GPL library.

    --
    Two witches watch two watches.

  8. Re:$ cd c:/winnt; grep -i regents * on WSJ Reports On MS Using Open Source · · Score: 2

    Too much difference in the low level design of the OS to make it possible.

    --
    Two witches watch two watches.

  9. Re:Blah blah blah on WSJ Reports On MS Using Open Source · · Score: 2

    1) Ms has been using the BSD *API* for its sockets. But then, who didn't. The code itself is not portable to NT (maybe 9x, but I don't think so), because of the different models that they use.

    --
    Two witches watch two watches.

  10. Re:$ cd c:/winnt; grep -i regents * on WSJ Reports On MS Using Open Source · · Score: 2

    Please note, all of the above are utitilies, not the stack, or winsock itself.
    MS did port some utilities from BSD to NT, but that is different from taking the stack, as many seem to claim.


    --
    Two witches watch two watches.

  11. Re:\device\floppy0 on WSJ Reports On MS Using Open Source · · Score: 2

    It's how it goes beihd the scenes, yes.

    \Device\PhysicalMemory - /dev/kmem

    Etc.

    I can't think of any reason why an application would try to write directly to the floppy this way, unless it's something like Rawwrite.
    And I don't think that this is how most applications works.

    --
    Two witches watch two watches.

  12. Re:Well.. we knew that. on WSJ Reports On MS Using Open Source · · Score: 1

    Do you understand the difference between porting a utility than porting that *stack*?

    The API difference between BSD & NT are miniscule, the way they are implemented is totally different.

    The BSD kernel is a monolitic one, NT's design is closer to mirco kernel, using layered I/O.
    Totally different design, the BSD code wouldn't be of much use there.

    --
    Two witches watch two watches.

  13. Re:Practice What You Preach on WSJ Reports On MS Using Open Source · · Score: 2

    Maybe beacuse Hotmail didn't *start* as a MS project?
    They bought it when it run FreeBSD, they have been phasing it out for the last couple of years.

    You don't just swap servers with something as large as Hotmail.

    http://www.microsoft.com/technet/migration/hotma il /default.asp

    --
    Two witches watch two watches.

  14. Re:Article written to lowest common denominator on WSJ Reports On MS Using Open Source · · Score: 2

    Actually, I doubt that they could take BSD code and easily port it to NT. Well, not unless it was pretty high level, and even then, they would need some Unix portability layer. (They have several)

    What they *can* do is to find out the weak points on NT/2K, etc. And work on them. This can be done in part by analyzing why BSD is better than NT in certain cases, and working on the design of those parts.

    Maybe even studying the code to see how the BSD people solved those problems. But the design of Nt & Unixes is different enough to make code portability at the lower levels a PITA.

    BTW, while Unix & NT have totally different design models (both in the way they are developed, and in the way they work), they both aim at the same targets, and have roughly the same capabilities.

    --
    Two witches watch two watches.

  15. Re:Yeah, well... on WSJ Reports On MS Using Open Source · · Score: 2

    When you've something as large as Hotmail, you don't just throw the old servers out and replace them with your own system at the blink of an eye.

    http://www.microsoft.com/technet/migration/hotma il /default.asp

    --
    Two witches watch two watches.

  16. Re:nobody has ever died due to a violation of (c) on WSJ Reports On MS Using Open Source · · Score: 2

    It *is* legal, because the BSD license allows you to do whatever you want with the code.

    The thing that they are being bashed about is that they claim that OSS (all of it, not just GPL one) is bad, and then they go and use it.


    --
    Two witches watch two watches.

  17. Re:What's new ? on WSJ Reports On MS Using Open Source · · Score: 2

    Ftp, telnet, etc were ported straight from BSD.

    The underlaying code has not, however.


    --
    Two witches watch two watches.

  18. Re:Innovation on WSJ Reports On MS Using Open Source · · Score: 2

    No, the NT design team was led by the same guy who designed VMS, and he brought many concepts to NT that where learned on VMS.

    But NT isn't based on VMS.

    --
    Two witches watch two watches.

  19. Re:Well.. we knew that. on WSJ Reports On MS Using Open Source · · Score: 1

    The *API* is the same.
    The only places that don't use BSD's API (or a variant of) are *old* Unixes.

    There is a reason why it's called Berkley's sockets.

    I'm not familiar with the way the 9x TCP/IP stack is built, but the NT one most certainly isn't based on the BSD one.

    Taking the BSD code and porting it to NT would be a tougher job than just writing your own, because the way BSD & NT works is totally different.

    --
    Two witches watch two watches.

  20. Re:Sorry, Chip...I don't buy it. on The GPL: A Technology Of Trust · · Score: 2

    The FSF disagree with you.
    They say, and I qoute: "at least one application program is free software today specifically because that was necessary for using Readline."

    http://www.gnu.org/philosophy/why-not-lgpl.html


    --
    Two witches watch two watches.

  21. Re:good idea on IE6 to Implement W3C Privacy Standard · · Score: 2

    Yes, and it will probably fsck up your CGI.
    But there are more illegitimate uses of 3rd-side cookies than there are legitimate uses.

    --
    Two witches watch two watches.

  22. Re:SMoke and Mirrors on IE6 to Implement W3C Privacy Standard · · Score: 2

    You can probably sue on false advertisiment, or something like that.

    --
    Two witches watch two watches.

  23. Re:First Party Cookies on IE6 to Implement W3C Privacy Standard · · Score: 2

    No, there isn't such a thing as *global* cookie.
    That is done for security reasons.
    I can't think of a good way to do it that isn't exploitable.

    --
    Two witches watch two watches.

  24. Re:"bad news" for doubleclick? nope on IE6 to Implement W3C Privacy Standard · · Score: 2

    No, IE also has a third-party cookies diable feature.
    This mean that if I visit forbar.com and there is a DB ad there, the browser *wouldn't* transmit cookies to DB.


    --
    Two witches watch two watches.

  25. Re:Linux and ECN on High Performance Network Applications · · Score: 2

    > Because TCP/IP is a standard, there should not be performance differences between stacks whereas a stack performs better speaking to another stack of the same design. TCP/IP should be completely interoperable.

    TCP/IP is indeed interoperable, but some things will be faster on one system, and some on another.
    Because of the different implementation of TCP/IP.

    --
    Two witches watch two watches.