Skip to content

Instantly share code, notes, and snippets.

View jasonwilmot's full-sized avatar
🏠
Working from home

Jason Wilmot jasonwilmot

🏠
Working from home
View GitHub Profile
@jasonwilmot
jasonwilmot / gist:741973aae66bd5c5b81f1131b7385f08
Created March 5, 2021 16:42
PicPack - Find Tax Exempt Homepages
#find homepages for tax exempt organizations
from googlesearch import search
from csv import reader
from urllib.parse import urlparse
with open('A50 - Museum Museum Activities.csv', 'r') as read_obj:
csv_reader = reader(read_obj)
@jasonwilmot
jasonwilmot / gist:cd7dbbb72cbacc937e40e3c9ca7baab8
Created February 14, 2021 04:07
PicPack - Upload Images and Videos to Google Cloud Storage
var timeStamp = Date.now().toString()
console.log('Sending the file here:')
var storageRef = firebase.storage().ref(folder + '/' + timeStamp + "+" + fileName);
var task = storageRef.put(file);
//progress bar
task.on('state_changed', function progress(snapshot) {
var percentage = (snapshot.bytesTransferred / snapshot.totalBytes) * 100;