Watch Latest Shows & Videos on Our Official YouTube Channel – BLOCKBYTES

Facebook Twitter Youtube Instagram Tiktok Linkedin Spotify
Blockbytes
  • Home
  • Shows
    • Across The Chains
    • Beyond the Block
    • Featured By Blockbytes
    • The Workflow
    • Byte Sized Videos
    • Quickflip Polygon
    • Legacy Content
  • Articles
    • News
    • Getting Started
    • Project Overviews
    • DeFi
    • NFTs
    • Networks
      • Polygon
      • Iota + Shimmer
      • Fantom
      • Aurora
  • BlockBytes Weekly
  • Meet the Team
    • About Us
    • Contact
Reading: How to Become a Crypto Developer: Starting From Square One
Share

  • bitcoinBitcoin(BTC)$16,787.14
  • ethereumEthereum(ETH)$1,210.10
  • tetherTether(USDT)$1.00
  • usd-coinUSD Coin(USDC)$1.00
  • binancecoinBNB(BNB)$247.45
  • binance-usdBinance USD(BUSD)$1.00
  • rippleXRP(XRP)$0.344393
  • dogecoinDogecoin(DOGE)$0.073311
  • cardanoCardano(ADA)$0.250973
  • matic-networkPolygon(MATIC)$0.79

Aa
Blockbytes
  • Home
  • Shows
  • Articles
  • BlockBytes Weekly
  • Meet the Team
Search
  • Home
  • Shows
    • Across The Chains
    • Beyond the Block
    • Featured By Blockbytes
    • The Workflow
    • Byte Sized Videos
    • Quickflip Polygon
    • Legacy Content
  • Articles
    • News
    • Getting Started
    • Project Overviews
    • DeFi
    • NFTs
    • Networks
  • BlockBytes Weekly
  • Meet the Team
    • About Us
    • Contact
Have an existing account? Sign In
Follow US
Facebook Twitter Youtube Instagram Tiktok Linkedin Spotify
Blockbytes > Blog > Uncategorized > How to Become a Crypto Developer: Starting From Square One
Uncategorized

How to Become a Crypto Developer: Starting From Square One

HELPeR
Last updated: 2022/05/08 at 10:38 AM
HELPeR Published May 8, 2022
Share

In this series I will share my crypto developer journey with you. I will share the learning resources recommended by the Byte Mason’s and let you know which of them I found the most useful. No two journeys will be the same. For many of you, your skill levels will well exceed mine. This article will be aimed at absolute beginners. My hope is that it will resonate with an audience who is excited about the crypto space and eager to learn. And for those of you who are more experienced, keep watching Lrn.fi for upcoming programming content from our senior devs including our very own Justin Bebis.

Contents
My Programming Journey so far…Finding a learning roadmapStarting with the FundamentalsProgramming 101 with “Uncle Bob”MimoResponsive Web Design CourseFive Things to do if you are just starting

My Programming Journey so far…

My first exposure to programming was when I was in primary school. I was fascinated about how the internet and web pages worked. I tracked down a copy of the Dummy’s guide to HTML (HTML 4 at that time) and started putting together very basic websites. These were nothing more than text, links and images thrown together inside <body> tags with crazy tiled backgrounds. Probably not much different from The World’s Worst Website Ever but young HELPeR was proud of his achievements. Unfortunately I didn’t persist in my learning.

Jump ahead to college where I used Python and Matlab as part of my degree. I figured out how to import data, create loops and spit out some charts to get through assessments. I was only looking to solve problems given to me as fast as possible, looking for quick fix solutions but failing to take the time to learn the principles of programming. 

In the workforce, I have continued to improve my skills by completing the tasks in Al Sweigart’s great book Automate the Boring Stuff with Python (available to read for free here). These real world examples helped open my eyes to what could be done with programming. I have continued my journey by conquering the basics of Microsoft\\\’s VBA to squeeze more productivity out of Excel and automating processes with data extraction from servers.

Finding a learning roadmap

Now I would like to shift gears and learn about the building blocks of the cryptoverse, but where to begin? At this stage, I will be using the Public Good Blockchain Development Guide to provide me with a roadmap for my learning. dcbuil3r’s guide provides great overviews of key topics and importantly offers further external resources for you to continue your learning. The guide begins with an introduction to crypto specific technologies such as blockchains, smart contracts and decentralization. If you are new to crypto, I highly suggest beginning at the start, taking your time to go through the suggested resources.

The guide is then broken down into sections which focus on different development specializations. These sections include:

  • Front end development: The technology stack involved in building user interfaces to blockchain technology.
  • Smart contract development: The “on-chain” code that lives on the blockchain and forms the backbone of dApps. The most commonly used language used on Ethereum and Fantom is Solidity.
  • Back end development: The “off-chain” complementary technology which allows users to query data from blockchains, index data and create databases to create on demand data. This supports the development of more powerful and responsive experiences for users.

As the guide suggests, I will aim to learn the basics from each area to help build my overall knowledge before picking a specialization. 

Starting with the Fundamentals

