Skip to content

Commit 9f05fc3

Browse files
committed
I'm honestly not sure
1 parent ec5dca8 commit 9f05fc3

12 files changed

Lines changed: 7853 additions & 30 deletions

File tree

content/posts/julia-poem/index.md

Lines changed: 50 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
title: "Poem 14. \"Julia\""
33
category: personal
44
date: 2025-12-30
5-
draft: true
5+
draft: true
66
---
77

8-
n/a
8+
2025-12-30
99

1010
{{< highlight text "linenos=true,linenostart=1" >}}
1111

@@ -31,3 +31,51 @@ an original gift of your goodness
3131

3232
{{< /highlight >}}
3333

34+
2026-01-07
35+
36+
{{< highlight text "linenos=true,linenostart=1" >}}
37+
38+
rivers of ice, pillars of glass,
39+
like water, light runs through crystal;
40+
thoughts travel inside your forehead:
41+
in my mind, to think is now to reason
42+
the precious movements of your will:
43+
across the earth
44+
glacial penmanship,
45+
beautiful writing
46+
47+
springs of magma, columns of light,
48+
deep in those channels, molten flows;
49+
warm blood filters through your dermis:
50+
on my chest, to feel is now to witness
51+
waves of sun washing over your skin:
52+
across the earth
53+
volcanic flows,
54+
solar embrace
55+
56+
{{< /highlight >}}
57+
58+
2026-01-12
59+
60+
{{< highlight text "linenos=true,linenostart=1" >}}
61+
62+
turbulent flames over the water,
63+
soothing stillness hugs me fixed-
64+
come evening, you dress me
65+
in ever more radiant skin,
66+
now warm evermore:
67+
of all the earthly pillars built from rock,
68+
infinite is the throne in which we now lay;
69+
high
70+
waterfall of light, one endless flow,
71+
it washes through insufficient hands:
72+
always insufficient
73+
yet now complete
74+
and forever more:
75+
we phosphoresce in our presence,
76+
glowing evermore:
77+
everything shines over the water-
78+
set ablaze and held calmly still:
79+
80+
{{< /highlight >}}
81+

content/posts/tensors-signals-kernels/index.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ This article has four primary parts, each on a particular topic. They are intend
2525

2626
### Dimensionality
2727

28-
I begin by considering infinite-dimensional vector spaces. I demonstrate how the definition of span can a be relaxed to allow the coordinate-based treatement of vector spaces of dimensions with different (infinite) cardinalities, and what the notion of a basis becomes under these relaxations. This leads us to Banach and Hilbert spaces while being a digestible way to ramp-up for the following sections.
28+
I begin by considering infinite-dimensional vector spaces. I demonstrate how the definition of span can be relaxed to allow the coordinate-based treatement of vector spaces of dimensions with different (infinite) cardinalities, and what the notion of a basis becomes under these relaxations. This points us to Banach and Hilbert spaces, while providing a digestible way to ramp up for the following sections.
2929

3030
### Tensor Spaces
3131

3232
I organize the semantics behind matrices, vectors, and linear maps. After introducing some preliminary concepts not usually covered in a first course in linear algebra (e.g. canonical isomorphisms), I provide an abstract introduction to tensors and tensor spaces, showing how they are "many things at once" up to (quite practical) isomorphism. After the abstract introduction, I share notation standards for coordinate-based and coordinate-free tensor algebra paired with real-world examples from differential geometry and deep learning.
3333

3434
{{% hint title="2.1. Note" %}}
3535

36-
The logical procedures and syntax conventions of this section are shown to be valid for Hilbert spaces and tensor products thereof, although there are other infinite-dimensional cases where they also apply. But it would be too difficult to structure these nuances in a complete way, and they would not enjoy much overlap with subsequent topics regardless.
36+
The logical procedures and syntax conventions of this section are shown to be valid for Hilbert spaces and tensor products thereof. However, there are other infinite-dimensional cases where they also apply. But it would be too difficult to structure these nuances (that lie beyond Hilbert spaces) in a complete way, and they would not enjoy much overlap with subsequent sections regardless. So I leave them unexplored, as they would not clearly contribute to conceptual unification.
3737

3838
{{% /hint %}}
3939

@@ -1264,6 +1264,7 @@ weights = weights / np.sum(weights, axis=0, keepdims=True)
12641264

12651265
VX = np.einsum('ij,jt->it', V, X) # values
12661266
result = np.einsum('is,st->it', VX, weights)
1267+
12671268
{{< /highlight >}}
12681269

