Move to window with
/win i
where i
is the window number
Now to show the window
/win 1 show
To move between windows
;; global variables | |
(setq | |
global-font-lock-mode 1 | |
inhibit-startup-screen t | |
create-lockfiles nil | |
make-backup-files nil | |
column-number-mode t | |
scroll-error-top-bottom t | |
show-paren-delay 0.5 | |
use-package-always-ensure t |
I hereby claim:
To claim this, I am signing this object:
docker run -it --rm -v /var/run/docker.sock:/var/run/docker.sock -v $PWD:/data eclipse/che start |
docker ps | less -XS |
#!/bin/bash | |
stream_name=$1 | |
while : | |
do | |
shardIds=$(aws kinesis describe-stream --stream-name $stream_name | jq '.StreamDescription.Shards[].ShardId' | tr -d '"') | |
for shard in $shardIds;do | |
iterator=$(aws kinesis get-shard-iterator --stream-name $stream_name --shard-id $shard --shard-iterator-type LATEST | jq '.ShardIterator' | tr -d '"') |
'use strict'; | |
var aws = require('aws-sdk'); | |
var https = require('https'); | |
var ses = new aws.SES(); | |
var processingContext = { | |
noOfSuccesses: 0, | |
failures: [], | |
endpoints: [ | |
{url: "https://www.test.com", statusCode: 200}, | |
{url: "https://www.test2.com", statusCode: 200} |
package chapter2 | |
object MyMain{ | |
def partial1[A,B,C](a:A, f: (A,B)=> C):B=>C={ | |
(b:B)=> f(a,b) | |
} | |
def curry[A,B,C](f: (A,B)=> C): A=> (B=>C)={ | |
(a:A) => (b:B)=> f(a,b) |
plugins=(git, autojump, fasd) | |
export EDITOR='git' | |
SHELL=zsh | |
# User configuration | |
export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games$ | |
export PATH="$HOME/.rbenv/bin:$PATH" | |
export PATH="$HOME/Downloads/android-studio/bin:$PATH" |