Skip to content

Instantly share code, notes, and snippets.

View tikg's full-sized avatar
🎯
Focusing

tikg tikg

🎯
Focusing
View GitHub Profile
@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
@tikg
tikg / localdeployment-container.md
Last active January 20, 2023 04:35
Local Deployment of Containers

Local Deployment of Containers

k0s/minikube/k3s/microk8s all are viable options for local deployment.
Or even kind/k3d if you want to run kubernetes on top of docker.

@tikg
tikg / podman.md
Last active February 9, 2023 00:15

podman quick deploy

sudo apt-get -y update  
sudo apt-get -y install podman  
podman run --name tuliao-wordpress -p 8080:80 -d wordpress  
podman generate kube tuliao-wordpress  
@tikg
tikg / docker.md
Last active January 20, 2023 07:04
Everything Docker

Everything Docker

Removing docker from wsl

kubectl on Docker users cmd

setup docker on ubuntu wsl

@tikg
tikg / python.md
Last active January 20, 2023 07:20

Python with nexfil

sudo git clone https://github.com/thewhiteh4t/nexfil.git  
cd nexfil  
sudo apt install python3-pip  
sudo pip3 install -r requirements.txt