Skip to content
View RodrigoSCoutinho's full-sized avatar
:octocat:
:octocat:
Block or Report

Block or report RodrigoSCoutinho

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
RodrigoSCoutinho/README.md

[~] $ whoami

What's up, I'm Rodrigo.

Software Enginner from Brazil, I turn lines of code into experiences that shape the future.
  • 🔭 I currently work with microservices in Java.
  • 💬 Ask me about Computer Architecture.
  • 💻 Information Systems at IFRN
#!/bin/bash

echo "Conectando à Cafeteria..."
echo "Bem-vindo, $USER!"

while true; do
  echo -e "\nMenu:\n1. Espresso\n2. Latte\n3. Cappuccino\n4. Mocha\n5. Macchiato\n6. Sair"
  read -p "Escolha seu café: " choice
  case $choice in
    1) echo "Espresso a caminho..." ;;
    2) echo "Latte a caminho..." ;;
    3) echo "Cappuccino a caminho..." ;;
    4) echo "Mocha a caminho..." ;;
    5) echo "Macchiato a caminho..." ;;
    6) echo "Saindo..." && exit 0 ;;
    *) echo "Opção inválida" ;;
  esac
  echo "Seu café está pronto! ☕"
done

Pinned

  1. medical-appointment medical-appointment Public

    backend of the medical appointment schedule.

    TypeScript 1

  2. api-postgresql api-postgresql Public

    API using golang, docker, postgresql.

    Go

  3. mvc-actuator mvc-actuator Public

    A Spring Boot-developed API features the implementation of a robust and customizable metrics dashboard using technologies such as Spring Boot Actuator, Prometheus, and Grafana.

    Java

  4. reactive-api reactive-api Public

    Project demonstrating the use of Spring's reactive stack (Webflux + R2DBC) compared to the servlet approach (Spring MVC). Both projects implement the same service: a user registration and listing A…

    Java

  5. spring-security-jwt spring-security-jwt Public

    spring security routes

    Java

  6. place-services place-services Public

    API para gerenciar lugares (CRUD) que faz parte desse desafio para pessoas desenvolvedoras backend.

    Java