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
#!/usr/bin/env bash | |
set -Eeuo pipefail | |
source "${HOME}/.secrets.sh" | |
function convert_timestamp_to_date_in_selected_timezone() { | |
local timestamp | |
timestamp="${1}" | |
if [ -z "${timestamp}" ]; then |
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 splitw() { | |
tmux split-window "$*"; | |
} | |
function neww() { | |
tmux new-window "$*"; | |
} |
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
set-option -g default-shell /bin/zsh | |
# @see https://github.com/lucaswerkmeister/home/commit/96b02b00a3dececf2271f73a7188a2c53b4fbc0c | |
set-option -g update-environment[0] GNOME_TERMINAL_SCREEN | |
set-option -g update-environment[1] GNOME_TERMINAL_SERVICE | |
setw -g mode-keys vi | |
setw -g aggressive-resize on | |
set-window-option -g xterm-keys on |
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
#!/usr/bin/env bash | |
set -Eeo pipefail | |
# | |
# ``` | |
# spot-differences-between-directories "$(pwd)/backup" "$(pwd)/ill-fated-directory" | |
# ``` | |
# | |
function spot-differences-between-directories() { | |
local backup_directory |
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
Verifying my Blockstack ID is secured with the address 1DRDyPbrpmZnaiWeCGfFHW2bFh6AKq5aDk https://explorer.blockstack.org/address/1DRDyPbrpmZnaiWeCGfFHW2bFh6AKq5aDk |
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
Verifying my Blockstack ID is secured with the address 1eCtchHX1oAKJHg9VUfvVTUD5HhbbZCzY https://explorer.blockstack.org/address/1eCtchHX1oAKJHg9VUfvVTUD5HhbbZCzY |
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
Verifying that "thierry_marianne.id" is my Blockstack ID. https://onename.com/thierry_marianne |
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
Verifying that "thierrymarianne.id" is my Blockstack ID. https://onename.com/thierrymarianne |
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
Verifying that "gordonfreeman.id" is my Blockstack ID. https://onename.com/gordonfreeman |
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/zsh | |
alias search-history='fc -n -l -10000 | tac | fzf' | |
alias ll='exa -abghl --time modified --sort=modified --git --color=automatic' | |
alias pyg='pygmentize -O style=solarizedlight -f console256 -g' |
NewerOlder