"editor.fontFamily": "'Fira Code'", "editor.fontLigatures": true,
choco install firacode
#!/bin/sh | |
command -v rnotes >/dev/null 2>&1 && CUR_VERSION="$(rnotes --version)" || CUR_VERSION="v0.0.0" | |
VERSION_TO_INSTALL=${1:-latest} | |
RELEASE_URL="https://api.github.com/repos/fazzani/az-release-notes/releases/tags/$VERSION_TO_INSTALL" | |
[ $VERSION_TO_INSTALL = "latest" ] && RELEASE_URL="https://api.github.com/repos/fazzani/az-release-notes/releases/latest" | |
NEW_VERSION="$(curl -s $RELEASE_URL | jq -r '.tag_name')" | |
echo "Current Version: $CUR_VERSION => New Version: $NEW_VERSION" | |
if [ "$NEW_VERSION" != "$CUR_VERSION" ]; then |
// This goes in cypress/plugins/index.js | |
const AzureAdSingleSignOn = require('./azure-ad-sso/plugin').AzureAdSingleSignOn | |
module.exports = (on, config) => { | |
on('task', {AzureAdSingleSignOn:AzureAdSingleSignOn}) | |
} |
#!/bin/bash | |
####################################################################################################################################### | |
# References: | |
# https://devopsheaven.com/postgresql/pg_dump/databases/docker/backup/2017/09/10/backup-postgresql-database-using-docker.html | |
# using: | |
# curl -LJO https://gist.githubusercontent.com/Fazzani/413e4e5e5f1e6eeb91482e2f53e6c70e/raw/82cc5e81c07204912e6c79e647cd58850bcce27b/backup_restore_docker_postgres.sh | |
# chmod +x backup_restore_docker_postgres.sh | |
# ./backup_restore_docker_postgres.sh -b playlist # backup database playlist | |
# ./backup_restore_docker_postgres.sh -r dump_playlist.sql # restore database dump_playlist.sql |
docker-compose start | |
docker-compose pause | |
docker-compose restart [options] [SERVICE...] | |
docker-compose stop [options] [SERVICE...] | |
Options: | |
-t, --timeout TIMEOUT Specify a shutdown timeout in seconds (default: 10). | |
docker-compose unpause |
[user] | |
name = Pavan Kumar Sunkara | |
email = [email protected] | |
username = pksunkara | |
[init] | |
defaultBranch = master | |
[core] | |
editor = nvim | |
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
pager = delta |