Alexson.ai
Available for U.S. Based Contracts

Designing Cloud-Native Systems & AI Workflows

Senior Software Engineer with 7+ years of experience building resilient, highly accessible full-stack applications. Specialized in TypeScript, Next.js, Go, AWS, GCP, and agentic integrations with Claude AI & n8n.

7+ Years Experience
100% Cloud-Native Focus
10x Automation Velocity
agent-orchestrator.sh
guest@alexson.ai:~$ curl -s https://api.alexson.ai/quick-status
{ "status": "online", "location": "Doral, FL / Remote", "core_stack": ["React/Next.js", "Node.js", "Golang", "PostgreSQL", "AWS"], "ai_focus": ["n8n-workflows", "LLM-APIs", "Agentic-Autonomy"] }
Trigger AI Orchestrator workflow instantly:
Autonomous Sandbox

The Interactive AI Hub

Experience agentic technology firsthand. Talk to Alexson's virtual persona or trigger visual n8n automation pipelines to audit his resume.

Alexson AI v2.4 Active & ready to query
Hello! I'm the AI Assistant representation of Alexson Coelho. I'm equipped with his full resume, technical design values, and career history.

You can type any question or tap a direct action pill below!
n8n_agent_orchestrator.json Idle
Webhook
Ready
Get Profile
Standby
Claude 3.5 Sonnet
Standby
Deliver Response
Standby
Active Execution Log
> System initialized. Waiting for user command directive.
Featured Systems Architecture

Production Showcase

Exploring end-to-end cloud infrastructure, API designs, and state machines engineered for strict production reliability.

Active System Cloud Backend

DeadMan Cloud

Reliable inactivity-triggered notifications

The Problem:

“How do you notify someone if a person or system stops checking in?” DeadMan Cloud solves this switch workflow simply and humanly.

TypeScript Node.js Express Prisma PostgreSQL Docker Cloud Run Cloud SQL SendGrid Terraform GitHub Actions
Client Consumer HTTPS Switch Actions
Cloud Scheduler Cron Expiration Poll
Cloud Run API Express (Stateless)
Cloud SQL PG Prisma DB State
SendGrid Email SMTP / Event Webhook

What Was Built

Create Switch

API endpoint to register new switch items with customized expiration intervals and alert recipient details.

Check In

Single lightweight call resetting the countdown clock, preventing premature switch triggers.

Get Switch Status

View current status, timestamp records, and direct countdown info for debugging.

Update/Delete Switch

CRUD endpoints supporting secure configuration modifications or switch deletion requests.

Force Trigger for Testing

Bypasses expiration timers to instantly fire alert notifications and verify delivery channels.

Worker-Driven Expiration

A secondary scheduling logic worker checking active switch thresholds and queuing alerts.

Email Sending

Integrated SendGrid transactional client delivering responsive notification emails.

Execution & Audit Logs

Persistent database records tracking all state shifts, checks, and webhook-reported email failures.

Senior Engineering Decisions

01
Stateless Execution Model

Containerized Cloud Run node services remain completely stateless. Scales horizontally instantly without complex orchestration clusters.

02
PostgreSQL Persistence

Uses Cloud SQL PostgreSQL instead of in-memory caching to enforce strict data durability for critical life/safety events.

03
State Machine & Idempotency

Explicit ACTIVE → TRIGGERED transitions. Prevents duplicate email triggers when worker runs collide.

04
Audit Trails

Immutable logging records write check-ins, expiration triggers, email dispatches, and delivery hook failures securely.

05
Docker & Terraform Infrastructure

Entire system containerized and GCP resources declared with Terraform. Creates reproducible, environments in seconds.

06
Structured Cloud Logging

All application code implements JSON format logs. Cloud Run streams logs directly to GCP Cloud Logging for query indexation.

Architectural Roadmap

A listing of near-future enhancements designed to support enterprise-grade switch triggers.

A
Redis Distributed Locks

Secures scanning operations, ensuring only one worker instance handles database scans at any given time slot.

B
Pub/Sub Trigger Queue

Decouple email delivery from state transition checks. Handles network failures gracefully via independent message workers.

C
Retry with Exponential Backoff

Handles SendGrid connection disruptions or API throttles dynamically without discarding client events.

D
Multi-Recipient alerts & SAML SSO

Enables multiple escalations pathways for teams and integrates RapidIdentity for internal dashboards protection.

Active System Graph Algorithms & API

RouteIQ

Cloud-native route optimization API

The Problem:

“How do you calculate optimized routes over complex transit networks without heavy library overhead or caching lags?” RouteIQ implements custom graph structures and Dijkstra algorithms with rapid serverless scale.

