Skip to content

Instantly share code, notes, and snippets.

View MiguelMateoTavarez's full-sized avatar
🎯
Focusing

Miguel Mateo MiguelMateoTavarez

🎯
Focusing
  • BitBox Caribe SRL
  • Dominican Republic
  • 20:58 (UTC -04:00)
  • X @MiguelMateoT
View GitHub Profile
@MiguelMateoTavarez
MiguelMateoTavarez / docker-compse-mongo-nest.txt
Last active December 28, 2023 18:46
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)