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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Tutorial jQuery Remasterizado</title> | |
<script src="http://code.jquery.com/jquery-1.8.0.min.js"></script> | |
<script> | |
var pagina = $(document); | |
pagina.on("ready", animar); |
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
function showMessage(message){ | |
const processDiv = document.getElementById('process'); | |
processDiv.innerHTML = message; | |
processDiv.style.display = 'block'; | |
} | |
function hideMessage() { | |
const processDiv = document.getElementById('process'); | |
processDiv.style.display = 'none'; | |
} |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Image Review</title> | |
<link href="styles.css" rel="stylesheet" /> | |
</head> | |
<body> | |
<div class="main-container"> | |
<div class="input-container"> |
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 | |
define('EMAIL_SENDER', '[email protected]'); | |
define('EMAIL_PASSWORD', 'your-secret-password'); |
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
import React, { Component } from "react"; | |
import "./App.css"; | |
class App extends Component { | |
state = { | |
nombre: "", | |
email: "", | |
esAdmin: "", | |
genero: "", | |
color: "", |
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 | |
$name = "file-" . time(); | |
$myfile = fopen($name, "w") | |
?> |
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
let langSentence = 'Estos son los lenguajes requeridos: Javascript, PHP, Java, Python.'; | |
// Inicio y fin de busqueda | |
let startSearch = langSentence.indexOf(':'); | |
let endSearch = langSentence.indexOf('.', startSearch + 1); | |
// Obtener el texto despujes del inicio y fin | |
let langString = langSentence.substring(startSearch + 1, endSearch); | |
// Convertir cada elemento separado por coma en un elemento del arreglo |
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
import {PS4GameFactory, XBOXGameFactory} from "./factory_clases"; | |
export class GameMaker { | |
public constructor() { | |
const ps4Game = new PS4GameFactory(); | |
this.tester(ps4Game); | |
const xboxGame = new XBOXGameFactory(); | |
this.tester(xboxGame); | |
} |
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 folder = "images/"; | |
var availableImages = []; | |
var time = 4000; | |
// Ejecutar un AJAX a un folder con las imágenes | |
// Importante que sea de acceso publico y sin un index. | |
$(document).ready(function () { | |
$.ajax({ | |
url: folder, | |
success: function (data) { |
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
/** Declaración de expresiones regulares **/ | |
var regexp = new RegExp('abc'); // Objeto | |
var regexp2 = /abc/; // Literales | |
/** Encontrar al menos un carácter en la lista **/ | |
var regexp3 = /[0123456789]/; | |
var regexp3alter = /[0-9]/; | |
/** GUIA RAPIDA DE ATAJOS |