tips to evolve as a developer
developers get stuck, paralized
https://twitter.com/naval/status/1002103360646823936
https://www.oreilly.com/library/view/apprenticeship-patterns/9780596806842/ch04.html
require 'open-uri' | |
require 'nokogiri' | |
servidores = [] | |
servidores_sem_salário = [] | |
(1..5).each do |page| | |
url = "http://www.portaltransparencia.gov.br/servidores/OrgaoExercicio-ListaServidores.asp?CodOrg=25201&Pagina=#{page}" | |
raw_html = open(url).read | |
html = Nokogiri::HTML(raw_html) |
tips to evolve as a developer
developers get stuck, paralized
https://twitter.com/naval/status/1002103360646823936
https://www.oreilly.com/library/view/apprenticeship-patterns/9780596806842/ch04.html