From 7d72f016af9027005e3438f4cca226363e0b74de Mon Sep 17 00:00:00 2001 From: Cheng Zhang <79437133+BuffTechTalk@users.noreply.github.com> Date: Mon, 9 Sep 2024 15:47:58 -0500 Subject: [PATCH] update code and add image of project --- images/CommunityLinkLogo.svg | 20 ++++++++++++++++++ .../__pycache__/code_editor.cpython-312.pyc | Bin 1865 -> 1865 bytes webpages/__pycache__/home.cpython-312.pyc | Bin 360 -> 360 bytes webpages/__pycache__/project.cpython-312.pyc | Bin 359 -> 869 bytes webpages/buffteks.html | 2 +- webpages/input_code.py | 7 +++++- webpages/project.py | 15 ++++++++++++- 7 files changed, 41 insertions(+), 3 deletions(-) create mode 100644 images/CommunityLinkLogo.svg diff --git a/images/CommunityLinkLogo.svg b/images/CommunityLinkLogo.svg new file mode 100644 index 000000000..3774103d4 --- /dev/null +++ b/images/CommunityLinkLogo.svg @@ -0,0 +1,20 @@ + + + + Community Link + + diff --git a/webpages/__pycache__/code_editor.cpython-312.pyc b/webpages/__pycache__/code_editor.cpython-312.pyc index b7a387927385cdce1d0ec2c057a62dec60547d12..781306cb5bdeceba37a5db55c152f7369f7bdca1 100644 GIT binary patch delta 18 YcmX@fcao3uG%qg~0}v!`<{9 delta 18 YcmX@fcao3uG%qg~0}#Y-A7+_(mbWEMFb3S^gJSor5FQ51IdvQLuT1!CN`}ObPCkVg~ zvzeP?gXs+&903e4WS|Gj)#*9dIRw2*4%?Mq2HXlPUM>~w%`^R~-4Re)duF?H)p^@|Me^9D;G$yVB8MygRV=^EzchBw$sDw+Tf^lCSs3n+ zJ&Cpj-z9+>epo`*9{WMYRKCUtMghk(iBLL&BvRbO`xF!ObO%Y!GDUeJk)L2Bvoz&G zS*FiOEK%qOrk?S@XIdln;{fJ2Kq1Da1G}-I&hr3Zmo!m=<18pgGgpkx*1hMF2pkA{L-X z5lBxF8;AfYDB=JTzc_4i^HWN5QtgVkfm}u)F6IRiAD9^#8E-R)eP&@~R0Jyr0P1x! Apa1{> diff --git a/webpages/buffteks.html b/webpages/buffteks.html index dbc849464..1abde925b 100644 --- a/webpages/buffteks.html +++ b/webpages/buffteks.html @@ -105,7 +105,7 @@

Our Activities

  • BuffTeks Event: Host competitions and hackathons that empower students to use classroom knowledge for real-world solutions.
  • -
  • BuffTeks Project: Faculty-led coding projects to provide IT solutions and support to problems facing local companies as part of an experiential learning effort.
  • +
  • BuffTeks Project: Faculty-led coding projects to provide IT solutions and support to problems facing local communities as part of an experiential learning effort.
  • BuffTeks Classroom: An open learning platform devoted to sharing knowledge of information technology including Python programming and web application development.
diff --git a/webpages/input_code.py b/webpages/input_code.py index ce47b771f..748bfb87f 100644 --- a/webpages/input_code.py +++ b/webpages/input_code.py @@ -1 +1,6 @@ -print("hello") \ No newline at end of file +print("hello") + +i = 100 +while(i>10): + print(f"Value of {i}") + i = i-1 \ No newline at end of file diff --git a/webpages/project.py b/webpages/project.py index 4a6fe2d76..67dae4ada 100644 --- a/webpages/project.py +++ b/webpages/project.py @@ -1,4 +1,17 @@ import streamlit as st +import time def project(): - st.title("BuffTeks Project") \ No newline at end of file + st.title("BuffTeks Project") + project_introduction = """ + Faculty-led coding projects to provide IT solutions and support to problems facing local communities as part of an experiential learning effort. + """ + st.write(project_introduction) + + st.divider() + + # Project Gallery + st.subheader("Project Gallery") + st.image("./images/CommunityLinkLogo.svg") + +