Mobile App Dev 101: Technical Error Prompts are a no-no

Technical error prompts are a no-no. But not that important to submit a quick fix to your pipeline. But nonetheless, the reason is that for everyday users it feels like something is deeply broken with your app or worse, they feel like they are the ones who broke or crash it. More importantly they won’tContinue reading “Mobile App Dev 101: Technical Error Prompts are a no-no”

Books I’ve Read This 2020

As we close off the year 2020, I just want to share the books that I enjoyed reading. Some of this books were released this year and some are old. No Filter: The Inside Story of Instagram Rise and Kill First: The Secret History of Israel’s Targeted Assassinations El Jefe: The Stalking of Chapo GuzmanContinue reading “Books I’ve Read This 2020”

Mass Delete Firebase Authenticated Users

sudo pip install firebase-admin import firebase_adminfrom firebase_admin import credentialsfrom firebase_admin import authcred = credentials.Certificate(“/Users/lawrence/Projects//.json”)app = firebase_admin.initialize_app(cred)for user in auth.list_users().iterate_all():print(“User ID = ” + user.uid) python firebase_auth_nuke.py auth.delete_user(user.uid) import firebase_adminfrom firebase_admin import credentialsfrom firebase_admin import authcred = credentials.Certificate(“/Users/lawrence/Projects/StarTender/starme-dev-firebase-adminsdk-7l2d7-6456855c7d.json”)app = firebase_admin.initialize_app(cred)for user in auth.list_users().iterate_all():print(“User ID = ” + user.uid)auth.delete_user(user.uid)print(“Deleted user ID ” + user.uid)

%d bloggers like this:
search previous next tag category expand menu location phone mail time cart zoom edit close