Skip to content

Blog

Event storming

Stay tuned for some notes on my experiences with working with the event storming methodology in some of my projects.

Using Python

# main.py

def print_intro(name:str, intro: str) -> str:
  """Prints a greeting and intro"""
    return f"Hello, {name} nice to see you! {intro}"

if __name__ == "__main__":
  friend = "Dear friend"
  intro = "Stay tuned for blog posts on Python"

  print_intro(name=friend, intro=intro)

Note

This is a note to my Python code example.

Using SQL

1
2
3
4
5
DECLARE @intro AS varchar(100)

SET @intro = 'Stay Tuned for blog posts on the topic of SQL'

SELECT @intro AS Intro

Note

This is just a quick example of a note for a piece of code.