See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| #!/bin/bash | |
| mkdir postgres | |
| cd postgres | |
| docker volume create --driver local --name=pgvolume | |
| docker volume create --driver local --name=pga4volume | |
| docker network create --driver bridge pgnetwork |
https://github.com/spotify/docker-cassandra
This describes the method to obtain and run the spotify/cassandra single-node instance on ubuntu 16.04 where docker is already installed.
sudo docker pull spotify/cassandra
| client-1.example.com:0 | |
| client-2.example.com:429496729 | |
| client-3.example.com:858993458 | |
| client-4.example.com:1288490187 | |
| client-5.example.com:1717986916 |
Influxdb doesn't recognize databases after restart. This is the test case. Yo need a working docker installation to run it.
cd into the directory where you cloned this gist.
run ./start-and-fill-influx.sh
run ./restart-and-query-influx.sh
The data from step 2 seems not to be there.
# Key considerations for algorithm "RSA" ≥ 2048-bit
openssl genrsa -out server.key 2048
# Key considerations for algorithm "ECDSA" ≥ secp384r1
# List ECDSA the supported curves (openssl ecparam -list_curves)| import android.content.Context; | |
| import android.content.res.TypedArray; | |
| import android.graphics.Canvas; | |
| import android.graphics.Rect; | |
| import android.graphics.drawable.Drawable; | |
| import android.support.v7.widget.LinearLayoutManager; | |
| import android.support.v7.widget.RecyclerView; | |
| import android.util.AttributeSet; | |
| import android.view.View; |
| import bisect | |
| import itertools | |
| import operator | |
| class _BNode(object): | |
| __slots__ = ["tree", "contents", "children"] | |
| def __init__(self, tree, contents=None, children=None): | |
| self.tree = tree |