<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Mathew Jeong </title>
    <description>The latest articles on DEV Community by Mathew Jeong  (@kimchieater).</description>
    <link>https://dev.to/kimchieater</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1062988%2F81145910-396f-4bf9-a95a-23d364a16d35.png</url>
      <title>DEV Community: Mathew Jeong </title>
      <link>https://dev.to/kimchieater</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kimchieater"/>
    <language>en</language>
    <item>
      <title>A little codecademy noob project :</title>
      <dc:creator>Mathew Jeong </dc:creator>
      <pubDate>Tue, 11 Apr 2023 12:04:33 +0000</pubDate>
      <link>https://dev.to/kimchieater/a-little-codecademy-noob-project--2gel</link>
      <guid>https://dev.to/kimchieater/a-little-codecademy-noob-project--2gel</guid>
      <description>&lt;p&gt;My first actual project from the scratch. &lt;/p&gt;

&lt;p&gt;It's for my ADHD, where it asks user's name, then it will ask me to type all the tasks I want to do, once everything is done, program will compliment me hahaha.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--bM0cun_D--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/di23tba4arm32x5feo3s.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--bM0cun_D--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/di23tba4arm32x5feo3s.jpg" alt="Image description" width="597" height="339"&gt;&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
def things_to_do():
    todo_list = []

    while True:
        todo = input("Enter things to do for today (or type 'done' to exit): ")
        if todo.lower() == "done":
            break
        todo_list.append(todo)

    print("Your todo list is:", todo_list)
    return todo_list

def done_list(todo_list):
    done_list = []

    while todo_list:
        tasks = input(f"Enter item to move to done list ({todo_list}): ")
        if tasks.lower() == "done":
            break
        elif tasks not in todo_list:
            print("Task is not in todo list, try again")
        else:
            todo_list.remove(tasks)
            done_list.append(tasks)
            print(f"You've finished a task : {tasks} ")

        if not todo_list:
            break

    print("""

    Good job, you've become a step closer to be a better human being!


    """)

from datetime import date
print("""  
###    ###    ##########  ##    ##      ###
###    ###    ###          ##  ##     ##  ##
###    ###    ###           ####     ##    ##
##########    ##########     ##     ## #### ##
###    ###    ###            ##    ##        ##    
###    ###    ###            ##   ##          ##
###    ###    ##########     ##  ##            ## 
""")
today = date.today()
print("Hello, today's date is:", today.strftime("%d %B, %Y"))
name = input("Hello, What's your name? ")
print("Heya,", name )

todo_list = things_to_do()
done_list(todo_list)

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
  </channel>
</rss>
