diff --git a/src/comps/Utils/HorizonalStack.svelte b/src/comps/Utils/HorizonalStack.svelte deleted file mode 100644 index 8a98e34..0000000 --- a/src/comps/Utils/HorizonalStack.svelte +++ /dev/null @@ -1,12 +0,0 @@ -
- -
- - \ No newline at end of file diff --git a/src/comps/Utils/VerticalStack.svelte b/src/comps/Utils/VerticalStack.svelte deleted file mode 100644 index e87e109..0000000 --- a/src/comps/Utils/VerticalStack.svelte +++ /dev/null @@ -1,4 +0,0 @@ - -
- -
\ No newline at end of file diff --git a/src/comps/Utils/ZSpacer.svelte b/src/comps/Utils/ZSpacer.svelte deleted file mode 100644 index 8f30483..0000000 --- a/src/comps/Utils/ZSpacer.svelte +++ /dev/null @@ -1,8 +0,0 @@ -
- - \ No newline at end of file diff --git a/src/comps/timeline/timeline.svelte b/src/comps/timeline/timeline.svelte deleted file mode 100644 index b7d141f..0000000 --- a/src/comps/timeline/timeline.svelte +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/src/comps/timeline/timelineItem.svelte b/src/comps/timeline/timelineItem.svelte deleted file mode 100644 index 500f1de..0000000 --- a/src/comps/timeline/timelineItem.svelte +++ /dev/null @@ -1,99 +0,0 @@ - - - - -
-
- {#if imagePath !== "null"} -
- nothing -
- {/if} -
-
-
-
{@html title}
-
{@html date}
-
{@html desc}
-
-
- - \ No newline at end of file diff --git a/src/lib/IO/Button.svelte b/src/lib/IO/Button.svelte deleted file mode 100644 index fd2d319..0000000 --- a/src/lib/IO/Button.svelte +++ /dev/null @@ -1,66 +0,0 @@ - - - -
- - Click Me! - -
-
- - diff --git a/src/lib/IO/ButtonType.ts b/src/lib/IO/ButtonType.ts deleted file mode 100644 index f0d674b..0000000 --- a/src/lib/IO/ButtonType.ts +++ /dev/null @@ -1,5 +0,0 @@ -export enum ButtonType { - Primary, - Secondary, - Accent -} diff --git a/src/lib/posts/NewsCard.svelte b/src/lib/posts/NewsCard.svelte deleted file mode 100644 index 327ac67..0000000 --- a/src/lib/posts/NewsCard.svelte +++ /dev/null @@ -1,77 +0,0 @@ - - - - - diff --git a/src/lib/posts/NewsVerticalCard.svelte b/src/lib/posts/NewsVerticalCard.svelte deleted file mode 100644 index b573372..0000000 --- a/src/lib/posts/NewsVerticalCard.svelte +++ /dev/null @@ -1,79 +0,0 @@ - - - - - diff --git a/src/lib/posts/ShowcaseNewsCard.svelte b/src/lib/posts/ShowcaseNewsCard.svelte deleted file mode 100644 index 4de37e7..0000000 --- a/src/lib/posts/ShowcaseNewsCard.svelte +++ /dev/null @@ -1,78 +0,0 @@ - - - - - diff --git a/src/routes/+layout.server.ts b/src/routes/+layout.server.ts deleted file mode 100644 index 0d54cb1..0000000 --- a/src/routes/+layout.server.ts +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Provides post summaries to all pages. That means every page can access summaries - * for all posts on the website. -*/ - -import { type Post, posts } from './posts/posts_data'; - -export function load() { - let summaries : Post[] = []; - - // Sort by newest news first - posts.sort((a, b) => b.creation_date - a.creation_date); - - posts.forEach((post) => { - summaries.push(post); - }); - - return { summaries }; -} diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index b13175a..c2bd4b6 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -1,11 +1,6 @@ - - - -
- - {onLoaded()}} bind:this={frameLoader} style="height: 0.01px; width: 0.01px;" class="" src="/images/spinning_cat/untitled_00001.png" alt=""> - {onLoaded()}} bind:this={frameLoader2} style="height: 0.01px; width: 0.01px;" class="" src="/images/spinning_cat/untitled_00001.png" alt=""> - {onLoaded()}} bind:this={frameLoader3} style="height: 0.01px; width: 0.01px;" class="" src="/images/spinning_cat/untitled_00001.png" alt=""> - {onLoaded()}} bind:this={frameLoader4} style="height: 0.01px; width: 0.01px;" class="" src="/images/spinning_cat/untitled_00001.png" alt=""> - - -
-
- -
-
{frameIndex}
- -
-
- -
- -
\ No newline at end of file diff --git a/src/routes/games/+page.svelte b/src/routes/games/+page.svelte deleted file mode 100644 index 236d407..0000000 --- a/src/routes/games/+page.svelte +++ /dev/null @@ -1 +0,0 @@ -WIP diff --git a/src/routes/post/+layout.svelte b/src/routes/post/+layout.svelte deleted file mode 100644 index e49c2ef..0000000 --- a/src/routes/post/+layout.svelte +++ /dev/null @@ -1,92 +0,0 @@ - - - -
-
-
- {data.post.cover_alt} -