12691270
{{% /hint %}}

public/categories/index.xml

Lines changed: 2479 additions & 5 deletions
Large diffs are not rendered by default.

public/index.xml

Lines changed: 86 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<description>Recent content on Max Fierro</description>
77
<generator>Hugo -- gohugo.io</generator>
88
<language>en-US</language>
9-
<lastBuildDate>Tue, 30 Dec 2025 00:00:00 +0000</lastBuildDate>
9+
<lastBuildDate>Sun, 28 Dec 2025 00:00:00 +0000</lastBuildDate>
1010

1111
<atom:link href="http://localhost:1313/index.xml" rel="self" type="application/rss+xml" />
1212

@@ -1701,7 +1701,91 @@ $$&lt;p&gt;and $N$ is the number of length-$(n + 1)$ contiguous subsequences in
17011701
&lt;hr&gt;
17021702
&lt;h2 id=&#34;materials&#34;&gt;Materials&lt;/h2&gt;
17031703
&lt;p&gt;The slides I used during my talk can be found below. Anyone can use them without my permission.&lt;/p&gt;
1704-
&lt;div class=&#34;embed-pdf-container&#34; id=&#34;embed-pdf-container-de1ff50c&#34;&gt;
1704+
&lt;script type=&#34;text/javascript&#34; src= &#39;/js/pdf-js/build/pdf.js&#39;&gt;&lt;/script&gt;
1705+
1706+
&lt;style&gt;
1707+
#embed-pdf-container {
1708+
position: relative;
1709+
width: 100%;
1710+
height: auto;
1711+
min-height: 20vh;
1712+
1713+
}
1714+
1715+
.pdf-canvas {
1716+
border: 1px solid black;
1717+
direction: ltr;
1718+
width: 100%;
1719+
height: auto;
1720+
display: none;
1721+
}
1722+
1723+
#the-canvas {
1724+
border: 1px solid black;
1725+
direction: ltr;
1726+
width: 100%;
1727+
height: auto;
1728+
display: none;
1729+
}
1730+
1731+
1732+
.pdf-loadingWrapper {
1733+
display: none;
1734+
justify-content: center;
1735+
align-items: center;
1736+
width: 100%;
1737+
height: 350px;
1738+
}
1739+
1740+
.pdf-loading {
1741+
display: inline-block;
1742+
width: 50px;
1743+
height: 50px;
1744+
border: 3px solid #d2d0d0;;
1745+
border-radius: 50%;
1746+
border-top-color: #383838;
1747+
animation: spin 1s ease-in-out infinite;
1748+
-webkit-animation: spin 1s ease-in-out infinite;
1749+
}
1750+
1751+
1752+
1753+
1754+
1755+
#overlayText {
1756+
word-wrap: break-word;
1757+
display: grid;
1758+
justify-content: end;
1759+
}
1760+
1761+
#overlayText a {
1762+
position: relative;
1763+
top: 10px;
1764+
right: 4px;
1765+
color: #000;
1766+
margin: auto;
1767+
background-color: #eeeeee;
1768+
padding: 0.3em 1em;
1769+
border: solid 2px;
1770+
border-radius: 12px;
1771+
border-color: #00000030;
1772+
text-decoration: none;
1773+
}
1774+
1775+
#overlayText svg {
1776+
height: clamp(1em, 2vw, 1.4em);
1777+
width: clamp(1em, 2vw, 1.4em);
1778+
}
1779+
1780+
1781+
1782+
@keyframes spin {
1783+
to { -webkit-transform: rotate(360deg); }
1784+
}
1785+
@-webkit-keyframes spin {
1786+
to { -webkit-transform: rotate(360deg); }
1787+
}
1788+
&lt;/style&gt;&lt;div class=&#34;embed-pdf-container&#34; id=&#34;embed-pdf-container-de1ff50c&#34;&gt;
17051789
&lt;div class=&#34;pdf-loadingWrapper&#34; id=&#34;pdf-loadingWrapper-de1ff50c&#34;&gt;
17061790
&lt;div class=&#34;pdf-loading&#34; id=&#34;pdf-loading-de1ff50c&#34;&gt;&lt;/div&gt;
17071791
&lt;/div&gt;

public/notes/index.xml

