Skip to content

Latest commit

 

History

History
56 lines (35 loc) · 1.73 KB

File metadata and controls

56 lines (35 loc) · 1.73 KB

Zero To Hero Blockchain Developer

This repository created for the CODELAB and UNIMI members aims to give the necessary resources to learn the basics concepts of blockchains and also get into understanding the newly and advanced topics the industry is developing into, one particular focus is Algorand, it's design and tooling.

How to interact with this repository:

  • Fork the repository.
  • Highlight the content you went over by crossing the lines in the respective tables.
  • Create a Markdown file (answers.md) in each directory and answer the questions in Questions.md.
  • Open a PR request once you have completed each chapter.

ROADMAP

roadmap_image

In case of repository update

This Repository is meant to be expanded and updated over time to improve its content, for the students that have forked the repository for their assignements here are the commands to follow to update their fork:

  1. Add upstream remote (only once):
git remote add upstream https://github.com/VKappaKV/Zero-To-Hero-blockchain-Algorand.git
  1. Fetch the changes from the upstream repository
git fetch upstream
  1. Checkout your local main branch
git checkout main
  1. Merge the changes from the upstream main branch
git merge upstream/main
  1. Push the updated main branch to your fork
git push origin main