{data.post.title}

-
- Created {humanDate(new Date(+data.post.creation_date * 1000))} - Last Modified {humanDate(new Date(+data.post.modification_date * 1000))} -
-
-
- -
-
-
- - - diff --git a/src/routes/post/+layout.ts b/src/routes/post/+layout.ts deleted file mode 100644 index ba3a63e..0000000 --- a/src/routes/post/+layout.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { posts, type Post } from '../posts/posts_data'; - -export interface BlogData { - summaries: Post[], - post: Post -} - -export async function load({ url, parent }) : Promise { - const { summaries } = await parent(); - const websiteUrl = url.pathname.split('/'); - const windowUrl = websiteUrl.pop() || websiteUrl.pop(); // Handle trailing / - - return { - summaries: summaries, - post: posts.filter((post) => post.url == windowUrl)[0], - }; -} diff --git a/src/routes/post/Post.svelte b/src/routes/post/Post.svelte deleted file mode 100644 index 1d4c23e..0000000 --- a/src/routes/post/Post.svelte +++ /dev/null @@ -1,10 +0,0 @@ -
-
- - - - - - -
-
diff --git a/src/routes/post/folder-icons/+page.svelte b/src/routes/post/folder-icons/+page.svelte deleted file mode 100644 index 5dc2f10..0000000 --- a/src/routes/post/folder-icons/+page.svelte +++ /dev/null @@ -1,2 +0,0 @@ -Lorem ipsum dolor sit amet, officia excepteur ex fugiat reprehenderit enim labore culpa sint ad nisi Lorem pariatur mollit ex esse exercitation amet. Nisi anim cupidatat excepteur officia. Reprehenderit nostrud nostrud ipsum Lorem est aliquip amet voluptate voluptate dolor minim nulla est proident. Nostrud officia pariatur ut officia. Sit irure elit esse ea nulla sunt ex occaecat reprehenderit commodo officia dolor Lorem duis laboris cupidatat officia voluptate. Culpa proident adipisicing id nulla nisi laboris ex in Lorem sunt duis officia eiusmod. Aliqua reprehenderit commodo ex non excepteur duis sunt velit enim. Voluptate laboris sint cupidatat ullamco ut ea consectetur et est culpa et culpa duis. - diff --git a/src/routes/post/git-bisecting/+page.svelte b/src/routes/post/git-bisecting/+page.svelte deleted file mode 100644 index 046aa06..0000000 --- a/src/routes/post/git-bisecting/+page.svelte +++ /dev/null @@ -1,66 +0,0 @@ - - - - {@html obsidian} - - -

-Finding the specific commit that introduced a bug in your code can be frustrating, -especially in big projects with a lot of commits. Git bisecting is a method -used to quickly find which commit is the culprit. Git bisect works by you specifying -a so called 'bad' commit where you know the bug occurs and a commit where you know the -bug doesn't occur. Afterwards git will binary search it's way to find the commit -introducing the bug. -

-

-Suppose we've the following git history: -

- -Showing a git history, where on the left there is a 'good' commit with a couple of commits between the current commit on the right -

-It could potentially contain many more commits between the known 'good' commit and the -current one. Somewhere in the commits 1, 2, 3, 4 or the current one, a bug was -introduced. One way to find the specific commit that introduced the bug, could -be to check each commit starting from commit 1 then 2 then 3 ... and so on. -This is known as a linear search, and would take very long if there are a lot -of commits between the bad and the current. -

-

-Instead git bisect comes to the rescue. Git bisect performs a -binary search, -which is much faster. -To use git bisect, you must tell git to start bisecting: -

- -

-Afterwards we mark the 'bad' commit - any commit we know the bug occurs in. In this example -the current commit that we know is bad have the commit hash c26cf8a, so -we mark the commit bad: -

- -

-After that we mark a previous commit that we know the bug doesn't occur in. In this -example it's the 'good' commit (se picture above), which has a commit hash of b34ec52 -

- -

-Now git will automatically checkout a commit somewhere in between the good and bad commit. -Your job is now to re-build your project and test if the bug occurs. If the bug -doesn't occur you report it to git: -

- -

-However if it does occur you mark it bad: -

- -

-You continue to do this until git has tracked down the first bad commit, ie. the -commit that introduced the bug. -

- -

Resources

-Git bisect man page: https://git-scm.com/docs/git-bisect diff --git a/src/routes/post/lorem/+page.svelte b/src/routes/post/lorem/+page.svelte deleted file mode 100644 index e69de29..0000000 diff --git a/src/routes/post/lorem1/+page.svelte b/src/routes/post/lorem1/+page.svelte deleted file mode 100644 index e69de29..0000000 diff --git a/src/routes/posts/+page.svelte b/src/routes/posts/+page.svelte deleted file mode 100644 index eab8d4a..0000000 --- a/src/routes/posts/+page.svelte +++ /dev/null @@ -1,81 +0,0 @@ - - -
-
-

Blog Posts

- -
-
- -
- {#if matched_posts.length == 0} - No Matches - {/if} - {#each matched_posts as summary} - - {/each} -
- - diff --git a/src/routes/posts/posts_data.ts b/src/routes/posts/posts_data.ts deleted file mode 100644 index 634a3f5..0000000 --- a/src/routes/posts/posts_data.ts +++ /dev/null @@ -1,53 +0,0 @@ -// TODO: document members -export type Post = { - // Required - url : string, - cover_img : string, - cover_alt : string, - title: string, - summary : string, - creation_date : number - modification_date: number, - - // Optional - // TODO: author? -} - -export const posts : Post[] = [ - { - url: 'git-bisecting', - cover_img: '/images/posts/git-bisecting/thumbnail.png', - cover_alt: 'Photo of a bug', - title: 'Tracking down bugs in your code — using git bisect', - summary: 'Track down which specific change introduced a bug using the binary search tool provided by git.', - creation_date: 1709907213, - modification_date: 1709907213, - }, - { - url: 'folder-icons', - cover_img: '/images/posts/folder-icons/cover.png', - cover_alt: 'Image of folder icons being used in the editor', - title: 'Amazing Icons for Folders in Unity!', - summary: 'See how you can use Zhen\'s folder icons for Unity to boost your developer experience', - creation_date: 1708382491, - modification_date: 1708382491, - }, - { - url: 'lorem', - cover_img: '/images/posts/folder-icons/cover.png', - cover_alt: 'Lorem ipsum dolor sit amet, qui minim labore adipisicing minim sint cillum sint consectetur cupidatat.', - title: 'Lorem Ipsum !!', - summary: 'This is a nice exploanation on lorem ipsum latin', - creation_date: 1708382491, - modification_date: 1708382491, - }, - { - url: 'lorem1', - cover_img: '/images/posts/folder-icons/cover.png', - cover_alt: 'Lorem ipsum dolor sit amet, qui minim labore adipisicing minim sint cillum sint consectetur cupidatat.', - title: 'Idk some arcticle bruh!', - summary: 'Lorem ipsum dolor sit amet, qui minim labore adipisicing minim sint cillum sint consectetur cupidatat.', - creation_date: 1708558377, - modification_date: 1708558377, - }, -]; diff --git a/src/routes/zhen/cv/Comps/AlexWatermark.svelte b/src/routes/zhen/cv/Comps/AlexWatermark.svelte deleted file mode 100644 index c41f62b..0000000 --- a/src/routes/zhen/cv/Comps/AlexWatermark.svelte +++ /dev/null @@ -1,19 +0,0 @@ -
- ALEX -
- - diff --git a/src/routes/zhen/cv/Comps/BottomRightDecor.svelte b/src/routes/zhen/cv/Comps/BottomRightDecor.svelte deleted file mode 100644 index 09fb6cc..0000000 --- a/src/routes/zhen/cv/Comps/BottomRightDecor.svelte +++ /dev/null @@ -1,47 +0,0 @@ -
-
-
-
- Thank you! ❤ -
-
-
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/Comps/CombinedContacts.svelte b/src/routes/zhen/cv/Comps/CombinedContacts.svelte deleted file mode 100644 index fb1d3ce..0000000 --- a/src/routes/zhen/cv/Comps/CombinedContacts.svelte +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/routes/zhen/cv/Comps/Contact.svelte b/src/routes/zhen/cv/Comps/Contact.svelte deleted file mode 100644 index af2ad95..0000000 --- a/src/routes/zhen/cv/Comps/Contact.svelte +++ /dev/null @@ -1,76 +0,0 @@ -
-
- - Contact - -
-
-
-
Email
-
Zhen@deprived.dev
-
-
-
Phone
-
+45 42535723
-
-
-
LinkedIn
- Zhentao-Wei -
-
-
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/Comps/Education.svelte b/src/routes/zhen/cv/Comps/Education.svelte deleted file mode 100644 index 1c84383..0000000 --- a/src/routes/zhen/cv/Comps/Education.svelte +++ /dev/null @@ -1,92 +0,0 @@ - - -
-
- - Education - -
-
-
- NextKBH logo -
- - Gymnasium/Collage - HTX
- NEXT-Mediegymnasiet: Computer science
- May 2021 - Now -
-
-
-
- SAS logo -
- - SAS Master class
- 4-week project about SAS: OnDemand and SAS: Viya
- Dec 2023 - Dec 2023 -
-
-
-
- Emphasys center logo -
- - Emphasys Centre - Erasmus+
- 2 weeks of Unity VR
- Oct 2023 - Oct 2023 -
-
-
-
-
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/Comps/Experience.svelte b/src/routes/zhen/cv/Comps/Experience.svelte deleted file mode 100644 index e4a7576..0000000 --- a/src/routes/zhen/cv/Comps/Experience.svelte +++ /dev/null @@ -1,92 +0,0 @@ - - -
-
- - Experience - -
-
-
- NextKBH logo -
- - 3D printer manager - Volunteer
- Makerspace - kildevæld Kulturcenter
- Nov 2023 - Now -
-
-
-
- SAS logo -
- - Machine Learning Engineer - Short term intern
- Product design department - Epos
- Apr 2024 - Apr 2024 -
-
-
-
- Emphasys center logo -
- - Assistant - Short term intern
- Khora Virtual Reality
- Oct 2020 - Oct 2020 -
-
-
-
-
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/Comps/LeftTopDecor.svelte b/src/routes/zhen/cv/Comps/LeftTopDecor.svelte deleted file mode 100644 index 546b9b5..0000000 --- a/src/routes/zhen/cv/Comps/LeftTopDecor.svelte +++ /dev/null @@ -1,50 +0,0 @@ - - -
-
- -
-
-
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/Comps/LinkToSource.svelte b/src/routes/zhen/cv/Comps/LinkToSource.svelte deleted file mode 100644 index 8c382af..0000000 --- a/src/routes/zhen/cv/Comps/LinkToSource.svelte +++ /dev/null @@ -1,51 +0,0 @@ - - -
-
- This CV was made using SvelteKit logo -
-
- Sources: - Gitea - and - My Website -
-
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/Comps/LinkedInQR.svelte b/src/routes/zhen/cv/Comps/LinkedInQR.svelte deleted file mode 100644 index e6eef31..0000000 --- a/src/routes/zhen/cv/Comps/LinkedInQR.svelte +++ /dev/null @@ -1,24 +0,0 @@ - - -
-
LinkedIn
- {@html QRCode} -
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/Comps/NameAndImage.svelte b/src/routes/zhen/cv/Comps/NameAndImage.svelte deleted file mode 100644 index aec3b2c..0000000 --- a/src/routes/zhen/cv/Comps/NameAndImage.svelte +++ /dev/null @@ -1,25 +0,0 @@ - - -
- - Zhentao Wei -
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/Comps/NamePlate.svelte b/src/routes/zhen/cv/Comps/NamePlate.svelte deleted file mode 100644 index 03f0d99..0000000 --- a/src/routes/zhen/cv/Comps/NamePlate.svelte +++ /dev/null @@ -1,21 +0,0 @@ -
- - - Zhentao Wei -
- (He/Him) - -
- -
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/Comps/OtherContact.svelte b/src/routes/zhen/cv/Comps/OtherContact.svelte deleted file mode 100644 index eb21c4c..0000000 --- a/src/routes/zhen/cv/Comps/OtherContact.svelte +++ /dev/null @@ -1,71 +0,0 @@ -
-
- - Other - -
-
-
-
Itch.io
- botalex.itch.io -
-
-
Github
- @MagicBOTAlex -
-
-
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/Comps/Profile.svelte b/src/routes/zhen/cv/Comps/Profile.svelte deleted file mode 100644 index d7f6577..0000000 --- a/src/routes/zhen/cv/Comps/Profile.svelte +++ /dev/null @@ -1,31 +0,0 @@ -
-
- - About me - -
-
- As a 19-year-old with a deep passion for programming and - technology, I am highly dedicated to everything within this field. - Most of my knowledge is self-taught from many places on the - internet. I encourage you to browse my LinkedIn, since I - periodically post my hobby projects on there, and my skills are - described further in depth. -
- -
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/Comps/RepeatedSkills.svelte b/src/routes/zhen/cv/Comps/RepeatedSkills.svelte deleted file mode 100644 index 2a56199..0000000 --- a/src/routes/zhen/cv/Comps/RepeatedSkills.svelte +++ /dev/null @@ -1,62 +0,0 @@ - - -
- {#each { length: targetTextHeight } as _, i} - - {GrabRandomString()} - - {/each} -
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/Comps/ShortProfile.svelte b/src/routes/zhen/cv/Comps/ShortProfile.svelte deleted file mode 100644 index 94c484a..0000000 --- a/src/routes/zhen/cv/Comps/ShortProfile.svelte +++ /dev/null @@ -1,29 +0,0 @@ -
-
- - Short profile - -
-
- Student at NEXT-Copenhagen - Mediagymnasium and - volunteer at Kildevæld - Makerspace. -
- -
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/CompsRev2/AlexWatermark.svelte b/src/routes/zhen/cv/CompsRev2/AlexWatermark.svelte deleted file mode 100644 index f86a3bf..0000000 --- a/src/routes/zhen/cv/CompsRev2/AlexWatermark.svelte +++ /dev/null @@ -1,23 +0,0 @@ - - -
- ALEX -
- - diff --git a/src/routes/zhen/cv/CompsRev2/BiggestFlex.svelte b/src/routes/zhen/cv/CompsRev2/BiggestFlex.svelte deleted file mode 100644 index 3ffe1bc..0000000 --- a/src/routes/zhen/cv/CompsRev2/BiggestFlex.svelte +++ /dev/null @@ -1,27 +0,0 @@ -
-
- - Biggest flex - -
-
- Me and my small group of devs has won each and every gamejam, which we have participated in.
-

*Gamejams that had competitions.

-
- -
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/CompsRev2/BottomRightDecor.svelte b/src/routes/zhen/cv/CompsRev2/BottomRightDecor.svelte deleted file mode 100644 index 6559008..0000000 --- a/src/routes/zhen/cv/CompsRev2/BottomRightDecor.svelte +++ /dev/null @@ -1,53 +0,0 @@ - - -
-
-
-
-
- - - diff --git a/src/routes/zhen/cv/CompsRev2/CombinedContacts.svelte b/src/routes/zhen/cv/CompsRev2/CombinedContacts.svelte deleted file mode 100644 index fb1d3ce..0000000 --- a/src/routes/zhen/cv/CompsRev2/CombinedContacts.svelte +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/routes/zhen/cv/CompsRev2/Contact.svelte b/src/routes/zhen/cv/CompsRev2/Contact.svelte deleted file mode 100644 index af2ad95..0000000 --- a/src/routes/zhen/cv/CompsRev2/Contact.svelte +++ /dev/null @@ -1,76 +0,0 @@ -
-
- - Contact - -
-
-
-
Email
-
Zhen@deprived.dev
-
-
-
Phone
-
+45 42535723
-
-
-
LinkedIn
- Zhentao-Wei -
-
-
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/CompsRev2/Education.svelte b/src/routes/zhen/cv/CompsRev2/Education.svelte deleted file mode 100644 index 114523f..0000000 --- a/src/routes/zhen/cv/CompsRev2/Education.svelte +++ /dev/null @@ -1,56 +0,0 @@ - - -
-
- - Education - -
-
- - DTU
-

- Artificial intelligence -

-
- - Next
-

- Computer science -

-
- - Master class
-

- SAS Programming -

-
- - Emphasys center
-

- VR development -

-
-
-
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/CompsRev2/Experience.svelte b/src/routes/zhen/cv/CompsRev2/Experience.svelte deleted file mode 100644 index 3db2c6d..0000000 --- a/src/routes/zhen/cv/CompsRev2/Experience.svelte +++ /dev/null @@ -1,72 +0,0 @@ - - -
-
- - Experience - -
-
-
- - Data annotator
- GrazperAI
- Jul 2024 - Now -
-
-
- - 3D printer manager - Volunteer
- Makerspace - kildevæld Kulturcenter
- Nov 2023 - Now -
-
-
- - Machine Learning Engineer - Short term intern
- Product design department - Epos
- Apr 2024 - Apr 2024 -
-
-
- - Assistant - Short term intern
- Khora Virtual Reality
- Oct 2020 - Oct 2020 -
-
-
-
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/CompsRev2/IconAndText.svelte b/src/routes/zhen/cv/CompsRev2/IconAndText.svelte deleted file mode 100644 index a879037..0000000 --- a/src/routes/zhen/cv/CompsRev2/IconAndText.svelte +++ /dev/null @@ -1,43 +0,0 @@ - - -
- {imageCaption} -
- - - -
-
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/CompsRev2/IconAndText2.svelte b/src/routes/zhen/cv/CompsRev2/IconAndText2.svelte deleted file mode 100644 index a9ed0c5..0000000 --- a/src/routes/zhen/cv/CompsRev2/IconAndText2.svelte +++ /dev/null @@ -1,44 +0,0 @@ - - -
- {imageCaption} -
- - - -
-
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/CompsRev2/LeftTopDecor.svelte b/src/routes/zhen/cv/CompsRev2/LeftTopDecor.svelte deleted file mode 100644 index 6ba1820..0000000 --- a/src/routes/zhen/cv/CompsRev2/LeftTopDecor.svelte +++ /dev/null @@ -1,53 +0,0 @@ - - -
-
- -
-
-
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/CompsRev2/LinkToSource.svelte b/src/routes/zhen/cv/CompsRev2/LinkToSource.svelte deleted file mode 100644 index 5895952..0000000 --- a/src/routes/zhen/cv/CompsRev2/LinkToSource.svelte +++ /dev/null @@ -1,51 +0,0 @@ - - -
-
- This CV was made using html, css and SvelteKit logo - Sources: - CV source code - and - My Website -
-
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/CompsRev2/LinkedInQR.svelte b/src/routes/zhen/cv/CompsRev2/LinkedInQR.svelte deleted file mode 100644 index e6eef31..0000000 --- a/src/routes/zhen/cv/CompsRev2/LinkedInQR.svelte +++ /dev/null @@ -1,24 +0,0 @@ - - -
-
LinkedIn
- {@html QRCode} -
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/CompsRev2/NameAndImage.svelte b/src/routes/zhen/cv/CompsRev2/NameAndImage.svelte deleted file mode 100644 index 99342cb..0000000 --- a/src/routes/zhen/cv/CompsRev2/NameAndImage.svelte +++ /dev/null @@ -1,26 +0,0 @@ - - -
- - Zhentao Wei -
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/CompsRev2/NamePlate.svelte b/src/routes/zhen/cv/CompsRev2/NamePlate.svelte deleted file mode 100644 index 03f0d99..0000000 --- a/src/routes/zhen/cv/CompsRev2/NamePlate.svelte +++ /dev/null @@ -1,21 +0,0 @@ -
- - - Zhentao Wei -
- (He/Him) - -
- -
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/CompsRev2/OtherContact.svelte b/src/routes/zhen/cv/CompsRev2/OtherContact.svelte deleted file mode 100644 index eb21c4c..0000000 --- a/src/routes/zhen/cv/CompsRev2/OtherContact.svelte +++ /dev/null @@ -1,71 +0,0 @@ -
-
- - Other - -
-
-
-
Itch.io
- botalex.itch.io -
-
-
Github
- @MagicBOTAlex -
-
-
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/CompsRev2/Profile.svelte b/src/routes/zhen/cv/CompsRev2/Profile.svelte deleted file mode 100644 index 8e11064..0000000 --- a/src/routes/zhen/cv/CompsRev2/Profile.svelte +++ /dev/null @@ -1,31 +0,0 @@ -
-
- - About me - -
-
- I'm a 20-year-old with a deep passion for programming and - technology. - Most of my knowledge is self-taught from many places on the - internet, so university hasn't helped much. I encourage you to browse my LinkedIn, since I - periodically post my hobby projects on there, and my skills are - described further in depth. -
- -
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/CompsRev2/RepeatedSkills.svelte b/src/routes/zhen/cv/CompsRev2/RepeatedSkills.svelte deleted file mode 100644 index 2a56199..0000000 --- a/src/routes/zhen/cv/CompsRev2/RepeatedSkills.svelte +++ /dev/null @@ -1,62 +0,0 @@ - - -
- {#each { length: targetTextHeight } as _, i} - - {GrabRandomString()} - - {/each} -
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/CompsRev2/ShortProfile.svelte b/src/routes/zhen/cv/CompsRev2/ShortProfile.svelte deleted file mode 100644 index 3f17bb9..0000000 --- a/src/routes/zhen/cv/CompsRev2/ShortProfile.svelte +++ /dev/null @@ -1,28 +0,0 @@ -
-
- - Short profile - -
-
- ◾ "AI and data" at DTU.
- ◾ Working at GrazperAI
- ◾ Volunteer at Kildevæld Makerspace. -
- -
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/CompsRev2/TableOfProjects.svelte b/src/routes/zhen/cv/CompsRev2/TableOfProjects.svelte deleted file mode 100644 index df3c27d..0000000 --- a/src/routes/zhen/cv/CompsRev2/TableOfProjects.svelte +++ /dev/null @@ -1,88 +0,0 @@ -
-
- - List of big projects - -
-
-
-
Computer vision
-
Implimented YoloV1 from scratch. (object detection)
-
-
-
Arduino
-
Built my own claw machine with 2 dimentions of movement
-
-
-
App dev
-
Made an Doulingo'ish app for learning chinese in 9 days
-
-
-
Open-source help
-
Contributed in multiple Open-source projects on github
-
-
-
PCB designing
-
I am currently designing my own circuit board
-
-
-
-

- If you want proof or want to know about other projects. Contact me! -

-
-
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/cv.zip b/src/routes/zhen/cv/cv.zip new file mode 100644 index 0000000..469b296 Binary files /dev/null and b/src/routes/zhen/cv/cv.zip differ diff --git a/src/routes/zhen/cv/epos/+page.svelte b/src/routes/zhen/cv/epos/+page.svelte deleted file mode 100644 index 7fde922..0000000 --- a/src/routes/zhen/cv/epos/+page.svelte +++ /dev/null @@ -1,250 +0,0 @@ - - -Zhentao Wei's CV {getFormattedDate()} - - - - - -
-
- Under here is my CV rev1 for an application. This page has been able to be saved as PDF. - This can be done by pressing
P
+
CTRL
, then set scaling to 100% and no margins. Lastly, select save to PDF or print. -
-
- I have to sadly recommend chrome for this process. Firefox somehow messes with the quality of the PDF :( -
-
- -
-
-
- - -
- - - - -
-
-
-
- -
- -
-
- -
-
- - - -
-
-
-
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/rev1/+page.svelte b/src/routes/zhen/cv/rev1/+page.svelte deleted file mode 100644 index d6233cc..0000000 --- a/src/routes/zhen/cv/rev1/+page.svelte +++ /dev/null @@ -1,250 +0,0 @@ - - -Zhentao Wei's CV {getFormattedDate()} - - - - - -
-
- Under here is my CV rev1 for an application made entirely in HTML and CSS. The page is designed to be saved as PDF. - This can be done by pressing
P
+
CTRL
, then set scaling to 100% and no margins. Lastly, select save to PDF or print. -
-
- I have to sadly recommend chrome for this process. Firefox somehow messes with the quality of the PDF :( -
-
- -
-
-
- - -
- - - - -
-
-
-
- -
- -
-
- -
-
- - - -
-
-
-
- - \ No newline at end of file diff --git a/src/routes/zhen/cv/rev2/+page.svelte b/src/routes/zhen/cv/rev2/+page.svelte deleted file mode 100644 index ab14a2a..0000000 --- a/src/routes/zhen/cv/rev2/+page.svelte +++ /dev/null @@ -1,257 +0,0 @@ - - -Zhentao Wei's CV {getFormattedDate()} - - - - - -
-
- Under here is my CV rev1 for an application made entirely in HTML and CSS. - The page is designed to be saved as PDF. This can be done by pressing
- P -
- + -
CTRL
- , then set scaling to 100% and no margins. Lastly, select save to PDF or print. -
-
- I have to sadly recommend chrome for this process. Firefox somehow messes with - the quality of the PDF :( -
-
- -
-
-
- - -
- - - - -
-
-
-
- -
- -
-
- -
-
- - - - - -
-
-
-
- -