Skip to content

Instantly share code, notes, and snippets.

@Konijima
Konijima / Project Zomboid - How to mod like a boss.md
Last active March 13, 2025 17:26
Project Zomboid - How to mod like a boss

How to mod like a boss 😎

This tutorial I will show you

  • how file load order works
  • how to think and structure lua mods
  • how to modify vanilla behaviour
  • how to use require with passion
  • and more...

@Konijima
Konijima / .bashrc
Last active April 18, 2025 18:04
Copilot CLI - how & what
# Copilot CLI - how & what
# GIST: https://gist.github.com/Konijima/01c11edd9c089da10b5a4df46e19c894
# Load Copilot CLI aliases
eval "$(gh copilot alias -- bash)"
# Define the 'how' command
function how() {
local system="$(uname -srm)"
local shell="$(ps -p $$ -o comm=)"