Skip to content

Instantly share code, notes, and snippets.

View fuzenco's full-sized avatar

Fuzen Co. fuzenco

View GitHub Profile
@cadoo
cadoo / chatgpt-robots.txt
Created August 30, 2023 14:34
Disallowing GPTBot
User-agent: GPTBot
Disallow: /
@cadoo
cadoo / oklch.css
Created August 30, 2023 13:54
OKLCH colors with fallback
html {
--brandYellow: hsl(53.81 97% 58%);
background: var(--brandYellow);
}
@supports (color: oklch(0% 0 0)) {
html {
--brandYellow: oklch(91.91% 0.22 102.16);
}
}
@emeraldjava
emeraldjava / supabase-html-client.html
Created May 1, 2021 14:57
Running supabase js within a vanilla html page.
<html>
<header>
<title>Supabase</title>
<script src="https://cdn.jsdelivr.net/npm/@supabase/supabase-js"></script>
</header>
<body>
<h2>supabase</h2>
<script>
const { createClient } = supabase
supabase = createClient('https://dxxxxxz.supabase.co', 'api-key')
@jmsdnns
jmsdnns / jd-export.jsx
Last active May 1, 2024 21:14
Illustrator script—Exports CMYK, RGB, and Hex values for all the color swatches in a document. CMYK to RGB conversion using Adobe’s default US Web Coated SWOP2 to sRGB.
/**
* jd-export.jsx
* -------------
* Illustrator script—Exports CMYK, RGB, and Hex values for all the color
* swatches in a document. CMYK to RGB conversion using Adobe’s default US
* Web Coated SWOP2 to sRGB.
*
*
* LICENSE
* -------