gpg --export [email protected] > my_key.pub
The file can then be shared to other people.
gpg --export [email protected] > my_key.pub
The file can then be shared to other people.
| import React from 'react'; | |
| import PropTypes from 'prop-types'; | |
| import { Divider, Container, NodesWrapper, Pusher } from './styles'; | |
| export default function HorizontalFlex(props) { | |
| const { hideDivider, dividerMargin, leftNodes, rightNodes } = props; | |
| return ( | |
| <Container> | |
| {!hideDivider && ( |
| # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
| # for examples | |
| # We use preexec and precmd hook functions for Bash | |
| # If you have anything that's using the Debug Trap or PROMPT_COMMAND | |
| # change it to use preexec or precmd | |
| # See also https://github.com/rcaloras/bash-preexec | |
| # If not running interactively, don't do anything | |
| case $- in |
| const path = require('path'); | |
| const http = require('http'); | |
| const get = require('lodash.get'); | |
| const { typeDefs: scalarTypeDefs, resolvers: scalarResolvers } = require('graphql-scalars'); | |
| const { fileLoader, mergeTypes, mergeResolvers } = require('merge-graphql-schemas'); | |
| const { IsAuthenticatedDirective } = require('graphql-auth-directives'); | |
| const { | |
| ApolloServer, ApolloError, AuthenticationError, UserInputError, | |
| } = require('apollo-server-express'); | |
| // const log = require('../services/logger'); |