Skip to content
View marcoacf's full-sized avatar
🕹️
focusing
🕹️
focusing

Block or report marcoacf

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

Hi there, I'm Marco Cruz 👋

I'm Brazilian, married, father, fan of comics and addicted to learning programming!

I especially like extracting data and converting it into useful information.

Linkedin Badge Twitter Badge Gmail Badge Tumblr Badge

Publishing in Power BI

Power BI Badge

Skills List

  • MS Excel + VBA (Advanced)
  • SQL + Data Modeling (Advanced)
  • Power BI (Intermediate)
  • Power Query (Advanced)
  • BI Concepts
  • Construction and Maintenance of Dashboards
  • ETL (Intermediate)
  • Python (Intermediate)
  • Cloud Computing
#!/usr/bin/python
# -*- coding: utf-8 -*-

class sidekick:

    def __init__(self):
        self.name = "Marco Cruz"
        self.role = "Consultant"
        self.language_spoken = ["pt_BR"]
        
    def say_hi(self):
        print("Thanks for dropping by, hope you find some of my work interesting.")

me = sidekick()
me.say_hi()

from __future__ import annotations
import json
from dataclasses import asdict, dataclass
@dataclass
class Arsenal:
    languages: tuple[str, ...] = ("Python", "R", "VBA", "DAX", "PHP")
    databases: tuple[str, ...] = ("SQLite", "PostgreSQL", "MySQL", "SQL Server", "Oracle")
    ongoing  : tuple[str, ...] = ("API Rest", "GCP", "Big Query")

    def jsonify(self) -> str:
        return json.dumps(asdict(self), indent=4)


arsenal = Arsenal()
print(arsenal.jsonify())

Github Stats

Popular repositories Loading

  1. Power-Query-Excel-Formats Power-Query-Excel-Formats Public

    1

  2. Power-Query-getkks Power-Query-getkks Public

    1

  3. powerbi powerbi Public

    Forked from wanderleihuttel/powerbi

    Repository with links and files for using in PowerQuery and PowerBI

    1

  4. Projeto_Ciencia_Dados_Python Projeto_Ciencia_Dados_Python Public

    Repositório que irá seguir os passos do livro de Projetos de Ciência de Dados com Python do Stephen Klosterman.

    Jupyter Notebook 1

  5. linkedin_dicas linkedin_dicas Public

    Minhas dicas para o linkedin

    1 1

  6. jupyter-notebook jupyter-notebook Public

    my jupyter notebook projects