This file contains 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
[ | |
{ | |
"id": 1, | |
"name": "name-1", | |
"group_id": "com.example.name1", | |
"artifact_id": "name-1", | |
"filename_extension": "jar", | |
"classifier": null, | |
"created_at": "2018-05-17T17:59:17.522Z", | |
"updated_at": "2018-05-17T17:59:17.567Z", |
This file contains 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
# | |
# Joey Customizations | |
# | |
# use vim-like keys for splits and windows | |
bind-key v split-window -h | |
bind-key s split-window -v | |
bind-key h select-pane -L | |
bind-key j select-pane -D | |
bind-key k select-pane -U |
This file contains 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
program programaalterado03; | |
uses crt; | |
const N = 500; | |
type Pessoa = record | |
num_form:integer; | |
salario : real; | |
idade : integer; | |
filhos : integer; | |
casa : char; |
This file contains 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 | |
wget https://gist.githubusercontent.com/joepreludian/abb17de9779cc12b4eff9a5e48211ac6/raw/5f926c816730f35802b5ccdb8946179e7dc86306/docker.repo -P /etc/yum.repos.d/ | |
dnf groupinstall "Development Tools" -y | |
dnf install docker-engine -y | |
echo "* Create a partition /dev/sdc1 with type - linux LVM to continue." | |
read pause | |
cfdisk /dev/sdc; | |
pvcreate /dev/sdc1 | |
vgcreate docker /dev/sdc1 |
This file contains 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 | |
dnf install vim -y; | |
echo "rr-srv-armazempara" > /etc/hostname; | |
sed s/=enforcing/=disabled/g /etc/selinux/config > /etc/selinux/config.tmp; mv -f /etc/selinux/config.tmp /etc/selinux/config; | |
dnf update -y; | |
reboot; |
This file contains 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
{ | |
"storage-driver": "devicemapper", | |
"storage-opts": [ | |
"dm.thinpooldev=docker-thinpool", | |
"dm.use_deferred_removal=true" | |
] | |
} |
This file contains 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
activation { | |
thin_pool_autoextend_threshold=80 | |
thin_pool_autoextend_percent=20 | |
} |
This file contains 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
[dockerrepo] | |
name=Docker Repository | |
baseurl=https://yum.dockerproject.org/repo/main/fedora/$releasever/ | |
enabled=1 | |
gpgcheck=1 | |
gpgkey=https://yum.dockerproject.org/gpg |
This file contains 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
# This is my VCL file for Varnish 4.0.2 & Wordpress 4.0 | |
# | |
# ASSUME The builtin VCL is called afterwards. | |
# | |
# Specify VCL new 4.0 format. | |
vcl 4.0; | |
# Imports | |
import std; |
This file contains 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
# Exclui as regras ativas | |
iptables -t nat -F | |
iptables -t mangle -F | |
iptables -t filter -F | |
### Exclui cadeias customizadas | |
iptables -X | |
### Zera os contadores das cadeias | |
iptables -t nat -Z |