Skip to content

Instantly share code, notes, and snippets.

View wescpy's full-sized avatar

wesley chun wescpy

View GitHub Profile
@coryodaniel
coryodaniel / list.txt
Created May 13, 2020 22:04
GCP List of API Services
NAME TITLE
abusiveexperiencereport.googleapis.com Abusive Experience Report API
acceleratedmobilepageurl.googleapis.com Accelerated Mobile Pages (AMP) URL API
accessapproval.googleapis.com Access Approval API
accesscontextmanager.googleapis.com Access Context Manager API
actions.googleapis.com Actions API
adexchangebuyer-json.googleapis.com Ad Exchange Buyer API
adexchangebuyer.googleapis.com Ad Exchange Buyer API II
adexchangeseller.googleapis.com Ad Exchange Seller API
adexperiencereport.googleapis.com Ad Experience Report API
#
# pipenv:
#
# [packages]
# google-api-python-client = "*"
# google-auth = "*"
from google.oauth2 import service_account
from googleapiclient.discovery import build
@bwolf
bwolf / remove-gotomeeting.sh
Last active April 16, 2024 17:29
Remove GoToMeeting on macOS
#!/bin/sh
#
# GOTOMEETING IS SO ANOYING!
#
# It installs without question, a bunch of unwanted files, especially
# LaunchAgents and binaries. This scripts helps got get rid of them
# quickly. Note that this needs to be adjusted from time to time.
#
# BEWARE: Anything citrix related is deleted also.
#
/**
* Fetching data from BigQuery and present it in our sheet
* Author: Ido Green
* Date: 14/12/2013
*
* See: https://greenido.wordpress.com/2013/12/16/big-query-and-google-spreadsheet-intergration/
* Misc: https://developers.google.com/bigquery/
*/
//
@ymotongpoo
ymotongpoo / requests-oauth2.py
Created February 25, 2012 07:53
Google API OAuth 2.0 Authorization Sample in Python
# -*- coding: utf-8 -*-
"""
This scripts reqire a third party module 'requests'.
You can get it from PyPI, i.e. you can install it using
easy_install or pip.
http://docs.python-requests.org/en/v0.10.4/
Original source code is written by shin1ogawa, which is in Java.