Skip to content

Instantly share code, notes, and snippets.

@benjaminlukeclark
Last active March 28, 2022 19:55
Show Gist options
  • Save benjaminlukeclark/8d06af2aba8eac54b95a02d54ec57b60 to your computer and use it in GitHub Desktop.
Save benjaminlukeclark/8d06af2aba8eac54b95a02d54ec57b60 to your computer and use it in GitHub Desktop.
Silly little summary of myself made for sudoblark.com
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