All 140 HTML colors as JSON objects with fields:
- name
- hex
- rgb
- families
import { createHash } from "crypto"; | |
import fs from "fs"; | |
import fsp from "fs/promises"; | |
import path from "path"; | |
import https from "https"; | |
import { PassThrough } from "stream"; | |
import type { Readable } from "stream"; | |
import type { LoaderFunction } from "remix"; | |
import sharp from "sharp"; | |
import type { Request as NodeRequest } from "@remix-run/node"; |
/* | |
<https://stackoverflow.com/questions/40296831/is-it-possible-to-force-a-copy-of-a-protected-google-doc> | |
NOTE - 2021-05-24 | |
----------------- | |
The script below isn't the fastest way to copy-and-paste from a protected | |
Google Doc. Before trying it, I'd suggest following MikoFrosty's advice from | |
the comments: |
# GET VERSION | |
npm -v (or --version) | |
# GET HELP | |
npm help | |
npm | |
# CREATE PACKAGE.JSON | |
npm init | |
npm init -y (or --yes) |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
<canvas id="canvas"> Sorry, no canvas support here :( </canvas> | |
<div id="start"> START </div> | |
<div id="info"> Double click anywhere = create/destroy point </div> | |
<!-- Bezier curve simulator | |
- Click "Start to start/stop/restart the animation" | |
- Double clicking anywhere else will allow you to add new points to the curve. | |
*, *:after, *:before { | |
margin:0; | |
padding:0; | |
box-sizing:border-box; | |
-webkit-box-sizing:border-box; | |
-moz-box-sizing:border-box; | |
-webkit-font-smoothing:antialiased; | |
-moz-font-smoothing:antialiased; | |
-o-font-smoothing:antialiased; | |
font-smoothing:antialiased; |