Live data from Hacker News

Viewing profile — kossovsky

kossovsky

HN member
Joined
Sun, Jul 12, 2009, 10:03 AM UTC
HN karma
56
Public activity
33 items

About kossovsky

No profile information was provided.

Recent public activity

  1. story
  2. story
  3. story
  4. story
  5. story
  6. story
  7. comment
    Comment #707918

    callback is not good enough, it has to be a synchronous operation with ability to stop after specified number of milliseconds

  8. comment
    Comment #707700

    Why not, try to create a loop that writes to the Console and set some timeout

  9. story
  10. story
  11. story
  12. story
  13. story
  14. story
  15. story
  16. story
  17. comment
    Comment #701403

    sorry...

  18. story
  19. story
    IETester – Multiple Internet Explorer versions on the same PC

    IETester is a free WebBrowser that allows you to have the rendering and javascript engines of IE8, IE7 IE 6 and IE5.5 on Vista and XP, as well as the installed IE in the same proce…

  20. story
    C# Inheritance Question [ Teaser ]

    Do you really understand C# inheritance ??? Check yourself again...

  21. story
    C# Protected Internal

    I’ve noticed that most of the c# developers i’am talking to, know exactly what “public”, “private”, “protected” and “internal” access modifiers mean and how to use them, but when i…

  22. story
    C# string.Empty vs “”

    As we know we have two ways to set a variable value to an empty string. We can just set it to empty quotes “” or set it to string.Empty, but what is the difference and is there one…

  23. story
    SQL 2005 – Return query rows as one delimited column

    Once in a while we need to return data from SQL as delimited string of values and not as rows. There are several ways to do that, but personally i like the next one.

  24. story
    C# Increment operator (++) question

    Well, this is a nice one. We all familiar with incremental operators, but from what i saw yesterday… well, there is no need to give a developer some tricky assignment so he could f…

  25. story
    C# The “double” trouble

    Forget for a second about .NET. If someone asks you how much is 1.000025 – 0.000025 your answer will probably be “1″ and correct. An easy question, right ?