Hey everyone, good to meet you. I'm really grateful for Digital Voices inviting me to give this talk to everyone today.
This file contains hidden or 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
// --- .env | |
// # environment config in your webhost or .env.local file | |
// # Make sure you do not commit your key/password to source control! | |
// # needs to match the service name for the agent (leave as default if unsure) | |
// BSKY_SERVICE="https://bsky.social" | |
// # Needs to match the public host of the service (leave as default if unsure) | |
// BSKY_SERVICE_PUBLIC_URL="https://bsky.app" | |
// # Username and app password, you can generate an app password at https://bsky.app/settings/app-passwords | |
// BSKY_USERNAME="your.bsky.username" |
This file contains hidden or 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
export ZSH="$HOME/.oh-my-zsh" | |
export CLICOLOR=1 | |
export ZSH_THEME="arrow" | |
export CASE_SENSITIVE="true" | |
autoload -Uz compinit && compinit | |
plugins=(gitfast yarn npm node python pip rake scala vscode macos rails ruby docker aws) | |
source $ZSH/oh-my-zsh.sh | |
unset LESS; |