This file contains hidden or 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
| # Kickstart file automatically generated by anaconda. | |
| #version=RHEL6 | |
| install | |
| rootpw --iscrypted [HASH PASSWORD] | |
| text | |
| keyboard us | |
| lang en_US.UTF-8 | |
| selinux --disabled | |
| timezone --utc Asia/Tokyo |
This file contains hidden or 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
| #!/bin/bash | |
| # shell script to create a simple mongodb replica set (tested on osx) | |
| set -e | |
| red=$(tput setaf 1) | |
| green=$(tput setaf 2) | |
| yellow=$(tput setaf 3) | |
| default=$(tput sgr0) |
This file contains hidden or 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
| # -*- coding: utf-8 -*- | |
| """ | |
| httpbin.utils | |
| ~~~~~~~~~~~~~~~ | |
| Utility functions. | |
| """ | |
| import random |
This file contains hidden or 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
| #################### | |
| # Build base image | |
| #################### | |
| FROM golang:1.9.4-alpine3.7 as build-base | |
| LABEL maintainer yangbinnnn@gmail.com | |
| ENV FALCON_DIR=/root/monitor CONFIG_DIR=/config | |
| ENV PROJ_PATH=${GOPATH}/src/github.com/open-falcon/falcon-plus | |
| RUN apk add --no-cache ca-certificates bash git g++ perl make | |
| COPY . ${PROJ_PATH} |
This file contains hidden or 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
| call plug#begin('~/.config/nvim/plugged') | |
| Plug 'ervandew/supertab' | |
| Plug 'fatih/vim-go' | |
| Plug 'roxma/SimpleAutoComplPop' | |
| Plug 'Raimondi/delimitMate' | |
| Plug 'scrooloose/nerdtree' | |
| Plug 'kien/ctrlp.vim' | |
| Plug 'majutsushi/tagbar' | |
| Plug 'easymotion/vim-easymotion' |