Skip to content
View romicofre's full-sized avatar
🐇
🐇

Block or report romicofre

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

Pinned Loading

  1. Load firestore table to pandas dataf... Load firestore table to pandas dataframe
    1
    import pandas as pd
    2
    from google.cloud import firestore
    3
    
                  
    4
    db = firestore.Client()
    5
    users = list(db.collection(u'users').stream())
  2. collection-of-movies-etl collection-of-movies-etl Public

    Data source: https://www.kaggle.com/ruchi798/movies-on-netflix-prime-video-hulu-and-disney/data

    Jupyter Notebook 1

  3. aws-de-data-processing aws-de-data-processing Public

    Understanding AWS, server-less and others to data processing

    Python 1

  4. terraform_exercises terraform_exercises Public

    Studying terraform

    HCL 1 1

  5. Filtro Gaussiano en C++ con OpenCV 3 Filtro Gaussiano en C++ con OpenCV 3
    1
    #include <opencv2/opencv.hpp>
    2
    
                  
    3
    using namespace cv;
    4
    
                  
    5
    void imfilter( const cv::Mat & image ) {