Installer still requires Rosetta, while Native Access and NTKDaemon work on Apple Silicon.
Patch installer package, adding <options hostArchitectures="x86_64,arm64"/> and removing check in installation script.
| { | |
| "$id": "http://catalog.works/schemas/2022022.json", | |
| "type": "object", | |
| "title": "catalog-20220222", | |
| "description": "This schema defined version 20220222 of the Catalog Metadata Schema", | |
| "required": [ | |
| "version", | |
| "title", | |
| "artist", | |
| "duration", |
| export interface PaddlePassthrough { | |
| userId: string; // the id of the user in our supabase database | |
| } | |
| export enum PaddleSubscriptionStatus { | |
| Active = 'active', | |
| Trialing = 'trialing', // at the moment we don't support trial phases | |
| PastDue = 'past_due', // Payment is pending, we should inform he user that he needs to update his payment method | |
| Paused = 'paused', // at the moment we don't support pausing subscriptions | |
| Cancelled = 'deleted', |
A typical use-case on web for maintaining React State is your URL's query parameters. It lets users refresh pages & share links without losing their spot in your app.
URL-as-state is especially useful on Next.js, since next/router will re-render your page with shallow navigation.
This gist lets you leverage the power of URL-as-state, while providing a fallback to React state for usage in React Native apps.
It's essentially a replacement for useState.
To add the snippets:
Currently covered:
Fauna doesn't (yet?) provide guaranteed expiration/TTL for ABAC tokens, so we need to implement it ourselves if we care about it.
3 javascript functions, each of which can be imported into your project or run from the command-line
using node path/to/script.js arg1 arg2 ... argN:
deploy-schema.js: a javascript function for creating supporting collections and indexes in your Fauna database.| import { ApolloServer, gql } from 'apollo-server-micro'; | |
| const typeDefs = gql` | |
| type Query { | |
| sayHello: String | |
| } | |
| `; | |
| const resolvers = { | |
| Query: { |
This document will walk through creating a FaunaDB docker instance using the publicly available docker image. Three different types of deployments will be illustrated.
Finally, we will wrap up with some more general documentation around the various options available when using the public docker image.
Here is an updated list of the colors that are currently implemented with a name.
To using colors on discord.js, this is a typedef Colors, Colors.Aqua to get the Aqua color.
| Name | Int value | Hex Code |
|---|---|---|
Default |
0 | #000000 |
Aqua |
1752220 | #1ABC9C |
DarkAqua |
1146986 | #11806A |
Green |
5763719 | #57F287 |
DarkGreen |
2067276 | #1F8B4C |
In your command-line run the following commands:
brew doctorbrew update