Slashdot Mirror


User: blirp

blirp's activity in the archive.

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

Comments · 91

  1. Re:Don't Confuse DLL Hell with the Linux Situation on Linux Descending into DLL Hell? · · Score: 2
    DLL Hell is when Foo DLL 1.0 and Foo DLL 6.0 both stored in the file foo.dll (unlike libfoo.so.1.0 and libfoo.so.6.0) and brain damaged installer programs blindly replace foo.dll version 6.0 with foo.dll version 1.0, thus breaking every single program that depends on the newer version of foo.dll

    ... or blindly replacing ver. 1.0 with ver. 6.0 leaving apps dependent on features and bugs of 1.0 unusable.

    M.

  2. Re:Windows isn't "DLL Hell" anymore. on Linux Descending into DLL Hell? · · Score: 2
    Before MSI, every application had to use its own installer, and each installer might or might not be so smart about checking for versioning / existance of DLLs before forcibly overwriting newer versions with older versions of the same library or blowing away a more recent registry key.

    But you'll still have the problem of new versions not being backward compatible. MFC42.DLL exists as a 4.2 as well as 6.0 version. MSVCRT.DLL ver 6.0 tigthened up memory management, but that uncovered bugs in existing programs, rendering them unusable. This problem wasn't fixed until SP3 of Visual Studio.
    Note that all of these problems are related to new versions of a DLL without changing it's name.
    Being backward compatible also means keeping the old bugs. At which point it just becomes riduculous.

    M.

  3. Re:Bad thing? on CD burning Will Never Be The Same · · Score: 2
    If there is no money in music, then a lot of the best musicians will simply cease to exist. Yes, we will always have amateur musicians, but a lot of the best musicians will never happen unless they are able to practice all day, every day, and you can't do that unless you do it professionally. There is a reason why professional athletes, for example, will kick almost any amateur's ass.

    And why all commercial software kicks all free software. NOT!

    :*)

  4. Stupidest Web-disclaimer on Longest Email Disclaimer Awards · · Score: 2
    I still think the Borland Community has the stupidest disclaimer I've seen:

    The materials on this Site are copyrighted and protected by
    worldwide copyright laws and treaty provisions. You may
    download one copy of the information ("Materials") found
    on this Site on a single computer for your personal, non-
    commercial internal use only unless specifically licensed
    to do otherwise by Borland in writing.

    Now, that's what I call community building.

    M.

  5. Re:Sourcecode is not important,Algorithms/designs on Caldera Mulling Alternate Licenses · · Score: 1
    Really? Ever understood what's really important when building software? it's not the IMPLEMENTATION. It's the DESIGN, the algorithms behind the implementation. And these are not stored in GPL-ed code, but in research documents, patents, whatever.

    I didn't really understand this answer. The question was how BSD would be better than GPL. I can't see how your reply has any bearing on wheather said code is BSD or GPL or any other license. As long as you can read the source, you can extract the design. Or at least, the license on the code is not what stops you from understanding the design.

    If MS wants to get some designs implemented, they get the research documents, bring that to their huge staff of university graduated programmers and let them implement these designs, these algorithms. They don't need BSD licensed code, nor will they use it.

    This is plain wrong. The TCP/IP implementation in all Windows versions are based on the original BSD TCP/IP implementation.

    Also, a lot of places, the code is actually a lot better to copy than the design. For instance with anything security related it is better to copy the entire source since a lot of breaches are caused by bad implementation.
    More generally, it's better to copy the entire source if it's a complete 'piece', and has a good interface (this would be called a component today, but a library 10 years ago).

    M.

  6. Re:They only exist because of the GPL on Caldera Mulling Alternate Licenses · · Score: 5
    When people really investigate it, they will find the truth. GPL has it's pitfalls. You may want to modify code, but can't cause you don't want to release the changes.

    There's nothing in the GPL that prevents you from modifying the source. The only thing the GPL says is that you have to give the source to whomever you give the binary. And that the recipient then can do whatever they like with that source. There's nothing preventing you from charging a million dollars for that binary.

    The Apache-example you gave seems a bit weird. If you make a custom modification for custom need, that sounds like a single web-site (or at least custom-built ones ("site" her might be embedded)). And there's nothing in the GPL preventing you from doing that either. You just have to give the customer the source.

    M.

  7. Re:EU has it right. on EU Data Protection Could Clamp Data Flows · · Score: 1
    Now, nobody that answered me was in any way coerced - they were all free to refuse to cooperate. And those who did answer got something in return.

    Think of it this way: I allow you to use some information of me anyway you like as long as you don't give it to anybody else. That has one price. A t-shirt might be enough. Or maybe I jus like you.
    If you want to share my information with others, you need to pay me more. Since I cannot limit the number of copies you make of the information. The only possibility is to make laws that enforce that limit.
    As such, it is very similar to other copy-limitation-agreements for other easy-to-copy items.

    M.

  8. Re:Stallman Would Agree... on Microsoft Clarifies Jim Allchin's Statements · · Score: 1
    ... but the FILEVERSION resource says 'Copyright (C) Microsoft Corp. 1981-1996'...

    M.

  9. I do, when it's necessary on Who Still Codes In Assembler? · · Score: 1
    I program mostly in Borland Delphi, so dropping to Assembler is as simple as
    asm

    end;

    So, if I need to, I do. My main reason is when Borland's handcoded assembly code sucks... For instance, string searching uses REPNE SCASB. Which was the best way of doing searching on 8086 and possibly 80286 processors. But on todays Pentiums, a tight loop is faster. So, if I have a lot of string searching to do....

  10. Re:I'm pissed off at all sites that don't use... on Will Browser-Neutral Web Soon Become Thing Of Past? · · Score: 1
    *sigh* ASP, like JSP, PHP and Perl CGI works by generating HTML on the server, which is then sent to the browser. It's not like some weird ASP code is sent to Netscape, and Netscape gets confused and doesn't know what to do

    I *think* the original poster meant the ASP code gets a bit complicated if you have to check for the clients' browser all around the place. Which is what you'll have to do if you want to make use of new (or rather, something that *was* new when that particular version of a browser shipped...)

    M.

  11. Re:Servlets Far More Useful Than JSP's on Web Development With JSP · · Score: 1
    It would be far better to use servlets that point to special tags on the HTML pages.

    Isn't this called taglibs?

    M.

  12. Re:More juice ... I like this part on Interbase Backdoor, Secret for Six Years, Revealed in Source · · Score: 1
    I wrote:
    When she later spoke with someone from InterBase R & D, the "fix" he described was merely a change to a string - no fix at all.

    MadAhab wrote:
    That seems to indicate that they DID just switch passwords.

    Ok, I was a bit unclear on who said what. But it was the InterBase folks at Borland ('he') who did the 'change passwords' trick, and the Interbase2000 people ('she', Open Source people) discovered it and called it a no-fix.

    This is, of course, no proof that the patch doesn't just change the password...

    M.

  13. Re:More juice ... I like this part on Interbase Backdoor, Secret for Six Years, Revealed in Source · · Score: 1
    Maybe they didn't fix it at all but just changed the password.

    Hopefully not...

    There's another line in there that indicates they didn't just switch passwords:
    When she later spoke with someone from InterBase R & D, the "fix" he described was merely a change to a string - no fix at all.

    M.

  14. Re:More juice ... I like this part on Interbase Backdoor, Secret for Six Years, Revealed in Source · · Score: 5
    From the webpage:
    For security reasons, the patch is available only as a binary and you will be required to register for this download.

    Nice, eh?

    M.

  15. Re:From Borland: a definate maybe? on Inprise's Kylix To Be Opened? & Gnome Alliance · · Score: 1
    You forgot the important part:
    to the GNOME Foundation.

    Meaning, IBM will see it, you and I won't, maybe?.

    M.

  16. Re:From Borland: a definate maybe? on Inprise's Kylix To Be Opened? & Gnome Alliance · · Score: 1
    I think the main point of Kylix is the RAD IDE. At least that's how I read the FAQ...

    M.

  17. Re:Well, yeah! Duh! on Inprise's Kylix To Be Opened? & Gnome Alliance · · Score: 2
    1. Go to Borland's homepage
    2. Click the Kylix link
    3. Click the FAQ link
    4. Read

    Short version: Kylix is Delphi for Linux.
    Borland already has Interbase on Linux, Open Source and the works.

    M.

  18. Re:Arrggghhhh... out of the box, wrong window mana on Inprise's Kylix To Be Opened? & Gnome Alliance · · Score: 1
    Calm down.
    It will work on both.
    Or, at least, that's what they say...

    M.

  19. From Borland: a definate maybe? on Inprise's Kylix To Be Opened? & Gnome Alliance · · Score: 4
    Looking at the Kylix FAQ there are som interesting points, seemingly contradictory...

    Under Is Kylix an Open Source project?, Borland states "The details of the Kylix open source project are currently under development and will be announced at a later date."

    But under How will Kylix be priced?, there's the usual "ranges between $99 and $799 for the standard to professional editions and up to $2,500 for the Enterprise editions"

    So this means, yes, no, maybe, and perhaps later?

    Believe it when I see it, perhaps...

    M.

  20. Re:Here 'tis on TrollTech Releases Embedded Qt PDA environment · · Score: 1
    Where is the QPL for QtEmbedded?

    From the press release:
    Trolltech, creator of the Qt cross-platform graphical user interface (GUI) toolkit, today announced that the current version of Qt/Embedded will be licensed under both a commercial license and an open source license; the GNU General Public License (GPL).

    M.

  21. Re: You obviously forgot the 602P on Ask the Presidential Candidates · · Score: 1

    Right?

  22. Re:Do market powers apply any more? on SDMI Cracked Too Soon · · Score: 1
    If they delay longer, and release something harder to crack (even for the sake of argument, impossible to crack)

    Nah, unless they put the decoder in the speakers, it will be really easy to work around. Don't even need to crack it. Just resample the analog output, or write a sound card driver that copies to disk instead of to the actual sound hardware.

    M.

  23. Re:Not to be a whiner, but... on Banning Arcades in Malaysia? · · Score: 1
    What it boils down to is that you have the right to do whatever you please, so long as you do not interfere with another.

    This is a rather shortsighted view. Humans dominate this world because they cooperate. Not because we go on whatever ego trip we like.

    And, besides, everything you do interferes with somebody else. That also goes for non-doing.

    M.

  24. Re:Double-Reverse-Engineering... on Microsoft Buys into Corel · · Score: 1
    Are you saying they would make a Windows emulator that doesn't run on Linux?
    Guessing: non-free Wine. Meaning only Corel can sell, meaning (possibly) no other distro can run it.

    Then what would it run on? Windows? A Windows emulator on Windows? What's that? A whino?
    Nope, WOW (Windows On Windows). Check an NT box for "wowexec" some time.

  25. Re:Hmmm... Are you sure? on DNA-Tagging Used To Nab Counterfeit Olympic Goods · · Score: 1

    If they can replicate it, why can't anyone else?