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
| rsync -arv -e "ssh -A -i ../keys/Ops-Key.pem" \ | |
| --exclude .git \ | |
| --exclude pythonenv \ | |
| --exclude api/node_modules \ | |
| --exclude app \ | |
| --exclude compl.1 \ | |
| --exclude data/db \ | |
| --exclude app/wp_md_azi_incl \ | |
| --exclude _md_azi_incl__ \ | |
| --exclude wp_md_azi_incl.zip \ |
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
| set runtimepath+=~/.vim_runtime | |
| source ~/.vim_runtime/vimrcs/basic.vim | |
| source ~/.vim_runtime/vimrcs/filetypes.vim | |
| source ~/.vim_runtime/vimrcs/plugins_config.vim | |
| source ~/.vim_runtime/vimrcs/extended.vim | |
| try | |
| source ~/.vim_runtime/my_configs.vim | |
| catch |
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
| #!/bin/sh | |
| ## Download istio version | |
| download() { | |
| OS="$(uname)" | |
| if [ "x${OS}" = "xDarwin" ] ; then | |
| OSEXT="osx" | |
| else | |
| OSEXT="linux" | |
| fi |
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
| # Ubuntu 24.04 based Dockerfile for FastAPI API | |
| FROM ubuntu:24.04 | |
| ENV DEBIAN_FRONTEND=noninteractive | |
| ENV PYTHONUNBUFFERED=1 | |
| ENV PYTHONDONTWRITEBYTECODE=1 | |
| WORKDIR /app | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| # Build essentials and development tools |
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 | |
| """Locate Claude installs, resolve cli.js, and print phrase matches.""" | |
| from __future__ import annotations | |
| import argparse | |
| import io | |
| import logging | |
| import os | |
| import re |
OlderNewer