Skip to content

Instantly share code, notes, and snippets.

View alexjercan's full-sized avatar
🎯
Focusing

Alexandru Jercan alexjercan

🎯
Focusing
  • Bucharest, Romania
View GitHub Profile
@coehne
coehne / Readme.md
Last active March 5, 2025 08:18
Host SvelteKit on Firebase Hosting with Framework Aware Hosting

SvelteKit + Firebase Hosting

These are instructions for setting up a SvelteKit demo project and deploying it to Firebase with framework aware hosting.

Installation steps

Setup SvelteKit

Setup a new SvelteKit project with:

@tanaikech
tanaikech / submit.md
Last active March 30, 2025 02:20
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}"