Skip to content
View Ricaidito's full-sized avatar
🔱
🔱
  • Foxbyte
  • Santo Domingo, Dominican Republic
Block or Report

Block or report Ricaidito

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

Contact with me:

Discord Gmail

Languages and frameworks:

Express ASPNET FastAPI React Angular NodeJS TypeScript Python CSharp

Databases:

MongoDB MSSS

Cloud platforms:

GCP

Pinned

  1. yv-xtract yv-xtract Public

    A simple CLI tool to download videos from YouTube either in mp4 or mp3 format and with the ability to crop them

    Python 2

  2. color-recognition color-recognition Public

    Machine Learning model (Neural Network) capable of classifying the colors in any supplied image

    Jupyter Notebook 1

  3. Ship-vs-Balloon Ship-vs-Balloon Public

    Ship VS Balloon game created with Unity in C #

    C# 1

  4. Traffic-Simulation Traffic-Simulation Public

    Dominican style traffic simulation made in Unity and C#.

    C#

  5. Custom React hook to detect if the s... Custom React hook to detect if the screen width is within the specified bounds
    1
    import { useEffect, useState } from "react";
    2
    
                  
    3
    const defaultSize = 640;
    4
    
                  
    5
    export const useScreenSize = (sizeToCheck = defaultSize) => {
  6. Custom React hook with stopwatch beh... Custom React hook with stopwatch behavior
    1
    import { useState, useEffect } from "react";
    2
    
                  
    3
    export const useStopwatch = () => {
    4
      const [time, setTime] = useState(0);
    5
      const [isRunning, setIsRunning] = useState(false);