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

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.

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

Hero_banner

Hi there ๐Ÿ–๐Ÿพ

๐Ÿ™ˆ badge

โŒจ๏ธ Technologies and Tools

Python Javascript robotframework selenium Markdown

๐ŸŒฑ Iโ€™m exploring

Framework

TensorFlow_2 scikit-learn robotframework scrapy

Languages

GO

Hardware

Raspberry Pi

APIs

Binance Coin Market Cap


๐Ÿ”ญ Iโ€™m currently working on

  • Move my personal projects to docker containers.
  • Adding github actions to track code quality and vulnerabilities.
  • Using Raspberry pi as a server to deploy my projects. Personal Projects Using Raspberry Pi and Python.

๐Ÿ“Œ My goal is to explore projects with raspberry pi other than a magic mirror. These projects should have real application, be short enough to be finished by one person in a few days, and they don't required any exotic extra hardware.


๐Ÿ“˜ My Notes

Markdown

My notes


๐Ÿ““ Medium

Medium Articles


๐Ÿ“ฅ Contact

Email victoraguirre.f@gmail.com

GitHub Streak

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.

    3

  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