Python Friday #200

It is unbelievable that this is already post #200 for my Python Friday series. Let us use this milestone to look back at the topics we covered since Python Friday #100. Again, you get an easy-to-use reference that lets you jump right to the topics you are interested in.   Fundamentals of the Python language …

Read more

Little Git Tricks: Find the Last Common Commit in 2 Branches

If we want to find the newest commit that is in our main and in our feature branch, we can use this Git command:

1fe43981b856bkk8958494949494949494493339 This gives us the hash of the commit that is in both branches (in my example 1f439***). We can then see the details of that commit with git log: …

Read more

How to Fix ERR_SSL_VERSION_OR_CIPHER_MISMATCH for Your NuGet Feeds on Azure DevOps

We run into a strange error last week when we no longer could install NuGet packages from our Azure DevOps feed. Visual Studio only gave us a basic error message about SSL connections, but to get some details we needed to run dotnet restore: error : The SSL connection could not be established, see inner …

Read more

Python Friday #198: Multi-Component Dashboards with Dash

After our first steps with Dash last week, we create in this post a more complex dashboard with multiple components that we can update simultaneously. This post is part of my journey to learn Python. You find the code for this post in my PythonFriday repository on GitHub.   Install the dash-bootstrap-components I like working …

Read more