Browse by Tags

All Tags » .NET (RSS)

ASP.NET MVC for the php/asp noob

I was talking to a friend today, who's foremost a php developer, about his thoughts on Umbraco and he said "Well they're apparently working feverishly on the new version of Umbraco, which will be MVC... which i still don't know what that means, but I...
Posted by dotjosh | 65 comment(s)
Filed under: , ,

Monitoring settings in a configsection of your app.config for changes

The usage: public static void Main() { using (var configSectionAdapter = new ConfigurationSectionAdapter<ACISSInstanceConfigSection>( "MyConfigSectionName" )) { configSectionAdapter.ConfigSectionChanged += () => { Console.WriteLine( "File has...
Posted by dotjosh | 2 comment(s)
Filed under: ,

"And you wanted to blame NHibernate!?" -Ayende

With permission from Ayende, here is a great sound byte from one of the TekPub video series (which I highly recommend) on NHibernate. Feel free to send it to people who erroneously blame NHibernate, I know I will! *MP3 FILE DOWNLOAD: "And you wanted to...

My short answer to "If no other engineering discipline does it first, why should I TDD?"

I agree Software Development by the truest form of the word, is in fact Engineering, but not all parallels can be made to its hardware counterparts, especially in its current state of maturity. We can build high amounts of complexity with few people in...

Silverlight BringIntoView() extension method (with OnGotFocus behavior)

It all started because I couldn't find a way to automatically scroll any element into view in Silverlight (a feature that exists in WPF). I take that back, I could get the job done with a ListBox's ScrollIntoView(ListBoxItem item) method, but I hardly...
Posted by dotjosh | 4 comment(s)
Filed under: , , ,

Silverlight 3 quietly released a day early

I don't see any official word yet, but here are the links to the binaries: Microsoft® Silverlight™ 3 Tools for Visual Studio 2008 SP1 Microsoft Silverlight 3 Client Install Page I'm just hoping that I'll be able to multitarget for Silverlight 2 and Silverlight...
Posted by dotjosh | 2 comment(s)

MVC/JQuery meets X-Mas Music Project

My friend Dave and I embarked on a project a few weeks ago, initially just meant to be an audio CD for our family, that included some rockin' versions of everyone's christmas favorites. As we started to record it, we got more and more excited about how...
Posted by dotjosh | 50 comment(s)
Filed under: , ,

NHibernate querying without mapping inverse relationships

In my neverending quest to keep my domain minimal, I ran into a query that I wanted to perform with NHibernate that seems to be impossible without adding an additional property and hbm mapping definition. Note: I still consider myself rather new to NHibernate...
Posted by dotjosh | 2 comment(s)
Filed under: ,
More Posts