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
/* Pushes issue to github repository | |
* | |
* Original: https://medium.com/@knidarkness/creating-a-github-app-with-node-js-3bda731d45b9 | |
* Reference: https://github.com/octokit/request.js/#authentication | |
* Reporistories: https://github.com/octokit/app.js/ | |
* Reporistories: https://github.com/octokit/auth-app.js/ | |
* | |
* After installing deps and having .env file; this file may be run with: $ node auth.mjs | |
*/ |
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
.particle { | |
display: inline-block; | |
position: relative; padding: 2em 5em 2em 1em; | |
overflow: hidden; | |
} .particle::after { content: ""; /* red ball */ | |
display: block; border-radius: 100%; width: 0; height: 0; padding: 2em; | |
position: absolute; top: calc(50% - 2em); right: 0; z-index: 2; |
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
/** | |
* https://github.com/adamAfro | |
* test | |
*/ | |
export default class FileCaller { | |
/** | |
* gets file from web or indexed db | |
*/ | |
static getAsString(path, version = 1) { |
NewerOlder