Screenshot assets for steipete/CodexBar#2345
This file contains hidden or 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 | |
| # ===================================================================== | |
| # Claude Code "AI Doomer" spinner words | |
| # Replaces Claude Code's whimsical thinking words with what the AI is | |
| # ACTUALLY doing. 100% local, reversible. | |
| # | |
| # Install: | |
| # curl -fsSL https://gist.githubusercontent.com/lg/c404780d3f9bd4140c03fbe2f24eff9e/raw/claude-doomer-spinner.sh | bash | |
| # Undo: restore the timestamped ~/.claude/settings.json.bak.* it | |
| # prints, or delete the "spinnerVerbs" key from that file. |
Run Fadeleke57/jimmy-proxy — an OpenAI-compatible proxy for ChatJimmy — in a container.
The Dockerfile fetches proxy.py from upstream (pinned to a commit SHA); nothing is vendored here.
docker build -t jimmy-proxy .
This file contains hidden or 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
| #!/bin/bash | |
| # | |
| # Make sure to have a .env with `DISCORD_TOKEN=your_token_here` in the same directory as this script. | |
| # Get your token as per: https://github.com/Tyrrrz/DiscordChatExporter/blob/master/.docs/Token-and-IDs.md | |
| dce() { docker run -it --rm --env-file .env --volume "$(pwd)/out":/out tyrrrz/discordchatexporter:latest "$@"; } | |
| ffmpeg() { docker run --rm --volume "$(pwd)/out":/out lscr.io/linuxserver/ffmpeg:latest "$@"; } | |
| bun() { docker run -i --rm --volume "$(pwd)":/home/bun/app oven/bun:latest "$@"; } | |
| jq() { docker run -i --rm --volume "$(pwd)":/docker-files -w /docker-files badouralix/curl-jq jq "$@"; } |
This file contains hidden or 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
| <?xml version="1.0" encoding="ASCII"?> | |
| <xsd:schema targetNamespace="urn:schemas-microsoft-com:unattend" xmlns="urn:schemas-microsoft-com:unattend" | |
| xmlns:xsd="http://www.w3.org/2001/XMLSchema" | |
| elementFormDefault="qualified" attributeFormDefault="unqualified"> | |
| <!--Root Elements--> | |
| <xsd:element name="unattend"> | |
| <xsd:annotation> | |
| <xsd:documentation>Unattend</xsd:documentation> | |
| </xsd:annotation> |
This file contains hidden or 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
| function runcheck() { | |
| while true; do curl -s "$1" | pup 'script#apollo-data json{}' | jq '.[] | .text | fromjson | .[] | select(.__typename=="Seat" and .available==true and .type != "Wheelchair" and .type != "Companion") | .column' | awk '{if (p == $1 - 1) {print "Found: " $1 " and " p}; p = $1}' | grep Found && say "go buy tickets $2"; sleep 5; done | |
| } | |
| runcheck "https://www.amctheatres.com/movies/oppenheimer-66956/showtimes/oppenheimer-66956/2023-07-23/amc-metreon-16/all/111398221" "tomorrow 2:30pm" |
This file contains hidden or 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
| { | |
| "recommendations": [ | |
| "spadin.memento-inputs" | |
| ] | |
| } |
This file contains hidden or 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
| FROM ubuntu:jammy as builder | |
| ARG FIREFOX_REF=FIREFOX_109_0_1_RELEASE | |
| # download firefox and its build dependencies | |
| WORKDIR /usr/local/src/firefox | |
| ARG DEBIAN_FRONTEND="noninteractive" | |
| RUN apt update && apt install --no-install-recommends -y mercurial python3-pip build-essential \ | |
| binutils-aarch64-linux-gnu curl rsync | |
| RUN hg --config format.generaldelta=true init mozilla-unified \ | |
| && echo "\n[paths]\ndefault = https://hg.mozilla.org/mozilla-unified\n\n[format]\nmaxchainlen = 10000\n" >> mozilla-unified/.hg/hgrc \ |
This file contains hidden or 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
| apiVersion: skaffold/v2beta28 | |
| kind: Config | |
| metadata: | |
| name: abcdef | |
| build: | |
| artifacts: | |
| - image: ghcr.io/lg/abcdef | |
| custom: | |
| buildCommand: | # build for multiple platforms | |
| if ! docker buildx inspect skaffold-builder >/dev/null 2>&1; then docker buildx create --name skaffold-builder --platform $PLATFORMS; fi |
This file contains hidden or 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 * as esbuild from "esbuild-wasm" | |
| import esbuildWasmUrl from "esbuild-wasm/esbuild.wasm?url" | |
| import Path from "path" | |
| let isEsbuildWasmInitialized = false | |
| export const tsToJs = async (tree: Record<string, string>) => { | |
| if (!isEsbuildWasmInitialized) { | |
| await esbuild.initialize({ wasmURL: esbuildWasmUrl }) | |
| isEsbuildWasmInitialized = true |
NewerOlder