Moved to https://page.brick.do/eMwzl6m1ynWJ
View README.md
Links com infos sobre o covid
Mapas, Contadores
- https://covid.saude.gov.br/
- http://ti.saude.rs.gov.br/covid19/
- https://bing.com/covid
- https://covid19.who.int/
Dicas de trabalho de casa
View clojure-beginner.md
Introductory resources
- High level overview https://yogthos.github.io/ClojureDistilled.html
- An Animated Introduction to Clojure https://markm208.github.io/cljbook/
- Interactive tutorial in a browser https://tryclojure.org/
- Interactive exercises http://clojurescriptkoans.com/
- More interactive exercises https://4clojure.oxal.org/
- Lambda Island tutorials https://lambdaisland.com/
- Functional Programming with Clojure resources https://practicalli.github.io/
- Getting started guide https://grison.me/2020/04/04/starting-with-clojure/
View openhackrs-principios.txt
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
/// OpenHackRS - Open Hack Rio Grande do Sul | |
/// https://www.meetup.com/OpenHackRS/ | |
TL;DR; Queremos fazer eventos para codar. Reunir pessoas interessadas em | |
desenvolvimento de software, interessadas em aprender novas tecnologias. | |
Quer participar de eventos? Se inscreva no https://www.meetup.com/OpenHackRS/. | |
Quer ajudar a organizar eventos? Procura pelo dwildt no Telegram. | |
/// Qual a ideia? |
View .editorconfig
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
root = true | |
[*.{groovy,gradle}] | |
end_of_line = lf | |
insert_final_newline = true | |
charset = utf-8 | |
indent_style = space | |
indent_size = 4 | |
[Makefile] |
View clean_code.md
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
General rules
- Follow standard conventions.
- Keep it simple stupid. Simpler is always better. Reduce complexity as much as possible.
- Boy scout rule. Leave the campground cleaner than you found it.
- Always find root cause. Always look for the root cause of a problem.
Design rules
View remove-docker-containers.md
May 8, 2018
I wrote this four years ago, so instead use this command:
$ docker rmi $(docker images -q -f dangling=true)
View install.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
HEROKU_CLIENT_URL="http://assets.heroku.com.s3.amazonaws.com/heroku-client/heroku-client.tgz" | |
echo "This script requires superuser access to install software." | |
echo "You will be prompted for your password." | |
su -c "sh <<SCRIPT | |
# download and extract the client tarball | |
rm -rf /usr/local/heroku | |
mkdir -p /usr/local/heroku |