@turnipxenon/pineapple 2.4.22 → 2.4.24

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 (37) hide show
  1. package/.idea/workspace.xml +53 -48
  2. package/.svelte-kit/__package__/index.d.ts +1 -1
  3. package/.svelte-kit/__package__/index.js +1 -1
  4. package/.svelte-kit/__package__/template/Seaweed/GameSection.svelte +207 -0
  5. package/.svelte-kit/__package__/template/Seaweed/GameSection.svelte.d.ts +17 -0
  6. package/.svelte-kit/__package__/template/Seaweed/ProjectSection.svelte +289 -0
  7. package/.svelte-kit/__package__/template/Seaweed/ProjectSection.svelte.d.ts +17 -0
  8. package/.svelte-kit/__package__/template/Seaweed/SeaweedTemplate.svelte +246 -0
  9. package/.svelte-kit/__package__/template/{SeaweedTemplate.svelte.d.ts → Seaweed/SeaweedTemplate.svelte.d.ts} +1 -0
  10. package/.svelte-kit/__package__/template/Seaweed/seaweed.postcss +133 -0
  11. package/.svelte-kit/__package__/util/util.d.ts +4 -0
  12. package/.svelte-kit/__package__/util/util.js +7 -0
  13. package/.svelte-kit/ambient.d.ts +2 -0
  14. package/.svelte-kit/generated/server/internal.js +1 -1
  15. package/dist/index.d.ts +1 -1
  16. package/dist/index.js +1 -1
  17. package/dist/template/Seaweed/GameSection.svelte +207 -0
  18. package/dist/template/Seaweed/GameSection.svelte.d.ts +17 -0
  19. package/dist/template/Seaweed/ProjectSection.svelte +289 -0
  20. package/dist/template/Seaweed/ProjectSection.svelte.d.ts +17 -0
  21. package/dist/template/Seaweed/SeaweedTemplate.svelte +246 -0
  22. package/dist/template/{SeaweedTemplate.svelte.d.ts → Seaweed/SeaweedTemplate.svelte.d.ts} +1 -0
  23. package/dist/template/Seaweed/seaweed.postcss +133 -0
  24. package/dist/util/util.d.ts +4 -0
  25. package/dist/util/util.js +7 -0
  26. package/package.json +1 -1
  27. package/src/lib/index.ts +1 -1
  28. package/src/lib/template/Seaweed/GameSection.svelte +213 -0
  29. package/src/lib/template/Seaweed/ProjectSection.svelte +298 -0
  30. package/src/lib/template/Seaweed/SeaweedTemplate.svelte +275 -0
  31. package/src/lib/template/Seaweed/seaweed.postcss +133 -0
  32. package/src/lib/util/util.ts +13 -1
  33. package/src/routes/(seaweed)/portfolio/+page.svelte +1 -1
  34. package/src/routes/(seaweed)/portfolio/actual/+page.svelte +4 -4
  35. package/.svelte-kit/__package__/template/SeaweedTemplate.svelte +0 -910
  36. package/dist/template/SeaweedTemplate.svelte +0 -910
  37. package/src/lib/template/SeaweedTemplate.svelte +0 -877
