Skip to content

Instantly share code, notes, and snippets.

View BurnedChris's full-sized avatar

Christopher Burns BurnedChris

View GitHub Profile
@BurnedChris
BurnedChris / .meshrc.yaml
Last active April 6, 2021 10:51
GraphQL Mesh Implementation of ideal-postcodes.co.uk
sources:
- name: idealPostcodes
handler:
openapi:
source: https://openapi.ideal-postcodes.dev/openapi.yaml
baseUrl: https://api.ideal-postcodes.co.uk/v1/
operationHeaders:
Authorization: IDEALPOSTCODES api_key="XXXXXXX"
serve:
port: 8912
@BurnedChris
BurnedChris / SEO.tsx
Created March 29, 2021 11:55
Redwood SEO tag
import { ReactElement } from 'react'
import { Helmet } from 'react-helmet'
export interface SEOProps {
/**
* If `true`, the button will show a spinner.
*/
title?: string
description?: string
}
@BurnedChris
BurnedChris / example.html
Created October 17, 2018 19:18 — forked from steve228uk/example.html
Deeplink Youtube
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<script type="text/javascript">
window.onload = function() {
@BurnedChris
BurnedChris / wallet-animation.js
Created September 3, 2018 19:02 — forked from wcandillon/wallet-animation.js
React Native Apple Wallet Animation
import React from "react";
import {
StyleSheet,
Text,
View,
ScrollView,
Animated,
SafeAreaView,
Dimensions
} from "react-native";