Author: user
Docker : Error saving credentials: error storing credentials – err: exec: “docker-credential-ecr-login” – Solved
The error message you’re seeing is due to the AWS ECR credential helper docker-credential-ecr-login not being found in your system’s…
Extracting Unique Values From Array Columns in PySpark
When dealing with data in Spark, you may find yourself needing to extract distinct values from array columns. This can…
Shell : Connecting to a remote server and execute a series of Git commands
ssh -o StrictHostKeyChecking=no "$server" "cd ~/work/${project_name}/; git fetch; git checkout $GIT_BRANCH; git pull The command will use the Secure Shell…
Shell : rsync : Synchronizing files and directories between two locations
rsync : Stands for ‘remote sync’. This tool is used for synchronizing files and directories between two locations. Example "rsync…
Meta’s Strategic Pursuit of Profitability in Virtual Reality: The Launch of Meta Quest+ Subscription Service
Meta, the entity behind Facebook, recently announced the inception of its innovative Virtual Reality (VR) subscription service, marking a significant…
PySpark : Returning an Array that Contains Matching Elements in Two Input Arrays in PySpark
This article will focus on a particular use case: returning an array that contains the matching elements in two input…
Unix : Finding the size of a folder in GB
To find the size of a folder in gigabytes (GB) using the shell, you can use the du command with…
Uinix : Get the list of all files with their size and creation date, filtering for files larger than some size
Here’s a step-by-step guide on how to get the list of all files with their size and creation date, filtering…
Steps to create BMI Calculator using Google Forms and Google Sheets
Creating a BMI (Body Mass Index) calculator using Google Forms and Google Sheets involves creating a form to collect user’s…
Snowflake : Create an array with a series of numbers within a given range [ARRAY_GENERATE_RANGE()]
Snowflake’s ARRAY_GENERATE_RANGE() function allows you to create an array with a series of numbers within a given range (i.e., from…