| PostgreSQL Type | PostgreSQL Size | Description | Range | Diesel Type | Rust Type |
|---|---|---|---|---|---|
| Nullable Types | nullable | Nullable`` |
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
| # coding=utf-8 | |
| import pandas as pd | |
| import itertools | |
| import time | |
| import multiprocessing | |
| from typing import Callable, Tuple, Union | |
| def groupby_parallel(groupby_df: pd.core.groupby.DataFrameGroupBy, | |
| func: Callable[[Tuple[str, pd.DataFrame]], Union[pd.DataFrame, pd.Series]], |
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 sys | |
| import time | |
| import shutil | |
| def blink_once(input, empty_str, wait=0.05): | |
| sys.stdout.write(f'\r{input}') | |
| time.sleep(wait) | |
| sys.stdout.write(f'\r{empty_str}') |
| name | startup-sound |
|---|---|
| description | Set a custom startup sound for pi and/or Claude Code from a YouTube video clip. Installs dependencies (yt-dlp, ffmpeg), downloads a time range, and wires up a session-start hook to play it. Use when someone wants their agent to play a sound on launch. |
Set a custom startup sound for Pi and/or Claude Code using a clip from any YouTube video.
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
| /** | |
| * Vers RLM Extension | |
| * | |
| * Combines Recursive Language Models with Vers VMs to give the sub-agent | |
| * a full Linux environment it can explore iteratively. The sub-agent writes | |
| * JavaScript that calls VM tools (exec, readFile, writeFile) and LLM tools | |
| * (llmQuery). It can also snapshot and branch the VM for speculative execution. | |
| * | |
| * The key idea: RLM provides iterative reasoning through code. Vers VMs | |
| * provide branchable, snapshotable compute. Together you get branchable |