For my journey, I want to make sure I stayed humble and didn’t skip from level 1 to level 10, missing out on all of the knowledge and skills of the intermediate levels. For this reason, I went back to square one to learn the basics using the excellent learning resources that are available today. I will now share three of the resources that have been recommended to me by the team that have helped me the most.

Programming 101 with “Uncle Bob”

One of the resources that is regularly suggested for beginners in the Byte Masons Crypto Developer Beginner thread is Clean Coders Programing 101 video. Uncle Bob is a highly enthusiastic teacher who doesn’t want to just tell you how programming works but rather show you. In this video, he creates a program for turning on light bulbs in his house to explain some basic programming logic and binary math. If you are just starting your programming journey, this is an entertaining watch to get you started.

Programming 101 with \”Uncle Bob\”

Mimo

I am a regular user of the language app Duolingo and I have made it part of my daily ritual to hop in the app to smash out a quick lesson to maintain my daily streak. Mimo is like Duolingo for programming. It comes highly recommended by both Bebis and Munchies for beginners looking to dip their toes into programming. I have found it very easy to add a Mimo lesson into my daily ritual. I try to do at least one lesson each day to supplement other avenues of learning.

Responsive Web Design Course

freeCodeCamp is a resource that comes highly recommended by Munchies. I have tried several online courses such as codecademy and a variety of udemy courses. freeCodeCamp is by far my favorite. If you prefer to learn by doing, not just reading, this resource is for you. The courses are self contained within your browser so you don’t have to install anything. Lessons are quick and concise whilst being difficult enough to keep you thinking. 

In preparation for writing this article, I have completed the Responsive Web Design Course. This course is all about the fundamentals of web design. Do not be put off by the 300 hour estimate for the course. In my experience, I completed it much faster. 

The course revolves around the languages that developers use to build webpages: HTML (Hypertext Markup Language) for content, and CSS (Cascading Style Sheets) for design. You start by building basic web apps in HTML, then progress by adding styling with CSS. The next part is an overview of the best practices for accessibility with.

The main topics covered are:

  • Basic HTML 5 – build a cat photo app to learn the building blocks of any webpage.
  • Basic CSS – tell the browser how to display the text and other content. Control colors, font, size, spacing, etc.
  • Applied visual design – combine typography, color theory, graphics, animation, page layout and more to help deliver your message.
  • Applied accessibility – learn best practices for building web pages that are accessible to everyone.
  • CSS Flexbox – Flexbox is a powerful layout method which makes it easy to create dynamic user interfaces which shrink and expand automatically.
  • CSS Grid – build complex responsive layouts by turning an HTML element into a grid.

Five Things to do if you are just starting

  • Download Mimo, start the Web Development coding path and complete lessons while you are on the bus, in between sets at the gym or while you are on the toilet.
  • Sign up to freeCodeCamp and start working through the interactive courses to learn the basics of web development.
  • Start getting familiar with crypto lingo and how blockchains work. DevPill.me has many resources to start you on your journey. If you need to brush up on Web 2.0 knowledge, check out the Frontend Developer Roadmap. If you are unfamiliar with how crypto and blockchains work, consider reading through documentation such as the Fantom Developer Documentation or the Ethereum Developer Docs.
  • Join the Byte Mason’s Discord, say hello and ask questions in the Crypto Developer Beginner thread.
  • Stay up to date with the Learn team at Lrn.fi.

That brings this introductory article to a conclusion. I hope you have enjoyed this first entry and find these resources as useful as I have. I will continue to share books, courses, videos and guides that I find useful throughout my journey. Good luck with your learning and I hope to see you in the next edition!

You Might Also Like

DCG Letter Text

How-to Improve Your Password Security

Your Start to Better Personal Cyber Security

TAGGED: Programming

Sign Up For Daily Newsletter

Be keep up! Get the latest breaking news delivered straight to your inbox.

By signing up, you agree to our Terms of Use and acknowledge the data practices in our Privacy Policy. You may unsubscribe at any time.
Share this Article
Facebook Twitter Email Copy Link Print
Previous Article Reaper Farm Update: Tarot Lending Optimizer
Next Article State of the Opera – April 2022
- Subscribe Us-
Ad image
Popular News
Arbitrum Top 5
Five Arbitrum Projects to Watch in 2023
Thena
THE Thena Overview
Signature Bank
The Latest Crypto Bank Closure – Signature Bank joins SVB and Silvergate Bank
Silvergate
The First Domino – The End of Silvergate Bank
USDC DEPEG
USDC DEPEG: CIRCLE’S ROLLERCOASTER OF A WEEKEND

Latest News

Arbitrum Top 5
FeaturedNetworks

Five Arbitrum Projects to Watch in 2023

March 24, 2023
Thena
Project Overviews

THE Thena Overview

March 24, 2023
Signature Bank
Editor's PicksNews

The Latest Crypto Bank Closure – Signature Bank joins SVB and Silvergate Bank

March 14, 2023
Silvergate
Editor's PicksNews

The First Domino – The End of Silvergate Bank

March 14, 2023

Stay Connected

Twitter Youtube

Subscribe

Removed from reading list

Undo
Welcome Back!

Sign in to your account

Register Lost your password?