Skip to content

Instantly share code, notes, and snippets.

Avatar
What gets harder to catch the faster you run?

Hasham hasham7861

What gets harder to catch the faster you run?
View GitHub Profile
View settings.json
"sync.gist": "0c929b1a6c51015cdc9e0fe2e369ea4c",
"sync.autoDownload": false,
"sync.autoUpload": false,
"sync.forceDownload": false,
"sync.quietSync": false,
"sync.askGistName": false,
"sync.removeExtensions": true,
"sync.syncExtensions": true
View Mariadb locally
** Type the following commands in cli **
Note: you can switch latest with whatever version mariadb you need
> docker pull bitnami/mariadb:latest
> docker run --name mariadb -p 3306:3306 -e ALLOW_EMPTY_PASSWORD=yes bitnami/mariadb:latest
@hasham7861
hasham7861 / .tmux.conf
Last active August 15, 2021 21:07
Useful tmux config for daily workflow
View .tmux.conf
# Create file'.tmux.conf' like this vim ~/.tmux.conf
# Copy the following commands to help you
# To create split windows on horizontal axis, press following `ctrl + b` and then hold `shift + '` or ` " `
#windows manupilation with mouse, the ability to resize and move across split windows
set -g mode-mouse on #For tmux versions < 2.1
#copy and paste commands
bind P paste-buffer
bind-key -t vi-copy 'v' begin-selection