feat: start of cp log!

This commit is contained in:
Barrett Ruth 2025-02-12 13:28:57 -05:00
parent 18ba5cfd2e
commit 6410f5fef8
2 changed files with 70 additions and 7 deletions

View file

@ -0,0 +1,62 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/styles/common.css" />
<link rel="stylesheet" href="/styles/post.css" />
<link rel="icon" type="image/webp" href="/public/logo.webp" />
<link href="/public/prism/prism.css" rel="stylesheet" />
<link href="/public/prism/prism-theme.css" rel="stylesheet" />
<script defer src="/public/prism/prism.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"
async
></script>
<title>Barrett Ruth</title>
</head>
<body class="graph-background">
<header>
<a
href="/"
style="text-decoration: none; color: inherit"
onclick="goHome(event)"
>
<div class="terminal-container">
<span class="terminal-prompt">barrett@ruth:~$ /algorithms</span>
<span class="terminal-cursor"></span>
</div>
</a>
</header>
<main class="main">
<div class="post-container">
<header class="post-header">
<h1 class="post-title">Competitive Programming Log</h1>
</header>
<article class="post-article">
<h2>the beginning&mdash;12/2/2025</h2>
<p>
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.
</p>
<p>
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
<a href="https://codeforces.com" target="_blank">CodeForces</a> (account
<a href="https://codeforces.com/profile/sigill" target="_blank">sigill</a>) and
<a href="https://cses.fi" target="_blank">CSES</a>, using the
<a href="https://cses.fi/book/book.pdf" target="_blank">CP Handbook</a> and browsing by related problem tags with
ever-increasing difficulty.
</p>
</article>
</div>
</main>
<script src="/scripts/common.js"></script>
<script src="/scripts/post.js"></script>
</body>
</html>

View file

@ -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) {