The purpose of this document is to establish standards for GraphQL services types ensuring consistency across our graph.
This file contains 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
using System; | |
using System.Collections.Generic; | |
interface IShapeCalculator | |
{ | |
void CalculateAndDisplayArea(); | |
} | |
class CircleCalculator : IShapeCalculator | |
{ |
This file contains 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 React from "react"; | |
import { ICurrentUser } from "../../../types"; | |
import { IUserProfile } from "../../../userProfile/types"; | |
interface ICurrentUserContextProps { | |
currentUser?: ICurrentUser; | |
profile?: IUserProfile; | |
accessToken: () => Promise<string | undefined>; | |
refetchCurrentUser: () => Promise<void>; | |
} |
This file contains 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
- name: "buildkite/puppeteer:v1.11.0" | |
args: ["npm", "run", "test:visual"] | |
env: | |
- "PERCY_BRANCH=$BRANCH_NAME" | |
- "PERCY_COMMIT=$COMMIT_SHA" |
This file contains 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
using System.IO; | |
namespace VestaProperty.Core.File | |
{ | |
public class File | |
{ | |
public File() | |
{ | |
this.Content = (Stream) new MemoryStream(); | |
} |
This file contains 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 fetch = require("isomorphic-unfetch"); | |
const FormData = require("form-data"); | |
class ListingAPI { | |
async addListingImage(args) { | |
const fileData = ""; | |
const chunk; | |
const file = await args.file; |
This file contains 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
apiVersion: apps/v1beta2 | |
kind: Deployment | |
metadata: | |
name: {{ include "fullname" . }} | |
namespace: default | |
labels: | |
app: {{ include "name" . }} | |
spec: | |
replicas: {{ .Values.replicaCount }} | |
selector: |
I hereby claim:
- I am timreynolds on github.
- I am timreynolds (https://keybase.io/timreynolds) on keybase.
- I have a public key ASB5F_W1Ab7Ah37e-cVI32GNNvXZnulAQY1NWRu1Mg7WdQo
To claim this, I am signing this object:
This file contains 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
<Head> | |
<script dangerouslySetInnerHTML={{ __html: ` | |
var analytics=window.analytics=window.analytics||[];if(!analytics.initialize)if(analytics.invoked)window.console&&console.error&&console.error("Segment snippet included twice.");else{analytics.invoked=!0;analytics.methods=["trackSubmit","trackClick","trackLink","trackForm","pageview","identify","reset","group","track","ready","alias","debug","page","once","off","on"];analytics.factory=function(t){return function(){var e=Array.prototype.slice.call(arguments);e.unshift(t);analytics.push(e);return analytics}};for(var t=0;t<analytics.methods.length;t++){var e=analytics.methods[t];analytics[e]=analytics.factory(e)}analytics.load=function(t){var e=document.createElement("script");e.type="text/javascript";e.async=!0;e.src=("https:"===document.location.protocol?"https://":"http://")+"cdn.segment.com/analytics.js/v1/"+t+"/analytics.min.js";var n=document.getElementsByTagName("script")[0];n.parentNode.insertBefore(e,n)};analytics.SNIPPET_VERSION="4.0.0"; | |
This file contains 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
public const string FailedMessageResponderNotResponding = "No failed message response defined for {0}"; | |
public const string FailedMessageResponderResponding = "Creating {0} for failed message {1}"; |
NewerOlder