Skip to content

Instantly share code, notes, and snippets.

View tikg's full-sized avatar
🎯
Focusing

tikg tikg

🎯
Focusing
View GitHub Profile
@tikg
tikg / docker-k8s-terra-ec2-aws.md
Last active November 6, 2025 01:14
Docker Kubernetes(minikube) Terraform and ec2

Docker Kubernetes(minikube) Terraform and ec2

checking if AMI ID exists

tik@tik-1tb:/media/tik/1TB_02/lab/terra-aws$ aws ec2 describe-images --region us-west-1 --image-ids ami-01f10c2eaffc9c7e5

An error occurred (InvalidAMIID.NotFound) when calling the DescribeImages operation: The image id '[ami-01f10c2eaffc9c7e5]' does not exist
@tikg
tikg / install-chrome-in-linux.md
Last active November 5, 2025 02:01
Installation of Chrome in Linux
@tikg
tikg / sre-setup.md
Created October 25, 2025 10:57
Setting up my SRE environment

Setting up my SRE environment

Install the following

  • Docker
  • Colima (Linux/Mac)
  • Nginx
  • Kubernetes
  • Ansible / Chef
  • Terraform
  • Ruby on Rails
@tikg
tikg / macos-sierra.md
Last active October 25, 2025 06:05
MacBookPro 2017 | MacOS Install Sierra Recovery
@tikg
tikg / mobax.md
Created February 1, 2024 00:25
Mobaxterm
@tikg
tikg / sony-a6400.md
Created August 8, 2023 09:58
Sony a6400 tweak to enable English on a Japanese camera

Tweak japanese to english

Install drivers https://zadig.akeo.ie/

image

image

image

@tikg
tikg / git.md
Last active February 1, 2024 00:30

git and git finds

@tikg
tikg / wow.md
Created February 22, 2023 08:50

WoW

Here are the steps to set up Docker and Kubernetes for learning on your home desktop server:

Install Docker:

First, you'll need to install Docker on your desktop server. Follow the installation instructions for your operating system on the Docker website.

Install Minikube:

Minikube is a tool that makes it easy to run a single-node Kubernetes cluster locally. To install Minikube, follow the instructions for your operating system on the Minikube GitHub page.

Start Minikube:

Postgresql Setup with Concrete CMS

go inside mysql envt

mysql 
create database rnnwebdb;
CREATE USER 'rnnweb'@'localhost' IDENTIFED BY 'mxxxxzg';
use rnnwebdb;
flush privileges;
exit