Default operation is a GET:
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
| HANDY ONE-LINE SCRIPTS FOR AWK 30 April 2008 | |
| Compiled by Eric Pement - eric [at] pement.org version 0.27 | |
| Latest version of this file (in English) is usually at: | |
| http://www.pement.org/awk/awk1line.txt | |
| This file will also be available in other languages: | |
| Chinese - http://ximix.org/translation/awk1line_zh-CN.txt | |
| USAGE: |
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
| grep [PATTERN] [FILE] | |
| grep apple fruitlist.txt | |
| grep apple *.txt | |
| grep ^app fruitlist.txt | |
| "-x :: exact line | |
| grep -x apple fruitlist.txt |
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
| version: "3" | |
| services: | |
| pmm-server: | |
| image: "perconalab/pmm-server:dev-latest" | |
| ports: | |
| - "443:443" | |
| environment: | |
| - SERVER_USER=pmm | |
| - SERVER_PASSWORD=pmm |
In order for the LXC container to have full access the proxmox host directory, a subgid is set as owner of a host directory, and an ACL is used to ensure permissions.
Add the following line to /etc/pve/lxc/<CT_ID>.conf
mp0:/mount/point/on/host,mp=/mount/point/on/lxc
In the default Proxmox configuration, unpriviliged container subgids will have the prefix "10" followed by the expected 4-digit gid.
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
| import base64 | |
| import functools | |
| import operator | |
| from typing import * | |
| from typing import Annotated, Any, Dict, List, Sequence | |
| from dto.chat import * | |
| from dto.graph import * | |
| from langchain.prompts import ChatPromptTemplate, MessagesPlaceholder | |
| from langchain.tools import BaseTool |
The SPARC Automated Development System (claude-sparc.sh) is a comprehensive, agentic workflow for automated software development using the SPARC methodology (Specification, Pseudocode, Architecture, Refinement, Completion). This system leverages Claude Code's built-in tools for parallel task orchestration, comprehensive research, and Test-Driven Development.
- Comprehensive Research Phase: Automated web research using parallel batch operations
- Full SPARC Methodology: Complete implementation of all 5 SPARC phases