Skip to content

Instantly share code, notes, and snippets.

View ai2ys's full-sized avatar
🎯
Focusing

Sylvia Schmitt ai2ys

🎯
Focusing
View GitHub Profile
@ai2ys
ai2ys / codeburn.md
Created August 5, 2026 15:13
Codeburn - Agent Usage

Running the CodeBurn Web Dashboard in an sbx Sandbox

Repository: https://github.com/AgentSeal/codeburn

By default, codeburn web only listens on 127.0.0.1, which makes the dashboard inaccessible from outside the sandbox. Using socat, you can forward the port to 0.0.0.0 and then expose it through sbx.

1. Start CodeBurn

codeburn web --no-open --port 4747
@ai2ys
ai2ys / issues-agents.md
Last active August 5, 2026 16:18
Issues - Pi, herdr, VSCode

New Line Issue - Pi, herdr, VSCode

When using pi in herdr from the VSCode terminal on WSL2 the shift+enter for a new line did not work.

Store the following in Ctrl+Shift+P > Preferences: Open Keyboard Shortcuts (JSON) and add the following in the array.

[
  {
 //...
@ai2ys
ai2ys / context7-mcp.sh
Last active June 5, 2026 11:03
Agent CLI Setup/Config
#!/usr/bin/env bash
# file location ~/.config/context7-mcp.sh
set -euo pipefail
# The key is stored securely in a separate file.
# `source` reads the file without printing its contents.
# `set -a` ensures that the variables are exported.
set -a
source "$HOME/.config/context7/credentials"
set +a
@ai2ys
ai2ys / pi_agent-installation.md
Last active May 31, 2026 17:46
Setup for aihero.dev cohort-004

Setup for aihero.dev cohort-004

Using Windows 11 + WSL2

Installing prerequisites

Using misefor managing packages

curl https://mise.run | sh
@ai2ys
ai2ys / linuxshell_powershell_equivalents.md
Created March 3, 2025 09:37
Equivalents for Linux Shell commands in PowerShell

Equivalents for Linux Shell commands in PowerShell

Equivalent for grep

Linux shell

<command> | grep <filter>

PowerShell

@ai2ys
ai2ys / list-docker-volumes-by-data.md
Created January 30, 2024 10:04
List Docker volumes by creation data

List Docker volumes by creation data

Listing all docker volumes and their creation date without any additional tools required.

https://stackoverflow.com/a/77819947/11687201

  1. Getting the list of all docker volumes docker volume ls
  2. Passing that list to docker volume inspect
  3. Sorting by ascending date
@ai2ys
ai2ys / Windows_make_conda_available_from_GitBash.md
Created January 11, 2024 10:00
Windows - Make conda available from Git-Bash
@ai2ys
ai2ys / exiftool-extract_thumbnails_from_DNG.md
Created November 3, 2023 09:10
Exiftool: extract thumbnails and XMP from DNG files
@ai2ys
ai2ys / terminal-coloring-docker-container.md
Created October 26, 2023 09:59
Terminal Coloring in Docker Container

Terminal Coloring in Docker container

This will look like this but username, @-symbol, hostname, workdir, and $-symbol differently colored.

🐳 username@hostname:/workdir$

Dockerfile

@ai2ys
ai2ys / rebase-instead-of-merge.md
Last active December 24, 2023 21:29
Rebase instead of Merge