Install JetBrains Rider for C# on Linux

If you are a .NET developer and coming to Linux, you have a few different options for a development IDE. You may choose any standard text editor if that’s your thing, or you may like Vim or VS Code. If you are looking for a Linux alternative that is close to Visual Studio, like you have on Windows, JetBrains Rider is an excellent choice. Rider is a fully featured .NET IDE for Linux that also supports the cross-platform GUI framework Avalonia UI....

02-20-2023 · Adam

Linux C# .NET GUI App Using Avalonia UI

I said in a recent article that Avalonia UI is a great framework for creating Linux GUI applications using C# and .NET. I also said that it paired well with the JetBrains Rider IDE. So today, we are going to build the basic Linux GUI app using Avalonia UI and Rider. The GUI applications built using this framework will be cross-platform. They will run on Linux, Windows, and MacOS which greatly speeds up development....

02-20-2023 · Adam

Part 4 - Beginner's Guide to Bash Scripting

This guide is part of a series, be sure to check out the other parts as well. Part 1 - Introduction to Bash, Variables, Comments, User Input Part 2 - If/Else Statements, Looping Part 3 - Functions in Bash Part 4 - Creating Menus in Bash (This Page) In this part, we will be covering how to create menus in Bash scripting on Linux. We will first cover a basic menu that is really simple to set up and use but also flexible and works for most cases....

02-10-2023 · Adam

Part 3 – Beginners Guide to Bash Scripting

This guide is part of a series, be sure to check out the other parts as well. Part 1 - Introduction to Bash, Variables, Comments, User Input Part 2 - If/Else Statements, Looping Part 3 - Functions in Bash (This Page) Part 4 - Creating Menus in Bash Welcome back to Part 3 of our Beginners Guide to Bash Scripting. In this guide, we’ll be talking about functions in bash scripting....

02-04-2023 · Adam

Install GCC on Ubuntu Linux

GCC which stands for GNU Compiler Collection, is a collection of compilers for many different languages on Linux. For example, GCC can compile source code from C, C++, Fortran, Go, Objective C, and more. GCC is compatible with a long list of architectures, such as i386, ia64, ARM, and more. Is GCC Just for Linux? No, GCC is not limited to Linux. GCC stands for GNU Compiler Collection and is developed by the Free Software Foundation as part of the GNU project....

02-03-2023 · Adam