@@ -0,0 +1,289 @@
1
+ <script>export let email = "turnipxenon@gmail.com";
2
+ import "./seaweed.postcss";
3
+ import { getModalStore } from "@skeletonlabs/skeleton";
4
+ import LinkIcon from "../../assets/icons/link-icon.svg";
5
+ import GithubIcon from "../../assets/icons/github-mark.svg";
6
+ import WeaverFootage from "../../assets/others/weaver-footage.gif";
7
+ import WindowSetGraph from "../../assets/others/window-set.png";
8
+ import ThisWebsiteFootage from "../../assets/others/seaweed-showcase.mp4";
9
+ import Card from "../../components/Card.svelte";
10
+ import Chip from "../../components/Chip.svelte";
11
+ const modalStore = getModalStore();
12
+ const cmput401Info = {
13
+ type: "confirm",
14
+ title: "Information",
15
+ body: `As a full disclosure, this link will lead you to <a href='https://cmput401.ca/projects/e5b13586-09c7-4ddd-baf6-fdb078d23398' target='_blank'>https://cmput401.ca/projects/e5b13586-09c7-4ddd-baf6-fdb078d23398</a>. We currently don't have any tests yet ensuring that the link is correct. Click confirm to go to the site. Please report any bugs at <a href='mailto:${email}' target='_blank'>${email}</a>.`,
16
+ response: (r) => {
17
+ if (r) {
18
+ window.open("https://cmput401.ca/projects/e5b13586-09c7-4ddd-baf6-fdb078d23398");
19
+ }
20
+ }
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>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponent } from "svelte";
2
+ import "./seaweed.postcss";
3
+ declare const __propDef: {
4
+ props: {
5
+ email?: string | undefined;
6
+ };
7
+ events: {
8
+ [evt: string]: CustomEvent<any>;
9
+ };
10
+ slots: {};
11
+ };
12
+ export type ProjectSectionProps = typeof __propDef.props;
13
+ export type ProjectSectionEvents = typeof __propDef.events;
14
+ export type ProjectSectionSlots = typeof __propDef.slots;
15
+ export default class ProjectSection extends SvelteComponent<ProjectSectionProps, ProjectSectionEvents, ProjectSectionSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,246 @@
1
+ <script>export let letChaos = true;
2
+ export let name = "Turnip";
3
+ export let email = "turnipxenon@gmail.com";
4
+ export let linkedinSlug = "turnip-xenon";
5
+ import SocialSection from "../../components/SocialSection.svelte";
6
+ import "./seaweed.postcss";
7
+ import SeaweedBaseLayout from "../../components/layouts/SeaweedBaseLayout.svelte";
8
+ import { Accordion, AccordionItem, SlideToggle } from "@skeletonlabs/skeleton";
9
+ import { page } from "$app/stores";
10
+ import Card from "../../components/Card.svelte";
11
+ import { onMount } from "svelte";
12
+ import ElementVisbilityDetector from "../../components/ElementVisbilityDetector.svelte";
13
+ import GameSection from "./GameSection.svelte";
14
+ import ProjectSection from "./ProjectSection.svelte";
15
+ let isVisible = true;
16
+ let isAdvanceSettingOn = false;
17
+ $:
18
+ isSocialsGone = !isVisible;
19
+ let qtfontWeight = "normal";
20
+ let additionalFontWeight = "";
21
+ const filterSearchParams = (searchParams) => {
22
+ const qtValue = searchParams.get("qt")?.trim();
23
+ if (qtValue === void 0) {
24
+ qtfontWeight = "bold";
25
+ return;
26
+ }
27
+ qtfontWeight = "normal";
28
+ const dynamicStyle = qtValue.split(",").map((term) => {
29
+ return `span.qt-${term} { font-weight: bold !important; }`;
30
+ }).join("\n");
31
+ const style = document.createElement("style");
32
+ style.type = "text/css";
33
+ style.innerText = dynamicStyle;
34
+ document.head.appendChild(style);
35
+ };
36
+ const chaoticWordBank = ["niko", "toba", "seal", "aquarium", "ojisan", "baikal"];
37
+ let chaosDone = false;
38
+ const runChaos = (node) => {
39
+ for (let child of Array.from(node.children)) {
40
+ if (child.nodeType === Node.ELEMENT_NODE) {
41
+ runChaos(child);
42
+ for (const childOfChild of child.childNodes) {
43
+ if (childOfChild.nodeType === Node.TEXT_NODE && childOfChild.textContent?.trim()) {
44
+ const max = childOfChild.textContent.length;
45
+ childOfChild.textContent = "";
46
+ while (childOfChild.textContent.length < max) {
47
+ childOfChild.textContent += chaoticWordBank[Math.floor(Math.random() * chaoticWordBank.length)] + " ";
48
+ }
49
+ }
50
+ }
51
+ if (child.hasAttribute("href")) {
52
+ child.setAttribute("href", "https://crouton.net/");
53
+ }
54
+ if (child.hasAttribute("src") && !child.hasAttribute("aria-hidden")) {
55
+ if (child.hasAttribute("alt")) {
56
+ child.setAttribute("src", "https://p.potaufeu.asahi.com/a2b9-p/picture/21583312/5c3310aec77068e24844c663aa62b37c.jpg");
57
+ } else {
58
+ child.setAttribute("src", "https://video.twimg.com/ext_tw_video/1318728494256410624/pu/vid/640x360/TMklz6hiTkQu3xhn.mp4");
59
+ child.setAttribute("muted", "true");
60
+ }
61
+ }
62
+ if (child.tagName.trim() === "VIDEO") {
63
+ child.setAttribute("src", "https://video.twimg.com/ext_tw_video/1318728494256410624/pu/vid/640x360/TMklz6hiTkQu3xhn.mp4");
64
+ child.setAttribute("muted", "true");
65
+ }
66
+ if (child.tagName.trim() === "BUTTON") {
67
+ child.setAttribute("disabled", "true");
68
+ }
69
+ }
70
+ }
71
+ };
72
+ onMount(() => {
73
+ if (!letChaos && $page.url.searchParams) {
74
+ filterSearchParams($page.url.searchParams);
75
+ }
76
+ if (letChaos) {
77
+ runChaos(document.body);
78
+ chaosDone = true;
79
+ }
80
+ });
81
+ let mainVisibility = "visible";
82
+ $:
83
+ mainVisibility = letChaos && !chaosDone ? "hidden" : "visible";
84
+ </script>
85
+
86
+ <SeaweedBaseLayout bind:shouldDisplayLeadingIcons={isSocialsGone}>
87
+ <!-- todo: limit main size to 1080 px? -->
88
+ <main style={`
89
+ --qt-font-weight: ${qtfontWeight};${additionalFontWeight};
90
+ visibility: ${mainVisibility};
91
+ `}>
92
+
93
+ <div class="experience-and-about-div">
94
+
95
+ <div class="greater-about-div">
96
+
97
+ <Card includeDataNoSnippet={false}>
98
+ <section class="section-card" slot="content">
99
+
100
+ <h1>About</h1>
101
+
102
+ <p>
103
+ Hi! My name is {name}! I work as a software developer. Outside of that, I like making games, and
104
+ trying to do everything in between required to make one. I have some showcased below, our visit
105
+ my itch.io page for more of them.
106
+ </p>
107
+ <!-- todo: link the degree details idk -->
108
+ <p>
109
+ I also graduated with BS Computing Science, Specializing in Software Practice, and a
110
+ certificate in Computer Game Development at University of Alberta.
111
+ </p>
112
+ <p>
113
+ I'm inspired by games like Harvest Moon: Friends of Mineral Town, Rune Factory 4, Theatrhythm,
114
+ Bravely Default: Flying Fairy, Boku no Natsuyasumi 2, and A Short Hike.
115
+ </p>
116
+
117
+ <!-- todo: maybe put cute stuff here -->
118
+ <!-- </ToggleableContent>-->
119
+ </section>
120
+ </Card>
121
+
122
+ <Card>
123
+ <section class="section-card" slot="content">
124
+ <SocialSection email={email} linkedinSlug={linkedinSlug}></SocialSection>
125
+ <ElementVisbilityDetector bind:isVisible={isVisible}>
126
+ </ElementVisbilityDetector>
127
+ </section>
128
+ </Card>
129
+
130
+ </div>
131
+
132
+ <Card>
133
+ <section class="section-card" slot="content">
134
+ <h1>Experience</h1>
135
+
136
+ <h2>Software Engineer</h2>
137
+ <div class="two-column-separated">
138
+ <div>July 2023 – January 2024</div>
139
+ <div style="text-align: end">Twitch, Remote</div>
140
+ </div>
141
+ <ul>
142
+ <li>Contributed to <span class="qt-go">Golang</span> and <span class="qt-ts">Typescript</span> codebases,
143
+ across several teams, to accommodate adjustments for public-facing user safety related features, to better
144
+ comply with EU’s <a target="_blank"
145
+ href="https://commission.europa.eu/strategy-and-policy/priorities-2019-2024/europe-fit-digital-age/digital-services-act/europe-fit-digital-age-new-online-rules-platforms_en">
146
+ Digital Services Act</a>, also including feature flags, alarms, unit tests, end-to-end testing, and
147
+ documentation
148
+ </li>
149
+ <li>Improved observability for upcoming features by setting up new <span class="qt-aws qt-infra">AWS</span>
150
+ resources to integrate internal data platform tools with existing alarms in our team’s microservice,
151
+ utilizing <span class="qt-aws qt-infra">Cloudwatch</span> and <span class="qt-aws qt-infra">Kinesis Data Stream</span>,
152
+ while adhering to best practices for <span class="qt-aws qt-infra">AWS CDK</span> (infrastructure as code)
153
+ </li>
154
+ </ul>
155
+ <br>
156
+
157
+ <h2>Software Engineer Intern</h2>
158
+ <div class="two-column-separated">
159
+ <div>May 2022 – Aug 2022</div>
160
+ <div style="text-align: end">Twitch, San Francisco</div>
161
+ </div>
162
+ <ul>
163
+ <li>
164
+ Built a <span class="qt-infra">load testing service</span> that can be configured to generate different
165
+ message types at different volumes that can be easily extended to target different chat services
166
+ </li>
167
+ <li>
168
+ Used Twitch’s set of custom tools, including Twitch’s custom RPC protocol, to create a backend
169
+ service with business logic written in <span class="qt-go">Go</span> and cloud infrastructure utilizing
170
+ <span
171
+ class="qt-infra qt-aws">ECS on Fargate, Cloudwatch, and DynamoDB</span>
172
+ , defined in <span class="qt-ts">Typescript</span>-flavored CDK
173
+ </li>
174
+ <li>
175
+ Wrote a technical specification document for the service’s MVP and possible future features, and
176
+ additional documentation on how to use the service and how to extend the load testing service to include
177
+ new services to test
178
+ </li>
179
+ </ul>
180
+ <br>
181
+ <!-- todo: turn off flashing when accordion is expanded -->
182
+ <Accordion>
183
+ <AccordionItem>
184
+ <div slot="summary">
185
+ <h2 class="accordion-header">More experience</h2>
186
+ </div>
187
+ <svelte:fragment slot="content">
188
+ <section class="more-section">
189
+ {#if (!letChaos)}
190
+ <h2>Software Engineer Intern</h2>
191
+ <div class="two-column-separated">
192
+ <div>May 2021 – Dec 2021</div>
193
+ <div style="text-align: end">Twitch / Amazon Web Services Canada, Remote</div>
194
+ </div>
195
+ <ul>
196
+ <li>
197
+ Implemented and wrote tests for a feature in Twitch’s backend authentication
198
+ systems and frontend web application that will help suggest security improvements to
199
+ over hundreds of thousands of users daily
200
+ </li>
201
+ <li>
202
+ Learned <span class="qt-go">Go</span>, <span class="qt-ts">Typescript</span>, <span
203
+ class="qt-react">React</span>, and other new technologies on the go to contribute to
204
+ the codebase
205
+ </li>
206
+ </ul>
207
+ {:else}
208
+ niko baikal seal from toba aquarium
209
+ {/if}
210
+ <br>
211
+ </section>
212
+ </svelte:fragment>
213
+ </AccordionItem>
214
+ </Accordion>
215
+ </section>
216
+ </Card>
217
+
218
+ </div>
219
+
220
+ <GameSection email={email}></GameSection>
221
+
222
+ <ProjectSection email={email}></ProjectSection>
223
+
224
+ <div aria-hidden="true" style="height: 25vh" />
225
+
226
+ <Card>
227
+ <div slot="content" class="default-card">
228
+ <h1>Advanced settings</h1>
229
+ <p>This one is for those curious how I customize this page.</p>
230
+ <SlideToggle name="slider-label" bind:checked={isAdvanceSettingOn}>
231
+ Advanced settings: {isAdvanceSettingOn ? "On" : "Off"}
232
+ </SlideToggle>
233
+ {#if (isAdvanceSettingOn)}
234
+ <br>
235
+ {/if}
236
+ </div>
237
+ </Card>
238
+
239
+ </main>
240
+
241
+ <SocialSection slot="extraLeadingIcons"
242
+ isSlot={true}
243
+ email={email}
244
+ linkedinSlug={linkedinSlug}
245
+ isSmallVersion={true}></SocialSection>
246
+ </SeaweedBaseLayout>
@@ -1,4 +1,5 @@
1
1
  import { SvelteComponent } from "svelte";
2
+ import "./seaweed.postcss";
2
3
  declare const __propDef: {
3
4
  props: {
4
5
  letChaos?: boolean | undefined;