TeamCity Builds with the Visual Studio 2012 Test Runner

by 

|

|  

in ,

Since we use private GitHub repositories for our code, we needed something to easily manage our builds. When we had a new project recently start up, we decided it was time to take the plunge with TeamCity. However, we found a problem with this: we use fakes for unit testing, something that requires the Visual…

Read more…

Awesome Benefits: Beyond Beer and Pinball

by 

|

|  

in

Just about every person that tours the Don’t Panic Labs office points out the great perks that jump out at them. The great open space concept, the stocked kitchen, the beer fridge, the pinball machines, etc. While all of these things are great, the greatest benefit we have here at DPL is not as easy…

Read more…

Matt Will – Communitarian of the Month

by 

|

|  

in

This month we are recognizing software engineer Matt Will. He’s been an active volunteer since his first week at Don’t Panic Labs in January. Here’s what he told us when we asked about his various volunteer experiences. Why do you volunteer? It’s just a really easy way for me to give back to the community….

Read more…

Lori McCarthy – Communitarian of the Month

by 

|

|  

in ,

We have a new topic you’ll be seeing on the Don’t Panic Labs blog – Communitarian of the Month. Each month we will recognize a Don’t Panic Labs team member for their “communitarian” work through volunteering. For the inaugural “Communitarian of the Month” post, we are recognizing Project Manager Lori McCarthy. Here’s what she told…

Read more…

500,000 Reps and Counting

by 

|

|  

in

In March, the EliteForm team celebrated a major milestone: 500,000 reps tracked by our PowerTracker system. If you’re not familiar with EliteForm, it’s a company we launched in 2012 that provides coaches a way to create workout designs in a web-based application (StrengthPlanner) and publish them to touchscreen based units mounted on weight racks (PowerTracker)….

Read more…

Looking Back and Looking Ahead

by 

|

|  

in

As we were looking back over the blog’s 2012 stats, I was struck (and humbled, honestly) at how many visitors we’ve received and the attention certain posts had garnered. Our five most popular posts in 2012 were: Ganz’s ClickOnce Publish and Deploy from Team Foundation Server 2010 Santi’s Developing Reports for SQL Server Reporting Services…

Read more…

Posting JSON Data to an MVC Controller via Ajax

by 

|

|  

in

Form posts are a thing of the past. Most new interactive HTML5-Web 2.0-buzzword web apps are trending towards a one-page UI with Ajax requests used to pull and push data dynamically. So if you are doing a cool new web app that does not use any form posts, why would you make your Ajax posts…

Read more…

JSON and .NET Decimals

by 

|

|  

in ,

I recently had a problem with my controller inconsistently picking up a decimal value in my model. Here’s what the Action looked like: [HttpPost] public ActionResult SaveItem(Item myItem) {…} For simplicity we’ll say this is what Item looked like: [DataContract] public class Item { [DataMember] public long Id { get; set; } [DataMember] public decimal…

Read more…

That Pesky “Requested Resource Does Not Support HTTP Method ‘POST’” Error When Using MVC Web API

by 

|

|  

in

While working on a project that involved MVC Web API, I ran into a strange issue. I created my controller, registered my routes and decorated my methods with “[HttpPost]”, but the application would still not allow me to do POST requests to my method (HTTP 405 – Method not allowed. The requested resource does not…

Read more…

Debugging on the Web

by 

|

|  

in ,

When we develop for Windows, we use a debugger. So why does so much of our web development follow the code refresh ”Did it work?” progression? All modern web browsers have some sort of web development tools. These can be used to check your CSS, manually manipulate Document Object Model (DOM) elements, and even debug…

Read more…