Lines changed: 85 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1700,7 +1700,91 @@ $$&lt;p&gt;and $N$ is the number of length-$(n + 1)$ contiguous subsequences in
17001700
&lt;hr&gt;
17011701
&lt;h2 id=&#34;materials&#34;&gt;Materials&lt;/h2&gt;
17021702
&lt;p&gt;The slides I used during my talk can be found below. Anyone can use them without my permission.&lt;/p&gt;
1703-
&lt;div class=&#34;embed-pdf-container&#34; id=&#34;embed-pdf-container-de1ff50c&#34;&gt;
1703+
&lt;script type=&#34;text/javascript&#34; src= &#39;/js/pdf-js/build/pdf.js&#39;&gt;&lt;/script&gt;
1704+
1705+
&lt;style&gt;
1706+
#embed-pdf-container {
1707+
position: relative;
1708+
width: 100%;
1709+
height: auto;
1710+
min-height: 20vh;
1711+
1712+
}
1713+
1714+
.pdf-canvas {
1715+
border: 1px solid black;
1716+
direction: ltr;
1717+
width: 100%;
1718+
height: auto;
1719+
display: none;
1720+
}
1721+
1722+
#the-canvas {
1723+
border: 1px solid black;
1724+
direction: ltr;
1725+
width: 100%;
1726+
height: auto;
1727+
display: none;
1728+
}
1729+
1730+
1731+
.pdf-loadingWrapper {
1732+
display: none;
1733+
justify-content: center;
1734+
align-items: center;
1735+
width: 100%;
1736+
height: 350px;
1737+
}
1738+
1739+
.pdf-loading {
1740+
display: inline-block;
1741+
width: 50px;
1742+
height: 50px;
1743+
border: 3px solid #d2d0d0;;
1744+
border-radius: 50%;
1745+
border-top-color: #383838;
1746+
animation: spin 1s ease-in-out infinite;
1747+
-webkit-animation: spin 1s ease-in-out infinite;
1748+
}
1749+
1750+
1751+
1752+
1753+
1754+
#overlayText {
1755+
word-wrap: break-word;
1756+
display: grid;
1757+
justify-content: end;
1758+
}
1759+
1760+
#overlayText a {
1761+
position: relative;
1762+
top: 10px;
1763+
right: 4px;
1764+
color: #000;
1765+
margin: auto;
1766+
background-color: #eeeeee;
1767+
padding: 0.3em 1em;
1768+
border: solid 2px;
1769+
border-radius: 12px;
1770+
border-color: #00000030;
1771+
text-decoration: none;
1772+
}
1773+
1774+
#overlayText svg {
1775+
height: clamp(1em, 2vw, 1.4em);
1776+
width: clamp(1em, 2vw, 1.4em);
1777+
}
1778+
1779+
1780+
1781+
@keyframes spin {
1782+
to { -webkit-transform: rotate(360deg); }
1783+
}
1784+
@-webkit-keyframes spin {
1785+
to { -webkit-transform: rotate(360deg); }
1786+
}
1787+
&lt;/style&gt;&lt;div class=&#34;embed-pdf-container&#34; id=&#34;embed-pdf-container-de1ff50c&#34;&gt;
17041788
&lt;div class=&#34;pdf-loadingWrapper&#34; id=&#34;pdf-loadingWrapper-de1ff50c&#34;&gt;
17051789
&lt;div class=&#34;pdf-loading&#34; id=&#34;pdf-loading-de1ff50c&#34;&gt;&lt;/div&gt;
17061790
&lt;/div&gt;

public/poem-14.-julia/index.html

