Full-Stack Developer & Cloud Infrastructure Specialist
Software Developer specializing in Oracle technologies and modern web development. Currently building scalable applications with React/Node.js while deepening expertise in PL/SQL and cloud infrastructure. Passionate about automation, security, and clean code architecture.
Primary Focus: Oracle Database Development | Full-Stack Web Applications | DevOps Automation
interface Developer {
name: string;
location: string;
currentlyLearning: string[];
workingOn: string[];
expertise: string[];
techStack: {
frontend: string[];
backend: string[];
database: string[];
cloud: string[];
};
}
const isaac: Developer = {
name: "Isaac Sebastian Guerra",
location: "Ecuador 🇪🇨",
currentlyLearning: [
"Advanced PL/SQL & Oracle Forms",
"Cloud Architecture Patterns",
"DevSecOps & Kubernetes"
],
workingOn: [
"Enterprise Oracle Forms Migration",
"React Dashboard with Real-time Analytics",
"Automated CI/CD Pipeline with GitLab"
],
expertise: [
"Full-Stack Development",
"Database Architecture & Optimization",
"Process Automation & Workflow Design"
],
techStack: {
frontend: ["React", "Next.js", "TypeScript", "Tailwind CSS"],
backend: ["Node.js", "NestJS", "Python", "Oracle PL/SQL"],
database: ["Oracle", "PostgreSQL", "MongoDB", "Redis"],
cloud: ["Google Cloud", "Docker", "Kubernetes", "Linux"]
}
};

