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
# settings we’re about to change | |
osascript -e 'tell application "System Preferences" to quit' | |
# Ask for the administrator password upfront | |
sudo -v | |
# Keep-alive: update existing `sudo` time stamp until `.macos` has finished | |
while true; do | |
sudo -n true | |
sleep 60 | |
kill -0 "$$" || exit |
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
{ | |
resolve: `gatsby-plugin-gatsby-cloud`, // `gatsby-plugin-gatsby-cloud` | |
options: { | |
allPageHeaders: [ | |
'Strict-Transport-Security: max-age=31536000; includeSubDomains; preload', | |
], | |
headers: { | |
'/*': ['Cache-Control: public, max-age=31536000, immutable'], | |
'static/*': ['Cache-Control: public, max-age=31536000, immutable'], | |
}, |
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
// export const onInitialClientRender = () => { | |
// // wait to init GTM until after React has hydrated in this lifecycle | |
// const dataLayer = window.dataLayer || [] | |
// dataLayer.push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' }) | |
// } | |
function initGTM() { | |
if (window.isGTMLoaded) { | |
return false | |
} |
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' | |
export const onRenderBody = ({ setHeadComponents }) => { | |
setHeadComponents([ | |
<link | |
rel="preconnect" | |
key="dns-prefetch-google-tag-manager" | |
href="https://www.googletagmanager.com" | |
as="script" | |
/>, |
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 { sample } from 'lodash'; | |
import React from 'react'; | |
import cookie from 'cookie'; | |
import Layout from '../components/layout'; | |
import HomeV1 from '../components/scenes/home/v1'; | |
import HomeV2 from '../components/scenes/home/v2'; | |
const EXPERIMENT_OPTIONS = { | |
v1: HomeV1, | |
v2: HomeV2, |
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
// "@keystone-next/types": "^22.0.0", | |
// "@keystone-next/keystone": "^22.0.0" | |
// The actual lib | |
// utils/keystone/cascadeDelete.ts | |
import { ListHooks } from "@keystone-next/types" | |
import { BaseGeneratedListTypes } from "@keystone-next/types/src/utils" | |
type BeforeDeleteType = Exclude< | |
ListHooks<BaseGeneratedListTypes>["beforeDelete"], |
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
#!/bin/bash | |
# This script will download the contents of a GitHub repo | |
# and place them in a local directory. | |
# | |
# Usage: | |
# download-repo.sh <repo> <output-path> <nested-path> <branch-name> | |
# | |
# Example: | |
# download-repo.sh wattenberger/kumiko ./kumiko-assets master public/assets |
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 styled from "styled-components"; | |
import { storiesOf } from "@storybook/react"; | |
import { text, withKnobs } from "@storybook/addon-knobs"; | |
import { mobileViewport, addFullWidthWrapperDecorator } from "../utils"; | |
import { Instagram } from "../../src/components/shared/Instagram"; | |
/** Important pieces here. Images located in ../static/ */ | |
import Instagram1 from "gatsby-image-fluid!../static/instagram_1.jpg"; |
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
/* eslint-disable jsx-a11y/rule-name */ | |
const path = require("path") | |
require("dotenv").config({ | |
path: `../.env.${process.env.NODE_ENV}`, | |
}) | |
module.exports = { | |
siteMetadata: { |
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 { onError } from 'apollo-link-error'; | |
import { Observable } from 'apollo-link'; | |
import { buildAuthHeader } from 'utils/requests'; | |
import { getProvider as getGlobalProvider } from 'GlobalState'; | |
let isFetchingToken = false; | |
let tokenSubscribers = []; | |
function subscribeTokenRefresh(cb) { | |
tokenSubscribers.push(cb); |
NewerOlder