Skip to content

Instantly share code, notes, and snippets.

View facundo-moran's full-sized avatar
🎯
Focusing

Facundo Morán facundo-moran

🎯
Focusing
View GitHub Profile
@Klerith
Klerith / instalaciones-astro.md
Last active November 8, 2024 13:12
Instalaciones necesarias para el curso de Astro

Instalaciones Recomendadas

Astro Logo

Astro: Astro: El framework para sitios web orientados al contenido

@Klerith
Klerith / docker-compose.yml
Created May 18, 2024 15:35
PostgreSQL & PgAdmin
services:
db:
container_name: postgres_database
image: postgres:16.3
volumes:
- ./postgres:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=123456
restart: always
ports:
.fade-in {
animation: fadeIn 0.3s;
-webkit-animation: fadeIn 0.3s;
-moz-animation: fadeIn 0.3s;
-o-animation: fadeIn 0.3s;
-ms-animation: fadeIn 0.3s;
}
@keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
@Klerith
Klerith / tsconfig.vitest.json
Created April 5, 2024 16:22
Archivo de configuración de TypeScript para Vitest
{
"extends": "./tsconfig.app.json",
"exclude": [],
"compilerOptions": {
"composite": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.vitest.tsbuildinfo",
"lib": [],
"types": ["node", "jsdom", "vitest/globals"]
}
}
@Klerith
Klerith / configurar-node-ts.md
Last active November 19, 2024 09:11
Node con TypeScript - TS-Node-dev simplificado

Node con TypeScript - TS-Node-dev (preferido)

  1. Instalar TypeScript y demás dependencias
npm i -D typescript @types/node ts-node-dev rimraf
  1. Inicializar el archivo de configuración de TypeScript ( Se puede configurar al gusto)
npx tsc --init --outDir dist/ --rootDir src
@Klerith
Klerith / pasos-node-typescript.md
Last active November 14, 2024 19:47
Configurar proyecto de Node con TypeScript

Pasos para usar Node con TypeScript con Nodemon

Más información - Docs Oficiales

  1. Instalar TypeScript y tipos de Node, como dependencia de desarrollo
npm i -D typescript @types/node
  1. Inicializar el archivo de configuración de TypeScript ( Se puede configurar al gusto)
@Klerith
Klerith / auth-layout.component.html
Last active August 23, 2024 21:53
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 / interfaces.ts
Last active February 26, 2024 22:55
Marcadores - Curso Angular cero a experto
interface House {
title: string;
description: string;
lngLat: [number, number];
}
const houses: House[] = [
{
title: 'Casa residencial, Canadá',
@Klerith
Klerith / flutter-instalaciones.md
Last active November 19, 2024 19:46
Instalaciones del curso de Flutter - Móvil de cero a experto
export const firstNameAndLastnamePattern: string = '([a-zA-Z]+) ([a-zA-Z]+)';
export const emailPattern: string = "^[a-z0-9._%+-]+@[a-z0-9.-]+\\.[a-z]{2,4}$";