Skip to content

Instantly share code, notes, and snippets.

View dotJManuel's full-sized avatar
🌱
learning

José Manuel Hernández dotJManuel

🌱
learning
View GitHub Profile
@Klerith
Klerith / auth-layout.component.html
Last active January 2, 2025 02:08
Angular - LoginPage
<div class="limiter">
<div class="container-login100" style="background-image: url('../../../../assets/images/bg-01.jpg');">
<div class="wrap-login100 p-l-55 p-r-55 p-t-65 p-b-54">
<router-outlet />
</div>
</div>
</div>
@Klerith
Klerith / hex-color.js
Created April 17, 2023 15:54
Color hexadecimal
const color = '#xxxxxx'.replace(/x/g, y=>(Math.random()*16|0).toString(16));
@Klerith
Klerith / instalaciones.md
Last active January 28, 2026 16:54
Instalaciones recomendadas - Curso de Angular de cero a experto
@Klerith
Klerith / tarea-pg-admin.md
Last active January 28, 2026 16:09
Tarea sobre PGAdmin y Postgres

Docker Hub images

Postgres

pgAdmin

1. Crear un volumen para almacenar la información de la base de datos

docker COMANDO CREAR postgres-db

2. Montar la imagen de postgres así

OJO: No hay puerto publicado -p, lo que hará imposible acceder a la base de datos con TablePlus

@Klerith
Klerith / hex-color.js
Last active January 2, 2026 14:01
Color HEX aleatorio
const color = '#xxxxxx'.replace(/x/g, y=>(Math.random()*16|0).toString(16));