Skip to content

Instantly share code, notes, and snippets.

View mikkimonroe's full-sized avatar

Mikki Monroe mikkimonroe

  • RecoverySky Inc 501c3
  • Springfield, MO USA
  • 06:04 (UTC -05:00)
View GitHub Profile
@mikkimonroe
mikkimonroe / bash-to-zsh-hist.py
Created February 10, 2025 08:53 — forked from muendelezaji/bash-to-zsh-hist.py
Convert Bash history to Zsh history
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# This is how I used it:
# $ cat ~/.bash_history | python bash-to-zsh-hist.py >> ~/.zsh_history
import sys
import time
@mikkimonroe
mikkimonroe / setup-docker-al2023.md
Created February 10, 2025 08:49 — forked from thimslugga/setup-docker-al2023.md
Setup Docker on Amazon Linux 2023

Setup Docker on Amazon Linux 2023

The following guide is for setting up Docker with docker-compose v2 on Amazon Linux 2023. The steps are intendend for AL2023 on EC2 but should mostly work for the AL2023 VMs running on other hypervisors.

Overview of Updating Amazon Linux 2023

Check for new updates

Get the hosts current Amazon Linux 2023 release:

@mikkimonroe
mikkimonroe / setup-zsh-ohmyzsh.sh
Last active February 10, 2025 08:51 — forked from johndpope/install.sh
Installing zsh + oh-my-zsh on Amazon EC2 Amazon Linux 2 AMI
sudo yum update
# Installing ZSH
sudo yum -y install zsh
# Check ZSH has been installed
zsh --version
# Install "util-linux-user" because "chsh" is not available by default
# See https://superuser.com/a/1389273/599050