mirror of
https://github.com/Xevion/Xevion.git
synced 2025-12-15 04:13:56 -06:00
27 lines
1.1 KiB
Markdown
27 lines
1.1 KiB
Markdown
```python
|
|
from life.species import Human
|
|
from skills import python, java, javascript, csharp, html, css, other
|
|
from datetime import date
|
|
from random import choices
|
|
from os import getenv
|
|
|
|
class RyanWalters(Human):
|
|
def __init__(self, username='xevion'):
|
|
self.name = f'Ryan {0} Walters'.format(choices([os.getenv('MIDDLE_NAME'), 'C', '']))
|
|
self.pronouns = ['he' and 'him'],
|
|
self.description = '''
|
|
A junior full-stack software developer working their way through the world.
|
|
I like demonstrating attention to detail, presenting my projects elegantly, and building things to be robust and resilient.
|
|
While I specialize in Web Development, my skills reach broadly, and there's nothing I can't learn.
|
|
'''
|
|
self.recent_projects = [
|
|
"https://github.com/Xevion/v6-place",
|
|
"https://github.com/acmutsa/Portal",
|
|
"https://github.com/Xevion/grain"
|
|
]
|
|
self.endpoints = {
|
|
"discord": {'username': 'Xevion', 'discriminator': 8506},
|
|
"email": "xevion@xevion.dev"
|
|
}
|
|
```
|