main.js | Paul Cosma 1 2 3 4 5 6 7 8 9@no_mangle 10export default function profile() { 11.return { 12..name:
{ 13...first:
'Paul', 14...last:
'Cosma', 15...nick:
'saenai255', 16..}, 17..pronouns:
['he', 'him'], 18..gender:
'male', 19..email:
'paul.cosma97@gmail.com', 20..phone:
'+40757995418', 21..birthdate:
new Date(1997, 5 - 1 , 8) , 22..address:
{ 23...country:
'Romania', 24...state:
'Cluj', 25...city:
'Cluj-Napoca', 26...street:
'********************', 27..}, 28..links:
{ 29...linkedIn:
'https://www.linkedin.com/in/x-paul-cosma/', 30...github:
'https://github.com/saenai255/', 31...facebook:
'https://www.facebook.com/paul.cosma997', 32...stackOverflow:
'https://stackoverflow.com/users/7091644/paul-cosma', 33..}, 34..hobbies:
[ 35...'programming', 36...'reading tech books', 37...'playing RPGs', 38...'linux' 39..], 40..expertise:
{ 41...javascript:
'native', 42...typescript:
'native', 43...nodejs:
'native', 44...react:
'expert', 45...go:
'expert', 46...aws:
'proficient', 47...linux:
'daily driving openSUSE Tumbleweed', 48..}, 49.} 50 51 52