Usar o site https://md2pdf.netlify.com/ para gerar o pdf
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>Canvas</title> | |
| <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> | |
| </head> | |
| <body> |
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
| Program Pzim ; | |
| var | |
| nota1, nota2, nota3, nota4: integer; | |
| nome: string; | |
| Begin | |
| writeln('Digite seu nome:'); | |
| read(nome); | |
| writeln('Digite a 1ª nota:'); | |
| read(nota1); | |
| writeln('Digite a 2ª nota:'); |
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
| use std::io; | |
| fn input(mensagem: &'static str) -> String { | |
| println!("{}", mensagem); | |
| let mut input: String = "".to_string(); | |
| io::stdin().read_line(&mut input).unwrap(); | |
| input.truncate(input.len() - 1);//Remove \n | |
| 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
| import sys | |
| ALPHABET = ' abcdefghijklmnopqrstuvwxyz' | |
| ROOT = '3' | |
| def decrypt(message): | |
| m = '' |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>As Dev I'll</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> | |
| <!-- For initialized after mounted --> | |
| <!-- <meta name="metro4:init" content="false"> --> |
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
| <!DOCTYPE html> | |
| <html lang="en" ng-app="AppModule"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>AngularJS</title> | |
| <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.8.0/angular.min.js"></script> | |
| </head> | |
| <body > | |
| <div ng-controller="AppController"> |
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
| from curses import initscr, wrapper, noecho, cbreak, endwin | |
| from random import randint | |
| def boas_vindas(stdscr): | |
| stdscr.addstr(1, 1, 'Bem-vindo ao Jogo da Velha.') | |
| stdscr.addstr(2, 1, 'Pressione q para sair ou h para obter ajuda.') | |
| stdscr.addstr(16, 1, 'Desenvolvido por: Horácio Dias.') | |
| stdscr.addstr(17, 1, 'Licensa Nova BSD.') |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000