Skip to content

Instantly share code, notes, and snippets.

View adrien-barret's full-sized avatar
:shipit:

Adrien Barret adrien-barret

:shipit:
  • https://artemislab.io/
  • Canada, Quebec, Sherbrooke
  • X @AtemisLab
View GitHub Profile
@johnrlive
johnrlive / .aliases
Last active April 6, 2022 02:30
Basic .vimrc config for DevOps
#V1 test
###### Aliases ######
## TMUX ALIASES ##
alias t="tmux"
alias tl="tmux ls"
alias tk="tmux kill-session -t"
alias tn="tmux new -s"
alias tat="tmux attach-session -t"
## PYTHON ALIASES
alias pip="pip3"
@adrien-barret
adrien-barret / setup_os_x.sh
Created August 2, 2017 21:13 — forked from obahareth/setup_os_x.sh
A script to setup OS X with the apps and formulas I use.
# Install Homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew doctor
# Tap sources we need
brew tap homebrew/dupes
brew tap homebrew/versions
brew tap homebrew/homebrew-php
brew tap caskroom/versions
@brson
brson / gist:9dec4195a88066fa42e6
Last active May 7, 2024 02:34
A Rust Syntax Guide

A Guide to Rust Syntax

A very brief guide to Rust syntax. It assumes you are already familiar with programming concepts.

This was written in 2014. It is not a good reference for Rust today, though the content is still correct.

cheats.rs looks like a good alternative.

Assert macro