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 .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 .| #!/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 "$@"; } |
| <?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> |
| 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" |
| { | |
| "recommendations": [ | |
| "spadin.memento-inputs" | |
| ] | |
| } |
| 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 \ |
| 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 |
| 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 |
| # make sure to change: | |
| # '2021-12-25' to the date you're looking for, and | |
| # '45.000000; -75.11111' to your latitude and longitude | |
| # '100' to the amount of km thats max for your roadtrip out to get tested | |
| # curl command taken from https://shoppersdrugmart.medmeapp.com/schedule/groups/Covid-19-Rapid-Screening (and removed the x-pharmacyid header) | |
| curl 'https://gql.medscheck.medmeapp.com/graphql' \ | |
| -X 'POST' \ | |
| -H 'Content-Type: application/json' \ | |
| -H 'Accept: */*' \ |