Last active
March 28, 2022 19:55
-
-
Save benjaminlukeclark/8d06af2aba8eac54b95a02d54ec57b60 to your computer and use it in GitHub Desktop.
Silly little summary of myself made for sudoblark.com
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Me(object): | |
name = "Benjamin Luke Clark" | |
occupation = "DevOps Engineer" | |
finished_university = False | |
university = "Open University" | |
degree = "Bsc(Honours) Computing and Software (Software)" | |
hobbies = [ | |
"cycling", | |
"historical miniature painting", | |
"reading" | |
] | |
@staticmethod | |
def print_status(): | |
print (f"{Me.name} - {Me.occupation} - probably asleep right now") | |
if __name__ == "__main__": | |
Me.print_status() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment