Skip to content

Instantly share code, notes, and snippets.

View productdevbook's full-sized avatar
🖥️
Learning

Wind productdevbook

🖥️
Learning
View GitHub Profile
@productdevbook
productdevbook / jwtRS256.sh
Created June 22, 2021 08:58 — forked from Holger-Will/jwtRS256.sh
generate public private key pair (RSA RS256) for use with koa-jwt jasonwebtoken etc.
# generate private key
openssl genrsa -out private.pem 2048
# extatract public key from it
openssl rsa -in private.pem -pubout > public.pem
<template>
<button
class="focus:outline-none inline-flex relative items-center font-medium transition duration-150 ease-in-out border"
:disabled="disabled"
:class="[colorObj, curserObj, centerObj, sizeObj, textObj]"
v-bind="$attrs"
v-on="$listeners"
>
<template v-if="loading">
<svg
@productdevbook
productdevbook / perf-diagnostics.css
Created January 15, 2021 18:45 — forked from tkadlec/perf-diagnostics.css
CSS used to highlight potential performance issues
:root {
--violation-color: red; /* used for clear issues */
--warning-color: orange; /* used for potential issues we should look into */
}
/* IMAGES */
/*
* Lazy-Loaded Images Check
* ====