Skip to content

Instantly share code, notes, and snippets.

View richardsonlima's full-sized avatar
:octocat:
Focusing

Richardson Lima richardsonlima

:octocat:
Focusing
View GitHub Profile
plugins=(
git
colored-man-pages
zsh-autosuggestions
zsh-syntax-highlighting
docker
aws
battery
archlinux
bgnotify
https://cdn.rawgit.com/afonsof/jenkins-material-theme/gh-pages/dist/material-amber.css
https://kubeyaml.com/
1. Creating an EBS volume on AWS using cli
aws ec2 --profile ti create-volume --size 80 --region us-east-1 --availability-zone us-east-1a
@richardsonlima
richardsonlima / creating-ebs-volume.txt
Last active September 17, 2018 21:18
ElasticSearch on Kubernetes
1. Creating an EBS volume on AWS using cli
aws ec2 --profile ti create-volume --size 80 --region us-east-1 --availability-zone us-east-1a
https://github.com/maxyermayank/docker-compose-elasticsearch-kibana
Requirements
Docker 18.05
Docker-compose 1.21
Start Stack in Daemon Mode
docker-compose up -d
Check status of docker-compose cluster
docker-compose ps -a
@richardsonlima
richardsonlima / expresso-mailserver.sh
Created September 11, 2018 04:15
expresso-mailserver-simulation
#!/bin/bash
WORKSPACE=$(pwd)
docker pull expressolivre/database
docker pull expressolivre/mailboxes
docker pull expressolivre/ldap
docker pull expressolivre/frontend-des
docker pull expressolivre/frontend-des-php7
docker pull memcached
@richardsonlima
richardsonlima / English-Class-with-Lyrics.md
Created September 4, 2018 20:53
English Class with Lyrics
@richardsonlima
richardsonlima / install-hugo.sh
Last active September 2, 2018 19:37
Hugo Install
brew install hugo
hugo version
hugo new site quickstart
cd quickstart;\
git init;\
git submodule add https://github.com/budparr/gohugo-theme-ananke.git themes/ananke;\
# Edit your config.toml configuration file
# and add the Ananke theme.
echo 'theme = "ananke"' >> config.toml
hugo new posts/my-first-post.md
@richardsonlima
richardsonlima / export-aws-config-to-terraform.txt
Created August 30, 2018 19:46
export aws config to terraform
https://github.com/dtan4/terraforming