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
public class Pessoa { | |
String nome; | |
Pessoa amigo = null; | |
public Pessoa(String x) { | |
this.nome = x; | |
} |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
const char USERFILE[20] = "usuarios.txt"; | |
const char SENHA[] = "admin1"; | |
typedef struct user { | |
char nome[50]; | |
char cpf[11]; |
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
SELECT DISTINCT maybe_utf8_decode(CONCAT(a.first_name,' ',a.middle_name, ' ' ,a.last_name)) "Nome" FROM users a JOIN registrations r ON a.user_id = r.user_id WHERE UPPER(maybe_utf8_decode(CONCAT(a.first_name,' ',a.middle_name, ' ' ,a.last_name))) NOT IN (SELECT maybe_utf8_decode(UPPER(full_name)) FROM tb_user) |
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 clone https://github.com/madler/zlib.git |
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
http://pt.slideshare.net/secret/sMPtoidk01VvuT | |
http://pt.slideshare.net/secret/204o2wa5KILanh |
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/sh | |
clear | |
message() { | |
echo "##################################################"; | |
echo "# #"; | |
echo "# INSTALANDO O PYTHON 3.5 #"; | |
echo "# #"; | |
echo "##################################################"; | |
} |
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
primeiro = { | |
'tesoura': 'papel', | |
'papel': 'pedra', | |
'pedra': 'lagarto', | |
'lagarto': 'Spock', | |
'Spock': 'tesoura', | |
} | |
segundo = { | |
'tesoura': 'lagarto', |
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
1) Você tem cinco minutos para explocar o Aplicativo Waze. | |
A) Primeiro abra o aplicativo | |
B) Agora explore | |
2) Localização no Waze | |
A) Utilize o botão de centralizar o mapa | |
B) Vefique o nome da rua | |
C) Confirme sua localização | |
3) Navegação no Waze |
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
Entrevista aplicada | |
Qual foi sua primeira impressão ao explorar o aplicativo Waze? | |
Qual é a sua experiência neste tipo de aplicativo? | |
Você achou fácil ou difícil encontrar as funcionalidades do aplicativo Waze? | |
Você achou fácil ou difícil se localizar no aplicativo? | |
Qual é sua impressão sobre o mapa utilizado no aplicativo Waze? | |
Você sentir dificuldade para encontrar as categorias de navegação? | |
De que maneira você chegou ao preços dos postos de combustíveis próximos no aplicativo Waze? | |
De que maneira você identificou os alertas no mapa? |
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
dicionario = open('dicionario.txt', 'r') | |
site = open('site.txt', 'r') | |
resultado = open('resultado.txt', 'w') | |
site_words = [] | |
dicionario_words = [] | |
for word in site: | |
site_words.append(word) | |
else: |