Installing Ruby

Installing Ruby is relatively simple. There is an install page as part of the Ruby documentation: https://www.ruby-lang.org/en/documentation/installation/ While they would prefer you to have a Unix, or Unix like environment, you can scroll down to find the best way to install this language runtime software. I personally went to the Ruby Installers section of the…

Overview of Ruby

Ruby is a high-level, interpreted programming language that was designed to make coding as enjoyable as possible. Created by Yukihiro Matsumoto in the mid-1990s, Ruby prioritizes readability, simplicity, and productivity. The language is dynamically typed, object-oriented, and often praised for its clean, expressive syntax, which resembles natural language. Ruby is particularly popular in web development,…

About Rust

Rust is a systems programming language that’s designed to combine safety, speed, and concurrency. Created by Mozilla in 2010 and currently maintained by the Rust Foundation, Rust aims to overcome some of the biggest challenges faced by programmers in languages like C and C++. Its primary goal is to eliminate common programming errors like null…

Installing Go

When installing Go, you have a couple of options. Source Code First, you can install from source code, which means you will need to compile the source code. This allows for a lot of flexibility. However, the code base itself is written in Go, so you will need to download a binary of the Go…

Installing WordPress

WordPress is an easy to install web application. A web application requires that the software be run from a web server. This is because it requires PHP and MySQL to generate the web pages. NOTE: You CANNOT launch your website from your local disk by clicking on the files. There are two main ways to…