Slashdot Mirror


Wired's Wish List For 2013

jpt.d writes "Wired has a nice article on what they wish to be for 2013. It is not too far fetched either! My personal favorite is the roll up television screen made of light-emitting-polymer. How about another Apple gadget? Their first item is an iPhone bracelet, including the functionality of a 'PDA, wireless Internet, a mini iPod, and, of course, a phone.' Notice the Apple logo in the picture." I'd settle for ubiquitous unmetered wireless network access.

1 of 300 comments (clear)

  1. Re:First Prime Factorization Post by Dahan · · Score: 1, Offtopic

    void factor_prime(int num)
    {
    if (!is_prime(num))
    err(1, "Number is not prime");

    printf("Factors of %d: 1 %d\n", num, num);
    }