/** Hi there! I'm a Full Stack Developer 👋 */
const skills = {
languages: ["JavaScript", "TypeScript", "Python", "Swift", "Go", "R"],
frontend: ["React", "Next.js", "TailwindCSS"],
mobile: ["SwiftUI", "UIKit", "React Native", "Flutter"],
backend: ["Node.js", "Express", "MongoDB", "PostgreSQL", "Firebase"],
ai_ml: ["TensorFlow", "PyTorch", "Scikit-learn", "MediaPipe"],
data_science: ["Pandas", "NumPy", "Matplotlib"]
};
class Developer {
constructor() {
this.name = "Ömer Murat Aydın";
this.education = "Gazi Üniversitesi Bilgisayar Mühendisliği";
this.role = "Full Stack Developer & AI Enthusiast";
this.experience = "Full Stack & AI Developer";
this.location = "Ankara, Turkey";
this.interests = ["AI", "Machine Learning", "Data Science", "Mathematics", "Physics"];
this.achievements = ["Open Source Contributions", "Metaheuristic Optimization Research", "Yoga Pose Analysis Project", "Volunteer Coding Instructor"];
this.entrepreneurship = "Özgün ve yaratıcı fikirler geliştirmeye odaklanıyorum. Kullanıcı odaklı, yenilikçi ve sürdürülebilir teknoloji çözümleri üretme konusunda kendime güveniyorum.";
this.availableForFreelance = true;
}
sayHi() {
console.log("Get in touch with me for your projects!");
}
}
const me = new Developer();
me.sayHi();