Development

How To Create Reusable Blocks of Code with Vue Single-File Components — step-by-step Javascript tutorial on Progressive Robot

How To Create Reusable Blocks of Code with Vue Single-File Components

When creating a web application using Vue.js, it’s a best practice to construct your application in small, modular blocks of code. You can gain this modularity with Single-File Components. In this tutorial, you are going to create a SFC and use props to pass data down and slots to inject content between tags. By the end of this tutorial, you will have a general understanding of what SFCs are and how to approach code re-usability.

Read more
How To Deploy a Django App on App Platform — step-by-step Python tutorial on Progressive Robot

How To Deploy a Django App on App Platform

Django is a powerful web framework that allows you to deploy your Python applications or websites. Django includes many features such as authentication, a custom database ORM, and an extensible plugin architecture. Django simplifies the complexities of web development, allowing you to focus on writing code.

Read more
How To Display Data from the cloud provider API with Django — step-by-step Python tutorial on Progressive Robot

How To Display Data from the cloud provider API with Django

Django is a web framework written in Python. Django has been used in websites such as Mozilla, Pinterest and Instagram. You can use Django to display information from APIs (such as Instagram posts or GitHub repositories) in your own websites and web apps. In this tutorial you will build a Django project that will display your cloud account’s Droplet information using the cloud provider’s API. When you complete this tutorial, you will be able use APIs in your own Django projects.

Read more
How To Handle Errors in a Flask Application — step-by-step Python tutorial on Progressive Robot

How To Handle Errors in a Flask Application

In this tutorial, you’ll build a small web application that demonstrates how to handle common errors one encounters when developing a web application. You’ll create custom error pages, use the Flask debugger to troubleshoot exceptions, and use logging to track events in your application.

Read more
CHAT