Skip to content

Commit

Permalink
nov 2023 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bc2003 committed Nov 6, 2023
1 parent 022200f commit a0c8138
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
Binary file added Images/spotify.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 9 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<a target="blank" href="https://github.com/bc2003">
<i style="font-size: 40px;color: rgb(0, 0, 0);" class="fa">&#xf09b; </i>
</a>
<a target="_blank" href="mailto: [email protected]">
<a target="_blank" href="mailto: [email protected]">
<i style="font-size: 40px;color: rgb(0, 0, 0);" class="fa">&#xf0e0; </i>
</a>
</div>
Expand Down Expand Up @@ -68,9 +68,9 @@ <h2>
ABOUT ME
</h2>
<p class="about-me-paragraph">
Hey, I'm a 19 year old CS/STAT student at UBC and current SDE Intern @ Optum. As I start my junior year, I am actively
searching for Summer 2024 Internships. In my spare time, I enjoy learning new tech and applied math material, volunteering
in the community as a member of Canada's only service fraternity, and watching copious amounts of hockey.
Hey, I'm a CS/STAT student at UBC and current SDE Intern @ Optum. I am actively searching for Summer 2024 Internships.
In my spare time, I enjoy learning new tech/math material, volunteering in the community as a member of Canada's only
service fraternity, and watching copious amounts of hockey.
</p>
<p class="about-me-paragraph">
My inbox is always open, so please feel free to contact me through any of my social medias below! :)
Expand All @@ -87,8 +87,8 @@ <h2>
</a>
</button>
<button class="personal-links">
<a href="mailto: [email protected]" target="_blank">
<i style="font-size: 24px;color: black;" class="fa">&#xf0e0; <p class="link-buttons">[email protected]</p></i>
<a href="mailto: [email protected]" target="_blank">
<i style="font-size: 24px;color: black;" class="fa">&#xf0e0; <p class="link-buttons">[email protected]</p></i>
</a>
</button>
</div>
Expand All @@ -106,7 +106,7 @@ <h1>
<div class="timeline-content">
<h3>Optum</h3>
<h3>Software Development Engineer Intern</h3>
<p>packaging and other stuff~</p>
<p>C# and C++ dev fixes + porting product versions</p>
</div>
</div>
<div class="timeline-item">
Expand All @@ -115,7 +115,7 @@ <h3>Software Development Engineer Intern</h3>
<div class="timeline-content">
<h3>UBC Sauder School of Business</h3>
<h3>Support Analyst (Programming/Operations)</h3>
<p>beep boop beep boop</p>
<p>beep boop new documentation has arrived!</p>
</div>
</div>
<div class="timeline-item">
Expand Down Expand Up @@ -183,7 +183,7 @@ <h3>Data Analysis</h3>
</button>
</li>
<li class="project">
<div class="project-image"><img src="Images/mugshot.jpg" alt="img" draggable="false"></div>
<div class="project-image"><img src="Images/spotify.jpeg" alt="img" draggable="false"></div>
<h2>MelodyMingle</h2>
<h3>Full Stack Web Application</h3>
<button class="project-links">
Expand Down
3 changes: 2 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ const infiniteScroll = () => {
// If the carousel is at the end, scroll to the beginning
else if(Math.ceil(carousel.scrollLeft) === carousel.scrollWidth - carousel.offsetWidth) {
carousel.classList.add("no-transition");
carousel.scrollLeft = carousel.offsetWidth;
carousel.scrollLeft = 0;
carousel.scrollLeft += carousel.offsetWidth;
carousel.classList.remove("no-transition");
}
// Clear existing timeout & start autoplay if mouse is not hovering over carousel
Expand Down

0 comments on commit a0c8138

Please sign in to comment.