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 | |
| define('EMAIL_SENDER', '[email protected]'); | |
| define('EMAIL_PASSWORD', 'your-secret-password'); |
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>Image Review</title> | |
| <link href="styles.css" rel="stylesheet" /> | |
| </head> | |
| <body> | |
| <div class="main-container"> | |
| <div class="input-container"> |
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
| 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 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>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 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>Tutorial jQuery Remasterizado</title> | |
| <link href="style.css" rel="stylesheet"> | |
| </head> | |
| <body> | |
| <button id="showContainer" type="button">Mostrar mensaje</button> | |
| <button id="hideContainer" type="button">Ocultar mensaje</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
| <?php | |
| include('vendor/rmccue/requests/library/Requests.php'); | |
| Requests::register_autoloader(); | |
| $url = 'https://jsonplaceholder.typicode.com/posts'; | |
| $response = Requests::get($url); |
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 | |
| include('vendor/rmccue/requests/library/Requests.php'); | |
| Requests::register_autoloader(); | |
| $url = 'https://jsonplaceholder.typicode.com/posts'; | |
| $postData = array([ | |
| 'title' => 'Hola Mundo', |
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 React from "react"; | |
| import "./App.css"; | |
| function FormatNumber({ number }) { | |
| return ( | |
| <span style={{ color: "red" }}> | |
| {new Intl.NumberFormat("ES-MX", { | |
| style: "currency", | |
| currency: "MXN" | |
| }).format(number)} |
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>Full Height Background Image | elporfirio.com</title> | |
| <style> | |
| body, html { | |
| height: 100%; | |
| margin: 0; | |
| } |