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
| """ | |
| Grab card GUIDs from scryfall to transform moxfield format into printing proxies format. | |
| Allows you to preserve the desired card art and foil status. | |
| Example Input: | |
| 1 Karador, Ghost Chieftain (2X2) 238 *F* | |
| 1 Aftermath Analyst (MKM) 148 | |
| 1 Altar of Dementia (BRR) 3 | |
| 1 Ancient Tomb (UMA) 236 |
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
| Caterpillar rancher does not record, sell, store, or otherwise use any of your personal data. It makes use of Google Play Games services to track your high score. That's it! |
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
| ### models.py | |
| from django.core.exceptions import PermissionDenied | |
| from django.contrib.auth.models import AbstractUser | |
| from django.db import models | |
| from django.http import HttpResponse, Http404 | |
| # your custom user model here | |
| class MyCustomUser(AbstractUser): | |
| is_patient = models.BooleanField() |
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 django.contrib.auth.models import AnonymousUser | |
| from django.db import close_old_connections | |
| from django.conf import settings | |
| from channels.sessions import CookieMiddleware | |
| from channels.db import database_sync_to_async | |
| from rest_framework_simplejwt.authentication import JWTAuthentication | |
| import logging | |
| logger = logging.getLogger(__name__) |
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
| // SPDX-License-Identifier: MIT | |
| pragma solidity >= 0.7.0; | |
| import { | |
| ISuperfluid, | |
| ISuperToken, | |
| ISuperApp, | |
| ISuperAgreement, | |
| SuperAppDefinitions | |
| } from "https://github.com/superfluid-finance/protocol-monorepo/blob/remix-support/packages/ethereum-contracts/contracts/interfaces/superfluid/ISuperfluid.sol"; |