From 43d8f4ff7bef15c5ffb7a1cc65a42795aa6afdc9 Mon Sep 17 00:00:00 2001 From: juls0730 <62722391+juls0730@users.noreply.github.com> Date: Sat, 13 Sep 2025 21:44:47 -0500 Subject: [PATCH] Initial commit --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..7d29132 --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# Project Ideas + +A curated list of challenging, systems-level project ideas I plan to build. + +### 1. ORC Protocol Implementation +- **Status:** `Not Started` +- **Concept:** A lightweight server and client for the [ORC Protocol](https://github.com/RickCarlino/orc-protocol/tree/main) + +### 2. Smart Cache API Gateway +- **Status:** `Not Started` +- **Concept:** A standalone, intelligent caching layer. It would act as a gateway that uses a declarative configuration (e.g., YAML) to define complex caching and invalidation rules based on API routes, request headers, and data dependencies. + +### 3. WASM based serverless platform +- **Status:** `Not Started` +- **Concept:** A distributed, self-hosted serverless platform using WebAssembly for its core runtime. +- **Components:** + - **Control Plane:** Manages function deployments and schedules invocations. + - **Worker Nodes:** Execute functions in a secure, sandboxed WASM runtime. + - **CLI Tool:** For deploying and managing functions. +- **Challenge:** Building a distributed system, leveraging WASM for fast/secure cold starts, and designing the custom protocols for node communication. +