Skip to content

Instantly share code, notes, and snippets.

View MiguelMateoTavarez's full-sized avatar

Miguel Mateo MiguelMateoTavarez

  • BitBox Caribe SRL
  • Dominican Republic
  • 01:56 (UTC -04:00)
View GitHub Profile
@MiguelMateoTavarez
MiguelMateoTavarez / medium-dbdiagram.txt
Created January 9, 2026 19:35 — forked from Klerith/medium-dbdiagram.txt
Creación del diagrama de la base de datos
Table users {
user_id integer [pk, increment]
username varchar [not null, unique]
email varchar [not null, unique]
password varchar [not null]
name varchar [not null]
role varchar [not null]
gender varchar(10) [not null]
@MiguelMateoTavarez
MiguelMateoTavarez / docker-compse-mongo-nest.txt
Last active December 21, 2025 02:26
docker-compose for mongo and mongo-express
version: "3"
services:
mongo:
container_name: ${MONGO_DB_NAME}
image: mongo:6.0
volumes:
- poke-vol:/data/db
ports:
- ${MONGO_HOST_PORT}:${MONGO_CONTAINER_PORT}
@MiguelMateoTavarez
MiguelMateoTavarez / php-example
Last active December 22, 2023 23:23
Ejemplo responsabilidad única
<?php
enum Gender: int
{
case MALE = 1;
case FEMALE = 2;
case OTHER = 3;
static public function getName($value): string
{

Learning Plan for Test Driven Development (TDD)

These learning resources primarily focus on Test Driven Development (TDD).

  • There is an emphasis on learning using PHP, Laravel and PHPUnit.
  • All these resources are free (at the time of writing)