natm

Stories kicked by natm

Installation and Configuration of Microsoft Velocity(aspnetpodcast.com)

submitted by wallymwallym(2085) 3 years, 2 months ago

David walks us through how to install and configure Microsoft Velocity. read more...

add a comment |category: |Views: 518

tags: another

The State of ALT.NET(coderjournal.com)

submitted by zigamorphzigamorph(3319) 3 years, 2 months ago

Over the past 6 months I have been trying to really quantify what it means to be using ALT.NET practices. And I can honestly say that I still honestly don’t know what it means to be an ALT.NETer. But I have come to a number of conclusions about the state of the ALT.NET community, that I wanted to share. (1) The ALT.NET Community is fractured among itself. (2) Take the religious zealotry out of ALT.NET (3) Craftsmanship with out Engineering is no way to program software. read more...

add a comment |category: |Views: 392

tags: another

10 C# Shorthands that improve productivity(dijksterhuis.org)

submitted by martijnmartijn(445) 3 years, 2 months ago

One of the best things about C# is that as the language and libraries expand thought is put into keeping things readable. Below I have listed 10 shorthands that you can use to make your code tighter and less wordy. No doubt you know one or more already — but do you currently use all ten of them ? read more...

add a comment |category: |Views: 1357

tags: another

Hosting your OSS project on github(codebetter.com)

submitted by PeterRitchiePeterRitchie(1505) 3 years, 2 months ago

Aaron walks through hosting an oss project on github and how to use git as the SCC system. read more...

add a comment |category: |Views: 122

tags: another

Unit Testable HttpModule and HttpHandler - Kazi Manzur Rashid's Blog(weblogs.asp.net)

submitted by iftekharahmedamitiftekharahmedamit(530) 3 years, 2 months ago

With the new System.Web.Abstraction namespace we can now easily write unit testable HttpModule and HttpHandler. In this post, I will show you how to write unit testable HttpModule and HttpHandler. Prior the release of System.Web.Abstraction the problem with unit testing of these web infrastructural items is HttpContext, it is sealed, no way to mock it with Rhino or Moq. The only option is to create the wrapper objects of these non-mockable objects but it has a very long tail like HttpRequest, HttpResponse, HttpSessionState, HttpServerUtility etc etc. And this is the exact thing that the System.Web.Abstraction provides, all wrappers around the non-mockable objects of HttpContext. But still, both the HttpModule and HttpHandler depends upon the original HttpContext which I hope will change in ASP.NET 4.0. till then we need to create a super layer for making it Unit Testable. read more...

add a comment |category: |Views: 274

tags: another

SQL Server Five methods converting rows to columns(sqlserveradvisor.blogspot.com)

submitted by sqlserveradvisorsqlserveradvisor(385) 3 years, 2 months ago

Five methods converting rows to columns read more...

add a comment |category: |Views: 1526

tags: another

What’s the difference between CONST and READONLY in .Net?(carlj.ca)

submitted by CarlJCarlJ(875) 3 years, 2 months ago

Ever sit around talking to your co-workers about random things, when all of a sudden you ask “What’s the difference between const and readonly in .Net?“. If so, you are not alone. If not, well, you’re just weird. read more...

1 comment |category: |Views: 830

tags: another

6 Things Developers Should Know By 2010(blog.saviantllc.com)

submitted by davidsdavids(480) 3 years, 2 months ago

A list of 6 things I think asp.net developers should know by 2010 read more...

1 comment |category: |Views: 1480

tags: another

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

submitted by justinbezansonjustinbezanson(1555) 3 years, 2 months ago

In our city dog registration application lets assume there are a few things that need to be done when a new dog is registered. First the new dog and it’s owners must be entered into the system. Next the registration fee must be processed. Finally, we want the system to send the owners the welcome email. This is a very simple example but this action requires 3 separate systems to do something in order to complete this one task of registering a new dog. read more...

1 comment |category: |Views: 675

tags: another

.NET - Health Monitoring in ASP.NET 3.5(dotnetcurry.com)

submitted by pycckipyccki(357) 3 years, 2 months ago

I am a big advocate on less is more, and when it comes to writing code to monitor an ASP.NET application, less code is definitely more. As a developer, once you have finished developing your application and it’s deployed into production, you’ll need to monitor it and have it notify you when something goes wrong. There are several ways to do this, from utilising the global.asax file to writing custom classes. But a little known feature in ASP.NET is health monitoring. This gives you the ability to monitor the health of an ASP.NET application. This article won’t delve into the specifics of creating your own custom health monitoring class, but it will focus on what is available to ASP.NET developers out of the box. read more...

1 comment |category: |Views: 570

tags: another

Cache-and-Collect Lifecycle Management in Ninject 2.0(kohari.org)

submitted by nkoharinkohari(1310) 3 years, 2 months ago

An explanation of a new solution to an old problem with inversion of control. read more...

1 comment |category: |Views: 243

tags: another

12+ open source projects for .NET you probably didn’t know about.(blog.webdistortion.com)

submitted by squiggssquiggs(585) 3 years, 2 months ago

Here’s a few of the better .NET open source projects which are making a difference to .NET developers worldwide, and it just shows that the open source .NET community is alive and well. read more...

1 comment |category: |Views: 1932

tags: another

ASP.NET Routing performance compare to HttpHandler(gtrifonov.com)

submitted by gtrifonovgtrifonov(225) 3 years, 2 months ago

This article shows few throughput perf test graphs for ASP.NET MVC and ASP.NET http handler read more...

2 comments |category: |Views: 494

tags: another

Exponentially Improve Performance to Start ASP.net 2.0, 3.0, 3.5 Debug(it.toolbox.com)

submitted by dotnetdudedotnetdude(220) 3 years, 2 months ago

Stop the waiting when debugging your ASP.Net Web Applications! Here's a complete RAM Disk solution to save your sanity. read more...

1 comment |category: |Views: 569

tags: another

Using SQL Service Broker in NET applications (javiercrespoalvez.com)

submitted by fintz69fintz69(700) 3 years, 2 months ago

Javi discusses the pitfalls you might encounter while trying to use SQL Service Broker from a .NET application read more...

1 comment |category: |Views: 446

tags: another

ASP.NET - YSlow and ASP.NET: 100 points "A" grade is possible(karpach.com)

submitted by karpach96karpach96(265) 3 years, 2 months ago

Just in case if somebody doesn’t know what YSlow is? YSlow is Firefox add-on integrated with Firebug. It analyzes web pages and tells you why they are slow. You can run it on you project and see your grade. You can do some easy improvements and maybe even get D grade. However to get higher then D grade becomes a real challenge. Below I will describe how I got A grade (100 points) on my web blog application. read more...

3 comments |category: |Views: 636

tags: another