about summary refs log tree commit diff
path: root/users/riking/dotfiles/.mybashrc
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@tvl.su>2023-10-08T16·31+0300
committerclbot <clbot@tvl.fyi>2023-10-08T18·18+0000
commit5f32f7610abb116e68d6d3fbb57fe528100ec58b (patch)
treec80b2129ab60398ce33e5465e01fe7f5b76707bf /users/riking/dotfiles/.mybashrc
parent8b2884de095b70fa680f4c094b80ccd39c9df986 (diff)
chore(users): remove inactive users r/6732
Change-Id: I3cfb425e4dac0a467e3917df996e9800a3ebe875
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9576
Reviewed-by: isomer <isomer@tvl.fyi>
Tested-by: BuildkiteCI
Autosubmit: tazjin <tazjin@tvl.su>
Diffstat (limited to 'users/riking/dotfiles/.mybashrc')
-rw-r--r--users/riking/dotfiles/.mybashrc53
1 files changed, 0 insertions, 53 deletions
diff --git a/users/riking/dotfiles/.mybashrc b/users/riking/dotfiles/.mybashrc
deleted file mode 100644
index c5ebc34a1f4f..000000000000
--- a/users/riking/dotfiles/.mybashrc
+++ /dev/null
@@ -1,53 +0,0 @@
-
-# BEGIN: __USER_FUNCTIONS__
-function gh-clone() {
-	if [[ "x$2" == "x" ]]; then
-		IFS='/' read -ra PARTS <<< "$1"
-		user="${PARTS[0]}"
-		repo="${PARTS[1]}"
-	else
-		user="$1"
-		repo="$2"
-	fi
-	if [[ -d ~/go/src/github.com/"$user"/"$repo" ]]; then
-		cd ~/go/src/github.com/"${user}"/"${repo}"
-		return 0
-	fi
-	mkdir -p ~/go/src/github.com/"${user}"
-	cd ~/go/src/github.com/"${user}"
-	git clone git@github.com:"${user}"/"${repo}".git
-	cd ~/go/src/github.com/"${user}"/"${repo}"
-}
-
-function download() {
-	cd "${HOME}/Downloads"
-	wget "$@"
-}
-
-# todo: only one password pls
-function prodaccess() {
-	(ssh-add -L | grep -q 'ZgEu6S3SLatYN') || ssh-add "$HOME"/.ssh/id_ed25519
-	(ssh-add -L | grep -q 'Gfh2S3kUwZ8A6') || ssh-add "$HOME"/.ssh/id_rsa.discourse
-	echo "signing test" | gpg --clearsign > /dev/null
-}
-
-function reset-audio() {
-	pulseaudio -k && sudo alsa force-reload
-}
-
-function tvl-push() {
-	git push origin HEAD:refs/for/canon
-}
-
-# END: __USER_FUNCTIONS__
-
-# BEGIN: __USER_ENV__
-GOPATH=$HOME/go
-CDPATH=$HOME/go/src
-export GPG_TTY="$(tty)"
-
-export PATH="/usr/local/go/bin:$HOME/go/bin:$HOME/.rbenv/bin:$PATH"
-
-eval "$(rbenv init -)"
-# END: __USER_ENV__
-