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.
| #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" |
| # 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 |
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.