From 77f5cfc3769138b79a7103d9316ac0610b05920c Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Sat, 28 Sep 2024 13:25:35 -0400 Subject: [PATCH] feat(posts): remove non-existent posts --- scripts/index.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/scripts/index.js b/scripts/index.js index d4fdfe8..38b4cd6 100644 --- a/scripts/index.js +++ b/scripts/index.js @@ -4,15 +4,15 @@ const postMapping = new Map([ [ { name: "from github pages to aws", link: "from-github-pages-to-aws" }, { name: "designing this website", link: "designing-this-website" }, - { name: "working in the terminal" }, + // { name: "working in the terminal" }, ], ], [ "Economics", [ { name: "models of production", link: "models-of-production" }, - { name: "the short run" }, - { name: "in the aggregate" }, + // { name: "the short run" }, + // { name: "in the aggregate" }, ], ], ["Trading", [{ name: "InteractiveBrokers TWS" }, { name: "valuation" }]], @@ -21,7 +21,6 @@ const postMapping = new Map([ [ { name: "extrema circular buffer", link: "extrema-circular-buffer" }, { name: "two pointers", link: "two-pointers" }, - { name: "convex hull" }, ], ], ]);