From 6410f5fef8c149003d365c81173fdc0b31c466bb Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Wed, 12 Feb 2025 13:28:57 -0500 Subject: [PATCH] feat: start of cp log! --- posts/algorithms/cp-log.html | 62 ++++++++++++++++++++++++++++++++++++ scripts/index.js | 15 +++++---- 2 files changed, 70 insertions(+), 7 deletions(-) create mode 100644 posts/algorithms/cp-log.html diff --git a/posts/algorithms/cp-log.html b/posts/algorithms/cp-log.html new file mode 100644 index 0000000..351848f --- /dev/null +++ b/posts/algorithms/cp-log.html @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + Barrett Ruth + + +
+ +
+ barrett@ruth:~$ /algorithms + +
+
+
+
+
+
+

Competitive Programming Log

+
+
+

the beginning—12/2/2025

+

+ This marks the (true) beginning of my competitive programming + journey. By "true" I mean intentional, focused, daily practice. + Driven by my admiration for competitive programmers, love of + challenge, and desire for a decent new-grad job, I'm excited to + start putting in the work. +

+

+ This webpage will be an archive of everything related to this + process, including my practice strategies, setup, shortcomings, logs, and + more. For now, I'll be practicing on + CodeForces (account + sigill) and + CSES, using the + CP Handbook and browsing by related problem tags with + ever-increasing difficulty. +

+
+
+
+ + + + diff --git a/scripts/index.js b/scripts/index.js index 9e6590d..4a17652 100644 --- a/scripts/index.js +++ b/scripts/index.js @@ -9,18 +9,19 @@ const postMapping = new Map([ ], [ "Economics", - [ - { name: "models of production", link: "models-of-production" }, - // { name: "the short run" }, - // { name: "in the aggregate" }, - ], + [{ name: "models of production", link: "models-of-production" }], ], [ "Trading", [{ name: "extrema circular buffer", link: "extrema-circular-buffer" }], - // { name: "InteractiveBrokers TWS" }, { name: "valuation" }]], ], - ["Algorithms", [{ name: "leetcode daily", link: "leetcode-daily" }]], + [ + "Algorithms", + [ + { name: "leetcode daily", link: "leetcode-daily" }, + { name: "cp log", link: "cp-log" }, + ], + ], ]); function refresh(e) {