Latest Posts
Tuesday, July 20, 2021
In this post we are going to install MySQL Workbench on Fedora. MySQL Workbench is a great GUI database management tool for MySQL. Even though we can do everything we need with MySQL on the terminal it's nice sometime to see the tables and data visually.
Here are the steps to install MySQL Workbench:
1, Go to the yum repository for MySQL at https://dev.mysql.com/downloads/repo/yum/ select the Fedora repository, and click "Download"
Tuesday, June 22, 2021
The most important thing for most modern dynamic application these day is choosing a database to store your data. If you are on a Windows environment then you use SQL Server database that is a fine choice. But if you are on Linux MySQL is a great choice also. In this post we are going to go through how to install MySQL server on our Fedora development machine.
Here are the steps to install MySQL on Fedora Linux:
1. First we need to add the MySQL repository to our machine by tying in the following command in the terminal
sudo dnf -y install https://dev.mysql.com/get/mysql80-community-release-fc32-1.noarch
Tuesday, June 15, 2021
In this post we going to get our development environment with NodeJS, VSCode and Postman
The Urls are the following, if you are developing in Linux you should install the Linux version. All these tools are cross platform so you can develop in either Windows, Linux or MacOS:
.NET Core: https://dotnet.microsoft.com/download
Node.JS: https://nodejs.org/en/
Visual Studio Code: https://code.visualstudio.com/#alt-downloads
Postman: https://www.postman.com/downloads/
For .NET Core make sure you download the "recommended" version and not the preview version. Also with NodeJS, usually it has LTS status.
Installing .NET Core SDK and NodeJS On Fedora
In order to install .NET Core SDK on Fedora open the terminal and type in the following
sudo dnf install dotnet-sdk-3.1 -y
The -y tells Fedora to skip the y/N prompt and just go on with the install
Once the SDK is installed you can verify the install with the command dotnet --version
Tuesday, June 8, 2021
The first thing we want to do is set up the Google Chrome browser on a Linux instance, I've decided to use a virtualized Fedora workstation as my development machine. You can use Windows if you want, it would be a lot easier. It doesn't really matter because Asp.Net Core works on Linux as well. Google Chrome has the best development tools and it also has an extension call Postman. Although you want to install the standalone version of Postman. Here are the steps to install Google Chrome on Linux
I wrote a post on how to set Fedora as your development machine here
1. Navigate to the URL https://www.google.com/chrome/
2. Click on "Download Chrome"
Friday, August 17, 2018
Friday, August 10, 2018
First let's check to see what version of JDK we have installed by running the command
java -version



