A History of Microsoft .NET, Part 4: .NET Framework 3.0 (LINQ)

A History of Microsoft .NET, Part 4: .NET Framework 3.0 (LINQ)

by 

|

|  

in

We have covered a lot of history in this series so far. We have covered many incremental improvements to C# and .NET. Things such as Auto-Implemented Properties were improvements, but they felt like incremental improvements to the language (although I think that one notable exception would be the addition of Lambda expressions). LINQ wasn’t a…

Read more…

A History of Microsoft .NET, Part 3: .NET Framework 3.0/3.5 (WPF, WF, WCF, Auto-Implemented Properties)

A History of Microsoft .NET, Part 3: .NET Framework 3.0/3.5 (WPF, WF, WCF, Auto-Implemented Properties)

by 

|

|  

in

.NET 3 was a pretty big change, maybe the most significant change since the creation of Microsoft .NET Framework. It was fundamentally changed in ways that brought in many amazing features into the language. Here I will cover WPF, WF, WCF, and Auto-Implemented Properties. The first change was WPF, which stands for Windows Presentation Foundation….

Read more…

AWS Lambda with Azure DevOps

AWS Lambda with Azure DevOps

by 

|

|  

in

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…

Leave Nothing to Chance

Leave Nothing to Chance

by 

|

|  

in ,

“We learn from failure, not from success!” – Abraham Van Helsing, Dracula Last week, I gave a presentation called “Leave Nothing to Chance” at the Nebraska.Code() conference. The essence of the talk was the value of locking down all the little decisions to better ensure success in your software projects. I started the talk with…

Read more…

A History of Microsoft .NET, Part 2: .NET Framework 2.0 (Generics, Partial Classes, Nullable Types, Anonymous Methods)

A History of Microsoft .NET, Part 2: .NET Framework 2.0 (Generics, Partial Classes, Nullable Types, Anonymous Methods)

by 

|

|  

in

When .NET Framework 2.0 was initially released, I was working on a .NET Framework 1.1 project that was becoming a bit of a pain. Moving to 2.0 seemed like just the thing the project (and I) needed. The addition of support for generics in 2.0 was a win in and of itself, but also adding…

Read more…

A History of Microsoft .NET, Part 1: Introduction

A History of Microsoft .NET, Part 1: Introduction

by 

|

|  

in

When you’ve been writing software as long as I have, it’s fun to look back at how far technology has advanced throughout your career. I’ve been thinking a bit lately about C and .NET, and basically the whole Microsoft stack. This led me down the rabbit hole of reading and remembering (and sometimes finding out…

Read more…

Upskilling Software Developers: Nebraska Dev Lab Transition Academy

Up-skilling Software Developers: Nebraska Dev Lab Transition Academy

by 

|

|  

in

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…

Using CSVHelper

Using CSVHelper

by 

|

|  

in

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…

Intro to PrimeNG

Introduction to PrimeNG

by 

|

|  

in

PrimeNG is a framework for building web applications, comparable to Angular Material, which we have used previously. PrimeNG is a lot like Angular Material; it provides a bunch of components we can use to build our web applications. The difference with PrimeNG is the sheer number of components. PrimeNG has more components than Angular material,…

Read more…

.NET Core Console App Set Up

by 

|

|  

in

.NET Core has changed things quite a bit from the old .NET Framework days. While it is really easy to look at a .NET Core console application and think it is pretty much a .NET Framework application, there are potentially many differences. In both .NET Framework and .NET Core, you can quickly just create a…

Read more…