Development

How To Authenticate Django Apps using django-allauth — step-by-step Python tutorial on Progressive Robot

How To Authenticate Django Apps using django-allauth

django-allauth is an integrated set of Django applications dealing with account authentication, registration, management, and third-party (social) account authentication. In this tutorial, you will build a Django application that uses django-allauth to authenticate using a cloud account.

Read more
How To Build a GraphQL API With Golang to Upload Files to object storage — step-by-step Programming tutorial on Progressive Robot

How To Build a GraphQL API With Golang to Upload Files to object storage

Uploading files with GraphQL can be a challenge, since there is no built-in support for file uploads. In this tutorial, you will learn to upload images to a third-party storage service directly from your backend application. You will build a GraphQL API that uses an S3-compatible AWS GO SDK from a Go backend application to upload images to object storage. The Go back-end application will expose a GraphQL API and store user data in a PotsgreSQL database.

Read more
Bias-Variance for Deep Reinforcement Learning: How To Build a Bot for Atari with OpenAI Gym — AI And Machine Learning tutorial on Progressive Robot

Bias-Variance for Deep Reinforcement Learning: How To Build a Bot for Atari with OpenAI Gym

Reinforcement learning is a subfield within control theory, which concerns controlling systems that change over time and broadly includes applications such as self-driving cars, robotics, and bots for games. Throughout this guide, you will use reinforcement learning to build a bot for Atari video games. By following this tutorial, you will have gained an understanding of the fundamental concepts that govern one’s choice of model complexity in machine learning.

Read more
Como construir loops for no Go — step-by-step Programming tutorial on Progressive Robot

Como construir loops for no Go

Em programação de computadores, um loop é uma estrutura de código que faz um loop para executar repetidamente uma parte de um código, frequentemente até que alguma condição seja alcançada. O uso de loops em programação de computadores permite que você automatize e repita…

Read more
How To Create User Interactions with Events in Vue — step-by-step Javascript tutorial on Progressive Robot

How To Create User Interactions with Events in Vue

In Vue.js, developers use events to add user interaction to their web applications. However, the front-end framework offers a quicker method of handling events by using the v-on directive. In this tutorial, you will use events in Vue to create an application of airport codes. When the user selects an airport code, the app will add that airport to a “favorites” collection. By following along with this project, you will learn about Vue’s built-in events and how to create custom events.

Read more
CHAT