Slashdot Mirror


User: tijsvd

tijsvd's activity in the archive.

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

Comments · 61

  1. Re:It's called Port Mirroring on New Tool Promises To Passively ldentify BitTorrent Files · · Score: 2, Insightful

    Two points.

    One: the mirror port (aka span port) on your switch does not buffer the traffic, and will drop packets in any spike. That's true even for expensive Cisco switches. To get all traffic, you need a network tap on a line.

    Two: getting the traffic isn't hard. It's basic sniffing. Analysing the traffic in realtime is what matters.

  2. Re:Bandwidth & The Beginning of the End on Google Unveils Flash Ads · · Score: 1

    Maximum of 50k per ad, at least until the user starts interacting with it. That is about 8 seconds on a 56k phone line. For each ad.
  3. Re:I will help YOU get a JOB! (Programming puzzles on Programming Puzzles · · Score: 1
    This is what I thought of:

    int has_dups(int *array, int n) {
    int i=0, val;
    while(i<n) {
    val = array[i];
    if(val == i)
    i++; // already correct, advance
    else if(array[val] == val)
    return 1; // duplicate
    else { // swap
    array[i] = array[val];
    array[val] = val;
    }
    }
    return 0;
    }

    (How do you get indenting in here?) This swaps numbers in the array, with each swap putting at least one number such that array[i]==i. Each execution of the loop either swaps a number (max n times) or advances the index i (also max n times). The loop can thus never execute more than 2*n times, which is O(n).

  4. Re:ls on Shootout: 'rm -Rf /' vs. 'Format C:' · · Score: 1

    After verification: you are absolutely right. Apology offered.

  5. Re:ls on Shootout: 'rm -Rf /' vs. 'Format C:' · · Score: 1
    And what do you think "echo" is, wiseguy? Try "ls /bin/echo"...

    If using bash, he could have typed:

    $ dummykeyword <tab><tab>

    to get a file listing.
  6. Re:Sounds a lot like religion on Java 1.5 vs C# · · Score: 1
    How do you explain that Sun provides official Java runtimes for Linux (and for that matter sells Linux boxes) as opposed to Microsoft's complete lack of support for anything except Windows?

    What has providing runtimes to do with being open? Quite a few commercial, closed applications are available for linux (Oracle anyone?), does that make them open?

  7. Re:Huh? on IBM Sets Supercomputer Speed Record · · Score: 1
    Correct. BlueGene/L is a prototype for BlueGene. When I was doing an internship in IBM Research in 2001, they were already talking about this.

    Interestingly, the main argument to build this machine was: "Because we can." IBM assumed that research on building BlueGene would spawn a lot of interesting technology.

  8. Here is the real reason for the IPO on Google IPO Open for Registration · · Score: 5, Funny
  9. UNIX was meant as a hoax on Unix's Founding Fathers · · Score: 5, Funny
    Read this article:

    Creators admit UNIX, C hoax

  10. Re:What would I do? on Ethernet at 10 Gbps · · Score: 1
    The note at the bottom about desktop use did confuse me though, how would 1GE reduce latency in desktops??

    Easy. 1GE operates at a higher frequency than 100Mb. It takes less time to transmit a packet. Cisco for example uses this argument to drive gigabit-to-the-desktop equipment sales.

  11. Re:What would I do? on Ethernet at 10 Gbps · · Score: 1
    Then there is the other problem that many people seem to be ignoring that ethernet is by design limited to a pretty short distance

    Current networking equipment can transmit 10GE over copper (coaxial cable) only about 25m. However, with the right lasers (extended reach) and fibers (good quality single-mode), you can reach about 70km. The laser tranceivers are about $5K each though...

  12. 10G not for desktop but for core network on Ethernet at 10 Gbps · · Score: 2, Insightful
    10G Ethernet is currently being sold (a lot), but not to connect computers. There are currently three major drivers for 10G Ethernet:
    • Connect backbone LAN switches, e.g. two Cisco 6500 machines, each one full of Gigabit links to access/distribution switches.
    • High-speed links for ISPs or research networks. 10GE can reach about 70 km without repeaters and is significantly cheaper than OC-192.
    • Link between access and core switches. Since more and more offices are (for some reason) switching to Gigabit to the desktop, the access switches need much bandwidth to deal with the (possible) traffic. A good example is the new Cisco 3750 stackable with 16 GE and one 10GE links.
    10GE to the desktop is at this time ridiculous, but don't think that means that 10GE technology is not used.
  13. Re:Unfair comparisons... of course they're going t on Report From "Get The Facts" · · Score: 2, Interesting

    Well... don't run cygwin in the XP terminal. Just install sshd for Cygwin and login with your favorite terminal emulator.

  14. MS manager at 21? on A Former Microsoftie Forecasts Microsoft Doom · · Score: 1
    From the article:
    I began using Microsoft products 23 years ago, at age 11, and I worked for Microsoft from 1991 to 1999 as a technology manager.

    So this guy started as a manager at MS at age 21? I think that is impressive.

  15. Re:Want to try the game? on Twisty Little Passages · · Score: 1
    Or, as an alternative, you can type:

    $ sudo apt-get install bsdgames
    $ /usr/games/adventure

  16. Re:And the other 9%? on Few Companies Change Linux Plans Despite SCO Suit · · Score: 1

    The other 9% are switching from Caldera to another distribution.

  17. Re: Don't be so sure... on X-Box Hackers Trying to Blackmail Microsoft? · · Score: 1

    The EU law makes a clear exception for interoperability issues. If the goal is to make the X-Box interoperable with Linux, EU laws allow it.

  18. Well, at least... on US Army Signs $471,000,000 Deal for Microsoft Software · · Score: 1

    the world will be in safe. Didn't Microsoft commit itself to security?

  19. Re:squid on Transparent Web Caching Patented · · Score: 2, Interesting

    If this would affect squid, it would be a very strong case of prior art.

  20. Re:FritzMark on Building A Homemade Chess Supercomputer · · Score: 1

    Hmmm, my info seems to be somewhat outdated (haven't looked into this for some time). The first link from google leads to an article that claims a speedup of 170 on a 512-node machine. That is a lot of progress in a few years.

  21. Re:FritzMark on Building A Homemade Chess Supercomputer · · Score: 2, Interesting
    That's not so easy as it sounds. The search algorithm used in chess engines, called alpha-beta search, performs best if the best move (the one that is eventually chosen) is searched first. Once the score for the best move is known, the rest of the search tree can be done very fast.

    Therefore, chess programs try to estimate the best moves, based on attack patterns and history. They are quite good at this and take a correct estimation for the best move in most cases.

    This means that adding processors/threads does not give a lineair speedup by far. Although the second processor does in fact help a lot, it is estimated that more than eight processors makes no sense at all, and even decreases performance (hash table locking). Google "alpha beta search parallel" if you want to know more.

  22. Good on Preview of Java 1.5 · · Score: 1

    This is good. The Java language evolves and becomes more powerful. Note that these features can be implemented in the source-to-bytecode compiler, resulting in backwards compatible bytecode, that can be run on older JVMs.

  23. Re:Funny quote of the day on Inside Microsoft's New F# Language · · Score: 1
    What's wrong with:

    void ** map( (void * f)(void *), void ** array) {
    void ** p;
    for(p = array; *p; p++)
    *p = (*f)(*p);
    return array;
    }

    Voila! Higher order function in C :-))

  24. Re:SPAM? What's that? on Earthlink Wins Another Spam Award: $16 million · · Score: 1
    The problem with this argument is that even if we all ran Bayesian Filters and blocked 99.9% of all spam messages from hitting our inboxes there would still be billions of messages going back an forth between mail servers before they are caught by the filters.
    Of course not. If 99.9% of all spam was blocked, spamming would not be worthwhile any more. Spamming is cheap, but not that cheap (bandwidth / effort to get free bandwidth). A spammer would have to send 1000x more emails to get the same return rate. The estimated return rate on most spam is about 15 in 1 million. It would then be 15 in 1 billion.

    If indeed 99.9% of spam was stopped, the whole spamming business would end and spammers would go back to whatever they were doing before.

  25. Re:Complete BS! on SARS Researcher Files Preemptive Patent Application · · Score: 1
    By applying for a patent, the information becomes open, like when published in an article. So when the patent is rejected, the stuff in it is in the public domain and therefore not patentable any more.

    That is the reason most patent applications have lots of claims. Each of these claims can be rejected individually by the patent office. I know that is the way it is in Europe, and I think it's the same in the US.