Lines changed: 83 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ <h1>Poem 14. &#34;Julia&#34;</h1>
5050
<div>
5151
<time>December 30, 2025</time>
5252
</div>
53-
</header><p>n/a</p>
53+
</header><p>2025-12-30</p>
5454
<div class="highlight"><div class="chroma">
5555
<table class="lntable"><tr><td class="lntd">
5656
<pre tabindex="0" class="chroma"><code><span class="lnt"> 1
@@ -95,6 +95,88 @@ <h1>Poem 14. &#34;Julia&#34;</h1>
9595
</span></span><span class="line"><span class="cl">an original gift of your goodness</span></span></code></pre></td></tr></table>
9696
</div>
9797
</div>
98+
<p>2026-01-07</p>
99+
<div class="highlight"><div class="chroma">
100+
<table class="lntable"><tr><td class="lntd">
101+
<pre tabindex="0" class="chroma"><code><span class="lnt"> 1
102+
</span><span class="lnt"> 2
103+
</span><span class="lnt"> 3
104+
</span><span class="lnt"> 4
105+
</span><span class="lnt"> 5
106+
</span><span class="lnt"> 6
107+
</span><span class="lnt"> 7
108+
</span><span class="lnt"> 8
109+
</span><span class="lnt"> 9
110+
</span><span class="lnt">10
111+
</span><span class="lnt">11
112+
</span><span class="lnt">12
113+
</span><span class="lnt">13
114+
</span><span class="lnt">14
115+
</span><span class="lnt">15
116+
</span><span class="lnt">16
117+
</span><span class="lnt">17
118+
</span></code></pre></td>
119+
<td class="lntd">
120+
<pre tabindex="0" class="chroma"><code class="language-text" data-lang="text"><span class="line"><span class="cl">rivers of ice, pillars of glass,
121+
</span></span><span class="line"><span class="cl">like water, light runs through crystal;
122+
</span></span><span class="line"><span class="cl">thoughts travel inside your forehead:
123+
</span></span><span class="line"><span class="cl">in my mind, to think is now to reason
124+
</span></span><span class="line"><span class="cl">the precious movements of your will:
125+
</span></span><span class="line"><span class="cl">across the earth
126+
</span></span><span class="line"><span class="cl"> glacial penmanship,
127+
</span></span><span class="line"><span class="cl"> beautiful writing
128+
</span></span><span class="line"><span class="cl">
129+
</span></span><span class="line"><span class="cl">springs of magma, columns of light,
130+
</span></span><span class="line"><span class="cl">deep in those channels, molten flows;
131+
</span></span><span class="line"><span class="cl">warm blood filters through your dermis:
132+
</span></span><span class="line"><span class="cl">on my chest, to feel is now to witness
133+
</span></span><span class="line"><span class="cl">waves of sun washing over your skin:
134+
</span></span><span class="line"><span class="cl">across the earth
135+
</span></span><span class="line"><span class="cl"> volcanic flows,
136+
</span></span><span class="line"><span class="cl"> solar embrace</span></span></code></pre></td></tr></table>
137+
</div>
138+
</div>
139+
<p>2026-01-12</p>
140+
<div class="highlight"><div class="chroma">
141+
<table class="lntable"><tr><td class="lntd">
142+
<pre tabindex="0" class="chroma"><code><span class="lnt"> 1
143+
</span><span class="lnt"> 2
144+
</span><span class="lnt"> 3
145+
</span><span class="lnt"> 4
146+
</span><span class="lnt"> 5
147+
</span><span class="lnt"> 6
148+
</span><span class="lnt"> 7
149+
</span><span class="lnt"> 8
150+
</span><span class="lnt"> 9
151+
</span><span class="lnt">10
152+
</span><span class="lnt">11
153+
</span><span class="lnt">12
154+
</span><span class="lnt">13
155+
</span><span class="lnt">14
156+
</span><span class="lnt">15
157+
</span><span class="lnt">16
158+
</span><span class="lnt">17
159+
</span></code></pre></td>
160+
<td class="lntd">
161+
<pre tabindex="0" class="chroma"><code class="language-text" data-lang="text"><span class="line"><span class="cl">turbulent flames over the water,
162+
</span></span><span class="line"><span class="cl">soothing stillness hugs me fixed-
163+
</span></span><span class="line"><span class="cl">come evening, you dress me
164+
</span></span><span class="line"><span class="cl">in ever more radiant skin,
165+
</span></span><span class="line"><span class="cl"> now warm evermore:
166+
</span></span><span class="line"><span class="cl">of all the earthly pillars built from rock,
167+
</span></span><span class="line"><span class="cl">infinite is the throne in which we now lay;
168+
</span></span><span class="line"><span class="cl"> high
169+
</span></span><span class="line"><span class="cl">waterfall of light, one endless flow,
170+
</span></span><span class="line"><span class="cl">it washes through insufficient hands:
171+
</span></span><span class="line"><span class="cl"> always insufficient
172+
</span></span><span class="line"><span class="cl"> yet now complete
173+
</span></span><span class="line"><span class="cl"> and forever more:
174+
</span></span><span class="line"><span class="cl">we phosphoresce in our presence,
175+
</span></span><span class="line"><span class="cl"> glowing evermore:
176+
</span></span><span class="line"><span class="cl">everything shines over the water-
177+
</span></span><span class="line"><span class="cl">set ablaze and held calmly still:</span></span></code></pre></td></tr></table>
178+
</div>
179+
</div>
98180
</article>
99181

100182
</main><footer id="footer">

0 commit comments

Comments
 (0)