π Builder of fast AI products | Rustacean | Golang Lover | Python Enthusiast | PHP Dev
Let's connect and create something amazing together!
Dive into my collection of mini-projects, useful snippets, and experiments. Perfect for quick inspiration or collaboration!
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();
}
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 |
β¨ Show some β€οΈ by starring repositories and connecting!