Skip to content

Instantly share code, notes, and snippets.

View aurelioo29's full-sized avatar
🎹
Enjoyyy

Aurelio aurelioo29

🎹
Enjoyyy
View GitHub Profile
@aurelioo29
aurelioo29 / docker-compose.yml
Created July 31, 2024 11:03 — forked from Da9el00/docker-compose.yml
How to create a docker-compose setup with PostgreSQL and pgAdmin4
version: "3.8"
services:
db:
container_name: postgres_container
image: postgres
restart: always
environment:
POSTGRES_USER: root
POSTGRES_PASSWORD: root
POSTGRES_DB: test_db
@aurelioo29
aurelioo29 / datetime.inc
Created August 9, 2023 14:28 — forked from ohmypxl/datetime.inc
Simple get current date, nothing fancy.
/*
@Title: Datetime Script 1.0
@Author: Aiura
@License: MIT
@Date: February 24th, 2023
Feel free to copy and paste the code, but don't forget to put the credits at the top of the function
- Aiura
*/