Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
11 changes: 10 additions & 1 deletion streamlit_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)

Expand Down