Go Fund Me

409 Total Families

A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z

19 Total Businesses

Source

https://docs.google.com/document/d/1-SDAhzoNf-9bAQ4nOAK39-il018ehcK29A3keisdnWE/edit?fbclid=PAZXh0bgNhZW0CMTEAAaYjNHYXJ0ymtbTCgq_W1zqx_10TACNaR3nRMghbXO3hZ7gvwLENcNcCUig_aem_YUdMotvq2-UA2Qnua-62PQ&tab=t.0

Other Google Sheets

Altadena.us — altadena.us/neighbors

Mutual Aid Los Angeles Network — https://mutualaid.la

Malan Groups — https://www.mutualaid.la/groups

Malan Master List — https://docs.google.com/spreadsheets/d/1KMk34XY5dsvVJjAoD2mQUVHYU_Ib6COz6jcGH5uJWDY/edit

Volunteer Opportunities — https://docs.google.com/spreadsheets/d/1eaSXTYlLY_spJ-_w43ac55qu6X4YtgApgRGfads3cM4/edit

Hotels — https://docs.google.com/spreadsheets/d/1o3k8WKk06GsCmPfQYXUyV0NILEt_8jSTzHTk7eIQ4os/edit

Displaced Black Families — https://docs.google.com/spreadsheets/d/1pK5omSsD4KGhjEHCVgcVw-rd4FZP9haoijEx1mSAm5c/edit

Displaced Latino Families — https://docs.google.com/spreadsheets/d/1km3lEvdVY70P3875guzujp5xtoIFMr6jVZVxfpN3MeA/edit

Displaced Filipino Families — https://docs.google.com/spreadsheets/d/17hqZniTXSkz2xCXg06dLL3bV7NCnp-JROBPESwnjsgw/edit

Displaced Disabled Families — https://docs.google.com/spreadsheets/d/1CJeOpQWsVCo6VYXAvChXVvoYzxVJiKPn3nMTCFVMUWc/edit

GoFundMe Links

Updates — https://gateway.gofundme.com/web-gateway/v1/feed/help-deryk-on-the-road-to-a-heart-transplant/updates?limit=20&offset=0

Counts — https://gateway.gofundme.com/web-gateway/v1/feed/24hr-stream-2024-reformation-fundraising/counts

Donations — https://gateway.gofundme.com/web-gateway/v1/feed/passage/donations?limit=20&offset=0&sort=recent

Comments — https://gateway.gofundme.com/web-gateway/v1/feed/24hr-stream-2024-reformation-fundraising/comments?limit=10&offset=0

GoogleSheetsAPI

GoogleSheetsAPI.php

How to Unzip file with PHP

https://stackoverflow.com/questions/8889025/unzip-a-file-with-php

$zip = new ZipArchive;
$res = $zip->open('file.zip');
if ($res === TRUE) {
  $zip->extractTo('/myzips/extract_path/');
  $zip->close();
  echo 'woot!';
} else {
  echo 'doh!';
}

How to Download public file from Google Drive

https://www.googleapis.com/drive/v3/files/1-SDAhzoNf-9bAQ4nOAK39-il018ehcK29A3keisdnWE/export?alt=media&mimeType=text/csv&key=AIzaSyBGi6yodSM4tirTJBb51Elv2fvQC5TNJsg

https://www.googleapis.com/drive/v3/files/{file_id}/export?alt=media&mimeType=text/csv

Using Google API

https://developers.google.com/drive/api/guides/manage-downloads#php_1

How to get Access Token and Refresh Token for Google Cloud

Google Sheets API — https://developers.google.com/sheets/api/guides/concepts

https://www.googlecloudcommunity.com/gc/Workspace-Developer/How-to-get-the-access-token-to-use-in-sheets-REST-API/m-p/621598

https://developers.google.com/workspace/guides/create-credentials

https://ei.docs.wso2.com/en/7.0.0/micro-integrator/references/connectors/google-spreadsheet-connector/get-credentials-for-google-spreadsheet/

https://developers.google.com/oauthplayground/?code=4/0AanRRrtJQV1C9q42uPWOOcEnOvnElDv4mUEU0tNSEOGO7OGlSWjK-Ay2C5jC5FqBsPLVEA&scope=https://www.googleapis.com/auth/drive%20https://www.googleapis.com/auth/drive.file%20https://www.googleapis.com/auth/drive.readonly%20https://www.googleapis.com/auth/spreadsheets%20https://www.googleapis.com/auth/spreadsheets.readonly

Google Docs API

https://www.mikesallese.me/blog/google-docs-api-examples/


Last Updated: January 19, 2025