Slashdot Mirror


User: larry+bagina

larry+bagina's activity in the archive.

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

Comments · 6,755

  1. Re:Chapter 11 is another option. on Should RISC OS be Open Sourced? · · Score: 1
    Plus his competitors will have to compete against free/open source. He, and others, may be able to reenter the market if the community advances the code.

    So, open source is bad for commercial business, or is it good? Because you're making 2 conflicting claims.

  2. i know! on Will MacIntel Hardware Open The Door for Mac OS X CAD? · · Score: 0, Flamebait
    is the Apple switch to Intel-based hardware going to better my chances for a Mac OS X CAD workstation, or will it remain a pipedream?

    There's a saying, perhaps you've heard it ... "God helps those whom help themselves." Translations: quit your bitching and write it yourself.

  3. Re:InnoDB bought by Oracle on MySQL 5 Production in November · · Score: 1
    MySQL AB (and InnoDB) are released under 2 licenses:
    1. GPL
    2. non-GPL
    In order for MySQL to dual license, they need complete copyright. Obviously, they don't have a copyright on the InnoDB, but they license a non-GPL version from InnoDB.

    If Oracle raises the InnoDB prices, or refuses to license it, MySQL still has access to the current GPL code, but they can no longer sell a closed source version with InnoDB included.

    If they wish to keep selling a closed source version, their best option is to develop their own alternate table type that doesn't suck. Given their track record ... they should be glad that PostgreSQL is BSD licensed.

  4. Re:Who cares? It's still a shitty database. on MySQL 5 Production in November · · Score: 1

    actually, slashdot, sourceforge, etc. use db2. They switched over a couple years ago, but they don't like to talk about it.

  5. Re:ASSume on Arrays vs Pointers in C? · · Score: 1

    incrementing a 32-bit pointer requires 2 additions (for the low word and hi word in case of carry). Incrementing the 16-bit offset requires only 1.

  6. Re:Arrays vs. Pointers determining speed on Arrays vs Pointers in C? · · Score: 1

    assuming char *A or char A[128] or whatever, A[0], A[1], etc. is a byte in memory (not a pointer to it).

  7. ASSume on Arrays vs Pointers in C? · · Score: 3, Insightful
    My argument is that one cannot assume

    You're right, however, you're also assuming that your pointer arithmetic is faster.

    Consider a 16-bit architecture with 32-bit pointers.

    Using pointer arithmetic (32-bit) is slower than using an index register (16-bit) as the array index.

    So stop assuming and stick with what you're comfortable with. If you prefer pointers, fine. if you prefer arrays, fine. But if you're so concerned with the speed, you'd be doing it in assembly.

  8. Re:Mythbusters on Archimedes Death Ray · · Score: 2, Informative
    they're probably more concerned with this little law:

    "a legally qualified candidate for any public office to use a broadcasting station [must] afford equal opportunities to all other such candidates for that office in the use of such broadcasting station."

    The law doesn't apply to cable, but they'd probably just prefer to play it safe than worry that the FCC, Congress, or the Judicial System changes their mind.

  9. so what? on Named Innovators/Developers of Color? · · Score: 3, Insightful
    Are you good close personal friends with all these "named IT/OSS/Web/CS innovators/developers"? Would you recognize them if you saw them?

    Do you really care if they're "of color", gay, jewish, albino, are incontinent, fear showers, or smell like alabama truckstop?

    I want software that works. Licensing is secondary; color of the developers isn't even a factor.

  10. Re:Coming soon to Gaim on Yahoo and Microsoft to Merge Instant Messengers · · Score: 2, Funny

    it's open source. That means audio support will happen when you stop picking your pud and start writing code.

  11. Re:AJAX help requested on Preview of New MSN Hotmail · · Score: 2, Funny
    Can anyone provide a link to a site that describes how to implement these kind of features with AJAX? Also, an explanation of how Google Maps uses AJAX would be great too.

    Yes! Under the "View" menu, select the item that says "Source" or "Page Source".

  12. Re:Dial-up? on Preview of New MSN Hotmail · · Score: 1
    I've used gmail over dialup, it's fine speedwise.

    Ajax generally requires less total bandwidth since you're sending small requests back and forth rather than complete page loads everytime you do something.

  13. wtf? on CNN Interviews Kevin Mitnick · · Score: 0, Redundant
    like when I took code from Motorola and Nokia when I was a hacker to look at the source code. I took a copy, which is essentially stealing

    I'm sorry, you just lost my respect. Copyright infringement is not theft!

  14. Re:Rails everywhere. on TurboGears: Python on Rails? · · Score: 1

    cache/objectscript was doing this long before ruby on rails. And much better, since the db is integrated into the language.

  15. Re:Proof is Slashdot itself on TurboGears: Python on Rails? · · Score: 1

    90% of what /. serves is static (cached). disappearing stories, not being able to post comments, comments appearing int the wrong stories, miscellaneous 403 and 501s, etc, are common occurrances.

  16. Re:good programmers on Java Urban Performance Legends · · Score: 1
    we're using 2 integers rather than a char and an integer, which in most systems nowadays, is actually worse memory usage (8 vs 5 bytes).

    In an array of characters, 1 character is 1 byte, but in a struct or the heap or the stack, variables are word-aligned for faster memory access. A char and an int both use 4 bytes (on a 32-bit system).

    Of course, the compiler can (will) optimize your temp variable into a register, so it's just syntactic sugar for your benefit.

  17. Re:good programmers on Java Urban Performance Legends · · Score: 1
    You can eliminate one more local variable using an XOR swap.

    Compilers play tricks behind your back. Stuff like keeping local variables in registers, and creating extra local variables to handle intermediaries of complex expressions.

  18. Re:Gosh on MySQL Moves to Prime Time · · Score: 1
    suggestion:

    If you use php and mysql, I suggest using the Pear::DB module (include('DB.php')).

    1. It's more similar to how other languages use SQL
    2. It makes it easier to switch databases
    3. It decreases the chances of an SQL injection attack

    Also, throw these in your .htaccess file (or php.ini):

    • php_flag magic_quotes_gpc off
    • php_flag register_globals off

    Since those options are on by default, and retarded. (Not "slow" retarded, not even "short bus" retarded, I mean "wearing diapers because you shit in your pants and eat it" retarded).

  19. Re:oy vey on Oracle Acquires Innobase · · Score: 0

    Pudge,

    Is the code that converted all the old skanky comments into valid html available somewhere? I tried looking through the sourceforge cvs for it, but sf goes down like a crack whore in need of a fix, and reading through the slash code makes me want to pour hot grits down my pants.

  20. haha! on Oracle Acquires Innobase · · Score: 2, Funny
    InnoDB is GPL, so once again the beauty of the open source market is at play: there is no lock in, and we can continue to develop Innodb as we see fit. The code is out there and we plan on continuing to support it..

    Of Course, InnoDB exists because MySQL's effort (MyISAM) is such a piece of shit.

  21. Re:Sad on Court Rules in Favor of Anonymous Blogger · · Score: 5, Insightful
    where in the constitution does it guarantee anonymous speech?

    Wrong question. The Constitution enumerates the powers that the gov't has; it is not a list of restrictions. The correct question is, "where in the Constitution is Congress granted the authority to regulate speech?".

  22. Re: candidate for -2 moderation on Protothreads and Other Wicked C Tricks · · Score: 1
    it will probably never happen, however, you could probably write a greasemonkey script (you are using firefox, right? :) to hide GNAA posts, posts by TripMasterMonkey, etc.

  23. i know! on Nitpicking Wikipedia's Vulnerabilities · · Score: 3, Interesting
    Questions: erigol asks: Have you considered setting up a slashdot Wiki, since Wiki's are, like, the rage, and stuff.
    CmdrTaco: Wiki is silly. Not scalalble.
    hemos: Wiki's make me want to guage my eyes out. gouge, even.
    CmdrTaco: They're fun for small groups.
    hemos: No, I like the idea.
    CmdrTaco: Slashdot is for millions.
    hemos: And yeah, for smaller groups is great. But we spent the 3 years scaling up to this level of users
    CmdrTaco: Thats the thing that people don't understand-
    hemos: and I'd hate to do the same thing over again with a different technology.
    CmdrTaco: the rules are different when you have 5,000 users vs 350,000 each day. What works @5,000 is ludicrous at 350,000. You don't lock your doors in a town with a population of 5,000... but at a quartermilllion people, thats just stupid :)

    So there you have it, from the same horses mouth that told us that the iPod is lame.

  24. Re:OS commerce shopping cart on Security for a Small Stock Photo Company · · Score: 1

    I agree. It's a complete mess. I use it to run a 4000 item store. I do almost all the administration via perl scripts and completely new (from scratch) php scripts (using PEAR::DB, not their horrible sql classes). It wasn't worth my time to try to fix the major deficiencies in the existing admin tools.

  25. Re:hmm on Nessus Closes Source · · Score: 1

    Sourceforge didn't have any problem converting to GPL to closed source. It's impractical for Linux, since there are many contributors, and none of them assigned their copyright (official GNU projects require contributors to sign a release). If you read the story description at the top of the page, you'd see that they had very few outside contributions.