Let’s go 🔥
Top Skills 💣
The followings are my top skills and surely my favorites. I tried to put the tools that I’ve been using to develop projects. I have more than two years of experience in most of them, and actually, I have more than one year of experience in each one.
Django Full-Stack
DevOps
Project Management
Software Engineering
Intro Code 👨💻
me = '`armanexplorer`'
cur_charecter = 'Optimizer and Problem Solver Geek'
cur_skills = ['`Django Full-Stack Development`',
'`DevOps Enginnering`',
'`Backend Engineering`',
'`Software Engineering`',
'`Project Management`',
]
cur_favs = ['`Backend Development`',
'`System Administration`',
'`Project Management`',
'`Optimizing`',
'`Problem Solving`',
'`Walking`',
'`Berlin`',
]
cur_work = 'Making Freelance Projects alive as `Full-Stack Django Developer` and `Project Manager`'
com_tools = {
'Linkedin': 'https://www.linkedin.com/in/armanexplorer',
'Telegram': 'https://t.me/armanexplorer',
'Email': 'armanexplorer@gmail.com'
}
# generate intro
intro = (
f'Hi, I’m {me} 👋\n'
f'I’m an {cur_charecter}\n'
f'I’m skilled in {" , ".join(cur_skills)}\n'
f'I’m currently working on {cur_work}\n'
f'I’m interested in {" , ".join(cur_favs)}\n'
f'You can reach me by:\n'
)
for tool_name, tool_link in com_tools.items():
intro += f'* [{tool_name}]({tool_link})\n'
intro += 'I’ll be glad to talk to you ;)'
print(intro)