Skip to content
View aleksandrgordienko's full-sized avatar

Block or report aleksandrgordienko

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. Generate SQLAlchemy connection strin... Generate SQLAlchemy connection string from GCP JSON credentials
    1
    from urllib import parse
    2
    keyfile_dict = r"""your json credentials"""
    3
    print(f"google_cloud_plaatform:///?extra__google_cloud_platform__keyfile_dict={parse.quote(keyfile_dict)}")
  2. Script for docker installation under... Script for docker installation under Oracle Linux 7.9
    1
    #!/bin/bash
    2
    
                  
    3
    # Tested on Oracle Linux 7.9, 17th, January 2022
    4
    
                  
    5
    sudo yum install -y yum-utils
  3. data-diving/superset-xlsx data-diving/superset-xlsx Public

    Customized Apache Superset with 'Export to XLSX' functionality

    Python 25 5

  4. register_tg_webhook register_tg_webhook
    1
    curl -X "POST" "https://api.telegram.org/bot<TOKEN>/setWebhook" -d '{"url": "<WEBHOOK_URL>"}' -H 'Content-Type: application/json; charset=utf-8'