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

Block or report Be00wulf

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. ⭐ Starred KittyKatt/screenFetch
  3. ⬆️ Pushed undefined commit(s) to Be00wulf/mj-ba.github.io
  4. ⬆️ Pushed undefined commit(s) to Be00wulf/mj-ba.github.io
  5. ⭐ Starred azure-ad-b2c/samples

Last Updated: Friday, January 2nd, 2026, 2:11:38 AM

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#