Skip to content

Instantly share code, notes, and snippets.

# ===================================================================
# APPLICATION PROPERTIES
# ===================================================================
# ----------------------------------------
# CORE PROPERTIES
# ----------------------------------------
# LOGGING
logging.file=logs/app.log
Aspect or Feature kubernetes/ingress-nginx nginxinc/kubernetes-ingress with NGINX nginxinc/kubernetes-ingress with NGINX Plus
Fundamental
Authors Kubernetes community NGINX Inc and community NGINX Inc and community
NGINX version Custom NGINX build that includes several third-party modules NGINX official mainline build NGINX Plus
Commercial support N/A N/A Included
Implemented in Go/Lua (while Nginx is written in C) Go/Python Go/Python
Load balancing configuration via the Ingress resource
@maravilloso
maravilloso / 64Base: embeber imagenes en
Last active May 8, 2024 16:47
Embeber imágenes en base64 cuyo contenido se pasa como parámetro. Mas información: http://rgauss.com/2009/12/21/jasperreports-xml-datasource-with-inline-images/
<import value="javax.imageio.ImageIO"/>
<import value="org.apache.commons.codec.binary.Base64"/>
@zjeaton
zjeaton / __Magnific Image Modal for Hugo.md
Last active May 8, 2024 16:46
Magnific Image Modal Pop-up for Hugo

Magnific Image Pop-Up Modal for Hugo

A working demo of the pop-up can be found here.

I wanted a modal pop-up for images on my new Hugo site, and couldn't find one that worked with the styling that I do to the image path name. I'm new to Hugo, but I feel that the solution is simple and effective. The close button has been optimzed for accessibility as it is named close, but displays only &times; (×).

File Placement

@Klerith
Klerith / docker-compose.yml
Last active May 8, 2024 16:46
PostgreSQL + PgAdmin
version: '3'
services:
myDB:
image: postgres:15.3
container_name: my-database
restart: always
ports:
- 5432:5432
environment:
@Klerith
Klerith / instalaciones-database.md
Last active May 8, 2024 16:46
Instalaciones necesarias para el curso de base de datos

postgresql Logo

SQL de cero: Tu guía práctica con PostgreSQL

Instalaciones recomendadas

Opcionales recomendadas

@singledigit
singledigit / Install-AWS-SAM.sh
Last active May 8, 2024 16:46
Install AWS SAM on Linux using the new Linux installer
curl -L https://github.com/aws/aws-sam-cli/releases/latest/download/aws-sam-cli-linux-x86_64.zip -o aws-sam-cli-linux-x86_64.zip
unzip aws-sam-cli-linux-x86_64.zip -d sam-installation
sudo ./sam-installation/install
where sam
sam --version
@doleron
doleron / ECLiPSe_prolog_install.md
Last active May 8, 2024 16:46
Installation of ECLiPSe prolog interpreter

This instructions are intended to run on any linux debian, using Ubuntu 20.04 here.

The ECLiPSe prolog website is https://eclipseclp.org/index.html

Disclaimer: ECLiPSe prolog is not Eclipse IDE !

pre flight

as usual, update the machine

@Klerith
Klerith / pasos-node-ts-jest.md
Created August 19, 2023 18:35
Note + TypeScript + Jest = Testing

Pasos para configurar Jest con TypeScript, en Node

Documentación oficial sobre Jest

  1. Instalaciones de desarrollo (super test es útil para probar Express)
npm install -D jest @types/jest ts-jest supertest
@dasdo
dasdo / GIT.md
Last active May 8, 2024 16:44
Lista de Comandos en GIT

Configuración Básica

Configurar Nombre que salen en los commits

	git config --global user.name "dasdo"

Configurar Email

	git config --global user.email dasdo1@gmail.com