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 / dnssec_forpsi_ds_records.md
Last active February 20, 2025 08:06
Forpsi - zmena DS zaznamu pro DNSSEC
  1. vytvořit keyset, vizte: https://objednavka.forpsi.com/domain/cr-keyset.php
  2. KEYSSET ID → název KEYSETu (MOJEDOMENACZ || MOJEDOMENA-CZ)
  • flag → 257
  • protocol → 3
  • algorithm → 13
  • veřejný klíč → mdss...KGQ==
  1. technicky kontakt: FORPSI-BHO-S000000, vizte: https://www.nic.cz/whois/domain/mojedomena.cz/
  2. editaci domény na centrálním registru CZNIC, vizte: https://support.forpsi.com/kb/a2733/zmena-udaju-u-domeny-_cz.aspx
  3. upravit domena - nastavit vytvoreny NSSET a KEYSET - https://objednavka.forpsi.com/domain/edit-cz-object.php?new=1
@nosmall
nosmall / windows_server_optionals.md
Last active April 18, 2023 12:04
Windows SERVER - Volitelné možnosti po instalaci

Windows SERVER - Volitelné možnosti po instalaci

Nastavení, aby se display nikdy nevypnul

*PowerShell

v režimu připojení k elektrické síti (AC)
powercfg -change -monitor-timeout-ac 0

režimu na baterii (DC)
powercfg -change -monitor-timeout-dc 0
@nosmall
nosmall / Switch_the_Network_Profile.md
Created April 16, 2023 13:46
Windows - Switch the Network Profile to Public or Private

Windows - Switch the Network Profile to Public or Private

*PowerShell with Admin Rights

Get Network Name:

Get-NetConnectionProfile

Replace Network Name:

@nosmall
nosmall / Win_Server_2022_Evaluation_to_full_version.md
Created April 16, 2023 11:11
Upgrade Windows Server 2022 Evaluation (Eval) to Full Version Standard or Datacenter
@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 / Running a Minecraft Server in Docker.md
Last active March 23, 2025 19:27
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 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 / Setup Git and Github in Ubuntu 20.04.md
Last active March 26, 2025 05: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'