salim

Stories submitted by salim

10 Reasons NOT to date a Geek.(geekswithblogs.net)

submitted by salimsalim(780) 5 years, 2 months ago

After working whole day on system (phew) got something to smile. read more...

add a comment |category: |Views: 4

tags: another

.NET 2.0 Tip: Strongly Typing Configuration Settings(blah.winsmarts.com)

submitted by salimsalim(780) 5 years, 2 months ago

Funny – this approach is so darned simple, I am surprised why I hardly find anyone who actually uses it. read more...

2 comments |category: |Views: 10

tags: another

Cool stuff. Worth to share(p01.org)

submitted by salimsalim(780) 5 years, 2 months ago

A pretty cool example of efficient code, showing what's possible with just 256 bytes read more...

add a comment |category: |Views: 1

tags: another

Why HTML renders differently in different browsers(search-this.com)

submitted by salimsalim(780) 5 years, 2 months ago

How many times have you heard someone say: "Why does my site look different in IE than in Firefox"? read more...

add a comment |category: |Views: 7

tags: another

Is DotNetKicks smart enough?(dotnetkicks.com)

submitted by salimsalim(780) 5 years, 2 months ago

Ok. I am just cheking the smartness of dotnetkicks. read more...

19 comments |category: |Views: 11

tags: another

.NET Remoting Use-Cases and Best Practices(thinktecture.com)

submitted by salimsalim(780) 5 years, 2 months ago

Most people who don't know me personally assume that I value .NET Remoting above all other means of developing distributed applications. They might also assume that I'll use Remoting as a catch-all solution to any distributed application. read more...

1 comment |category: |Views: 39

tags: another

Why Can't Programmers.. Program?(codinghorror.com)

submitted by salimsalim(780) 5 years, 2 months ago

The author is having trouble with the fact that 199 out of 200 applicants for every programming job can’t write code at all. I repeat: they can't write any code whatsoever. read more...

3 comments |category: |Views: 2

tags: another

Creating a Generic Collection Class with Sorting Support in .NET 2.0(kylefinley.net)

submitted by salimsalim(780) 5 years, 2 months ago

One of the coolest new features in .NET 2.0 is the introduction of Generics. For those of you that have been creating tons of strongly typed collections for your business objects I'm sure you had the same reaction I did when you heard about them. "Sweet!! Now I can stop generating and tweaking derived collection classes all over the place!!" (This is assuming you've all been using some sort of refactoring tool that can generate the collection classes for you, I hope you have.) OK, so now we know we can create strongly typed collections in our code. You might be wondering why I'm suggesting we still create a separate collection class and not just use the generic collections included in the System.Collections.Generic namespace. The idea is that we can create our own collections that support generics that provide us with specific needs that we might commonly use or need for a specific application. In this article I will present a simple collection class which both supports Generics as well as Sorting. read more...

add a comment |category: |Views: 100

tags: another