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
DELIMITER $$ | |
CREATE PROCEDURE dbxupl9xdb.sp_insertBankAccount(IN bank_account_type CHAR(4), IN bank_account_number INT) | |
BEGIN | |
DECLARE exit handler for SQLEXCEPTION | |
BEGIN | |
GET DIAGNOSTICS CONDITION 1 @sqlstate = RETURNED_SQLSTATE, | |
@error_number = MYSQL_ERRNO, @error_message = MESSAGE_TEXT; | |
SET @full_error = CONCAT("ERROR ", @error_number, " (", @sqlstate, "): ", @error_message); | |
SELECT @error_number error_number, @full_error error_message; |
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
$('.dropify').dropify({ | |
messages: { | |
'default': 'Arrastra y suelta un archivo aquí o haz clic', | |
'replace': 'Arrastra y suelta o haz clic para reemplazar el archivo', | |
'remove': 'Eliminar', | |
'error': 'Ooops!. Ocurrió un error interno de validación' | |
}, | |
error: { | |
'fileSize': 'El archivo es demasiado grande. ({{ value }} max).', | |
'fileExtension': 'El archivo no está permitido. Solo esta permitido ({{ value }})', |
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
Highcharts.setOptions({ | |
lang: { | |
loading: 'Cargando...', | |
months: ['Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 'Julio', 'Agosto', 'Septiembre', 'Octubre', 'Noviembre', 'Diciembre'], | |
weekdays: ['Domingo', 'Lunes', 'Martes', 'Miércoles', 'Jueves', 'Viernes', 'Sábado'], | |
shortMonths: ['Ene', 'Feb', 'Mar', 'Abr', 'May', 'Jun', 'Jul', 'Ago', 'Sep', 'Oct', 'Nov', 'Dic'], | |
exportButtonTitle: "Exportar", | |
printButtonTitle: "Importar", | |
rangeSelectorFrom: "Desde", | |
rangeSelectorTo: "Hasta", |
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
/** | |
* Formato numérico americano | |
* Resultado: 1,000,000,000 | |
* */ | |
const numberFormatUS = new Intl.NumberFormat('en'); | |
console.log(numberFormatUS.format(1000000000)); | |
/** | |
* Formato numérico de perú | |
* Resultado: 1.000.000.000 |
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 objUserTwiter = new Map([ | |
["name", "Gonzalo Chacaltana"], | |
["location", "Perú"], | |
["account", "@gchacaltanab"] | |
]); | |
console.log(Object.fromEntries(objUserTwiter)); | |
/** | |
* Resultado: | |
* {name: "Gonzalo Chacaltana", location: "Perú", account: "@gchacaltanab"} | |
* */ |
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 twitter = { | |
name: "Gonzalo Chacaltana", | |
location: "Perú", | |
account: "@gchacaltanab" | |
}; | |
console.log(Object.entries(twitter)); | |
/* Expected Output | |
[ | |
["name", "Gonzalo Chacaltana"], | |
["location", "Perú"], |
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
/** | |
* Ejemplo de método flat con nivel | |
* */ | |
let breed = ["Mamíferos", | |
["perros", ["Bulldog", "Labrador", "Boxer"]], | |
["gatos", ["Ragdoll", "Sphynx", "Angora"]] | |
]; | |
console.log(breed.flat()); | |
/** |
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
/* | |
* Sorteo de viajes - Manejo de atributos | |
* @author Gonzalo Chacaltana @gchacaltanab | |
* @class TravelRaffle | |
* **/ | |
class TravelRaffle { | |
constructor() { | |
this._country = null; | |
} | |
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 book = { | |
title: "Enterprise Agility: Being Agile In a Changing World", | |
isbn: "ISBN-13 978-1788990646", | |
publicationDate: "June 2018", | |
pages: 490, | |
editorial: "Packt Publishing" | |
}; | |
let author = { | |
name: "Sunil Mundra", | |
twitterAccount: "@sunil_mundra", |
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
/** | |
* Ejemplo de trimStart and trimEnd | |
* @@author Gonzalo Chacaltana Buleje <[email protected]> | |
* @class UserTwitter | |
* @version 1.0 | |
*/ | |
var UserTwitter = { | |
account: null, | |
name: null, | |
setAccount: function (str) { |