Skip to content

Instantly share code, notes, and snippets.

NODE_EXPORTER_GROUP: node_exporter
NODE_EXPORTER_USER: node_exporter
NODE_EXPORTER_PORT: 9167
NODE_EXPORTER_URL: https://github.com/prometheus/node_exporter/releases/download/v1.8.1/node_exporter-1.8.1.linux-amd64.tar.gz
PROMETHEUS_GROUP: prometheus
PROMETHEUS_USER: prometheus
PROMETHEUS_PORT: 9168
PROMETHEUS_URL: https://github.com/prometheus/prometheus/releases/download/v2.52.0/prometheus-2.52.0.linux-amd64.tar.gz
@prinstonsam
prinstonsam / happy_git_on_osx.md
Created May 31, 2018 07:04 — forked from trey/happy_git_on_osx.md
Creating a Happy Git Environment on OS X

Creating a Happy Git Environment on OS X

Step 1: Install Git

brew install git bash-completion

Configure things:

git config --global user.name "Your Name"

git config --global user.email "you@example.com"

private Map<SectionType, List<Object>> sections = new EnumMap<SectionType, List<Object>>(SectionType.class);
.
.
.
List <Organization> lstOrg = new LingkedList<>();
.
.
Organization org1 ....
@Override
protected Resume doLoad(String uuid) {
return map.get(uuid);
}
@Override
protected void doDelete(String uuid) {
map.remove(uuid);
}