0.3*R + 0.59*G + 0.11*B
retro halftone images
https://www.youtube.com/watch?v=zH6NCsS-99A convert to cmyk dots hard mix paper screen white fill screen circles c m y k clipping masks
embedded Google map
Boggle scoring
# of letters | score |
---|---|
3 or 4 | 1 |
5 | 2 |
6 | 3 |
7 | 5 |
8 or more | 11 |
find last item in a row in a Google Sheet
=index(A1:n1;1;counta(A1:n1))
where n
is the last column to contain any data get total size of Amazon S3 bucket or folder
aws s3 ls --summarize --human-readable --recursive s3://bucket/path/ | grep "Total Size" >> list.txt;
prevent WordPress from adding new themes with core updates
add to wp-config
define('CORE_UPGRADE_SKIP_NEW_BUNDLED', true);
Dreo fan manual
circles of 2nds and 3rds
5ths | 3rds | 2nds |
---|---|---|
IV | vi | viiº |
viiº | IV | vi |
iii | ii | V |
i | viiº | IV |
ii | V | iii |
V | iii | ii |
I | I | I |
1 | 4 | 5 |
---|---|---|
C | F | G |
C | Bº | Dm |
C | Am | Em |
light and dark theme support
html
<select name="theme" id="theme"> <option value="system">System</option> <option value="brightlight">Light</option> <option value="darknight">Dark</option> </select>
css
:root { --theme: brightlight; color-scheme: light; } @media (prefers-color-scheme: dark) { --theme: darknight; color-scheme: dark; } :root:has([value="brightlight"]:checked) { --theme: brightlight; color-scheme: light;} :root:has([value="darknight"]:checked) { --theme: darknight; color-scheme: dark; } body { background: hsl(0 0% 90%); color: hsl(0 0% 15%); h1, h2: hsl(0 0%…