How to copy the SSH key to a server without using ssh-copy-id
In this article, we will show you how to manually copy your SSH key to a remote server when ssh-copy-id is not an option.
A sample multi-container application with Docker Compose
In this article, we will explore how to set up an application that uses Nginx as a reverse proxy for a Node.js application, with MySQL as the backend database.
JavaScript: how to force file download
Forcing a file to be downloaded using JavaScript is a common technique used when you want to give users the ability to download files directly from a web application, without opening the file in the browser or relying on other external features.
Go: using the Google Drive API
In this article, we will see how to upload files to Google Drive using the Go programming language.
Go: the Fiber web framework
This article offers a general overview of Fiber, exploring its main features, the benefits of using it, and how to get started working with it.
Go: rand.Seed() has been deprecated: a solution
The random seed generation function of the rand package has been abandoned in favor of a more efficient and reliable solution.