Skip to content
View zakSPARK's full-sized avatar

Block or report zakSPARK

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
zakSPARK/README.md

Hi I am Zacchaeus Akinwale


Connect on LinkedIn Follow on Twitter Subscribe on YouTube

Zacchaeus's GitHub stats

🌟 My journey began with over 4 years of harnessing data science to solve complex business challenges, fueling my passion for cutting-edge technologies.

🧩 Now, at the forefront of the AI and Blockchain revolution, I integrate concepts like Tokenization, DiDs, DAOs, and Smart Contracts to address the dynamic challenges of today's digital era.

💡 My mission is to drive innovation, facilitate understanding, and unlock the immense potential of AI and Blockchain for businesses and individuals alike. lized world.

#AI #Blockchain #Innovation #Consulting #Transformation #Empowerment


🧰Toolbox

python logo postgresql logo mysql logo jupyternotebook logo Airflow logo dbt logo

🚉 Environment

azure logo aws logo snowflakeDW logo

Pinned Loading

  1. Using_Web3.py_to_interact_with_Ether... Using_Web3.py_to_interact_with_Ethereum_chain.ipynb
    1
    {
    2
      "nbformat": 4,
    3
      "nbformat_minor": 0,
    4
      "metadata": {
    5
        "colab": {
  2. Automating Blockchain API data pull ... Automating Blockchain API data pull with Python Script
    1
    #!/usr/bin/env python
    2
    # coding: utf-8
    3
    
    
    4
    # In[ ]:
    5
    
    
  3. Analytics_SANDBOX_Ethereum Analytics_SANDBOX_Ethereum Public

    Data Analytics on SANDBOX Metaverse on Ethereum

  4. This project showcases the cleaning ... This project showcases the cleaning of Nashville Housing data using SQL.
    1
    
    
    2
    
    
    3
    SELECT *
    4
    FROM NashvilleHousing
    5
    
    
  5. This project showcases the explorati... This project showcases the exploration and querying of data in DB using SQL. The value stack ends in Tableau for visualization and data storytelling for decision-makers.
    1
    -- SELECT * FROM CovidDeaths
    2
    
    
    3
    -- SELECT * FROM CovidVaccinations
    4
    
    
    5
    -- SELECT *
  6. This query JOINS all necessary data ... This query JOINS all necessary data tables needed to analyze and visualize breathe store transactions data easily in our BI tools such as Tableau or Power BI
    1
    ------Normalizing a DB for better structuring to better understand our data
    2
    -- Drop View if Exists Product
    3
    -- CREATE VIEW Product AS
    4
    -- SELECT DISTINCT [Product ID], [Product Name], Category, [Sub-Category]
    5
    -- FROM Orders