Enter this in the search box along with your search terms:
Get all gists from the user santisbon.
user:santisbon
Find all gists with a .yml extension.
extension:yml
Find all gists with HTML files.
language:html
Enter this in the search box along with your search terms:
Get all gists from the user santisbon.
user:santisbon
Find all gists with a .yml extension.
extension:yml
Find all gists with HTML files.
language:html
#!/bin/bash | |
#docker_pg_dump.sh | |
# Thanks to StackOverflow answer by Forth | |
# https://stackoverflow.com/questions/24718706/backup-restore-a-dockerized-postgresql-database/29913462#29913462 | |
HELP_MSG=" | |
docker_pg_dump: | |
Call pg_dump on RUNNING docker container. |
#!/bin/bash | |
# bash generate random alphanumeric string | |
# | |
# bash generate random 32 character alphanumeric string (upper and lowercase) and | |
#NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1) | |
# MAC is "special" and requires LC_CTYPE override & fold gets grumpy LOOK AT COMMENTS FROM OG | |
# NEW_UUID=$(cat /dev/urandom | LC_CTYPE=C tr -dc 'a-zA-Z0-9' | head -c 32) | |
# ALSO got all weird and had fractions / wild characters in selector with LC_CTYP=C |
#!/bin/bash | |
#scriptName.sh | |
# Bash scripting reference manual | |
# - http://www.gnu.org/savannah-checkouts/gnu/bash/manual/bash.html | |
# Bash script set options | |
# - https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html | |
set -o errexit | |
set -o errtrace |
Particularly useful if you use vim in vscode. This helps the directional keys work while holding them down, instead of just moving 1 place.
Fix found on this ticket and this SO article
$ defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool false # For VS Code
#!/bin/bash | |
echo -e "Powerline glyphs:\n\ | |
Code points Glyphe Description Old code point | |
U+E0A0 \xee\x82\xa0 Version control branch (U+2B60 \xe2\xad\xa0 )\n\ | |
U+E0A1 \xee\x82\xa1 LN (line) symbol (U+2B61 \xe2\xad\xa1 )\n\ | |
U+E0A2 \xee\x82\xa2 Closed padlock (U+2B64 \xe2\xad\xa4 )\n\ | |
U+E0B0 \xee\x82\xb0 Rightwards black arrowhead (U+2B80 \xe2\xae\x80 )\n\ | |
U+E0B1 \xee\x82\xb1 Rightwards arrowhead (U+2B81 \xe2\xae\x81 )\n\ | |
U+E0B2 \xee\x82\xb2 Leftwards black arrowhead (U+2B82 \xe2\xae\x82 )\n\ |
git config --add oh-my-zsh.hide-status 1
git config --add oh-my-zsh.hide-dirty 1
git checkout master # you can avoid this line if you are in master...
git subtree split --prefix dist -b gh-pages # create a local gh-pages branch containing the splitted output folder
git push -f origin gh-pages:gh-pages # force the push of the gh-pages branch to the remote gh-pages branch at origin
git branch -D gh-pages # delete the local gh-pages because you will need it: ref
This error crops up every once in awhile when swapping projects. This stack overflow has a good overview / solution SO Link; the answer with the most votes, not the accepted answer.
Update-Package Microsoft.CodeDom.Providers.DotNetCompilerPlatform -r
Run these commands in an elevated command prompt.
netsh winsock reset
netsh int ip reset
ipconfig /release
ipconfig /renew
ipconfig /flushdns