Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/blandoncj/blandoncj


https://github.com/blandoncj/blandoncj

Last synced: 14 days ago
JSON representation

Awesome Lists containing this project

README

        



```python
class Blandoncj(SoftwareEngineer):
def __init__(self):
self.username = 'blandoncj'
self.name = 'Jacobo Blandón'
self.skills = {
'frontend': ['HTML', 'CSS', 'Bootstrap', 'Tailwind', 'JavaScript', 'ReactJS'],
'backend': ['Java', 'Python', 'Flask', 'Django', 'NodeJS'],
'database': ['MariaDB/MySQL', 'SQLite3', 'PostgreSQL'],
'tools': ['Git', 'GitHub', 'VSCode', 'Postman', 'Bash']
}

def __str__(self):
return f'{self.name} ({self.username})'

if __name__ =='__main__':
me = Blandoncj()
print(me)
```