start new:
tmux
start new with session name:
tmux new -s myname
| // Swift 2.2 syntax / API | |
| import UIKit | |
| extension UIBezierPath { | |
| class func arrow(from start: CGPoint, to end: CGPoint, tailWidth: CGFloat, headWidth: CGFloat, headLength: CGFloat) -> Self { | |
| let length = hypot(end.x - start.x, end.y - start.y) | |
| let tailLength = length - headLength |
| // | |
| // RHashManager | |
| // by Richard van Zon (c) Relectus | |
| // | |
| // Public Domain | |
| // | |
| @import <Foundation/CPObject.j> | |
| var sharedHashManager = nil; |
Follow the steps below if you are interested in creating your own custom configurable Couchbase docker image. You will start off with the official Couchbase Enterprise docker image that is available on Docker Hub and use the Couchbase CLI and REST interface to create a custom configurable image.
This approach inspired by the tutorial. We essentially built a custom docker image from the base Coucbase server image that is configured for our development needs!
DockerFile and open it using an editor of your choiceDockerFile.