Criado pela Netscape em 1995 como uma extensão do HTML para o navegador Netscape Navigator 2.0, o JavaScript teve como função principal a manipulação de documentos HTML e a validação de formulários. Antes de ganhar seu nome tão famoso hoje em dia, o JavaScript foi chamado de Mocha. Quando saiu pela primeira vez em uma versão beta foi chamado oficialmente de LiveScript e finalmente quando foi liberado pela Sun Microsystems foi batizado pelo nome que hoje nós conhecemos. Devido à similaridade de nomes, algumas pessoas confundem o JavaScript com o Java. Embora ambos tenham a estrutura léxica da programação, elas não são a mesma linguagem. Diferente do C, C# e do Java, o JavaScript é uma linguagem interpretada.
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
require 'forwardable' | |
class Matriz | |
include Enumerable | |
extend Forwardable | |
def_delegators :@valores, :each, :[], :size | |
def initialize(n_linhas, n_colunas) | |
raise ArgumentError, 'linhas e colunas devem do tipo inteiro' unless n_linhas.is_a?(Integer) && n_colunas.is_a?(Integer) |
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
/* | |
Crie uma função que verifique se uma palavra está | |
presente em uma string em modo case insensitive. | |
*/ | |
var texto = 'Eu estou fazendo o curso da DevMode' | |
function incluiPalavra(palavra, texto) { | |
return texto.toUpperCase().indexOf(palavra.toUpperCase()) !== -1 | |
} |
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
var app = new Vue({ | |
el: '#app', | |
data: { | |
selecionado: { | |
endereco: {}, | |
preco: 0, | |
tempo: 0, | |
}, | |
ultimo: '', | |
enderecos: [ |
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
<?php | |
# cd /path/to/magento | |
# php -a | |
require 'pub/index.php'; | |
$entityId = 374; | |
$order = \Magento\Framework\App\ObjectManager::getInstance() | |
->get('Magento\Sales\Model\OrderRepository') |
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
send_email.rb | |
mailer/ | |
|- daily_email.html.erb | |
|- daily_email.text.erb |