Timothy Khouri - SingingEels.com

I subscribe to the "take it apart and rebuild it" approach to learning.
Looking for help with an ASP.NET-MVC-3 Question

I've reached out to the stack-overflow community... but I realize that this is also a good resource for ASP.NET / MVC help as well. Basically, I need to iterate through

If you have any ideas, please let me know here.

Posted: Apr 26 2011, 05:57 PM by Nullable | with no comments
Filed under: , ,
Generic "Animate" jQuery Extension
Recently, I had the need for a generic "animate" method... jQuery has an animate function, but it didn't fit my needs so I wrote this quick extension. Here's the article (with demo at the bottom) - Generic "Animate" function with jQuery
Posted: Aug 26 2010, 10:24 AM by Nullable | with no comments
Filed under: ,
New Article: Extending LINQ - Specifying a Property in the Distinct Function
For those of you who are already comfortable with LINQ, you've probably run into this same limitation with the "Distinct" function... check out the article (and source), it's a fun way to solve a common problem: Extending LINQ - Specifying a Property in the Distinct Function
New Article: Creating a Custom View Engine in ASP.NET MVC

I love how pluggable ASP.NET MVC is... this last article was fun, and I'm half tempted to start coding in HoTMeaT!

Here's a snippet of the good stuff:

<ul>
   <listView source="{ViewData People}">
       <itemTemplate>
           <li>{Binding LastName}, {Binding FirstName}</li>
       </itemTemplate>
   </listView>
</ul>

And here's the HTML that it generates:

<ul>
   <li>Khouri, Timothy</li>
   <li>Carter, Jonathan</li>
   <li>Sheppard, Travis</li>
</ul>
New Article: Silverlight DataBinding Basics

It's been a little while since I've written an article. My excuses are a new job, and StackOverflow :)

I've been getting heavily into WPF lately, and it reminded me that I have been neglecting Silverlight on SingingEels... so here's the latest article: Silverlight DataBinding Basics

New Article: Model Binders in ASP.NET MVC - Part 2

I normally don't do a "Part 2", but the first article seemed to cause some concerns to many people. The concerns aren't valid, which is why I felt in necessary to address them. The issues stemmed around RESTful URLs, comparing ModelBinders to the ViewState and accessing the database from a ModelBinder. Here's the article: Model Binders in ASP.NET MVC - Part 2

New Article: Test Driven Development with ASP.NET MVC

This passed Saturday, I had got to do a couple of sessions at the first anual South West Florida Code Camp on ASP.NET MVC... part of that presentation was about TDD, and unit tests with MVC in general. I've written this article (Test Driven Development with ASP.NET MVC) now for the rest of the world who wasn't their to hear my mediocre words!

Requesting Your Input : A slight change to MVC

Nothing major, but I'm looking for any input for or against (with specific reasoning would be great) this thought: A Change to the MVC "ActionSelectionAttribute"?

Thanks,
-Timothy

New Article: Model Binders in ASP.NET MVC

Article Teaser: Hot off the presses, and new to ASP.NET MVC (Preview 5) is an awesome capability that (in my opinion) revolutionizes the way we design web applications. This feature is being touted (by me) as "the ViewState for MVC".

Model Binders in ASP.NET MVC

On a side note: MVC is getting really exciting. I'll be speaking at the Naples, FL code camp in a couple of weeks on the subject (whic is currently my passion). Hopefully all will go well.

New Article: Logging with ASP.NET MVC Action Filters

I know I've said this 100 times at this point, but I'm in love with MVC. If you've read other MVC articles, but you're not really feeling it, then I suggest (and hope) you check out this one: Logging with ASP.NET MVC Action Filters

Action Filters aren't complicated, but the power they provide is clear to see. To think that this is only "preview 4" (meaning, it's not even a beta yet) is pretty amazing. My hat is off to Phil Haack for this one.

More Posts Next page »