- macOS 26.5, arm64
- Podman 5.8.2 (VM type: libkrun)
- OpenShell 0.0.46 (Homebrew)
- Claude Code v2.1.148
- Auth: Google Vertex AI (Application Default Credentials)
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 python3 | |
| """Manage a dev OpenShell environment built from source. | |
| Unified tool for gateway lifecycle, supervisor image builds, | |
| CLI symlinks, log management, and brew service coordination. | |
| """ | |
| import argparse | |
| import os | |
| import platform |
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 | |
| # | |
| # voice-transcribe.sh - Local microphone-to-text transcription | |
| # | |
| # Captures audio from the default microphone using ffmpeg (avfoundation), | |
| # detects speech segments via energy-based VAD, and transcribes each | |
| # utterance with whisper-cli. Transcripts are printed to stdout and | |
| # optionally appended to a file. | |
| # | |
| # Dependencies: ffmpeg, whisper-cli (brew install ffmpeg whisper-cpp) |
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
| # GENERATED BY cc-deck.build --target openshell - DO NOT EDIT MANUALLY | |
| # Regenerate with: claude /cc-deck.build --target openshell | |
| FROM ghcr.io/nvidia/openshell-community/sandboxes/base:latest | |
| ARG TARGETARCH | |
| # Layer: System packages (Ubuntu 24.04, apt-get) | |
| # Pre-installed: git, node v22, npm, python3, curl, make, claude, gh, uv | |
| USER root |
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
| use InfluxDB; | |
| use Data::Dumper; | |
| use REST::Client; | |
| use strict; | |
| # Script for migrating data from an outdated InfluxDB to one of the | |
| # latsest version. | |
| # Developed for migrating from an InfluxDB 0.7.0 to a 1.8.3 version in one go | |
| # ------------------------------------------------------------------------ |
- Raspberry Pi4 (4 GB) https://www.berrybase.de/raspberry-pi-co/raspberry-pi/boards/raspberry-pi-4-computer-modell-b-4gb-ram
- Raspberry Pi4 (8 GB) https://www.berrybase.de/raspberry-pi-co/raspberry-pi/boards/raspberry-pi-4-computer-modell-b-8gb-ram?c=319
- Netzteil (5.1V) https://www.berrybase.de/raspberry-pi-co/raspberry-pi/stromversorgung/netzteile-fuer-die-steckdose/offizielles-raspberry-pi-usb-c-netzteil-5-1v/3-0a-eu-schwarz
- Passive Cooling https://www.berrybase.de/neu/armor-geh-228-use-f-252-r-raspberry-pi-4-schwarz
- Rack https://www.amazon.de/gp/product/B07J9VMNBL/ref=ppx_yo_dt_b_search_asin_title?ie=UTF8&psc=1
- microSDXC card 64 GB https://www.berrybase.de/raspberry-pi-co/raspberry-pi/speicherkarten/sandisk-extreme-microsdxc-a2-uhs-i-u3-v30-speicherkarte-43-adapter-64gb
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 golang:1.13.10-buster AS builder | |
| ARG VERSION_RESTIC=v0.9.6 | |
| ARG VERSION_RCLONE=v1.51.0 | |
| WORKDIR /opt | |
| RUN apt-get update \ | |
| && apt-get install -y \ | |
| git \ |
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 | |
| set -e | |
| # Turn colors in this script off by setting the NO_COLOR variable in your | |
| # environment to any value: | |
| # | |
| # $ NO_COLOR=1 test.sh | |
| NO_COLOR=${NO_COLOR:-""} | |
| if [ -z "$NO_COLOR" ]; then |
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 | |
| set -e | |
| # Turn colors in this script off by setting the NO_COLOR variable in your | |
| # environment to any value: | |
| # | |
| # $ NO_COLOR=1 test.sh | |
| NO_COLOR=${NO_COLOR:-""} | |
| if [ -z "$NO_COLOR" ]; then |
$ kubectl get crd | grep crontab
crontabs.example.com 2019-04-05T21:33:36Z
$ kubectl get crontab
NAME AGE
new-tab 6m
old-tab 5m
$ kubectl get crontab old-tab -o yaml
NewerOlder