Dillinger is a cloud-enabled, mobile-ready, offline-storage compatible, AngularJS-powered HTML5 Markdown editor.
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
const livros = [ | |
{nome: 'Liderança em Design ', id : 1, src: ''}, | |
{nome: 'Javascript assertivo ', id : 2, src: ''}, | |
{nome: 'Cangeceiro em Javascript ', id : 3, src: ''}, | |
{nome: 'Aventureiros do Java ', id : 4, src: ''}, | |
] | |
var textoDigitado = 'Lid' | |
const resultadoPesquisa = livros.filter( livro => livro.nome.includes(textoDigitado) ) |
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
/* | |
Vai achar todas as palavras que começarem com "km" dentro do texto "str" e então exibir 6 caracteres a partir do | |
indice (index) da palavra. | |
*/ | |
var str = 'Congestionamento no km 205 da BR-101 e deslizamento no km 559 da br-367 ' | |
str = str.trim() // tira os espaço em branco antes e depois | |
var palavraEscolhida = 'km' | |
var tamanhoDaPalavraEscolhida = palavraEscolhida.length |
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
describe('Login e registro de usuário usando o alura-pic', () => { | |
beforeEach(() => { | |
cy.visit('http://alura-fotos.herokuapp.com') | |
}) | |
it('verifica mensagens validacao ', () => { | |
cy.contains('a','Register now').click(); | |
cy.wait(1000) |
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
const express = require('express'); | |
const axios = require('axios'); | |
const cheerio = require('cheerio'); | |
const app = express(); | |
app.get('/', (req, res) => { | |
res.send('Hello World!'); | |
}); | |
app.get('/scrape', (req, res) => { |
Cypress é uma ferramenta de teste end-to-end para aplicativos da web modernos. Ele é construído em cima do Node.js e utiliza o Electron para executar os testes em um navegador real. O Cypress é fácil de configurar e oferece uma ampla variedade de recursos para testes automatizados.
Para instalar o Cypress, primeiro certifique-se de ter o Node.js e o npm instalados em seu sistema. Em seguida, execute o seguinte comando no terminal:
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
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/1.3.5/axios.min.js" integrity="sha512-nnNHpffPSgINrsR8ZAIgFUIMexORL5tPwsfktOTxVYSv+AUAILuFYWES8IHl+hhIhpFGlKvWFiz9ZEusrPcSBQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<body> | |
<h1 class="text-4xl"> | |
Minha assinatura digital | |
</h1> | |
<div> | |
<canvas id="myCanvas" width="600" height="200"></canvas> |
OlderNewer