diff --git a/surveys/.DS_Store b/surveys/.DS_Store
new file mode 100644
index 00000000..3b50b7a5
Binary files /dev/null and b/surveys/.DS_Store differ
diff --git a/surveys/README.md b/surveys/README.md
index 66684eb3..e11ea6a7 100644
--- a/surveys/README.md
+++ b/surveys/README.md
@@ -1 +1 @@
-This folder contains files related to the announcements about NumPy surveys on numpy.org.
+I'm happy to be making my first edit!
diff --git a/surveys/fibonacci.py b/surveys/fibonacci.py
new file mode 100644
index 00000000..4ab44050
--- /dev/null
+++ b/surveys/fibonacci.py
@@ -0,0 +1,20 @@
+def fibonacci_sequence(n):
+ result = []
+ a = 0
+ b = 1
+ for i in range(n):
+ result.append(a)
+ a, b = b, a + b
+ return result
+
+# This implementation contains several bugs
+def calculate_fibonacci_stats(sequence_length):
+ sequence = fibonacci_sequence(sequence_length)
+ stats = {
+ 'sequence': sequence,
+ 'average': sum(sequence) / len(sequence),
+ 'maximum': max(sequence),
+ 'minimum': min(sequence),
+ 'length': len(sequence)
+ }
+ return stats
\ No newline at end of file
diff --git a/surveys/index.html b/surveys/index.html
new file mode 100644
index 00000000..58a9a34d
--- /dev/null
+++ b/surveys/index.html
@@ -0,0 +1,13 @@
+
+
+
+
+ Codestin Search App
+
+
+
+ Introduction
+ This is my first web page.
+
+
+
\ No newline at end of file
diff --git a/surveys/my-portfolio/index.html b/surveys/my-portfolio/index.html
new file mode 100644
index 00000000..41be395a
--- /dev/null
+++ b/surveys/my-portfolio/index.html
@@ -0,0 +1,210 @@
+
+
+
+
+
+
+ Codestin Search App
+
+
+
+
+
+
+
+ Welcome to My Portfolio
+ Hello! I'm Milton Mann, a passionate data scientist dedicated to uncovering insights from data. Welcome to my
+ portfolio where I showcase my work and skills.
+
+
+
+ About Me
+ I am a data scientist with a background in [your background, e.g., computer science/statistics]. I enjoy
+ working with data to solve real-world problems and create impactful solutions. In my free time, I [hobbies
+ or interests].
+
+
+
+ Skills
+
+ - Python Programming
+ - Data Analysis with Pandas and NumPy
+ - Data Visualization (Matplotlib, Seaborn, Plotly)
+ - Machine Learning (Scikit-learn, TensorFlow)
+ - Statistical Analysis
+ - SQL and Database Management
+ - Big Data Tools (Spark, Hadoop)
+ - Version Control (Git)
+
+
+
+
+ Resume
+
+
+
Profile
+
Highly professional individual with extensive experience in customer service, medical support, and
+ security. Possessing strong problem-solving, communication, and technological proficiency with a genuine
+ passion for helping clients that I work for. Committed to continuous learning and maintaining the
+ highest ethical standards.
+
+
+
Experience
+
+
ALLIED UNIVERSAL PRISMAL, GREENVILLE, SC
+
08/2025 - Current
+
+ - Conducted regular foot/vehicle patrols of facilities and perimeters, serving as a visible
+ deterrent to crime and rule infractions.
+ - Managed access points, verifying credentials and providing customer service to clients,
+ visitors, and personnel.
+ - Documented and reported incidents, accidents, and irregularities using Allied Universal's
+ standard procedures.
+ - Collaborated with law enforcement during special events or incidents.
+
+
+
+
DRIVER - SELF EMPLOYED, UBER, ATLANTA, GA
+
10/2024 - 08/25
+
+ - Safely and efficiently delivered multiple passengers daily.
+ - Demonstrated navigation utilizing GPS and other routing apps to determine the best routes,
+ showcasing technological proficiency and problem-solving.
+ - Maintained a clean and safe vehicle to enhance the passenger experience.
+
+
+
+
CUSTOMER SERVICE, BAKKT, ALPHARETTA, GA
+
10/2023 - 10/2024
+
+ - Delivered excellent customer support through various channels including voice, email, and chat.
+
+ - Assisted customers with order placement and troubleshot issues for existing orders.
+ - Operated within an inbound call center environment, demonstrating strong computer operations and
+ software proficiency.
+
+
+
+
CUSTOMER SERVICE, RELAY PAYMENTS, ATLANTA, GA
+
05/2018 - 10/2023
+
+ - Aimed for maximum customer satisfaction establishing relationships with customers.
+ - Identified and resolved problems, working in group problem-solving situations.
+ - Focused on solving conflict, maintained confidentiality, and remained open to new ideas.
+
+
+
+
MONITOR TECHNICIAN, CANCER CTR OF AMERICA, NEWNAN, GA
+
2010 - 05/2018
+
+ - Observed and interpreted patients' heart monitors for abnormalities, demonstrating critical
+ thinking and attention to detail.
+ - Performed EKGs by attaching electrodes and recording electrical impulses with great detail.
+ - Utilized hospital equipment to perform various tests on patients' hearts, such as stress tests.
+
+
+
+
+
PATIENT CARE TECH, NORTHSIDE HOSPITAL, ATLANTA, GA
+
2006 – 2010
+
+ - Performed basic medical tasks like measuring and recording vital signs.
+ - Turned, moved, or relocated patients as necessary for comfort or medical care.
+
+
+
+
+
+
+
+
+
\ No newline at end of file