Enlaces con otros ficheros compartidos en los comentarios:
❤️🔥
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 countries =[ | |
{ccode:"US",value:"1",name:"USA",mcode:"+1"}, | |
{ccode:"GB",value:"44",name:"UK",mcode:"+44"}, | |
{ccode:"DZ",value:"213",name:"Algeria",mcode:"+213"}, | |
{ccode:"AD",value:"376",name:"Andorra",mcode:"+376"}, | |
{ccode:"AO",value:"244",name:"Angola",mcode:"+244"}, | |
{ccode:"AI",value:"1264",name:"Anguilla",mcode:"+1264"}, | |
{ccode:"AG",value:"1268",name:"Antigua & Barbuda",mcode:"+1268"}, | |
{ccode:"AR",value:"54",name:"Argentina",mcode:"+54"}, |
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
ESPAÑOL | ENGLISH | ISO2 | ISO3 | PHONE_CODE | |
---|---|---|---|---|---|
Afganistán | Afghanistan | AF | AFG | 93 | |
Albania | Albania | AL | ALB | 355 | |
Alemania | Germany | DE | DEU | 49 | |
Algeria | Algeria | DZ | DZA | 213 | |
Andorra | Andorra | AD | AND | 376 | |
Angola | Angola | AO | AGO | 244 | |
Anguila | Anguilla | AI | AIA | 1 264 | |
Antártida | Antarctica | AQ | ATA | 672 | |
Antigua y Barbuda | Antigua and Barbuda | AG | ATG | 1 268 |
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
service cloud.firestore { | |
match /databases/{database}/documents { | |
// START - Usage example | |
match /people/{document=**} { | |
function propertiesValid() { | |
return request.resource.data.keys().hasAll(['name', 'birthdate', 'yearsOfExperience']) | |
&& request.resource.data.size() == 3 | |
&& isString('name') && minlength('name', 3) && maxlength('name', 255) |
- Looking at your instance info, find VNIC section, click "Public Subnet".
- Click on your security list.
- Add a new entry with the following options:
- "Stateless" = No, "Source" = 0.0.0.0/0, "IP Protocol" = TCP, "Source Port Range" = All, "Destination Port Range" = 80
- SSH to your instance.
- While SSH'ed in your instance, run command
firewall-cmd --permanent --add-service=http
. - While SSH'ed in your instance, run command
firewall-cmd --reload
. - Now start Apache, NGINX, or whatever server you need to on port 80. You can now access from the internet.
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
export const errorList = { | |
'auth/app-deleted': 'No se encontró la base de datos', | |
'auth/expired-action-code': 'El código de acción o el enlace ha caducado', | |
'auth/invalid-action-code': | |
'El código de acción no es válido. Esto puede suceder si el código está mal formado o ya se ha utilizado', | |
'auth/user-disabled': | |
'El usuario correspondiente a la credencial proporcionada ha sido deshabilitado', | |
'auth/user-not-found': 'Usuario no existente', | |
'auth/weak-password': 'La contraseña es demasiado débil', | |
'auth/email-already-in-use': |