Profile picture Raghav Thakur

Raghav Thakur

Software Engineer

Vancouver, Canada

Engineer and founder of Realta.io with a history of building large-scale distributed systems at Amazon.

$ npx connect
Initializing...
Ready to connect.
Waiting for contact request...
interface Developer {
    name: string;
    skills: string[];
    interests: string[];
};

interface TechStack {
    languages: string[];
    systems: string[];
    tools: string[];
    roles: string[];
};

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

const techStack: TechStack = {
    languages: [
        'Java',
        'Python',
        'C/C++',
        'C#',
        'TypeScript',
        'JavaScript',
        'HTML/CSS'
    ],
    systems: [
        'AWS',
        'Azure',
        'S3',
        'DynamoDB',
        'ElasticSearch',
        'MySQL',
        'MongoDB'
    ],
    tools: [
        'Node.js',
        'React',
        'Git',
        'CI/CD',
        'JUnit',
        'Docker',
        'VM',
        'Unix CLI'
    ],
    roles: [
        'Backend',
        'Full-Stack',
        'DevOps',
        'Agile',
        'Project Management',
        'Scrum Master',
        'Team Lead'
    ]
};

// Developer profile
const me: Developer = {
    name: 'Raghav Thakur',
    skills: [
        ...techStack.languages,
        ...techStack.systems,
        ...techStack.tools,
        ...techStack.roles
    ],
    interests: [
        'Distributed Systems',
        'Machine Learning',
        'Deep Learning',
        'LLMs',
        'Open Source'
    ]
};

// Contact function
const contact = (type: ContactType): string => {
    switch (type) {
        case 'github':
            return 'https://github.com/raghavthakur';
        case 'linkedin':
            return 'https://www.linkedin.com/in/raghavthakur';
        case 'email':
            return 'raghavthakur.dev@gmail.com';
        default:
            return 'Send fax.';
    }
};

InvestoBull

Stock price prediction web app.

Open Project Website

Portfolio

Personal website.

Open Project Website

Realta

AI-powered SaaS platform for property investors.

Open Project Website

Contagion

A zombie outbreak containment game developed with Rust.

Open Project Website

Windows Keylogger

C++ App that tracks and records keystrokes silently.

Open Project Website

Cubethon

C++ App that tracks and records keystrokes silently.

Open Project Website