Skip to content

Instantly share code, notes, and snippets.

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

Maciej Kozłowski tatarysh

🏠
Working from home
View GitHub Profile
@tatarysh
tatarysh / binance-app-update.sh
Created April 1, 2022 16:48
binance desktop app updater
TEMP_DEB="$(mktemp)" &&
wget -O "$TEMP_DEB" 'https://ftp.binance.com/electron-desktop/linux/production/binance-amd64-linux.deb' &&
sudo dpkg -i "$TEMP_DEB"
rm -f "$TEMP_DEB"
@tatarysh
tatarysh / gist:1dddf7a4237b2def452bc0320bebbdd0
Created December 28, 2018 13:13
Create mysql database and user in bash script
#!/bin/bash
#
# Script to create MySQL db + user
#
# @author Raj KB <magepsycho@gmail.com>
# @website http://www.magepsycho.com
# @version 0.1.0
################################################################################