From 027ce9b82cc54a8439dc21f3d8405efacaa6faab Mon Sep 17 00:00:00 2001 From: Sunny Lin Date: Thu, 4 Jun 2026 06:31:15 -0700 Subject: [PATCH] Update app title and add career goals section --- README.md | 9 +++++++++ streamlit_app.py | 11 ++++++++++- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 10dbdedd6091..90914b45701a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,14 @@ # Welcome to Streamlit! +**Name:** Sunny Lin +**Date Completed:** June 4, 2026 + +In this exercise I updated the Streamlit application title to include my name and +added a new "Career Goals" section describing my interests in software engineering +and artificial intelligence. I also completed the Git/GitHub workflow exercise — +branching, committing, and pushing my changes — all while preserving the original +spiral visualization that ships with the app. + Edit `/streamlit_app.py` to customize this app to your heart's desire. :heart: If you have any questions, checkout our [documentation](https://docs.streamlit.io) and [community diff --git a/streamlit_app.py b/streamlit_app.py index 7a0ed1272052..aa9fc5063fd2 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -4,7 +4,7 @@ import streamlit as st """ -# Welcome to Streamlit! +# Streamlit Demo - Sunny Lin Edit `/streamlit_app.py` to customize this app to your heart's desire :heart:. If you have any questions, checkout our [documentation](https://docs.streamlit.io) and [community @@ -13,6 +13,15 @@ In the meantime, below is an example of what you can do with just a few lines of code: """ +""" +## Career Goals + +I'm passionate about software engineering and artificial intelligence, and I love +turning complex ideas into reliable, well-crafted code. My goal is to build products +that solve real-world problems — applying AI and strong engineering fundamentals to +create tools that make a genuine difference in people's lives. +""" + num_points = st.slider("Number of points in spiral", 1, 10000, 1100) num_turns = st.slider("Number of turns in spiral", 1, 300, 31)