sudo apt install zsh -y
chsh -s $(which zsh)
sudo apt install wget git
sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
sudo apt install exa
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
package main | |
import ( | |
"context" | |
"flag" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"os" | |
"path/filepath" |
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
package subcommands | |
import ( | |
"flag" | |
"fmt" | |
"os" | |
) | |
func main() { | |
uploadCmd := flag.NewFlagSet("upload", flag.ExitOnError) |
- Structure and Interpretation of Computers
- Four Thousand Weeks
OlderNewer