# HG changeset patch # User MrJuneJune # Date 1769235635 28800 # Node ID 8c74204fd36284bb4aea203d58e960ba21dc4bbc # Parent a8976a008a9d083a72c04f9dd48204e3f0a5dea9 [MD to HTML] Updated so it can be used through readme to html diff -r a8976a008a9d -r 8c74204fd362 benchmark/BUILD --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/benchmark/BUILD Fri Jan 23 22:20:35 2026 -0800 @@ -0,0 +1,1 @@ +# Benchmark package diff -r a8976a008a9d -r 8c74204fd362 gui_ze/gui_ze.bzl --- a/gui_ze/gui_ze.bzl Fri Jan 23 21:19:08 2026 -0800 +++ b/gui_ze/gui_ze.bzl Fri Jan 23 22:20:35 2026 -0800 @@ -1,68 +1,3 @@ -def _wasm_binary_impl(ctx): - """ - Compile C source to WASM using clang --target=wasm32. - No libc - suitable for standalone WASM modules. - - Requires LLVM with wasm32 support (e.g., Homebrew LLVM on macOS). - """ - src = ctx.file.src - out = ctx.actions.declare_file(ctx.label.name + ".wasm") - - # Shell script to find clang with wasm support and set PATH for wasm-ld - setup_cmd = """ - export PATH="/opt/homebrew/bin:/usr/local/bin:$PATH" - if [ -x /opt/homebrew/opt/llvm/bin/clang ]; then - CLANG=/opt/homebrew/opt/llvm/bin/clang - elif [ -x /usr/local/opt/llvm/bin/clang ]; then - CLANG=/usr/local/opt/llvm/bin/clang - else - CLANG=clang - fi - """ - - # Build clang command - cmd_parts = [ - setup_cmd, - "$CLANG", - "--target=wasm32-unknown-unknown", - "-O2", - "-Wl,--no-entry", - "-Wl,--export-dynamic", - ] - - # Add exported functions - for fn in ctx.attr.exports: - cmd_parts.append("-Wl,--export=" + fn) - - cmd_parts.append("-o") - cmd_parts.append(out.path) - cmd_parts.append(src.path) - - ctx.actions.run_shell( - inputs = [src], - outputs = [out], - command = " ".join(cmd_parts), - progress_message = "Compiling {} to WASM".format(src.basename), - execution_requirements = {"no-sandbox": "1"}, - ) - - return [DefaultInfo(files = depset([out]))] - -wasm_binary = rule( - implementation = _wasm_binary_impl, - attrs = { - "src": attr.label( - allow_single_file = [".c"], - mandatory = True, - doc = "The C source file to compile", - ), - "exports": attr.string_list( - default = [], - doc = "List of function names to export (without leading underscore)", - ), - }, -) - def _foo_impl(ctx): out = ctx.actions.declare_file(ctx.label.name) ctx.actions.write( diff -r a8976a008a9d -r 8c74204fd362 markdown_converter/BUILD --- a/markdown_converter/BUILD Fri Jan 23 21:19:08 2026 -0800 +++ b/markdown_converter/BUILD Fri Jan 23 22:20:35 2026 -0800 @@ -1,7 +1,9 @@ load("@rules_cc//cc:cc_library.bzl", "cc_library") -load("//gui_ze:gui_ze.bzl", "wasm_binary", "bun_run", "move_files_into_dir") +load("@rules_cc//cc:cc_binary.bzl", "cc_binary") +load("//gui_ze:gui_ze.bzl", "bun_run", "move_files_into_dir") +load("@emsdk//emscripten_toolchain:wasm_rules.bzl", "wasm_cc_binary") -# JS only +# JS only filegroup( name = "markdown_to_html", srcs = glob([ @@ -18,10 +20,30 @@ visibility = ["//visibility:public"], ) -# C implementation for native use +# C implementation for native use (as library) cc_library( name = "markdown_to_html_c", srcs = ["markdown_to_html.c"], hdrs = [":markdown_to_html_hdrs"], visibility = ["//visibility:public"], ) + +# WASM binary target (cc_binary required for wasm_cc_binary) +# Note: linkopts are emscripten-specific, only apply during WASM build +cc_binary( + name = "markdown_to_html_bin", + srcs = ["markdown_to_html.c", "markdown_to_html.h"], + linkopts = [ + "--no-entry", # No main() function + "-sALLOW_MEMORY_GROWTH", # Allow memory to grow dynamically + "-sEXPORTED_FUNCTIONS=['_markdown_to_html','_markdown_free','_markdown_get_length','_wasm_alloc','_wasm_free']", + "-sEXPORTED_RUNTIME_METHODS=['cwrap','ccall','UTF8ToString','stringToUTF8','lengthBytesUTF8']", + ], + tags=["manual"], +) + +wasm_cc_binary( + name = "markdown_to_html_wasm", + cc_target = ":markdown_to_html_bin", + visibility = ["//visibility:public"], +) diff -r a8976a008a9d -r 8c74204fd362 markdown_converter/markdown_to_html.c --- a/markdown_converter/markdown_to_html.c Fri Jan 23 21:19:08 2026 -0800 +++ b/markdown_converter/markdown_to_html.c Fri Jan 23 22:20:35 2026 -0800 @@ -4,6 +4,15 @@ #include #include "markdown_converter/markdown_to_html.h" +// JavaScript needs this to free the memory later +MDAPI void *wasm_alloc(size_t size) { + return malloc(size); +} + +MDAPI void wasm_free(void* ptr) { + free(ptr); +} + #define INITIAL_BUFFER_SIZE 1024 * 1024 // 1MB // String buffer for building HTML output @@ -132,6 +141,44 @@ return (*line == '-' || *line == '*' || *line == '+') && line[1] == ' '; } +// Check if line starts with an HTML tag +static int is_html_block_start(const char *line) +{ + line = skip_whitespace(line); + if (*line != '<') return 0; + line++; + + // Check for closing tag or comment + if (*line == '/' || *line == '!') return 1; + + // Check for valid tag name (letter followed by alphanumeric) + if (!isalpha((unsigned char)*line)) return 0; + + return 1; +} + +// Check if line starts with a specific HTML tag (e.g., "script", "style") +static int is_html_tag(const char *line, const char *tag) +{ + line = skip_whitespace(line); + if (*line != '<') return 0; + line++; + + // Skip optional / + int is_closing = 0; + if (*line == '/') { + is_closing = 1; + line++; + } + + size_t tag_len = strlen(tag); + if (strncasecmp(line, tag, tag_len) != 0) return 0; + + char next = line[tag_len]; + // Tag must be followed by space, >, or end for closing tags + return next == '>' || next == ' ' || next == '\t' || next == '\n' || next == '\0'; +} + // Check if line is ordered list item static int is_ordered_list(const char *line) { @@ -485,6 +532,53 @@ continue; } + // HTML block - pass through unchanged + if (is_html_block_start(line)) { + // Check if it's a script or style tag that needs special handling + int is_script = is_html_tag(line, "script"); + int is_style = is_html_tag(line, "style"); + + if (is_script || is_style) { + const char *end_tag = is_script ? "" : ""; + + // Output the opening line + buffer_append(buf, line); + buffer_append_char(buf, '\n'); + + free(line); + if (*ptr == '\n') ptr++; + + // Collect content until closing tag + while (*ptr) { + line_start = ptr; + while (*ptr && *ptr != '\n') ptr++; + line_len = ptr - line_start; + + line = (char *)malloc(line_len + 1); + if (!line) break; + memcpy(line, line_start, line_len); + line[line_len] = '\0'; + + buffer_append(buf, line); + buffer_append_char(buf, '\n'); + + int found_end = (strstr(line, end_tag) != NULL); + free(line); + if (*ptr == '\n') ptr++; + + if (found_end) break; + } + continue; + } + + // Regular HTML tag - just pass through the line + buffer_append(buf, line); + buffer_append_char(buf, '\n'); + free(line); + if (*ptr == '\n') ptr++; + continue; + } + // Regular paragraph buffer_append(buf, "

