Skip to content
View axelhamil's full-sized avatar
πŸ₯–
πŸ₯–

Organizations

@EIAxelHamilcaro

Block or report axelhamil

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
axelhamil/README.md

Axel Hamilcaro

Turning founder ideas into production-ready code

Website Links LinkedIn Twitter


const axel = {
  role: "Fullstack TypeScript Developer",
  focus: ["Clean Architecture", "Domain-Driven Design", "MVP Development"],
  stack: {
    frontend: ["React", "React Native", "Next.js"],
    backend: ["Node.js", "NestJS", "Express"],
    philosophy: "Hexagonal all the way πŸ”·"
  },
  currentMission: "Helping founders launch fast without the tech debt hangover",
  location: "France πŸ‡«πŸ‡· β†’ Remote worldwide 🌍",
  funFact: "Probably coding with a German Shepherd at my feet πŸ•"
};

πŸ§ͺ This repo = playground for experiments & side projects

πŸ’Ό Serious work β†’ EIAxelHamilcaro



Got a SaaS idea? Let's talk architecture. πŸ’¬

Pinned Loading

  1. CleanStack CleanStack Public template

    πŸš€ Ship like Lovable, but with code you're not ashamed of. Clean Architecture + 90% test coverage, generated overnight.

    TypeScript 11 1

  2. vinted-ai-assistant vinted-ai-assistant Public

    πŸ›οΈ Chrome extension that uses AI to analyze Vinted listings - get opportunity scores, market price estimates, negotiation scripts, and resale recommendations in real-time.

    TypeScript

  3. axelhamilcaro.com axelhamilcaro.com Public

    πŸ’Ό Full-featured personal website with admin dashboard to track visitors, monitor traffic sources, analyze page performance, create dynamic lead capture forms and send automated email responses.

    TypeScript

  4. Rust-inspired Option Type for TypeSc... Rust-inspired Option Type for TypeScript
    1
    /**
    2
     * Implementation of Rust-like Option type in TypeScript
    3
     */
    4
    export abstract class Option<T> {
    5
      /**
  5. πŸš€ Raspberry Pi Zero 2 W – Headless S... πŸš€ Raspberry Pi Zero 2 W – Headless Setup Guide (with Static IP) and Pi Hole
    1
    
                  
    2
    [![Raspberry Pi](https://img.shields.io/badge/Raspberry%20Pi-Zero%202%20W-red?logo=raspberrypi)](https://www.raspberrypi.com)
    3
    [![OS](https://img.shields.io/badge/OS-Raspberry%20Pi%20OS%20Lite%20(64--bit)-blue)](https://www.raspberrypi.com/software/)
    4
    [![SSH Ready](https://img.shields.io/badge/SSH-enabled-green)](#)
    5
    
                  
  6. Rust-inspired Result Type for TypeSc... Rust-inspired Result Type for TypeScript
    1
    /**
    2
     * Represents the result of an operation, which can be either a success or a failure.
    3
     * This pattern is useful for explicit error handling and chaining operations.
    4
     * @template T The type of the value on success.
    5
     * @template E The type of the error on failure (default: string).