Preview Mode Links will not work in preview mode

With the limited time and energy that software leaders have, by tuning into Programming with Palermo, you ensure that you accomplish the most for the effort invested.

You deliver software. That's what you do.  And it can be frustrating when things take too long, when bugs pop up, or when things break in production.  But you have what it takes.  Programming with Palermo can help improve your confidence by delivering timeless knowledge, moving unnecessary obstacles, and regaining excellence within your development team; opening up to their full potential.  Simply - simplify!

Jul 20, 2022

Code Sample

In this episode, you will continue with part two of .NET 6 using Onion Architecture. We laid out the core project, the first unit test, and the private bill and now we will review those builds and get them working on windows images.  You will also see the difference between GitHub Actions and Azure...


Jul 13, 2022

Code Sample

In this episode, you are going to set up a new code base with .NET 6 using the Onion Architecture pattern.  Jeffrey will use some new project things, that might be in preview, from GitHub and see what works right out of the box with GitHub Actions and what might not. 

You will be creating a new repository...


Jul 6, 2022

Code Sample

Json Serialization

With Blazor's implementation of WASM, the front end and the backend of a Blazor C# project is separated. This means that for the WASM project to run on the client side it needs to interact with a server to send and receive data. This is possible using API's however it's far too easy to...