Profile picture Jorge Thomas

Jorge Thomas

Programmer & Gamer

Caracas, Venezuela

๐Ÿš€ Venezuelan full-stack developer crafting robust web solutions with Docker containers and Laravel magic. When I'm not building sleek admin panels with Filament or optimizing PostgreSQL queries, you'll find me ๐ŸŽฎ gaming or tinkering with self-hosted infrastructure. My homelab is my playground! ๐Ÿ โšก

$ composer connect
Initializing...
Ready to connect.
Waiting for contact request...
$ status --check-all
โ— All systems operational
<?php

class Developer {
    public string $name;
    public array $skills;
    public array $interests;
    
    public function __construct(string $name, array $skills, array $interests) {
        $this->name = $name;
        $this->skills = $skills;
        $this->interests = $interests;
    }
}

class TechStack {
    public array $devOps;
    public array $backend;
    public array $frontend;
    
    public function __construct(array $devOps, array $backend, array $frontend) {
        $this->devOps = $devOps;
        $this->backend = $backend;
        $this->frontend = $frontend;
    }
}

$techStack = new TechStack(
    devOps: [
        'GitHub',
        'Cloudflare',
        'Docker'
    ],
    frontend: [
        'JavaScript',
        'TypeScript',
        'TailwindCSS',
        'Astro',
        'Svelte',
        'React',
        'Markdown'
    ],
    backend: [
        'Laravel',
        'Filament',
        'Bun',
        'PHP',
        'Redis',
        'SQLite',
        'PostgreSQL'
    ]
);

// Developer profile
$me = new Developer(
    name: 'Jorge Thomas',
    skills: array_merge(
        $techStack->devOps,
        $techStack->backend,
        $techStack->frontend
    ),
    interests: [
        'Open Source',
        'Security',
        'Privacy',
        'Performance',
        'Self-Hosting',
        'Networking'
    ]
);

// Contact function
function contact(string $type): string {
    return match($type) {
        'github' => 'https://github.com/akrista',
        'linkedIn' => 'https://www.linkedin.com/in/akrista',
        'email' => '[email protected]',
        default => 'Send a message.'
    };
}

?>

Let's Build Something Great Together

๐Ÿ‡ป๐Ÿ‡ช Venezuelan full-stack developer passionate about creating robust web solutions with modern infrastructure. I help businesses, startups, and individuals build scalable applications, optimize workflows, and leverage self-hosted technologies.

๐Ÿš€ What I Offer

๐Ÿณ Docker & Containerization

Scalable container orchestration and microservices architecture for modern applications.

โšก Laravel & Filament Development

Full-stack web applications with sleek admin panels and robust backend systems.

๐Ÿ—„๏ธ PostgreSQL Optimization

Database design, query optimization, and performance tuning for high-traffic applications.

๐Ÿ  Self-Hosting & Infrastructure

Custom homelab setups, private cloud solutions, and infrastructure automation.

๐Ÿ”’ Security & Performance Audits

Make your applications faster, more secure, and reliable with comprehensive reviews.

๐ŸŽฏ Technical Consulting

Architecture decisions, technology stack recommendations, and best practices guidance.

๐Ÿ’ก Why Work With Me?

  • โ–ธ Full-stack expertise across frontend, backend, DevOps, and infrastructure automation
  • โ–ธ Deep understanding of security, performance, and privacy best practices
  • โ–ธ Passionate about open source, self-hosting, and cutting-edge cloud technologies
  • โ–ธ Focused on scalable and maintainable solutions tailored to your specific needs
  • โ–ธ Gaming mindset - I approach problems strategically and love optimizing systems

Ready to start your next project?

Whether you need a developer, consultant, or technical strategist, let's discuss how I can help bring your ideas to life.

Rockery

My blog and digital garden, where I share my thoughts and experiences.

Visit my rockery

Selfhost Resources

A collection of resources to help you build your own homelab.

Build your homelab

Venezuelan Georeference Tools

A set of json files to georeference Venezuelan maps.

Get the files

Terminal Course

A course about the terminal and how to use it to be more productive.

Learn more

Steam Mini Profile

A simple web app to display your Steam profile information.

See it in action

Wakfu Music Extractor

A tool to extract music from the game Wakfu.

Get the code