Skip to content

Instantly share code, notes, and snippets.

View Zuko's full-sized avatar
😶‍🌫️

Zuko

😶‍🌫️
  • Poland
  • 03:06 (UTC +02:00)
View GitHub Profile
@Zuko
Zuko / docker-compose.md
Created March 24, 2025 18:17
WG-Easy Docker Compose Example
#!/bin/bash
# Zmiana autorów i commiterów na ładniejsze ;-)
#
# Zuko
# v1.0.0 11.07.2018
function removeDir {
rm -rf .git/refs/original
}
@Zuko
Zuko / largestFiles.py
Created March 14, 2018 06:54 — forked from nk9/largestFiles.py
Python script to find the largest files in a git repository.
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Python script to find the largest files in a git repository.
# The general method is based on the script in this blog post:
# http://stubbisms.wordpress.com/2009/07/10/git-script-to-show-largest-pack-objects-and-trim-your-waist-line/
#
# The above script worked for me, but was very slow on my 11GB repository. This version has a bunch
# of changes to speed things up to a more reasonable time. It takes less than a minute on repos with 250K objects.
#
@Zuko
Zuko / asf-start-main.sh
Created September 24, 2017 00:07
ASF Start Script
#!/bin/bash
# Start ASF
#
# 1.0.0 Zuko
# Config
ASF_DIR="/home/zuko/ASF-Main"
ASF_MAIN_CFGFILE="${ASF_DIR}/config/ASF.json"
ASF_EXEC="ArchiSteamFarm"
SCREEN_NAME="asf-main"