Binding | Action |
---|---|
<localleader>cd | Disconnect from the current nREPL server. |
<localleader>cf | Connect to a server using the port found in any of the files specified by clojure.nrepl/connection.port-files . |
<localleader>sc | Clone the current nREPL session. |
<localleader>sf | Create a fresh session from scratch. |
<localleader>sq | Close the current session. |
<localleader>sQ | Close all sessions. |
\sl | List all sessions. |
I hereby claim:
- I am hamann on github.
- I am hamann79 (https://keybase.io/hamann79) on keybase.
- I have a public key ASCwGT3Fud2q6-6t_ARcvLuxUal2H0qdnuaRtUDSO0gzLwo
To claim this, I am signing this object:
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
deb http://archive.ubuntu.com/ubuntu bionic main restricted | |
deb http://archive.ubuntu.com/ubuntu bionic-updates main restricted | |
deb http://archive.ubuntu.com/ubuntu bionic universe | |
deb http://archive.ubuntu.com/ubuntu bionic-updates universe | |
deb http://archive.ubuntu.com/ubuntu bionic multiverse | |
deb http://archive.ubuntu.com/ubuntu bionic-updates multiverse |
I hereby claim:
- I am hamann on github.
- I am hamann (https://keybase.io/hamann) on keybase.
- I have a public key whose fingerprint is EAF1 7FF5 B518 E9B9 4F73 01F0 053D 6D5D A372 2767
To claim this, I am signing this object:
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
sudo apt-get install build-essential ca-certificates | |
sudo apt-get install libgmp10 libgmp-dev libffi-dev zlib1g-dev libtinfo-dev | |
# ghc 7.10.2 | |
cd /var/tmp | |
wget http://downloads.haskell.org/~ghc/7.10.2/ghc-7.10.2-x86_64-unknown-linux-deb7.tar.xz | |
tar xvJf ghc-7.10.2-x86_64-unknown-linux-deb7.tar.xz | |
cd ghc-7.10.2 | |
./configure | |
sudo make install |
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
defmodule Db24.AWS.S3 do | |
require Logger | |
alias Db24.AWS.S3.MultipartUploadState, as: Mp | |
@multipart_min_chunk_size 5242880 # 5MB | |
defmodule MultipartUploadState do | |
defstruct upload_id: nil, | |
count: 1, | |
error: nil, |
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
#compdef mix | |
#autoload | |
# Elixir mix zsh completion | |
local -a _1st_arguments | |
_1st_arguments=( | |
'archive:Archive this project into a .ez file' | |
'archive.build:Archive this project into a .ez file' | |
'archive.install:Install an archive locally' |