diff --git a/DA Milestones/Uche/Q4 2025/IRL_event.md b/DA Milestones/Uche/Q4 2025/IRL_event.md deleted file mode 100644 index 7c16195..0000000 --- a/DA Milestones/Uche/Q4 2025/IRL_event.md +++ /dev/null @@ -1,11 +0,0 @@ -`# Introduction to Cardano Physical Meetup, Enugu - -![Intro to cardano physical meetup banner](./images/cardano-workshop.png) - -The Introduction to Cardano IRL/Community event was successfully held in Enugu, Nigeria bringing together blockchain enthusiasts, students, developers, and professionals interested in learning about the Cardano ecosystem. The session aimed to introduce the fundamentals of Cardano, its unique architecture, real-world applications, and opportunities within the ecosystem. The event had a total of over 25 attendees. The event helped raise awareness about Cardano in the South-East region and motivated several attendees to explore further learning paths, developer tools, and community involvement. - -## Picture highlights from the event - -![Uche presenting](./images/IMG_3036.jpg) -![Another angle of uche presenting](./images/IMG_3038.jpg) -![Group photo](./images/IMG_3044.jpg) diff --git a/website/docs/how-to-guide/advanced/README.md b/website/docs/how-to-guide/advanced/README.md new file mode 100644 index 0000000..3dbe0db --- /dev/null +++ b/website/docs/how-to-guide/advanced/README.md @@ -0,0 +1,25 @@ +# Advanced Guides + +Welcome to the Advanced Guides section! These guides are for experienced developers ready to tackle complex Cardano development challenges and contribute to the ecosystem. + +### Ecosystem Projects +- **Cardano DB Sync**: Check out this awesome guide to Cardano DB Sync [here](./cardano-db-sync.md) +- **Cardano API**: Check out this awesome guide to Cardano API [here](./cardano-api.md) + + +## Getting Involved + +- **Core Development**: Contribute to [IntersectMBO repositories](https://github.com/IntersectMBO) +- **Research**: Engage with [IOG Research](https://iohk.io/en/research/library/) +- **Community Leadership**: Lead [Working Group sessions](../../working-group/readme.md) +- **Mentorship**: Help in Discord and Stack Exchange + +## Resources for Advanced Developers + +- [Cardano Improvement Proposals (CIPs)](https://github.com/cardano-foundation/CIPs) +- [Formal Specifications](https://github.com/IntersectMBO/cardano-ledger#formal-specifications) +- [Technical Working Groups](https://intersectmbo.org) + +--- + +*These guides represent the cutting edge of Cardano development. Your expertise and contributions help shape the future of the ecosystem.* \ No newline at end of file diff --git a/website/docs/working-group/q1-2025/sessions/03-dev-environment-setup/session-notes/readme.md b/website/docs/working-group/q1-2025/sessions/03-dev-environment-setup/session-notes/readme.md index e879f40..a4428b0 100644 --- a/website/docs/working-group/q1-2025/sessions/03-dev-environment-setup/session-notes/readme.md +++ b/website/docs/working-group/q1-2025/sessions/03-dev-environment-setup/session-notes/readme.md @@ -8,7 +8,7 @@ slug: /working-group/q1-2025/sessions/03-dev-environment-setup/session-notes # Cardano Dev Environment -A well-structured environment is essential for building, testing, and contributing to Cardano projects. This guide outlines the core components and links you to canonical setup instructions. For background on core repos and ecosystem resources, see the Kickoff session: [Core Repositories](../../01-kickoff-orientation/session-notes/readme.md#core-repositories) and [Documentation Resources](../../01-kickoff-orientation/session-notes/readme.md#documentation-resources). +A well-structured environment is essential for building, testing, and contributing to Cardano projects. This guide outlines the core components and links you to canonical setup instructions. For background on core repos and ecosystem resources, see the Kickoff session: [Core Repositories](../../01-kickoff-orientation/session-notes/readme.md) and [Documentation Resources](../../01-kickoff-orientation/session-notes/readme.md). ## Version Control @@ -19,7 +19,7 @@ Use Git and GitHub for collaboration and traceability. - Git installed locally (`git --version`) - Suggested branch model: `main` (stable), `dev` (active), `feature/*` (scoped work) -Refer to governance, repos, and contribution links in [Documentation Resources](../../01-kickoff-orientation/session-notes/readme.md#documentation-resources) instead of duplicating here. +Refer to governance, repos, and contribution links in [Documentation Resources](../../01-kickoff-orientation/session-notes/readme.md) instead of duplicating here. ## Development Tools @@ -33,7 +33,7 @@ Recommended setup for editing, shell, and formatting: - [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) or [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) - **Optional (protocol work/Haskell toolchain)**: [ghcup](https://www.haskell.org/ghcup/) to manage GHC, Cabal, HLS -For broader tooling and SDKs, see [Essential Tooling](../../01-kickoff-orientation/session-notes/readme.md#essential-tooling). +For broader tooling and SDKs, see [Essential Tooling](../../01-kickoff-orientation/session-notes/readme.md). ## Wallets @@ -82,7 +82,7 @@ Prefer an API if you don’t need to run a full node. For service options and links, see: -- [Kickoff Orientation › Block Explorers & APIs](../../01-kickoff-orientation/session-notes/readme.md#block-explorers--apis) +- [Kickoff Orientation › Block Explorers & APIs](../../01-kickoff-orientation/session-notes/readme.md) API keys and endpoints vary by network (mainnet, preprod, preview). @@ -115,7 +115,7 @@ API keys and endpoints vary by network (mainnet, preprod, preview). - Maintain separate configs for `mainnet`, `preprod`, and `preview` - Align node/CLI versions with official releases - Document project-specific steps in your repo `README` for team consistency -- For deeper ecosystem links (wallets, SDKs, explorers), see [Essential Tooling](../../01-kickoff-orientation/session-notes/readme.md#essential-tooling) and [Block Explorers & APIs](../../01-kickoff-orientation/session-notes/readme.md#block-explorers-apis) +- For deeper ecosystem links (wallets, SDKs, explorers), see [Essential Tooling](../../01-kickoff-orientation/session-notes/readme.md) and [Block Explorers & APIs](../../01-kickoff-orientation/session-notes/readme.md) ## Session Resources