mirror of
https://github.com/Xevion/Xevion.git
synced 2025-12-06 09:17:05 -06:00
change to code style README
This commit is contained in:
88
README.md
88
README.md
@@ -1,46 +1,44 @@
|
|||||||
# About Me
|
```python
|
||||||
|
from life.species import Human
|
||||||
|
from skills import python, javascript, csharp, other
|
||||||
|
from datetime import date
|
||||||
|
from random import choices
|
||||||
|
from os import getenv
|
||||||
|
|
||||||
Hello. My name is Xevion and I am a Highschool Senior.
|
class RyanWalters(Human):
|
||||||
|
def __init__(self, username='xevion'):
|
||||||
I enjoy programming as a hobby and in preparation for a career in Software Engineering.
|
self.initialization_time = date(2003, 4, None)
|
||||||
In my free time, when I'm not programming, I alternate between Anime, The Office, Videogames and Photography.
|
self.name = f'Ryan {0} Walters'.format(choices([os.getenv('MIDDLE_NAME'), 'C', '']))
|
||||||
|
self.pronouns = ['he' and 'him'],
|
||||||
I don't yet have a high degree of real in-depth work, so over the next couple of years as I enter college, I will be tackling
|
self.description = '''
|
||||||
more and more projects across a variety of languages and frameworks to build my resume, and more importantly, my confidence.
|
A Highschool Senior learning Software Engineering as he struggles to grasp the infinite
|
||||||
|
number of languages, libraries, packages, environments, frameworks and projects
|
||||||
# Skill
|
available to him.
|
||||||
|
'''
|
||||||
I work primarily in Python, but have recently been extending my reach to C# and the languages of the web (HTML, CSS & JS).
|
self.aliases = ['Xevion', 'Xevioni']
|
||||||
Here are some of the more specific technologies I've worked with before:
|
self.aliases.extend(map(lambda alias: alias.lower(), (alias for alias in self.aliases)))
|
||||||
|
self.skills = {
|
||||||
- Python
|
'python': [
|
||||||
- Web Scraping
|
python.BeautifulSoup, python.Flask, python.GoogleCloudVision, python.Discordpy,
|
||||||
- BeautifulSoup
|
python.Spotipy, python.PyQt5, python.Tkinter, python.PySimpleGUI, python.Click,
|
||||||
- Web Frameworks
|
python.Arcade, python.Processingpy, python.SQLAlchemy
|
||||||
- Flask
|
],
|
||||||
- API Implementations
|
'javascript': [
|
||||||
- Google Cloud Vision
|
javascript.JQuery, javascript.VueJS
|
||||||
- Reddit
|
],
|
||||||
- Discord.py
|
'csharp': [
|
||||||
- Tumblr
|
csharp.UnityEngine, csharp.HLSLShader
|
||||||
- Spotify
|
],
|
||||||
- Database ORM
|
'other': [
|
||||||
- SQLAlchemy
|
other.DevOps, other.Photography
|
||||||
- GUI Frameworks/Bindings
|
]
|
||||||
- PyQt5
|
}
|
||||||
- PySimpleGUI
|
self.education = ['Highschool Senior']
|
||||||
- Tkinter
|
self.endpoints = {
|
||||||
- Other
|
'Discord': {'username': 'Xevion', 'discriminator': 8506},
|
||||||
- Click (Commandline Interface)
|
'Email': {'username': 'xevioni', 'domain': 'yandex.com'}
|
||||||
- Arcade (Game Engine)
|
}
|
||||||
- Processing.py (Extension for Processing, a Graphical Library)
|
self.hobbies = [
|
||||||
- C#
|
'Programming', 'Photography', 'Anime', 'Videogames'
|
||||||
- Unity*
|
]
|
||||||
- HLSL Shader
|
```
|
||||||
- Javascript
|
|
||||||
- jQuery
|
|
||||||
|
|
||||||
# Contact
|
|
||||||
|
|
||||||
- DM me on Discord at Xevion#8506
|
|
||||||
- Or you can harass me on Twitter @xevioni
|
|
||||||
|
|||||||
Reference in New Issue
Block a user