Skip to content

Instantly share code, notes, and snippets.

View nosmall's full-sized avatar

Jirka aka NOsmall or NoSmallCZ nosmall

View GitHub Profile
@nosmall
nosmall / Running a Minecraft Server in Docker.md
Last active July 28, 2025 11:09
Running a Minecraft Server in Docker

Running a Minecraft Server in Docker

Source: https://waylonwalker.com/docker-minecraft-server/

# Start server
docker compose up -d

# Update server to latest version
docker compose down
docker compose pull
docker compose up --force-recreate --build -d
@nosmall
nosmall / Extend a Linux file system after resizing a volume.md
Last active December 9, 2023 12:52
Extend a Linux file system after resizing a volume
@nosmall
nosmall / iPrima, Vodafone TV.md
Last active October 29, 2023 19:10
iPrima (Remove advertising from video), Vodafone TV (Allow Rewind & Forward)
@nosmall
nosmall / rclone-gdplex.service.md
Last active June 12, 2026 09:10
rclone-gdplex.service - Mounted Rclone as service (auto start) - Ubuntu 24.04

Mounted Rclone as service (auto start) - Ubuntu 24.04

First

apt install rclone -y
apt install fuse -y
mkdir -p /mnt/hdd/gdplex_cache
mkdir -p /mnt/gdplex
touch /etc/systemd/system/rclone-gdplex.service
vim /etc/systemd/system/rclone-gdplex.service
@nosmall
nosmall / Setup Git and Github in Ubuntu 20.04.md
Last active June 2, 2026 14:04
Setup Git and Github in Ubuntu 20.04

Setup Git and Github in Ubuntu 20.04

Install git for sure

sudo apt install git -y

Setup Git username & email

git config --global user.name 'nosmall'
@nosmall
nosmall / AVMA - Hyper-V: Automatic Virtual Machine Activation..md
Last active October 23, 2021 19:58
AVMA - Hyper-V: Automatic Virtual Machine Activation

AVMA - Hyper-V: Automatic Virtual Machine Activation

https://wmatthyssen.com/2019/09/18/hyper-v-automatic-virtual-machine-activation/

PowerShell Direct from the Hyper-V host to activated a specific AVMA key for a VM running on that host. Open a PowerShell window (as Administrator) on the Hyper-V host and run following command:

Invoke-Command -VMName "vm-tmpl-W2k19" -ScriptBlock {slmgr /ipk TNK62-RXVTB-4P47B-2D623-4GF74}
@nosmall
nosmall / iperf3_speedtest_cron.bat
Created March 24, 2021 09:33
iperf3 Speedtest Cron with Mail - BATCH for windows
@echo off
:LOOP
cls
set hr=%time:~0,2%
if "%hr:~0,1%" equ " " set hr=0%hr:~1,1%
REM SET LOGFILE=%date:~-4,4%_%date:~-7,2%_%date:~-10,2%__%hr%_%time:~3,2%_%time:~6,2%.log
SET LOGFILE=%date:~-4,4%_%date:~-7,2%_%date:~-10,2%__%hr%_%time:~3,2%.log
echo.
@nosmall
nosmall / Convert Files To UTF-8 Encoding (Bulk).md
Created July 8, 2020 20:21
Convert Files To UTF-8 Encoding (Bulk)
@nosmall
nosmall / Enable Remote Desktop via Group Policy - Active Directory.md
Last active October 19, 2021 14:20
Enable Remote Desktop via Group Policy - Active Directory
Computer Configuration
  > Administrative Templates
    > Network
      > Network Connections
        > Windows Firewall
          > Domain Profile
            > Windows Firewall: Allow Remote Desktop Exception
@nosmall
nosmall / Compacting aka Compressing Hyper-V VHDX Files of Ubuntu Linux VMs.md
Last active May 3, 2022 12:42
Compacting Hyper-V VHDX Files of Ubuntu Linux VMs