"); @@ -512,7 +606,8 @@ starts_with(line, ">") || is_horizontal_rule(line) || is_unordered_list(line) || - is_ordered_list(line)) { + is_ordered_list(line) || + is_html_block_start(line)) { ptr = line_start; free(line); break; diff -r a8976a008a9d -r 8c74204fd362 mrjunejune/BUILD --- a/mrjunejune/BUILD Fri Jan 23 21:19:08 2026 -0800 +++ b/mrjunejune/BUILD Fri Jan 23 22:20:35 2026 -0800 @@ -15,6 +15,7 @@ name = "shared_js_non_public", srcs = [ "//markdown_converter:markdown_to_html", + "//markdown_converter:markdown_to_html_wasm", ], dest = "src", ) diff -r a8976a008a9d -r 8c74204fd362 mrjunejune/src/blog/multithread-in-js/index.html Binary file mrjunejune/src/blog/multithread-in-js/index.html has changed diff -r a8976a008a9d -r 8c74204fd362 mrjunejune/src/blog/my-seobeo-journey/index.html Binary file mrjunejune/src/blog/my-seobeo-journey/index.html has changed diff -r a8976a008a9d -r 8c74204fd362 mrjunejune/src/blog/optimizing-grass-rendering/index.html Binary file mrjunejune/src/blog/optimizing-grass-rendering/index.html has changed diff -r a8976a008a9d -r 8c74204fd362 mrjunejune/src/blog/thoughts-on-ide/index.html Binary file mrjunejune/src/blog/thoughts-on-ide/index.html has changed diff -r a8976a008a9d -r 8c74204fd362 mrjunejune/src/blog/thoughts-on-tdd/index.html Binary file mrjunejune/src/blog/thoughts-on-tdd/index.html has changed diff -r a8976a008a9d -r 8c74204fd362 mrjunejune/src/blog/wasm-bunny/index.html Binary file mrjunejune/src/blog/wasm-bunny/index.html has changed diff -r a8976a008a9d -r 8c74204fd362 mrjunejune/src/blog/wasm-bunny/index.md --- a/mrjunejune/src/blog/wasm-bunny/index.md Fri Jan 23 21:19:08 2026 -0800 +++ b/mrjunejune/src/blog/wasm-bunny/index.md Fri Jan 23 22:20:35 2026 -0800 @@ -84,3 +84,20 @@ Overall, this was an interesting project to spend a few hours on, and maybe in the future, I’ll explore compiling the C3 standard library to WASM. Below are the results! + + + + diff -r a8976a008a9d -r 8c74204fd362 mrjunejune/src/blog/websocket-demystified/index.html Binary file mrjunejune/src/blog/websocket-demystified/index.html has changed diff -r a8976a008a9d -r 8c74204fd362 mrjunejune/src/tools/markdown_to_html/index.css --- a/mrjunejune/src/tools/markdown_to_html/index.css Fri Jan 23 21:19:08 2026 -0800 +++ b/mrjunejune/src/tools/markdown_to_html/index.css Fri Jan 23 22:20:35 2026 -0800 @@ -7,222 +7,219 @@ body { line-height: 1.6; padding: 20px; - max-width: 1200px; + max-width: 1400px; margin: 0 auto; } -button { - background: var(--accent); - color: var(--white); - border: none; - padding: 10px 20px; - border-radius: 4px; - cursor: pointer; - font-size: 16px; - margin-top: 10px; -} - -.title button { - margin-top: 0px; - margin-bottom: 10px; -} - -button:hover { - background: var(--accent-dark); -} - -h1 { - color: var(--darkgray); - margin-bottom: 20px; -} - -textarea { - width: 100%; - height: 700px; - padding: 15px; - background: rgb(var(--gray-light)); - color: var(--darkgray); - border-radius: 4px; - font-family: 'Courier New', monospace; - font-size: 14px; - resize: vertical; -} - -.container { - display: grid; - grid-template-columns: 1fr 1fr; - gap: 20px; - margin-top: 20px; -} - -.title { - display: grid; - grid-template-columns: 1fr 1fr; - margin-bottom: 10px; -} - -.panel { - background: var(--white); - border-radius: 8px; - border: 1px dotted #ccc; - padding: 20px; -} - -#output { - min-height: 500px; - padding: 15px; - border: 1px solid rgb(var(--gray-light)); - border-radius: 4px; - background: rgb(var(--gray-light)); -} - -h1, h2, h3, h4, h5, h6 { - margin: 20px 0 10px 0; - color: var(--darkgray); -} - -h1 { font-size: 2em; } -h2 { font-size: 1.5em; } -h3 { font-size: 1.3em; } - -p { - margin: 10px 0; -} - -ul, ol { - margin: 10px 0; - padding-left: 30px; -} - -li { - margin: 5px 0; -} - -code { - background: rgb(var(--gray-light)); - padding: 2px 6px; - border-radius: 3px; - font-family: 'Courier New', monospace; - font-size: 0.9em; -} - -pre { - background: #282c34; - color: #abb2bf; - padding: 15px; - border-radius: 4px; - overflow-x: auto; - margin: 10px 0; - text-wrap: auto; -} - -pre code { - background: none; - color: inherit; - padding: 0; -} - -blockquote { - border-left: 4px solid rgb(var(--gray-light)); - padding-left: 15px; - margin: 10px 0; - color: var(--gray); - font-style: italic; -} - -a { - color: var(--accent); - text-decoration: none; -} - -a:hover { - text-decoration: underline; -} - -hr { - border: none; - border-top: 2px solid var(--black); - margin: 20px 0; -} - -img { - max-width: 100%; - height: auto; -} - -strong { - font-weight: bold; -} - -em { - font-style: italic; -} - -del { - text-decoration: line-through; -} - .header { text-align: center; margin-bottom: 30px; } +.header h1 { + color: rgb(var(--gray-dark)); + margin-bottom: 10px; +} + +.container { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 20px; + height: calc(100vh - 200px); + min-height: 500px; +} + +.panel { + display: flex; + flex-direction: column; + background: var(--white); + border-radius: 8px; + border: 1px solid rgba(var(--gray), 0.3); + padding: 15px; + overflow: hidden; +} + +.title { + display: flex; + justify-content: space-between; + align-items: center; + margin-bottom: 10px; + flex-shrink: 0; +} + .label { - font-weight: bold; - margin-bottom: 10px; - color: var(--gray); + font-weight: 600; + color: rgb(var(--gray-dark)); + font-size: 14px; + text-transform: uppercase; + letter-spacing: 0.5px; +} + +button { + background: var(--accent); + color: var(--white); + border: none; + padding: 8px 16px; + border-radius: 4px; + cursor: pointer; + font-size: 14px; + transition: background 0.2s; +} + +button:hover { + background: var(--accent-dark); +} + +/* Input textarea */ +textarea { + flex: 1; + width: 100%; + padding: 15px; + background: rgb(var(--gray-light)); + color: rgb(var(--gray-dark)); + border: 1px solid rgba(var(--gray), 0.3); + border-radius: 4px; + font-family: 'SF Mono', 'Monaco', 'Consolas', monospace; + font-size: 14px; + line-height: 1.5; + resize: none; +} + +textarea:focus { + outline: none; + border-color: var(--accent); +} + +/* Output panel */ +#output { + flex: 1; + padding: 15px; + border: 1px solid rgba(var(--gray), 0.3); + border-radius: 4px; + background: var(--white); + color: rgb(var(--gray-dark)); + overflow-y: auto; + font-size: 15px; +} + +/* Markdown output styles */ +#output h1, #output h2, #output h3, #output h4, #output h5, #output h6 { + margin: 1em 0 0.5em 0; + color: rgb(var(--gray-dark)); + line-height: 1.3; } -.title .label { - margin-bottom: 0px; +#output h1:first-child, #output h2:first-child, #output h3:first-child { + margin-top: 0; +} + +#output h1 { font-size: 1.8em; } +#output h2 { font-size: 1.5em; } +#output h3 { font-size: 1.25em; } +#output h4 { font-size: 1.1em; } + +#output p { + margin: 0.8em 0; +} + +#output ul, #output ol { + margin: 0.8em 0; + padding-left: 25px; +} + +#output li { + margin: 0.3em 0; +} + +#output code { + background: rgb(var(--gray-light)); + padding: 2px 6px; + border-radius: 3px; + font-family: 'SF Mono', 'Monaco', 'Consolas', monospace; + font-size: 0.9em; + color: var(--accent); +} + +#output pre { + background: var(--black); + color: var(--white); + padding: 15px; + border-radius: 6px; + overflow-x: auto; + margin: 1em 0; + line-height: 1.4; +} + +#output pre code { + background: none; + color: inherit; + padding: 0; } -@media (max-width: 768px) { +#output blockquote { + border-left: 4px solid var(--accent); + padding: 10px 15px; + margin: 1em 0; + background: rgb(var(--gray-light)); + color: rgb(var(--gray)); + font-style: italic; +} + +#output a { + color: var(--accent); + text-decoration: none; +} + +#output a:hover { + text-decoration: underline; +} + +#output hr { + border: none; + border-top: 1px solid rgb(var(--gray-light)); + margin: 1.5em 0; +} + +#output img { + max-width: 100%; + height: auto; + border-radius: 4px; +} + +#output strong { + font-weight: 600; +} + +#output em { + font-style: italic; +} + +#output del { + text-decoration: line-through; + color: rgb(var(--gray)); +} + +/* Mobile */ +@media (max-width: 900px) { body { - padding: 10px; - font-size: 16px; + padding: 15px; } .container { grid-template-columns: 1fr; + height: auto; gap: 15px; } - h1 { - font-size: 1.75rem; - } - .panel { - padding: 15px; + min-height: 350px; } textarea { - height: 400px; - font-size: 16px; + min-height: 300px; } #output { min-height: 300px; - font-size: 1rem; } - - button { - font-size: 1rem; - padding: 12px 20px; - min-height: 44px; - width: 100%; - } - - .title { - grid-template-columns: 1fr; - gap: 10px; - } - - .label { - font-size: 1rem; - } - - h1 { font-size: 1.75em; } - h2 { font-size: 1.5em; } - h3 { font-size: 1.25em; } } diff -r a8976a008a9d -r 8c74204fd362 mrjunejune/src/tools/markdown_to_html/index.html --- a/mrjunejune/src/tools/markdown_to_html/index.html Fri Jan 23 21:19:08 2026 -0800 +++ b/mrjunejune/src/tools/markdown_to_html/index.html Fri Jan 23 22:20:35 2026 -0800 @@ -68,34 +68,47 @@ {{/parts/footer.html}} - + diff -r a8976a008a9d -r 8c74204fd362 mrjunejune/test/snapshots/talk_index.html.snapshot --- a/mrjunejune/test/snapshots/talk_index.html.snapshot Fri Jan 23 21:19:08 2026 -0800 +++ b/mrjunejune/test/snapshots/talk_index.html.snapshot Fri Jan 23 22:20:35 2026 -0800 @@ -1,293 +0,0 @@ --- --> - - - - - - - - - - - - -

