brew install terraform
This file contains 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
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" |
This file contains 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 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, |
This file contains 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
{ | |
"globalShortcut": "Shift+Cmd+C", | |
"mcpServers": { | |
"browser-use": { | |
"command": "/Users/<USER>/.local/bin/uvx", | |
"args": [ | |
"mcp-browser-use" | |
], | |
"env": { | |
"ANONYMIZED_TELEMETRY": "false" |
This file contains 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
# 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> |
This file contains 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 python | |
import json | |
import requests | |
from pathlib import Path | |
from requests.exceptions import RequestException | |
from urllib.parse import urlencode | |
def get_my_ip(): |
This file contains 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
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" |
This file contains 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
[env] | |
TERM = "xterm-256color" | |
[terminal.shell] | |
program = "/usr/bin/bash" | |
args = ["-l", "-c", "zellij"] | |
[window] | |
dimensions.columns = 100 | |
dimensions.lines = 34 |
This file contains 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 | |
BASE_URL="https://github.com" | |
ORG="sschmid" | |
REPO="pw-terminal-password-manager" | |
BIN_NAME="pw" | |
SUBDIR="src" |
NewerOlder