Skip to content

Instantly share code, notes, and snippets.

View MaitreyaBuddha's full-sized avatar
🧔‍♀️
I, for one, welcome our new robot overlords.

Kelly Johnson MaitreyaBuddha

🧔‍♀️
I, for one, welcome our new robot overlords.
View GitHub Profile
@MaitreyaBuddha
MaitreyaBuddha / remote_config.py
Created January 22, 2026 02:22
Python Firebase RemoteConfig Client
from typing import Any
import requests
from firebase_admin import App
ValueType = str | bool | int | float | dict | list
class RemoteConfigClient:
def __init__(self, app: App):
@MaitreyaBuddha
MaitreyaBuddha / FirebaseGoogleLink.tsx
Created January 12, 2024 14:46
Link Firebase account to google provider
@MaitreyaBuddha
MaitreyaBuddha / Makefile
Created March 9, 2015 21:21
Example makefile with simplest usage for use with most jobs
##########################################################
#
# Example makefile
#
##########################################################
# The top item will run with just `make`, same as `make all`
# This will trigger dependencies, then run
all: silent dependency1 variable environment
echo Everything has been made # this line will be printed