Node.js: using NVM
This article explores the importance of NVM in the Node.js ecosystem, how it works, and how it can be used to improve Node.js version management in software development projects.
JavaScript: black and white inverted effect on images
In this article, we'll walk you through the process of creating a JavaScript function that can be used to apply this effect to images on your website
A basic approach to test MySQL connection in Bash
In this article, we will explore how to use Bash to test the connection to a MySQL database.
Structs in Go and C
The comparison between structs in C and Go is an interesting topic that highlights the differences in approach between two influential programming languages, but with distinct design philosophies and contexts of use.
How to run a Python script in a cronjob
Running a Python script through a cronjob is a common practice for automating repetitive tasks on Linux or Unix-like systems.
Python: how to force file download in Flask
A common feature that developers need to implement in web applications is the ability to allow users to download files. This can be accomplished in various ways, but here we will focus on how to force download a file using Flask.