updated 2021-06-23
Version 2105 (Build 14026.20302)
==========================================
I never use the Dock and all it does for me is come in the way when I'm resizing windows or clicking on stuff I can't access using just my keyboard.
Here's a way to hide the Dock so it doesn't get in the way anymore.
Run the following commands in the terminal.
# Hide Dock
defaults write com.apple.dock autohide -bool true && killall Dock
defaults write com.apple.dock autohide-delay -float 1000 && killall Dock
| const wlist = ['table_name', 'table_name_2'] | |
| $('.export_table_select input').each(function () { | |
| const self = $(this) | |
| const type = self.attr('type') | |
| const isCheckAll = self.hasClass('checkall') | |
| if (type === 'checkbox' && !isCheckAll) { | |
| const table = self.val() | |
| const isWhitelist = wlist.includes(table) |
| # Buscar y remplazar string en carpeta actual | |
| find . -type f -exec sed -i 's,//dominio.com,//new.dominio.com,g' {} \; | |
| # Buscar y remplazar string en carpeta especificada | |
| grep -rnw '/var/www/vhosts/' -e 'dominio.com' |
| #!/bin/bash | |
| # VARS | |
| ORIG_DOMAIN="example.com" | |
| ORIG_FOLDER="/var/www/vhosts/example.com/httpdocs" | |
| ORIG_DB_USER="" | |
| ORIG_DB_PASS='' | |
| ORIG_DB_NAME="" | |
| DEST_DOMAIN="beta.example.com" |
| { | |
| "$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
| "console_title_template": "{{if .Segments.Git.RepoName}} {{.Segments.Git.RepoName}} {{else}} {{.Folder}} {{end}}", | |
| "blocks": [ | |
| { | |
| "type": "prompt", | |
| "alignment": "left", | |
| "newline": true, | |
| "segments": [ | |
| { |
| { | |
| "$help": "https://aka.ms/terminal-documentation", | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "actions": [ | |
| { | |
| "command": { | |
| "action": "newTab", | |
| "index": 3 | |
| }, | |
| "keys": "ctrl+4" |