sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh
Upon completion you will have a sane, productive Haskell environment adhering to best practices.
sudo apt-get install libtinfo-dev libghc-zlib-dev libghc-zlib-bindings-dev
| #!/bin/bash | |
| # Minimum TODOs on a per job basis: | |
| # 1. define name, application jar path, main class, queue and log4j-yarn.properties path | |
| # 2. remove properties not applicable to your Spark version (Spark 1.x vs. Spark 2.x) | |
| # 3. tweak num_executors, executor_memory (+ overhead), and backpressure settings | |
| # the two most important settings: | |
| num_executors=6 | |
| executor_memory=3g |
| # Cloning a remote repository (SSH) | |
| git clone <user@server:path/to/repo.git> | |
| e.g. git clone [email protected]:TomyJaya/git-real.git | |
| # Cloning a remote repository (https) | |
| git clone <URL> | |
| e.g. git clone https://github.com/TomyJaya/git-real.git | |
| # Checking the Status of Your Files | |
| git status |