- Download the perforce visual tool suite from here: http://www.perforce.com/perforce/downloads/index.html
- Copy only the p4merge.app file into your /Applications/ directory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const user = useUser() | |
| async function handleLinkWithGoogle() { | |
| if (!user?.firebaseUser) { | |
| return | |
| } | |
| const provider = new GoogleAuthProvider() | |
| try { | |
| const result = await linkWithPopup(user.firebaseUser, provider) | |
| console.log('Linked to Google account', result.user) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ########################################################## | |
| # | |
| # 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 |