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
export IMAGE_NAME="your_image_name" | |
export USER="your_user" | |
export ADDRESS="your_address" | |
export KEY_FILE="your_key_file" |
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
import { decode } from "blurhash" | |
const cache: Record<string, string> = {} | |
export function blurHashToDataURL(hash: string | undefined): string | undefined { | |
if (!hash) return undefined | |
const cachedBlurDataURL = cache[hash] | |
if(cachedBlurDataURL) { |
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
{"version":1,"resource":"file:///Users/javi/projects/frontend-portal-react/src/utils/helpers.js","entries":[{"id":"LA29.js","source":"Fix all ESLint auto-fixable problems","timestamp":1655907016664},{"id":"Sf7t.js","timestamp":1655927885109},{"id":"U6Mz.js","timestamp":1655927951063},{"id":"C1At.js","timestamp":1655927969013},{"id":"2ood.js","timestamp":1655927993963},{"id":"Z0lw.js","source":"Fix all ESLint auto-fixable problems","timestamp":1655927997728},{"id":"W4sH.js","timestamp":1657035718576},{"id":"957w.js","timestamp":1657135993497},{"id":"63ab.js","source":"Fix all ESLint auto-fixable problems","timestamp":1657136891477},{"id":"TQcL.js","timestamp":1657136899995},{"id":"6wRL.js","source":"Workspace Edit","timestamp":1657180713962},{"id":"5bXV.js","timestamp":1657193235152},{"id":"Jfve.js","source":"Fix all ESLint auto-fixable problems","timestamp":1657195227903},{"id":"j0me.js","timestamp":1657205650041},{"id":"Z9r4.js","source":"Fix all fixable ESLint issues","timestamp":1657918856240},{"id":"li3Z. |
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
{ | |
"extends": "stylelint-config-sass-guidelines", | |
"plugins": ["stylelint-scss"], | |
"rules": { | |
"dollar-variable-pattern": null, | |
"at-rule-no-unknown": null, | |
"scss/at-rule-no-unknown": true, | |
"indentation": 2, | |
"number-leading-zero": null, | |
"max-nesting-depth": 10, |