Hi, I'm Bayu Taufiqurrahman
import json
def about():
BayuTaufiq = {
'codename': 'masibay',
'ask_me_about': ['Data Ops', 'Machine Learning', 'FE', 'Tech'],
'technologies': {
'de': {
'code': 'Python',
'database': ['PostgreSQL', 'SQL Server', 'Big Query'],
'tools': ['spark', 'airflow', 'kafka', 'talend'],
},
'ml': {
'code': ['Python', 'C++'],
'database': ['csv', 'json'],
'tools': ['pandas', 'spark', 'sklearn', 'tensorflow', 'huggingface'],
},
'fe': {
'code': ['HTML', 'CSS', 'Javascript'],
'framework': ['solid', 'react'],
}
},
'current_focus': 'Data Engineer',
'current_learning': 'Java',
'hobbies': ['UI Design', 'Gacha Game', 'Anime Watch'],
}
return BayuTaufiq
about_me = about()
print(json.dumps(about_me, indent=4))