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
| // This needs entered in Shopify's GraphQL app to change visibility of metafield. | |
| mutation ($input: MetafieldStorefrontVisibilityInput!) { | |
| metafieldStorefrontVisibilityCreate(input: $input) { | |
| metafieldStorefrontVisibility { | |
| id | |
| } | |
| userErrors { | |
| field | |
| message |
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
| /*------------------------------------------ | |
| Responsive Grid Media Queries - 1280, 1024, 768, 480 | |
| 1280-1024 - desktop (default grid) | |
| 1024-768 - tablet landscape | |
| 768-480 - tablet | |
| 480-less - phone landscape & smaller | |
| --------------------------------------------*/ | |
| @media all and (min-width: 1024px) and (max-width: 1280px) { } | |
| @media all and (min-width: 768px) and (max-width: 1024px) { } |
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
| /* eslint-disable @typescript-eslint/no-unsafe-call */ | |
| /* eslint-disable @typescript-eslint/no-unsafe-assignment */ | |
| /* eslint-disable @typescript-eslint/no-unsafe-member-access */ | |
| import { NextApiRequest, NextApiResponse } from 'next'; | |
| import type Stripe from 'stripe'; | |
| import { prisma } from '~/server/db'; | |
| import { stripe } from '~/utils/stripe'; | |
| import { buffer } from 'micro'; |
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
| <!DOCTYPE html> | |
| <html lang="en-US" prefix="og: https://ogp.me/ns#"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <script type="text/javascript">/* wpack.io publicPath */window.__wpackIodpIntroToursdist='https://mtg-packs.com/wp-content/plugins/dp-intro-tours/dist/';</script><meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> | |
| <!-- Jetpack Site Verification Tags --> | |
| <meta name="google-site-verification" content="0cV2nle2CWV1Gc__ZivCZNUDPyympnRqD8cfT4bmbPo" /> | |
| <meta name="yandex-verification" content="0339afbdd7769580" /> |
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
| import enum | |
| import glob | |
| import json | |
| import pathlib | |
| import pickle | |
| import shutil | |
| import subprocess | |
| import time | |
| import uuid | |
| import boto3 |
OlderNewer