diff --git a/about-me.ipynb b/about-me.ipynb index 1e8b6d4..260426d 100644 --- a/about-me.ipynb +++ b/about-me.ipynb @@ -20,16 +20,24 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Hi! My name is Christos Vlachakis. I’m excited to learn because in the short term, I want to expand my horizons and be an good fit for more positions in the tech industry. However, mid term I intend to make a full career change by launching my own basketball analysis channel, and create high level data related content for European competitions. Long term, I would like to be a analyst / assistant coach / scouter for a top-tier Euroleague team. A fun fact about me is: I have played basketball for more than 15 years when younger, while due to my music production passion, I already own the studio equipment to be able to host a podcast.\n" + ] + } + ], "source": [ "# About Me\n", "# Please fill in the following details.\n", "\n", - "name = \"Your Name Here\"\n", - "reason = \"Why you are interested in AI, Data Analytics, or Data Science\"\n", - "fun_fact = \"One fun fact about yourself or a goal for this course\"\n", + "name = \"Christos Vlachakis\"\n", + "reason = \"in the short term, I want to expand my horizons and be an good fit for more positions in the tech industry. However, mid term I intend to make a full career change by launching my own basketball analysis channel, and create high level data related content for European competitions. Long term, I would like to be a analyst / assistant coach / scouter for a top-tier Euroleague team\"\n", + "fun_fact = \"I have played basketball for more than 15 years when younger, while due to my music production passion, I already own the studio equipment to be able to host a podcast\"\n", "\n", "print(f\"Hi! My name is {name}. I’m excited to learn because {reason}. A fun fact about me is: {fun_fact}.\")" ]