This file contains 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
# Create the file repository configuration: | |
sudo sh -c 'echo "deb https://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' | |
# Import the repository signing key: | |
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - | |
# Update the package lists: | |
sudo apt-get update | |
# Install the latest version of PostgreSQL. |
This file contains 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
function calculate(annualRate) { | |
// annual-rate could be integer 20 (as in 20%) | |
var periods = 12; // months in a year | |
var monthlyRate = ((Math.pow( (1 + (annualRate / 100) ), (30/360) ) - 1) * 100).toFixed(2) | |
return monthlyRate + "%"; | |
} |
This file contains 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
# Run as: ./anonymize_database.sh my-database-production (database name) | |
set -e | |
# check if pganonymize is installed | |
if ! command -v pganonymize &> /dev/null | |
then | |
echo "pganonymize could not be found" | |
exit 1 | |
fi |
This file contains 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
# clone the repo and make sure is updated, then create the log file: | |
gource --start-date "2023-01-01" --output-custom-log homeburgers-website.txt homeburgers-website/ | |
# add a prefix so you can use different projects on the same video | |
sed -i -E -r "s#(.+)\|#\1|/homeburgers-website#" homeburgers-website.txt | |
# remove those extra files created on macOS (the `sed` command before shouldn't need `-E` but in this case was needed): | |
rm *.txt-E | |
# combine all the log files into a sorted combined file |
This file contains 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
ls | xargs -P10 -I{} git -C {} pull |
This file contains 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
#!/bin/bash | |
# converting JPEG images | |
find . -type f -and \( -iname "*.jpg" -o -iname "*.jpeg" \) -exec bash -c ' | |
for result; do | |
webp_path=$(sed '\''s/\.[^.]*$/.webp/'\'' <<< "$result"); | |
if [ ! -f "$webp_path" ]; then | |
cwebp "$result" -o "$webp_path"; | |
fi; | |
done |
This file contains 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
module.exports = { | |
config: { | |
updateChannel: 'stable', | |
fontSize: 13, | |
fontFamily: '"Source Code Pro", Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', | |
fontWeight: 'normal', | |
fontWeightBold: 'bold', | |
lineHeight: 1, | |
letterSpacing: 0, | |
cursorColor: '#d5d5d5', |
This file contains 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
syntax on | |
if has("autocmd") | |
au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal! g`\"" | endif | |
endif |
This file contains 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
alias.lg=log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)%Creset' --abbrev-commit | |
push.default=matching | |
core.pager=diff-so-fancy | less --tabs=4 -RFX | |
color.diff-highlight.oldnormal=red bold | |
color.diff-highlight.oldhighlight=red bold 52 | |
color.diff-highlight.newnormal=green bold | |
color.diff-highlight.newhighlight=green bold 22 | |
color.diff.meta=yellow | |
color.diff.frag=magenta bold | |
color.diff.commit=yellow bold |
This file contains 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
Django Template | |
EditorConfig | |
ESLint | |
Python | |
Sass | |
Sass Lint | |
Spacegray VSCode |
NewerOlder