There is something really appealing about native applications. As a user, having a “real” application – as opposed to a web application – often feels better. Native applications feel like a real piece of productive software. Maybe that’s why I enjoy working on them. I know that my work will produce something I might enjoy…
Read more…
GitHub is the standard for online source control. It was really the first platform many of us knew about for the hosting of git in the cloud, and we have all used it at some point. At Don’t Panic Labs, we have been using Azure Dev Ops more than GitHub during the last few years….
Read more…
Hosting your backend solution used to be pretty straightforward for .NET developers. You were basically writing an ASP.NET website that was hosted in IIS. Today there are a lot of options, of which IIS is still one of them. Many of the web applications we write today end up hosted in either Azure App Services…
Read more…
Sending emails is a common feature in software these days. A user signs up, we send an email. A user places an order, we send an email. This sort of action happens all over. So it isn’t surprising that as software developers, it’s pretty common for us to include email functionality in the systems we…
Read more…
Code reviews are one of the best things you can use as a proxy for how things are going on a project. Just the lack of code reviews is very telling. But how long it takes to do code reviews can also be telling, as can the size of code reviews. If you have to…
Read more…
AWS has a lot of great services, but one of the most useful is also one of the least sexy: a basic user management service called Cognito. Cognito provides authentication for users in the cloud. For those of us used to the Azure world, think Azure B2C but with a less awkward configuration. I actually…
Read more…
AWS Lambdas are, from a technology perspective, a lot like Azure Functions. They provide a simple and cost-effective way to host code in the cloud, and they can respond to a variety of events such as HTTP requests or queue triggers. Azure DevOps is a platform for hosting projects in the cloud, including task management,…
Read more…
Note: This post was originally published on Doug’s website on July 20, 2021. Last week, I had the privilege to give the opening keynote at the 2021 Nebraska.Code() conference. My topic was Musings on Developer Maturity and Growth where I laid out a model for creating developer maturity proto-personas using IEEE’s Guide to the…
Read more…
Education has been a common thread throughout our life at Don’t Panic Labs. It used to be about educating our team and the community through various public events. Then we created our Advanced Continuing Education program for developers, a week-long intensive that covers several topics around modern software development. With the creation of Nebraska Dev…
Read more…
Parsing files is one of the most common coding operations we perform in software development. Often the goal of parsing a file is to transform it into another format. In this blog post, we parse some CSV data, read the data, and write the data to a CSV file. All of which is pretty easy….
Read more…