Slashdot Mirror


User: Utopia

Utopia's activity in the archive.

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

Comments · 413

  1. Re:Why *I* am not buying a Mac on Why I Ain't Buying A Mac · · Score: 1

    Very surprising.
    What audio/video editing software did you use on the PC?

  2. Re:In the Next 4 Weeks Funny on Distributed Computing Program Hidden in Kazaa · · Score: 1

    Did you try changing the base priority of KaZaA to low ?
    In XP/2000 you can do this from the taskmanager by right-clicking on the process and selecting process priority.

  3. What kind of DOM does Konqueror support on Konqueror's Javascript Continues To Improve · · Score: 1

    My menu code runs on several major websites. I would love to add support to Konqueror.
    What kind of DOM does it have ? Gecko compatible ? Links would be appreciated.

  4. Re:Square Root Algorithm on Deep Algorithms? · · Score: 1

    Thanks for the algorithm.
    I never realized that
    1 + 3 + ... + (2n-1) = n^2

  5. Not a real incident ... on Most Outrageous Vendor Lie Ever Told? · · Score: 1

    ...but related.

    car dealer: "OK folks, here we have the brand new car. It's top speed is 300
    km/h, it has 12 airbags, it automatically avoids traffic jams, it needs only
    2 liter per 100 km. No competitor has something similiar. Isn't that
    something?"

    customer: "does it come with a tow-bar?"

    car dealer: "not from the manufacturer. But it's all standard, you can buy
    one somewhere else or build it yourself."

    customer: "well, if it doesn't come with a tow-bar it doesn't make things
    simpler. I'm probably going to stay with my tractor."

  6. Re:Mirror on Knuth: All Questions Answered · · Score: 1

    Thanks a lot.

  7. Re:will this work? on First 3D Simulations of Complete Nuclear Detonations · · Score: 1

    FYI.
    None of the countries (except china) you listed have signed the CTBT (comprehensive nuclear test ban treaty).
    So they need not abide it.

  8. Re:Uh oh, WIPRO. on Sun Increases Commitment to GNOME · · Score: 1

    This is lesson to every organization which out sources software development. Do not outsource without a effective in house code review/quality assurance process in place.

    I am pretty sure GNOME project has matured enough and every contributed code will go under a magnifying glass

  9. Slate changed from paid to free on End of the Free Internet · · Score: 1

    While lots of sites have changed from free to paid Slate.com did just the opposite.
    It change from paid to free.

  10. Some day... on End of the Free Internet · · Score: 4, Funny

    Soon End of Free will start charging users to see the list of free net sites transitioning to paid services.

  11. Ironic isn't it. on An Open Source Direct3D 8.0 Wrapper for Open GL · · Score: 1

    In the newer versions Microsoft implemented OpenGL as a wrapper around DirectX.

    While these guys did the opposite - implemented DirectX as a wrapper on OpenGL.

  12. Re:Where's the friggin' EULA? on Read the Fine Print · · Score: 1

    It's in your windows system folder or you yould look it over here

  13. Re:It's a stupid question... on Bill Joy's Takes on C# · · Score: 1

    It pronounced as csharp.
    The capital letter C followed by a musical sharp sign. Because this sign does not exist in ASCII, it is approximated as C#. This approximation leads to witty derivatives such as "C hash," "C pound," and the tortuous "C octothorpe".

  14. Buffer overruns... on Bill Joy's Takes on C# · · Score: 1

    The article says that typically a C program failing to check for buffer overflow

    It would be kind of interesting to point out that Microsoft Visual C++ .NET includes a new feature that helps mitigate some kinds of exploitable buffer overruns. There is a new /GS option in Visual C++ .NET. This new option inserts special code into the application or DLL startup code, as well as special code into certain functions' prolog and epilog code. The option is enabled by default for all new C++ projects. However, the option catches only stack-based buffer overruns that overwrite the function return address. It does not detect heap-based buffer overruns, nor does it detect buffer overruns that do not overwrite the return address.

    That said, there is simply no substitute for good, secure programming practices, but sometimes this isn't enough.

  15. Every code in .NET is verified. on Bill Joy's Takes on C# · · Score: 1

    Every piece of code that targets the .NET CLR has to go through a verifier. Before a program is run the verifier looks at the IL to determine whether it is safe to execute in the current context.

    Code which is marked as unsafe can only be used a fully trusted envoirnment. Currently, if a part of program is marked as unsafe the the entire program (called assembly) is marked as unsafe. So the entire assembly will not execute if it uses unsafe code.

    There is a second level of safety defined by the CLR which requires the programmer to 'demand' permissions to do certain opertaions. When your code demands permissions by using the Demand method, the common language runtime verifies that all code calling your code has the appropriate permissions. Without these permissions, the request fails. Verification of permissions is determined by performing a stack-walk.
    Demanding permissions is necessary if you are accessing protected resources or perform security-sensitive operations.

  16. Re:Itanium at 1.6 GHz in 2003 ? on Intel's Big Chip · · Score: 2, Informative

    According to SPEC CPU2000 Results, The Itanium at 800 Mhz performances equivalent to a Pentium III 800 Mhz. In fact the Pentium III is a little faster.

    Do you have any other figures to substantiate your claim ?

  17. Itanium at 1.6 GHz in 2003 ? on Intel's Big Chip · · Score: 3, Insightful

    For the article
    Madison is expected to come out in 2003 and run between 1.2GHz and 1.6GHz, according to sources.

    I wonder how Intel expects people to adopt Itanium-based processors considering
    that x86 processors will be running at 4GHz in 2003.

  18. Re:Two strikes ... on Designing Multiplayer Game Engines? · · Score: 1

    You probably already know this.
    The credit for architecting Delphi and C# goes to the same person - Anders Hejlsberg.

    I used in program in Delphi and I simply love it. Too bad I can't use it in my workplace.
    While C# and the .NET framework have a lot of similarities, it still doesn't match the flexibility I had in Delphi.
    For example, I had terrible luck using layouting in winforms but it always worked like a charm in Delphi.

  19. Re:Two strikes ... on Designing Multiplayer Game Engines? · · Score: 1

    Good comments.

    But the guy is a pretty experienced programmer. C# is not very different for C++ or Java.
    If you know one of these languages then you would be up and running in C# is just a couple of weeks time.

  20. Re:I hope you just plan to code... on Designing Multiplayer Game Engines? · · Score: 2, Informative

    Here is the website Terrarium

  21. I hope you just plan to code... on Designing Multiplayer Game Engines? · · Score: 1

    ...the server part in C# and not the client UI in C#.
    If so, look at the terrarium code (slated for public release in mid Feb. 2002). Terrarium is basically a multiplayer peer to peer game which showcases .NETs network technolgies. Exactly what you need.

  22. I hope this means... on Oracle Switching To Linux · · Score: 1

    that Oracle is not planning its own distro

  23. Re:MS has not given up on IIS on Apache 2.0 vs. IIS · · Score: 1

    That is really very nice.

    How do think Linux does it ?

    Each of the Windows version serves a different purpose and hence use different schemes for memory addressing, schedulers. The internal communication systems is optimized for the number of CPUs on the system.

    If you follow the Linux kernel development efforts, you'd see a nice scaling on 2-CPU or 4-CPU machine. But run Linux on a 6-CPU or 8-CPU machine you will see the performance degrade.

    Well, Part of the problem is the PC architecture.
    But my point is ONE single copy of any OS won't do.

    I have nothing against Windows or Linux. I am not a fan of either. I just don't care.

  24. Re:Spoiler on Cracking Crypto To Get Into College · · Score: 1

    1+2+3+...+n = n*(n+1)/2
    isn't that easier.

  25. Re:How long do the games last? on 4th Computer Chess Tournament · · Score: 2, Informative

    You must either be kidding or you don't know what you are talking about. No chess program can compute out an entire game is a minute.

    The fastest chess program Deep Blue, a 32-processor parallel computer with 256 VLSI chess engines, was capable of 200,000,000 positions per second which meant that it was able to conduct an exhaustive 12 ply (or 12 half moves) search for every move.