kossovsky

↗ HN profile [ 64.1 ms ] full profile
Karma
56
Created
July 12, 2009 (17y ago)
Submissions
0
  1. Hug a developer today (kossovsky.net)
  2. Google in your house... (kossovsky.net)
  3. 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 process.

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

  5. C# Protected Internal (kossovsky.net)

    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 it comes to “protected internal” they…

  6. 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 at all ?

  7. 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.

  8. 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 find a way to make some bugs.

  9. 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 ?

  10. It is very important to be able to dynamically control the behavior of .NET applications and to keep track of some of the aspects of the application (i.e. how the application is performing, what errors are produced…

  11. C# Rectangle Packing (kossovsky.net)

    Sometimes, you’re faced with the problem to cramp as many smaller textures as possible onto a larger texture. Typical cases are lightmaps, which are very small textures with dimensions that usually are not powers of…

  12. C# Byte Iteration Teaser (kossovsky.net)

    This one is a great c# interview question – short and simple, but tricky.