- http://stackoverflow.com/questions/804115 (
rebase
vsmerge
). - https://www.atlassian.com/git/tutorials/merging-vs-rebasing (
rebase
vsmerge
) - https://www.atlassian.com/git/tutorials/undoing-changes/ (
reset
vscheckout
vsrevert
) - http://stackoverflow.com/questions/2221658 (HEAD^ vs HEAD~) (See
git rev-parse
) - http://stackoverflow.com/questions/292357 (
pull
vsfetch
) - http://stackoverflow.com/questions/39651 (
stash
vsbranch
) - http://stackoverflow.com/questions/8358035 (
reset
vscheckout
vsrevert
) - http://stackoverflow.com/questions/5798930 (
git reset
vsgit rm --cached
)
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
[defaults] | |
action_warnings=False | |
ansible_managed = This file is managed by Ansible, all changes will be lost | |
inventory = ~/inventory.yml | |
log_path = ~/ansible.log | |
remote_user = root | |
nocows = True | |
retry_files_enabled = False | |
timeout = 60 | |
vault_identity_list="default@~/.vault" |
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 | |
#shellcheck shell=bash | |
# Requires unzip and xmlstarlet | |
# Assumes that you are extracting metadata as well, though you could extract | |
# the opf from the epub at run time but I don't know how to do this for other | |
# formats | |
# I also only get the first author because I didn't want to deal with adding |
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
{"lastUpload":"2022-02-04T16:54:02.855Z","extensionVersion":"v3.4.3"} |
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
#shellcheck shell=bash source=/dev/null | |
# This script is sourced in order to setup python3 with pyenv/virtualenvwrapper with the | |
# pyenv-virtualenvwrapper plugin. The pyenv-default-packages plugin is also installed | |
# to install ansible and dependencies. This is for a service account to be used by admins | |
# who aren't experienced with python ecosystem it must also not modify or use the | |
# system python environment. | |
# function: _install_os_deps: installs operating system package dependencies | |
function _install_os_deps(){ |