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:
I hereby claim:
To claim this, I am signing this object:
apiVersion: apps/v1beta2 | |
kind: Deployment | |
metadata: | |
name: {{ include "fullname" . }} | |
namespace: default | |
labels: | |
app: {{ include "name" . }} | |
spec: | |
replicas: {{ .Values.replicaCount }} | |
selector: |
const fetch = require("isomorphic-unfetch"); | |
const FormData = require("form-data"); | |
class ListingAPI { | |
async addListingImage(args) { | |
const fileData = ""; | |
const chunk; | |
const file = await args.file; |
using System.IO; | |
namespace VestaProperty.Core.File | |
{ | |
public class File | |
{ | |
public File() | |
{ | |
this.Content = (Stream) new MemoryStream(); | |
} |
- name: "buildkite/puppeteer:v1.11.0" | |
args: ["npm", "run", "test:visual"] | |
env: | |
- "PERCY_BRANCH=$BRANCH_NAME" | |
- "PERCY_COMMIT=$COMMIT_SHA" |
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>; | |
} |
The purpose of this document is to establish standards for GraphQL services types ensuring consistency across our graph.
using System; | |
using System.Collections.Generic; | |
interface IShapeCalculator | |
{ | |
void CalculateAndDisplayArea(); | |
} | |
class CircleCalculator : IShapeCalculator | |
{ |