Back

About

Shedload Of Code is a blog on all things programming, coding, building software and doing data science.

I created Shedload Of Code after working in the digital, data and technology profession for over seven years in various roles - including both software engineering and data science. I arrived at a point where I felt like I had enough experience and insight to share advice and tutorials that were valuable and unique! It was launched in May 2021.

It's a place to share and explain code that's been helpful for both myself and others for future projects.

I publish unique quality articles and tutorials both long and short at least once per month. With over 35 articles, 15 videos and 1000s of visitors each month, it keeps growing and helping more people.

I am passionate about solving problems with code, and want to make any code easy to find, view and use in your own projects. That's why every code snippet can be copied in one click, or made full screen for easier viewing. Some code snippets can also be ran if you see a terminal under them. If you hover over the example below (or click it on mobile) you'll see the buttons for copy and full screen appear.

main.py
def main():
  for i in range(1, 6):
    print("Hello Shedload Of Code " + str(i))

if __name__ == "__main__":
  main()
TERMINAL
Python
user@ShedloadOfCode:~$ main.py