Skip to content

Latest commit

 

History

8 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Girly Loading Messages

A tiny Spring Boot API serving randomized cute and girly loading messages.

Purpose

Girly Loading Messages is a small reusable API that replaces boring Loading... text with cute, playful loading messages.

Examples:

  • ✨ Adding a little extra sparkle...
  • 💖 Collecting virtual hugs and kisses...
  • 🎀 Tying up the final cute bows...
  • 💅 Main character energy loading...
  • 👑 Adjusting our virtual tiara...
  • 🎨 Painting the screen pink...

Tech Stack

  • Java 21
  • Spring Boot
  • Maven
  • Spring Web

How to Use

Start the API:

mvn spring-boot:run

Then make a GET request:

GET http://localhost:8080/loading-message

Response (always this shape, message text varies):

{
  "message": "🎀 Tying up the final cute bows..."
}

Using It From Another Application

Any application capable of making HTTP requests can consume the API.

For example:

HttpClient client = HttpClient.newHttpClient();

HttpRequest request = HttpRequest.newBuilder()
        .uri(URI.create("http://localhost:8080/loading-message"))
        .GET()
        .build();

HttpResponse<String> response =
        client.send(request, HttpResponse.BodyHandlers.ofString());

System.out.println(response.body());

This allows another application to fetch a fresh loading message whenever it needs one.

Use Cases

  • Loading screens
  • Personal projects
  • Demo applications
  • Developer tools
  • Fun UI experiments

Why I Built This

A deliberately silly JavaLabs.io experiment focused on building a small reusable REST API around a fun idea.

JavaLabs.io

Part of JavaLabs.io, a collection of Java-first experiments focused on building reusable components and backend systems.

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages