@turnipxenon/pineapple 2.4.24 → 2.4.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. package/.idea/workspace.xml +55 -51
  2. package/.svelte-kit/__package__/components/overrideable_meta/OverridableMeta.svelte +51 -0
  3. package/.svelte-kit/__package__/components/overrideable_meta/OverridableMeta.svelte.d.ts +20 -0
  4. package/.svelte-kit/__package__/components/overrideable_meta/OverridableMetaProps.d.ts +7 -0
  5. package/.svelte-kit/__package__/components/overrideable_meta/OverridableMetaProps.js +1 -0
  6. package/.svelte-kit/__package__/components/overrideable_meta/index.d.ts +2 -0
  7. package/.svelte-kit/__package__/components/overrideable_meta/index.js +3 -0
  8. package/.svelte-kit/__package__/index.d.ts +1 -0
  9. package/.svelte-kit/__package__/index.js +2 -0
  10. package/.svelte-kit/__package__/template/Seaweed/GameSection.svelte +184 -184
  11. package/.svelte-kit/__package__/template/Seaweed/ProjectSection.svelte +268 -268
  12. package/.svelte-kit/__package__/template/Seaweed/SeaweedTemplate.svelte +135 -18
  13. package/.svelte-kit/__package__/template/Seaweed/SeaweedTemplate.svelte.d.ts +1 -0
  14. package/.svelte-kit/__package__/template/Seaweed/seaweed.postcss +133 -133
  15. package/.svelte-kit/__package__/util/util.d.ts +3 -0
  16. package/.svelte-kit/ambient.d.ts +0 -2
  17. package/.svelte-kit/generated/client/nodes/5.js +2 -0
  18. package/.svelte-kit/generated/client/nodes/6.js +2 -0
  19. package/.svelte-kit/generated/client/nodes/7.js +2 -0
  20. package/.svelte-kit/generated/client/nodes/8.js +1 -1
  21. package/.svelte-kit/generated/server/internal.js +1 -1
  22. package/.svelte-kit/types/route_meta_data.json +7 -2
  23. package/.svelte-kit/types/src/routes/(pineapple)/pineapple/$types.d.ts +3 -1
  24. package/.svelte-kit/types/src/routes/(seaweed)/portfolio/$types.d.ts +4 -2
  25. package/.svelte-kit/types/src/routes/(seaweed)/portfolio/actual/$types.d.ts +3 -1
  26. package/dist/components/overrideable_meta/OverridableMeta.svelte +51 -0
  27. package/dist/components/overrideable_meta/OverridableMeta.svelte.d.ts +20 -0
  28. package/dist/components/overrideable_meta/OverridableMetaProps.d.ts +7 -0
  29. package/dist/components/overrideable_meta/OverridableMetaProps.js +1 -0
  30. package/dist/components/overrideable_meta/index.d.ts +2 -0
  31. package/dist/components/overrideable_meta/index.js +3 -0
  32. package/dist/index.d.ts +1 -0
  33. package/dist/index.js +2 -0
  34. package/dist/template/Seaweed/GameSection.svelte +184 -184
  35. package/dist/template/Seaweed/ProjectSection.svelte +268 -268
  36. package/dist/template/Seaweed/SeaweedTemplate.svelte +135 -18
  37. package/dist/template/Seaweed/SeaweedTemplate.svelte.d.ts +1 -0
  38. package/dist/template/Seaweed/seaweed.postcss +133 -133
  39. package/dist/util/util.d.ts +3 -0
  40. package/package.json +1 -1
  41. package/src/lib/components/overrideable_meta/OverridableMeta.svelte +56 -0
  42. package/src/lib/components/overrideable_meta/OverridableMetaProps.ts +7 -0
  43. package/src/lib/components/overrideable_meta/index.ts +4 -0
  44. package/src/lib/index.ts +3 -0
  45. package/src/lib/template/Seaweed/GameSection.svelte +213 -213
  46. package/src/lib/template/Seaweed/ProjectSection.svelte +298 -298
  47. package/src/lib/template/Seaweed/SeaweedTemplate.svelte +180 -21
  48. package/src/lib/template/Seaweed/seaweed.postcss +133 -133
  49. package/src/lib/util/util.ts +38 -34
  50. package/src/routes/(pineapple)/+layout.svelte +0 -15
  51. package/src/routes/(pineapple)/+page.svelte +0 -12
  52. package/src/routes/(pineapple)/pineapple/+page.svelte +0 -10
  53. package/src/routes/(pineapple)/pineapple/+page.ts +8 -0
  54. package/src/routes/(seaweed)/portfolio/+page.svelte +0 -11
  55. package/src/routes/(seaweed)/portfolio/+page.ts +8 -0
  56. package/src/routes/(seaweed)/portfolio/actual/+page.ts +8 -0
  57. package/src/routes/+layout.svelte +21 -0
