A Pen by Thomas Reggi on CodePen.
🌺
- GitHub Staff
- https://reggi.com
- @[email protected]
- in/thomasreggi
This file contains 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 {clientImport} from '../main.ts' | |
const e = await clientImport(import.meta.url, "../examples/web_components/content_warning.ts") | |
console.log(e) |
This file contains 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 { JSX, ComponentChild, VNode } from "https://esm.sh/v96/[email protected]" | |
import render from 'preact-render-to-string' | |
// you need a way to ignore the type error for an async component | |
const asyncComponent = (component: (props: any) => Promise<JSX.Element>): (props: any) => JSX.Element => { | |
return component as any | |
} | |
const Alice = asyncComponent(async (props: { children: ComponentChild}) => { | |
const x = await Promise.resolve('Alice') |
This file contains 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 type ElementEvents = | |
"animationcancel" | | |
"animationend" | | |
"animationiteration" | | |
"animationstart" | | |
"afterscriptexecute" | | |
"auxclick" | | |
"beforescriptexecute" | | |
"blur" | | |
"click" | |
This file contains 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 { useContext } from 'preact/hooks'; | |
import { createContext, Fragment, JSX } from 'preact'; | |
import { HandlerContext, Handlers, PageProps } from "$fresh/server.ts"; | |
const RequestContext = createContext(new Request('http://localhost:8000/')); | |
const useRequest = () => useContext(RequestContext); | |
export const passRequestHandler: Handlers<Request> = { | |
GET(request, ctx) { |
This file contains 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 { Plugin } from "$fresh/server.ts"; | |
const sources = [ | |
"https://raw.githubusercontent.com/bigskysoftware/htmx/dev/src/htmx.js", | |
"https://raw.githubusercontent.com/bigskysoftware/htmx/dev/src/ext/head-support.js" | |
] | |
export default function htmx(): Plugin { | |
const main = `data:application/javascript,${sources.map(s => `import "${s}";`).join('')} export default () => {}` | |
return { |
This file contains 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
/// <reference no-default-lib="true" /> | |
/// <reference lib="dom" /> | |
/// <reference lib="dom.asynciterable" /> | |
/// <reference lib="deno.ns" /> | |
/// <reference lib="deno.unstable" /> | |
import { serve, ConnInfo } from "https://deno.land/[email protected]/http/server.ts"; | |
import { InnerRenderFunction, RenderContext, ServerContext } from "$fresh/server.ts"; | |
import manifest from "./fresh.gen.ts"; |
This file contains 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
"editor.gotoLocation.multipleDefinitions": "goto", | |
"editor.gotoLocation.multipleTypeDefinitions": "goto", | |
"editor.gotoLocation.multipleDeclarations": "goto", | |
"editor.gotoLocation.multipleImplementations": "goto", | |
"editor.gotoLocation.multipleReferences": "goto", |
This file contains 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
#!/usr/bin/env bash | |
BASEDIR=$(dirname "$0") | |
function fileName () { | |
echo $(basename ${1%.*}) | |
} | |
# define variables | |
FILES="$(find "$BASEDIR" ! -name 'index.sh' -type f -name '*.sh' -print | sort -t '\0' -n)" | |
TUSAGE="\\n" |
This file contains 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
javascript:console.clear()%0Aconsole.log('Starting Google Voice capture bookmarklet')%3B%0A%0Alet buttons %3D %7B%0A '1'%3A document.querySelector(%60%5Baria-label%3D"1"%5D%60)%2C%0A '2'%3A document.querySelector(%60%5Baria-label%3D"'2' 'a' 'b' 'c'"%5D%60)%2C%0A '3'%3A document.querySelector(%60%5Baria-label%3D"'3' 'd' 'e' 'f'"%5D%60)%2C%0A '4'%3A document.querySelector(%60%5Baria-label%3D"'4' 'g' 'h' 'i'"%5D%60)%2C%0A '5'%3A document.querySelector(%60%5Baria-label%3D"'5' 'j' 'k' 'l'"%5D%60)%2C%0A '6'%3A document.querySelector(%60%5Baria-label%3D"'6' 'm' 'n' 'o'"%5D%60)%2C%0A '7'%3A document.querySelector(%60%5Baria-label%3D"'7' 'p' 'q' 'r' 's'"%5D%60)%2C%0A '8'%3A document.querySelector(%60%5Baria-label%3D"'8' 't' 'u' 'v'"%5D%60)%2C%0A '9'%3A document.querySelector(%60%5Baria-label%3D"'9' 'w' 'x' 'y' 'z'"%5D%60)%2C%0A '0'%3A document.querySelector(%60%5Baria-label%3D"'0'"%5D%60)%0A%7D%0A%0Alet recording %3D ""%0Aconsole.log(%60Recording is "%24%7Brecording%7D"%60)%0A%0Afunction |