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
{ | |
"sync.gist": "bfa0dc20902c1178b64af793a8d3437d", | |
"yaml.schemas": { | |
"file:///home/navaneeth/.vscode/extensions/atlassian.atlascode-2.8.5/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml" | |
}, | |
"workbench.sideBar.location": "right", | |
"editor.renderWhitespace": "all", | |
"window.menuBarVisibility": "toggle", | |
"workbench.startupEditor": "newUntitledFile", | |
"[javascriptreact]": { |
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
async function fetchImages(url, name){ | |
await fetch(url).then( async(res) => { | |
const blob = await res.blob(); | |
const newBlob = new Blob([blob]); | |
const blobUrl = window.URL.createObjectURL(newBlob); | |
const link = document.createElement('a'); |
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
/** | |
* Generate an array with specific size of number | |
* @param n {Number} | |
* @returns {Array} | |
*/ | |
function getArrayofSize(n) { | |
return Array.from(new Array(n), (x, i) => i + 1) | |
} |
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
{"lastUpload":"2021-08-03T16:06:09.505Z","extensionVersion":"v3.4.3"} |
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://revealjs.com --> Slideshow js framework, for better presentaions | |
http://timeline.knightlab.com/ --> Timeline presentation | |
https://www.papaparse.com --> CSV parser | |
https://github.com/akfish/node-vibrant/ --> Get prominant color from image | |
https://github.com/sorrycc/awesome-javascript |