Hello
I'm Harshith
Developer & UI/UX Enthusiast
developer.ts
interface Developer {
name: string;
yearsAlive: number;
title: string;
technicalSkills: string[];
education: string;
softSkills: string[];
languagesKnown: string[];
}
const profile: Developer = {
name: 'Harshith Gubbala',
yearsAlive: 20,
title: 'aspiring software engineer',
technicalSkills: [
'C', 'C++', 'Java', 'Python',
'SQL', 'HTML', 'CSS', 'TS'
],
education: 'Bachlors in Computer Application : "Gitam University" (2023 - present)',
softSkills: [
'Problem-solving', 'Analytical thinking', 'Communication skills'
],
languagesKnown: [
'English', 'Hindi', 'Telugu'
]
};
name: string;
yearsAlive: number;
title: string;
technicalSkills: string[];
education: string;
softSkills: string[];
languagesKnown: string[];
}
const profile: Developer = {
name: 'Harshith Gubbala',
yearsAlive: 20,
title: 'aspiring software engineer',
technicalSkills: [
'C', 'C++', 'Java', 'Python',
'SQL', 'HTML', 'CSS', 'TS'
],
education: 'Bachlors in Computer Application : "Gitam University" (2023 - present)',
softSkills: [
'Problem-solving', 'Analytical thinking', 'Communication skills'
],
languagesKnown: [
'English', 'Hindi', 'Telugu'
]
};