- -
- -
-

MrJuneJune

-
- - - -
-

Blogs

- -
-
- © 2026 June Park -
- - - - -
- -
- -
-

MrJuneJune

-
- - - - -
-

File Format Converter

-

Convert your images and videos to different formats using FFmpeg

- -
-

Image to WebP Converter

-

Upload an image file (PNG, JPG, GIF, etc.) to convert it to WebP format

- -
- - -
- - - -
Converting... Please wait.
- - -
- -
-

Video to MP4 Converter

-

Upload a video file (AVI, MOV, MKV, etc.) to convert it to MP4 format

- -
- - -
- - - -
Converting... Please wait.
- - -
-
- © 2026 June Park -
- -
- - - diff -r a8976a008a9d -r 8c74204fd362 mrjunejune/test/snapshots/tools_file_converter_index.html.snapshot --- a/mrjunejune/test/snapshots/tools_file_converter_index.html.snapshot Fri Jan 23 21:19:08 2026 -0800 +++ b/mrjunejune/test/snapshots/tools_file_converter_index.html.snapshot Fri Jan 23 22:20:35 2026 -0800 @@ -0,0 +1,332 @@ + as="font" type="font/woff" crossorigin> --> + + + + + + + + + + + + + + + + +
+ +
+ +
+

MrJuneJune

