From efff8645145a913771db8dccc8ab859e845a16c5 Mon Sep 17 00:00:00 2001 From: Yusuke Tanaka Date: Mon, 17 Aug 2026 17:21:15 +0900 Subject: [PATCH 1/3] fix(examples): register orphan examples in catalog --- examples/_data.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/examples/_data.ts b/examples/_data.ts index 067f72505..b45f7bd95 100644 --- a/examples/_data.ts +++ b/examples/_data.ts @@ -376,6 +376,12 @@ export const items = [ type: "example", category: "File system", }, + { + title: "Checking for directory existence", + href: "/examples/checking_directory_existence/", + type: "example", + category: "File system", + }, { title: "Moving/Renaming files", href: "/examples/moving_renaming_files/", @@ -742,6 +748,12 @@ export const items = [ type: "example", category: "Cryptography", }, + { + title: "Shamir's Secret Sharing", + href: "/examples/sss/", + type: "example", + category: "Cryptography", + }, // Testing { From 2e684c7573cca741fab13496cee9dc4e5b14b355 Mon Sep 17 00:00:00 2001 From: Yusuke Tanaka Date: Mon, 17 Aug 2026 18:52:46 +0900 Subject: [PATCH 2/3] fix(examples): align sss title with catalog label --- examples/scripts/sss.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/scripts/sss.ts b/examples/scripts/sss.ts index 51aefb051..86cb127b8 100644 --- a/examples/scripts/sss.ts +++ b/examples/scripts/sss.ts @@ -1,5 +1,5 @@ /** - * @title Shamir's Secret Sharing Implementation + * @title Shamir's Secret Sharing * @difficulty intermediate * @tags cli * @run From bd52f16951f84a45279e48302f9348dabeebfe5e Mon Sep 17 00:00:00 2001 From: Yusuke Tanaka Date: Tue, 18 Aug 2026 12:21:47 +0900 Subject: [PATCH 3/3] chore: retrigger checks