Skip to content
View CubeVic's full-sized avatar
:octocat:
:octocat:

Block or report CubeVic

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse
CubeVic/README.md

Hero_banner

Building Quality at Scale

QA Engineering Director, leading test infrastructure and automation strategy across multiple regions, setting standards, enabling adoption, shipping tooling.


What I Build

Test Infrastructure & Frameworks

CI/CD & Platform Tooling

Python Tooling & CLI


Stack

Languages

Python Go JavaScript Groovy

Infrastructure

Docker Kubernetes Raspberry Pi

Testing & Automation

Selenium Playwright Robot Framework Pytest

CI/CD

Jenkins GitHub Actions

AI

Claude ChatGPT GitHub Copilot


Current Focus

  • πŸ”§ Test infrastructure; Making test infrastructure reproducesable.
  • πŸ“¦ Modernizing projects; Migrating platform-specific requirements.txt files into unified pyproject.toml with uv
  • πŸ“Š QA Engineering Indicators, mapping test metrics to org-wide shared engineering goals
  • πŸ—οΈ Jenkins Configuration as Code (JCasC) with GitHub SSO and GitHub App-based repo access
  • πŸ“ MkDocs-powered documentation site with CI/CD via GitHub Actions

Writing

πŸ““ Technical Notes β€” Personal knowledge base covering Python, Docker, Jenkins, and more

✍️ Medium β€” Articles on API clients, news aggregators, and Python packaging

CubeVic's GitHub stats

Pinned Loading

  1. My_notes My_notes Public

    These are my notes. Here I write, collect, and sometimes copy information about concepts or tools I'm learning to improve in my Daily Job, a new hobby, or just to grow my knowledge in a filed.

    4

  2. coinmarketcapAPI coinmarketcapAPI Public archive

    A Python-client for the Coin Market Cap API. This client provides support for the basic or free tier at the moment. It provides access to all the available endpoint on the API and produce a result …

    Python 3

  3. Get camera stream using OpenCV Get camera stream using OpenCV
    1
    """get a rtsp streaming with openCV"""
    2
    import cv2 as cv
    3
    
                  
    4
    CV_CAP_PROP_FRAME_WIDTH = 3
    5
    CV_CAP_PROP_FRAME_HEIGHT = 4
  4. [Medium Article] Example of a reques... [Medium Article] Example of a request to the Coin Market Cap API
    1
    from requests import Request, Session
    2
    from requests.exceptions import ConnectionError, Timeout, TooManyRedirects
    3
    import json
    4
    
                  
    5
    url = 'https://sandbox-api.coinmarketcap.com/v1/cryptocurrency/listings/latest'