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 / speedtest-cli-app-by-speedtest-net.md
Last active December 2, 2019 10:18
speedtest-cli application by speedtest.net - Ubuntu 16.04

speedtest-cli (lazy guide)

speedtest-cli application by speedtest.net - Ubuntu 16.04

sudo su

quick install & run speed-test

apt update \
@nosmall
nosmall / Deluge-with-Deluge-Web-UI.md
Last active August 5, 2019 17:14
Deluge with Deluge-Web-UI on Ubuntu 16.04

Deluge with Deluge-Web on Ubuntu 16.04 (lazy guide)

sudo su
adduser deluge --shell /dev/null --disabled-password --disabled-login
add-apt-repository ppa:deluge-team/ppa \
@nosmall
nosmall / Pure-FTPD-TLS-Encryption-letsencrypt.md
Last active October 27, 2022 01:34
Pure-FTPD, TLS Encryption - letsencrypt on Ubuntu 16.04

Pure-FTPD on Ubuntu 16.04 (lazy guide)

sudo su
apt update

Install Pure-FTPD

apt install -y pure-ftpd
@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
@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 / 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 / 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 / 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 / Aktivace Windows & Office.md
Created July 9, 2018 21:12
Aktivace Windows & Office
@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]