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
package cafeinacodificada; | |
public class CafeinaCodificada | |
{ | |
public static void main(String[] args) | |
{ | |
System.out.println("Cafeína Codificada é muito chique!!!"); | |
} | |
} |
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
section .data | |
msg db 'Cafeína Codificada é legal', 0AH | |
len equ $-msg | |
section .text | |
global _start | |
_start: mov edx, len | |
mov ecx, msg | |
mov ebx, 1 | |
mov eax, 4 |
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
print('Curta Cafeína Codificada porque Cafeína Codificada é legal!!!') | |
input() |
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
<script> | |
alert('Curta Cafeína Codificada!!!'); | |
</script> |
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
ECHO CAFEINA CODIFICADA E BACANA GENTI | |
PAUSE |
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
<?php | |
print 'Cafeína Codificada é muito legal!'; |
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
import tempfile | |
arquivoTemporario = tempfile.TemporaryFile() | |
arquivoTemporario.write(b'qualquer coisa') | |
arquivoTemporario.seek(0) | |
print(str(arquivoTemporario.read(), encoding='utf8')) |
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
<?php | |
# Acesse Cafeína Codificada: http://www.cafeinacodificada.com.br | |
require_once 'PHPMailer-5.2.14/PHPMailerAutoload.php'; | |
$M = new PHPMailer(); | |
# $M->SMTPDebug = 2; # Somente para debug | |
$M->isSMTP(); # Informamos que é SMTP | |
$M->Host = 'mx1.hostinger.com.br'; # Colocamos o host de envio de e-mail. | |
$M->SMTPAuth = true; # Informamos que terá autenticação de SMTP. |
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
# Acesse: Cafeína Codificada! http://www.cafeinacodificada.com.br/ | |
# Fonte: https://pythonhelp.wordpress.com/2013/06/26/brincando-com-listas/ | |
# Criando uma lista de números em sequência: | |
lista = list(range(100)) | |
# Agora criando uma lista usando list comprehensions: | |
lista = [x*2 for x in range(100)] | |
# Percorrendo uma lista com for: |
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
REM Escreve "Alo Mundao!" na tela. | |
ECHO Alo mundao! | |
PAUSE |