Slashdot Mirror


User: losec

losec's activity in the archive.

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

Comments · 34

  1. egg.c on Random Number Generator That Sees Into the Future · · Score: 1

    #include #include int main (int argc, char **argv) { int i; int d,e,f; srand(time(0)); d = 0; while(1){ for(i = 0; i 100; i++){ e = rand() & 1; f = e * 2 - 1; d += f; } printf("d: %d e: %u(%d)\n", d, e, f); sleep(1); } }

  2. t3 on Jail Time For P2P Developers? · · Score: 1

    You better stop downloading terminator, or the real terminator will come for you!

  3. Re:Kids are too smart for this on Physicists Work on Physics' Uncool Image · · Score: 1

    Also you can take advantage of the kids that like history. There should be alot of interesting stories, about how the discoveries and progress where made.

  4. Re:Target Audience on Getting the Girl · · Score: 1

    I've never heard another male video gamer complain `Duke's arms are too muscular!
    Well, maybe that is because we havn't seen them yet.

  5. AGP confusion on NVIDIA 6200 w/ TurboCache Released · · Score: 1

    I need a filter_user_comments.pl.
    So far, only negative comments, from user who do not even understand PCI-e, but still has to make a comment, about the technology (by comparing it as if it was PCI or AGP (PCI-e has bandwidth far beyond PCI/AGP)).
    Last, the AGP aperture feature, has nothing todo with PCI-e.

    I hoped this round of comments would debate, and enlight little more about the future of PCI-e. It seems the technology isn't just about replacing AGP(PCI).

  6. www.zebra.org on BusinessWeek On XORP vs. Cisco · · Score: 1

    What is the difference between xorp and zebra? Isn't Zebra on a BSD already sturdy ?

  7. Why is IPv6 a vapor-dream ? on Accelerating IPv6 Adoption With Proxy Servers · · Score: 1

    Its also about new features in the IPv6 protocol and network design. IPv6 aware apps is also caugth in the moment22. When it finally comes it will be like flushing the toilett. I guess DNF will be IPv6 multiplayer (DNF may though outlast IPv6 in the vapor-race).

  8. Re:Outsourcing. on Economics of Online Gaming · · Score: 1

    Actually I saw on TV, a guy who outsourced his gaming to four other guys, they did it for a few dollars more.

  9. Re:Why shell? on Wicked Cool Shell Scripts · · Score: 1

    #!/usr/bin/perl

    map { print "$_" if $_ ne $a; $a = $_} sort `cat q*`;

    First of all. Saying things like "without cramming 300 line (not aligning lineseparator with linebreak)
    is not fair:
    A one liner:
    1 with 4 commands means 4 processes.
    2 Doesn't make it more readable than extending.
    3 does not run any faster.

    Perl actually manage to fix 1,2,3. That is why I
    run perl in cases where Shell just can scale.

    Anyway I use both, harmonized, so I am not offended.