How to get back the old Console Project in .NET 6

Visual Studio Console Project

Since .NET 6, Microsoft has changed the template for the console project. From now on, the console template will use top-level statements. Using new features like global usings and file-scoped namespaces, .NET allows you to write the code statements directly without boilerplate code. Most programmers hate this new project style that removes the Main method and the default using statements. … Read more

Best C# courses on Pluralsight

Best C# Courses on Pluralsight

C# is one of the most popular programming languages. Every day thousands of students start to learn it. One way to learn the basics of C# is to watch video courses on platforms like YouTube, Linkedin Learning, Coursera, Khan Academy, or Pluralsight. Pluralsight is a video course platform that is more focused on programming, especially from the Microsoft world. Here … Read more

Password Manager for Programmers

Password Managers

A password manager is a great tool to save time and be more secure. I’ve seen so many times passwords that are stored in text files or on sticky notes. When I installed the first password manager, my life changed. Seriously! Now I remember only a few passwords; the vault has the other ones. I have two recommendations for password … Read more

12 Free Visual Studio Extensions For Productivity And Code

Visual Studio Extensions

I love to be a productive programmer. I spent a lot of time finding the best tools to help me in my daily job. The following Visual Studio extensions are the best for saving time. I have at least twenty installed. Here is a list of the most important for me: Productivity Power Tools Productivity Power Tools is an extension … Read more

C# Web Scraping and Automation

C# Scraping and Web Automation

I think every programmer tries to automate some of their tasks. Once, one of my colleagues created an app that checked the cinema website in order to book a ticket to a Star Wars movie. In C# the are many ways to scrape a website or automate a flow on a website. Here is a list of possible options: Selenium … Read more