Data Hack Tuesday
Tips & Tricks for Your Data
Brought to you every Tuesday.

Python: Building Data Driven Classes with Dataclass
August 17, 2021
Dataclass is a built-in module since the introduction of Python 3.7, which helps developers to build data-driven classes that come […]
View More
Data Infrastructure: What is Infrastructure as Code and why you should consider adopting it?
August 4, 2021
Infrastructure as Code (IaC) is a trend that has become more popular as the cloud infrastructure becomes mainstream in the […]
View More
Docker: Four Useful Docker Commands that Could Boost Your Workflow
July 27, 2021
Today, we want to briefly introduce four docker commands that might help your workflow. Access the Terminal of a Running […]
View More
Data Infrastructure: Why You Should Consider Using Serverless Containers for Deploying Your Next Data Pipeline
July 20, 2021
Last week, we briefly mentioned how to develop event-driven containers for taking runtime parameters. Today, we would like to talk […]
View More
Docker: How to Create Event-Driven Containers for Your Next Data Project and Why
July 13, 2021
The container technology has vastly improved the efficiency and scalability of application deployment for software developers. With the help of […]
View More
Python: The Benefits of Passing Generators between Functions Instead of Lists
July 6, 2021
Many Python tutorials cover generators, but only few of them give out a practical example for utilizing generators. Today we […]
View More
Python: Why You Should Start Using Logging Instead of Print()
June 29, 2021
Logging is a built-in library within Python, which offers capabilities to log and store different levels of information throughout a […]
View More
VSCode: The Benefits of Using .py file with Jupyter Kernel vs. Jupyter Notebook for Your Data Project
June 22, 2021
Jupyter notebook is one of the most favorite tools of data science professionals; however, developing everything in a Jupyter notebook […]
View More
Jupyter Notebook: Use Jupyter Notebook within Virtual Environment
June 15, 2021
Jupyter Notebook is an effective tool to explore and visualize data, but unlike calling a .py file, it requires additional […]
View More