+
+ + + + +
+

File Format Converter

+

Convert your images and videos to different formats using FFmpeg

+ +
+

Image to WebP Converter

+

Upload an image file (PNG, JPG, GIF, etc.) to convert it to WebP format

+ +
+ + +
+ + + +
Converting... Please wait.
+ + +
+ +
+

Video to MP4 Converter

+

Upload a video file (AVI, MOV, MKV, etc.) to convert it to MP4 format

+ +
+ + +
+ + + +
Converting... Please wait.
+ + +
+
+ © 2026 June Park +
+ +
+ + +© 2026 June Park - + diff -r a8976a008a9d -r 8c74204fd362 mrjunejune/test/snapshots/tools_markdown_to_html_index.html.snapshot --- a/mrjunejune/test/snapshots/tools_markdown_to_html_index.html.snapshot Fri Jan 23 21:19:08 2026 -0800 +++ b/mrjunejune/test/snapshots/tools_markdown_to_html_index.html.snapshot Fri Jan 23 22:20:35 2026 -0800 @@ -0,0 +1,388 @@ +blic/fonts/more-sugar.extras.otf" as="font" type="font/otf" crossorigin> --> + + + + + + + + + + + + + + +
+ +
+ +
+

MrJuneJune

+
+ + + +
+
+ Download PDF +
+

