From 29635303744cfd64992744547cfa8b7b7e410569 Mon Sep 17 00:00:00 2001 From: Brendan McDevitt Date: Wed, 3 Jan 2018 02:24:16 -0500 Subject: [PATCH] Day 2 of 100DaysofCode - Discord Chatbot --- .../2018-01-01-100-days-of-code-challenge.markdown | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/_posts/2018-01-01-100-days-of-code-challenge.markdown b/_posts/2018-01-01-100-days-of-code-challenge.markdown index c117749..97c01be 100644 --- a/_posts/2018-01-01-100-days-of-code-challenge.markdown +++ b/_posts/2018-01-01-100-days-of-code-challenge.markdown @@ -28,6 +28,15 @@ def gen_ssh_keypair(): return 0 - -gen_ssh_keypair() ``` + +Day 2: +Today we are going to make a Discord chat bot. Bots have always been interesting to me. +Trying to make a computer program behave like a human sounds like a fun +challenge, and a great way to play some fun pranks on my friends on Discord. +So far, I have sketched up the initial framework in my python program using the +discordpy library. I will need to learn more about the following: +- asyncio +- coroutines +These seem to be two main concepts that this library uses, and it will help aid +my skills in the future when making programs that focus on performance.