It seems like we all use Git for source control. I know that since around 2012, everyone at Don’t Panic Labs has been using Git, and it has been amazing. Compared to what was there before, the difference Git made was like night and day. With Git, branching and merging are pleasant and super easy….
Read more…
In an earlier blog post, I described how we could create an Electron tray application. In that post, we got a simple Electron application running. In this post, we will augment the application with Angular to provide structure and utilities helpful for building an application. This should be very straightforward, but if you try to…
Read more…
SQLite is an interesting database technology. While not a technology we would often use on the backend, it is great for mobile projects because of its lightweight nature. A feature many people don’t know about is its ability to perform fuzzy text searches (full text). This ability is pretty much baked into SQLite; it only…
Read more…
GitHub has released a tool called Copilot. This tool has an on-the-nose name as it is designed to be a co-pilot for developers and help them write code faster. The service doesn’t cost much, only $10 per month for a developer. This isn’t much, especially if it makes you more productive. To test it out,…
Read more…
The ability to dynamically generate surveys and store the data without writing a lot of code is pretty powerful. There are various tools to help with this, and many products are built around this as a business model. But today, I will look at SurveyJS, a library that gives us some of these dynamic abilities…
Read more…
WPF data binding was extremely powerful and good to work with. It was robust and felt like you could do whatever you wanted with it. .NET MAUI’s data binding is pretty much the same. What is data binding? Data binding is when we take the value of a property in our C# class and make…
Read more…
.NET MAUI is Microsoft’s next version of Xamarin Forms. It has taken Microsoft a few years to get here, but with .NET 7 MAUI is finally in a usable state. Since .NET MAUI is an extension of what was Xamarin Forms, you can write a single piece of C# code that will run on Windows,…
Read more…
Visual Studio may be Microsoft’s best product. I have always been impressed with it, especially compared to other IDEs. I have become a fan of JetBrains Rider in the last few years. It is a pretty impressive editor too. In some ways, it does a better job than Visual Studio, but I believe Visual Studio…
Read more…
.NET 7 is out, and it is a pretty significant upgrade. Performance, ASP.NET, MAUI, and C# 11 are some of the new features. Microsoft continues to improve the performance improvements of .NET. As I have discussed in a previous blog post, Microsoft has needed to improve the cold start performance of .NET for a while….
Read more…
An advantage of NodeJS is that there is a ton of available software. Probably more software libraries are available for NodeJS than any platform. One of those libraries is Passport, which can be used to handle authentication. Getting Passport set up and running isn’t difficult but does require a few steps. First, we must install…
Read more…