Skip to content

Instantly share code, notes, and snippets.

View subtleGradient's full-sized avatar
👋

Tom Aylott subtleGradient

👋
View GitHub Profile
/// <reference types="@frens/reframe/micro-apps" />
import ui, { clientManifest, missingClientComponents as todo } from "@frens/reframe/Micro.ClientComponents"
import React from "react"
import ReactServerDOMServer, { type BundlerConfig } from "react-server-dom-webpack/server"
import { PassThrough } from "stream"
import { withAsyncIterableTimeout } from "../AsyncIterableTimeout"
type GenUI = (props: { ui: typeof ui; todo: typeof todo }) => React.ReactNode
@subtleGradient
subtleGradient / appify
Created November 11, 2010 16:03
appify. Create the simplest possible mac app from a shell script
#!/usr/bin/env bash
#
# url : https://gist.github.com/672684
# version : 2.0.2
# name : appify
# description : Create the simplest possible mac app from a shell script.
# usage : cat my-script.sh | appify MyApp
# platform : Mac OS X
# author : Thomas Aylott <oblivious@subtlegradient.com>
@subtleGradient
subtleGradient / ql-add.bun.tsx
Created June 26, 2024 00:30
Add Quicklook support for any random file extension
#!/usr/bin/env bun
import { $, BunFile, file } from "bun"
type CFBundleDocumentType = {
CFBundleTypeName: "Content"
CFBundleTypeRole: "QLGenerator"
LSItemContentTypes: ["public.data", "public.content", ...string[]]
LSTypeIsPackage: false
NSPersistentStoreTypeKey: "XML"
@subtleGradient
subtleGradient / hello.loo
Created June 25, 2024 03:00
Loose Lang Machine v0.2024.06.24 examples
#!/usr/bin/env lool
print Hello, World! or something like that
#!/bin/bash
function filter_until_hung() {
local match_string="$1"
shift
local cmd=("$@")
local tmpfifo=$(mktemp -u)
mkfifo "$tmpfifo"
"${cmd[@]}" >"$tmpfifo" 2>&1 &
@subtleGradient
subtleGradient / ql-add.bun.ts
Last active May 14, 2024 16:24
Bun.sh script to add a new LSItemContentType to ~/Library/QuickLook/QLStephen.qlgenerator/Contents/Info.plist for any file path
#!/usr/bin/env bun
import { $, BunFile, file } from "bun"
type CFBundleDocumentType = {
CFBundleTypeName: "Content"
CFBundleTypeRole: "QLGenerator"
LSItemContentTypes: ["public.data", "public.content", ...string[]]
LSTypeIsPackage: false
NSPersistentStoreTypeKey: "XML"
@subtleGradient
subtleGradient / hotness.ts
Last active May 11, 2024 03:49
Hot reloading disposal events
/*
MIT No Attribution
Copyright 2024 Thomas Aylott
Permission is hereby granted, free of charge, to any person obtaining a copy of this
software and associated documentation files (the "Software"), to deal in the Software
without restriction, including without limitation the rights to use, copy, modify,
merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so.
@subtleGradient
subtleGradient / importUMD.js
Last active May 6, 2024 10:41
import(UMD)
export default async (url, module = {exports:{}}) =>
(Function('module', 'exports', await (await fetch(url)).text()).call(module, module, module.exports), module).exports
/* eslint-disable @typescript-eslint/no-unused-vars */
"use client"
import { Suspense, use, useMemo } from "react"
import { Text } from "react-native"
import { waitForTransactionReceipt } from "src/lib/viem"
import { PromisedValue } from "src/utils/type-helpers"
import { Address } from "viem"
type TransactionReceipt = PromisedValue<ReturnType<typeof waitForTransactionReceipt>>
@subtleGradient
subtleGradient / CurrentServerTime.server.tsx
Last active March 21, 2024 01:30
example of what a re-renderable React server component could maybe look like?
"use server"
import { $ } from "bun"
export async function* CurrentServerTime() {
while (true) {
yield <html.input key="ONLY ME!" readOnly value={await $`time`.text()} />
await sleep(1_234)
}
}