Skip to content
View minhazalam's full-sized avatar
:shipit:
:shipit:

Block or report minhazalam

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
minhazalam/README.md

Hi, I'm Minhaz Alam! 👋

Welcome to my GitHub! I’m a Data Engineer who is passionate about transforming raw data into valuable insights that drive decision-making. My expertise lies in designing and building scalable data pipelines, leveraging cutting-edge technologies to empower organizations to make data-driven decisions.

🚀 About Me

  • Name: Minhaz Alam
  • Email: [email protected]
  • Location: Dharamshala, Himachal Pradesh, India
  • Passion: Empowering businesses through robust data solutions and cloud technologies.
  • Current Role: Data Engineer with hands-on experience in data architecture, ETL processes, and cloud platforms.

🎯 Certifications

Databricks Certified Associate Data Engineer

I am proud to share that I have successfully cleared the Databricks Certified Associate Data Engineer exam. You can check out the certificate below:

Databricks Certification

I will also be working on exciting projects and sharing them soon!

💼 Skills & Expertise

With a strong background in both data engineering and cloud technologies, here are the areas where I excel:

  • Programming Languages: Python, PySpark, SQL
  • Data Virtualization: Denodo
  • Big Data & Distributed Systems: Databricks, Apache Spark
  • Cloud Platforms: Microsoft Azure
  • Scheduling & Orchestration: Control-M, Apache Airflow
  • Databases: PostgreSQL, MySQL

📈 GitHub Profile Stats

Profile views
Visitors to my GitHub profile!

🌟 Availability

I am available for full-time, part-time, or freelance remote data engineering roles. If you're looking for a dedicated professional with a passion for data and cloud technologies, feel free to reach out to me at:

🛠️ Technologies & Tools

Here’s a snapshot of the technologies I love working with:

Python PySpark Denodo Databricks SQL Azure Control-M Airflow

Pinned Loading

  1. Intro Intro
    1
    {
    2
        "name" : "Minhaz Alam",
    3
        "age" : "22",
    4
        "contact" : "[email protected]"
    5
    }
  2. learn-cpp learn-cpp Public

    This repo contains c++ codes (basic to advance)

    C++ 1

  3. learn-dsa learn-dsa Public

    This repo will contain all the codes while learning different data structure and algorithms

    C++

  4. python-for-remote-job python-for-remote-job Public

    Learn python by building 20+ projects

    Python

  5. ecomm ecomm Public

    Python

  6. python_cheatcodes.py python_cheatcodes.py
    1
    List Methods:
    2
    
                  
    3
    lst.append(x)          # Adds item x to the end of the list.
    4
    lst.extend(iterable)   # Extends the list by appending elements from iterable.
    5
    lst.insert(i, x)       # Inserts item x at position i.