In this article, we'll dive into the various settings you can configure in this file,…
Category: article
How to generate your project’s documentation in DBT
generate and serve generate DBT has two supported commands for generating documentation for the models. dbt docs generate is responsible…
How to delete files, directory and subdirectory which is older than N days in shell, Unix or Linux
For mostly, logs and other temp files, its a common use case to delete the files older than 30 or…
How to find the difference between two dates in DBT
datediff The datediff macro can be used to calculate the difference between two dates. {{ dbt.datediff("column_a", "column_b", "day") }} {{ dbt.datediff("column",…
How to add instance variable available to all projects and groups in a GitLab instance and to use in .gitlab-ci.yml for pipeline execution
During building of git pipeline you may need to add some values which you dont want to expose in the…
Google to increase storage from 15GB to 1TB(1000GB)for Gmail and Drive storage
For those who are on the Workspace individual plan, Google has some excellent news. Users of the service, including independent…
Python 3.11.0 is now available
Major new features of the Python 3.11 series, are Include Fine-Grained Error Locations in Tracebacks. Exception Groups and except*. tomllib:…
Python : How to extract images from PDF files
In this article you can see how to extract images from pdf files and save it in your local. For…
Python : How to remove background of an image using Python
In this article we will see how can we remove background of an image using Python. For this we are…
Python : How to replace multiple if-elif-else with easy to write/read code
You can write the same logic in different ways. How smart you write the code explains how comfortable you in…
PySpark: How to add months to a date column in Spark DataFrame (add_months)
I have a use case where I want to add months to a date column in spark DataFrame Function :…