Skip to content

Instantly share code, notes, and snippets.

View yngfoxx's full-sized avatar
🎯
Focusing

Stephen Osunrinde yngfoxx

🎯
Focusing
View GitHub Profile
@yngfoxx
yngfoxx / ActionSheet.tsx
Last active May 16, 2024 10:58
React Native Action Sheet
import {
useRef,
useMemo,
useState,
useEffect,
useContext,
useCallback,
createContext,
} from 'react'
import {
@yngfoxx
yngfoxx / python-downloader.py
Created April 20, 2021 09:06 — forked from tobiasraabe/python-downloader.py
Script to download files, resume downloads and validate downloads. Everything wrapped with a beautiful progressbar.
import click
import hashlib
import requests
from pathlib import Path
from tqdm import tqdm
CONTEXT_SETTINGS = dict(help_option_names=['-h', '--help'])