This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="container"> | |
| <h1>Center an element both Horizontally and Vertically using grid</h1> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set autoindent | |
| set historylog | |
| set linenumbers | |
| set numbercolor lagoon,black | |
| set functioncolor lagoon,black | |
| set titlecolor lagoon,black | |
| set mouse | |
| set regexp | |
| set speller "aspell -x -c" | |
| set tabsize 4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 20 14 1 * * /bin/zsh ~/Documents/CustomScripts/updateNVM.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " Specify a directory for plugins | |
| " - For Neovim: stdpath('data') . '/plugged' | |
| " - Avoid using standard Vim directory names like 'plugin' | |
| call plug#begin('~/.vim/plugged') | |
| " Make sure you use single quotes | |
| " Shorthand notation; fetches https://github.com/junegunn/vim-easy-align | |
| Plug 'junegunn/vim-easy-align' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| port 13000 | |
| unixsocket /var/run/redis/redis-13000.sock | |
| pidfile /var/run/redis/redis-13000.pid | |
| logfile /var/log/redis/redis-13000.log | |
| dbfilename redis_cache.rdb | |
| dir /var/lib/redis13000 | |
| maxmemory 819mb | |
| maxmemory-policy allkeys-lru |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| port 12000 | |
| unixsocket /var/run/redis/redis-12000.sock | |
| pidfile /var/run/redis/redis-12000.pid | |
| logfile /var/log/redis/redis-12000.log | |
| dbfilename redis_socketio.rdb | |
| dir /var/lib/redis12000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| port 11000 | |
| unixsocket /var/run/redis/redis-11000.sock | |
| pidfile /var/run/redis/redis-11000.pid | |
| logfile /var/log/redis/redis-11000.log | |
| dbfilename redis_queue.rdb | |
| dir /var/lib/redis11000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [mysqld] | |
| # GENERAL # | |
| user = mysql | |
| default-storage-engine = InnoDB | |
| socket = /var/lib/mysql/mysql.sock | |
| pid-file = /var/lib/mysql/mysql.pid | |
| # MyISAM # | |
| key-buffer-size = 32M |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # /usr/local/etc/redis13000.conf | |
| # Redis port 13000 configuration for ERPNext | |
| bind 127.0.0.1 ::1 | |
| protected-mode yes | |
| port 13000 | |
| tcp-backlog 511 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # /usr/local/etc/redis12000.conf | |
| # Redis port 12000 configuration for ERPNext | |
| bind 127.0.0.1 ::1 | |
| protected-mode ye | |
| port 12000 | |
| tcp-backlog 511 |