TypeScript Node.js Fastify Prisma PostgreSQL Redis Docker Cloud Run Memorystore
Client Consumer REST API Requests
Fastify Run API GCP Cloud Run
Memorystore Redis Route Cache (TTL)
Cloud SQL PG Prisma Graph Model

What Was Built

Weighted Directed Graph

Models complex transportation topologies, mapping custom locations as nodes and roads as weighted, unidirectional edges.

Dijkstra Shortest Path

Computes path routing dynamically using a custom heap-based priority queue for minimal execution overhead.

Redis Route Caching

Accelerates repetitive queries by caching path coordinates in Redis, slashing calculation times to sub-millisecond rates.

Active Cache Invalidation

Monitors map structure updates. Automatically purges matching cache segments on graph edge/node updates to keep routes fresh.

API Key Validation Gate

Restricts admin routes and queries. Secures API mutation gateways against arbitrary public traffic.

Mermaid Graph Visualization

Features a /graph/view visual dashboard rendering real-time maps dynamically into Mermaid.js format diagrams.

Local Docker Stack

Local configuration bundling Node API, PostgreSQL, and Redis containers for rapid localized developer trials.

Cloud Run Deployment Spec

Documented serverless architecture details linking Cloud Run, SQL databases, and Memorystore Redis.

dijkstra.ts
export function dijkstra(graph: Graph, start: string, target: string) {
  const distances = new Map<string, number>();
  const previous = new Map<string, string>();
  const pq = new MinHeapPriorityQueue<string>();

  distances.set(start, 0);
  pq.insert(start, 0);

  while (!pq.isEmpty()) {
    const current = pq.extractMin();
    if (current === target) break;

    const currentDist = distances.get(current) ?? Infinity;

    for (const edge of graph.getNeighbors(current)) {
      const newDist = currentDist + edge.weight;
      if (newDist < (distances.get(edge.to) ?? Infinity)) {
        distances.set(edge.to, newDist);
        previous.set(edge.to, current);
        pq.insert(edge.to, newDist);
      }
    }
  }

  return reconstructPath(previous, target, distances.get(target));
}
POST https://api.routeiq.dev/v1/routes/optimize
Request Payload:
{
  "sourceNode": "Downtown_A",
  "targetNode": "Airport_E",
  "algorithm": "dijkstra"
}
Response Payload:
{
  "status": "success",
  "cached": false,
  "data": {
    "path": ["Downtown_A", "Midtown_B", "North_D", "Airport_E"],
    "totalWeight": 14.5,
    "executionMs": 0.42
  }
}
Recruiter Tool

Check Alexson's Compatibility for Your Role

Type the skills needed for your project (e.g., "React, Go, AWS, n8n, Kubernetes") to calculate his technology fit instantly.

0% Standby
Enter your stack above to trigger a compatibility diagnosis.
Technical Capabilities

Core Software Engineering & Cloud Stack

AI & Automation

  • n8n AutomationSenior
  • LLM APIs (Claude/Gemini)Senior
  • Agent-Based WorkflowsSenior
  • API-Orchestrated AutomationsSenior

Frontend & UI

  • Next.js / ReactSenior
  • TypeScript / JSSenior
  • Angular & Vue.jsMid-Level
  • Design Systems & CSS3Senior
  • Accessibility (WCAG) & SEOSenior

Backend & Database

  • Node.js / ExpressMid-Level
  • GolangMid-Level
  • Prisma & Strapi CMSMid-Level
  • PostgreSQL & MySQLMid-Level
  • Redis & API GatewaysMid-Level

Cloud & Infra

  • AWS (EKS, RDS, S3, IAM)Mid-Level
  • GCP (Cloud Run, Jobs)Mid-Level
  • Azure (AKS, App Service)Foundational
  • Vercel DeploymentsSenior

System Design

  • Distributed SystemsMid-Level
  • Horizontal ScalingMid-Level
  • Load Balancers / ReplicasMid-Level
  • Fault Isolation & SecurityMid-Level

DevOps & Observability

  • Docker & KubernetesMid-Level
  • GitHub Actions CI/CDMid-Level
  • Blue/Green DeploymentsMid-Level
  • CloudWatch & ObservabilityMid-Level
Professional Experience

A Proven Record of Scale

7+ years architecting critical platforms, moving from full-stack consulting to global multi-media enterprise scale, and pioneer agentic AI operations.

November 2025 – Present Remote

Senior Software Engineer

Lean Digital Agency

