Skip to content

Instantly share code, notes, and snippets.

View nicolasdao's full-sized avatar

Nicolas Dao nicolasdao

View GitHub Profile
@nicolasdao
nicolasdao / http_protocol_and_codes.md
Last active May 2, 2024 02:14
HTTP protocol. Keywords: http code url

HTTP PROTOCOL & CODES

Table of contents

URL

URLs are broken down as follow:

@nicolasdao
nicolasdao / google-auth-library.md
Last active November 2, 2023 19:19
google-auth-library doc because I did not get the info I wanted out of the official doc. Keywords: google-auth-library gcp token security auth
@nicolasdao
nicolasdao / gcp_guide.md
Last active February 13, 2025 09:44
Google Cloud Platform guide. Keywords: gcp google cloud platform gcloud
@nicolasdao
nicolasdao / online_security_guide.md
Last active May 2, 2024 02:14
Online security guide. Keywords: security
@nicolasdao
nicolasdao / git.js
Created August 11, 2020 05:19
GitJS. Keywords: git
/**
* 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')
@nicolasdao
nicolasdao / random_images.md
Last active May 24, 2023 07:52
Random images. Keywords: image picture pic store random

This gist hosts random images used in other my posts on the web.

@nicolasdao
nicolasdao / chrome_extension_guide.md
Created July 8, 2020 07:16
Chrome extension. Keywords: chrome extension
@nicolasdao
nicolasdao / Checkmark.vue
Last active May 2, 2024 02:15
Checkmark animation in vue. Keywords: checkmark vtick tick v-tick vue vuejs
<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>
@nicolasdao
nicolasdao / typescript_guide.md
Last active May 2, 2024 02:15
Typescript guide. Keywords: typescript type script ts