- π Iβm currently working on πFullstack Projects
- π± I have strong grasp on Data Structures and Algorithms and I'm always excited to learn new technologies.
- π Get to know about me : porfolio
- π¨βπ» All of my projects are available at My GitHub Repositories
- πΌ Connect with me on LinkedIn
- π« How to reach me: Email me
Welcome to my profile! Here's a quick snippet about me in JavaScript:
class GitHubProfile {
constructor() {
this.username = "Aryam2121";
this.name = "Aryaman Gupta";
this.bio = "Fullstack Developer | DSA Enthusiast";
this.achievements = [
"SIH 2024 Grand Finalist"
"@GSSoC'24 Contributor π"
"@Hacktoberfest Contributor π"
"@LeetCode(1650+,300+ questions)"
];
this.location = "Ghaziabad, Uttar Pradesh π";
this.githubUrl = "https://github.com/Aryam2121";
this.skills = [
"Node.js",
"React.js",
"MongoDB",
"SQL",
"Docker",
"DSA"
];
this.interests = [
"Innovative Projects",
"Competitive Programming",
"Data Structures and Algorithms"
];
}
introduce() {
console.log(`π Hello, world! I'm ${this.name}.`);
console.log(`${this.bio}`);
console.log(`π Current location: ${this.location}`);
console.log(`π Check out my GitHub: ${this.githubUrl}`);
console.log("\nπ‘ Achievements:");
this.achievements.forEach((achievement) => {
console.log(` - ${achievement}`);
});
console.log("\nπ» Skills I'm proud of:");
this.skills.forEach((skill) => {
console.log(` - ${skill}`);
});
console.log("\nπ Things I love to explore:");
this.interests.forEach((interest) => {
console.log(` - ${interest}`);
});
}
}
const profile = new GitHubProfile();
profile.introduce();