@@ -19,271 +19,271 @@ const cmput401Info = {
19
19
  }
20
20
  }
21
21
  };
22
- </script>
23
-
24
- <Card>
25
- <section class="section-card title-card" slot="content">
26
- <h1 class="text-center">Projects</h1>
27
- </section>
28
- </Card>
29
-
30
- <section class="projects-section">
31
- <Card>
32
- <section class="project-card" slot="content">
33
- <iframe id="migrante-alberta"
34
- width="560" height="315" src="https://www.youtube.com/embed/ZemWwf8jh8E?si=RZwSfYHI-0Ael-RE"
35
- title="YouTube video player" style="border: none"
36
- allowfullscreen></iframe>
37
- <div class="project-card-body">
38
- <!-- todo: add regression to see if page is gone: https://cmput401.ca/api/projects/e5b13586-09c7-4ddd-baf6-fdb078d23398 -->
39
-
40
- <h2>Migrante Alberta</h2>
41
- <p>We developed a mobile-first cross-platform application to be used by the Canadian-based
42
- Filipino non-profit advocacy group, Migrante Alberta, to help new immigrants navigate
43
- through local services and events
44
- </p>
45
- <p>
46
- <Chip>Flutter</Chip>
47
- <Chip>Dart</Chip>
48
- <Chip>Python</Chip>
49
- <Chip>Django</Chip>
50
- <Chip>Heroku</Chip>
51
- <Chip>Android</Chip>
52
- <Chip>Postgresql</Chip>
53
- </p>
54
- <!-- todo: add a way to ask what did i do via chat? -->
55
- <!-- <p>-->
56
- <!-- I helped make reusable Flutter components for the application’s frontend, Dart utility files to-->
57
- <!-- help ease writing and debugging calls to the backend, and a troubleshooting documentation-->
58
- <!-- for handling common issues-->
59
- <!-- </p>-->
60
- <!-- <p>-->
61
- <!-- Added Python unit tests to the backend endpoints, refactored the backend’s authentication-->
62
- <!-- system from plain text to using Django’s authentication system, and wrote a script to ease-->
63
- <!-- deployment to Heroku-->
64
- <!-- </p>-->
65
-
66
- <!-- todo: add tags with Dart, Flutter, Python, Django, Heroku, Android -->
67
-
68
- <section class="game-link-section">
69
- <button type="button" class="btn variant-filled-primary turnip-button"
70
- title="https://selk.io/birb-project/trunk/"
71
- on:click={() => modalStore.trigger(cmput401Info)}>
72
- <img src={LinkIcon} class="long-btn-image" alt="itch icon">
73
- <span>cmput401.ca</span>
74
- </button>
75
- </section>
76
-
77
- </div>
78
- </section>
79
- </Card>
80
-
81
- <Card>
82
- <section class="project-card" slot="content">
83
- <div class="project-card-body">
84
-
85
- <h2>Decentralized social media</h2>
86
-
87
- <p>We made a full stack decentralized social media app made with <span class="qt-react">React</span> +
88
- <span class="qt-js">Javascript</span> for the client code, <span class="qt-django">Django</span> + <span
89
- class="qt-python">Python</span> for the backend code, and <span class="qt-heroku">Heroku</span> for
90
- deployment. This project was made
91
- for
92
- our Web Applications and Architecture class.</p>
93
- <p>The application can connect with three other decentralized social media app in the same class:
94
- </p>
95
- <ul>
96
- <li>
97
- <a href="https://github.com/hgshah/cmput404-project/blob/main/docs/testing_other_teams.md#team-14"
98
- target="_blank">Also
99
- a social media with the same Django + Python backend server where they act on behalf of
100
- our users interacting with theirs</a></li>
101
- <li>
102
- <a href="https://github.com/hgshah/cmput404-project/blob/main/docs/testing_other_teams.md#team-7"
103
- target="_blank">A
104
- social media that uses Fast API + Python for their backend server</a></li>
105
- <li>
106
- <a href="https://github.com/hgshah/cmput404-project/blob/main/docs/testing_other_teams.md#team-12"
107
- target="_blank">Another
108
- social media that has Django + Python for their backend but we have to act on behalf of
109
- our
110
- users interacting with their users</a>
111
- </li>
112
- </ul>
113
-
114
- <!-- todo: add tags with Javascript, React, Python, Django, Heroku -->
115
-
116
- <section class="game-link-section">
117
- <button type="button" class="game-button turnip-button"
118
- role="link"
119
- title="https://github.com/hgshah/cmput404-project"
120
- on:click={() => window.open("https://github.com/hgshah/cmput404-project")}>
121
- <img src={GithubIcon} alt="github icon">
122
- </button>
123
- </section>
124
- </div>
125
- </section>
126
- </Card>
127
-
128
- <Card>
129
- <section class="project-card" slot="content">
130
- <img alt="Footage of a visual novel-like dynamic dialog interaction happening on the same page we are on"
131
- src={WeaverFootage} />
132
-
133
- <div class="project-card-body">
134
- <h2>Customized Yarnspinner interpreter and dialog runner</h2>
135
-
136
- A custom dialog interpreter, written in <span class="qt-ts">Typescript</span>, that tokenizes then
137
- transpiles custom Yarnspinner dialog into a <span class="qt-ts">Typescript</span> file. The said files can
138
- be used on a corresponding runner or library, also implemented alongside it, allowing the ability to play a
139
- custom-flavor of YarnSpinner dialogs on <span class="qt-svelte">Svelte</span>.
140
-
141
- <section class="game-link-section">
142
- <button type="button" class="game-button turnip-button"
143
- role="link"
144
- title="https://github.com/TurnipXenon/pineapple/blob/main/docs/PineappleFiberSpec.md"
145
- on:click={() => window.open("https://github.com/TurnipXenon/pineapple/blob/main/docs/PineappleFiberSpec.md")}>
146
- <img src={GithubIcon} alt="github icon">
147
- </button>
148
- </section>
149
- </div>
150
- </section>
151
- </Card>
152
-
153
- <Card>
154
- <section class="project-card" slot="content">
155
- <div class="project-card-body">
156
- <h2>Full-stack <span class="qt-c">C</span> app</h2>
157
-
158
- <p>
159
- A terminal-based app consisting of a server observing several terminal apps all concurrently
160
- sending updates to the server, which then broadcasts these information concurrently to all the
161
- other terminal apps connected.
162
- </p>
163
- <p>
164
- The project involves <span class="qt-foundation">multiprocessing</span> programming featuring pthreads and
165
- mutexes, and <span class="qt-foundation">networking</span> via sockets.
166
- </p>
167
-
168
- <section class="game-link-section">
169
- <button type="button" class="game-button turnip-button"
170
- role="link"
171
- title="https://github.com/TurnipXenon/C380-1Code/blob/main/Assignment02/DESIGN.md"
172
- on:click={() => window.open("https://github.com/TurnipXenon/C380-1Code/blob/main/Assignment02/DESIGN.md")}>
173
- <img src={GithubIcon} class="long-btn-image" alt="github icon">
174
- </button>
175
- </section>
176
- </div>
177
- </section>
178
- </Card>
179
-
180
- <Card>
181
- <section class="project-card" slot="content">
182
- <img
183
- alt="A graph that visualizes the number of memory pages made by Quicksort cached within the window set as
184
- time goes by. The trend appears to look like a damping harmonic motion that does not go below the zero line. More
185
- details include the data size being 200000 entries, each data point skips 1060174 data points, with a
186
- page size of 4096 bytes, and window size of 100000 bytes."
187
- src={WindowSetGraph} />
188
- <div class="project-card-body">
189
- <h2>Working set simulation</h2>
190
-
191
- <p>
192
- A <span class="qt-c">C</span> program that simulates the working set model based on the output of memory
193
- addresses
194
- <span class="qt-valgrind">valgrind</span> detects as being accessed by a program being ran. It's
195
- implemented using a nested hashmap <span class="qt-foundation">data structure</span> implemented from
196
- scratch. The working set is the collection of memory pages referenced by a program within a certain time
197
- frame. It comes with a report analyzing and benchmarking how memory allocation, between sorting <span
198
- class="qt-foundation">algorithms</span> heapsort, quicksort, and radixsort, is affected by the window set
199
- size, page size, and their input size.
200
- </p>
201
-
202
- <section class="game-link-section">
203
- <button type="button" class="game-button turnip-button"
204
- role="link"
205
- title="https://github.com/TurnipXenon/C380-1Code/blob/main/Assignment03/REPORT.pdf"
206
- on:click={() => window.open("https://github.com/TurnipXenon/C380-1Code/blob/main/Assignment03/REPORT.pdf")}>
207
- <img src={GithubIcon} class="long-btn-image" alt="github icon">
208
- <span>Benchmark report</span>
209
- </button>
210
- <button type="button" class="game-button turnip-button"
211
- role="link"
212
- title="https://github.com/TurnipXenon/C380-1Code/blob/main/Assignment03/DESIGN.md"
213
- on:click={() => window.open("https://github.com/TurnipXenon/C380-1Code/blob/main/Assignment03/DESIGN.md")}>
214
- <img src={GithubIcon} class="long-btn-image" alt="github icon">
215
- <span>Design</span>
216
- </button>
217
- </section>
218
- </div>
219
- </section>
220
- </Card>
221
-
222
- <Card>
223
- <section class="project-card" slot="content">
224
-
225
- <video playsinline autoplay muted loop preload="none">
226
- <source src={ThisWebsiteFootage} type="video/mp4">
227
- video unavailable. original video contains clips of this website being resized and light-dark mode being
228
- toggled.
229
- </video>
230
- <div class="project-card-body">
231
- <h2>This webpage!</h2>
232
-
233
- <p>
234
- The webpage is made of two parts. The webpage that has the content for everything here, I've
235
- lovingly called Seaweed. I kept seaweed as a private package. On the other hand, the base package which I
236
- want to use for all spin offs of my websites is called Pineapple and have kept that codebase public.
237
- </p>
238
-
239
- <p>
240
- <Chip>Svelte</Chip>
241
- <Chip>Skeleton (Svelte UI library)</Chip>
242
- <Chip>Typescript</Chip>
243
- <Chip>Vercel</Chip>
244
- <Chip>YarnSpinner</Chip>
245
- </p>
246
-
247
- <section class="game-link-section">
248
- <button type="button" class="btn variant-filled-primary turnip-button"
249
- role="link"
250
- title="https://github.com/TurnipXenon/pineapple"
251
- on:click={() => window.open("https://github.com/TurnipXenon/pineapple")}>
252
- <img src={GithubIcon} class="long-btn-image" alt="github icon">
253
- </button>
254
- </section>
255
- </div>
256
- </section>
257
- </Card>
258
-
259
- <Card>
260
- <section class="project-card" slot="content">
261
- <div class="project-card-body">
262
- <h2>Mock Uber App</h2>
263
-
264
- <p>A course project app meant to emulate how Uber works by playing with <span
265
- class="qt-google">Google Maps API</span>.
266
- </p>
267
- <p>
268
- I implemented all interfaces related to the NoSQL cloud database <span
269
- class="qt-firebase qt-google qt-infra">Firebase</span>, making writing code easier for other programmers
270
- (<span
271
- class="qt-android">Android</span> / <span class="qt-java">Java</span>). I also wrote documentation to said
272
- code and added instrumented tests that are tested by the continuous integration tool <span
273
- class="qt-infra">Travis CI</span>, ensuring that our code is tested
274
- </p>
275
-
276
- <section class="game-link-section">
277
- <!-- todo: mock uber app find link -->
278
- <button type="button" class="game-button turnip-button"
279
- role="link"
280
- title="https://github.com/CMPUT301W20T10/UberApp"
281
- on:click={() => window.open("https://github.com/CMPUT301W20T10/UberApp")}>
282
- <img src={GithubIcon} class="long-btn-image" alt="github icon">
283
- </button>
284
- </section>
285
- </div>
286
- </section>
287
- </Card>
288
-
289
- </section>
22
+ </script>
23
+
24
+ <Card>
25
+ <section class="section-card title-card" slot="content">
26
+ <h1 class="text-center">Projects</h1>
27
+ </section>
28
+ </Card>
29
+
30
+ <section class="projects-section">
31
+ <Card>
32
+ <section class="project-card" slot="content">
33
+ <iframe id="migrante-alberta"
34
+ width="560" height="315" src="https://www.youtube.com/embed/ZemWwf8jh8E?si=RZwSfYHI-0Ael-RE"
35
+ title="YouTube video player" style="border: none"
36
+ allowfullscreen></iframe>
37
+ <div class="project-card-body">
38
+ <!-- todo: add regression to see if page is gone: https://cmput401.ca/api/projects/e5b13586-09c7-4ddd-baf6-fdb078d23398 -->
39
+
40
+ <h2>Migrante Alberta</h2>
41
+ <p>We developed a mobile-first cross-platform application to be used by the Canadian-based
42
+ Filipino non-profit advocacy group, Migrante Alberta, to help new immigrants navigate
43
+ through local services and events
44
+ </p>
45
+ <p>
46
+ <Chip>Flutter</Chip>
47
+ <Chip>Dart</Chip>
48
+ <Chip>Python</Chip>
49
+ <Chip>Django</Chip>
50
+ <Chip>Heroku</Chip>
51
+ <Chip>Android</Chip>
52
+ <Chip>Postgresql</Chip>
53
+ </p>
54
+ <!-- todo: add a way to ask what did i do via chat? -->
55
+ <!-- <p>-->
56
+ <!-- I helped make reusable Flutter components for the application’s frontend, Dart utility files to-->
57
+ <!-- help ease writing and debugging calls to the backend, and a troubleshooting documentation-->
58
+ <!-- for handling common issues-->
59
+ <!-- </p>-->
60
+ <!-- <p>-->
61
+ <!-- Added Python unit tests to the backend endpoints, refactored the backend’s authentication-->
62
+ <!-- system from plain text to using Django’s authentication system, and wrote a script to ease-->
63
+ <!-- deployment to Heroku-->
64
+ <!-- </p>-->
65
+
66
+ <!-- todo: add tags with Dart, Flutter, Python, Django, Heroku, Android -->
67
+
68
+ <section class="game-link-section">
69
+ <button type="button" class="btn variant-filled-primary turnip-button"
70
+ title="https://selk.io/birb-project/trunk/"
71
+ on:click={() => modalStore.trigger(cmput401Info)}>
72
+ <img src={LinkIcon} class="long-btn-image" alt="itch icon">
73
+ <span>cmput401.ca</span>
74
+ </button>
75
+ </section>
76
+
77
+ </div>
78
+ </section>
79
+ </Card>
80
+
81
+ <Card>
82
+ <section class="project-card" slot="content">
83
+ <div class="project-card-body">
84
+
85
+ <h2>Decentralized social media</h2>
86
+
87
+ <p>We made a full stack decentralized social media app made with <span class="qt-react">React</span> +
88
+ <span class="qt-js">Javascript</span> for the client code, <span class="qt-django">Django</span> + <span
89
+ class="qt-python">Python</span> for the backend code, and <span class="qt-heroku">Heroku</span> for
90
+ deployment. This project was made
91
+ for
92
+ our Web Applications and Architecture class.</p>
93
+ <p>The application can connect with three other decentralized social media app in the same class:
94
+ </p>
95
+ <ul>
96
+ <li>
97
+ <a href="https://github.com/hgshah/cmput404-project/blob/main/docs/testing_other_teams.md#team-14"
98
+ target="_blank">Also
99
+ a social media with the same Django + Python backend server where they act on behalf of
100
+ our users interacting with theirs</a></li>
101
+ <li>
102
+ <a href="https://github.com/hgshah/cmput404-project/blob/main/docs/testing_other_teams.md#team-7"
103
+ target="_blank">A
104
+ social media that uses Fast API + Python for their backend server</a></li>
105
+ <li>
106
+ <a href="https://github.com/hgshah/cmput404-project/blob/main/docs/testing_other_teams.md#team-12"
107
+ target="_blank">Another
108
+ social media that has Django + Python for their backend but we have to act on behalf of
109
+ our
110
+ users interacting with their users</a>
111
+ </li>
112
+ </ul>
113
+
114
+ <!-- todo: add tags with Javascript, React, Python, Django, Heroku -->
115
+
116
+ <section class="game-link-section">
117
+ <button type="button" class="game-button turnip-button"
118
+ role="link"
119
+ title="https://github.com/hgshah/cmput404-project"
120
+ on:click={() => window.open("https://github.com/hgshah/cmput404-project")}>
121
+ <img src={GithubIcon} alt="github icon">
122
+ </button>
123
+ </section>
124
+ </div>
125
+ </section>
126
+ </Card>
127
+
128
+ <Card>
129
+ <section class="project-card" slot="content">
130
+ <img alt="Footage of a visual novel-like dynamic dialog interaction happening on the same page we are on"
131
+ src={WeaverFootage} />
132
+
133
+ <div class="project-card-body">
134
+ <h2>Customized Yarnspinner interpreter and dialog runner</h2>
135
+
136
+ A custom dialog interpreter, written in <span class="qt-ts">Typescript</span>, that tokenizes then
137
+ transpiles custom Yarnspinner dialog into a <span class="qt-ts">Typescript</span> file. The said files can
138
+ be used on a corresponding runner or library, also implemented alongside it, allowing the ability to play a
139
+ custom-flavor of YarnSpinner dialogs on <span class="qt-svelte">Svelte</span>.
140
+
141
+ <section class="game-link-section">
142
+ <button type="button" class="game-button turnip-button"
143
+ role="link"
144
+ title="https://github.com/TurnipXenon/pineapple/blob/main/docs/PineappleFiberSpec.md"
145
+ on:click={() => window.open("https://github.com/TurnipXenon/pineapple/blob/main/docs/PineappleFiberSpec.md")}>
146
+ <img src={GithubIcon} alt="github icon">
147
+ </button>
148
+ </section>
149
+ </div>
150
+ </section>
151
+ </Card>
152
+
153
+ <Card>
154
+ <section class="project-card" slot="content">
155
+ <div class="project-card-body">
156
+ <h2>Full-stack <span class="qt-c">C</span> app</h2>
157
+
158
+ <p>
159
+ A terminal-based app consisting of a server observing several terminal apps all concurrently
160
+ sending updates to the server, which then broadcasts these information concurrently to all the
161
+ other terminal apps connected.
162
+ </p>
163
+ <p>
164
+ The project involves <span class="qt-foundation">multiprocessing</span> programming featuring pthreads and
165
+ mutexes, and <span class="qt-foundation">networking</span> via sockets.
166
+ </p>
167
+
168
+ <section class="game-link-section">
169
+ <button type="button" class="game-button turnip-button"
170
+ role="link"
171
+ title="https://github.com/TurnipXenon/C380-1Code/blob/main/Assignment02/DESIGN.md"
172
+ on:click={() => window.open("https://github.com/TurnipXenon/C380-1Code/blob/main/Assignment02/DESIGN.md")}>
173
+ <img src={GithubIcon} class="long-btn-image" alt="github icon">
174
+ </button>
175
+ </section>
176
+ </div>
177
+ </section>
178
+ </Card>
179
+
180
+ <Card>
181
+ <section class="project-card" slot="content">
182
+ <img
183
+ alt="A graph that visualizes the number of memory pages made by Quicksort cached within the window set as
184
+ time goes by. The trend appears to look like a damping harmonic motion that does not go below the zero line. More
185
+ details include the data size being 200000 entries, each data point skips 1060174 data points, with a
186
+ page size of 4096 bytes, and window size of 100000 bytes."
187
+ src={WindowSetGraph} />
188
+ <div class="project-card-body">
189
+ <h2>Working set simulation</h2>
190
+
191
+ <p>
192
+ A <span class="qt-c">C</span> program that simulates the working set model based on the output of memory
193
+ addresses
194
+ <span class="qt-valgrind">valgrind</span> detects as being accessed by a program being ran. It's
195
+ implemented using a nested hashmap <span class="qt-foundation">data structure</span> implemented from
196
+ scratch. The working set is the collection of memory pages referenced by a program within a certain time
197
+ frame. It comes with a report analyzing and benchmarking how memory allocation, between sorting <span
198
+ class="qt-foundation">algorithms</span> heapsort, quicksort, and radixsort, is affected by the window set
199
+ size, page size, and their input size.
200
+ </p>
201
+
202
+ <section class="game-link-section">
203
+ <button type="button" class="game-button turnip-button"
204
+ role="link"
205
+ title="https://github.com/TurnipXenon/C380-1Code/blob/main/Assignment03/REPORT.pdf"
206
+ on:click={() => window.open("https://github.com/TurnipXenon/C380-1Code/blob/main/Assignment03/REPORT.pdf")}>
207
+ <img src={GithubIcon} class="long-btn-image" alt="github icon">
208
+ <span>Benchmark report</span>
209
+ </button>
210
+ <button type="button" class="game-button turnip-button"
211
+ role="link"
212
+ title="https://github.com/TurnipXenon/C380-1Code/blob/main/Assignment03/DESIGN.md"
213
+ on:click={() => window.open("https://github.com/TurnipXenon/C380-1Code/blob/main/Assignment03/DESIGN.md")}>
214
+ <img src={GithubIcon} class="long-btn-image" alt="github icon">
215
+ <span>Design</span>
216
+ </button>
217
+ </section>
218
+ </div>
219
+ </section>
220
+ </Card>
221
+
222
+ <Card>
223
+ <section class="project-card" slot="content">
224
+
225
+ <video playsinline autoplay muted loop preload="none">
226
+ <source src={ThisWebsiteFootage} type="video/mp4">
227
+ video unavailable. original video contains clips of this website being resized and light-dark mode being
228
+ toggled.
229
+ </video>
230
+ <div class="project-card-body">
231
+ <h2>This webpage!</h2>
232
+
233
+ <p>
234
+ The webpage is made of two parts. The webpage that has the content for everything here, I've
235
+ lovingly called Seaweed. I kept seaweed as a private package. On the other hand, the base package which I
236
+ want to use for all spin offs of my websites is called Pineapple and have kept that codebase public.
237
+ </p>
238
+
239
+ <p>
240
+ <Chip>Svelte</Chip>
241
+ <Chip>Skeleton (Svelte UI library)</Chip>
242
+ <Chip>Typescript</Chip>
243
+ <Chip>Vercel</Chip>
244
+ <Chip>YarnSpinner</Chip>
245
+ </p>
246
+
247
+ <section class="game-link-section">
248
+ <button type="button" class="btn variant-filled-primary turnip-button"
249
+ role="link"
250
+ title="https://github.com/TurnipXenon/pineapple"
251
+ on:click={() => window.open("https://github.com/TurnipXenon/pineapple")}>
252
+ <img src={GithubIcon} class="long-btn-image" alt="github icon">
253
+ </button>
254
+ </section>
255
+ </div>
256
+ </section>
257
+ </Card>
258
+
259
+ <Card>
260
+ <section class="project-card" slot="content">
261
+ <div class="project-card-body">
262
+ <h2>Mock Uber App</h2>
263
+
264
+ <p>A course project app meant to emulate how Uber works by playing with <span
265
+ class="qt-google">Google Maps API</span>.
266
+ </p>
267
+ <p>
268
+ I implemented all interfaces related to the NoSQL cloud database <span
269
+ class="qt-firebase qt-google qt-infra">Firebase</span>, making writing code easier for other programmers
270
+ (<span
271
+ class="qt-android">Android</span> / <span class="qt-java">Java</span>). I also wrote documentation to said
272
+ code and added instrumented tests that are tested by the continuous integration tool <span
273
+ class="qt-infra">Travis CI</span>, ensuring that our code is tested
274
+ </p>
275
+
276
+ <section class="game-link-section">
277
+ <!-- todo: mock uber app find link -->
278
+ <button type="button" class="game-button turnip-button"
279
+ role="link"
280
+ title="https://github.com/CMPUT301W20T10/UberApp"
281
+ on:click={() => window.open("https://github.com/CMPUT301W20T10/UberApp")}>
282
+ <img src={GithubIcon} class="long-btn-image" alt="github icon">
283
+ </button>
284
+ </section>
285
+ </div>
286
+ </section>
287
+ </Card>
288
+
289
+ </section>