Building next-generation full-stack platforms and automated systems integrating cognitive AI workflows.

  • Led the design, development, and delivery of full-stack web applications using Next.js, Node.js, Prisma, PostgreSQL, and Strapi CMS.
  • Built reusable UI components and application features in Next.js, improving consistency, maintainability, and development velocity across projects.
  • Designed and maintained backend APIs, database schemas, and migration strategies while ensuring reliability, performance, and data integrity.
  • Developed **Python-based data processing and automation scripts** to transform, validate, and import large datasets into PostgreSQL databases.
  • Deployed and supported cloud-native services on Google Cloud Platform using **Cloud Run** and scheduled background processing with **Cloud Jobs**.
  • Integrated enterprise authentication and identity management solutions, including **RapidIdentity SAML-based Single Sign On (SSO)**.
  • Leveraged **Claude AI and LLM-powered workflows** to automate content operations and improve business process efficiency.
Next.js Node.js Claude AI Prisma GCP Cloud Run PostgreSQL
September 2022 – October 2025 Remote

Senior Software Engineer

Paramount

Co-architected cloud-native software systems on AWS supporting enterprise-scale editorial, sports, and multimedia workflows.

  • Designed and evolved cloud-native software systems on **AWS (EKS, EC2, RDS, S3, CloudFront, IAM, VPC, CloudWatch)** supporting editorial, sports, and multimedia workflows at enterprise scale.
  • Spearheaded backend development and maintenance using **PHP (Symfony)**, consistently shipping new features backed by comprehensive unit tests.
  • Built and maintained user-facing interfaces using **React, TypeScript, and Next.js**, emphasizing accessibility (WCAG), SEO, and consistent UX across platforms.
  • Developed and maintained a shared UI component library used across multiple applications, improving design consistency and frontend development velocity.
  • Designed backend services and APIs using **Golang and MySQL**, deployed via **AWS EKS** with horizontal autoscaling.
  • Integrated **Redis caching** and **RDS MySQL read replicas** to improve performance while maintaining predictable user experiences.
React TypeScript Golang AWS EKS Redis PHP Symfony
January 2019 – Present Remote

Freelance Software Engineer

Client Projects

Delivering bespoke client platforms, custom AI automation workflows, and interactive web tools.

  • Engineered a highly interactive, user-facing frontend dashboard for an **AI-powered content automation platform**, allowing users to intuitively configure topics and trigger workflows.
  • Built responsive, client-side interfaces integrated with backend APIs and **n8n-orchestrated AI agents**, prioritizing transparent automated processes and exceptional user experience (UX).
  • Implemented modern, accessible UI patterns and managed complex state across client projects, ensuring seamless frontend performance, error handling, and cross-browser compatibility.
n8n LLM APIs React State Management
October 2021 – September 2022 Miami, FL

Software Engineer

Inktel

Modernized call center applications, translating complex operational systems into highly efficient, elegant interfaces.

  • Architected and developed a modern **React frontend application** for call center operators, completely replacing the legacy Vicidial UI to significantly improve workflow efficiency and visual aesthetics.
  • Overcame the challenge of missing native Vicidial API endpoints by devising **custom integration and data-syncing strategies** to connect the modern frontend with the legacy telephony system.
  • Collaborated closely with business stakeholders to translate complex operational workflows into intuitive, streamlined UI experiences.
React REST APIs Telephony Integration UI/UX
August 2020 – September 2021 Remote

Full-Stack Software Engineer

4 Geeks Academy

Engineered robust learning portals and reliable server endpoints.

  • Engineered robust backend endpoints and RESTful APIs using **Python and Django**, focusing on secure data modeling, performance optimization, and reliable client-server communication.
  • Implemented **comprehensive unit tests** across the Django backend, ensuring high code coverage and safe, long-term product evolution.
  • Built full-stack features by connecting reliable backend services with clean, accessible **React UI components**.
React Python Django Unit Testing REST APIs
Academic & Specialized Work

Certifications & Credentials

AI Specialization Google

Google AI Specialization

Advanced series of 7 courses covering Deep Learning, LLM deployment, and predictive neural applications.

GenAI Google / Kaggle

Kaggle 5-Day Gen AI Intensive

Hands-on residency focusing on advanced fine-tuning, retrieval augmented generation (RAG), and agentic workflows.

Cloud Architecture Amazon Web Services

AWS Cloud Practitioner

Certified foundation in cloud architecture principles, infrastructure security, and core computing services.

System Design Meta / Coursera

Backend Engineering & System Design

Rigorous system modeling, distributed scaling networks, database replicas, and concurrency management.

Automation Professional Course

Automation & AI Workflows with n8n

Expert level certification for advanced node design, sub-agent spawning, dynamic API mapping, and custom handlers.

Full Stack 4 Geeks Academy

Full-Stack Software Engineering

Intensive project-based development covering modern state engines, MVC architectures, and data design.

Deploy Your Next AI System

Whether you need to scale cloud infra on EKS, build accessible React apps, or design autonomous LLM agent processes in n8n, let's build something epic.

Direct Email: Click to reveal email
Location: Remote US
outreach-dispatcher.sh Coming Soon