Welcome traveller
Hi and welcome to Campaigns & Codeblocks Blog. I’ve created this blog to share my thought and code for solo pen and paper RPGs that I play(ed).
Let us start with a little joke code:
class TTRPGBlogPost:
def __init__(self):
self.title = "Deconstructing 'Hello World'"
self.author = "Kame Charlito"
self.tags = ["Low-Level Feats"]
self.publication_date = "2026-01-05"
def display_post(self):
"""Display the blog post in TTRPG style"""
print(f"-= {self.title} =-")
print(f"By {self.author}")
print(f"\nPublished: {self.publication_date}")
print(f"Tags: {', '.join(self.tags)}")
print("HELLO WORLD!")
print("\n" + "=" * 60)
if __name__ == "__main__":
print("\nLOADING TTRPG BLOG...\n")
post = TTRPGBlogPost()
post.display_post()
Photo by Clay Banks from Unsplash

