Skip to content

Instantly share code, notes, and snippets.

View pythoninthegrass's full-sized avatar

pythoninthegrass

View GitHub Profile
@pythoninthegrass
pythoninthegrass / distrobox.conf
Created March 30, 2025 18:25
Distrobox config ~/.config/distrobox/distrobox.conf
container_always_pull="1"
container_generate_entry=0
container_manager="docker"
container_image_default="registry.fedoraproject.org/fedora-toolbox:latest"
container_name_default="distrobox-default"
container_user_custom_home="$HOME/.config/distrobox/home"
# container_init_hook="~/.local/distrobox/a_custom_default_init_hook.sh"
# container_pre_init_hook="~/a_custom_default_pre_init_hook.sh"
non_interactive="1"
skip_workdir="0"
@pythoninthegrass
pythoninthegrass / __main__.py
Created March 20, 2025 13:58
Pulumi copilot - Azure container
import pulumi
from pulumi_azure_native import resources, containerregistry, containerinstance
from pulumi_docker import Image
# Create an Azure Resource Group
resource_group = resources.ResourceGroup('resourceGroup')
# Create an Azure Container Registry with admin user enabled
registry = containerregistry.Registry('myRegistry',
resource_group_name=resource_group.name,
@pythoninthegrass
pythoninthegrass / claude_desktop_config.json
Created March 18, 2025 19:17
known good claude mcp config for browser-use
{
"globalShortcut": "Shift+Cmd+C",
"mcpServers": {
"browser-use": {
"command": "/Users/<USER>/.local/bin/uvx",
"args": [
"mcp-browser-use"
],
"env": {
"ANONYMIZED_TELEMETRY": "false"
@pythoninthegrass
pythoninthegrass / .aider.conf.yml
Created February 23, 2025 04:04
My working aider config
# https://aider.chat/docs/config/aider_conf.html
## Specify the model to use for the main chat
model: o3-mini
## Set the reasoning_effort API parameter (default: not set)
reasoning-effort: high
## Specify the Anthropic API key
anthropic-api-key: sk-ant-api03-<SNIP>
@pythoninthegrass
pythoninthegrass / proxy.py
Created February 12, 2025 01:32
Proxy requests from a free list at https://api.proxyscrape.com
#!/usr/bin/env python
import json
import requests
from pathlib import Path
from requests.exceptions import RequestException
from urllib.parse import urlencode
def get_my_ip():
@pythoninthegrass
pythoninthegrass / config
Last active March 28, 2025 19:09
Ghosty config (i.e., $HOME/.config/ghostty/config )
title = " "
macos-titlebar-proxy-icon = "hidden"
macos-icon ="custom-style"
macos-icon-frame = "beige"
macos-icon-screen-color = 1f1d45
font-size = 14
font-family = "Hack Nerd Font Mono"
theme = "AdventureTime"
shell-integration = "bash"
working-directory = "home"
[env]
TERM = "xterm-256color"
[terminal.shell]
program = "/usr/bin/bash"
args = ["-l", "-c", "zellij"]
[window]
dimensions.columns = 100
dimensions.lines = 34
@pythoninthegrass
pythoninthegrass / macos_terraform.md
Last active December 10, 2024 03:31 — forked from gwarf/MacOSX_terraform.md
Using terraform in macOS to manage KVM-backed VMs.

Using Terraform on macOS to manage KVM-backed VMs

Installing

Terraform

brew install terraform
@pythoninthegrass
pythoninthegrass / install.sh
Last active November 26, 2024 00:00
(Un)install pw cli password manager
#!/usr/bin/env bash
set -e
BASE_URL="https://github.com"
ORG="sschmid"
REPO="pw-terminal-password-manager"
BIN_NAME="pw"
SUBDIR="src"