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 / screen.md
Created March 24, 2020 11:48 — forked from arthuralvim/screen.md
GNU Screen Commands

Screen Commands

On the command prompt, type screen. Run the desired program. Use the key sequence ctrl-a + ctrl-d to detach from the screen session. Reattach to the screen session by typing screen -r.

List running screen sessions

$ screen -list

or

@nosmall
nosmall / BATCH_script_for_Rclone_with_email_notification.bat.md
Last active March 2, 2023 14:50
BATCH script for Rclone with email notification

BATCH script for Rclone with email notification

Tools

  • mailsend-go - mailsend-go is a multi-platform command line tool to send mail via SMTP protocol
  • Rclone - Rclone is a command line program to sync files and directories

rclone-sync-v1.bat

* Sends an email with the log file only if the file is not empty.

@ECHO OFF
@nosmall
nosmall / chrome settings manageProfile
Created March 20, 2019 08:34
chrome://settings/manageProfile
chrome://settings/manageProfile
@nosmall
nosmall / .htaccess
Last active January 16, 2019 16:01
.htaccess temporary redirect maintenance script
# Work
RewriteCond %{REMOTE_ADDR} !^111.222.333.444
# Home
RewriteCond %{REMOTE_ADDR} !^111.222.333.444
#
RewriteCond %{REQUEST_URI} !^/coming-soon/(.)*$ [NC]
RewriteRule ^(.*)$ https://domain.tld/coming-soon/ [R=302,L]
@nosmall
nosmall / Aktivace Windows & Office.md
Created July 9, 2018 21:12
Aktivace Windows & Office
@nosmall
nosmall / README_FIX_Windows_10_File_Explorer_Windows_Dont_Refresh_Dont_Work.md
Last active July 4, 2018 08:15
FIX for Windows 10 File Explorer Windows Don't Refresh / Don't Work

FIX for Windows 10 File Explorer Windows Don't Refresh / Don't Work

Options:
  1. Run CMD as Administrator - DISM.exe /Online /Cleanup-image /Restorehealth
  2. Run BAT script as Administrator - fix_file_explorer.bat
ECHO OFF
DISM.exe /Online /Cleanup-image /Restorehealth
PAUSE
@nosmall
nosmall / htaccess-redirect-http-to-https.md
Last active August 30, 2018 09:14
htaccess - Redirect HTTP to HTTPS

Redirect WWW to NON-WWW for HTTP and HTTPS

RewriteEngine On
# WWW to NON-WWW for HTTP and HTTPS
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
@nosmall
nosmall / duplicating_entire_rows.sql
Created February 28, 2018 10:28
Duplicating entire rows in MySQL table to the same table
INSERT IGNORE INTO `db_lang` (`id`, `hodnota`, `jazyk`) SELECT `id`, `hodnota`, 'en' FROM db_lang;
@nosmall
nosmall / a-do-and-docompile-helper.md
Last active December 11, 2017 21:11
do & docompile wow server / private helper

do & docompile wow server / private helper

@nosmall
nosmall / Clam-AntiVirus+clamscan_daily.md
Last active December 10, 2017 19:26
Clam AntiVirus + clamscan_daily.sh

Clam AntiVirus + clamscan_daily.sh

sudo su
apt update

Install AV

apt -y install clamav
#sed -i -e "s/^NotifyClamd/#NotifyClamd/g" /etc/clamav/freshclam.conf
#dpkg-reconfigure clamav-freshclam