Skip to content

Instantly share code, notes, and snippets.

View BKirev's full-sized avatar
🏠
Working from home

Bozhidar Kirev BKirev

🏠
Working from home
View GitHub Profile
@BKirev
BKirev / restart_mobile_connection.bat
Created November 16, 2018 21:43
Batch script for Huawei E3372H reboot
@echo off
set AUTH_URL="http://192.168.8.1/api/webserver/SesTokInfo"
curl %AUTH_URL% > temp.txt
set /p $RESPONSE = < temp.txt
for /f "tokens=2 delims=^<^>" %%a in (temp.txt) do (
@BKirev
BKirev / wp_bash.sh
Last active July 14, 2018 23:33
Wordpress deployment and installation on Ubuntu 16.04(DigitalOcean) + nginx modifications for WP permalinks
#!/bin/sh
#
# Wordpress Setup Script
#
# This script will install and configure WordPress on an Ubuntu 16.04 droplet
export DEBIAN_FRONTEND=noninteractive;
# Generate root mysql password
# rootmysqlpass=`dd if=/dev/urandom bs=1 count=32 2>/dev/null | base64 -w 0 | rev | cut -b 2- | rev | tr -dc 'a-zA-Z0-9'`;