URLs are broken down as follow:
The google-auth-library
NPM package is used to manage accesses to most of the GCP APIs and resources. For example, a typical scenario is to acquire an OAuth2 access token or an ID token.
This document is an attempt to provide a different spin to the official Google documentation and explain how this library works and how to use it properly.
This file contains hidden or 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
/** | |
* Copyright (c) 2019-2020, Cloudless Consulting Pty Ltd. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. | |
*/ | |
const fs = require('fs') | |
const { join, sep } = require('path') |
This gist hosts random images used in other my posts on the web.
This file contains hidden or 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
<template> | |
<div :id="id" class="circle-loader" :class="style.class" :style="style.theme"> | |
<div class="circle-filler" v-if="!style.class.outline"></div> | |
<div class="draw" :class="style.checkmark.class"></div> | |
</div> | |
</template> | |
<script> | |
/** | |
* <checkmark :status="pending" :options="{ 'color':{ 'primary': 'blue', 'danger':'red' } }"></checkmark> |