View example.go
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
func textualUtf8Resolver(textual []byte) ([]byte, error) { | |
var t map[string]interface{} | |
_ = json.Unmarshal(textual, &t) | |
response, err := json.Marshal(t) | |
if err != nil { | |
return nil, err | |
} | |
View Gitlab docker-machine parallel pull
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
machines=($(docker-machine ls | sed '1d' | awk '{print $1}')) | |
for i in "${machines[@]}" | |
do | |
: | |
docker-machine ssh $i sudo docker login -u XXXXXXX -p XXXXXXXXXXXXXXX [REGISTRY]; | |
docker-machine ssh $i sudo docker pull [REGISTRY]/[IMAGE]:latest & | |
done |
View sep.sh
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 | |
# relaunch with sudo if we aren't root | |
if [[ $EUID -ne 0 ]]; then | |
echo "$0: relaunching as sudo $0 $1 $USER" | |
sudo "$0" $1 $USER | |
exit $? | |
fi | |
real_user=$USER |
View entry_point.sh
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/sh | |
PARAMETERS=`aws ssm get-parameters-by-path --path ${1} --with-decryption` | |
for row in $(echo ${PARAMETERS} | jq -c '.Parameters' | jq -c '.[]'); do | |
KEY=$(basename $(echo ${row} | jq -c '.Name')) | |
VALUE=$(echo ${row} | jq -c '.Value') | |
KEY=`echo ${KEY} | tr -d '"'` | |
VALUE=`echo ${VALUE} | tr -d '"'` |
View Remover arquivos de commits antigos
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
git filter-branch --index-filter 'git rm --cached --ignore-unmatch blah.jar' -f --tag-name-filter cat -- --all | |
git filter-branch --index-filter 'git rm -r --cached --ignore-unmatch folder/' -f --tag-name-filter cat -- --all |
View worker_stress.rb
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
require 'mechanize' | |
require 'open-uri' | |
require 'rubygems' | |
require 'work_queue' | |
wq = WorkQueue.new 1000 | |
(1..5000).each do |number| | |
#beginning = Time.now | |
wq.enqueue_b do |
View smtp.rb
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
#!/usr/bin/env ruby | |
require 'net/smtp' | |
unless (2..3).include? ARGV.length | |
puts 'Usage: mail.rb SUBJECT TO [FROM]' | |
exit 1 | |
end | |
subject, to, from_ = ARGV |
View .zpreztorc
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
# | |
# Sets Prezto options. | |
# | |
# Authors: | |
# Sorin Ionescu <sorin.ionescu@gmail.com> | |
# | |
# | |
# General | |
# |
View humanize.rb
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
def humanize secs | |
[[60, :seconds], [60, :minutes], [24, :hours], [1000, :days]].map{ |count, name| | |
if secs > 0 | |
secs, n = secs.divmod(count) | |
"#{n.to_i} #{name}" | |
end | |
}.compact.reverse.join(' ') | |
end | |
p humanize 1234 |
View bash_profile
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
### Start Piperita Theme ### | |
# Theme by Jacob Tomlinson | |
# https://github.com/killfall/terminal-piperita | |
# Aliases to make ls easier to use in different modes, taken from Red Hat EL 6 | |
alias ls='ls -GFh' | |
alias ll="ls -l" | |
alias lo="ls -o" | |
alias lh="ls -lh" | |
alias la="ls -la" |
NewerOlder