Skip to content

Instantly share code, notes, and snippets.

View GQuirino's full-sized avatar

Guilherme Quirino GQuirino

  • Curitiba, PR - BRA
View GitHub Profile

Install Ruby < 2.4

UBUNTU

Ubuntu 20.04 no longer supports gcc-5 and libssl1.0-dev, if you try to install ruby versions prior to 2.4 you will find compilation problems as it depends on gcc5 and openssl-1.0.

Add to your /etc/apt/sources.list file

deb http://cz.archive.ubuntu.com/ubuntu bionic main universe
deb http://security.ubuntu.com/ubuntu bionic-security main
- Programming Elixir https://pragprog.com/book/elixir16/programming-elixir-1-6
- Programming Phoenix https://pragprog.com/book/phoenix14/programming-phoenix-1-4
- The Little Elixir & OTP Guidebook https://www.manning.com/books/the-little-elixir-and-otp-guidebook
- https://elixirschool.com/en/
- https://elixir-lang.org/
- https://www.phoenixframework.org/
- https://exercism.io/my/tracks/elixir (tem exercicios em elixir e tem mentor que te da feedback, gratuito)
- https://confreaks.tv/videos/elixirconfeu2016-from-a-ruby-on-rails-monolith-to-elixir-and-elm-microservices
- https://confreaks.tv/videos/railsconf2016-activerecord-vs-ecto-a-tale-of-two-orms
- https://confreaks.tv/videos/elixirconf2014-rise-of-the-phoenix-building-an-elixir-web-framework
@alexandreservian
alexandreservian / regex.md
Last active August 4, 2025 17:21
Metacaracteres Regex

Representantes

Meta Nome Função
. ponto um caractere qualquer
[] conjunto conjunto de caracteres permitidos
[^] conjunto negado conjunto de caracteres proibidos

Quantificadores

Github Two-Factor Authentication (2FA) for Brazil via SMS

The Github doesn't provide country code for Brazil (+55). To add this option, just run the code below in your console. The option Brazil +55 will be the first on the list, already selected:


🇧🇷 [pt-BR]

Autenticação em dois fatores (2FA) do GitHub para o Brasil via SMS

@CristinaSolana
CristinaSolana / gist:1885435
Created February 22, 2012 14:56
Keeping a fork up to date

1. Clone your fork:

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream