nhogge

Stories submitted by friends of nhogge

WinDbg + SOS Cheat Sheet(kentb.blogspot.com)

submitted by akcoderakcoder(830) 2 years, 10 months ago

A WinDbg + SOS cheat sheet that will print nicely on a sheet of A4 paper. read more...

add a comment |category: |Views: 142

tags: another

5 Minute Tutorial on Managed Extensibility Framework (MEF)(milkcarton.com)

submitted by akcoderakcoder(830) 3 years, 1 month ago

A quick, to the point tutorial on exposing and consuming a plugin architecture created with MEF. read more...

add a comment |category: |Views: 3232

tags: another

A better, easier way to make sure you've globalized everything(milkcarton.com)

submitted by akcoderakcoder(830) 3 years, 3 months ago

A better, easier way to make sure you've globalized everything in your application read more...

add a comment |category: |Views: 474

tags: another

Calculating the distance between two Zip Codes in C#(wiredprairie.us)

submitted by orandorand(295) 3 years, 4 months ago

Code for calculating distances between zip codes using downloaded U.S. Gazetteer files and the Haversine formula. read more...

add a comment |category: |Views: 38

tags: another

How to ALWAYS run Visual Studio as Administrator(jojitsoriano.wordpress.com)

submitted by orandorand(295) 3 years, 5 months ago

Sure you can right-click and "Run as Administrator" but wouldn't it be better if simply double-clicking VS or any VS file (.sln, .csproj, .cs, etc.) would automatically run Visual Studio as an Administrator? Here's how. read more...

add a comment |category: |Views: 2543

tags: another

Live Mesh + Flash == Adobe AIR(orand.blogspot.com)

submitted by orandorand(295) 3 years, 6 months ago

Live Mesh apps officially support Silverlight and DHTML. But they also support Flash! Check out how easy it is to build a Flash Mesh app. read more...

add a comment |category: |Views: 9

tags: another

Is the ADO.NET Team Abandoning LINQ to SQL?(oakleafblog.blogspot.com)

submitted by orandorand(295) 4 years ago

Roger Jennings, eagle-eyed reporter of all things LINQ/ADO.NET/EF, describes why LINQ to SQL appears to be approaching legacy product status, with promised features unlikely to ever ship. read more...

2 comments |category: |Views: 921

tags: another

LINQ to NHibernate in LINQPad(orand.blogspot.com)

submitted by akcoderakcoder(830) 4 years, 1 month ago

LINQPad is like Query Analyzer for LINQ queries. Out of the box it does LINQ to SQL, LINQ to Objects, and LINQ to XML. Wouldn't it be nice if it did LINQ to NHibernate as well? Here's how. The setup process is a bit tedious, but you only need to do it once. read more...

add a comment |category: |Views: 288

tags: another

Rhino Mocks Quick Reference(orand.blogspot.com)

submitted by orandorand(295) 4 years, 5 months ago

Concise examples of all the main features of the Rhino Mocks mock object framework read more...

2 comments |category: |Views: 950

tags: another

De-crapify your code base with AOP using PostSharp(milkcarton.com)

submitted by akcoderakcoder(830) 4 years, 6 months ago

How to remove all the code thats irrelevant to what your trying to do, to make your code base easier to grok. read more...

add a comment |category: |Views: 27

tags: another

Windows Firewall Exceptions(milkcarton.com)

submitted by akcoderakcoder(830) 4 years, 7 months ago

How to create Windows Firewall Exceptions with C# read more...

add a comment |category: |Views: 183

tags: another

ASP.NET Resource Refactoring(milkcarton.com)

submitted by akcoderakcoder(830) 4 years, 9 months ago

Easy macros to help i18n your ASPX pages read more...

add a comment |category: |Views: 8

tags: another

Using Visual Studio Macros to Increase Productivity(milkcarton.com)

submitted by akcoderakcoder(830) 5 years ago

If you've ever tried to find a particular file or project in a 36 project solution when many projects and folders are expanded, then you know how fustrating it can be. After putting up with it for over a year, I finally asked a co-worker of mine if he knew of a way to quickly jump to a particular project in Visual Studio. He reminded me that Visual Studio has excellent macro support. read more...

2 comments |category: |Views: 16

tags: another

Using Custom Attributes to Enable Quick Searching of Your Domain Entit(milkcarton.com)

submitted by akcoderakcoder(830) 5 years, 4 months ago

I've started work on the search piece of our application. Searching (no pun intended) for some inspiration on how users might want to search within our application, I brought up the current WinForms version, and then the ASP.NET version. I realized that we need to make searching easier in WinForms client, currently when searching for a patient in our WinForms client, you are presented with a separate text box for first name, last name, SSN, date of birth, and health record number. Our ASP.NET client presents just one text box to search all of those fields. read more...

add a comment |category: |Views: 8

tags: another

NHibernate, DateTime and UTC(milkcarton.com)

submitted by akcoderakcoder(830) 5 years, 4 months ago

We are in the midst of doing a total rewrite of our Software, and one of the things that has come up is date and time. How do we do it, how do we store it, and how do we ensure that we can compare DateTime from one timezone to DateTime in another timezone. After a lot of research, we settled on using UTC (or UCT depending on your preference). FxCop will take care of ensuring we use UTC (for the most part), or so we thought... read more...

4 comments |category: |Views: 178

tags: another

CompositeUserTypes in NHibernate(milkcarton.com)

submitted by akcoderakcoder(830) 5 years, 4 months ago

Often times when you’re developing an application, there is a one-to-one mapping between your domain model (object model) and your database schema. Doing it this way often times makes it easier to wrap your head around everything going on in your app. But this isn’t always the right way to do things. read more...

add a comment |category: |Views: 37

tags: another