Skip to content
View Be00wulf's full-sized avatar
🏠
Working from home
🏠
Working from home
  • G&R
  • Quetzaltenango

Block or report Be00wulf

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
Be00wulf/README.md

Hi, I'm Majo an artist and IT student from Suchitepéquez, Guatemala 🇬🇹

Note: "Never stop learning" 😄

Visit my Projects Documentation and Landing Page

Landing Page

Currently Listening Mood
Spotify octocat-anime
Majo banner

Life:

import java.util.*;

public class ArtisticBalance {

   private static class ArtisticData {
       String element;
       String advice;

       ArtisticData(String element, String advice) {
           this.element = element;
           this.advice = advice;
       }
   }

   private static final Map<String, ArtisticData> THEMES = new HashMap<>();
   private static final Random RANDOM = new Random();

   static {
       THEMES.put("Drawing", new ArtisticData("[Pencil]", "Sketch daily to sharpen your observation skills."));
       THEMES.put("Painting", new ArtisticData("[Palette]", "Play with colors—don't be afraid to mix unexpected shades."));
       THEMES.put("Literature", new ArtisticData("[Book]", "Write something short today; even a single line counts."));
       THEMES.put("Music", new ArtisticData("[Note]", "Listen to new genres and try to replicate their rhythm."));
   }

   public static String balanceCreativeTasks(String task, String theme) {
       ArtisticData data = THEMES.get(theme);

       if (data == null) {
           List<String> keys = new ArrayList<>(THEMES.keySet());
           String randomTheme = keys.get(RANDOM.nextInt(keys.size()));
           data = THEMES.get(randomTheme);
           return String.format(
               "Task: %s %s%nAdvice (Theme: %s): %s",
               task, data.element, randomTheme, data.advice
           );
       }

       return String.format("Task: %s %s%nAdvice: %s", task, data.element, data.advice);
   }

   public static void main(String[] args) {
       System.out.println(balanceCreativeTasks("Work on creative projects", null));
       System.out.println(balanceCreativeTasks("Write a poem", "Literature"));
       System.out.println(balanceCreativeTasks("Practice piano", "Music"));
   }
}

⚡ Recent activity

  1. ⬆️ Pushed undefined commit(s) to Be00wulf/mj-ba.github.io
  2. ⬆️ Pushed undefined commit(s) to Be00wulf/mj-ba.github.io
  3. ⭐ Starred azure-ad-b2c/samples
  4. ⭐ Starred luisruval/AzureADB2C
  5. ⬆️ Pushed undefined commit(s) to Be00wulf/HidroDia_AI

Last Updated: Tuesday, December 9th, 2025, 1:41:35 PM

Pinned Loading

  1. p4_ASP.NET p4_ASP.NET Public

    Pruebas en ASP.NET con C# calculadora, menu y registro

    JavaScript 1

  2. GyRb GyRb Public

    GyR/Eventory is a website made in ASP.NET CORE MVC 8.0 and SQL Server using a theme from StartBootstrap. Based on FineBlog from @saileshrijal course

    CSS

  3. mj-ba.github.io mj-ba.github.io Public

    Landing personal y bitácoras de aprendizaje

  4. HidroDia_AI HidroDia_AI Public

    Modelo IA con componentes de diario/historial enfocado en medicina y especializado en hidrocefalia

    Python

  5. poemasConflicto poemasConflicto Public

  6. PrinTicket_Eventory PrinTicket_Eventory Public

    Impresion de tickets para Eventory

    C#