Skip to content
View Joel252's full-sized avatar

Block or report Joel252

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Joel252/README.md
import random
import time

class DevBienvenida:
    def __init__(self):
        self.nombre = "Joel Cruz"
        self.usuario = "Joel252"
        self.stack = [".NET", "Python", "React", "SQL", "AWS", "Terraform"]
        self.location = "Chetumal, México 🇲🇽"

    def __str__(self):
        return f"👋 ¡Hola! Soy {self.nombre} (@{self.usuario})\n" \
               f"💻 Stack: {', '.join(self.stack)}"

    def boot(self):
        for _ in range(3):
            print("🔄 Inicializando perfil...", end="\r")
            time.sleep(1)
        print(self)

if __name__ == "__main__":
    yo = DevBienvenida()
    yo.boot()

Pinned Loading

  1. terraform-ecs-ci terraform-ecs-ci Public

    Infrastructure provisioning template for applications with Terraform on AWS ECS-EC2.

    HCL

  2. gitlab-config gitlab-config Public

    Docker Compose template to setup GitLab CE + Runner.

    Ruby

  3. aws-notification-service aws-notification-service Public

    Serverless notification system on AWS with API Gateway + Lambda + SNS/SES using message templates.

    JavaScript

  4. e-commerce-microservices e-commerce-microservices Public

    Example of e-commerce designed with a microservices-based architecture.

    C#