Skip to content

Commit

Permalink
small error fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
drB-dotjpg committed Dec 28, 2024
1 parent 33f8a83 commit cfa16aa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,21 @@ const router = useRouter();
const content = ref<HTMLElement | null>(null);
watch(router.currentRoute, () => {
if (!content.value) return;
content.value.scrollTo({ top: 0 });
window.scrollTo({ top: 0 });
if (content.value) {
content.value.scrollTo({ top: 0 });
}
});
</script>

<template>
<div
class="text-[#F0FAF6] p-3 md:p-6 xl:pr-0 flex gap-6 xl:gap-16 flex-col xl:w-dvw xl:h-dvh xl:flex-row xl:items-center">
<header class="xl:w-1/3 flex flex-col xl:items-end gap-3 xl:text-right -m-3 p-3 md:-m-6 md:p-6 bg-black/30 backdrop-blur-sm xl:m-0 xl:p-0 xl:bg-transparent xl:backdrop-blur-none">
<header
class="xl:w-1/3 flex flex-col xl:items-end gap-3 xl:text-right -m-3 p-3 md:-m-6 md:p-6 bg-black/30 backdrop-blur-sm xl:m-0 xl:p-0 xl:bg-transparent xl:backdrop-blur-none">
<h1 class="font-bold text-4xl xl:text-6xl">Derek Bond</h1>
<p class="text-pretty text-sm xl:text-base">Freelance Software Engineer & Management Information Systems Graduate seeking full time programming
<p class="text-pretty text-sm xl:text-base">Freelance Software Engineer & Management Information Systems
Graduate seeking full time programming
opportunities.</p>
<nav class="flex gap-2 flex-wrap xl:justify-end">
<RouterLink to="/"
Expand Down
2 changes: 1 addition & 1 deletion src/data/experience.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"May 2023 - August 2023"
],
"preview": "Internship involving research to assist in where the organization should focus services and extensive business tours.",
"body": "During the summer of 2023, I interned with ISU's Center for Industrial Research and Service, or CIRAS for short. They aim to help small to medium-sized Iowa-based businesses grow by engaging, educating, and embedding. My role in my internship was varied:<br><ul><li>I researched a potential \"management systems\" service that CIRAS could provide customers. My mentor knew there was a demand for something like this, but she needed to learn more about the field. I began my research here, examining what and how numerous consulting firms would serve in this field. I had to combine my knowledge of management information systems and data on how consulting firms would assist in the space. At the end of my internship, I presented the data to leaders at CIRAS.</li><li>I collaborated on a project with a client and other interns to help them identify system requirements for a potential project. The process started with a tour one of our mentors took before the summer. He wrote down rough notes during the tour and needed us to clean them up. Once we did that, we sent the notes to the clients to ensure they looked accurate. After communicating what needs to be adjusted, we took the finalized info. We created process map diagrams to present where the client may have shortcomings in their processes.</li><li>The other interns and I had an opportunity with the same company to drive up and conduct a tour ourselves. We took this tour to solidify our process maps and see the process for ourselves instead of just relying on emails. After the tour, we presented the process maps with the company's employees to do one final check. After the tour, we had accurate diagrams and could move forward to start making recommendations to adjust shortcomings.</li><li>The other interns and I took extensive business tours to learn more about how companies around Iowa operate. We visited Arcosa Wind Towers in Newton, Vermeer in Pella, Bunn in Creston, and Collins Aerospace in Ames and Cedar Rapids. I learned a lot about how businesses operated, especially in industry, which was a weak point in my knowledge.</li></ul>I accepted this internship intending to improve the management side of my management info systems degree. Finishing the internship, I felt more well-balanced with newfound skills in business-to-business communication and an overall understanding of how businesses operate..",
"body": "During the summer of 2023, I interned with ISU's Center for Industrial Research and Service, or CIRAS for short. They aim to help small to medium-sized Iowa-based businesses grow by engaging, educating, and embedding. My role in my internship was varied:<br><ul><li>I researched a potential \"management systems\" service that CIRAS could provide customers. My mentor knew there was a demand for something like this, but she needed to learn more about the field. I began my research here, examining what and how numerous consulting firms would serve in this field. I had to combine my knowledge of management information systems and data on how consulting firms would assist in the space. At the end of my internship, I presented the data to leaders at CIRAS.</li><li>I collaborated on a project with a client and other interns to help them identify system requirements for a potential project. The process started with a tour one of our mentors took before the summer. He wrote down rough notes during the tour and needed us to clean them up. Once we did that, we sent the notes to the clients to ensure they looked accurate. After communicating what needs to be adjusted, we took the finalized info. We created process map diagrams to present where the client may have shortcomings in their processes.</li><li>The other interns and I had an opportunity with the same company to drive up and conduct a tour ourselves. We took this tour to solidify our process maps and see the process for ourselves instead of just relying on emails. After the tour, we presented the process maps with the company's employees to do one final check. After the tour, we had accurate diagrams and could move forward to start making recommendations to adjust shortcomings.</li><li>The other interns and I took extensive business tours to learn more about how companies around Iowa operate. We visited Arcosa Wind Towers in Newton, Vermeer in Pella, Bunn in Creston, and Collins Aerospace in Ames and Cedar Rapids. I learned a lot about how businesses operated, especially in industry, which was a weak point in my knowledge.</li></ul>I accepted this internship intending to improve the management side of my management info systems degree. Finishing the internship, I felt more well-balanced with newfound skills in business-to-business communication and an overall understanding of how businesses operate.",
"img": [
"group.jpg", "tour1.jpg", "tour2.jpg"
]
Expand Down

0 comments on commit cfa16aa

Please sign in to comment.