Skip to content

Instantly share code, notes, and snippets.

View aalvarado's full-sized avatar
😎

Adan Alvarado aalvarado

😎
View GitHub Profile
@aalvarado
aalvarado / main.rs
Created February 23, 2019 19:17
Naive circular queue in Rust
use std::fmt;
#[derive(Debug)]
struct CircularQueue<T> {
max: usize,
list: Vec<T>,
}
impl <T> CircularQueue<T> where T: std::string::ToString {
pub fn new(max: usize) -> CircularQueue<T> {
@aalvarado
aalvarado / keybase.md
Created November 30, 2021 20:59
keybase.md

Keybase proof

I hereby claim:

  • I am aalvarado on github.
  • I am adantj (https://keybase.io/adantj) on keybase.
  • I have a public key ASDVzoFdsJZ2XrWVJCP6piQo_J9C7xCAufnOoltiXhkpawo

To claim this, I am signing this object:

@aalvarado
aalvarado / tmux.conf
Last active June 5, 2023 22:26
tmux.conf
set -g update-environment -r
# set-environment -g TMUX_PLUGIN_MANAGER_PATH '~/.tmux/plugins/'
set-environment -g 'SSH_AUTH_SOCK' ~/.ssh/ssh_auth_sock
#set -g default-terminal "tmux-256color"
# set -g default-terminal "screen-256color"
set -ga terminal-overrides ",xterm-256color:Tc"
set -g prefix M-p
# split panes using | and -
bind | split-window -h -c "#{pane_current_path}"
@aalvarado
aalvarado / aliases.sh
Last active June 5, 2023 23:49
aliases
alias ack='rg --color always --no-block-buffered -n -i'
alias acs='apt-cache search'
alias bd='. bd -s'
alias gb='git branch'
alias gca='git add . && git commit --amend -C HEAD && git push -f'
alias gd='git diff'
alias gdc='git diff --cached'
alias gl=" git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
alias gp='git push -u'
alias gpu='git push -u'