Search...

K

About me

Naruto anime cover photo

My folks worry that I am reclusive but that may not be true. I appreciate spending a lot of time alone because it allows me to reflect and imagine, but I also enjoy interacting with others, having fun, and working together on fascinating things. I love creation—nothing beats the joy of building things. As a teenager, I dabbled with various crafts and wrote about a variety of topics in a haphazard attempt to become a master of all trades. However, as you might guess, the impracticality left me feeling lost. I kept wondering what I could do to reach my full potential until I discovered computer programming.

My favorite subject in school has always been mathematics, so when I realized that I could create virtual experiences using logic, I was completely mesmerized. I mastered this super-power that allows me to create amazing things and took on software engineering as a career. I currently develop various types of computer programs with different languages and I keep improving my proficiency through continuous learning and research. Occasionally, I publish articles on subjects like computer programming, general sciences, romance, fiction, and philosophy.

I am Michael Peter, a brilliant scientist who loves their work and finds entertainment in arts and fiction.

The Python program below is an example of fiction.

A program to create a planet (joke intended)

#!/usr/bin/env python
from space import Planet
from space.galaxies import milky_way
from tools import Printer


def main():
  planet = Planet(name="Astra", galaxy=milky_way)
  planet.put(nature=True, humans=True, internet=True, anime=True)
  planet.save()
  printer = Printer(dimensions=3)
  printer.print(planet)


if __name__ == "__main__":
  main()