terrble

Stories submitted by terrble

ALT.NET subreddit(reddit.com)

submitted by terrbleterrble(1665) 2 years, 2 months ago

In case you're looking for a better place to share links. read more...

add a comment |category: |Views: 16

tags: another

SubControllers in ASP.NET MVC(mhinze.com)

submitted by terrbleterrble(1665) 3 years, 4 months ago

I should have known something was up when I caught Jeffrey Palermo browsing the ASP.NET MVC Preview 5 source. read more...

add a comment |category: |Views: 140

tags: another

Four Ways to Test Expected Exceptions(nunit.com)

submitted by terrbleterrble(1665) 3 years, 6 months ago

For new applications, I recommend you set aside ExpectedException and use either Assert.Throws or Throws.Exception. That way, what you are testing is clearly stated right in the code, for everyone to see. read more...

add a comment |category: |Views: 9

tags: another

The Onion Architecture : part 2(jeffreypalermo.com)

submitted by terrbleterrble(1665) 3 years, 6 months ago

If you are looking for a full, working application as an example, please have a look. read more...

add a comment |category: |Views: 41

tags: another

The Onion Architecture(jeffreypalermo.com)

submitted by terrbleterrble(1665) 3 years, 6 months ago

The fundamental rule is that all code can depend on layers more central, but code cannot depend on layers further out from the core. This architecture is unashamedly biased toward object-oriented programming, and it puts objects before all others. read more...

1 comment |category: |Views: 479

tags: another

Summer of NHibernate Screencast Series(summerofnhibernate.com)

submitted by terrbleterrble(1665) 3 years, 6 months ago

A collection of screencasts demonstrating and teaching NHibernate, the ORM. Non linkjacked. read more...

add a comment |category: |Views: 16

tags: another

Linq to NHibernate in 10 minutes(mhinze.com)

submitted by terrbleterrble(1665) 3 years, 6 months ago

If you are curious about Linq to NHibernate and want to quickly check it out, here is an easy way to do it. read more...

add a comment |category: |Views: 40

tags: another

Functional C#(code.msdn.microsoft.com)

submitted by terrbleterrble(1665) 3 years, 6 months ago

This is a set of libraries to demonstrate functional programming aspects as implemented in C#. This is not to imply that C# is a functional language, but can implement some of the aspects of it. This project is to demonstrate some of those techniques read more...

add a comment |category: |Views: 19

tags: another

Dynamically Composing Expression Predicates(albahari.com)

submitted by terrbleterrble(1665) 3 years, 6 months ago

Of all the things that will drive you to manually constructing expression trees, the need for dynamic predicates is the most common in a typical business application. Fortunately, it’s possible to write a set of simple and reusable extension methods that radically simplify this task. This is the role of our PredicateBuilder class. read more...

add a comment |category: |Views: 74

tags: another

Is Managed Code Slower Than Unmanaged Code?(grimes.demon.co.uk)

submitted by terrbleterrble(1665) 3 years, 6 months ago

Ask anyone the question above and they will say that managed is slower than unmanaged code. Are they right? No they are not. The problem is that when most people think of .NET they think of other frameworks with a runtime, like Java or Visual Basic; or they may even think about interpreters. They do not think about applications, or what they do; they do not think about limiting factors like network or disk access; in short, they do not think. read more...

6 comments |category: |Views: 479

tags: another

Learning To Drive a Stick Shift(codingthewheel.com)

submitted by terrbleterrble(1665) 3 years, 6 months ago

Ruby. Java. C#. VB.NET. And yes, even Haskell. Whatever you program in: C++ will make you better at it. read more...

add a comment |category: |Views: 264

tags: another

Ward's Wiki(c2.com)

submitted by terrbleterrble(1665) 3 years, 6 months ago

The original wiki with a ton of software design and methodology related information. Non linkjacked. read more...

add a comment |category: |Views: 3

tags: another

StructureMap: Medium-level Usage Scenarios(lostechies.com)

submitted by terrbleterrble(1665) 3 years, 6 months ago

Profiles, Registries and more with StructureMap read more...

add a comment |category: |Views: 61

tags: another

Project anti-pattern: Many projects in a Visual Studio Solution File(lostechies.com)

submitted by terrbleterrble(1665) 3 years, 6 months ago

I've been hearing from several colleagues about how their Visual Studio solution files have many (i.e. more than 10, and usually more than 30 -- in one case, more than 100!). So far, none of them have been able to give me any good explanation for why this is and most of them hate it but they can't change it because their architect/lead/whatever won't let them. I'm hoping that by getting the discussion going on this in the greater community, we can try to discourage everyone from having lots of projects in a solution. read more...

add a comment |category: |Views: 474

tags: another

Creating NullableT When You Don't Know T(bradwilson.typepad.com)

submitted by terrbleterrble(1665) 3 years, 6 months ago

Is it possible that you simply can't create Nullable<T> programmatically for an arbitrary T? Is Nullable<T> a Heisenberg-Type, where observing it changes it fundamentally? read more...

add a comment |category: |Views: 16

tags: another

StructureMap: Basic Scenario Usage (lostechies.com)

submitted by terrbleterrble(1665) 3 years, 6 months ago

StructureMap usages: Simple Factory, Object Lifetime Manager, Object Assembler read more...

add a comment |category: |Views: 20

tags: another