<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.3.3">Jekyll</generator><link href="/site/feed.xml" rel="self" type="application/atom+xml" /><link href="/site/" rel="alternate" type="text/html" /><updated>2025-08-07T23:10:22+00:00</updated><id>/site/feed.xml</id><title type="html">Andrew Yu</title><subtitle>(under construction)
</subtitle><author><name>Andrew Yu</name></author><entry><title type="html">From monogram to favicon</title><link href="/site/logo.html" rel="alternate" type="text/html" title="From monogram to favicon" /><published>2024-07-01T00:00:00+00:00</published><updated>2024-07-01T00:00:00+00:00</updated><id>/site/logo</id><content type="html" xml:base="/site/logo.html"><![CDATA[<p>When I was a kid I developed a rudimentary monogram for my visual work, which was a “A” stacked on top of a “Y” such that the “legs” of the A met the “arms” of the Y. This was concise but the proportions of the letters were always off in some way. 
<img src="assets/files/0701/logo0.png" alt="Monogram" />
In 2020 I decided to stylize the monogram further, this time removing the “stem” of the Y and turning it horizontally to simulate the curvature of a lowercase “y.” The upper portion of the monogram was squared and leveled off, taking inspiration from the Chinese character for the sun, 日 (rì). The resulting monogram was pleasing to the eye and easy to fit in the corner of most of my sketches without being obtrusive. 
<img src="assets/files/0701/logo1.png" alt="Stylized monogram" />
Around 2021 I started posting to a now-defunct art account on Instagram using a Google Slides-created digital watermark, shown below. I made sure that the borders and lines were of equal width.
<img src="assets/files/0701/logo2.png" alt="Original logo" />
It has been a few years since I’ve been actively sketching in any major way. However, I’d never let this logo go to waste, and I decided to revisit it to design a custom favicon for this site. I blew up the proportions to a square, thickened the lines somewhat, and patted myself on the back.
<img src="assets/files/0701/logo3.png" alt="Intermediate favicon" />
Of course this logo seems decent at such a large scale, but when squeezed into a favicon in your tab it becomes rather hard to read. I decided to optimize it further to display at 128x128 or lower resolution. I don’t know how to properly tune radial curves and translate smooth objects to the pixel scale, but this one looks decent for now. 
<img src="assets/files/0701/logo4.png" alt="Working favicon" />
I really need to learn how to use real graphics software.</p>]]></content><author><name>Andrew Yu</name></author><category term="blog" /><summary type="html"><![CDATA[When I was a kid I developed a rudimentary monogram for my visual work, which was a “A” stacked on top of a “Y” such that the “legs” of the A met the “arms” of the Y. This was concise but the proportions of the letters were always off in some way. In 2020 I decided to stylize the monogram further, this time removing the “stem” of the Y and turning it horizontally to simulate the curvature of a lowercase “y.” The upper portion of the monogram was squared and leveled off, taking inspiration from the Chinese character for the sun, 日 (rì). The resulting monogram was pleasing to the eye and easy to fit in the corner of most of my sketches without being obtrusive. Around 2021 I started posting to a now-defunct art account on Instagram using a Google Slides-created digital watermark, shown below. I made sure that the borders and lines were of equal width. It has been a few years since I’ve been actively sketching in any major way. However, I’d never let this logo go to waste, and I decided to revisit it to design a custom favicon for this site. I blew up the proportions to a square, thickened the lines somewhat, and patted myself on the back. Of course this logo seems decent at such a large scale, but when squeezed into a favicon in your tab it becomes rather hard to read. I decided to optimize it further to display at 128x128 or lower resolution. I don’t know how to properly tune radial curves and translate smooth objects to the pixel scale, but this one looks decent for now. I really need to learn how to use real graphics software.]]></summary></entry><entry><title type="html">Adding fonts to the website</title><link href="/site/fonts.html" rel="alternate" type="text/html" title="Adding fonts to the website" /><published>2024-06-30T00:00:00+00:00</published><updated>2024-06-30T00:00:00+00:00</updated><id>/site/fonts</id><content type="html" xml:base="/site/fonts.html"><![CDATA[<p>I am somewhat particular about the aesthetics of what I use and make. As part of my journey to fully understand the ins and outs of operating a GitHub pages website, I wanted to give it a fresh coat of paint using one of my favorite fonts, <strong>Questrial</strong>.</p>

<p>I first came across this font when I was browsing the catalog of music of a French label, Ultimae Records. Run by Vincent Villuis (who releases as AES Dana), the label specializes in cinematic, professionally mastered electronic music releases with impeccable visual design. I own a sizeable chunk of their releases on CD. As part of their visual overhaul in the latter half of 2017, their font of choice for releases and their website was Questrial. This is a very beautiful typeface with a few quirks (like the “j” character lacking a bottom curve) but is nonetheless readable and elegant for most purposes. It also neatly matches my resume, which sacrifices some professionalism for a very clean and unique look.</p>

<p>Adding this font to the website was simple.</p>
<ol>
  <li>I first needed to load Questrial using its Google Fonts URL into <code class="language-plaintext highlighter-rouge">_includes/head.html</code>.</li>
  <li>Edited <code class="language-plaintext highlighter-rouge">_sass/no-style-please.scss</code> to have <code class="language-plaintext highlighter-rouge">body</code> (the only type of text this website uses) <code class="language-plaintext highlighter-rouge">= Questrial</code>.</li>
  <li>Added the lines
<code class="language-plaintext highlighter-rouge">body { font-family: 'Questrial'; }</code> and <code class="language-plaintext highlighter-rouge">h1, h2, h3, h4, h5, .site-title, .site-nav { font-family: 'Questrial'; }</code> to the file <code class="language-plaintext highlighter-rouge">assets/css/main.scss</code>.</li>
  <li>Finally, I modified <code class="language-plaintext highlighter-rouge">head.html</code> to load <code class="language-plaintext highlighter-rouge">main.scss</code> <em>after</em> the Questrial font was loaded, and the font successfully displayed on the website after deployment.</li>
</ol>

<p>To stylize the <em>code</em> font used above, I wanted to use Ubuntu Mono from the eponymous Linux distribution. I’ve been using it as my VSCode editor font ever since I learned how to customize the IDE in high school. Loading it in and ensuring the “code” style of text uses it mirrors the first four steps above.</p>]]></content><author><name>Andrew Yu</name></author><category term="blog" /><summary type="html"><![CDATA[I am somewhat particular about the aesthetics of what I use and make. As part of my journey to fully understand the ins and outs of operating a GitHub pages website, I wanted to give it a fresh coat of paint using one of my favorite fonts, Questrial.]]></summary></entry></feed>