howto
9 posts in this category
May 4, 2018
GoAccess working with Centos 7
I use Nginx as a proxy for my dotnet core application and with that I wanted to get some reporting so I installed GoAccess, which generates a nice HTML report. Set this up in your root crontab via a "crontab -e" as root:…
March 9, 2018
CentOS First Steps
First security steps when setting up any new internet facing linux server: Create a new user account # adduser username # passwd username # usermod -aG wheel username Send SSH key scp id_rsa.pub username@hostname:/home/username…
April 21, 2016
Three Letter Acronyms (TLA) Every Developer Should Know
Here is a list of Three Letter Acronyms I think every developer (and those professionals involved with software development) should know, at least be familiar with:
January 24, 2016
Creating a full MariaDB backup
For some reason I have had a time finding succinct information on creating a simple full (and by full I mean a file you can use to bare metal recover a database) backup with MariaDB. 1. Make a ~/.my.conf file: 2. Run this…
August 28, 2015• 1 views
Splitting CUE/Log Flac Files
I ran across some old FLAC files I ripped and for some unknown reason I decided at the time that a the FLAC LOG/CUE format was the way to go. I dunno perhaps I was intoxicated at the time. At any rate is what I used to split…
May 25, 2015
Setting up Wordpress FavIcon
I wanted something a bit more custom looking than the stock Wordpress Icon so I decided to take my avatar and make a favIcon from that. I went to Favicon-Generator it does a nice job of resizing and making the "ico" file…
May 25, 2015
ASP.NET MVC 5 Preview
Managed to get ASP.NET 5 preview up and working via Visual Studio 2015 RC in a Docker container hosted on my local Ubuntu server (read; not an Azure hosted server). All in Oracle VirtualBox Virtual Machines. [caption id=…
May 17, 2015
ASP.NET 5 on Ubuntu on VirtualBox
I figured out the magic sauce for getting ASP.NET 5 running on Ubuntu 14.04 in a VirtualBox VM. I followed this mostly for the setup but your Dockerfile should look like this: Be sure and set your VirtualBox setting to …