JUNTAE PARK

+

SOFTWARE ENGINEER

+
+ Bay Area, CA, USA +
+ +
+ +
+

Summary

+
+
+

Software Engineer with 9 years of hands-on experience across diverse tech stacks, from early-stage startups to FANG-scale systems. Adept in designing and delivering robust software solutions using modern languages, frameworks, and cloud platforms.

Open to impactful work.

+
+ +

Skills

+
+
+
+

+ Programming Languages: + TypeScript, Python, C/C++, Ruby, Java, MATLAB +

+

+ Tools & Platforms: + Bazel, PostgresSQL, Mercurial, Git, Pands, Raylib, XCode +

+

+ Web Frameworks: + Django, Rails, React, Flask +

+

+ DevOp: + Plummi, Heroku, DigitalOcean, AWS, Google Cloud +

+

+ Language: + English, Korean, Japanese +

+
+ + +
+

Experience

+
+
+
+

+ Meta +

+

San Francisco, CA, USA

+
+
+

SOFTWARE ENGINEER

+ +
+
    +
  • + Took initiative on Channel Value Rule, targeting the 16% of ad traffic with both app and web destinations to improve value attribution and ROI. +
  • +
  • + Built full-stack features using React and Hack/GraphQL, contributing to scalable, production-ready systems. +
  • +
  • + Partnered with data science to design A/B tests and analyze revenue impact of ads destination. +
  • +
  • + Proposed and implemented alpha improvements to internal testing infrastructure, reducing test time by 50% and enhancing developer velocity. +
  • +
