Skip to content

Instantly share code, notes, and snippets.

View felipe-parra's full-sized avatar
🚀
Focusing

Felipe Parra felipe-parra

🚀
Focusing
View GitHub Profile
@felipe-parra
felipe-parra / pasos-node-typescript.md
Created December 6, 2024 14:15 — forked from Klerith/pasos-node-typescript.md
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)
Crear una landing page diseño "pixel perfect" con muy buena UX/UI con transiciones modernas, inspirate los detalles de la captura de la landing que adjunte quiero que sea igual o casi igual, video en el centro que tiene un efecto hover, usa una imagen de upsplash que sirva como cover de un video. standard 16:9 aspect ratio.standard 16:9 aspect ratio.
Key Design Elements:
Clean, minimal design with lots of whitespace
Soft, mint/sage green background (#F7F9F8)
Modern typography with a bold headline and subtle descriptive text
Centered video player with hover effects and rounded corners
Small "Updated" badge with subtle styling
Professional navigation bar with clear hierarchy
@felipe-parra
felipe-parra / regular-exp.ts
Last active December 19, 2024 22:01 — forked from Klerith/regular-exp.ts
Validadores usando expresiones regulares
export class Validators {
static get email() {
return /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,6}$/;
}
static get password(){
// Password Validation (8+ characters, 1 uppercase, 1 lowercase, 1 number, 1 special character)
return /^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[@$!%*?&])[A-Za-z\d@$!%*?&]{8,}$/
}
@felipe-parra
felipe-parra / configurar-node-ts.md
Created November 23, 2024 22:44 — forked from Klerith/configurar-node-ts.md
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
@felipe-parra
felipe-parra / Sumsub - Dashboard
Created May 22, 2023 03:00
This a information you require to configure your Web SDK, App Token & Webhook
# KYC Docs - Sumsub
## Web SDK Settings
You will configure this properties to your project:
| Property | Example |Type |
| ----------- | --- |----------- |
| Domain | http://localhost:8081 |String or [String] |
| Secret Key (JWT) | eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... | String |
| Success Redirect URL| https://exmapledomain.com/success | String |