https://github.com/0sir1ss/0sir1ss
Config files for my GitHub profile.
https://github.com/0sir1ss/0sir1ss
config github-config
Last synced: 3 months ago
JSON representation
Config files for my GitHub profile.
- Host: GitHub
- URL: https://github.com/0sir1ss/0sir1ss
- Owner: 0sir1ss
- Created: 2021-07-24T21:13:22.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-01-26T10:52:49.000Z (over 1 year ago)
- Last Synced: 2025-01-20T01:28:44.802Z (5 months ago)
- Topics: config, github-config
- Homepage: https://github.com/0sir1ss
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```python
from GitHub import ReadMeclass osiris(ReadMe):
def __init__(self):
self.username = "0sir1s"
self.name = "James"
self.language = "English"
self.used_programming_languages = ["Python", "Javascript", "Typescript", "C++"]
self.location = "United Kingdom"
self.education = "2nd Year of Computer Science"def about(self):
print(f"""
Hi, I'm {self.name}, or {self.username} online.
In my free time I create projects to help deepen my understanding of code. I find the more you build, the faster you learn.
I have previously used the following programming languages ordered from most to least used: {', '.join(i for i in self.used_programming_languages)}.
You may find some of these projects on my GitHub profile.""")me = osiris()
me.about()
```