From f00ec52def34c45e71bccdf8b47b115ddbcda894 Mon Sep 17 00:00:00 2001 From: smeghead Date: Thu, 26 Sep 2024 00:28:50 +0900 Subject: [PATCH 1/2] Add projects to in-the-wild page. --- content/documentation/in-the-wild.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/content/documentation/in-the-wild.md b/content/documentation/in-the-wild.md index 5342960..b06bd7a 100644 --- a/content/documentation/in-the-wild.md +++ b/content/documentation/in-the-wild.md @@ -20,6 +20,7 @@ This page contains a list of libraries and projects that use Phel. If you want t * [zo3ja](https://github.com/smeghead/zo3ja) A simple CLI RSS checker implemented with phel. * [phel-tic-tac-toe](https://github.com/smeghead/phel-tic-tac-toe) The tic-tac-toe game using the CLI terminal written in phel. * [phel-old-school-guestbook](https://github.com/smeghead/phel-old-school-guestbook) This is a very primitive project of a small bulletin board Phel-lang application using mysql for storage. - - +* [phel-lifegame](https://github.com/smeghead/phel-lifegame) The Lifegame using the CLI terminal written in phel. +* [phel-saraudon](https://github.com/smeghead/phel-saraudon) A command to Visualize result of `git log --stat`. +* [phel-cellular-automaton](https://github.com/smeghead/phel-cellular-automaton) The cellular automaton using the CLI terminal written in phel. From f174faf7769bbe82d479ab8007ba7c0c7e7577f4 Mon Sep 17 00:00:00 2001 From: smeghead Date: Thu, 26 Sep 2024 08:22:08 +0900 Subject: [PATCH 2/2] remove phel-str, add phel-schema in in-the-wild. --- content/documentation/in-the-wild.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/documentation/in-the-wild.md b/content/documentation/in-the-wild.md index b06bd7a..0536d0e 100644 --- a/content/documentation/in-the-wild.md +++ b/content/documentation/in-the-wild.md @@ -8,8 +8,8 @@ This page contains a list of libraries and projects that use Phel. If you want t ## Libraries * [phel-cli-gui](https://github.com/Chemaclass/phel-cli-gui) Some Phel functions to render in the terminal. It uses the Cursor from the Symfony Command module. -* [phel-str](https://github.com/smeghead/phel-str) This is a library that provides a group of utility functions related to string manipulation (split, reverse, etc.). Migrated from Clojure. -* [phel-pdo](https://github.com/smeghead/phel-pdo) This library is a thin wrapper around PDO. +* [phel-pdo](https://github.com/phel-lang/phel-pdo) This library is a thin wrapper around PDO. +* [phel-schema](https://github.com/phel-lang/phel-schema) This library is a schema validation library in phel. The library inspired by zod. ## Projects