This file contains 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
(define-key dired-mode-map (kbd "<M-return>") 'shell-instead-dired) | |
(define-key dired-mode-map (kbd «K») 'dired-do-kill-lines) | |
(define-key dired-mode-map (kbd «k») 'dired-previous-line) | |
(define-key dired-mode-map (kbd «J») 'dired-goto-file) | |
(define-key dired-mode-map (kbd «j») 'dired-next-line) | |
(define-key dired-mode-map (kbd «M-p») 'ace-window) | |
(define-key dired-mode-map (kbd «M-q») 'ace-window) | |
(define-key dired-mode-map (kbd "/") 'helm-occur) | |
;; в любом режиме Alt+hjkl ведут себя как обычный vim |
This file contains 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
FROM node:latest | |
MAINTAINER Kamil Karczmarczyk <[email protected]> | |
# Global install yarn package manager | |
RUN npm set progress=false && \ | |
npm install -g --progress=false yarn | |
WORKDIR /workspace |
This file contains 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
if (gradle.startParameter.continuous) { | |
run { | |
flattenClassloaders = true | |
} | |
} |
This file contains 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
FROM gliderlabs/alpine:3.3 | |
ENTRYPOINT ["/bin/registrator"] | |
COPY . /go/src/github.com/gliderlabs/registrator | |
RUN apk-install -t build-deps build-base go git mercurial \ | |
&& cd /go/src/github.com/gliderlabs/registrator \ | |
&& export GOPATH=/go \ | |
&& go get \ | |
&& go build -ldflags "-X main.Version=$(cat VERSION)" -o /bin/registrator \ | |
&& rm -rf /go \ |
This file contains 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
FROM ubuntu:14.04 | |
RUN apt-get update -y && \ | |
apt-get install -y curl postgresql postgresql-client && \ | |
rm -rf /var/lib/apt/lists/* | |
CMD bash |
This file contains 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
tyrell:~▻ cat Library/Local/bin/ber1docker | |
#!/bin/bash | |
DOCKER_REMOTE_HOST="ber1.local" | |
DOCKER_SOCK="$TMPDIR/docker.sock" | |
export DOCKER_HOST="unix://$DOCKER_SOCK" | |
rm $DOCKER_SOCK | |
socat UNIX-LISTEN:$DOCKER_SOCK,reuseaddr,fork \ | |
EXEC:"ssh root@$DOCKER_REMOTE_HOST 'socat STDIO UNIX-CONNECT:/var/run/docker.sock'" & |
This file contains 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
model() { | |
let userPromise = this.store.findAll(‘user’); | |
userPromise.catch((error) => { | |
// transition to another route and show some error notification saying your team is doing their best to fix the problem | |
}); | |
return userPromise; | |
} |
This file contains 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
docker volume create nexus-data | |
docker service create -p 8081:8081 --name nexus --mount type=volume,src=nexus-data,dst=/nexus-data sonatype/docker-nexus3 | |
docker service update --env-add JAVA_MAX_MEM=768m nexus |
This file contains 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
@EqualsAndHashCode | |
class Person { | |
String name | |
String surname | |
int age | |
} | |
def test() { | |
given: | |
def person = new Person(name: 'name', surname: 'surname', age: 32) |
This file contains 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
import ratpack.exec.ExecController; | |
import ratpack.exec.Execution; | |
import ratpack.http.client.HttpClient; | |
import ratpack.server.RatpackServer; | |
import ratpack.service.Service; | |
import ratpack.service.StartEvent; | |
import ratpack.service.StopEvent; | |
import java.net.URI; | |
import java.util.Optional; |