fix: link to html

This commit is contained in:
Barrett Ruth 2025-10-09 15:14:59 -04:00
parent 000e644c6b
commit bf0c348587
3 changed files with 4 additions and 4 deletions

View file

@ -1,8 +1,8 @@
<footer>
<span>ʕ •ᴥ•ʔ</span>
<div class="footer-links">
<a href="/gist" data-topic="gist">gist</a>
<a href="/git" data-topic="git">git</a>
<a href="/gist.html" data-topic="gist">gist</a>
<a href="/git.html" data-topic="git">git</a>
<a
href="https://www.linkedin.com/in/barrett-ruth/"
data-topic="linkedin"

View file

@ -26,7 +26,7 @@ const promptText = topic ? `barrett@ruth:~$ ${topic}` : "barrett@ruth:~$";
<a href="/transcript.pdf" data-topic="transcript" target="_blank"
>transcript</a
>
<a href="/about" data-topic="about">about</a>
<a href="/about.html" data-topic="about">about</a>
</div>
</header>

View file

@ -17,6 +17,6 @@ Walking out of my third year, I left with the sad realization that I got by the
I always knew something was wrong with how my school taught computer science (despite it being the biggest major as of 2025). As of late, though, I realized the gargantuan amount of damage it caused to my reasoning abilities. Damage that I have to reverse by, essentially, doing everything all over again.
My [competitive programming journey](https://barrettruth.com/posts/algorithms/competitive-programming-log.html) epitomizes this point: to this day I struggle with reasoning, argumentation, and understanding program behavior. I know how a segment tree works but can't formalize the constraints of a problem. I can do dynamic programming on trees but I can barely manipulate and work with primitive mathematical concepts such as the $gcd$ function. I cannot think of a more useless skillset.
My [competitive programming journey](https://barrettruth.com/algorithms/competitive-programming-log.html) epitomizes this point: to this day I struggle with reasoning, argumentation, and understanding program behavior. I know how a segment tree works but can't formalize the constraints of a problem. I can do dynamic programming on trees but I can barely manipulate and work with primitive mathematical concepts such as the $gcd$ function. I cannot think of a more useless skillset.
Nearly all of this is my fault. However, _it should not be possible for this to happen in a computer science curriculum_. In other words, Djikstra is right.