Backend Developer • Laravel Enthusiast • Software Engineer
🌐 My Website • 📧 Email • 💻 GitHub
Hi there! I'm Juan Guerrero, a passionate backend developer from Colombia 🇨🇴.
I specialize in building robust, scalable, and elegant APIs using modern tools and clean architecture.
I love solving complex backend problems and improving performance in real-world applications.
When I'm not coding, I'm either training my body, studying philosophy and spirituality, or solving a Rubik's cube faster than most people can blink. 🧊
- Languages: PHP, Java, Python, SQL, HTML, CSS
- Frameworks: Laravel, Spring Boot, Bootstrap, jQuery
- Databases: PostgreSQL, MySQL
- Tools: Git, Redis, Docker, GitHub Actions, WSL2, Nginx, REST APIs, Queues
<?php
function buildProfile(array $skills, int $depth = 0): void
{
$indent = str_repeat(" ", $depth);
foreach ($skills as $key => $value) {
if (is_array($value)) {
echo "{$indent}$key:\n";
buildProfile($value, $depth + 1);
} else {
echo "{$indent}- $value\n";
}
}
}
$profile = [
'Name' => 'Juan Guerrero',
'Roles' => ['Backend Developer', 'Engineer', 'SpeedCuber'],
'Tech Stack' => [
'Languages' => ['PHP', 'Java', 'Python', 'SQL'],
'Frameworks' => ['Laravel', 'Spring Boot'],
'Tools' => ['Git', 'Docker', 'Redis', 'WSL2']
]
];
buildProfile($profile);

