RobertBernstein

Stories kicked by RobertBernstein

Visual Studio Theme Generator(www.midnightprogrammer.net)

submitted by prashantmx4prashantmx4(815) 2 years, 2 months ago

A simple online tool to create themes for Visual Studio. read more...

add a comment |category: |Views: 843

tags: another

A List of Essential Tools for a new Computer(www.ironshay.com)

submitted by shayfriedmanshayfriedman(1411) 2 years, 2 months ago

I've just received my new computer and decided it was a great time to share my favorite tools that I carry with me to every computer I use. These tools save me time and make me happier. I hope they'll make you happier too! read more...

add a comment |category: |Views: 1017

tags: another

Using CDN Hosted jQuery with a Local Fall-back Copy(weblogs.asp.net)

submitted by johnsheehanjohnsheehan(4785) 2 years, 4 months ago

How to use a jQuery hosted on a CDN with a fall back to a local version in case of an outage. read more...

1 comment |category: |Views: 327

tags: another

My Favorite Helpers For ASP.NET MVC(blog.wekeroad.com)

submitted by johnsheehanjohnsheehan(4785) 2 years, 4 months ago

Rob shares some of his frequently used helpers for working with ASP.NET MVC. read more...

1 comment |category: |Views: 473

tags: another

ScottGu: ASP.NET MVC 2: Model Validation(weblogs.asp.net)

submitted by JemmJemm(9604) 2 years, 4 months ago

"Validating user-input and enforcing business rules/logic is a core requirement of most web applications. ASP.NET MVC 2 includes a bunch of new features that make validating user input and enforcing validation logic on models/viewmodels significantly easier. These features are designed so that the validation logic is always enforced on the server, and can optionally also be enforced on the client via JavaScript" read more...

4 comments |category: |Views: 630

tags: another

ASP.NET MVC 2 - ScottGu's Blog(weblogs.asp.net)

submitted by johnrummelljohnrummell(1321) 2 years, 4 months ago

Over the last six months the ASP.NET team has been steadily releasing preview, then beta, and now release candidate builds of ASP.NET MVC 2. Given that the final release is not too far away, I thought it was a good time to start a new multi-part ASP.NET MVC 2 blog series that discusses the new features and how best to take advantage of them. read more...

5 comments |category: |Views: 444

tags: another

How to not suck at a techincal interview(www.bradcunningham.net)

submitted by FoovanadilFoovanadil(155) 2 years, 4 months ago

CORRECT LINK THIS TIME. Tips to improve your marketability during a technical interview. Mostly a rant :) read more...

7 comments |category: |Views: 668

tags: another

Learning the Observer Pattern w/ Callbacks(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years ago

Taking another look at how we can use the Observer Pattern in our application, but this time we will implement the pattern using call backs and events. The Observer pattern allows you to define a one-to-many relationship inside your application where the parent object (the one) has the ability to notify the child objects (the many) of any state change. You can utilize this pattern to make sure that a set of objects are keep in order when there behavior needs to change based on the state of your application. read more...

add a comment |category: |Views: 322

tags: another

Solution to Famous Error 40 of SQL Server - A Must Bookmark(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 3 years ago

Everybody who has ever used SQL Server might have encountered this error one time or another time. This is absolutely must bookmark link. read more...

1 comment |category: |Views: 605

tags: another

25+ Best ASP.NET MVC Tutorials and Articles(ajaxline.com)

submitted by Spider84Spider84(675) 3 years ago

In this article we collected best tutorials and articles about ASP.NET MVC. read more...

1 comment |category: |Views: 632

tags: another

21 Important FAQ questions for WPF and SilverLight(c-sharpcorner.com)

submitted by saumya321saumya321(775) 3 years ago

This article talks about 21 important FAQ from the perspective of WPF and Silver light. Both of these technologies are connected to a certain extent. This article not only explains the theory aspect of these technologies but also shows small samples for each of them. read more...

add a comment |category: |Views: 462

tags: another

Rarely used C# Keywords(dotnetcube.com)

submitted by dncdudedncdude(1350) 3 years ago

When doing code reviews or when working with code that was developed by someone else, once in a while I come across keywords that are rarely used. Some of them are forgotten keywords that are not considered a good practice and hence are not promoted by the community. Some of them could be handy and efficient but they never made it to the limelight. read more...

4 comments |category: |Views: 1245

tags: another

Five Reasons for using an ORM Tool(alachisoft.com)

submitted by ankygoyalankygoyal(519) 3 years ago

Gud intro of as what orm tools do... read more...

6 comments |category: |Views: 772

tags: another

How Do You Deal With Exceptions?(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years ago

A little post on my ideas about handling exceptions within applications. How do you handle them? read more...

add a comment |category: |Views: 748

tags: another

How to test your multi-threaded code (part 3 of 3)?(blog.decarufel.net)

submitted by decarufedecarufe(959) 3 years ago

In the last post we learned how to find and fix a simple multi-thread problem. Now we will see a more complex scenario and see how CHESS wil find the solution. read more...

add a comment |category: |Views: 166

tags: another

Creating a Custom Observable Collection in WPF | UX and WPF ramblings(sweux.com)

submitted by psampaiopsampaio(115) 3 years ago

One of the biggest advantadges WPF has is its Data Binding features. Data Binding can be done in several ways, but the most common is using the INotifyPropertyChanged and INotifyCollectionChanged interfaces. For simple objects, all you need to do is implement the INotifyPropertyChanged, and raise the PropertyChanged event when your properties change. When you want to bind to a collection, you will want to use ObservableCollection<T>. This collection implements both interfaces, therefore notifying you when the items in the collection change and when the items' properties change. This works great if you're using standard collections. The problem arises when you want to use a custom collection. For databinding to work with custom collections, you will have to create a new "Observable" wrapper around it. read more...

add a comment |category: |Views: 343

tags: another