Skip to content
View CHINMAYVIVEK's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report CHINMAYVIVEK

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
chinmayvivek/README.md

Hey there, I’m Chinmay Vivek πŸ‘‹

πŸš€ Builder of fast AI products | Rustacean | Golang Lover | Python Enthusiast | PHP Dev


Let's connect and create something amazing together!

Website Β  LinkedIn


✨ Explore My Code Snippets & Experiments on Gist!

Gist Badge

Dive into my collection of mini-projects, useful snippets, and experiments. Perfect for quick inspiration or collaboration!


πŸ‘¨β€πŸ’» Who am I?

struct Developer {
    name: &'static str,
    what_i_do: &'static [&'static str],
    skills: &'static [(&'static str, &'static [&'static str])],
    connect_me: &'static [&'static str],
}

impl Developer {
    fn new(
        name: &'static str,
        what_i_do: &'static [&'static str],
        skills: &'static [(&'static str, &'static [&'static str])],
        connect_me: &'static [&'static str],
    ) -> Self {
        Self {
            name,
            what_i_do,
            skills,
            connect_me,
        }
    }

    fn print_profile(&self) {
        println!("\n=============================");
        println!("πŸ‘¨β€πŸ’»  Developer: {}", self.name);
        println!("=============================\n");

        println!("🎯 What I Do:");
        for &area in self.what_i_do {
            println!("  β€’ {}", area);
        }

        println!("\nπŸ› οΈ  Skills:");
        for &(category, tools) in self.skills {
            println!("  {}:", category);
            for &tool in tools {
                println!("    - {}", tool);
            }
        }

        println!("\nπŸ”— Connect with Me:");
        for &link in self.connect_me {
            println!("  {}", link);
        }

        println!("\n🀝 Let's connect and build something great together!\n");
    }
}

static WHAT_I_DO: &[&str] = &[
    "πŸš€ Helping Founders Build & Launch AI Products Fast",
    "🧠 Building with Go, Rust, Python, LLMs, GenAI, CV",
    "πŸ“ˆ From MVPs to Scalable Systems",
    "πŸ› οΈ Product Engineering with AI focus",
    "πŸ“Š AI/ML Consulting for Startups",
];

static SKILLS: &[(&str, &[&str])] = &[
    ("πŸ§‘β€πŸ’» Languages", &["Rust πŸ¦€", "Go 🐹", "Python 🐍", "PHP 🐘"]),
    ("πŸ“¦ Frameworks", &["Tauri", "Dioxus", "Gorilla Mux", "Flask", "FastAPI"]),
    ("πŸ—„οΈ Databases", &["MySQL", "MongoDB", "PostgreSQL"]),
    ("βš™οΈ DevOps", &["Docker 🐳", "Git", "Linux 🐧"]),
    ("🎨 Frontend", &["HTMX", "HTML/SCSS", "Bootstrap", "Tailwind CSS"]),
    ("🧠 AI/ML", &[
        "TensorFlow πŸ”¬", "PyTorch πŸ”₯", "Hugging Face πŸ€—",
        "OpenCV πŸ“Έ", "LangChain πŸ”—", "OpenAI GPT APIs 🧠",
    ]),
];

static CONNECT_ME: &[&str] = &[
    "🌐 Website: https://chinmayvivek.com",
    "πŸ’Ό LinkedIn: https://linkedin.com/in/chinmayvivek",
    "πŸ’» GitHub: https://github.com/chinmayvivek",
    "βœ‰οΈ Email: iam@chinmayvivek.com",
];
const NAME: &str = "Chinmay Vivek";

fn main() {
    let chinmay = Developer::new(NAME, WHAT_I_DO, SKILLS, CONNECT_ME);
    chinmay.print_profile();
}

πŸš€ Tech Stacks I Rock

Category Tools
Languages Rust, Golang, Python, PHP
Frameworks Tauri, Dioxus, Gorilla Mux, Flask, Fast API
Databases MySQL, MongoDB, PostgreSQL
DevOps Docker, Git, Linux
Frontend HTMX, HTML/SCSS, Bootstrap, Tailwind CSS
AI/ML TensorFlow, PyTorch, Hugging Face, OpenCV, LangChain, GPT APIs

Rust Golang Python PHP

Tauri Dioxus Gorilla Mux Flask FastAPI

MySQL MongoDB PostgreSQL

Docker Git Linux

HTMX HTML5 SCSS Bootstrap Tailwind CSS

TensorFlow PyTorch Hugging Face OpenCV LangChain GPT APIs


πŸ“Š GitHub Insights

Top Languages Most Commit Language


πŸ† GitHub Trophies

Trophies


✨ Show some ❀️ by starring repositories and connecting!


Pinned Loading

  1. liveClass liveClass Public

    LiveClass is a modern Learning Management System (LMS) designed to facilitate online education and virtual classroom management. This system provides a robust platform for educators and students to…

    HTML 3 1

  2. SwiftSchool SwiftSchool Public

    Swift School is a comprehensive school management system designed to streamline and enhance the administrative and academic processes within an educational institution.

    Go 1

  3. My-Office My-Office Public

    My Office is an ecmmerce project built on php 5.5 and mysql during my Graduation

    JavaScript 11 4

  4. rust-jpl rust-jpl Public

    The Rust JPL Ephemeris Reader is a Rust project designed to read NASA JPL ephemeris data and provide planetary positions based on a given Julian date.

    Rust 4 2

  5. ecommerce-android ecommerce-android Public

    E-Commecre Application in android

    Java 4 3

  6. ephem-rs ephem-rs Public

    ephem-rs is a Rust library that provides bindings for the Swiss Ephemeris and aims to integrate with NASA JPL ephemeris data. This library is ideal for astrological and astronomical projects requir…

    Rust 2