const aboutMe = () => {
const profile = {
name: "Parth",
roles: ["Full Stack Developer", "Blockchain Developer", "AI Enthusiast", "Google Cloud Developer"],
summary:
"Quick learner passionate about building reliable, maintainable software.
I love solving problems end-to-end — from system design and APIs to testing and deployment.",
topics: [
{
prefix: "Currently building",
highlights: [
"Web apps with React/Next.js",
"APIs with Node.js/FastAPI",
"Smart contracts & dApp integrations"
]
},
{
prefix: "Core software practices I follow",
highlights: [
"TDD / Unit & Integration Testing",
"Clean code & SOLID principles",
"Code reviews & collaborative workflows (Git)"
]
},
{
prefix: "Tools & Tech I use",
highlights: [
"JavaScript, TypeScript, C++, C, Python",
"Postgres, MongoDB",
"GCP, Docker, GitHub Actions"
]
},
{
prefix: "Fun",
highlights: ["I’m usually smiling while debugging"]
},
],
callToAction: "Ask me about, full-stack implementations, Cloud, or DSA — happy to help!"
};
const topicsText = profile.topics
.map(({ prefix, highlights }) => `${prefix}${highlights ? ": " + highlights.join(", ") : ""}`)
.join("\n");
return [
`Name: ${profile.name}`,
`Roles: ${profile.roles.join(" • ")}`,
"",
profile.summary,
"",
topicsText,
"",
profile.callToAction
].join("\n");
};
console.log(aboutMe());
- Parth Kothari -