1
const NAME = 'Akash'
2
const ALIAS = 'Arjun'
3
4
let location = 'Coimbatore, India'
5
6
const hobbies = [
7
'Poetry',
8
'Programming',
9
'Reading',
10
'Drawing',
11
'Music',
12
'Walking'
13
]
14
15
let skills = [
16
'JavaScript',
17
'React',
18
'Node.js',
19
'Python',
20
'AWS'
21
]
22
23
const questions = {
24
philosophical: [
25
'Can AI truly be creative, or does it just remix existing patterns?',
26
'Is code more like art or engineering?',
27
'What happens when machines can write better code than humans?'
28
],
29
technical: [
30
'Why do we still use JavaScript?',
31
'Is TypeScript the future or just a bandaid?',
32
'Will quantum computing make current encryption obsolete?'
33
],
34
personal: [
35
'What if we could download skills like in The Matrix?',
36
'Is programming the closest thing to having superpowers?',
37
'Do developers dream in code?'
38
]
39
}
1
const battleStation = {
2
machine: {
3
model: 'Lenovo IdeaPad Gaming 3 16IAH7',
4
cpu: '12th Gen Intel Core i7',
5
gpu: 'NVIDIA RTX 3050Ti',
6
display: '16" WQHD+ (2560x1600)',
7
memory: '16GB DDR4'
8
},
9
10
operatingSystems: [
11
{
12
primary: 'Windows 11',
13
purpose: 'Development & Daily Driver'
14
},
15
{
16
secondary: 'Kali Linux',
17
purpose: 'Cybersecurity & Pentesting'
18
}
19
],
20
21
devTools: {
22
aiPowered: [
23
'Cursor AI',
24
'ChatGPT',
25
'Grok.ai'
26
],
27
editors: [
28
'VS Code',
29
'PyCharm'
30
],
31
browsers: [
32
'Brave',
33
'Chrome'
34
],
35
development: [
36
'GitHub',
37
'XAMPP'
38
]
39
}
40
}
1
const currentStatus = {
2
education: {
3
degree: 'B.Tech Artificial Intelligence and Data Science',
4
institution: 'Sri Krishna College of Engineering and Technology',
5
period: '2024 - 2028',
6
status: 'Pursuing'
7
},
8
9
interests: [
10
'Artificial Intelligence',
11
'Data Science',
12
'Full Stack Development',
13
'Cybersecurity'
14
],
15
16
aspirations: {
17
shortTerm: [
18
'Build innovative AI-powered applications',
19
'Contribute to open-source projects',
20
'Master full-stack development'
21
],
22
longTerm: [
23
'Become an AI/ML expert',
24
'Create impactful tech solutions',
25
'Lead innovative tech projects'
26
]
27
},
28
29
status: {
30
current: 'Student Developer',
31
openTo: [
32
'Internships',
33
'Collaborative Projects',
34
'Learning Opportunities'
35
]
36
}
37
}