Note that this article for local installation of Maria DB or MySQL. It's intended to help you get up and running with the database locally and is not intended as a production tutorial. If you need to use either in a production environment, please contact a professional. Step 1: update and install 1sudo apt update 2sudo …
Read MoreI bought an HP Envy x360 and out of the box it works pretty well with linux. I've got Ubuntu 18.10 installed and have only had to tweak a couple of minor things. There is however, one big problem and that is the touch screen doesn't work. It might be the HP firmware (I am still figuring out how to update it in linux) …
Read More01/2019 update: This doesn't seem to be necessary with the 4.20 kernel! I recently bought an HP Envy x360 13" with AMD Ryzen 5 and Vega 8 graphics. I'll get into why another time but one of the things that didn't work quite well had to do with the laptop freezing every once in a while. It seemed random at first …
Read MoreI've been using ChromeOS as my main development machine for a while now. At first I logged in under my personal gmail and used Crouton for development, but after Crostini I decided to separate out my work and personal items. Here are a few things that still bother me and why I might go back to a full linux environment: …
Read MoreI've noticed that particularly in Ubuntu Xenial, an apt-upgrade to mysql 5.7 fails. A standard re-install doesn't work for me so I've resorted to more extreme methods to get my install working. This is only suitable for development, mind you. Please do not attempt in production without full backups and supervision. …
Read MoreI've been using a Chromebook for development lately. On the side, I like to load up games and play using the linux installation I have loaded up via Crouton. Crouton is amazing and what we'll be using until native linux comes baked in, but it has some issues. There are a number of "targets" for displaying a …
Read MoreIn a previous article, we set up your Debian Buster system with git, ruby, and a bash shell that tells you the ruby version and branch. Next up, we're going to install PostgreSQL and dependencies needed to get it working with Ruby on Rails. First, let's make sure your system is up to date: 1sudo apt update 2sudo apt …
Read MoreSo you've got a new debian install and need to get it set up to do real work? Here's a quick guide to get the packages you need assuming you're using Debian's current testing distro, Buster, installed. First, let's make sure your system is up to date: 1sudo apt update 2sudo apt upgrade Next, let's grab the essentials …
Read MoreThis is an ugly solution but one that can come in handy if you just need to get some sample data out of your rails application. My particular use case was exporting data from various tables into a CSV file so I could use a 3rd party email service. We have users in a multi-tenant app so it's not quite so simple as just …
Read MoreOften times I find myself using ssh to get to a server in order to get a file. The problem is that my local machine doesn't have its own publicly accessible IP address. So I end up ssh'ing into the remote server, creating the file I need (e.g. database backup) and then exiting only to run scp from my local machine …
Read More