Hadoop
Pre-Requisites:
$ ssh-keygen -t rsa -P '' -f ~/.ssh/id_rsa
$ cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
$ chmod 0600 ~/.ssh/authorized_keys
Edit two files:
| #!/usr/bin/env bash | |
| # https://developers.supportbee.com/blog/setting-up-cucumber-to-run-with-Chrome-on-Linux/ | |
| # https://gist.github.com/curtismcmullan/7be1a8c1c841a9d8db2c | |
| # https://stackoverflow.com/questions/10792403/how-do-i-get-chrome-working-with-selenium-using-php-webdriver | |
| # https://stackoverflow.com/questions/26133486/how-to-specify-binary-path-for-remote-chromedriver-in-codeception | |
| # https://stackoverflow.com/questions/40262682/how-to-run-selenium-3-x-with-chrome-driver-through-terminal | |
| # https://askubuntu.com/questions/760085/how-do-you-install-google-chrome-on-ubuntu-16-04 | |
| # Versions | |
| CHROME_DRIVER_VERSION=`curl -sS https://chromedriver.storage.googleapis.com/LATEST_RELEASE` |
| [I'm an inline-style link](https://www.somewebsite.com) | |
| [I'm an inline-style link with title](https://www.somewebsite.com "somewebsite's Homepage") | |
| [I'm a reference-style link][Arbitrary case-insensitive reference text] | |
| [I'm a relative reference to a repository file](../blob/master/LICENSE) | |
| [You can use numbers for reference-style link definitions][1] |
Hadoop
Pre-Requisites:
$ ssh-keygen -t rsa -P '' -f ~/.ssh/id_rsa
$ cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
$ chmod 0600 ~/.ssh/authorized_keys
Edit two files:
Read this first: http://akrl.sdf.org/gccemacs.html
For that you need to compile gcc (duh). I edited Homebrew's gcc formula:
| (require 'svg) | |
| ;; Rounded boxes using SVG: | |
| ;; This could be made into a function but size of text needs to be computed | |
| (defun tag (text &optional foreground background font-size) | |
| (let* ((font-size (or font-size 12)) | |
| ;; The char-width ratio depends on the font family | |
| (char-width (* font-size 0.58)) | |
| (char-height (+ font-size 1)) |
These resources (articles, books, and videos) are useful when you're starting to learn the language, or when you're learning a specific part of the language. This an opinionated list, no doubt. I've compiled this list from writing and teaching Clojure over the last 10 years.