Hey, Madike Yade here! 
import java.util.List;
public class MadikeYade {
private String user = "Madike Yade";
private String currentWork = "Writing code & Automating the planet 🌍";
private List<String> hobbies = List.of(
"🎮 Gaming (ranked mode only)",
"⚽ Playing football in Dakar heat",
"🔥 Watching Anime (training arc mentality)",
"🌙 Being up all night chasing THAT one bug..."
);
public String getCity() {
return "Dakar, Senegal 🇸🇳";
}
public void ambitions() {
writeCode();
automateStuff();
buildCoolStuff();
conquerTheDevWorld();
}
private void writeCode() {
System.out.println("💻 Writing clean, scalable & powerful code...");
}
private void automateStuff() {
System.out.println("⚙️ Automating everything that moves (and even what doesn't)...");
}
private void buildCoolStuff() {
System.out.println("🚀 Building cool projects that actually solve problems...");
}
private void conquerTheDevWorld() {
System.out.println("👑 Future DevOps Architect loading...");
}
public void introduce() {
System.out.println("Hey 👋 I'm " + user);
System.out.println("Currently: " + currentWork);
System.out.println("Based in: " + getCity());
System.out.println("Hobbies: " + hobbies);
}
public static void main(String[] args) {
MadikeYade madike = new MadikeYade();
madike.introduce();
madike.ambitions();
}
}
# Assume 10 more awesome ambitions here ;)locals {
user = "Madike Yade"
title = "Full-Stack Dev ⚡ DevOps Enthusiast"
city = "Dakar, Senegal 🇸🇳"
current_work = "Building infra + writing code + breaking & fixing prod"
hobbies = [
"Gaming 🎮",
"Football ⚽",
"Anime Training Arc Mode 🔥",
"Debugging at 2AM like a warrior 🌙"
]
ambitions = {
write_code = true
automate_stuff = true
build_cool_app = true
terraform_all = true
kubernetes_all = true
}
}
output "madike_profile" {
value = {
name = local.user
role = local.title
location = local.city
current_job = local.current_work
hobbies = local.hobbies
ambitions = local.ambitions
}
}
output "future_state" {
value = "🚀 DevOps Architect from Dakar is inevitable..."
}
- DevOps tool !!
- I'm currently working on 🔭 building Mobile Apps using React Native and working up on polishing my skills 🌱 in Competitive Programming.
My Resume- If you have any suggestions to this README, feel free to pull up a request. And if you liked it, go ahead and use it for yourself.(P.S. Star it too!! 😬 )



