January 11, 2013

Mustache

I saw an interesting approach to view rendering. Often in web projects, the template or views will grow to include many conditionals. You will start to see conditions littered about. Some get to contain logic like this:

<% If (someObject.Count() > 0) { %>
            <div>Something...</div>
          <% } %>
          

Enter…

Continue reading
  July 07, 2012

Using NCrunch to find bottlenecks visually

All examples are from NCrunch Version 1.40b.

NCrunch is a continuous test runner for C#. I enjoy using it to test my code with a less jarring mental switch. It displays the status of test runs in visual studio as a color coded circle. In addition, it shows the status next to each line that was run.

Continue reading
Newer