# 11L WebRTC Profiler and Tester
Download files to a folder, then run:
npm i -g http-server
http-server
Then click the link.
# 11L WebRTC Profiler and Tester
Download files to a folder, then run:
npm i -g http-server
http-server
Then click the link.
import fs from 'fs/promises' | |
const costPerMillionTokens = { | |
'gpt-4.1': 8, | |
'o4-mini': 4.4, | |
'o3-mini': 4.4, | |
}; | |
async function run() { | |
console.log(`Starting analysis of JSON files in the current directory... [${process.cwd()}]`); |
* * * * * /home/{...PATH TO SCRIPT}/micro-manage.sh |
import { | |
HorizontalAlignment, | |
VerticalAlignment, | |
Font, | |
LayoutUtils, | |
LedMatrix, | |
GpioMapping, | |
} from "rpi-led-matrix"; | |
const wait = (t: number) => new Promise((ok) => setTimeout(ok, t)); |
<!-- /collections/:id --> | |
<script> | |
import {unSavedResponses} from './stores.js'; | |
let onSubmit; | |
let text = ''; |
<html> | |
<head> | |
</head> | |
<body> | |
<p class="verse"></p> | |
</body> |
Error: Unexpected case
at create (/Users/user/Projects/joe-docs/node_modules/lib0/dist/error-55a9a8c8.cjs:14:21)
at Object.unexpectedCase (/Users/user/Projects/joe-docs/node_modules/lib0/dist/error-55a9a8c8.cjs:31:9)
at findIndexSS (/Users/user/Projects/joe-docs/node_modules/yjs/dist/yjs.cjs:1659:15)
at findIndexCleanStart (/Users/user/Projects/joe-docs/node_modules/yjs/dist/yjs.cjs:1700:17)
at getItemCleanStart (/Users/user/Projects/joe-docs/node_modules/yjs/dist/yjs.cjs:1721:18)
at /Users/user/Projects/joe-docs/node_modules/yjs/dist/yjs.cjs:2204:19
at iterateStructs (/Users/user/Projects/joe-docs/node_modules/yjs/dist/yjs.cjs:1786:5)
[ | |
10, | |
4, | |
193, | |
195, | |
168, | |
139, | |
6, | |
0, | |
1, |
I hereby claim:
To claim this, I am signing this object:
import qualified Data.Map as Map | |
import Data.Maybe (catMaybes) | |
import Control.Monad (forever) | |
import Control.Concurrent (threadDelay) | |
import System.Console.ANSI (clearScreen) | |
data Cell = Head | Tail | Wire | |
deriving (Eq, Show) | |
type World = Map.Map (Int, Int) Cell |