- 🔭 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();- Authentication (JWT, OAuth)
- API Integration
- Web Security
- Performance Optimization



