Development

How To Make an HTTP Server in Go — step-by-step Programming tutorial on Progressive Robot

How To Make an HTTP Server in Go

In this tutorial, you will create an HTTP server using Go’s standard library and then expand your server to read data from the request’s query string, the body, and form data. You’ll also update your program to respond to the request with your own HTTP headers and status codes.

Read more
How To Obtain a pandas DataFrame from an Unordered API Endpoint — step-by-step Python tutorial on Progressive Robot

How To Obtain a pandas DataFrame from an Unordered API Endpoint

A DataFrame is a two-dimensional data structure with data presented in rows and columns. Using Python, one common method is to convert data from CSV, Excel, or API endpoints into a Pandas DataFrame. However, some API endpoints do not represent column names and their values in a clear context, which can present a challenge for converting the data into a DataFrame. In this tutorial, you will obtain data from an unordered endpoint and present it in a suitable format to Pandas DataFrame.

Read more
How To Set Up a React Project with Create React App — step-by-step Javascript tutorial on Progressive Robot

How To Set Up a React Project with Create React App

Starting a new JavaScript project with React used to be a complicated process. But now, Create React App includes all the JavaScript packages you need to run a React project, including code transpiling, basic linting, testing, and build systems. In this tutorial, you’ll use Create React App to start a React application. You’ll also run a build to create a minified version of your app, use a server with hot reloading to give you instant feedback, and explore the React file structure.

Read more
CHAT