Skip to content

Instantly share code, notes, and snippets.

View alaindeurveilher's full-sized avatar

Alain D'EURVEILHER alaindeurveilher

  • Akkodis
  • Brussels, Belgium
View GitHub Profile
@leo6104
leo6104 / translate.pipe.ts
Last active May 16, 2024 07:30
Angular Translate library with Signal API (for optimized rendering performance)
import {
computed,
effect,
Inject,
Injectable,
Pipe,
PipeTransform,
PLATFORM_ID,
signal,
SkipSelf
@nicoavila
nicoavila / docker-compose.yml
Last active October 14, 2024 22:17
Docker Compose file for a MySQL 5.7 container
version: '3.3'
services:
database:
image: mysql:5.7
container_name: mysql
restart: always
environment:
MYSQL_DATABASE: 'db'
MYSQL_USER: 'user'
MYSQL_PASSWORD: 'password'