In ~/.ssh, create a config file with contents as follows:
User git
Hostname gitlab.com
IdentityFile ~/.ssh/gitlab
TCPKeepAlive yes
IdentitiesOnly yes
| (function(speed = 1.25) { | |
| // Set playback rate on a video element | |
| const setSpeed = (v) => { v.playbackRate = speed; }; | |
| // Listen for play events at document level (capturing phase) | |
| // so we catch videos added dynamically (e.g. virtualized lists) | |
| document.addEventListener('play', (e) => { | |
| if (e.target.tagName === 'VIDEO') setSpeed(e.target); | |
| }, true); | |
| const process = (video) => setSpeed(video); | |
| // Recursively find and process all videos in root, including Shadow DOM |
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
In ~/.ssh, create a config file with contents as follows:
User git
Hostname gitlab.com
IdentityFile ~/.ssh/gitlab
TCPKeepAlive yes
IdentitiesOnly yes
| /* | |
| { | |
| readonly INPUT_CHANGE: "INPUT_CHANGE"; | |
| readonly ERROR: "ERROR"; | |
| readonly DELETE_ERROR: "DELETE_ERROR"; | |
| } | |
| */ | |
| const FormReducerTypes = { | |
| INPUT_CHANGE: "INPUT_CHANGE", |
git rm -r --cached .idea/
Then git commit and push
| import { | |
| ApolloClient, | |
| InMemoryCache, | |
| HttpLink, | |
| ApolloLink, | |
| from, | |
| } from "@apollo/client"; | |
| import fetch from "cross-fetch"; | |
| import { setContext } from "@apollo/client/link/context"; |
| box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 12px 0px; |