+
+

+ Warner Music Group +

+

Toronto, ON, Canada

+
+
+

TECHNICAL LEAD ENGINEER

+ +
+
    +
  • + Implements bazel structure for the company for TypeScript and JavaScript code base for hermiticity and stablishing standards for JavaScript and +
  • +
  • + TypeScript testing and code structures. +
  • +
  • + Led a team of five engineers in building GraphQL endpoints for client-facing applications using Apollo and AppSync, supporting over 2000 RPS and auto scaling depending on request values. +
  • +
  • + Improved application response times by up to 85% for graphQL response by updating database schema and SQL queries, eliminating N+1 queries and lack of indexes. +
  • +
  • + Developed CI/CD pipelines for backend structures. +
  • +
  • + Designed infrastructure for pub/sub, caching, and media processing logic. +
  • +
+ +
+

+ Google +

+

Toronto, ON, Canada

+
+
+

SOFTWARE ENGINEER

+ +
+
    +
  • + Implements and maintained new features relating to App Script across google workspace platform including Gmail, sheets, and Docs.
  • +
  • + Improved a response time and render time of App Script hover card components.
  • +
  • + Collaborated with a team of developers to ensure timely and accurate delivery of features.
  • +
  • + Conducted user testing and gathered feedback to iterate on features for optimal user experience.
  • +
+ +
+

+ Everlywell +

+

Toronto, ON, Canada

+
+
+

SOFTWARE ENGINEER

+ +
+
    +
  • + Maintained Amazon amplify apps to create and deploy React web applications for companies such as NBA, Tinder, and other companies for COVID-19 at-home test kits.
  • +
  • + Implemented a script that helps accurately access and refund unused covid test kits; helping company save up to 200,000 USD.
  • +
  • + Created several Rails controllers for internal purposes; mocking end to end user experience for QA, mass refund features for CX department, and more, ultimately reducing support tickets amount by 50 percent.
  • +
  • + Implemented an audit table to help debug problems and logged which process was responsible for the change of the record using PaperTrail gems
  • +
+ +
+

+ Spiria +

+

Oakville, ON, Canada

+
+
+

SOFTWARE ENGINEER

