Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blandoncj/blandoncj
https://github.com/blandoncj/blandoncj
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/blandoncj/blandoncj
- Owner: blandoncj
- Created: 2024-05-08T02:30:41.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-08-14T01:52:05.000Z (5 months ago)
- Last Synced: 2024-11-12T01:35:25.184Z (2 months ago)
- Size: 319 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)
```