kossovsky
- Karma
- 56
- Created
- July 12, 2009 (17y ago)
- Submissions
- 0
- Twitteleh – Twitter for your jewish mother (kossovsky.net)
- JTemplates – jQuery Template Engine (kossovsky.net)
- Twitter restrictions in the real world (kossovsky.net)
- The Website is down - Sales guy vs. Web Dude (kossovsky.net)
- The website is down - Sales guy vs. Web Dude (kossovsky.net)
- Hug a developer today (kossovsky.net)
- Set Timeout for any method in C# (kossovsky.net)
- Software Development Life Cycle [SDLC] (kossovsky.net)
- How to limit any method execution time in C# (kossovsky.net)
- C# How to limit method execution time – Generics implementation (kossovsky.net)
- Script as blocking element and dynamic script loading (kossovsky.net)
- Google in your house [ 2 more episods ] (kossovsky.net)
- C# Parsing HTML with HtmlAgilityPack (kossovsky.net)
- Google in your house... (kossovsky.net)
- Javascript boolean interpretation (kossovsky.net)
- IETester – Multiple Internet Explorer versions on the same PC (kossovsky.net)
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.
- C# Inheritance Question [ Teaser ] (kossovsky.net)
Do you really understand C# inheritance ??? Check yourself again...
- 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…
- C# string.Empty vs “” (kossovsky.net)
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 ?
- SQL 2005 – Return query rows as one delimited column (kossovsky.net)
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.
- C# Increment operator (++) question (kossovsky.net)
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.
- C# The “double” trouble (kossovsky.net)
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 ?
- SpeedTrace – .NET Profiler and Tracer (kossovsky.net)
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…
- 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…
- C# Byte Iteration Teaser (kossovsky.net)
This one is a great c# interview question – short and simple, but tricky.