-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 7e9aa86
Showing
3 changed files
with
124 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
Adriano Duarte Santos | ||
Alexander Borges | ||
Alexandre Cardoso | ||
Alexandre Cassemiro Mendes | ||
Alexandre Santos Costa | ||
Andréa Felgueiras | ||
André Aparecido De Souza | ||
André Hissao Chigashi | ||
André Willik Valenti | ||
Arthur Corenzan | ||
Belchior Oliveira | ||
Bruno De Brito Coimbra | ||
Bruno Luiz Pereira Da Silva | ||
Carlos Eduardo Ferreira Da Silva | ||
Celestino Ferreira Gomes | ||
César Barbosa Da Silva | ||
Daniela Vieira | ||
Danilo Barboza | ||
Danilo De Jesus Da Silva Bellini | ||
David Lojudice Sobrinho | ||
David Robert Camargo De Campos | ||
Diogo Benicá Pereira | ||
Douglas Campos | ||
Éder Costa | ||
Eduardo Carvalho | ||
Eduardo Júlio De Matos | ||
Eduardo Maia | ||
Eduardo Shiota Yasuda | ||
Esdras Eduardo Franco Rosa Filho | ||
Fabiano Dos Santos Silva | ||
Fabiano Leite | ||
Fabio Maciel De Souza | ||
Fabricio Leotti | ||
Felipe Bremer De Moraes | ||
Felipe Cavalcante Vilella De Oliveira | ||
Felipe Trovatti Mamud | ||
Fernanda Tarrasco | ||
Fernando Vieira | ||
Flavio Oliveira Diggelmann | ||
Gabriel De Oliveira Barbosa | ||
George Guimarães | ||
Gilmar Gumier | ||
Gustavo Dutra | ||
Gustavo Maia Neto | ||
Hanneli Carolina Andreazzi Tavante | ||
Hubo Borges | ||
Isaias Daniel Rocha Junior | ||
Jésus Tadeu Lopes | ||
Joao Carlos Calistro | ||
João Paulo Alves Teixeira | ||
João Víctor Rocon Maia | ||
Johnny Ramos Pereira Da Silva | ||
Johnny Richard Bento Fernandes Camargo | ||
Jonas De Faria Alves | ||
Jorge Falcão | ||
José Eronildo De Lima Barbosa | ||
Julio Turolla Ribeiro | ||
Kaique De Melo Alencar Toledo | ||
Kiyoshi Murata | ||
Klaus Silveira | ||
Kleber Hamada Sato | ||
Kristopher Murata | ||
Leandro Alvares Da Costa | ||
Leandro Facchinetti | ||
Lucas Do Prado Polo | ||
Lucas Fais | ||
Lucas Mazza | ||
Luís Fernando Saquetim Vendrame | ||
Luiz Felipe Cipriani | ||
Marcelo Manzan | ||
Marcelo Ramos | ||
Marcos Hack | ||
Marcus Derencius | ||
Michelle Bueno Saquetim Vendrame | ||
Patricia Mota | ||
Paulo Henrique Benitez | ||
Paulo José Da Silva | ||
Piotr Andrzej Laszewski | ||
Rafael Dos Santos Silva | ||
Rafael Felix Correa | ||
Rafael Mendonça França | ||
Rafael Rinaldi | ||
Raphael Silvestre Molesim | ||
Renan Dos Santos | ||
Renato Augusto Viço Elias | ||
Robinson Praxedes | ||
Rodrigo Di Lorenzo Lopes | ||
Rogerio Prado De Jesus | ||
Rogério Rodrigues De Alcântara | ||
Sergio De Oliveira Kubota | ||
Sérgio Ernesto Diniz Saquetim | ||
Thiago Diniz | ||
Thiago Scalone | ||
Tiago Luiz De Almeida | ||
Tony Fabeen Oreste | ||
Vagner Rodolfo Guedes Da Silva | ||
Vivian Dos Santos Molina | ||
Willes De Souza Reis | ||
Willian Arantes | ||
Guilherme Milan Santos* |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Curso: Começando com Ruby on Rails | ||
Curso: Começando com Ruby on Rails | ||
Curso: Começando com Ruby on Rails | ||
EBook: Casa do Código (a escolher) | ||
EBook: Casa do Código (a escolher) | ||
Livro: A Web Mobile | ||
Livro: Android Cookbook | ||
Livro: Construindo Aplicações Node com MongoDB e Backbone | ||
Kindle Paperwhite | ||
Kindle Paperwhite | ||
Nintendinho |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
inscritos = File.readlines('inscritos.txt') | ||
|
||
itens = File.readlines('itens.txt') | ||
|
||
itens.each do |item| | ||
print "O '#{item.chomp}' vai para:" | ||
|
||
while gets.chomp.empty? | ||
puts inscritos.sample | ||
end | ||
|
||
puts "" | ||
end |