Slashdot Mirror


User: Flector

Flector's activity in the archive.

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

Comments · 51

  1. The whole idea about books on eBooks Nearly Outsell Print Books At Amazon · · Score: 1

    You write your initials and day you finished it on or near the title page. Long after you're gone, somebody will read it.

  2. Not believable on eBooks Nearly Outsell Print Books At Amazon · · Score: 1

    What does the average eBook sell for?

  3. proposed solution on Hacking Neighbor Pleads Guilty On Death Threats and Porn · · Score: 1

    take me

  4. Re:Geeky devices on Google TV Suffers Setback · · Score: 1

    Isn't the simplest idea a cheap hdmi-out computer with a remote keyboard and scroll wheel?

  5. the problem with slashdot on 'Reading Level' Filter Added To Google Search · · Score: 1

    Slashdot assumes anybody can compile anything.

  6. thou are on 'Reading Level' Filter Added To Google Search · · Score: 1

    that thou are

  7. xmarks missed the goal on Yahoo! To Close Delicious · · Score: 1

    It should be "Here's my public site, with all my nominally public links."

  8. Re:Wouldn't this be more tragic on Yahoo! To Close Delicious · · Score: 1

    nobody has used delicious

  9. sorry to break the news, but on Yahoo! To Close Delicious · · Score: 2

    In the future, the usual web host will be anonymous, have sql/php, be untrackeable.

  10. meh, Yahoo! vs. Google on Yahoo! To Close Delicious · · Score: 1

    You're kidding, right?

  11. recommendation on Yahoo! To Close Delicious · · Score: 1

    Any browser can export bookmarks to any other browser, import perfectly, via html.

  12. global aggregates on Yahoo! To Close Delicious · · Score: 1

    should be about dl.dropbox.com

  13. Yahoo! and Delicious on Yahoo! To Close Delicious · · Score: 2

    There are no words.

  14. Silverlight is actually pretty good on Silverlight 5 — Back From the Dead? · · Score: 1

    It boils down to dragging and dropping xml elements.

  15. about vehicle entertainment systems on Auto Industry's Fastest Processor Is 128Mhz · · Score: 0

    Where's the blu-ray disk player that has thousands of mp3's in a disposable format?

  16. Alert me when on Should Being Competitive With Windows Matter For Linux? · · Score: 0

    .thisfile is different from some operating system file.

  17. Also Known As on Central Dogma of Genetics May Not Be So Central · · Score: 0

    In which geotrope was the female chromosome unchanged?

  18. Rocks 'n Diamonds (Sokoban) on Are Games Getting Easier? · · Score: 0

    Even after years this is still a great thinking person's game, at least if logic puzzles are your cup of tea.

  19. App Store, iLife, Garage Band, SSD? Where's the beef?

  20. Not a fan of customized news on Most Readers Don't Like Customized News · · Score: 0

    Essentially, everything I'm really interested in, I will already be aware of on a given day, as I have numerous sources that are checked frequently. What I want to know as a news consumer is what the broad spectrum of new readers knows. That said, I can certainly appreciate that people who are interested in (for example) Britney Spears need a place to get constantly updated linkage to that topic.

  21. Disney Theater Redux on Las Vegas Hotel Vdara an Accidental Death Ray · · Score: 0

    The exact thing same happened when the Disney Theater opened in LA, which is nothing but a series of shiny curves.

  22. random sort on Sorting Algorithms — Boring Until You Add Sound · · Score: 0

    random sort:

    seed random
    create vector of pointers to data, with rand variable
    std::sort() by rand member

  23. Possibly the easiest C sort for arbitrary types on Sorting Algorithms — Boring Until You Add Sound · · Score: 0

    Still possibly the easiest (C++) sort for arbitrary types:


    #include <vector>
    #include <algorithm>
    #include <functional>

    class my_type
    { public:
    int item_data;
    };

    bool isless_my_vector (const my_type ref1, const my_type ref2)
    { return ref1.item_data < ref2.item_data ? true : false; };

    int main ()
    {
    std::vector some_vector;

    // populate some_vector
    my_type item;
    item.item_data = 5;
    some_vector.push_back (item);
    item.item_data = 10;
    some_vector.push_back (item);

    std::sort (some_vector.begin(), some_vector.end(), std::ptr_fun (isless_my_vector));

    for (std::vector::iterator iter = some_vector.begin(); iter != some_vector.end(); iter++)
    {
    item = *iter;
    // do something with item
    }
    return 0;

    }


    It's more efficient if the vectors holds pointers instead of data.

  24. news flash on California To Drop State Rock Over Asbestos Concerns · · Score: 0

    California has a state rock and people are concerned about it.

  25. So there it is... on Apple Surpasses Microsoft In Market Capitalization · · Score: 1, Troll

    Apple is Evil.