Skip to content

Instantly share code, notes, and snippets.

View glenn-jocher's full-sized avatar
😃
You Only Live Once

Glenn Jocher glenn-jocher

😃
You Only Live Once
View GitHub Profile
@tanaikech
tanaikech / submit.md
Last active July 6, 2024 13:39
Downloading Shared Files on Google Drive Using Curl

Downloading Shared Files on Google Drive Using Curl

When the shared files on Google Drive is downloaded, it is necessary to change the download method by the file size. The boundary of file size when the method is changed is about 40MB.

File size < 40MB

CURL

filename="### filename ###"
fileid="### file ID ###"
curl -L -o ${filename} "https://drive.google.com/uc?export=download&amp;id=${fileid}"
@glenn-jocher
glenn-jocher / find_broken_links.py
Last active March 27, 2023 01:11
Find Broken Links in Repo Issues/PRs