DCSIMG
C#,thoughts,tutorial - Just code - Tamir Khason

Browse by Tags

All Tags » C# » thoughts » tutorial (RSS)
Please update your bookmarks, because the new url of this blog is http://khason.net/ (you have not update RSS feeds, it will be done automatically). Why I did it? Why I decided to go to “stand-alone”… Well. there are some reasons. Generally, I do not want to explain all those here, but trust me, there are some. The main reason is, that there is no responsible person in charge for this blog platform in Microsoft Israel. This why, if your blog is popular and you have a respect to your blog visitors...
[This blog was migrated. You will not be able to comment here. The new URL of this post is http://khason.net/blog/this-is-not-joke-this-is-the-real-code-i-got-from-one-of-offshore-companies-i-working-with/ ] I, probably, print it and put in my office... if( (i==j).ToString().Length == 4) { ...DoSomething();...} else if( (i==j).ToString().Length == 5) { .. DoSomethingElese();... } else { throw new NotImplementedException(); }
[This blog was migrated. You will not be able to comment here. The new URL of this post is http://khason.net/blog/software-is-sucks-probably-it-really-is/ ] Remember new features, that make your code unreadable ? A couple of days ago, CLR team released first preview of Parallel Computing for .NET . Isn't it really cool, that now you can use full power of your computer? I decided to test the extension and wrote simple routine, that throttles your CPU. static int i=0; static void MessMe()        ...