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
# Requires keychain-environment-variables.sh | |
# | |
# AWS configuration example, after doing: | |
# $ set-keychain-environment-variable AWS_ACCESS_KEY_ID | |
# provide: "AKIAYOURACCESSKEY" | |
# $ set-keychain-environment-variable AWS_SECRET_ACCESS_KEY | |
# provide: "j1/yoursupersecret/password" | |
# AWS_ACCESS_KEY_ID=$(keychain-environment-variable AWS_ACCESS_KEY_ID); | |
# AWS_SECRET_ACCESS_KEY=$(keychain-environment-variable AWS_SECRET_ACCESS_KEY); |
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
git config --global alias.tree "log --graph --pretty=format:'%Cgreen%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold cyan)<%an>%Creset' --abbrev-commit --date=relative" |
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
#Colors | |
NO_COLOR="\[\e[0m\]" | |
BLACK="\[\033[0;30m\]" | |
RED="\[\033[0;31m\]" | |
GREEN="\[\033[0;32m\]" | |
YELLOW="\[\033[0;33m\]" | |
BLUE="\[\033[0;34m\]" | |
MAGENTA="\[\033[0;35m\]" | |
CYAN="\[\033[0;36m\]" | |
WHITE="\[\033[0;37m\]" |
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
Informações sobre o evento: | |
=========================== | |
Descrição | |
--------- | |
O FrontInRio surgiu em 2011 a partir da vontade de que houvesse mais eventos de FrontEnd no Brasil. Tudo veio a partir de conversas com profissionais que trabalham na mesma área e gostariam de ver os assuntos mais interessantes sendo apresentados e debatidos diante de uma quantidade de profissionais que fosse maior do que uma simples mesa de bar. A comunidade FrontEnd estava muito fragmentada, no Rio de Janeiro e no Brasil, as pessoas não se conheciam e essa necessidade de aproximação se tornava cada vez mais urgente. Outra ideia do evento era que ele não trouxesse somente um Hype das tecnologias atuais, mas que tivéssemos apresentações Mind Blowing, cheias de senso crítico para trazer assuntos para debate e que as pessoas saíssem dali com ideias inovadoras. | |
A expectativa para a próxima edição não é muito diferente. Temas centrados em Open Web e Open Data, dois assuntos diferentes com nomes próximos que tem um ótimo potencial de ex |
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 | |
set -eux | |
exec heroku "$@" --app "`basename $PWD`-staging" | |
#!/bin/bash | |
set -eux | |
exec heroku "$@" --app "`basename $PWD`-production" |