Mostly geared towards GNU make
I've used ->| to indicate a tab character, as it's clearer to read than ⇥
- Set a target, its dependencies and the commands to execute in order
target: [dependencies]
->|
| #!/bin/bash | |
| # | |
| # Generates client and server certificates used to enable HTTPS | |
| # remote authentication to a Docker daemon. | |
| # | |
| # See http://docs.docker.com/articles/https/ | |
| # | |
| # To start the Docker Daemon: | |
| # | |
| # sudo docker -d \ |
| import nl.komponents.kovenant.* | |
| import nl.komponents.kovenant.jvm.asDispatcher | |
| import java.util.concurrent.CompletableFuture | |
| import java.util.concurrent.ForkJoinPool | |
| fun main(args: Array<String>) { | |
| Kovenant.context { | |
| // configure Kovenant with the same pool | |
| // CompletableFutures use. By default it's | |
| // the common pool. |
| { | |
| "env": { | |
| "browser": true, | |
| "node": true, | |
| "es6": true | |
| }, | |
| "plugins": ["react"], | |
| "ecmaFeatures": { |
Prereq:
apt-get install zsh
apt-get install git-coreGetting zsh to work in ubuntu is weird, since sh does not understand the source command. So, you do this to install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
Prereq:
apt-get install zsh
apt-get install git-coreGetting zsh to work in ubuntu is weird, since sh does not understand the source command. So, you do this to install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
| package slicks.docs.dao | |
| import scala.slick.driver.PostgresDriver.simple._ | |
| import scala.slick.driver._ | |
| trait Profile { | |
| val profile: JdbcProfile | |
| } |
Prereq:
apt-get install zsh
apt-get install git-coreGetting zsh to work in ubuntu is weird, since sh does not understand the source command. So, you do this to install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
| # Aliases for git shorty | |
| alias gco="git checkout" | |
| alias gaa="git add -A ." | |
| alias gcm="git commit -m" | |
| alias gst="git status" | |
| alias glo="git log --graph" | |
| alias gpl="git pull" | |
| alias gps="git push" | |
| alias gbr="git branch" | |
| alias gft="git fetch" |