```python
from google.auth import default
from google.auth.transport.requests import Request
import requests
[Read More]
SQL Queries Practice
1. Find All Users that have more than x Consecutive days of logins.
[Read More]
Google CLoud Workflow Scripts!
1) The workflow appends query results to a bigquery dataset using the BigQuery connector.
[Read More]
Authenticate BigQuery with Gcloud using Application Default Credentials
You need to have Google Cloud Shell SDK installed on your local machine - https://cloud.google.com/sdk/docs/install Open Google Cloud SDK Shell and type the below command. gcloud auth application-default login This will open up a browser where you can authenticate. The above command then create an ‘application_default_credentials.json’ credential file in the...
[Read More]
R Tips/Tricks/Bookmarks
Find R Version you are running in RStudio - R.version["version.string"].
Find Version of Specific Package - packageVersion("package_name").
[Read More]