Live data from Hacker News

Viewing profile — some

some

HN member
Joined
Sat, Jul 28, 2007, 8:47 AM UTC
HN karma
110
Public activity
57 items

About some

No profile information was provided.

Recent public activity

  1. comment
  2. comment
  3. comment
    Comment #2934187

    > A lot of people work because they like to work Or because they are wired in a way that they dont know what else to do. I would feel like i have been fallen into a trap if I was t…

  4. comment
    Comment #2934173

    Why wouldnt that apply here as well? Some successful guys post here. Do they get hassled?

  5. comment
    Comment #2934115

    Im very much into light and small notebooks and I love the Lenovo X301. The big advantage over the air is that it has a matte screen. I run linux on it which works perfectly.

  6. comment
    Comment #128364

    I would prefer the loop this way: for each(a in links) if (a.host && (a.host!=thisdomain || String(a).match(/item\?id=/))) a.target = "_blank";

  7. comment
    Comment #107891

    How could an offer, that is 62% higher then the price at the stockmarket be refused?

  8. comment
    Comment #105479

    Etirovaf has come up now as a YC funded startup: http://news.ycombinator.com/item?id=104772

  9. comment
    Comment #104925

    When I was making fun of Xobni some months ago, I said the next product of this kind would be "a browser plugin that lets you search your bookmarks": http://news.ycombinator.com/it…

  10. comment
    Comment #98754

    We do this thing in PHP with classes. See below. What is the advantage - if any - of namespaces? class yo { function isBig($number) { return ($number>1000); } } if (yo::isBig(50)) …

  11. comment
    Comment #98711

    > There are no namespaces, so functions often have prefixes to denote their source Can somebody tell me, how namespaces work? Say, without namespaces you would do it like this: fun…

  12. story
    Hacker News Documentation

    Is there something like this? I just noticed the "saved: 7" in my profile. And my guess was that this is a list of Comments I upvoted. I tried by upvoting a random Comment. And it …

  13. comment
    Comment #96034

    Because it brings no benefit to anyone. Not to the one who runs the site and not to the one who signs up to it.

  14. comment
    Comment #95277

    I dont have Javascript enabled. Tell me, when the HTML version is ready.

  15. comment
    Comment #93879

    http://google.com/search?q=something+site%3Anews.ycombinator...

  16. comment
    Comment #93159

    All these words. Show us pictures of different solutions side by side and let us compare on our own.

  17. comment
    Comment #90659

    I love the design of useit.com. To me its one of the best designed websites out there. By far. I hate most websites. I also like Hacker News. So im surprised to see you disliking u…

  18. comment
    Comment #90149

    Its not a comparison at all. Linus replied to someone who said Linux coding style is not improving because no one sets the rules. Linus said that it is improving via evolution. Sty…

  19. comment
    Comment #72898

    F11 also resizes the window to fullscreen. The aim of this project seems to be slightly different: Run Firefox without toolbars. Still, it sounds crazy to have a dedicated project …

  20. comment
    Comment #71514

    Make sure to wear some flowers in your hair.

  21. comment
    Comment #70528

    If you would have to choose between small brain and small penis - what would you do?

  22. comment
    Comment #68115

    45 bytes? Lets see... wget -O - http://www.muppetlabs.com/~breadbox/software/tiny/teensy.htm... | wc result: 41150 bytes

  23. comment
    Comment #68060

    Ok. The same comes again at point 15: > Do not use functions inside of for loop, such as for ($x=0; $x < count($array); $x) The count() function gets called each time.

  24. comment
    Comment #68049

    > Set the maxvalue for your for-loops before and not in the loop. What does this mean?

  25. comment
    Comment #68045

    > 1. If a method can be static, declare it static. Speed improvement is by a factor of 4. Wow! function Prime1() { ...calc one million prime numbers...} static function Prime2() { …