Slashdot Mirror


User: l_km_n

l_km_n's activity in the archive.

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

Comments · 4

  1. Re:Yes, but.. on Mozilla Begins To Move Towards HTTPS-Only Web · · Score: 1

    then what is all the fuzz about perfect forward secrecy? try to decrypt some traffic with a diffie hellman key exchange, could be pretty hard even if you have the private key.

  2. nespresso on What is Your Favorite Way to Make Coffee? · · Score: 1

    it's a bit expensive, but the coffee is absolutely perfect: http://www.nespresso.com/

  3. Re:Please!! Count to ten and then decide on Mozilla 1.0 Officially Here · · Score: 1

    look at www.download.com, search for md5 and you'll get a gpl'd md5summer for win32

  4. Re:Faster -- with evidence on Fast, Open Alternative to Java · · Score: 1

    The following modification makes this code much faster:

    int main(void)
    {
    float x = 0;
    int counter;

    for(counter = 0; counter 100000000; counter++)
    x += (counter * (1 / 3.14159265359));

    printf("%f\n", x);

    return 0;
    }

    This works in C and Java! Lazy programming can kill the performance of every language...