Configura VS Code para que Live Server abra tus proyectos en Firefox Developer Edition.
- Step 1: Download and install StarUML Version 6 from main website https://staruml.io
- Step 2: Download
app.asar
file from https://drive.google.com/file/d/1_sKvHVL6SebnYF73iZxSWD9l48Pddzvj/view?usp=sharing - Step 3: Copy
app.asar
file download in step 2 (Overrideapp.asar
file)- Window:
C:\Program Files\StarUML\resources
- MacOS:
/Applications/StarUML.app/Contents/Resources/
- Linux:
/opt/StartUML/resources
- Window:
- Step 4: Open StarUML app to use
Tipo | Propósito | Ejemplo en español |
---|---|---|
feat | Añadir una nueva funcionalidad | feat: agregar búsqueda por nombre |
fix | Corregir un bug | fix: solucionar error en validación de email |
chore | Tareas menores o mantenimiento (sin impacto funcional) | chore: actualizar versión de dependencias |
docs | Cambios en documentación | docs: mejorar sección de instalación |
style | Cambios de formato (sin afectar lógica) | style: corregir indentación y espacios |
refactor | Reestructurar código sin cambiar comportamiento | refactor: |
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
# Node.js dependencies | |
node_modules/ | |
# Build output | |
dist/ | |
build/ | |
www/ | |
# Ionic specific | |
.platforms/ |
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
/* Universal Box Model Reset */ | |
html { | |
box-sizing: border-box; | |
} | |
*, | |
*:before, | |
*:after { | |
box-sizing: inherit; | |
} |
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 | |
function debuguear($variable): string | |
{ | |
echo "<pre>"; | |
var_dump($variable); | |
echo "</pre>"; | |
exit; | |
} |
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
"autoload": { | |
"psr-4": { | |
"MVC\\": "./", | |
"Controllers\\": "./controllers", | |
"Model\\": "./models" | |
} | |
} |
NewerOlder