+ +
+
    +
  • + Constructed RESTful API endpoints in multiple different frameworks such as Django, Ruby on Rails, and Flask and automated API documentation process using swagger. +
  • +
  • + Designed custom rake tasks for importing production data into newly updated data structure to meet client's needs. +
  • +
  • + Maintained or updated staging/productions servers. Debugged problems in production postgres database using ssh and postgres console on Heroku or AWS servers +
  • +
  • + Collaborated in creating automation python scripts for websites and application using selenium covering for QA eliminating 80% of QA's manual work +
  • +
+ +
+

+ Apex Score +

+

Oakville, ON, Canada

+
+
+

SOFTWARE ENGINEER

+ +
+
    +
  • + Developed custom Shapley value regression model to calculate importance of independent variables of data sets using sklearn, pandas, and numpy. +
  • +
  • + Created custom image uploader to Amazon s3 bucket using boto3 library. +
  • +
  • + Built RESTful API application using Flask framework and automated extensive API documentation pages using flask-restplus, pytest, and swagger, covering 95% of the code base. +
  • +
  • + Created an interactive graph using D3.js in Vue.js with data from Flask backend API. +
  • +
+ +
+

Education

+
+
+
+

+ University of British Columbia +

+

Kelowna, British Columbia

+
+
+

BACHELOR OF SCIENCE IN PHYSICS

+ +
+ +
+
+ © 2026 June Park +
+ + + + // for strcasecmp -#include // for time_t +#include +#include static char g_folder_path[512] = "."; @@ -151,20 +151,17 @@ void *p_conn_kv = Dowa_HashMap_Get_Ptr(p_req_map, "Connection"); const char *conn_header = p_conn_kv ? ((Seobeo_Request_Entry*)p_conn_kv)->value : NULL; - if (conn_header) { - // Explicit Connection header - check for keep-alive or close - if (connection_header_contains(conn_header, "close")) { + if (conn_header) + { + if (connection_header_contains(conn_header, "close")) should_keep_alive = FALSE; - } else if (connection_header_contains(conn_header, "keep-alive")) { + else if (connection_header_contains(conn_header, "keep-alive")) should_keep_alive = use_keep_alive; - } else { - // Unknown value, use version default - should_keep_alive = is_http11 && use_keep_alive; - } - } else { - // No Connection header - use HTTP version defaults + else + should_keep_alive = is_http11 && use_keep_alive; // Unknown value, use version default + } + else should_keep_alive = is_http11 && use_keep_alive; - } void *p_method_kv = Dowa_HashMap_Get_Ptr(p_req_map, "HTTP_Method"); const char *method = p_method_kv ? ((Seobeo_Request_Entry*)p_method_kv)->value : NULL; @@ -269,7 +266,25 @@ else if (strstr(file_path, ".js")) mime = "application/javascript"; else if (strstr(file_path, ".png")) mime = "image/png"; else if (strstr(file_path, ".jpg") || strstr(file_path, ".jpeg")) mime = "image/jpeg"; + else if (strstr(file_path, ".gif")) mime = "image/gif"; + else if (strstr(file_path, ".svg")) mime = "image/svg+xml"; + else if (strstr(file_path, ".ico")) mime = "image/x-icon"; + else if (strstr(file_path, ".webp")) mime = "image/webp"; else if (strstr(file_path, ".json")) mime = "application/json"; + else if (strstr(file_path, ".wasm")) mime = "application/wasm"; + else if (strstr(file_path, ".xml")) mime = "application/xml"; + else if (strstr(file_path, ".pdf")) mime = "application/pdf"; + else if (strstr(file_path, ".txt")) mime = "text/plain"; + else if (strstr(file_path, ".mp4")) mime = "video/mp4"; + else if (strstr(file_path, ".webm")) mime = "video/webm"; + else if (strstr(file_path, ".mp3")) mime = "audio/mpeg"; + else if (strstr(file_path, ".woff2")) mime = "font/woff2"; + else if (strstr(file_path, ".woff")) mime = "font/woff"; + else if (strstr(file_path, ".ttf")) mime = "font/ttf"; + else if (strstr(file_path, ".webp")) mime = "image/webp"; + else if (strstr(file_path, ".glb")) mime = "model/gltf-binary"; + else if (strstr(file_path, ".gltf")) mime = "model/gltf+json"; + Seobeo_Web_Header_Generate_KeepAlive(p_response_header, HTTP_OK, @@ -789,6 +804,3 @@ Dowa_Array_Free(g_routes); g_routes = NULL; } - -// Logging functions moved to s_logging.c -