Azure’s Container Registry with Docker (Quickstart!)

by 

|

|  

in

If you’re wondering how to best leverage your Azure account in the midst of containerizing all your things, then you’re in luck. Azure’s got you covered. In this article, I’m focusing on Azure’s container registry, because I think it will fit into my workflow a little better than other container repositories like Docker Hub. Personally,…

Read more…

Unit Testing Private Methods

by 

|

|  

in ,

Unit tests are great! Encapsulation is great! When writing testable code, sometimes you come across a situation where you want to test private methods. Before implementing any solution, please think about why you are wanting to test a private method and whether it should be tested. If you still would like to test your private…

Read more…

Customizing Your VSTS Task Board

by 

|

|  

in

The VSTS task board is a great way for developers and project managers to see development tasks in the current iteration. But we like to also see which tasks have been submitted and are awaiting a pull request. Here is how we customize our task board to add an additional step for work items. Creating…

Read more…

Using Git From PowerShell with Multiple Hosts

by 

|

|  

in

I do almost all of my Git work via the command line and so should you. As a tool that developers use every day, it is important that we understand what is happening. I find that most Git GUIs hide too much and developers that rely on them exclusively are often unaware of how Git…

Read more…

Mapbox – Visualizing Workout Activities

by 

|

|  

in

Creating a custom map for your data has never been easier with tools such as Mapbox. Within minutes you can have your data uploaded and visualized in a stylized map ready to be consumed on the web or by a mobile app. Mapbox Studio is a one-stop shop for uploading data, creating a layer, styling…

Read more…

Custom Configuration Sections

by 

|

|  

in

AppSettings in app.config is great for making your app configurable without having to recompile it. You specify a key to get a value to avoid hardcoding configurations. There are two advantages to creating your own custom configuration over basic appSettings: Enumerate a list of configurations without having to hardcode each key in your code. Store…

Read more…

Knitting Your Web Code Together in a New Way: Why I Started Using Yarn

by 

|

|  

in

A while back I was reading posts about the top development tools of 2016 and what to watch out for in 2017, and both of them mentioned Yarn Package Manager. I hadn’t heard of it so I read a bit more into it and it sounded very interesting. A couple months later I was getting…

Read more…

Dynamically Resizing UITableViewCells in Xamarin.iOS

by 

|

|  

in

I recently needed to implement a UI that required a UITableViewCell to have an expandable “notes” fields within it, with the expansion triggered by a button within the cell itself. Getting this to work was a little tricky. So if you find yourself in this situation, I hope you can get some ideas from me,…

Read more…

Protecting Master Branches with Policies in Visual Studio Online

by 

|

|  

in ,

At Don’t Panic Labs, we love tools that help us ensure we are writing quality code and following our development patterns and practices. We are using Visual Studio Online for many of our current projects and we have found some very useful features for protecting the master branches. Requiring pull requests for a branch On…

Read more…

Debugging LINQ

by 

|

|  

in

LINQ is awesome! It allows you to write very concise and easy to understand queries. However, it also hides the actual queries, which can make debugging a bit more difficult. I recently experienced this firsthand when I had to debug a LINQ statement that I didn’t write. But the silver lining was that I found…

Read more…