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

Hero_banner

Building Quality at Scale

Test infrastructure, automation frameworks, and platform tooling for engineering organizations — from Selenium grids on Kubernetes to CI/CD pipeline integrations.


What I Build

Test Infrastructure Selenium grids, containerized test environments, mobile testing platforms

Automation Frameworks Python-based frameworks, Robot Framework, API testing suites

Platform Tooling CI/CD integrations with Jenkins and GitHub Actions, developer productivity tools

Embedded Systems Raspberry Pi deployments, hardware-integrated solutions


Stack

Python Go JavaScript Docker Kubernetes Selenium Robot Framework Jenkins GitHub Actions


Current Focus

  • Container orchestration for test infrastructure
  • CI/CD pipeline security and quality gates
  • Edge computing with Raspberry Pi

Writing

Technical Notes · Medium


Contact: victoraguirre.f@gmail.com

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. metal_scrapper metal_scrapper Public

    Spider that will check the bullion prices of two of the bullion sellers in Taiwan

    Python

  3. coinmarketcapAPI coinmarketcapAPI Public

    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

  4. 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
  5. [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'
  6. [Medium article: News aggregator wit... [Medium article: News aggregator with Python and NewsAPI.] This is part of the article in medium, it shows a module containing two classes. The first class will be a dataclass representing the news and the second the aggregator representing a request for news with several topics
    1
    """Module holding everything regarding the news request and parsing of the response from the API"""
    2
    from dataclasses import dataclass
    3
    from newsapi import NewsApiClient
    4
    from newsapi.newsapi_exception import NewsAPIException
    5