Slashdot Mirror


User: ruud

ruud's activity in the archive.

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

Comments · 107

  1. Re:WHY the net is exempt on New Federal Government Stance on Internet Taxes · · Score: 1

    But what about goods that are sold within the same state? Why should online purchases be exempt, while mail order isn't? The only difference is the way in which the order is placed.
    --

  2. Re:Programming cock-up on Leap Year Woes in Japan · · Score: 1

    isleap = false;
    if(year%4 == 0) {
    isleap=true;
    year%100 == 0 ? isleap=false;
    year%1000 == 0 ? isleap=true;
    }

    That's rather complicated way of expressing it. And it's wrong too, since it's every 400 years, not every 1000 years, that a multiple of 100 is a leap year.

    Wouldn't it be easier to just write:
    isleap = !(year%4) ^ !(year%100) ^ !(year%400);


    --
  3. Availability outside the US? on Lucent to Offer Cheap Wavelan Cards · · Score: 2

    Does anyone know if these things are available outside the US (e.g., .nl) for reasonable prices? Are the US units compatible with the ones sold in Europe or do they operate in a different frequency band (like cell phones)?
    --

  4. Re:Old childrens toy. on Moldable Magnets · · Score: 3

    They've managed to embed iron filings in rubber. Forgive me but is this really new?

    Except in this case, they have embedded the iron (and thus the magnetic properties) in the molecules themselves, as opposed to simply mixing it in, which was undoubtedly the case with your toy.


    --
  5. Re:Where's the faster connections? on Atmel Chip for Embedded Linux Devices · · Score: 1
    For even telephone-quality calls to go through IP *extremely* fast connections are needed at both ends of the call.

    Eh? ISDN quality voice uses 64 kbps (56 kbps in the US) of bandwidth. Since we are talking about voice calls only (data calls over VoIP are pointless), they can be compressed quite well, so they can easily be handled on a slow link.

    What kind of "extreme" bandwidth were you talking about?
    --

  6. Trademarks on Apple Forces Aqua Themes Off themes.org · · Score: 5

    As someone on themes.org said, this is purely a trademark issue, since they left other themes that do not use the Apple symbol, but do use a MacOS look alone, e.g., Aqua.
    --

  7. Where is Holland? on Censorware and Memetic Warfare · · Score: 1

    Where is the Holland library? Obviously not in the country by that name.
    --

  8. Re:You know what's really terrifying? on Textmode Quake · · Score: 1

    On the AA Project home page, there's a section on 'Software known to support AA'; and there, second on the list, is The GIMP. textmode GIMP! Waaahhh, that is so perverse. I greatly fear I shall have to play with this...

    I hate to burst your bubble, but the gimp supports aalib because it can render (save) images to ASCII art format, not because the program itself executes in text mode.


    --
  9. Re:WebSloth? on Negative Webmonkey Editorial on Andover/VA Merger · · Score: 1

    And can Iget a copy of the VA Linux distribution for my computer at home?

    Take a look here.


    --
  10. Re:DOS Solution? on More DoS Attacks: CNN, Amazon, eBay, Buy.com... · · Score: 1

    But does your system run on Gnulix?
    --

  11. Re:Not Available For Download on University of Michigan Linux · · Score: 1

    Correct. And the select few (in this case, university people) who get the distribution are free to redistribute, so expect second-hand availability soon.

    Indeed. You can decide to whom you distribute, but you cannot restrict them in distributing further.


    --
  12. Re:AT&T's choice OS FreeBSD performance tweaks on Eclipse/BSD Released by Bell Labs · · Score: 1

    FreeBSD is aimed at high end stuff. It has SMP and a bunch of perofromance twekaing that the other BSD's lack. That's why it was used for rendering [...]

    Actually, for rendering you don't need SMP at all. You can simply set up a farm of cheap boxes and have each one do a frame at a time. SMP only makes things more expensive and can actually slow things down due to cacheing effects.

    This is what I remember from a discussion on the LKML a few weeks back.


    --
  13. Re:Not Available For Download on University of Michigan Linux · · Score: 1

    ... offering the source to anyone who asks. I'm not sure that this allows them to refuse to give the source to someone.

    Accompany it with a written offer ... to give any third party ...

    First of all, they can choose to simply supply the source with the binaries, so that clause 3b doesn't hold at all.

    Secondly, the clause explicitly mentions accompany. The GPL does not force anyone to distribute binaries, but if you do, and choose to use this clause, you have to accompany the binary distribution with the offer. Nowhere does it say that you have to give the written offer to anyone who asks.

    Summarizing, if you don't give the binaries, you don't have to give the source.


    --
  14. Re:Editorial on Letter to the Community on Andover/VA Merger · · Score: 1

    I have never had trouble getting the source code for mysql.

    That does not make it open source.

    Besides, I was not claiming whether MySQL is better or worse than Oracle, just pointing out the fact that MySQL is not open source.


    --
  15. Re:Editorial on Letter to the Community on Andover/VA Merger · · Score: 2

    I wish they would use Oracle, and then maybe they wouldn't have to flush all the past stories and comments (i.e., the whole database would be searchable). I would imagine the reason they do that is that MySQL is not known for scaling up to large databases.
    Unfortunately, Slashdot probably feels they need to use Open Source no matter what, even if that means using inferior software. That's the big problem with embracing a religion, rather than embracing "the best".

    Interestingly, MySQL is not open source.


    --
  16. server51 and sourceforge? on Andover.Net and VA Linux Join Together · · Score: 5

    How does this affect the server51 (Andover) and sourceforge (VA) projects, since they both appear to have similar goals?
    --

  17. Re:Overwriting running bin's in Linux? on AOL 5 Gets $8 Billion Class Action Suit · · Score: 1

    If you used dpkg or rpm, it may have looped while waiting to replace things.

    More likely, the package manager first deletes or renames the old binary before installing the new one.

    Deleting a running binary or an open file is OK. The disk blocks won't be freed until all references are gone.


    --
  18. Re:Shortest Self Duplicating C program on Obfuscated C Code Contest Begins · · Score: 1

    I remember hearing about a contest to write the shortest self-duplicating C program (i.e. something that would spit out an exact copy of its own code). Someone submitted an empty file once, which is kind clever. But does anyone know of the next shortest?

    Actually, the empty program is not a valid C program according to the ISO / ANSI definitions. For one thing, it doesn't define main() and so will produce a linker error.

    The only other one I off hand know is the one mentioned in the comp.lang.c FAQ


    --
  19. Re:first on Obfuscated C Code Contest Begins · · Score: 1

    A function prototype with an empty parameter list is not an ANSI function declaration.

    Actually, it is a function declaration, just not a prototype.


    --
  20. Re:So that would make the next all odd number date on Happy 'Even Day' - the First in 1112 Years · · Score: 1

    I guess it would then be : 9/11/3111

    What's wrong with 1/1/3111 ?


    --
  21. Re:Heh... on Linux Ported to IBM's Network Computer Terminals · · Score: 2

    Linux is going down unless it gets some Winmodem support... BUILT IN! Win2k is winning...ahah...

    WinModems based on the Lucent chipset work in Linux, with a proprietary driver from Lucent themselves. The WinModem in my Toshiba notebook works without a problem.

    It is only a matter of time before other manufacturers will release drivers, and before open-source drivers will appear.


    --
  22. Re:Proof? Here's a little proof! on Is the RSAs Loss Everyone's Gain? · · Score: 1

    Take any product P*Q = N(P and Q both prime)
    This is always true:
    (N+1) MOD 6 == 0 or
    (N-1) MOD 6 == 0

    Trivial counterexample: P=2, Q=3, giving N=6.

    Neither 7 MOD 6 == 0, nor 5 MOD 6 == 0.

    Q.E.D.


    --
  23. Re:Proof? on Is the RSAs Loss Everyone's Gain? · · Score: 1
    You're right that I should provide proof [...] I don't know how and where to publish the source code

    Post it to the sci.crypt USENET group.
    --

  24. Re:Question on Interview: Ask the Debian Project Leader · · Score: 1

    if we follow RMS to the letter then it should be GNU/Gnome/Enlightenment/GIMP/GTK+/GLibc/Linux.

    Check out what the G in Gnome, GIMP, GTK+, and GLibc stands for.

    I'm not sure about the g in Enlightenment, though :-)


    --
  25. quick translation on German Government donates 250,000 DM to GNU Privacy Guard · · Score: 4
    (disclaimer: i'm dutch, not german)

    Before the end of the year, the open source project GNU privacy guard (GPG), coordinated by the programmer Werner Koch from Dusseldorf, will receive a financial injection of DM 250,000 from the federal department of economy and technology. With this, the federal government wants to unlock the potential of open source for privacy and hopes to make a statement with the gift.
    --