Skip to content

Instantly share code, notes, and snippets.

View dandelg88's full-sized avatar
💻
Learning

Dan Delgado dandelg88

💻
Learning
View GitHub Profile
@Klerith
Klerith / index.css
Created December 22, 2025 19:30
Estilos para la aplicación de partidos políticos
:root {
font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;
color-scheme: dark;
color: rgba(255, 255, 255, 0.87);
background-color: #242424;
font-synthesis: none;
@gchaldu
gchaldu / README.md
Created August 1, 2025 16:10
Implementación de Repositorios y Servicios con Spring JdbcTemplate Sección 5

Ejercicio Práctico: Implementación de Repositorios y Servicios con Spring JDBC

Este Gist presenta una implementación base de las capas de Repositorio y Servicio para los módulos de Educación y Experiencia en una aplicación Spring Boot, utilizando JdbcTemplate. Este código es un punto de partida para comprender cómo interactuar con una base de datos relacional y cómo estructurar las capas de una aplicación típica.


📂 Estructura del Código

El código está organizado en interfaces y sus implementaciones para la capa de persistencia (Repositories) y la capa de lógica de negocio (Services). Puedes encontrar cada componente en su archivo .java correspondiente dentro de este Gist.

@amritmaurya1504
amritmaurya1504 / pos_system_constants.ts
Last active January 28, 2026 14:30
These are the constants used in Restaurant POS System
import butterChicken from '../assets/images/butter-chicken-4.jpg';
import palakPaneer from '../assets/images/Saag-Paneer-1.jpg';
import biryani from '../assets/images/hyderabadibiryani.jpg';
import masalaDosa from '../assets/images/masala-dosa.jpg';
import choleBhature from '../assets/images/chole-bhature.jpg';
import rajmaChawal from '../assets/images/rajma-chawal-1.jpg';
import paneerTikka from '../assets/images/paneer-tika.webp';
import gulabJamun from '../assets/images/gulab-jamun.webp';
import pooriSabji from '../assets/images/poori-sabji.webp';
import roganJosh from '../assets/images/rogan-josh.jpg';
@Klerith
Klerith / chart-utils.ts
Created May 22, 2024 20:15
Utilidades para gráficas con ChartJS
import axios from 'axios';
import colorLib from '@kurkle/color';
interface ChartOptions {
height?: number;
width?: number;
}
export const chartJsToImage = async (
chartConfig: unknown,
@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:
@Klerith
Klerith / instalaciones-necesarias.md
Last active January 8, 2026 16:17
Nest + Reportes
@Klerith
Klerith / instalaciones-angular-openai.md
Last active January 8, 2026 16:21
Instalaciones recomendadas para el curso de OpenAI con Angular y Nest

open-ai-logo

Instalaciones recomendadas

Curso de OpenAI con Angular y NestJS

Necesarias

@igorbabko
igorbabko / settings.json
Created December 23, 2023 10:24
VS Code Settings
{
"window.zoomLevel": 2,
"workbench.colorTheme": "Aura Dracula Spirit (Soft)",
"workbench.iconTheme": "material-icon-theme",
"material-icon-theme.hidesExplorerArrows": true,
"workbench.tree.renderIndentGuides": "none",
"workbench.sideBar.location": "right",
"workbench.activityBar.visible": false,
"workbench.statusBar.visible": false,
"workbench.editor.showTabs": false,
@Klerith
Klerith / app.routes.ts
Created November 14, 2023 18:49
Archivo de configuración de Rutas
import { Routes } from '@angular/router';
export const routes: Routes = [
{
path: 'dashboard',
loadComponent: () => import('./dashboard/dashboard.component'),
children: [
{
path: 'change-detection',
@rafaucau
rafaucau / Installing Laravel in a subfolder.md
Last active October 23, 2025 10:35
Installing Laravel in a subfolder

Installing Laravel 10 in a subfolder

Installing Laravel in a domain subfolder can be useful in certain situations, although it is not officially supported by Laravel creators. In this instruction, I will describe how to configure Laravel 10 in a subfolder and additional tools such as Livewire v3.

Table of Contents

  1. Laravel Basse
  2. Livewire
  3. Filament Panel Builder

Laravel Base