Download ltspice...
Install wine:
dnf install wine
Install LTspice:
| # Pi.dev Clone Specification | |
| This document serves as a comprehensive specification for reimplementing a clone of the **Pi.dev** terminal coding agent in any modern programming language (e.g., Rust, Go, Python, or C#). | |
| ## 1. Overview & Philosophy | |
| Pi.dev is a minimal, terminal-first, local coding assistant. Unlike complex autonomous agents that rely on heavy sub-agent architectures or intricate planning modes, Pi.dev focuses on a tight, developer-centric loop. | |
| **Core Principles:** | |
| * **Minimalism & Speed:** Focus on a core set of highly reliable tools without the bloat of complex planning systems. | |
| * **Local & Private:** Run purely locally in the terminal. No proprietary SaaS backends. User data stays on the machine. |
Download ltspice...
Install wine:
dnf install wine
Install LTspice:
| // © 2021 Erik Rigtorp <erik@rigtorp.se> | |
| // SPDX-License-Identifier: MIT | |
| // udpcap: Simple tool to record UDP streams | |
| #include <arpa/inet.h> | |
| #include <err.h> | |
| #include <errno.h> | |
| #include <fcntl.h> | |
| #include <getopt.h> |
| -- The CXX compiler identification is GNU 10.2.1 | |
| -- The C compiler identification is GNU 10.2.1 | |
| -- Check for working CXX compiler: /usr/lib64/ccache/c++ | |
| -- Check for working CXX compiler: /usr/lib64/ccache/c++ - works | |
| -- Detecting CXX compiler ABI info | |
| -- Detecting CXX compiler ABI info - done | |
| -- Detecting CXX compile features | |
| -- Detecting CXX compile features - done | |
| -- Check for working C compiler: /usr/lib64/ccache/cc | |
| -- Check for working C compiler: /usr/lib64/ccache/cc - works |
| static inline uint64_t rdtsc() { | |
| uint64_t hi, lo; | |
| asm volatile ("mfence; rdtsc\n" : "=a" (lo), "=d" (hi)); | |
| return (hi << 32) | lo; | |
| } |
Fetch all remotes for all git repositories in directory (recursively)
$ find . -name .git -type d -execdir git --git-dir '{}' fetch --all ';'