samdnp

Stories kicked by samdnp

Exception Categories - YALE(yale.edu)

submitted by samdnpsamdnp(980) 3 years, 1 month ago

This is an awesome article that tells you the state of the art with regards to exception handling in C# and similar languages. Print this out and read it! read more...

add a comment |category: |Views: 19

tags: another

Exception Handling Basics(caublestoneink.com)

submitted by jcaublejcauble(150) 3 years, 1 month ago

The basics of exception handling and getting good stack traces. read more...

2 comments |category: |Views: 467

tags: another

string.Empty versus ""(dotnetperls.com)

submitted by samdnpsamdnp(980) 3 years, 1 month ago

The author shows ways that "" is better than string.Empty and results in clearer and possibly faster code. read more...

15 comments |category: |Views: 939

tags: another

Visualising Sorting Algorithms(hatfulofhollow.com)

submitted by gavinjoycegavinjoyce(25.7k) 3 years, 1 month ago

Beautiful visualisations of sorting algorithms. read more...

add a comment |category: |Views: 31

tags: another

A Closable jQuery Plug-in(west-wind.com)

submitted by rstrahlrstrahl(7226) 3 years, 1 month ago

I've found it very useful to have a closeable plug-in that hide the content of an HTML element providing a visual close image cue. Almost every UI I build these days requires either closing pop up windows or even more commonly requires that items are removed and visually hidden which usually implies 'close' behavior. In addition to removing a bunch of HTML markup, having a plug-in is also quite useful for server controls especially if multiple behaviors (plug-ins) need to be applied. read more...

1 comment |category: |Views: 295

tags: another

Building a Nant Script -- Part 4: Adding fxCop to your build script(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years, 1 month ago

Taking a look at how to add in the ability to run the fxCop static analysis tool to your build script. Having this ability can allow you to keep very close tabs on your code at any time. read more...

add a comment |category: |Views: 204

tags: another

5 Blogs ASP.NET MVC Developers Should Be Following(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years, 1 month ago

Everyone knows that Phil Haack, Rob Conery, Scott Hanselman, and Scott Guthrie all provide good ASP.NET MVC content on their blogs. I wanted to provide a list of excellent resources on ASP.NET MVC that are a little less well known. read more...

add a comment |category: |Views: 471

tags: another

C# Design Patterns - The Visitor Pattern(geekdaily.net)

submitted by justinbezansonjustinbezanson(1555) 3 years, 1 month ago

One principle that I really like is the Open/Closed principle which says that an object should be open to new functionality but closed to structural changes. The visitor pattern helps facilitate this principle by giving us the means to perform operations against an object without changing the objects structure. Looking back at a previous pattern we wanted to adjust the registration cost for a dog if they had been picked up by the dog catcher. read more...

add a comment |category: |Views: 595

tags: another

Introduction to JOINs - A simplest Visual Explanation of Join(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 3 years, 1 month ago

Introduction to JOINs - A simplest Visual Explanation of Join This post is for every developer who just want to make sure that their basics of Join is perfect. Bookmark this for future use or for teaching your friends of Jr. about Joins. Blog about this post if you like it. read more...

2 comments |category: |Views: 536

tags: another

Native JSON in IE8, Firefox 3.5 plus Json.NET(james.newtonking.com)

submitted by JamesNKJamesNK(3020) 3 years, 1 month ago

This post looks at how to use the new native JSON API in IE8 and Firefox 3.5, and how it can complement Json.NET’s server side JSON support by parsing and generating JSON on the browser. read more...

1 comment |category: |Views: 256

tags: another

Learning the Template Pattern(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years, 1 month ago

Taking a look at how you can use the Template Design Pattern in your applications. The Template Design Pattern is perhaps one of the most widely used and useful design pattern. It is used to set up the outline or skeleton of an algorithm, leaving the details to specific implementations later. This way, subclasses can override parts of the algorithm without changing its overall structure. read more...

add a comment |category: |Views: 424

tags: another

13 ASP.NET MVC extensibility points you have to know(codeclimber.net.nz)

submitted by simonechsimonech(10.1k) 3 years, 1 month ago

One of the main design principles ASP.NET MVC has been designed with is extensibility. Everything (or most of) in the processing pipeline is replaceable so, if you don’t like the conventions (or lack of them) that ASP.NET MVC uses, you can create your own services to support your conventions and inject them into the main pipeline. This post shows 13 extensibility points that every ASP.NET MVC developer should know, starting from the beginning of the pipeline and going forward till the rendering of the view. read more...

add a comment |category: |Views: 501

tags: another

WorkGrabber.com - Sweet ASP.NET MVC 1.0 + jQuery Application(weblogs.asp.net)

submitted by visualhintvisualhint(440) 3 years, 1 month ago

Mike Bosch shows us his latest creation using ASP.Net MVC: WorkGrabber.com is a social marketplace for local contractors and customers to interact and get projects done. read more...

add a comment |category: |Views: 443

tags: another

Novell’s Mono brings SIMD support to C#(ddj.com)

submitted by mark_csharpcodermark_csharpcoder(135) 3 years, 1 month ago

Parallel programming is not just about multi-threading and multi-core. There’s also a lot of power in the SIMD (Single Instruction Multiple Data) extended instruction set available in most modern microprocessors from Intel and AMD. From Dr Dobb's Go Parallel blog. read more...

1 comment |category: |Views: 220

tags: another

Creating SOLID Code: Refactoring the SOLID episode on DI to use IoC(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years, 1 month ago

Taking a look at the prior SOLID episode on DI and refactoring it to utilize the StructureMap IoC Container read more...

add a comment |category: |Views: 195

tags: another

Using complex types to make calling services less... complex(encosia.com)

submitted by gt1329agt1329a(7849) 3 years, 1 month ago

A detailed examination of how jQuery can call ASP.NET AJAX web services (or page methods) with complex types as parameters, to simplify the process of serializing and sending several fields of data at a time. read more...

1 comment |category: |Views: 218

tags: another