Slashdot Mirror


User: Rattencremesuppe

Rattencremesuppe's activity in the archive.

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

Comments · 88

  1. Re:Lawsuits on Sony Patents Matrix-Like Game Technology · · Score: 1
    There are marrage books that actually teach how to make sex not plesurable as it is a nasty thing that should only be used for procreation.

    In some archaic societies, they even used female genital mutilation for that reason.

  2. Re:Oh. My. God. on 18th International Obfuscated C Code Contest Opens · · Score: 3, Funny
    Am I the only that thinks that perhaps the programmers of the world can spend their energies doing something a little...um...i dunno...um...productive?

    Like... posting on Slashdot?

  3. Re:Grr on 18th International Obfuscated C Code Contest Opens · · Score: 2, Informative
    Stupid HTML that ignores white space. It looks kinda cool in the source of the page.
    Use <ecode>
  4. Re:Interference issues: raising the N in SNR on Ultrawideband May Stall Before It Starts · · Score: 1
    the additional noise energy UWB adds is very very minute in a single frequency range (UWB has incredibly low power spectral density by design; the energy of the signal is spread over a huge spectrum)

    thats right, but the fear of UWB opponents is that when you have lots of UWB devices around (once it becomes mainstream), the noise may sum up to a level that it can jam the narrowband devices.

  5. Re:it means a lot on Multithreading - What's it Mean to Developers? · · Score: 1
    Fast, buggy code has zero value.

    But it can crash much faster than slow, buggy code.

  6. Re:it means a lot on Multithreading - What's it Mean to Developers? · · Score: 1
    A nifty new processor feature won't be noticed in the computing world because it won't get used anyway,

    this reminds me of the SIMD stuff (it's also a way of "parallel computing"). BTW, has the compiler support for automatic SIMD generation matured in the meantime?

    Last time I checked, if you wanted to use MMX/SSE/etc. on x86, you had to hand-code your stuff in assembler (separately for PIII, PIV, AMD etc.), or buy an expensive Intel compiler.

  7. Re:Trivial software patents are bad... on Burst.com and Microsoft Settle · · Score: 1
    companies like MS pushing hard for IP legislation ignoring the laws at will. So yes, I'ld like to see them roast for the hypocrisy.

    They were not sued for hypocrisy, but because some other company has a patent on streaming video over networks. Is this a good thing?

  8. Re:Breaking the law for fun and profit on Burst.com and Microsoft Settle · · Score: 1
    In accepting the settlement Burst dropped the claim of copyright infringement.

    I thought the case was about patent, not copyright infringement?

    Not to be nit-picking here, but isn't it a big difference if you're accused of copyright infringement because you stole s.o. else's video streaming code, or if you're accused of patent infringement because some company holds a patent granting them a monopoly on streaming videos over The Internet(TM)?

  9. Trivial software patents are bad... on Burst.com and Microsoft Settle · · Score: 5, Insightful
    ...unless Microsoft is sued?

    Double standards, anyone?

  10. Re:Protothreads source? on Adam Dunkels on Embedded Sensor Networks · · Score: 3, Informative

    You find it in the contiki CVS.

  11. Re:Law = Software on Microsoft WMV In Patent Trouble? · · Score: 2, Funny
    Once machines get an inkling of intelligence and truly autonomous decision-making, then there will be NO difference between software and law.

    If law was software, it'd be the most inefficient, resource-wasting, bug-ridden piece of code ever.

  12. Re:Follow the money on Stallman Calls For Action on Free BIOS · · Score: 2, Insightful
    But if someone's done gone and reverse-engineered stuff to the point of being able to write a substitute BIOS, doesn't that render hiding low-level hardware details kinda moot?

    Theoretically, yes. But reverse-engineering is not as good as having access to specs. (and that's why RMS and others are asking to disclose them in the first place).

    BTW, having people reverse engineer their hardware is not something they can influence, but they may choose to keep the specs secret (or offering access only under NDA).

  13. Re:Does Anyone KNow on Stallman Calls For Action on Free BIOS · · Score: 4, Informative
    Does Anyone know what Intel gets out of not opening it up? Are there any IP issues?

    Due to the low-level nature of a BIOS, they would expose lots of hardware details. It's the same reason why many hardware manufacturers are reluctant to release open source drivers (or to provide OSS community with hardware specs).

  14. Re:V Modell on Project Management Methodology for IT Operations? · · Score: 1
    In Germany the Government developed a "V Modell", that has to be used in Governmental projects

    Over here in germany, big governmental SW projects ("Toll Collect", "Hartz IV" and others come to mind) are infamous because they always fail.

    But perhaps this is also due to shady call-for-bids practice.

  15. Re:Obligatory random != pseudo random on Is the iPod Shuffle Playing Favorites? · · Score: 1
    How would you know if you did generate one? I mean can you tell by looking at a stream of numbers whether the output is "truly" random?

    There are statistical tests (the chi-square test, for instance). They can tell how "random" a sequence of numbers is, and AFAIK they are also part of steganography research (you use them to tell if some image file, for instance, is "only" an image or if some hidden message has been encoded on top of it).

  16. Re:Prior art? on Microsoft's 'IsNot' Patent Continued... · · Score: 1

    > I'm talking about C and your &b declaration is not a valid C statement! Look at the parent - it talks about C!!

    In C, it's even simpler.

    #include <stdio.h>
    #define b a

    int main()
    {
    int a = 1234;

    if (&a != &b) {
    puts("true\n");
    } else {
    puts("false\n");
    }

    return 0;
    }

  17. Re:Prior art? on Microsoft's 'IsNot' Patent Continued... · · Score: 1

    &a != &b will always return TRUE!!!!!

    patrick@guantanamo:~/source$ cat >test.cpp
    #include <iostream>

    int main()
    {
    int a = 1234;
    int &b = a;

    if (&a != &b) {
    std::cout << "true" << std::endl;
    } else {
    std::cout << "false" << std::endl;
    }

    return 0;
    }
    patrick@guantanamo:~/source$ g++ -o test test.cpp; ./test
    false
    patrick@guantanamo:~/source$

  18. Re:Interesting move... on Wind River Completes Embedded Linux Metamorphosis · · Score: 1

    It depends on your requirements. We're using RTAI for a few applications and it gives us some 10 or 20 microsecond maximum interrupt jitter on a 100MHz PowerPC. For a lot of applications, this is OK. Why stick to a commercial RTOS if Linux solves the problem as well (at least if your RT requirements are not as tight).

  19. You need to be a skilled expert in CS... on Microsoft Researching Patent Law with New Experts · · Score: 2, Insightful
    ...to do the complicated and necessary prior art research.

    Patent applications must be technical, novel and non-obvious. For example, you can't patent "one-click shopping" or "progress bars".

    Oh, wait...

  20. Re:Oppose that rethink. on Fallout From Japanese Patent On Help Icon · · Score: 1
    Business wants it. Government wants what business wants.

    That's simply not true. Business not only consists of big corporations, but small / medium enterprises as well. Over here in Europe, the majority of jobs are in small / medium enterprises (AFAIK). That's why politicians at least pretend to represent their interests.

  21. How to NOT use Windows on Why Does Windows Still Suck? · · Score: 1

    Connect directly to the internet. Never use a NAT router, they're way too expensive.

    Always use Internet Explorer. Firefox is too usable and has too many features anyway.

    Run all obscure *.exe's that you get from spam email or file sharing.

  22. Re:CYA can be a dragged... on Politics-Oriented Software Development · · Score: 1
    After six years of that crap, there has to be something better out there.

    Yes, there are not only big corporations out there. I guess that small / medium sized enterprises simply don't have the resources for such retarded games.

  23. JTAG on Piezo-Acoustic iPod Hack · · Score: 1

    Why didn't he use JTAG?

  24. Re:My contrarian view of the GPL license on Why I Love The GPL · · Score: 1
    Furthermore, after reviewing this GPL our lawyers advised us that any products compiled with GPL'ed tools - such as gcc - would also have to its source code released.

    That's plain FUD and not true. You should consider hiring better lawyers.

  25. Re:hardly unfortunate on How Not to Write FORTRAN in Any Language · · Score: 1
    I think you meant "unroll" it instead of parallelize (compilers don't split things up into threads as a general rule, although that's starting to change, in a way, with the 64 bit architectures)

    FYI, parallelize can also mean something SIMD-like (SSE, MMX, AltiVec, you name it). If I'm not smoking crack, the previous poster's code example would also be broken if the copy operation was implemented using SIMD.