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 / Convert Files To UTF-8 Encoding (Bulk).md
Created July 8, 2020 20:21
Convert Files To UTF-8 Encoding (Bulk)
@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 / 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 / Setup Git and Github in Ubuntu 20.04.md
Last active April 7, 2025 08:09
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 / rclone-gdplex.service.md
Last active February 16, 2025 01:16
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 / iPrima, Vodafone TV.md
Last active October 29, 2023 19:10
iPrima (Remove advertising from video), Vodafone TV (Allow Rewind & Forward)
@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 / Running a Minecraft Server in Docker.md
Last active April 11, 2025 16:30
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 / index.html
Created January 6, 2023 09:59
Send POST data on redirect
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Send POST data on redirect</title>
</head>
<body>
<script>
@nosmall
nosmall / Win_Server_2022_Evaluation_to_full_version.md
Last active April 10, 2025 08:29
Upgrade Windows Server 2022 Evaluation (Eval) to Full Version Standard or Datacenter