Tading costs at the unit level. For a single round-trip trade (buy and sell), the total cost comprises:
Where slippage represents the market impact and execution shortfall. For retail traders:
| # train_grpo.py | |
| # | |
| # See https://github.com/willccbb/verifiers for ongoing developments | |
| # | |
| """ | |
| citation: | |
| @misc{brown2025grpodemo, | |
| title={Granular Format Rewards for Eliciting Mathematical Reasoning Capabilities in Small Language Models}, | |
| author={Brown, William}, |
Tading costs at the unit level. For a single round-trip trade (buy and sell), the total cost comprises:
Where slippage represents the market impact and execution shortfall. For retail traders:
| - The machine does not have any actions on entry or exit. We might want to add actions to clear context or to log. | |
| - The machine does not have any activities (ongoing actions). | |
| - The machine does not have any metadata. | |
| - The machine does not use tags. | |
| - The machine does not use description. | |
| - The machine does not use key. | |
| - The machine does not use strict mode. | |
| - The machine does not preserve the history. | |
| - The machine does not use predictable action arguments. | |
| - The machine does not use a schema for context and events. |
| { | |
| "kind": "Dashboard", | |
| "metadata": { | |
| "name": "claude-code-personal", | |
| "project": "default", | |
| "version": 1 | |
| }, | |
| "spec": { | |
| "display": { | |
| "name": "Claude Code Personal Usage Dashboard" |
| usage: extract_patch.py [-h] [-o OUTPUT] [--list] [--github] [--repo REPO] [--commit COMMIT] [--branch BRANCH] [--force-branch] patch_file | |
| Extract files from git patch | |
| positional arguments: | |
| patch_file Path to the git patch file | |
| options: | |
| -h, --help show this help message and exit | |
| -o OUTPUT, --output OUTPUT |
| // Claude Code is a Beta product per Anthropic's Commercial Terms of Service. | |
| // By using Claude Code, you agree that all code acceptance or rejection decisions you make, | |
| // and the associated conversations in context, constitute Feedback under Anthropic's Commercial Terms, | |
| // and may be used to improve Anthropic's products, including training models. | |
| // You are responsible for reviewing any code suggestions before use. | |
| // (c) Anthropic PBC. All rights reserved. Use is subject to Anthropic's Commercial Terms of Service (https://www.anthropic.com/legal/commercial-terms). | |
| // Version: 0.2.9 |
| # Kakoune configuration for Solidity | |
| # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ | |
| # Detection | |
| # ‾‾‾‾‾‾‾‾‾‾ | |
| hook global BufCreate .*\.sol %{ | |
| set-option buffer filetype solidity | |
| } |
| #!/usr/bin/env node | |
| // SPDX-License-Identifier: 0BSD | |
| // BSD Zero Clause License | |
| // @model: claude-sonnet-4-20250514 | |
| /** | |
| * @fileoverview Foundry Gas Snapshot Parser | |
| * @description Parses Foundry .gas-snapshot files into CSV format with detailed statistics | |
| * @module gas-snapshot-parser |
| #!usr/bin/env bash | |
| # !ACHTUNG: Use at your own risk, AI slop generated | |
| # You can export web authn private key using devtools web authn thingy | |
| # Play stupid games, win retarded prizes | |
| # Avoid contact with eyes, apply directly to forehead | |
| # | |
| PEM_FILE="private_key.pem" | |
| KEYSTORE_NAME="my_eth_wallet" |
| #!/bin/sh | |
| n=$1 | |
| shift | |
| for i in $(seq $n); do | |
| "$@" || exit 1 | |
| done |