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
| var contatos = [ | |
| 'Anderson:[email protected]', | |
| 'Bolinha:[email protected]', | |
| 'Juliano:[email protected]', | |
| 'Otávio:[email protected]' | |
| ]; | |
| var paragrafo = document.querySelector('p'); | |
| var input = document.querySelector('input'); | |
| var btn = document.querySelector('button'); |
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
| <body> | |
| <span>Vamos criar um formulário de pesquisa agora.</span> | |
| <label for="search">Buscar por nome: </label> | |
| <input id="search" type="text"> | |
| <button>Encontrar</button> | |
| <p></p> | |
| <script src="js/scripts.js"></script> | |
| </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
| h1 { | |
| color:#6b5b95; | |
| } | |
| h2 { | |
| color: #d64161; | |
| } | |
| span { | |
| color:#405d27; | |
| } |
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
| h1 { | |
| color:#6b5b95; | |
| } | |
| h2 { | |
| color: #d64161; | |
| } |
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
| <body> | |
| <h1>Vamos fazer alguns testes com git merge</h1> | |
| <h2>E analisar o resultado do merge.</h2> | |
| <span>Vamos realizar essas alterações por enquanto.</span> | |
| <script src="js/scripts.js"></script> | |
| </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
| h1 { | |
| color:#6b5b95; | |
| } |
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
| <body> | |
| <h1>Vamos fazer alguns testes com git merge</h1> | |
| <h2>E analisar o resultado do merge.</h2> | |
| <script src=”js/scripts.js”></script> | |
| </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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>Aprendendo merges GIT</title> | |
| <link rel="stylesheet" href="css/main.css" /> | |
| </head> | |
| <body> | |
| <h1>Vamos fazer alguns testes com git merge</h1> | |
| <script src="js/scripts.js"></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
| <?php | |
| require __DIR__."/zip/Zip.php"; | |
| $zip = new Zip(); | |
| var_dump($zip->zipar("test", "test/test.zip", "archive")); | |
| var_dump($zip->zipar("test-1", "test-1/test1.zip", "test")); | |
| var_dump($zip->zipar("test-2", "test-2/test2.zip", "test-1")); | |
| var_dump($zip->zipar("test-3", "test-3/test3.zip", "test-2")); |
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 | |
| abstract class Resposta | |
| { | |
| protected $formatoResposta; | |
| protected $proxima; | |
| public function enviarResposta(Conta $conta, Requisicao $requisicao) | |
| { | |
| if($requisicao->getFormato() != $this->formatoResposta && $this->proxima != NULL) | |
| return $this->proxima->enviarResposta($conta, $requisicao); |
NewerOlder