Profile picture Timofei Utkin

Timofei Utkin

Full Stack Developer

Tokyo, Japan

Passionate web developer focused on creating clean, efficient, and scalable web applications with the help of AI.

$ astro dev
Generated 1ms
Syncing content
Synced content
Listening on http://localhost:4321
watching for file changes...
interface Developer {
    name: string;
    skills: string[];
    interests: string[];
};

interface TechStack {
    devOps: string[];
    backend: string[];
   frontend: string[];
};

type ContactType = 'github' | 'instagram' | 'linkedIn' | 'email';

const techStack: TechStack = {
    devOps: [
        'GitHub',
        'AWS',
        'Docker'
    ],
    frontend: [
        'Vue.js',
        'Nuxt.js',
        'React',
        'Next.js',
        'TypeScript',
        'TailwindCSS',
        'Astro',
    ],
    backend: [
        'Node.js',
        'Python',
        'Ruby',
        'AWS Serverless',
    ]
};

// Developer profile
const me: Developer = {
    name: 'Timofei Utkin',
    skills: [
        ...techStack.devOps,
        ...techStack.backend,
        ...techStack.frontend
    ],
    interests: [
        'AI',
        'Software Development',
        'Automation',
        'DevOps',
        'Security',
    ]
};

// Contact function
const contact = (type: ContactType): string => {
    switch (type) {
        case 'github':
            return 'https://github.com/MrHarigo';
        case 'instagram':
            return 'https://www.instagram.com/harigo_world';
        case 'linkedIn':
            return 'https://www.linkedin.com/in/timofei-utkin/';
        case 'email':
            return 'hi@harigo.me';
        default:
            return 'Send fax.';
    }
};

Minimalist Portfolio

A portfolio website built with Astro. It features a clean, responsive design and is easy to update and customize.

Daily Habits

A minimal habit tracker for working days. Features streak tracking, Japanese holiday support, and WebAuthn passkey authentication.

Poker Planner

A web app to plan and organize poker games with friends. Features passcodes, availability selection, rate preferences, and an admin dashboard.

Undisclosed Poker Project

A website for sharing poker hands that happened in real life.

AWS Certified Cloud Practitioner

AWS Certified Cloud Practitioner

Amazon Web Services (AWS)

Issued Oct 2025 · Expires Oct 2028

Credential ID: f28a135811694ce59ad3083b90e5995a

Show credential
日本語能力試験1級 (JLPT N1)

日本語能力試験1級 (JLPT N1)

Japanese Language Proficiency Test

Issued Jul 2025

Credential ID: N1A331404J

Built with Astro by Harigo